Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 Michal Simek <monstr@monstr.eu> |
Michal Simek | 3e1b61d | 2018-01-17 07:37:47 +0100 | [diff] [blame] | 4 | * (C) Copyright 2013 - 2018 Xilinx, Inc. |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 5 | * |
| 6 | * Common configuration options for all Zynq boards. |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 9 | #ifndef __CONFIG_ZYNQ_COMMON_H |
| 10 | #define __CONFIG_ZYNQ_COMMON_H |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 11 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 12 | /* CPU clock */ |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 13 | #ifndef CONFIG_CPU_FREQ_HZ |
| 14 | # define CONFIG_CPU_FREQ_HZ 800000000 |
| 15 | #endif |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 16 | |
Siva Durga Prasad Paladugu | e2321f0 | 2019-01-22 14:34:12 +0530 | [diff] [blame] | 17 | #define CONFIG_REMAKE_ELF |
| 18 | |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 19 | /* Cache options */ |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 20 | #define CONFIG_SYS_L2CACHE_OFF |
| 21 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 22 | # define CONFIG_SYS_L2_PL310 |
| 23 | # define CONFIG_SYS_PL310_BASE 0xf8f02000 |
| 24 | #endif |
| 25 | |
Michal Simek | a2ec7fb | 2015-04-20 12:56:24 +0200 | [diff] [blame] | 26 | #define ZYNQ_SCUTIMER_BASEADDR 0xF8F00600 |
| 27 | #define CONFIG_SYS_TIMERBASE ZYNQ_SCUTIMER_BASEADDR |
| 28 | #define CONFIG_SYS_TIMER_COUNTS_DOWN |
| 29 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4) |
| 30 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 31 | /* Serial drivers */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 32 | /* The following table includes the supported baudrates */ |
| 33 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 34 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400} |
| 35 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 36 | /* Ethernet driver */ |
Michal Simek | 596e578 | 2015-11-30 14:34:52 +0100 | [diff] [blame] | 37 | #if defined(CONFIG_ZYNQ_GEM) |
Jagannadha Sutradharudu Teki | 88fcfb1 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 38 | # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Michal Simek | dd1c351 | 2015-01-13 16:27:14 +0100 | [diff] [blame] | 39 | # define CONFIG_BOOTP_MAY_FAIL |
Jagannadha Sutradharudu Teki | 88fcfb1 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 40 | #endif |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 41 | |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 42 | /* NOR */ |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 43 | #ifdef CONFIG_MTD_NOR_FLASH |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 44 | # define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 45 | # define CONFIG_SYS_MAX_FLASH_SECT 512 |
| 46 | # define CONFIG_SYS_FLASH_ERASE_TOUT 1000 |
| 47 | # define CONFIG_SYS_FLASH_WRITE_TOUT 5000 |
| 48 | # define CONFIG_FLASH_SHOW_PROGRESS 10 |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 49 | # undef CONFIG_SYS_FLASH_EMPTY_INFO |
Michal Simek | 5992f25 | 2020-02-25 14:55:58 +0100 | [diff] [blame] | 50 | # define CONFIG_SYS_FLASH_QUIET_TEST |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 51 | #endif |
| 52 | |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 53 | #ifdef CONFIG_NAND_ZYNQ |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 54 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 55 | #endif |
| 56 | |
Siva Durga Prasad Paladugu | 2cdc778 | 2016-07-22 14:51:51 +0530 | [diff] [blame] | 57 | #ifdef CONFIG_USB_EHCI_ZYNQ |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 58 | # define DFU_DEFAULT_POLL_TIMEOUT 300 |
Michal Simek | 1e8d383 | 2016-04-07 18:55:11 +0200 | [diff] [blame] | 59 | # define CONFIG_THOR_RESET_OFF |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 60 | #endif |
| 61 | |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 62 | /* enable preboot to be loaded before CONFIG_BOOTDELAY */ |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 63 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 64 | /* Boot configuration */ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 65 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 66 | #ifdef CONFIG_SPL_BUILD |
| 67 | #define BOOTENV |
| 68 | #else |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 69 | |
| 70 | #ifdef CONFIG_CMD_MMC |
Michal Simek | 7712fb1 | 2019-09-11 12:51:49 +0200 | [diff] [blame] | 71 | #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 72 | #else |
| 73 | #define BOOT_TARGET_DEVICES_MMC(func) |
| 74 | #endif |
| 75 | |
| 76 | #ifdef CONFIG_CMD_USB |
Michal Simek | 559e5a6 | 2019-09-11 13:00:57 +0200 | [diff] [blame] | 77 | #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) func(USB, usb, 1) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 78 | #else |
| 79 | #define BOOT_TARGET_DEVICES_USB(func) |
| 80 | #endif |
| 81 | |
Joe Hershberger | 86271b3 | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 82 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 83 | #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 84 | #else |
| 85 | #define BOOT_TARGET_DEVICES_PXE(func) |
| 86 | #endif |
| 87 | |
| 88 | #if defined(CONFIG_CMD_DHCP) |
| 89 | #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 90 | #else |
| 91 | #define BOOT_TARGET_DEVICES_DHCP(func) |
| 92 | #endif |
| 93 | |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 94 | #if defined(CONFIG_ZYNQ_QSPI) |
| 95 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na) |
| 96 | #else |
| 97 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 98 | #endif |
| 99 | |
| 100 | #if defined(CONFIG_NAND_ZYNQ) |
| 101 | # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, na) |
| 102 | #else |
| 103 | # define BOOT_TARGET_DEVICES_NAND(func) |
| 104 | #endif |
| 105 | |
| 106 | #if defined(CONFIG_MTD_NOR_FLASH) |
| 107 | # define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na) |
| 108 | #else |
| 109 | # define BOOT_TARGET_DEVICES_NOR(func) |
| 110 | #endif |
| 111 | |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 112 | #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ |
| 113 | "bootcmd_qspi=sf probe 0 0 0 && " \ |
Michal Simek | a542a93 | 2019-09-11 13:12:43 +0200 | [diff] [blame] | 114 | "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 115 | "echo QSPI: Trying to boot script at ${scriptaddr} && " \ |
| 116 | "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 117 | |
| 118 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 119 | "qspi " |
| 120 | |
| 121 | #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ |
| 122 | "bootcmd_nand=nand info && " \ |
Michal Simek | a542a93 | 2019-09-11 13:12:43 +0200 | [diff] [blame] | 123 | "nand read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 124 | "echo NAND: Trying to boot script at ${scriptaddr} && " \ |
| 125 | "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 126 | |
| 127 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 128 | "nand " |
| 129 | |
| 130 | #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \ |
Michal Simek | 90b9fcb | 2019-09-11 13:16:33 +0200 | [diff] [blame] | 131 | "script_offset_nor=0xE2FC0000\0" \ |
| 132 | "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 133 | "echo NOR: Trying to boot script at ${scriptaddr} && " \ |
| 134 | "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 135 | |
| 136 | #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \ |
| 137 | "nor " |
| 138 | |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 139 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 140 | |
| 141 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 142 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 143 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 144 | |
| 145 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 146 | "jtag " |
| 147 | |
T Karthik Reddy | b8126ab | 2021-03-30 23:24:58 -0600 | [diff] [blame] | 148 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 149 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 150 | |
| 151 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 152 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 153 | "$scriptaddr $script_size_f && " \ |
| 154 | "dfu " #instance " ram " #instance " 60 && " \ |
| 155 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 156 | "source ${scriptaddr}; " \ |
| 157 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 158 | |
| 159 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 160 | "" |
| 161 | |
| 162 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 163 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
| 164 | |
| 165 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 166 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 167 | "$scriptaddr $script_size_f && " \ |
| 168 | "thordown " #instance " ram " #instance " && " \ |
| 169 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 170 | "source ${scriptaddr}; " \ |
| 171 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
| 172 | |
| 173 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 174 | "" |
| 175 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 176 | #define BOOT_TARGET_DEVICES(func) \ |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 177 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 178 | BOOT_TARGET_DEVICES_MMC(func) \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 179 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 180 | BOOT_TARGET_DEVICES_NAND(func) \ |
| 181 | BOOT_TARGET_DEVICES_NOR(func) \ |
T Karthik Reddy | b8126ab | 2021-03-30 23:24:58 -0600 | [diff] [blame] | 182 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 183 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 184 | BOOT_TARGET_DEVICES_USB(func) \ |
| 185 | BOOT_TARGET_DEVICES_PXE(func) \ |
Michal Simek | 83a0e80 | 2019-09-10 15:01:53 +0200 | [diff] [blame] | 186 | BOOT_TARGET_DEVICES_DHCP(func) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 187 | |
| 188 | #include <config_distro_bootcmd.h> |
| 189 | #endif /* CONFIG_SPL_BUILD */ |
| 190 | |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 191 | /* Default environment */ |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 192 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 193 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 194 | "scriptaddr=0x20000\0" \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 195 | "script_size_f=0x40000\0" \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 196 | "fdt_addr_r=0x1f00000\0" \ |
| 197 | "pxefile_addr_r=0x2000000\0" \ |
| 198 | "kernel_addr_r=0x2000000\0" \ |
| 199 | "scriptaddr=0x3000000\0" \ |
| 200 | "ramdisk_addr_r=0x3100000\0" \ |
Michal Simek | 83a0e80 | 2019-09-10 15:01:53 +0200 | [diff] [blame] | 201 | BOOTENV |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 202 | #endif |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 203 | |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 204 | /* Miscellaneous configurable options */ |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 205 | |
Soren Brinkmann | 6c3e61d | 2013-11-21 13:38:54 -0800 | [diff] [blame] | 206 | #define CONFIG_CLOCKS |
Michal Simek | 841426a | 2014-04-25 13:33:19 +0200 | [diff] [blame] | 207 | #define CONFIG_SYS_MAXARGS 32 /* max number of command args */ |
Michal Simek | 8567717 | 2019-09-10 15:49:42 +0200 | [diff] [blame] | 208 | #define CONFIG_SYS_CBSIZE 2048 /* Console I/O Buffer Size */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 209 | |
Michal Simek | c1584e2 | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 210 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000 |
Siva Durga Prasad Paladugu | d6d82cb | 2017-07-24 16:53:15 +0530 | [diff] [blame] | 211 | #define CONFIG_SYS_INIT_RAM_SIZE 0x2000 |
Jagannadha Sutradharudu Teki | 7cd0419 | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 212 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 213 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 214 | GENERATED_GBL_DATA_SIZE) |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 215 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 216 | |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 217 | /* Extend size of kernel image for uncompression */ |
Michal Simek | 3d456ee | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 218 | #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 219 | |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 220 | /* Boot FreeBSD/vxWorks from an ELF image */ |
Michal Simek | d82d63c | 2016-02-04 11:08:26 +0100 | [diff] [blame] | 221 | #define CONFIG_SYS_MMC_MAX_DEVICE 1 |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 222 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 223 | /* MMC support */ |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 224 | #ifdef CONFIG_MMC_SDHCI_ZYNQ |
Masahiro Yamada | 7f307d9 | 2016-04-14 06:52:26 +0900 | [diff] [blame] | 225 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
Masahiro Yamada | 0dfbcf0 | 2014-05-15 20:37:52 +0900 | [diff] [blame] | 226 | #endif |
| 227 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 228 | /* Address in RAM where the parameters must be copied by SPL. */ |
| 229 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x10000000 |
| 230 | |
Guillaume GARDET | 205b4f3 | 2014-10-15 17:53:11 +0200 | [diff] [blame] | 231 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "system.dtb" |
| 232 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 233 | |
| 234 | /* Not using MMC raw mode - just for compilation purpose */ |
| 235 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 |
| 236 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 |
| 237 | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0 |
| 238 | |
| 239 | /* qspi mode is working fine */ |
| 240 | #ifdef CONFIG_ZYNQ_QSPI |
Siva Durga Prasad Paladugu | 8e0e01d | 2015-09-14 12:59:08 +0530 | [diff] [blame] | 241 | #define CONFIG_SYS_SPI_ARGS_OFFS 0x200000 |
| 242 | #define CONFIG_SYS_SPI_ARGS_SIZE 0x80000 |
| 243 | #define CONFIG_SYS_SPI_KERNEL_OFFS (CONFIG_SYS_SPI_ARGS_OFFS + \ |
| 244 | CONFIG_SYS_SPI_ARGS_SIZE) |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 245 | #endif |
| 246 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 247 | /* SP location before relocation, must use scratch RAM */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 248 | |
| 249 | /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */ |
| 250 | #define CONFIG_SPL_MAX_SIZE 0x30000 |
| 251 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 252 | /* On the top of OCM space */ |
Michal Simek | 52b36fd | 2017-12-01 13:50:33 +0100 | [diff] [blame] | 253 | #define CONFIG_SYS_SPL_MALLOC_START CONFIG_SPL_STACK_R_ADDR |
| 254 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x2000000 |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 255 | |
Michal Simek | 83b6464 | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 256 | /* |
| 257 | * SPL stack position - and stack goes down |
| 258 | * 0xfffffe00 is used for putting wfi loop. |
| 259 | * Set it up as limit for now. |
| 260 | */ |
| 261 | #define CONFIG_SPL_STACK 0xfffffe00 |
| 262 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 263 | /* BSS setup */ |
| 264 | #define CONFIG_SPL_BSS_START_ADDR 0x100000 |
| 265 | #define CONFIG_SPL_BSS_MAX_SIZE 0x100000 |
| 266 | |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 267 | #endif /* __CONFIG_ZYNQ_COMMON_H */ |