]>
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 | * | |
1a459660 | 7 | * SPDX-License-Identifier: GPL-2.0+ |
b97a2a0a | 8 | */ |
ceaed2b1 | 9 | |
b97a2a0a | 10 | #ifndef USE_HOSTCC |
5ad03eb3 MB |
11 | #include <common.h> |
12 | #include <watchdog.h> | |
13 | ||
14 | #ifdef CONFIG_SHOW_BOOT_PROGRESS | |
15 | #include <status_led.h> | |
16 | #endif | |
17 | ||
18 | #ifdef CONFIG_HAS_DATAFLASH | |
19 | #include <dataflash.h> | |
20 | #endif | |
21 | ||
95d449ad MB |
22 | #ifdef CONFIG_LOGBUFFER |
23 | #include <logbuff.h> | |
24 | #endif | |
25 | ||
2242f536 | 26 | #include <rtc.h> |
2242f536 | 27 | |
1cf0a8b2 | 28 | #include <environment.h> |
5dfb5213 MB |
29 | #include <image.h> |
30 | ||
712fbcf3 | 31 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
fff888a1 MB |
32 | #include <libfdt.h> |
33 | #include <fdt_support.h> | |
c8779648 MB |
34 | #endif |
35 | ||
20a14a42 | 36 | #include <u-boot/md5.h> |
2b9912e6 | 37 | #include <u-boot/sha1.h> |
a51ec63b | 38 | #include <asm/errno.h> |
35e7b0f1 | 39 | #include <asm/io.h> |
c8779648 | 40 | |
b6b0fe64 | 41 | #ifdef CONFIG_CMD_BDI |
54841ab5 | 42 | extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
b6b0fe64 MB |
43 | #endif |
44 | ||
45 | DECLARE_GLOBAL_DATA_PTR; | |
8a5ea3e6 | 46 | |
21d29f7f | 47 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
712fbcf3 | 48 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
d985c849 | 49 | int verify); |
21d29f7f | 50 | #endif |
b97a2a0a | 51 | #else |
5ad03eb3 | 52 | #include "mkimage.h" |
20a14a42 | 53 | #include <u-boot/md5.h> |
5dfb5213 | 54 | #include <time.h> |
b97a2a0a | 55 | #include <image.h> |
5dfb5213 | 56 | #endif /* !USE_HOSTCC*/ |
b97a2a0a | 57 | |
0ccff500 SG |
58 | #include <u-boot/crc.h> |
59 | ||
13d06981 SG |
60 | #ifndef CONFIG_SYS_BARGSIZE |
61 | #define CONFIG_SYS_BARGSIZE 512 | |
62 | #endif | |
63 | ||
7edb186f | 64 | static const table_entry_t uimage_arch[] = { |
570abb0a MB |
65 | { IH_ARCH_INVALID, NULL, "Invalid ARCH", }, |
66 | { IH_ARCH_ALPHA, "alpha", "Alpha", }, | |
67 | { IH_ARCH_ARM, "arm", "ARM", }, | |
68 | { IH_ARCH_I386, "x86", "Intel x86", }, | |
69 | { IH_ARCH_IA64, "ia64", "IA64", }, | |
70 | { IH_ARCH_M68K, "m68k", "M68K", }, | |
71 | { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", }, | |
72 | { IH_ARCH_MIPS, "mips", "MIPS", }, | |
73 | { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, | |
570abb0a | 74 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
e419e12d | 75 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
570abb0a MB |
76 | { IH_ARCH_PPC, "ppc", "PowerPC", }, |
77 | { IH_ARCH_S390, "s390", "IBM S390", }, | |
78 | { IH_ARCH_SH, "sh", "SuperH", }, | |
79 | { IH_ARCH_SPARC, "sparc", "SPARC", }, | |
80 | { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", }, | |
81 | { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, | |
82 | { IH_ARCH_AVR32, "avr32", "AVR32", }, | |
64d61461 | 83 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
3ddcaccd | 84 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
35e7b0f1 | 85 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
0ae76531 | 86 | { IH_ARCH_ARM64, "arm64", "AArch64", }, |
bc5d5428 | 87 | { IH_ARCH_ARC, "arc", "ARC", }, |
570abb0a MB |
88 | { -1, "", "", }, |
89 | }; | |
90 | ||
7edb186f | 91 | static const table_entry_t uimage_os[] = { |
570abb0a | 92 | { IH_OS_INVALID, NULL, "Invalid OS", }, |
570abb0a MB |
93 | { IH_OS_LINUX, "linux", "Linux", }, |
94 | #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC) | |
95 | { IH_OS_LYNXOS, "lynxos", "LynxOS", }, | |
96 | #endif | |
97 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, | |
3df61957 | 98 | { IH_OS_OSE, "ose", "Enea OSE", }, |
04d41409 | 99 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
570abb0a MB |
100 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
101 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, | |
68b15e83 | 102 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, |
570abb0a MB |
103 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) |
104 | { IH_OS_QNX, "qnx", "QNX", }, | |
570abb0a | 105 | #endif |
f5ed9e39 PT |
106 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
107 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, | |
108 | #endif | |
570abb0a MB |
109 | #ifdef USE_HOSTCC |
110 | { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", }, | |
111 | { IH_OS_DELL, "dell", "Dell", }, | |
112 | { IH_OS_ESIX, "esix", "Esix", }, | |
113 | { IH_OS_FREEBSD, "freebsd", "FreeBSD", }, | |
114 | { IH_OS_IRIX, "irix", "Irix", }, | |
115 | { IH_OS_NCR, "ncr", "NCR", }, | |
116 | { IH_OS_OPENBSD, "openbsd", "OpenBSD", }, | |
117 | { IH_OS_PSOS, "psos", "pSOS", }, | |
118 | { IH_OS_SCO, "sco", "SCO", }, | |
119 | { IH_OS_SOLARIS, "solaris", "Solaris", }, | |
120 | { IH_OS_SVR4, "svr4", "SVR4", }, | |
121 | #endif | |
122 | { -1, "", "", }, | |
123 | }; | |
124 | ||
7edb186f | 125 | static const table_entry_t uimage_type[] = { |
4962e38e | 126 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
570abb0a MB |
127 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
128 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, | |
3decb14a | 129 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
bf411ea9 | 130 | { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",}, |
570abb0a | 131 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
b9b50e89 | 132 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
4962e38e SB |
133 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
134 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, | |
135 | { IH_TYPE_INVALID, NULL, "Invalid Image", }, | |
570abb0a | 136 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
4962e38e | 137 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
5d898a00 | 138 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
570abb0a MB |
139 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
140 | { IH_TYPE_SCRIPT, "script", "Script", }, | |
832472a9 | 141 | { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",}, |
570abb0a | 142 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |
7816f2cf | 143 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
bce88370 | 144 | { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",}, |
7b1a4117 | 145 | { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",}, |
570abb0a MB |
146 | { -1, "", "", }, |
147 | }; | |
148 | ||
7edb186f | 149 | static const table_entry_t uimage_comp[] = { |
570abb0a MB |
150 | { IH_COMP_NONE, "none", "uncompressed", }, |
151 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, | |
152 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, | |
fc9c1727 | 153 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
20dde48b | 154 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
570abb0a MB |
155 | { -1, "", "", }, |
156 | }; | |
157 | ||
9a4daad0 MB |
158 | /*****************************************************************************/ |
159 | /* Legacy format routines */ | |
160 | /*****************************************************************************/ | |
712fbcf3 | 161 | int image_check_hcrc(const image_header_t *hdr) |
b97a2a0a MB |
162 | { |
163 | ulong hcrc; | |
712fbcf3 | 164 | ulong len = image_get_header_size(); |
b97a2a0a MB |
165 | image_header_t header; |
166 | ||
167 | /* Copy header so we can blank CRC field for re-calculation */ | |
712fbcf3 SW |
168 | memmove(&header, (char *)hdr, image_get_header_size()); |
169 | image_set_hcrc(&header, 0); | |
b97a2a0a | 170 | |
712fbcf3 | 171 | hcrc = crc32(0, (unsigned char *)&header, len); |
b97a2a0a | 172 | |
712fbcf3 | 173 | return (hcrc == image_get_hcrc(hdr)); |
b97a2a0a MB |
174 | } |
175 | ||
712fbcf3 | 176 | int image_check_dcrc(const image_header_t *hdr) |
b97a2a0a | 177 | { |
712fbcf3 SW |
178 | ulong data = image_get_data(hdr); |
179 | ulong len = image_get_data_size(hdr); | |
180 | ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32); | |
b97a2a0a | 181 | |
712fbcf3 | 182 | return (dcrc == image_get_dcrc(hdr)); |
b97a2a0a MB |
183 | } |
184 | ||
f13e7b2e MB |
185 | /** |
186 | * image_multi_count - get component (sub-image) count | |
187 | * @hdr: pointer to the header of the multi component image | |
188 | * | |
189 | * image_multi_count() returns number of components in a multi | |
190 | * component image. | |
191 | * | |
192 | * Note: no checking of the image type is done, caller must pass | |
193 | * a valid multi component image. | |
194 | * | |
195 | * returns: | |
196 | * number of components | |
197 | */ | |
712fbcf3 | 198 | ulong image_multi_count(const image_header_t *hdr) |
f13e7b2e MB |
199 | { |
200 | ulong i, count = 0; | |
df6f1b89 | 201 | uint32_t *size; |
f13e7b2e MB |
202 | |
203 | /* get start of the image payload, which in case of multi | |
204 | * component images that points to a table of component sizes */ | |
712fbcf3 | 205 | size = (uint32_t *)image_get_data(hdr); |
f13e7b2e MB |
206 | |
207 | /* count non empty slots */ | |
208 | for (i = 0; size[i]; ++i) | |
209 | count++; | |
210 | ||
211 | return count; | |
212 | } | |
213 | ||
214 | /** | |
215 | * image_multi_getimg - get component data address and size | |
216 | * @hdr: pointer to the header of the multi component image | |
217 | * @idx: index of the requested component | |
218 | * @data: pointer to a ulong variable, will hold component data address | |
219 | * @len: pointer to a ulong variable, will hold component size | |
220 | * | |
221 | * image_multi_getimg() returns size and data address for the requested | |
222 | * component in a multi component image. | |
223 | * | |
224 | * Note: no checking of the image type is done, caller must pass | |
225 | * a valid multi component image. | |
226 | * | |
227 | * returns: | |
228 | * data address and size of the component, if idx is valid | |
229 | * 0 in data and len, if idx is out of range | |
230 | */ | |
712fbcf3 | 231 | void image_multi_getimg(const image_header_t *hdr, ulong idx, |
f13e7b2e MB |
232 | ulong *data, ulong *len) |
233 | { | |
234 | int i; | |
df6f1b89 | 235 | uint32_t *size; |
02b9b224 | 236 | ulong offset, count, img_data; |
f13e7b2e MB |
237 | |
238 | /* get number of component */ | |
712fbcf3 | 239 | count = image_multi_count(hdr); |
f13e7b2e MB |
240 | |
241 | /* get start of the image payload, which in case of multi | |
242 | * component images that points to a table of component sizes */ | |
712fbcf3 | 243 | size = (uint32_t *)image_get_data(hdr); |
f13e7b2e MB |
244 | |
245 | /* get address of the proper component data start, which means | |
246 | * skipping sizes table (add 1 for last, null entry) */ | |
712fbcf3 | 247 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
f13e7b2e MB |
248 | |
249 | if (idx < count) { | |
712fbcf3 | 250 | *len = uimage_to_cpu(size[idx]); |
f13e7b2e | 251 | offset = 0; |
f13e7b2e MB |
252 | |
253 | /* go over all indices preceding requested component idx */ | |
254 | for (i = 0; i < idx; i++) { | |
02b9b224 | 255 | /* add up i-th component size, rounding up to 4 bytes */ |
712fbcf3 | 256 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
f13e7b2e MB |
257 | } |
258 | ||
259 | /* calculate idx-th component data address */ | |
02b9b224 | 260 | *data = img_data + offset; |
f13e7b2e MB |
261 | } else { |
262 | *len = 0; | |
263 | *data = 0; | |
264 | } | |
265 | } | |
42b73e8e | 266 | |
712fbcf3 | 267 | static void image_print_type(const image_header_t *hdr) |
9a4daad0 MB |
268 | { |
269 | const char *os, *arch, *type, *comp; | |
270 | ||
712fbcf3 SW |
271 | os = genimg_get_os_name(image_get_os(hdr)); |
272 | arch = genimg_get_arch_name(image_get_arch(hdr)); | |
273 | type = genimg_get_type_name(image_get_type(hdr)); | |
274 | comp = genimg_get_comp_name(image_get_comp(hdr)); | |
9a4daad0 | 275 | |
712fbcf3 | 276 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
9a4daad0 MB |
277 | } |
278 | ||
5dfb5213 | 279 | /** |
edbed247 | 280 | * image_print_contents - prints out the contents of the legacy format image |
3a2003f6 | 281 | * @ptr: pointer to the legacy format image header |
5dfb5213 MB |
282 | * @p: pointer to prefix string |
283 | * | |
edbed247 | 284 | * image_print_contents() formats a multi line legacy image contents description. |
5dfb5213 MB |
285 | * The routine prints out all header fields followed by the size/offset data |
286 | * for MULTI/SCRIPT images. | |
287 | * | |
288 | * returns: | |
289 | * no returned results | |
290 | */ | |
712fbcf3 | 291 | void image_print_contents(const void *ptr) |
9a4daad0 | 292 | { |
3a2003f6 | 293 | const image_header_t *hdr = (const image_header_t *)ptr; |
edbed247 BS |
294 | const char *p; |
295 | ||
1fe7d938 | 296 | p = IMAGE_INDENT_STRING; |
712fbcf3 | 297 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
859e92b7 SG |
298 | if (IMAGE_ENABLE_TIMESTAMP) { |
299 | printf("%sCreated: ", p); | |
300 | genimg_print_time((time_t)image_get_time(hdr)); | |
301 | } | |
712fbcf3 SW |
302 | printf("%sImage Type: ", p); |
303 | image_print_type(hdr); | |
304 | printf("%sData Size: ", p); | |
305 | genimg_print_size(image_get_data_size(hdr)); | |
306 | printf("%sLoad Address: %08x\n", p, image_get_load(hdr)); | |
307 | printf("%sEntry Point: %08x\n", p, image_get_ep(hdr)); | |
308 | ||
309 | if (image_check_type(hdr, IH_TYPE_MULTI) || | |
310 | image_check_type(hdr, IH_TYPE_SCRIPT)) { | |
9a4daad0 MB |
311 | int i; |
312 | ulong data, len; | |
712fbcf3 | 313 | ulong count = image_multi_count(hdr); |
9a4daad0 | 314 | |
712fbcf3 | 315 | printf("%sContents:\n", p); |
9a4daad0 | 316 | for (i = 0; i < count; i++) { |
712fbcf3 | 317 | image_multi_getimg(hdr, i, &data, &len); |
570abb0a | 318 | |
712fbcf3 SW |
319 | printf("%s Image %d: ", p, i); |
320 | genimg_print_size(len); | |
570abb0a | 321 | |
712fbcf3 | 322 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
570abb0a MB |
323 | /* |
324 | * the user may need to know offsets | |
325 | * if planning to do something with | |
326 | * multiple files | |
327 | */ | |
712fbcf3 | 328 | printf("%s Offset = 0x%08lx\n", p, data); |
570abb0a | 329 | } |
9a4daad0 MB |
330 | } |
331 | } | |
332 | } | |
333 | ||
570abb0a MB |
334 | |
335 | #ifndef USE_HOSTCC | |
21d29f7f | 336 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
9a4daad0 MB |
337 | /** |
338 | * image_get_ramdisk - get and verify ramdisk image | |
9a4daad0 MB |
339 | * @rd_addr: ramdisk image start address |
340 | * @arch: expected ramdisk architecture | |
341 | * @verify: checksum verification flag | |
342 | * | |
343 | * image_get_ramdisk() returns a pointer to the verified ramdisk image | |
344 | * header. Routine receives image start address and expected architecture | |
345 | * flag. Verification done covers data and header integrity and os/type/arch | |
346 | * fields checking. | |
347 | * | |
348 | * If dataflash support is enabled routine checks for dataflash addresses | |
349 | * and handles required dataflash reads. | |
350 | * | |
351 | * returns: | |
352 | * pointer to a ramdisk image header, if image was found and valid | |
353 | * otherwise, return NULL | |
354 | */ | |
712fbcf3 | 355 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
d985c849 | 356 | int verify) |
9a4daad0 | 357 | { |
3a2003f6 | 358 | const image_header_t *rd_hdr = (const image_header_t *)rd_addr; |
9a4daad0 | 359 | |
712fbcf3 SW |
360 | if (!image_check_magic(rd_hdr)) { |
361 | puts("Bad Magic Number\n"); | |
770605e4 | 362 | bootstage_error(BOOTSTAGE_ID_RD_MAGIC); |
9a4daad0 MB |
363 | return NULL; |
364 | } | |
365 | ||
712fbcf3 SW |
366 | if (!image_check_hcrc(rd_hdr)) { |
367 | puts("Bad Header Checksum\n"); | |
770605e4 | 368 | bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
9a4daad0 MB |
369 | return NULL; |
370 | } | |
371 | ||
770605e4 | 372 | bootstage_mark(BOOTSTAGE_ID_RD_MAGIC); |
712fbcf3 | 373 | image_print_contents(rd_hdr); |
9a4daad0 MB |
374 | |
375 | if (verify) { | |
376 | puts(" Verifying Checksum ... "); | |
712fbcf3 SW |
377 | if (!image_check_dcrc(rd_hdr)) { |
378 | puts("Bad Data CRC\n"); | |
770605e4 | 379 | bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM); |
9a4daad0 MB |
380 | return NULL; |
381 | } | |
382 | puts("OK\n"); | |
383 | } | |
384 | ||
770605e4 | 385 | bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
9a4daad0 | 386 | |
712fbcf3 SW |
387 | if (!image_check_os(rd_hdr, IH_OS_LINUX) || |
388 | !image_check_arch(rd_hdr, arch) || | |
389 | !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) { | |
390 | printf("No Linux %s Ramdisk Image\n", | |
9a4daad0 | 391 | genimg_get_arch_name(arch)); |
770605e4 | 392 | bootstage_error(BOOTSTAGE_ID_RAMDISK); |
9a4daad0 MB |
393 | return NULL; |
394 | } | |
395 | ||
396 | return rd_hdr; | |
397 | } | |
21d29f7f | 398 | #endif |
570abb0a | 399 | #endif /* !USE_HOSTCC */ |
9a4daad0 MB |
400 | |
401 | /*****************************************************************************/ | |
402 | /* Shared dual-format routines */ | |
403 | /*****************************************************************************/ | |
570abb0a | 404 | #ifndef USE_HOSTCC |
1cf0a8b2 JH |
405 | ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
406 | ulong save_addr; /* Default Save Address */ | |
407 | ulong save_size; /* Default Save Size (in bytes) */ | |
408 | ||
409 | static int on_loadaddr(const char *name, const char *value, enum env_op op, | |
410 | int flags) | |
411 | { | |
412 | switch (op) { | |
413 | case env_op_create: | |
414 | case env_op_overwrite: | |
415 | load_addr = simple_strtoul(value, NULL, 16); | |
416 | break; | |
417 | default: | |
418 | break; | |
419 | } | |
420 | ||
421 | return 0; | |
422 | } | |
423 | U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr); | |
424 | ||
9a4daad0 MB |
425 | ulong getenv_bootm_low(void) |
426 | { | |
712fbcf3 | 427 | char *s = getenv("bootm_low"); |
9a4daad0 | 428 | if (s) { |
712fbcf3 | 429 | ulong tmp = simple_strtoul(s, NULL, 16); |
9a4daad0 MB |
430 | return tmp; |
431 | } | |
432 | ||
6d0f6bcf JCPV |
433 | #if defined(CONFIG_SYS_SDRAM_BASE) |
434 | return CONFIG_SYS_SDRAM_BASE; | |
afe45c87 MB |
435 | #elif defined(CONFIG_ARM) |
436 | return gd->bd->bi_dram[0].start; | |
9a4daad0 MB |
437 | #else |
438 | return 0; | |
439 | #endif | |
440 | } | |
441 | ||
391fd93a | 442 | phys_size_t getenv_bootm_size(void) |
9a4daad0 | 443 | { |
c519facc | 444 | phys_size_t tmp; |
712fbcf3 | 445 | char *s = getenv("bootm_size"); |
9a4daad0 | 446 | if (s) { |
712fbcf3 | 447 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
9a4daad0 MB |
448 | return tmp; |
449 | } | |
c519facc MM |
450 | s = getenv("bootm_low"); |
451 | if (s) | |
712fbcf3 | 452 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
c519facc MM |
453 | else |
454 | tmp = 0; | |
455 | ||
9a4daad0 | 456 | |
afe45c87 | 457 | #if defined(CONFIG_ARM) |
c519facc | 458 | return gd->bd->bi_dram[0].size - tmp; |
afe45c87 | 459 | #else |
c519facc | 460 | return gd->bd->bi_memsize - tmp; |
afe45c87 | 461 | #endif |
9a4daad0 MB |
462 | } |
463 | ||
c3624e6e GL |
464 | phys_size_t getenv_bootm_mapsize(void) |
465 | { | |
466 | phys_size_t tmp; | |
712fbcf3 | 467 | char *s = getenv("bootm_mapsize"); |
c3624e6e | 468 | if (s) { |
712fbcf3 | 469 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
c3624e6e GL |
470 | return tmp; |
471 | } | |
472 | ||
473 | #if defined(CONFIG_SYS_BOOTMAPSZ) | |
474 | return CONFIG_SYS_BOOTMAPSZ; | |
475 | #else | |
476 | return getenv_bootm_size(); | |
477 | #endif | |
478 | } | |
479 | ||
712fbcf3 | 480 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
9a4daad0 | 481 | { |
54fa2c5b LJ |
482 | if (to == from) |
483 | return; | |
484 | ||
9a4daad0 MB |
485 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
486 | while (len > 0) { | |
487 | size_t tail = (len > chunksz) ? chunksz : len; | |
712fbcf3 SW |
488 | WATCHDOG_RESET(); |
489 | memmove(to, from, tail); | |
9a4daad0 MB |
490 | to += tail; |
491 | from += tail; | |
492 | len -= tail; | |
493 | } | |
494 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ | |
712fbcf3 | 495 | memmove(to, from, len); |
9a4daad0 MB |
496 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
497 | } | |
570abb0a | 498 | #endif /* !USE_HOSTCC */ |
9a4daad0 | 499 | |
712fbcf3 | 500 | void genimg_print_size(uint32_t size) |
42b73e8e | 501 | { |
570abb0a | 502 | #ifndef USE_HOSTCC |
712fbcf3 SW |
503 | printf("%d Bytes = ", size); |
504 | print_size(size, "\n"); | |
570abb0a | 505 | #else |
712fbcf3 | 506 | printf("%d Bytes = %.2f kB = %.2f MB\n", |
570abb0a MB |
507 | size, (double)size / 1.024e3, |
508 | (double)size / 1.048576e6); | |
42b73e8e | 509 | #endif |
570abb0a MB |
510 | } |
511 | ||
859e92b7 SG |
512 | #if IMAGE_ENABLE_TIMESTAMP |
513 | void genimg_print_time(time_t timestamp) | |
570abb0a MB |
514 | { |
515 | #ifndef USE_HOSTCC | |
516 | struct rtc_time tm; | |
517 | ||
712fbcf3 SW |
518 | to_tm(timestamp, &tm); |
519 | printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n", | |
570abb0a MB |
520 | tm.tm_year, tm.tm_mon, tm.tm_mday, |
521 | tm.tm_hour, tm.tm_min, tm.tm_sec); | |
522 | #else | |
712fbcf3 | 523 | printf("%s", ctime(×tamp)); |
42b73e8e | 524 | #endif |
570abb0a | 525 | } |
859e92b7 | 526 | #endif |
42b73e8e | 527 | |
570abb0a MB |
528 | /** |
529 | * get_table_entry_name - translate entry id to long name | |
530 | * @table: pointer to a translation table for entries of a specific type | |
531 | * @msg: message to be returned when translation fails | |
532 | * @id: entry id to be translated | |
533 | * | |
534 | * get_table_entry_name() will go over translation table trying to find | |
535 | * entry that matches given id. If matching entry is found, its long | |
536 | * name is returned to the caller. | |
537 | * | |
538 | * returns: | |
539 | * long entry name if translation succeeds | |
540 | * msg otherwise | |
541 | */ | |
7edb186f | 542 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
570abb0a MB |
543 | { |
544 | for (; table->id >= 0; ++table) { | |
545 | if (table->id == id) | |
2e5167cc | 546 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
e3d1ac7b SW |
547 | return table->lname; |
548 | #else | |
549 | return table->lname + gd->reloc_off; | |
550 | #endif | |
42b73e8e | 551 | } |
570abb0a MB |
552 | return (msg); |
553 | } | |
42b73e8e | 554 | |
712fbcf3 | 555 | const char *genimg_get_os_name(uint8_t os) |
570abb0a | 556 | { |
712fbcf3 | 557 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
42b73e8e MB |
558 | } |
559 | ||
712fbcf3 | 560 | const char *genimg_get_arch_name(uint8_t arch) |
42b73e8e | 561 | { |
712fbcf3 SW |
562 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
563 | arch)); | |
570abb0a | 564 | } |
42b73e8e | 565 | |
712fbcf3 | 566 | const char *genimg_get_type_name(uint8_t type) |
570abb0a | 567 | { |
712fbcf3 | 568 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
570abb0a | 569 | } |
42b73e8e | 570 | |
712fbcf3 | 571 | const char *genimg_get_comp_name(uint8_t comp) |
570abb0a | 572 | { |
712fbcf3 SW |
573 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
574 | comp)); | |
42b73e8e MB |
575 | } |
576 | ||
570abb0a MB |
577 | /** |
578 | * get_table_entry_id - translate short entry name to id | |
579 | * @table: pointer to a translation table for entries of a specific type | |
580 | * @table_name: to be used in case of error | |
581 | * @name: entry short name to be translated | |
582 | * | |
583 | * get_table_entry_id() will go over translation table trying to find | |
584 | * entry that matches given short name. If matching entry is found, | |
585 | * its id returned to the caller. | |
586 | * | |
587 | * returns: | |
588 | * entry id if translation succeeds | |
589 | * -1 otherwise | |
590 | */ | |
7edb186f | 591 | int get_table_entry_id(const table_entry_t *table, |
570abb0a | 592 | const char *table_name, const char *name) |
42b73e8e | 593 | { |
7edb186f | 594 | const table_entry_t *t; |
570abb0a MB |
595 | #ifdef USE_HOSTCC |
596 | int first = 1; | |
42b73e8e | 597 | |
570abb0a MB |
598 | for (t = table; t->id >= 0; ++t) { |
599 | if (t->sname && strcasecmp(t->sname, name) == 0) | |
712fbcf3 | 600 | return(t->id); |
42b73e8e MB |
601 | } |
602 | ||
712fbcf3 | 603 | fprintf(stderr, "\nInvalid %s Type - valid names are", table_name); |
570abb0a MB |
604 | for (t = table; t->id >= 0; ++t) { |
605 | if (t->sname == NULL) | |
606 | continue; | |
712fbcf3 | 607 | fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname); |
570abb0a MB |
608 | first = 0; |
609 | } | |
712fbcf3 | 610 | fprintf(stderr, "\n"); |
570abb0a MB |
611 | #else |
612 | for (t = table; t->id >= 0; ++t) { | |
2e5167cc | 613 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
e3d1ac7b | 614 | if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0) |
2e5167cc WD |
615 | #else |
616 | if (t->sname && strcmp(t->sname, name) == 0) | |
521af04d | 617 | #endif |
570abb0a MB |
618 | return (t->id); |
619 | } | |
712fbcf3 | 620 | debug("Invalid %s Type: %s\n", table_name, name); |
570abb0a MB |
621 | #endif /* USE_HOSTCC */ |
622 | return (-1); | |
623 | } | |
624 | ||
712fbcf3 | 625 | int genimg_get_os_id(const char *name) |
570abb0a | 626 | { |
712fbcf3 | 627 | return (get_table_entry_id(uimage_os, "OS", name)); |
570abb0a MB |
628 | } |
629 | ||
712fbcf3 | 630 | int genimg_get_arch_id(const char *name) |
570abb0a | 631 | { |
712fbcf3 | 632 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
42b73e8e | 633 | } |
5ad03eb3 | 634 | |
712fbcf3 | 635 | int genimg_get_type_id(const char *name) |
570abb0a | 636 | { |
712fbcf3 | 637 | return (get_table_entry_id(uimage_type, "Image", name)); |
570abb0a MB |
638 | } |
639 | ||
712fbcf3 | 640 | int genimg_get_comp_id(const char *name) |
570abb0a | 641 | { |
712fbcf3 | 642 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
570abb0a MB |
643 | } |
644 | ||
645 | #ifndef USE_HOSTCC | |
0f64140b | 646 | /** |
6c454fed BW |
647 | * genimg_get_kernel_addr_fit - get the real kernel address and return 2 |
648 | * FIT strings | |
0f64140b | 649 | * @img_addr: a string might contain real image address |
6c454fed BW |
650 | * @fit_uname_config: double pointer to a char, will hold pointer to a |
651 | * configuration unit name | |
652 | * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage | |
653 | * name | |
0f64140b | 654 | * |
6c454fed | 655 | * genimg_get_kernel_addr_fit get the real kernel start address from a string |
0f64140b BW |
656 | * which is normally the first argv of bootm/bootz |
657 | * | |
658 | * returns: | |
659 | * kernel start address | |
660 | */ | |
6c454fed BW |
661 | ulong genimg_get_kernel_addr_fit(char * const img_addr, |
662 | const char **fit_uname_config, | |
663 | const char **fit_uname_kernel) | |
0f64140b | 664 | { |
0f64140b BW |
665 | ulong kernel_addr; |
666 | ||
667 | /* find out kernel image address */ | |
668 | if (!img_addr) { | |
669 | kernel_addr = load_addr; | |
670 | debug("* kernel: default image load address = 0x%08lx\n", | |
671 | load_addr); | |
672 | #if defined(CONFIG_FIT) | |
673 | } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr, | |
6c454fed | 674 | fit_uname_config)) { |
0f64140b | 675 | debug("* kernel: config '%s' from image at 0x%08lx\n", |
6c454fed | 676 | *fit_uname_config, kernel_addr); |
0f64140b | 677 | } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr, |
6c454fed | 678 | fit_uname_kernel)) { |
0f64140b | 679 | debug("* kernel: subimage '%s' from image at 0x%08lx\n", |
6c454fed | 680 | *fit_uname_kernel, kernel_addr); |
0f64140b BW |
681 | #endif |
682 | } else { | |
683 | kernel_addr = simple_strtoul(img_addr, NULL, 16); | |
684 | debug("* kernel: cmdline image address = 0x%08lx\n", | |
685 | kernel_addr); | |
686 | } | |
687 | ||
688 | return kernel_addr; | |
689 | } | |
690 | ||
6c454fed BW |
691 | /** |
692 | * genimg_get_kernel_addr() is the simple version of | |
693 | * genimg_get_kernel_addr_fit(). It ignores those return FIT strings | |
694 | */ | |
695 | ulong genimg_get_kernel_addr(char * const img_addr) | |
696 | { | |
697 | const char *fit_uname_config = NULL; | |
698 | const char *fit_uname_kernel = NULL; | |
699 | ||
700 | return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config, | |
701 | &fit_uname_kernel); | |
702 | } | |
703 | ||
fff888a1 | 704 | /** |
9a4daad0 | 705 | * genimg_get_format - get image format type |
fff888a1 MB |
706 | * @img_addr: image start address |
707 | * | |
9a4daad0 | 708 | * genimg_get_format() checks whether provided address points to a valid |
fff888a1 MB |
709 | * legacy or FIT image. |
710 | * | |
4efbe9db MB |
711 | * New uImage format and FDT blob are based on a libfdt. FDT blob |
712 | * may be passed directly or embedded in a FIT image. In both situations | |
9a4daad0 | 713 | * genimg_get_format() must be able to dectect libfdt header. |
4efbe9db | 714 | * |
fff888a1 MB |
715 | * returns: |
716 | * image format type or IMAGE_FORMAT_INVALID if no image is present | |
717 | */ | |
35e7b0f1 | 718 | int genimg_get_format(const void *img_addr) |
fff888a1 | 719 | { |
21d29f7f | 720 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
3a2003f6 | 721 | const image_header_t *hdr; |
fff888a1 | 722 | |
3a2003f6 | 723 | hdr = (const image_header_t *)img_addr; |
fff888a1 | 724 | if (image_check_magic(hdr)) |
21d29f7f HS |
725 | return IMAGE_FORMAT_LEGACY; |
726 | #endif | |
4efbe9db | 727 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
21d29f7f HS |
728 | if (fdt_check_header(img_addr) == 0) |
729 | return IMAGE_FORMAT_FIT; | |
9ace3fc8 SS |
730 | #endif |
731 | #ifdef CONFIG_ANDROID_BOOT_IMAGE | |
21d29f7f HS |
732 | if (android_image_check_header(img_addr) == 0) |
733 | return IMAGE_FORMAT_ANDROID; | |
fff888a1 MB |
734 | #endif |
735 | ||
21d29f7f | 736 | return IMAGE_FORMAT_INVALID; |
fff888a1 MB |
737 | } |
738 | ||
739 | /** | |
9a4daad0 | 740 | * genimg_get_image - get image from special storage (if necessary) |
fff888a1 MB |
741 | * @img_addr: image start address |
742 | * | |
9a4daad0 | 743 | * genimg_get_image() checks if provided image start adddress is located |
fff888a1 MB |
744 | * in a dataflash storage. If so, image is moved to a system RAM memory. |
745 | * | |
746 | * returns: | |
747 | * image start address after possible relocation from special storage | |
748 | */ | |
712fbcf3 | 749 | ulong genimg_get_image(ulong img_addr) |
fff888a1 | 750 | { |
6f0f9dfc | 751 | ulong ram_addr = img_addr; |
fff888a1 MB |
752 | |
753 | #ifdef CONFIG_HAS_DATAFLASH | |
6f0f9dfc MB |
754 | ulong h_size, d_size; |
755 | ||
712fbcf3 | 756 | if (addr_dataflash(img_addr)) { |
35e7b0f1 SG |
757 | void *buf; |
758 | ||
6f0f9dfc | 759 | /* ger RAM address */ |
6d0f6bcf | 760 | ram_addr = CONFIG_SYS_LOAD_ADDR; |
6f0f9dfc MB |
761 | |
762 | /* get header size */ | |
712fbcf3 | 763 | h_size = image_get_header_size(); |
6f0f9dfc MB |
764 | #if defined(CONFIG_FIT) |
765 | if (sizeof(struct fdt_header) > h_size) | |
766 | h_size = sizeof(struct fdt_header); | |
767 | #endif | |
768 | ||
769 | /* read in header */ | |
712fbcf3 | 770 | debug(" Reading image header from dataflash address " |
fff888a1 | 771 | "%08lx to RAM address %08lx\n", img_addr, ram_addr); |
fff888a1 | 772 | |
35e7b0f1 SG |
773 | buf = map_sysmem(ram_addr, 0); |
774 | read_dataflash(img_addr, h_size, buf); | |
fff888a1 | 775 | |
6f0f9dfc | 776 | /* get data size */ |
35e7b0f1 | 777 | switch (genimg_get_format(buf)) { |
21d29f7f | 778 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
6f0f9dfc | 779 | case IMAGE_FORMAT_LEGACY: |
35e7b0f1 | 780 | d_size = image_get_data_size(buf); |
712fbcf3 SW |
781 | debug(" Legacy format image found at 0x%08lx, " |
782 | "size 0x%08lx\n", | |
6f0f9dfc MB |
783 | ram_addr, d_size); |
784 | break; | |
21d29f7f | 785 | #endif |
fff888a1 | 786 | #if defined(CONFIG_FIT) |
6f0f9dfc | 787 | case IMAGE_FORMAT_FIT: |
35e7b0f1 | 788 | d_size = fit_get_size(buf) - h_size; |
712fbcf3 SW |
789 | debug(" FIT/FDT format image found at 0x%08lx, " |
790 | "size 0x%08lx\n", | |
6f0f9dfc MB |
791 | ram_addr, d_size); |
792 | break; | |
fff888a1 | 793 | #endif |
6f0f9dfc | 794 | default: |
712fbcf3 SW |
795 | printf(" No valid image found at 0x%08lx\n", |
796 | img_addr); | |
6f0f9dfc MB |
797 | return ram_addr; |
798 | } | |
fff888a1 | 799 | |
6f0f9dfc | 800 | /* read in image data */ |
712fbcf3 | 801 | debug(" Reading image remaining data from dataflash address " |
fff888a1 MB |
802 | "%08lx to RAM address %08lx\n", img_addr + h_size, |
803 | ram_addr + h_size); | |
804 | ||
712fbcf3 | 805 | read_dataflash(img_addr + h_size, d_size, |
35e7b0f1 | 806 | (char *)(buf + h_size)); |
6f0f9dfc | 807 | |
fff888a1 | 808 | } |
6f0f9dfc | 809 | #endif /* CONFIG_HAS_DATAFLASH */ |
fff888a1 MB |
810 | |
811 | return ram_addr; | |
812 | } | |
813 | ||
f773bea8 MB |
814 | /** |
815 | * fit_has_config - check if there is a valid FIT configuration | |
816 | * @images: pointer to the bootm command headers structure | |
817 | * | |
818 | * fit_has_config() checks if there is a FIT configuration in use | |
819 | * (if FTI support is present). | |
820 | * | |
821 | * returns: | |
822 | * 0, no FIT support or no configuration found | |
823 | * 1, configuration found | |
824 | */ | |
712fbcf3 | 825 | int genimg_has_config(bootm_headers_t *images) |
f773bea8 MB |
826 | { |
827 | #if defined(CONFIG_FIT) | |
828 | if (images->fit_uname_cfg) | |
829 | return 1; | |
830 | #endif | |
831 | return 0; | |
832 | } | |
833 | ||
5ad03eb3 | 834 | /** |
9a4daad0 | 835 | * boot_get_ramdisk - main ramdisk handling routine |
5ad03eb3 MB |
836 | * @argc: command argument count |
837 | * @argv: command argument list | |
8a5ea3e6 | 838 | * @images: pointer to the bootm images structure |
5ad03eb3 MB |
839 | * @arch: expected ramdisk architecture |
840 | * @rd_start: pointer to a ulong variable, will hold ramdisk start address | |
841 | * @rd_end: pointer to a ulong variable, will hold ramdisk end | |
842 | * | |
9a4daad0 | 843 | * boot_get_ramdisk() is responsible for finding a valid ramdisk image. |
5ad03eb3 MB |
844 | * Curently supported are the following ramdisk sources: |
845 | * - multicomponent kernel/ramdisk image, | |
846 | * - commandline provided address of decicated ramdisk image. | |
847 | * | |
848 | * returns: | |
d985c849 | 849 | * 0, if ramdisk image was found and valid, or skiped |
5ad03eb3 MB |
850 | * rd_start and rd_end are set to ramdisk start/end addresses if |
851 | * ramdisk image is found and valid | |
d985c849 | 852 | * |
ea86b9e6 | 853 | * 1, if ramdisk image is found but corrupted, or invalid |
5ad03eb3 | 854 | * rd_start and rd_end are set to 0 if no ramdisk exists |
5ad03eb3 | 855 | */ |
712fbcf3 | 856 | int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, |
d985c849 | 857 | uint8_t arch, ulong *rd_start, ulong *rd_end) |
5ad03eb3 | 858 | { |
d5934ad7 | 859 | ulong rd_addr, rd_load; |
5ad03eb3 | 860 | ulong rd_data, rd_len; |
21d29f7f | 861 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
3a2003f6 | 862 | const image_header_t *rd_hdr; |
21d29f7f | 863 | #endif |
35e7b0f1 | 864 | void *buf; |
57d40ab7 | 865 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
017e1f3f | 866 | char *end; |
57d40ab7 | 867 | #endif |
d5934ad7 | 868 | #if defined(CONFIG_FIT) |
f320a4d8 | 869 | const char *fit_uname_config = images->fit_uname_cfg; |
d5934ad7 MB |
870 | const char *fit_uname_ramdisk = NULL; |
871 | ulong default_addr; | |
c8779648 | 872 | int rd_noffset; |
d5934ad7 | 873 | #endif |
983c72f4 | 874 | const char *select = NULL; |
5ad03eb3 | 875 | |
c8779648 MB |
876 | *rd_start = 0; |
877 | *rd_end = 0; | |
878 | ||
983c72f4 SG |
879 | if (argc >= 2) |
880 | select = argv[1]; | |
d5934ad7 MB |
881 | /* |
882 | * Look for a '-' which indicates to ignore the | |
883 | * ramdisk argument | |
884 | */ | |
983c72f4 | 885 | if (select && strcmp(select, "-") == 0) { |
712fbcf3 | 886 | debug("## Skipping init Ramdisk\n"); |
d5934ad7 | 887 | rd_len = rd_data = 0; |
983c72f4 | 888 | } else if (select || genimg_has_config(images)) { |
d5934ad7 | 889 | #if defined(CONFIG_FIT) |
983c72f4 | 890 | if (select) { |
f773bea8 MB |
891 | /* |
892 | * If the init ramdisk comes from the FIT image and | |
893 | * the FIT image address is omitted in the command | |
894 | * line argument, try to use os FIT image address or | |
895 | * default load address. | |
896 | */ | |
897 | if (images->fit_uname_os) | |
898 | default_addr = (ulong)images->fit_hdr_os; | |
899 | else | |
900 | default_addr = load_addr; | |
901 | ||
983c72f4 SG |
902 | if (fit_parse_conf(select, default_addr, |
903 | &rd_addr, &fit_uname_config)) { | |
712fbcf3 SW |
904 | debug("* ramdisk: config '%s' from image at " |
905 | "0x%08lx\n", | |
f773bea8 | 906 | fit_uname_config, rd_addr); |
983c72f4 | 907 | } else if (fit_parse_subimage(select, default_addr, |
f773bea8 | 908 | &rd_addr, &fit_uname_ramdisk)) { |
712fbcf3 SW |
909 | debug("* ramdisk: subimage '%s' from image at " |
910 | "0x%08lx\n", | |
f773bea8 MB |
911 | fit_uname_ramdisk, rd_addr); |
912 | } else | |
d5934ad7 | 913 | #endif |
f773bea8 | 914 | { |
983c72f4 | 915 | rd_addr = simple_strtoul(select, NULL, 16); |
712fbcf3 SW |
916 | debug("* ramdisk: cmdline image address = " |
917 | "0x%08lx\n", | |
f773bea8 MB |
918 | rd_addr); |
919 | } | |
920 | #if defined(CONFIG_FIT) | |
921 | } else { | |
922 | /* use FIT configuration provided in first bootm | |
a51ec63b SG |
923 | * command argument. If the property is not defined, |
924 | * quit silently. | |
f773bea8 | 925 | */ |
35e7b0f1 | 926 | rd_addr = map_to_sysmem(images->fit_hdr_os); |
a51ec63b SG |
927 | rd_noffset = fit_get_node_from_config(images, |
928 | FIT_RAMDISK_PROP, rd_addr); | |
929 | if (rd_noffset == -ENOLINK) | |
41266c9b | 930 | return 0; |
a51ec63b SG |
931 | else if (rd_noffset < 0) |
932 | return 1; | |
d5934ad7 | 933 | } |
f773bea8 | 934 | #endif |
d5934ad7 MB |
935 | |
936 | /* copy from dataflash if needed */ | |
712fbcf3 | 937 | rd_addr = genimg_get_image(rd_addr); |
d5934ad7 MB |
938 | |
939 | /* | |
940 | * Check if there is an initrd image at the | |
941 | * address provided in the second bootm argument | |
942 | * check image type, for FIT images get FIT node. | |
943 | */ | |
35e7b0f1 SG |
944 | buf = map_sysmem(rd_addr, 0); |
945 | switch (genimg_get_format(buf)) { | |
21d29f7f | 946 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
d5934ad7 | 947 | case IMAGE_FORMAT_LEGACY: |
712fbcf3 | 948 | printf("## Loading init Ramdisk from Legacy " |
c8779648 | 949 | "Image at %08lx ...\n", rd_addr); |
5ad03eb3 | 950 | |
770605e4 | 951 | bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK); |
712fbcf3 | 952 | rd_hdr = image_get_ramdisk(rd_addr, arch, |
d985c849 | 953 | images->verify); |
5ad03eb3 | 954 | |
c8779648 | 955 | if (rd_hdr == NULL) |
274cea2b | 956 | return 1; |
274cea2b | 957 | |
712fbcf3 SW |
958 | rd_data = image_get_data(rd_hdr); |
959 | rd_len = image_get_data_size(rd_hdr); | |
960 | rd_load = image_get_load(rd_hdr); | |
d5934ad7 | 961 | break; |
21d29f7f | 962 | #endif |
d5934ad7 MB |
963 | #if defined(CONFIG_FIT) |
964 | case IMAGE_FORMAT_FIT: | |
126cc864 | 965 | rd_noffset = fit_image_load(images, |
a51ec63b | 966 | rd_addr, &fit_uname_ramdisk, |
f320a4d8 | 967 | &fit_uname_config, arch, |
a51ec63b SG |
968 | IH_TYPE_RAMDISK, |
969 | BOOTSTAGE_ID_FIT_RD_START, | |
fe20a81a SG |
970 | FIT_LOAD_OPTIONAL_NON_ZERO, |
971 | &rd_data, &rd_len); | |
a51ec63b | 972 | if (rd_noffset < 0) |
c78fce69 | 973 | return 1; |
c8779648 | 974 | |
a51ec63b | 975 | images->fit_hdr_rd = map_sysmem(rd_addr, 0); |
c8779648 | 976 | images->fit_uname_rd = fit_uname_ramdisk; |
3dfe1101 | 977 | images->fit_noffset_rd = rd_noffset; |
c8779648 | 978 | break; |
d5934ad7 MB |
979 | #endif |
980 | default: | |
017e1f3f | 981 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
983c72f4 SG |
982 | end = NULL; |
983 | if (select) | |
984 | end = strchr(select, ':'); | |
985 | if (end) { | |
017e1f3f MV |
986 | rd_len = simple_strtoul(++end, NULL, 16); |
987 | rd_data = rd_addr; | |
988 | } else | |
989 | #endif | |
990 | { | |
991 | puts("Wrong Ramdisk Image Format\n"); | |
992 | rd_data = rd_len = rd_load = 0; | |
993 | return 1; | |
994 | } | |
d5934ad7 | 995 | } |
d5934ad7 | 996 | } else if (images->legacy_hdr_valid && |
712fbcf3 SW |
997 | image_check_type(&images->legacy_hdr_os_copy, |
998 | IH_TYPE_MULTI)) { | |
999 | ||
5ad03eb3 | 1000 | /* |
d5934ad7 MB |
1001 | * Now check if we have a legacy mult-component image, |
1002 | * get second entry data start address and len. | |
5ad03eb3 | 1003 | */ |
770605e4 | 1004 | bootstage_mark(BOOTSTAGE_ID_RAMDISK); |
712fbcf3 | 1005 | printf("## Loading init Ramdisk from multi component " |
c8779648 | 1006 | "Legacy Image at %08lx ...\n", |
d5934ad7 MB |
1007 | (ulong)images->legacy_hdr_os); |
1008 | ||
712fbcf3 | 1009 | image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len); |
9ace3fc8 SS |
1010 | } |
1011 | #ifdef CONFIG_ANDROID_BOOT_IMAGE | |
1012 | else if ((genimg_get_format(images) == IMAGE_FORMAT_ANDROID) && | |
1013 | (!android_image_get_ramdisk((void *)images->os.start, | |
1014 | &rd_data, &rd_len))) { | |
1015 | /* empty */ | |
1016 | } | |
1017 | #endif | |
1018 | else { | |
5ad03eb3 MB |
1019 | /* |
1020 | * no initrd image | |
1021 | */ | |
770605e4 | 1022 | bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK); |
5ad03eb3 MB |
1023 | rd_len = rd_data = 0; |
1024 | } | |
1025 | ||
1026 | if (!rd_data) { | |
712fbcf3 | 1027 | debug("## No init Ramdisk\n"); |
5ad03eb3 MB |
1028 | } else { |
1029 | *rd_start = rd_data; | |
1030 | *rd_end = rd_data + rd_len; | |
1031 | } | |
712fbcf3 | 1032 | debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n", |
5ad03eb3 | 1033 | *rd_start, *rd_end); |
274cea2b KG |
1034 | |
1035 | return 0; | |
5ad03eb3 | 1036 | } |
ceaed2b1 | 1037 | |
fca43cc8 | 1038 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
ceaed2b1 | 1039 | /** |
9a4daad0 | 1040 | * boot_ramdisk_high - relocate init ramdisk |
e822d7fc | 1041 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
ceaed2b1 MB |
1042 | * @rd_data: ramdisk data start address |
1043 | * @rd_len: ramdisk data length | |
ceaed2b1 MB |
1044 | * @initrd_start: pointer to a ulong variable, will hold final init ramdisk |
1045 | * start address (after possible relocation) | |
1046 | * @initrd_end: pointer to a ulong variable, will hold final init ramdisk | |
1047 | * end address (after possible relocation) | |
1048 | * | |
1bce2aeb | 1049 | * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment |
ceaed2b1 MB |
1050 | * variable and if requested ramdisk data is moved to a specified location. |
1051 | * | |
9a4daad0 MB |
1052 | * Initrd_start and initrd_end are set to final (after relocation) ramdisk |
1053 | * start/end addresses if ramdisk image start and len were provided, | |
1054 | * otherwise set initrd_start and initrd_end set to zeros. | |
1055 | * | |
ceaed2b1 | 1056 | * returns: |
9a4daad0 MB |
1057 | * 0 - success |
1058 | * -1 - failure | |
ceaed2b1 | 1059 | */ |
712fbcf3 | 1060 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
e822d7fc | 1061 | ulong *initrd_start, ulong *initrd_end) |
ceaed2b1 MB |
1062 | { |
1063 | char *s; | |
1064 | ulong initrd_high; | |
1065 | int initrd_copy_to_ram = 1; | |
1066 | ||
712fbcf3 | 1067 | if ((s = getenv("initrd_high")) != NULL) { |
ceaed2b1 MB |
1068 | /* a value of "no" or a similar string will act like 0, |
1069 | * turning the "load high" feature off. This is intentional. | |
1070 | */ | |
712fbcf3 | 1071 | initrd_high = simple_strtoul(s, NULL, 16); |
ceaed2b1 MB |
1072 | if (initrd_high == ~0) |
1073 | initrd_copy_to_ram = 0; | |
1074 | } else { | |
1075 | /* not set, no restrictions to load high */ | |
1076 | initrd_high = ~0; | |
1077 | } | |
1078 | ||
95d449ad MB |
1079 | |
1080 | #ifdef CONFIG_LOGBUFFER | |
1081 | /* Prevent initrd from overwriting logbuffer */ | |
1082 | lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE); | |
1083 | #endif | |
1084 | ||
712fbcf3 | 1085 | debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", |
ceaed2b1 MB |
1086 | initrd_high, initrd_copy_to_ram); |
1087 | ||
1088 | if (rd_data) { | |
1089 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ | |
712fbcf3 | 1090 | debug(" in-place initrd\n"); |
ceaed2b1 MB |
1091 | *initrd_start = rd_data; |
1092 | *initrd_end = rd_data + rd_len; | |
e822d7fc | 1093 | lmb_reserve(lmb, rd_data, rd_len); |
ceaed2b1 | 1094 | } else { |
e822d7fc | 1095 | if (initrd_high) |
712fbcf3 SW |
1096 | *initrd_start = (ulong)lmb_alloc_base(lmb, |
1097 | rd_len, 0x1000, initrd_high); | |
e822d7fc | 1098 | else |
712fbcf3 SW |
1099 | *initrd_start = (ulong)lmb_alloc(lmb, rd_len, |
1100 | 0x1000); | |
e822d7fc KG |
1101 | |
1102 | if (*initrd_start == 0) { | |
712fbcf3 | 1103 | puts("ramdisk - allocation error\n"); |
e822d7fc | 1104 | goto error; |
ceaed2b1 | 1105 | } |
770605e4 | 1106 | bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK); |
ceaed2b1 MB |
1107 | |
1108 | *initrd_end = *initrd_start + rd_len; | |
712fbcf3 | 1109 | printf(" Loading Ramdisk to %08lx, end %08lx ... ", |
ceaed2b1 MB |
1110 | *initrd_start, *initrd_end); |
1111 | ||
712fbcf3 | 1112 | memmove_wd((void *)*initrd_start, |
ceaed2b1 MB |
1113 | (void *)rd_data, rd_len, CHUNKSZ); |
1114 | ||
3b200110 KG |
1115 | #ifdef CONFIG_MP |
1116 | /* | |
1117 | * Ensure the image is flushed to memory to handle | |
1118 | * AMP boot scenarios in which we might not be | |
1119 | * HW cache coherent | |
1120 | */ | |
1121 | flush_cache((unsigned long)*initrd_start, rd_len); | |
1122 | #endif | |
712fbcf3 | 1123 | puts("OK\n"); |
ceaed2b1 MB |
1124 | } |
1125 | } else { | |
1126 | *initrd_start = 0; | |
1127 | *initrd_end = 0; | |
1128 | } | |
712fbcf3 | 1129 | debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n", |
ceaed2b1 | 1130 | *initrd_start, *initrd_end); |
9a4daad0 | 1131 | |
e822d7fc | 1132 | return 0; |
b6b0fe64 | 1133 | |
e822d7fc KG |
1134 | error: |
1135 | return -1; | |
b6b0fe64 | 1136 | } |
fca43cc8 | 1137 | #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */ |
b6b0fe64 | 1138 | |
fca43cc8 | 1139 | #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
b6b0fe64 | 1140 | /** |
9a4daad0 | 1141 | * boot_get_cmdline - allocate and initialize kernel cmdline |
e822d7fc | 1142 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
b6b0fe64 MB |
1143 | * @cmd_start: pointer to a ulong variable, will hold cmdline start |
1144 | * @cmd_end: pointer to a ulong variable, will hold cmdline end | |
1145 | * | |
9a4daad0 | 1146 | * boot_get_cmdline() allocates space for kernel command line below |
590d3cac | 1147 | * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt |
b6b0fe64 MB |
1148 | * variable is present its contents is copied to allocated kernel |
1149 | * command line. | |
1150 | * | |
1151 | * returns: | |
e822d7fc KG |
1152 | * 0 - success |
1153 | * -1 - failure | |
b6b0fe64 | 1154 | */ |
712fbcf3 | 1155 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end) |
b6b0fe64 MB |
1156 | { |
1157 | char *cmdline; | |
1158 | char *s; | |
1159 | ||
6d0f6bcf | 1160 | cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf, |
c3624e6e | 1161 | getenv_bootm_mapsize() + getenv_bootm_low()); |
e822d7fc KG |
1162 | |
1163 | if (cmdline == NULL) | |
1164 | return -1; | |
b6b0fe64 MB |
1165 | |
1166 | if ((s = getenv("bootargs")) == NULL) | |
1167 | s = ""; | |
1168 | ||
1169 | strcpy(cmdline, s); | |
1170 | ||
1171 | *cmd_start = (ulong) & cmdline[0]; | |
1172 | *cmd_end = *cmd_start + strlen(cmdline); | |
1173 | ||
712fbcf3 | 1174 | debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end); |
b6b0fe64 | 1175 | |
e822d7fc | 1176 | return 0; |
b6b0fe64 | 1177 | } |
fca43cc8 | 1178 | #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */ |
b6b0fe64 | 1179 | |
fca43cc8 | 1180 | #ifdef CONFIG_SYS_BOOT_GET_KBD |
b6b0fe64 | 1181 | /** |
9a4daad0 | 1182 | * boot_get_kbd - allocate and initialize kernel copy of board info |
e822d7fc | 1183 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
b6b0fe64 MB |
1184 | * @kbd: double pointer to board info data |
1185 | * | |
9a4daad0 | 1186 | * boot_get_kbd() allocates space for kernel copy of board info data below |
590d3cac GL |
1187 | * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized |
1188 | * with the current u-boot board info data. | |
b6b0fe64 MB |
1189 | * |
1190 | * returns: | |
e822d7fc KG |
1191 | * 0 - success |
1192 | * -1 - failure | |
b6b0fe64 | 1193 | */ |
712fbcf3 | 1194 | int boot_get_kbd(struct lmb *lmb, bd_t **kbd) |
b6b0fe64 | 1195 | { |
391fd93a | 1196 | *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, |
c3624e6e | 1197 | getenv_bootm_mapsize() + getenv_bootm_low()); |
e822d7fc KG |
1198 | if (*kbd == NULL) |
1199 | return -1; | |
1200 | ||
b6b0fe64 MB |
1201 | **kbd = *(gd->bd); |
1202 | ||
712fbcf3 | 1203 | debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); |
b6b0fe64 MB |
1204 | |
1205 | #if defined(DEBUG) && defined(CONFIG_CMD_BDI) | |
1206 | do_bdinfo(NULL, 0, 0, NULL); | |
1207 | #endif | |
1208 | ||
e822d7fc | 1209 | return 0; |
ceaed2b1 | 1210 | } |
fca43cc8 | 1211 | #endif /* CONFIG_SYS_BOOT_GET_KBD */ |
13d06981 SG |
1212 | |
1213 | #ifdef CONFIG_LMB | |
1214 | int image_setup_linux(bootm_headers_t *images) | |
1215 | { | |
1216 | ulong of_size = images->ft_len; | |
1217 | char **of_flat_tree = &images->ft_addr; | |
1218 | ulong *initrd_start = &images->initrd_start; | |
1219 | ulong *initrd_end = &images->initrd_end; | |
1220 | struct lmb *lmb = &images->lmb; | |
1221 | ulong rd_len; | |
1222 | int ret; | |
1223 | ||
1224 | if (IMAGE_ENABLE_OF_LIBFDT) | |
1225 | boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree); | |
1226 | ||
1227 | if (IMAGE_BOOT_GET_CMDLINE) { | |
1228 | ret = boot_get_cmdline(lmb, &images->cmdline_start, | |
1229 | &images->cmdline_end); | |
1230 | if (ret) { | |
1231 | puts("ERROR with allocation of cmdline\n"); | |
1232 | return ret; | |
1233 | } | |
1234 | } | |
1235 | if (IMAGE_ENABLE_RAMDISK_HIGH) { | |
1236 | rd_len = images->rd_end - images->rd_start; | |
1237 | ret = boot_ramdisk_high(lmb, images->rd_start, rd_len, | |
1238 | initrd_start, initrd_end); | |
1239 | if (ret) | |
1240 | return ret; | |
1241 | } | |
1242 | ||
1243 | if (IMAGE_ENABLE_OF_LIBFDT) { | |
1244 | ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size); | |
1245 | if (ret) | |
1246 | return ret; | |
1247 | } | |
1248 | ||
1249 | if (IMAGE_ENABLE_OF_LIBFDT && of_size) { | |
1250 | ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb); | |
1251 | if (ret) | |
1252 | return ret; | |
1253 | } | |
1254 | ||
1255 | return 0; | |
1256 | } | |
1257 | #endif /* CONFIG_LMB */ | |
5dfb5213 | 1258 | #endif /* !USE_HOSTCC */ |