]>
Commit | Line | Data |
---|---|---|
b97a2a0a MB |
1 | /* |
2 | * (C) Copyright 2008 Semihalf | |
3 | * | |
4 | * (C) Copyright 2000-2006 | |
5 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
6 | * | |
7 | * See file CREDITS for list of people who contributed to this | |
8 | * project. | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU General Public License as | |
12 | * published by the Free Software Foundation; either version 2 of | |
13 | * the License, or (at your option) any later version. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | * GNU General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public License | |
21 | * along with this program; if not, write to the Free Software | |
22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
23 | * MA 02111-1307 USA | |
24 | */ | |
ceaed2b1 | 25 | |
b97a2a0a | 26 | #ifndef USE_HOSTCC |
5ad03eb3 MB |
27 | #include <common.h> |
28 | #include <watchdog.h> | |
29 | ||
30 | #ifdef CONFIG_SHOW_BOOT_PROGRESS | |
31 | #include <status_led.h> | |
32 | #endif | |
33 | ||
34 | #ifdef CONFIG_HAS_DATAFLASH | |
35 | #include <dataflash.h> | |
36 | #endif | |
37 | ||
95d449ad MB |
38 | #ifdef CONFIG_LOGBUFFER |
39 | #include <logbuff.h> | |
40 | #endif | |
41 | ||
2242f536 | 42 | #include <rtc.h> |
2242f536 | 43 | |
1cf0a8b2 | 44 | #include <environment.h> |
5dfb5213 MB |
45 | #include <image.h> |
46 | ||
712fbcf3 | 47 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
fff888a1 MB |
48 | #include <libfdt.h> |
49 | #include <fdt_support.h> | |
c8779648 MB |
50 | #endif |
51 | ||
20a14a42 | 52 | #include <u-boot/md5.h> |
5dfb5213 | 53 | #include <sha1.h> |
35e7b0f1 | 54 | #include <asm/io.h> |
c8779648 | 55 | |
b6b0fe64 | 56 | #ifdef CONFIG_CMD_BDI |
54841ab5 | 57 | extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
b6b0fe64 MB |
58 | #endif |
59 | ||
60 | DECLARE_GLOBAL_DATA_PTR; | |
8a5ea3e6 | 61 | |
712fbcf3 | 62 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
d985c849 | 63 | int verify); |
b97a2a0a | 64 | #else |
5ad03eb3 | 65 | #include "mkimage.h" |
20a14a42 | 66 | #include <u-boot/md5.h> |
5dfb5213 | 67 | #include <time.h> |
b97a2a0a | 68 | #include <image.h> |
5dfb5213 | 69 | #endif /* !USE_HOSTCC*/ |
b97a2a0a | 70 | |
0ccff500 SG |
71 | #include <u-boot/crc.h> |
72 | ||
7edb186f | 73 | static const table_entry_t uimage_arch[] = { |
570abb0a MB |
74 | { IH_ARCH_INVALID, NULL, "Invalid ARCH", }, |
75 | { IH_ARCH_ALPHA, "alpha", "Alpha", }, | |
76 | { IH_ARCH_ARM, "arm", "ARM", }, | |
77 | { IH_ARCH_I386, "x86", "Intel x86", }, | |
78 | { IH_ARCH_IA64, "ia64", "IA64", }, | |
79 | { IH_ARCH_M68K, "m68k", "M68K", }, | |
80 | { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", }, | |
81 | { IH_ARCH_MIPS, "mips", "MIPS", }, | |
82 | { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, | |
570abb0a | 83 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
e419e12d | 84 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
570abb0a MB |
85 | { IH_ARCH_PPC, "ppc", "PowerPC", }, |
86 | { IH_ARCH_S390, "s390", "IBM S390", }, | |
87 | { IH_ARCH_SH, "sh", "SuperH", }, | |
88 | { IH_ARCH_SPARC, "sparc", "SPARC", }, | |
89 | { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", }, | |
90 | { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, | |
91 | { IH_ARCH_AVR32, "avr32", "AVR32", }, | |
64d61461 | 92 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
3ddcaccd | 93 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
35e7b0f1 | 94 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
570abb0a MB |
95 | { -1, "", "", }, |
96 | }; | |
97 | ||
7edb186f | 98 | static const table_entry_t uimage_os[] = { |
570abb0a | 99 | { IH_OS_INVALID, NULL, "Invalid OS", }, |
570abb0a MB |
100 | { IH_OS_LINUX, "linux", "Linux", }, |
101 | #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC) | |
102 | { IH_OS_LYNXOS, "lynxos", "LynxOS", }, | |
103 | #endif | |
104 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, | |
3df61957 | 105 | { IH_OS_OSE, "ose", "Enea OSE", }, |
04d41409 | 106 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
570abb0a MB |
107 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
108 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, | |
109 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) | |
110 | { IH_OS_QNX, "qnx", "QNX", }, | |
111 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, | |
112 | #endif | |
f5ed9e39 PT |
113 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
114 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, | |
115 | #endif | |
570abb0a MB |
116 | #ifdef USE_HOSTCC |
117 | { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", }, | |
118 | { IH_OS_DELL, "dell", "Dell", }, | |
119 | { IH_OS_ESIX, "esix", "Esix", }, | |
120 | { IH_OS_FREEBSD, "freebsd", "FreeBSD", }, | |
121 | { IH_OS_IRIX, "irix", "Irix", }, | |
122 | { IH_OS_NCR, "ncr", "NCR", }, | |
123 | { IH_OS_OPENBSD, "openbsd", "OpenBSD", }, | |
124 | { IH_OS_PSOS, "psos", "pSOS", }, | |
125 | { IH_OS_SCO, "sco", "SCO", }, | |
126 | { IH_OS_SOLARIS, "solaris", "Solaris", }, | |
127 | { IH_OS_SVR4, "svr4", "SVR4", }, | |
128 | #endif | |
129 | { -1, "", "", }, | |
130 | }; | |
131 | ||
7edb186f | 132 | static const table_entry_t uimage_type[] = { |
4962e38e | 133 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
570abb0a MB |
134 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
135 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, | |
3decb14a | 136 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
570abb0a | 137 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
b9b50e89 | 138 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
4962e38e SB |
139 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
140 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, | |
141 | { IH_TYPE_INVALID, NULL, "Invalid Image", }, | |
570abb0a | 142 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
4962e38e | 143 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
5d898a00 | 144 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
570abb0a MB |
145 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
146 | { IH_TYPE_SCRIPT, "script", "Script", }, | |
147 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, | |
7816f2cf | 148 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
570abb0a MB |
149 | { -1, "", "", }, |
150 | }; | |
151 | ||
7edb186f | 152 | static const table_entry_t uimage_comp[] = { |
570abb0a MB |
153 | { IH_COMP_NONE, "none", "uncompressed", }, |
154 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, | |
155 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, | |
fc9c1727 | 156 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
20dde48b | 157 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
570abb0a MB |
158 | { -1, "", "", }, |
159 | }; | |
160 | ||
9a4daad0 MB |
161 | /*****************************************************************************/ |
162 | /* Legacy format routines */ | |
163 | /*****************************************************************************/ | |
712fbcf3 | 164 | int image_check_hcrc(const image_header_t *hdr) |
b97a2a0a MB |
165 | { |
166 | ulong hcrc; | |
712fbcf3 | 167 | ulong len = image_get_header_size(); |
b97a2a0a MB |
168 | image_header_t header; |
169 | ||
170 | /* Copy header so we can blank CRC field for re-calculation */ | |
712fbcf3 SW |
171 | memmove(&header, (char *)hdr, image_get_header_size()); |
172 | image_set_hcrc(&header, 0); | |
b97a2a0a | 173 | |
712fbcf3 | 174 | hcrc = crc32(0, (unsigned char *)&header, len); |
b97a2a0a | 175 | |
712fbcf3 | 176 | return (hcrc == image_get_hcrc(hdr)); |
b97a2a0a MB |
177 | } |
178 | ||
712fbcf3 | 179 | int image_check_dcrc(const image_header_t *hdr) |
b97a2a0a | 180 | { |
712fbcf3 SW |
181 | ulong data = image_get_data(hdr); |
182 | ulong len = image_get_data_size(hdr); | |
183 | ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32); | |
b97a2a0a | 184 | |
712fbcf3 | 185 | return (dcrc == image_get_dcrc(hdr)); |
b97a2a0a MB |
186 | } |
187 | ||
f13e7b2e MB |
188 | /** |
189 | * image_multi_count - get component (sub-image) count | |
190 | * @hdr: pointer to the header of the multi component image | |
191 | * | |
192 | * image_multi_count() returns number of components in a multi | |
193 | * component image. | |
194 | * | |
195 | * Note: no checking of the image type is done, caller must pass | |
196 | * a valid multi component image. | |
197 | * | |
198 | * returns: | |
199 | * number of components | |
200 | */ | |
712fbcf3 | 201 | ulong image_multi_count(const image_header_t *hdr) |
f13e7b2e MB |
202 | { |
203 | ulong i, count = 0; | |
df6f1b89 | 204 | uint32_t *size; |
f13e7b2e MB |
205 | |
206 | /* get start of the image payload, which in case of multi | |
207 | * component images that points to a table of component sizes */ | |
712fbcf3 | 208 | size = (uint32_t *)image_get_data(hdr); |
f13e7b2e MB |
209 | |
210 | /* count non empty slots */ | |
211 | for (i = 0; size[i]; ++i) | |
212 | count++; | |
213 | ||
214 | return count; | |
215 | } | |
216 | ||
217 | /** | |
218 | * image_multi_getimg - get component data address and size | |
219 | * @hdr: pointer to the header of the multi component image | |
220 | * @idx: index of the requested component | |
221 | * @data: pointer to a ulong variable, will hold component data address | |
222 | * @len: pointer to a ulong variable, will hold component size | |
223 | * | |
224 | * image_multi_getimg() returns size and data address for the requested | |
225 | * component in a multi component image. | |
226 | * | |
227 | * Note: no checking of the image type is done, caller must pass | |
228 | * a valid multi component image. | |
229 | * | |
230 | * returns: | |
231 | * data address and size of the component, if idx is valid | |
232 | * 0 in data and len, if idx is out of range | |
233 | */ | |
712fbcf3 | 234 | void image_multi_getimg(const image_header_t *hdr, ulong idx, |
f13e7b2e MB |
235 | ulong *data, ulong *len) |
236 | { | |
237 | int i; | |
df6f1b89 | 238 | uint32_t *size; |
02b9b224 | 239 | ulong offset, count, img_data; |
f13e7b2e MB |
240 | |
241 | /* get number of component */ | |
712fbcf3 | 242 | count = image_multi_count(hdr); |
f13e7b2e MB |
243 | |
244 | /* get start of the image payload, which in case of multi | |
245 | * component images that points to a table of component sizes */ | |
712fbcf3 | 246 | size = (uint32_t *)image_get_data(hdr); |
f13e7b2e MB |
247 | |
248 | /* get address of the proper component data start, which means | |
249 | * skipping sizes table (add 1 for last, null entry) */ | |
712fbcf3 | 250 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
f13e7b2e MB |
251 | |
252 | if (idx < count) { | |
712fbcf3 | 253 | *len = uimage_to_cpu(size[idx]); |
f13e7b2e | 254 | offset = 0; |
f13e7b2e MB |
255 | |
256 | /* go over all indices preceding requested component idx */ | |
257 | for (i = 0; i < idx; i++) { | |
02b9b224 | 258 | /* add up i-th component size, rounding up to 4 bytes */ |
712fbcf3 | 259 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
f13e7b2e MB |
260 | } |
261 | ||
262 | /* calculate idx-th component data address */ | |
02b9b224 | 263 | *data = img_data + offset; |
f13e7b2e MB |
264 | } else { |
265 | *len = 0; | |
266 | *data = 0; | |
267 | } | |
268 | } | |
42b73e8e | 269 | |
712fbcf3 | 270 | static void image_print_type(const image_header_t *hdr) |
9a4daad0 MB |
271 | { |
272 | const char *os, *arch, *type, *comp; | |
273 | ||
712fbcf3 SW |
274 | os = genimg_get_os_name(image_get_os(hdr)); |
275 | arch = genimg_get_arch_name(image_get_arch(hdr)); | |
276 | type = genimg_get_type_name(image_get_type(hdr)); | |
277 | comp = genimg_get_comp_name(image_get_comp(hdr)); | |
9a4daad0 | 278 | |
712fbcf3 | 279 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
9a4daad0 MB |
280 | } |
281 | ||
5dfb5213 | 282 | /** |
edbed247 | 283 | * image_print_contents - prints out the contents of the legacy format image |
3a2003f6 | 284 | * @ptr: pointer to the legacy format image header |
5dfb5213 MB |
285 | * @p: pointer to prefix string |
286 | * | |
edbed247 | 287 | * image_print_contents() formats a multi line legacy image contents description. |
5dfb5213 MB |
288 | * The routine prints out all header fields followed by the size/offset data |
289 | * for MULTI/SCRIPT images. | |
290 | * | |
291 | * returns: | |
292 | * no returned results | |
293 | */ | |
712fbcf3 | 294 | void image_print_contents(const void *ptr) |
9a4daad0 | 295 | { |
3a2003f6 | 296 | const image_header_t *hdr = (const image_header_t *)ptr; |
edbed247 BS |
297 | const char *p; |
298 | ||
1fe7d938 | 299 | p = IMAGE_INDENT_STRING; |
712fbcf3 | 300 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
859e92b7 SG |
301 | if (IMAGE_ENABLE_TIMESTAMP) { |
302 | printf("%sCreated: ", p); | |
303 | genimg_print_time((time_t)image_get_time(hdr)); | |
304 | } | |
712fbcf3 SW |
305 | printf("%sImage Type: ", p); |
306 | image_print_type(hdr); | |
307 | printf("%sData Size: ", p); | |
308 | genimg_print_size(image_get_data_size(hdr)); | |
309 | printf("%sLoad Address: %08x\n", p, image_get_load(hdr)); | |
310 | printf("%sEntry Point: %08x\n", p, image_get_ep(hdr)); | |
311 | ||
312 | if (image_check_type(hdr, IH_TYPE_MULTI) || | |
313 | image_check_type(hdr, IH_TYPE_SCRIPT)) { | |
9a4daad0 MB |
314 | int i; |
315 | ulong data, len; | |
712fbcf3 | 316 | ulong count = image_multi_count(hdr); |
9a4daad0 | 317 | |
712fbcf3 | 318 | printf("%sContents:\n", p); |
9a4daad0 | 319 | for (i = 0; i < count; i++) { |
712fbcf3 | 320 | image_multi_getimg(hdr, i, &data, &len); |
570abb0a | 321 | |
712fbcf3 SW |
322 | printf("%s Image %d: ", p, i); |
323 | genimg_print_size(len); | |
570abb0a | 324 | |
712fbcf3 | 325 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
570abb0a MB |
326 | /* |
327 | * the user may need to know offsets | |
328 | * if planning to do something with | |
329 | * multiple files | |
330 | */ | |
712fbcf3 | 331 | printf("%s Offset = 0x%08lx\n", p, data); |
570abb0a | 332 | } |
9a4daad0 MB |
333 | } |
334 | } | |
335 | } | |
336 | ||
570abb0a MB |
337 | |
338 | #ifndef USE_HOSTCC | |
9a4daad0 MB |
339 | /** |
340 | * image_get_ramdisk - get and verify ramdisk image | |
9a4daad0 MB |
341 | * @rd_addr: ramdisk image start address |
342 | * @arch: expected ramdisk architecture | |
343 | * @verify: checksum verification flag | |
344 | * | |
345 | * image_get_ramdisk() returns a pointer to the verified ramdisk image | |
346 | * header. Routine receives image start address and expected architecture | |
347 | * flag. Verification done covers data and header integrity and os/type/arch | |
348 | * fields checking. | |
349 | * | |
350 | * If dataflash support is enabled routine checks for dataflash addresses | |
351 | * and handles required dataflash reads. | |
352 | * | |
353 | * returns: | |
354 | * pointer to a ramdisk image header, if image was found and valid | |
355 | * otherwise, return NULL | |
356 | */ | |
712fbcf3 | 357 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
d985c849 | 358 | int verify) |
9a4daad0 | 359 | { |
3a2003f6 | 360 | const image_header_t *rd_hdr = (const image_header_t *)rd_addr; |
9a4daad0 | 361 | |
712fbcf3 SW |
362 | if (!image_check_magic(rd_hdr)) { |
363 | puts("Bad Magic Number\n"); | |
770605e4 | 364 | bootstage_error(BOOTSTAGE_ID_RD_MAGIC); |
9a4daad0 MB |
365 | return NULL; |
366 | } | |
367 | ||
712fbcf3 SW |
368 | if (!image_check_hcrc(rd_hdr)) { |
369 | puts("Bad Header Checksum\n"); | |
770605e4 | 370 | bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
9a4daad0 MB |
371 | return NULL; |
372 | } | |
373 | ||
770605e4 | 374 | bootstage_mark(BOOTSTAGE_ID_RD_MAGIC); |
712fbcf3 | 375 | image_print_contents(rd_hdr); |
9a4daad0 MB |
376 | |
377 | if (verify) { | |
378 | puts(" Verifying Checksum ... "); | |
712fbcf3 SW |
379 | if (!image_check_dcrc(rd_hdr)) { |
380 | puts("Bad Data CRC\n"); | |
770605e4 | 381 | bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM); |
9a4daad0 MB |
382 | return NULL; |
383 | } | |
384 | puts("OK\n"); | |
385 | } | |
386 | ||
770605e4 | 387 | bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
9a4daad0 | 388 | |
712fbcf3 SW |
389 | if (!image_check_os(rd_hdr, IH_OS_LINUX) || |
390 | !image_check_arch(rd_hdr, arch) || | |
391 | !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) { | |
392 | printf("No Linux %s Ramdisk Image\n", | |
9a4daad0 | 393 | genimg_get_arch_name(arch)); |
770605e4 | 394 | bootstage_error(BOOTSTAGE_ID_RAMDISK); |
9a4daad0 MB |
395 | return NULL; |
396 | } | |
397 | ||
398 | return rd_hdr; | |
399 | } | |
570abb0a | 400 | #endif /* !USE_HOSTCC */ |
9a4daad0 MB |
401 | |
402 | /*****************************************************************************/ | |
403 | /* Shared dual-format routines */ | |
404 | /*****************************************************************************/ | |
570abb0a | 405 | #ifndef USE_HOSTCC |
1cf0a8b2 JH |
406 | ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
407 | ulong save_addr; /* Default Save Address */ | |
408 | ulong save_size; /* Default Save Size (in bytes) */ | |
409 | ||
410 | static int on_loadaddr(const char *name, const char *value, enum env_op op, | |
411 | int flags) | |
412 | { | |
413 | switch (op) { | |
414 | case env_op_create: | |
415 | case env_op_overwrite: | |
416 | load_addr = simple_strtoul(value, NULL, 16); | |
417 | break; | |
418 | default: | |
419 | break; | |
420 | } | |
421 | ||
422 | return 0; | |
423 | } | |
424 | U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr); | |
425 | ||
9a4daad0 MB |
426 | ulong getenv_bootm_low(void) |
427 | { | |
712fbcf3 | 428 | char *s = getenv("bootm_low"); |
9a4daad0 | 429 | if (s) { |
712fbcf3 | 430 | ulong tmp = simple_strtoul(s, NULL, 16); |
9a4daad0 MB |
431 | return tmp; |
432 | } | |
433 | ||
6d0f6bcf JCPV |
434 | #if defined(CONFIG_SYS_SDRAM_BASE) |
435 | return CONFIG_SYS_SDRAM_BASE; | |
afe45c87 MB |
436 | #elif defined(CONFIG_ARM) |
437 | return gd->bd->bi_dram[0].start; | |
9a4daad0 MB |
438 | #else |
439 | return 0; | |
440 | #endif | |
441 | } | |
442 | ||
391fd93a | 443 | phys_size_t getenv_bootm_size(void) |
9a4daad0 | 444 | { |
c519facc | 445 | phys_size_t tmp; |
712fbcf3 | 446 | char *s = getenv("bootm_size"); |
9a4daad0 | 447 | if (s) { |
712fbcf3 | 448 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
9a4daad0 MB |
449 | return tmp; |
450 | } | |
c519facc MM |
451 | s = getenv("bootm_low"); |
452 | if (s) | |
712fbcf3 | 453 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
c519facc MM |
454 | else |
455 | tmp = 0; | |
456 | ||
9a4daad0 | 457 | |
afe45c87 | 458 | #if defined(CONFIG_ARM) |
c519facc | 459 | return gd->bd->bi_dram[0].size - tmp; |
afe45c87 | 460 | #else |
c519facc | 461 | return gd->bd->bi_memsize - tmp; |
afe45c87 | 462 | #endif |
9a4daad0 MB |
463 | } |
464 | ||
c3624e6e GL |
465 | phys_size_t getenv_bootm_mapsize(void) |
466 | { | |
467 | phys_size_t tmp; | |
712fbcf3 | 468 | char *s = getenv("bootm_mapsize"); |
c3624e6e | 469 | if (s) { |
712fbcf3 | 470 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
c3624e6e GL |
471 | return tmp; |
472 | } | |
473 | ||
474 | #if defined(CONFIG_SYS_BOOTMAPSZ) | |
475 | return CONFIG_SYS_BOOTMAPSZ; | |
476 | #else | |
477 | return getenv_bootm_size(); | |
478 | #endif | |
479 | } | |
480 | ||
712fbcf3 | 481 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
9a4daad0 | 482 | { |
54fa2c5b LJ |
483 | if (to == from) |
484 | return; | |
485 | ||
9a4daad0 MB |
486 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
487 | while (len > 0) { | |
488 | size_t tail = (len > chunksz) ? chunksz : len; | |
712fbcf3 SW |
489 | WATCHDOG_RESET(); |
490 | memmove(to, from, tail); | |
9a4daad0 MB |
491 | to += tail; |
492 | from += tail; | |
493 | len -= tail; | |
494 | } | |
495 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ | |
712fbcf3 | 496 | memmove(to, from, len); |
9a4daad0 MB |
497 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
498 | } | |
570abb0a | 499 | #endif /* !USE_HOSTCC */ |
9a4daad0 | 500 | |
712fbcf3 | 501 | void genimg_print_size(uint32_t size) |
42b73e8e | 502 | { |
570abb0a | 503 | #ifndef USE_HOSTCC |
712fbcf3 SW |
504 | printf("%d Bytes = ", size); |
505 | print_size(size, "\n"); | |
570abb0a | 506 | #else |
712fbcf3 | 507 | printf("%d Bytes = %.2f kB = %.2f MB\n", |
570abb0a MB |
508 | size, (double)size / 1.024e3, |
509 | (double)size / 1.048576e6); | |
42b73e8e | 510 | #endif |
570abb0a MB |
511 | } |
512 | ||
859e92b7 SG |
513 | #if IMAGE_ENABLE_TIMESTAMP |
514 | void genimg_print_time(time_t timestamp) | |
570abb0a MB |
515 | { |
516 | #ifndef USE_HOSTCC | |
517 | struct rtc_time tm; | |
518 | ||
712fbcf3 SW |
519 | to_tm(timestamp, &tm); |
520 | printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n", | |
570abb0a MB |
521 | tm.tm_year, tm.tm_mon, tm.tm_mday, |
522 | tm.tm_hour, tm.tm_min, tm.tm_sec); | |
523 | #else | |
712fbcf3 | 524 | printf("%s", ctime(×tamp)); |
42b73e8e | 525 | #endif |
570abb0a | 526 | } |
859e92b7 | 527 | #endif |
42b73e8e | 528 | |
570abb0a MB |
529 | /** |
530 | * get_table_entry_name - translate entry id to long name | |
531 | * @table: pointer to a translation table for entries of a specific type | |
532 | * @msg: message to be returned when translation fails | |
533 | * @id: entry id to be translated | |
534 | * | |
535 | * get_table_entry_name() will go over translation table trying to find | |
536 | * entry that matches given id. If matching entry is found, its long | |
537 | * name is returned to the caller. | |
538 | * | |
539 | * returns: | |
540 | * long entry name if translation succeeds | |
541 | * msg otherwise | |
542 | */ | |
7edb186f | 543 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
570abb0a MB |
544 | { |
545 | for (; table->id >= 0; ++table) { | |
546 | if (table->id == id) | |
2e5167cc | 547 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
e3d1ac7b SW |
548 | return table->lname; |
549 | #else | |
550 | return table->lname + gd->reloc_off; | |
551 | #endif | |
42b73e8e | 552 | } |
570abb0a MB |
553 | return (msg); |
554 | } | |
42b73e8e | 555 | |
712fbcf3 | 556 | const char *genimg_get_os_name(uint8_t os) |
570abb0a | 557 | { |
712fbcf3 | 558 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
42b73e8e MB |
559 | } |
560 | ||
712fbcf3 | 561 | const char *genimg_get_arch_name(uint8_t arch) |
42b73e8e | 562 | { |
712fbcf3 SW |
563 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
564 | arch)); | |
570abb0a | 565 | } |
42b73e8e | 566 | |
712fbcf3 | 567 | const char *genimg_get_type_name(uint8_t type) |
570abb0a | 568 | { |
712fbcf3 | 569 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
570abb0a | 570 | } |
42b73e8e | 571 | |
712fbcf3 | 572 | const char *genimg_get_comp_name(uint8_t comp) |
570abb0a | 573 | { |
712fbcf3 SW |
574 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
575 | comp)); | |
42b73e8e MB |
576 | } |
577 | ||
570abb0a MB |
578 | /** |
579 | * get_table_entry_id - translate short entry name to id | |
580 | * @table: pointer to a translation table for entries of a specific type | |
581 | * @table_name: to be used in case of error | |
582 | * @name: entry short name to be translated | |
583 | * | |
584 | * get_table_entry_id() will go over translation table trying to find | |
585 | * entry that matches given short name. If matching entry is found, | |
586 | * its id returned to the caller. | |
587 | * | |
588 | * returns: | |
589 | * entry id if translation succeeds | |
590 | * -1 otherwise | |
591 | */ | |
7edb186f | 592 | int get_table_entry_id(const table_entry_t *table, |
570abb0a | 593 | const char *table_name, const char *name) |
42b73e8e | 594 | { |
7edb186f | 595 | const table_entry_t *t; |
570abb0a MB |
596 | #ifdef USE_HOSTCC |
597 | int first = 1; | |
42b73e8e | 598 | |
570abb0a MB |
599 | for (t = table; t->id >= 0; ++t) { |
600 | if (t->sname && strcasecmp(t->sname, name) == 0) | |
712fbcf3 | 601 | return(t->id); |
42b73e8e MB |
602 | } |
603 | ||
712fbcf3 | 604 | fprintf(stderr, "\nInvalid %s Type - valid names are", table_name); |
570abb0a MB |
605 | for (t = table; t->id >= 0; ++t) { |
606 | if (t->sname == NULL) | |
607 | continue; | |
712fbcf3 | 608 | fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname); |
570abb0a MB |
609 | first = 0; |
610 | } | |
712fbcf3 | 611 | fprintf(stderr, "\n"); |
570abb0a MB |
612 | #else |
613 | for (t = table; t->id >= 0; ++t) { | |
2e5167cc | 614 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
e3d1ac7b | 615 | if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0) |
2e5167cc WD |
616 | #else |
617 | if (t->sname && strcmp(t->sname, name) == 0) | |
521af04d | 618 | #endif |
570abb0a MB |
619 | return (t->id); |
620 | } | |
712fbcf3 | 621 | debug("Invalid %s Type: %s\n", table_name, name); |
570abb0a MB |
622 | #endif /* USE_HOSTCC */ |
623 | return (-1); | |
624 | } | |
625 | ||
712fbcf3 | 626 | int genimg_get_os_id(const char *name) |
570abb0a | 627 | { |
712fbcf3 | 628 | return (get_table_entry_id(uimage_os, "OS", name)); |
570abb0a MB |
629 | } |
630 | ||
712fbcf3 | 631 | int genimg_get_arch_id(const char *name) |
570abb0a | 632 | { |
712fbcf3 | 633 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
42b73e8e | 634 | } |
5ad03eb3 | 635 | |
712fbcf3 | 636 | int genimg_get_type_id(const char *name) |
570abb0a | 637 | { |
712fbcf3 | 638 | return (get_table_entry_id(uimage_type, "Image", name)); |
570abb0a MB |
639 | } |
640 | ||
712fbcf3 | 641 | int genimg_get_comp_id(const char *name) |
570abb0a | 642 | { |
712fbcf3 | 643 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
570abb0a MB |
644 | } |
645 | ||
646 | #ifndef USE_HOSTCC | |
fff888a1 | 647 | /** |
9a4daad0 | 648 | * genimg_get_format - get image format type |
fff888a1 MB |
649 | * @img_addr: image start address |
650 | * | |
9a4daad0 | 651 | * genimg_get_format() checks whether provided address points to a valid |
fff888a1 MB |
652 | * legacy or FIT image. |
653 | * | |
4efbe9db MB |
654 | * New uImage format and FDT blob are based on a libfdt. FDT blob |
655 | * may be passed directly or embedded in a FIT image. In both situations | |
9a4daad0 | 656 | * genimg_get_format() must be able to dectect libfdt header. |
4efbe9db | 657 | * |
fff888a1 MB |
658 | * returns: |
659 | * image format type or IMAGE_FORMAT_INVALID if no image is present | |
660 | */ | |
35e7b0f1 | 661 | int genimg_get_format(const void *img_addr) |
fff888a1 | 662 | { |
3a2003f6 WD |
663 | ulong format = IMAGE_FORMAT_INVALID; |
664 | const image_header_t *hdr; | |
4efbe9db | 665 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
3a2003f6 | 666 | char *fit_hdr; |
fff888a1 MB |
667 | #endif |
668 | ||
3a2003f6 | 669 | hdr = (const image_header_t *)img_addr; |
fff888a1 MB |
670 | if (image_check_magic(hdr)) |
671 | format = IMAGE_FORMAT_LEGACY; | |
4efbe9db | 672 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
fff888a1 MB |
673 | else { |
674 | fit_hdr = (char *)img_addr; | |
712fbcf3 | 675 | if (fdt_check_header(fit_hdr) == 0) |
fff888a1 MB |
676 | format = IMAGE_FORMAT_FIT; |
677 | } | |
678 | #endif | |
679 | ||
680 | return format; | |
681 | } | |
682 | ||
683 | /** | |
9a4daad0 | 684 | * genimg_get_image - get image from special storage (if necessary) |
fff888a1 MB |
685 | * @img_addr: image start address |
686 | * | |
9a4daad0 | 687 | * genimg_get_image() checks if provided image start adddress is located |
fff888a1 MB |
688 | * in a dataflash storage. If so, image is moved to a system RAM memory. |
689 | * | |
690 | * returns: | |
691 | * image start address after possible relocation from special storage | |
692 | */ | |
712fbcf3 | 693 | ulong genimg_get_image(ulong img_addr) |
fff888a1 | 694 | { |
6f0f9dfc | 695 | ulong ram_addr = img_addr; |
fff888a1 MB |
696 | |
697 | #ifdef CONFIG_HAS_DATAFLASH | |
6f0f9dfc MB |
698 | ulong h_size, d_size; |
699 | ||
712fbcf3 | 700 | if (addr_dataflash(img_addr)) { |
35e7b0f1 SG |
701 | void *buf; |
702 | ||
6f0f9dfc | 703 | /* ger RAM address */ |
6d0f6bcf | 704 | ram_addr = CONFIG_SYS_LOAD_ADDR; |
6f0f9dfc MB |
705 | |
706 | /* get header size */ | |
712fbcf3 | 707 | h_size = image_get_header_size(); |
6f0f9dfc MB |
708 | #if defined(CONFIG_FIT) |
709 | if (sizeof(struct fdt_header) > h_size) | |
710 | h_size = sizeof(struct fdt_header); | |
711 | #endif | |
712 | ||
713 | /* read in header */ | |
712fbcf3 | 714 | debug(" Reading image header from dataflash address " |
fff888a1 | 715 | "%08lx to RAM address %08lx\n", img_addr, ram_addr); |
fff888a1 | 716 | |
35e7b0f1 SG |
717 | buf = map_sysmem(ram_addr, 0); |
718 | read_dataflash(img_addr, h_size, buf); | |
fff888a1 | 719 | |
6f0f9dfc | 720 | /* get data size */ |
35e7b0f1 | 721 | switch (genimg_get_format(buf)) { |
6f0f9dfc | 722 | case IMAGE_FORMAT_LEGACY: |
35e7b0f1 | 723 | d_size = image_get_data_size(buf); |
712fbcf3 SW |
724 | debug(" Legacy format image found at 0x%08lx, " |
725 | "size 0x%08lx\n", | |
6f0f9dfc MB |
726 | ram_addr, d_size); |
727 | break; | |
fff888a1 | 728 | #if defined(CONFIG_FIT) |
6f0f9dfc | 729 | case IMAGE_FORMAT_FIT: |
35e7b0f1 | 730 | d_size = fit_get_size(buf) - h_size; |
712fbcf3 SW |
731 | debug(" FIT/FDT format image found at 0x%08lx, " |
732 | "size 0x%08lx\n", | |
6f0f9dfc MB |
733 | ram_addr, d_size); |
734 | break; | |
fff888a1 | 735 | #endif |
6f0f9dfc | 736 | default: |
712fbcf3 SW |
737 | printf(" No valid image found at 0x%08lx\n", |
738 | img_addr); | |
6f0f9dfc MB |
739 | return ram_addr; |
740 | } | |
fff888a1 | 741 | |
6f0f9dfc | 742 | /* read in image data */ |
712fbcf3 | 743 | debug(" Reading image remaining data from dataflash address " |
fff888a1 MB |
744 | "%08lx to RAM address %08lx\n", img_addr + h_size, |
745 | ram_addr + h_size); | |
746 | ||
712fbcf3 | 747 | read_dataflash(img_addr + h_size, d_size, |
35e7b0f1 | 748 | (char *)(buf + h_size)); |
6f0f9dfc | 749 | |
fff888a1 | 750 | } |
6f0f9dfc | 751 | #endif /* CONFIG_HAS_DATAFLASH */ |
fff888a1 MB |
752 | |
753 | return ram_addr; | |
754 | } | |
755 | ||
f773bea8 MB |
756 | /** |
757 | * fit_has_config - check if there is a valid FIT configuration | |
758 | * @images: pointer to the bootm command headers structure | |
759 | * | |
760 | * fit_has_config() checks if there is a FIT configuration in use | |
761 | * (if FTI support is present). | |
762 | * | |
763 | * returns: | |
764 | * 0, no FIT support or no configuration found | |
765 | * 1, configuration found | |
766 | */ | |
712fbcf3 | 767 | int genimg_has_config(bootm_headers_t *images) |
f773bea8 MB |
768 | { |
769 | #if defined(CONFIG_FIT) | |
770 | if (images->fit_uname_cfg) | |
771 | return 1; | |
772 | #endif | |
773 | return 0; | |
774 | } | |
775 | ||
5ad03eb3 | 776 | /** |
9a4daad0 | 777 | * boot_get_ramdisk - main ramdisk handling routine |
5ad03eb3 MB |
778 | * @argc: command argument count |
779 | * @argv: command argument list | |
8a5ea3e6 | 780 | * @images: pointer to the bootm images structure |
5ad03eb3 MB |
781 | * @arch: expected ramdisk architecture |
782 | * @rd_start: pointer to a ulong variable, will hold ramdisk start address | |
783 | * @rd_end: pointer to a ulong variable, will hold ramdisk end | |
784 | * | |
9a4daad0 | 785 | * boot_get_ramdisk() is responsible for finding a valid ramdisk image. |
5ad03eb3 MB |
786 | * Curently supported are the following ramdisk sources: |
787 | * - multicomponent kernel/ramdisk image, | |
788 | * - commandline provided address of decicated ramdisk image. | |
789 | * | |
790 | * returns: | |
d985c849 | 791 | * 0, if ramdisk image was found and valid, or skiped |
5ad03eb3 MB |
792 | * rd_start and rd_end are set to ramdisk start/end addresses if |
793 | * ramdisk image is found and valid | |
d985c849 | 794 | * |
ea86b9e6 | 795 | * 1, if ramdisk image is found but corrupted, or invalid |
5ad03eb3 | 796 | * rd_start and rd_end are set to 0 if no ramdisk exists |
5ad03eb3 | 797 | */ |
712fbcf3 | 798 | int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, |
d985c849 | 799 | uint8_t arch, ulong *rd_start, ulong *rd_end) |
5ad03eb3 | 800 | { |
d5934ad7 | 801 | ulong rd_addr, rd_load; |
5ad03eb3 | 802 | ulong rd_data, rd_len; |
3a2003f6 | 803 | const image_header_t *rd_hdr; |
35e7b0f1 | 804 | void *buf; |
57d40ab7 | 805 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
017e1f3f | 806 | char *end; |
57d40ab7 | 807 | #endif |
d5934ad7 MB |
808 | #if defined(CONFIG_FIT) |
809 | void *fit_hdr; | |
810 | const char *fit_uname_config = NULL; | |
811 | const char *fit_uname_ramdisk = NULL; | |
812 | ulong default_addr; | |
c8779648 | 813 | int rd_noffset; |
f773bea8 | 814 | int cfg_noffset; |
c8779648 MB |
815 | const void *data; |
816 | size_t size; | |
d5934ad7 | 817 | #endif |
5ad03eb3 | 818 | |
c8779648 MB |
819 | *rd_start = 0; |
820 | *rd_end = 0; | |
821 | ||
d5934ad7 MB |
822 | /* |
823 | * Look for a '-' which indicates to ignore the | |
824 | * ramdisk argument | |
825 | */ | |
826 | if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) { | |
712fbcf3 | 827 | debug("## Skipping init Ramdisk\n"); |
d5934ad7 | 828 | rd_len = rd_data = 0; |
712fbcf3 | 829 | } else if (argc >= 3 || genimg_has_config(images)) { |
d5934ad7 | 830 | #if defined(CONFIG_FIT) |
f773bea8 MB |
831 | if (argc >= 3) { |
832 | /* | |
833 | * If the init ramdisk comes from the FIT image and | |
834 | * the FIT image address is omitted in the command | |
835 | * line argument, try to use os FIT image address or | |
836 | * default load address. | |
837 | */ | |
838 | if (images->fit_uname_os) | |
839 | default_addr = (ulong)images->fit_hdr_os; | |
840 | else | |
841 | default_addr = load_addr; | |
842 | ||
712fbcf3 | 843 | if (fit_parse_conf(argv[2], default_addr, |
f773bea8 | 844 | &rd_addr, &fit_uname_config)) { |
712fbcf3 SW |
845 | debug("* ramdisk: config '%s' from image at " |
846 | "0x%08lx\n", | |
f773bea8 | 847 | fit_uname_config, rd_addr); |
712fbcf3 | 848 | } else if (fit_parse_subimage(argv[2], default_addr, |
f773bea8 | 849 | &rd_addr, &fit_uname_ramdisk)) { |
712fbcf3 SW |
850 | debug("* ramdisk: subimage '%s' from image at " |
851 | "0x%08lx\n", | |
f773bea8 MB |
852 | fit_uname_ramdisk, rd_addr); |
853 | } else | |
d5934ad7 | 854 | #endif |
f773bea8 MB |
855 | { |
856 | rd_addr = simple_strtoul(argv[2], NULL, 16); | |
712fbcf3 SW |
857 | debug("* ramdisk: cmdline image address = " |
858 | "0x%08lx\n", | |
f773bea8 MB |
859 | rd_addr); |
860 | } | |
861 | #if defined(CONFIG_FIT) | |
862 | } else { | |
863 | /* use FIT configuration provided in first bootm | |
864 | * command argument | |
865 | */ | |
35e7b0f1 | 866 | rd_addr = map_to_sysmem(images->fit_hdr_os); |
f773bea8 | 867 | fit_uname_config = images->fit_uname_cfg; |
712fbcf3 SW |
868 | debug("* ramdisk: using config '%s' from image " |
869 | "at 0x%08lx\n", | |
f773bea8 MB |
870 | fit_uname_config, rd_addr); |
871 | ||
872 | /* | |
873 | * Check whether configuration has ramdisk defined, | |
874 | * if not, don't try to use it, quit silently. | |
875 | */ | |
35e7b0f1 | 876 | fit_hdr = images->fit_hdr_os; |
712fbcf3 SW |
877 | cfg_noffset = fit_conf_get_node(fit_hdr, |
878 | fit_uname_config); | |
f773bea8 | 879 | if (cfg_noffset < 0) { |
712fbcf3 | 880 | debug("* ramdisk: no such config\n"); |
c78fce69 | 881 | return 1; |
f773bea8 MB |
882 | } |
883 | ||
712fbcf3 SW |
884 | rd_noffset = fit_conf_get_ramdisk_node(fit_hdr, |
885 | cfg_noffset); | |
f773bea8 | 886 | if (rd_noffset < 0) { |
712fbcf3 | 887 | debug("* ramdisk: no ramdisk in config\n"); |
41266c9b | 888 | return 0; |
f773bea8 | 889 | } |
d5934ad7 | 890 | } |
f773bea8 | 891 | #endif |
d5934ad7 MB |
892 | |
893 | /* copy from dataflash if needed */ | |
712fbcf3 | 894 | rd_addr = genimg_get_image(rd_addr); |
d5934ad7 MB |
895 | |
896 | /* | |
897 | * Check if there is an initrd image at the | |
898 | * address provided in the second bootm argument | |
899 | * check image type, for FIT images get FIT node. | |
900 | */ | |
35e7b0f1 SG |
901 | buf = map_sysmem(rd_addr, 0); |
902 | switch (genimg_get_format(buf)) { | |
d5934ad7 | 903 | case IMAGE_FORMAT_LEGACY: |
712fbcf3 | 904 | printf("## Loading init Ramdisk from Legacy " |
c8779648 | 905 | "Image at %08lx ...\n", rd_addr); |
5ad03eb3 | 906 | |
770605e4 | 907 | bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK); |
712fbcf3 | 908 | rd_hdr = image_get_ramdisk(rd_addr, arch, |
d985c849 | 909 | images->verify); |
5ad03eb3 | 910 | |
c8779648 | 911 | if (rd_hdr == NULL) |
274cea2b | 912 | return 1; |
274cea2b | 913 | |
712fbcf3 SW |
914 | rd_data = image_get_data(rd_hdr); |
915 | rd_len = image_get_data_size(rd_hdr); | |
916 | rd_load = image_get_load(rd_hdr); | |
d5934ad7 MB |
917 | break; |
918 | #if defined(CONFIG_FIT) | |
919 | case IMAGE_FORMAT_FIT: | |
35e7b0f1 | 920 | fit_hdr = buf; |
712fbcf3 | 921 | printf("## Loading init Ramdisk from FIT " |
c8779648 MB |
922 | "Image at %08lx ...\n", rd_addr); |
923 | ||
770605e4 | 924 | bootstage_mark(BOOTSTAGE_ID_FIT_RD_FORMAT); |
712fbcf3 SW |
925 | if (!fit_check_format(fit_hdr)) { |
926 | puts("Bad FIT ramdisk image format!\n"); | |
770605e4 | 927 | bootstage_error( |
aacc8c16 | 928 | BOOTSTAGE_ID_FIT_RD_FORMAT); |
c78fce69 | 929 | return 1; |
c8779648 | 930 | } |
770605e4 | 931 | bootstage_mark(BOOTSTAGE_ID_FIT_RD_FORMAT_OK); |
c8779648 MB |
932 | |
933 | if (!fit_uname_ramdisk) { | |
934 | /* | |
935 | * no ramdisk image node unit name, try to get config | |
936 | * node first. If config unit node name is NULL | |
937 | * fit_conf_get_node() will try to find default config node | |
938 | */ | |
770605e4 | 939 | bootstage_mark( |
aacc8c16 | 940 | BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME); |
712fbcf3 SW |
941 | cfg_noffset = fit_conf_get_node(fit_hdr, |
942 | fit_uname_config); | |
f773bea8 | 943 | if (cfg_noffset < 0) { |
712fbcf3 SW |
944 | puts("Could not find configuration " |
945 | "node\n"); | |
770605e4 | 946 | bootstage_error( |
aacc8c16 | 947 | BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME); |
c78fce69 | 948 | return 1; |
1372cce2 | 949 | } |
712fbcf3 SW |
950 | fit_uname_config = fdt_get_name(fit_hdr, |
951 | cfg_noffset, NULL); | |
952 | printf(" Using '%s' configuration\n", | |
953 | fit_uname_config); | |
c8779648 | 954 | |
712fbcf3 SW |
955 | rd_noffset = fit_conf_get_ramdisk_node(fit_hdr, |
956 | cfg_noffset); | |
957 | fit_uname_ramdisk = fit_get_name(fit_hdr, | |
958 | rd_noffset, NULL); | |
c8779648 MB |
959 | } else { |
960 | /* get ramdisk component image node offset */ | |
770605e4 | 961 | bootstage_mark( |
aacc8c16 | 962 | BOOTSTAGE_ID_FIT_RD_UNIT_NAME); |
712fbcf3 SW |
963 | rd_noffset = fit_image_get_node(fit_hdr, |
964 | fit_uname_ramdisk); | |
c8779648 | 965 | } |
1372cce2 | 966 | if (rd_noffset < 0) { |
712fbcf3 | 967 | puts("Could not find subimage node\n"); |
770605e4 | 968 | bootstage_error(BOOTSTAGE_ID_FIT_RD_SUBNODE); |
c78fce69 | 969 | return 1; |
1372cce2 | 970 | } |
c8779648 | 971 | |
712fbcf3 SW |
972 | printf(" Trying '%s' ramdisk subimage\n", |
973 | fit_uname_ramdisk); | |
c8779648 | 974 | |
770605e4 | 975 | bootstage_mark(BOOTSTAGE_ID_FIT_RD_CHECK); |
712fbcf3 SW |
976 | if (!fit_check_ramdisk(fit_hdr, rd_noffset, arch, |
977 | images->verify)) | |
c78fce69 | 978 | return 1; |
c8779648 MB |
979 | |
980 | /* get ramdisk image data address and length */ | |
712fbcf3 SW |
981 | if (fit_image_get_data(fit_hdr, rd_noffset, &data, |
982 | &size)) { | |
983 | puts("Could not find ramdisk subimage data!\n"); | |
770605e4 | 984 | bootstage_error(BOOTSTAGE_ID_FIT_RD_GET_DATA); |
c78fce69 | 985 | return 1; |
c8779648 | 986 | } |
770605e4 | 987 | bootstage_mark(BOOTSTAGE_ID_FIT_RD_GET_DATA_OK); |
c8779648 MB |
988 | |
989 | rd_data = (ulong)data; | |
990 | rd_len = size; | |
991 | ||
712fbcf3 SW |
992 | if (fit_image_get_load(fit_hdr, rd_noffset, &rd_load)) { |
993 | puts("Can't get ramdisk subimage load " | |
994 | "address!\n"); | |
770605e4 | 995 | bootstage_error(BOOTSTAGE_ID_FIT_RD_LOAD); |
c78fce69 | 996 | return 1; |
c8779648 | 997 | } |
770605e4 | 998 | bootstage_mark(BOOTSTAGE_ID_FIT_RD_LOAD); |
c8779648 MB |
999 | |
1000 | images->fit_hdr_rd = fit_hdr; | |
1001 | images->fit_uname_rd = fit_uname_ramdisk; | |
3dfe1101 | 1002 | images->fit_noffset_rd = rd_noffset; |
c8779648 | 1003 | break; |
d5934ad7 MB |
1004 | #endif |
1005 | default: | |
017e1f3f MV |
1006 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
1007 | if (argc >= 3 && (end = strchr(argv[2], ':'))) { | |
1008 | rd_len = simple_strtoul(++end, NULL, 16); | |
1009 | rd_data = rd_addr; | |
1010 | } else | |
1011 | #endif | |
1012 | { | |
1013 | puts("Wrong Ramdisk Image Format\n"); | |
1014 | rd_data = rd_len = rd_load = 0; | |
1015 | return 1; | |
1016 | } | |
d5934ad7 | 1017 | } |
d5934ad7 | 1018 | } else if (images->legacy_hdr_valid && |
712fbcf3 SW |
1019 | image_check_type(&images->legacy_hdr_os_copy, |
1020 | IH_TYPE_MULTI)) { | |
1021 | ||
5ad03eb3 | 1022 | /* |
d5934ad7 MB |
1023 | * Now check if we have a legacy mult-component image, |
1024 | * get second entry data start address and len. | |
5ad03eb3 | 1025 | */ |
770605e4 | 1026 | bootstage_mark(BOOTSTAGE_ID_RAMDISK); |
712fbcf3 | 1027 | printf("## Loading init Ramdisk from multi component " |
c8779648 | 1028 | "Legacy Image at %08lx ...\n", |
d5934ad7 MB |
1029 | (ulong)images->legacy_hdr_os); |
1030 | ||
712fbcf3 | 1031 | image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len); |
5ad03eb3 MB |
1032 | } else { |
1033 | /* | |
1034 | * no initrd image | |
1035 | */ | |
770605e4 | 1036 | bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK); |
5ad03eb3 MB |
1037 | rd_len = rd_data = 0; |
1038 | } | |
1039 | ||
1040 | if (!rd_data) { | |
712fbcf3 | 1041 | debug("## No init Ramdisk\n"); |
5ad03eb3 MB |
1042 | } else { |
1043 | *rd_start = rd_data; | |
1044 | *rd_end = rd_data + rd_len; | |
1045 | } | |
712fbcf3 | 1046 | debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n", |
5ad03eb3 | 1047 | *rd_start, *rd_end); |
274cea2b KG |
1048 | |
1049 | return 0; | |
5ad03eb3 | 1050 | } |
ceaed2b1 | 1051 | |
fca43cc8 | 1052 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
ceaed2b1 | 1053 | /** |
9a4daad0 | 1054 | * boot_ramdisk_high - relocate init ramdisk |
e822d7fc | 1055 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
ceaed2b1 MB |
1056 | * @rd_data: ramdisk data start address |
1057 | * @rd_len: ramdisk data length | |
ceaed2b1 MB |
1058 | * @initrd_start: pointer to a ulong variable, will hold final init ramdisk |
1059 | * start address (after possible relocation) | |
1060 | * @initrd_end: pointer to a ulong variable, will hold final init ramdisk | |
1061 | * end address (after possible relocation) | |
1062 | * | |
9a4daad0 | 1063 | * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement |
ceaed2b1 MB |
1064 | * variable and if requested ramdisk data is moved to a specified location. |
1065 | * | |
9a4daad0 MB |
1066 | * Initrd_start and initrd_end are set to final (after relocation) ramdisk |
1067 | * start/end addresses if ramdisk image start and len were provided, | |
1068 | * otherwise set initrd_start and initrd_end set to zeros. | |
1069 | * | |
ceaed2b1 | 1070 | * returns: |
9a4daad0 MB |
1071 | * 0 - success |
1072 | * -1 - failure | |
ceaed2b1 | 1073 | */ |
712fbcf3 | 1074 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
e822d7fc | 1075 | ulong *initrd_start, ulong *initrd_end) |
ceaed2b1 MB |
1076 | { |
1077 | char *s; | |
1078 | ulong initrd_high; | |
1079 | int initrd_copy_to_ram = 1; | |
1080 | ||
712fbcf3 | 1081 | if ((s = getenv("initrd_high")) != NULL) { |
ceaed2b1 MB |
1082 | /* a value of "no" or a similar string will act like 0, |
1083 | * turning the "load high" feature off. This is intentional. | |
1084 | */ | |
712fbcf3 | 1085 | initrd_high = simple_strtoul(s, NULL, 16); |
ceaed2b1 MB |
1086 | if (initrd_high == ~0) |
1087 | initrd_copy_to_ram = 0; | |
1088 | } else { | |
1089 | /* not set, no restrictions to load high */ | |
1090 | initrd_high = ~0; | |
1091 | } | |
1092 | ||
95d449ad MB |
1093 | |
1094 | #ifdef CONFIG_LOGBUFFER | |
1095 | /* Prevent initrd from overwriting logbuffer */ | |
1096 | lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE); | |
1097 | #endif | |
1098 | ||
712fbcf3 | 1099 | debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", |
ceaed2b1 MB |
1100 | initrd_high, initrd_copy_to_ram); |
1101 | ||
1102 | if (rd_data) { | |
1103 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ | |
712fbcf3 | 1104 | debug(" in-place initrd\n"); |
ceaed2b1 MB |
1105 | *initrd_start = rd_data; |
1106 | *initrd_end = rd_data + rd_len; | |
e822d7fc | 1107 | lmb_reserve(lmb, rd_data, rd_len); |
ceaed2b1 | 1108 | } else { |
e822d7fc | 1109 | if (initrd_high) |
712fbcf3 SW |
1110 | *initrd_start = (ulong)lmb_alloc_base(lmb, |
1111 | rd_len, 0x1000, initrd_high); | |
e822d7fc | 1112 | else |
712fbcf3 SW |
1113 | *initrd_start = (ulong)lmb_alloc(lmb, rd_len, |
1114 | 0x1000); | |
e822d7fc KG |
1115 | |
1116 | if (*initrd_start == 0) { | |
712fbcf3 | 1117 | puts("ramdisk - allocation error\n"); |
e822d7fc | 1118 | goto error; |
ceaed2b1 | 1119 | } |
770605e4 | 1120 | bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK); |
ceaed2b1 MB |
1121 | |
1122 | *initrd_end = *initrd_start + rd_len; | |
712fbcf3 | 1123 | printf(" Loading Ramdisk to %08lx, end %08lx ... ", |
ceaed2b1 MB |
1124 | *initrd_start, *initrd_end); |
1125 | ||
712fbcf3 | 1126 | memmove_wd((void *)*initrd_start, |
ceaed2b1 MB |
1127 | (void *)rd_data, rd_len, CHUNKSZ); |
1128 | ||
3b200110 KG |
1129 | #ifdef CONFIG_MP |
1130 | /* | |
1131 | * Ensure the image is flushed to memory to handle | |
1132 | * AMP boot scenarios in which we might not be | |
1133 | * HW cache coherent | |
1134 | */ | |
1135 | flush_cache((unsigned long)*initrd_start, rd_len); | |
1136 | #endif | |
712fbcf3 | 1137 | puts("OK\n"); |
ceaed2b1 MB |
1138 | } |
1139 | } else { | |
1140 | *initrd_start = 0; | |
1141 | *initrd_end = 0; | |
1142 | } | |
712fbcf3 | 1143 | debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n", |
ceaed2b1 | 1144 | *initrd_start, *initrd_end); |
9a4daad0 | 1145 | |
e822d7fc | 1146 | return 0; |
b6b0fe64 | 1147 | |
e822d7fc KG |
1148 | error: |
1149 | return -1; | |
b6b0fe64 | 1150 | } |
fca43cc8 | 1151 | #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */ |
b6b0fe64 | 1152 | |
06a09918 | 1153 | #ifdef CONFIG_OF_LIBFDT |
712fbcf3 | 1154 | static void fdt_error(const char *msg) |
06a09918 | 1155 | { |
712fbcf3 SW |
1156 | puts("ERROR: "); |
1157 | puts(msg); | |
1158 | puts(" - must RESET the board to recover.\n"); | |
06a09918 KG |
1159 | } |
1160 | ||
712fbcf3 | 1161 | static const image_header_t *image_get_fdt(ulong fdt_addr) |
06a09918 | 1162 | { |
35e7b0f1 | 1163 | const image_header_t *fdt_hdr = map_sysmem(fdt_addr, 0); |
06a09918 | 1164 | |
712fbcf3 | 1165 | image_print_contents(fdt_hdr); |
06a09918 | 1166 | |
712fbcf3 SW |
1167 | puts(" Verifying Checksum ... "); |
1168 | if (!image_check_hcrc(fdt_hdr)) { | |
1169 | fdt_error("fdt header checksum invalid"); | |
06a09918 KG |
1170 | return NULL; |
1171 | } | |
1172 | ||
712fbcf3 SW |
1173 | if (!image_check_dcrc(fdt_hdr)) { |
1174 | fdt_error("fdt checksum invalid"); | |
06a09918 KG |
1175 | return NULL; |
1176 | } | |
712fbcf3 | 1177 | puts("OK\n"); |
06a09918 | 1178 | |
712fbcf3 SW |
1179 | if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) { |
1180 | fdt_error("uImage is not a fdt"); | |
06a09918 KG |
1181 | return NULL; |
1182 | } | |
712fbcf3 SW |
1183 | if (image_get_comp(fdt_hdr) != IH_COMP_NONE) { |
1184 | fdt_error("uImage is compressed"); | |
06a09918 KG |
1185 | return NULL; |
1186 | } | |
712fbcf3 SW |
1187 | if (fdt_check_header((char *)image_get_data(fdt_hdr)) != 0) { |
1188 | fdt_error("uImage data is not a fdt"); | |
06a09918 KG |
1189 | return NULL; |
1190 | } | |
1191 | return fdt_hdr; | |
1192 | } | |
1193 | ||
1194 | /** | |
1195 | * fit_check_fdt - verify FIT format FDT subimage | |
1196 | * @fit_hdr: pointer to the FIT header | |
1197 | * fdt_noffset: FDT subimage node offset within FIT image | |
1198 | * @verify: data CRC verification flag | |
1199 | * | |
1200 | * fit_check_fdt() verifies integrity of the FDT subimage and from | |
1201 | * specified FIT image. | |
1202 | * | |
1203 | * returns: | |
1204 | * 1, on success | |
1205 | * 0, on failure | |
1206 | */ | |
1207 | #if defined(CONFIG_FIT) | |
712fbcf3 | 1208 | static int fit_check_fdt(const void *fit, int fdt_noffset, int verify) |
06a09918 | 1209 | { |
712fbcf3 | 1210 | fit_image_print(fit, fdt_noffset, " "); |
06a09918 KG |
1211 | |
1212 | if (verify) { | |
712fbcf3 | 1213 | puts(" Verifying Hash Integrity ... "); |
b8da8366 | 1214 | if (!fit_image_verify(fit, fdt_noffset)) { |
712fbcf3 | 1215 | fdt_error("Bad Data Hash"); |
06a09918 KG |
1216 | return 0; |
1217 | } | |
712fbcf3 | 1218 | puts("OK\n"); |
06a09918 KG |
1219 | } |
1220 | ||
712fbcf3 SW |
1221 | if (!fit_image_check_type(fit, fdt_noffset, IH_TYPE_FLATDT)) { |
1222 | fdt_error("Not a FDT image"); | |
06a09918 KG |
1223 | return 0; |
1224 | } | |
1225 | ||
712fbcf3 SW |
1226 | if (!fit_image_check_comp(fit, fdt_noffset, IH_COMP_NONE)) { |
1227 | fdt_error("FDT image is compressed"); | |
06a09918 KG |
1228 | return 0; |
1229 | } | |
1230 | ||
1231 | return 1; | |
1232 | } | |
1233 | #endif /* CONFIG_FIT */ | |
1234 | ||
6d0f6bcf JCPV |
1235 | #ifndef CONFIG_SYS_FDT_PAD |
1236 | #define CONFIG_SYS_FDT_PAD 0x3000 | |
06a09918 KG |
1237 | #endif |
1238 | ||
55b0a393 GL |
1239 | #if defined(CONFIG_OF_LIBFDT) |
1240 | /** | |
1241 | * boot_fdt_add_mem_rsv_regions - Mark the memreserve sections as unusable | |
1242 | * @lmb: pointer to lmb handle, will be used for memory mgmt | |
1243 | * @fdt_blob: pointer to fdt blob base address | |
1244 | * | |
1245 | * Adds the memreserve regions in the dtb to the lmb block. Adding the | |
1246 | * memreserve regions prevents u-boot from using them to store the initrd | |
1247 | * or the fdt blob. | |
1248 | */ | |
1249 | void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob) | |
1250 | { | |
1251 | uint64_t addr, size; | |
1252 | int i, total; | |
1253 | ||
712fbcf3 | 1254 | if (fdt_check_header(fdt_blob) != 0) |
55b0a393 GL |
1255 | return; |
1256 | ||
1257 | total = fdt_num_mem_rsv(fdt_blob); | |
1258 | for (i = 0; i < total; i++) { | |
1259 | if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0) | |
1260 | continue; | |
1261 | printf(" reserving fdt memory region: addr=%llx size=%llx\n", | |
1262 | (unsigned long long)addr, (unsigned long long)size); | |
1263 | lmb_reserve(lmb, addr, size); | |
1264 | } | |
1265 | } | |
1266 | ||
06a09918 KG |
1267 | /** |
1268 | * boot_relocate_fdt - relocate flat device tree | |
1269 | * @lmb: pointer to lmb handle, will be used for memory mgmt | |
06a09918 KG |
1270 | * @of_flat_tree: pointer to a char* variable, will hold fdt start address |
1271 | * @of_size: pointer to a ulong variable, will hold fdt length | |
1272 | * | |
43b08af5 TT |
1273 | * boot_relocate_fdt() allocates a region of memory within the bootmap and |
1274 | * relocates the of_flat_tree into that region, even if the fdt is already in | |
1275 | * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD | |
1276 | * bytes. | |
06a09918 KG |
1277 | * |
1278 | * of_flat_tree and of_size are set to final (after relocation) values | |
1279 | * | |
1280 | * returns: | |
1281 | * 0 - success | |
1282 | * 1 - failure | |
1283 | */ | |
712fbcf3 | 1284 | int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size) |
06a09918 | 1285 | { |
43b08af5 | 1286 | void *fdt_blob = *of_flat_tree; |
199adb60 | 1287 | void *of_start = NULL; |
a28afca5 | 1288 | char *fdt_high; |
06a09918 | 1289 | ulong of_len = 0; |
43b08af5 | 1290 | int err; |
a28afca5 | 1291 | int disable_relocation = 0; |
06a09918 KG |
1292 | |
1293 | /* nothing to do */ | |
1294 | if (*of_size == 0) | |
1295 | return 0; | |
1296 | ||
712fbcf3 SW |
1297 | if (fdt_check_header(fdt_blob) != 0) { |
1298 | fdt_error("image is not a fdt"); | |
06a09918 KG |
1299 | goto error; |
1300 | } | |
1301 | ||
43b08af5 TT |
1302 | /* position on a 4K boundary before the alloc_current */ |
1303 | /* Pad the FDT by a specified amount */ | |
1304 | of_len = *of_size + CONFIG_SYS_FDT_PAD; | |
a28afca5 DL |
1305 | |
1306 | /* If fdt_high is set use it to select the relocation address */ | |
1307 | fdt_high = getenv("fdt_high"); | |
1308 | if (fdt_high) { | |
1309 | void *desired_addr = (void *)simple_strtoul(fdt_high, NULL, 16); | |
1310 | ||
1311 | if (((ulong) desired_addr) == ~0UL) { | |
1312 | /* All ones means use fdt in place */ | |
fa34f6b2 SG |
1313 | of_start = fdt_blob; |
1314 | lmb_reserve(lmb, (ulong)of_start, of_len); | |
a28afca5 | 1315 | disable_relocation = 1; |
fa34f6b2 | 1316 | } else if (desired_addr) { |
a28afca5 DL |
1317 | of_start = |
1318 | (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000, | |
fa34f6b2 | 1319 | (ulong)desired_addr); |
199adb60 | 1320 | if (of_start == NULL) { |
a28afca5 DL |
1321 | puts("Failed using fdt_high value for Device Tree"); |
1322 | goto error; | |
1323 | } | |
1324 | } else { | |
1325 | of_start = | |
1bb5e907 | 1326 | (void *)(ulong) lmb_alloc(lmb, of_len, 0x1000); |
a28afca5 DL |
1327 | } |
1328 | } else { | |
1329 | of_start = | |
1330 | (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000, | |
1331 | getenv_bootm_mapsize() | |
1332 | + getenv_bootm_low()); | |
1333 | } | |
06a09918 | 1334 | |
199adb60 | 1335 | if (of_start == NULL) { |
43b08af5 TT |
1336 | puts("device tree - allocation error\n"); |
1337 | goto error; | |
1338 | } | |
06a09918 | 1339 | |
a28afca5 DL |
1340 | if (disable_relocation) { |
1341 | /* We assume there is space after the existing fdt to use for padding */ | |
1342 | fdt_set_totalsize(of_start, of_len); | |
1343 | printf(" Using Device Tree in place at %p, end %p\n", | |
1344 | of_start, of_start + of_len - 1); | |
1345 | } else { | |
712fbcf3 | 1346 | debug("## device tree at %p ... %p (len=%ld [0x%lX])\n", |
a28afca5 | 1347 | fdt_blob, fdt_blob + *of_size - 1, of_len, of_len); |
06a09918 | 1348 | |
712fbcf3 | 1349 | printf(" Loading Device Tree to %p, end %p ... ", |
a28afca5 | 1350 | of_start, of_start + of_len - 1); |
06a09918 | 1351 | |
712fbcf3 | 1352 | err = fdt_open_into(fdt_blob, of_start, of_len); |
a28afca5 | 1353 | if (err != 0) { |
712fbcf3 | 1354 | fdt_error("fdt move failed"); |
a28afca5 DL |
1355 | goto error; |
1356 | } | |
712fbcf3 | 1357 | puts("OK\n"); |
06a09918 | 1358 | } |
43b08af5 TT |
1359 | |
1360 | *of_flat_tree = of_start; | |
1361 | *of_size = of_len; | |
06a09918 | 1362 | |
54f9c866 | 1363 | set_working_fdt_addr(*of_flat_tree); |
06a09918 KG |
1364 | return 0; |
1365 | ||
1366 | error: | |
1367 | return 1; | |
1368 | } | |
ed59e587 | 1369 | #endif /* CONFIG_OF_LIBFDT */ |
06a09918 KG |
1370 | |
1371 | /** | |
1372 | * boot_get_fdt - main fdt handling routine | |
1373 | * @argc: command argument count | |
1374 | * @argv: command argument list | |
1375 | * @images: pointer to the bootm images structure | |
1376 | * @of_flat_tree: pointer to a char* variable, will hold fdt start address | |
1377 | * @of_size: pointer to a ulong variable, will hold fdt length | |
1378 | * | |
1379 | * boot_get_fdt() is responsible for finding a valid flat device tree image. | |
1380 | * Curently supported are the following ramdisk sources: | |
1381 | * - multicomponent kernel/ramdisk image, | |
1382 | * - commandline provided address of decicated ramdisk image. | |
1383 | * | |
1384 | * returns: | |
1385 | * 0, if fdt image was found and valid, or skipped | |
1386 | * of_flat_tree and of_size are set to fdt start address and length if | |
1387 | * fdt image is found and valid | |
1388 | * | |
1389 | * 1, if fdt image is found but corrupted | |
1390 | * of_flat_tree and of_size are set to 0 if no fdt exists | |
1391 | */ | |
712fbcf3 SW |
1392 | int boot_get_fdt(int flag, int argc, char * const argv[], |
1393 | bootm_headers_t *images, char **of_flat_tree, ulong *of_size) | |
06a09918 | 1394 | { |
3a2003f6 | 1395 | const image_header_t *fdt_hdr; |
06a09918 | 1396 | ulong fdt_addr; |
06a09918 | 1397 | char *fdt_blob = NULL; |
e37ae40e | 1398 | ulong image_start, image_data, image_end; |
06a09918 | 1399 | ulong load_start, load_end; |
35e7b0f1 | 1400 | void *buf; |
06a09918 KG |
1401 | #if defined(CONFIG_FIT) |
1402 | void *fit_hdr; | |
1403 | const char *fit_uname_config = NULL; | |
1404 | const char *fit_uname_fdt = NULL; | |
1405 | ulong default_addr; | |
1406 | int cfg_noffset; | |
1407 | int fdt_noffset; | |
1408 | const void *data; | |
1409 | size_t size; | |
1410 | #endif | |
1411 | ||
1412 | *of_flat_tree = NULL; | |
1413 | *of_size = 0; | |
1414 | ||
712fbcf3 | 1415 | if (argc > 3 || genimg_has_config(images)) { |
06a09918 KG |
1416 | #if defined(CONFIG_FIT) |
1417 | if (argc > 3) { | |
1418 | /* | |
1419 | * If the FDT blob comes from the FIT image and the | |
1420 | * FIT image address is omitted in the command line | |
1421 | * argument, try to use ramdisk or os FIT image | |
1422 | * address or default load address. | |
1423 | */ | |
1424 | if (images->fit_uname_rd) | |
1425 | default_addr = (ulong)images->fit_hdr_rd; | |
1426 | else if (images->fit_uname_os) | |
1427 | default_addr = (ulong)images->fit_hdr_os; | |
1428 | else | |
1429 | default_addr = load_addr; | |
1430 | ||
712fbcf3 | 1431 | if (fit_parse_conf(argv[3], default_addr, |
06a09918 | 1432 | &fdt_addr, &fit_uname_config)) { |
712fbcf3 SW |
1433 | debug("* fdt: config '%s' from image at " |
1434 | "0x%08lx\n", | |
06a09918 | 1435 | fit_uname_config, fdt_addr); |
712fbcf3 | 1436 | } else if (fit_parse_subimage(argv[3], default_addr, |
06a09918 | 1437 | &fdt_addr, &fit_uname_fdt)) { |
712fbcf3 SW |
1438 | debug("* fdt: subimage '%s' from image at " |
1439 | "0x%08lx\n", | |
06a09918 KG |
1440 | fit_uname_fdt, fdt_addr); |
1441 | } else | |
1442 | #endif | |
1443 | { | |
1444 | fdt_addr = simple_strtoul(argv[3], NULL, 16); | |
712fbcf3 SW |
1445 | debug("* fdt: cmdline image address = " |
1446 | "0x%08lx\n", | |
06a09918 KG |
1447 | fdt_addr); |
1448 | } | |
1449 | #if defined(CONFIG_FIT) | |
1450 | } else { | |
1451 | /* use FIT configuration provided in first bootm | |
1452 | * command argument | |
1453 | */ | |
35e7b0f1 | 1454 | fdt_addr = map_to_sysmem(images->fit_hdr_os); |
06a09918 | 1455 | fit_uname_config = images->fit_uname_cfg; |
712fbcf3 SW |
1456 | debug("* fdt: using config '%s' from image " |
1457 | "at 0x%08lx\n", | |
06a09918 KG |
1458 | fit_uname_config, fdt_addr); |
1459 | ||
1460 | /* | |
1461 | * Check whether configuration has FDT blob defined, | |
1462 | * if not quit silently. | |
1463 | */ | |
35e7b0f1 | 1464 | fit_hdr = images->fit_hdr_os; |
712fbcf3 | 1465 | cfg_noffset = fit_conf_get_node(fit_hdr, |
06a09918 KG |
1466 | fit_uname_config); |
1467 | if (cfg_noffset < 0) { | |
712fbcf3 | 1468 | debug("* fdt: no such config\n"); |
06a09918 KG |
1469 | return 0; |
1470 | } | |
1471 | ||
712fbcf3 | 1472 | fdt_noffset = fit_conf_get_fdt_node(fit_hdr, |
06a09918 KG |
1473 | cfg_noffset); |
1474 | if (fdt_noffset < 0) { | |
712fbcf3 | 1475 | debug("* fdt: no fdt in config\n"); |
06a09918 KG |
1476 | return 0; |
1477 | } | |
1478 | } | |
1479 | #endif | |
1480 | ||
712fbcf3 | 1481 | debug("## Checking for 'FDT'/'FDT Image' at %08lx\n", |
06a09918 KG |
1482 | fdt_addr); |
1483 | ||
1484 | /* copy from dataflash if needed */ | |
712fbcf3 | 1485 | fdt_addr = genimg_get_image(fdt_addr); |
06a09918 KG |
1486 | |
1487 | /* | |
1488 | * Check if there is an FDT image at the | |
1489 | * address provided in the second bootm argument | |
1490 | * check image type, for FIT images get a FIT node. | |
1491 | */ | |
35e7b0f1 SG |
1492 | buf = map_sysmem(fdt_addr, 0); |
1493 | switch (genimg_get_format(buf)) { | |
06a09918 KG |
1494 | case IMAGE_FORMAT_LEGACY: |
1495 | /* verify fdt_addr points to a valid image header */ | |
712fbcf3 SW |
1496 | printf("## Flattened Device Tree from Legacy Image " |
1497 | "at %08lx\n", | |
06a09918 | 1498 | fdt_addr); |
712fbcf3 | 1499 | fdt_hdr = image_get_fdt(fdt_addr); |
06a09918 KG |
1500 | if (!fdt_hdr) |
1501 | goto error; | |
1502 | ||
1503 | /* | |
1504 | * move image data to the load address, | |
1505 | * make sure we don't overwrite initial image | |
1506 | */ | |
1507 | image_start = (ulong)fdt_hdr; | |
e37ae40e | 1508 | image_data = (ulong)image_get_data(fdt_hdr); |
712fbcf3 | 1509 | image_end = image_get_image_end(fdt_hdr); |
06a09918 | 1510 | |
712fbcf3 SW |
1511 | load_start = image_get_load(fdt_hdr); |
1512 | load_end = load_start + image_get_data_size(fdt_hdr); | |
06a09918 | 1513 | |
e37ae40e SW |
1514 | if (load_start == image_start || |
1515 | load_start == image_data) { | |
1516 | fdt_blob = (char *)image_data; | |
1517 | break; | |
1518 | } | |
1519 | ||
06a09918 | 1520 | if ((load_start < image_end) && (load_end > image_start)) { |
712fbcf3 | 1521 | fdt_error("fdt overwritten"); |
06a09918 KG |
1522 | goto error; |
1523 | } | |
1524 | ||
712fbcf3 | 1525 | debug(" Loading FDT from 0x%08lx to 0x%08lx\n", |
e37ae40e | 1526 | image_data, load_start); |
06a09918 | 1527 | |
712fbcf3 | 1528 | memmove((void *)load_start, |
e37ae40e | 1529 | (void *)image_data, |
712fbcf3 | 1530 | image_get_data_size(fdt_hdr)); |
06a09918 KG |
1531 | |
1532 | fdt_blob = (char *)load_start; | |
1533 | break; | |
1534 | case IMAGE_FORMAT_FIT: | |
1535 | /* | |
1536 | * This case will catch both: new uImage format | |
1537 | * (libfdt based) and raw FDT blob (also libfdt | |
1538 | * based). | |
1539 | */ | |
1540 | #if defined(CONFIG_FIT) | |
1541 | /* check FDT blob vs FIT blob */ | |
35e7b0f1 | 1542 | if (fit_check_format(buf)) { |
06a09918 KG |
1543 | /* |
1544 | * FIT image | |
1545 | */ | |
35e7b0f1 | 1546 | fit_hdr = buf; |
712fbcf3 SW |
1547 | printf("## Flattened Device Tree from FIT " |
1548 | "Image at %08lx\n", | |
06a09918 KG |
1549 | fdt_addr); |
1550 | ||
1551 | if (!fit_uname_fdt) { | |
1552 | /* | |
1553 | * no FDT blob image node unit name, | |
1554 | * try to get config node first. If | |
1555 | * config unit node name is NULL | |
1556 | * fit_conf_get_node() will try to | |
1557 | * find default config node | |
1558 | */ | |
712fbcf3 | 1559 | cfg_noffset = fit_conf_get_node(fit_hdr, |
06a09918 KG |
1560 | fit_uname_config); |
1561 | ||
1562 | if (cfg_noffset < 0) { | |
712fbcf3 SW |
1563 | fdt_error("Could not find " |
1564 | "configuration " | |
1565 | "node\n"); | |
06a09918 KG |
1566 | goto error; |
1567 | } | |
1568 | ||
712fbcf3 | 1569 | fit_uname_config = fdt_get_name(fit_hdr, |
06a09918 | 1570 | cfg_noffset, NULL); |
712fbcf3 | 1571 | printf(" Using '%s' configuration\n", |
06a09918 KG |
1572 | fit_uname_config); |
1573 | ||
712fbcf3 SW |
1574 | fdt_noffset = fit_conf_get_fdt_node( |
1575 | fit_hdr, | |
06a09918 | 1576 | cfg_noffset); |
712fbcf3 | 1577 | fit_uname_fdt = fit_get_name(fit_hdr, |
06a09918 KG |
1578 | fdt_noffset, NULL); |
1579 | } else { | |
1580 | /* get FDT component image node offset */ | |
712fbcf3 SW |
1581 | fdt_noffset = fit_image_get_node( |
1582 | fit_hdr, | |
1583 | fit_uname_fdt); | |
06a09918 KG |
1584 | } |
1585 | if (fdt_noffset < 0) { | |
712fbcf3 SW |
1586 | fdt_error("Could not find subimage " |
1587 | "node\n"); | |
06a09918 KG |
1588 | goto error; |
1589 | } | |
1590 | ||
712fbcf3 | 1591 | printf(" Trying '%s' FDT blob subimage\n", |
06a09918 KG |
1592 | fit_uname_fdt); |
1593 | ||
712fbcf3 | 1594 | if (!fit_check_fdt(fit_hdr, fdt_noffset, |
06a09918 KG |
1595 | images->verify)) |
1596 | goto error; | |
1597 | ||
1598 | /* get ramdisk image data address and length */ | |
712fbcf3 | 1599 | if (fit_image_get_data(fit_hdr, fdt_noffset, |
06a09918 | 1600 | &data, &size)) { |
712fbcf3 SW |
1601 | fdt_error("Could not find FDT " |
1602 | "subimage data"); | |
06a09918 KG |
1603 | goto error; |
1604 | } | |
1605 | ||
1606 | /* verift that image data is a proper FDT blob */ | |
712fbcf3 SW |
1607 | if (fdt_check_header((char *)data) != 0) { |
1608 | fdt_error("Subimage data is not a FTD"); | |
06a09918 KG |
1609 | goto error; |
1610 | } | |
1611 | ||
1612 | /* | |
1613 | * move image data to the load address, | |
1614 | * make sure we don't overwrite initial image | |
1615 | */ | |
1616 | image_start = (ulong)fit_hdr; | |
712fbcf3 | 1617 | image_end = fit_get_end(fit_hdr); |
06a09918 | 1618 | |
712fbcf3 | 1619 | if (fit_image_get_load(fit_hdr, fdt_noffset, |
06a09918 KG |
1620 | &load_start) == 0) { |
1621 | load_end = load_start + size; | |
1622 | ||
1623 | if ((load_start < image_end) && | |
1624 | (load_end > image_start)) { | |
712fbcf3 | 1625 | fdt_error("FDT overwritten"); |
06a09918 KG |
1626 | goto error; |
1627 | } | |
1628 | ||
712fbcf3 SW |
1629 | printf(" Loading FDT from 0x%08lx " |
1630 | "to 0x%08lx\n", | |
1631 | (ulong)data, | |
1632 | load_start); | |
06a09918 | 1633 | |
712fbcf3 | 1634 | memmove((void *)load_start, |
06a09918 KG |
1635 | (void *)data, size); |
1636 | ||
1637 | fdt_blob = (char *)load_start; | |
1638 | } else { | |
1639 | fdt_blob = (char *)data; | |
1640 | } | |
1641 | ||
1642 | images->fit_hdr_fdt = fit_hdr; | |
1643 | images->fit_uname_fdt = fit_uname_fdt; | |
1644 | images->fit_noffset_fdt = fdt_noffset; | |
1645 | break; | |
1646 | } else | |
1647 | #endif | |
1648 | { | |
1649 | /* | |
1650 | * FDT blob | |
1651 | */ | |
35e7b0f1 | 1652 | fdt_blob = buf; |
712fbcf3 | 1653 | debug("* fdt: raw FDT blob\n"); |
35e7b0f1 SG |
1654 | printf("## Flattened Device Tree blob at %08lx\n", |
1655 | (long)fdt_addr); | |
06a09918 KG |
1656 | } |
1657 | break; | |
1658 | default: | |
712fbcf3 SW |
1659 | puts("ERROR: Did not find a cmdline Flattened Device " |
1660 | "Tree\n"); | |
06a09918 KG |
1661 | goto error; |
1662 | } | |
1663 | ||
0ec2ce4a | 1664 | printf(" Booting using the fdt blob at 0x%p\n", fdt_blob); |
06a09918 KG |
1665 | |
1666 | } else if (images->legacy_hdr_valid && | |
712fbcf3 SW |
1667 | image_check_type(&images->legacy_hdr_os_copy, |
1668 | IH_TYPE_MULTI)) { | |
06a09918 KG |
1669 | |
1670 | ulong fdt_data, fdt_len; | |
1671 | ||
1672 | /* | |
1673 | * Now check if we have a legacy multi-component image, | |
1674 | * get second entry data start address and len. | |
1675 | */ | |
712fbcf3 | 1676 | printf("## Flattened Device Tree from multi " |
06a09918 KG |
1677 | "component Image at %08lX\n", |
1678 | (ulong)images->legacy_hdr_os); | |
1679 | ||
712fbcf3 SW |
1680 | image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data, |
1681 | &fdt_len); | |
06a09918 KG |
1682 | if (fdt_len) { |
1683 | ||
1684 | fdt_blob = (char *)fdt_data; | |
0ec2ce4a | 1685 | printf(" Booting using the fdt at 0x%p\n", fdt_blob); |
06a09918 | 1686 | |
712fbcf3 SW |
1687 | if (fdt_check_header(fdt_blob) != 0) { |
1688 | fdt_error("image is not a fdt"); | |
06a09918 KG |
1689 | goto error; |
1690 | } | |
1691 | ||
d1263fce | 1692 | if (fdt_totalsize(fdt_blob) != fdt_len) { |
712fbcf3 | 1693 | fdt_error("fdt size != image size"); |
06a09918 KG |
1694 | goto error; |
1695 | } | |
1696 | } else { | |
712fbcf3 | 1697 | debug("## No Flattened Device Tree\n"); |
06a09918 KG |
1698 | return 0; |
1699 | } | |
1700 | } else { | |
712fbcf3 | 1701 | debug("## No Flattened Device Tree\n"); |
06a09918 KG |
1702 | return 0; |
1703 | } | |
1704 | ||
1705 | *of_flat_tree = fdt_blob; | |
d1263fce | 1706 | *of_size = fdt_totalsize(fdt_blob); |
712fbcf3 | 1707 | debug(" of_flat_tree at 0x%08lx size 0x%08lx\n", |
52514699 | 1708 | (ulong)*of_flat_tree, *of_size); |
06a09918 KG |
1709 | |
1710 | return 0; | |
1711 | ||
1712 | error: | |
199adb60 | 1713 | *of_flat_tree = NULL; |
06a09918 KG |
1714 | *of_size = 0; |
1715 | return 1; | |
1716 | } | |
1717 | #endif /* CONFIG_OF_LIBFDT */ | |
1718 | ||
fca43cc8 | 1719 | #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
b6b0fe64 | 1720 | /** |
9a4daad0 | 1721 | * boot_get_cmdline - allocate and initialize kernel cmdline |
e822d7fc | 1722 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
b6b0fe64 MB |
1723 | * @cmd_start: pointer to a ulong variable, will hold cmdline start |
1724 | * @cmd_end: pointer to a ulong variable, will hold cmdline end | |
1725 | * | |
9a4daad0 | 1726 | * boot_get_cmdline() allocates space for kernel command line below |
590d3cac | 1727 | * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt |
b6b0fe64 MB |
1728 | * variable is present its contents is copied to allocated kernel |
1729 | * command line. | |
1730 | * | |
1731 | * returns: | |
e822d7fc KG |
1732 | * 0 - success |
1733 | * -1 - failure | |
b6b0fe64 | 1734 | */ |
712fbcf3 | 1735 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end) |
b6b0fe64 MB |
1736 | { |
1737 | char *cmdline; | |
1738 | char *s; | |
1739 | ||
6d0f6bcf | 1740 | cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf, |
c3624e6e | 1741 | getenv_bootm_mapsize() + getenv_bootm_low()); |
e822d7fc KG |
1742 | |
1743 | if (cmdline == NULL) | |
1744 | return -1; | |
b6b0fe64 MB |
1745 | |
1746 | if ((s = getenv("bootargs")) == NULL) | |
1747 | s = ""; | |
1748 | ||
1749 | strcpy(cmdline, s); | |
1750 | ||
1751 | *cmd_start = (ulong) & cmdline[0]; | |
1752 | *cmd_end = *cmd_start + strlen(cmdline); | |
1753 | ||
712fbcf3 | 1754 | debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end); |
b6b0fe64 | 1755 | |
e822d7fc | 1756 | return 0; |
b6b0fe64 | 1757 | } |
fca43cc8 | 1758 | #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */ |
b6b0fe64 | 1759 | |
fca43cc8 | 1760 | #ifdef CONFIG_SYS_BOOT_GET_KBD |
b6b0fe64 | 1761 | /** |
9a4daad0 | 1762 | * boot_get_kbd - allocate and initialize kernel copy of board info |
e822d7fc | 1763 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
b6b0fe64 MB |
1764 | * @kbd: double pointer to board info data |
1765 | * | |
9a4daad0 | 1766 | * boot_get_kbd() allocates space for kernel copy of board info data below |
590d3cac GL |
1767 | * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized |
1768 | * with the current u-boot board info data. | |
b6b0fe64 MB |
1769 | * |
1770 | * returns: | |
e822d7fc KG |
1771 | * 0 - success |
1772 | * -1 - failure | |
b6b0fe64 | 1773 | */ |
712fbcf3 | 1774 | int boot_get_kbd(struct lmb *lmb, bd_t **kbd) |
b6b0fe64 | 1775 | { |
391fd93a | 1776 | *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, |
c3624e6e | 1777 | getenv_bootm_mapsize() + getenv_bootm_low()); |
e822d7fc KG |
1778 | if (*kbd == NULL) |
1779 | return -1; | |
1780 | ||
b6b0fe64 MB |
1781 | **kbd = *(gd->bd); |
1782 | ||
712fbcf3 | 1783 | debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); |
b6b0fe64 MB |
1784 | |
1785 | #if defined(DEBUG) && defined(CONFIG_CMD_BDI) | |
1786 | do_bdinfo(NULL, 0, 0, NULL); | |
1787 | #endif | |
1788 | ||
e822d7fc | 1789 | return 0; |
ceaed2b1 | 1790 | } |
fca43cc8 | 1791 | #endif /* CONFIG_SYS_BOOT_GET_KBD */ |
5dfb5213 | 1792 | #endif /* !USE_HOSTCC */ |