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