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