Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Configuration for Xilinx ZynqMP |
| 4 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
| 5 | * Michal Simek <michal.simek@xilinx.com> |
| 6 | * |
| 7 | * Based on Configuration for Versatile Express |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __XILINX_ZYNQMP_H |
| 11 | #define __XILINX_ZYNQMP_H |
| 12 | |
| 13 | #define CONFIG_REMAKE_ELF |
| 14 | |
| 15 | /* #define CONFIG_ARMV8_SWITCH_TO_EL1 */ |
| 16 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 17 | /* Generic Interrupt Controller Definitions */ |
| 18 | #define CONFIG_GICV2 |
| 19 | #define GICD_BASE 0xF9010000 |
| 20 | #define GICC_BASE 0xF9020000 |
| 21 | |
Soren Brinkmann | e911cd0 | 2016-07-27 14:12:03 -0700 | [diff] [blame] | 22 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 23 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 24 | /* Generic Timer Definitions - setup in EL3. Setup by ATF for other cases */ |
Michal Simek | d48a170 | 2015-11-05 08:32:14 +0100 | [diff] [blame] | 25 | #if !defined(COUNTER_FREQUENCY) |
| 26 | # define COUNTER_FREQUENCY 100000000 |
| 27 | #endif |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 28 | |
| 29 | /* Size of malloc() pool */ |
Michal Simek | 1496162 | 2021-04-26 08:27:04 +0200 | [diff] [blame] | 30 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 0x4000000) |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 31 | |
| 32 | /* Serial setup */ |
Michal Simek | d5c13f7 | 2016-02-23 10:02:29 +0100 | [diff] [blame] | 33 | #define CONFIG_CPU_ARMV8 |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 34 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 35 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 36 | { 4800, 9600, 19200, 38400, 57600, 115200 } |
| 37 | |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 38 | /* BOOTP options */ |
| 39 | #define CONFIG_BOOTP_BOOTFILESIZE |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 40 | #define CONFIG_BOOTP_MAY_FAIL |
Michal Simek | 0061556 | 2016-04-22 14:28:17 +0200 | [diff] [blame] | 41 | |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 42 | #ifdef CONFIG_NAND_ARASAN |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 43 | # define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 44 | # define CONFIG_SYS_NAND_ONFI_DETECTION |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 45 | #endif |
| 46 | |
Michal Simek | 1a1ab5a | 2018-01-15 12:52:59 +0100 | [diff] [blame] | 47 | #if defined(CONFIG_SPL_BUILD) |
| 48 | #define CONFIG_ZYNQMP_PSU_INIT_ENABLED |
| 49 | #endif |
| 50 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 51 | /* Miscellaneous configurable options */ |
| 52 | #define CONFIG_SYS_LOAD_ADDR 0x8000000 |
| 53 | |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 54 | #if defined(CONFIG_ZYNQMP_USB) |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 55 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 56 | #define CONFIG_THOR_RESET_OFF |
Siva Durga Prasad Paladugu | 82e7fb2 | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 57 | |
| 58 | #ifndef CONFIG_SPL_BUILD |
Siva Durga Prasad Paladugu | 82e7fb2 | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 59 | # define PARTS_DEFAULT \ |
| 60 | "partitions=uuid_disk=${uuid_gpt_disk};" \ |
| 61 | "name=""boot"",size=16M,uuid=${uuid_gpt_boot};" \ |
| 62 | "name=""Linux"",size=-M,uuid=${uuid_gpt_Linux}\0" |
| 63 | #endif |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 64 | #endif |
| 65 | |
Siva Durga Prasad Paladugu | 82e7fb2 | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 66 | #if !defined(PARTS_DEFAULT) |
| 67 | # define PARTS_DEFAULT |
| 68 | #endif |
| 69 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 70 | /* Monitor Command Prompt */ |
| 71 | /* Console I/O Buffer Size */ |
| 72 | #define CONFIG_SYS_CBSIZE 2048 |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 73 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 74 | #define CONFIG_SYS_MAXARGS 64 |
| 75 | |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 76 | /* Ethernet driver */ |
Michal Simek | 3d7285f | 2015-11-30 14:34:52 +0100 | [diff] [blame] | 77 | #if defined(CONFIG_ZYNQ_GEM) |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 78 | # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Siva Durga Prasad Paladugu | 7355104 | 2016-01-05 15:21:46 +0530 | [diff] [blame] | 79 | # define PHY_ANEG_TIMEOUT 20000 |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 80 | #endif |
| 81 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 82 | #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) |
| 83 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 84 | #define CONFIG_CLOCKS |
| 85 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 86 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 87 | "fdt_addr_r=0x40000000\0" \ |
Michal Simek | 23bbbbf | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 88 | "fdt_size_r=0x400000\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 89 | "pxefile_addr_r=0x10000000\0" \ |
| 90 | "kernel_addr_r=0x18000000\0" \ |
Michal Simek | 23bbbbf | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 91 | "kernel_size_r=0x10000000\0" \ |
Siva Durga Prasad Paladugu | 94643bf | 2019-06-25 17:41:08 +0530 | [diff] [blame] | 92 | "scriptaddr=0x20000000\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 93 | "ramdisk_addr_r=0x02100000\0" \ |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 94 | "script_size_f=0x80000\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 95 | |
Masahiro Yamada | 168c57d | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 96 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 97 | # define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
| 98 | #else |
| 99 | # define BOOT_TARGET_DEVICES_MMC(func) |
| 100 | #endif |
| 101 | |
| 102 | #if defined(CONFIG_SATA_CEVA) |
| 103 | # define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0) |
| 104 | #else |
| 105 | # define BOOT_TARGET_DEVICES_SCSI(func) |
| 106 | #endif |
| 107 | |
| 108 | #if defined(CONFIG_ZYNQMP_USB) |
| 109 | # define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) func(USB, usb, 1) |
| 110 | #else |
| 111 | # define BOOT_TARGET_DEVICES_USB(func) |
| 112 | #endif |
| 113 | |
Joe Hershberger | 8e8594f | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 114 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Michal Simek | 5d23227 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 115 | # define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 116 | #else |
| 117 | # define BOOT_TARGET_DEVICES_PXE(func) |
| 118 | #endif |
| 119 | |
| 120 | #if defined(CONFIG_CMD_DHCP) |
| 121 | # define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 122 | #else |
| 123 | # define BOOT_TARGET_DEVICES_DHCP(func) |
| 124 | #endif |
| 125 | |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 126 | #if defined(CONFIG_ZYNQMP_GQSPI) |
| 127 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, 0) |
| 128 | #else |
| 129 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 130 | #endif |
| 131 | |
| 132 | #if defined(CONFIG_NAND_ARASAN) |
| 133 | # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, 0) |
| 134 | #else |
| 135 | # define BOOT_TARGET_DEVICES_NAND(func) |
| 136 | #endif |
| 137 | |
| 138 | #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ |
| 139 | "bootcmd_" #devtypel #instance "=sf probe " #instance " 0 0 && " \ |
| 140 | "sf read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 141 | "echo QSPI: Trying to boot script at ${scriptaddr} && " \ |
| 142 | "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 143 | |
| 144 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 145 | #devtypel #instance " " |
| 146 | |
| 147 | #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ |
| 148 | "bootcmd_" #devtypel #instance "= nand info && " \ |
| 149 | "nand read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 150 | "echo NAND: Trying to boot script at ${scriptaddr} && " \ |
| 151 | "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 152 | |
| 153 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 154 | #devtypel #instance " " |
| 155 | |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 156 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 157 | |
| 158 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 159 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 160 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 161 | |
| 162 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 163 | "jtag " |
| 164 | |
T Karthik Reddy | 9eee8e3 | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 165 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 166 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 167 | |
| 168 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 169 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 170 | "$scriptaddr $script_size_f && " \ |
| 171 | "dfu " #instance " ram " #instance " 60 && " \ |
| 172 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 173 | "source ${scriptaddr}; " \ |
| 174 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 175 | |
| 176 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 177 | "" |
| 178 | |
| 179 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 180 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
| 181 | |
| 182 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 183 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 184 | "$scriptaddr $script_size_f && " \ |
| 185 | "thordown " #instance " ram " #instance " && " \ |
| 186 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 187 | "source ${scriptaddr}; " \ |
| 188 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
| 189 | |
| 190 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 191 | "" |
| 192 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 193 | #define BOOT_TARGET_DEVICES(func) \ |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 194 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 195 | BOOT_TARGET_DEVICES_MMC(func) \ |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 196 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 197 | BOOT_TARGET_DEVICES_NAND(func) \ |
T Karthik Reddy | 9eee8e3 | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 198 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 199 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 200 | BOOT_TARGET_DEVICES_USB(func) \ |
| 201 | BOOT_TARGET_DEVICES_SCSI(func) \ |
Michal Simek | 5d23227 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 202 | BOOT_TARGET_DEVICES_PXE(func) \ |
| 203 | BOOT_TARGET_DEVICES_DHCP(func) |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 204 | |
| 205 | #include <config_distro_bootcmd.h> |
| 206 | |
| 207 | /* Initial environment variables */ |
| 208 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
| 209 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 210 | ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | fc3c708 | 2021-03-25 09:55:30 +0100 | [diff] [blame] | 211 | BOOTENV |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 212 | #endif |
| 213 | |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 214 | /* SPL can't handle all huge variables - define just DFU */ |
Andrew F. Davis | 6d932e6 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 215 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_DFU) |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 216 | #undef CONFIG_EXTRA_ENV_SETTINGS |
| 217 | # define CONFIG_EXTRA_ENV_SETTINGS \ |
| 218 | "dfu_alt_info_ram=uboot.bin ram 0x8000000 0x1000000;" \ |
| 219 | "atf-uboot.ub ram 0x10000000 0x1000000;" \ |
| 220 | "Image ram 0x80000 0x3f80000;" \ |
| 221 | "system.dtb ram 0x4000000 0x100000\0" \ |
| 222 | "dfu_bufsiz=0x1000\0" |
| 223 | #endif |
| 224 | |
Soren Brinkmann | e911cd0 | 2016-07-27 14:12:03 -0700 | [diff] [blame] | 225 | #define CONFIG_SPL_STACK 0xfffffffc |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 226 | #define CONFIG_SPL_MAX_SIZE 0x40000 |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 227 | |
| 228 | /* Just random location in OCM */ |
Michal Simek | 89e1f76 | 2016-08-30 14:58:46 +0200 | [diff] [blame] | 229 | #define CONFIG_SPL_BSS_START_ADDR 0x0 |
| 230 | #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 231 | |
Michal Simek | 933b6f7 | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 232 | #if defined(CONFIG_SPL_SPI_FLASH_SUPPORT) |
Michal Simek | 933b6f7 | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 233 | # define CONFIG_SYS_SPI_KERNEL_OFFS 0x80000 |
| 234 | # define CONFIG_SYS_SPI_ARGS_OFFS 0xa0000 |
| 235 | # define CONFIG_SYS_SPI_ARGS_SIZE 0xa0000 |
Hannes Schmelzer | 30d69e2 | 2019-08-22 15:41:43 +0200 | [diff] [blame] | 236 | #endif |
Michal Simek | 933b6f7 | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 237 | |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 238 | /* u-boot is like dtb */ |
| 239 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "u-boot.bin" |
| 240 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x8000000 |
| 241 | |
| 242 | /* ATF is my kernel image */ |
Michal Simek | f5140be | 2016-09-21 11:42:58 +0200 | [diff] [blame] | 243 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "atf-uboot.ub" |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 244 | |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 245 | /* MMC support */ |
Masahiro Yamada | 168c57d | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 246 | #ifdef CONFIG_MMC_SDHCI_ZYNQ |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 247 | # define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 /* unused */ |
| 248 | # define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* unused */ |
| 249 | # define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0 /* unused */ |
Michal Simek | a7178b7 | 2019-10-02 15:55:57 +0200 | [diff] [blame] | 250 | # if defined(CONFIG_SPL_LOAD_FIT) |
| 251 | # define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.itb" |
| 252 | # else |
| 253 | # define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
| 254 | # endif |
Michal Simek | 72536fd | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 255 | #endif |
| 256 | |
Andrew F. Davis | 6d932e6 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 257 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_DFU) |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 258 | # define CONFIG_SPL_ENV_SUPPORT |
| 259 | # define CONFIG_SPL_HASH_SUPPORT |
| 260 | # define CONFIG_ENV_MAX_ENTRIES 10 |
Michal Simek | 77316dd | 2017-12-01 14:34:03 +0100 | [diff] [blame] | 261 | #endif |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 262 | |
Michal Simek | 77316dd | 2017-12-01 14:34:03 +0100 | [diff] [blame] | 263 | #define CONFIG_SYS_SPL_MALLOC_START 0x20000000 |
Ricardo Salveti | 177acd6 | 2021-07-06 20:43:01 -0300 | [diff] [blame] | 264 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x1000000 |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 265 | |
| 266 | #ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE |
| 267 | # error "Disable CONFIG_SPL_SYS_MALLOC_SIMPLE. Full malloc needs to be used" |
| 268 | #endif |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 269 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 270 | #endif /* __XILINX_ZYNQMP_H */ |