Merge tag 'video-next-20211228' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / include / configs / xilinx_zynqmp.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
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
8  */
9
10 #ifndef __XILINX_ZYNQMP_H
11 #define __XILINX_ZYNQMP_H
12
13 #define CONFIG_REMAKE_ELF
14
15 /* #define CONFIG_ARMV8_SWITCH_TO_EL1 */
16
17 /* Generic Interrupt Controller Definitions */
18 #define GICD_BASE       0xF9010000
19 #define GICC_BASE       0xF9020000
20
21 #define CONFIG_SYS_INIT_SP_ADDR         CONFIG_SYS_TEXT_BASE
22
23 /* Generic Timer Definitions - setup in EL3. Setup by ATF for other cases */
24 #if !defined(COUNTER_FREQUENCY)
25 # define COUNTER_FREQUENCY              100000000
26 #endif
27
28 /* Serial setup */
29 #define CONFIG_SYS_BAUDRATE_TABLE \
30         { 4800, 9600, 19200, 38400, 57600, 115200 }
31
32 /* BOOTP options */
33 #define CONFIG_BOOTP_BOOTFILESIZE
34 #define CONFIG_BOOTP_MAY_FAIL
35
36 #ifdef CONFIG_NAND_ARASAN
37 # define CONFIG_SYS_MAX_NAND_DEVICE     1
38 #endif
39
40 /* Miscellaneous configurable options */
41
42 #if defined(CONFIG_ZYNQMP_USB)
43 #define DFU_DEFAULT_POLL_TIMEOUT        300
44 #define CONFIG_THOR_RESET_OFF
45
46 #ifndef CONFIG_SPL_BUILD
47 # define PARTS_DEFAULT \
48         "partitions=uuid_disk=${uuid_gpt_disk};" \
49         "name=""boot"",size=16M,uuid=${uuid_gpt_boot};" \
50         "name=""Linux"",size=-M,uuid=${uuid_gpt_Linux}\0"
51 #endif
52 #endif
53
54 #if !defined(PARTS_DEFAULT)
55 # define PARTS_DEFAULT
56 #endif
57
58 /* Monitor Command Prompt */
59 /* Console I/O Buffer Size */
60 #define CONFIG_SYS_CBSIZE               2048
61 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
62 #define CONFIG_SYS_MAXARGS              64
63
64 /* Ethernet driver */
65 #if defined(CONFIG_ZYNQ_GEM)
66 # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
67 # define PHY_ANEG_TIMEOUT       20000
68 #endif
69
70 #define CONFIG_SYS_BOOTM_LEN    (60 * 1024 * 1024)
71
72 #define CONFIG_CLOCKS
73
74 #define ENV_MEM_LAYOUT_SETTINGS \
75         "fdt_addr_r=0x40000000\0" \
76         "fdt_size_r=0x400000\0" \
77         "pxefile_addr_r=0x10000000\0" \
78         "kernel_addr_r=0x18000000\0" \
79         "kernel_size_r=0x10000000\0" \
80         "kernel_comp_addr_r=0x30000000\0" \
81         "kernel_comp_size=0x3C00000\0" \
82         "scriptaddr=0x20000000\0" \
83         "ramdisk_addr_r=0x02100000\0" \
84         "script_size_f=0x80000\0" \
85
86 #if defined(CONFIG_MMC_SDHCI_ZYNQ)
87 # define BOOT_TARGET_DEVICES_MMC(func)  func(MMC, mmc, 0) func(MMC, mmc, 1)
88 #else
89 # define BOOT_TARGET_DEVICES_MMC(func)
90 #endif
91
92 #if defined(CONFIG_SATA_CEVA)
93 # define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0)
94 #else
95 # define BOOT_TARGET_DEVICES_SCSI(func)
96 #endif
97
98 #if defined(CONFIG_ZYNQMP_USB)
99 # define BOOT_TARGET_DEVICES_USB(func)  func(USB, usb, 0) func(USB, usb, 1)
100 #else
101 # define BOOT_TARGET_DEVICES_USB(func)
102 #endif
103
104 #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
105 # define BOOT_TARGET_DEVICES_PXE(func)  func(PXE, pxe, na)
106 #else
107 # define BOOT_TARGET_DEVICES_PXE(func)
108 #endif
109
110 #if defined(CONFIG_CMD_DHCP)
111 # define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
112 #else
113 # define BOOT_TARGET_DEVICES_DHCP(func)
114 #endif
115
116 #if defined(CONFIG_ZYNQMP_GQSPI)
117 # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, 0)
118 #else
119 # define BOOT_TARGET_DEVICES_QSPI(func)
120 #endif
121
122 #if defined(CONFIG_NAND_ARASAN)
123 # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, 0)
124 #else
125 # define BOOT_TARGET_DEVICES_NAND(func)
126 #endif
127
128 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
129         "bootcmd_" #devtypel #instance "=sf probe " #instance " 0 0 && " \
130                        "sf read $scriptaddr $script_offset_f $script_size_f && " \
131                        "echo QSPI: Trying to boot script at ${scriptaddr} && " \
132                        "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0"
133
134 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
135         #devtypel #instance " "
136
137 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
138         "bootcmd_" #devtypel #instance "= nand info && " \
139                        "nand read $scriptaddr $script_offset_f $script_size_f && " \
140                        "echo NAND: Trying to boot script at ${scriptaddr} && " \
141                        "source ${scriptaddr}; echo NAND: SCRIPT FAILED: continuing...;\0"
142
143 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
144         #devtypel #instance " "
145
146 #define BOOT_TARGET_DEVICES_JTAG(func)  func(JTAG, jtag, na)
147
148 #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \
149         "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \
150                 "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0"
151
152 #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \
153         "jtag "
154
155 #define BOOT_TARGET_DEVICES_USB_DFU(func) \
156         func(USB_DFU, usb_dfu, 0) func(USB_DFU, usb_dfu, 1)
157
158 #define BOOTENV_DEV_USB_DFU(devtypeu, devtypel, instance) \
159         "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \
160         "$scriptaddr $script_size_f && " \
161         "dfu " #instance " ram " #instance " 60 && " \
162         "echo DFU" #instance ": Trying to boot script at ${scriptaddr} && " \
163         "source ${scriptaddr}; " \
164         "echo DFU" #instance ": SCRIPT FAILED: continuing...;\0"
165
166 #define BOOTENV_DEV_NAME_USB_DFU(devtypeu, devtypel, instance) \
167         ""
168
169 #define BOOT_TARGET_DEVICES_USB_THOR(func) \
170         func(USB_THOR, usb_thor, 0) func(USB_THOR, usb_thor, 1)
171
172 #define BOOTENV_DEV_USB_THOR(devtypeu, devtypel, instance) \
173         "bootcmd_" #devtypel #instance "=setenv dfu_alt_info boot.scr ram " \
174         "$scriptaddr $script_size_f && " \
175         "thordown " #instance " ram " #instance " && " \
176         "echo THOR" #instance ": Trying to boot script at ${scriptaddr} && " \
177         "source ${scriptaddr}; " \
178         "echo THOR" #instance ": SCRIPT FAILED: continuing...;\0"
179
180 #define BOOTENV_DEV_NAME_USB_THOR(devtypeu, devtypel, instance) \
181         ""
182
183 #define BOOT_TARGET_DEVICES(func) \
184         BOOT_TARGET_DEVICES_JTAG(func) \
185         BOOT_TARGET_DEVICES_MMC(func) \
186         BOOT_TARGET_DEVICES_QSPI(func) \
187         BOOT_TARGET_DEVICES_NAND(func) \
188         BOOT_TARGET_DEVICES_USB_DFU(func) \
189         BOOT_TARGET_DEVICES_USB_THOR(func) \
190         BOOT_TARGET_DEVICES_USB(func) \
191         BOOT_TARGET_DEVICES_SCSI(func) \
192         BOOT_TARGET_DEVICES_PXE(func) \
193         BOOT_TARGET_DEVICES_DHCP(func)
194
195 #include <config_distro_bootcmd.h>
196
197 /* Initial environment variables */
198 #ifndef CONFIG_EXTRA_ENV_SETTINGS
199 #define CONFIG_EXTRA_ENV_SETTINGS \
200         ENV_MEM_LAYOUT_SETTINGS \
201         BOOTENV
202 #endif
203
204 /* SPL can't handle all huge variables - define just DFU */
205 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_DFU)
206 #undef CONFIG_EXTRA_ENV_SETTINGS
207 # define CONFIG_EXTRA_ENV_SETTINGS \
208         "dfu_alt_info_ram=uboot.bin ram 0x8000000 0x1000000;" \
209                           "atf-uboot.ub ram 0x10000000 0x1000000;" \
210                           "Image ram 0x80000 0x3f80000;" \
211                           "system.dtb ram 0x4000000 0x100000\0" \
212         "dfu_bufsiz=0x1000\0"
213 #endif
214
215 #define CONFIG_SPL_STACK                0xfffffffc
216 #define CONFIG_SPL_MAX_SIZE             0x40000
217
218 /* Just random location in OCM */
219 #define CONFIG_SPL_BSS_START_ADDR       0x0
220 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000
221
222 #if defined(CONFIG_SPL_SPI_FLASH_SUPPORT)
223 # define CONFIG_SYS_SPI_KERNEL_OFFS     0x80000
224 # define CONFIG_SYS_SPI_ARGS_OFFS       0xa0000
225 # define CONFIG_SYS_SPI_ARGS_SIZE       0xa0000
226 #endif
227
228 /* u-boot is like dtb */
229 #define CONFIG_SPL_FS_LOAD_ARGS_NAME    "u-boot.bin"
230 #define CONFIG_SYS_SPL_ARGS_ADDR        0x8000000
231
232 /* ATF is my kernel image */
233 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME  "atf-uboot.ub"
234
235 /* MMC support */
236 #ifdef CONFIG_MMC_SDHCI_ZYNQ
237 # define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR  0 /* unused */
238 # define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* unused */
239 # define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR        0 /* unused */
240 # if defined(CONFIG_SPL_LOAD_FIT)
241 #  define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME       "u-boot.itb"
242 # else
243 #  define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME       "u-boot.img"
244 # endif
245 #endif
246
247 #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_DFU)
248 # define CONFIG_SPL_HASH
249 # define CONFIG_ENV_MAX_ENTRIES 10
250 #endif
251
252 #define CONFIG_SYS_SPL_MALLOC_START     0x20000000
253 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x1000000
254
255 #ifdef CONFIG_SPL_SYS_MALLOC_SIMPLE
256 # error "Disable CONFIG_SPL_SYS_MALLOC_SIMPLE. Full malloc needs to be used"
257 #endif
258
259 #endif /* __XILINX_ZYNQMP_H */