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