1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013 Gateworks Corporation
10 /* Location in NAND to read U-Boot from */
13 #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000
15 /* Falcon Mode - NAND support: args@17MB kernel@18MB */
16 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS (18 * SZ_1M)
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 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x1000 /* 2MB */
23 #include "imx6_spl.h" /* common IMX6 SPL configuration */
24 #include "mx6_common.h"
27 #define CONFIG_MXC_UART_BASE UART2_BASE
30 #define CONFIG_SYS_MAX_NAND_DEVICE 1
32 #undef CONFIG_SYS_BOOTM_LEN
33 #define CONFIG_SYS_BOOTM_LEN (64 << 20)
36 #define CONFIG_I2C_GSC 0
37 #define CONFIG_I2C_EDID
40 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
45 #ifdef CONFIG_CMD_SATA
46 #define CONFIG_SYS_SATA_MAX_DEVICE 1
47 #define CONFIG_DWC_AHSATA_PORT_ID 0
48 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
56 #define CONFIG_PCIE_IMX
62 #define CONFIG_POWER_PFUZE100
63 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
64 #define CONFIG_POWER_LTC3676
65 #define CONFIG_POWER_LTC3676_I2C_ADDR 0x3c
67 /* Various command support */
70 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
71 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
72 #define CONFIG_MXC_USB_FLAGS 0
73 #define CONFIG_USBD_HS
75 /* Framebuffer and LCD */
76 #define CONFIG_VIDEO_LOGO
77 #define CONFIG_IMX_HDMI
78 #define CONFIG_IMX_VIDEO_SKIP
79 #define CONFIG_VIDEO_BMP_LOGO
80 #define CONFIG_HIDE_LOGO_VERSION /* Custom config to hide U-boot version */
82 /* Miscellaneous configurable options */
83 #define CONFIG_HWCONFIG
85 /* Memory configuration */
87 /* Physical Memory Map */
88 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
89 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
90 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
91 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
93 #define CONFIG_SYS_INIT_SP_OFFSET \
94 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
95 #define CONFIG_SYS_INIT_SP_ADDR \
96 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
99 * MTD Command for mtdparts
102 /* Persistent Environment Config */
105 #define CONFIG_IPADDR 192.168.1.1
106 #define CONFIG_SERVERIP 192.168.1.146
108 #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
110 "usb_pgood_delay=2000\0" \
111 "console=ttymxc1\0" \
112 "bootdevs=usb mmc sata flash\0" \
113 "hwconfig=_UNKNOWN_\0" \
116 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
117 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
121 "fdt_high=0xffffffff\0" \
122 "fdt_addr=0x18000000\0" \
123 "initrd_high=0xffffffff\0" \
125 "fdt addr ${fdt_addr}\0" \
128 "if ${fsload} ${fdt_addr} ${bootdir}/${fdt_file}; then " \
129 "echo Loaded DTB from ${bootdir}/${fdt_file}; " \
131 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file1}; then " \
132 "echo Loaded DTB from ${bootdir}/${fdt_file1}; " \
134 "elif ${fsload} ${fdt_addr} ${bootdir}/${fdt_file2}; then " \
135 "echo Loaded DTB from ${bootdir}/${fdt_file2}; " \
140 "script=6x_bootscript-ventana\0" \
142 "if ${fsload} ${loadaddr} ${bootdir}/${script}; then " \
143 "source ${loadaddr}; " \
147 "mmc_root=mmcblk0p1\0" \
149 "setenv fsload \"${fs}load mmc ${disk}:${part}\"; " \
150 "mmc dev ${disk} && mmc rescan && " \
151 "setenv dtype mmc; run loadscript; " \
152 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
153 "setenv bootargs console=${console},${baudrate} " \
154 "root=/dev/${mmc_root} rootfstype=${fs} " \
155 "rootwait rw ${video} ${extra}; " \
156 "if run loadfdt; then " \
157 "bootm ${loadaddr} - ${fdt_addr}; " \
164 "setenv fsload \"${fs}load sata ${disk}:${part}\"; " \
166 "setenv dtype sata; run loadscript; " \
167 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
168 "setenv bootargs console=${console},${baudrate} " \
169 "root=/dev/sda1 rootfstype=${fs} " \
170 "rootwait rw ${video} ${extra}; " \
171 "if run loadfdt; then " \
172 "bootm ${loadaddr} - ${fdt_addr}; " \
178 "setenv fsload \"${fs}load usb ${disk}:${part}\"; " \
179 "usb start && usb dev ${disk} && " \
180 "setenv dtype usb; 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}; " \
192 #ifdef CONFIG_SPI_FLASH
193 #define CONFIG_EXTRA_ENV_SETTINGS \
194 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
195 "image_os=ventana/openwrt-imx6-imx6q-gw5400-a-squashfs.bin\0" \
196 "image_uboot=ventana/u-boot_spi.imx\0" \
198 "spi_koffset=0x90000\0" \
199 "spi_klen=0x200000\0" \
201 "spi_updateuboot=echo Updating uboot from " \
202 "${serverip}:${image_uboot}...; " \
203 "tftpboot ${loadaddr} ${image_uboot} && " \
204 "sf probe && sf erase 0 80000 && " \
205 "sf write ${loadaddr} 400 ${filesize}\0" \
206 "spi_update=echo Updating OS from ${serverip}:${image_os} " \
207 "to ${spi_koffset} ...; " \
208 "tftp ${loadaddr} ${image_os} && " \
210 "sf update ${loadaddr} ${spi_koffset} ${filesize}\0" \
214 "sf read ${loadaddr} ${spi_koffset} ${spi_klen}; then " \
215 "setenv bootargs console=${console},${baudrate} " \
216 "root=/dev/mtdblock3 " \
217 "rootfstype=squashfs,jffs2 " \
218 "${video} ${extra}; " \
222 #define CONFIG_EXTRA_ENV_SETTINGS \
223 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
225 "image_rootfs=openwrt-imx6-ventana-rootfs.ubi\0" \
226 "nand_update=echo Updating NAND from ${serverip}:${image_rootfs}...; " \
227 "tftp ${loadaddr} ${image_rootfs} && " \
228 "nand erase.part rootfs && " \
229 "nand write ${loadaddr} rootfs ${filesize}\0" \
232 "setenv fsload 'ubifsload'; " \
233 "ubi part rootfs; " \
234 "if ubi check boot; then " \
235 "ubifsmount ubi0:boot; " \
236 "setenv root ubi0:rootfs ubi.mtd=2 " \
237 "rootfstype=squashfs,ubifs; " \
239 "elif ubi check rootfs; then " \
240 "ubifsmount ubi0:rootfs; " \
241 "setenv root ubi0:rootfs ubi.mtd=2 " \
242 "rootfstype=ubifs; " \
244 "setenv dtype nand; run loadscript; " \
245 "if ${fsload} ${loadaddr} ${bootdir}/${uimage}; then " \
246 "setenv bootargs console=${console},${baudrate} " \
247 "root=${root} ${video} ${extra}; " \
248 "if run loadfdt; then " \
250 "bootm ${loadaddr} - ${fdt_addr}; " \
252 "ubifsumount; bootm; " \
257 #define CONFIG_BOOTCOMMAND \
258 "for btype in ${bootdevs}; do " \
259 "echo; echo Attempting ${btype} boot...; " \
260 "if run ${btype}_boot; then; fi; " \
263 #endif /* __CONFIG_H */