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_BOARD_EARLY_INIT_F
30 #define CONFIG_BOARD_LATE_INIT
31 #define CONFIG_MISC_INIT_R
33 #define CONFIG_MXC_UART
34 #define CONFIG_MXC_UART_BASE UART2_BASE
37 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
40 #define CONFIG_SPI_FLASH
41 #define CONFIG_SPI_FLASH_STMICRO
42 #define CONFIG_SPI_FLASH_SST
43 #define CONFIG_MXC_SPI
44 #define CONFIG_SF_DEFAULT_BUS 0
45 #define CONFIG_SF_DEFAULT_SPEED 20000000
46 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
48 /* Miscellaneous commands */
49 #define CONFIG_CMD_BMODE
52 #define CONFIG_IMX_THERMAL
55 #define CONFIG_SYS_I2C
56 #define CONFIG_SYS_I2C_MXC
57 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
58 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
59 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
60 #define CONFIG_SYS_I2C_SPEED 100000
64 #define CONFIG_POWER_I2C
65 #define CONFIG_POWER_PFUZE100
66 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
69 #define CONFIG_USB_EHCI
70 #define CONFIG_USB_EHCI_MX6
71 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
72 #define CONFIG_USB_HOST_ETHER
73 #define CONFIG_USB_ETHER_ASIX
74 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
75 #define CONFIG_MXC_USB_FLAGS 0
76 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
77 #define CONFIG_USB_KEYBOARD
78 #define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP
80 #define CONFIG_USBD_HS
82 #define CONFIG_USB_FUNCTION_MASS_STORAGE
84 #define CONFIG_USB_FUNCTION_FASTBOOT
85 #define CONFIG_CMD_FASTBOOT
86 #define CONFIG_ANDROID_BOOT_IMAGE
87 #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
88 #define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
91 #define CONFIG_VIDEO_IPUV3
92 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
93 #define CONFIG_VIDEO_BMP_RLE8
94 #define CONFIG_SPLASH_SCREEN
95 #define CONFIG_SPLASH_SCREEN_ALIGN
96 #define CONFIG_BMP_16BPP
97 #define CONFIG_VIDEO_LOGO
98 #define CONFIG_VIDEO_BMP_LOGO
100 #define CONFIG_IPUV3_CLK 198000000
102 #define CONFIG_IPUV3_CLK 264000000
104 #define CONFIG_IMX_HDMI
107 #define CONFIG_CMD_SATA
108 #define CONFIG_DWC_AHSATA
109 #define CONFIG_SYS_SATA_MAX_DEVICE 1
110 #define CONFIG_DWC_AHSATA_PORT_ID 0
111 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
113 #define CONFIG_LIBATA
116 #define CONFIG_FEC_MXC
118 #define IMX_FEC_BASE ENET_BASE_ADDR
119 #define CONFIG_FEC_XCV_TYPE RGMII
120 #define CONFIG_ETHPRIME "FEC"
121 #define CONFIG_FEC_MXC_PHYADDR 6
122 #define CONFIG_PHYLIB
123 #define CONFIG_PHY_ATHEROS
125 /* Command definition */
127 #define CONFIG_MXC_UART_BASE UART2_BASE
128 #define CONSOLE_DEV "ttymxc1"
129 #define CONFIG_MMCROOT "/dev/mmcblk0p2"
130 #define CONFIG_SYS_MMC_ENV_DEV 0
132 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
133 #define CONFIG_EXTRA_ENV_SETTINGS \
134 "script=boot.scr\0" \
136 "fdtfile=undefined\0" \
137 "fdt_addr_r=0x18000000\0" \
140 "console=" CONSOLE_DEV "\0" \
141 "dfuspi=dfu 0 sf 0:0:10000000:0\0" \
142 "dfu_alt_info_spl=spl raw 0x400\0" \
143 "dfu_alt_info_img=u-boot raw 0x10000\0" \
144 "dfu_alt_info=spl raw 0x400\0" \
145 "bootm_size=0x10000000\0" \
146 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
148 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
149 "update_sd_firmware=" \
150 "if test ${ip_dyn} = yes; then " \
151 "setenv get_cmd dhcp; " \
153 "setenv get_cmd tftp; " \
155 "if mmc dev ${mmcdev}; then " \
156 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
157 "setexpr fw_sz ${filesize} / 0x200; " \
158 "setexpr fw_sz ${fw_sz} + 1; " \
159 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
162 "mmcargs=setenv bootargs console=${console},${baudrate} " \
163 "root=${mmcroot}\0" \
165 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
166 "bootscript=echo Running bootscript from mmc ...; " \
168 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
169 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \
170 "mmcboot=echo Booting from mmc ...; " \
172 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
173 "if run loadfdt; then " \
174 "bootz ${loadaddr} - ${fdt_addr_r}; " \
176 "if test ${boot_fdt} = try; then " \
179 "echo WARN: Cannot load the DT; " \
186 "if test $board_rev = MX6Q ; then " \
187 "setenv fdtfile imx6q-qmx6.dtb; fi; " \
188 "if test $board_rev = MX6DL ; then " \
189 "setenv fdtfile imx6dl-qmx6.dtb; fi; " \
190 "if test $fdtfile = undefined; then " \
191 "echo WARNING: Could not determine dtb to use; fi; \0" \
192 "netargs=setenv bootargs console=${console},${baudrate} " \
194 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
195 "netboot=echo Booting from net ...; " \
197 "if test ${ip_dyn} = yes; then " \
198 "setenv get_cmd dhcp; " \
200 "setenv get_cmd tftp; " \
202 "${get_cmd} ${image}; " \
203 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
204 "if ${get_cmd} ${fdt_addr_r} ${fdtfile}; then " \
205 "bootz ${loadaddr} - ${fdt_addr_r}; " \
207 "if test ${boot_fdt} = try; then " \
210 "echo WARN: Cannot load the DT; " \
216 "spilock=sf probe && sf protect lock 0x3f0000 0x10000;"\
218 #define CONFIG_BOOTCOMMAND \
221 "mmc dev ${mmcdev};" \
222 "if mmc rescan; then " \
223 "if run loadbootscript; then " \
226 "if run loadimage; then " \
228 "else run netboot; " \
231 "else run netboot; fi"
233 #define CONFIG_SYS_MEMTEST_START 0x10000000
234 #define CONFIG_SYS_MEMTEST_END 0x10010000
235 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
237 /* Physical Memory Map */
238 #define CONFIG_NR_DRAM_BANKS 1
239 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
241 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
242 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
243 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
245 #define CONFIG_SYS_INIT_SP_OFFSET \
246 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
247 #define CONFIG_SYS_INIT_SP_ADDR \
248 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
250 /* Environment organization */
251 #if defined (CONFIG_ENV_IS_IN_MMC)
252 #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
253 #define CONFIG_SYS_MMC_ENV_DEV 0
256 #define CONFIG_ENV_SIZE (8 * 1024)
258 #define CONFIG_ENV_IS_IN_SPI_FLASH
259 #if defined(CONFIG_ENV_IS_IN_SPI_FLASH)
260 #define CONFIG_ENV_OFFSET (768 * 1024)
261 #define CONFIG_ENV_SECT_SIZE (64 * 1024)
262 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
263 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
264 #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
265 #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
268 #endif /* __CONFIG_CGTQMX6EVAL_H */