]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/image.c
fpga: Fix typo in function comment
[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>
c8779648
MB
35#endif
36
20a14a42 37#include <u-boot/md5.h>
2b9912e6 38#include <u-boot/sha1.h>
a51ec63b 39#include <asm/errno.h>
35e7b0f1 40#include <asm/io.h>
c8779648 41
b6b0fe64 42#ifdef CONFIG_CMD_BDI
54841ab5 43extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
b6b0fe64
MB
44#endif
45
46DECLARE_GLOBAL_DATA_PTR;
8a5ea3e6 47
21d29f7f 48#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
712fbcf3 49static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
d985c849 50 int verify);
21d29f7f 51#endif
b97a2a0a 52#else
5ad03eb3 53#include "mkimage.h"
20a14a42 54#include <u-boot/md5.h>
5dfb5213 55#include <time.h>
b97a2a0a 56#include <image.h>
80402f34
HS
57
58#ifndef __maybe_unused
59# define __maybe_unused /* unimplemented */
60#endif
5dfb5213 61#endif /* !USE_HOSTCC*/
b97a2a0a 62
0ccff500
SG
63#include <u-boot/crc.h>
64
13d06981
SG
65#ifndef CONFIG_SYS_BARGSIZE
66#define CONFIG_SYS_BARGSIZE 512
67#endif
68
7edb186f 69static const table_entry_t uimage_arch[] = {
570abb0a
MB
70 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
71 { IH_ARCH_ALPHA, "alpha", "Alpha", },
72 { IH_ARCH_ARM, "arm", "ARM", },
73 { IH_ARCH_I386, "x86", "Intel x86", },
74 { IH_ARCH_IA64, "ia64", "IA64", },
75 { IH_ARCH_M68K, "m68k", "M68K", },
76 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
77 { IH_ARCH_MIPS, "mips", "MIPS", },
78 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
570abb0a 79 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
e419e12d 80 { IH_ARCH_PPC, "powerpc", "PowerPC", },
570abb0a
MB
81 { IH_ARCH_PPC, "ppc", "PowerPC", },
82 { IH_ARCH_S390, "s390", "IBM S390", },
83 { IH_ARCH_SH, "sh", "SuperH", },
84 { IH_ARCH_SPARC, "sparc", "SPARC", },
85 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
86 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
87 { IH_ARCH_AVR32, "avr32", "AVR32", },
64d61461 88 { IH_ARCH_NDS32, "nds32", "NDS32", },
3ddcaccd 89 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
35e7b0f1 90 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
0ae76531 91 { IH_ARCH_ARM64, "arm64", "AArch64", },
bc5d5428 92 { IH_ARCH_ARC, "arc", "ARC", },
5bda35cf 93 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
570abb0a
MB
94 { -1, "", "", },
95};
96
7edb186f 97static const table_entry_t uimage_os[] = {
570abb0a 98 { IH_OS_INVALID, NULL, "Invalid OS", },
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",},
145 { IH_TYPE_INVALID, NULL, "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" },
66eef1e7 161 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
d9b58b30 162 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
570abb0a
MB
163 { -1, "", "", },
164};
165
7edb186f 166static const table_entry_t uimage_comp[] = {
570abb0a
MB
167 { IH_COMP_NONE, "none", "uncompressed", },
168 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
169 { IH_COMP_GZIP, "gzip", "gzip compressed", },
fc9c1727 170 { IH_COMP_LZMA, "lzma", "lzma compressed", },
20dde48b 171 { IH_COMP_LZO, "lzo", "lzo compressed", },
027b728d 172 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
570abb0a
MB
173 { -1, "", "", },
174};
175
9a4daad0
MB
176/*****************************************************************************/
177/* Legacy format routines */
178/*****************************************************************************/
712fbcf3 179int image_check_hcrc(const image_header_t *hdr)
b97a2a0a
MB
180{
181 ulong hcrc;
712fbcf3 182 ulong len = image_get_header_size();
b97a2a0a
MB
183 image_header_t header;
184
185 /* Copy header so we can blank CRC field for re-calculation */
712fbcf3
SW
186 memmove(&header, (char *)hdr, image_get_header_size());
187 image_set_hcrc(&header, 0);
b97a2a0a 188
712fbcf3 189 hcrc = crc32(0, (unsigned char *)&header, len);
b97a2a0a 190
712fbcf3 191 return (hcrc == image_get_hcrc(hdr));
b97a2a0a
MB
192}
193
712fbcf3 194int image_check_dcrc(const image_header_t *hdr)
b97a2a0a 195{
712fbcf3
SW
196 ulong data = image_get_data(hdr);
197 ulong len = image_get_data_size(hdr);
198 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
b97a2a0a 199
712fbcf3 200 return (dcrc == image_get_dcrc(hdr));
b97a2a0a
MB
201}
202
f13e7b2e
MB
203/**
204 * image_multi_count - get component (sub-image) count
205 * @hdr: pointer to the header of the multi component image
206 *
207 * image_multi_count() returns number of components in a multi
208 * component image.
209 *
210 * Note: no checking of the image type is done, caller must pass
211 * a valid multi component image.
212 *
213 * returns:
214 * number of components
215 */
712fbcf3 216ulong image_multi_count(const image_header_t *hdr)
f13e7b2e
MB
217{
218 ulong i, count = 0;
df6f1b89 219 uint32_t *size;
f13e7b2e
MB
220
221 /* get start of the image payload, which in case of multi
222 * component images that points to a table of component sizes */
712fbcf3 223 size = (uint32_t *)image_get_data(hdr);
f13e7b2e
MB
224
225 /* count non empty slots */
226 for (i = 0; size[i]; ++i)
227 count++;
228
229 return count;
230}
231
232/**
233 * image_multi_getimg - get component data address and size
234 * @hdr: pointer to the header of the multi component image
235 * @idx: index of the requested component
236 * @data: pointer to a ulong variable, will hold component data address
237 * @len: pointer to a ulong variable, will hold component size
238 *
239 * image_multi_getimg() returns size and data address for the requested
240 * component in a multi component image.
241 *
242 * Note: no checking of the image type is done, caller must pass
243 * a valid multi component image.
244 *
245 * returns:
246 * data address and size of the component, if idx is valid
247 * 0 in data and len, if idx is out of range
248 */
712fbcf3 249void image_multi_getimg(const image_header_t *hdr, ulong idx,
f13e7b2e
MB
250 ulong *data, ulong *len)
251{
252 int i;
df6f1b89 253 uint32_t *size;
02b9b224 254 ulong offset, count, img_data;
f13e7b2e
MB
255
256 /* get number of component */
712fbcf3 257 count = image_multi_count(hdr);
f13e7b2e
MB
258
259 /* get start of the image payload, which in case of multi
260 * component images that points to a table of component sizes */
712fbcf3 261 size = (uint32_t *)image_get_data(hdr);
f13e7b2e
MB
262
263 /* get address of the proper component data start, which means
264 * skipping sizes table (add 1 for last, null entry) */
712fbcf3 265 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
f13e7b2e
MB
266
267 if (idx < count) {
712fbcf3 268 *len = uimage_to_cpu(size[idx]);
f13e7b2e 269 offset = 0;
f13e7b2e
MB
270
271 /* go over all indices preceding requested component idx */
272 for (i = 0; i < idx; i++) {
02b9b224 273 /* add up i-th component size, rounding up to 4 bytes */
712fbcf3 274 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
f13e7b2e
MB
275 }
276
277 /* calculate idx-th component data address */
02b9b224 278 *data = img_data + offset;
f13e7b2e
MB
279 } else {
280 *len = 0;
281 *data = 0;
282 }
283}
42b73e8e 284
712fbcf3 285static void image_print_type(const image_header_t *hdr)
9a4daad0 286{
80402f34 287 const char __maybe_unused *os, *arch, *type, *comp;
9a4daad0 288
712fbcf3
SW
289 os = genimg_get_os_name(image_get_os(hdr));
290 arch = genimg_get_arch_name(image_get_arch(hdr));
291 type = genimg_get_type_name(image_get_type(hdr));
292 comp = genimg_get_comp_name(image_get_comp(hdr));
9a4daad0 293
712fbcf3 294 printf("%s %s %s (%s)\n", arch, os, type, comp);
9a4daad0
MB
295}
296
5dfb5213 297/**
edbed247 298 * image_print_contents - prints out the contents of the legacy format image
3a2003f6 299 * @ptr: pointer to the legacy format image header
5dfb5213
MB
300 * @p: pointer to prefix string
301 *
edbed247 302 * image_print_contents() formats a multi line legacy image contents description.
5dfb5213
MB
303 * The routine prints out all header fields followed by the size/offset data
304 * for MULTI/SCRIPT images.
305 *
306 * returns:
307 * no returned results
308 */
712fbcf3 309void image_print_contents(const void *ptr)
9a4daad0 310{
3a2003f6 311 const image_header_t *hdr = (const image_header_t *)ptr;
80402f34 312 const char __maybe_unused *p;
edbed247 313
1fe7d938 314 p = IMAGE_INDENT_STRING;
712fbcf3 315 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
859e92b7
SG
316 if (IMAGE_ENABLE_TIMESTAMP) {
317 printf("%sCreated: ", p);
318 genimg_print_time((time_t)image_get_time(hdr));
319 }
712fbcf3
SW
320 printf("%sImage Type: ", p);
321 image_print_type(hdr);
322 printf("%sData Size: ", p);
323 genimg_print_size(image_get_data_size(hdr));
324 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
325 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
326
327 if (image_check_type(hdr, IH_TYPE_MULTI) ||
328 image_check_type(hdr, IH_TYPE_SCRIPT)) {
9a4daad0
MB
329 int i;
330 ulong data, len;
712fbcf3 331 ulong count = image_multi_count(hdr);
9a4daad0 332
712fbcf3 333 printf("%sContents:\n", p);
9a4daad0 334 for (i = 0; i < count; i++) {
712fbcf3 335 image_multi_getimg(hdr, i, &data, &len);
570abb0a 336
712fbcf3
SW
337 printf("%s Image %d: ", p, i);
338 genimg_print_size(len);
570abb0a 339
712fbcf3 340 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
570abb0a
MB
341 /*
342 * the user may need to know offsets
343 * if planning to do something with
344 * multiple files
345 */
712fbcf3 346 printf("%s Offset = 0x%08lx\n", p, data);
570abb0a 347 }
9a4daad0
MB
348 }
349 }
350}
351
570abb0a
MB
352
353#ifndef USE_HOSTCC
21d29f7f 354#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
9a4daad0
MB
355/**
356 * image_get_ramdisk - get and verify ramdisk image
9a4daad0
MB
357 * @rd_addr: ramdisk image start address
358 * @arch: expected ramdisk architecture
359 * @verify: checksum verification flag
360 *
361 * image_get_ramdisk() returns a pointer to the verified ramdisk image
362 * header. Routine receives image start address and expected architecture
363 * flag. Verification done covers data and header integrity and os/type/arch
364 * fields checking.
365 *
366 * If dataflash support is enabled routine checks for dataflash addresses
367 * and handles required dataflash reads.
368 *
369 * returns:
370 * pointer to a ramdisk image header, if image was found and valid
371 * otherwise, return NULL
372 */
712fbcf3 373static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
d985c849 374 int verify)
9a4daad0 375{
3a2003f6 376 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
9a4daad0 377
712fbcf3
SW
378 if (!image_check_magic(rd_hdr)) {
379 puts("Bad Magic Number\n");
770605e4 380 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
9a4daad0
MB
381 return NULL;
382 }
383
712fbcf3
SW
384 if (!image_check_hcrc(rd_hdr)) {
385 puts("Bad Header Checksum\n");
770605e4 386 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
9a4daad0
MB
387 return NULL;
388 }
389
770605e4 390 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
712fbcf3 391 image_print_contents(rd_hdr);
9a4daad0
MB
392
393 if (verify) {
394 puts(" Verifying Checksum ... ");
712fbcf3
SW
395 if (!image_check_dcrc(rd_hdr)) {
396 puts("Bad Data CRC\n");
770605e4 397 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
9a4daad0
MB
398 return NULL;
399 }
400 puts("OK\n");
401 }
402
770605e4 403 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
9a4daad0 404
712fbcf3
SW
405 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
406 !image_check_arch(rd_hdr, arch) ||
407 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
408 printf("No Linux %s Ramdisk Image\n",
9a4daad0 409 genimg_get_arch_name(arch));
770605e4 410 bootstage_error(BOOTSTAGE_ID_RAMDISK);
9a4daad0
MB
411 return NULL;
412 }
413
414 return rd_hdr;
415}
21d29f7f 416#endif
570abb0a 417#endif /* !USE_HOSTCC */
9a4daad0
MB
418
419/*****************************************************************************/
420/* Shared dual-format routines */
421/*****************************************************************************/
570abb0a 422#ifndef USE_HOSTCC
1cf0a8b2
JH
423ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
424ulong save_addr; /* Default Save Address */
425ulong save_size; /* Default Save Size (in bytes) */
426
427static int on_loadaddr(const char *name, const char *value, enum env_op op,
428 int flags)
429{
430 switch (op) {
431 case env_op_create:
432 case env_op_overwrite:
433 load_addr = simple_strtoul(value, NULL, 16);
434 break;
435 default:
436 break;
437 }
438
439 return 0;
440}
441U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
442
9a4daad0
MB
443ulong getenv_bootm_low(void)
444{
712fbcf3 445 char *s = getenv("bootm_low");
9a4daad0 446 if (s) {
712fbcf3 447 ulong tmp = simple_strtoul(s, NULL, 16);
9a4daad0
MB
448 return tmp;
449 }
450
6d0f6bcf
JCPV
451#if defined(CONFIG_SYS_SDRAM_BASE)
452 return CONFIG_SYS_SDRAM_BASE;
afe45c87
MB
453#elif defined(CONFIG_ARM)
454 return gd->bd->bi_dram[0].start;
9a4daad0
MB
455#else
456 return 0;
457#endif
458}
459
391fd93a 460phys_size_t getenv_bootm_size(void)
9a4daad0 461{
0cb389dd
MY
462 phys_size_t tmp, size;
463 phys_addr_t start;
712fbcf3 464 char *s = getenv("bootm_size");
9a4daad0 465 if (s) {
712fbcf3 466 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
9a4daad0
MB
467 return tmp;
468 }
0cb389dd
MY
469
470#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
471 start = gd->bd->bi_dram[0].start;
472 size = gd->bd->bi_dram[0].size;
473#else
474 start = gd->bd->bi_memstart;
475 size = gd->bd->bi_memsize;
476#endif
477
c519facc
MM
478 s = getenv("bootm_low");
479 if (s)
712fbcf3 480 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
c519facc 481 else
0cb389dd 482 tmp = start;
9a4daad0 483
0cb389dd 484 return size - (tmp - start);
9a4daad0
MB
485}
486
c3624e6e
GL
487phys_size_t getenv_bootm_mapsize(void)
488{
489 phys_size_t tmp;
712fbcf3 490 char *s = getenv("bootm_mapsize");
c3624e6e 491 if (s) {
712fbcf3 492 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
c3624e6e
GL
493 return tmp;
494 }
495
496#if defined(CONFIG_SYS_BOOTMAPSZ)
497 return CONFIG_SYS_BOOTMAPSZ;
498#else
499 return getenv_bootm_size();
500#endif
501}
502
712fbcf3 503void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
9a4daad0 504{
54fa2c5b
LJ
505 if (to == from)
506 return;
507
9a4daad0 508#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
22cfddc2
SZ
509 if (to > from) {
510 from += len;
511 to += len;
512 }
9a4daad0
MB
513 while (len > 0) {
514 size_t tail = (len > chunksz) ? chunksz : len;
712fbcf3 515 WATCHDOG_RESET();
22cfddc2
SZ
516 if (to > from) {
517 to -= tail;
518 from -= tail;
519 }
712fbcf3 520 memmove(to, from, tail);
22cfddc2
SZ
521 if (to < from) {
522 to += tail;
523 from += tail;
524 }
9a4daad0
MB
525 len -= tail;
526 }
527#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
712fbcf3 528 memmove(to, from, len);
9a4daad0
MB
529#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
530}
570abb0a 531#endif /* !USE_HOSTCC */
9a4daad0 532
712fbcf3 533void genimg_print_size(uint32_t size)
42b73e8e 534{
570abb0a 535#ifndef USE_HOSTCC
712fbcf3
SW
536 printf("%d Bytes = ", size);
537 print_size(size, "\n");
570abb0a 538#else
712fbcf3 539 printf("%d Bytes = %.2f kB = %.2f MB\n",
570abb0a
MB
540 size, (double)size / 1.024e3,
541 (double)size / 1.048576e6);
42b73e8e 542#endif
570abb0a
MB
543}
544
859e92b7
SG
545#if IMAGE_ENABLE_TIMESTAMP
546void genimg_print_time(time_t timestamp)
570abb0a
MB
547{
548#ifndef USE_HOSTCC
549 struct rtc_time tm;
550
9f9276c3 551 rtc_to_tm(timestamp, &tm);
712fbcf3 552 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
570abb0a
MB
553 tm.tm_year, tm.tm_mon, tm.tm_mday,
554 tm.tm_hour, tm.tm_min, tm.tm_sec);
555#else
712fbcf3 556 printf("%s", ctime(&timestamp));
42b73e8e 557#endif
570abb0a 558}
859e92b7 559#endif
42b73e8e 560
5b9d44df
SG
561const table_entry_t *get_table_entry(const table_entry_t *table, int id)
562{
563 for (; table->id >= 0; ++table) {
564 if (table->id == id)
565 return table;
566 }
567 return NULL;
568}
569
570abb0a
MB
570/**
571 * get_table_entry_name - translate entry id to long name
572 * @table: pointer to a translation table for entries of a specific type
573 * @msg: message to be returned when translation fails
574 * @id: entry id to be translated
575 *
576 * get_table_entry_name() will go over translation table trying to find
577 * entry that matches given id. If matching entry is found, its long
578 * name is returned to the caller.
579 *
580 * returns:
581 * long entry name if translation succeeds
582 * msg otherwise
583 */
7edb186f 584char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
570abb0a 585{
5b9d44df
SG
586 table = get_table_entry(table, id);
587 if (!table)
588 return msg;
2e5167cc 589#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
5b9d44df 590 return table->lname;
e3d1ac7b 591#else
5b9d44df 592 return table->lname + gd->reloc_off;
e3d1ac7b 593#endif
570abb0a 594}
42b73e8e 595
712fbcf3 596const char *genimg_get_os_name(uint8_t os)
570abb0a 597{
712fbcf3 598 return (get_table_entry_name(uimage_os, "Unknown OS", os));
42b73e8e
MB
599}
600
712fbcf3 601const char *genimg_get_arch_name(uint8_t arch)
42b73e8e 602{
712fbcf3
SW
603 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
604 arch));
570abb0a 605}
42b73e8e 606
712fbcf3 607const char *genimg_get_type_name(uint8_t type)
570abb0a 608{
712fbcf3 609 return (get_table_entry_name(uimage_type, "Unknown Image", type));
570abb0a 610}
42b73e8e 611
cef2e514 612static const char *genimg_get_short_name(const table_entry_t *table, int val)
5b9d44df 613{
cef2e514 614 table = get_table_entry(table, val);
5b9d44df
SG
615 if (!table)
616 return "unknown";
617#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
618 return table->sname;
619#else
620 return table->sname + gd->reloc_off;
621#endif
622}
623
cef2e514
SG
624const char *genimg_get_type_short_name(uint8_t type)
625{
626 return genimg_get_short_name(uimage_type, type);
627}
628
712fbcf3 629const char *genimg_get_comp_name(uint8_t comp)
570abb0a 630{
712fbcf3
SW
631 return (get_table_entry_name(uimage_comp, "Unknown Compression",
632 comp));
42b73e8e
MB
633}
634
cef2e514
SG
635const char *genimg_get_comp_short_name(uint8_t comp)
636{
637 return genimg_get_short_name(uimage_comp, comp);
638}
639
640const char *genimg_get_os_short_name(uint8_t os)
641{
642 return genimg_get_short_name(uimage_os, os);
643}
644
645const char *genimg_get_arch_short_name(uint8_t arch)
646{
647 return genimg_get_short_name(uimage_arch, arch);
648}
649
570abb0a
MB
650/**
651 * get_table_entry_id - translate short entry name to id
652 * @table: pointer to a translation table for entries of a specific type
653 * @table_name: to be used in case of error
654 * @name: entry short name to be translated
655 *
656 * get_table_entry_id() will go over translation table trying to find
657 * entry that matches given short name. If matching entry is found,
658 * its id returned to the caller.
659 *
660 * returns:
661 * entry id if translation succeeds
662 * -1 otherwise
663 */
7edb186f 664int get_table_entry_id(const table_entry_t *table,
570abb0a 665 const char *table_name, const char *name)
42b73e8e 666{
7edb186f 667 const table_entry_t *t;
42b73e8e 668
570abb0a 669 for (t = table; t->id >= 0; ++t) {
2e5167cc 670#ifdef CONFIG_NEEDS_MANUAL_RELOC
5b9d44df 671 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
2e5167cc 672#else
5b9d44df 673 if (t->sname && strcasecmp(t->sname, name) == 0)
521af04d 674#endif
570abb0a
MB
675 return (t->id);
676 }
712fbcf3 677 debug("Invalid %s Type: %s\n", table_name, name);
5b9d44df
SG
678
679 return -1;
570abb0a
MB
680}
681
712fbcf3 682int genimg_get_os_id(const char *name)
570abb0a 683{
712fbcf3 684 return (get_table_entry_id(uimage_os, "OS", name));
570abb0a
MB
685}
686
712fbcf3 687int genimg_get_arch_id(const char *name)
570abb0a 688{
712fbcf3 689 return (get_table_entry_id(uimage_arch, "CPU", name));
42b73e8e 690}
5ad03eb3 691
712fbcf3 692int genimg_get_type_id(const char *name)
570abb0a 693{
712fbcf3 694 return (get_table_entry_id(uimage_type, "Image", name));
570abb0a
MB
695}
696
712fbcf3 697int genimg_get_comp_id(const char *name)
570abb0a 698{
712fbcf3 699 return (get_table_entry_id(uimage_comp, "Compression", name));
570abb0a
MB
700}
701
702#ifndef USE_HOSTCC
0f64140b 703/**
6c454fed
BW
704 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
705 * FIT strings
0f64140b 706 * @img_addr: a string might contain real image address
6c454fed
BW
707 * @fit_uname_config: double pointer to a char, will hold pointer to a
708 * configuration unit name
709 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
710 * name
0f64140b 711 *
6c454fed 712 * genimg_get_kernel_addr_fit get the real kernel start address from a string
0f64140b
BW
713 * which is normally the first argv of bootm/bootz
714 *
715 * returns:
716 * kernel start address
717 */
6c454fed
BW
718ulong genimg_get_kernel_addr_fit(char * const img_addr,
719 const char **fit_uname_config,
720 const char **fit_uname_kernel)
0f64140b 721{
0f64140b
BW
722 ulong kernel_addr;
723
724 /* find out kernel image address */
725 if (!img_addr) {
726 kernel_addr = load_addr;
727 debug("* kernel: default image load address = 0x%08lx\n",
728 load_addr);
73223f0e 729#if CONFIG_IS_ENABLED(FIT)
0f64140b 730 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
6c454fed 731 fit_uname_config)) {
0f64140b 732 debug("* kernel: config '%s' from image at 0x%08lx\n",
6c454fed 733 *fit_uname_config, kernel_addr);
0f64140b 734 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
6c454fed 735 fit_uname_kernel)) {
0f64140b 736 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
6c454fed 737 *fit_uname_kernel, kernel_addr);
0f64140b
BW
738#endif
739 } else {
740 kernel_addr = simple_strtoul(img_addr, NULL, 16);
741 debug("* kernel: cmdline image address = 0x%08lx\n",
742 kernel_addr);
743 }
744
745 return kernel_addr;
746}
747
6c454fed
BW
748/**
749 * genimg_get_kernel_addr() is the simple version of
750 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
751 */
752ulong genimg_get_kernel_addr(char * const img_addr)
753{
754 const char *fit_uname_config = NULL;
755 const char *fit_uname_kernel = NULL;
756
757 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
758 &fit_uname_kernel);
759}
760
fff888a1 761/**
9a4daad0 762 * genimg_get_format - get image format type
fff888a1
MB
763 * @img_addr: image start address
764 *
9a4daad0 765 * genimg_get_format() checks whether provided address points to a valid
fff888a1
MB
766 * legacy or FIT image.
767 *
4efbe9db
MB
768 * New uImage format and FDT blob are based on a libfdt. FDT blob
769 * may be passed directly or embedded in a FIT image. In both situations
9a4daad0 770 * genimg_get_format() must be able to dectect libfdt header.
4efbe9db 771 *
fff888a1
MB
772 * returns:
773 * image format type or IMAGE_FORMAT_INVALID if no image is present
774 */
35e7b0f1 775int genimg_get_format(const void *img_addr)
fff888a1 776{
21d29f7f 777#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
3a2003f6 778 const image_header_t *hdr;
fff888a1 779
3a2003f6 780 hdr = (const image_header_t *)img_addr;
fff888a1 781 if (image_check_magic(hdr))
21d29f7f
HS
782 return IMAGE_FORMAT_LEGACY;
783#endif
aa34fbc0 784#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
21d29f7f
HS
785 if (fdt_check_header(img_addr) == 0)
786 return IMAGE_FORMAT_FIT;
9ace3fc8
SS
787#endif
788#ifdef CONFIG_ANDROID_BOOT_IMAGE
21d29f7f
HS
789 if (android_image_check_header(img_addr) == 0)
790 return IMAGE_FORMAT_ANDROID;
fff888a1
MB
791#endif
792
21d29f7f 793 return IMAGE_FORMAT_INVALID;
fff888a1
MB
794}
795
796/**
9a4daad0 797 * genimg_get_image - get image from special storage (if necessary)
fff888a1
MB
798 * @img_addr: image start address
799 *
067d1560 800 * genimg_get_image() checks if provided image start address is located
fff888a1
MB
801 * in a dataflash storage. If so, image is moved to a system RAM memory.
802 *
803 * returns:
804 * image start address after possible relocation from special storage
805 */
712fbcf3 806ulong genimg_get_image(ulong img_addr)
fff888a1 807{
6f0f9dfc 808 ulong ram_addr = img_addr;
fff888a1
MB
809
810#ifdef CONFIG_HAS_DATAFLASH
6f0f9dfc
MB
811 ulong h_size, d_size;
812
712fbcf3 813 if (addr_dataflash(img_addr)) {
35e7b0f1
SG
814 void *buf;
815
6f0f9dfc 816 /* ger RAM address */
6d0f6bcf 817 ram_addr = CONFIG_SYS_LOAD_ADDR;
6f0f9dfc
MB
818
819 /* get header size */
712fbcf3 820 h_size = image_get_header_size();
73223f0e 821#if IMAGE_ENABLE_FIT
6f0f9dfc
MB
822 if (sizeof(struct fdt_header) > h_size)
823 h_size = sizeof(struct fdt_header);
824#endif
825
826 /* read in header */
712fbcf3 827 debug(" Reading image header from dataflash address "
fff888a1 828 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
fff888a1 829
35e7b0f1
SG
830 buf = map_sysmem(ram_addr, 0);
831 read_dataflash(img_addr, h_size, buf);
fff888a1 832
6f0f9dfc 833 /* get data size */
35e7b0f1 834 switch (genimg_get_format(buf)) {
21d29f7f 835#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
6f0f9dfc 836 case IMAGE_FORMAT_LEGACY:
35e7b0f1 837 d_size = image_get_data_size(buf);
712fbcf3
SW
838 debug(" Legacy format image found at 0x%08lx, "
839 "size 0x%08lx\n",
6f0f9dfc
MB
840 ram_addr, d_size);
841 break;
21d29f7f 842#endif
73223f0e 843#if IMAGE_ENABLE_FIT
6f0f9dfc 844 case IMAGE_FORMAT_FIT:
35e7b0f1 845 d_size = fit_get_size(buf) - h_size;
712fbcf3
SW
846 debug(" FIT/FDT format image found at 0x%08lx, "
847 "size 0x%08lx\n",
6f0f9dfc
MB
848 ram_addr, d_size);
849 break;
fff888a1 850#endif
6f0f9dfc 851 default:
712fbcf3
SW
852 printf(" No valid image found at 0x%08lx\n",
853 img_addr);
6f0f9dfc
MB
854 return ram_addr;
855 }
fff888a1 856
6f0f9dfc 857 /* read in image data */
712fbcf3 858 debug(" Reading image remaining data from dataflash address "
fff888a1
MB
859 "%08lx to RAM address %08lx\n", img_addr + h_size,
860 ram_addr + h_size);
861
712fbcf3 862 read_dataflash(img_addr + h_size, d_size,
35e7b0f1 863 (char *)(buf + h_size));
6f0f9dfc 864
fff888a1 865 }
6f0f9dfc 866#endif /* CONFIG_HAS_DATAFLASH */
fff888a1
MB
867
868 return ram_addr;
869}
870
f773bea8
MB
871/**
872 * fit_has_config - check if there is a valid FIT configuration
873 * @images: pointer to the bootm command headers structure
874 *
875 * fit_has_config() checks if there is a FIT configuration in use
876 * (if FTI support is present).
877 *
878 * returns:
879 * 0, no FIT support or no configuration found
880 * 1, configuration found
881 */
712fbcf3 882int genimg_has_config(bootm_headers_t *images)
f773bea8 883{
73223f0e 884#if IMAGE_ENABLE_FIT
f773bea8
MB
885 if (images->fit_uname_cfg)
886 return 1;
887#endif
888 return 0;
889}
890
5ad03eb3 891/**
9a4daad0 892 * boot_get_ramdisk - main ramdisk handling routine
5ad03eb3
MB
893 * @argc: command argument count
894 * @argv: command argument list
8a5ea3e6 895 * @images: pointer to the bootm images structure
5ad03eb3
MB
896 * @arch: expected ramdisk architecture
897 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
898 * @rd_end: pointer to a ulong variable, will hold ramdisk end
899 *
9a4daad0 900 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
5ad03eb3
MB
901 * Curently supported are the following ramdisk sources:
902 * - multicomponent kernel/ramdisk image,
903 * - commandline provided address of decicated ramdisk image.
904 *
905 * returns:
d985c849 906 * 0, if ramdisk image was found and valid, or skiped
5ad03eb3
MB
907 * rd_start and rd_end are set to ramdisk start/end addresses if
908 * ramdisk image is found and valid
d985c849 909 *
ea86b9e6 910 * 1, if ramdisk image is found but corrupted, or invalid
5ad03eb3 911 * rd_start and rd_end are set to 0 if no ramdisk exists
5ad03eb3 912 */
712fbcf3 913int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
d985c849 914 uint8_t arch, ulong *rd_start, ulong *rd_end)
5ad03eb3 915{
d5934ad7 916 ulong rd_addr, rd_load;
5ad03eb3 917 ulong rd_data, rd_len;
21d29f7f 918#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
3a2003f6 919 const image_header_t *rd_hdr;
21d29f7f 920#endif
35e7b0f1 921 void *buf;
57d40ab7 922#ifdef CONFIG_SUPPORT_RAW_INITRD
017e1f3f 923 char *end;
57d40ab7 924#endif
73223f0e 925#if IMAGE_ENABLE_FIT
f320a4d8 926 const char *fit_uname_config = images->fit_uname_cfg;
d5934ad7
MB
927 const char *fit_uname_ramdisk = NULL;
928 ulong default_addr;
c8779648 929 int rd_noffset;
d5934ad7 930#endif
983c72f4 931 const char *select = NULL;
5ad03eb3 932
c8779648
MB
933 *rd_start = 0;
934 *rd_end = 0;
935
1fec3c5d
TR
936#ifdef CONFIG_ANDROID_BOOT_IMAGE
937 /*
938 * Look for an Android boot image.
939 */
940 buf = map_sysmem(images->os.start, 0);
c139b5ff 941 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
1fec3c5d
TR
942 select = argv[0];
943#endif
944
983c72f4
SG
945 if (argc >= 2)
946 select = argv[1];
2dd46328 947
d5934ad7
MB
948 /*
949 * Look for a '-' which indicates to ignore the
950 * ramdisk argument
951 */
983c72f4 952 if (select && strcmp(select, "-") == 0) {
712fbcf3 953 debug("## Skipping init Ramdisk\n");
d5934ad7 954 rd_len = rd_data = 0;
983c72f4 955 } else if (select || genimg_has_config(images)) {
73223f0e 956#if IMAGE_ENABLE_FIT
983c72f4 957 if (select) {
f773bea8
MB
958 /*
959 * If the init ramdisk comes from the FIT image and
960 * the FIT image address is omitted in the command
961 * line argument, try to use os FIT image address or
962 * default load address.
963 */
964 if (images->fit_uname_os)
965 default_addr = (ulong)images->fit_hdr_os;
966 else
967 default_addr = load_addr;
968
983c72f4
SG
969 if (fit_parse_conf(select, default_addr,
970 &rd_addr, &fit_uname_config)) {
712fbcf3
SW
971 debug("* ramdisk: config '%s' from image at "
972 "0x%08lx\n",
f773bea8 973 fit_uname_config, rd_addr);
983c72f4 974 } else if (fit_parse_subimage(select, default_addr,
f773bea8 975 &rd_addr, &fit_uname_ramdisk)) {
712fbcf3
SW
976 debug("* ramdisk: subimage '%s' from image at "
977 "0x%08lx\n",
f773bea8
MB
978 fit_uname_ramdisk, rd_addr);
979 } else
d5934ad7 980#endif
f773bea8 981 {
983c72f4 982 rd_addr = simple_strtoul(select, NULL, 16);
712fbcf3
SW
983 debug("* ramdisk: cmdline image address = "
984 "0x%08lx\n",
f773bea8
MB
985 rd_addr);
986 }
73223f0e 987#if IMAGE_ENABLE_FIT
f773bea8
MB
988 } else {
989 /* use FIT configuration provided in first bootm
a51ec63b
SG
990 * command argument. If the property is not defined,
991 * quit silently.
f773bea8 992 */
35e7b0f1 993 rd_addr = map_to_sysmem(images->fit_hdr_os);
a51ec63b
SG
994 rd_noffset = fit_get_node_from_config(images,
995 FIT_RAMDISK_PROP, rd_addr);
996 if (rd_noffset == -ENOLINK)
41266c9b 997 return 0;
a51ec63b
SG
998 else if (rd_noffset < 0)
999 return 1;
d5934ad7 1000 }
f773bea8 1001#endif
d5934ad7
MB
1002
1003 /* copy from dataflash if needed */
712fbcf3 1004 rd_addr = genimg_get_image(rd_addr);
d5934ad7
MB
1005
1006 /*
1007 * Check if there is an initrd image at the
1008 * address provided in the second bootm argument
1009 * check image type, for FIT images get FIT node.
1010 */
35e7b0f1
SG
1011 buf = map_sysmem(rd_addr, 0);
1012 switch (genimg_get_format(buf)) {
21d29f7f 1013#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
d5934ad7 1014 case IMAGE_FORMAT_LEGACY:
712fbcf3 1015 printf("## Loading init Ramdisk from Legacy "
c8779648 1016 "Image at %08lx ...\n", rd_addr);
5ad03eb3 1017
770605e4 1018 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
712fbcf3 1019 rd_hdr = image_get_ramdisk(rd_addr, arch,
d985c849 1020 images->verify);
5ad03eb3 1021
c8779648 1022 if (rd_hdr == NULL)
274cea2b 1023 return 1;
274cea2b 1024
712fbcf3
SW
1025 rd_data = image_get_data(rd_hdr);
1026 rd_len = image_get_data_size(rd_hdr);
1027 rd_load = image_get_load(rd_hdr);
d5934ad7 1028 break;
21d29f7f 1029#endif
73223f0e 1030#if IMAGE_ENABLE_FIT
d5934ad7 1031 case IMAGE_FORMAT_FIT:
126cc864 1032 rd_noffset = fit_image_load(images,
a51ec63b 1033 rd_addr, &fit_uname_ramdisk,
f320a4d8 1034 &fit_uname_config, arch,
a51ec63b
SG
1035 IH_TYPE_RAMDISK,
1036 BOOTSTAGE_ID_FIT_RD_START,
fe20a81a
SG
1037 FIT_LOAD_OPTIONAL_NON_ZERO,
1038 &rd_data, &rd_len);
a51ec63b 1039 if (rd_noffset < 0)
c78fce69 1040 return 1;
c8779648 1041
a51ec63b 1042 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
c8779648 1043 images->fit_uname_rd = fit_uname_ramdisk;
3dfe1101 1044 images->fit_noffset_rd = rd_noffset;
c8779648 1045 break;
2dd46328
RH
1046#endif
1047#ifdef CONFIG_ANDROID_BOOT_IMAGE
1048 case IMAGE_FORMAT_ANDROID:
1049 android_image_get_ramdisk((void *)images->os.start,
1050 &rd_data, &rd_len);
1051 break;
d5934ad7
MB
1052#endif
1053 default:
017e1f3f 1054#ifdef CONFIG_SUPPORT_RAW_INITRD
983c72f4
SG
1055 end = NULL;
1056 if (select)
1057 end = strchr(select, ':');
1058 if (end) {
017e1f3f
MV
1059 rd_len = simple_strtoul(++end, NULL, 16);
1060 rd_data = rd_addr;
1061 } else
1062#endif
1063 {
1064 puts("Wrong Ramdisk Image Format\n");
1065 rd_data = rd_len = rd_load = 0;
1066 return 1;
1067 }
d5934ad7 1068 }
d5934ad7 1069 } else if (images->legacy_hdr_valid &&
712fbcf3
SW
1070 image_check_type(&images->legacy_hdr_os_copy,
1071 IH_TYPE_MULTI)) {
1072
5ad03eb3 1073 /*
d5934ad7
MB
1074 * Now check if we have a legacy mult-component image,
1075 * get second entry data start address and len.
5ad03eb3 1076 */
770605e4 1077 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
712fbcf3 1078 printf("## Loading init Ramdisk from multi component "
c8779648 1079 "Legacy Image at %08lx ...\n",
d5934ad7
MB
1080 (ulong)images->legacy_hdr_os);
1081
712fbcf3 1082 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
2dd46328 1083 } else {
5ad03eb3
MB
1084 /*
1085 * no initrd image
1086 */
770605e4 1087 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
5ad03eb3
MB
1088 rd_len = rd_data = 0;
1089 }
1090
1091 if (!rd_data) {
712fbcf3 1092 debug("## No init Ramdisk\n");
5ad03eb3
MB
1093 } else {
1094 *rd_start = rd_data;
1095 *rd_end = rd_data + rd_len;
1096 }
712fbcf3 1097 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
5ad03eb3 1098 *rd_start, *rd_end);
274cea2b
KG
1099
1100 return 0;
5ad03eb3 1101}
ceaed2b1 1102
fca43cc8 1103#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
ceaed2b1 1104/**
9a4daad0 1105 * boot_ramdisk_high - relocate init ramdisk
e822d7fc 1106 * @lmb: pointer to lmb handle, will be used for memory mgmt
ceaed2b1
MB
1107 * @rd_data: ramdisk data start address
1108 * @rd_len: ramdisk data length
ceaed2b1
MB
1109 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1110 * start address (after possible relocation)
1111 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1112 * end address (after possible relocation)
1113 *
1bce2aeb 1114 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
ceaed2b1
MB
1115 * variable and if requested ramdisk data is moved to a specified location.
1116 *
9a4daad0
MB
1117 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1118 * start/end addresses if ramdisk image start and len were provided,
1119 * otherwise set initrd_start and initrd_end set to zeros.
1120 *
ceaed2b1 1121 * returns:
9a4daad0
MB
1122 * 0 - success
1123 * -1 - failure
ceaed2b1 1124 */
712fbcf3 1125int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
e822d7fc 1126 ulong *initrd_start, ulong *initrd_end)
ceaed2b1
MB
1127{
1128 char *s;
1129 ulong initrd_high;
1130 int initrd_copy_to_ram = 1;
1131
712fbcf3 1132 if ((s = getenv("initrd_high")) != NULL) {
ceaed2b1
MB
1133 /* a value of "no" or a similar string will act like 0,
1134 * turning the "load high" feature off. This is intentional.
1135 */
712fbcf3 1136 initrd_high = simple_strtoul(s, NULL, 16);
ceaed2b1
MB
1137 if (initrd_high == ~0)
1138 initrd_copy_to_ram = 0;
1139 } else {
20e072f3 1140 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
ceaed2b1
MB
1141 }
1142
95d449ad
MB
1143
1144#ifdef CONFIG_LOGBUFFER
1145 /* Prevent initrd from overwriting logbuffer */
1146 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1147#endif
1148
712fbcf3 1149 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
ceaed2b1
MB
1150 initrd_high, initrd_copy_to_ram);
1151
1152 if (rd_data) {
1153 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
712fbcf3 1154 debug(" in-place initrd\n");
ceaed2b1
MB
1155 *initrd_start = rd_data;
1156 *initrd_end = rd_data + rd_len;
e822d7fc 1157 lmb_reserve(lmb, rd_data, rd_len);
ceaed2b1 1158 } else {
e822d7fc 1159 if (initrd_high)
712fbcf3
SW
1160 *initrd_start = (ulong)lmb_alloc_base(lmb,
1161 rd_len, 0x1000, initrd_high);
e822d7fc 1162 else
712fbcf3
SW
1163 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1164 0x1000);
e822d7fc
KG
1165
1166 if (*initrd_start == 0) {
712fbcf3 1167 puts("ramdisk - allocation error\n");
e822d7fc 1168 goto error;
ceaed2b1 1169 }
770605e4 1170 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
ceaed2b1
MB
1171
1172 *initrd_end = *initrd_start + rd_len;
712fbcf3 1173 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
ceaed2b1
MB
1174 *initrd_start, *initrd_end);
1175
712fbcf3 1176 memmove_wd((void *)*initrd_start,
ceaed2b1
MB
1177 (void *)rd_data, rd_len, CHUNKSZ);
1178
3b200110
KG
1179#ifdef CONFIG_MP
1180 /*
1181 * Ensure the image is flushed to memory to handle
1182 * AMP boot scenarios in which we might not be
1183 * HW cache coherent
1184 */
1185 flush_cache((unsigned long)*initrd_start, rd_len);
1186#endif
712fbcf3 1187 puts("OK\n");
ceaed2b1
MB
1188 }
1189 } else {
1190 *initrd_start = 0;
1191 *initrd_end = 0;
1192 }
712fbcf3 1193 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
ceaed2b1 1194 *initrd_start, *initrd_end);
9a4daad0 1195
e822d7fc 1196 return 0;
b6b0fe64 1197
e822d7fc
KG
1198error:
1199 return -1;
b6b0fe64 1200}
fca43cc8 1201#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
b6b0fe64 1202
90268b87
SG
1203int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1204 ulong *setup_start, ulong *setup_len)
1205{
73223f0e 1206#if IMAGE_ENABLE_FIT
90268b87
SG
1207 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1208#else
1209 return -ENOENT;
1210#endif
1211}
1212
73223f0e 1213#if IMAGE_ENABLE_FIT
84a07dbf
KA
1214int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1215 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1216{
1217 /*
1218 * These variables are used to hold the current image location
1219 * in system memory.
1220 */
1221 ulong tmp_img_addr;
1222 /*
1223 * These two variables are requirements for fit_image_load, but
1224 * their values are not used
1225 */
1226 ulong img_data, img_len;
1227 void *buf;
1228 int loadables_index;
1229 int conf_noffset;
1230 int fit_img_result;
1231 char *uname;
1232
1233 /* Check to see if the images struct has a FIT configuration */
1234 if (!genimg_has_config(images)) {
1235 debug("## FIT configuration was not specified\n");
1236 return 0;
1237 }
1238
1239 /*
1240 * Obtain the os FIT header from the images struct
1241 * copy from dataflash if needed
1242 */
1243 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1244 tmp_img_addr = genimg_get_image(tmp_img_addr);
1245 buf = map_sysmem(tmp_img_addr, 0);
1246 /*
1247 * Check image type. For FIT images get FIT node
1248 * and attempt to locate a generic binary.
1249 */
1250 switch (genimg_get_format(buf)) {
1251 case IMAGE_FORMAT_FIT:
1252 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1253
1254 for (loadables_index = 0;
9734b97f 1255 fdt_get_string_index(buf, conf_noffset,
84a07dbf
KA
1256 FIT_LOADABLE_PROP,
1257 loadables_index,
9734b97f 1258 (const char **)&uname) == 0;
84a07dbf
KA
1259 loadables_index++)
1260 {
1261 fit_img_result = fit_image_load(images,
1262 tmp_img_addr,
1263 (const char **)&uname,
1264 &(images->fit_uname_cfg), arch,
1265 IH_TYPE_LOADABLE,
1266 BOOTSTAGE_ID_FIT_LOADABLE_START,
1267 FIT_LOAD_OPTIONAL_NON_ZERO,
1268 &img_data, &img_len);
1269 if (fit_img_result < 0) {
1270 /* Something went wrong! */
1271 return fit_img_result;
1272 }
1273 }
1274 break;
1275 default:
1276 printf("The given image format is not supported (corrupt?)\n");
1277 return 1;
1278 }
1279
1280 return 0;
1281}
1282#endif
1283
fca43cc8 1284#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
b6b0fe64 1285/**
9a4daad0 1286 * boot_get_cmdline - allocate and initialize kernel cmdline
e822d7fc 1287 * @lmb: pointer to lmb handle, will be used for memory mgmt
b6b0fe64
MB
1288 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1289 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1290 *
9a4daad0 1291 * boot_get_cmdline() allocates space for kernel command line below
a187559e 1292 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
b6b0fe64
MB
1293 * variable is present its contents is copied to allocated kernel
1294 * command line.
1295 *
1296 * returns:
e822d7fc
KG
1297 * 0 - success
1298 * -1 - failure
b6b0fe64 1299 */
712fbcf3 1300int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
b6b0fe64
MB
1301{
1302 char *cmdline;
1303 char *s;
1304
6d0f6bcf 1305 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
c3624e6e 1306 getenv_bootm_mapsize() + getenv_bootm_low());
e822d7fc
KG
1307
1308 if (cmdline == NULL)
1309 return -1;
b6b0fe64
MB
1310
1311 if ((s = getenv("bootargs")) == NULL)
1312 s = "";
1313
1314 strcpy(cmdline, s);
1315
1316 *cmd_start = (ulong) & cmdline[0];
1317 *cmd_end = *cmd_start + strlen(cmdline);
1318
712fbcf3 1319 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
b6b0fe64 1320
e822d7fc 1321 return 0;
b6b0fe64 1322}
fca43cc8 1323#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
b6b0fe64 1324
fca43cc8 1325#ifdef CONFIG_SYS_BOOT_GET_KBD
b6b0fe64 1326/**
9a4daad0 1327 * boot_get_kbd - allocate and initialize kernel copy of board info
e822d7fc 1328 * @lmb: pointer to lmb handle, will be used for memory mgmt
b6b0fe64
MB
1329 * @kbd: double pointer to board info data
1330 *
9a4daad0 1331 * boot_get_kbd() allocates space for kernel copy of board info data below
590d3cac
GL
1332 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1333 * with the current u-boot board info data.
b6b0fe64
MB
1334 *
1335 * returns:
e822d7fc
KG
1336 * 0 - success
1337 * -1 - failure
b6b0fe64 1338 */
712fbcf3 1339int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
b6b0fe64 1340{
391fd93a 1341 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
c3624e6e 1342 getenv_bootm_mapsize() + getenv_bootm_low());
e822d7fc
KG
1343 if (*kbd == NULL)
1344 return -1;
1345
b6b0fe64
MB
1346 **kbd = *(gd->bd);
1347
712fbcf3 1348 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
b6b0fe64
MB
1349
1350#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1351 do_bdinfo(NULL, 0, 0, NULL);
1352#endif
1353
e822d7fc 1354 return 0;
ceaed2b1 1355}
fca43cc8 1356#endif /* CONFIG_SYS_BOOT_GET_KBD */
13d06981
SG
1357
1358#ifdef CONFIG_LMB
1359int image_setup_linux(bootm_headers_t *images)
1360{
1361 ulong of_size = images->ft_len;
1362 char **of_flat_tree = &images->ft_addr;
1363 ulong *initrd_start = &images->initrd_start;
1364 ulong *initrd_end = &images->initrd_end;
1365 struct lmb *lmb = &images->lmb;
1366 ulong rd_len;
1367 int ret;
1368
1369 if (IMAGE_ENABLE_OF_LIBFDT)
1370 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1371
1372 if (IMAGE_BOOT_GET_CMDLINE) {
1373 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1374 &images->cmdline_end);
1375 if (ret) {
1376 puts("ERROR with allocation of cmdline\n");
1377 return ret;
1378 }
1379 }
1380 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1381 rd_len = images->rd_end - images->rd_start;
1382 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1383 initrd_start, initrd_end);
1384 if (ret)
1385 return ret;
1386 }
1387
1388 if (IMAGE_ENABLE_OF_LIBFDT) {
1389 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1390 if (ret)
1391 return ret;
1392 }
1393
1394 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1395 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1396 if (ret)
1397 return ret;
1398 }
1399
1400 return 0;
1401}
1402#endif /* CONFIG_LMB */
5dfb5213 1403#endif /* !USE_HOSTCC */