Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Michal Simek <monstr@monstr.eu> |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 3 | * (C) Copyright 2013 Xilinx, Inc. |
| 4 | * |
| 5 | * Common configuration options for all Zynq boards. |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 10 | #ifndef __CONFIG_ZYNQ_COMMON_H |
| 11 | #define __CONFIG_ZYNQ_COMMON_H |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 12 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 13 | /* CPU clock */ |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 14 | #ifndef CONFIG_CPU_FREQ_HZ |
| 15 | # define CONFIG_CPU_FREQ_HZ 800000000 |
| 16 | #endif |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 17 | |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 18 | /* Cache options */ |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 19 | #define CONFIG_SYS_L2CACHE_OFF |
| 20 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 21 | # define CONFIG_SYS_L2_PL310 |
| 22 | # define CONFIG_SYS_PL310_BASE 0xf8f02000 |
| 23 | #endif |
| 24 | |
Michal Simek | a2ec7fb | 2015-04-20 12:56:24 +0200 | [diff] [blame] | 25 | #define ZYNQ_SCUTIMER_BASEADDR 0xF8F00600 |
| 26 | #define CONFIG_SYS_TIMERBASE ZYNQ_SCUTIMER_BASEADDR |
| 27 | #define CONFIG_SYS_TIMER_COUNTS_DOWN |
| 28 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4) |
| 29 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 30 | /* Serial drivers */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 31 | /* The following table includes the supported baudrates */ |
| 32 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 33 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400} |
| 34 | |
Michal Simek | 636ac18 | 2016-02-23 10:02:29 +0100 | [diff] [blame] | 35 | #define CONFIG_ARM_DCC |
| 36 | #define CONFIG_ZYNQ_SERIAL |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 37 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 38 | /* Ethernet driver */ |
Michal Simek | 596e578 | 2015-11-30 14:34:52 +0100 | [diff] [blame] | 39 | #if defined(CONFIG_ZYNQ_GEM) |
Jagannadha Sutradharudu Teki | 88fcfb1 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 40 | # define CONFIG_MII |
| 41 | # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Jagannadha Sutradharudu Teki | 88fcfb1 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 42 | # define CONFIG_PHY_MARVELL |
Michal Simek | 9ec2cf0 | 2016-02-06 13:34:54 +0100 | [diff] [blame] | 43 | # define CONFIG_PHY_REALTEK |
Siva Durga Prasad Paladugu | 217185b | 2016-02-05 13:22:12 +0530 | [diff] [blame] | 44 | # define CONFIG_PHY_XILINX |
Michal Simek | dd1c351 | 2015-01-13 16:27:14 +0100 | [diff] [blame] | 45 | # define CONFIG_BOOTP_BOOTPATH |
| 46 | # define CONFIG_BOOTP_GATEWAY |
| 47 | # define CONFIG_BOOTP_HOSTNAME |
| 48 | # define CONFIG_BOOTP_MAY_FAIL |
Jagannadha Sutradharudu Teki | 88fcfb1 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 49 | #endif |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 50 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 51 | /* SPI */ |
| 52 | #ifdef CONFIG_ZYNQ_SPI |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 53 | #endif |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 54 | |
Jagan Teki | a241d4e | 2015-08-17 18:55:02 +0530 | [diff] [blame] | 55 | /* QSPI */ |
| 56 | #ifdef CONFIG_ZYNQ_QSPI |
| 57 | # define CONFIG_SF_DEFAULT_SPEED 30000000 |
Jagan Teki | 232a8e4 | 2015-09-04 18:30:34 +0530 | [diff] [blame] | 58 | # define CONFIG_SPI_FLASH_ISSI |
Jagan Teki | a241d4e | 2015-08-17 18:55:02 +0530 | [diff] [blame] | 59 | #endif |
| 60 | |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 61 | /* NOR */ |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 62 | #ifdef CONFIG_MTD_NOR_FLASH |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 63 | # define CONFIG_SYS_FLASH_BASE 0xE2000000 |
| 64 | # define CONFIG_SYS_FLASH_SIZE (16 * 1024 * 1024) |
| 65 | # define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 66 | # define CONFIG_SYS_MAX_FLASH_SECT 512 |
| 67 | # define CONFIG_SYS_FLASH_ERASE_TOUT 1000 |
| 68 | # define CONFIG_SYS_FLASH_WRITE_TOUT 5000 |
| 69 | # define CONFIG_FLASH_SHOW_PROGRESS 10 |
| 70 | # define CONFIG_SYS_FLASH_CFI |
| 71 | # undef CONFIG_SYS_FLASH_EMPTY_INFO |
| 72 | # define CONFIG_FLASH_CFI_DRIVER |
| 73 | # undef CONFIG_SYS_FLASH_PROTECTION |
| 74 | # define CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
| 75 | #endif |
| 76 | |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 77 | #ifdef CONFIG_NAND_ZYNQ |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 78 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 79 | #define CONFIG_SYS_NAND_ONFI_DETECTION |
| 80 | #define CONFIG_MTD_DEVICE |
| 81 | #endif |
| 82 | |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 83 | /* MMC */ |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 84 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) |
Michal Simek | f3bd728 | 2015-09-29 01:27:13 +0200 | [diff] [blame] | 85 | # define CONFIG_ZYNQ_SDHCI_MAX_FREQ 52000000 |
Michal Simek | 293eb33 | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 86 | #endif |
| 87 | |
Siva Durga Prasad Paladugu | 2cdc778 | 2016-07-22 14:51:51 +0530 | [diff] [blame] | 88 | #ifdef CONFIG_USB_EHCI_ZYNQ |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 89 | # define CONFIG_EHCI_IS_TDI |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 90 | |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 91 | # define CONFIG_SYS_DFU_DATA_BUF_SIZE 0x600000 |
| 92 | # define DFU_DEFAULT_POLL_TIMEOUT 300 |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 93 | # define CONFIG_USB_CABLE_CHECK |
Michal Simek | 1e8d383 | 2016-04-07 18:55:11 +0200 | [diff] [blame] | 94 | # define CONFIG_THOR_RESET_OFF |
Paul Kocialkowski | 01acd6a | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 95 | # define CONFIG_USB_FUNCTION_THOR |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 96 | # define DFU_ALT_INFO_RAM \ |
| 97 | "dfu_ram_info=" \ |
| 98 | "set dfu_alt_info " \ |
| 99 | "${kernel_image} ram 0x3000000 0x500000\\\\;" \ |
| 100 | "${devicetree_image} ram 0x2A00000 0x20000\\\\;" \ |
| 101 | "${ramdisk_image} ram 0x2000000 0x600000\0" \ |
Siva Durga Prasad Paladugu | c4fa511 | 2014-09-08 22:09:37 +0530 | [diff] [blame] | 102 | "dfu_ram=run dfu_ram_info && dfu 0 ram 0\0" \ |
| 103 | "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] | 104 | |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 105 | # if defined(CONFIG_MMC_SDHCI_ZYNQ) |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 106 | # define DFU_ALT_INFO_MMC \ |
| 107 | "dfu_mmc_info=" \ |
| 108 | "set dfu_alt_info " \ |
| 109 | "${kernel_image} fat 0 1\\\\;" \ |
| 110 | "${devicetree_image} fat 0 1\\\\;" \ |
| 111 | "${ramdisk_image} fat 0 1\0" \ |
Siva Durga Prasad Paladugu | c4fa511 | 2014-09-08 22:09:37 +0530 | [diff] [blame] | 112 | "dfu_mmc=run dfu_mmc_info && dfu 0 mmc 0\0" \ |
| 113 | "thor_mmc=run dfu_mmc_info && thordown 0 mmc 0\0" |
| 114 | |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 115 | # define DFU_ALT_INFO \ |
| 116 | DFU_ALT_INFO_RAM \ |
| 117 | DFU_ALT_INFO_MMC |
| 118 | # else |
| 119 | # define DFU_ALT_INFO \ |
| 120 | DFU_ALT_INFO_RAM |
| 121 | # endif |
| 122 | #endif |
| 123 | |
| 124 | #if !defined(DFU_ALT_INFO) |
| 125 | # define DFU_ALT_INFO |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 126 | #endif |
| 127 | |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 128 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) || defined(CONFIG_ZYNQ_USB) |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 129 | # define CONFIG_SUPPORT_VFAT |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 130 | #endif |
| 131 | |
Siva Durga Prasad Paladugu | 1c3f2c7 | 2015-10-28 11:19:08 +0530 | [diff] [blame] | 132 | #if defined(CONFIG_ZYNQ_I2C0) || defined(CONFIG_ZYNQ_I2C1) |
Michael Burr | 1894863 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 133 | #define CONFIG_SYS_I2C_ZYNQ |
Siva Durga Prasad Paladugu | 1c3f2c7 | 2015-10-28 11:19:08 +0530 | [diff] [blame] | 134 | #endif |
| 135 | |
Michal Simek | 8934f78 | 2013-04-22 15:21:33 +0200 | [diff] [blame] | 136 | /* I2C */ |
Michael Burr | 1894863 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 137 | #if defined(CONFIG_SYS_I2C_ZYNQ) |
Heiko Schocher | 0bdffe7 | 2013-11-08 07:30:53 +0100 | [diff] [blame] | 138 | # define CONFIG_SYS_I2C |
Heiko Schocher | 0bdffe7 | 2013-11-08 07:30:53 +0100 | [diff] [blame] | 139 | # define CONFIG_SYS_I2C_ZYNQ_SPEED 100000 |
Michael Burr | 1894863 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 140 | # define CONFIG_SYS_I2C_ZYNQ_SLAVE 0 |
Michal Simek | 8934f78 | 2013-04-22 15:21:33 +0200 | [diff] [blame] | 141 | #endif |
| 142 | |
Jagannadha Sutradharudu Teki | 65da1ef | 2014-01-09 01:48:16 +0530 | [diff] [blame] | 143 | /* EEPROM */ |
| 144 | #ifdef CONFIG_ZYNQ_EEPROM |
Jagannadha Sutradharudu Teki | 65da1ef | 2014-01-09 01:48:16 +0530 | [diff] [blame] | 145 | # define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 146 | # define CONFIG_SYS_I2C_EEPROM_ADDR 0x54 |
| 147 | # define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4 |
| 148 | # define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 |
| 149 | # define CONFIG_SYS_EEPROM_SIZE 1024 /* Bytes */ |
| 150 | #endif |
| 151 | |
Jagannadha Sutradharudu Teki | 18eee22 | 2014-01-09 01:48:23 +0530 | [diff] [blame] | 152 | /* Total Size of Environment Sector */ |
| 153 | #define CONFIG_ENV_SIZE (128 << 10) |
| 154 | |
Jagannadha Sutradharudu Teki | b660ca1 | 2014-01-09 01:48:25 +0530 | [diff] [blame] | 155 | /* Allow to overwrite serial and ethaddr */ |
| 156 | #define CONFIG_ENV_OVERWRITE |
| 157 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 158 | /* Environment */ |
Jagannadha Sutradharudu Teki | ed53e4d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 159 | #ifndef CONFIG_ENV_IS_NOWHERE |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 160 | # ifdef CONFIG_MTD_NOR_FLASH |
Michal Simek | 18c61e9 | 2016-02-13 12:02:53 +0100 | [diff] [blame] | 161 | /* Environment in NOR flash */ |
Michal Simek | 18c61e9 | 2016-02-13 12:02:53 +0100 | [diff] [blame] | 162 | # elif defined(CONFIG_ZYNQ_QSPI) |
| 163 | /* Environment in Serial Flash */ |
Jagannadha Sutradharudu Teki | ed53e4d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 164 | # endif |
| 165 | |
| 166 | # define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE |
| 167 | # define CONFIG_ENV_OFFSET 0xE0000 |
Jagannadha Sutradharudu Teki | ed53e4d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 168 | #endif |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 169 | |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 170 | /* enable preboot to be loaded before CONFIG_BOOTDELAY */ |
| 171 | #define CONFIG_PREBOOT |
| 172 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 173 | /* Boot configuration */ |
| 174 | #define CONFIG_BOOTCOMMAND "run $modeboot || run distro_bootcmd" |
| 175 | #define CONFIG_SYS_LOAD_ADDR 0 /* default? */ |
| 176 | |
| 177 | /* Distro boot enablement */ |
| 178 | |
| 179 | #ifdef CONFIG_SPL_BUILD |
| 180 | #define BOOTENV |
| 181 | #else |
| 182 | #include <config_distro_defaults.h> |
| 183 | |
| 184 | #ifdef CONFIG_CMD_MMC |
| 185 | #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) |
| 186 | #else |
| 187 | #define BOOT_TARGET_DEVICES_MMC(func) |
| 188 | #endif |
| 189 | |
| 190 | #ifdef CONFIG_CMD_USB |
| 191 | #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) |
| 192 | #else |
| 193 | #define BOOT_TARGET_DEVICES_USB(func) |
| 194 | #endif |
| 195 | |
| 196 | #if defined(CONFIG_CMD_PXE) |
| 197 | #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 198 | #else |
| 199 | #define BOOT_TARGET_DEVICES_PXE(func) |
| 200 | #endif |
| 201 | |
| 202 | #if defined(CONFIG_CMD_DHCP) |
| 203 | #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 204 | #else |
| 205 | #define BOOT_TARGET_DEVICES_DHCP(func) |
| 206 | #endif |
| 207 | |
| 208 | #define BOOT_TARGET_DEVICES(func) \ |
| 209 | BOOT_TARGET_DEVICES_MMC(func) \ |
| 210 | BOOT_TARGET_DEVICES_USB(func) \ |
| 211 | BOOT_TARGET_DEVICES_PXE(func) \ |
| 212 | BOOT_TARGET_DEVICES_DHCP(func) |
| 213 | |
| 214 | #include <config_distro_bootcmd.h> |
| 215 | #endif /* CONFIG_SPL_BUILD */ |
| 216 | |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 217 | /* Default environment */ |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 218 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 219 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 220 | "fit_image=fit.itb\0" \ |
| 221 | "load_addr=0x2000000\0" \ |
| 222 | "fit_size=0x800000\0" \ |
| 223 | "flash_off=0x100000\0" \ |
| 224 | "nor_flash_off=0xE2100000\0" \ |
| 225 | "fdt_high=0x20000000\0" \ |
| 226 | "initrd_high=0x20000000\0" \ |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 227 | "loadbootenv_addr=0x2000000\0" \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 228 | "fdt_addr_r=0x1f00000\0" \ |
| 229 | "pxefile_addr_r=0x2000000\0" \ |
| 230 | "kernel_addr_r=0x2000000\0" \ |
| 231 | "scriptaddr=0x3000000\0" \ |
| 232 | "ramdisk_addr_r=0x3100000\0" \ |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 233 | "bootenv=uEnv.txt\0" \ |
| 234 | "bootenv_dev=mmc\0" \ |
| 235 | "loadbootenv=load ${bootenv_dev} 0 ${loadbootenv_addr} ${bootenv}\0" \ |
| 236 | "importbootenv=echo Importing environment from ${bootenv_dev} ...; " \ |
| 237 | "env import -t ${loadbootenv_addr} $filesize\0" \ |
| 238 | "bootenv_existence_test=test -e ${bootenv_dev} 0 /${bootenv}\0" \ |
| 239 | "setbootenv=if env run bootenv_existence_test; then " \ |
| 240 | "if env run loadbootenv; then " \ |
| 241 | "env run importbootenv; " \ |
| 242 | "fi; " \ |
| 243 | "fi; \0" \ |
| 244 | "sd_loadbootenv=set bootenv_dev mmc && " \ |
| 245 | "run setbootenv \0" \ |
| 246 | "usb_loadbootenv=set bootenv_dev usb && usb start && run setbootenv \0" \ |
| 247 | "preboot=if test $modeboot = sdboot; then " \ |
| 248 | "run sd_loadbootenv; " \ |
| 249 | "echo Checking if uenvcmd is set ...; " \ |
| 250 | "if test -n $uenvcmd; then " \ |
| 251 | "echo Running uenvcmd ...; " \ |
| 252 | "run uenvcmd; " \ |
| 253 | "fi; " \ |
| 254 | "fi; \0" \ |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 255 | "norboot=echo Copying FIT from NOR flash to RAM... && " \ |
| 256 | "cp.b ${nor_flash_off} ${load_addr} ${fit_size} && " \ |
| 257 | "bootm ${load_addr}\0" \ |
| 258 | "sdboot=echo Copying FIT from SD to RAM... && " \ |
Michal Simek | e9d69c1 | 2014-09-24 14:55:03 +0200 | [diff] [blame] | 259 | "load mmc 0 ${load_addr} ${fit_image} && " \ |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 260 | "bootm ${load_addr}\0" \ |
| 261 | "jtagboot=echo TFTPing FIT to RAM... && " \ |
Michal Simek | dfa9405 | 2014-02-05 07:56:07 +0100 | [diff] [blame] | 262 | "tftpboot ${load_addr} ${fit_image} && " \ |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 263 | "bootm ${load_addr}\0" \ |
| 264 | "usbboot=if usb start; then " \ |
| 265 | "echo Copying FIT from USB to RAM... && " \ |
Michal Simek | e9d69c1 | 2014-09-24 14:55:03 +0200 | [diff] [blame] | 266 | "load usb 0 ${load_addr} ${fit_image} && " \ |
Jason Wu | 39bc1a8 | 2016-02-22 22:07:49 +1000 | [diff] [blame] | 267 | "bootm ${load_addr}; fi\0" \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 268 | DFU_ALT_INFO \ |
| 269 | BOOTENV |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 270 | #endif |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 271 | |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 272 | /* Miscellaneous configurable options */ |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 273 | |
| 274 | #define CONFIG_CMDLINE_EDITING |
| 275 | #define CONFIG_AUTO_COMPLETE |
| 276 | #define CONFIG_SYS_LONGHELP |
Soren Brinkmann | 6c3e61d | 2013-11-21 13:38:54 -0800 | [diff] [blame] | 277 | #define CONFIG_CLOCKS |
Michal Simek | 841426a | 2014-04-25 13:33:19 +0200 | [diff] [blame] | 278 | #define CONFIG_SYS_MAXARGS 32 /* max number of command args */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 279 | |
Michal Simek | 758f29d | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 280 | #ifndef CONFIG_NR_DRAM_BANKS |
| 281 | # define CONFIG_NR_DRAM_BANKS 1 |
| 282 | #endif |
Jagannadha Sutradharudu Teki | 7cd0419 | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 283 | |
Michal Simek | c1584e2 | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 284 | #define CONFIG_SYS_MEMTEST_START 0 |
| 285 | #define CONFIG_SYS_MEMTEST_END 0x1000 |
Jagannadha Sutradharudu Teki | 7cd0419 | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 286 | |
Przemyslaw Marczak | 599807f | 2015-03-04 14:01:28 +0100 | [diff] [blame] | 287 | #define CONFIG_SYS_MALLOC_LEN 0x1400000 |
Michal Simek | c1584e2 | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 288 | |
| 289 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000 |
| 290 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 |
Jagannadha Sutradharudu Teki | 7cd0419 | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 291 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 292 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 293 | GENERATED_GBL_DATA_SIZE) |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 294 | |
| 295 | /* Enable the PL to be downloaded */ |
| 296 | #define CONFIG_FPGA |
| 297 | #define CONFIG_FPGA_XILINX |
| 298 | #define CONFIG_FPGA_ZYNQPL |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 299 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 300 | /* FIT support */ |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 301 | #define CONFIG_IMAGE_FORMAT_LEGACY /* enable also legacy image format */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 302 | |
Jagannadha Sutradharudu Teki | f8f36c5 | 2014-01-09 01:48:26 +0530 | [diff] [blame] | 303 | /* FDT support */ |
Jagannadha Sutradharudu Teki | f8f36c5 | 2014-01-09 01:48:26 +0530 | [diff] [blame] | 304 | #define CONFIG_DISPLAY_BOARDINFO_LATE |
| 305 | |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 306 | /* Extend size of kernel image for uncompression */ |
Michal Simek | 3d456ee | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 307 | #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 308 | |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 309 | /* Boot FreeBSD/vxWorks from an ELF image */ |
Michal Simek | d82d63c | 2016-02-04 11:08:26 +0100 | [diff] [blame] | 310 | #define CONFIG_SYS_MMC_MAX_DEVICE 1 |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 311 | |
Masahiro Yamada | 0107f24 | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 312 | #define CONFIG_SYS_LDSCRIPT "arch/arm/mach-zynq/u-boot.lds" |
Michal Simek | 3871618 | 2014-02-05 08:06:29 +0100 | [diff] [blame] | 313 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 314 | /* Commands */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 315 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 316 | /* SPL part */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 317 | #define CONFIG_SPL_FRAMEWORK |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 318 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 319 | /* MMC support */ |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 320 | #ifdef CONFIG_MMC_SDHCI_ZYNQ |
Paul Kocialkowski | e2ccdf8 | 2014-11-08 23:14:55 +0100 | [diff] [blame] | 321 | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 |
Masahiro Yamada | 7f307d9 | 2016-04-14 06:52:26 +0900 | [diff] [blame] | 322 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
Masahiro Yamada | 0dfbcf0 | 2014-05-15 20:37:52 +0900 | [diff] [blame] | 323 | #endif |
| 324 | |
| 325 | /* Disable dcache for SPL just for sure */ |
| 326 | #ifdef CONFIG_SPL_BUILD |
| 327 | #define CONFIG_SYS_DCACHE_OFF |
| 328 | #undef CONFIG_FPGA |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 329 | #endif |
| 330 | |
| 331 | /* Address in RAM where the parameters must be copied by SPL. */ |
| 332 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x10000000 |
| 333 | |
Guillaume GARDET | 205b4f3 | 2014-10-15 17:53:11 +0200 | [diff] [blame] | 334 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "system.dtb" |
| 335 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 336 | |
| 337 | /* Not using MMC raw mode - just for compilation purpose */ |
| 338 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 |
| 339 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 |
| 340 | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0 |
| 341 | |
| 342 | /* qspi mode is working fine */ |
| 343 | #ifdef CONFIG_ZYNQ_QSPI |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 344 | #define CONFIG_SPL_SPI_LOAD |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 345 | #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x100000 |
Siva Durga Prasad Paladugu | 8e0e01d | 2015-09-14 12:59:08 +0530 | [diff] [blame] | 346 | #define CONFIG_SYS_SPI_ARGS_OFFS 0x200000 |
| 347 | #define CONFIG_SYS_SPI_ARGS_SIZE 0x80000 |
| 348 | #define CONFIG_SYS_SPI_KERNEL_OFFS (CONFIG_SYS_SPI_ARGS_OFFS + \ |
| 349 | CONFIG_SYS_SPI_ARGS_SIZE) |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 350 | #endif |
| 351 | |
| 352 | /* for booting directly linux */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 353 | |
| 354 | /* SP location before relocation, must use scratch RAM */ |
| 355 | #define CONFIG_SPL_TEXT_BASE 0x0 |
| 356 | |
| 357 | /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */ |
| 358 | #define CONFIG_SPL_MAX_SIZE 0x30000 |
| 359 | |
| 360 | /* The highest 64k OCM address */ |
| 361 | #define OCM_HIGH_ADDR 0xffff0000 |
| 362 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 363 | /* On the top of OCM space */ |
Michal Simek | 83b6464 | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 364 | #define CONFIG_SYS_SPL_MALLOC_START OCM_HIGH_ADDR |
Michal Simek | ec016a1 | 2015-12-01 09:03:43 +0100 | [diff] [blame] | 365 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x2000 |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 366 | |
Michal Simek | 83b6464 | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 367 | /* |
| 368 | * SPL stack position - and stack goes down |
| 369 | * 0xfffffe00 is used for putting wfi loop. |
| 370 | * Set it up as limit for now. |
| 371 | */ |
| 372 | #define CONFIG_SPL_STACK 0xfffffe00 |
| 373 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 374 | /* BSS setup */ |
| 375 | #define CONFIG_SPL_BSS_START_ADDR 0x100000 |
| 376 | #define CONFIG_SPL_BSS_MAX_SIZE 0x100000 |
| 377 | |
| 378 | #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 379 | |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 380 | #endif /* __CONFIG_ZYNQ_COMMON_H */ |