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