Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Configuration for Xilinx Versal |
| 4 | * (C) Copyright 2016 - 2018 Xilinx, Inc. |
| 5 | * Michal Simek <michal.simek@xilinx.com> |
| 6 | * |
| 7 | * Based on Configuration for Xilinx ZynqMP |
| 8 | */ |
| 9 | |
| 10 | #ifndef __XILINX_VERSAL_H |
| 11 | #define __XILINX_VERSAL_H |
| 12 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 13 | /* Generic Interrupt Controller Definitions */ |
| 14 | #define GICD_BASE 0xF9000000 |
| 15 | #define GICR_BASE 0xF9080000 |
| 16 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [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 | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 19 | { 4800, 9600, 19200, 38400, 57600, 115200 } |
| 20 | |
Sughosh Ganu | ccb3646 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 21 | /* GUID for capsule updatable firmware image */ |
| 22 | #define XILINX_BOOT_IMAGE_GUID \ |
| 23 | EFI_GUID(0x20c5fba5, 0x0171, 0x457f, 0xb9, 0xcd, \ |
| 24 | 0xf5, 0x12, 0x9c, 0xd0, 0x72, 0x28) |
| 25 | |
Siva Durga Prasad Paladugu | c049dda | 2019-04-22 14:45:04 +0530 | [diff] [blame] | 26 | #if defined(CONFIG_CMD_DFU) |
Siva Durga Prasad Paladugu | c049dda | 2019-04-22 14:45:04 +0530 | [diff] [blame] | 27 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
Siva Durga Prasad Paladugu | c049dda | 2019-04-22 14:45:04 +0530 | [diff] [blame] | 28 | #endif |
| 29 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 30 | /* Ethernet driver */ |
| 31 | #if defined(CONFIG_ZYNQ_GEM) |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 32 | # define PHY_ANEG_TIMEOUT 20000 |
| 33 | #endif |
| 34 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 35 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 36 | "fdt_addr_r=0x40000000\0" \ |
Siva Durga Prasad Paladugu | c049dda | 2019-04-22 14:45:04 +0530 | [diff] [blame] | 37 | "fdt_size_r=0x400000\0" \ |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 38 | "pxefile_addr_r=0x10000000\0" \ |
| 39 | "kernel_addr_r=0x18000000\0" \ |
Siva Durga Prasad Paladugu | c049dda | 2019-04-22 14:45:04 +0530 | [diff] [blame] | 40 | "kernel_size_r=0x10000000\0" \ |
Raju Kumar Pothuraju | a51ca69 | 2021-07-12 20:19:04 +0530 | [diff] [blame] | 41 | "kernel_comp_addr_r=0x30000000\0" \ |
| 42 | "kernel_comp_size=0x3C00000\0" \ |
Siva Durga Prasad Paladugu | 00784e0 | 2019-06-25 17:13:14 +0530 | [diff] [blame] | 43 | "scriptaddr=0x20000000\0" \ |
Siva Durga Prasad Paladugu | 6056ceb | 2019-01-31 17:28:13 +0530 | [diff] [blame] | 44 | "ramdisk_addr_r=0x02100000\0" \ |
Siva Durga Prasad Paladugu | 6056ceb | 2019-01-31 17:28:13 +0530 | [diff] [blame] | 45 | "script_size_f=0x80000\0" |
| 46 | |
| 47 | #if defined(CONFIG_MMC_SDHCI_ZYNQ) |
| 48 | # define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1) |
| 49 | #else |
| 50 | # define BOOT_TARGET_DEVICES_MMC(func) |
| 51 | #endif |
| 52 | |
Michal Simek | 788cdae | 2020-09-16 10:14:01 +0200 | [diff] [blame] | 53 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
| 54 | # define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 55 | #else |
| 56 | # define BOOT_TARGET_DEVICES_PXE(func) |
| 57 | #endif |
| 58 | |
| 59 | #if defined(CONFIG_CMD_DHCP) |
| 60 | # define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 61 | #else |
| 62 | # define BOOT_TARGET_DEVICES_DHCP(func) |
| 63 | #endif |
| 64 | |
Siva Durga Prasad Paladugu | 6056ceb | 2019-01-31 17:28:13 +0530 | [diff] [blame] | 65 | #if defined(CONFIG_ZYNQMP_GQSPI) || defined(CONFIG_CADENCE_OSPI_VERSAL) |
| 66 | # define BOOT_TARGET_DEVICES_XSPI(func) func(XSPI, xspi, 0) |
| 67 | #else |
| 68 | # define BOOT_TARGET_DEVICES_XSPI(func) |
| 69 | #endif |
| 70 | |
| 71 | #define BOOTENV_DEV_XSPI(devtypeu, devtypel, instance) \ |
| 72 | "bootcmd_xspi0=sf probe 0 0 0 && " \ |
| 73 | "sf read $scriptaddr $script_offset_f $script_size_f && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 74 | "echo XSPI: Trying to boot script at ${scriptaddr} && " \ |
| 75 | "source ${scriptaddr}; echo XSPI: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 6056ceb | 2019-01-31 17:28:13 +0530 | [diff] [blame] | 76 | |
| 77 | #define BOOTENV_DEV_NAME_XSPI(devtypeu, devtypel, instance) \ |
Michal Simek | 3464cd8 | 2020-04-16 18:04:43 +0200 | [diff] [blame] | 78 | "xspi0 " |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 79 | |
Siva Durga Prasad Paladugu | 00784e0 | 2019-06-25 17:13:14 +0530 | [diff] [blame] | 80 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 81 | |
| 82 | #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 83 | "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \ |
| 84 | "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0" |
Siva Durga Prasad Paladugu | 00784e0 | 2019-06-25 17:13:14 +0530 | [diff] [blame] | 85 | |
| 86 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 87 | "jtag " |
| 88 | |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 89 | #define BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 90 | func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1) |
| 91 | |
| 92 | #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \ |
| 93 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 94 | "$scriptaddr $script_size_f && " \ |
| 95 | "dfu " #instance " ram " #instance " 60 && " \ |
| 96 | "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \ |
| 97 | "source ${scriptaddr}; " \ |
| 98 | "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0" |
| 99 | |
| 100 | #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \ |
| 101 | "" |
| 102 | |
| 103 | #define BOOT_TARGET_DEVICES_USB_THOR(func) \ |
| 104 | func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1) |
T Karthik Reddy | facca9a | 2019-07-11 16:07:57 +0530 | [diff] [blame] | 105 | |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 106 | #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \ |
| 107 | "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \ |
| 108 | "$scriptaddr $script_size_f && " \ |
| 109 | "thordown " #instance " ram " #instance " && " \ |
| 110 | "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \ |
Michal Simek | f964751 | 2020-04-20 09:17:53 +0200 | [diff] [blame] | 111 | "source ${scriptaddr}; " \ |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 112 | "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0" |
T Karthik Reddy | facca9a | 2019-07-11 16:07:57 +0530 | [diff] [blame] | 113 | |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 114 | #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \ |
| 115 | "" |
T Karthik Reddy | facca9a | 2019-07-11 16:07:57 +0530 | [diff] [blame] | 116 | |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 117 | #define BOOT_TARGET_DEVICES(func) \ |
Siva Durga Prasad Paladugu | 00784e0 | 2019-06-25 17:13:14 +0530 | [diff] [blame] | 118 | BOOT_TARGET_DEVICES_JTAG(func) \ |
Siva Durga Prasad Paladugu | 6056ceb | 2019-01-31 17:28:13 +0530 | [diff] [blame] | 119 | BOOT_TARGET_DEVICES_MMC(func) \ |
| 120 | BOOT_TARGET_DEVICES_XSPI(func) \ |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 121 | BOOT_TARGET_DEVICES_USB_DFU(func) \ |
| 122 | BOOT_TARGET_DEVICES_USB_THOR(func) \ |
Michal Simek | 788cdae | 2020-09-16 10:14:01 +0200 | [diff] [blame] | 123 | BOOT_TARGET_DEVICES_PXE(func) \ |
| 124 | BOOT_TARGET_DEVICES_DHCP(func) |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 125 | |
| 126 | #include <config_distro_bootcmd.h> |
| 127 | |
| 128 | /* Initial environment variables */ |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 129 | #ifndef CFG_EXTRA_ENV_SETTINGS |
| 130 | #define CFG_EXTRA_ENV_SETTINGS \ |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 131 | ENV_MEM_LAYOUT_SETTINGS \ |
T Karthik Reddy | 1104faf | 2021-03-30 23:24:57 -0600 | [diff] [blame] | 132 | BOOTENV |
Michal Simek | 4b066a1 | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 133 | #endif |
| 134 | |
| 135 | #endif /* __XILINX_VERSAL_H */ |