Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Michal Simek <monstr@monstr.eu> |
Jagannadha Sutradharudu Teki | 20ddda0 | 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 | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 6 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Jagannadha Sutradharudu Teki | 20ddda0 | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 10 | #ifndef __CONFIG_ZYNQ_COMMON_H |
| 11 | #define __CONFIG_ZYNQ_COMMON_H |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 12 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 13 | /* CPU clock */ |
Jagannadha Sutradharudu Teki | 4ecfc2f | 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 | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 17 | |
Jagannadha Sutradharudu Teki | fef608a | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 18 | /* Cache options */ |
Jagannadha Sutradharudu Teki | fef608a | 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 | 40bcb86 | 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 | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 30 | /* Serial drivers */ |
| 31 | #define CONFIG_BAUDRATE 115200 |
Michal Simek | af482d5 | 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 | d5c13f7 | 2016-02-23 10:02:29 +0100 | [diff] [blame] | 36 | #define CONFIG_ARM_DCC |
| 37 | #define CONFIG_ZYNQ_SERIAL |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 38 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 39 | /* Ethernet driver */ |
Michal Simek | 3d7285f | 2015-11-30 14:34:52 +0100 | [diff] [blame] | 40 | #if defined(CONFIG_ZYNQ_GEM) |
Jagannadha Sutradharudu Teki | 0ea4dc7 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 41 | # define CONFIG_MII |
| 42 | # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN |
Jagannadha Sutradharudu Teki | 0ea4dc7 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 43 | # define CONFIG_PHY_MARVELL |
Michal Simek | db8aa0b | 2016-02-06 13:34:54 +0100 | [diff] [blame] | 44 | # define CONFIG_PHY_REALTEK |
Siva Durga Prasad Paladugu | 8d24b02 | 2016-02-05 13:22:12 +0530 | [diff] [blame] | 45 | # define CONFIG_PHY_XILINX |
Michal Simek | 53e3a06 | 2015-01-13 16:27:14 +0100 | [diff] [blame] | 46 | # define CONFIG_BOOTP_SERVERIP |
| 47 | # define CONFIG_BOOTP_BOOTPATH |
| 48 | # define CONFIG_BOOTP_GATEWAY |
| 49 | # define CONFIG_BOOTP_HOSTNAME |
| 50 | # define CONFIG_BOOTP_MAY_FAIL |
Jagannadha Sutradharudu Teki | 0ea4dc7 | 2014-01-09 01:48:09 +0530 | [diff] [blame] | 51 | #endif |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 52 | |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 53 | /* SPI */ |
| 54 | #ifdef CONFIG_ZYNQ_SPI |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 55 | #endif |
| 56 | |
Jagan Teki | 5dd9d06 | 2015-08-17 18:55:02 +0530 | [diff] [blame] | 57 | /* QSPI */ |
| 58 | #ifdef CONFIG_ZYNQ_QSPI |
| 59 | # define CONFIG_SF_DEFAULT_SPEED 30000000 |
Jagan Teki | 7c78c88 | 2015-09-04 18:30:34 +0530 | [diff] [blame] | 60 | # define CONFIG_SPI_FLASH_ISSI |
Jagan Teki | 5dd9d06 | 2015-08-17 18:55:02 +0530 | [diff] [blame] | 61 | #endif |
| 62 | |
Jagannadha Sutradharudu Teki | 03c0b86 | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 63 | /* NOR */ |
| 64 | #ifndef CONFIG_SYS_NO_FLASH |
| 65 | # define CONFIG_SYS_FLASH_BASE 0xE2000000 |
| 66 | # define CONFIG_SYS_FLASH_SIZE (16 * 1024 * 1024) |
| 67 | # define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 68 | # define CONFIG_SYS_MAX_FLASH_SECT 512 |
| 69 | # define CONFIG_SYS_FLASH_ERASE_TOUT 1000 |
| 70 | # define CONFIG_SYS_FLASH_WRITE_TOUT 5000 |
| 71 | # define CONFIG_FLASH_SHOW_PROGRESS 10 |
| 72 | # define CONFIG_SYS_FLASH_CFI |
| 73 | # undef CONFIG_SYS_FLASH_EMPTY_INFO |
| 74 | # define CONFIG_FLASH_CFI_DRIVER |
| 75 | # undef CONFIG_SYS_FLASH_PROTECTION |
| 76 | # define CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
| 77 | #endif |
| 78 | |
Michal Simek | 0dd222b | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 79 | /* MMC */ |
Michal Simek | 90770fe | 2016-02-04 11:43:40 +0100 | [diff] [blame] | 80 | #if defined(CONFIG_ZYNQ_SDHCI) |
Michal Simek | 0dd222b | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 81 | # define CONFIG_MMC |
| 82 | # define CONFIG_GENERIC_MMC |
| 83 | # define CONFIG_SDHCI |
Michal Simek | 8bc7817 | 2015-09-29 01:27:13 +0200 | [diff] [blame] | 84 | # define CONFIG_ZYNQ_SDHCI_MAX_FREQ 52000000 |
Michal Simek | 0dd222b | 2013-04-22 14:56:49 +0200 | [diff] [blame] | 85 | #endif |
| 86 | |
Siva Durga Prasad Paladugu | 42fcc18 | 2016-07-22 14:51:51 +0530 | [diff] [blame] | 87 | #ifdef CONFIG_USB_EHCI_ZYNQ |
Siva Durga Prasad Paladugu | 0ad27ca | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 88 | # define CONFIG_EHCI_IS_TDI |
| 89 | # define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 90 | |
Siva Durga Prasad Paladugu | e3b2474 | 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 |
Paul Kocialkowski | 045d605 | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 93 | # define CONFIG_USB_FUNCTION_DFU |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 94 | # define CONFIG_DFU_RAM |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 95 | # define CONFIG_USB_CABLE_CHECK |
Siva Durga Prasad Paladugu | d682fc2 | 2014-09-08 22:09:37 +0530 | [diff] [blame] | 96 | # define CONFIG_CMD_THOR_DOWNLOAD |
Michal Simek | 72cc993 | 2016-04-07 18:55:11 +0200 | [diff] [blame] | 97 | # define CONFIG_THOR_RESET_OFF |
Paul Kocialkowski | 045d605 | 2015-06-12 19:56:58 +0200 | [diff] [blame] | 98 | # define CONFIG_USB_FUNCTION_THOR |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 99 | # define DFU_ALT_INFO_RAM \ |
| 100 | "dfu_ram_info=" \ |
| 101 | "set dfu_alt_info " \ |
| 102 | "${kernel_image} ram 0x3000000 0x500000\\\\;" \ |
| 103 | "${devicetree_image} ram 0x2A00000 0x20000\\\\;" \ |
| 104 | "${ramdisk_image} ram 0x2000000 0x600000\0" \ |
Siva Durga Prasad Paladugu | d682fc2 | 2014-09-08 22:09:37 +0530 | [diff] [blame] | 105 | "dfu_ram=run dfu_ram_info && dfu 0 ram 0\0" \ |
| 106 | "thor_ram=run dfu_ram_info && thordown 0 ram 0\0" |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 107 | |
Michal Simek | 90770fe | 2016-02-04 11:43:40 +0100 | [diff] [blame] | 108 | # if defined(CONFIG_ZYNQ_SDHCI) |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 109 | # define CONFIG_DFU_MMC |
| 110 | # define DFU_ALT_INFO_MMC \ |
| 111 | "dfu_mmc_info=" \ |
| 112 | "set dfu_alt_info " \ |
| 113 | "${kernel_image} fat 0 1\\\\;" \ |
| 114 | "${devicetree_image} fat 0 1\\\\;" \ |
| 115 | "${ramdisk_image} fat 0 1\0" \ |
Siva Durga Prasad Paladugu | d682fc2 | 2014-09-08 22:09:37 +0530 | [diff] [blame] | 116 | "dfu_mmc=run dfu_mmc_info && dfu 0 mmc 0\0" \ |
| 117 | "thor_mmc=run dfu_mmc_info && thordown 0 mmc 0\0" |
| 118 | |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 119 | # define DFU_ALT_INFO \ |
| 120 | DFU_ALT_INFO_RAM \ |
| 121 | DFU_ALT_INFO_MMC |
| 122 | # else |
| 123 | # define DFU_ALT_INFO \ |
| 124 | DFU_ALT_INFO_RAM |
| 125 | # endif |
| 126 | #endif |
| 127 | |
| 128 | #if !defined(DFU_ALT_INFO) |
| 129 | # define DFU_ALT_INFO |
Siva Durga Prasad Paladugu | 0ad27ca | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 130 | #endif |
| 131 | |
Siva Durga Prasad Paladugu | 2102b5f | 2014-03-12 14:52:56 +0530 | [diff] [blame] | 132 | #if defined(CONFIG_ZYNQ_SDHCI) || defined(CONFIG_ZYNQ_USB) |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 133 | # define CONFIG_SUPPORT_VFAT |
Siva Durga Prasad Paladugu | 2102b5f | 2014-03-12 14:52:56 +0530 | [diff] [blame] | 134 | # define CONFIG_FAT_WRITE |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 135 | # define CONFIG_DOS_PARTITION |
| 136 | #endif |
| 137 | |
Siva Durga Prasad Paladugu | 5ea8590 | 2015-10-28 11:19:08 +0530 | [diff] [blame] | 138 | #if defined(CONFIG_ZYNQ_I2C0) || defined(CONFIG_ZYNQ_I2C1) |
Michael Burr | 91fae47 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 139 | #define CONFIG_SYS_I2C_ZYNQ |
Siva Durga Prasad Paladugu | 5ea8590 | 2015-10-28 11:19:08 +0530 | [diff] [blame] | 140 | #endif |
| 141 | |
Michal Simek | beedbcf | 2013-04-22 15:21:33 +0200 | [diff] [blame] | 142 | /* I2C */ |
Michael Burr | 91fae47 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 143 | #if defined(CONFIG_SYS_I2C_ZYNQ) |
Heiko Schocher | 465819a | 2013-11-08 07:30:53 +0100 | [diff] [blame] | 144 | # define CONFIG_SYS_I2C |
Heiko Schocher | 465819a | 2013-11-08 07:30:53 +0100 | [diff] [blame] | 145 | # define CONFIG_SYS_I2C_ZYNQ_SPEED 100000 |
Michael Burr | 91fae47 | 2014-01-22 09:46:08 +0100 | [diff] [blame] | 146 | # define CONFIG_SYS_I2C_ZYNQ_SLAVE 0 |
Michal Simek | beedbcf | 2013-04-22 15:21:33 +0200 | [diff] [blame] | 147 | #endif |
| 148 | |
Jagannadha Sutradharudu Teki | bf0046b | 2014-01-09 01:48:16 +0530 | [diff] [blame] | 149 | /* EEPROM */ |
| 150 | #ifdef CONFIG_ZYNQ_EEPROM |
| 151 | # define CONFIG_CMD_EEPROM |
| 152 | # define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 153 | # define CONFIG_SYS_I2C_EEPROM_ADDR 0x54 |
| 154 | # define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4 |
| 155 | # define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 |
| 156 | # define CONFIG_SYS_EEPROM_SIZE 1024 /* Bytes */ |
| 157 | #endif |
| 158 | |
Jagannadha Sutradharudu Teki | 3b6d32f | 2014-01-09 01:48:23 +0530 | [diff] [blame] | 159 | /* Total Size of Environment Sector */ |
| 160 | #define CONFIG_ENV_SIZE (128 << 10) |
| 161 | |
Jagannadha Sutradharudu Teki | 1eb446d | 2014-01-09 01:48:25 +0530 | [diff] [blame] | 162 | /* Allow to overwrite serial and ethaddr */ |
| 163 | #define CONFIG_ENV_OVERWRITE |
| 164 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 165 | /* Environment */ |
Jagannadha Sutradharudu Teki | a50e04d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 166 | #ifndef CONFIG_ENV_IS_NOWHERE |
| 167 | # ifndef CONFIG_SYS_NO_FLASH |
Michal Simek | d35c79e | 2016-02-13 12:02:53 +0100 | [diff] [blame] | 168 | /* Environment in NOR flash */ |
Jagannadha Sutradharudu Teki | a50e04d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 169 | # define CONFIG_ENV_IS_IN_FLASH |
Michal Simek | d35c79e | 2016-02-13 12:02:53 +0100 | [diff] [blame] | 170 | # elif defined(CONFIG_ZYNQ_QSPI) |
| 171 | /* Environment in Serial Flash */ |
| 172 | # define CONFIG_ENV_IS_IN_SPI_FLASH |
Jagannadha Sutradharudu Teki | a50e04d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 173 | # elif defined(CONFIG_SYS_NO_FLASH) |
| 174 | # define CONFIG_ENV_IS_NOWHERE |
| 175 | # endif |
| 176 | |
| 177 | # define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE |
| 178 | # define CONFIG_ENV_OFFSET 0xE0000 |
Jagannadha Sutradharudu Teki | a50e04d | 2014-01-09 01:48:24 +0530 | [diff] [blame] | 179 | #endif |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 180 | |
Michal Simek | b22ece1 | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 181 | /* enable preboot to be loaded before CONFIG_BOOTDELAY */ |
| 182 | #define CONFIG_PREBOOT |
| 183 | |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 184 | /* Default environment */ |
Michal Simek | c6262ef | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 185 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 186 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 187 | "fit_image=fit.itb\0" \ |
| 188 | "load_addr=0x2000000\0" \ |
| 189 | "fit_size=0x800000\0" \ |
| 190 | "flash_off=0x100000\0" \ |
| 191 | "nor_flash_off=0xE2100000\0" \ |
| 192 | "fdt_high=0x20000000\0" \ |
| 193 | "initrd_high=0x20000000\0" \ |
Michal Simek | b22ece1 | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 194 | "loadbootenv_addr=0x2000000\0" \ |
| 195 | "bootenv=uEnv.txt\0" \ |
| 196 | "bootenv_dev=mmc\0" \ |
| 197 | "loadbootenv=load ${bootenv_dev} 0 ${loadbootenv_addr} ${bootenv}\0" \ |
| 198 | "importbootenv=echo Importing environment from ${bootenv_dev} ...; " \ |
| 199 | "env import -t ${loadbootenv_addr} $filesize\0" \ |
| 200 | "bootenv_existence_test=test -e ${bootenv_dev} 0 /${bootenv}\0" \ |
| 201 | "setbootenv=if env run bootenv_existence_test; then " \ |
| 202 | "if env run loadbootenv; then " \ |
| 203 | "env run importbootenv; " \ |
| 204 | "fi; " \ |
| 205 | "fi; \0" \ |
| 206 | "sd_loadbootenv=set bootenv_dev mmc && " \ |
| 207 | "run setbootenv \0" \ |
| 208 | "usb_loadbootenv=set bootenv_dev usb && usb start && run setbootenv \0" \ |
| 209 | "preboot=if test $modeboot = sdboot; then " \ |
| 210 | "run sd_loadbootenv; " \ |
| 211 | "echo Checking if uenvcmd is set ...; " \ |
| 212 | "if test -n $uenvcmd; then " \ |
| 213 | "echo Running uenvcmd ...; " \ |
| 214 | "run uenvcmd; " \ |
| 215 | "fi; " \ |
| 216 | "fi; \0" \ |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 217 | "norboot=echo Copying FIT from NOR flash to RAM... && " \ |
| 218 | "cp.b ${nor_flash_off} ${load_addr} ${fit_size} && " \ |
| 219 | "bootm ${load_addr}\0" \ |
| 220 | "sdboot=echo Copying FIT from SD to RAM... && " \ |
Michal Simek | 3319dbc | 2014-09-24 14:55:03 +0200 | [diff] [blame] | 221 | "load mmc 0 ${load_addr} ${fit_image} && " \ |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 222 | "bootm ${load_addr}\0" \ |
| 223 | "jtagboot=echo TFTPing FIT to RAM... && " \ |
Michal Simek | 9dd915c | 2014-02-05 07:56:07 +0100 | [diff] [blame] | 224 | "tftpboot ${load_addr} ${fit_image} && " \ |
Siva Durga Prasad Paladugu | 0ad27ca | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 225 | "bootm ${load_addr}\0" \ |
| 226 | "usbboot=if usb start; then " \ |
| 227 | "echo Copying FIT from USB to RAM... && " \ |
Michal Simek | 3319dbc | 2014-09-24 14:55:03 +0200 | [diff] [blame] | 228 | "load usb 0 ${load_addr} ${fit_image} && " \ |
Jason Wu | 9f24fbc | 2016-02-22 22:07:49 +1000 | [diff] [blame] | 229 | "bootm ${load_addr}; fi\0" \ |
Siva Durga Prasad Paladugu | e3b2474 | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 230 | DFU_ALT_INFO |
Michal Simek | c6262ef | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 231 | #endif |
Siva Durga Prasad Paladugu | 0ad27ca | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 232 | |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 233 | #define CONFIG_BOOTCOMMAND "run $modeboot" |
Jagannadha Sutradharudu Teki | a534a11 | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 234 | #define CONFIG_SYS_LOAD_ADDR 0 /* default? */ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 235 | |
Jagannadha Sutradharudu Teki | 4817a19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 236 | /* Miscellaneous configurable options */ |
Jagannadha Sutradharudu Teki | 4817a19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 237 | |
| 238 | #define CONFIG_CMDLINE_EDITING |
| 239 | #define CONFIG_AUTO_COMPLETE |
Jagannadha Sutradharudu Teki | 11704c2 | 2014-01-09 01:48:21 +0530 | [diff] [blame] | 240 | #define CONFIG_BOARD_LATE_INIT |
Michal Simek | 3fa6445 | 2014-08-28 13:31:02 +0200 | [diff] [blame] | 241 | #define CONFIG_DISPLAY_BOARDINFO |
Jagannadha Sutradharudu Teki | 4817a19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 242 | #define CONFIG_SYS_LONGHELP |
Soren Brinkmann | 102ad00 | 2013-11-21 13:38:54 -0800 | [diff] [blame] | 243 | #define CONFIG_CLOCKS |
Soren Brinkmann | 3752344 | 2013-11-21 13:39:03 -0800 | [diff] [blame] | 244 | #define CONFIG_CMD_CLK |
Michal Simek | 97d03c3 | 2014-04-25 13:33:19 +0200 | [diff] [blame] | 245 | #define CONFIG_SYS_MAXARGS 32 /* max number of command args */ |
Jagannadha Sutradharudu Teki | 4817a19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 246 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
| 247 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 248 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 249 | |
Jagannadha Sutradharudu Teki | 6681b3e | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 250 | /* Physical Memory map */ |
Jagannadha Sutradharudu Teki | 97e48e6 | 2014-01-09 01:48:15 +0530 | [diff] [blame] | 251 | #define CONFIG_SYS_TEXT_BASE 0x4000000 |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 252 | |
Michal Simek | f4780a7 | 2016-04-01 15:56:33 +0200 | [diff] [blame] | 253 | #ifndef CONFIG_NR_DRAM_BANKS |
| 254 | # define CONFIG_NR_DRAM_BANKS 1 |
| 255 | #endif |
Jagannadha Sutradharudu Teki | 6681b3e | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 256 | |
Michal Simek | 134244a | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 257 | #define CONFIG_SYS_MEMTEST_START 0 |
| 258 | #define CONFIG_SYS_MEMTEST_END 0x1000 |
Jagannadha Sutradharudu Teki | 6681b3e | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 259 | |
Przemyslaw Marczak | f9324b3 | 2015-03-04 14:01:28 +0100 | [diff] [blame] | 260 | #define CONFIG_SYS_MALLOC_LEN 0x1400000 |
Michal Simek | 134244a | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 261 | |
| 262 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000 |
| 263 | #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 |
Jagannadha Sutradharudu Teki | 6681b3e | 2014-01-09 01:48:05 +0530 | [diff] [blame] | 264 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 265 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 266 | GENERATED_GBL_DATA_SIZE) |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 267 | |
| 268 | /* Enable the PL to be downloaded */ |
| 269 | #define CONFIG_FPGA |
| 270 | #define CONFIG_FPGA_XILINX |
| 271 | #define CONFIG_FPGA_ZYNQPL |
Siva Durga Prasad Paladugu | adc11de | 2014-03-14 16:35:38 +0530 | [diff] [blame] | 272 | #define CONFIG_CMD_FPGA_LOADMK |
Michal Simek | 0e4f800 | 2014-05-02 14:50:50 +0200 | [diff] [blame] | 273 | #define CONFIG_CMD_FPGA_LOADP |
| 274 | #define CONFIG_CMD_FPGA_LOADBP |
Siva Durga Prasad Paladugu | 9112b4c | 2014-03-14 16:35:37 +0530 | [diff] [blame] | 275 | #define CONFIG_CMD_FPGA_LOADFS |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 276 | |
Jagannadha Sutradharudu Teki | 4ecfc2f | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 277 | /* FIT support */ |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 278 | #define CONFIG_IMAGE_FORMAT_LEGACY /* enable also legacy image format */ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 279 | |
Jagannadha Sutradharudu Teki | 369ccb1 | 2014-01-09 01:48:26 +0530 | [diff] [blame] | 280 | /* FDT support */ |
Jagannadha Sutradharudu Teki | 369ccb1 | 2014-01-09 01:48:26 +0530 | [diff] [blame] | 281 | #define CONFIG_DISPLAY_BOARDINFO_LATE |
| 282 | |
Michal Simek | ec789f5 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 283 | /* Extend size of kernel image for uncompression */ |
Michal Simek | c8e9b89 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 284 | #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) |
Michal Simek | ec789f5 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 285 | |
Jagannadha Sutradharudu Teki | d06b7ad | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 286 | /* Boot FreeBSD/vxWorks from an ELF image */ |
Michal Simek | 644ba0e | 2016-02-04 11:08:26 +0100 | [diff] [blame] | 287 | #define CONFIG_SYS_MMC_MAX_DEVICE 1 |
Jagannadha Sutradharudu Teki | d06b7ad | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 288 | |
Masahiro Yamada | 43246cc | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 289 | #define CONFIG_SYS_LDSCRIPT "arch/arm/mach-zynq/u-boot.lds" |
Michal Simek | c8cf471 | 2014-02-05 08:06:29 +0100 | [diff] [blame] | 290 | |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 291 | /* Commands */ |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 292 | |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 293 | /* SPL part */ |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 294 | #define CONFIG_CMD_SPL |
| 295 | #define CONFIG_SPL_FRAMEWORK |
Michal Simek | a831f1f | 2014-04-25 12:15:40 +0200 | [diff] [blame] | 296 | #define CONFIG_SPL_BOARD_INIT |
Michal Simek | 6f8b25e | 2016-02-17 08:38:38 +0100 | [diff] [blame] | 297 | #define CONFIG_SPL_RAM_DEVICE |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 298 | |
Masahiro Yamada | 43246cc | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 299 | #define CONFIG_SPL_LDSCRIPT "arch/arm/mach-zynq/u-boot-spl.lds" |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 300 | |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 301 | /* MMC support */ |
Michal Simek | 90770fe | 2016-02-04 11:43:40 +0100 | [diff] [blame] | 302 | #ifdef CONFIG_ZYNQ_SDHCI |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 303 | #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */ |
| 304 | #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */ |
Paul Kocialkowski | 341e8cd | 2014-11-08 23:14:55 +0100 | [diff] [blame] | 305 | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 |
Masahiro Yamada | fd63365 | 2016-04-14 06:52:26 +0900 | [diff] [blame] | 306 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
Masahiro Yamada | 7724436 | 2014-05-15 20:37:52 +0900 | [diff] [blame] | 307 | #endif |
| 308 | |
| 309 | /* Disable dcache for SPL just for sure */ |
| 310 | #ifdef CONFIG_SPL_BUILD |
| 311 | #define CONFIG_SYS_DCACHE_OFF |
| 312 | #undef CONFIG_FPGA |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 313 | #endif |
| 314 | |
| 315 | /* Address in RAM where the parameters must be copied by SPL. */ |
| 316 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x10000000 |
| 317 | |
Guillaume GARDET | 602a16c | 2014-10-15 17:53:11 +0200 | [diff] [blame] | 318 | #define CONFIG_SPL_FS_LOAD_ARGS_NAME "system.dtb" |
| 319 | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage" |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 320 | |
| 321 | /* Not using MMC raw mode - just for compilation purpose */ |
| 322 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 |
| 323 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 |
| 324 | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0 |
| 325 | |
| 326 | /* qspi mode is working fine */ |
| 327 | #ifdef CONFIG_ZYNQ_QSPI |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 328 | #define CONFIG_SPL_SPI_LOAD |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 329 | #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x100000 |
Siva Durga Prasad Paladugu | 40ea29b | 2015-09-14 12:59:08 +0530 | [diff] [blame] | 330 | #define CONFIG_SYS_SPI_ARGS_OFFS 0x200000 |
| 331 | #define CONFIG_SYS_SPI_ARGS_SIZE 0x80000 |
| 332 | #define CONFIG_SYS_SPI_KERNEL_OFFS (CONFIG_SYS_SPI_ARGS_OFFS + \ |
| 333 | CONFIG_SYS_SPI_ARGS_SIZE) |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 334 | #endif |
| 335 | |
| 336 | /* for booting directly linux */ |
| 337 | #define CONFIG_SPL_OS_BOOT |
| 338 | |
| 339 | /* SP location before relocation, must use scratch RAM */ |
| 340 | #define CONFIG_SPL_TEXT_BASE 0x0 |
| 341 | |
| 342 | /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */ |
| 343 | #define CONFIG_SPL_MAX_SIZE 0x30000 |
| 344 | |
| 345 | /* The highest 64k OCM address */ |
| 346 | #define OCM_HIGH_ADDR 0xffff0000 |
| 347 | |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 348 | /* On the top of OCM space */ |
Michal Simek | 8f0af3f | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 349 | #define CONFIG_SYS_SPL_MALLOC_START OCM_HIGH_ADDR |
Michal Simek | 0e24805 | 2015-12-01 09:03:43 +0100 | [diff] [blame] | 350 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x2000 |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 351 | |
Michal Simek | 8f0af3f | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 352 | /* |
| 353 | * SPL stack position - and stack goes down |
| 354 | * 0xfffffe00 is used for putting wfi loop. |
| 355 | * Set it up as limit for now. |
| 356 | */ |
| 357 | #define CONFIG_SPL_STACK 0xfffffe00 |
| 358 | |
Michal Simek | e60148d | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 359 | /* BSS setup */ |
| 360 | #define CONFIG_SPL_BSS_START_ADDR 0x100000 |
| 361 | #define CONFIG_SPL_BSS_MAX_SIZE 0x100000 |
| 362 | |
| 363 | #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE |
Michal Simek | af482d5 | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 364 | |
Jagannadha Sutradharudu Teki | 20ddda0 | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 365 | #endif /* __CONFIG_ZYNQ_COMMON_H */ |