blob: 9e850c03dbd3933993bc0378769138accb628b68 [file] [log] [blame]
Marian Balakowicz41d71ed2008-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 Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01008 */
Marian Balakowicz9c701e82008-01-31 13:57:17 +01009
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz95418502008-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
Marian Balakowicza1cc1472008-02-21 17:27:41 +010018#include <rtc.h>
Marian Balakowicza1cc1472008-02-21 17:27:41 +010019
Joe Hershbergerd1f5ae92012-12-11 22:16:28 -060020#include <environment.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010021#include <image.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050022#include <mapmem.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010023
Simon Glass8b426922016-02-22 22:55:45 -070024#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamada75f82d02018-03-05 01:20:11 +090025#include <linux/libfdt.h>
Marian Balakowiczc536d6f2008-02-21 17:20:19 +010026#include <fdt_support.h>
Michal Simekebae78b2016-05-17 14:03:50 +020027#include <fpga.h>
28#include <xilinx.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010029#endif
30
Andy Fleming72c23be2008-04-02 16:19:07 -050031#include <u-boot/md5.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020032#include <u-boot/sha1.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090033#include <linux/errno.h>
Simon Glass49648062013-05-07 06:12:03 +000034#include <asm/io.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010035
Marian Balakowicz2efc2642008-01-31 13:58:13 +010036#ifdef CONFIG_CMD_BDI
Wolfgang Denk6262d0212010-06-28 22:00:46 +020037extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowicz2efc2642008-01-31 13:58:13 +010038#endif
39
40DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz61fde552008-02-27 11:01:04 +010041
Heiko Schocher515eb122014-05-28 11:33:33 +020042#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren6904b6e2011-10-18 11:11:49 +000043static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +010044 int verify);
Heiko Schocher515eb122014-05-28 11:33:33 +020045#endif
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010046#else
Marian Balakowicz95418502008-01-31 13:55:39 +010047#include "mkimage.h"
Andy Fleming72c23be2008-04-02 16:19:07 -050048#include <u-boot/md5.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010049#include <time.h>
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010050#include <image.h>
Heiko Schocher62cb1562015-06-29 09:10:46 +020051
52#ifndef __maybe_unused
53# define __maybe_unused /* unimplemented */
54#endif
Marian Balakowicze227fbb2008-02-29 21:24:06 +010055#endif /* !USE_HOSTCC*/
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010056
Simon Glass9adb6862013-02-24 17:33:25 +000057#include <u-boot/crc.h>
58
Simon Glass9ca37422013-05-08 08:06:01 +000059#ifndef CONFIG_SYS_BARGSIZE
60#define CONFIG_SYS_BARGSIZE 512
61#endif
62
Mike Frysingercf2feb12010-10-20 07:17:39 -040063static const table_entry_t uimage_arch[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -060064 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010065 { IH_ARCH_ALPHA, "alpha", "Alpha", },
66 { IH_ARCH_ARM, "arm", "ARM", },
67 { IH_ARCH_I386, "x86", "Intel x86", },
68 { IH_ARCH_IA64, "ia64", "IA64", },
69 { IH_ARCH_M68K, "m68k", "M68K", },
70 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
71 { IH_ARCH_MIPS, "mips", "MIPS", },
72 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010073 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Erickson80f51b82008-05-04 16:45:01 -070074 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010075 { IH_ARCH_PPC, "ppc", "PowerPC", },
76 { IH_ARCH_S390, "s390", "IBM S390", },
77 { IH_ARCH_SH, "sh", "SuperH", },
78 { IH_ARCH_SPARC, "sparc", "SPARC", },
79 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
80 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
81 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin354b4e32011-10-19 20:41:09 +000082 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson15c669c2011-11-26 19:04:50 +000083 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass49648062013-05-07 06:12:03 +000084 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng85fd5f12013-12-14 11:47:35 +080085 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkin78bc86f2014-02-04 12:56:16 +040086 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass9d428302014-10-10 08:21:57 -060087 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankel41e37372016-08-10 18:36:43 +030088 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010089 { -1, "", "", },
90};
91
Mike Frysingercf2feb12010-10-20 07:17:39 -040092static const table_entry_t uimage_os[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -060093 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich1bf3eb22017-09-13 21:29:29 +020094 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010095 { IH_OS_LINUX, "linux", "Linux", },
96#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
97 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
98#endif
99 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren29a58662010-09-28 11:05:36 +0200100 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000101 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100102 { IH_OS_RTEMS, "rtems", "RTEMS", },
103 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800104 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100105#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
106 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100107#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500108#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
109 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
110#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100111#ifdef USE_HOSTCC
112 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
113 { IH_OS_DELL, "dell", "Dell", },
114 { IH_OS_ESIX, "esix", "Esix", },
115 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
116 { IH_OS_IRIX, "irix", "Irix", },
117 { IH_OS_NCR, "ncr", "NCR", },
118 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
119 { IH_OS_PSOS, "psos", "pSOS", },
120 { IH_OS_SCO, "sco", "SCO", },
121 { IH_OS_SOLARIS, "solaris", "Solaris", },
122 { IH_OS_SVR4, "svr4", "SVR4", },
123#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100124#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
125 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
126#endif
127
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100128 { -1, "", "", },
129};
130
Mike Frysingercf2feb12010-10-20 07:17:39 -0400131static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000132 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100133 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
134 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400135 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400136 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100137 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700138 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000139 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
140 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600141 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100142 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000143 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000144 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100145 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
146 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning685e87f2014-03-06 15:40:50 +1300147 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100148 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000149 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200150 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200151 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600152 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200153 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600154 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600155 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600156 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200157 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000158 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200159 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Michal Simek0a130b12016-05-17 13:58:44 +0200160 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600161 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100162 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500163 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100164 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100165 { -1, "", "", },
166};
167
Mike Frysingercf2feb12010-10-20 07:17:39 -0400168static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100169 { IH_COMP_NONE, "none", "uncompressed", },
170 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
171 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200172 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100173 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700174 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100175 { -1, "", "", },
176};
177
Simon Glass7da41d52016-06-30 10:52:14 -0600178struct table_info {
179 const char *desc;
180 int count;
181 const table_entry_t *table;
182};
183
184static const struct table_info table_info[IH_COUNT] = {
185 { "architecture", IH_ARCH_COUNT, uimage_arch },
186 { "compression", IH_COMP_COUNT, uimage_comp },
187 { "operating system", IH_OS_COUNT, uimage_os },
188 { "image type", IH_TYPE_COUNT, uimage_type },
189};
190
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100191/*****************************************************************************/
192/* Legacy format routines */
193/*****************************************************************************/
Stephen Warren6904b6e2011-10-18 11:11:49 +0000194int image_check_hcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100195{
196 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000197 ulong len = image_get_header_size();
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100198 image_header_t header;
199
200 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000201 memmove(&header, (char *)hdr, image_get_header_size());
202 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100203
Stephen Warren6904b6e2011-10-18 11:11:49 +0000204 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100205
Stephen Warren6904b6e2011-10-18 11:11:49 +0000206 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100207}
208
Stephen Warren6904b6e2011-10-18 11:11:49 +0000209int image_check_dcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100210{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000211 ulong data = image_get_data(hdr);
212 ulong len = image_get_data_size(hdr);
213 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100214
Stephen Warren6904b6e2011-10-18 11:11:49 +0000215 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100216}
217
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100218/**
219 * image_multi_count - get component (sub-image) count
220 * @hdr: pointer to the header of the multi component image
221 *
222 * image_multi_count() returns number of components in a multi
223 * component image.
224 *
225 * Note: no checking of the image type is done, caller must pass
226 * a valid multi component image.
227 *
228 * returns:
229 * number of components
230 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000231ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100232{
233 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100234 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100235
236 /* get start of the image payload, which in case of multi
237 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000238 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100239
240 /* count non empty slots */
241 for (i = 0; size[i]; ++i)
242 count++;
243
244 return count;
245}
246
247/**
248 * image_multi_getimg - get component data address and size
249 * @hdr: pointer to the header of the multi component image
250 * @idx: index of the requested component
251 * @data: pointer to a ulong variable, will hold component data address
252 * @len: pointer to a ulong variable, will hold component size
253 *
254 * image_multi_getimg() returns size and data address for the requested
255 * component in a multi component image.
256 *
257 * Note: no checking of the image type is done, caller must pass
258 * a valid multi component image.
259 *
260 * returns:
261 * data address and size of the component, if idx is valid
262 * 0 in data and len, if idx is out of range
263 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000264void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100265 ulong *data, ulong *len)
266{
267 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100268 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700269 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100270
271 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000272 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100273
274 /* get start of the image payload, which in case of multi
275 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000276 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100277
278 /* get address of the proper component data start, which means
279 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000280 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100281
282 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000283 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100284 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100285
286 /* go over all indices preceding requested component idx */
287 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700288 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000289 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100290 }
291
292 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700293 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100294 } else {
295 *len = 0;
296 *data = 0;
297 }
298}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100299
Stephen Warren6904b6e2011-10-18 11:11:49 +0000300static void image_print_type(const image_header_t *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100301{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200302 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100303
Stephen Warren6904b6e2011-10-18 11:11:49 +0000304 os = genimg_get_os_name(image_get_os(hdr));
305 arch = genimg_get_arch_name(image_get_arch(hdr));
306 type = genimg_get_type_name(image_get_type(hdr));
307 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100308
Stephen Warren6904b6e2011-10-18 11:11:49 +0000309 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100310}
311
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100312/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200313 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200314 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100315 * @p: pointer to prefix string
316 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200317 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100318 * The routine prints out all header fields followed by the size/offset data
319 * for MULTI/SCRIPT images.
320 *
321 * returns:
322 * no returned results
323 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000324void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100325{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200326 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200327 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200328
Simon Glass1030f162013-05-08 08:05:58 +0000329 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000330 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000331 if (IMAGE_ENABLE_TIMESTAMP) {
332 printf("%sCreated: ", p);
333 genimg_print_time((time_t)image_get_time(hdr));
334 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000335 printf("%sImage Type: ", p);
336 image_print_type(hdr);
337 printf("%sData Size: ", p);
338 genimg_print_size(image_get_data_size(hdr));
339 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
340 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100341
Stephen Warren6904b6e2011-10-18 11:11:49 +0000342 if (image_check_type(hdr, IH_TYPE_MULTI) ||
343 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100344 int i;
345 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000346 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100347
Stephen Warren6904b6e2011-10-18 11:11:49 +0000348 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100349 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000350 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100351
Stephen Warren6904b6e2011-10-18 11:11:49 +0000352 printf("%s Image %d: ", p, i);
353 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100354
Stephen Warren6904b6e2011-10-18 11:11:49 +0000355 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100356 /*
357 * the user may need to know offsets
358 * if planning to do something with
359 * multiple files
360 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000361 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100362 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100363 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100364 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
365 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
366 image_get_load(hdr) - image_get_header_size(),
367 image_get_size(hdr) + image_get_header_size()
368 - 0x1FE0);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100369 }
370}
371
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100372
373#ifndef USE_HOSTCC
Heiko Schocher515eb122014-05-28 11:33:33 +0200374#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100375/**
376 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100377 * @rd_addr: ramdisk image start address
378 * @arch: expected ramdisk architecture
379 * @verify: checksum verification flag
380 *
381 * image_get_ramdisk() returns a pointer to the verified ramdisk image
382 * header. Routine receives image start address and expected architecture
383 * flag. Verification done covers data and header integrity and os/type/arch
384 * fields checking.
385 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100386 * returns:
387 * pointer to a ramdisk image header, if image was found and valid
388 * otherwise, return NULL
389 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000390static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100391 int verify)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100392{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200393 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100394
Stephen Warren6904b6e2011-10-18 11:11:49 +0000395 if (!image_check_magic(rd_hdr)) {
396 puts("Bad Magic Number\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000397 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100398 return NULL;
399 }
400
Stephen Warren6904b6e2011-10-18 11:11:49 +0000401 if (!image_check_hcrc(rd_hdr)) {
402 puts("Bad Header Checksum\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000403 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100404 return NULL;
405 }
406
Simon Glass0169e6b2012-02-13 13:51:18 +0000407 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000408 image_print_contents(rd_hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100409
410 if (verify) {
411 puts(" Verifying Checksum ... ");
Stephen Warren6904b6e2011-10-18 11:11:49 +0000412 if (!image_check_dcrc(rd_hdr)) {
413 puts("Bad Data CRC\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000414 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100415 return NULL;
416 }
417 puts("OK\n");
418 }
419
Simon Glass0169e6b2012-02-13 13:51:18 +0000420 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100421
Stephen Warren6904b6e2011-10-18 11:11:49 +0000422 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
423 !image_check_arch(rd_hdr, arch) ||
424 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
425 printf("No Linux %s Ramdisk Image\n",
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100426 genimg_get_arch_name(arch));
Simon Glass0169e6b2012-02-13 13:51:18 +0000427 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100428 return NULL;
429 }
430
431 return rd_hdr;
432}
Heiko Schocher515eb122014-05-28 11:33:33 +0200433#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100434#endif /* !USE_HOSTCC */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100435
436/*****************************************************************************/
437/* Shared dual-format routines */
438/*****************************************************************************/
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100439#ifndef USE_HOSTCC
Joe Hershbergerd1f5ae92012-12-11 22:16:28 -0600440ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
441ulong save_addr; /* Default Save Address */
442ulong save_size; /* Default Save Size (in bytes) */
443
444static int on_loadaddr(const char *name, const char *value, enum env_op op,
445 int flags)
446{
447 switch (op) {
448 case env_op_create:
449 case env_op_overwrite:
450 load_addr = simple_strtoul(value, NULL, 16);
451 break;
452 default:
453 break;
454 }
455
456 return 0;
457}
458U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
459
Simon Glassda1a1342017-08-03 12:22:15 -0600460ulong env_get_bootm_low(void)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100461{
Simon Glass64b723f2017-08-03 12:22:12 -0600462 char *s = env_get("bootm_low");
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100463 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000464 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100465 return tmp;
466 }
467
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200468#if defined(CONFIG_SYS_SDRAM_BASE)
469 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowicz2499b042008-03-12 12:14:15 +0100470#elif defined(CONFIG_ARM)
471 return gd->bd->bi_dram[0].start;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100472#else
473 return 0;
474#endif
475}
476
Simon Glassda1a1342017-08-03 12:22:15 -0600477phys_size_t env_get_bootm_size(void)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100478{
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900479 phys_size_t tmp, size;
480 phys_addr_t start;
Simon Glass64b723f2017-08-03 12:22:12 -0600481 char *s = env_get("bootm_size");
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100482 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000483 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100484 return tmp;
485 }
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900486
487#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
488 start = gd->bd->bi_dram[0].start;
489 size = gd->bd->bi_dram[0].size;
490#else
491 start = gd->bd->bi_memstart;
492 size = gd->bd->bi_memsize;
493#endif
494
Simon Glass64b723f2017-08-03 12:22:12 -0600495 s = env_get("bootm_low");
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500496 if (s)
Stephen Warren6904b6e2011-10-18 11:11:49 +0000497 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500498 else
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900499 tmp = start;
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500500
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900501 return size - (tmp - start);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100502}
503
Simon Glassda1a1342017-08-03 12:22:15 -0600504phys_size_t env_get_bootm_mapsize(void)
Grant Likely26396382011-03-28 09:58:43 +0000505{
506 phys_size_t tmp;
Simon Glass64b723f2017-08-03 12:22:12 -0600507 char *s = env_get("bootm_mapsize");
Grant Likely26396382011-03-28 09:58:43 +0000508 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000509 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likely26396382011-03-28 09:58:43 +0000510 return tmp;
511 }
512
513#if defined(CONFIG_SYS_BOOTMAPSZ)
514 return CONFIG_SYS_BOOTMAPSZ;
515#else
Simon Glassda1a1342017-08-03 12:22:15 -0600516 return env_get_bootm_size();
Grant Likely26396382011-03-28 09:58:43 +0000517#endif
518}
519
Stephen Warren6904b6e2011-10-18 11:11:49 +0000520void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100521{
Larry Johnsone4551002010-04-20 08:09:43 -0400522 if (to == from)
523 return;
524
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100525#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800526 if (to > from) {
527 from += len;
528 to += len;
529 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100530 while (len > 0) {
531 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000532 WATCHDOG_RESET();
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800533 if (to > from) {
534 to -= tail;
535 from -= tail;
536 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000537 memmove(to, from, tail);
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800538 if (to < from) {
539 to += tail;
540 from += tail;
541 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100542 len -= tail;
543 }
544#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000545 memmove(to, from, len);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100546#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
547}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100548#endif /* !USE_HOSTCC */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100549
Stephen Warren6904b6e2011-10-18 11:11:49 +0000550void genimg_print_size(uint32_t size)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100551{
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100552#ifndef USE_HOSTCC
Stephen Warren6904b6e2011-10-18 11:11:49 +0000553 printf("%d Bytes = ", size);
554 print_size(size, "\n");
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100555#else
xypron.glpk@gmx.de1377bff2017-01-04 14:04:44 +0100556 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100557 size, (double)size / 1.024e3,
558 (double)size / 1.048576e6);
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100559#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100560}
561
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000562#if IMAGE_ENABLE_TIMESTAMP
563void genimg_print_time(time_t timestamp)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100564{
565#ifndef USE_HOSTCC
566 struct rtc_time tm;
567
Simon Glass12994662015-04-20 12:37:18 -0600568 rtc_to_tm(timestamp, &tm);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000569 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100570 tm.tm_year, tm.tm_mon, tm.tm_mday,
571 tm.tm_hour, tm.tm_min, tm.tm_sec);
572#else
Stephen Warren6904b6e2011-10-18 11:11:49 +0000573 printf("%s", ctime(&timestamp));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100574#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100575}
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000576#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100577
Simon Glass434a31b2015-06-23 15:38:25 -0600578const table_entry_t *get_table_entry(const table_entry_t *table, int id)
579{
580 for (; table->id >= 0; ++table) {
581 if (table->id == id)
582 return table;
583 }
584 return NULL;
585}
586
Simon Glass19864332016-06-30 10:52:16 -0600587static const char *unknown_msg(enum ih_category category)
588{
Simon Glassddb26072016-10-31 10:21:09 -0600589 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600590 static char msg[30];
591
Simon Glassddb26072016-10-31 10:21:09 -0600592 strcpy(msg, unknown_str);
593 strncat(msg, table_info[category].desc,
594 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600595
596 return msg;
597}
598
599/**
600 * get_cat_table_entry_name - translate entry id to long name
601 * @category: category to look up (enum ih_category)
602 * @id: entry id to be translated
603 *
604 * This will scan the translation table trying to find the entry that matches
605 * the given id.
606 *
607 * @retur long entry name if translation succeeds; error string on failure
608 */
609const char *genimg_get_cat_name(enum ih_category category, uint id)
610{
611 const table_entry_t *entry;
612
613 entry = get_table_entry(table_info[category].table, id);
614 if (!entry)
615 return unknown_msg(category);
616#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
617 return entry->lname;
618#else
619 return entry->lname + gd->reloc_off;
620#endif
621}
622
623/**
624 * get_cat_table_entry_short_name - translate entry id to short name
625 * @category: category to look up (enum ih_category)
626 * @id: entry id to be translated
627 *
628 * This will scan the translation table trying to find the entry that matches
629 * the given id.
630 *
631 * @retur short entry name if translation succeeds; error string on failure
632 */
633const char *genimg_get_cat_short_name(enum ih_category category, uint id)
634{
635 const table_entry_t *entry;
636
637 entry = get_table_entry(table_info[category].table, id);
638 if (!entry)
639 return unknown_msg(category);
640#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
641 return entry->sname;
642#else
643 return entry->sname + gd->reloc_off;
644#endif
645}
646
647int genimg_get_cat_count(enum ih_category category)
648{
649 return table_info[category].count;
650}
651
652const char *genimg_get_cat_desc(enum ih_category category)
653{
654 return table_info[category].desc;
655}
656
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100657/**
658 * get_table_entry_name - translate entry id to long name
659 * @table: pointer to a translation table for entries of a specific type
660 * @msg: message to be returned when translation fails
661 * @id: entry id to be translated
662 *
663 * get_table_entry_name() will go over translation table trying to find
664 * entry that matches given id. If matching entry is found, its long
665 * name is returned to the caller.
666 *
667 * returns:
668 * long entry name if translation succeeds
669 * msg otherwise
670 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400671char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100672{
Simon Glass434a31b2015-06-23 15:38:25 -0600673 table = get_table_entry(table, id);
674 if (!table)
675 return msg;
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200676#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass434a31b2015-06-23 15:38:25 -0600677 return table->lname;
Scott Wood68498ab2009-04-02 16:15:10 -0500678#else
Simon Glass434a31b2015-06-23 15:38:25 -0600679 return table->lname + gd->reloc_off;
Scott Wood68498ab2009-04-02 16:15:10 -0500680#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100681}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100682
Stephen Warren6904b6e2011-10-18 11:11:49 +0000683const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100684{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000685 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100686}
687
Stephen Warren6904b6e2011-10-18 11:11:49 +0000688const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100689{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000690 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
691 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100692}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100693
Stephen Warren6904b6e2011-10-18 11:11:49 +0000694const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100695{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000696 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100697}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100698
Simon Glass86c362d2016-02-22 22:55:50 -0700699static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600700{
Simon Glass86c362d2016-02-22 22:55:50 -0700701 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600702 if (!table)
703 return "unknown";
704#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
705 return table->sname;
706#else
707 return table->sname + gd->reloc_off;
708#endif
709}
710
Simon Glass86c362d2016-02-22 22:55:50 -0700711const char *genimg_get_type_short_name(uint8_t type)
712{
713 return genimg_get_short_name(uimage_type, type);
714}
715
Stephen Warren6904b6e2011-10-18 11:11:49 +0000716const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100717{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000718 return (get_table_entry_name(uimage_comp, "Unknown Compression",
719 comp));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100720}
721
Simon Glass86c362d2016-02-22 22:55:50 -0700722const char *genimg_get_comp_short_name(uint8_t comp)
723{
724 return genimg_get_short_name(uimage_comp, comp);
725}
726
727const char *genimg_get_os_short_name(uint8_t os)
728{
729 return genimg_get_short_name(uimage_os, os);
730}
731
732const char *genimg_get_arch_short_name(uint8_t arch)
733{
734 return genimg_get_short_name(uimage_arch, arch);
735}
736
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100737/**
738 * get_table_entry_id - translate short entry name to id
739 * @table: pointer to a translation table for entries of a specific type
740 * @table_name: to be used in case of error
741 * @name: entry short name to be translated
742 *
743 * get_table_entry_id() will go over translation table trying to find
744 * entry that matches given short name. If matching entry is found,
745 * its id returned to the caller.
746 *
747 * returns:
748 * entry id if translation succeeds
749 * -1 otherwise
750 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400751int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100752 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100753{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400754 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100755
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100756 for (t = table; t->id >= 0; ++t) {
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200757#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass434a31b2015-06-23 15:38:25 -0600758 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200759#else
Simon Glass434a31b2015-06-23 15:38:25 -0600760 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser9057cbf2009-09-21 11:20:36 -0500761#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100762 return (t->id);
763 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000764 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600765
766 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100767}
768
Stephen Warren6904b6e2011-10-18 11:11:49 +0000769int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100770{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000771 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100772}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100773
Stephen Warren6904b6e2011-10-18 11:11:49 +0000774int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100775{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000776 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100777}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100778
Stephen Warren6904b6e2011-10-18 11:11:49 +0000779int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100780{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000781 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100782}
Marian Balakowicz95418502008-01-31 13:55:39 +0100783
Stephen Warren6904b6e2011-10-18 11:11:49 +0000784int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100785{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000786 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100787}
788
789#ifndef USE_HOSTCC
Marian Balakowicz95418502008-01-31 13:55:39 +0100790/**
Bryan Wuf5c377a2014-08-15 16:51:38 -0700791 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
792 * FIT strings
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700793 * @img_addr: a string might contain real image address
Bryan Wuf5c377a2014-08-15 16:51:38 -0700794 * @fit_uname_config: double pointer to a char, will hold pointer to a
795 * configuration unit name
796 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
797 * name
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700798 *
Bryan Wuf5c377a2014-08-15 16:51:38 -0700799 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700800 * which is normally the first argv of bootm/bootz
801 *
802 * returns:
803 * kernel start address
804 */
Bryan Wuf5c377a2014-08-15 16:51:38 -0700805ulong genimg_get_kernel_addr_fit(char * const img_addr,
806 const char **fit_uname_config,
807 const char **fit_uname_kernel)
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700808{
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700809 ulong kernel_addr;
810
811 /* find out kernel image address */
812 if (!img_addr) {
813 kernel_addr = load_addr;
814 debug("* kernel: default image load address = 0x%08lx\n",
815 load_addr);
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700816#if CONFIG_IS_ENABLED(FIT)
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700817 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wuf5c377a2014-08-15 16:51:38 -0700818 fit_uname_config)) {
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700819 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wuf5c377a2014-08-15 16:51:38 -0700820 *fit_uname_config, kernel_addr);
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700821 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wuf5c377a2014-08-15 16:51:38 -0700822 fit_uname_kernel)) {
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700823 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wuf5c377a2014-08-15 16:51:38 -0700824 *fit_uname_kernel, kernel_addr);
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700825#endif
826 } else {
827 kernel_addr = simple_strtoul(img_addr, NULL, 16);
828 debug("* kernel: cmdline image address = 0x%08lx\n",
829 kernel_addr);
830 }
831
832 return kernel_addr;
833}
834
835/**
Bryan Wuf5c377a2014-08-15 16:51:38 -0700836 * genimg_get_kernel_addr() is the simple version of
837 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
838 */
839ulong genimg_get_kernel_addr(char * const img_addr)
840{
841 const char *fit_uname_config = NULL;
842 const char *fit_uname_kernel = NULL;
843
844 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
845 &fit_uname_kernel);
846}
847
848/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100849 * genimg_get_format - get image format type
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100850 * @img_addr: image start address
851 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100852 * genimg_get_format() checks whether provided address points to a valid
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100853 * legacy or FIT image.
854 *
Marian Balakowicz12560682008-02-27 11:02:26 +0100855 * New uImage format and FDT blob are based on a libfdt. FDT blob
856 * may be passed directly or embedded in a FIT image. In both situations
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100857 * genimg_get_format() must be able to dectect libfdt header.
Marian Balakowicz12560682008-02-27 11:02:26 +0100858 *
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100859 * returns:
860 * image format type or IMAGE_FORMAT_INVALID if no image is present
861 */
Simon Glass49648062013-05-07 06:12:03 +0000862int genimg_get_format(const void *img_addr)
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100863{
Heiko Schocher515eb122014-05-28 11:33:33 +0200864#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3b506772009-08-19 11:42:56 +0200865 const image_header_t *hdr;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100866
Wolfgang Denk3b506772009-08-19 11:42:56 +0200867 hdr = (const image_header_t *)img_addr;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100868 if (image_check_magic(hdr))
Heiko Schocher515eb122014-05-28 11:33:33 +0200869 return IMAGE_FORMAT_LEGACY;
870#endif
Simon Glass8b426922016-02-22 22:55:45 -0700871#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher515eb122014-05-28 11:33:33 +0200872 if (fdt_check_header(img_addr) == 0)
873 return IMAGE_FORMAT_FIT;
Sebastian Siewior686d6672014-05-05 15:08:09 -0500874#endif
875#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher515eb122014-05-28 11:33:33 +0200876 if (android_image_check_header(img_addr) == 0)
877 return IMAGE_FORMAT_ANDROID;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100878#endif
879
Heiko Schocher515eb122014-05-28 11:33:33 +0200880 return IMAGE_FORMAT_INVALID;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100881}
882
883/**
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100884 * fit_has_config - check if there is a valid FIT configuration
885 * @images: pointer to the bootm command headers structure
886 *
887 * fit_has_config() checks if there is a FIT configuration in use
888 * (if FTI support is present).
889 *
890 * returns:
891 * 0, no FIT support or no configuration found
892 * 1, configuration found
893 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000894int genimg_has_config(bootm_headers_t *images)
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100895{
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700896#if IMAGE_ENABLE_FIT
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100897 if (images->fit_uname_cfg)
898 return 1;
899#endif
900 return 0;
901}
902
903/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100904 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz95418502008-01-31 13:55:39 +0100905 * @argc: command argument count
906 * @argv: command argument list
Marian Balakowicz61fde552008-02-27 11:01:04 +0100907 * @images: pointer to the bootm images structure
Marian Balakowicz95418502008-01-31 13:55:39 +0100908 * @arch: expected ramdisk architecture
909 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
910 * @rd_end: pointer to a ulong variable, will hold ramdisk end
911 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100912 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz95418502008-01-31 13:55:39 +0100913 * Curently supported are the following ramdisk sources:
914 * - multicomponent kernel/ramdisk image,
915 * - commandline provided address of decicated ramdisk image.
916 *
917 * returns:
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100918 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz95418502008-01-31 13:55:39 +0100919 * rd_start and rd_end are set to ramdisk start/end addresses if
920 * ramdisk image is found and valid
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100921 *
Kumar Galab8ca7342008-08-29 19:08:29 -0500922 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz95418502008-01-31 13:55:39 +0100923 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz95418502008-01-31 13:55:39 +0100924 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000925int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100926 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz95418502008-01-31 13:55:39 +0100927{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100928 ulong rd_addr, rd_load;
Marian Balakowicz95418502008-01-31 13:55:39 +0100929 ulong rd_data, rd_len;
Heiko Schocher515eb122014-05-28 11:33:33 +0200930#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3b506772009-08-19 11:42:56 +0200931 const image_header_t *rd_hdr;
Heiko Schocher515eb122014-05-28 11:33:33 +0200932#endif
Simon Glass49648062013-05-07 06:12:03 +0000933 void *buf;
Marek Vasut6988d132012-03-30 23:19:10 +0200934#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut28850d02012-03-18 11:47:58 +0000935 char *end;
Marek Vasut6988d132012-03-30 23:19:10 +0200936#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700937#if IMAGE_ENABLE_FIT
Simon Glassad68fc32013-07-10 23:08:10 -0700938 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100939 const char *fit_uname_ramdisk = NULL;
940 ulong default_addr;
Marian Balakowicza50d5152008-03-12 10:12:37 +0100941 int rd_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100942#endif
Simon Glass794a9212013-06-11 11:14:46 -0700943 const char *select = NULL;
Marian Balakowicz95418502008-01-31 13:55:39 +0100944
Marian Balakowicza50d5152008-03-12 10:12:37 +0100945 *rd_start = 0;
946 *rd_end = 0;
947
Tom Rinifc1ae4c2015-08-27 15:42:41 -0400948#ifdef CONFIG_ANDROID_BOOT_IMAGE
949 /*
950 * Look for an Android boot image.
951 */
952 buf = map_sysmem(images->os.start, 0);
Tom Rini648c4442015-10-27 19:04:40 -0400953 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rinifc1ae4c2015-08-27 15:42:41 -0400954 select = argv[0];
955#endif
956
Simon Glass794a9212013-06-11 11:14:46 -0700957 if (argc >= 2)
958 select = argv[1];
Rob Herringad8b3a52015-07-17 10:57:17 -0500959
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100960 /*
961 * Look for a '-' which indicates to ignore the
962 * ramdisk argument
963 */
Simon Glass794a9212013-06-11 11:14:46 -0700964 if (select && strcmp(select, "-") == 0) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000965 debug("## Skipping init Ramdisk\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100966 rd_len = rd_data = 0;
Simon Glass794a9212013-06-11 11:14:46 -0700967 } else if (select || genimg_has_config(images)) {
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700968#if IMAGE_ENABLE_FIT
Simon Glass794a9212013-06-11 11:14:46 -0700969 if (select) {
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100970 /*
971 * If the init ramdisk comes from the FIT image and
972 * the FIT image address is omitted in the command
973 * line argument, try to use os FIT image address or
974 * default load address.
975 */
976 if (images->fit_uname_os)
977 default_addr = (ulong)images->fit_hdr_os;
978 else
979 default_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100980
Simon Glass794a9212013-06-11 11:14:46 -0700981 if (fit_parse_conf(select, default_addr,
982 &rd_addr, &fit_uname_config)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000983 debug("* ramdisk: config '%s' from image at "
984 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100985 fit_uname_config, rd_addr);
Simon Glass794a9212013-06-11 11:14:46 -0700986 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100987 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000988 debug("* ramdisk: subimage '%s' from image at "
989 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100990 fit_uname_ramdisk, rd_addr);
991 } else
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100992#endif
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100993 {
Simon Glass794a9212013-06-11 11:14:46 -0700994 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000995 debug("* ramdisk: cmdline image address = "
996 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100997 rd_addr);
998 }
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700999#if IMAGE_ENABLE_FIT
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +01001000 } else {
1001 /* use FIT configuration provided in first bootm
Simon Glass65817a62013-05-16 13:53:22 +00001002 * command argument. If the property is not defined,
1003 * quit silently.
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +01001004 */
Simon Glass49648062013-05-07 06:12:03 +00001005 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glass65817a62013-05-16 13:53:22 +00001006 rd_noffset = fit_get_node_from_config(images,
1007 FIT_RAMDISK_PROP, rd_addr);
Paul Burton14171b12016-09-20 18:17:12 +01001008 if (rd_noffset == -ENOENT)
Peter Tyser190ee482008-08-05 10:51:57 -05001009 return 0;
Simon Glass65817a62013-05-16 13:53:22 +00001010 else if (rd_noffset < 0)
1011 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001012 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +01001013#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001014
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001015 /*
1016 * Check if there is an initrd image at the
1017 * address provided in the second bootm argument
1018 * check image type, for FIT images get FIT node.
1019 */
Simon Glass49648062013-05-07 06:12:03 +00001020 buf = map_sysmem(rd_addr, 0);
1021 switch (genimg_get_format(buf)) {
Heiko Schocher515eb122014-05-28 11:33:33 +02001022#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001023 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +00001024 printf("## Loading init Ramdisk from Legacy "
Marian Balakowicza50d5152008-03-12 10:12:37 +01001025 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz95418502008-01-31 13:55:39 +01001026
Simon Glass0169e6b2012-02-13 13:51:18 +00001027 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren6904b6e2011-10-18 11:11:49 +00001028 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +01001029 images->verify);
Marian Balakowicz95418502008-01-31 13:55:39 +01001030
Marian Balakowicza50d5152008-03-12 10:12:37 +01001031 if (rd_hdr == NULL)
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001032 return 1;
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001033
Stephen Warren6904b6e2011-10-18 11:11:49 +00001034 rd_data = image_get_data(rd_hdr);
1035 rd_len = image_get_data_size(rd_hdr);
1036 rd_load = image_get_load(rd_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001037 break;
Heiko Schocher515eb122014-05-28 11:33:33 +02001038#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001039#if IMAGE_ENABLE_FIT
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001040 case IMAGE_FORMAT_FIT:
Simon Glassa0c0b632014-06-12 07:24:47 -06001041 rd_noffset = fit_image_load(images,
Simon Glass65817a62013-05-16 13:53:22 +00001042 rd_addr, &fit_uname_ramdisk,
Simon Glassad68fc32013-07-10 23:08:10 -07001043 &fit_uname_config, arch,
Simon Glass65817a62013-05-16 13:53:22 +00001044 IH_TYPE_RAMDISK,
1045 BOOTSTAGE_ID_FIT_RD_START,
Simon Glass05a9ad72014-08-22 14:26:43 -06001046 FIT_LOAD_OPTIONAL_NON_ZERO,
1047 &rd_data, &rd_len);
Simon Glass65817a62013-05-16 13:53:22 +00001048 if (rd_noffset < 0)
Michal Simekb2474002008-07-11 10:43:13 +02001049 return 1;
Marian Balakowicza50d5152008-03-12 10:12:37 +01001050
Simon Glass65817a62013-05-16 13:53:22 +00001051 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowicza50d5152008-03-12 10:12:37 +01001052 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +01001053 images->fit_noffset_rd = rd_noffset;
Marian Balakowicza50d5152008-03-12 10:12:37 +01001054 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001055#endif
Rob Herringad8b3a52015-07-17 10:57:17 -05001056#ifdef CONFIG_ANDROID_BOOT_IMAGE
1057 case IMAGE_FORMAT_ANDROID:
1058 android_image_get_ramdisk((void *)images->os.start,
1059 &rd_data, &rd_len);
1060 break;
1061#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001062 default:
Marek Vasut28850d02012-03-18 11:47:58 +00001063#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass794a9212013-06-11 11:14:46 -07001064 end = NULL;
1065 if (select)
1066 end = strchr(select, ':');
1067 if (end) {
Marek Vasut28850d02012-03-18 11:47:58 +00001068 rd_len = simple_strtoul(++end, NULL, 16);
1069 rd_data = rd_addr;
1070 } else
1071#endif
1072 {
1073 puts("Wrong Ramdisk Image Format\n");
1074 rd_data = rd_len = rd_load = 0;
1075 return 1;
1076 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001077 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001078 } else if (images->legacy_hdr_valid &&
Stephen Warren6904b6e2011-10-18 11:11:49 +00001079 image_check_type(&images->legacy_hdr_os_copy,
1080 IH_TYPE_MULTI)) {
1081
Marian Balakowicz95418502008-01-31 13:55:39 +01001082 /*
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001083 * Now check if we have a legacy mult-component image,
1084 * get second entry data start address and len.
Marian Balakowicz95418502008-01-31 13:55:39 +01001085 */
Simon Glass0169e6b2012-02-13 13:51:18 +00001086 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren6904b6e2011-10-18 11:11:49 +00001087 printf("## Loading init Ramdisk from multi component "
Marian Balakowicza50d5152008-03-12 10:12:37 +01001088 "Legacy Image at %08lx ...\n",
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001089 (ulong)images->legacy_hdr_os);
1090
Stephen Warren6904b6e2011-10-18 11:11:49 +00001091 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herringad8b3a52015-07-17 10:57:17 -05001092 } else {
Marian Balakowicz95418502008-01-31 13:55:39 +01001093 /*
1094 * no initrd image
1095 */
Simon Glass0169e6b2012-02-13 13:51:18 +00001096 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz95418502008-01-31 13:55:39 +01001097 rd_len = rd_data = 0;
1098 }
1099
1100 if (!rd_data) {
Stephen Warren6904b6e2011-10-18 11:11:49 +00001101 debug("## No init Ramdisk\n");
Marian Balakowicz95418502008-01-31 13:55:39 +01001102 } else {
1103 *rd_start = rd_data;
1104 *rd_end = rd_data + rd_len;
1105 }
Stephen Warren6904b6e2011-10-18 11:11:49 +00001106 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz95418502008-01-31 13:55:39 +01001107 *rd_start, *rd_end);
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001108
1109 return 0;
Marian Balakowicz95418502008-01-31 13:55:39 +01001110}
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001111
John Rigbyeea8e692010-10-13 13:57:35 -06001112#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001113/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001114 * boot_ramdisk_high - relocate init ramdisk
Kumar Galab937bb72008-02-27 21:51:49 -06001115 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001116 * @rd_data: ramdisk data start address
1117 * @rd_len: ramdisk data length
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001118 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1119 * start address (after possible relocation)
1120 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1121 * end address (after possible relocation)
1122 *
Robert P. J. Day832d36e2013-09-16 07:15:45 -04001123 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001124 * variable and if requested ramdisk data is moved to a specified location.
1125 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001126 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1127 * start/end addresses if ramdisk image start and len were provided,
1128 * otherwise set initrd_start and initrd_end set to zeros.
1129 *
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001130 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001131 * 0 - success
1132 * -1 - failure
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001133 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001134int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galab937bb72008-02-27 21:51:49 -06001135 ulong *initrd_start, ulong *initrd_end)
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001136{
1137 char *s;
1138 ulong initrd_high;
1139 int initrd_copy_to_ram = 1;
1140
Simon Glass64b723f2017-08-03 12:22:12 -06001141 s = env_get("initrd_high");
1142 if (s) {
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001143 /* a value of "no" or a similar string will act like 0,
1144 * turning the "load high" feature off. This is intentional.
1145 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001146 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001147 if (initrd_high == ~0)
1148 initrd_copy_to_ram = 0;
1149 } else {
Simon Glassda1a1342017-08-03 12:22:15 -06001150 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001151 }
1152
Marian Balakowicz902ce702008-05-13 15:53:29 +02001153
Stephen Warren6904b6e2011-10-18 11:11:49 +00001154 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001155 initrd_high, initrd_copy_to_ram);
1156
1157 if (rd_data) {
1158 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001159 debug(" in-place initrd\n");
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001160 *initrd_start = rd_data;
1161 *initrd_end = rd_data + rd_len;
Kumar Galab937bb72008-02-27 21:51:49 -06001162 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001163 } else {
Kumar Galab937bb72008-02-27 21:51:49 -06001164 if (initrd_high)
Stephen Warren6904b6e2011-10-18 11:11:49 +00001165 *initrd_start = (ulong)lmb_alloc_base(lmb,
1166 rd_len, 0x1000, initrd_high);
Kumar Galab937bb72008-02-27 21:51:49 -06001167 else
Stephen Warren6904b6e2011-10-18 11:11:49 +00001168 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1169 0x1000);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001170
Kumar Galab937bb72008-02-27 21:51:49 -06001171 if (*initrd_start == 0) {
Stephen Warren6904b6e2011-10-18 11:11:49 +00001172 puts("ramdisk - allocation error\n");
Kumar Galab937bb72008-02-27 21:51:49 -06001173 goto error;
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001174 }
Simon Glass0169e6b2012-02-13 13:51:18 +00001175 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001176
1177 *initrd_end = *initrd_start + rd_len;
Stephen Warren6904b6e2011-10-18 11:11:49 +00001178 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001179 *initrd_start, *initrd_end);
1180
Stephen Warren6904b6e2011-10-18 11:11:49 +00001181 memmove_wd((void *)*initrd_start,
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001182 (void *)rd_data, rd_len, CHUNKSZ);
1183
Kumar Gala180c5812011-12-07 04:42:58 +00001184#ifdef CONFIG_MP
1185 /*
1186 * Ensure the image is flushed to memory to handle
1187 * AMP boot scenarios in which we might not be
1188 * HW cache coherent
1189 */
Heiko Schocherd2611aa2017-12-14 11:19:22 +01001190 flush_cache((unsigned long)*initrd_start,
1191 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala180c5812011-12-07 04:42:58 +00001192#endif
Stephen Warren6904b6e2011-10-18 11:11:49 +00001193 puts("OK\n");
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001194 }
1195 } else {
1196 *initrd_start = 0;
1197 *initrd_end = 0;
1198 }
Stephen Warren6904b6e2011-10-18 11:11:49 +00001199 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001200 *initrd_start, *initrd_end);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001201
Kumar Galab937bb72008-02-27 21:51:49 -06001202 return 0;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001203
Kumar Galab937bb72008-02-27 21:51:49 -06001204error:
1205 return -1;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001206}
John Rigbyeea8e692010-10-13 13:57:35 -06001207#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001208
Simon Glass0129b522014-10-19 21:11:24 -06001209int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1210 ulong *setup_start, ulong *setup_len)
1211{
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001212#if IMAGE_ENABLE_FIT
Simon Glass0129b522014-10-19 21:11:24 -06001213 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1214#else
1215 return -ENOENT;
1216#endif
1217}
1218
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001219#if IMAGE_ENABLE_FIT
Goldschmidt Simon9179c812017-11-10 14:17:41 +00001220#if defined(CONFIG_FPGA)
Michal Simekebae78b2016-05-17 14:03:50 +02001221int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1222 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1223{
1224 ulong tmp_img_addr, img_data, img_len;
1225 void *buf;
1226 int conf_noffset;
1227 int fit_img_result;
Simon Glassb0ea7402016-10-02 17:59:28 -06001228 const char *uname, *name;
Michal Simekebae78b2016-05-17 14:03:50 +02001229 int err;
1230 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simekebae78b2016-05-17 14:03:50 +02001231
1232 /* Check to see if the images struct has a FIT configuration */
1233 if (!genimg_has_config(images)) {
1234 debug("## FIT configuration was not specified\n");
1235 return 0;
1236 }
1237
1238 /*
1239 * Obtain the os FIT header from the images struct
Michal Simekebae78b2016-05-17 14:03:50 +02001240 */
1241 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simekebae78b2016-05-17 14:03:50 +02001242 buf = map_sysmem(tmp_img_addr, 0);
1243 /*
1244 * Check image type. For FIT images get FIT node
1245 * and attempt to locate a generic binary.
1246 */
1247 switch (genimg_get_format(buf)) {
1248 case IMAGE_FORMAT_FIT:
1249 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1250
Simon Glassb0ea7402016-10-02 17:59:28 -06001251 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1252 NULL);
1253 if (!uname) {
Michal Simekebae78b2016-05-17 14:03:50 +02001254 debug("## FPGA image is not specified\n");
1255 return 0;
1256 }
1257 fit_img_result = fit_image_load(images,
1258 tmp_img_addr,
1259 (const char **)&uname,
1260 &(images->fit_uname_cfg),
1261 arch,
1262 IH_TYPE_FPGA,
1263 BOOTSTAGE_ID_FPGA_INIT,
1264 FIT_LOAD_OPTIONAL_NON_ZERO,
1265 &img_data, &img_len);
1266
1267 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1268 uname, img_data, img_len);
1269
1270 if (fit_img_result < 0) {
1271 /* Something went wrong! */
1272 return fit_img_result;
1273 }
1274
Goldschmidt Simon9179c812017-11-10 14:17:41 +00001275 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simekebae78b2016-05-17 14:03:50 +02001276 name = "full";
1277 err = fpga_loadbitstream(devnum, (char *)img_data,
1278 img_len, BIT_FULL);
1279 if (err)
1280 err = fpga_load(devnum, (const void *)img_data,
1281 img_len, BIT_FULL);
1282 } else {
1283 name = "partial";
1284 err = fpga_loadbitstream(devnum, (char *)img_data,
1285 img_len, BIT_PARTIAL);
1286 if (err)
1287 err = fpga_load(devnum, (const void *)img_data,
1288 img_len, BIT_PARTIAL);
1289 }
1290
Michal Simekebae78b2016-05-17 14:03:50 +02001291 if (err)
Michal Simek7fa20302016-12-16 10:35:40 +01001292 return err;
1293
1294 printf(" Programming %s bitstream... OK\n", name);
Michal Simekebae78b2016-05-17 14:03:50 +02001295 break;
1296 default:
1297 printf("The given image format is not supported (corrupt?)\n");
1298 return 1;
1299 }
1300
1301 return 0;
1302}
1303#endif
1304
Andrew F. Davis28b28f72016-11-29 16:33:20 -06001305static void fit_loadable_process(uint8_t img_type,
1306 ulong img_data,
1307 ulong img_len)
1308{
1309 int i;
1310 const unsigned int count =
1311 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1312 struct fit_loadable_tbl *fit_loadable_handler =
1313 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1314 /* For each loadable handler */
1315 for (i = 0; i < count; i++, fit_loadable_handler++)
1316 /* matching this type */
1317 if (fit_loadable_handler->type == img_type)
1318 /* call that handler with this image data */
1319 fit_loadable_handler->handler(img_data, img_len);
1320}
1321
Karl Apsite1b21c282015-05-21 09:52:48 -04001322int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1323 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1324{
1325 /*
1326 * These variables are used to hold the current image location
1327 * in system memory.
1328 */
1329 ulong tmp_img_addr;
1330 /*
1331 * These two variables are requirements for fit_image_load, but
1332 * their values are not used
1333 */
1334 ulong img_data, img_len;
1335 void *buf;
1336 int loadables_index;
1337 int conf_noffset;
1338 int fit_img_result;
Simon Glassb0ea7402016-10-02 17:59:28 -06001339 const char *uname;
Andrew F. Davis28b28f72016-11-29 16:33:20 -06001340 uint8_t img_type;
Karl Apsite1b21c282015-05-21 09:52:48 -04001341
1342 /* Check to see if the images struct has a FIT configuration */
1343 if (!genimg_has_config(images)) {
1344 debug("## FIT configuration was not specified\n");
1345 return 0;
1346 }
1347
1348 /*
1349 * Obtain the os FIT header from the images struct
Karl Apsite1b21c282015-05-21 09:52:48 -04001350 */
1351 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite1b21c282015-05-21 09:52:48 -04001352 buf = map_sysmem(tmp_img_addr, 0);
1353 /*
1354 * Check image type. For FIT images get FIT node
1355 * and attempt to locate a generic binary.
1356 */
1357 switch (genimg_get_format(buf)) {
1358 case IMAGE_FORMAT_FIT:
1359 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1360
1361 for (loadables_index = 0;
Simon Glassb0ea7402016-10-02 17:59:28 -06001362 uname = fdt_stringlist_get(buf, conf_noffset,
1363 FIT_LOADABLE_PROP, loadables_index,
1364 NULL), uname;
Karl Apsite1b21c282015-05-21 09:52:48 -04001365 loadables_index++)
1366 {
1367 fit_img_result = fit_image_load(images,
1368 tmp_img_addr,
Simon Glassb0ea7402016-10-02 17:59:28 -06001369 &uname,
Karl Apsite1b21c282015-05-21 09:52:48 -04001370 &(images->fit_uname_cfg), arch,
1371 IH_TYPE_LOADABLE,
1372 BOOTSTAGE_ID_FIT_LOADABLE_START,
1373 FIT_LOAD_OPTIONAL_NON_ZERO,
1374 &img_data, &img_len);
1375 if (fit_img_result < 0) {
1376 /* Something went wrong! */
1377 return fit_img_result;
1378 }
Andrew F. Davis28b28f72016-11-29 16:33:20 -06001379
1380 fit_img_result = fit_image_get_node(buf, uname);
1381 if (fit_img_result < 0) {
1382 /* Something went wrong! */
1383 return fit_img_result;
1384 }
1385 fit_img_result = fit_image_get_type(buf,
1386 fit_img_result,
1387 &img_type);
1388 if (fit_img_result < 0) {
1389 /* Something went wrong! */
1390 return fit_img_result;
1391 }
1392
1393 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite1b21c282015-05-21 09:52:48 -04001394 }
1395 break;
1396 default:
1397 printf("The given image format is not supported (corrupt?)\n");
1398 return 1;
1399 }
1400
1401 return 0;
1402}
1403#endif
1404
John Rigbyeea8e692010-10-13 13:57:35 -06001405#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001406/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001407 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galab937bb72008-02-27 21:51:49 -06001408 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001409 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1410 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1411 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001412 * boot_get_cmdline() allocates space for kernel command line below
Simon Glassda1a1342017-08-03 12:22:15 -06001413 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001414 * variable is present its contents is copied to allocated kernel
1415 * command line.
1416 *
1417 * returns:
Kumar Galab937bb72008-02-27 21:51:49 -06001418 * 0 - success
1419 * -1 - failure
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001420 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001421int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001422{
1423 char *cmdline;
1424 char *s;
1425
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001426 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glassda1a1342017-08-03 12:22:15 -06001427 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galab937bb72008-02-27 21:51:49 -06001428
1429 if (cmdline == NULL)
1430 return -1;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001431
Simon Glass64b723f2017-08-03 12:22:12 -06001432 s = env_get("bootargs");
1433 if (!s)
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001434 s = "";
1435
1436 strcpy(cmdline, s);
1437
1438 *cmd_start = (ulong) & cmdline[0];
1439 *cmd_end = *cmd_start + strlen(cmdline);
1440
Stephen Warren6904b6e2011-10-18 11:11:49 +00001441 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001442
Kumar Galab937bb72008-02-27 21:51:49 -06001443 return 0;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001444}
John Rigbyeea8e692010-10-13 13:57:35 -06001445#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001446
John Rigbyeea8e692010-10-13 13:57:35 -06001447#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001448/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001449 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galab937bb72008-02-27 21:51:49 -06001450 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001451 * @kbd: double pointer to board info data
1452 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001453 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glassda1a1342017-08-03 12:22:15 -06001454 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likelydfff7a22011-03-28 09:58:34 +00001455 * with the current u-boot board info data.
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001456 *
1457 * returns:
Kumar Galab937bb72008-02-27 21:51:49 -06001458 * 0 - success
1459 * -1 - failure
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001460 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001461int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001462{
Becky Bruced26d67c2008-06-09 20:37:18 -05001463 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glassda1a1342017-08-03 12:22:15 -06001464 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galab937bb72008-02-27 21:51:49 -06001465 if (*kbd == NULL)
1466 return -1;
1467
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001468 **kbd = *(gd->bd);
1469
Stephen Warren6904b6e2011-10-18 11:11:49 +00001470 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001471
1472#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1473 do_bdinfo(NULL, 0, 0, NULL);
1474#endif
1475
Kumar Galab937bb72008-02-27 21:51:49 -06001476 return 0;
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001477}
John Rigbyeea8e692010-10-13 13:57:35 -06001478#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass9ca37422013-05-08 08:06:01 +00001479
1480#ifdef CONFIG_LMB
1481int image_setup_linux(bootm_headers_t *images)
1482{
1483 ulong of_size = images->ft_len;
1484 char **of_flat_tree = &images->ft_addr;
Simon Glass9ca37422013-05-08 08:06:01 +00001485 struct lmb *lmb = &images->lmb;
Simon Glass9ca37422013-05-08 08:06:01 +00001486 int ret;
1487
1488 if (IMAGE_ENABLE_OF_LIBFDT)
1489 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1490
1491 if (IMAGE_BOOT_GET_CMDLINE) {
1492 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1493 &images->cmdline_end);
1494 if (ret) {
1495 puts("ERROR with allocation of cmdline\n");
1496 return ret;
1497 }
1498 }
Simon Glass9ca37422013-05-08 08:06:01 +00001499
1500 if (IMAGE_ENABLE_OF_LIBFDT) {
1501 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1502 if (ret)
1503 return ret;
1504 }
1505
1506 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1507 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1508 if (ret)
1509 return ret;
1510 }
1511
1512 return 0;
1513}
1514#endif /* CONFIG_LMB */
Marian Balakowicze227fbb2008-02-29 21:24:06 +01001515#endif /* !USE_HOSTCC */