Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Configuration for Xilinx ZynqMP |
| 4 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
Michal Simek | 174d7284 | 2023-07-10 14:35:49 +0200 | [diff] [blame] | 5 | * Michal Simek <michal.simek@amd.com> |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 6 | * |
| 7 | * Based on Configuration for Versatile Express |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __XILINX_ZYNQMP_H |
| 11 | #define __XILINX_ZYNQMP_H |
| 12 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 13 | /* Generic Interrupt Controller Definitions */ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 14 | #define GICD_BASE 0xF9010000 |
| 15 | #define GICC_BASE 0xF9020000 |
| 16 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 17 | /* Serial setup */ |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 18 | #define CFG_SYS_BAUDRATE_TABLE \ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 19 | { 4800, 9600, 19200, 38400, 57600, 115200 } |
| 20 | |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 21 | /* GUIDs for capsule updatable firmware images */ |
| 22 | #define XILINX_BOOT_IMAGE_GUID \ |
| 23 | EFI_GUID(0xde6066e8, 0x0256, 0x4fad, 0x82, 0x38, \ |
| 24 | 0xe4, 0x06, 0xe2, 0x74, 0xc4, 0xcf) |
| 25 | |
| 26 | #define XILINX_UBOOT_IMAGE_GUID \ |
| 27 | EFI_GUID(0xcf9ecfd4, 0x938b, 0x41c5, 0x85, 0x51, \ |
| 28 | 0x1f, 0x88, 0x3a, 0xb7, 0xdc, 0x18) |
| 29 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 30 | /* Miscellaneous configurable options */ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 31 | |
Venkatesh Yadav Abbarapu | b764e84 | 2023-09-04 08:45:28 +0530 | [diff] [blame] | 32 | #if defined(CONFIG_USB_STORAGE) |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 33 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
Siva Durga Prasad Paladugu | 5ce987f | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 34 | |
Siva Durga Prasad Paladugu | 5ce987f | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 35 | # define PARTS_DEFAULT \ |
| 36 | "partitions=uuid_disk=${uuid_gpt_disk};" \ |
| 37 | "name=""boot"",size=16M,uuid=${uuid_gpt_boot};" \ |
| 38 | "name=""Linux"",size=-M,uuid=${uuid_gpt_Linux}\0" |
| 39 | #endif |
Siva Durga Prasad Paladugu | 16fa00a | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 40 | |
Siva Durga Prasad Paladugu | 5ce987f | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 41 | #if !defined(PARTS_DEFAULT) |
| 42 | # define PARTS_DEFAULT |
| 43 | #endif |
| 44 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 45 | /* Console I/O Buffer Size */ |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 46 | |
Michal Simek | cb7ea82 | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 47 | /* Ethernet driver */ |
Michal Simek | 596e578 | 2015-11-30 14:34:52 +0100 | [diff] [blame] | 48 | #if defined(CONFIG_ZYNQ_GEM) |
Siva Durga Prasad Paladugu | e2928f3 | 2016-01-05 15:21:46 +0530 | [diff] [blame] | 49 | # define PHY_ANEG_TIMEOUT 20000 |
Michal Simek | cb7ea82 | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 50 | #endif |
| 51 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 52 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 53 | "fdt_addr_r=0x40000000\0" \ |
Michal Simek | 9643000 | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 54 | "fdt_size_r=0x400000\0" \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 55 | "pxefile_addr_r=0x10000000\0" \ |
| 56 | "kernel_addr_r=0x18000000\0" \ |
Michal Simek | 9643000 | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 57 | "kernel_size_r=0x10000000\0" \ |
Raju Kumar Pothuraju | 3965d13 | 2021-07-12 20:19:04 +0530 | [diff] [blame] | 58 | "kernel_comp_addr_r=0x30000000\0" \ |
| 59 | "kernel_comp_size=0x3C00000\0" \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 60 | "ramdisk_addr_r=0x02100000\0" \ |
Siva Durga Prasad Paladugu | ad78d26 | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 61 | "script_size_f=0x80000\0" \ |
Venkatesh Yadav Abbarapu | dbec4f0 | 2023-05-17 10:42:11 +0200 | [diff] [blame] | 62 | "stdin=serial\0" \ |
| 63 | "stdout=serial,vidconsole\0" \ |
| 64 | "stderr=serial,vidconsole\0" \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 65 | |
Michal Simek | 6ec17a2 | 2023-09-05 13:30:07 +0200 | [diff] [blame] | 66 | #if defined(CONFIG_DISTRO_DEFAULTS) |
| 67 | |
Masahiro Yamada | 08aa033 | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 68 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 69 | # define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
| 70 | #else |
| 71 | # define BOOT_TARGET_DEVICES_MMC(func) |
| 72 | #endif |
| 73 | |
| 74 | #if defined(CONFIG_SATA_CEVA) |
| 75 | # define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0) |
| 76 | #else |
| 77 | # define BOOT_TARGET_DEVICES_SCSI(func) |
| 78 | #endif |
| 79 | |
Venkatesh Yadav Abbarapu | b764e84 | 2023-09-04 08:45:28 +0530 | [diff] [blame] | 80 | #if defined(CONFIG_USB_STORAGE) |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 81 | # define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) func(USB, usb, 1) |
| 82 | #else |
| 83 | # define BOOT_TARGET_DEVICES_USB(func) |
| 84 | #endif |
| 85 | |
Joe Hershberger | 86271b3 | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 86 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Michal Simek | 1a82f59 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 87 | # define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 88 | #else |
| 89 | # define BOOT_TARGET_DEVICES_PXE(func) |
| 90 | #endif |
| 91 | |
| 92 | #if defined(CONFIG_CMD_DHCP) |
| 93 | # define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 94 | #else |
| 95 | # define BOOT_TARGET_DEVICES_DHCP(func) |
| 96 | #endif |
| 97 | |
Siva Durga Prasad Paladugu | ad78d26 | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 98 | #if defined(CONFIG_ZYNQMP_GQSPI) |
| 99 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, 0) |
| 100 | #else |
| 101 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 102 | #endif |
| 103 | |
| 104 | #if defined(CONFIG_NAND_ARASAN) |
| 105 | # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, 0) |
| 106 | #else |
| 107 | # define BOOT_TARGET_DEVICES_NAND(func) |
| 108 | #endif |
| 109 | |
| 110 | #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ |
| 111 | "bootcmd_" #devtypel #instance "=sf probe " #instance " 0 0 && " \ |
| 112 | "sf read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 113 | "echo QSPI: Trying to boot script at ${scriptaddr} && " \ |
| 114 | "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | ad78d26 | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 115 | |
| 116 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 117 | #devtypel #instance " " |
| 118 | |
| 119 | #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ |
| 120 | "bootcmd_" #devtypel #instance "= nand info && " \ |
| 121 | "nand read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 122 | "echo NAND: Trying to boot script at ${scriptaddr} && " \ |
| 123 | "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | ad78d26 | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 124 | |
| 125 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 126 | #devtypel #instance " " |
| 127 | |
Siva Durga Prasad Paladugu | 5d2274c | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 128 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 129 | |
| 130 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | 19d1304 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 131 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 132 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 5d2274c | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 133 | |
| 134 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 135 | "jtag " |
| 136 | |
T Karthik Reddy | ef1be3e | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 137 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 138 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 139 | |
| 140 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 141 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 142 | "$scriptaddr $script_size_f && " \ |
| 143 | "dfu " #instance " ram " #instance " 60 && " \ |
| 144 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 145 | "source ${scriptaddr}; " \ |
| 146 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 147 | |
| 148 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 149 | "" |
| 150 | |
| 151 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 152 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
| 153 | |
| 154 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 155 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 156 | "$scriptaddr $script_size_f && " \ |
| 157 | "thordown " #instance " ram " #instance " && " \ |
| 158 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 159 | "source ${scriptaddr}; " \ |
| 160 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
| 161 | |
| 162 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 163 | "" |
| 164 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 165 | #define BOOT_TARGET_DEVICES(func) \ |
Siva Durga Prasad Paladugu | 5d2274c | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 166 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 167 | BOOT_TARGET_DEVICES_MMC(func) \ |
Siva Durga Prasad Paladugu | ad78d26 | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 168 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 169 | BOOT_TARGET_DEVICES_NAND(func) \ |
T Karthik Reddy | ef1be3e | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 170 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 171 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 172 | BOOT_TARGET_DEVICES_USB(func) \ |
| 173 | BOOT_TARGET_DEVICES_SCSI(func) \ |
Michal Simek | 1a82f59 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 174 | BOOT_TARGET_DEVICES_PXE(func) \ |
| 175 | BOOT_TARGET_DEVICES_DHCP(func) |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 176 | |
| 177 | #include <config_distro_bootcmd.h> |
| 178 | |
Michal Simek | 6ec17a2 | 2023-09-05 13:30:07 +0200 | [diff] [blame] | 179 | #else /* CONFIG_DISTRO_DEFAULTS */ |
| 180 | # define BOOTENV |
| 181 | #endif /* CONFIG_DISTRO_DEFAULTS */ |
| 182 | |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 183 | /* Initial environment variables */ |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 184 | #ifndef CFG_EXTRA_ENV_SETTINGS |
| 185 | #define CFG_EXTRA_ENV_SETTINGS \ |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 186 | ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | 1e967b5 | 2021-03-25 09:55:30 +0100 | [diff] [blame] | 187 | BOOTENV |
Michal Simek | b72894f | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 188 | #endif |
| 189 | |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 190 | /* SPL can't handle all huge variables - define just DFU */ |
Andrew F. Davis | 6536ca4 | 2019-01-17 13:43:02 -0600 | [diff] [blame] | 191 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_DFU) |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 192 | #undef CFG_EXTRA_ENV_SETTINGS |
| 193 | # define CFG_EXTRA_ENV_SETTINGS \ |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 194 | "dfu_alt_info_ram=uboot.bin ram 0x8000000 0x1000000;" \ |
| 195 | "atf-uboot.ub ram 0x10000000 0x1000000;" \ |
| 196 | "Image ram 0x80000 0x3f80000;" \ |
| 197 | "system.dtb ram 0x4000000 0x100000\0" \ |
| 198 | "dfu_bufsiz=0x1000\0" |
| 199 | #endif |
| 200 | |
Michal Simek | 24124ab | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 201 | #if defined(CONFIG_SPL_SPI_FLASH_SUPPORT) |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 202 | # define CFG_SYS_SPI_KERNEL_OFFS 0x80000 |
| 203 | # define CFG_SYS_SPI_ARGS_OFFS 0xa0000 |
| 204 | # define CFG_SYS_SPI_ARGS_SIZE 0xa0000 |
Hannes Schmelzer | abf9e5d | 2019-08-22 15:41:43 +0200 | [diff] [blame] | 205 | #endif |
Michal Simek | 24124ab | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 206 | |
Michal Simek | e6a9ed0 | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 207 | /* u-boot is like dtb */ |
Michal Simek | e6a9ed0 | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 208 | |
| 209 | /* ATF is my kernel image */ |
Michal Simek | e6a9ed0 | 2015-11-20 13:17:22 +0100 | [diff] [blame] | 210 | |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 211 | #ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE |
| 212 | # error "Disable CONFIG_SPL_SYS_MALLOC_SIMPLE. Full malloc needs to be used" |
| 213 | #endif |
Michal Simek | d58fc12 | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 214 | |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 215 | #endif /* __XILINX_ZYNQMP_H */ |