Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 Semihalf |
| 4 | * |
| 5 | * (C) Copyright 2000-2006 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 7 | */ |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 8 | |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 9 | #ifndef USE_HOSTCC |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 10 | #include <common.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 11 | #include <cpu_func.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame^] | 13 | #include <malloc.h> |
Simon Glass | 48b6c6b | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 14 | #include <u-boot/crc.h> |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 15 | #include <watchdog.h> |
| 16 | |
| 17 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 18 | #include <status_led.h> |
| 19 | #endif |
| 20 | |
Marian Balakowicz | a1cc147 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 21 | #include <rtc.h> |
Marian Balakowicz | a1cc147 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 22 | |
Simon Glass | 1a974af | 2019-08-01 09:46:36 -0600 | [diff] [blame] | 23 | #include <gzip.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 24 | #include <image.h> |
Simon Glass | e1aba1e | 2019-11-14 12:57:25 -0700 | [diff] [blame] | 25 | #include <lz4.h> |
Joe Hershberger | 65b905b | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 26 | #include <mapmem.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 27 | |
Simon Glass | 8b42692 | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 28 | #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 29 | #include <linux/libfdt.h> |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 30 | #include <fdt_support.h> |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 31 | #include <fpga.h> |
| 32 | #include <xilinx.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 33 | #endif |
| 34 | |
Andy Fleming | 72c23be | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 35 | #include <u-boot/md5.h> |
Jeroen Hofstee | bfe88fe | 2014-06-12 22:27:12 +0200 | [diff] [blame] | 36 | #include <u-boot/sha1.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 37 | #include <linux/errno.h> |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 38 | #include <asm/io.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 39 | |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 40 | #include <bzlib.h> |
| 41 | #include <linux/lzo.h> |
| 42 | #include <lzma/LzmaTypes.h> |
| 43 | #include <lzma/LzmaDec.h> |
| 44 | #include <lzma/LzmaTools.h> |
| 45 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_CMD_BDI |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 47 | extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 48 | #endif |
| 49 | |
| 50 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 51 | |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 52 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 53 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 54 | int verify); |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 55 | #endif |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 56 | #else |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 57 | #include "mkimage.h" |
Andy Fleming | 72c23be | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 58 | #include <u-boot/md5.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 59 | #include <time.h> |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 60 | #include <image.h> |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 61 | |
| 62 | #ifndef __maybe_unused |
| 63 | # define __maybe_unused /* unimplemented */ |
| 64 | #endif |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 65 | #endif /* !USE_HOSTCC*/ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 66 | |
Simon Glass | 9adb686 | 2013-02-24 17:33:25 +0000 | [diff] [blame] | 67 | #include <u-boot/crc.h> |
Breno Matheus Lima | c592c34 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 68 | #include <imximage.h> |
Simon Glass | 9adb686 | 2013-02-24 17:33:25 +0000 | [diff] [blame] | 69 | |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 70 | #ifndef CONFIG_SYS_BARGSIZE |
| 71 | #define CONFIG_SYS_BARGSIZE 512 |
| 72 | #endif |
| 73 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 74 | static const table_entry_t uimage_arch[] = { |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 75 | { IH_ARCH_INVALID, "invalid", "Invalid ARCH", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 76 | { IH_ARCH_ALPHA, "alpha", "Alpha", }, |
| 77 | { IH_ARCH_ARM, "arm", "ARM", }, |
| 78 | { IH_ARCH_I386, "x86", "Intel x86", }, |
| 79 | { IH_ARCH_IA64, "ia64", "IA64", }, |
| 80 | { IH_ARCH_M68K, "m68k", "M68K", }, |
| 81 | { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", }, |
| 82 | { IH_ARCH_MIPS, "mips", "MIPS", }, |
| 83 | { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 84 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
Grant Erickson | 80f51b8 | 2008-05-04 16:45:01 -0700 | [diff] [blame] | 85 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 86 | { IH_ARCH_PPC, "ppc", "PowerPC", }, |
| 87 | { IH_ARCH_S390, "s390", "IBM S390", }, |
| 88 | { IH_ARCH_SH, "sh", "SuperH", }, |
| 89 | { IH_ARCH_SPARC, "sparc", "SPARC", }, |
| 90 | { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", }, |
| 91 | { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, |
| 92 | { IH_ARCH_AVR32, "avr32", "AVR32", }, |
Macpaul Lin | 354b4e3 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 93 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
Stefan Kristiansson | 15c669c | 2011-11-26 19:04:50 +0000 | [diff] [blame] | 94 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 95 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 96 | { IH_ARCH_ARM64, "arm64", "AArch64", }, |
Alexey Brodkin | 78bc86f | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 97 | { IH_ARCH_ARC, "arc", "ARC", }, |
Simon Glass | 9d42830 | 2014-10-10 08:21:57 -0600 | [diff] [blame] | 98 | { IH_ARCH_X86_64, "x86_64", "AMD x86_64", }, |
Chris Zankel | 41e3737 | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 99 | { IH_ARCH_XTENSA, "xtensa", "Xtensa", }, |
Rick Chen | cda2070 | 2018-03-13 13:37:29 +0800 | [diff] [blame] | 100 | { IH_ARCH_RISCV, "riscv", "RISC-V", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 101 | { -1, "", "", }, |
| 102 | }; |
| 103 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 104 | static const table_entry_t uimage_os[] = { |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 105 | { IH_OS_INVALID, "invalid", "Invalid OS", }, |
Philipp Tomsich | 1bf3eb2 | 2017-09-13 21:29:29 +0200 | [diff] [blame] | 106 | { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 107 | { IH_OS_LINUX, "linux", "Linux", }, |
| 108 | #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC) |
| 109 | { IH_OS_LYNXOS, "lynxos", "LynxOS", }, |
| 110 | #endif |
| 111 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, |
Torkel Lundgren | 29a5866 | 2010-09-28 11:05:36 +0200 | [diff] [blame] | 112 | { IH_OS_OSE, "ose", "Enea OSE", }, |
Steven Stallion | 36ec8ac | 2013-03-20 06:31:35 +0000 | [diff] [blame] | 113 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 114 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
Bryan O'Donoghue | 2f72dec | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 115 | { IH_OS_TEE, "tee", "Trusted Execution Environment" }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 116 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, |
miao.yan@windriver.com | 8bb6424 | 2013-12-27 16:01:50 +0800 | [diff] [blame] | 117 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 118 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) |
| 119 | { IH_OS_QNX, "qnx", "QNX", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 120 | #endif |
Peter Tyser | 56b8dd1 | 2008-09-08 14:56:49 -0500 | [diff] [blame] | 121 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
| 122 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, |
| 123 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 124 | #ifdef USE_HOSTCC |
| 125 | { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", }, |
| 126 | { IH_OS_DELL, "dell", "Dell", }, |
| 127 | { IH_OS_ESIX, "esix", "Esix", }, |
| 128 | { IH_OS_FREEBSD, "freebsd", "FreeBSD", }, |
| 129 | { IH_OS_IRIX, "irix", "Irix", }, |
| 130 | { IH_OS_NCR, "ncr", "NCR", }, |
| 131 | { IH_OS_OPENBSD, "openbsd", "OpenBSD", }, |
| 132 | { IH_OS_PSOS, "psos", "pSOS", }, |
| 133 | { IH_OS_SCO, "sco", "SCO", }, |
| 134 | { IH_OS_SOLARIS, "solaris", "Solaris", }, |
| 135 | { IH_OS_SVR4, "svr4", "SVR4", }, |
| 136 | #endif |
Marek Vasut | 0e3b512 | 2014-12-16 14:07:21 +0100 | [diff] [blame] | 137 | #if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC) |
| 138 | { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", }, |
| 139 | #endif |
Lukas Auer | 515b934 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 140 | { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", }, |
Cristian Ciocaltea | 217f964 | 2019-12-24 18:05:38 +0200 | [diff] [blame] | 141 | { IH_OS_EFI, "efi", "EFI Firmware" }, |
Marek Vasut | 0e3b512 | 2014-12-16 14:07:21 +0100 | [diff] [blame] | 142 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 143 | { -1, "", "", }, |
| 144 | }; |
| 145 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 146 | static const table_entry_t uimage_type[] = { |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 147 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 148 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
| 149 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, |
John Rigby | 34d12a1 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 150 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
Karicheri, Muralidharan | 8277793 | 2014-04-04 13:16:48 -0400 | [diff] [blame] | 151 | { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 152 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
Stephen Warren | 8c87eba | 2011-11-10 13:17:53 -0700 | [diff] [blame] | 153 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 154 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
| 155 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, |
Peng Fan | 60a5607 | 2018-10-16 04:50:30 +0000 | [diff] [blame] | 156 | { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",}, |
Peng Fan | 31c51da | 2018-11-20 10:19:36 +0000 | [diff] [blame] | 157 | { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",}, |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 158 | { IH_TYPE_INVALID, "invalid", "Invalid Image", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 159 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 160 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
Shaohui Xie | ea65fd8 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 161 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 162 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
| 163 | { IH_TYPE_SCRIPT, "script", "Script", }, |
Marek Vasut | 83f6928 | 2018-04-15 13:15:33 +0200 | [diff] [blame] | 164 | { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",}, |
| 165 | { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 166 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |
Heiko Schocher | 58cb84d | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 167 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
Marek Vasut | 4a0e05d | 2013-08-26 20:43:33 +0200 | [diff] [blame] | 168 | { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",}, |
Andreas Bießmann | 7c75d3e | 2014-05-19 14:23:39 +0200 | [diff] [blame] | 169 | { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",}, |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 170 | { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", }, |
Albert ARIBAUD \(3ADEV\) | ed1cb1a | 2015-03-31 11:40:49 +0200 | [diff] [blame] | 171 | { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", }, |
Simon Glass | c9c7403 | 2015-08-30 16:55:24 -0600 | [diff] [blame] | 172 | { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" }, |
Simon Glass | 3b1e507 | 2015-08-30 16:55:25 -0600 | [diff] [blame] | 173 | { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" }, |
Simon Glass | c17b145 | 2015-08-30 16:55:26 -0600 | [diff] [blame] | 174 | { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" }, |
Albert ARIBAUD \(3ADEV\) | 2e9f494 | 2016-09-26 09:08:06 +0200 | [diff] [blame] | 175 | { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", }, |
Nathan Rossi | ce1771e | 2015-11-17 22:56:56 +1000 | [diff] [blame] | 176 | { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" }, |
Michal Simek | fa12466 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 177 | { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" }, |
Alexander Graf | 5329d67 | 2018-04-13 14:18:52 +0200 | [diff] [blame] | 178 | { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" }, |
Michal Simek | 0a130b1 | 2016-05-17 13:58:44 +0200 | [diff] [blame] | 179 | { IH_TYPE_FPGA, "fpga", "FPGA Image" }, |
Andrew F. Davis | 378bcff | 2016-11-29 16:33:21 -0600 | [diff] [blame] | 180 | { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",}, |
Sven Ebenfeld | 59697a2 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 181 | { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" }, |
Andrew F. Davis | 30f9d56 | 2017-07-31 10:58:20 -0500 | [diff] [blame] | 182 | { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, |
Patrick Delaunay | e6db5df | 2018-03-12 10:46:04 +0100 | [diff] [blame] | 183 | { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" }, |
developer | e1de5d4 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 184 | { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" }, |
Patrick Delaunay | 42594db | 2019-08-02 15:07:19 +0200 | [diff] [blame] | 185 | { IH_TYPE_COPRO, "copro", "Coprocessor Image"}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 186 | { -1, "", "", }, |
| 187 | }; |
| 188 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 189 | static const table_entry_t uimage_comp[] = { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 190 | { IH_COMP_NONE, "none", "uncompressed", }, |
| 191 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, |
| 192 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, |
Luigi 'Comio' Mantellini | 35afc06 | 2008-09-08 02:46:13 +0200 | [diff] [blame] | 193 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
Peter Korsgaard | f7440cd | 2009-11-19 11:37:51 +0100 | [diff] [blame] | 194 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
Julius Werner | f41a3ca | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 195 | { IH_COMP_LZ4, "lz4", "lz4 compressed", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 196 | { -1, "", "", }, |
| 197 | }; |
| 198 | |
Simon Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 199 | struct table_info { |
| 200 | const char *desc; |
| 201 | int count; |
| 202 | const table_entry_t *table; |
| 203 | }; |
| 204 | |
| 205 | static const struct table_info table_info[IH_COUNT] = { |
| 206 | { "architecture", IH_ARCH_COUNT, uimage_arch }, |
| 207 | { "compression", IH_COMP_COUNT, uimage_comp }, |
| 208 | { "operating system", IH_OS_COUNT, uimage_os }, |
| 209 | { "image type", IH_TYPE_COUNT, uimage_type }, |
| 210 | }; |
| 211 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 212 | /*****************************************************************************/ |
| 213 | /* Legacy format routines */ |
| 214 | /*****************************************************************************/ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 215 | int image_check_hcrc(const image_header_t *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 216 | { |
| 217 | ulong hcrc; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 218 | ulong len = image_get_header_size(); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 219 | image_header_t header; |
| 220 | |
| 221 | /* Copy header so we can blank CRC field for re-calculation */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 222 | memmove(&header, (char *)hdr, image_get_header_size()); |
| 223 | image_set_hcrc(&header, 0); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 224 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 225 | hcrc = crc32(0, (unsigned char *)&header, len); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 226 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 227 | return (hcrc == image_get_hcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 228 | } |
| 229 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 230 | int image_check_dcrc(const image_header_t *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 231 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 232 | ulong data = image_get_data(hdr); |
| 233 | ulong len = image_get_data_size(hdr); |
| 234 | ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 235 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 236 | return (dcrc == image_get_dcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 237 | } |
| 238 | |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 239 | /** |
| 240 | * image_multi_count - get component (sub-image) count |
| 241 | * @hdr: pointer to the header of the multi component image |
| 242 | * |
| 243 | * image_multi_count() returns number of components in a multi |
| 244 | * component image. |
| 245 | * |
| 246 | * Note: no checking of the image type is done, caller must pass |
| 247 | * a valid multi component image. |
| 248 | * |
| 249 | * returns: |
| 250 | * number of components |
| 251 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 252 | ulong image_multi_count(const image_header_t *hdr) |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 253 | { |
| 254 | ulong i, count = 0; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 255 | uint32_t *size; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 256 | |
| 257 | /* get start of the image payload, which in case of multi |
| 258 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 259 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 260 | |
| 261 | /* count non empty slots */ |
| 262 | for (i = 0; size[i]; ++i) |
| 263 | count++; |
| 264 | |
| 265 | return count; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * image_multi_getimg - get component data address and size |
| 270 | * @hdr: pointer to the header of the multi component image |
| 271 | * @idx: index of the requested component |
| 272 | * @data: pointer to a ulong variable, will hold component data address |
| 273 | * @len: pointer to a ulong variable, will hold component size |
| 274 | * |
| 275 | * image_multi_getimg() returns size and data address for the requested |
| 276 | * component in a multi component image. |
| 277 | * |
| 278 | * Note: no checking of the image type is done, caller must pass |
| 279 | * a valid multi component image. |
| 280 | * |
| 281 | * returns: |
| 282 | * data address and size of the component, if idx is valid |
| 283 | * 0 in data and len, if idx is out of range |
| 284 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 285 | void image_multi_getimg(const image_header_t *hdr, ulong idx, |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 286 | ulong *data, ulong *len) |
| 287 | { |
| 288 | int i; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 289 | uint32_t *size; |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 290 | ulong offset, count, img_data; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 291 | |
| 292 | /* get number of component */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 293 | count = image_multi_count(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 294 | |
| 295 | /* get start of the image payload, which in case of multi |
| 296 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 297 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 298 | |
| 299 | /* get address of the proper component data start, which means |
| 300 | * skipping sizes table (add 1 for last, null entry) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 301 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 302 | |
| 303 | if (idx < count) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 304 | *len = uimage_to_cpu(size[idx]); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 305 | offset = 0; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 306 | |
| 307 | /* go over all indices preceding requested component idx */ |
| 308 | for (i = 0; i < idx; i++) { |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 309 | /* add up i-th component size, rounding up to 4 bytes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 310 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* calculate idx-th component data address */ |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 314 | *data = img_data + offset; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 315 | } else { |
| 316 | *len = 0; |
| 317 | *data = 0; |
| 318 | } |
| 319 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 320 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 321 | static void image_print_type(const image_header_t *hdr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 322 | { |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 323 | const char __maybe_unused *os, *arch, *type, *comp; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 324 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 325 | os = genimg_get_os_name(image_get_os(hdr)); |
| 326 | arch = genimg_get_arch_name(image_get_arch(hdr)); |
| 327 | type = genimg_get_type_name(image_get_type(hdr)); |
| 328 | comp = genimg_get_comp_name(image_get_comp(hdr)); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 329 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 330 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 333 | /** |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 334 | * image_print_contents - prints out the contents of the legacy format image |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 335 | * @ptr: pointer to the legacy format image header |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 336 | * @p: pointer to prefix string |
| 337 | * |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 338 | * image_print_contents() formats a multi line legacy image contents description. |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 339 | * The routine prints out all header fields followed by the size/offset data |
| 340 | * for MULTI/SCRIPT images. |
| 341 | * |
| 342 | * returns: |
| 343 | * no returned results |
| 344 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 345 | void image_print_contents(const void *ptr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 346 | { |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 347 | const image_header_t *hdr = (const image_header_t *)ptr; |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 348 | const char __maybe_unused *p; |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 349 | |
Simon Glass | 1030f16 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 350 | p = IMAGE_INDENT_STRING; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 351 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 352 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 353 | printf("%sCreated: ", p); |
| 354 | genimg_print_time((time_t)image_get_time(hdr)); |
| 355 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 356 | printf("%sImage Type: ", p); |
| 357 | image_print_type(hdr); |
| 358 | printf("%sData Size: ", p); |
| 359 | genimg_print_size(image_get_data_size(hdr)); |
| 360 | printf("%sLoad Address: %08x\n", p, image_get_load(hdr)); |
| 361 | printf("%sEntry Point: %08x\n", p, image_get_ep(hdr)); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 362 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 363 | if (image_check_type(hdr, IH_TYPE_MULTI) || |
| 364 | image_check_type(hdr, IH_TYPE_SCRIPT)) { |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 365 | int i; |
| 366 | ulong data, len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 367 | ulong count = image_multi_count(hdr); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 368 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 369 | printf("%sContents:\n", p); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 370 | for (i = 0; i < count; i++) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 371 | image_multi_getimg(hdr, i, &data, &len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 372 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 373 | printf("%s Image %d: ", p, i); |
| 374 | genimg_print_size(len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 375 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 376 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 377 | /* |
| 378 | * the user may need to know offsets |
| 379 | * if planning to do something with |
| 380 | * multiple files |
| 381 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 382 | printf("%s Offset = 0x%08lx\n", p, data); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 383 | } |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 384 | } |
Sven Ebenfeld | 59697a2 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 385 | } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) { |
| 386 | printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n", |
Breno Matheus Lima | c592c34 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 387 | image_get_load(hdr) - image_get_header_size(), |
| 388 | (int)(image_get_size(hdr) + image_get_header_size() |
| 389 | + sizeof(flash_header_v2_t) - 0x2060)); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 393 | /** |
| 394 | * print_decomp_msg() - Print a suitable decompression/loading message |
| 395 | * |
| 396 | * @type: OS type (IH_OS_...) |
| 397 | * @comp_type: Compression type being used (IH_COMP_...) |
| 398 | * @is_xip: true if the load address matches the image start |
| 399 | */ |
| 400 | static void print_decomp_msg(int comp_type, int type, bool is_xip) |
| 401 | { |
| 402 | const char *name = genimg_get_type_name(type); |
| 403 | |
| 404 | if (comp_type == IH_COMP_NONE) |
| 405 | printf(" %s %s\n", is_xip ? "XIP" : "Loading", name); |
| 406 | else |
| 407 | printf(" Uncompressing %s\n", name); |
| 408 | } |
| 409 | |
| 410 | int image_decomp(int comp, ulong load, ulong image_start, int type, |
| 411 | void *load_buf, void *image_buf, ulong image_len, |
| 412 | uint unc_len, ulong *load_end) |
| 413 | { |
| 414 | int ret = 0; |
| 415 | |
| 416 | *load_end = load; |
| 417 | print_decomp_msg(comp, type, load == image_start); |
| 418 | |
| 419 | /* |
| 420 | * Load the image to the right place, decompressing if needed. After |
| 421 | * this, image_len will be set to the number of uncompressed bytes |
| 422 | * loaded, ret will be non-zero on error. |
| 423 | */ |
| 424 | switch (comp) { |
| 425 | case IH_COMP_NONE: |
| 426 | if (load == image_start) |
| 427 | break; |
| 428 | if (image_len <= unc_len) |
| 429 | memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); |
| 430 | else |
| 431 | ret = -ENOSPC; |
| 432 | break; |
| 433 | #ifdef CONFIG_GZIP |
| 434 | case IH_COMP_GZIP: { |
| 435 | ret = gunzip(load_buf, unc_len, image_buf, &image_len); |
| 436 | break; |
| 437 | } |
| 438 | #endif /* CONFIG_GZIP */ |
| 439 | #ifdef CONFIG_BZIP2 |
| 440 | case IH_COMP_BZIP2: { |
| 441 | uint size = unc_len; |
| 442 | |
| 443 | /* |
| 444 | * If we've got less than 4 MB of malloc() space, |
| 445 | * use slower decompression algorithm which requires |
| 446 | * at most 2300 KB of memory. |
| 447 | */ |
| 448 | ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, |
| 449 | image_buf, image_len, |
| 450 | CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0); |
| 451 | image_len = size; |
| 452 | break; |
| 453 | } |
| 454 | #endif /* CONFIG_BZIP2 */ |
| 455 | #ifdef CONFIG_LZMA |
| 456 | case IH_COMP_LZMA: { |
| 457 | SizeT lzma_len = unc_len; |
| 458 | |
| 459 | ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, |
| 460 | image_buf, image_len); |
| 461 | image_len = lzma_len; |
| 462 | break; |
| 463 | } |
| 464 | #endif /* CONFIG_LZMA */ |
| 465 | #ifdef CONFIG_LZO |
| 466 | case IH_COMP_LZO: { |
| 467 | size_t size = unc_len; |
| 468 | |
| 469 | ret = lzop_decompress(image_buf, image_len, load_buf, &size); |
| 470 | image_len = size; |
| 471 | break; |
| 472 | } |
| 473 | #endif /* CONFIG_LZO */ |
| 474 | #ifdef CONFIG_LZ4 |
| 475 | case IH_COMP_LZ4: { |
| 476 | size_t size = unc_len; |
| 477 | |
| 478 | ret = ulz4fn(image_buf, image_len, load_buf, &size); |
| 479 | image_len = size; |
| 480 | break; |
| 481 | } |
| 482 | #endif /* CONFIG_LZ4 */ |
| 483 | default: |
| 484 | printf("Unimplemented compression type %d\n", comp); |
| 485 | return -ENOSYS; |
| 486 | } |
| 487 | |
| 488 | *load_end = load + image_len; |
| 489 | |
| 490 | return ret; |
| 491 | } |
| 492 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 493 | |
| 494 | #ifndef USE_HOSTCC |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 495 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 496 | /** |
| 497 | * image_get_ramdisk - get and verify ramdisk image |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 498 | * @rd_addr: ramdisk image start address |
| 499 | * @arch: expected ramdisk architecture |
| 500 | * @verify: checksum verification flag |
| 501 | * |
| 502 | * image_get_ramdisk() returns a pointer to the verified ramdisk image |
| 503 | * header. Routine receives image start address and expected architecture |
| 504 | * flag. Verification done covers data and header integrity and os/type/arch |
| 505 | * fields checking. |
| 506 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 507 | * returns: |
| 508 | * pointer to a ramdisk image header, if image was found and valid |
| 509 | * otherwise, return NULL |
| 510 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 511 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 512 | int verify) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 513 | { |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 514 | const image_header_t *rd_hdr = (const image_header_t *)rd_addr; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 515 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 516 | if (!image_check_magic(rd_hdr)) { |
| 517 | puts("Bad Magic Number\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 518 | bootstage_error(BOOTSTAGE_ID_RD_MAGIC); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 519 | return NULL; |
| 520 | } |
| 521 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 522 | if (!image_check_hcrc(rd_hdr)) { |
| 523 | puts("Bad Header Checksum\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 524 | bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 525 | return NULL; |
| 526 | } |
| 527 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 528 | bootstage_mark(BOOTSTAGE_ID_RD_MAGIC); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 529 | image_print_contents(rd_hdr); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 530 | |
| 531 | if (verify) { |
| 532 | puts(" Verifying Checksum ... "); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 533 | if (!image_check_dcrc(rd_hdr)) { |
| 534 | puts("Bad Data CRC\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 535 | bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 536 | return NULL; |
| 537 | } |
| 538 | puts("OK\n"); |
| 539 | } |
| 540 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 541 | bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 542 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 543 | if (!image_check_os(rd_hdr, IH_OS_LINUX) || |
| 544 | !image_check_arch(rd_hdr, arch) || |
| 545 | !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) { |
| 546 | printf("No Linux %s Ramdisk Image\n", |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 547 | genimg_get_arch_name(arch)); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 548 | bootstage_error(BOOTSTAGE_ID_RAMDISK); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 549 | return NULL; |
| 550 | } |
| 551 | |
| 552 | return rd_hdr; |
| 553 | } |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 554 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 555 | #endif /* !USE_HOSTCC */ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 556 | |
| 557 | /*****************************************************************************/ |
| 558 | /* Shared dual-format routines */ |
| 559 | /*****************************************************************************/ |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 560 | #ifndef USE_HOSTCC |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 561 | ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
| 562 | ulong image_save_addr; /* Default Save Address */ |
| 563 | ulong image_save_size; /* Default Save Size (in bytes) */ |
Joe Hershberger | d1f5ae9 | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 564 | |
| 565 | static int on_loadaddr(const char *name, const char *value, enum env_op op, |
| 566 | int flags) |
| 567 | { |
| 568 | switch (op) { |
| 569 | case env_op_create: |
| 570 | case env_op_overwrite: |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 571 | image_load_addr = simple_strtoul(value, NULL, 16); |
Joe Hershberger | d1f5ae9 | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 572 | break; |
| 573 | default: |
| 574 | break; |
| 575 | } |
| 576 | |
| 577 | return 0; |
| 578 | } |
| 579 | U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr); |
| 580 | |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 581 | ulong env_get_bootm_low(void) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 582 | { |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 583 | char *s = env_get("bootm_low"); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 584 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 585 | ulong tmp = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 586 | return tmp; |
| 587 | } |
| 588 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 589 | #if defined(CONFIG_SYS_SDRAM_BASE) |
| 590 | return CONFIG_SYS_SDRAM_BASE; |
Michal Simek | 00e6572 | 2019-09-25 09:11:48 +0200 | [diff] [blame] | 591 | #elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE) |
Marian Balakowicz | 2499b04 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 592 | return gd->bd->bi_dram[0].start; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 593 | #else |
| 594 | return 0; |
| 595 | #endif |
| 596 | } |
| 597 | |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 598 | phys_size_t env_get_bootm_size(void) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 599 | { |
Masahiro Yamada | bee2f4b | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 600 | phys_size_t tmp, size; |
| 601 | phys_addr_t start; |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 602 | char *s = env_get("bootm_size"); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 603 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 604 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 605 | return tmp; |
| 606 | } |
Masahiro Yamada | bee2f4b | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 607 | |
Michal Simek | 00e6572 | 2019-09-25 09:11:48 +0200 | [diff] [blame] | 608 | #if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \ |
| 609 | defined(CONFIG_NR_DRAM_BANKS) |
Masahiro Yamada | bee2f4b | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 610 | start = gd->bd->bi_dram[0].start; |
| 611 | size = gd->bd->bi_dram[0].size; |
| 612 | #else |
| 613 | start = gd->bd->bi_memstart; |
| 614 | size = gd->bd->bi_memsize; |
| 615 | #endif |
| 616 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 617 | s = env_get("bootm_low"); |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 618 | if (s) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 619 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 620 | else |
Masahiro Yamada | bee2f4b | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 621 | tmp = start; |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 622 | |
Masahiro Yamada | bee2f4b | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 623 | return size - (tmp - start); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 624 | } |
| 625 | |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 626 | phys_size_t env_get_bootm_mapsize(void) |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 627 | { |
| 628 | phys_size_t tmp; |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 629 | char *s = env_get("bootm_mapsize"); |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 630 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 631 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 632 | return tmp; |
| 633 | } |
| 634 | |
| 635 | #if defined(CONFIG_SYS_BOOTMAPSZ) |
| 636 | return CONFIG_SYS_BOOTMAPSZ; |
| 637 | #else |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 638 | return env_get_bootm_size(); |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 639 | #endif |
| 640 | } |
| 641 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 642 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 643 | { |
Larry Johnson | e455100 | 2010-04-20 08:09:43 -0400 | [diff] [blame] | 644 | if (to == from) |
| 645 | return; |
| 646 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 647 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
Sonic Zhang | 76ae5d9 | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 648 | if (to > from) { |
| 649 | from += len; |
| 650 | to += len; |
| 651 | } |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 652 | while (len > 0) { |
| 653 | size_t tail = (len > chunksz) ? chunksz : len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 654 | WATCHDOG_RESET(); |
Sonic Zhang | 76ae5d9 | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 655 | if (to > from) { |
| 656 | to -= tail; |
| 657 | from -= tail; |
| 658 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 659 | memmove(to, from, tail); |
Sonic Zhang | 76ae5d9 | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 660 | if (to < from) { |
| 661 | to += tail; |
| 662 | from += tail; |
| 663 | } |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 664 | len -= tail; |
| 665 | } |
| 666 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 667 | memmove(to, from, len); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 668 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
| 669 | } |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 670 | #else /* USE_HOSTCC */ |
| 671 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
| 672 | { |
| 673 | memmove(to, from, len); |
| 674 | } |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 675 | #endif /* !USE_HOSTCC */ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 676 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 677 | void genimg_print_size(uint32_t size) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 678 | { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 679 | #ifndef USE_HOSTCC |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 680 | printf("%d Bytes = ", size); |
| 681 | print_size(size, "\n"); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 682 | #else |
xypron.glpk@gmx.de | 1377bff | 2017-01-04 14:04:44 +0100 | [diff] [blame] | 683 | printf("%d Bytes = %.2f KiB = %.2f MiB\n", |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 684 | size, (double)size / 1.024e3, |
| 685 | (double)size / 1.048576e6); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 686 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 687 | } |
| 688 | |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 689 | #if IMAGE_ENABLE_TIMESTAMP |
| 690 | void genimg_print_time(time_t timestamp) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 691 | { |
| 692 | #ifndef USE_HOSTCC |
| 693 | struct rtc_time tm; |
| 694 | |
Simon Glass | 1299466 | 2015-04-20 12:37:18 -0600 | [diff] [blame] | 695 | rtc_to_tm(timestamp, &tm); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 696 | printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n", |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 697 | tm.tm_year, tm.tm_mon, tm.tm_mday, |
| 698 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
| 699 | #else |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 700 | printf("%s", ctime(×tamp)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 701 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 702 | } |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 703 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 704 | |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 705 | const table_entry_t *get_table_entry(const table_entry_t *table, int id) |
| 706 | { |
| 707 | for (; table->id >= 0; ++table) { |
| 708 | if (table->id == id) |
| 709 | return table; |
| 710 | } |
| 711 | return NULL; |
| 712 | } |
| 713 | |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 714 | static const char *unknown_msg(enum ih_category category) |
| 715 | { |
Simon Glass | ddb2607 | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 716 | static const char unknown_str[] = "Unknown "; |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 717 | static char msg[30]; |
| 718 | |
Simon Glass | ddb2607 | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 719 | strcpy(msg, unknown_str); |
| 720 | strncat(msg, table_info[category].desc, |
| 721 | sizeof(msg) - sizeof(unknown_str)); |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 722 | |
| 723 | return msg; |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * get_cat_table_entry_name - translate entry id to long name |
| 728 | * @category: category to look up (enum ih_category) |
| 729 | * @id: entry id to be translated |
| 730 | * |
| 731 | * This will scan the translation table trying to find the entry that matches |
| 732 | * the given id. |
| 733 | * |
| 734 | * @retur long entry name if translation succeeds; error string on failure |
| 735 | */ |
| 736 | const char *genimg_get_cat_name(enum ih_category category, uint id) |
| 737 | { |
| 738 | const table_entry_t *entry; |
| 739 | |
| 740 | entry = get_table_entry(table_info[category].table, id); |
| 741 | if (!entry) |
| 742 | return unknown_msg(category); |
| 743 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 744 | return entry->lname; |
| 745 | #else |
| 746 | return entry->lname + gd->reloc_off; |
| 747 | #endif |
| 748 | } |
| 749 | |
| 750 | /** |
| 751 | * get_cat_table_entry_short_name - translate entry id to short name |
| 752 | * @category: category to look up (enum ih_category) |
| 753 | * @id: entry id to be translated |
| 754 | * |
| 755 | * This will scan the translation table trying to find the entry that matches |
| 756 | * the given id. |
| 757 | * |
| 758 | * @retur short entry name if translation succeeds; error string on failure |
| 759 | */ |
| 760 | const char *genimg_get_cat_short_name(enum ih_category category, uint id) |
| 761 | { |
| 762 | const table_entry_t *entry; |
| 763 | |
| 764 | entry = get_table_entry(table_info[category].table, id); |
| 765 | if (!entry) |
| 766 | return unknown_msg(category); |
| 767 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 768 | return entry->sname; |
| 769 | #else |
| 770 | return entry->sname + gd->reloc_off; |
| 771 | #endif |
| 772 | } |
| 773 | |
| 774 | int genimg_get_cat_count(enum ih_category category) |
| 775 | { |
| 776 | return table_info[category].count; |
| 777 | } |
| 778 | |
| 779 | const char *genimg_get_cat_desc(enum ih_category category) |
| 780 | { |
| 781 | return table_info[category].desc; |
| 782 | } |
| 783 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 784 | /** |
| 785 | * get_table_entry_name - translate entry id to long name |
| 786 | * @table: pointer to a translation table for entries of a specific type |
| 787 | * @msg: message to be returned when translation fails |
| 788 | * @id: entry id to be translated |
| 789 | * |
| 790 | * get_table_entry_name() will go over translation table trying to find |
| 791 | * entry that matches given id. If matching entry is found, its long |
| 792 | * name is returned to the caller. |
| 793 | * |
| 794 | * returns: |
| 795 | * long entry name if translation succeeds |
| 796 | * msg otherwise |
| 797 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 798 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 799 | { |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 800 | table = get_table_entry(table, id); |
| 801 | if (!table) |
| 802 | return msg; |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 803 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 804 | return table->lname; |
Scott Wood | 68498ab | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 805 | #else |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 806 | return table->lname + gd->reloc_off; |
Scott Wood | 68498ab | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 807 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 808 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 809 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 810 | const char *genimg_get_os_name(uint8_t os) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 811 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 812 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 813 | } |
| 814 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 815 | const char *genimg_get_arch_name(uint8_t arch) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 816 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 817 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
| 818 | arch)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 819 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 820 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 821 | const char *genimg_get_type_name(uint8_t type) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 822 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 823 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 824 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 825 | |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 826 | static const char *genimg_get_short_name(const table_entry_t *table, int val) |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 827 | { |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 828 | table = get_table_entry(table, val); |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 829 | if (!table) |
| 830 | return "unknown"; |
| 831 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 832 | return table->sname; |
| 833 | #else |
| 834 | return table->sname + gd->reloc_off; |
| 835 | #endif |
| 836 | } |
| 837 | |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 838 | const char *genimg_get_type_short_name(uint8_t type) |
| 839 | { |
| 840 | return genimg_get_short_name(uimage_type, type); |
| 841 | } |
| 842 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 843 | const char *genimg_get_comp_name(uint8_t comp) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 844 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 845 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
| 846 | comp)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 847 | } |
| 848 | |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 849 | const char *genimg_get_comp_short_name(uint8_t comp) |
| 850 | { |
| 851 | return genimg_get_short_name(uimage_comp, comp); |
| 852 | } |
| 853 | |
| 854 | const char *genimg_get_os_short_name(uint8_t os) |
| 855 | { |
| 856 | return genimg_get_short_name(uimage_os, os); |
| 857 | } |
| 858 | |
| 859 | const char *genimg_get_arch_short_name(uint8_t arch) |
| 860 | { |
| 861 | return genimg_get_short_name(uimage_arch, arch); |
| 862 | } |
| 863 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 864 | /** |
| 865 | * get_table_entry_id - translate short entry name to id |
| 866 | * @table: pointer to a translation table for entries of a specific type |
| 867 | * @table_name: to be used in case of error |
| 868 | * @name: entry short name to be translated |
| 869 | * |
| 870 | * get_table_entry_id() will go over translation table trying to find |
| 871 | * entry that matches given short name. If matching entry is found, |
| 872 | * its id returned to the caller. |
| 873 | * |
| 874 | * returns: |
| 875 | * entry id if translation succeeds |
| 876 | * -1 otherwise |
| 877 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 878 | int get_table_entry_id(const table_entry_t *table, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 879 | const char *table_name, const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 880 | { |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 881 | const table_entry_t *t; |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 882 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 883 | for (t = table; t->id >= 0; ++t) { |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 884 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 885 | if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0) |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 886 | #else |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 887 | if (t->sname && strcasecmp(t->sname, name) == 0) |
Peter Tyser | 9057cbf | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 888 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 889 | return (t->id); |
| 890 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 891 | debug("Invalid %s Type: %s\n", table_name, name); |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 892 | |
| 893 | return -1; |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 894 | } |
| 895 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 896 | int genimg_get_os_id(const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 897 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 898 | return (get_table_entry_id(uimage_os, "OS", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 899 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 900 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 901 | int genimg_get_arch_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 902 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 903 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 904 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 905 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 906 | int genimg_get_type_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 907 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 908 | return (get_table_entry_id(uimage_type, "Image", name)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 909 | } |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 910 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 911 | int genimg_get_comp_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 912 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 913 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | #ifndef USE_HOSTCC |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 917 | /** |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 918 | * genimg_get_kernel_addr_fit - get the real kernel address and return 2 |
| 919 | * FIT strings |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 920 | * @img_addr: a string might contain real image address |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 921 | * @fit_uname_config: double pointer to a char, will hold pointer to a |
| 922 | * configuration unit name |
| 923 | * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage |
| 924 | * name |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 925 | * |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 926 | * genimg_get_kernel_addr_fit get the real kernel start address from a string |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 927 | * which is normally the first argv of bootm/bootz |
| 928 | * |
| 929 | * returns: |
| 930 | * kernel start address |
| 931 | */ |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 932 | ulong genimg_get_kernel_addr_fit(char * const img_addr, |
| 933 | const char **fit_uname_config, |
| 934 | const char **fit_uname_kernel) |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 935 | { |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 936 | ulong kernel_addr; |
| 937 | |
| 938 | /* find out kernel image address */ |
| 939 | if (!img_addr) { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 940 | kernel_addr = image_load_addr; |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 941 | debug("* kernel: default image load address = 0x%08lx\n", |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 942 | image_load_addr); |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 943 | #if CONFIG_IS_ENABLED(FIT) |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 944 | } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr, |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 945 | fit_uname_config)) { |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 946 | debug("* kernel: config '%s' from image at 0x%08lx\n", |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 947 | *fit_uname_config, kernel_addr); |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 948 | } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr, |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 949 | fit_uname_kernel)) { |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 950 | debug("* kernel: subimage '%s' from image at 0x%08lx\n", |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 951 | *fit_uname_kernel, kernel_addr); |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 952 | #endif |
| 953 | } else { |
| 954 | kernel_addr = simple_strtoul(img_addr, NULL, 16); |
| 955 | debug("* kernel: cmdline image address = 0x%08lx\n", |
| 956 | kernel_addr); |
| 957 | } |
| 958 | |
| 959 | return kernel_addr; |
| 960 | } |
| 961 | |
| 962 | /** |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 963 | * genimg_get_kernel_addr() is the simple version of |
| 964 | * genimg_get_kernel_addr_fit(). It ignores those return FIT strings |
| 965 | */ |
| 966 | ulong genimg_get_kernel_addr(char * const img_addr) |
| 967 | { |
| 968 | const char *fit_uname_config = NULL; |
| 969 | const char *fit_uname_kernel = NULL; |
| 970 | |
| 971 | return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config, |
| 972 | &fit_uname_kernel); |
| 973 | } |
| 974 | |
| 975 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 976 | * genimg_get_format - get image format type |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 977 | * @img_addr: image start address |
| 978 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 979 | * genimg_get_format() checks whether provided address points to a valid |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 980 | * legacy or FIT image. |
| 981 | * |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 982 | * New uImage format and FDT blob are based on a libfdt. FDT blob |
| 983 | * may be passed directly or embedded in a FIT image. In both situations |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 984 | * genimg_get_format() must be able to dectect libfdt header. |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 985 | * |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 986 | * returns: |
| 987 | * image format type or IMAGE_FORMAT_INVALID if no image is present |
| 988 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 989 | int genimg_get_format(const void *img_addr) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 990 | { |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 991 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 992 | const image_header_t *hdr; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 993 | |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 994 | hdr = (const image_header_t *)img_addr; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 995 | if (image_check_magic(hdr)) |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 996 | return IMAGE_FORMAT_LEGACY; |
| 997 | #endif |
Simon Glass | 8b42692 | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 998 | #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 999 | if (fdt_check_header(img_addr) == 0) |
| 1000 | return IMAGE_FORMAT_FIT; |
Sebastian Siewior | 686d667 | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 1001 | #endif |
| 1002 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1003 | if (android_image_check_header(img_addr) == 0) |
| 1004 | return IMAGE_FORMAT_ANDROID; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 1005 | #endif |
| 1006 | |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1007 | return IMAGE_FORMAT_INVALID; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 1008 | } |
| 1009 | |
| 1010 | /** |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1011 | * fit_has_config - check if there is a valid FIT configuration |
| 1012 | * @images: pointer to the bootm command headers structure |
| 1013 | * |
| 1014 | * fit_has_config() checks if there is a FIT configuration in use |
| 1015 | * (if FTI support is present). |
| 1016 | * |
| 1017 | * returns: |
| 1018 | * 0, no FIT support or no configuration found |
| 1019 | * 1, configuration found |
| 1020 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1021 | int genimg_has_config(bootm_headers_t *images) |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1022 | { |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1023 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1024 | if (images->fit_uname_cfg) |
| 1025 | return 1; |
| 1026 | #endif |
| 1027 | return 0; |
| 1028 | } |
| 1029 | |
| 1030 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1031 | * boot_get_ramdisk - main ramdisk handling routine |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1032 | * @argc: command argument count |
| 1033 | * @argv: command argument list |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 1034 | * @images: pointer to the bootm images structure |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1035 | * @arch: expected ramdisk architecture |
| 1036 | * @rd_start: pointer to a ulong variable, will hold ramdisk start address |
| 1037 | * @rd_end: pointer to a ulong variable, will hold ramdisk end |
| 1038 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1039 | * boot_get_ramdisk() is responsible for finding a valid ramdisk image. |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1040 | * Curently supported are the following ramdisk sources: |
| 1041 | * - multicomponent kernel/ramdisk image, |
| 1042 | * - commandline provided address of decicated ramdisk image. |
| 1043 | * |
| 1044 | * returns: |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1045 | * 0, if ramdisk image was found and valid, or skiped |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1046 | * rd_start and rd_end are set to ramdisk start/end addresses if |
| 1047 | * ramdisk image is found and valid |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1048 | * |
Kumar Gala | b8ca734 | 2008-08-29 19:08:29 -0500 | [diff] [blame] | 1049 | * 1, if ramdisk image is found but corrupted, or invalid |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1050 | * rd_start and rd_end are set to 0 if no ramdisk exists |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1051 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1052 | int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1053 | uint8_t arch, ulong *rd_start, ulong *rd_end) |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1054 | { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1055 | ulong rd_addr, rd_load; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1056 | ulong rd_data, rd_len; |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 1057 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 1058 | const image_header_t *rd_hdr; |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1059 | #endif |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1060 | void *buf; |
Marek Vasut | 6988d13 | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 1061 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1062 | char *end; |
Marek Vasut | 6988d13 | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 1063 | #endif |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1064 | #if IMAGE_ENABLE_FIT |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 1065 | const char *fit_uname_config = images->fit_uname_cfg; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1066 | const char *fit_uname_ramdisk = NULL; |
| 1067 | ulong default_addr; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1068 | int rd_noffset; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1069 | #endif |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1070 | const char *select = NULL; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1071 | |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1072 | *rd_start = 0; |
| 1073 | *rd_end = 0; |
| 1074 | |
Tom Rini | fc1ae4c | 2015-08-27 15:42:41 -0400 | [diff] [blame] | 1075 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 1076 | /* |
| 1077 | * Look for an Android boot image. |
| 1078 | */ |
| 1079 | buf = map_sysmem(images->os.start, 0); |
Tom Rini | 648c444 | 2015-10-27 19:04:40 -0400 | [diff] [blame] | 1080 | if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) |
Shawn Guo | 1706a50 | 2019-02-22 16:28:06 +0800 | [diff] [blame] | 1081 | select = (argc == 0) ? env_get("loadaddr") : argv[0]; |
Tom Rini | fc1ae4c | 2015-08-27 15:42:41 -0400 | [diff] [blame] | 1082 | #endif |
| 1083 | |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1084 | if (argc >= 2) |
| 1085 | select = argv[1]; |
Rob Herring | ad8b3a5 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1086 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1087 | /* |
| 1088 | * Look for a '-' which indicates to ignore the |
| 1089 | * ramdisk argument |
| 1090 | */ |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1091 | if (select && strcmp(select, "-") == 0) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1092 | debug("## Skipping init Ramdisk\n"); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1093 | rd_len = rd_data = 0; |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1094 | } else if (select || genimg_has_config(images)) { |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1095 | #if IMAGE_ENABLE_FIT |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1096 | if (select) { |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1097 | /* |
| 1098 | * If the init ramdisk comes from the FIT image and |
| 1099 | * the FIT image address is omitted in the command |
| 1100 | * line argument, try to use os FIT image address or |
| 1101 | * default load address. |
| 1102 | */ |
| 1103 | if (images->fit_uname_os) |
| 1104 | default_addr = (ulong)images->fit_hdr_os; |
| 1105 | else |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 1106 | default_addr = image_load_addr; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1107 | |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1108 | if (fit_parse_conf(select, default_addr, |
| 1109 | &rd_addr, &fit_uname_config)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1110 | debug("* ramdisk: config '%s' from image at " |
| 1111 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1112 | fit_uname_config, rd_addr); |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1113 | } else if (fit_parse_subimage(select, default_addr, |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1114 | &rd_addr, &fit_uname_ramdisk)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1115 | debug("* ramdisk: subimage '%s' from image at " |
| 1116 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1117 | fit_uname_ramdisk, rd_addr); |
| 1118 | } else |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1119 | #endif |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1120 | { |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1121 | rd_addr = simple_strtoul(select, NULL, 16); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1122 | debug("* ramdisk: cmdline image address = " |
| 1123 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1124 | rd_addr); |
| 1125 | } |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1126 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1127 | } else { |
| 1128 | /* use FIT configuration provided in first bootm |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1129 | * command argument. If the property is not defined, |
| 1130 | * quit silently. |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1131 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1132 | rd_addr = map_to_sysmem(images->fit_hdr_os); |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1133 | rd_noffset = fit_get_node_from_config(images, |
| 1134 | FIT_RAMDISK_PROP, rd_addr); |
Paul Burton | 14171b1 | 2016-09-20 18:17:12 +0100 | [diff] [blame] | 1135 | if (rd_noffset == -ENOENT) |
Peter Tyser | 190ee48 | 2008-08-05 10:51:57 -0500 | [diff] [blame] | 1136 | return 0; |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1137 | else if (rd_noffset < 0) |
| 1138 | return 1; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1139 | } |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1140 | #endif |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1141 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1142 | /* |
| 1143 | * Check if there is an initrd image at the |
| 1144 | * address provided in the second bootm argument |
| 1145 | * check image type, for FIT images get FIT node. |
| 1146 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1147 | buf = map_sysmem(rd_addr, 0); |
| 1148 | switch (genimg_get_format(buf)) { |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 1149 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1150 | case IMAGE_FORMAT_LEGACY: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1151 | printf("## Loading init Ramdisk from Legacy " |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1152 | "Image at %08lx ...\n", rd_addr); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1153 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1154 | bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1155 | rd_hdr = image_get_ramdisk(rd_addr, arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1156 | images->verify); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1157 | |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1158 | if (rd_hdr == NULL) |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1159 | return 1; |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1160 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1161 | rd_data = image_get_data(rd_hdr); |
| 1162 | rd_len = image_get_data_size(rd_hdr); |
| 1163 | rd_load = image_get_load(rd_hdr); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1164 | break; |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1165 | #endif |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1166 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1167 | case IMAGE_FORMAT_FIT: |
Simon Glass | a0c0b63 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1168 | rd_noffset = fit_image_load(images, |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1169 | rd_addr, &fit_uname_ramdisk, |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 1170 | &fit_uname_config, arch, |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1171 | IH_TYPE_RAMDISK, |
| 1172 | BOOTSTAGE_ID_FIT_RD_START, |
Simon Glass | 05a9ad7 | 2014-08-22 14:26:43 -0600 | [diff] [blame] | 1173 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1174 | &rd_data, &rd_len); |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1175 | if (rd_noffset < 0) |
Michal Simek | b247400 | 2008-07-11 10:43:13 +0200 | [diff] [blame] | 1176 | return 1; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1177 | |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1178 | images->fit_hdr_rd = map_sysmem(rd_addr, 0); |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1179 | images->fit_uname_rd = fit_uname_ramdisk; |
Marian Balakowicz | 61c1ad5 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 1180 | images->fit_noffset_rd = rd_noffset; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1181 | break; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1182 | #endif |
Rob Herring | ad8b3a5 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1183 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 1184 | case IMAGE_FORMAT_ANDROID: |
| 1185 | android_image_get_ramdisk((void *)images->os.start, |
| 1186 | &rd_data, &rd_len); |
| 1187 | break; |
| 1188 | #endif |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1189 | default: |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1190 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1191 | end = NULL; |
| 1192 | if (select) |
| 1193 | end = strchr(select, ':'); |
| 1194 | if (end) { |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1195 | rd_len = simple_strtoul(++end, NULL, 16); |
| 1196 | rd_data = rd_addr; |
| 1197 | } else |
| 1198 | #endif |
| 1199 | { |
| 1200 | puts("Wrong Ramdisk Image Format\n"); |
| 1201 | rd_data = rd_len = rd_load = 0; |
| 1202 | return 1; |
| 1203 | } |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1204 | } |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1205 | } else if (images->legacy_hdr_valid && |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1206 | image_check_type(&images->legacy_hdr_os_copy, |
| 1207 | IH_TYPE_MULTI)) { |
| 1208 | |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1209 | /* |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1210 | * Now check if we have a legacy mult-component image, |
| 1211 | * get second entry data start address and len. |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1212 | */ |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1213 | bootstage_mark(BOOTSTAGE_ID_RAMDISK); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1214 | printf("## Loading init Ramdisk from multi component " |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1215 | "Legacy Image at %08lx ...\n", |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1216 | (ulong)images->legacy_hdr_os); |
| 1217 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1218 | image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len); |
Rob Herring | ad8b3a5 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1219 | } else { |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1220 | /* |
| 1221 | * no initrd image |
| 1222 | */ |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1223 | bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1224 | rd_len = rd_data = 0; |
| 1225 | } |
| 1226 | |
| 1227 | if (!rd_data) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1228 | debug("## No init Ramdisk\n"); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1229 | } else { |
| 1230 | *rd_start = rd_data; |
| 1231 | *rd_end = rd_data + rd_len; |
| 1232 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1233 | debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n", |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1234 | *rd_start, *rd_end); |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1235 | |
| 1236 | return 0; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1237 | } |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1238 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1239 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1240 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1241 | * boot_ramdisk_high - relocate init ramdisk |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1242 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1243 | * @rd_data: ramdisk data start address |
| 1244 | * @rd_len: ramdisk data length |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1245 | * @initrd_start: pointer to a ulong variable, will hold final init ramdisk |
| 1246 | * start address (after possible relocation) |
| 1247 | * @initrd_end: pointer to a ulong variable, will hold final init ramdisk |
| 1248 | * end address (after possible relocation) |
| 1249 | * |
Robert P. J. Day | 832d36e | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 1250 | * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1251 | * variable and if requested ramdisk data is moved to a specified location. |
| 1252 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1253 | * Initrd_start and initrd_end are set to final (after relocation) ramdisk |
| 1254 | * start/end addresses if ramdisk image start and len were provided, |
| 1255 | * otherwise set initrd_start and initrd_end set to zeros. |
| 1256 | * |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1257 | * returns: |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1258 | * 0 - success |
| 1259 | * -1 - failure |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1260 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1261 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1262 | ulong *initrd_start, ulong *initrd_end) |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1263 | { |
| 1264 | char *s; |
| 1265 | ulong initrd_high; |
| 1266 | int initrd_copy_to_ram = 1; |
| 1267 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 1268 | s = env_get("initrd_high"); |
| 1269 | if (s) { |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1270 | /* a value of "no" or a similar string will act like 0, |
| 1271 | * turning the "load high" feature off. This is intentional. |
| 1272 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1273 | initrd_high = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1274 | if (initrd_high == ~0) |
| 1275 | initrd_copy_to_ram = 0; |
| 1276 | } else { |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1277 | initrd_high = env_get_bootm_mapsize() + env_get_bootm_low(); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1278 | } |
| 1279 | |
Marian Balakowicz | 902ce70 | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 1280 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1281 | debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1282 | initrd_high, initrd_copy_to_ram); |
| 1283 | |
| 1284 | if (rd_data) { |
| 1285 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1286 | debug(" in-place initrd\n"); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1287 | *initrd_start = rd_data; |
| 1288 | *initrd_end = rd_data + rd_len; |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1289 | lmb_reserve(lmb, rd_data, rd_len); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1290 | } else { |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1291 | if (initrd_high) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1292 | *initrd_start = (ulong)lmb_alloc_base(lmb, |
| 1293 | rd_len, 0x1000, initrd_high); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1294 | else |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1295 | *initrd_start = (ulong)lmb_alloc(lmb, rd_len, |
| 1296 | 0x1000); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1297 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1298 | if (*initrd_start == 0) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1299 | puts("ramdisk - allocation error\n"); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1300 | goto error; |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1301 | } |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1302 | bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1303 | |
| 1304 | *initrd_end = *initrd_start + rd_len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1305 | printf(" Loading Ramdisk to %08lx, end %08lx ... ", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1306 | *initrd_start, *initrd_end); |
| 1307 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1308 | memmove_wd((void *)*initrd_start, |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1309 | (void *)rd_data, rd_len, CHUNKSZ); |
| 1310 | |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 1311 | #ifdef CONFIG_MP |
| 1312 | /* |
| 1313 | * Ensure the image is flushed to memory to handle |
| 1314 | * AMP boot scenarios in which we might not be |
| 1315 | * HW cache coherent |
| 1316 | */ |
Heiko Schocher | d2611aa | 2017-12-14 11:19:22 +0100 | [diff] [blame] | 1317 | flush_cache((unsigned long)*initrd_start, |
| 1318 | ALIGN(rd_len, ARCH_DMA_MINALIGN)); |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 1319 | #endif |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1320 | puts("OK\n"); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1321 | } |
| 1322 | } else { |
| 1323 | *initrd_start = 0; |
| 1324 | *initrd_end = 0; |
| 1325 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1326 | debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1327 | *initrd_start, *initrd_end); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1328 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1329 | return 0; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1330 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1331 | error: |
| 1332 | return -1; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1333 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1334 | #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */ |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1335 | |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1336 | int boot_get_setup(bootm_headers_t *images, uint8_t arch, |
| 1337 | ulong *setup_start, ulong *setup_len) |
| 1338 | { |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1339 | #if IMAGE_ENABLE_FIT |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1340 | return boot_get_setup_fit(images, arch, setup_start, setup_len); |
| 1341 | #else |
| 1342 | return -ENOENT; |
| 1343 | #endif |
| 1344 | } |
| 1345 | |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1346 | #if IMAGE_ENABLE_FIT |
Goldschmidt Simon | 9179c81 | 2017-11-10 14:17:41 +0000 | [diff] [blame] | 1347 | #if defined(CONFIG_FPGA) |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1348 | int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images, |
| 1349 | uint8_t arch, const ulong *ld_start, ulong * const ld_len) |
| 1350 | { |
| 1351 | ulong tmp_img_addr, img_data, img_len; |
| 1352 | void *buf; |
| 1353 | int conf_noffset; |
| 1354 | int fit_img_result; |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1355 | const char *uname, *name; |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1356 | int err; |
| 1357 | int devnum = 0; /* TODO support multi fpga platforms */ |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1358 | |
| 1359 | /* Check to see if the images struct has a FIT configuration */ |
| 1360 | if (!genimg_has_config(images)) { |
| 1361 | debug("## FIT configuration was not specified\n"); |
| 1362 | return 0; |
| 1363 | } |
| 1364 | |
| 1365 | /* |
| 1366 | * Obtain the os FIT header from the images struct |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1367 | */ |
| 1368 | tmp_img_addr = map_to_sysmem(images->fit_hdr_os); |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1369 | buf = map_sysmem(tmp_img_addr, 0); |
| 1370 | /* |
| 1371 | * Check image type. For FIT images get FIT node |
| 1372 | * and attempt to locate a generic binary. |
| 1373 | */ |
| 1374 | switch (genimg_get_format(buf)) { |
| 1375 | case IMAGE_FORMAT_FIT: |
| 1376 | conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg); |
| 1377 | |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1378 | uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0, |
| 1379 | NULL); |
| 1380 | if (!uname) { |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1381 | debug("## FPGA image is not specified\n"); |
| 1382 | return 0; |
| 1383 | } |
| 1384 | fit_img_result = fit_image_load(images, |
| 1385 | tmp_img_addr, |
| 1386 | (const char **)&uname, |
| 1387 | &(images->fit_uname_cfg), |
| 1388 | arch, |
| 1389 | IH_TYPE_FPGA, |
| 1390 | BOOTSTAGE_ID_FPGA_INIT, |
| 1391 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1392 | &img_data, &img_len); |
| 1393 | |
| 1394 | debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n", |
| 1395 | uname, img_data, img_len); |
| 1396 | |
| 1397 | if (fit_img_result < 0) { |
| 1398 | /* Something went wrong! */ |
| 1399 | return fit_img_result; |
| 1400 | } |
| 1401 | |
Goldschmidt Simon | 9179c81 | 2017-11-10 14:17:41 +0000 | [diff] [blame] | 1402 | if (!fpga_is_partial_data(devnum, img_len)) { |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1403 | name = "full"; |
| 1404 | err = fpga_loadbitstream(devnum, (char *)img_data, |
| 1405 | img_len, BIT_FULL); |
| 1406 | if (err) |
| 1407 | err = fpga_load(devnum, (const void *)img_data, |
| 1408 | img_len, BIT_FULL); |
| 1409 | } else { |
| 1410 | name = "partial"; |
| 1411 | err = fpga_loadbitstream(devnum, (char *)img_data, |
| 1412 | img_len, BIT_PARTIAL); |
| 1413 | if (err) |
| 1414 | err = fpga_load(devnum, (const void *)img_data, |
| 1415 | img_len, BIT_PARTIAL); |
| 1416 | } |
| 1417 | |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1418 | if (err) |
Michal Simek | 7fa2030 | 2016-12-16 10:35:40 +0100 | [diff] [blame] | 1419 | return err; |
| 1420 | |
| 1421 | printf(" Programming %s bitstream... OK\n", name); |
Michal Simek | ebae78b | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1422 | break; |
| 1423 | default: |
| 1424 | printf("The given image format is not supported (corrupt?)\n"); |
| 1425 | return 1; |
| 1426 | } |
| 1427 | |
| 1428 | return 0; |
| 1429 | } |
| 1430 | #endif |
| 1431 | |
Andrew F. Davis | 28b28f7 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1432 | static void fit_loadable_process(uint8_t img_type, |
| 1433 | ulong img_data, |
| 1434 | ulong img_len) |
| 1435 | { |
| 1436 | int i; |
| 1437 | const unsigned int count = |
| 1438 | ll_entry_count(struct fit_loadable_tbl, fit_loadable); |
| 1439 | struct fit_loadable_tbl *fit_loadable_handler = |
| 1440 | ll_entry_start(struct fit_loadable_tbl, fit_loadable); |
| 1441 | /* For each loadable handler */ |
| 1442 | for (i = 0; i < count; i++, fit_loadable_handler++) |
| 1443 | /* matching this type */ |
| 1444 | if (fit_loadable_handler->type == img_type) |
| 1445 | /* call that handler with this image data */ |
| 1446 | fit_loadable_handler->handler(img_data, img_len); |
| 1447 | } |
| 1448 | |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1449 | int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images, |
| 1450 | uint8_t arch, const ulong *ld_start, ulong * const ld_len) |
| 1451 | { |
| 1452 | /* |
| 1453 | * These variables are used to hold the current image location |
| 1454 | * in system memory. |
| 1455 | */ |
| 1456 | ulong tmp_img_addr; |
| 1457 | /* |
| 1458 | * These two variables are requirements for fit_image_load, but |
| 1459 | * their values are not used |
| 1460 | */ |
| 1461 | ulong img_data, img_len; |
| 1462 | void *buf; |
| 1463 | int loadables_index; |
| 1464 | int conf_noffset; |
| 1465 | int fit_img_result; |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1466 | const char *uname; |
Andrew F. Davis | 28b28f7 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1467 | uint8_t img_type; |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1468 | |
| 1469 | /* Check to see if the images struct has a FIT configuration */ |
| 1470 | if (!genimg_has_config(images)) { |
| 1471 | debug("## FIT configuration was not specified\n"); |
| 1472 | return 0; |
| 1473 | } |
| 1474 | |
| 1475 | /* |
| 1476 | * Obtain the os FIT header from the images struct |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1477 | */ |
| 1478 | tmp_img_addr = map_to_sysmem(images->fit_hdr_os); |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1479 | buf = map_sysmem(tmp_img_addr, 0); |
| 1480 | /* |
| 1481 | * Check image type. For FIT images get FIT node |
| 1482 | * and attempt to locate a generic binary. |
| 1483 | */ |
| 1484 | switch (genimg_get_format(buf)) { |
| 1485 | case IMAGE_FORMAT_FIT: |
| 1486 | conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg); |
| 1487 | |
| 1488 | for (loadables_index = 0; |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1489 | uname = fdt_stringlist_get(buf, conf_noffset, |
| 1490 | FIT_LOADABLE_PROP, loadables_index, |
| 1491 | NULL), uname; |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1492 | loadables_index++) |
| 1493 | { |
| 1494 | fit_img_result = fit_image_load(images, |
| 1495 | tmp_img_addr, |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1496 | &uname, |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1497 | &(images->fit_uname_cfg), arch, |
| 1498 | IH_TYPE_LOADABLE, |
| 1499 | BOOTSTAGE_ID_FIT_LOADABLE_START, |
| 1500 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1501 | &img_data, &img_len); |
| 1502 | if (fit_img_result < 0) { |
| 1503 | /* Something went wrong! */ |
| 1504 | return fit_img_result; |
| 1505 | } |
Andrew F. Davis | 28b28f7 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1506 | |
| 1507 | fit_img_result = fit_image_get_node(buf, uname); |
| 1508 | if (fit_img_result < 0) { |
| 1509 | /* Something went wrong! */ |
| 1510 | return fit_img_result; |
| 1511 | } |
| 1512 | fit_img_result = fit_image_get_type(buf, |
| 1513 | fit_img_result, |
| 1514 | &img_type); |
| 1515 | if (fit_img_result < 0) { |
| 1516 | /* Something went wrong! */ |
| 1517 | return fit_img_result; |
| 1518 | } |
| 1519 | |
| 1520 | fit_loadable_process(img_type, img_data, img_len); |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1521 | } |
| 1522 | break; |
| 1523 | default: |
| 1524 | printf("The given image format is not supported (corrupt?)\n"); |
| 1525 | return 1; |
| 1526 | } |
| 1527 | |
| 1528 | return 0; |
| 1529 | } |
| 1530 | #endif |
| 1531 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1532 | #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1533 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1534 | * boot_get_cmdline - allocate and initialize kernel cmdline |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1535 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1536 | * @cmd_start: pointer to a ulong variable, will hold cmdline start |
| 1537 | * @cmd_end: pointer to a ulong variable, will hold cmdline end |
| 1538 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1539 | * boot_get_cmdline() allocates space for kernel command line below |
Shyam Saini | efe757c | 2018-06-07 19:47:19 +0530 | [diff] [blame] | 1540 | * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1541 | * variable is present its contents is copied to allocated kernel |
| 1542 | * command line. |
| 1543 | * |
| 1544 | * returns: |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1545 | * 0 - success |
| 1546 | * -1 - failure |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1547 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1548 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1549 | { |
| 1550 | char *cmdline; |
| 1551 | char *s; |
| 1552 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1553 | cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf, |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1554 | env_get_bootm_mapsize() + env_get_bootm_low()); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1555 | |
| 1556 | if (cmdline == NULL) |
| 1557 | return -1; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1558 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 1559 | s = env_get("bootargs"); |
| 1560 | if (!s) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1561 | s = ""; |
| 1562 | |
| 1563 | strcpy(cmdline, s); |
| 1564 | |
| 1565 | *cmd_start = (ulong) & cmdline[0]; |
| 1566 | *cmd_end = *cmd_start + strlen(cmdline); |
| 1567 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1568 | debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1569 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1570 | return 0; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1571 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1572 | #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */ |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1573 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1574 | #ifdef CONFIG_SYS_BOOT_GET_KBD |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1575 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1576 | * boot_get_kbd - allocate and initialize kernel copy of board info |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1577 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1578 | * @kbd: double pointer to board info data |
| 1579 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1580 | * boot_get_kbd() allocates space for kernel copy of board info data below |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1581 | * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 1582 | * with the current u-boot board info data. |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1583 | * |
| 1584 | * returns: |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1585 | * 0 - success |
| 1586 | * -1 - failure |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1587 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1588 | int boot_get_kbd(struct lmb *lmb, bd_t **kbd) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1589 | { |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 1590 | *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1591 | env_get_bootm_mapsize() + env_get_bootm_low()); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1592 | if (*kbd == NULL) |
| 1593 | return -1; |
| 1594 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1595 | **kbd = *(gd->bd); |
| 1596 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1597 | debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1598 | |
| 1599 | #if defined(DEBUG) && defined(CONFIG_CMD_BDI) |
| 1600 | do_bdinfo(NULL, 0, 0, NULL); |
| 1601 | #endif |
| 1602 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1603 | return 0; |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1604 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1605 | #endif /* CONFIG_SYS_BOOT_GET_KBD */ |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1606 | |
| 1607 | #ifdef CONFIG_LMB |
| 1608 | int image_setup_linux(bootm_headers_t *images) |
| 1609 | { |
| 1610 | ulong of_size = images->ft_len; |
| 1611 | char **of_flat_tree = &images->ft_addr; |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1612 | struct lmb *lmb = &images->lmb; |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1613 | int ret; |
| 1614 | |
| 1615 | if (IMAGE_ENABLE_OF_LIBFDT) |
| 1616 | boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree); |
| 1617 | |
| 1618 | if (IMAGE_BOOT_GET_CMDLINE) { |
| 1619 | ret = boot_get_cmdline(lmb, &images->cmdline_start, |
| 1620 | &images->cmdline_end); |
| 1621 | if (ret) { |
| 1622 | puts("ERROR with allocation of cmdline\n"); |
| 1623 | return ret; |
| 1624 | } |
| 1625 | } |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1626 | |
| 1627 | if (IMAGE_ENABLE_OF_LIBFDT) { |
| 1628 | ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size); |
| 1629 | if (ret) |
| 1630 | return ret; |
| 1631 | } |
| 1632 | |
| 1633 | if (IMAGE_ENABLE_OF_LIBFDT && of_size) { |
| 1634 | ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb); |
| 1635 | if (ret) |
| 1636 | return ret; |
| 1637 | } |
| 1638 | |
| 1639 | return 0; |
| 1640 | } |
| 1641 | #endif /* CONFIG_LMB */ |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1642 | #endif /* !USE_HOSTCC */ |