1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Congatec Conga-QEVAl board configuration file.
6 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
7 * Based on Freescale i.MX6Q Sabre Lite board configuration file.
8 * Copyright (C) 2013, Adeneo Embedded <www.adeneo-embedded.com>
9 * Leo Sartre, <lsartre@adeneo-embedded.com>
12 #ifndef __CONFIG_CGTQMX6EVAL_H
13 #define __CONFIG_CGTQMX6EVAL_H
15 #include "mx6_common.h"
17 #define CONFIG_MACH_TYPE 4122
20 #define CONFIG_SYS_SPI_U_BOOT_OFFS (64 * 1024)
24 /* Size of malloc() pool */
25 #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
27 #define CONFIG_MXC_UART
28 #define CONFIG_MXC_UART_BASE UART2_BASE
31 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
34 #define CONFIG_SPI_FLASH_STMICRO
35 #define CONFIG_SPI_FLASH_SST
38 #define CONFIG_IMX_THERMAL
41 #define CONFIG_SYS_I2C
42 #define CONFIG_SYS_I2C_MXC
43 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
44 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
45 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
46 #define CONFIG_SYS_I2C_SPEED 100000
50 #define CONFIG_POWER_I2C
51 #define CONFIG_POWER_PFUZE100
52 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
55 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
56 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
57 #define CONFIG_MXC_USB_FLAGS 0
58 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
60 #define CONFIG_USBD_HS
63 #define CONFIG_VIDEO_BMP_RLE8
64 #define CONFIG_SPLASH_SCREEN
65 #define CONFIG_SPLASH_SCREEN_ALIGN
66 #define CONFIG_BMP_16BPP
67 #define CONFIG_VIDEO_LOGO
68 #define CONFIG_VIDEO_BMP_LOGO
69 #define CONFIG_IMX_HDMI
72 #define CONFIG_SYS_SATA_MAX_DEVICE 1
73 #define CONFIG_DWC_AHSATA_PORT_ID 0
74 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
78 #define CONFIG_FEC_MXC
79 #define IMX_FEC_BASE ENET_BASE_ADDR
80 #define CONFIG_FEC_XCV_TYPE RGMII
81 #define CONFIG_ETHPRIME "FEC"
82 #define CONFIG_FEC_MXC_PHYADDR 6
83 #define CONFIG_PHY_ATHEROS
85 /* Command definition */
87 #define CONFIG_MXC_UART_BASE UART2_BASE
88 #define CONSOLE_DEV "ttymxc1"
89 #define CONFIG_MMCROOT "/dev/mmcblk0p2"
90 #define CONFIG_SYS_MMC_ENV_DEV 0
92 #define CONFIG_EXTRA_ENV_SETTINGS \
95 "fdtfile=undefined\0" \
96 "fdt_addr_r=0x18000000\0" \
99 "console=" CONSOLE_DEV "\0" \
100 "dfuspi=dfu 0 sf 0:0:10000000:0\0" \
101 "dfu_alt_info_spl=spl raw 0x400\0" \
102 "dfu_alt_info_img=u-boot raw 0x10000\0" \
103 "dfu_alt_info=spl raw 0x400\0" \
104 "bootm_size=0x10000000\0" \
105 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
107 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
108 "update_sd_firmware=" \
109 "if test ${ip_dyn} = yes; then " \
110 "setenv get_cmd dhcp; " \
112 "setenv get_cmd tftp; " \
114 "if mmc dev ${mmcdev}; then " \
115 "if ${get_cmd} ${update_sd_firmware_filename}; then " \
116 "setexpr fw_sz ${filesize} / 0x200; " \
117 "setexpr fw_sz ${fw_sz} + 1; " \
118 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
121 "mmcargs=setenv bootargs console=${console},${baudrate} " \
122 "root=${mmcroot}\0" \
124 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
125 "bootscript=echo Running bootscript from mmc ...; " \
127 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
128 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \
129 "mmcboot=echo Booting from mmc ...; " \
131 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
132 "if run loadfdt; then " \
133 "bootz ${loadaddr} - ${fdt_addr_r}; " \
135 "if test ${boot_fdt} = try; then " \
138 "echo WARN: Cannot load the DT; " \
145 "if test $board_rev = MX6Q ; then " \
146 "setenv fdtfile imx6q-qmx6.dtb; fi; " \
147 "if test $board_rev = MX6DL ; then " \
148 "setenv fdtfile imx6dl-qmx6.dtb; fi; " \
149 "if test $fdtfile = undefined; then " \
150 "echo WARNING: Could not determine dtb to use; fi; \0" \
151 "netargs=setenv bootargs console=${console},${baudrate} " \
153 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
154 "netboot=echo Booting from net ...; " \
156 "if test ${ip_dyn} = yes; then " \
157 "setenv get_cmd dhcp; " \
159 "setenv get_cmd tftp; " \
161 "${get_cmd} ${image}; " \
162 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
163 "if ${get_cmd} ${fdt_addr_r} ${fdtfile}; then " \
164 "bootz ${loadaddr} - ${fdt_addr_r}; " \
166 "if test ${boot_fdt} = try; then " \
169 "echo WARN: Cannot load the DT; " \
175 "spilock=sf probe && sf protect lock 0x3f0000 0x10000;"\
177 #define CONFIG_BOOTCOMMAND \
180 "mmc dev ${mmcdev};" \
181 "if mmc rescan; then " \
182 "if run loadbootscript; then " \
185 "if run loadimage; then " \
187 "else run netboot; " \
190 "else run netboot; fi"
192 #define CONFIG_SYS_MEMTEST_START 0x10000000
193 #define CONFIG_SYS_MEMTEST_END 0x10010000
194 #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
196 /* Physical Memory Map */
197 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
199 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
200 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
201 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
203 #define CONFIG_SYS_INIT_SP_OFFSET \
204 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
205 #define CONFIG_SYS_INIT_SP_ADDR \
206 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
208 /* Environment organization */
209 #if defined (CONFIG_ENV_IS_IN_MMC)
210 #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
211 #define CONFIG_SYS_MMC_ENV_DEV 0
214 #define CONFIG_ENV_SIZE (8 * 1024)
216 #if defined(CONFIG_ENV_IS_IN_SPI_FLASH)
217 #define CONFIG_ENV_OFFSET (768 * 1024)
218 #define CONFIG_ENV_SECT_SIZE (64 * 1024)
221 #endif /* __CONFIG_CGTQMX6EVAL_H */