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