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