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