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