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