]> git.sur5r.net Git - u-boot/blob - include/configs/cgtqmx6eval.h
ata: Migrate CONFIG_DWC_AHSATA to Kconfig
[u-boot] / include / configs / cgtqmx6eval.h
1 /*
2  *
3  * Congatec Conga-QEVAl board configuration file.
4  *
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>
9  *
10  * SPDX-License-Identifier:     GPL-2.0+
11  */
12
13 #ifndef __CONFIG_CGTQMX6EVAL_H
14 #define __CONFIG_CGTQMX6EVAL_H
15
16 #include "mx6_common.h"
17
18 #define CONFIG_MACH_TYPE        4122
19
20 #ifdef CONFIG_SPL
21 #define CONFIG_SYS_SPI_U_BOOT_OFFS      (64 * 1024)
22 #define CONFIG_SPL_SPI_LOAD
23 #include "imx6_spl.h"
24 #endif
25
26 /* Size of malloc() pool */
27 #define CONFIG_SYS_MALLOC_LEN           (10 * 1024 * 1024)
28
29 #define CONFIG_MISC_INIT_R
30
31 #define CONFIG_MXC_UART
32 #define CONFIG_MXC_UART_BASE           UART2_BASE
33
34 /* MMC Configs */
35 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
36
37 /* SPI NOR */
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)
45
46 /* Thermal support */
47 #define CONFIG_IMX_THERMAL
48
49 /* I2C Configs */
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
56
57 /* PMIC */
58 #define CONFIG_POWER
59 #define CONFIG_POWER_I2C
60 #define CONFIG_POWER_PFUZE100
61 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
62
63 /* USB Configs */
64 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
65 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
66 #define CONFIG_MXC_USB_FLAGS    0
67 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
68
69 #define CONFIG_USBD_HS
70
71 #define CONFIG_USB_FUNCTION_MASS_STORAGE
72
73 /* Framebuffer */
74 #define CONFIG_VIDEO_IPUV3
75 #define CONFIG_VIDEO_BMP_RLE8
76 #define CONFIG_SPLASH_SCREEN
77 #define CONFIG_SPLASH_SCREEN_ALIGN
78 #define CONFIG_BMP_16BPP
79 #define CONFIG_VIDEO_LOGO
80 #define CONFIG_VIDEO_BMP_LOGO
81 #define CONFIG_IMX_HDMI
82
83 /* SATA */
84 #define CONFIG_SYS_SATA_MAX_DEVICE      1
85 #define CONFIG_DWC_AHSATA_PORT_ID       0
86 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
87 #define CONFIG_LBA48
88 #define CONFIG_LIBATA
89
90 /* Ethernet */
91 #define CONFIG_FEC_MXC
92 #define CONFIG_MII
93 #define IMX_FEC_BASE                    ENET_BASE_ADDR
94 #define CONFIG_FEC_XCV_TYPE             RGMII
95 #define CONFIG_ETHPRIME                 "FEC"
96 #define CONFIG_FEC_MXC_PHYADDR          6
97 #define CONFIG_PHY_ATHEROS
98
99 /* Command definition */
100
101 #define CONFIG_MXC_UART_BASE    UART2_BASE
102 #define CONSOLE_DEV     "ttymxc1"
103 #define CONFIG_MMCROOT          "/dev/mmcblk0p2"
104 #define CONFIG_SYS_MMC_ENV_DEV          0
105
106 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
107 #define CONFIG_EXTRA_ENV_SETTINGS \
108         "script=boot.scr\0" \
109         "image=zImage\0" \
110         "fdtfile=undefined\0" \
111         "fdt_addr_r=0x18000000\0" \
112         "boot_fdt=try\0" \
113         "ip_dyn=yes\0" \
114         "console=" CONSOLE_DEV "\0" \
115         "dfuspi=dfu 0 sf 0:0:10000000:0\0" \
116         "dfu_alt_info_spl=spl raw 0x400\0" \
117         "dfu_alt_info_img=u-boot raw 0x10000\0" \
118         "dfu_alt_info=spl raw 0x400\0" \
119         "bootm_size=0x10000000\0" \
120         "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
121         "mmcpart=1\0" \
122         "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
123         "update_sd_firmware=" \
124                 "if test ${ip_dyn} = yes; then " \
125                         "setenv get_cmd dhcp; " \
126                 "else " \
127                         "setenv get_cmd tftp; " \
128                 "fi; " \
129                 "if mmc dev ${mmcdev}; then "   \
130                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
131                                 "setexpr fw_sz ${filesize} / 0x200; " \
132                                 "setexpr fw_sz ${fw_sz} + 1; "  \
133                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
134                         "fi; "  \
135                 "fi\0" \
136         "mmcargs=setenv bootargs console=${console},${baudrate} " \
137                 "root=${mmcroot}\0" \
138         "loadbootscript=" \
139                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
140         "bootscript=echo Running bootscript from mmc ...; " \
141                 "source\0" \
142         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
143         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}\0" \
144         "mmcboot=echo Booting from mmc ...; " \
145                 "run mmcargs; " \
146                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
147                         "if run loadfdt; then " \
148                                 "bootz ${loadaddr} - ${fdt_addr_r}; " \
149                         "else " \
150                                 "if test ${boot_fdt} = try; then " \
151                                         "bootz; " \
152                                 "else " \
153                                         "echo WARN: Cannot load the DT; " \
154                                 "fi; " \
155                         "fi; " \
156                 "else " \
157                         "bootz; " \
158                 "fi;\0" \
159         "findfdt="\
160                 "if test $board_rev = MX6Q ; then " \
161                         "setenv fdtfile imx6q-qmx6.dtb; fi; " \
162                 "if test $board_rev = MX6DL ; then " \
163                         "setenv fdtfile imx6dl-qmx6.dtb; fi; " \
164                 "if test $fdtfile = undefined; then " \
165                         "echo WARNING: Could not determine dtb to use; fi; \0" \
166         "netargs=setenv bootargs console=${console},${baudrate} " \
167                 "root=/dev/nfs " \
168                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
169         "netboot=echo Booting from net ...; " \
170                 "run netargs; " \
171                 "if test ${ip_dyn} = yes; then " \
172                         "setenv get_cmd dhcp; " \
173                 "else " \
174                         "setenv get_cmd tftp; " \
175                 "fi; " \
176                 "${get_cmd} ${image}; " \
177                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
178                         "if ${get_cmd} ${fdt_addr_r} ${fdtfile}; then " \
179                                 "bootz ${loadaddr} - ${fdt_addr_r}; " \
180                         "else " \
181                                 "if test ${boot_fdt} = try; then " \
182                                         "bootz; " \
183                                 "else " \
184                                         "echo WARN: Cannot load the DT; " \
185                                 "fi; " \
186                         "fi; " \
187                 "else " \
188                         "bootz; " \
189                 "fi;\0" \
190         "spilock=sf probe && sf protect lock 0x3f0000 0x10000;"\
191
192 #define CONFIG_BOOTCOMMAND \
193         "run spilock;"      \
194         "run findfdt; " \
195         "mmc dev ${mmcdev};" \
196         "if mmc rescan; then " \
197                 "if run loadbootscript; then " \
198                 "run bootscript; " \
199                 "else " \
200                         "if run loadimage; then " \
201                                 "run mmcboot; " \
202                         "else run netboot; " \
203                         "fi; " \
204                 "fi; " \
205         "else run netboot; fi"
206
207 #define CONFIG_SYS_MEMTEST_START       0x10000000
208 #define CONFIG_SYS_MEMTEST_END         0x10010000
209 #define CONFIG_SYS_MEMTEST_SCRATCH     0x10800000
210
211 /* Physical Memory Map */
212 #define CONFIG_NR_DRAM_BANKS           1
213 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
214
215 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
216 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
217 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
218
219 #define CONFIG_SYS_INIT_SP_OFFSET \
220         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
221 #define CONFIG_SYS_INIT_SP_ADDR \
222         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
223
224 /* Environment organization */
225 #if defined (CONFIG_ENV_IS_IN_MMC)
226 #define CONFIG_ENV_OFFSET               (6 * 64 * 1024)
227 #define CONFIG_SYS_MMC_ENV_DEV          0
228 #endif
229
230 #define CONFIG_ENV_SIZE                 (8 * 1024)
231
232 #if defined(CONFIG_ENV_IS_IN_SPI_FLASH)
233 #define CONFIG_ENV_OFFSET               (768 * 1024)
234 #define CONFIG_ENV_SECT_SIZE            (64 * 1024)
235 #define CONFIG_ENV_SPI_BUS              CONFIG_SF_DEFAULT_BUS
236 #define CONFIG_ENV_SPI_CS               CONFIG_SF_DEFAULT_CS
237 #define CONFIG_ENV_SPI_MODE             CONFIG_SF_DEFAULT_MODE
238 #define CONFIG_ENV_SPI_MAX_HZ           CONFIG_SF_DEFAULT_SPEED
239 #endif
240
241 #endif                         /* __CONFIG_CGTQMX6EVAL_H */