]> git.sur5r.net Git - u-boot/blob - include/configs/zynq-common.h
arm: zynq: Move bootcommand to defconfig
[u-boot] / include / configs / zynq-common.h
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
37 /* Ethernet driver */
38 #if defined(CONFIG_ZYNQ_GEM)
39 # define CONFIG_MII
40 # define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
41 # define CONFIG_PHY_MARVELL
42 # define CONFIG_PHY_REALTEK
43 # define CONFIG_PHY_XILINX
44 # define CONFIG_BOOTP_BOOTPATH
45 # define CONFIG_BOOTP_GATEWAY
46 # define CONFIG_BOOTP_HOSTNAME
47 # define CONFIG_BOOTP_MAY_FAIL
48 #endif
49
50 /* SPI */
51 #ifdef CONFIG_ZYNQ_SPI
52 #endif
53
54 /* QSPI */
55 #ifdef CONFIG_ZYNQ_QSPI
56 # define CONFIG_SF_DEFAULT_SPEED        30000000
57 # define CONFIG_SPI_FLASH_ISSI
58 #endif
59
60 /* NOR */
61 #ifdef CONFIG_MTD_NOR_FLASH
62 # define CONFIG_SYS_FLASH_BASE          0xE2000000
63 # define CONFIG_SYS_FLASH_SIZE          (16 * 1024 * 1024)
64 # define CONFIG_SYS_MAX_FLASH_BANKS     1
65 # define CONFIG_SYS_MAX_FLASH_SECT      512
66 # define CONFIG_SYS_FLASH_ERASE_TOUT    1000
67 # define CONFIG_SYS_FLASH_WRITE_TOUT    5000
68 # define CONFIG_FLASH_SHOW_PROGRESS     10
69 # define CONFIG_SYS_FLASH_CFI
70 # undef CONFIG_SYS_FLASH_EMPTY_INFO
71 # define CONFIG_FLASH_CFI_DRIVER
72 # undef CONFIG_SYS_FLASH_PROTECTION
73 # define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
74 #endif
75
76 #ifdef CONFIG_NAND_ZYNQ
77 #define CONFIG_SYS_MAX_NAND_DEVICE      1
78 #define CONFIG_SYS_NAND_ONFI_DETECTION
79 #define CONFIG_MTD_DEVICE
80 #endif
81
82 /* MMC */
83 #if defined(CONFIG_MMC_SDHCI_ZYNQ)
84 # define CONFIG_ZYNQ_SDHCI_MAX_FREQ     52000000
85 #endif
86
87 #ifdef CONFIG_USB_EHCI_ZYNQ
88 # define CONFIG_EHCI_IS_TDI
89
90 # define CONFIG_SYS_DFU_DATA_BUF_SIZE   0x600000
91 # define DFU_DEFAULT_POLL_TIMEOUT       300
92 # define CONFIG_USB_CABLE_CHECK
93 # define CONFIG_THOR_RESET_OFF
94 # define CONFIG_USB_FUNCTION_THOR
95 # define DFU_ALT_INFO_RAM \
96         "dfu_ram_info=" \
97         "set dfu_alt_info " \
98         "${kernel_image} ram 0x3000000 0x500000\\\\;" \
99         "${devicetree_image} ram 0x2A00000 0x20000\\\\;" \
100         "${ramdisk_image} ram 0x2000000 0x600000\0" \
101         "dfu_ram=run dfu_ram_info && dfu 0 ram 0\0" \
102         "thor_ram=run dfu_ram_info && thordown 0 ram 0\0"
103
104 # if defined(CONFIG_MMC_SDHCI_ZYNQ)
105 #  define DFU_ALT_INFO_MMC \
106         "dfu_mmc_info=" \
107         "set dfu_alt_info " \
108         "${kernel_image} fat 0 1\\\\;" \
109         "${devicetree_image} fat 0 1\\\\;" \
110         "${ramdisk_image} fat 0 1\0" \
111         "dfu_mmc=run dfu_mmc_info && dfu 0 mmc 0\0" \
112         "thor_mmc=run dfu_mmc_info && thordown 0 mmc 0\0"
113
114 #  define DFU_ALT_INFO  \
115         DFU_ALT_INFO_RAM \
116         DFU_ALT_INFO_MMC
117 # else
118 #  define DFU_ALT_INFO  \
119         DFU_ALT_INFO_RAM
120 # endif
121 #endif
122
123 #if !defined(DFU_ALT_INFO)
124 # define DFU_ALT_INFO
125 #endif
126
127 #if defined(CONFIG_MMC_SDHCI_ZYNQ) || defined(CONFIG_ZYNQ_USB)
128 # define CONFIG_SUPPORT_VFAT
129 #endif
130
131 #if defined(CONFIG_ZYNQ_I2C0) || defined(CONFIG_ZYNQ_I2C1)
132 #define CONFIG_SYS_I2C_ZYNQ
133 #endif
134
135 /* I2C */
136 #if defined(CONFIG_SYS_I2C_ZYNQ)
137 # define CONFIG_SYS_I2C
138 # define CONFIG_SYS_I2C_ZYNQ_SPEED              100000
139 # define CONFIG_SYS_I2C_ZYNQ_SLAVE              0
140 #endif
141
142 /* EEPROM */
143 #ifdef CONFIG_ZYNQ_EEPROM
144 # define CONFIG_SYS_I2C_EEPROM_ADDR_LEN         1
145 # define CONFIG_SYS_I2C_EEPROM_ADDR             0x54
146 # define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS      4
147 # define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS  5
148 # define CONFIG_SYS_EEPROM_SIZE                 1024 /* Bytes */
149 #endif
150
151 /* Total Size of Environment Sector */
152 #define CONFIG_ENV_SIZE                 (128 << 10)
153
154 /* Allow to overwrite serial and ethaddr */
155 #define CONFIG_ENV_OVERWRITE
156
157 /* Environment */
158 #ifndef CONFIG_ENV_IS_NOWHERE
159 # define CONFIG_ENV_SECT_SIZE           CONFIG_ENV_SIZE
160 # define CONFIG_ENV_OFFSET              0xE0000
161 #endif
162
163 /* enable preboot to be loaded before CONFIG_BOOTDELAY */
164 #define CONFIG_PREBOOT
165
166 /* Boot configuration */
167 #define CONFIG_SYS_LOAD_ADDR            0 /* default? */
168
169 /* Distro boot enablement */
170
171 #ifdef CONFIG_SPL_BUILD
172 #define BOOTENV
173 #else
174 #include <config_distro_defaults.h>
175
176 #ifdef CONFIG_CMD_MMC
177 #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
178 #else
179 #define BOOT_TARGET_DEVICES_MMC(func)
180 #endif
181
182 #ifdef CONFIG_CMD_USB
183 #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
184 #else
185 #define BOOT_TARGET_DEVICES_USB(func)
186 #endif
187
188 #if defined(CONFIG_CMD_PXE)
189 #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
190 #else
191 #define BOOT_TARGET_DEVICES_PXE(func)
192 #endif
193
194 #if defined(CONFIG_CMD_DHCP)
195 #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
196 #else
197 #define BOOT_TARGET_DEVICES_DHCP(func)
198 #endif
199
200 #define BOOT_TARGET_DEVICES(func) \
201         BOOT_TARGET_DEVICES_MMC(func) \
202         BOOT_TARGET_DEVICES_USB(func) \
203         BOOT_TARGET_DEVICES_PXE(func) \
204         BOOT_TARGET_DEVICES_DHCP(func)
205
206 #include <config_distro_bootcmd.h>
207 #endif /* CONFIG_SPL_BUILD */
208
209 /* Default environment */
210 #ifndef CONFIG_EXTRA_ENV_SETTINGS
211 #define CONFIG_EXTRA_ENV_SETTINGS       \
212         "fit_image=fit.itb\0"           \
213         "load_addr=0x2000000\0"         \
214         "fit_size=0x800000\0"           \
215         "flash_off=0x100000\0"          \
216         "nor_flash_off=0xE2100000\0"    \
217         "fdt_high=0x20000000\0"         \
218         "initrd_high=0x20000000\0"      \
219         "loadbootenv_addr=0x2000000\0" \
220         "fdt_addr_r=0x1f00000\0"        \
221         "pxefile_addr_r=0x2000000\0"    \
222         "kernel_addr_r=0x2000000\0"     \
223         "scriptaddr=0x3000000\0"        \
224         "ramdisk_addr_r=0x3100000\0"    \
225         "bootenv=uEnv.txt\0" \
226         "bootenv_dev=mmc\0" \
227         "loadbootenv=load ${bootenv_dev} 0 ${loadbootenv_addr} ${bootenv}\0" \
228         "importbootenv=echo Importing environment from ${bootenv_dev} ...; " \
229                 "env import -t ${loadbootenv_addr} $filesize\0" \
230         "bootenv_existence_test=test -e ${bootenv_dev} 0 /${bootenv}\0" \
231         "setbootenv=if env run bootenv_existence_test; then " \
232                         "if env run loadbootenv; then " \
233                                 "env run importbootenv; " \
234                         "fi; " \
235                 "fi; \0" \
236         "sd_loadbootenv=set bootenv_dev mmc && " \
237                         "run setbootenv \0" \
238         "usb_loadbootenv=set bootenv_dev usb && usb start && run setbootenv \0" \
239         "preboot=if test $modeboot = sdboot; then " \
240                         "run sd_loadbootenv; " \
241                         "echo Checking if uenvcmd is set ...; " \
242                         "if test -n $uenvcmd; then " \
243                                 "echo Running uenvcmd ...; " \
244                                 "run uenvcmd; " \
245                         "fi; " \
246                 "fi; \0" \
247         "norboot=echo Copying FIT from NOR flash to RAM... && " \
248                 "cp.b ${nor_flash_off} ${load_addr} ${fit_size} && " \
249                 "bootm ${load_addr}\0" \
250         "sdboot=echo Copying FIT from SD to RAM... && " \
251                 "load mmc 0 ${load_addr} ${fit_image} && " \
252                 "bootm ${load_addr}\0" \
253         "jtagboot=echo TFTPing FIT to RAM... && " \
254                 "tftpboot ${load_addr} ${fit_image} && " \
255                 "bootm ${load_addr}\0" \
256         "usbboot=if usb start; then " \
257                         "echo Copying FIT from USB to RAM... && " \
258                         "load usb 0 ${load_addr} ${fit_image} && " \
259                         "bootm ${load_addr}; fi\0" \
260                 DFU_ALT_INFO \
261                 BOOTENV
262 #endif
263
264 /* Miscellaneous configurable options */
265
266 #define CONFIG_CMDLINE_EDITING
267 #define CONFIG_AUTO_COMPLETE
268 #define CONFIG_SYS_LONGHELP
269 #define CONFIG_CLOCKS
270 #define CONFIG_SYS_MAXARGS              32 /* max number of command args */
271
272 #ifndef CONFIG_NR_DRAM_BANKS
273 # define CONFIG_NR_DRAM_BANKS           1
274 #endif
275
276 #define CONFIG_SYS_MEMTEST_START        0
277 #define CONFIG_SYS_MEMTEST_END          0x1000
278
279 #define CONFIG_SYS_MALLOC_LEN           0x1400000
280
281 #define CONFIG_SYS_INIT_RAM_ADDR        0xFFFF0000
282 #define CONFIG_SYS_INIT_RAM_SIZE        0x1000
283 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
284                                         CONFIG_SYS_INIT_RAM_SIZE - \
285                                         GENERATED_GBL_DATA_SIZE)
286
287 /* Enable the PL to be downloaded */
288 #define CONFIG_FPGA_ZYNQPL
289
290 /* FIT support */
291 #define CONFIG_IMAGE_FORMAT_LEGACY /* enable also legacy image format */
292
293 /* Extend size of kernel image for uncompression */
294 #define CONFIG_SYS_BOOTM_LEN    (60 * 1024 * 1024)
295
296 /* Boot FreeBSD/vxWorks from an ELF image */
297 #define CONFIG_SYS_MMC_MAX_DEVICE       1
298
299 #define CONFIG_SYS_LDSCRIPT  "arch/arm/mach-zynq/u-boot.lds"
300
301 /* Commands */
302
303 /* SPL part */
304 #define CONFIG_SPL_FRAMEWORK
305
306 /* MMC support */
307 #ifdef CONFIG_MMC_SDHCI_ZYNQ
308 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION     1
309 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME     "u-boot.img"
310 #endif
311
312 /* Disable dcache for SPL just for sure */
313 #ifdef CONFIG_SPL_BUILD
314 #define CONFIG_SYS_DCACHE_OFF
315 #endif
316
317 /* Address in RAM where the parameters must be copied by SPL. */
318 #define CONFIG_SYS_SPL_ARGS_ADDR        0x10000000
319
320 #define CONFIG_SPL_FS_LOAD_ARGS_NAME            "system.dtb"
321 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME          "uImage"
322
323 /* Not using MMC raw mode - just for compilation purpose */
324 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR   0
325 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS  0
326 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0
327
328 /* qspi mode is working fine */
329 #ifdef CONFIG_ZYNQ_QSPI
330 #define CONFIG_SPL_SPI_LOAD
331 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x100000
332 #define CONFIG_SYS_SPI_ARGS_OFFS        0x200000
333 #define CONFIG_SYS_SPI_ARGS_SIZE        0x80000
334 #define CONFIG_SYS_SPI_KERNEL_OFFS      (CONFIG_SYS_SPI_ARGS_OFFS + \
335                                         CONFIG_SYS_SPI_ARGS_SIZE)
336 #endif
337
338 /* for booting directly linux */
339
340 /* SP location before relocation, must use scratch RAM */
341 #define CONFIG_SPL_TEXT_BASE    0x0
342
343 /* 3 * 64kB blocks of OCM - one is on the top because of bootrom */
344 #define CONFIG_SPL_MAX_SIZE     0x30000
345
346 /* On the top of OCM space */
347 #define CONFIG_SYS_SPL_MALLOC_START     CONFIG_SPL_STACK_R_ADDR
348 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x2000000
349
350 /*
351  * SPL stack position - and stack goes down
352  * 0xfffffe00 is used for putting wfi loop.
353  * Set it up as limit for now.
354  */
355 #define CONFIG_SPL_STACK        0xfffffe00
356
357 /* BSS setup */
358 #define CONFIG_SPL_BSS_START_ADDR       0x100000
359 #define CONFIG_SPL_BSS_MAX_SIZE         0x100000
360
361 #define CONFIG_SYS_UBOOT_START  CONFIG_SYS_TEXT_BASE
362
363 #endif /* __CONFIG_ZYNQ_COMMON_H */