Blame view

tools/imximage.c 21.5 KB
8edcde5e4   Stefano Babic   mkimage: Add Free...
1
2
3
4
5
6
7
8
  /*
   * (C) Copyright 2009
   * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
   *
   * (C) Copyright 2008
   * Marvell Semiconductor <www.marvell.com>
   * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
   *
3765b3e7b   Wolfgang Denk   Coding Style clea...
9
   * SPDX-License-Identifier:	GPL-2.0+
8edcde5e4   Stefano Babic   mkimage: Add Free...
10
   */
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
11
  #include "imagetool.h"
8edcde5e4   Stefano Babic   mkimage: Add Free...
12
13
  #include <image.h>
  #include "imximage.h"
0187c985a   Stefano Babic   tools: add suppor...
14
  #define UNDEFINED 0xFFFFFFFF
8edcde5e4   Stefano Babic   mkimage: Add Free...
15
16
17
18
  /*
   * Supported commands for configuration file
   */
  static table_entry_t imximage_cmds[] = {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
19
  	{CMD_BOOT_FROM,         "BOOT_FROM",            "boot command",	  },
6cb83829a   Marek Vasut   tools: arm: imx: ...
20
  	{CMD_BOOT_OFFSET,       "BOOT_OFFSET",          "Boot offset",	  },
0b7f7c339   Adrian Alonso   imx: imximage: ad...
21
22
23
24
  	{CMD_WRITE_DATA,        "DATA",                 "Reg Write Data", },
  	{CMD_WRITE_CLR_BIT,     "CLR_BIT",              "Reg clear bit",  },
  	{CMD_CHECK_BITS_SET,    "CHECK_BITS_SET",   "Reg Check bits set", },
  	{CMD_CHECK_BITS_CLR,    "CHECK_BITS_CLR",   "Reg Check bits clr", },
0187c985a   Stefano Babic   tools: add suppor...
25
  	{CMD_CSF,               "CSF",           "Command Sequence File", },
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
26
27
  	{CMD_IMAGE_VERSION,     "IMAGE_VERSION",        "image version",  },
  	{-1,                    "",                     "",	          },
8edcde5e4   Stefano Babic   mkimage: Add Free...
28
29
30
31
32
33
  };
  
  /*
   * Supported Boot options for configuration file
   * this is needed to set the correct flash offset
   */
377e367a8   Stefano Babic   tools: dynamicall...
34
  static table_entry_t imximage_boot_offset[] = {
8edcde5e4   Stefano Babic   mkimage: Add Free...
35
  	{FLASH_OFFSET_ONENAND,	"onenand",	"OneNAND Flash",},
bd25864cc   Dirk Behme   imximage: Sort bo...
36
  	{FLASH_OFFSET_NAND,	"nand",		"NAND Flash",	},
19b409c00   Dirk Behme   imximage: Add sup...
37
38
  	{FLASH_OFFSET_NOR,	"nor",		"NOR Flash",	},
  	{FLASH_OFFSET_SATA,	"sata",		"SATA Disk",	},
bd25864cc   Dirk Behme   imximage: Sort bo...
39
40
  	{FLASH_OFFSET_SD,	"sd",		"SD Card",	},
  	{FLASH_OFFSET_SPI,	"spi",		"SPI Flash",	},
9598f8c30   Ye.Li   imx: imximage: Ad...
41
  	{FLASH_OFFSET_QSPI,	"qspi",		"QSPI NOR Flash",},
8edcde5e4   Stefano Babic   mkimage: Add Free...
42
43
  	{-1,			"",		"Invalid",	},
  };
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
44
  /*
377e367a8   Stefano Babic   tools: dynamicall...
45
46
47
48
49
50
51
52
53
54
   * Supported Boot options for configuration file
   * this is needed to determine the initial load size
   */
  static table_entry_t imximage_boot_loadsize[] = {
  	{FLASH_LOADSIZE_ONENAND,	"onenand",	"OneNAND Flash",},
  	{FLASH_LOADSIZE_NAND,		"nand",		"NAND Flash",	},
  	{FLASH_LOADSIZE_NOR,		"nor",		"NOR Flash",	},
  	{FLASH_LOADSIZE_SATA,		"sata",		"SATA Disk",	},
  	{FLASH_LOADSIZE_SD,		"sd",		"SD Card",	},
  	{FLASH_LOADSIZE_SPI,		"spi",		"SPI Flash",	},
9598f8c30   Ye.Li   imx: imximage: Ad...
55
  	{FLASH_LOADSIZE_QSPI,		"qspi",		"QSPI NOR Flash",},
377e367a8   Stefano Babic   tools: dynamicall...
56
57
58
59
  	{-1,				"",		"Invalid",	},
  };
  
  /*
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
60
61
62
63
   * IMXIMAGE version definition for i.MX chips
   */
  static table_entry_t imximage_versions[] = {
  	{IMXIMAGE_V1,	"",	" (i.MX25/35/51 compatible)", },
0b7f7c339   Adrian Alonso   imx: imximage: ad...
64
  	{IMXIMAGE_V2,	"",	" (i.MX53/6/7 compatible)",   },
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
65
66
  	{-1,            "",     " (Invalid)",                 },
  };
8edcde5e4   Stefano Babic   mkimage: Add Free...
67
68
  
  static struct imx_header imximage_header;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
69
  static uint32_t imximage_version;
0187c985a   Stefano Babic   tools: add suppor...
70
71
72
73
74
75
76
  /*
   * Image Vector Table Offset
   * Initialized to a wrong not 4-bytes aligned address to
   * check if it is was set by the cfg file.
   */
  static uint32_t imximage_ivt_offset = UNDEFINED;
  static uint32_t imximage_csf_size = UNDEFINED;
377e367a8   Stefano Babic   tools: dynamicall...
77
78
  /* Initial Load Region Size */
  static uint32_t imximage_init_loadsize;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
79
80
  
  static set_dcd_val_t set_dcd_val;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
81
  static set_dcd_param_t set_dcd_param;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
82
83
  static set_dcd_rst_t set_dcd_rst;
  static set_imx_hdr_t set_imx_hdr;
4d5fa9853   Troy Kisky   imximage: check d...
84
  static uint32_t max_dcd_entries;
243319825   Troy Kisky   imximage: delay s...
85
  static uint32_t *header_size_ptr;
0187c985a   Stefano Babic   tools: add suppor...
86
  static uint32_t *csf_ptr;
8edcde5e4   Stefano Babic   mkimage: Add Free...
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  
  static uint32_t get_cfg_value(char *token, char *name,  int linenr)
  {
  	char *endptr;
  	uint32_t value;
  
  	errno = 0;
  	value = strtoul(token, &endptr, 16);
  	if (errno || (token == endptr)) {
  		fprintf(stderr, "Error: %s[%d] - Invalid hex data(%s)
  ",
  			name,  linenr, token);
  		exit(EXIT_FAILURE);
  	}
  	return value;
  }
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
103
  static uint32_t detect_imximage_version(struct imx_header *imx_hdr)
8edcde5e4   Stefano Babic   mkimage: Add Free...
104
  {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  	imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1;
  	imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2;
  	flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
  	flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
  
  	/* Try to detect V1 */
  	if ((fhdr_v1->app_code_barker == APP_CODE_BARKER) &&
  		(hdr_v1->dcd_table.preamble.barker == DCD_BARKER))
  		return IMXIMAGE_V1;
  
  	/* Try to detect V2 */
  	if ((fhdr_v2->header.tag == IVT_HEADER_TAG) &&
  		(hdr_v2->dcd_table.header.tag == DCD_HEADER_TAG))
  		return IMXIMAGE_V2;
  
  	return IMXIMAGE_VER_INVALID;
8edcde5e4   Stefano Babic   mkimage: Add Free...
121
  }
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
122
  static void err_imximage_version(int version)
8edcde5e4   Stefano Babic   mkimage: Add Free...
123
  {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
124
125
126
  	fprintf(stderr,
  		"Error: Unsupported imximage version:%d
  ", version);
8edcde5e4   Stefano Babic   mkimage: Add Free...
127

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
128
129
  	exit(EXIT_FAILURE);
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
130

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  static void set_dcd_val_v1(struct imx_header *imxhdr, char *name, int lineno,
  					int fld, uint32_t value, uint32_t off)
  {
  	dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table;
  
  	switch (fld) {
  	case CFG_REG_SIZE:
  		/* Byte, halfword, word */
  		if ((value != 1) && (value != 2) && (value != 4)) {
  			fprintf(stderr, "Error: %s[%d] - "
  				"Invalid register size " "(%d)
  ",
  				name, lineno, value);
  			exit(EXIT_FAILURE);
  		}
  		dcd_v1->addr_data[off].type = value;
  		break;
  	case CFG_REG_ADDRESS:
  		dcd_v1->addr_data[off].addr = value;
  		break;
  	case CFG_REG_VALUE:
  		dcd_v1->addr_data[off].value = value;
  		break;
  	default:
  		break;
8edcde5e4   Stefano Babic   mkimage: Add Free...
156

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
157
158
  	}
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
159

61903b759   Troy Kisky   imximage: fix com...
160
  static struct dcd_v2_cmd *gd_last_cmd;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
161
162
163
164
  static void set_dcd_param_v2(struct imx_header *imxhdr, uint32_t dcd_len,
  		int32_t cmd)
  {
  	dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
61903b759   Troy Kisky   imximage: fix com...
165
166
167
168
169
170
171
172
173
174
  	struct dcd_v2_cmd *d = gd_last_cmd;
  	struct dcd_v2_cmd *d2;
  	int len;
  
  	if (!d)
  		d = &dcd_v2->dcd_cmd;
  	d2 = d;
  	len = be16_to_cpu(d->write_dcd_command.length);
  	if (len > 4)
  		d2 = (struct dcd_v2_cmd *)(((char *)d) + len);
0b7f7c339   Adrian Alonso   imx: imximage: ad...
175
176
177
  
  	switch (cmd) {
  	case CMD_WRITE_DATA:
61903b759   Troy Kisky   imximage: fix com...
178
179
180
181
182
183
184
  		if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) &&
  		    (d->write_dcd_command.param == DCD_WRITE_DATA_PARAM))
  			break;
  		d = d2;
  		d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
  		d->write_dcd_command.length = cpu_to_be16(4);
  		d->write_dcd_command.param = DCD_WRITE_DATA_PARAM;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
185
186
  		break;
  	case CMD_WRITE_CLR_BIT:
61903b759   Troy Kisky   imximage: fix com...
187
188
189
190
191
192
193
  		if ((d->write_dcd_command.tag == DCD_WRITE_DATA_COMMAND_TAG) &&
  		    (d->write_dcd_command.param == DCD_WRITE_CLR_BIT_PARAM))
  			break;
  		d = d2;
  		d->write_dcd_command.tag = DCD_WRITE_DATA_COMMAND_TAG;
  		d->write_dcd_command.length = cpu_to_be16(4);
  		d->write_dcd_command.param = DCD_WRITE_CLR_BIT_PARAM;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
194
195
196
  		break;
  	/*
  	 * Check data command only supports one entry,
0b7f7c339   Adrian Alonso   imx: imximage: ad...
197
198
  	 */
  	case CMD_CHECK_BITS_SET:
61903b759   Troy Kisky   imximage: fix com...
199
200
201
202
  		d = d2;
  		d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
  		d->write_dcd_command.length = cpu_to_be16(4);
  		d->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
203
204
  		break;
  	case CMD_CHECK_BITS_CLR:
61903b759   Troy Kisky   imximage: fix com...
205
206
207
208
  		d = d2;
  		d->write_dcd_command.tag = DCD_CHECK_DATA_COMMAND_TAG;
  		d->write_dcd_command.length = cpu_to_be16(4);
  		d->write_dcd_command.param = DCD_CHECK_BITS_SET_PARAM;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
209
210
211
212
  		break;
  	default:
  		break;
  	}
61903b759   Troy Kisky   imximage: fix com...
213
  	gd_last_cmd = d;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
214
  }
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
215
216
217
  static void set_dcd_val_v2(struct imx_header *imxhdr, char *name, int lineno,
  					int fld, uint32_t value, uint32_t off)
  {
61903b759   Troy Kisky   imximage: fix com...
218
219
220
221
222
  	struct dcd_v2_cmd *d = gd_last_cmd;
  	int len;
  
  	len = be16_to_cpu(d->write_dcd_command.length);
  	off = (len - 4) >> 3;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
223
224
225
  
  	switch (fld) {
  	case CFG_REG_ADDRESS:
61903b759   Troy Kisky   imximage: fix com...
226
  		d->addr_data[off].addr = cpu_to_be32(value);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
227
228
  		break;
  	case CFG_REG_VALUE:
61903b759   Troy Kisky   imximage: fix com...
229
230
231
  		d->addr_data[off].value = cpu_to_be32(value);
  		off++;
  		d->write_dcd_command.length = cpu_to_be16((off << 3) + 4);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
232
233
234
235
236
  		break;
  	default:
  		break;
  
  	}
8edcde5e4   Stefano Babic   mkimage: Add Free...
237
  }
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
238
239
240
241
242
243
  /*
   * Complete setting up the rest field of DCD of V1
   * such as barker code and DCD data length.
   */
  static void set_dcd_rst_v1(struct imx_header *imxhdr, uint32_t dcd_len,
  						char *name, int lineno)
8edcde5e4   Stefano Babic   mkimage: Add Free...
244
  {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
245
  	dcd_v1_t *dcd_v1 = &imxhdr->header.hdr_v1.dcd_table;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
246
247
248
249
250
251
252
253
254
255
256
257
  	dcd_v1->preamble.barker = DCD_BARKER;
  	dcd_v1->preamble.length = dcd_len * sizeof(dcd_type_addr_data_t);
  }
  
  /*
   * Complete setting up the reset field of DCD of V2
   * such as DCD tag, version, length, etc.
   */
  static void set_dcd_rst_v2(struct imx_header *imxhdr, uint32_t dcd_len,
  						char *name, int lineno)
  {
  	dcd_v2_t *dcd_v2 = &imxhdr->header.hdr_v2.dcd_table;
61903b759   Troy Kisky   imximage: fix com...
258
259
260
261
262
263
264
265
266
267
  	struct dcd_v2_cmd *d = gd_last_cmd;
  	int len;
  
  	if (!d)
  		d = &dcd_v2->dcd_cmd;
  	len = be16_to_cpu(d->write_dcd_command.length);
  	if (len > 4)
  		d = (struct dcd_v2_cmd *)(((char *)d) + len);
  
  	len = (char *)d - (char *)&dcd_v2->header;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
268

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
269
  	dcd_v2->header.tag = DCD_HEADER_TAG;
61903b759   Troy Kisky   imximage: fix com...
270
  	dcd_v2->header.length = cpu_to_be16(len);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
271
  	dcd_v2->header.version = DCD_VERSION;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
272
273
274
  }
  
  static void set_imx_hdr_v1(struct imx_header *imxhdr, uint32_t dcd_len,
ad0826dcd   Troy Kisky   imximage: change ...
275
  		uint32_t entry_point, uint32_t flash_offset)
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
276
277
278
279
  {
  	imx_header_v1_t *hdr_v1 = &imxhdr->header.hdr_v1;
  	flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
  	dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table;
ab857f261   Troy Kisky   imximage: make se...
280
  	uint32_t hdr_base;
243319825   Troy Kisky   imximage: delay s...
281
282
  	uint32_t header_length = (((char *)&dcd_v1->addr_data[dcd_len].addr)
  			- ((char *)imxhdr));
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
283

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
284
285
  	/* Set magic number */
  	fhdr_v1->app_code_barker = APP_CODE_BARKER;
377e367a8   Stefano Babic   tools: dynamicall...
286
287
  	/* TODO: check i.MX image V1 handling, for now use 'old' style */
  	hdr_base = entry_point - 4096;
ab857f261   Troy Kisky   imximage: make se...
288
  	fhdr_v1->app_dest_ptr = hdr_base - flash_offset;
ad0826dcd   Troy Kisky   imximage: change ...
289
  	fhdr_v1->app_code_jump_vector = entry_point;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
290

ab857f261   Troy Kisky   imximage: make se...
291
292
  	fhdr_v1->dcd_ptr_ptr = hdr_base + offsetof(flash_header_v1_t, dcd_ptr);
  	fhdr_v1->dcd_ptr = hdr_base + offsetof(imx_header_v1_t, dcd_table);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
293

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
294
295
296
  	/* Security feature are not supported */
  	fhdr_v1->app_code_csf = 0;
  	fhdr_v1->super_root_key = 0;
243319825   Troy Kisky   imximage: delay s...
297
  	header_size_ptr = (uint32_t *)(((char *)imxhdr) + header_length - 4);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
298
299
300
  }
  
  static void set_imx_hdr_v2(struct imx_header *imxhdr, uint32_t dcd_len,
ad0826dcd   Troy Kisky   imximage: change ...
301
  		uint32_t entry_point, uint32_t flash_offset)
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
302
303
304
  {
  	imx_header_v2_t *hdr_v2 = &imxhdr->header.hdr_v2;
  	flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
ab857f261   Troy Kisky   imximage: make se...
305
  	uint32_t hdr_base;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
306

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
307
308
309
310
  	/* Set magic number */
  	fhdr_v2->header.tag = IVT_HEADER_TAG; /* 0xD1 */
  	fhdr_v2->header.length = cpu_to_be16(sizeof(flash_header_v2_t));
  	fhdr_v2->header.version = IVT_VERSION; /* 0x40 */
ad0826dcd   Troy Kisky   imximage: change ...
311
  	fhdr_v2->entry = entry_point;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
312
  	fhdr_v2->reserved1 = fhdr_v2->reserved2 = 0;
377e367a8   Stefano Babic   tools: dynamicall...
313
314
315
  	hdr_base = entry_point - imximage_init_loadsize +
  		flash_offset;
  	fhdr_v2->self = hdr_base;
b893c9898   Baruch Siach   tools/imximage: s...
316
317
318
319
320
  	if (dcd_len > 0)
  		fhdr_v2->dcd_ptr = hdr_base
  			+ offsetof(imx_header_v2_t, dcd_table);
  	else
  		fhdr_v2->dcd_ptr = 0;
ab857f261   Troy Kisky   imximage: make se...
321
322
  	fhdr_v2->boot_data_ptr = hdr_base
  			+ offsetof(imx_header_v2_t, boot_data);
377e367a8   Stefano Babic   tools: dynamicall...
323
  	hdr_v2->boot_data.start = entry_point - imximage_init_loadsize;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
324

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
325
  	fhdr_v2->csf = 0;
0187c985a   Stefano Babic   tools: add suppor...
326

243319825   Troy Kisky   imximage: delay s...
327
  	header_size_ptr = &hdr_v2->boot_data.size;
0187c985a   Stefano Babic   tools: add suppor...
328
  	csf_ptr = &fhdr_v2->csf;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
329
  }
72048bc3f   York Sun   tools/imximage.c:...
330
  static void set_hdr_func(void)
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
331
332
333
334
  {
  	switch (imximage_version) {
  	case IMXIMAGE_V1:
  		set_dcd_val = set_dcd_val_v1;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
335
  		set_dcd_param = NULL;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
336
337
  		set_dcd_rst = set_dcd_rst_v1;
  		set_imx_hdr = set_imx_hdr_v1;
4d5fa9853   Troy Kisky   imximage: check d...
338
  		max_dcd_entries = MAX_HW_CFG_SIZE_V1;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
339
340
  		break;
  	case IMXIMAGE_V2:
61903b759   Troy Kisky   imximage: fix com...
341
  		gd_last_cmd = NULL;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
342
  		set_dcd_val = set_dcd_val_v2;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
343
  		set_dcd_param = set_dcd_param_v2;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
344
345
  		set_dcd_rst = set_dcd_rst_v2;
  		set_imx_hdr = set_imx_hdr_v2;
4d5fa9853   Troy Kisky   imximage: check d...
346
  		max_dcd_entries = MAX_HW_CFG_SIZE_V2;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
347
348
349
350
351
352
  		break;
  	default:
  		err_imximage_version(imximage_version);
  		break;
  	}
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
353

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
354
355
356
357
358
359
360
361
362
  static void print_hdr_v1(struct imx_header *imx_hdr)
  {
  	imx_header_v1_t *hdr_v1 = &imx_hdr->header.hdr_v1;
  	flash_header_v1_t *fhdr_v1 = &hdr_v1->fhdr;
  	dcd_v1_t *dcd_v1 = &hdr_v1->dcd_table;
  	uint32_t size, length, ver;
  
  	size = dcd_v1->preamble.length;
  	if (size > (MAX_HW_CFG_SIZE_V1 * sizeof(dcd_type_addr_data_t))) {
8edcde5e4   Stefano Babic   mkimage: Add Free...
363
364
365
  		fprintf(stderr,
  			"Error: Image corrupt DCD size %d exceed maximum %d
  ",
5b28e913f   Stefano Babic   mkimage: SEGFAULT...
366
  			(uint32_t)(size / sizeof(dcd_type_addr_data_t)),
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
  			MAX_HW_CFG_SIZE_V1);
  		exit(EXIT_FAILURE);
  	}
  
  	length = dcd_v1->preamble.length / sizeof(dcd_type_addr_data_t);
  	ver = detect_imximage_version(imx_hdr);
  
  	printf("Image Type:   Freescale IMX Boot Image
  ");
  	printf("Image Ver:    %x", ver);
  	printf("%s
  ", get_table_entry_name(imximage_versions, NULL, ver));
  	printf("Data Size:    ");
  	genimg_print_size(dcd_v1->addr_data[length].type);
  	printf("Load Address: %08x
  ", (uint32_t)fhdr_v1->app_dest_ptr);
  	printf("Entry Point:  %08x
  ", (uint32_t)fhdr_v1->app_code_jump_vector);
  }
  
  static void print_hdr_v2(struct imx_header *imx_hdr)
  {
  	imx_header_v2_t *hdr_v2 = &imx_hdr->header.hdr_v2;
  	flash_header_v2_t *fhdr_v2 = &hdr_v2->fhdr;
  	dcd_v2_t *dcd_v2 = &hdr_v2->dcd_table;
  	uint32_t size, version;
835c30e36   Troy Kisky   imximage: header....
393
394
  	size = be16_to_cpu(dcd_v2->header.length);
  	if (size > (MAX_HW_CFG_SIZE_V2 * sizeof(dcd_addr_data_t)) + 8) {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
395
396
397
398
399
  		fprintf(stderr,
  			"Error: Image corrupt DCD size %d exceed maximum %d
  ",
  			(uint32_t)(size / sizeof(dcd_addr_data_t)),
  			MAX_HW_CFG_SIZE_V2);
8edcde5e4   Stefano Babic   mkimage: Add Free...
400
401
  		exit(EXIT_FAILURE);
  	}
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
402
  	version = detect_imximage_version(imx_hdr);
8edcde5e4   Stefano Babic   mkimage: Add Free...
403
404
405
  
  	printf("Image Type:   Freescale IMX Boot Image
  ");
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
406
407
408
  	printf("Image Ver:    %x", version);
  	printf("%s
  ", get_table_entry_name(imximage_versions, NULL, version));
8edcde5e4   Stefano Babic   mkimage: Add Free...
409
  	printf("Data Size:    ");
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
410
411
412
413
414
  	genimg_print_size(hdr_v2->boot_data.size);
  	printf("Load Address: %08x
  ", (uint32_t)fhdr_v2->boot_data_ptr);
  	printf("Entry Point:  %08x
  ", (uint32_t)fhdr_v2->entry);
0187c985a   Stefano Babic   tools: add suppor...
415
416
417
418
419
420
421
422
  	if (fhdr_v2->csf && (imximage_ivt_offset != UNDEFINED) &&
  	    (imximage_csf_size != UNDEFINED)) {
  		printf("HAB Blocks:   %08x %08x %08x
  ",
  		       (uint32_t)fhdr_v2->self, 0,
  		       hdr_v2->boot_data.size - imximage_ivt_offset -
  		       imximage_csf_size);
  	}
8edcde5e4   Stefano Babic   mkimage: Add Free...
423
  }
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
  static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token,
  				char *name, int lineno, int fld, int dcd_len)
  {
  	int value;
  	static int cmd_ver_first = ~0;
  
  	switch (cmd) {
  	case CMD_IMAGE_VERSION:
  		imximage_version = get_cfg_value(token, name, lineno);
  		if (cmd_ver_first == 0) {
  			fprintf(stderr, "Error: %s[%d] - IMAGE_VERSION "
  				"command need be the first before other "
  				"valid command in the file
  ", name, lineno);
  			exit(EXIT_FAILURE);
  		}
  		cmd_ver_first = 1;
72048bc3f   York Sun   tools/imximage.c:...
441
  		set_hdr_func();
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
442
443
  		break;
  	case CMD_BOOT_FROM:
377e367a8   Stefano Babic   tools: dynamicall...
444
  		imximage_ivt_offset = get_table_entry_id(imximage_boot_offset,
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
445
  					"imximage boot option", token);
3150f92c2   Stefano Babic   tools: rename mxi...
446
  		if (imximage_ivt_offset == -1) {
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
447
448
449
450
451
  			fprintf(stderr, "Error: %s[%d] -Invalid boot device"
  				"(%s)
  ", name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
377e367a8   Stefano Babic   tools: dynamicall...
452
453
454
455
456
457
458
459
460
461
462
463
  
  		imximage_init_loadsize =
  			get_table_entry_id(imximage_boot_loadsize,
  					   "imximage boot option", token);
  
  		if (imximage_init_loadsize == -1) {
  			fprintf(stderr,
  				"Error: %s[%d] -Invalid boot device(%s)
  ",
  				name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
01390aff2   Stefano Babic   tools: add paddin...
464
465
466
467
468
469
470
  
  		/*
  		 * The SOC loads from the storage starting at address 0
  		 * then ensures that the load size contains the offset
  		 */
  		if (imximage_init_loadsize < imximage_ivt_offset)
  			imximage_init_loadsize = imximage_ivt_offset;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
471
472
473
  		if (unlikely(cmd_ver_first != 1))
  			cmd_ver_first = 0;
  		break;
6cb83829a   Marek Vasut   tools: arm: imx: ...
474
  	case CMD_BOOT_OFFSET:
3150f92c2   Stefano Babic   tools: rename mxi...
475
  		imximage_ivt_offset = get_cfg_value(token, name, lineno);
6cb83829a   Marek Vasut   tools: arm: imx: ...
476
477
478
  		if (unlikely(cmd_ver_first != 1))
  			cmd_ver_first = 0;
  		break;
0b7f7c339   Adrian Alonso   imx: imximage: ad...
479
480
481
482
  	case CMD_WRITE_DATA:
  	case CMD_WRITE_CLR_BIT:
  	case CMD_CHECK_BITS_SET:
  	case CMD_CHECK_BITS_CLR:
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
483
  		value = get_cfg_value(token, name, lineno);
0b7f7c339   Adrian Alonso   imx: imximage: ad...
484
485
  		if (set_dcd_param)
  			(*set_dcd_param)(imxhdr, dcd_len, cmd);
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
486
487
488
489
  		(*set_dcd_val)(imxhdr, name, lineno, fld, value, dcd_len);
  		if (unlikely(cmd_ver_first != 1))
  			cmd_ver_first = 0;
  		break;
0187c985a   Stefano Babic   tools: add suppor...
490
491
492
493
494
495
496
497
498
499
500
501
  	case CMD_CSF:
  		if (imximage_version != 2) {
  			fprintf(stderr,
  				"Error: %s[%d] - CSF only supported for VERSION 2(%s)
  ",
  				name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
  		imximage_csf_size = get_cfg_value(token, name, lineno);
  		if (unlikely(cmd_ver_first != 1))
  			cmd_ver_first = 0;
  		break;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
  	}
  }
  
  static void parse_cfg_fld(struct imx_header *imxhdr, int32_t *cmd,
  		char *token, char *name, int lineno, int fld, int *dcd_len)
  {
  	int value;
  
  	switch (fld) {
  	case CFG_COMMAND:
  		*cmd = get_table_entry_id(imximage_cmds,
  			"imximage commands", token);
  		if (*cmd < 0) {
  			fprintf(stderr, "Error: %s[%d] - Invalid command"
  			"(%s)
  ", name, lineno, token);
  			exit(EXIT_FAILURE);
  		}
  		break;
  	case CFG_REG_SIZE:
  		parse_cfg_cmd(imxhdr, *cmd, token, name, lineno, fld, *dcd_len);
  		break;
  	case CFG_REG_ADDRESS:
  	case CFG_REG_VALUE:
0b7f7c339   Adrian Alonso   imx: imximage: ad...
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
  		switch(*cmd) {
  		case CMD_WRITE_DATA:
  		case CMD_WRITE_CLR_BIT:
  		case CMD_CHECK_BITS_SET:
  		case CMD_CHECK_BITS_CLR:
  
  			value = get_cfg_value(token, name, lineno);
  			if (set_dcd_param)
  				(*set_dcd_param)(imxhdr, *dcd_len, *cmd);
  			(*set_dcd_val)(imxhdr, name, lineno, fld, value,
  					*dcd_len);
  
  			if (fld == CFG_REG_VALUE) {
  				(*dcd_len)++;
  				if (*dcd_len > max_dcd_entries) {
  					fprintf(stderr, "Error: %s[%d] -"
  						"DCD table exceeds maximum size(%d)
  ",
  						name, lineno, max_dcd_entries);
  					exit(EXIT_FAILURE);
  				}
4d5fa9853   Troy Kisky   imximage: check d...
547
  			}
0b7f7c339   Adrian Alonso   imx: imximage: ad...
548
549
550
  			break;
  		default:
  			break;
4d5fa9853   Troy Kisky   imximage: check d...
551
  		}
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
552
553
554
555
556
557
  		break;
  	default:
  		break;
  	}
  }
  static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name)
8edcde5e4   Stefano Babic   mkimage: Add Free...
558
559
560
561
562
  {
  	FILE *fd = NULL;
  	char *line = NULL;
  	char *token, *saveptr1, *saveptr2;
  	int lineno = 0;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
563
  	int fld;
0ad22703f   Kim Phillips   tools: fix imxima...
564
  	size_t len;
8edcde5e4   Stefano Babic   mkimage: Add Free...
565
  	int dcd_len = 0;
8edcde5e4   Stefano Babic   mkimage: Add Free...
566
567
568
569
570
571
572
573
  	int32_t cmd;
  
  	fd = fopen(name, "r");
  	if (fd == 0) {
  		fprintf(stderr, "Error: %s - Can't open DCD file
  ", name);
  		exit(EXIT_FAILURE);
  	}
01390aff2   Stefano Babic   tools: add paddin...
574
575
  	/*
  	 * Very simple parsing, line starting with # are comments
8edcde5e4   Stefano Babic   mkimage: Add Free...
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
  	 * and are dropped
  	 */
  	while ((getline(&line, &len, fd)) > 0) {
  		lineno++;
  
  		token = strtok_r(line, "\r
  ", &saveptr1);
  		if (token == NULL)
  			continue;
  
  		/* Check inside the single line */
  		for (fld = CFG_COMMAND, cmd = CMD_INVALID,
  				line = token; ; line = NULL, fld++) {
  			token = strtok_r(line, " \t", &saveptr2);
  			if (token == NULL)
  				break;
  
  			/* Drop all text starting with '#' as comments */
  			if (token[0] == '#')
  				break;
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
596
597
  			parse_cfg_fld(imxhdr, &cmd, token, name,
  					lineno, fld, &dcd_len);
8edcde5e4   Stefano Babic   mkimage: Add Free...
598
  		}
8edcde5e4   Stefano Babic   mkimage: Add Free...
599
  	}
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
600
601
  
  	(*set_dcd_rst)(imxhdr, dcd_len, name, lineno);
8edcde5e4   Stefano Babic   mkimage: Add Free...
602
  	fclose(fd);
8d8cc828f   Troy Kisky   imximage: move fl...
603
  	/* Exit if there is no BOOT_FROM field specifying the flash_offset */
3150f92c2   Stefano Babic   tools: rename mxi...
604
  	if (imximage_ivt_offset == FLASH_OFFSET_UNDEFINED) {
8d8cc828f   Troy Kisky   imximage: move fl...
605
606
607
608
  		fprintf(stderr, "Error: No BOOT_FROM tag in %s
  ", name);
  		exit(EXIT_FAILURE);
  	}
5b28e913f   Stefano Babic   mkimage: SEGFAULT...
609
  	return dcd_len;
8edcde5e4   Stefano Babic   mkimage: Add Free...
610
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
611

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
612
613
614
615
616
617
618
  static int imximage_check_image_types(uint8_t type)
  {
  	if (type == IH_TYPE_IMXIMAGE)
  		return EXIT_SUCCESS;
  	else
  		return EXIT_FAILURE;
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
619

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
620
  static int imximage_verify_header(unsigned char *ptr, int image_size,
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
621
  			struct image_tool_params *params)
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
622
623
  {
  	struct imx_header *imx_hdr = (struct imx_header *) ptr;
8edcde5e4   Stefano Babic   mkimage: Add Free...
624

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
625
626
  	if (detect_imximage_version(imx_hdr) == IMXIMAGE_VER_INVALID)
  		return -FDT_ERR_BADSTRUCTURE;
8edcde5e4   Stefano Babic   mkimage: Add Free...
627

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
628
629
  	return 0;
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
630

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
  static void imximage_print_header(const void *ptr)
  {
  	struct imx_header *imx_hdr = (struct imx_header *) ptr;
  	uint32_t version = detect_imximage_version(imx_hdr);
  
  	switch (version) {
  	case IMXIMAGE_V1:
  		print_hdr_v1(imx_hdr);
  		break;
  	case IMXIMAGE_V2:
  		print_hdr_v2(imx_hdr);
  		break;
  	default:
  		err_imximage_version(version);
  		break;
  	}
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
648

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
649
  static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd,
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
650
  				struct image_tool_params *params)
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
651
652
653
  {
  	struct imx_header *imxhdr = (struct imx_header *)ptr;
  	uint32_t dcd_len;
8edcde5e4   Stefano Babic   mkimage: Add Free...
654

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
655
656
657
658
659
660
  	/*
  	 * In order to not change the old imx cfg file
  	 * by adding VERSION command into it, here need
  	 * set up function ptr group to V1 by default.
  	 */
  	imximage_version = IMXIMAGE_V1;
49d3e2721   Dirk Behme   imximage: Remove ...
661
  	/* Be able to detect if the cfg file has no BOOT_FROM tag */
3150f92c2   Stefano Babic   tools: rename mxi...
662
  	imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
0187c985a   Stefano Babic   tools: add suppor...
663
  	imximage_csf_size = 0;
72048bc3f   York Sun   tools/imximage.c:...
664
  	set_hdr_func();
8edcde5e4   Stefano Babic   mkimage: Add Free...
665

8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
666
667
  	/* Parse dcd configuration file */
  	dcd_len = parse_cfg_file(imxhdr, params->imagename);
8edcde5e4   Stefano Babic   mkimage: Add Free...
668

03ea24b2a   Ye.Li   imximage: Fix imx...
669
670
671
672
673
674
  	if (imximage_version == IMXIMAGE_V2) {
  		if (imximage_init_loadsize < imximage_ivt_offset +
  			sizeof(imx_header_v2_t))
  				imximage_init_loadsize = imximage_ivt_offset +
  					sizeof(imx_header_v2_t);
  	}
8a1edd7d5   Liu Hui-R64343   imximage: Add MX5...
675
  	/* Set the imx header */
3150f92c2   Stefano Babic   tools: rename mxi...
676
  	(*set_imx_hdr)(imxhdr, dcd_len, params->ep, imximage_ivt_offset);
1411fb37b   Fabio Estevam   tools: imximage: ...
677
678
679
  
  	/*
  	 * ROM bug alert
895d99667   Marek Vasut   imx: Align the im...
680
681
682
683
684
685
  	 *
  	 * MX53 only loads 512 byte multiples in case of SD boot.
  	 * MX53 only loads NAND page multiples in case of NAND boot and
  	 * supports up to 4096 byte large pages, thus align to 4096.
  	 *
  	 * The remaining fraction of a block bytes would not be loaded!
1411fb37b   Fabio Estevam   tools: imximage: ...
686
  	 */
de9798047   Ye.Li   imximage: Fix the...
687
  	*header_size_ptr = ROUND((sbuf->st_size + imximage_ivt_offset), 4096);
0187c985a   Stefano Babic   tools: add suppor...
688
689
690
691
692
693
  
  	if (csf_ptr && imximage_csf_size) {
  		*csf_ptr = params->ep - imximage_init_loadsize +
  			*header_size_ptr;
  		*header_size_ptr += imximage_csf_size;
  	}
8edcde5e4   Stefano Babic   mkimage: Add Free...
694
  }
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
695
  int imximage_check_params(struct image_tool_params *params)
8edcde5e4   Stefano Babic   mkimage: Add Free...
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
  {
  	if (!params)
  		return CFG_INVALID;
  	if (!strlen(params->imagename)) {
  		fprintf(stderr, "Error: %s - Configuration file not specified, "
  			"it is needed for imximage generation
  ",
  			params->cmdname);
  		return CFG_INVALID;
  	}
  	/*
  	 * Check parameters:
  	 * XIP is not allowed and verify that incompatible
  	 * parameters are not sent at the same time
  	 * For example, if list is required a data image must not be provided
  	 */
  	return	(params->dflag && (params->fflag || params->lflag)) ||
  		(params->fflag && (params->dflag || params->lflag)) ||
  		(params->lflag && (params->dflag || params->fflag)) ||
  		(params->xflag) || !(strlen(params->imagename));
  }
f86ed6a8d   Guilherme Maciel Ferreira   tools: moved code...
717
  static int imximage_generate(struct image_tool_params *params,
01390aff2   Stefano Babic   tools: add paddin...
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
  	struct image_type_params *tparams)
  {
  	struct imx_header *imxhdr;
  	size_t alloc_len;
  	struct stat sbuf;
  	char *datafile = params->datafile;
  	uint32_t pad_len;
  
  	memset(&imximage_header, 0, sizeof(imximage_header));
  
  	/*
  	 * In order to not change the old imx cfg file
  	 * by adding VERSION command into it, here need
  	 * set up function ptr group to V1 by default.
  	 */
  	imximage_version = IMXIMAGE_V1;
  	/* Be able to detect if the cfg file has no BOOT_FROM tag */
  	imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
  	imximage_csf_size = 0;
72048bc3f   York Sun   tools/imximage.c:...
737
  	set_hdr_func();
01390aff2   Stefano Babic   tools: add paddin...
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
  
  	/* Parse dcd configuration file */
  	parse_cfg_file(&imximage_header, params->imagename);
  
  	/* TODO: check i.MX image V1 handling, for now use 'old' style */
  	if (imximage_version == IMXIMAGE_V1) {
  		alloc_len = 4096;
  	} else {
  		if (imximage_init_loadsize < imximage_ivt_offset +
  			sizeof(imx_header_v2_t))
  				imximage_init_loadsize = imximage_ivt_offset +
  					sizeof(imx_header_v2_t);
  		alloc_len = imximage_init_loadsize - imximage_ivt_offset;
  	}
  
  	if (alloc_len < sizeof(struct imx_header)) {
  		fprintf(stderr, "%s: header error
  ",
  			params->cmdname);
  		exit(EXIT_FAILURE);
  	}
  
  	imxhdr = malloc(alloc_len);
  
  	if (!imxhdr) {
  		fprintf(stderr, "%s: malloc return failure: %s
  ",
  			params->cmdname, strerror(errno));
  		exit(EXIT_FAILURE);
  	}
  
  	memset(imxhdr, 0, alloc_len);
  
  	tparams->header_size = alloc_len;
  	tparams->hdr         = imxhdr;
  
  	/* determine data image file length */
  
  	if (stat(datafile, &sbuf) < 0) {
  		fprintf(stderr, "%s: Can't stat %s: %s
  ",
  			params->cmdname, datafile, strerror(errno));
  		exit(EXIT_FAILURE);
  	}
  
  	pad_len = ROUND(sbuf.st_size, 4096) - sbuf.st_size;
  
  	/* TODO: check i.MX image V1 handling, for now use 'old' style */
  	if (imximage_version == IMXIMAGE_V1)
  		return 0;
  	else
  		return pad_len;
  }
8edcde5e4   Stefano Babic   mkimage: Add Free...
791
792
793
  /*
   * imximage parameters
   */
a93648d19   Guilherme Maciel Ferreira   imagetool: replac...
794
795
796
797
798
799
800
801
802
803
804
805
806
807
  U_BOOT_IMAGE_TYPE(
  	imximage,
  	"Freescale i.MX Boot Image support",
  	0,
  	NULL,
  	imximage_check_params,
  	imximage_verify_header,
  	imximage_print_header,
  	imximage_set_header,
  	NULL,
  	imximage_check_image_types,
  	NULL,
  	imximage_generate
  );