Merge tag 'mmc-10-29-2019' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
[oweals/u-boot.git] / include / configs / cm_fx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Config file for Compulab CM-FX6 board
4  *
5  * Copyright (C) 2014, Compulab Ltd - http://compulab.co.il/
6  *
7  * Author: Nikita Kiryanov <nikita@compulab.co.il>
8  */
9
10 #ifndef __CONFIG_CM_FX6_H
11 #define __CONFIG_CM_FX6_H
12
13 #include "mx6_common.h"
14
15 /* Machine config */
16 #define CONFIG_SYS_LITTLE_ENDIAN
17 #define CONFIG_MACH_TYPE                4273
18
19 /* MMC */
20 #define CONFIG_SYS_FSL_USDHC_NUM        3
21 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
22
23 /* RAM */
24 #define PHYS_SDRAM_1                    MMDC0_ARB_BASE_ADDR
25 #define PHYS_SDRAM_2                    MMDC1_ARB_BASE_ADDR
26 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
27 #define CONFIG_SYS_MEMTEST_START        0x10000000
28 #define CONFIG_SYS_MEMTEST_END          0x10010000
29 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
30 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
31 #define CONFIG_SYS_INIT_SP_OFFSET \
32         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
33 #define CONFIG_SYS_INIT_SP_ADDR \
34         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
35
36 /* Serial console */
37 #define CONFIG_MXC_UART
38 #define CONFIG_MXC_UART_BASE            UART4_BASE
39 #define CONFIG_SYS_BAUDRATE_TABLE       {9600, 19200, 38400, 57600, 115200}
40
41 /* Environment */
42 #define CONFIG_ENV_SECT_SIZE            (64 * 1024)
43 #define CONFIG_ENV_SIZE                 (8 * 1024)
44 #define CONFIG_ENV_OFFSET               (768 * 1024)
45
46 #ifndef CONFIG_SPL_BUILD
47 #define CONFIG_EXTRA_ENV_SETTINGS \
48         "fdt_high=0xffffffff\0" \
49         "initrd_high=0xffffffff\0" \
50         "fdt_addr_r=0x18000000\0" \
51         "ramdisk_addr_r=0x13000000\0" \
52         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
53         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
54         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
55         "fdtfile=undefined\0" \
56         "stdin=serial,usbkbd\0" \
57         "stdout=serial,vga\0" \
58         "stderr=serial,vga\0" \
59         "panel=HDMI\0" \
60         "autoload=no\0" \
61         "uImage=uImage-cm-fx6\0" \
62         "zImage=zImage-cm-fx6\0" \
63         "kernel=uImage-cm-fx6\0" \
64         "dtb=cm-fx6.dtb\0" \
65         "console=ttymxc3,115200\0" \
66         "ethprime=FEC0\0" \
67         "video_hdmi=mxcfb0:dev=hdmi,1920x1080M-32@50,if=RGB32\0" \
68         "video_dvi=mxcfb0:dev=dvi,1280x800M-32@50,if=RGB32\0" \
69         "doboot=bootm ${kernel_addr_r}\0" \
70         "doloadfdt=false\0" \
71         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
72         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
73         "setboottypez=setenv kernel ${zImage};" \
74                 "setenv doboot bootz ${kernel_addr_r} - ${fdt_addr_r};" \
75                 "setenv doloadfdt true;\0" \
76         "setboottypem=setenv kernel ${uImage};" \
77                 "setenv doboot bootm ${kernel_addr_r};" \
78                 "setenv doloadfdt false;\0"\
79         "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
80         "sataroot=/dev/sda2 rw rootwait\0" \
81         "nandroot=/dev/mtdblock4 rw\0" \
82         "nandrootfstype=ubifs\0" \
83         "mmcargs=setenv bootargs console=${console} root=${mmcroot} " \
84                 "${video} ${extrabootargs}\0" \
85         "sataargs=setenv bootargs console=${console} root=${sataroot} " \
86                 "${video} ${extrabootargs}\0" \
87         "nandargs=setenv bootargs console=${console} " \
88                 "root=${nandroot} " \
89                 "rootfstype=${nandrootfstype} " \
90                 "${video} ${extrabootargs}\0" \
91         "nandboot=if run nandloadkernel; then " \
92                         "run nandloadfdt;" \
93                         "run setboottypem;" \
94                         "run storagebootcmd;" \
95                         "run setboottypez;" \
96                         "run storagebootcmd;" \
97                 "fi;\0" \
98         "run_eboot=echo Starting EBOOT ...; "\
99                 "mmc dev 2 && " \
100                 "mmc rescan && mmc read 10042000 a 400 && go 10042000\0" \
101         "loadkernel=load ${storagetype} ${storagedev} ${kernel_addr_r} ${kernel};\0"\
102         "loadfdt=load ${storagetype} ${storagedev} ${fdt_addr_r} ${dtb};\0" \
103         "nandloadkernel=nand read ${kernel_addr_r} 0 780000;\0" \
104         "nandloadfdt=nand read ${fdt_addr_r} 780000 80000;\0" \
105         "setupmmcboot=setenv storagetype mmc; setenv storagedev 2;\0" \
106         "setupsataboot=setenv storagetype sata; setenv storagedev 0;\0" \
107         "setupnandboot=setenv storagetype nand;\0" \
108         "storagebootcmd=echo Booting from ${storagetype} ...;" \
109                         "run ${storagetype}args; run doboot;\0" \
110         "trybootk=if run loadkernel; then " \
111                 "if ${doloadfdt}; then " \
112                         "run loadfdt;" \
113                 "fi;" \
114                 "run storagebootcmd;" \
115                 "fi;\0" \
116         "trybootsmz=" \
117                 "run setboottypem;" \
118                 "run trybootk;" \
119                 "run setboottypez;" \
120                 "run trybootk;\0" \
121         "legacy_bootcmd=" \
122                 "run setupmmcboot;" \
123                 "mmc dev ${storagedev};" \
124                 "if mmc rescan; then " \
125                         "run trybootsmz;" \
126                 "fi;" \
127                 "run setupsataboot;" \
128                 "if sata init; then " \
129                         "run trybootsmz;" \
130                 "fi;" \
131                 "run setupnandboot;" \
132                 "run nandboot;\0" \
133         "findfdt="\
134                 "if test $board_name = Utilite && test $board_rev = MX6Q ; then " \
135                         "setenv fdtfile imx6q-utilite-pro.dtb; fi; " \
136                 "if test $fdtfile = undefined; then " \
137                         "echo WARNING: Could not determine dtb to use; fi; \0" \
138         BOOTENV
139
140 #define BOOT_TARGET_DEVICES(func) \
141         func(USB, usb, 0) \
142         func(MMC, mmc, 2) \
143         func(SATA, sata, 0)
144
145 #include <config_distro_bootcmd.h>
146 #else
147 #define CONFIG_EXTRA_ENV_SETTINGS
148 #endif
149
150 /* NAND */
151 #ifndef CONFIG_SPL_BUILD
152 #define CONFIG_SYS_NAND_BASE            0x40000000
153 #define CONFIG_SYS_NAND_MAX_CHIPS       1
154 #define CONFIG_SYS_MAX_NAND_DEVICE      1
155 #define CONFIG_SYS_NAND_ONFI_DETECTION
156 /* APBH DMA is required for NAND support */
157 #endif
158
159 /* Ethernet */
160 #define CONFIG_FEC_MXC
161 #define CONFIG_FEC_MXC_PHYADDR          0
162 #define CONFIG_FEC_XCV_TYPE             RGMII
163 #define IMX_FEC_BASE                    ENET_BASE_ADDR
164 #define CONFIG_PHY_ATHEROS
165 #define CONFIG_ETHPRIME                 "FEC0"
166 #define CONFIG_ARP_TIMEOUT              200UL
167 #define CONFIG_NET_RETRY_COUNT          5
168
169 /* USB */
170 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
171 #define CONFIG_MXC_USB_FLAGS            0
172 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
173 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
174
175 /* I2C */
176 #define CONFIG_SYS_I2C
177 #define CONFIG_SYS_I2C_MXC
178 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
179 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
180 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
181 #define CONFIG_SYS_I2C_SPEED            100000
182 #define CONFIG_SYS_MXC_I2C3_SPEED       400000
183
184 #define CONFIG_SYS_I2C_EEPROM_ADDR      0x50
185 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN  1
186 #define CONFIG_SYS_I2C_EEPROM_BUS       2
187
188 /* SATA */
189 #define CONFIG_SYS_SATA_MAX_DEVICE      1
190 #define CONFIG_LBA48
191 #define CONFIG_DWC_AHSATA_PORT_ID       0
192 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
193
194 /* Boot */
195 #define CONFIG_SYS_BOOTMAPSZ            (8 << 20)
196 #define CONFIG_SERIAL_TAG
197
198 /* misc */
199 #define CONFIG_SYS_MALLOC_LEN                   (10 * 1024 * 1024)
200
201 /* SPL */
202 #include "imx6_spl.h"
203
204 /* Display */
205 #define CONFIG_IMX_HDMI
206
207 #define CONFIG_SPLASH_SCREEN
208 #define CONFIG_SPLASH_SOURCE
209 #define CONFIG_VIDEO_BMP_RLE8
210
211 #define CONFIG_VIDEO_LOGO
212 #define CONFIG_VIDEO_BMP_LOGO
213
214 /* EEPROM */
215 #define CONFIG_ENV_EEPROM_IS_ON_I2C
216 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN          1
217 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS       4
218 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS   5
219 #define CONFIG_SYS_EEPROM_SIZE                  256
220
221 #endif  /* __CONFIG_CM_FX6_H */