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