xref: /rk3399_rockchip-uboot/include/configs/zynq-common.h (revision 85fc970d74d09f33fcdcc649e73c5dc4f5334605)
1 /*
2  * (C) Copyright 2012 Michal Simek <monstr@monstr.eu>
3  * (C) Copyright 2013 Xilinx, Inc.
4  *
5  * Common configuration options for all Zynq boards.
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef __CONFIG_ZYNQ_COMMON_H
11 #define __CONFIG_ZYNQ_COMMON_H
12 
13 /* CPU clock */
14 #ifndef CONFIG_CPU_FREQ_HZ
15 # define CONFIG_CPU_FREQ_HZ	800000000
16 #endif
17 
18 /* Cache options */
19 #define CONFIG_SYS_L2CACHE_OFF
20 #ifndef CONFIG_SYS_L2CACHE_OFF
21 # define CONFIG_SYS_L2_PL310
22 # define CONFIG_SYS_PL310_BASE		0xf8f02000
23 #endif
24 
25 #define ZYNQ_SCUTIMER_BASEADDR		0xF8F00600
26 #define CONFIG_SYS_TIMERBASE		ZYNQ_SCUTIMER_BASEADDR
27 #define CONFIG_SYS_TIMER_COUNTS_DOWN
28 #define CONFIG_SYS_TIMER_COUNTER	(CONFIG_SYS_TIMERBASE + 0x4)
29 
30 /* Serial drivers */
31 /* The following table includes the supported baudrates */
32 #define CONFIG_SYS_BAUDRATE_TABLE  \
33 	{300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
34 
35 #define CONFIG_ARM_DCC
36 #define CONFIG_ZYNQ_SERIAL
37 
38 /* Ethernet driver */
39 #if defined(CONFIG_ZYNQ_GEM)
40 # define CONFIG_MII
41 # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
42 # define CONFIG_PHY_MARVELL
43 # define CONFIG_PHY_REALTEK
44 # define CONFIG_PHY_XILINX
45 # define CONFIG_BOOTP_BOOTPATH
46 # define CONFIG_BOOTP_GATEWAY
47 # define CONFIG_BOOTP_HOSTNAME
48 # define CONFIG_BOOTP_MAY_FAIL
49 #endif
50 
51 /* SPI */
52 #ifdef CONFIG_ZYNQ_SPI
53 #endif
54 
55 /* QSPI */
56 #ifdef CONFIG_ZYNQ_QSPI
57 # define CONFIG_SF_DEFAULT_SPEED	30000000
58 # define CONFIG_SPI_FLASH_ISSI
59 #endif
60 
61 /* NOR */
62 #ifdef CONFIG_MTD_NOR_FLASH
63 # define CONFIG_SYS_FLASH_BASE		0xE2000000
64 # define CONFIG_SYS_FLASH_SIZE		(16 * 1024 * 1024)
65 # define CONFIG_SYS_MAX_FLASH_BANKS	1
66 # define CONFIG_SYS_MAX_FLASH_SECT	512
67 # define CONFIG_SYS_FLASH_ERASE_TOUT	1000
68 # define CONFIG_SYS_FLASH_WRITE_TOUT	5000
69 # define CONFIG_FLASH_SHOW_PROGRESS	10
70 # define CONFIG_SYS_FLASH_CFI
71 # undef CONFIG_SYS_FLASH_EMPTY_INFO
72 # define CONFIG_FLASH_CFI_DRIVER
73 # undef CONFIG_SYS_FLASH_PROTECTION
74 # define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
75 #endif
76 
77 #ifdef CONFIG_NAND_ZYNQ
78 #define CONFIG_CMD_NAND_LOCK_UNLOCK
79 #define CONFIG_SYS_MAX_NAND_DEVICE	1
80 #define CONFIG_SYS_NAND_ONFI_DETECTION
81 #define CONFIG_MTD_DEVICE
82 #endif
83 
84 /* MMC */
85 #if defined(CONFIG_MMC_SDHCI_ZYNQ)
86 # define CONFIG_ZYNQ_SDHCI_MAX_FREQ	52000000
87 #endif
88 
89 #ifdef CONFIG_USB_EHCI_ZYNQ
90 # define CONFIG_EHCI_IS_TDI
91 
92 # define CONFIG_SYS_DFU_DATA_BUF_SIZE	0x600000
93 # define DFU_DEFAULT_POLL_TIMEOUT	300
94 # define CONFIG_USB_CABLE_CHECK
95 # define CONFIG_CMD_THOR_DOWNLOAD
96 # define CONFIG_THOR_RESET_OFF
97 # define CONFIG_USB_FUNCTION_THOR
98 # define DFU_ALT_INFO_RAM \
99 	"dfu_ram_info=" \
100 	"set dfu_alt_info " \
101 	"${kernel_image} ram 0x3000000 0x500000\\\\;" \
102 	"${devicetree_image} ram 0x2A00000 0x20000\\\\;" \
103 	"${ramdisk_image} ram 0x2000000 0x600000\0" \
104 	"dfu_ram=run dfu_ram_info && dfu 0 ram 0\0" \
105 	"thor_ram=run dfu_ram_info && thordown 0 ram 0\0"
106 
107 # if defined(CONFIG_MMC_SDHCI_ZYNQ)
108 #  define DFU_ALT_INFO_MMC \
109 	"dfu_mmc_info=" \
110 	"set dfu_alt_info " \
111 	"${kernel_image} fat 0 1\\\\;" \
112 	"${devicetree_image} fat 0 1\\\\;" \
113 	"${ramdisk_image} fat 0 1\0" \
114 	"dfu_mmc=run dfu_mmc_info && dfu 0 mmc 0\0" \
115 	"thor_mmc=run dfu_mmc_info && thordown 0 mmc 0\0"
116 
117 #  define DFU_ALT_INFO	\
118 	DFU_ALT_INFO_RAM \
119 	DFU_ALT_INFO_MMC
120 # else
121 #  define DFU_ALT_INFO	\
122 	DFU_ALT_INFO_RAM
123 # endif
124 #endif
125 
126 #if !defined(DFU_ALT_INFO)
127 # define DFU_ALT_INFO
128 #endif
129 
130 #if defined(CONFIG_MMC_SDHCI_ZYNQ) || defined(CONFIG_ZYNQ_USB)
131 # define CONFIG_SUPPORT_VFAT
132 #endif
133 
134 #if defined(CONFIG_ZYNQ_I2C0) || defined(CONFIG_ZYNQ_I2C1)
135 #define CONFIG_SYS_I2C_ZYNQ
136 #endif
137 
138 /* I2C */
139 #if defined(CONFIG_SYS_I2C_ZYNQ)
140 # define CONFIG_SYS_I2C
141 # define CONFIG_SYS_I2C_ZYNQ_SPEED		100000
142 # define CONFIG_SYS_I2C_ZYNQ_SLAVE		0
143 #endif
144 
145 /* EEPROM */
146 #ifdef CONFIG_ZYNQ_EEPROM
147 # define CONFIG_SYS_I2C_EEPROM_ADDR_LEN		1
148 # define CONFIG_SYS_I2C_EEPROM_ADDR		0x54
149 # define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS	4
150 # define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS	5
151 # define CONFIG_SYS_EEPROM_SIZE			1024 /* Bytes */
152 #endif
153 
154 /* Total Size of Environment Sector */
155 #define CONFIG_ENV_SIZE			(128 << 10)
156 
157 /* Allow to overwrite serial and ethaddr */
158 #define CONFIG_ENV_OVERWRITE
159 
160 /* Environment */
161 #ifndef CONFIG_ENV_IS_NOWHERE
162 # ifdef CONFIG_MTD_NOR_FLASH
163 /* Environment in NOR flash */
164 # elif defined(CONFIG_ZYNQ_QSPI)
165 /* Environment in Serial Flash */
166 #  define CONFIG_ENV_IS_IN_SPI_FLASH
167 # endif
168 
169 # define CONFIG_ENV_SECT_SIZE		CONFIG_ENV_SIZE
170 # define CONFIG_ENV_OFFSET		0xE0000
171 #endif
172 
173 /* enable preboot to be loaded before CONFIG_BOOTDELAY */
174 #define CONFIG_PREBOOT
175 
176 /* Default environment */
177 #ifndef CONFIG_EXTRA_ENV_SETTINGS
178 #define CONFIG_EXTRA_ENV_SETTINGS	\
179 	"fit_image=fit.itb\0"		\
180 	"load_addr=0x2000000\0"		\
181 	"fit_size=0x800000\0"		\
182 	"flash_off=0x100000\0"		\
183 	"nor_flash_off=0xE2100000\0"	\
184 	"fdt_high=0x20000000\0"		\
185 	"initrd_high=0x20000000\0"	\
186 	"loadbootenv_addr=0x2000000\0" \
187 	"bootenv=uEnv.txt\0" \
188 	"bootenv_dev=mmc\0" \
189 	"loadbootenv=load ${bootenv_dev} 0 ${loadbootenv_addr} ${bootenv}\0" \
190 	"importbootenv=echo Importing environment from ${bootenv_dev} ...; " \
191 		"env import -t ${loadbootenv_addr} $filesize\0" \
192 	"bootenv_existence_test=test -e ${bootenv_dev} 0 /${bootenv}\0" \
193 	"setbootenv=if env run bootenv_existence_test; then " \
194 			"if env run loadbootenv; then " \
195 				"env run importbootenv; " \
196 			"fi; " \
197 		"fi; \0" \
198 	"sd_loadbootenv=set bootenv_dev mmc && " \
199 			"run setbootenv \0" \
200 	"usb_loadbootenv=set bootenv_dev usb && usb start && run setbootenv \0" \
201 	"preboot=if test $modeboot = sdboot; then " \
202 			"run sd_loadbootenv; " \
203 			"echo Checking if uenvcmd is set ...; " \
204 			"if test -n $uenvcmd; then " \
205 				"echo Running uenvcmd ...; " \
206 				"run uenvcmd; " \
207 			"fi; " \
208 		"fi; \0" \
209 	"norboot=echo Copying FIT from NOR flash to RAM... && " \
210 		"cp.b ${nor_flash_off} ${load_addr} ${fit_size} && " \
211 		"bootm ${load_addr}\0" \
212 	"sdboot=echo Copying FIT from SD to RAM... && " \
213 		"load mmc 0 ${load_addr} ${fit_image} && " \
214 		"bootm ${load_addr}\0" \
215 	"jtagboot=echo TFTPing FIT to RAM... && " \
216 		"tftpboot ${load_addr} ${fit_image} && " \
217 		"bootm ${load_addr}\0" \
218 	"usbboot=if usb start; then " \
219 			"echo Copying FIT from USB to RAM... && " \
220 			"load usb 0 ${load_addr} ${fit_image} && " \
221 			"bootm ${load_addr}; fi\0" \
222 		DFU_ALT_INFO
223 #endif
224 
225 #define CONFIG_BOOTCOMMAND		"run $modeboot"
226 #define CONFIG_SYS_LOAD_ADDR		0 /* default? */
227 
228 /* Miscellaneous configurable options */
229 
230 #define CONFIG_CMDLINE_EDITING
231 #define CONFIG_AUTO_COMPLETE
232 #define CONFIG_SYS_LONGHELP
233 #define CONFIG_CLOCKS
234 #define CONFIG_SYS_MAXARGS		32 /* max number of command args */
235 #define CONFIG_SYS_CBSIZE		256 /* Console I/O Buffer Size */
236 #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + \
237 					sizeof(CONFIG_SYS_PROMPT) + 16)
238 
239 #ifndef CONFIG_NR_DRAM_BANKS
240 # define CONFIG_NR_DRAM_BANKS		1
241 #endif
242 
243 #define CONFIG_SYS_MEMTEST_START	0
244 #define CONFIG_SYS_MEMTEST_END		0x1000
245 
246 #define CONFIG_SYS_MALLOC_LEN		0x1400000
247 
248 #define CONFIG_SYS_INIT_RAM_ADDR	0xFFFF0000
249 #define CONFIG_SYS_INIT_RAM_SIZE	0x1000
250 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_INIT_RAM_ADDR + \
251 					CONFIG_SYS_INIT_RAM_SIZE - \
252 					GENERATED_GBL_DATA_SIZE)
253 
254 /* Enable the PL to be downloaded */
255 #define CONFIG_FPGA
256 #define CONFIG_FPGA_XILINX
257 #define CONFIG_FPGA_ZYNQPL
258 
259 /* FIT support */
260 #define CONFIG_IMAGE_FORMAT_LEGACY /* enable also legacy image format */
261 
262 /* FDT support */
263 #define CONFIG_DISPLAY_BOARDINFO_LATE
264 
265 /* Extend size of kernel image for uncompression */
266 #define CONFIG_SYS_BOOTM_LEN	(60 * 1024 * 1024)
267 
268 /* Boot FreeBSD/vxWorks from an ELF image */
269 #define CONFIG_SYS_MMC_MAX_DEVICE	1
270 
271 #define CONFIG_SYS_LDSCRIPT  "arch/arm/mach-zynq/u-boot.lds"
272 
273 /* Commands */
274 
275 /* SPL part */
276 #define CONFIG_CMD_SPL
277 #define CONFIG_SPL_FRAMEWORK
278 
279 #define CONFIG_SPL_LDSCRIPT	"arch/arm/mach-zynq/u-boot-spl.lds"
280 
281 /* MMC support */
282 #ifdef CONFIG_MMC_SDHCI_ZYNQ
283 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION     1
284 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME     "u-boot.img"
285 #endif
286 
287 /* Disable dcache for SPL just for sure */
288 #ifdef CONFIG_SPL_BUILD
289 #define CONFIG_SYS_DCACHE_OFF
290 #undef CONFIG_FPGA
291 #endif
292 
293 /* Address in RAM where the parameters must be copied by SPL. */
294 #define CONFIG_SYS_SPL_ARGS_ADDR	0x10000000
295 
296 #define CONFIG_SPL_FS_LOAD_ARGS_NAME		"system.dtb"
297 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME		"uImage"
298 
299 /* Not using MMC raw mode - just for compilation purpose */
300 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR	0
301 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS	0
302 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR	0
303 
304 /* qspi mode is working fine */
305 #ifdef CONFIG_ZYNQ_QSPI
306 #define CONFIG_SPL_SPI_LOAD
307 #define CONFIG_SYS_SPI_U_BOOT_OFFS	0x100000
308 #define CONFIG_SYS_SPI_ARGS_OFFS	0x200000
309 #define CONFIG_SYS_SPI_ARGS_SIZE	0x80000
310 #define CONFIG_SYS_SPI_KERNEL_OFFS	(CONFIG_SYS_SPI_ARGS_OFFS + \
311 					CONFIG_SYS_SPI_ARGS_SIZE)
312 #endif
313 
314 /* for booting directly linux */
315 
316 /* SP location before relocation, must use scratch RAM */
317 #define CONFIG_SPL_TEXT_BASE	0x0
318 
319 /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */
320 #define CONFIG_SPL_MAX_SIZE	0x30000
321 
322 /* The highest 64k OCM address */
323 #define OCM_HIGH_ADDR	0xffff0000
324 
325 /* On the top of OCM space */
326 #define CONFIG_SYS_SPL_MALLOC_START	OCM_HIGH_ADDR
327 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x2000
328 
329 /*
330  * SPL stack position - and stack goes down
331  * 0xfffffe00 is used for putting wfi loop.
332  * Set it up as limit for now.
333  */
334 #define CONFIG_SPL_STACK	0xfffffe00
335 
336 /* BSS setup */
337 #define CONFIG_SPL_BSS_START_ADDR	0x100000
338 #define CONFIG_SPL_BSS_MAX_SIZE		0x100000
339 
340 #define CONFIG_SYS_UBOOT_START	CONFIG_SYS_TEXT_BASE
341 
342 #endif /* __CONFIG_ZYNQ_COMMON_H */
343