]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
8edcde5e SB |
2 | /* |
3 | * (C) Copyright 2009 | |
4 | * Stefano Babic, DENX Software Engineering, [email protected]. | |
5 | * | |
6 | * (C) Copyright 2008 | |
7 | * Marvell Semiconductor <www.marvell.com> | |
8 | * Written-by: Prafulla Wadaskar <[email protected]> | |
8edcde5e SB |
9 | */ |
10 | ||
f86ed6a8 | 11 | #include "imagetool.h" |
8edcde5e SB |
12 | #include <image.h> |
13 | #include "imximage.h" | |
14 | ||
0187c985 SB |
15 | #define UNDEFINED 0xFFFFFFFF |
16 | ||
8edcde5e SB |
17 | /* |
18 | * Supported commands for configuration file | |
19 | */ | |
20 | static table_entry_t imximage_cmds[] = { | |
8a1edd7d | 21 | {CMD_BOOT_FROM, "BOOT_FROM", "boot command", }, |
6cb83829 | 22 | {CMD_BOOT_OFFSET, "BOOT_OFFSET", "Boot offset", }, |
0b7f7c33 AA |
23 | {CMD_WRITE_DATA, "DATA", "Reg Write Data", }, |
24 | {CMD_WRITE_CLR_BIT, "CLR_BIT", "Reg clear bit", }, | |
3e0a71c1 | 25 | {CMD_WRITE_SET_BIT, "SET_BIT", "Reg set bit", }, |
0b7f7c33 AA |
26 | {CMD_CHECK_BITS_SET, "CHECK_BITS_SET", "Reg Check bits set", }, |
27 | {CMD_CHECK_BITS_CLR, "CHECK_BITS_CLR", "Reg Check bits clr", }, | |
0187c985 | 28 | {CMD_CSF, "CSF", "Command Sequence File", }, |
8a1edd7d | 29 | {CMD_IMAGE_VERSION, "IMAGE_VERSION", "image version", }, |
b55e4f48 | 30 | {CMD_PLUGIN, "PLUGIN", "file plugin_addr", }, |
8a1edd7d | 31 | {-1, "", "", }, |
8edcde5e SB |
32 | }; |
33 | ||
34 | /* | |
35 | * Supported Boot options for configuration file | |
36 | * this is needed to set the correct flash offset | |
37 | */ | |
377e367a | 38 | static table_entry_t imximage_boot_offset[] = { |
8edcde5e | 39 | {FLASH_OFFSET_ONENAND, "onenand", "OneNAND Flash",}, |
bd25864c | 40 | {FLASH_OFFSET_NAND, "nand", "NAND Flash", }, |
19b409c0 DB |
41 | {FLASH_OFFSET_NOR, "nor", "NOR Flash", }, |
42 | {FLASH_OFFSET_SATA, "sata", "SATA Disk", }, | |
bd25864c DB |
43 | {FLASH_OFFSET_SD, "sd", "SD Card", }, |
44 | {FLASH_OFFSET_SPI, "spi", "SPI Flash", }, | |
9598f8c3 | 45 | {FLASH_OFFSET_QSPI, "qspi", "QSPI NOR Flash",}, |
8edcde5e SB |
46 | {-1, "", "Invalid", }, |
47 | }; | |
48 | ||
377e367a SB |
49 | /* |
50 | * Supported Boot options for configuration file | |
51 | * this is needed to determine the initial load size | |
52 | */ | |
53 | static table_entry_t imximage_boot_loadsize[] = { | |
54 | {FLASH_LOADSIZE_ONENAND, "onenand", "OneNAND Flash",}, | |
55 | {FLASH_LOADSIZE_NAND, "nand", "NAND Flash", }, | |
56 | {FLASH_LOADSIZE_NOR, "nor", "NOR Flash", }, | |
57 | {FLASH_LOADSIZE_SATA, "sata", "SATA Disk", }, | |
58 | {FLASH_LOADSIZE_SD, "sd", "SD Card", }, | |
59 | {FLASH_LOADSIZE_SPI, "spi", "SPI Flash", }, | |
9598f8c3 | 60 | {FLASH_LOADSIZE_QSPI, "qspi", "QSPI NOR Flash",}, |
377e367a SB |
61 | {-1, "", "Invalid", }, |
62 | }; | |
63 | ||
8a1edd7d LHR |
64 | /* |
65 | * IMXIMAGE version definition for i.MX chips | |
66 | */ | |
67 | static table_entry_t imximage_versions[] = { | |
68 | {IMXIMAGE_V1, "", " (i.MX25/35/51 compatible)", }, | |
0b7f7c33 | 69 | {IMXIMAGE_V2, "", " (i.MX53/6/7 compatible)", }, |
8a1edd7d LHR |
70 | {-1, "", " (Invalid)", }, |
71 | }; | |
8edcde5e SB |
72 | |
73 | static struct imx_header imximage_header; | |
8a1edd7d | 74 | static uint32_t imximage_version; |
0187c985 SB |
75 | /* |
76 | * Image Vector Table Offset | |
77 | * Initialized to a wrong not 4-bytes aligned address to | |
78 | * check if it is was set by the cfg file. | |
79 | */ | |
80 | static uint32_t imximage_ivt_offset = UNDEFINED; | |
81 | static uint32_t imximage_csf_size = UNDEFINED; | |
377e367a SB |
82 | /* Initial Load Region Size */ |
83 | static uint32_t imximage_init_loadsize; | |
b55e4f48 PF |
84 | static uint32_t imximage_iram_free_start; |
85 | static uint32_t imximage_plugin_size; | |
86 | static uint32_t plugin_image; | |
8a1edd7d LHR |
87 | |
88 | static set_dcd_val_t set_dcd_val; | |
0b7f7c33 | 89 | static set_dcd_param_t set_dcd_param; |
8a1edd7d LHR |
90 | static set_dcd_rst_t set_dcd_rst; |
91 | static set_imx_hdr_t set_imx_hdr; | |
4d5fa985 | 92 | static uint32_t max_dcd_entries; |
24331982 | 93 | static uint32_t *header_size_ptr; |
0187c985 | 94 | static uint32_t *csf_ptr; |
8edcde5e SB |
95 | |
96 | static uint32_t get_cfg_value(char *token, char *name, int linenr) | |
97 | { | |
98 | char *endptr; | |
99 | uint32_t value; | |
100 | ||
101 | errno = 0; | |
102 | value = strtoul(token, &endptr, 16); | |
103 | if (errno || (token == endptr)) { | |
104 | fprintf(stderr, "Error: %s[%d] - Invalid hex data(%s)\n", | |
105 | name, linenr, token); | |
106 | exit(EXIT_FAILURE); | |
107 | } | |
108 | return value; | |
109 | } | |
110 | ||
8a1edd7d | 111 | static uint32_t detect_imximage_version(struct imx_header *imx_hdr) |
8edcde5e | 112 | { |
8a1edd7d LHR |
113 | imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1; |
114 | imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2; | |
115 | flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr; | |
116 | flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr; | |
117 | ||
118 | /* Try to detect V1 */ | |
119 | if ((fhdr_v1->app_code_barker == APP_CODE_BARKER) && | |
120 | (hdr_v1->dcd_table.preamble.barker == DCD_BARKER)) | |
121 | return IMXIMAGE_V1; | |
122 | ||
123 | /* Try to detect V2 */ | |
124 | if ((fhdr_v2->header.tag == IVT_HEADER_TAG) && | |
b55e4f48 PF |
125 | (hdr_v2->data.dcd_table.header.tag == DCD_HEADER_TAG)) |
126 | return IMXIMAGE_V2; | |
127 | ||
128 | if ((fhdr_v2->header.tag == IVT_HEADER_TAG) && | |
129 | hdr_v2->boot_data.plugin) | |
8a1edd7d LHR |
130 | return IMXIMAGE_V2; |
131 | ||
132 | return IMXIMAGE_VER_INVALID; | |
8edcde5e SB |
133 | } |
134 | ||
8a1edd7d | 135 | static void err_imximage_version(int version) |
8edcde5e | 136 | { |
8a1edd7d LHR |
137 | fprintf(stderr, |
138 | "Error: Unsupported imximage version:%d\n", version); | |
8edcde5e | 139 | |
8a1edd7d LHR |
140 | exit(EXIT_FAILURE); |
141 | } | |
8edcde5e | 142 | |
8a1edd7d LHR |
143 | static void set_dcd_val_v1(struct imx_header *imxhdr, char *name, int lineno, |
144 | int fld, uint32_t value, uint32_t off) | |
145 | { | |
146 | dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table; | |
147 | ||
148 | switch (fld) { | |
149 | case CFG_REG_SIZE: | |
150 | /* Byte, halfword, word */ | |
151 | if ((value != 1) && (value != 2) && (value != 4)) { | |
152 | fprintf(stderr, "Error: %s[%d] - " | |
153 | "Invalid register size " "(%d)\n", | |
154 | name, lineno, value); | |
155 | exit(EXIT_FAILURE); | |
156 | } | |
157 | dcd_v1->addr_data[off].type = value; | |
158 | break; | |
159 | case CFG_REG_ADDRESS: | |
160 | dcd_v1->addr_data[off].addr = value; | |
161 | break; | |
162 | case CFG_REG_VALUE: | |
163 | dcd_v1->addr_data[off].value = value; | |
164 | break; | |
165 | default: | |
166 | break; | |
8edcde5e | 167 | |
8a1edd7d LHR |
168 | } |
169 | } | |
8edcde5e | 170 | |
61903b75 TK |
171 | static struct dcd_v2_cmd *gd_last_cmd; |
172 | ||
0b7f7c33 AA |
173 | static void set_dcd_param_v2(struct imx_header *imxhdr, uint32_t dcd_len, |
174 | int32_t cmd) | |
175 | { | |
b55e4f48 | 176 | dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.data.dcd_table; |
61903b75 TK |
177 | struct dcd_v2_cmd *d = gd_last_cmd; |
178 | struct dcd_v2_cmd *d2; | |
179 | int len; | |
180 | ||
181 | if (!d) | |
182 | d = &dcd_v2->dcd_cmd; | |
183 | d2 = d; | |
184 | len = be16_to_cpu(d->write_dcd_command.length); | |
185 | if (len > 4) | |
186 | d2 = (struct dcd_v2_cmd *)(((char *)d) + len); | |
0b7f7c33 AA |
187 | |
188 | switch (cmd) { | |
189 | case CMD_WRITE_DATA: | |
61903b75 TK |
190 | if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) && |
191 | (d->write_dcd_command.param == DCD_WRITE_DATA_PARAM)) | |
192 | break; | |
193 | d = d2; | |
194 | d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG; | |
195 | d->write_dcd_command.length = cpu_to_be16(4); | |
196 | d->write_dcd_command.param = DCD_WRITE_DATA_PARAM; | |
0b7f7c33 AA |
197 | break; |
198 | case CMD_WRITE_CLR_BIT: | |
61903b75 TK |
199 | if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) && |
200 | (d->write_dcd_command.param == DCD_WRITE_CLR_BIT_PARAM)) | |
201 | break; | |
202 | d = d2; | |
203 | d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG; | |
204 | d->write_dcd_command.length = cpu_to_be16(4); | |
205 | d->write_dcd_command.param = DCD_WRITE_CLR_BIT_PARAM; | |
0b7f7c33 | 206 | break; |
3e0a71c1 PF |
207 | case CMD_WRITE_SET_BIT: |
208 | if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) && | |
209 | (d->write_dcd_command.param == DCD_WRITE_SET_BIT_PARAM)) | |
210 | break; | |
211 | d = d2; | |
212 | d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG; | |
213 | d->write_dcd_command.length = cpu_to_be16(4); | |
214 | d->write_dcd_command.param = DCD_WRITE_SET_BIT_PARAM; | |
215 | break; | |
0b7f7c33 AA |
216 | /* |
217 | * Check data command only supports one entry, | |
0b7f7c33 AA |
218 | */ |
219 | case CMD_CHECK_BITS_SET: | |
61903b75 TK |
220 | d = d2; |
221 | d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG; | |
222 | d->write_dcd_command.length = cpu_to_be16(4); | |
223 | d->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM; | |
0b7f7c33 AA |
224 | break; |
225 | case CMD_CHECK_BITS_CLR: | |
61903b75 TK |
226 | d = d2; |
227 | d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG; | |
228 | d->write_dcd_command.length = cpu_to_be16(4); | |
0782a880 | 229 | d->write_dcd_command.param = DCD_CHECK_BITS_CLR_PARAM; |
0b7f7c33 AA |
230 | break; |
231 | default: | |
232 | break; | |
233 | } | |
61903b75 | 234 | gd_last_cmd = d; |
0b7f7c33 AA |
235 | } |
236 | ||
8a1edd7d LHR |
237 | static void set_dcd_val_v2(struct imx_header *imxhdr, char *name, int lineno, |
238 | int fld, uint32_t value, uint32_t off) | |
239 | { | |
61903b75 TK |
240 | struct dcd_v2_cmd *d = gd_last_cmd; |
241 | int len; | |
242 | ||
243 | len = be16_to_cpu(d->write_dcd_command.length); | |
244 | off = (len - 4) >> 3; | |
8a1edd7d LHR |
245 | |
246 | switch (fld) { | |
247 | case CFG_REG_ADDRESS: | |
61903b75 | 248 | d->addr_data[off].addr = cpu_to_be32(value); |
8a1edd7d LHR |
249 | break; |
250 | case CFG_REG_VALUE: | |
61903b75 TK |
251 | d->addr_data[off].value = cpu_to_be32(value); |
252 | off++; | |
253 | d->write_dcd_command.length = cpu_to_be16((off << 3) + 4); | |
8a1edd7d LHR |
254 | break; |
255 | default: | |
256 | break; | |
257 | ||
258 | } | |
8edcde5e SB |
259 | } |
260 | ||
8a1edd7d LHR |
261 | /* |
262 | * Complete setting up the rest field of DCD of V1 | |
263 | * such as barker code and DCD data length. | |
264 | */ | |
265 | static void set_dcd_rst_v1(struct imx_header *imxhdr, uint32_t dcd_len, | |
266 | char *name, int lineno) | |
8edcde5e | 267 | { |
8a1edd7d LHR |
268 | dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table; |
269 | ||
8a1edd7d LHR |
270 | dcd_v1->preamble.barker = DCD_BARKER; |
271 | dcd_v1->preamble.length = dcd_len * sizeof(dcd_type_addr_data_t); | |
272 | } | |
273 | ||
274 | /* | |
275 | * Complete setting up the reset field of DCD of V2 | |
276 | * such as DCD tag, version, length, etc. | |
277 | */ | |
278 | static void set_dcd_rst_v2(struct imx_header *imxhdr, uint32_t dcd_len, | |
279 | char *name, int lineno) | |
280 | { | |
b55e4f48 PF |
281 | if (!imxhdr->header.hdr_v2.boot_data.plugin) { |
282 | dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.data.dcd_table; | |
283 | struct dcd_v2_cmd *d = gd_last_cmd; | |
284 | int len; | |
285 | ||
286 | if (!d) | |
287 | d = &dcd_v2->dcd_cmd; | |
288 | len = be16_to_cpu(d->write_dcd_command.length); | |
289 | if (len > 4) | |
290 | d = (struct dcd_v2_cmd *)(((char *)d) + len); | |
291 | ||
292 | len = (char *)d - (char *)&dcd_v2->header; | |
b55e4f48 PF |
293 | dcd_v2->header.tag = DCD_HEADER_TAG; |
294 | dcd_v2->header.length = cpu_to_be16(len); | |
295 | dcd_v2->header.version = DCD_VERSION; | |
296 | } | |
8a1edd7d LHR |
297 | } |
298 | ||
299 | static void set_imx_hdr_v1(struct imx_header *imxhdr, uint32_t dcd_len, | |
ad0826dc | 300 | uint32_t entry_point, uint32_t flash_offset) |
8a1edd7d LHR |
301 | { |
302 | imx_header_v1_t *hdr_v1 = &imxhdr->header.hdr_v1; | |
303 | flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr; | |
304 | dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table; | |
ab857f26 | 305 | uint32_t hdr_base; |
24331982 TK |
306 | uint32_t header_length = (((char *)&dcd_v1->addr_data[dcd_len].addr) |
307 | - ((char *)imxhdr)); | |
8a1edd7d | 308 | |
8a1edd7d LHR |
309 | /* Set magic number */ |
310 | fhdr_v1->app_code_barker = APP_CODE_BARKER; | |
311 | ||
97f17fa6 | 312 | hdr_base = entry_point - imximage_init_loadsize + flash_offset; |
ab857f26 | 313 | fhdr_v1->app_dest_ptr = hdr_base - flash_offset; |
ad0826dc | 314 | fhdr_v1->app_code_jump_vector = entry_point; |
8a1edd7d | 315 | |
ab857f26 TK |
316 | fhdr_v1->dcd_ptr_ptr = hdr_base + offsetof(flash_header_v1_t, dcd_ptr); |
317 | fhdr_v1->dcd_ptr = hdr_base + offsetof(imx_header_v1_t, dcd_table); | |
8a1edd7d | 318 | |
8a1edd7d LHR |
319 | /* Security feature are not supported */ |
320 | fhdr_v1->app_code_csf = 0; | |
321 | fhdr_v1->super_root_key = 0; | |
24331982 | 322 | header_size_ptr = (uint32_t *)(((char *)imxhdr) + header_length - 4); |
8a1edd7d LHR |
323 | } |
324 | ||
325 | static void set_imx_hdr_v2(struct imx_header *imxhdr, uint32_t dcd_len, | |
ad0826dc | 326 | uint32_t entry_point, uint32_t flash_offset) |
8a1edd7d LHR |
327 | { |
328 | imx_header_v2_t *hdr_v2 = &imxhdr->header.hdr_v2; | |
329 | flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr; | |
ab857f26 | 330 | uint32_t hdr_base; |
8a1edd7d | 331 | |
8a1edd7d LHR |
332 | /* Set magic number */ |
333 | fhdr_v2->header.tag = IVT_HEADER_TAG; /* 0xD1 */ | |
334 | fhdr_v2->header.length = cpu_to_be16(sizeof(flash_header_v2_t)); | |
335 | fhdr_v2->header.version = IVT_VERSION; /* 0x40 */ | |
336 | ||
b55e4f48 PF |
337 | if (!hdr_v2->boot_data.plugin) { |
338 | fhdr_v2->entry = entry_point; | |
339 | fhdr_v2->reserved1 = 0; | |
340 | fhdr_v2->reserved1 = 0; | |
341 | hdr_base = entry_point - imximage_init_loadsize + | |
342 | flash_offset; | |
343 | fhdr_v2->self = hdr_base; | |
344 | if (dcd_len > 0) | |
345 | fhdr_v2->dcd_ptr = hdr_base + | |
346 | offsetof(imx_header_v2_t, data); | |
347 | else | |
348 | fhdr_v2->dcd_ptr = 0; | |
349 | fhdr_v2->boot_data_ptr = hdr_base | |
350 | + offsetof(imx_header_v2_t, boot_data); | |
351 | hdr_v2->boot_data.start = entry_point - imximage_init_loadsize; | |
352 | ||
353 | fhdr_v2->csf = 0; | |
354 | ||
355 | header_size_ptr = &hdr_v2->boot_data.size; | |
356 | csf_ptr = &fhdr_v2->csf; | |
357 | } else { | |
358 | imx_header_v2_t *next_hdr_v2; | |
359 | flash_header_v2_t *next_fhdr_v2; | |
360 | ||
361 | if (imximage_csf_size != 0) { | |
362 | fprintf(stderr, "Error: Header v2: SECURE_BOOT is only supported in DCD mode!"); | |
363 | exit(EXIT_FAILURE); | |
364 | } | |
365 | ||
366 | fhdr_v2->entry = imximage_iram_free_start + | |
367 | flash_offset + sizeof(flash_header_v2_t) + | |
368 | sizeof(boot_data_t); | |
369 | ||
370 | fhdr_v2->reserved1 = 0; | |
371 | fhdr_v2->reserved2 = 0; | |
372 | fhdr_v2->self = imximage_iram_free_start + flash_offset; | |
373 | ||
b893c989 | 374 | fhdr_v2->dcd_ptr = 0; |
8a1edd7d | 375 | |
b55e4f48 PF |
376 | fhdr_v2->boot_data_ptr = fhdr_v2->self + |
377 | offsetof(imx_header_v2_t, boot_data); | |
378 | ||
379 | hdr_v2->boot_data.start = imximage_iram_free_start; | |
380 | /* | |
381 | * The actural size of plugin image is "imximage_plugin_size + | |
382 | * sizeof(flash_header_v2_t) + sizeof(boot_data_t)", plus the | |
383 | * flash_offset space.The ROM code only need to copy this size | |
384 | * to run the plugin code. However, later when copy the whole | |
385 | * U-Boot image to DDR, the ROM code use memcpy to copy the | |
386 | * first part of the image, and use the storage read function | |
387 | * to get the remaining part. This requires the dividing point | |
388 | * must be multiple of storage sector size. Here we set the | |
389 | * first section to be MAX_PLUGIN_CODE_SIZE(64KB) for this | |
390 | * purpose. | |
391 | */ | |
392 | hdr_v2->boot_data.size = MAX_PLUGIN_CODE_SIZE; | |
393 | ||
394 | /* Security feature are not supported */ | |
395 | fhdr_v2->csf = 0; | |
396 | ||
397 | next_hdr_v2 = (imx_header_v2_t *)((char *)hdr_v2 + | |
398 | imximage_plugin_size); | |
399 | ||
400 | next_fhdr_v2 = &next_hdr_v2->fhdr; | |
401 | ||
402 | next_fhdr_v2->header.tag = IVT_HEADER_TAG; /* 0xD1 */ | |
403 | next_fhdr_v2->header.length = | |
404 | cpu_to_be16(sizeof(flash_header_v2_t)); | |
405 | next_fhdr_v2->header.version = IVT_VERSION; /* 0x40 */ | |
406 | ||
407 | next_fhdr_v2->entry = entry_point; | |
408 | hdr_base = entry_point - sizeof(struct imx_header); | |
409 | next_fhdr_v2->reserved1 = 0; | |
410 | next_fhdr_v2->reserved2 = 0; | |
411 | next_fhdr_v2->self = hdr_base + imximage_plugin_size; | |
412 | ||
413 | next_fhdr_v2->dcd_ptr = 0; | |
414 | next_fhdr_v2->boot_data_ptr = next_fhdr_v2->self + | |
415 | offsetof(imx_header_v2_t, boot_data); | |
416 | ||
417 | next_hdr_v2->boot_data.start = hdr_base - flash_offset; | |
418 | ||
419 | header_size_ptr = &next_hdr_v2->boot_data.size; | |
0187c985 | 420 | |
b55e4f48 PF |
421 | next_hdr_v2->boot_data.plugin = 0; |
422 | ||
423 | next_fhdr_v2->csf = 0; | |
424 | } | |
8a1edd7d LHR |
425 | } |
426 | ||
72048bc3 | 427 | static void set_hdr_func(void) |
8a1edd7d LHR |
428 | { |
429 | switch (imximage_version) { | |
430 | case IMXIMAGE_V1: | |
431 | set_dcd_val = set_dcd_val_v1; | |
0b7f7c33 | 432 | set_dcd_param = NULL; |
8a1edd7d LHR |
433 | set_dcd_rst = set_dcd_rst_v1; |
434 | set_imx_hdr = set_imx_hdr_v1; | |
4d5fa985 | 435 | max_dcd_entries = MAX_HW_CFG_SIZE_V1; |
8a1edd7d LHR |
436 | break; |
437 | case IMXIMAGE_V2: | |
61903b75 | 438 | gd_last_cmd = NULL; |
8a1edd7d | 439 | set_dcd_val = set_dcd_val_v2; |
0b7f7c33 | 440 | set_dcd_param = set_dcd_param_v2; |
8a1edd7d LHR |
441 | set_dcd_rst = set_dcd_rst_v2; |
442 | set_imx_hdr = set_imx_hdr_v2; | |
4d5fa985 | 443 | max_dcd_entries = MAX_HW_CFG_SIZE_V2; |
8a1edd7d LHR |
444 | break; |
445 | default: | |
446 | err_imximage_version(imximage_version); | |
447 | break; | |
448 | } | |
449 | } | |
8edcde5e | 450 | |
8a1edd7d LHR |
451 | static void print_hdr_v1(struct imx_header *imx_hdr) |
452 | { | |
453 | imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1; | |
454 | flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr; | |
455 | dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table; | |
456 | uint32_t size, length, ver; | |
457 | ||
458 | size = dcd_v1->preamble.length; | |
459 | if (size > (MAX_HW_CFG_SIZE_V1 * sizeof(dcd_type_addr_data_t))) { | |
8edcde5e SB |
460 | fprintf(stderr, |
461 | "Error: Image corrupt DCD size %d exceed maximum %d\n", | |
5b28e913 | 462 | (uint32_t)(size / sizeof(dcd_type_addr_data_t)), |
8a1edd7d LHR |
463 | MAX_HW_CFG_SIZE_V1); |
464 | exit(EXIT_FAILURE); | |
465 | } | |
466 | ||
467 | length = dcd_v1->preamble.length / sizeof(dcd_type_addr_data_t); | |
468 | ver = detect_imximage_version(imx_hdr); | |
469 | ||
470 | printf("Image Type: Freescale IMX Boot Image\n"); | |
471 | printf("Image Ver: %x", ver); | |
472 | printf("%s\n", get_table_entry_name(imximage_versions, NULL, ver)); | |
473 | printf("Data Size: "); | |
474 | genimg_print_size(dcd_v1->addr_data[length].type); | |
475 | printf("Load Address: %08x\n", (uint32_t)fhdr_v1->app_dest_ptr); | |
476 | printf("Entry Point: %08x\n", (uint32_t)fhdr_v1->app_code_jump_vector); | |
477 | } | |
478 | ||
479 | static void print_hdr_v2(struct imx_header *imx_hdr) | |
480 | { | |
481 | imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2; | |
482 | flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr; | |
b55e4f48 PF |
483 | dcd_v2_t *dcd_v2 = &hdr_v2->data.dcd_table; |
484 | uint32_t size, version, plugin; | |
8a1edd7d | 485 | |
b55e4f48 PF |
486 | plugin = hdr_v2->boot_data.plugin; |
487 | if (!plugin) { | |
488 | size = be16_to_cpu(dcd_v2->header.length); | |
489 | if (size > (MAX_HW_CFG_SIZE_V2 * sizeof(dcd_addr_data_t))) { | |
490 | fprintf(stderr, | |
491 | "Error: Image corrupt DCD size %d exceed maximum %d\n", | |
492 | (uint32_t)(size / sizeof(dcd_addr_data_t)), | |
493 | MAX_HW_CFG_SIZE_V2); | |
494 | exit(EXIT_FAILURE); | |
495 | } | |
8edcde5e SB |
496 | } |
497 | ||
8a1edd7d | 498 | version = detect_imximage_version(imx_hdr); |
8edcde5e SB |
499 | |
500 | printf("Image Type: Freescale IMX Boot Image\n"); | |
8a1edd7d LHR |
501 | printf("Image Ver: %x", version); |
502 | printf("%s\n", get_table_entry_name(imximage_versions, NULL, version)); | |
b55e4f48 PF |
503 | printf("Mode: %s\n", plugin ? "PLUGIN" : "DCD"); |
504 | if (!plugin) { | |
505 | printf("Data Size: "); | |
506 | genimg_print_size(hdr_v2->boot_data.size); | |
507 | printf("Load Address: %08x\n", (uint32_t)fhdr_v2->boot_data_ptr); | |
508 | printf("Entry Point: %08x\n", (uint32_t)fhdr_v2->entry); | |
509 | if (fhdr_v2->csf && (imximage_ivt_offset != UNDEFINED) && | |
510 | (imximage_csf_size != UNDEFINED)) { | |
e5491f3e EN |
511 | uint16_t dcdlen; |
512 | int offs; | |
513 | ||
514 | dcdlen = hdr_v2->data.dcd_table.header.length; | |
515 | offs = (char *)&hdr_v2->data.dcd_table | |
516 | - (char *)hdr_v2; | |
517 | ||
8519c9c9 | 518 | printf("HAB Blocks: 0x%08x 0x%08x 0x%08x\n", |
b55e4f48 PF |
519 | (uint32_t)fhdr_v2->self, 0, |
520 | hdr_v2->boot_data.size - imximage_ivt_offset - | |
521 | imximage_csf_size); | |
af1b492d | 522 | printf("DCD Blocks: 0x00910000 0x%08x 0x%08x\n", |
e5491f3e | 523 | offs, be16_to_cpu(dcdlen)); |
b55e4f48 PF |
524 | } |
525 | } else { | |
526 | imx_header_v2_t *next_hdr_v2; | |
527 | flash_header_v2_t *next_fhdr_v2; | |
528 | ||
529 | /*First Header*/ | |
530 | printf("Plugin Data Size: "); | |
531 | genimg_print_size(hdr_v2->boot_data.size); | |
532 | printf("Plugin Code Size: "); | |
533 | genimg_print_size(imximage_plugin_size); | |
534 | printf("Plugin Load Address: %08x\n", hdr_v2->boot_data.start); | |
535 | printf("Plugin Entry Point: %08x\n", (uint32_t)fhdr_v2->entry); | |
536 | ||
537 | /*Second Header*/ | |
538 | next_hdr_v2 = (imx_header_v2_t *)((char *)hdr_v2 + | |
539 | imximage_plugin_size); | |
540 | next_fhdr_v2 = &next_hdr_v2->fhdr; | |
541 | printf("U-Boot Data Size: "); | |
542 | genimg_print_size(next_hdr_v2->boot_data.size); | |
543 | printf("U-Boot Load Address: %08x\n", | |
544 | next_hdr_v2->boot_data.start); | |
545 | printf("U-Boot Entry Point: %08x\n", | |
546 | (uint32_t)next_fhdr_v2->entry); | |
0187c985 | 547 | } |
8edcde5e SB |
548 | } |
549 | ||
b55e4f48 PF |
550 | static void copy_plugin_code(struct imx_header *imxhdr, char *plugin_file) |
551 | { | |
2a380ccc | 552 | int ifd; |
b55e4f48 PF |
553 | struct stat sbuf; |
554 | char *plugin_buf = imxhdr->header.hdr_v2.data.plugin_code; | |
555 | char *ptr; | |
556 | ||
557 | ifd = open(plugin_file, O_RDONLY|O_BINARY); | |
2a380ccc PF |
558 | if (ifd < 0) { |
559 | fprintf(stderr, "Can't open %s: %s\n", | |
560 | plugin_file, | |
561 | strerror(errno)); | |
562 | exit(EXIT_FAILURE); | |
563 | } | |
564 | ||
b55e4f48 PF |
565 | if (fstat(ifd, &sbuf) < 0) { |
566 | fprintf(stderr, "Can't stat %s: %s\n", | |
567 | plugin_file, | |
568 | strerror(errno)); | |
569 | exit(EXIT_FAILURE); | |
570 | } | |
571 | ||
572 | ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0); | |
573 | if (ptr == MAP_FAILED) { | |
574 | fprintf(stderr, "Can't read %s: %s\n", | |
575 | plugin_file, | |
576 | strerror(errno)); | |
577 | exit(EXIT_FAILURE); | |
578 | } | |
579 | ||
580 | if (sbuf.st_size > MAX_PLUGIN_CODE_SIZE) { | |
581 | printf("plugin binary size too large\n"); | |
582 | exit(EXIT_FAILURE); | |
583 | } | |
584 | ||
585 | memcpy(plugin_buf, ptr, sbuf.st_size); | |
586 | imximage_plugin_size = sbuf.st_size; | |
587 | ||
588 | (void) munmap((void *)ptr, sbuf.st_size); | |
589 | (void) close(ifd); | |
590 | ||
591 | imxhdr->header.hdr_v2.boot_data.plugin = 1; | |
592 | } | |
593 | ||
8a1edd7d LHR |
594 | static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token, |
595 | char *name, int lineno, int fld, int dcd_len) | |
596 | { | |
597 | int value; | |
598 | static int cmd_ver_first = ~0; | |
599 | ||
600 | switch (cmd) { | |
601 | case CMD_IMAGE_VERSION: | |
602 | imximage_version = get_cfg_value(token, name, lineno); | |
603 | if (cmd_ver_first == 0) { | |
604 | fprintf(stderr, "Error: %s[%d] - IMAGE_VERSION " | |
605 | "command need be the first before other " | |
606 | "valid command in the file\n", name, lineno); | |
607 | exit(EXIT_FAILURE); | |
608 | } | |
609 | cmd_ver_first = 1; | |
72048bc3 | 610 | set_hdr_func(); |
8a1edd7d LHR |
611 | break; |
612 | case CMD_BOOT_FROM: | |
377e367a | 613 | imximage_ivt_offset = get_table_entry_id(imximage_boot_offset, |
8a1edd7d | 614 | "imximage boot option", token); |
3150f92c | 615 | if (imximage_ivt_offset == -1) { |
8a1edd7d LHR |
616 | fprintf(stderr, "Error: %s[%d] -Invalid boot device" |
617 | "(%s)\n", name, lineno, token); | |
618 | exit(EXIT_FAILURE); | |
619 | } | |
377e367a SB |
620 | |
621 | imximage_init_loadsize = | |
622 | get_table_entry_id(imximage_boot_loadsize, | |
623 | "imximage boot option", token); | |
624 | ||
625 | if (imximage_init_loadsize == -1) { | |
626 | fprintf(stderr, | |
627 | "Error: %s[%d] -Invalid boot device(%s)\n", | |
628 | name, lineno, token); | |
629 | exit(EXIT_FAILURE); | |
630 | } | |
01390aff SB |
631 | |
632 | /* | |
633 | * The SOC loads from the storage starting at address 0 | |
634 | * then ensures that the load size contains the offset | |
635 | */ | |
636 | if (imximage_init_loadsize < imximage_ivt_offset) | |
637 | imximage_init_loadsize = imximage_ivt_offset; | |
8a1edd7d LHR |
638 | if (unlikely(cmd_ver_first != 1)) |
639 | cmd_ver_first = 0; | |
640 | break; | |
6cb83829 | 641 | case CMD_BOOT_OFFSET: |
3150f92c | 642 | imximage_ivt_offset = get_cfg_value(token, name, lineno); |
6cb83829 MV |
643 | if (unlikely(cmd_ver_first != 1)) |
644 | cmd_ver_first = 0; | |
645 | break; | |
0b7f7c33 AA |
646 | case CMD_WRITE_DATA: |
647 | case CMD_WRITE_CLR_BIT: | |
3e0a71c1 | 648 | case CMD_WRITE_SET_BIT: |
0b7f7c33 AA |
649 | case CMD_CHECK_BITS_SET: |
650 | case CMD_CHECK_BITS_CLR: | |
8a1edd7d | 651 | value = get_cfg_value(token, name, lineno); |
0b7f7c33 AA |
652 | if (set_dcd_param) |
653 | (*set_dcd_param)(imxhdr, dcd_len, cmd); | |
8a1edd7d LHR |
654 | (*set_dcd_val)(imxhdr, name, lineno, fld, value, dcd_len); |
655 | if (unlikely(cmd_ver_first != 1)) | |
656 | cmd_ver_first = 0; | |
657 | break; | |
0187c985 SB |
658 | case CMD_CSF: |
659 | if (imximage_version != 2) { | |
660 | fprintf(stderr, | |
661 | "Error: %s[%d] - CSF only supported for VERSION 2(%s)\n", | |
662 | name, lineno, token); | |
663 | exit(EXIT_FAILURE); | |
664 | } | |
665 | imximage_csf_size = get_cfg_value(token, name, lineno); | |
666 | if (unlikely(cmd_ver_first != 1)) | |
667 | cmd_ver_first = 0; | |
668 | break; | |
b55e4f48 PF |
669 | case CMD_PLUGIN: |
670 | plugin_image = 1; | |
671 | copy_plugin_code(imxhdr, token); | |
672 | break; | |
8a1edd7d LHR |
673 | } |
674 | } | |
675 | ||
676 | static void parse_cfg_fld(struct imx_header *imxhdr, int32_t *cmd, | |
677 | char *token, char *name, int lineno, int fld, int *dcd_len) | |
678 | { | |
679 | int value; | |
680 | ||
681 | switch (fld) { | |
682 | case CFG_COMMAND: | |
683 | *cmd = get_table_entry_id(imximage_cmds, | |
684 | "imximage commands", token); | |
685 | if (*cmd < 0) { | |
686 | fprintf(stderr, "Error: %s[%d] - Invalid command" | |
687 | "(%s)\n", name, lineno, token); | |
688 | exit(EXIT_FAILURE); | |
689 | } | |
690 | break; | |
691 | case CFG_REG_SIZE: | |
692 | parse_cfg_cmd(imxhdr, *cmd, token, name, lineno, fld, *dcd_len); | |
693 | break; | |
694 | case CFG_REG_ADDRESS: | |
695 | case CFG_REG_VALUE: | |
0b7f7c33 AA |
696 | switch(*cmd) { |
697 | case CMD_WRITE_DATA: | |
698 | case CMD_WRITE_CLR_BIT: | |
3e0a71c1 | 699 | case CMD_WRITE_SET_BIT: |
0b7f7c33 AA |
700 | case CMD_CHECK_BITS_SET: |
701 | case CMD_CHECK_BITS_CLR: | |
702 | ||
703 | value = get_cfg_value(token, name, lineno); | |
704 | if (set_dcd_param) | |
705 | (*set_dcd_param)(imxhdr, *dcd_len, *cmd); | |
706 | (*set_dcd_val)(imxhdr, name, lineno, fld, value, | |
707 | *dcd_len); | |
708 | ||
709 | if (fld == CFG_REG_VALUE) { | |
710 | (*dcd_len)++; | |
711 | if (*dcd_len > max_dcd_entries) { | |
712 | fprintf(stderr, "Error: %s[%d] -" | |
713 | "DCD table exceeds maximum size(%d)\n", | |
714 | name, lineno, max_dcd_entries); | |
715 | exit(EXIT_FAILURE); | |
716 | } | |
4d5fa985 | 717 | } |
0b7f7c33 | 718 | break; |
b55e4f48 PF |
719 | case CMD_PLUGIN: |
720 | value = get_cfg_value(token, name, lineno); | |
721 | imximage_iram_free_start = value; | |
722 | break; | |
0b7f7c33 AA |
723 | default: |
724 | break; | |
4d5fa985 | 725 | } |
8a1edd7d LHR |
726 | break; |
727 | default: | |
728 | break; | |
729 | } | |
730 | } | |
731 | static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name) | |
8edcde5e SB |
732 | { |
733 | FILE *fd = NULL; | |
734 | char *line = NULL; | |
735 | char *token, *saveptr1, *saveptr2; | |
736 | int lineno = 0; | |
8a1edd7d | 737 | int fld; |
0ad22703 | 738 | size_t len; |
8edcde5e | 739 | int dcd_len = 0; |
8edcde5e SB |
740 | int32_t cmd; |
741 | ||
742 | fd = fopen(name, "r"); | |
743 | if (fd == 0) { | |
744 | fprintf(stderr, "Error: %s - Can't open DCD file\n", name); | |
745 | exit(EXIT_FAILURE); | |
746 | } | |
747 | ||
01390aff SB |
748 | /* |
749 | * Very simple parsing, line starting with # are comments | |
8edcde5e SB |
750 | * and are dropped |
751 | */ | |
752 | while ((getline(&line, &len, fd)) > 0) { | |
753 | lineno++; | |
754 | ||
755 | token = strtok_r(line, "\r\n", &saveptr1); | |
756 | if (token == NULL) | |
757 | continue; | |
758 | ||
759 | /* Check inside the single line */ | |
760 | for (fld = CFG_COMMAND, cmd = CMD_INVALID, | |
761 | line = token; ; line = NULL, fld++) { | |
762 | token = strtok_r(line, " \t", &saveptr2); | |
763 | if (token == NULL) | |
764 | break; | |
765 | ||
766 | /* Drop all text starting with '#' as comments */ | |
767 | if (token[0] == '#') | |
768 | break; | |
769 | ||
8a1edd7d LHR |
770 | parse_cfg_fld(imxhdr, &cmd, token, name, |
771 | lineno, fld, &dcd_len); | |
8edcde5e SB |
772 | } |
773 | ||
8edcde5e | 774 | } |
8a1edd7d LHR |
775 | |
776 | (*set_dcd_rst)(imxhdr, dcd_len, name, lineno); | |
8edcde5e SB |
777 | fclose(fd); |
778 | ||
f3c32628 FE |
779 | /* Exit if there is no BOOT_FROM field specifying the flash_offset */ |
780 | if (imximage_ivt_offset == FLASH_OFFSET_UNDEFINED) { | |
781 | fprintf(stderr, "Error: No BOOT_FROM tag in %s\n", name); | |
782 | exit(EXIT_FAILURE); | |
783 | } | |
5b28e913 | 784 | return dcd_len; |
8edcde5e SB |
785 | } |
786 | ||
8edcde5e | 787 | |
8a1edd7d LHR |
788 | static int imximage_check_image_types(uint8_t type) |
789 | { | |
790 | if (type == IH_TYPE_IMXIMAGE) | |
791 | return EXIT_SUCCESS; | |
792 | else | |
793 | return EXIT_FAILURE; | |
794 | } | |
8edcde5e | 795 | |
8a1edd7d | 796 | static int imximage_verify_header(unsigned char *ptr, int image_size, |
f86ed6a8 | 797 | struct image_tool_params *params) |
8a1edd7d LHR |
798 | { |
799 | struct imx_header *imx_hdr = (struct imx_header *) ptr; | |
8edcde5e | 800 | |
8a1edd7d LHR |
801 | if (detect_imximage_version(imx_hdr) == IMXIMAGE_VER_INVALID) |
802 | return -FDT_ERR_BADSTRUCTURE; | |
8edcde5e | 803 | |
8a1edd7d LHR |
804 | return 0; |
805 | } | |
8edcde5e | 806 | |
8a1edd7d LHR |
807 | static void imximage_print_header(const void *ptr) |
808 | { | |
809 | struct imx_header *imx_hdr = (struct imx_header *) ptr; | |
810 | uint32_t version = detect_imximage_version(imx_hdr); | |
811 | ||
812 | switch (version) { | |
813 | case IMXIMAGE_V1: | |
814 | print_hdr_v1(imx_hdr); | |
815 | break; | |
816 | case IMXIMAGE_V2: | |
817 | print_hdr_v2(imx_hdr); | |
818 | break; | |
819 | default: | |
820 | err_imximage_version(version); | |
821 | break; | |
822 | } | |
823 | } | |
8edcde5e | 824 | |
8a1edd7d | 825 | static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd, |
f86ed6a8 | 826 | struct image_tool_params *params) |
8a1edd7d LHR |
827 | { |
828 | struct imx_header *imxhdr = (struct imx_header *)ptr; | |
829 | uint32_t dcd_len; | |
b55e4f48 | 830 | uint32_t header_size; |
8edcde5e | 831 | |
8a1edd7d LHR |
832 | /* |
833 | * In order to not change the old imx cfg file | |
834 | * by adding VERSION command into it, here need | |
835 | * set up function ptr group to V1 by default. | |
836 | */ | |
837 | imximage_version = IMXIMAGE_V1; | |
49d3e272 | 838 | /* Be able to detect if the cfg file has no BOOT_FROM tag */ |
3150f92c | 839 | imximage_ivt_offset = FLASH_OFFSET_UNDEFINED; |
0187c985 | 840 | imximage_csf_size = 0; |
72048bc3 | 841 | set_hdr_func(); |
8edcde5e | 842 | |
8a1edd7d LHR |
843 | /* Parse dcd configuration file */ |
844 | dcd_len = parse_cfg_file(imxhdr, params->imagename); | |
8edcde5e | 845 | |
97f17fa6 MK |
846 | if (imximage_version == IMXIMAGE_V1) |
847 | header_size = sizeof(flash_header_v1_t); | |
848 | else { | |
b55e4f48 PF |
849 | header_size = sizeof(flash_header_v2_t) + sizeof(boot_data_t); |
850 | if (!plugin_image) | |
851 | header_size += sizeof(dcd_v2_t); | |
852 | else | |
853 | header_size += MAX_PLUGIN_CODE_SIZE; | |
03ea24b2 YL |
854 | } |
855 | ||
97f17fa6 MK |
856 | if (imximage_init_loadsize < imximage_ivt_offset + header_size) |
857 | imximage_init_loadsize = imximage_ivt_offset + header_size; | |
858 | ||
8a1edd7d | 859 | /* Set the imx header */ |
3150f92c | 860 | (*set_imx_hdr)(imxhdr, dcd_len, params->ep, imximage_ivt_offset); |
1411fb37 FE |
861 | |
862 | /* | |
863 | * ROM bug alert | |
895d9966 MV |
864 | * |
865 | * MX53 only loads 512 byte multiples in case of SD boot. | |
866 | * MX53 only loads NAND page multiples in case of NAND boot and | |
867 | * supports up to 4096 byte large pages, thus align to 4096. | |
868 | * | |
869 | * The remaining fraction of a block bytes would not be loaded! | |
1411fb37 | 870 | */ |
de979804 | 871 | *header_size_ptr = ROUND((sbuf->st_size + imximage_ivt_offset), 4096); |
0187c985 SB |
872 | |
873 | if (csf_ptr && imximage_csf_size) { | |
874 | *csf_ptr = params->ep - imximage_init_loadsize + | |
875 | *header_size_ptr; | |
876 | *header_size_ptr += imximage_csf_size; | |
877 | } | |
8edcde5e SB |
878 | } |
879 | ||
f86ed6a8 | 880 | int imximage_check_params(struct image_tool_params *params) |
8edcde5e SB |
881 | { |
882 | if (!params) | |
883 | return CFG_INVALID; | |
884 | if (!strlen(params->imagename)) { | |
885 | fprintf(stderr, "Error: %s - Configuration file not specified, " | |
886 | "it is needed for imximage generation\n", | |
887 | params->cmdname); | |
888 | return CFG_INVALID; | |
889 | } | |
890 | /* | |
891 | * Check parameters: | |
892 | * XIP is not allowed and verify that incompatible | |
893 | * parameters are not sent at the same time | |
894 | * For example, if list is required a data image must not be provided | |
895 | */ | |
896 | return (params->dflag && (params->fflag || params->lflag)) || | |
897 | (params->fflag && (params->dflag || params->lflag)) || | |
898 | (params->lflag && (params->dflag || params->fflag)) || | |
899 | (params->xflag) || !(strlen(params->imagename)); | |
900 | } | |
901 | ||
f86ed6a8 | 902 | static int imximage_generate(struct image_tool_params *params, |
01390aff SB |
903 | struct image_type_params *tparams) |
904 | { | |
905 | struct imx_header *imxhdr; | |
906 | size_t alloc_len; | |
907 | struct stat sbuf; | |
908 | char *datafile = params->datafile; | |
b55e4f48 | 909 | uint32_t pad_len, header_size; |
01390aff SB |
910 | |
911 | memset(&imximage_header, 0, sizeof(imximage_header)); | |
912 | ||
913 | /* | |
914 | * In order to not change the old imx cfg file | |
915 | * by adding VERSION command into it, here need | |
916 | * set up function ptr group to V1 by default. | |
917 | */ | |
918 | imximage_version = IMXIMAGE_V1; | |
919 | /* Be able to detect if the cfg file has no BOOT_FROM tag */ | |
920 | imximage_ivt_offset = FLASH_OFFSET_UNDEFINED; | |
921 | imximage_csf_size = 0; | |
72048bc3 | 922 | set_hdr_func(); |
01390aff SB |
923 | |
924 | /* Parse dcd configuration file */ | |
925 | parse_cfg_file(&imximage_header, params->imagename); | |
926 | ||
97f17fa6 MK |
927 | if (imximage_version == IMXIMAGE_V1) |
928 | header_size = sizeof(imx_header_v1_t); | |
929 | else { | |
b55e4f48 PF |
930 | header_size = sizeof(flash_header_v2_t) + sizeof(boot_data_t); |
931 | if (!plugin_image) | |
932 | header_size += sizeof(dcd_v2_t); | |
933 | else | |
934 | header_size += MAX_PLUGIN_CODE_SIZE; | |
01390aff SB |
935 | } |
936 | ||
97f17fa6 MK |
937 | if (imximage_init_loadsize < imximage_ivt_offset + header_size) |
938 | imximage_init_loadsize = imximage_ivt_offset + header_size; | |
939 | ||
940 | alloc_len = imximage_init_loadsize - imximage_ivt_offset; | |
941 | ||
b55e4f48 | 942 | if (alloc_len < header_size) { |
01390aff SB |
943 | fprintf(stderr, "%s: header error\n", |
944 | params->cmdname); | |
945 | exit(EXIT_FAILURE); | |
946 | } | |
947 | ||
948 | imxhdr = malloc(alloc_len); | |
949 | ||
950 | if (!imxhdr) { | |
951 | fprintf(stderr, "%s: malloc return failure: %s\n", | |
952 | params->cmdname, strerror(errno)); | |
953 | exit(EXIT_FAILURE); | |
954 | } | |
955 | ||
956 | memset(imxhdr, 0, alloc_len); | |
957 | ||
958 | tparams->header_size = alloc_len; | |
959 | tparams->hdr = imxhdr; | |
960 | ||
961 | /* determine data image file length */ | |
962 | ||
963 | if (stat(datafile, &sbuf) < 0) { | |
964 | fprintf(stderr, "%s: Can't stat %s: %s\n", | |
965 | params->cmdname, datafile, strerror(errno)); | |
966 | exit(EXIT_FAILURE); | |
967 | } | |
968 | ||
969 | pad_len = ROUND(sbuf.st_size, 4096) - sbuf.st_size; | |
970 | ||
97f17fa6 | 971 | return pad_len; |
01390aff SB |
972 | } |
973 | ||
974 | ||
8edcde5e SB |
975 | /* |
976 | * imximage parameters | |
977 | */ | |
a93648d1 GMF |
978 | U_BOOT_IMAGE_TYPE( |
979 | imximage, | |
980 | "Freescale i.MX Boot Image support", | |
981 | 0, | |
982 | NULL, | |
983 | imximage_check_params, | |
984 | imximage_verify_header, | |
985 | imximage_print_header, | |
986 | imximage_set_header, | |
987 | NULL, | |
988 | imximage_check_image_types, | |
989 | NULL, | |
990 | imximage_generate | |
991 | ); |