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