3 * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
6 * Marvell Semiconductor <www.marvell.com>
7 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 /* Required to obtain the getline prototype from stdio.h */
36 * Supported commands for configuration file
38 static table_entry_t imximage_cmds[] = {
39 {CMD_BOOT_FROM, "BOOT_FROM", "boot command", },
40 {CMD_DATA, "DATA", "Reg Write Data", },
41 {CMD_IMAGE_VERSION, "IMAGE_VERSION", "image version", },
46 * Supported Boot options for configuration file
47 * this is needed to set the correct flash offset
49 static table_entry_t imximage_bootops[] = {
50 {FLASH_OFFSET_ONENAND, "onenand", "OneNAND Flash",},
51 {FLASH_OFFSET_NAND, "nand", "NAND Flash", },
52 {FLASH_OFFSET_NOR, "nor", "NOR Flash", },
53 {FLASH_OFFSET_SATA, "sata", "SATA Disk", },
54 {FLASH_OFFSET_SD, "sd", "SD Card", },
55 {FLASH_OFFSET_SPI, "spi", "SPI Flash", },
56 {-1, "", "Invalid", },
60 * IMXIMAGE version definition for i.MX chips
62 static table_entry_t imximage_versions[] = {
63 {IMXIMAGE_V1, "", " (i.MX25/35/51 compatible)", },
64 {IMXIMAGE_V2, "", " (i.MX53/6 compatible)", },
65 {-1, "", " (Invalid)", },
68 static struct imx_header imximage_header;
69 static uint32_t imximage_version;
71 static set_dcd_val_t set_dcd_val;
72 static set_dcd_rst_t set_dcd_rst;
73 static set_imx_hdr_t set_imx_hdr;
74 static uint32_t max_dcd_entries;
76 static uint32_t get_cfg_value(char *token, char *name, int linenr)
82 value = strtoul(token, &endptr, 16);
83 if (errno || (token == endptr)) {
84 fprintf(stderr, "Error: %s[%d] - Invalid hex data(%s)\n",
91 static uint32_t detect_imximage_version(struct imx_header *imx_hdr)
93 imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1;
94 imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2;
95 flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
96 flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
98 /* Try to detect V1 */
99 if ((fhdr_v1->app_code_barker == APP_CODE_BARKER) &&
100 (hdr_v1->dcd_table.preamble.barker == DCD_BARKER))
103 /* Try to detect V2 */
104 if ((fhdr_v2->header.tag == IVT_HEADER_TAG) &&
105 (hdr_v2->dcd_table.header.tag == DCD_HEADER_TAG))
108 return IMXIMAGE_VER_INVALID;
111 static void err_imximage_version(int version)
114 "Error: Unsupported imximage version:%d\n", version);
119 static void set_dcd_val_v1(struct imx_header *imxhdr, char *name, int lineno,
120 int fld, uint32_t value, uint32_t off)
122 dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table;
126 /* Byte, halfword, word */
127 if ((value != 1) && (value != 2) && (value != 4)) {
128 fprintf(stderr, "Error: %s[%d] - "
129 "Invalid register size " "(%d)\n",
130 name, lineno, value);
133 dcd_v1->addr_data[off].type = value;
135 case CFG_REG_ADDRESS:
136 dcd_v1->addr_data[off].addr = value;
139 dcd_v1->addr_data[off].value = value;
147 static void set_dcd_val_v2(struct imx_header *imxhdr, char *name, int lineno,
148 int fld, uint32_t value, uint32_t off)
150 dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
153 case CFG_REG_ADDRESS:
154 dcd_v2->addr_data[off].addr = cpu_to_be32(value);
157 dcd_v2->addr_data[off].value = cpu_to_be32(value);
166 * Complete setting up the rest field of DCD of V1
167 * such as barker code and DCD data length.
169 static void set_dcd_rst_v1(struct imx_header *imxhdr, uint32_t dcd_len,
170 char *name, int lineno)
172 dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table;
174 dcd_v1->preamble.barker = DCD_BARKER;
175 dcd_v1->preamble.length = dcd_len * sizeof(dcd_type_addr_data_t);
179 * Complete setting up the reset field of DCD of V2
180 * such as DCD tag, version, length, etc.
182 static void set_dcd_rst_v2(struct imx_header *imxhdr, uint32_t dcd_len,
183 char *name, int lineno)
185 dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
187 dcd_v2->header.tag = DCD_HEADER_TAG;
188 dcd_v2->header.length = cpu_to_be16(
189 dcd_len * sizeof(dcd_addr_data_t) + 8);
190 dcd_v2->header.version = DCD_VERSION;
191 dcd_v2->write_dcd_command.tag = DCD_COMMAND_TAG;
192 dcd_v2->write_dcd_command.length = cpu_to_be16(
193 dcd_len * sizeof(dcd_addr_data_t) + 4);
194 dcd_v2->write_dcd_command.param = DCD_COMMAND_PARAM;
197 static void set_imx_hdr_v1(struct imx_header *imxhdr, uint32_t dcd_len,
199 struct mkimage_params *params)
201 imx_header_v1_t *hdr_v1 = &imxhdr->header.hdr_v1;
202 flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
203 dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table;
204 uint32_t base_offset;
206 /* Exit if there is no BOOT_FROM field specifying the flash_offset */
207 if(imxhdr->flash_offset == FLASH_OFFSET_UNDEFINED) {
208 fprintf(stderr, "Error: Header v1: No BOOT_FROM tag in %s\n",
213 /* Set magic number */
214 fhdr_v1->app_code_barker = APP_CODE_BARKER;
216 fhdr_v1->app_dest_ptr = params->addr;
217 fhdr_v1->app_dest_ptr = params->ep - imxhdr->flash_offset -
218 sizeof(struct imx_header);
219 fhdr_v1->app_code_jump_vector = params->ep;
221 base_offset = fhdr_v1->app_dest_ptr + imxhdr->flash_offset ;
222 fhdr_v1->dcd_ptr_ptr =
223 (uint32_t) (offsetof(flash_header_v1_t, dcd_ptr) -
224 offsetof(flash_header_v1_t, app_code_jump_vector) +
227 fhdr_v1->dcd_ptr = base_offset +
228 offsetof(imx_header_v1_t, dcd_table);
230 /* The external flash header must be at the end of the DCD table */
231 dcd_v1->addr_data[dcd_len].type = sbuf->st_size +
232 imxhdr->flash_offset +
233 sizeof(struct imx_header);
235 /* Security feature are not supported */
236 fhdr_v1->app_code_csf = 0;
237 fhdr_v1->super_root_key = 0;
240 static void set_imx_hdr_v2(struct imx_header *imxhdr, uint32_t dcd_len,
242 struct mkimage_params *params)
244 imx_header_v2_t *hdr_v2 = &imxhdr->header.hdr_v2;
245 flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
247 /* Exit if there is no BOOT_FROM field specifying the flash_offset */
248 if(imxhdr->flash_offset == FLASH_OFFSET_UNDEFINED) {
249 fprintf(stderr, "Error: Header v2: No BOOT_FROM tag in %s\n",
254 /* Set magic number */
255 fhdr_v2->header.tag = IVT_HEADER_TAG; /* 0xD1 */
256 fhdr_v2->header.length = cpu_to_be16(sizeof(flash_header_v2_t));
257 fhdr_v2->header.version = IVT_VERSION; /* 0x40 */
259 fhdr_v2->entry = params->ep;
260 fhdr_v2->reserved1 = fhdr_v2->reserved2 = 0;
261 fhdr_v2->self = params->ep - sizeof(struct imx_header);
263 fhdr_v2->dcd_ptr = fhdr_v2->self +
264 offsetof(imx_header_v2_t, dcd_table);
266 fhdr_v2->boot_data_ptr = fhdr_v2->self +
267 offsetof(imx_header_v2_t, boot_data);
269 hdr_v2->boot_data.start = fhdr_v2->self - imxhdr->flash_offset;
270 hdr_v2->boot_data.size = sbuf->st_size +
271 imxhdr->flash_offset +
272 sizeof(struct imx_header);
274 /* Security feature are not supported */
278 static void set_hdr_func(struct imx_header *imxhdr)
280 switch (imximage_version) {
282 set_dcd_val = set_dcd_val_v1;
283 set_dcd_rst = set_dcd_rst_v1;
284 set_imx_hdr = set_imx_hdr_v1;
285 max_dcd_entries = MAX_HW_CFG_SIZE_V1;
288 set_dcd_val = set_dcd_val_v2;
289 set_dcd_rst = set_dcd_rst_v2;
290 set_imx_hdr = set_imx_hdr_v2;
291 max_dcd_entries = MAX_HW_CFG_SIZE_V2;
294 err_imximage_version(imximage_version);
299 static void print_hdr_v1(struct imx_header *imx_hdr)
301 imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1;
302 flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
303 dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table;
304 uint32_t size, length, ver;
306 size = dcd_v1->preamble.length;
307 if (size > (MAX_HW_CFG_SIZE_V1 * sizeof(dcd_type_addr_data_t))) {
309 "Error: Image corrupt DCD size %d exceed maximum %d\n",
310 (uint32_t)(size / sizeof(dcd_type_addr_data_t)),
315 length = dcd_v1->preamble.length / sizeof(dcd_type_addr_data_t);
316 ver = detect_imximage_version(imx_hdr);
318 printf("Image Type: Freescale IMX Boot Image\n");
319 printf("Image Ver: %x", ver);
320 printf("%s\n", get_table_entry_name(imximage_versions, NULL, ver));
321 printf("Data Size: ");
322 genimg_print_size(dcd_v1->addr_data[length].type);
323 printf("Load Address: %08x\n", (uint32_t)fhdr_v1->app_dest_ptr);
324 printf("Entry Point: %08x\n", (uint32_t)fhdr_v1->app_code_jump_vector);
327 static void print_hdr_v2(struct imx_header *imx_hdr)
329 imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2;
330 flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
331 dcd_v2_t *dcd_v2 = &hdr_v2->dcd_table;
332 uint32_t size, version;
334 size = be16_to_cpu(dcd_v2->header.length) - 8;
335 if (size > (MAX_HW_CFG_SIZE_V2 * sizeof(dcd_addr_data_t))) {
337 "Error: Image corrupt DCD size %d exceed maximum %d\n",
338 (uint32_t)(size / sizeof(dcd_addr_data_t)),
343 version = detect_imximage_version(imx_hdr);
345 printf("Image Type: Freescale IMX Boot Image\n");
346 printf("Image Ver: %x", version);
347 printf("%s\n", get_table_entry_name(imximage_versions, NULL, version));
348 printf("Data Size: ");
349 genimg_print_size(hdr_v2->boot_data.size);
350 printf("Load Address: %08x\n", (uint32_t)fhdr_v2->boot_data_ptr);
351 printf("Entry Point: %08x\n", (uint32_t)fhdr_v2->entry);
354 static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token,
355 char *name, int lineno, int fld, int dcd_len)
358 static int cmd_ver_first = ~0;
361 case CMD_IMAGE_VERSION:
362 imximage_version = get_cfg_value(token, name, lineno);
363 if (cmd_ver_first == 0) {
364 fprintf(stderr, "Error: %s[%d] - IMAGE_VERSION "
365 "command need be the first before other "
366 "valid command in the file\n", name, lineno);
370 set_hdr_func(imxhdr);
373 imxhdr->flash_offset = get_table_entry_id(imximage_bootops,
374 "imximage boot option", token);
375 if (imxhdr->flash_offset == -1) {
376 fprintf(stderr, "Error: %s[%d] -Invalid boot device"
377 "(%s)\n", name, lineno, token);
380 if (unlikely(cmd_ver_first != 1))
384 value = get_cfg_value(token, name, lineno);
385 (*set_dcd_val)(imxhdr, name, lineno, fld, value, dcd_len);
386 if (unlikely(cmd_ver_first != 1))
392 static void parse_cfg_fld(struct imx_header *imxhdr, int32_t *cmd,
393 char *token, char *name, int lineno, int fld, int *dcd_len)
399 *cmd = get_table_entry_id(imximage_cmds,
400 "imximage commands", token);
402 fprintf(stderr, "Error: %s[%d] - Invalid command"
403 "(%s)\n", name, lineno, token);
408 parse_cfg_cmd(imxhdr, *cmd, token, name, lineno, fld, *dcd_len);
410 case CFG_REG_ADDRESS:
412 if (*cmd != CMD_DATA)
415 value = get_cfg_value(token, name, lineno);
416 (*set_dcd_val)(imxhdr, name, lineno, fld, value, *dcd_len);
418 if (fld == CFG_REG_VALUE) {
420 if (*dcd_len > max_dcd_entries) {
421 fprintf(stderr, "Error: %s[%d] -"
422 "DCD table exceeds maximum size(%d)\n",
423 name, lineno, max_dcd_entries);
432 static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name)
436 char *token, *saveptr1, *saveptr2;
443 fd = fopen(name, "r");
445 fprintf(stderr, "Error: %s - Can't open DCD file\n", name);
449 /* Very simple parsing, line starting with # are comments
452 while ((getline(&line, &len, fd)) > 0) {
455 token = strtok_r(line, "\r\n", &saveptr1);
459 /* Check inside the single line */
460 for (fld = CFG_COMMAND, cmd = CMD_INVALID,
461 line = token; ; line = NULL, fld++) {
462 token = strtok_r(line, " \t", &saveptr2);
466 /* Drop all text starting with '#' as comments */
470 parse_cfg_fld(imxhdr, &cmd, token, name,
471 lineno, fld, &dcd_len);
476 (*set_dcd_rst)(imxhdr, dcd_len, name, lineno);
483 static int imximage_check_image_types(uint8_t type)
485 if (type == IH_TYPE_IMXIMAGE)
491 static int imximage_verify_header(unsigned char *ptr, int image_size,
492 struct mkimage_params *params)
494 struct imx_header *imx_hdr = (struct imx_header *) ptr;
496 if (detect_imximage_version(imx_hdr) == IMXIMAGE_VER_INVALID)
497 return -FDT_ERR_BADSTRUCTURE;
502 static void imximage_print_header(const void *ptr)
504 struct imx_header *imx_hdr = (struct imx_header *) ptr;
505 uint32_t version = detect_imximage_version(imx_hdr);
509 print_hdr_v1(imx_hdr);
512 print_hdr_v2(imx_hdr);
515 err_imximage_version(version);
520 static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd,
521 struct mkimage_params *params)
523 struct imx_header *imxhdr = (struct imx_header *)ptr;
527 * In order to not change the old imx cfg file
528 * by adding VERSION command into it, here need
529 * set up function ptr group to V1 by default.
531 imximage_version = IMXIMAGE_V1;
532 /* Be able to detect if the cfg file has no BOOT_FROM tag */
533 imxhdr->flash_offset = FLASH_OFFSET_UNDEFINED;
534 set_hdr_func(imxhdr);
536 /* Parse dcd configuration file */
537 dcd_len = parse_cfg_file(imxhdr, params->imagename);
539 /* Set the imx header */
540 (*set_imx_hdr)(imxhdr, dcd_len, sbuf, params);
543 int imximage_check_params(struct mkimage_params *params)
547 if (!strlen(params->imagename)) {
548 fprintf(stderr, "Error: %s - Configuration file not specified, "
549 "it is needed for imximage generation\n",
555 * XIP is not allowed and verify that incompatible
556 * parameters are not sent at the same time
557 * For example, if list is required a data image must not be provided
559 return (params->dflag && (params->fflag || params->lflag)) ||
560 (params->fflag && (params->dflag || params->lflag)) ||
561 (params->lflag && (params->dflag || params->fflag)) ||
562 (params->xflag) || !(strlen(params->imagename));
566 * imximage parameters
568 static struct image_type_params imximage_params = {
569 .name = "Freescale i.MX 5x Boot Image support",
570 .header_size = sizeof(struct imx_header),
571 .hdr = (void *)&imximage_header,
572 .check_image_type = imximage_check_image_types,
573 .verify_header = imximage_verify_header,
574 .print_header = imximage_print_header,
575 .set_header = imximage_set_header,
576 .check_params = imximage_check_params,
579 void init_imx_image_type(void)
581 mkimage_register(&imximage_params);