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