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 | |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 12 | /* Cache options */ |
Jagannadha Sutradharudu Teki | 8cfac50 | 2014-01-09 01:48:07 +0530 | [diff] [blame] | 13 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 14 | # define CONFIG_SYS_L2_PL310 |
| 15 | # define CONFIG_SYS_PL310_BASE 0xf8f02000 |
| 16 | #endif |
| 17 | |
Michal Simek | a2ec7fb | 2015-04-20 12:56:24 +0200 | [diff] [blame] | 18 | #define ZYNQ_SCUTIMER_BASEADDR 0xF8F00600 |
| 19 | #define CONFIG_SYS_TIMERBASE ZYNQ_SCUTIMER_BASEADDR |
| 20 | #define CONFIG_SYS_TIMER_COUNTS_DOWN |
| 21 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4) |
| 22 | |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 23 | /* GUIDs for capsule updatable firmware images */ |
| 24 | #define XILINX_BOOT_IMAGE_GUID \ |
| 25 | EFI_GUID(0x1ba29a15, 0x9969, 0x40aa, 0xb4, 0x24, \ |
| 26 | 0xe8, 0x61, 0x21, 0x61, 0x86, 0x64) |
| 27 | |
| 28 | #define XILINX_UBOOT_IMAGE_GUID \ |
| 29 | EFI_GUID(0x1a5178f0, 0x87d3, 0x4f36, 0xac, 0x63, \ |
| 30 | 0x3b, 0x31, 0xa2, 0x3b, 0xe3, 0x05) |
| 31 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 32 | /* Serial drivers */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 33 | /* The following table includes the supported baudrates */ |
| 34 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 35 | {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400} |
| 36 | |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 37 | /* Ethernet driver */ |
Michal Simek | f22651c | 2012-09-28 09:56:37 +0000 | [diff] [blame] | 38 | |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 39 | /* NOR */ |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 40 | #ifdef CONFIG_MTD_NOR_FLASH |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 41 | # define CONFIG_SYS_MAX_FLASH_SECT 512 |
| 42 | # define CONFIG_SYS_FLASH_ERASE_TOUT 1000 |
| 43 | # define CONFIG_SYS_FLASH_WRITE_TOUT 5000 |
| 44 | # define CONFIG_FLASH_SHOW_PROGRESS 10 |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 45 | # undef CONFIG_SYS_FLASH_EMPTY_INFO |
Michal Simek | 5992f25 | 2020-02-25 14:55:58 +0100 | [diff] [blame] | 46 | # define CONFIG_SYS_FLASH_QUIET_TEST |
Jagannadha Sutradharudu Teki | fe5eddb | 2014-01-09 01:48:20 +0530 | [diff] [blame] | 47 | #endif |
| 48 | |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 49 | #ifdef CONFIG_NAND_ZYNQ |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 50 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Siva Durga Prasad Paladugu | ba8adb2 | 2016-09-27 10:55:47 +0530 | [diff] [blame] | 51 | #endif |
| 52 | |
Siva Durga Prasad Paladugu | 2cdc778 | 2016-07-22 14:51:51 +0530 | [diff] [blame] | 53 | #ifdef CONFIG_USB_EHCI_ZYNQ |
Siva Durga Prasad Paladugu | 87f3dbd | 2014-08-25 10:58:33 +0530 | [diff] [blame] | 54 | # define DFU_DEFAULT_POLL_TIMEOUT 300 |
Michal Simek | 1e8d383 | 2016-04-07 18:55:11 +0200 | [diff] [blame] | 55 | # define CONFIG_THOR_RESET_OFF |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 56 | #endif |
| 57 | |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 58 | /* enable preboot to be loaded before CONFIG_BOOTDELAY */ |
Michal Simek | 4d1ed9c | 2016-03-18 23:43:39 +0100 | [diff] [blame] | 59 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 60 | /* Boot configuration */ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 61 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_SPL_BUILD |
| 63 | #define BOOTENV |
| 64 | #else |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 65 | |
| 66 | #ifdef CONFIG_CMD_MMC |
Michal Simek | 7712fb1 | 2019-09-11 12:51:49 +0200 | [diff] [blame] | 67 | #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] | 68 | #else |
| 69 | #define BOOT_TARGET_DEVICES_MMC(func) |
| 70 | #endif |
| 71 | |
| 72 | #ifdef CONFIG_CMD_USB |
Michal Simek | 559e5a6 | 2019-09-11 13:00:57 +0200 | [diff] [blame] | 73 | #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] | 74 | #else |
| 75 | #define BOOT_TARGET_DEVICES_USB(func) |
| 76 | #endif |
| 77 | |
Joe Hershberger | 86271b3 | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 78 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 79 | #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 80 | #else |
| 81 | #define BOOT_TARGET_DEVICES_PXE(func) |
| 82 | #endif |
| 83 | |
| 84 | #if defined(CONFIG_CMD_DHCP) |
| 85 | #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 86 | #else |
| 87 | #define BOOT_TARGET_DEVICES_DHCP(func) |
| 88 | #endif |
| 89 | |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 90 | #if defined(CONFIG_ZYNQ_QSPI) |
| 91 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na) |
| 92 | #else |
| 93 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 94 | #endif |
| 95 | |
| 96 | #if defined(CONFIG_NAND_ZYNQ) |
| 97 | # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, na) |
| 98 | #else |
| 99 | # define BOOT_TARGET_DEVICES_NAND(func) |
| 100 | #endif |
| 101 | |
| 102 | #if defined(CONFIG_MTD_NOR_FLASH) |
| 103 | # define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na) |
| 104 | #else |
| 105 | # define BOOT_TARGET_DEVICES_NOR(func) |
| 106 | #endif |
| 107 | |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 108 | #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ |
| 109 | "bootcmd_qspi=sf probe 0 0 0 && " \ |
Michal Simek | a542a93 | 2019-09-11 13:12:43 +0200 | [diff] [blame] | 110 | "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 111 | "echo QSPI: Trying to boot script at ${scriptaddr} && " \ |
| 112 | "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 113 | |
| 114 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 115 | "qspi " |
| 116 | |
| 117 | #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ |
| 118 | "bootcmd_nand=nand info && " \ |
Michal Simek | a542a93 | 2019-09-11 13:12:43 +0200 | [diff] [blame] | 119 | "nand read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 120 | "echo NAND: Trying to boot script at ${scriptaddr} && " \ |
| 121 | "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 122 | |
| 123 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 124 | "nand " |
| 125 | |
| 126 | #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \ |
Michal Simek | 90b9fcb | 2019-09-11 13:16:33 +0200 | [diff] [blame] | 127 | "script_offset_nor=0xE2FC0000\0" \ |
| 128 | "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 129 | "echo NOR: Trying to boot script at ${scriptaddr} && " \ |
| 130 | "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 131 | |
| 132 | #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \ |
| 133 | "nor " |
| 134 | |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 135 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 136 | |
| 137 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 138 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 139 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 140 | |
| 141 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 142 | "jtag " |
| 143 | |
T Karthik Reddy | b8126ab | 2021-03-30 23:24:58 -0600 | [diff] [blame] | 144 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 145 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 146 | |
| 147 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 148 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 149 | "$scriptaddr $script_size_f && " \ |
| 150 | "dfu " #instance " ram " #instance " 60 && " \ |
| 151 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 152 | "source ${scriptaddr}; " \ |
| 153 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 154 | |
| 155 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 156 | "" |
| 157 | |
| 158 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 159 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
| 160 | |
| 161 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 162 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 163 | "$scriptaddr $script_size_f && " \ |
| 164 | "thordown " #instance " ram " #instance " && " \ |
| 165 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 166 | "source ${scriptaddr}; " \ |
| 167 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
| 168 | |
| 169 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 170 | "" |
| 171 | |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 172 | #define BOOT_TARGET_DEVICES(func) \ |
T Karthik Reddy | c352f1e | 2019-11-13 21:13:44 -0700 | [diff] [blame] | 173 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 174 | BOOT_TARGET_DEVICES_MMC(func) \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 175 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 176 | BOOT_TARGET_DEVICES_NAND(func) \ |
| 177 | BOOT_TARGET_DEVICES_NOR(func) \ |
T Karthik Reddy | b8126ab | 2021-03-30 23:24:58 -0600 | [diff] [blame] | 178 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 179 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 180 | BOOT_TARGET_DEVICES_USB(func) \ |
| 181 | BOOT_TARGET_DEVICES_PXE(func) \ |
Michal Simek | 83a0e80 | 2019-09-10 15:01:53 +0200 | [diff] [blame] | 182 | BOOT_TARGET_DEVICES_DHCP(func) |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 183 | |
| 184 | #include <config_distro_bootcmd.h> |
| 185 | #endif /* CONFIG_SPL_BUILD */ |
| 186 | |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 187 | /* Default environment */ |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 188 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
Jagannadha Sutradharudu Teki | e83f61a | 2014-01-09 01:48:22 +0530 | [diff] [blame] | 189 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 190 | "scriptaddr=0x20000\0" \ |
Siva Durga Prasad Paladugu | 90e97ab | 2019-01-25 17:06:05 +0530 | [diff] [blame] | 191 | "script_size_f=0x40000\0" \ |
Alexander Graf | 61d8eeb | 2017-07-03 13:41:35 +0200 | [diff] [blame] | 192 | "fdt_addr_r=0x1f00000\0" \ |
| 193 | "pxefile_addr_r=0x2000000\0" \ |
| 194 | "kernel_addr_r=0x2000000\0" \ |
| 195 | "scriptaddr=0x3000000\0" \ |
| 196 | "ramdisk_addr_r=0x3100000\0" \ |
Michal Simek | 83a0e80 | 2019-09-10 15:01:53 +0200 | [diff] [blame] | 197 | BOOTENV |
Michal Simek | b7b3efe | 2016-02-13 11:50:03 +0100 | [diff] [blame] | 198 | #endif |
Siva Durga Prasad Paladugu | c6024c8 | 2014-02-20 10:28:27 +0530 | [diff] [blame] | 199 | |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 200 | /* Miscellaneous configurable options */ |
Jagannadha Sutradharudu Teki | 36e0e19 | 2014-01-09 01:48:04 +0530 | [diff] [blame] | 201 | |
Michal Simek | c1584e2 | 2016-04-01 16:04:14 +0200 | [diff] [blame] | 202 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000 |
Siva Durga Prasad Paladugu | d6d82cb | 2017-07-24 16:53:15 +0530 | [diff] [blame] | 203 | #define CONFIG_SYS_INIT_RAM_SIZE 0x2000 |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 204 | |
Jagannadha Sutradharudu Teki | 53e49f7 | 2014-01-09 01:48:06 +0530 | [diff] [blame] | 205 | |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 206 | /* Extend size of kernel image for uncompression */ |
Michal Simek | 3d456ee | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 207 | #define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) |
Michal Simek | ae9f489 | 2014-01-20 11:29:06 +0100 | [diff] [blame] | 208 | |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 209 | /* Boot FreeBSD/vxWorks from an ELF image */ |
Michal Simek | d82d63c | 2016-02-04 11:08:26 +0100 | [diff] [blame] | 210 | #define CONFIG_SYS_MMC_MAX_DEVICE 1 |
Jagannadha Sutradharudu Teki | 09ed635 | 2014-01-09 01:48:03 +0530 | [diff] [blame] | 211 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 212 | /* Address in RAM where the parameters must be copied by SPL. */ |
| 213 | #define CONFIG_SYS_SPL_ARGS_ADDR 0x10000000 |
| 214 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 215 | /* Not using MMC raw mode - just for compilation purpose */ |
| 216 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0 |
| 217 | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 218 | |
| 219 | /* qspi mode is working fine */ |
| 220 | #ifdef CONFIG_ZYNQ_QSPI |
Siva Durga Prasad Paladugu | 8e0e01d | 2015-09-14 12:59:08 +0530 | [diff] [blame] | 221 | #define CONFIG_SYS_SPI_ARGS_OFFS 0x200000 |
| 222 | #define CONFIG_SYS_SPI_ARGS_SIZE 0x80000 |
| 223 | #define CONFIG_SYS_SPI_KERNEL_OFFS (CONFIG_SYS_SPI_ARGS_OFFS + \ |
| 224 | CONFIG_SYS_SPI_ARGS_SIZE) |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 225 | #endif |
| 226 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 227 | /* SP location before relocation, must use scratch RAM */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 228 | |
| 229 | /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 230 | |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 231 | /* On the top of OCM space */ |
Michal Simek | d7e269c | 2014-01-14 14:21:52 +0100 | [diff] [blame] | 232 | |
Michal Simek | 83b6464 | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 233 | /* |
| 234 | * SPL stack position - and stack goes down |
| 235 | * 0xfffffe00 is used for putting wfi loop. |
| 236 | * Set it up as limit for now. |
| 237 | */ |
Michal Simek | 83b6464 | 2015-11-23 16:27:38 +0100 | [diff] [blame] | 238 | |
Jagannadha Sutradharudu Teki | 06fe8da | 2014-01-09 01:48:10 +0530 | [diff] [blame] | 239 | #endif /* __CONFIG_ZYNQ_COMMON_H */ |