3 * Congatec Conga-QEVAl board configuration file.
5 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
6 * Based on Freescale i.MX6Q Sabre Lite board configuration file.
7 * Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com>
8 * Leo Sartre, <lsartre@adeneo-embedded.com>
10 * SPDX-License-Identifier: GPL-2.0+
13 #ifndef __CONFIG_CGTQMX6EVAL_H
14 #define __CONFIG_CGTQMX6EVAL_H
16 #include "mx6_common.h"
18 #define CONFIG_MACH_TYPE 4122
21 #define CONFIG_SYS_SPI_U_BOOT_OFFS (64 * 1024)
22 #define CONFIG_SPL_SPI_LOAD
26 /* Size of malloc() pool */
27 #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
29 #define CONFIG_MISC_INIT_R
31 #define CONFIG_MXC_UART
32 #define CONFIG_MXC_UART_BASE UART2_BASE
35 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
38 #define CONFIG_SPI_FLASH
39 #define CONFIG_SPI_FLASH_STMICRO
40 #define CONFIG_SPI_FLASH_SST
41 #define CONFIG_MXC_SPI
42 #define CONFIG_SF_DEFAULT_BUS 0
43 #define CONFIG_SF_DEFAULT_SPEED 20000000
44 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
47 #define CONFIG_IMX_THERMAL
50 #define CONFIG_SYS_I2C
51 #define CONFIG_SYS_I2C_MXC
52 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
53 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
54 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
55 #define CONFIG_SYS_I2C_SPEED 100000
59 #define CONFIG_POWER_I2C
60 #define CONFIG_POWER_PFUZE100
61 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
64 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
65 #define CONFIG_USB_HOST_ETHER
66 #define CONFIG_USB_ETHER_ASIX
67 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
68 #define CONFIG_MXC_USB_FLAGS 0
69 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
71 #define CONFIG_USBD_HS
73 #define CONFIG_USB_FUNCTION_MASS_STORAGE
76 #define CONFIG_VIDEO_IPUV3
77 #define CONFIG_VIDEO_BMP_RLE8
78 #define CONFIG_SPLASH_SCREEN
79 #define CONFIG_SPLASH_SCREEN_ALIGN
80 #define CONFIG_BMP_16BPP
81 #define CONFIG_VIDEO_LOGO
82 #define CONFIG_VIDEO_BMP_LOGO
84 #define CONFIG_IPUV3_CLK 198000000
86 #define CONFIG_IPUV3_CLK 264000000
88 #define CONFIG_IMX_HDMI
91 #define CONFIG_DWC_AHSATA
92 #define CONFIG_SYS_SATA_MAX_DEVICE 1
93 #define CONFIG_DWC_AHSATA_PORT_ID 0
94 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
99 #define CONFIG_FEC_MXC
101 #define IMX_FEC_BASE ENET_BASE_ADDR
102 #define CONFIG_FEC_XCV_TYPE RGMII
103 #define CONFIG_ETHPRIME "FEC"
104 #define CONFIG_FEC_MXC_PHYADDR 6
105 #define CONFIG_PHY_ATHEROS
107 /* Command definition */
109 #define CONFIG_MXC_UART_BASE UART2_BASE
110 #define CONSOLE_DEV "ttymxc1"
111 #define CONFIG_MMCROOT "/dev/mmcblk0p2"
112 #define CONFIG_SYS_MMC_ENV_DEV 0
114 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
115 #define CONFIG_EXTRA_ENV_SETTINGS \
116 "script=boot.scr\0" \
118 "fdtfile=undefined\0" \
119 "fdt_addr_r=0x18000000\0" \
122 "console=" CONSOLE_DEV "\0" \
123 "dfuspi=dfu 0 sf 0:0:10000000:0\0" \
124 "dfu_alt_info_spl=spl raw 0x400\0" \
125 "dfu_alt_info_img=u-boot raw 0x10000\0" \
126 "dfu_alt_info=spl raw 0x400\0" \
127 "bootm_size=0x10000000\0" \
128 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
130 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
131 "update_sd_firmware=" \
132 "if test ${ip_dyn} = yes; then " \
133 "setenv get_cmd dhcp; " \
135 "setenv get_cmd tftp; " \
137 "if mmc dev ${mmcdev}; then " \
138 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
139 "setexpr fw_sz ${filesize} / 0x200; " \
140 "setexpr fw_sz ${fw_sz} + 1; " \
141 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
144 "mmcargs=setenv bootargs console=${console},${baudrate} " \
145 "root=${mmcroot}\0" \
147 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
148 "bootscript=echo Running bootscript from mmc ...; " \
150 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
151 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \
152 "mmcboot=echo Booting from mmc ...; " \
154 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
155 "if run loadfdt; then " \
156 "bootz ${loadaddr} - ${fdt_addr_r}; " \
158 "if test ${boot_fdt} = try; then " \
161 "echo WARN: Cannot load the DT; " \
168 "if test $board_rev = MX6Q ; then " \
169 "setenv fdtfile imx6q-qmx6.dtb; fi; " \
170 "if test $board_rev = MX6DL ; then " \
171 "setenv fdtfile imx6dl-qmx6.dtb; fi; " \
172 "if test $fdtfile = undefined; then " \
173 "echo WARNING: Could not determine dtb to use; fi; \0" \
174 "netargs=setenv bootargs console=${console},${baudrate} " \
176 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
177 "netboot=echo Booting from net ...; " \
179 "if test ${ip_dyn} = yes; then " \
180 "setenv get_cmd dhcp; " \
182 "setenv get_cmd tftp; " \
184 "${get_cmd} ${image}; " \
185 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
186 "if ${get_cmd} ${fdt_addr_r} ${fdtfile}; then " \
187 "bootz ${loadaddr} - ${fdt_addr_r}; " \
189 "if test ${boot_fdt} = try; then " \
192 "echo WARN: Cannot load the DT; " \
198 "spilock=sf probe && sf protect lock 0x3f0000 0x10000;"\
200 #define CONFIG_BOOTCOMMAND \
203 "mmc dev ${mmcdev};" \
204 "if mmc rescan; then " \
205 "if run loadbootscript; then " \
208 "if run loadimage; then " \
210 "else run netboot; " \
213 "else run netboot; fi"
215 #define CONFIG_SYS_MEMTEST_START 0x10000000
216 #define CONFIG_SYS_MEMTEST_END 0x10010000
217 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
219 /* Physical Memory Map */
220 #define CONFIG_NR_DRAM_BANKS 1
221 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
223 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
224 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
225 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
227 #define CONFIG_SYS_INIT_SP_OFFSET \
228 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
229 #define CONFIG_SYS_INIT_SP_ADDR \
230 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
232 /* Environment organization */
233 #if defined (CONFIG_ENV_IS_IN_MMC)
234 #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
235 #define CONFIG_SYS_MMC_ENV_DEV 0
238 #define CONFIG_ENV_SIZE (8 * 1024)
240 #if defined(CONFIG_ENV_IS_IN_SPI_FLASH)
241 #define CONFIG_ENV_OFFSET (768 * 1024)
242 #define CONFIG_ENV_SECT_SIZE (64 * 1024)
243 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
244 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
245 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
246 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
249 #endif /* __CONFIG_CGTQMX6EVAL_H */