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