xref: /rk3399_rockchip-uboot/include/configs/gw_ventana.h (revision d6b9bd892338357ba8cca41cc971eccccf5dcf4d)
1 /*
2  * Copyright (C) 2013 Gateworks Corporation
3  *
4  * SPDX-License-Identifier: GPL-2.0+
5  */
6 
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9 
10 /* SPL */
11 #define CONFIG_SPL_BOARD_INIT
12 #define CONFIG_SPL_POWER_SUPPORT
13 /* Location in NAND to read U-Boot from */
14 #define CONFIG_SYS_NAND_U_BOOT_OFFS     (14 * SZ_1M)
15 
16 /* Falcon Mode */
17 #define CONFIG_CMD_SPL
18 #define CONFIG_SPL_OS_BOOT
19 #define CONFIG_SYS_SPL_ARGS_ADDR	0x18000000
20 #define CONFIG_CMD_SPL_WRITE_SIZE	(128 * SZ_1K)
21 
22 /* Falcon Mode - NAND support: args@17MB kernel@18MB */
23 #define CONFIG_CMD_SPL_NAND_OFS		(17 * SZ_1M)
24 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS	(18 * SZ_1M)
25 
26 /* Falcon Mode - MMC support: args@1MB kernel@2MB */
27 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR	0x800	/* 1MB */
28 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS	(CONFIG_CMD_SPL_WRITE_SIZE / 512)
29 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR	0x1000	/* 2MB */
30 
31 #include "imx6_spl.h"                  /* common IMX6 SPL configuration */
32 #include "mx6_common.h"
33 #undef CONFIG_DISPLAY_BOARDINFO
34 #define CONFIG_DISPLAY_BOARDINFO_LATE
35 
36 #define CONFIG_MACH_TYPE	4520   /* Gateworks Ventana Platform */
37 
38 /* Serial ATAG */
39 #define CONFIG_SERIAL_TAG
40 
41 /* Size of malloc() pool */
42 #define CONFIG_SYS_MALLOC_LEN		(10 * SZ_1M)
43 
44 /* Init Functions */
45 #define CONFIG_BOARD_EARLY_INIT_F
46 #define CONFIG_MISC_INIT_R
47 
48 /* Driver Model */
49 #ifndef CONFIG_SPL_BUILD
50 #define CONFIG_DM_GPIO
51 #define CONFIG_DM_THERMAL
52 #endif
53 
54 /* Thermal */
55 #define CONFIG_IMX_THERMAL
56 
57 /* Serial */
58 #define CONFIG_MXC_UART
59 #define CONFIG_MXC_UART_BASE	       UART2_BASE
60 
61 #ifdef CONFIG_SPI_FLASH
62 
63 /* SPI */
64 #ifdef CONFIG_CMD_SF
65   #define CONFIG_MXC_SPI
66   #define CONFIG_SPI_FLASH_MTD
67   #define CONFIG_SPI_FLASH_BAR
68   #define CONFIG_SF_DEFAULT_BUS              0
69   #define CONFIG_SF_DEFAULT_CS               0
70 					     /* GPIO 3-19 (21248) */
71   #define CONFIG_SF_DEFAULT_SPEED            30000000
72   #define CONFIG_SF_DEFAULT_MODE             (SPI_MODE_0)
73 #endif
74 
75 #else
76 /* Enable NAND support */
77 #define CONFIG_CMD_NAND
78 #define CONFIG_CMD_NAND_TRIMFFS
79 #ifdef CONFIG_CMD_NAND
80   #define CONFIG_NAND_MXS
81   #define CONFIG_SYS_MAX_NAND_DEVICE	1
82   #define CONFIG_SYS_NAND_BASE		0x40000000
83   #define CONFIG_SYS_NAND_5_ADDR_CYCLE
84   #define CONFIG_SYS_NAND_ONFI_DETECTION
85 
86   /* DMA stuff, needed for GPMI/MXS NAND support */
87   #define CONFIG_APBH_DMA
88   #define CONFIG_APBH_DMA_BURST
89   #define CONFIG_APBH_DMA_BURST8
90 #endif
91 
92 #endif /* CONFIG_SPI_FLASH */
93 
94 /* I2C Configs */
95 #define CONFIG_SYS_I2C
96 #define CONFIG_SYS_I2C_MXC
97 #define CONFIG_SYS_I2C_MXC_I2C1		/* enable I2C bus 1 */
98 #define CONFIG_SYS_I2C_MXC_I2C2		/* enable I2C bus 2 */
99 #define CONFIG_SYS_I2C_MXC_I2C3		/* enable I2C bus 3 */
100 #define CONFIG_SYS_I2C_SPEED		100000
101 #define CONFIG_I2C_GSC			0
102 #define CONFIG_I2C_PMIC			1
103 #define CONFIG_I2C_EDID
104 
105 /* MMC Configs */
106 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
107 #define CONFIG_SYS_FSL_USDHC_NUM       1
108 
109 /* Filesystem support */
110 #define CONFIG_CMD_UBIFS
111 
112 /*
113  * SATA Configs
114  */
115 #define CONFIG_CMD_SATA
116 #ifdef CONFIG_CMD_SATA
117   #define CONFIG_DWC_AHSATA
118   #define CONFIG_SYS_SATA_MAX_DEVICE	1
119   #define CONFIG_DWC_AHSATA_PORT_ID	0
120   #define CONFIG_DWC_AHSATA_BASE_ADDR	SATA_ARB_BASE_ADDR
121   #define CONFIG_LBA48
122   #define CONFIG_LIBATA
123 #endif
124 
125 /*
126  * PCI express
127  */
128 #define CONFIG_CMD_PCI
129 #ifdef CONFIG_CMD_PCI
130 #define CONFIG_PCI
131 #define CONFIG_PCI_PNP
132 #define CONFIG_PCI_SCAN_SHOW
133 #define CONFIG_PCI_FIXUP_DEV
134 #define CONFIG_PCIE_IMX
135 #endif
136 
137 /*
138  * PMIC
139  */
140 #define CONFIG_POWER
141 #define CONFIG_POWER_I2C
142 #define CONFIG_POWER_PFUZE100
143 #define CONFIG_POWER_PFUZE100_I2C_ADDR	0x08
144 #define CONFIG_POWER_LTC3676
145 #define CONFIG_POWER_LTC3676_I2C_ADDR  0x3c
146 
147 /* Various command support */
148 #define CONFIG_CMD_BMODE         /* set eFUSE shadow for a boot dev and reset */
149 #define CONFIG_CMD_HDMIDETECT    /* detect HDMI output device */
150 #define CONFIG_CMD_GSC
151 #define CONFIG_CMD_EECONFIG      /* Gateworks EEPROM config cmd */
152 #define CONFIG_CMD_UBI
153 #define CONFIG_RBTREE
154 
155 /* Ethernet support */
156 #define CONFIG_FEC_MXC
157 #define CONFIG_MII
158 #define IMX_FEC_BASE             ENET_BASE_ADDR
159 #define CONFIG_FEC_XCV_TYPE      RGMII
160 #define CONFIG_FEC_MXC_PHYADDR   0
161 #define CONFIG_PHYLIB
162 #define CONFIG_ARP_TIMEOUT       200UL
163 
164 /* USB Configs */
165 #define CONFIG_USB_EHCI
166 #define CONFIG_USB_EHCI_MX6
167 #define CONFIG_USB_HOST_ETHER
168 #define CONFIG_USB_ETHER_ASIX
169 #define CONFIG_USB_ETHER_SMSC95XX
170 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
171 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET  /* For OTG port */
172 #define CONFIG_MXC_USB_PORTSC     (PORT_PTS_UTMI | PORT_PTS_PTW)
173 #define CONFIG_MXC_USB_FLAGS      0
174 #define CONFIG_USB_KEYBOARD
175 #define CONFIG_USBD_HS
176 #define CONFIG_USB_ETHER
177 #define CONFIG_USB_ETH_CDC
178 #define CONFIG_NETCONSOLE
179 #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP
180 
181 /* USB Mass Storage Gadget */
182 #define CONFIG_USB_FUNCTION_MASS_STORAGE
183 
184 /* Framebuffer and LCD */
185 #define CONFIG_VIDEO
186 #define CONFIG_VIDEO_IPUV3
187 #define CONFIG_CFB_CONSOLE
188 #define CONFIG_VGA_AS_SINGLE_DEVICE
189 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
190 #define CONFIG_VIDEO_LOGO
191 #define CONFIG_IPUV3_CLK          260000000
192 #define CONFIG_CMD_HDMIDETECT
193 #define CONFIG_CONSOLE_MUX
194 #define CONFIG_IMX_HDMI
195 #define CONFIG_IMX_VIDEO_SKIP
196 #define CONFIG_VIDEO_BMP_LOGO
197 #define CONFIG_SPLASH_SCREEN_ALIGN
198 #define CONFIG_HIDE_LOGO_VERSION  /* Custom config to hide U-boot version */
199 
200 /* Miscellaneous configurable options */
201 #define CONFIG_HWCONFIG
202 #define CONFIG_PREBOOT
203 
204 /* Print Buffer Size */
205 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
206 
207 /* Memory configuration */
208 #define CONFIG_SYS_MEMTEST_START       0x10000000
209 #define CONFIG_SYS_MEMTEST_END	       0x10010000
210 #define CONFIG_SYS_MEMTEST_SCRATCH     0x10800000
211 
212 /* Physical Memory Map */
213 #define CONFIG_NR_DRAM_BANKS           1
214 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
215 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
216 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
217 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
218 
219 #define CONFIG_SYS_INIT_SP_OFFSET \
220 	(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
221 #define CONFIG_SYS_INIT_SP_ADDR \
222 	(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
223 
224 /*
225  * MTD Command for mtdparts
226  */
227 #define CONFIG_LZO
228 #define CONFIG_CMD_MTDPARTS
229 #define CONFIG_MTD_DEVICE
230 #define CONFIG_MTD_PARTITIONS
231 #ifdef CONFIG_SPI_FLASH
232 #define MTDIDS_DEFAULT    "nor0=nor"
233 #define MTDPARTS_DEFAULT  \
234 	"mtdparts=nor:512k(uboot),64k(env),2m(kernel),-(rootfs)"
235 #else
236 #define MTDIDS_DEFAULT    "nand0=nand"
237 #define MTDPARTS_DEFAULT  "mtdparts=nand:16m(uboot),1m(env),-(rootfs)"
238 #endif
239 
240 /* Persistent Environment Config */
241 #ifdef CONFIG_SPI_FLASH
242 #define CONFIG_ENV_IS_IN_SPI_FLASH
243 #else
244 #define CONFIG_ENV_IS_IN_NAND
245 #endif
246 #if defined(CONFIG_ENV_IS_IN_MMC)
247   #define CONFIG_SYS_MMC_ENV_DEV         0
248   #define CONFIG_ENV_OFFSET              (709 * SZ_1K)
249   #define CONFIG_ENV_SIZE                (128 * SZ_1K)
250   #define CONFIG_ENV_OFFSET_REDUND       (CONFIG_ENV_OFFSET + (128 * SZ_1K))
251 #elif defined(CONFIG_ENV_IS_IN_NAND)
252   #define CONFIG_ENV_OFFSET              (16 * SZ_1M)
253   #define CONFIG_ENV_SECT_SIZE           (128 * SZ_1K)
254   #define CONFIG_ENV_SIZE                CONFIG_ENV_SECT_SIZE
255   #define CONFIG_ENV_OFFSET_REDUND       (CONFIG_ENV_OFFSET + (512 * SZ_1K))
256   #define CONFIG_ENV_SIZE_REDUND         CONFIG_ENV_SIZE
257 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
258   #define CONFIG_ENV_OFFSET		(512 * SZ_1K)
259   #define CONFIG_ENV_SECT_SIZE		(64 * SZ_1K)
260   #define CONFIG_ENV_SIZE		(8 * SZ_1K)
261   #define CONFIG_ENV_SPI_BUS             CONFIG_SF_DEFAULT_BUS
262   #define CONFIG_ENV_SPI_CS              CONFIG_SF_DEFAULT_CS
263   #define CONFIG_ENV_SPI_MODE            CONFIG_SF_DEFAULT_MODE
264   #define CONFIG_ENV_SPI_MAX_HZ          CONFIG_SF_DEFAULT_SPEED
265 #endif
266 
267 /* Environment */
268 #define CONFIG_IPADDR             192.168.1.1
269 #define CONFIG_SERVERIP           192.168.1.146
270 
271 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
272 	"pcidisable=1\0" \
273 	"splashpos=m,m\0" \
274 	"usb_pgood_delay=2000\0" \
275 	"console=ttymxc1\0" \
276 	"bootdevs=usb mmc sata flash\0" \
277 	"hwconfig=_UNKNOWN_\0" \
278 	"video=\0" \
279 	\
280 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
281 	"mtdids=" MTDIDS_DEFAULT "\0" \
282 	"disk=0\0" \
283 	"part=1\0" \
284 	\
285 	"fdt_high=0xffffffff\0" \
286 	"fdt_addr=0x18000000\0" \
287 	"initrd_high=0xffffffff\0" \
288 	"fixfdt=" \
289 		"fdt addr ${fdt_addr}\0" \
290 	"bootdir=boot\0" \
291 	"loadfdt=" \
292 		"if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \
293 			"echo Loaded DTB from ${bootdir}/${fdt_file}; " \
294 			"run fixfdt; " \
295 		"elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \
296 			"echo Loaded DTB from ${bootdir}/${fdt_file1}; " \
297 			"run fixfdt; " \
298 		"elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \
299 			"echo Loaded DTB from ${bootdir}/${fdt_file2}; " \
300 			"run fixfdt; " \
301 		"fi\0" \
302 	\
303 	"fs=ext4\0" \
304 	"script=6x_bootscript-ventana\0" \
305 	"loadscript=" \
306 		"if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \
307 			"source ${loadaddr}; " \
308 		"fi\0" \
309 	\
310 	"uimage=uImage\0" \
311 	"mmc_root=/dev/mmcblk0p1 rootfstype=${fs} rootwait rw\0" \
312 	"mmc_boot=" \
313 		"setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \
314 		"mmc dev ${disk} && mmc rescan && " \
315 		"setenv dtype mmc; run loadscript; " \
316 		"if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
317 			"setenv bootargs console=${console},${baudrate} " \
318 				"root=/dev/mmcblk0p1 rootfstype=${fs} " \
319 				"rootwait rw ${video} ${extra}; " \
320 			"if run loadfdt; then " \
321 				"bootm ${loadaddr} - ${fdt_addr}; " \
322 			"else " \
323 				"bootm; " \
324 			"fi; " \
325 		"fi\0" \
326 	\
327 	"sata_boot=" \
328 		"setenv fsload \"${fs}load sata ${disk}:${part}\"; " \
329 		"sata init && " \
330 		"setenv dtype sata; run loadscript; " \
331 		"if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
332 			"setenv bootargs console=${console},${baudrate} " \
333 				"root=/dev/sda1 rootfstype=${fs} " \
334 				"rootwait rw ${video} ${extra}; " \
335 			"if run loadfdt; then " \
336 				"bootm ${loadaddr} - ${fdt_addr}; " \
337 			"else " \
338 				"bootm; " \
339 			"fi; " \
340 		"fi\0" \
341 	"usb_boot=" \
342 		"setenv fsload \"${fs}load usb ${disk}:${part}\"; " \
343 		"usb start && usb dev ${disk} && " \
344 		"setenv dtype usb; run loadscript; " \
345 		"if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
346 			"setenv bootargs console=${console},${baudrate} " \
347 				"root=/dev/sda1 rootfstype=${fs} " \
348 				"rootwait rw ${video} ${extra}; " \
349 			"if run loadfdt; then " \
350 				"bootm ${loadaddr} - ${fdt_addr}; " \
351 			"else " \
352 				"bootm; " \
353 			"fi; " \
354 		"fi\0"
355 
356 #ifdef CONFIG_SPI_FLASH
357 	#define CONFIG_EXTRA_ENV_SETTINGS \
358 	CONFIG_EXTRA_ENV_SETTINGS_COMMON \
359 	"image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \
360 	"image_uboot=ventana/u-boot_spi.imx\0" \
361 	\
362 	"spi_koffset=0x90000\0" \
363 	"spi_klen=0x200000\0" \
364 	\
365 	"spi_updateuboot=echo Updating uboot from " \
366 		"${serverip}:${image_uboot}...; " \
367 		"tftpboot ${loadaddr} ${image_uboot} && " \
368 		"sf probe && sf erase 0 80000 && " \
369 			"sf write ${loadaddr} 400 ${filesize}\0" \
370 	"spi_update=echo Updating OS from ${serverip}:${image_os} " \
371 		"to ${spi_koffset} ...; " \
372 		"tftp ${loadaddr} ${image_os} && " \
373 		"sf probe && " \
374 		"sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \
375 	\
376 	"flash_boot=" \
377 		"if sf probe && " \
378 		"sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \
379 			"setenv bootargs console=${console},${baudrate} " \
380 				"root=/dev/mtdblock3 " \
381 				"rootfstype=squashfs,jffs2 " \
382 				"${video} ${extra}; " \
383 			"bootm; " \
384 		"fi\0"
385 #else
386 	#define CONFIG_EXTRA_ENV_SETTINGS \
387 	CONFIG_EXTRA_ENV_SETTINGS_COMMON \
388 	\
389 	"image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \
390 	"nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \
391 		"tftp ${loadaddr} ${image_rootfs} && " \
392 		"nand erase.part rootfs && " \
393 		"nand write ${loadaddr} rootfs ${filesize}\0" \
394 	\
395 	"flash_boot=" \
396 		"setenv fsload 'ubifsload'; " \
397 		"ubi part rootfs; " \
398 		"if ubi check boot; then " \
399 			"ubifsmount ubi0:boot; " \
400 			"setenv root ubi0:rootfs ubi.mtd=2 " \
401 				"rootfstype=squashfs,ubifs; " \
402 			"setenv bootdir; " \
403 		"elif ubi check rootfs; then " \
404 			"ubifsmount ubi0:rootfs; " \
405 			"setenv root ubi0:rootfs ubi.mtd=2 " \
406 				"rootfstype=ubifs; " \
407 		"fi; " \
408 		"setenv dtype nand; run loadscript; " \
409 		"if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
410 			"setenv bootargs console=${console},${baudrate} " \
411 				"root=${root} ${video} ${extra}; " \
412 			"if run loadfdt; then " \
413 				"ubifsumount; " \
414 				"bootm ${loadaddr} - ${fdt_addr}; " \
415 			"else " \
416 				"ubifsumount; bootm; " \
417 			"fi; " \
418 		"fi\0"
419 #endif
420 
421 #define CONFIG_BOOTCOMMAND \
422 	"for btype in ${bootdevs}; do " \
423 		"echo; echo Attempting ${btype} boot...; " \
424 		"if run ${btype}_boot; then; fi; " \
425 	"done"
426 
427 /* Device Tree Support */
428 #define CONFIG_FDT_FIXUP_PARTITIONS
429 
430 #endif			       /* __CONFIG_H */
431