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