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