1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013 Gateworks Corporation
10 /* Location in NAND to read U-Boot from */
14 /* Falcon Mode - MMC support: args@1MB kernel@2MB */
16 #include "imx6_spl.h" /* common IMX6 SPL configuration */
17 #include "mx6_common.h"
20 #define CONFIG_MXC_UART_BASE UART2_BASE
23 #define CONFIG_SYS_MAX_NAND_DEVICE 1
25 #undef CONFIG_SYS_BOOTM_LEN
26 #define CONFIG_SYS_BOOTM_LEN (64 << 20)
29 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
34 #ifdef CONFIG_CMD_SATA
35 #define CONFIG_DWC_AHSATA_PORT_ID 0
36 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
44 #define CONFIG_PCIE_IMX
50 #define CONFIG_POWER_PFUZE100
51 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
52 #define CONFIG_POWER_LTC3676
53 #define CONFIG_POWER_LTC3676_I2C_ADDR 0x3c
55 /* Various command support */
58 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
59 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
60 #define CONFIG_MXC_USB_FLAGS 0
61 #define CONFIG_USBD_HS
63 /* Framebuffer and LCD */
64 #define CONFIG_IMX_HDMI
65 #define CONFIG_IMX_VIDEO_SKIP
66 #define CONFIG_HIDE_LOGO_VERSION /* Custom config to hide U-boot version */
68 /* Miscellaneous configurable options */
69 #define CONFIG_HWCONFIG
71 /* Memory configuration */
73 /* Physical Memory Map */
74 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
75 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
76 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
77 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
80 * MTD Command for mtdparts
83 /* Persistent Environment Config */
86 #define CONFIG_IPADDR 192.168.1.1
87 #define CONFIG_SERVERIP 192.168.1.146
89 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
91 "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
92 "usb_pgood_delay=2000\0" \
94 "bootdevs=usb mmc sata flash\0" \
95 "hwconfig=_UNKNOWN_\0" \
98 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
99 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
103 "fdt_high=0xffffffff\0" \
104 "fdt_addr=0x18000000\0" \
105 "initrd_high=0xffffffff\0" \
107 "fdt addr ${fdt_addr}\0" \
110 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \
111 "echo Loaded DTB from ${bootdir}/${fdt_file}; " \
113 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \
114 "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \
116 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \
117 "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \
122 "script=6x_bootscript-ventana\0" \
124 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \
125 "source ${loadaddr}; " \
129 "mmc_root=mmcblk0p1\0" \
131 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \
132 "mmc dev ${disk} && mmc rescan && " \
133 "setenv dtype mmc; run loadscript; " \
134 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
135 "setenv bootargs console=${console},${baudrate} " \
136 "root=/dev/${mmc_root} rootfstype=${fs} " \
137 "rootwait rw ${video} ${extra}; " \
138 "if run loadfdt; then " \
139 "bootm ${loadaddr} - ${fdt_addr}; " \
146 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \
148 "setenv dtype sata; run loadscript; " \
149 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
150 "setenv bootargs console=${console},${baudrate} " \
151 "root=/dev/sda1 rootfstype=${fs} " \
152 "rootwait rw ${video} ${extra}; " \
153 "if run loadfdt; then " \
154 "bootm ${loadaddr} - ${fdt_addr}; " \
160 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \
161 "usb start && usb dev ${disk} && " \
162 "setenv dtype usb; 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}; " \
174 #ifdef CONFIG_SPI_FLASH
175 #define CONFIG_EXTRA_ENV_SETTINGS \
176 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
177 "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \
178 "image_uboot=ventana/u-boot_spi.imx\0" \
180 "spi_koffset=0x90000\0" \
181 "spi_klen=0x200000\0" \
183 "spi_updateuboot=echo Updating uboot from " \
184 "${serverip}:${image_uboot}...; " \
185 "tftpboot ${loadaddr} ${image_uboot} && " \
186 "sf probe && sf erase 0 80000 && " \
187 "sf write ${loadaddr} 400 ${filesize}\0" \
188 "spi_update=echo Updating OS from ${serverip}:${image_os} " \
189 "to ${spi_koffset} ...; " \
190 "tftp ${loadaddr} ${image_os} && " \
192 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \
196 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \
197 "setenv bootargs console=${console},${baudrate} " \
198 "root=/dev/mtdblock3 " \
199 "rootfstype=squashfs,jffs2 " \
200 "${video} ${extra}; " \
204 #define CONFIG_EXTRA_ENV_SETTINGS \
205 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
207 "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \
208 "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \
209 "tftp ${loadaddr} ${image_rootfs} && " \
210 "nand erase.part rootfs && " \
211 "nand write ${loadaddr} rootfs ${filesize}\0" \
214 "setenv fsload 'ubifsload'; " \
215 "ubi part rootfs; " \
216 "if ubi check boot; then " \
217 "ubifsmount ubi0:boot; " \
218 "setenv root ubi0:rootfs ubi.mtd=2 " \
219 "rootfstype=squashfs,ubifs; " \
221 "elif ubi check rootfs; then " \
222 "ubifsmount ubi0:rootfs; " \
223 "setenv root ubi0:rootfs ubi.mtd=2 " \
224 "rootfstype=ubifs; " \
226 "setenv dtype nand; run loadscript; " \
227 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
228 "setenv bootargs console=${console},${baudrate} " \
229 "root=${root} ${video} ${extra}; " \
230 "if run loadfdt; then " \
232 "bootm ${loadaddr} - ${fdt_addr}; " \
234 "ubifsumount; bootm; " \
239 #endif /* __CONFIG_H */