]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/image.c
corvus: remove unneeded CONFIG_AT91_LEGACY
[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
MB
29#include <image.h>
30
712fbcf3 31#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
fff888a1
MB
32#include <libfdt.h>
33#include <fdt_support.h>
c8779648
MB
34#endif
35
20a14a42 36#include <u-boot/md5.h>
5dfb5213 37#include <sha1.h>
a51ec63b 38#include <asm/errno.h>
35e7b0f1 39#include <asm/io.h>
c8779648 40
b6b0fe64 41#ifdef CONFIG_CMD_BDI
54841ab5 42extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
b6b0fe64
MB
43#endif
44
45DECLARE_GLOBAL_DATA_PTR;
8a5ea3e6 46
712fbcf3 47static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
d985c849 48 int verify);
b97a2a0a 49#else
5ad03eb3 50#include "mkimage.h"
20a14a42 51#include <u-boot/md5.h>
5dfb5213 52#include <time.h>
b97a2a0a 53#include <image.h>
5dfb5213 54#endif /* !USE_HOSTCC*/
b97a2a0a 55
0ccff500
SG
56#include <u-boot/crc.h>
57
13d06981
SG
58#ifndef CONFIG_SYS_BARGSIZE
59#define CONFIG_SYS_BARGSIZE 512
60#endif
61
7edb186f 62static const table_entry_t uimage_arch[] = {
570abb0a
MB
63 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
64 { IH_ARCH_ALPHA, "alpha", "Alpha", },
65 { IH_ARCH_ARM, "arm", "ARM", },
66 { IH_ARCH_I386, "x86", "Intel x86", },
67 { IH_ARCH_IA64, "ia64", "IA64", },
68 { IH_ARCH_M68K, "m68k", "M68K", },
69 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
70 { IH_ARCH_MIPS, "mips", "MIPS", },
71 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
570abb0a 72 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
e419e12d 73 { IH_ARCH_PPC, "powerpc", "PowerPC", },
570abb0a
MB
74 { IH_ARCH_PPC, "ppc", "PowerPC", },
75 { IH_ARCH_S390, "s390", "IBM S390", },
76 { IH_ARCH_SH, "sh", "SuperH", },
77 { IH_ARCH_SPARC, "sparc", "SPARC", },
78 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
79 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
80 { IH_ARCH_AVR32, "avr32", "AVR32", },
64d61461 81 { IH_ARCH_NDS32, "nds32", "NDS32", },
3ddcaccd 82 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
35e7b0f1 83 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
0ae76531 84 { IH_ARCH_ARM64, "arm64", "AArch64", },
bc5d5428 85 { IH_ARCH_ARC, "arc", "ARC", },
570abb0a
MB
86 { -1, "", "", },
87};
88
7edb186f 89static const table_entry_t uimage_os[] = {
570abb0a 90 { IH_OS_INVALID, NULL, "Invalid OS", },
570abb0a
MB
91 { IH_OS_LINUX, "linux", "Linux", },
92#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
93 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
94#endif
95 { IH_OS_NETBSD, "netbsd", "NetBSD", },
3df61957 96 { IH_OS_OSE, "ose", "Enea OSE", },
04d41409 97 { IH_OS_PLAN9, "plan9", "Plan 9", },
570abb0a
MB
98 { IH_OS_RTEMS, "rtems", "RTEMS", },
99 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
68b15e83 100 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
570abb0a
MB
101#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
102 { IH_OS_QNX, "qnx", "QNX", },
570abb0a 103#endif
f5ed9e39
PT
104#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
105 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
106#endif
570abb0a
MB
107#ifdef USE_HOSTCC
108 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
109 { IH_OS_DELL, "dell", "Dell", },
110 { IH_OS_ESIX, "esix", "Esix", },
111 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
112 { IH_OS_IRIX, "irix", "Irix", },
113 { IH_OS_NCR, "ncr", "NCR", },
114 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
115 { IH_OS_PSOS, "psos", "pSOS", },
116 { IH_OS_SCO, "sco", "SCO", },
117 { IH_OS_SOLARIS, "solaris", "Solaris", },
118 { IH_OS_SVR4, "svr4", "SVR4", },
119#endif
120 { -1, "", "", },
121};
122
7edb186f 123static const table_entry_t uimage_type[] = {
4962e38e 124 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
570abb0a
MB
125 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
126 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
3decb14a 127 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
bf411ea9 128 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
570abb0a 129 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
b9b50e89 130 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
4962e38e
SB
131 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
132 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
133 { IH_TYPE_INVALID, NULL, "Invalid Image", },
570abb0a 134 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
4962e38e 135 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
5d898a00 136 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
570abb0a
MB
137 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
138 { IH_TYPE_SCRIPT, "script", "Script", },
139 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
7816f2cf 140 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
bce88370 141 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
570abb0a
MB
142 { -1, "", "", },
143};
144
7edb186f 145static const table_entry_t uimage_comp[] = {
570abb0a
MB
146 { IH_COMP_NONE, "none", "uncompressed", },
147 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
148 { IH_COMP_GZIP, "gzip", "gzip compressed", },
fc9c1727 149 { IH_COMP_LZMA, "lzma", "lzma compressed", },
20dde48b 150 { IH_COMP_LZO, "lzo", "lzo compressed", },
570abb0a
MB
151 { -1, "", "", },
152};
153
9a4daad0
MB
154/*****************************************************************************/
155/* Legacy format routines */
156/*****************************************************************************/
712fbcf3 157int image_check_hcrc(const image_header_t *hdr)
b97a2a0a
MB
158{
159 ulong hcrc;
712fbcf3 160 ulong len = image_get_header_size();
b97a2a0a
MB
161 image_header_t header;
162
163 /* Copy header so we can blank CRC field for re-calculation */
712fbcf3
SW
164 memmove(&header, (char *)hdr, image_get_header_size());
165 image_set_hcrc(&header, 0);
b97a2a0a 166
712fbcf3 167 hcrc = crc32(0, (unsigned char *)&header, len);
b97a2a0a 168
712fbcf3 169 return (hcrc == image_get_hcrc(hdr));
b97a2a0a
MB
170}
171
712fbcf3 172int image_check_dcrc(const image_header_t *hdr)
b97a2a0a 173{
712fbcf3
SW
174 ulong data = image_get_data(hdr);
175 ulong len = image_get_data_size(hdr);
176 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
b97a2a0a 177
712fbcf3 178 return (dcrc == image_get_dcrc(hdr));
b97a2a0a
MB
179}
180
f13e7b2e
MB
181/**
182 * image_multi_count - get component (sub-image) count
183 * @hdr: pointer to the header of the multi component image
184 *
185 * image_multi_count() returns number of components in a multi
186 * component image.
187 *
188 * Note: no checking of the image type is done, caller must pass
189 * a valid multi component image.
190 *
191 * returns:
192 * number of components
193 */
712fbcf3 194ulong image_multi_count(const image_header_t *hdr)
f13e7b2e
MB
195{
196 ulong i, count = 0;
df6f1b89 197 uint32_t *size;
f13e7b2e
MB
198
199 /* get start of the image payload, which in case of multi
200 * component images that points to a table of component sizes */
712fbcf3 201 size = (uint32_t *)image_get_data(hdr);
f13e7b2e
MB
202
203 /* count non empty slots */
204 for (i = 0; size[i]; ++i)
205 count++;
206
207 return count;
208}
209
210/**
211 * image_multi_getimg - get component data address and size
212 * @hdr: pointer to the header of the multi component image
213 * @idx: index of the requested component
214 * @data: pointer to a ulong variable, will hold component data address
215 * @len: pointer to a ulong variable, will hold component size
216 *
217 * image_multi_getimg() returns size and data address for the requested
218 * component in a multi component image.
219 *
220 * Note: no checking of the image type is done, caller must pass
221 * a valid multi component image.
222 *
223 * returns:
224 * data address and size of the component, if idx is valid
225 * 0 in data and len, if idx is out of range
226 */
712fbcf3 227void image_multi_getimg(const image_header_t *hdr, ulong idx,
f13e7b2e
MB
228 ulong *data, ulong *len)
229{
230 int i;
df6f1b89 231 uint32_t *size;
02b9b224 232 ulong offset, count, img_data;
f13e7b2e
MB
233
234 /* get number of component */
712fbcf3 235 count = image_multi_count(hdr);
f13e7b2e
MB
236
237 /* get start of the image payload, which in case of multi
238 * component images that points to a table of component sizes */
712fbcf3 239 size = (uint32_t *)image_get_data(hdr);
f13e7b2e
MB
240
241 /* get address of the proper component data start, which means
242 * skipping sizes table (add 1 for last, null entry) */
712fbcf3 243 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
f13e7b2e
MB
244
245 if (idx < count) {
712fbcf3 246 *len = uimage_to_cpu(size[idx]);
f13e7b2e 247 offset = 0;
f13e7b2e
MB
248
249 /* go over all indices preceding requested component idx */
250 for (i = 0; i < idx; i++) {
02b9b224 251 /* add up i-th component size, rounding up to 4 bytes */
712fbcf3 252 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
f13e7b2e
MB
253 }
254
255 /* calculate idx-th component data address */
02b9b224 256 *data = img_data + offset;
f13e7b2e
MB
257 } else {
258 *len = 0;
259 *data = 0;
260 }
261}
42b73e8e 262
712fbcf3 263static void image_print_type(const image_header_t *hdr)
9a4daad0
MB
264{
265 const char *os, *arch, *type, *comp;
266
712fbcf3
SW
267 os = genimg_get_os_name(image_get_os(hdr));
268 arch = genimg_get_arch_name(image_get_arch(hdr));
269 type = genimg_get_type_name(image_get_type(hdr));
270 comp = genimg_get_comp_name(image_get_comp(hdr));
9a4daad0 271
712fbcf3 272 printf("%s %s %s (%s)\n", arch, os, type, comp);
9a4daad0
MB
273}
274
5dfb5213 275/**
edbed247 276 * image_print_contents - prints out the contents of the legacy format image
3a2003f6 277 * @ptr: pointer to the legacy format image header
5dfb5213
MB
278 * @p: pointer to prefix string
279 *
edbed247 280 * image_print_contents() formats a multi line legacy image contents description.
5dfb5213
MB
281 * The routine prints out all header fields followed by the size/offset data
282 * for MULTI/SCRIPT images.
283 *
284 * returns:
285 * no returned results
286 */
712fbcf3 287void image_print_contents(const void *ptr)
9a4daad0 288{
3a2003f6 289 const image_header_t *hdr = (const image_header_t *)ptr;
edbed247
BS
290 const char *p;
291
1fe7d938 292 p = IMAGE_INDENT_STRING;
712fbcf3 293 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
859e92b7
SG
294 if (IMAGE_ENABLE_TIMESTAMP) {
295 printf("%sCreated: ", p);
296 genimg_print_time((time_t)image_get_time(hdr));
297 }
712fbcf3
SW
298 printf("%sImage Type: ", p);
299 image_print_type(hdr);
300 printf("%sData Size: ", p);
301 genimg_print_size(image_get_data_size(hdr));
302 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
303 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
304
305 if (image_check_type(hdr, IH_TYPE_MULTI) ||
306 image_check_type(hdr, IH_TYPE_SCRIPT)) {
9a4daad0
MB
307 int i;
308 ulong data, len;
712fbcf3 309 ulong count = image_multi_count(hdr);
9a4daad0 310
712fbcf3 311 printf("%sContents:\n", p);
9a4daad0 312 for (i = 0; i < count; i++) {
712fbcf3 313 image_multi_getimg(hdr, i, &data, &len);
570abb0a 314
712fbcf3
SW
315 printf("%s Image %d: ", p, i);
316 genimg_print_size(len);
570abb0a 317
712fbcf3 318 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
570abb0a
MB
319 /*
320 * the user may need to know offsets
321 * if planning to do something with
322 * multiple files
323 */
712fbcf3 324 printf("%s Offset = 0x%08lx\n", p, data);
570abb0a 325 }
9a4daad0
MB
326 }
327 }
328}
329
570abb0a
MB
330
331#ifndef USE_HOSTCC
9a4daad0
MB
332/**
333 * image_get_ramdisk - get and verify ramdisk image
9a4daad0
MB
334 * @rd_addr: ramdisk image start address
335 * @arch: expected ramdisk architecture
336 * @verify: checksum verification flag
337 *
338 * image_get_ramdisk() returns a pointer to the verified ramdisk image
339 * header. Routine receives image start address and expected architecture
340 * flag. Verification done covers data and header integrity and os/type/arch
341 * fields checking.
342 *
343 * If dataflash support is enabled routine checks for dataflash addresses
344 * and handles required dataflash reads.
345 *
346 * returns:
347 * pointer to a ramdisk image header, if image was found and valid
348 * otherwise, return NULL
349 */
712fbcf3 350static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
d985c849 351 int verify)
9a4daad0 352{
3a2003f6 353 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
9a4daad0 354
712fbcf3
SW
355 if (!image_check_magic(rd_hdr)) {
356 puts("Bad Magic Number\n");
770605e4 357 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
9a4daad0
MB
358 return NULL;
359 }
360
712fbcf3
SW
361 if (!image_check_hcrc(rd_hdr)) {
362 puts("Bad Header Checksum\n");
770605e4 363 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
9a4daad0
MB
364 return NULL;
365 }
366
770605e4 367 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
712fbcf3 368 image_print_contents(rd_hdr);
9a4daad0
MB
369
370 if (verify) {
371 puts(" Verifying Checksum ... ");
712fbcf3
SW
372 if (!image_check_dcrc(rd_hdr)) {
373 puts("Bad Data CRC\n");
770605e4 374 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
9a4daad0
MB
375 return NULL;
376 }
377 puts("OK\n");
378 }
379
770605e4 380 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
9a4daad0 381
712fbcf3
SW
382 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
383 !image_check_arch(rd_hdr, arch) ||
384 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
385 printf("No Linux %s Ramdisk Image\n",
9a4daad0 386 genimg_get_arch_name(arch));
770605e4 387 bootstage_error(BOOTSTAGE_ID_RAMDISK);
9a4daad0
MB
388 return NULL;
389 }
390
391 return rd_hdr;
392}
570abb0a 393#endif /* !USE_HOSTCC */
9a4daad0
MB
394
395/*****************************************************************************/
396/* Shared dual-format routines */
397/*****************************************************************************/
570abb0a 398#ifndef USE_HOSTCC
1cf0a8b2
JH
399ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
400ulong save_addr; /* Default Save Address */
401ulong save_size; /* Default Save Size (in bytes) */
402
403static int on_loadaddr(const char *name, const char *value, enum env_op op,
404 int flags)
405{
406 switch (op) {
407 case env_op_create:
408 case env_op_overwrite:
409 load_addr = simple_strtoul(value, NULL, 16);
410 break;
411 default:
412 break;
413 }
414
415 return 0;
416}
417U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
418
9a4daad0
MB
419ulong getenv_bootm_low(void)
420{
712fbcf3 421 char *s = getenv("bootm_low");
9a4daad0 422 if (s) {
712fbcf3 423 ulong tmp = simple_strtoul(s, NULL, 16);
9a4daad0
MB
424 return tmp;
425 }
426
6d0f6bcf
JCPV
427#if defined(CONFIG_SYS_SDRAM_BASE)
428 return CONFIG_SYS_SDRAM_BASE;
afe45c87
MB
429#elif defined(CONFIG_ARM)
430 return gd->bd->bi_dram[0].start;
9a4daad0
MB
431#else
432 return 0;
433#endif
434}
435
391fd93a 436phys_size_t getenv_bootm_size(void)
9a4daad0 437{
c519facc 438 phys_size_t tmp;
712fbcf3 439 char *s = getenv("bootm_size");
9a4daad0 440 if (s) {
712fbcf3 441 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
9a4daad0
MB
442 return tmp;
443 }
c519facc
MM
444 s = getenv("bootm_low");
445 if (s)
712fbcf3 446 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
c519facc
MM
447 else
448 tmp = 0;
449
9a4daad0 450
afe45c87 451#if defined(CONFIG_ARM)
c519facc 452 return gd->bd->bi_dram[0].size - tmp;
afe45c87 453#else
c519facc 454 return gd->bd->bi_memsize - tmp;
afe45c87 455#endif
9a4daad0
MB
456}
457
c3624e6e
GL
458phys_size_t getenv_bootm_mapsize(void)
459{
460 phys_size_t tmp;
712fbcf3 461 char *s = getenv("bootm_mapsize");
c3624e6e 462 if (s) {
712fbcf3 463 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
c3624e6e
GL
464 return tmp;
465 }
466
467#if defined(CONFIG_SYS_BOOTMAPSZ)
468 return CONFIG_SYS_BOOTMAPSZ;
469#else
470 return getenv_bootm_size();
471#endif
472}
473
712fbcf3 474void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
9a4daad0 475{
54fa2c5b
LJ
476 if (to == from)
477 return;
478
9a4daad0
MB
479#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
480 while (len > 0) {
481 size_t tail = (len > chunksz) ? chunksz : len;
712fbcf3
SW
482 WATCHDOG_RESET();
483 memmove(to, from, tail);
9a4daad0
MB
484 to += tail;
485 from += tail;
486 len -= tail;
487 }
488#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
712fbcf3 489 memmove(to, from, len);
9a4daad0
MB
490#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
491}
570abb0a 492#endif /* !USE_HOSTCC */
9a4daad0 493
712fbcf3 494void genimg_print_size(uint32_t size)
42b73e8e 495{
570abb0a 496#ifndef USE_HOSTCC
712fbcf3
SW
497 printf("%d Bytes = ", size);
498 print_size(size, "\n");
570abb0a 499#else
712fbcf3 500 printf("%d Bytes = %.2f kB = %.2f MB\n",
570abb0a
MB
501 size, (double)size / 1.024e3,
502 (double)size / 1.048576e6);
42b73e8e 503#endif
570abb0a
MB
504}
505
859e92b7
SG
506#if IMAGE_ENABLE_TIMESTAMP
507void genimg_print_time(time_t timestamp)
570abb0a
MB
508{
509#ifndef USE_HOSTCC
510 struct rtc_time tm;
511
712fbcf3
SW
512 to_tm(timestamp, &tm);
513 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
570abb0a
MB
514 tm.tm_year, tm.tm_mon, tm.tm_mday,
515 tm.tm_hour, tm.tm_min, tm.tm_sec);
516#else
712fbcf3 517 printf("%s", ctime(&timestamp));
42b73e8e 518#endif
570abb0a 519}
859e92b7 520#endif
42b73e8e 521
570abb0a
MB
522/**
523 * get_table_entry_name - translate entry id to long name
524 * @table: pointer to a translation table for entries of a specific type
525 * @msg: message to be returned when translation fails
526 * @id: entry id to be translated
527 *
528 * get_table_entry_name() will go over translation table trying to find
529 * entry that matches given id. If matching entry is found, its long
530 * name is returned to the caller.
531 *
532 * returns:
533 * long entry name if translation succeeds
534 * msg otherwise
535 */
7edb186f 536char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
570abb0a
MB
537{
538 for (; table->id >= 0; ++table) {
539 if (table->id == id)
2e5167cc 540#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
e3d1ac7b
SW
541 return table->lname;
542#else
543 return table->lname + gd->reloc_off;
544#endif
42b73e8e 545 }
570abb0a
MB
546 return (msg);
547}
42b73e8e 548
712fbcf3 549const char *genimg_get_os_name(uint8_t os)
570abb0a 550{
712fbcf3 551 return (get_table_entry_name(uimage_os, "Unknown OS", os));
42b73e8e
MB
552}
553
712fbcf3 554const char *genimg_get_arch_name(uint8_t arch)
42b73e8e 555{
712fbcf3
SW
556 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
557 arch));
570abb0a 558}
42b73e8e 559
712fbcf3 560const char *genimg_get_type_name(uint8_t type)
570abb0a 561{
712fbcf3 562 return (get_table_entry_name(uimage_type, "Unknown Image", type));
570abb0a 563}
42b73e8e 564
712fbcf3 565const char *genimg_get_comp_name(uint8_t comp)
570abb0a 566{
712fbcf3
SW
567 return (get_table_entry_name(uimage_comp, "Unknown Compression",
568 comp));
42b73e8e
MB
569}
570
570abb0a
MB
571/**
572 * get_table_entry_id - translate short entry name to id
573 * @table: pointer to a translation table for entries of a specific type
574 * @table_name: to be used in case of error
575 * @name: entry short name to be translated
576 *
577 * get_table_entry_id() will go over translation table trying to find
578 * entry that matches given short name. If matching entry is found,
579 * its id returned to the caller.
580 *
581 * returns:
582 * entry id if translation succeeds
583 * -1 otherwise
584 */
7edb186f 585int get_table_entry_id(const table_entry_t *table,
570abb0a 586 const char *table_name, const char *name)
42b73e8e 587{
7edb186f 588 const table_entry_t *t;
570abb0a
MB
589#ifdef USE_HOSTCC
590 int first = 1;
42b73e8e 591
570abb0a
MB
592 for (t = table; t->id >= 0; ++t) {
593 if (t->sname && strcasecmp(t->sname, name) == 0)
712fbcf3 594 return(t->id);
42b73e8e
MB
595 }
596
712fbcf3 597 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
570abb0a
MB
598 for (t = table; t->id >= 0; ++t) {
599 if (t->sname == NULL)
600 continue;
712fbcf3 601 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
570abb0a
MB
602 first = 0;
603 }
712fbcf3 604 fprintf(stderr, "\n");
570abb0a
MB
605#else
606 for (t = table; t->id >= 0; ++t) {
2e5167cc 607#ifdef CONFIG_NEEDS_MANUAL_RELOC
e3d1ac7b 608 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
2e5167cc
WD
609#else
610 if (t->sname && strcmp(t->sname, name) == 0)
521af04d 611#endif
570abb0a
MB
612 return (t->id);
613 }
712fbcf3 614 debug("Invalid %s Type: %s\n", table_name, name);
570abb0a
MB
615#endif /* USE_HOSTCC */
616 return (-1);
617}
618
712fbcf3 619int genimg_get_os_id(const char *name)
570abb0a 620{
712fbcf3 621 return (get_table_entry_id(uimage_os, "OS", name));
570abb0a
MB
622}
623
712fbcf3 624int genimg_get_arch_id(const char *name)
570abb0a 625{
712fbcf3 626 return (get_table_entry_id(uimage_arch, "CPU", name));
42b73e8e 627}
5ad03eb3 628
712fbcf3 629int genimg_get_type_id(const char *name)
570abb0a 630{
712fbcf3 631 return (get_table_entry_id(uimage_type, "Image", name));
570abb0a
MB
632}
633
712fbcf3 634int genimg_get_comp_id(const char *name)
570abb0a 635{
712fbcf3 636 return (get_table_entry_id(uimage_comp, "Compression", name));
570abb0a
MB
637}
638
639#ifndef USE_HOSTCC
fff888a1 640/**
9a4daad0 641 * genimg_get_format - get image format type
fff888a1
MB
642 * @img_addr: image start address
643 *
9a4daad0 644 * genimg_get_format() checks whether provided address points to a valid
fff888a1
MB
645 * legacy or FIT image.
646 *
4efbe9db
MB
647 * New uImage format and FDT blob are based on a libfdt. FDT blob
648 * may be passed directly or embedded in a FIT image. In both situations
9a4daad0 649 * genimg_get_format() must be able to dectect libfdt header.
4efbe9db 650 *
fff888a1
MB
651 * returns:
652 * image format type or IMAGE_FORMAT_INVALID if no image is present
653 */
35e7b0f1 654int genimg_get_format(const void *img_addr)
fff888a1 655{
3a2003f6
WD
656 ulong format = IMAGE_FORMAT_INVALID;
657 const image_header_t *hdr;
fff888a1 658
3a2003f6 659 hdr = (const image_header_t *)img_addr;
fff888a1
MB
660 if (image_check_magic(hdr))
661 format = IMAGE_FORMAT_LEGACY;
4efbe9db 662#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
9ace3fc8
SS
663 else if (fdt_check_header(img_addr) == 0)
664 format = IMAGE_FORMAT_FIT;
665#endif
666#ifdef CONFIG_ANDROID_BOOT_IMAGE
667 else if (android_image_check_header(img_addr) == 0)
668 format = IMAGE_FORMAT_ANDROID;
fff888a1
MB
669#endif
670
671 return format;
672}
673
674/**
9a4daad0 675 * genimg_get_image - get image from special storage (if necessary)
fff888a1
MB
676 * @img_addr: image start address
677 *
9a4daad0 678 * genimg_get_image() checks if provided image start adddress is located
fff888a1
MB
679 * in a dataflash storage. If so, image is moved to a system RAM memory.
680 *
681 * returns:
682 * image start address after possible relocation from special storage
683 */
712fbcf3 684ulong genimg_get_image(ulong img_addr)
fff888a1 685{
6f0f9dfc 686 ulong ram_addr = img_addr;
fff888a1
MB
687
688#ifdef CONFIG_HAS_DATAFLASH
6f0f9dfc
MB
689 ulong h_size, d_size;
690
712fbcf3 691 if (addr_dataflash(img_addr)) {
35e7b0f1
SG
692 void *buf;
693
6f0f9dfc 694 /* ger RAM address */
6d0f6bcf 695 ram_addr = CONFIG_SYS_LOAD_ADDR;
6f0f9dfc
MB
696
697 /* get header size */
712fbcf3 698 h_size = image_get_header_size();
6f0f9dfc
MB
699#if defined(CONFIG_FIT)
700 if (sizeof(struct fdt_header) > h_size)
701 h_size = sizeof(struct fdt_header);
702#endif
703
704 /* read in header */
712fbcf3 705 debug(" Reading image header from dataflash address "
fff888a1 706 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
fff888a1 707
35e7b0f1
SG
708 buf = map_sysmem(ram_addr, 0);
709 read_dataflash(img_addr, h_size, buf);
fff888a1 710
6f0f9dfc 711 /* get data size */
35e7b0f1 712 switch (genimg_get_format(buf)) {
6f0f9dfc 713 case IMAGE_FORMAT_LEGACY:
35e7b0f1 714 d_size = image_get_data_size(buf);
712fbcf3
SW
715 debug(" Legacy format image found at 0x%08lx, "
716 "size 0x%08lx\n",
6f0f9dfc
MB
717 ram_addr, d_size);
718 break;
fff888a1 719#if defined(CONFIG_FIT)
6f0f9dfc 720 case IMAGE_FORMAT_FIT:
35e7b0f1 721 d_size = fit_get_size(buf) - h_size;
712fbcf3
SW
722 debug(" FIT/FDT format image found at 0x%08lx, "
723 "size 0x%08lx\n",
6f0f9dfc
MB
724 ram_addr, d_size);
725 break;
fff888a1 726#endif
6f0f9dfc 727 default:
712fbcf3
SW
728 printf(" No valid image found at 0x%08lx\n",
729 img_addr);
6f0f9dfc
MB
730 return ram_addr;
731 }
fff888a1 732
6f0f9dfc 733 /* read in image data */
712fbcf3 734 debug(" Reading image remaining data from dataflash address "
fff888a1
MB
735 "%08lx to RAM address %08lx\n", img_addr + h_size,
736 ram_addr + h_size);
737
712fbcf3 738 read_dataflash(img_addr + h_size, d_size,
35e7b0f1 739 (char *)(buf + h_size));
6f0f9dfc 740
fff888a1 741 }
6f0f9dfc 742#endif /* CONFIG_HAS_DATAFLASH */
fff888a1
MB
743
744 return ram_addr;
745}
746
f773bea8
MB
747/**
748 * fit_has_config - check if there is a valid FIT configuration
749 * @images: pointer to the bootm command headers structure
750 *
751 * fit_has_config() checks if there is a FIT configuration in use
752 * (if FTI support is present).
753 *
754 * returns:
755 * 0, no FIT support or no configuration found
756 * 1, configuration found
757 */
712fbcf3 758int genimg_has_config(bootm_headers_t *images)
f773bea8
MB
759{
760#if defined(CONFIG_FIT)
761 if (images->fit_uname_cfg)
762 return 1;
763#endif
764 return 0;
765}
766
5ad03eb3 767/**
9a4daad0 768 * boot_get_ramdisk - main ramdisk handling routine
5ad03eb3
MB
769 * @argc: command argument count
770 * @argv: command argument list
8a5ea3e6 771 * @images: pointer to the bootm images structure
5ad03eb3
MB
772 * @arch: expected ramdisk architecture
773 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
774 * @rd_end: pointer to a ulong variable, will hold ramdisk end
775 *
9a4daad0 776 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
5ad03eb3
MB
777 * Curently supported are the following ramdisk sources:
778 * - multicomponent kernel/ramdisk image,
779 * - commandline provided address of decicated ramdisk image.
780 *
781 * returns:
d985c849 782 * 0, if ramdisk image was found and valid, or skiped
5ad03eb3
MB
783 * rd_start and rd_end are set to ramdisk start/end addresses if
784 * ramdisk image is found and valid
d985c849 785 *
ea86b9e6 786 * 1, if ramdisk image is found but corrupted, or invalid
5ad03eb3 787 * rd_start and rd_end are set to 0 if no ramdisk exists
5ad03eb3 788 */
712fbcf3 789int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
d985c849 790 uint8_t arch, ulong *rd_start, ulong *rd_end)
5ad03eb3 791{
d5934ad7 792 ulong rd_addr, rd_load;
5ad03eb3 793 ulong rd_data, rd_len;
3a2003f6 794 const image_header_t *rd_hdr;
35e7b0f1 795 void *buf;
57d40ab7 796#ifdef CONFIG_SUPPORT_RAW_INITRD
017e1f3f 797 char *end;
57d40ab7 798#endif
d5934ad7 799#if defined(CONFIG_FIT)
f320a4d8 800 const char *fit_uname_config = images->fit_uname_cfg;
d5934ad7
MB
801 const char *fit_uname_ramdisk = NULL;
802 ulong default_addr;
c8779648 803 int rd_noffset;
d5934ad7 804#endif
983c72f4 805 const char *select = NULL;
5ad03eb3 806
c8779648
MB
807 *rd_start = 0;
808 *rd_end = 0;
809
983c72f4
SG
810 if (argc >= 2)
811 select = argv[1];
d5934ad7
MB
812 /*
813 * Look for a '-' which indicates to ignore the
814 * ramdisk argument
815 */
983c72f4 816 if (select && strcmp(select, "-") == 0) {
712fbcf3 817 debug("## Skipping init Ramdisk\n");
d5934ad7 818 rd_len = rd_data = 0;
983c72f4 819 } else if (select || genimg_has_config(images)) {
d5934ad7 820#if defined(CONFIG_FIT)
983c72f4 821 if (select) {
f773bea8
MB
822 /*
823 * If the init ramdisk comes from the FIT image and
824 * the FIT image address is omitted in the command
825 * line argument, try to use os FIT image address or
826 * default load address.
827 */
828 if (images->fit_uname_os)
829 default_addr = (ulong)images->fit_hdr_os;
830 else
831 default_addr = load_addr;
832
983c72f4
SG
833 if (fit_parse_conf(select, default_addr,
834 &rd_addr, &fit_uname_config)) {
712fbcf3
SW
835 debug("* ramdisk: config '%s' from image at "
836 "0x%08lx\n",
f773bea8 837 fit_uname_config, rd_addr);
983c72f4 838 } else if (fit_parse_subimage(select, default_addr,
f773bea8 839 &rd_addr, &fit_uname_ramdisk)) {
712fbcf3
SW
840 debug("* ramdisk: subimage '%s' from image at "
841 "0x%08lx\n",
f773bea8
MB
842 fit_uname_ramdisk, rd_addr);
843 } else
d5934ad7 844#endif
f773bea8 845 {
983c72f4 846 rd_addr = simple_strtoul(select, NULL, 16);
712fbcf3
SW
847 debug("* ramdisk: cmdline image address = "
848 "0x%08lx\n",
f773bea8
MB
849 rd_addr);
850 }
851#if defined(CONFIG_FIT)
852 } else {
853 /* use FIT configuration provided in first bootm
a51ec63b
SG
854 * command argument. If the property is not defined,
855 * quit silently.
f773bea8 856 */
35e7b0f1 857 rd_addr = map_to_sysmem(images->fit_hdr_os);
a51ec63b
SG
858 rd_noffset = fit_get_node_from_config(images,
859 FIT_RAMDISK_PROP, rd_addr);
860 if (rd_noffset == -ENOLINK)
41266c9b 861 return 0;
a51ec63b
SG
862 else if (rd_noffset < 0)
863 return 1;
d5934ad7 864 }
f773bea8 865#endif
d5934ad7
MB
866
867 /* copy from dataflash if needed */
712fbcf3 868 rd_addr = genimg_get_image(rd_addr);
d5934ad7
MB
869
870 /*
871 * Check if there is an initrd image at the
872 * address provided in the second bootm argument
873 * check image type, for FIT images get FIT node.
874 */
35e7b0f1
SG
875 buf = map_sysmem(rd_addr, 0);
876 switch (genimg_get_format(buf)) {
d5934ad7 877 case IMAGE_FORMAT_LEGACY:
712fbcf3 878 printf("## Loading init Ramdisk from Legacy "
c8779648 879 "Image at %08lx ...\n", rd_addr);
5ad03eb3 880
770605e4 881 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
712fbcf3 882 rd_hdr = image_get_ramdisk(rd_addr, arch,
d985c849 883 images->verify);
5ad03eb3 884
c8779648 885 if (rd_hdr == NULL)
274cea2b 886 return 1;
274cea2b 887
712fbcf3
SW
888 rd_data = image_get_data(rd_hdr);
889 rd_len = image_get_data_size(rd_hdr);
890 rd_load = image_get_load(rd_hdr);
d5934ad7
MB
891 break;
892#if defined(CONFIG_FIT)
893 case IMAGE_FORMAT_FIT:
a51ec63b
SG
894 rd_noffset = fit_image_load(images, FIT_RAMDISK_PROP,
895 rd_addr, &fit_uname_ramdisk,
f320a4d8 896 &fit_uname_config, arch,
a51ec63b
SG
897 IH_TYPE_RAMDISK,
898 BOOTSTAGE_ID_FIT_RD_START,
e3a5bbce 899 FIT_LOAD_IGNORED, &rd_data, &rd_len);
a51ec63b 900 if (rd_noffset < 0)
c78fce69 901 return 1;
c8779648 902
a51ec63b 903 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
c8779648 904 images->fit_uname_rd = fit_uname_ramdisk;
3dfe1101 905 images->fit_noffset_rd = rd_noffset;
c8779648 906 break;
d5934ad7
MB
907#endif
908 default:
017e1f3f 909#ifdef CONFIG_SUPPORT_RAW_INITRD
983c72f4
SG
910 end = NULL;
911 if (select)
912 end = strchr(select, ':');
913 if (end) {
017e1f3f
MV
914 rd_len = simple_strtoul(++end, NULL, 16);
915 rd_data = rd_addr;
916 } else
917#endif
918 {
919 puts("Wrong Ramdisk Image Format\n");
920 rd_data = rd_len = rd_load = 0;
921 return 1;
922 }
d5934ad7 923 }
d5934ad7 924 } else if (images->legacy_hdr_valid &&
712fbcf3
SW
925 image_check_type(&images->legacy_hdr_os_copy,
926 IH_TYPE_MULTI)) {
927
5ad03eb3 928 /*
d5934ad7
MB
929 * Now check if we have a legacy mult-component image,
930 * get second entry data start address and len.
5ad03eb3 931 */
770605e4 932 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
712fbcf3 933 printf("## Loading init Ramdisk from multi component "
c8779648 934 "Legacy Image at %08lx ...\n",
d5934ad7
MB
935 (ulong)images->legacy_hdr_os);
936
712fbcf3 937 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
9ace3fc8
SS
938 }
939#ifdef CONFIG_ANDROID_BOOT_IMAGE
940 else if ((genimg_get_format(images) == IMAGE_FORMAT_ANDROID) &&
941 (!android_image_get_ramdisk((void *)images->os.start,
942 &rd_data, &rd_len))) {
943 /* empty */
944 }
945#endif
946 else {
5ad03eb3
MB
947 /*
948 * no initrd image
949 */
770605e4 950 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
5ad03eb3
MB
951 rd_len = rd_data = 0;
952 }
953
954 if (!rd_data) {
712fbcf3 955 debug("## No init Ramdisk\n");
5ad03eb3
MB
956 } else {
957 *rd_start = rd_data;
958 *rd_end = rd_data + rd_len;
959 }
712fbcf3 960 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
5ad03eb3 961 *rd_start, *rd_end);
274cea2b
KG
962
963 return 0;
5ad03eb3 964}
ceaed2b1 965
fca43cc8 966#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
ceaed2b1 967/**
9a4daad0 968 * boot_ramdisk_high - relocate init ramdisk
e822d7fc 969 * @lmb: pointer to lmb handle, will be used for memory mgmt
ceaed2b1
MB
970 * @rd_data: ramdisk data start address
971 * @rd_len: ramdisk data length
ceaed2b1
MB
972 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
973 * start address (after possible relocation)
974 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
975 * end address (after possible relocation)
976 *
1bce2aeb 977 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
ceaed2b1
MB
978 * variable and if requested ramdisk data is moved to a specified location.
979 *
9a4daad0
MB
980 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
981 * start/end addresses if ramdisk image start and len were provided,
982 * otherwise set initrd_start and initrd_end set to zeros.
983 *
ceaed2b1 984 * returns:
9a4daad0
MB
985 * 0 - success
986 * -1 - failure
ceaed2b1 987 */
712fbcf3 988int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
e822d7fc 989 ulong *initrd_start, ulong *initrd_end)
ceaed2b1
MB
990{
991 char *s;
992 ulong initrd_high;
993 int initrd_copy_to_ram = 1;
994
712fbcf3 995 if ((s = getenv("initrd_high")) != NULL) {
ceaed2b1
MB
996 /* a value of "no" or a similar string will act like 0,
997 * turning the "load high" feature off. This is intentional.
998 */
712fbcf3 999 initrd_high = simple_strtoul(s, NULL, 16);
ceaed2b1
MB
1000 if (initrd_high == ~0)
1001 initrd_copy_to_ram = 0;
1002 } else {
1003 /* not set, no restrictions to load high */
1004 initrd_high = ~0;
1005 }
1006
95d449ad
MB
1007
1008#ifdef CONFIG_LOGBUFFER
1009 /* Prevent initrd from overwriting logbuffer */
1010 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1011#endif
1012
712fbcf3 1013 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
ceaed2b1
MB
1014 initrd_high, initrd_copy_to_ram);
1015
1016 if (rd_data) {
1017 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
712fbcf3 1018 debug(" in-place initrd\n");
ceaed2b1
MB
1019 *initrd_start = rd_data;
1020 *initrd_end = rd_data + rd_len;
e822d7fc 1021 lmb_reserve(lmb, rd_data, rd_len);
ceaed2b1 1022 } else {
e822d7fc 1023 if (initrd_high)
712fbcf3
SW
1024 *initrd_start = (ulong)lmb_alloc_base(lmb,
1025 rd_len, 0x1000, initrd_high);
e822d7fc 1026 else
712fbcf3
SW
1027 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1028 0x1000);
e822d7fc
KG
1029
1030 if (*initrd_start == 0) {
712fbcf3 1031 puts("ramdisk - allocation error\n");
e822d7fc 1032 goto error;
ceaed2b1 1033 }
770605e4 1034 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
ceaed2b1
MB
1035
1036 *initrd_end = *initrd_start + rd_len;
712fbcf3 1037 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
ceaed2b1
MB
1038 *initrd_start, *initrd_end);
1039
712fbcf3 1040 memmove_wd((void *)*initrd_start,
ceaed2b1
MB
1041 (void *)rd_data, rd_len, CHUNKSZ);
1042
3b200110
KG
1043#ifdef CONFIG_MP
1044 /*
1045 * Ensure the image is flushed to memory to handle
1046 * AMP boot scenarios in which we might not be
1047 * HW cache coherent
1048 */
1049 flush_cache((unsigned long)*initrd_start, rd_len);
1050#endif
712fbcf3 1051 puts("OK\n");
ceaed2b1
MB
1052 }
1053 } else {
1054 *initrd_start = 0;
1055 *initrd_end = 0;
1056 }
712fbcf3 1057 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
ceaed2b1 1058 *initrd_start, *initrd_end);
9a4daad0 1059
e822d7fc 1060 return 0;
b6b0fe64 1061
e822d7fc
KG
1062error:
1063 return -1;
b6b0fe64 1064}
fca43cc8 1065#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
b6b0fe64 1066
fca43cc8 1067#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
b6b0fe64 1068/**
9a4daad0 1069 * boot_get_cmdline - allocate and initialize kernel cmdline
e822d7fc 1070 * @lmb: pointer to lmb handle, will be used for memory mgmt
b6b0fe64
MB
1071 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1072 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1073 *
9a4daad0 1074 * boot_get_cmdline() allocates space for kernel command line below
590d3cac 1075 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
b6b0fe64
MB
1076 * variable is present its contents is copied to allocated kernel
1077 * command line.
1078 *
1079 * returns:
e822d7fc
KG
1080 * 0 - success
1081 * -1 - failure
b6b0fe64 1082 */
712fbcf3 1083int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
b6b0fe64
MB
1084{
1085 char *cmdline;
1086 char *s;
1087
6d0f6bcf 1088 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
c3624e6e 1089 getenv_bootm_mapsize() + getenv_bootm_low());
e822d7fc
KG
1090
1091 if (cmdline == NULL)
1092 return -1;
b6b0fe64
MB
1093
1094 if ((s = getenv("bootargs")) == NULL)
1095 s = "";
1096
1097 strcpy(cmdline, s);
1098
1099 *cmd_start = (ulong) & cmdline[0];
1100 *cmd_end = *cmd_start + strlen(cmdline);
1101
712fbcf3 1102 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
b6b0fe64 1103
e822d7fc 1104 return 0;
b6b0fe64 1105}
fca43cc8 1106#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
b6b0fe64 1107
fca43cc8 1108#ifdef CONFIG_SYS_BOOT_GET_KBD
b6b0fe64 1109/**
9a4daad0 1110 * boot_get_kbd - allocate and initialize kernel copy of board info
e822d7fc 1111 * @lmb: pointer to lmb handle, will be used for memory mgmt
b6b0fe64
MB
1112 * @kbd: double pointer to board info data
1113 *
9a4daad0 1114 * boot_get_kbd() allocates space for kernel copy of board info data below
590d3cac
GL
1115 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1116 * with the current u-boot board info data.
b6b0fe64
MB
1117 *
1118 * returns:
e822d7fc
KG
1119 * 0 - success
1120 * -1 - failure
b6b0fe64 1121 */
712fbcf3 1122int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
b6b0fe64 1123{
391fd93a 1124 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
c3624e6e 1125 getenv_bootm_mapsize() + getenv_bootm_low());
e822d7fc
KG
1126 if (*kbd == NULL)
1127 return -1;
1128
b6b0fe64
MB
1129 **kbd = *(gd->bd);
1130
712fbcf3 1131 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
b6b0fe64
MB
1132
1133#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1134 do_bdinfo(NULL, 0, 0, NULL);
1135#endif
1136
e822d7fc 1137 return 0;
ceaed2b1 1138}
fca43cc8 1139#endif /* CONFIG_SYS_BOOT_GET_KBD */
13d06981
SG
1140
1141#ifdef CONFIG_LMB
1142int image_setup_linux(bootm_headers_t *images)
1143{
1144 ulong of_size = images->ft_len;
1145 char **of_flat_tree = &images->ft_addr;
1146 ulong *initrd_start = &images->initrd_start;
1147 ulong *initrd_end = &images->initrd_end;
1148 struct lmb *lmb = &images->lmb;
1149 ulong rd_len;
1150 int ret;
1151
1152 if (IMAGE_ENABLE_OF_LIBFDT)
1153 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1154
1155 if (IMAGE_BOOT_GET_CMDLINE) {
1156 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1157 &images->cmdline_end);
1158 if (ret) {
1159 puts("ERROR with allocation of cmdline\n");
1160 return ret;
1161 }
1162 }
1163 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1164 rd_len = images->rd_end - images->rd_start;
1165 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1166 initrd_start, initrd_end);
1167 if (ret)
1168 return ret;
1169 }
1170
1171 if (IMAGE_ENABLE_OF_LIBFDT) {
1172 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1173 if (ret)
1174 return ret;
1175 }
1176
1177 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1178 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1179 if (ret)
1180 return ret;
1181 }
1182
1183 return 0;
1184}
1185#endif /* CONFIG_LMB */
5dfb5213 1186#endif /* !USE_HOSTCC */