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