Merge tag 'video-for-2019.10-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot...
[oweals/u-boot.git] / include / configs / zynq-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2012 Michal Simek <monstr@monstr.eu>
4  * (C) Copyright 2013 - 2018 Xilinx, Inc.
5  *
6  * Common configuration options for all Zynq boards.
7  */
8
9 #ifndef __CONFIG_ZYNQ_COMMON_H
10 #define __CONFIG_ZYNQ_COMMON_H
11
12 /* CPU clock */
13 #ifndef CONFIG_CPU_FREQ_HZ
14 # define CONFIG_CPU_FREQ_HZ     800000000
15 #endif
16
17 #define CONFIG_REMAKE_ELF
18
19 /* Cache options */
20 #define CONFIG_SYS_L2CACHE_OFF
21 #ifndef CONFIG_SYS_L2CACHE_OFF
22 # define CONFIG_SYS_L2_PL310
23 # define CONFIG_SYS_PL310_BASE          0xf8f02000
24 #endif
25
26 #define ZYNQ_SCUTIMER_BASEADDR          0xF8F00600
27 #define CONFIG_SYS_TIMERBASE            ZYNQ_SCUTIMER_BASEADDR
28 #define CONFIG_SYS_TIMER_COUNTS_DOWN
29 #define CONFIG_SYS_TIMER_COUNTER        (CONFIG_SYS_TIMERBASE + 0x4)
30
31 /* Serial drivers */
32 /* The following table includes the supported baudrates */
33 #define CONFIG_SYS_BAUDRATE_TABLE  \
34         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
35
36 #define CONFIG_ARM_DCC
37
38 /* Ethernet driver */
39 #if defined(CONFIG_ZYNQ_GEM)
40 # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
41 # define CONFIG_BOOTP_MAY_FAIL
42 #endif
43
44 /* QSPI */
45
46 /* NOR */
47 #ifdef CONFIG_MTD_NOR_FLASH
48 # define CONFIG_SYS_FLASH_BASE          0xE2000000
49 # define CONFIG_SYS_FLASH_SIZE          (16 * 1024 * 1024)
50 # define CONFIG_SYS_MAX_FLASH_BANKS     1
51 # define CONFIG_SYS_MAX_FLASH_SECT      512
52 # define CONFIG_SYS_FLASH_ERASE_TOUT    1000
53 # define CONFIG_SYS_FLASH_WRITE_TOUT    5000
54 # define CONFIG_FLASH_SHOW_PROGRESS     10
55 # undef CONFIG_SYS_FLASH_EMPTY_INFO
56 #endif
57
58 #ifdef CONFIG_NAND_ZYNQ
59 #define CONFIG_SYS_MAX_NAND_DEVICE      1
60 #define CONFIG_SYS_NAND_ONFI_DETECTION
61 #endif
62
63 #ifdef CONFIG_USB_EHCI_ZYNQ
64 # define CONFIG_EHCI_IS_TDI
65
66 # define CONFIG_SYS_DFU_DATA_BUF_SIZE   0x600000
67 # define DFU_DEFAULT_POLL_TIMEOUT       300
68 # define CONFIG_THOR_RESET_OFF
69 # define DFU_ALT_INFO_RAM \
70         "dfu_ram_info=" \
71         "setenv dfu_alt_info " \
72         "${kernel_image} ram 0x3000000 0x500000\\\\;" \
73         "${devicetree_image} ram 0x2A00000 0x20000\\\\;" \
74         "${ramdisk_image} ram 0x2000000 0x600000\0" \
75         "dfu_ram=run dfu_ram_info && dfu 0 ram 0\0" \
76         "thor_ram=run dfu_ram_info && thordown 0 ram 0\0"
77
78 # if defined(CONFIG_MMC_SDHCI_ZYNQ)
79 #  define DFU_ALT_INFO_MMC \
80         "dfu_mmc_info=" \
81         "setenv dfu_alt_info " \
82         "${kernel_image} fat 0 1\\\\;" \
83         "${devicetree_image} fat 0 1\\\\;" \
84         "${ramdisk_image} fat 0 1\0" \
85         "dfu_mmc=run dfu_mmc_info && dfu 0 mmc 0\0" \
86         "thor_mmc=run dfu_mmc_info && thordown 0 mmc 0\0"
87
88 #  define DFU_ALT_INFO  \
89         DFU_ALT_INFO_RAM \
90         DFU_ALT_INFO_MMC
91 # else
92 #  define DFU_ALT_INFO  \
93         DFU_ALT_INFO_RAM
94 # endif
95 #endif
96
97 #if !defined(DFU_ALT_INFO)
98 # define DFU_ALT_INFO
99 #endif
100
101 /* Allow to overwrite serial and ethaddr */
102 #define CONFIG_ENV_OVERWRITE
103
104 /* enable preboot to be loaded before CONFIG_BOOTDELAY */
105 #define CONFIG_PREBOOT
106
107 /* Boot configuration */
108 #define CONFIG_SYS_LOAD_ADDR            0 /* default? */
109
110 #ifdef CONFIG_SPL_BUILD
111 #define BOOTENV
112 #else
113
114 #ifdef CONFIG_CMD_MMC
115 #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
116 #else
117 #define BOOT_TARGET_DEVICES_MMC(func)
118 #endif
119
120 #ifdef CONFIG_CMD_USB
121 #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
122 #else
123 #define BOOT_TARGET_DEVICES_USB(func)
124 #endif
125
126 #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
127 #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
128 #else
129 #define BOOT_TARGET_DEVICES_PXE(func)
130 #endif
131
132 #if defined(CONFIG_CMD_DHCP)
133 #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
134 #else
135 #define BOOT_TARGET_DEVICES_DHCP(func)
136 #endif
137
138 #if defined(CONFIG_ZYNQ_QSPI)
139 # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na)
140 #else
141 # define BOOT_TARGET_DEVICES_QSPI(func)
142 #endif
143
144 #if defined(CONFIG_NAND_ZYNQ)
145 # define BOOT_TARGET_DEVICES_NAND(func) func(NAND, nand, na)
146 #else
147 # define BOOT_TARGET_DEVICES_NAND(func)
148 #endif
149
150 #if defined(CONFIG_MTD_NOR_FLASH)
151 # define BOOT_TARGET_DEVICES_NOR(func)  func(NOR, nor, na)
152 #else
153 # define BOOT_TARGET_DEVICES_NOR(func)
154 #endif
155
156 #define BOOTENV_DEV_XILINX(devtypeu, devtypel, instance) \
157         "bootcmd_xilinx=run $modeboot\0"
158
159 #define BOOTENV_DEV_NAME_XILINX(devtypeu, devtypel, instance) \
160         "xilinx "
161
162 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
163         "bootcmd_qspi=sf probe 0 0 0 && " \
164                       "sf read $scriptaddr $script_offset_f $script_size_f && " \
165                       "source ${scriptaddr}; echo SCRIPT FAILED: continuing...;\0"
166
167 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
168         "qspi "
169
170 #define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
171         "bootcmd_nand=nand info && " \
172                       "nand read $scriptaddr $script_offset_f $script_size_f && " \
173                       "source ${scriptaddr}; echo SCRIPT FAILED: continuing...;\0"
174
175 #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
176         "nand "
177
178 #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
179         "bootcmd_nor=cp.b $scropt_offset_nor $scriptaddr $script_size_f && " \
180                      "source ${scriptaddr}; echo SCRIPT FAILED: continuing...;\0"
181
182 #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
183         "nor "
184
185 #define BOOT_TARGET_DEVICES(func) \
186         BOOT_TARGET_DEVICES_MMC(func) \
187         BOOT_TARGET_DEVICES_QSPI(func) \
188         BOOT_TARGET_DEVICES_NAND(func) \
189         BOOT_TARGET_DEVICES_NOR(func) \
190         BOOT_TARGET_DEVICES_USB(func) \
191         BOOT_TARGET_DEVICES_PXE(func) \
192         BOOT_TARGET_DEVICES_DHCP(func) \
193         func(XILINX, xilinx, na)
194
195 #include <config_distro_bootcmd.h>
196 #endif /* CONFIG_SPL_BUILD */
197
198 /* Default environment */
199 #ifndef CONFIG_EXTRA_ENV_SETTINGS
200 #define CONFIG_EXTRA_ENV_SETTINGS       \
201         "fit_image=fit.itb\0"           \
202         "load_addr=0x2000000\0"         \
203         "fit_size=0x800000\0"           \
204         "flash_off=0x100000\0"          \
205         "nor_flash_off=0xE2100000\0"    \
206         "fdt_high=0x20000000\0"         \
207         "initrd_high=0x20000000\0"      \
208         "scriptaddr=0x20000\0"  \
209         "script_offser_nor=0xE2FC0000\0"        \
210         "script_offset_f=0xFC0000\0"    \
211         "script_size_f=0x40000\0"       \
212         "loadbootenv_addr=0x2000000\0" \
213         "fdt_addr_r=0x1f00000\0"        \
214         "pxefile_addr_r=0x2000000\0"    \
215         "kernel_addr_r=0x2000000\0"     \
216         "scriptaddr=0x3000000\0"        \
217         "ramdisk_addr_r=0x3100000\0"    \
218         "bootenv=uEnv.txt\0" \
219         "bootenv_dev=mmc\0" \
220         "loadbootenv=load ${bootenv_dev} 0 ${loadbootenv_addr} ${bootenv}\0" \
221         "importbootenv=echo Importing environment from ${bootenv_dev} ...; " \
222                 "env import -t ${loadbootenv_addr} $filesize\0" \
223         "bootenv_existence_test=test -e ${bootenv_dev} 0 /${bootenv}\0" \
224         "setbootenv=if env run bootenv_existence_test; then " \
225                         "if env run loadbootenv; then " \
226                                 "env run importbootenv; " \
227                         "fi; " \
228                 "fi; \0" \
229         "sd_loadbootenv=setenv bootenv_dev mmc && " \
230                         "run setbootenv \0" \
231         "usb_loadbootenv=setenv bootenv_dev usb && usb start && run setbootenv \0" \
232         "preboot=if test $modeboot = sdboot; then " \
233                         "run sd_loadbootenv; " \
234                         "echo Checking if uenvcmd is set ...; " \
235                         "if test -n $uenvcmd; then " \
236                                 "echo Running uenvcmd ...; " \
237                                 "run uenvcmd; " \
238                         "fi; " \
239                 "fi; \0" \
240         "norboot=echo Copying FIT from NOR flash to RAM... && " \
241                 "cp.b ${nor_flash_off} ${load_addr} ${fit_size} && " \
242                 "bootm ${load_addr}\0" \
243         "sdboot=echo Copying FIT from SD to RAM... && " \
244                 "load mmc 0 ${load_addr} ${fit_image} && " \
245                 "bootm ${load_addr}\0" \
246         "jtagboot=echo TFTPing FIT to RAM... && " \
247                 "tftpboot ${load_addr} ${fit_image} && " \
248                 "bootm ${load_addr}\0" \
249         "usbboot=if usb start; then " \
250                         "echo Copying FIT from USB to RAM... && " \
251                         "load usb 0 ${load_addr} ${fit_image} && " \
252                         "bootm ${load_addr}; fi\0" \
253                 DFU_ALT_INFO \
254                 BOOTENV
255 #endif
256
257 /* Miscellaneous configurable options */
258
259 #define CONFIG_CLOCKS
260 #define CONFIG_SYS_MAXARGS              32 /* max number of command args */
261
262 #define CONFIG_SYS_MEMTEST_START        0
263 #define CONFIG_SYS_MEMTEST_END          0x1000
264
265 #define CONFIG_SYS_INIT_RAM_ADDR        0xFFFF0000
266 #define CONFIG_SYS_INIT_RAM_SIZE        0x1000
267 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
268                                         CONFIG_SYS_INIT_RAM_SIZE - \
269                                         GENERATED_GBL_DATA_SIZE)
270
271
272 /* Extend size of kernel image for uncompression */
273 #define CONFIG_SYS_BOOTM_LEN    (60 * 1024 * 1024)
274
275 /* Boot FreeBSD/vxWorks from an ELF image */
276 #define CONFIG_SYS_MMC_MAX_DEVICE       1
277
278 /* MMC support */
279 #ifdef CONFIG_MMC_SDHCI_ZYNQ
280 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION     1
281 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME     "u-boot.img"
282 #endif
283
284 /* Address in RAM where the parameters must be copied by SPL. */
285 #define CONFIG_SYS_SPL_ARGS_ADDR        0x10000000
286
287 #define CONFIG_SPL_FS_LOAD_ARGS_NAME            "system.dtb"
288 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME          "uImage"
289
290 /* Not using MMC raw mode - just for compilation purpose */
291 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR   0
292 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS  0
293 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0
294
295 /* qspi mode is working fine */
296 #ifdef CONFIG_ZYNQ_QSPI
297 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x100000
298 #define CONFIG_SYS_SPI_ARGS_OFFS        0x200000
299 #define CONFIG_SYS_SPI_ARGS_SIZE        0x80000
300 #define CONFIG_SYS_SPI_KERNEL_OFFS      (CONFIG_SYS_SPI_ARGS_OFFS + \
301                                         CONFIG_SYS_SPI_ARGS_SIZE)
302 #endif
303
304 /* SP location before relocation, must use scratch RAM */
305
306 /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */
307 #define CONFIG_SPL_MAX_SIZE     0x30000
308
309 /* On the top of OCM space */
310 #define CONFIG_SYS_SPL_MALLOC_START     CONFIG_SPL_STACK_R_ADDR
311 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x2000000
312
313 /*
314  * SPL stack position - and stack goes down
315  * 0xfffffe00 is used for putting wfi loop.
316  * Set it up as limit for now.
317  */
318 #define CONFIG_SPL_STACK        0xfffffe00
319
320 /* BSS setup */
321 #define CONFIG_SPL_BSS_START_ADDR       0x100000
322 #define CONFIG_SPL_BSS_MAX_SIZE         0x100000
323
324 #define CONFIG_SPL_LOAD_FIT_ADDRESS 0x10000000
325
326 #define CONFIG_SYS_UBOOT_START  CONFIG_SYS_TEXT_BASE
327
328 #endif /* __CONFIG_ZYNQ_COMMON_H */