Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Configuration for Xilinx ZynqMP |
| 4 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
Michal Simek | a8c9436 | 2023-07-10 14:35:49 +0200 | [diff] [blame] | 5 | * Michal Simek <michal.simek@amd.com> |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 6 | * |
| 7 | * Based on Configuration for Versatile Express |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __XILINX_ZYNQMP_H |
| 11 | #define __XILINX_ZYNQMP_H |
| 12 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 13 | /* Generic Interrupt Controller Definitions */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 14 | #define GICD_BASE 0xF9010000 |
| 15 | #define GICC_BASE 0xF9020000 |
| 16 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 17 | /* Serial setup */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 18 | #define CFG_SYS_BAUDRATE_TABLE \ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 19 | { 4800, 9600, 19200, 38400, 57600, 115200 } |
| 20 | |
Sughosh Ganu | ccb3646 | 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 | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 30 | /* Miscellaneous configurable options */ |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 31 | |
Venkatesh Yadav Abbarapu | 17a5de2 | 2023-09-04 08:45:28 +0530 | [diff] [blame] | 32 | #if defined(CONFIG_USB_STORAGE) |
Siva Durga Prasad Paladugu | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 33 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
Siva Durga Prasad Paladugu | 82e7fb2 | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 34 | |
Siva Durga Prasad Paladugu | 82e7fb2 | 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 | ba1f68e | 2015-08-04 13:03:26 +0530 | [diff] [blame] | 40 | |
Siva Durga Prasad Paladugu | 82e7fb2 | 2016-05-12 10:54:41 +0530 | [diff] [blame] | 41 | #if !defined(PARTS_DEFAULT) |
| 42 | # define PARTS_DEFAULT |
| 43 | #endif |
| 44 | |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 45 | /* Ethernet driver */ |
Michal Simek | c68918e | 2015-07-23 12:03:55 +0200 | [diff] [blame] | 46 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 47 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 48 | "fdt_addr_r=0x40000000\0" \ |
Michal Simek | 23bbbbf | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 49 | "fdt_size_r=0x400000\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 50 | "pxefile_addr_r=0x10000000\0" \ |
| 51 | "kernel_addr_r=0x18000000\0" \ |
Michal Simek | 23bbbbf | 2020-07-15 15:43:52 +0200 | [diff] [blame] | 52 | "kernel_size_r=0x10000000\0" \ |
Raju Kumar Pothuraju | a51ca69 | 2021-07-12 20:19:04 +0530 | [diff] [blame] | 53 | "kernel_comp_addr_r=0x30000000\0" \ |
| 54 | "kernel_comp_size=0x3C00000\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 55 | "ramdisk_addr_r=0x02100000\0" \ |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 56 | "script_size_f=0x80000\0" \ |
Venkatesh Yadav Abbarapu | b04839b | 2023-05-17 10:42:11 +0200 | [diff] [blame] | 57 | "stdin=serial\0" \ |
| 58 | "stdout=serial,vidconsole\0" \ |
| 59 | "stderr=serial,vidconsole\0" \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 60 | |
Michal Simek | b163476 | 2023-09-05 13:30:07 +0200 | [diff] [blame] | 61 | #if defined(CONFIG_DISTRO_DEFAULTS) |
| 62 | |
Masahiro Yamada | 168c57d | 2017-01-30 19:46:51 +0900 | [diff] [blame] | 63 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 64 | # define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
| 65 | #else |
| 66 | # define BOOT_TARGET_DEVICES_MMC(func) |
| 67 | #endif |
| 68 | |
| 69 | #if defined(CONFIG_SATA_CEVA) |
| 70 | # define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0) |
| 71 | #else |
| 72 | # define BOOT_TARGET_DEVICES_SCSI(func) |
| 73 | #endif |
| 74 | |
Venkatesh Yadav Abbarapu | 17a5de2 | 2023-09-04 08:45:28 +0530 | [diff] [blame] | 75 | #if defined(CONFIG_USB_STORAGE) |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 76 | # define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) func(USB, usb, 1) |
| 77 | #else |
| 78 | # define BOOT_TARGET_DEVICES_USB(func) |
| 79 | #endif |
| 80 | |
Joe Hershberger | 8e8594f | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 81 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Michal Simek | 5d23227 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 82 | # define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 83 | #else |
| 84 | # define BOOT_TARGET_DEVICES_PXE(func) |
| 85 | #endif |
| 86 | |
| 87 | #if defined(CONFIG_CMD_DHCP) |
| 88 | # define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 89 | #else |
| 90 | # define BOOT_TARGET_DEVICES_DHCP(func) |
| 91 | #endif |
| 92 | |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 93 | #if defined(CONFIG_ZYNQMP_GQSPI) |
| 94 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, 0) |
| 95 | #else |
| 96 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 97 | #endif |
| 98 | |
| 99 | #if defined(CONFIG_NAND_ARASAN) |
| 100 | # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, 0) |
| 101 | #else |
| 102 | # define BOOT_TARGET_DEVICES_NAND(func) |
| 103 | #endif |
| 104 | |
| 105 | #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \ |
| 106 | "bootcmd_" #devtypel #instance "=sf probe " #instance " 0 0 && " \ |
| 107 | "sf read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 108 | "echo QSPI: Trying to boot script at ${scriptaddr} && " \ |
| 109 | "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 110 | |
| 111 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 112 | #devtypel #instance " " |
| 113 | |
| 114 | #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \ |
| 115 | "bootcmd_" #devtypel #instance "= nand info && " \ |
| 116 | "nand read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 117 | "echo NAND: Trying to boot script at ${scriptaddr} && " \ |
| 118 | "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 119 | |
| 120 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 121 | #devtypel #instance " " |
| 122 | |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 123 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 124 | |
| 125 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 126 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 127 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 128 | |
| 129 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 130 | "jtag " |
| 131 | |
T Karthik Reddy | 9eee8e3 | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 132 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 133 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 134 | |
| 135 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 136 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 137 | "$scriptaddr $script_size_f && " \ |
| 138 | "dfu " #instance " ram " #instance " 60 && " \ |
| 139 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 140 | "source ${scriptaddr}; " \ |
| 141 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 142 | |
| 143 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 144 | "" |
| 145 | |
| 146 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 147 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
| 148 | |
| 149 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 150 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 151 | "$scriptaddr $script_size_f && " \ |
| 152 | "thordown " #instance " ram " #instance " && " \ |
| 153 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 154 | "source ${scriptaddr}; " \ |
| 155 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
| 156 | |
| 157 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 158 | "" |
| 159 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 160 | #define BOOT_TARGET_DEVICES(func) \ |
Siva Durga Prasad Paladugu | 9c44170 | 2019-06-25 17:41:09 +0530 | [diff] [blame] | 161 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 162 | BOOT_TARGET_DEVICES_MMC(func) \ |
Siva Durga Prasad Paladugu | b541a3e | 2019-01-24 11:32:04 +0530 | [diff] [blame] | 163 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 164 | BOOT_TARGET_DEVICES_NAND(func) \ |
T Karthik Reddy | 9eee8e3 | 2021-03-24 23:37:57 -0600 | [diff] [blame] | 165 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 166 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 167 | BOOT_TARGET_DEVICES_USB(func) \ |
| 168 | BOOT_TARGET_DEVICES_SCSI(func) \ |
Michal Simek | 5d23227 | 2018-03-28 15:20:48 +0200 | [diff] [blame] | 169 | BOOT_TARGET_DEVICES_PXE(func) \ |
| 170 | BOOT_TARGET_DEVICES_DHCP(func) |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 171 | |
| 172 | #include <config_distro_bootcmd.h> |
| 173 | |
Michal Simek | b163476 | 2023-09-05 13:30:07 +0200 | [diff] [blame] | 174 | #else /* CONFIG_DISTRO_DEFAULTS */ |
| 175 | # define BOOTENV |
| 176 | #endif /* CONFIG_DISTRO_DEFAULTS */ |
| 177 | |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 178 | /* Initial environment variables */ |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 179 | #ifndef CFG_EXTRA_ENV_SETTINGS |
| 180 | #define CFG_EXTRA_ENV_SETTINGS \ |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 181 | ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | fc3c708 | 2021-03-25 09:55:30 +0100 | [diff] [blame] | 182 | BOOTENV |
Michal Simek | ecfb6dc | 2016-04-22 14:28:54 +0200 | [diff] [blame] | 183 | #endif |
| 184 | |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 185 | /* SPL can't handle all huge variables - define just DFU */ |
Simon Glass | 209ae76 | 2024-09-29 19:49:49 -0600 | [diff] [blame^] | 186 | #if defined(CONFIG_XPL_BUILD) && defined(CONFIG_SPL_DFU) |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 187 | #undef CFG_EXTRA_ENV_SETTINGS |
| 188 | # define CFG_EXTRA_ENV_SETTINGS \ |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 189 | "dfu_alt_info_ram=uboot.bin ram 0x8000000 0x1000000;" \ |
| 190 | "atf-uboot.ub ram 0x10000000 0x1000000;" \ |
| 191 | "Image ram 0x80000 0x3f80000;" \ |
| 192 | "system.dtb ram 0x4000000 0x100000\0" \ |
| 193 | "dfu_bufsiz=0x1000\0" |
| 194 | #endif |
| 195 | |
Michal Simek | 933b6f7 | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 196 | #if defined(CONFIG_SPL_SPI_FLASH_SUPPORT) |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 197 | # define CFG_SYS_SPI_KERNEL_OFFS 0x80000 |
| 198 | # define CFG_SYS_SPI_ARGS_OFFS 0xa0000 |
| 199 | # define CFG_SYS_SPI_ARGS_SIZE 0xa0000 |
Hannes Schmelzer | 30d69e2 | 2019-08-22 15:41:43 +0200 | [diff] [blame] | 200 | #endif |
Michal Simek | 933b6f7 | 2017-01-16 12:07:33 +0100 | [diff] [blame] | 201 | |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 202 | #ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE |
| 203 | # error "Disable CONFIG_SPL_SYS_MALLOC_SIMPLE. Full malloc needs to be used" |
| 204 | #endif |
Michal Simek | 12398ea | 2016-08-19 14:14:52 +0200 | [diff] [blame] | 205 | |
Michal Simek | 04b7e62 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 206 | #endif /* __XILINX_ZYNQMP_H */ |