1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34#include "pbl_crc32.h"
35#include "imagetool.h"
36#include "mkimage.h"
37
38#include <image.h>
39
40#define HEADER_OFFSET 0x40
41#define VALIDATION_WORD 0x31305341
42#define PADDED_SIZE 0x10000
43
44
45#define MAX_INPUT_SIZE (PADDED_SIZE - sizeof(uint32_t))
46
47static uint8_t buffer[PADDED_SIZE];
48
49static struct socfpga_header {
50 uint32_t validation;
51 uint8_t version;
52 uint8_t flags;
53 uint16_t length_u32;
54 uint16_t zero;
55 uint16_t checksum;
56} header;
57
58
59
60
61
62
63static uint16_t hdr_checksum(struct socfpga_header *header)
64{
65 int len = sizeof(*header) - sizeof(header->checksum);
66 uint8_t *buf = (uint8_t *)header;
67 uint16_t ret = 0;
68
69 while (--len)
70 ret += *buf++;
71
72 return ret;
73}
74
75
76static void build_header(uint8_t *buf, uint8_t version, uint8_t flags,
77 uint16_t length_bytes)
78{
79 header.validation = cpu_to_le32(VALIDATION_WORD);
80 header.version = version;
81 header.flags = flags;
82 header.length_u32 = cpu_to_le16(length_bytes/4);
83 header.zero = 0;
84 header.checksum = cpu_to_le16(hdr_checksum(&header));
85
86 memcpy(buf, &header, sizeof(header));
87}
88
89
90
91
92
93static int verify_header(const uint8_t *buf)
94{
95 memcpy(&header, buf, sizeof(header));
96
97 if (le32_to_cpu(header.validation) != VALIDATION_WORD)
98 return -1;
99 if (le16_to_cpu(header.checksum) != hdr_checksum(&header))
100 return -1;
101
102 return le16_to_cpu(header.length_u32) * 4;
103}
104
105
106static int sign_buffer(uint8_t *buf,
107 uint8_t version, uint8_t flags,
108 int len, int pad_64k)
109{
110 uint32_t calc_crc;
111
112
113 len = (len + 3) & (~3);
114
115
116 build_header(buf + HEADER_OFFSET, version, flags, len + 4);
117
118
119 calc_crc = ~pbl_crc32(0, (char *)buf, len);
120
121 *((uint32_t *)(buf + len)) = cpu_to_le32(calc_crc);
122
123 if (!pad_64k)
124 return len + 4;
125
126 return PADDED_SIZE;
127}
128
129
130static int verify_buffer(const uint8_t *buf)
131{
132 int len;
133 uint32_t calc_crc;
134 uint32_t buf_crc;
135
136 len = verify_header(buf + HEADER_OFFSET);
137 if (len < 0) {
138 debug("Invalid header\n");
139 return -1;
140 }
141
142 if (len < HEADER_OFFSET || len > PADDED_SIZE) {
143 debug("Invalid header length (%i)\n", len);
144 return -1;
145 }
146
147
148
149
150
151 len -= 4;
152
153 calc_crc = ~pbl_crc32(0, (const char *)buf, len);
154
155 buf_crc = le32_to_cpu(*((uint32_t *)(buf + len)));
156
157 if (buf_crc != calc_crc) {
158 fprintf(stderr, "CRC32 does not match (%08x != %08x)\n",
159 buf_crc, calc_crc);
160 return -1;
161 }
162
163 return 0;
164}
165
166
167static int socfpgaimage_verify_header(unsigned char *ptr, int image_size,
168 struct image_tool_params *params)
169{
170 if (image_size != PADDED_SIZE)
171 return -1;
172
173 return verify_buffer(ptr);
174}
175
176static void socfpgaimage_print_header(const void *ptr)
177{
178 if (verify_buffer(ptr) == 0)
179 printf("Looks like a sane SOCFPGA preloader\n");
180 else
181 printf("Not a sane SOCFPGA preloader\n");
182}
183
184static int socfpgaimage_check_params(struct image_tool_params *params)
185{
186
187 return (params->dflag && (params->fflag || params->lflag)) ||
188 (params->fflag && (params->dflag || params->lflag)) ||
189 (params->lflag && (params->dflag || params->fflag));
190}
191
192static int socfpgaimage_check_image_types(uint8_t type)
193{
194 if (type == IH_TYPE_SOCFPGAIMAGE)
195 return EXIT_SUCCESS;
196 return EXIT_FAILURE;
197}
198
199
200
201
202
203
204
205
206
207
208
209
210
211static int data_size;
212#define FAKE_HEADER_SIZE (PADDED_SIZE - data_size)
213
214static int socfpgaimage_vrec_header(struct image_tool_params *params,
215 struct image_type_params *tparams)
216{
217 struct stat sbuf;
218
219 if (params->datafile &&
220 stat(params->datafile, &sbuf) == 0 &&
221 sbuf.st_size <= MAX_INPUT_SIZE) {
222 data_size = sbuf.st_size;
223 tparams->header_size = FAKE_HEADER_SIZE;
224 }
225 return 0;
226}
227
228static void socfpgaimage_set_header(void *ptr, struct stat *sbuf, int ifd,
229 struct image_tool_params *params)
230{
231 uint8_t *buf = (uint8_t *)ptr;
232
233
234
235
236
237
238
239
240 memmove(buf, buf + FAKE_HEADER_SIZE, data_size);
241 memset(buf + data_size, 0, FAKE_HEADER_SIZE);
242
243 sign_buffer(buf, 0, 0, data_size, 0);
244}
245
246U_BOOT_IMAGE_TYPE(
247 socfpgaimage,
248 "Altera SOCFPGA preloader support",
249 0,
250 (void *)buffer,
251 socfpgaimage_check_params,
252 socfpgaimage_verify_header,
253 socfpgaimage_print_header,
254 socfpgaimage_set_header,
255 NULL,
256 socfpgaimage_check_image_types,
257 NULL,
258 socfpgaimage_vrec_header
259);
260