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