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