Merge branch '2022-06-06-finish-SPL-Kconfig-migration' into next
[platform/kernel/u-boot.git] / include / configs / gw_ventana.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Gateworks Corporation
4  */
5
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8
9 /* SPL */
10 /* Location in NAND to read U-Boot from */
11
12 /* Falcon Mode */
13
14 /* Falcon Mode - MMC support: args@1MB kernel@2MB */
15
16 #include "imx6_spl.h"                  /* common IMX6 SPL configuration */
17 #include "mx6_common.h"
18
19 /* Serial */
20 #define CONFIG_MXC_UART_BASE           UART2_BASE
21
22 /* NAND */
23 #define CONFIG_SYS_MAX_NAND_DEVICE      1
24
25 #undef CONFIG_SYS_BOOTM_LEN
26 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)
27
28 /* MMC Configs */
29 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
30
31 /*
32  * SATA Configs
33  */
34 #ifdef CONFIG_CMD_SATA
35   #define CONFIG_DWC_AHSATA_PORT_ID     0
36   #define CONFIG_DWC_AHSATA_BASE_ADDR   SATA_ARB_BASE_ADDR
37   #define CONFIG_LBA48
38 #endif
39
40 /*
41  * PCI express
42  */
43 #ifdef CONFIG_CMD_PCI
44 #define CONFIG_PCIE_IMX
45 #endif
46
47 /*
48  * PMIC
49  */
50 #define CONFIG_POWER_PFUZE100
51 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
52 #define CONFIG_POWER_LTC3676
53 #define CONFIG_POWER_LTC3676_I2C_ADDR  0x3c
54
55 /* Various command support */
56
57 /* USB Configs */
58 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET  /* For OTG port */
59 #define CONFIG_MXC_USB_PORTSC     (PORT_PTS_UTMI | PORT_PTS_PTW)
60 #define CONFIG_MXC_USB_FLAGS      0
61 #define CONFIG_USBD_HS
62
63 /* Framebuffer and LCD */
64 #define CONFIG_IMX_HDMI
65 #define CONFIG_IMX_VIDEO_SKIP
66 #define CONFIG_HIDE_LOGO_VERSION  /* Custom config to hide U-boot version */
67
68 /* Miscellaneous configurable options */
69 #define CONFIG_HWCONFIG
70
71 /* Memory configuration */
72
73 /* Physical Memory Map */
74 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
75 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
76 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
77 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
78
79 /*
80  * MTD Command for mtdparts
81  */
82
83 /* Persistent Environment Config */
84
85 /* Environment */
86 #define CONFIG_IPADDR             192.168.1.1
87 #define CONFIG_SERVERIP           192.168.1.146
88
89 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
90         "splashpos=m,m\0" \
91         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
92         "usb_pgood_delay=2000\0" \
93         "console=ttymxc1\0" \
94         "bootdevs=usb mmc sata flash\0" \
95         "hwconfig=_UNKNOWN_\0" \
96         "video=\0" \
97         \
98         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
99         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
100         "disk=0\0" \
101         "part=1\0" \
102         \
103         "fdt_high=0xffffffff\0" \
104         "fdt_addr=0x18000000\0" \
105         "initrd_high=0xffffffff\0" \
106         "fixfdt=" \
107                 "fdt addr ${fdt_addr}\0" \
108         "bootdir=boot\0" \
109         "loadfdt=" \
110                 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \
111                         "echo Loaded DTB from ${bootdir}/${fdt_file}; " \
112                         "run fixfdt; " \
113                 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \
114                         "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \
115                         "run fixfdt; " \
116                 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \
117                         "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \
118                         "run fixfdt; " \
119                 "fi\0" \
120         \
121         "fs=ext4\0" \
122         "script=6x_bootscript-ventana\0" \
123         "loadscript=" \
124                 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \
125                         "source ${loadaddr}; " \
126                 "fi\0" \
127         \
128         "uimage=uImage\0" \
129         "mmc_root=mmcblk0p1\0" \
130         "mmc_boot=" \
131                 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \
132                 "mmc dev ${disk} && mmc rescan && " \
133                 "setenv dtype mmc; run loadscript; " \
134                 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
135                         "setenv bootargs console=${console},${baudrate} " \
136                                 "root=/dev/${mmc_root} rootfstype=${fs} " \
137                                 "rootwait rw ${video} ${extra}; " \
138                         "if run loadfdt; then " \
139                                 "bootm ${loadaddr} - ${fdt_addr}; " \
140                         "else " \
141                                 "bootm; " \
142                         "fi; " \
143                 "fi\0" \
144         \
145         "sata_boot=" \
146                 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \
147                 "sata init && " \
148                 "setenv dtype sata; run loadscript; " \
149                 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
150                         "setenv bootargs console=${console},${baudrate} " \
151                                 "root=/dev/sda1 rootfstype=${fs} " \
152                                 "rootwait rw ${video} ${extra}; " \
153                         "if run loadfdt; then " \
154                                 "bootm ${loadaddr} - ${fdt_addr}; " \
155                         "else " \
156                                 "bootm; " \
157                         "fi; " \
158                 "fi\0" \
159         "usb_boot=" \
160                 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \
161                 "usb start && usb dev ${disk} && " \
162                 "setenv dtype usb; run loadscript; " \
163                 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
164                         "setenv bootargs console=${console},${baudrate} " \
165                                 "root=/dev/sda1 rootfstype=${fs} " \
166                                 "rootwait rw ${video} ${extra}; " \
167                         "if run loadfdt; then " \
168                                 "bootm ${loadaddr} - ${fdt_addr}; " \
169                         "else " \
170                                 "bootm; " \
171                         "fi; " \
172                 "fi\0"
173
174 #ifdef CONFIG_SPI_FLASH
175         #define CONFIG_EXTRA_ENV_SETTINGS \
176         CONFIG_EXTRA_ENV_SETTINGS_COMMON \
177         "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \
178         "image_uboot=ventana/u-boot_spi.imx\0" \
179         \
180         "spi_koffset=0x90000\0" \
181         "spi_klen=0x200000\0" \
182         \
183         "spi_updateuboot=echo Updating uboot from " \
184                 "${serverip}:${image_uboot}...; " \
185                 "tftpboot ${loadaddr} ${image_uboot} && " \
186                 "sf probe && sf erase 0 80000 && " \
187                         "sf write ${loadaddr} 400 ${filesize}\0" \
188         "spi_update=echo Updating OS from ${serverip}:${image_os} " \
189                 "to ${spi_koffset} ...; " \
190                 "tftp ${loadaddr} ${image_os} && " \
191                 "sf probe && " \
192                 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \
193         \
194         "flash_boot=" \
195                 "if sf probe && " \
196                 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \
197                         "setenv bootargs console=${console},${baudrate} " \
198                                 "root=/dev/mtdblock3 " \
199                                 "rootfstype=squashfs,jffs2 " \
200                                 "${video} ${extra}; " \
201                         "bootm; " \
202                 "fi\0"
203 #else
204         #define CONFIG_EXTRA_ENV_SETTINGS \
205         CONFIG_EXTRA_ENV_SETTINGS_COMMON \
206         \
207         "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \
208         "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \
209                 "tftp ${loadaddr} ${image_rootfs} && " \
210                 "nand erase.part rootfs && " \
211                 "nand write ${loadaddr} rootfs ${filesize}\0" \
212         \
213         "flash_boot=" \
214                 "setenv fsload 'ubifsload'; " \
215                 "ubi part rootfs; " \
216                 "if ubi check boot; then " \
217                         "ubifsmount ubi0:boot; " \
218                         "setenv root ubi0:rootfs ubi.mtd=2 " \
219                                 "rootfstype=squashfs,ubifs; " \
220                         "setenv bootdir; " \
221                 "elif ubi check rootfs; then " \
222                         "ubifsmount ubi0:rootfs; " \
223                         "setenv root ubi0:rootfs ubi.mtd=2 " \
224                                 "rootfstype=ubifs; " \
225                 "fi; " \
226                 "setenv dtype nand; run loadscript; " \
227                 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
228                         "setenv bootargs console=${console},${baudrate} " \
229                                 "root=${root} ${video} ${extra}; " \
230                         "if run loadfdt; then " \
231                                 "ubifsumount; " \
232                                 "bootm ${loadaddr} - ${fdt_addr}; " \
233                         "else " \
234                                 "ubifsumount; bootm; " \
235                         "fi; " \
236                 "fi\0"
237 #endif
238
239 #endif                         /* __CONFIG_H */