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