blob: ae95c3f18aa24058bd92cf1c91c57ea5a710f91b [file] [log] [blame]
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01008 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01009
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010011#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
Marian Balakowicz95d449a2008-05-13 15:53:29 +020022#ifdef CONFIG_LOGBUFFER
23#include <logbuff.h>
24#endif
25
Marian Balakowicz2242f532008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010027
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060028#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010029#include <image.h>
30
Stephen Warren712fbcf2011-10-18 11:11:49 +000031#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Marian Balakowiczfff888a12008-02-21 17:20:19 +010032#include <libfdt.h>
33#include <fdt_support.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010034#endif
35
Andy Fleming20a14a42008-04-02 16:19:07 -050036#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010037#include <sha1.h>
Simon Glassa51ec632013-05-16 13:53:22 +000038#include <asm/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000039#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010040
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010041#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020042extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010043#endif
44
45DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010046
Stephen Warren712fbcf2011-10-18 11:11:49 +000047static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010048 int verify);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010049#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010050#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050051#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010052#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010053#include <image.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055
Simon Glass0ccff502013-02-24 17:33:25 +000056#include <u-boot/crc.h>
57
Simon Glass13d06982013-05-08 08:06:01 +000058#ifndef CONFIG_SYS_BARGSIZE
59#define CONFIG_SYS_BARGSIZE 512
60#endif
61
Mike Frysinger7edb1862010-10-20 07:17:39 -040062static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010063 { 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", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010072 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070073 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { 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", },
Macpaul Lin64d61462011-10-19 20:41:09 +000081 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000082 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000083 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080084 { IH_ARCH_ARM64, "arm64", "AArch64", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { -1, "", "", },
86};
87
Mike Frysinger7edb1862010-10-20 07:17:39 -040088static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010089 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010090 { IH_OS_LINUX, "linux", "Linux", },
91#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
92 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
93#endif
94 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +020095 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +000096 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010097 { IH_OS_RTEMS, "rtems", "RTEMS", },
98 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +080099 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
101 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500103#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
104 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
105#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106#ifdef USE_HOSTCC
107 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
108 { IH_OS_DELL, "dell", "Dell", },
109 { IH_OS_ESIX, "esix", "Esix", },
110 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
111 { IH_OS_IRIX, "irix", "Irix", },
112 { IH_OS_NCR, "ncr", "NCR", },
113 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
114 { IH_OS_PSOS, "psos", "pSOS", },
115 { IH_OS_SCO, "sco", "SCO", },
116 { IH_OS_SOLARIS, "solaris", "Solaris", },
117 { IH_OS_SVR4, "svr4", "SVR4", },
118#endif
119 { -1, "", "", },
120};
121
Mike Frysinger7edb1862010-10-20 07:17:39 -0400122static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000123 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100124 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
125 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400126 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100127 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700128 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000129 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
130 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
131 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100132 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000133 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000134 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100135 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
136 { IH_TYPE_SCRIPT, "script", "Script", },
137 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000138 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200139 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100140 { -1, "", "", },
141};
142
Mike Frysinger7edb1862010-10-20 07:17:39 -0400143static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { IH_COMP_NONE, "none", "uncompressed", },
145 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
146 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200147 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100148 { IH_COMP_LZO, "lzo", "lzo compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { -1, "", "", },
150};
151
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100152/*****************************************************************************/
153/* Legacy format routines */
154/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000155int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100156{
157 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000158 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100159 image_header_t header;
160
161 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000162 memmove(&header, (char *)hdr, image_get_header_size());
163 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100164
Stephen Warren712fbcf2011-10-18 11:11:49 +0000165 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100166
Stephen Warren712fbcf2011-10-18 11:11:49 +0000167 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100168}
169
Stephen Warren712fbcf2011-10-18 11:11:49 +0000170int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100171{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000172 ulong data = image_get_data(hdr);
173 ulong len = image_get_data_size(hdr);
174 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100175
Stephen Warren712fbcf2011-10-18 11:11:49 +0000176 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100177}
178
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100179/**
180 * image_multi_count - get component (sub-image) count
181 * @hdr: pointer to the header of the multi component image
182 *
183 * image_multi_count() returns number of components in a multi
184 * component image.
185 *
186 * Note: no checking of the image type is done, caller must pass
187 * a valid multi component image.
188 *
189 * returns:
190 * number of components
191 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000192ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100193{
194 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100195 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100196
197 /* get start of the image payload, which in case of multi
198 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000199 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100200
201 /* count non empty slots */
202 for (i = 0; size[i]; ++i)
203 count++;
204
205 return count;
206}
207
208/**
209 * image_multi_getimg - get component data address and size
210 * @hdr: pointer to the header of the multi component image
211 * @idx: index of the requested component
212 * @data: pointer to a ulong variable, will hold component data address
213 * @len: pointer to a ulong variable, will hold component size
214 *
215 * image_multi_getimg() returns size and data address for the requested
216 * component in a multi component image.
217 *
218 * Note: no checking of the image type is done, caller must pass
219 * a valid multi component image.
220 *
221 * returns:
222 * data address and size of the component, if idx is valid
223 * 0 in data and len, if idx is out of range
224 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000225void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100226 ulong *data, ulong *len)
227{
228 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100229 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700230 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100231
232 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000233 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100234
235 /* get start of the image payload, which in case of multi
236 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000237 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100238
239 /* get address of the proper component data start, which means
240 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100242
243 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100245 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100246
247 /* go over all indices preceding requested component idx */
248 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700249 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251 }
252
253 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700254 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100255 } else {
256 *len = 0;
257 *data = 0;
258 }
259}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100260
Stephen Warren712fbcf2011-10-18 11:11:49 +0000261static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100262{
263 const char *os, *arch, *type, *comp;
264
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265 os = genimg_get_os_name(image_get_os(hdr));
266 arch = genimg_get_arch_name(image_get_arch(hdr));
267 type = genimg_get_type_name(image_get_type(hdr));
268 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100269
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100271}
272
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100273/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200274 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200275 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100276 * @p: pointer to prefix string
277 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200278 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100279 * The routine prints out all header fields followed by the size/offset data
280 * for MULTI/SCRIPT images.
281 *
282 * returns:
283 * no returned results
284 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100286{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200287 const image_header_t *hdr = (const image_header_t *)ptr;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200288 const char *p;
289
Simon Glass1fe7d932013-05-08 08:05:58 +0000290 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000291 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000292 if (IMAGE_ENABLE_TIMESTAMP) {
293 printf("%sCreated: ", p);
294 genimg_print_time((time_t)image_get_time(hdr));
295 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000296 printf("%sImage Type: ", p);
297 image_print_type(hdr);
298 printf("%sData Size: ", p);
299 genimg_print_size(image_get_data_size(hdr));
300 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
301 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100302
Stephen Warren712fbcf2011-10-18 11:11:49 +0000303 if (image_check_type(hdr, IH_TYPE_MULTI) ||
304 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100305 int i;
306 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000307 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100308
Stephen Warren712fbcf2011-10-18 11:11:49 +0000309 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100310 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000311 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100312
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 printf("%s Image %d: ", p, i);
314 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100315
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100317 /*
318 * the user may need to know offsets
319 * if planning to do something with
320 * multiple files
321 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000322 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100323 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100324 }
325 }
326}
327
Marian Balakowicz570abb02008-02-29 15:59:59 +0100328
329#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100330/**
331 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100332 * @rd_addr: ramdisk image start address
333 * @arch: expected ramdisk architecture
334 * @verify: checksum verification flag
335 *
336 * image_get_ramdisk() returns a pointer to the verified ramdisk image
337 * header. Routine receives image start address and expected architecture
338 * flag. Verification done covers data and header integrity and os/type/arch
339 * fields checking.
340 *
341 * If dataflash support is enabled routine checks for dataflash addresses
342 * and handles required dataflash reads.
343 *
344 * returns:
345 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600346 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100347 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000348static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100349 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100350{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200351 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100352
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 if (!image_check_magic(rd_hdr)) {
354 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000355 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600356 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100357 }
358
Stephen Warren712fbcf2011-10-18 11:11:49 +0000359 if (!image_check_hcrc(rd_hdr)) {
360 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000361 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600362 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100363 }
364
Simon Glass770605e2012-02-13 13:51:18 +0000365 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100367
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100368 if (verify) {
369 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000370 if (!image_check_dcrc(rd_hdr)) {
371 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000372 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600373 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100374 }
375 puts("OK\n");
376 }
377
Simon Glass770605e2012-02-13 13:51:18 +0000378 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100379
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
381 !image_check_arch(rd_hdr, arch) ||
382 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
383 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100384 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000385 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600386 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100387 }
388
389 return rd_hdr;
390}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100391#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100392
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100393/*****************************************************************************/
394/* Shared dual-format routines */
395/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100396#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600397ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
398ulong save_addr; /* Default Save Address */
399ulong save_size; /* Default Save Size (in bytes) */
400
401static int on_loadaddr(const char *name, const char *value, enum env_op op,
402 int flags)
403{
404 switch (op) {
405 case env_op_create:
406 case env_op_overwrite:
407 load_addr = simple_strtoul(value, NULL, 16);
408 break;
409 default:
410 break;
411 }
412
413 return 0;
414}
415U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
416
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100417ulong getenv_bootm_low(void)
418{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000419 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100420 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000421 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100422 return tmp;
423 }
424
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200425#if defined(CONFIG_SYS_SDRAM_BASE)
426 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100427#elif defined(CONFIG_ARM)
428 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100429#else
430 return 0;
431#endif
432}
433
Becky Bruce391fd932008-06-09 20:37:18 -0500434phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100435{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500436 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000437 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100438 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000439 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100440 return tmp;
441 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500442 s = getenv("bootm_low");
443 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000444 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500445 else
446 tmp = 0;
447
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100448
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100449#if defined(CONFIG_ARM)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500450 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100451#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500452 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100453#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100454}
455
Grant Likelyc3624e62011-03-28 09:58:43 +0000456phys_size_t getenv_bootm_mapsize(void)
457{
458 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000459 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000460 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000461 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000462 return tmp;
463 }
464
465#if defined(CONFIG_SYS_BOOTMAPSZ)
466 return CONFIG_SYS_BOOTMAPSZ;
467#else
468 return getenv_bootm_size();
469#endif
470}
471
Stephen Warren712fbcf2011-10-18 11:11:49 +0000472void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100473{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400474 if (to == from)
475 return;
476
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100477#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
478 while (len > 0) {
479 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000480 WATCHDOG_RESET();
481 memmove(to, from, tail);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100482 to += tail;
483 from += tail;
484 len -= tail;
485 }
486#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000487 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100488#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
489}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100490#endif /* !USE_HOSTCC */
491
Stephen Warren712fbcf2011-10-18 11:11:49 +0000492void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100493{
494#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000495 printf("%d Bytes = ", size);
496 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100497#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000498 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100499 size, (double)size / 1.024e3,
500 (double)size / 1.048576e6);
501#endif
502}
503
Simon Glass859e92b2013-05-07 06:11:51 +0000504#if IMAGE_ENABLE_TIMESTAMP
505void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100506{
507#ifndef USE_HOSTCC
508 struct rtc_time tm;
509
Stephen Warren712fbcf2011-10-18 11:11:49 +0000510 to_tm(timestamp, &tm);
511 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100512 tm.tm_year, tm.tm_mon, tm.tm_mday,
513 tm.tm_hour, tm.tm_min, tm.tm_sec);
514#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000515 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100516#endif
517}
Simon Glass859e92b2013-05-07 06:11:51 +0000518#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100519
520/**
521 * get_table_entry_name - translate entry id to long name
522 * @table: pointer to a translation table for entries of a specific type
523 * @msg: message to be returned when translation fails
524 * @id: entry id to be translated
525 *
526 * get_table_entry_name() will go over translation table trying to find
527 * entry that matches given id. If matching entry is found, its long
528 * name is returned to the caller.
529 *
530 * returns:
531 * long entry name if translation succeeds
532 * msg otherwise
533 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400534char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100535{
536 for (; table->id >= 0; ++table) {
537 if (table->id == id)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200538#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Scott Woode3d1ac72009-04-02 16:15:10 -0500539 return table->lname;
540#else
541 return table->lname + gd->reloc_off;
542#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100543 }
544 return (msg);
545}
546
Stephen Warren712fbcf2011-10-18 11:11:49 +0000547const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100548{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000549 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100550}
551
Stephen Warren712fbcf2011-10-18 11:11:49 +0000552const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100553{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000554 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
555 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556}
557
Stephen Warren712fbcf2011-10-18 11:11:49 +0000558const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000560 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100561}
562
Stephen Warren712fbcf2011-10-18 11:11:49 +0000563const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100564{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000565 return (get_table_entry_name(uimage_comp, "Unknown Compression",
566 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100567}
568
569/**
570 * get_table_entry_id - translate short entry name to id
571 * @table: pointer to a translation table for entries of a specific type
572 * @table_name: to be used in case of error
573 * @name: entry short name to be translated
574 *
575 * get_table_entry_id() will go over translation table trying to find
576 * entry that matches given short name. If matching entry is found,
577 * its id returned to the caller.
578 *
579 * returns:
580 * entry id if translation succeeds
581 * -1 otherwise
582 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400583int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100584 const char *table_name, const char *name)
585{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400586 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100587#ifdef USE_HOSTCC
588 int first = 1;
589
590 for (t = table; t->id >= 0; ++t) {
591 if (t->sname && strcasecmp(t->sname, name) == 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000592 return(t->id);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100593 }
594
Stephen Warren712fbcf2011-10-18 11:11:49 +0000595 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100596 for (t = table; t->id >= 0; ++t) {
597 if (t->sname == NULL)
598 continue;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000599 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100600 first = 0;
601 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000602 fprintf(stderr, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100603#else
604 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200605#ifdef CONFIG_NEEDS_MANUAL_RELOC
Scott Woode3d1ac72009-04-02 16:15:10 -0500606 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200607#else
608 if (t->sname && strcmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500609#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100610 return (t->id);
611 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000612 debug("Invalid %s Type: %s\n", table_name, name);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100613#endif /* USE_HOSTCC */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100614 return (-1);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100615}
616
Stephen Warren712fbcf2011-10-18 11:11:49 +0000617int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100618{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000619 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100620}
621
Stephen Warren712fbcf2011-10-18 11:11:49 +0000622int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100623{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000624 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100625}
626
Stephen Warren712fbcf2011-10-18 11:11:49 +0000627int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100628{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000629 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100630}
631
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100633{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000634 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100635}
636
637#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100638/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100639 * genimg_get_format - get image format type
640 * @img_addr: image start address
641 *
642 * genimg_get_format() checks whether provided address points to a valid
643 * legacy or FIT image.
644 *
645 * New uImage format and FDT blob are based on a libfdt. FDT blob
646 * may be passed directly or embedded in a FIT image. In both situations
647 * genimg_get_format() must be able to dectect libfdt header.
648 *
649 * returns:
650 * image format type or IMAGE_FORMAT_INVALID if no image is present
651 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000652int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100653{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200654 ulong format = IMAGE_FORMAT_INVALID;
655 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100656
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200657 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100658 if (image_check_magic(hdr))
659 format = IMAGE_FORMAT_LEGACY;
660#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
661 else {
Masahiro Yamada2f0877c2013-09-19 12:10:18 +0900662 if (fdt_check_header(img_addr) == 0)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100663 format = IMAGE_FORMAT_FIT;
664 }
665#endif
666
667 return format;
668}
669
670/**
671 * genimg_get_image - get image from special storage (if necessary)
672 * @img_addr: image start address
673 *
674 * genimg_get_image() checks if provided image start adddress is located
675 * in a dataflash storage. If so, image is moved to a system RAM memory.
676 *
677 * returns:
678 * image start address after possible relocation from special storage
679 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000680ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100681{
682 ulong ram_addr = img_addr;
683
684#ifdef CONFIG_HAS_DATAFLASH
685 ulong h_size, d_size;
686
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000688 void *buf;
689
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100690 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200691 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100692
693 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000694 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100695#if defined(CONFIG_FIT)
696 if (sizeof(struct fdt_header) > h_size)
697 h_size = sizeof(struct fdt_header);
698#endif
699
700 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000701 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100702 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
703
Simon Glass35e7b0f2013-05-07 06:12:03 +0000704 buf = map_sysmem(ram_addr, 0);
705 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100706
707 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000708 switch (genimg_get_format(buf)) {
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100709 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000710 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000711 debug(" Legacy format image found at 0x%08lx, "
712 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713 ram_addr, d_size);
714 break;
715#if defined(CONFIG_FIT)
716 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000717 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000718 debug(" FIT/FDT format image found at 0x%08lx, "
719 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720 ram_addr, d_size);
721 break;
722#endif
723 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000724 printf(" No valid image found at 0x%08lx\n",
725 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100726 return ram_addr;
727 }
728
729 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000730 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100731 "%08lx to RAM address %08lx\n", img_addr + h_size,
732 ram_addr + h_size);
733
Stephen Warren712fbcf2011-10-18 11:11:49 +0000734 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000735 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100736
737 }
738#endif /* CONFIG_HAS_DATAFLASH */
739
740 return ram_addr;
741}
742
743/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100744 * fit_has_config - check if there is a valid FIT configuration
745 * @images: pointer to the bootm command headers structure
746 *
747 * fit_has_config() checks if there is a FIT configuration in use
748 * (if FTI support is present).
749 *
750 * returns:
751 * 0, no FIT support or no configuration found
752 * 1, configuration found
753 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000754int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100755{
756#if defined(CONFIG_FIT)
757 if (images->fit_uname_cfg)
758 return 1;
759#endif
760 return 0;
761}
762
763/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100764 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100765 * @argc: command argument count
766 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100767 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100768 * @arch: expected ramdisk architecture
769 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
770 * @rd_end: pointer to a ulong variable, will hold ramdisk end
771 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100772 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100773 * Curently supported are the following ramdisk sources:
774 * - multicomponent kernel/ramdisk image,
775 * - commandline provided address of decicated ramdisk image.
776 *
777 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100778 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100779 * rd_start and rd_end are set to ramdisk start/end addresses if
780 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100781 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500782 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100783 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100784 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000785int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100786 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100787{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100788 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100789 ulong rd_data, rd_len;
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200790 const image_header_t *rd_hdr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000791 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200792#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000793 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200794#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100795#if defined(CONFIG_FIT)
Simon Glassf320a4d2013-07-10 23:08:10 -0700796 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100797 const char *fit_uname_ramdisk = NULL;
798 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100799 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100800#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700801 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100802
Marian Balakowiczc8779642008-03-12 10:12:37 +0100803 *rd_start = 0;
804 *rd_end = 0;
805
Simon Glass983c72f2013-06-11 11:14:46 -0700806 if (argc >= 2)
807 select = argv[1];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100808 /*
809 * Look for a '-' which indicates to ignore the
810 * ramdisk argument
811 */
Simon Glass983c72f2013-06-11 11:14:46 -0700812 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000813 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100814 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700815 } else if (select || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100816#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700817 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100818 /*
819 * If the init ramdisk comes from the FIT image and
820 * the FIT image address is omitted in the command
821 * line argument, try to use os FIT image address or
822 * default load address.
823 */
824 if (images->fit_uname_os)
825 default_addr = (ulong)images->fit_hdr_os;
826 else
827 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100828
Simon Glass983c72f2013-06-11 11:14:46 -0700829 if (fit_parse_conf(select, default_addr,
830 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000831 debug("* ramdisk: config '%s' from image at "
832 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100833 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700834 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100835 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 debug("* ramdisk: subimage '%s' from image at "
837 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100838 fit_uname_ramdisk, rd_addr);
839 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100840#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100841 {
Simon Glass983c72f2013-06-11 11:14:46 -0700842 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843 debug("* ramdisk: cmdline image address = "
844 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100845 rd_addr);
846 }
847#if defined(CONFIG_FIT)
848 } else {
849 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000850 * command argument. If the property is not defined,
851 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100852 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000853 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000854 rd_noffset = fit_get_node_from_config(images,
855 FIT_RAMDISK_PROP, rd_addr);
856 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -0500857 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +0000858 else if (rd_noffset < 0)
859 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100860 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100861#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100862
863 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000864 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865
866 /*
867 * Check if there is an initrd image at the
868 * address provided in the second bootm argument
869 * check image type, for FIT images get FIT node.
870 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000871 buf = map_sysmem(rd_addr, 0);
872 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100873 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000874 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100875 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100876
Simon Glass770605e2012-02-13 13:51:18 +0000877 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000878 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100879 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100880
Marian Balakowiczc8779642008-03-12 10:12:37 +0100881 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600882 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600883
Stephen Warren712fbcf2011-10-18 11:11:49 +0000884 rd_data = image_get_data(rd_hdr);
885 rd_len = image_get_data_size(rd_hdr);
886 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100887 break;
888#if defined(CONFIG_FIT)
889 case IMAGE_FORMAT_FIT:
Simon Glassa51ec632013-05-16 13:53:22 +0000890 rd_noffset = fit_image_load(images, FIT_RAMDISK_PROP,
891 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -0700892 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +0000893 IH_TYPE_RAMDISK,
894 BOOTSTAGE_ID_FIT_RD_START,
Stefano Babice3a5bbc2013-07-12 15:09:23 +0200895 FIT_LOAD_IGNORED, &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +0000896 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +0200897 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100898
Simon Glassa51ec632013-05-16 13:53:22 +0000899 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100900 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100901 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100902 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100903#endif
904 default:
Marek Vasut017e1f32012-03-18 11:47:58 +0000905#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -0700906 end = NULL;
907 if (select)
908 end = strchr(select, ':');
909 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +0000910 rd_len = simple_strtoul(++end, NULL, 16);
911 rd_data = rd_addr;
912 } else
913#endif
914 {
915 puts("Wrong Ramdisk Image Format\n");
916 rd_data = rd_len = rd_load = 0;
917 return 1;
918 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100919 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +0000921 image_check_type(&images->legacy_hdr_os_copy,
922 IH_TYPE_MULTI)) {
923
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100924 /*
925 * Now check if we have a legacy mult-component image,
926 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100927 */
Simon Glass770605e2012-02-13 13:51:18 +0000928 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000929 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100930 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100931 (ulong)images->legacy_hdr_os);
932
Stephen Warren712fbcf2011-10-18 11:11:49 +0000933 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100934 } else {
935 /*
936 * no initrd image
937 */
Simon Glass770605e2012-02-13 13:51:18 +0000938 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100939 rd_len = rd_data = 0;
940 }
941
942 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000943 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100944 } else {
945 *rd_start = rd_data;
946 *rd_end = rd_data + rd_len;
947 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000948 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100949 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -0600950
951 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100952}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100953
John Rigbyfca43cc2010-10-13 13:57:35 -0600954#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100955/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100956 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -0600957 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100958 * @rd_data: ramdisk data start address
959 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100960 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
961 * start address (after possible relocation)
962 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
963 * end address (after possible relocation)
964 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400965 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100966 * variable and if requested ramdisk data is moved to a specified location.
967 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100968 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
969 * start/end addresses if ramdisk image start and len were provided,
970 * otherwise set initrd_start and initrd_end set to zeros.
971 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100972 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100973 * 0 - success
974 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100975 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000976int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -0600977 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100978{
979 char *s;
980 ulong initrd_high;
981 int initrd_copy_to_ram = 1;
982
Stephen Warren712fbcf2011-10-18 11:11:49 +0000983 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100984 /* a value of "no" or a similar string will act like 0,
985 * turning the "load high" feature off. This is intentional.
986 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000987 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100988 if (initrd_high == ~0)
989 initrd_copy_to_ram = 0;
990 } else {
991 /* not set, no restrictions to load high */
992 initrd_high = ~0;
993 }
994
Marian Balakowicz95d449a2008-05-13 15:53:29 +0200995
996#ifdef CONFIG_LOGBUFFER
997 /* Prevent initrd from overwriting logbuffer */
998 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
999#endif
1000
Stephen Warren712fbcf2011-10-18 11:11:49 +00001001 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001002 initrd_high, initrd_copy_to_ram);
1003
1004 if (rd_data) {
1005 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001006 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001007 *initrd_start = rd_data;
1008 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001009 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001010 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001011 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001012 *initrd_start = (ulong)lmb_alloc_base(lmb,
1013 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001014 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001015 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1016 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001017
Kumar Galae822d7f2008-02-27 21:51:49 -06001018 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001019 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001020 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001021 }
Simon Glass770605e2012-02-13 13:51:18 +00001022 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001023
1024 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001025 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001026 *initrd_start, *initrd_end);
1027
Stephen Warren712fbcf2011-10-18 11:11:49 +00001028 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001029 (void *)rd_data, rd_len, CHUNKSZ);
1030
Kumar Gala3b200112011-12-07 04:42:58 +00001031#ifdef CONFIG_MP
1032 /*
1033 * Ensure the image is flushed to memory to handle
1034 * AMP boot scenarios in which we might not be
1035 * HW cache coherent
1036 */
1037 flush_cache((unsigned long)*initrd_start, rd_len);
1038#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001039 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001040 }
1041 } else {
1042 *initrd_start = 0;
1043 *initrd_end = 0;
1044 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001045 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001046 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001047
Kumar Galae822d7f2008-02-27 21:51:49 -06001048 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001049
Kumar Galae822d7f2008-02-27 21:51:49 -06001050error:
1051 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001052}
John Rigbyfca43cc2010-10-13 13:57:35 -06001053#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001054
John Rigbyfca43cc2010-10-13 13:57:35 -06001055#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001056/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001057 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001058 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001059 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1060 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1061 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001062 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001063 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001064 * variable is present its contents is copied to allocated kernel
1065 * command line.
1066 *
1067 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001068 * 0 - success
1069 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001070 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001071int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001072{
1073 char *cmdline;
1074 char *s;
1075
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001076 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001077 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001078
1079 if (cmdline == NULL)
1080 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001081
1082 if ((s = getenv("bootargs")) == NULL)
1083 s = "";
1084
1085 strcpy(cmdline, s);
1086
1087 *cmd_start = (ulong) & cmdline[0];
1088 *cmd_end = *cmd_start + strlen(cmdline);
1089
Stephen Warren712fbcf2011-10-18 11:11:49 +00001090 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001091
Kumar Galae822d7f2008-02-27 21:51:49 -06001092 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001093}
John Rigbyfca43cc2010-10-13 13:57:35 -06001094#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001095
John Rigbyfca43cc2010-10-13 13:57:35 -06001096#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001097/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001098 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001099 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001100 * @kbd: double pointer to board info data
1101 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001102 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001103 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1104 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001105 *
1106 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001107 * 0 - success
1108 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001109 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001111{
Becky Bruce391fd932008-06-09 20:37:18 -05001112 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001113 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001114 if (*kbd == NULL)
1115 return -1;
1116
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001117 **kbd = *(gd->bd);
1118
Stephen Warren712fbcf2011-10-18 11:11:49 +00001119 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001120
1121#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1122 do_bdinfo(NULL, 0, 0, NULL);
1123#endif
1124
Kumar Galae822d7f2008-02-27 21:51:49 -06001125 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001126}
John Rigbyfca43cc2010-10-13 13:57:35 -06001127#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001128
1129#ifdef CONFIG_LMB
1130int image_setup_linux(bootm_headers_t *images)
1131{
1132 ulong of_size = images->ft_len;
1133 char **of_flat_tree = &images->ft_addr;
1134 ulong *initrd_start = &images->initrd_start;
1135 ulong *initrd_end = &images->initrd_end;
1136 struct lmb *lmb = &images->lmb;
1137 ulong rd_len;
1138 int ret;
1139
1140 if (IMAGE_ENABLE_OF_LIBFDT)
1141 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1142
1143 if (IMAGE_BOOT_GET_CMDLINE) {
1144 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1145 &images->cmdline_end);
1146 if (ret) {
1147 puts("ERROR with allocation of cmdline\n");
1148 return ret;
1149 }
1150 }
1151 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1152 rd_len = images->rd_end - images->rd_start;
1153 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1154 initrd_start, initrd_end);
1155 if (ret)
1156 return ret;
1157 }
1158
1159 if (IMAGE_ENABLE_OF_LIBFDT) {
1160 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1161 if (ret)
1162 return ret;
1163 }
1164
1165 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1166 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1167 if (ret)
1168 return ret;
1169 }
1170
1171 return 0;
1172}
1173#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001174#endif /* !USE_HOSTCC */