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