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