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