Merge tag 'xilinx-for-v2020.07-rc2' of https://gitlab.denx.de/u-boot/custodians/u...
[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
43 #ifndef CONFIG_SPL_BUILD
44 #define CONFIG_EXTRA_ENV_SETTINGS \
45         "fdt_high=0xffffffff\0" \
46         "initrd_high=0xffffffff\0" \
47         "fdt_addr_r=0x18000000\0" \
48         "ramdisk_addr_r=0x13000000\0" \
49         "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
50         "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
51         "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
52         "fdtfile=undefined\0" \
53         "stdin=serial,usbkbd\0" \
54         "stdout=serial,vga\0" \
55         "stderr=serial,vga\0" \
56         "panel=HDMI\0" \
57         "autoload=no\0" \
58         "uImage=uImage-cm-fx6\0" \
59         "zImage=zImage-cm-fx6\0" \
60         "kernel=uImage-cm-fx6\0" \
61         "dtb=cm-fx6.dtb\0" \
62         "console=ttymxc3,115200\0" \
63         "ethprime=FEC0\0" \
64         "video_hdmi=mxcfb0:dev=hdmi,1920x1080M-32@50,if=RGB32\0" \
65         "video_dvi=mxcfb0:dev=dvi,1280x800M-32@50,if=RGB32\0" \
66         "doboot=bootm ${kernel_addr_r}\0" \
67         "doloadfdt=false\0" \
68         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
69         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
70         "setboottypez=setenv kernel ${zImage};" \
71                 "setenv doboot bootz ${kernel_addr_r} - ${fdt_addr_r};" \
72                 "setenv doloadfdt true;\0" \
73         "setboottypem=setenv kernel ${uImage};" \
74                 "setenv doboot bootm ${kernel_addr_r};" \
75                 "setenv doloadfdt false;\0"\
76         "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
77         "sataroot=/dev/sda2 rw rootwait\0" \
78         "nandroot=/dev/mtdblock4 rw\0" \
79         "nandrootfstype=ubifs\0" \
80         "mmcargs=setenv bootargs console=${console} root=${mmcroot} " \
81                 "${video} ${extrabootargs}\0" \
82         "sataargs=setenv bootargs console=${console} root=${sataroot} " \
83                 "${video} ${extrabootargs}\0" \
84         "nandargs=setenv bootargs console=${console} " \
85                 "root=${nandroot} " \
86                 "rootfstype=${nandrootfstype} " \
87                 "${video} ${extrabootargs}\0" \
88         "nandboot=if run nandloadkernel; then " \
89                         "run nandloadfdt;" \
90                         "run setboottypem;" \
91                         "run storagebootcmd;" \
92                         "run setboottypez;" \
93                         "run storagebootcmd;" \
94                 "fi;\0" \
95         "run_eboot=echo Starting EBOOT ...; "\
96                 "mmc dev 2 && " \
97                 "mmc rescan && mmc read 10042000 a 400 && go 10042000\0" \
98         "loadkernel=load ${storagetype} ${storagedev} ${kernel_addr_r} ${kernel};\0"\
99         "loadfdt=load ${storagetype} ${storagedev} ${fdt_addr_r} ${dtb};\0" \
100         "nandloadkernel=nand read ${kernel_addr_r} 0 780000;\0" \
101         "nandloadfdt=nand read ${fdt_addr_r} 780000 80000;\0" \
102         "setupmmcboot=setenv storagetype mmc; setenv storagedev 2;\0" \
103         "setupsataboot=setenv storagetype sata; setenv storagedev 0;\0" \
104         "setupnandboot=setenv storagetype nand;\0" \
105         "storagebootcmd=echo Booting from ${storagetype} ...;" \
106                         "run ${storagetype}args; run doboot;\0" \
107         "trybootk=if run loadkernel; then " \
108                 "if ${doloadfdt}; then " \
109                         "run loadfdt;" \
110                 "fi;" \
111                 "run storagebootcmd;" \
112                 "fi;\0" \
113         "trybootsmz=" \
114                 "run setboottypem;" \
115                 "run trybootk;" \
116                 "run setboottypez;" \
117                 "run trybootk;\0" \
118         "legacy_bootcmd=" \
119                 "run setupmmcboot;" \
120                 "mmc dev ${storagedev};" \
121                 "if mmc rescan; then " \
122                         "run trybootsmz;" \
123                 "fi;" \
124                 "run setupsataboot;" \
125                 "if sata init; then " \
126                         "run trybootsmz;" \
127                 "fi;" \
128                 "run setupnandboot;" \
129                 "run nandboot;\0" \
130         "findfdt="\
131                 "if test $board_name = Utilite && test $board_rev = MX6Q ; then " \
132                         "setenv fdtfile imx6q-utilite-pro.dtb; fi; " \
133                 "if test $fdtfile = undefined; then " \
134                         "echo WARNING: Could not determine dtb to use; fi; \0" \
135         BOOTENV
136
137 #define BOOT_TARGET_DEVICES(func) \
138         func(USB, usb, 0) \
139         func(MMC, mmc, 2) \
140         func(SATA, sata, 0)
141
142 #include <config_distro_bootcmd.h>
143 #else
144 #define CONFIG_EXTRA_ENV_SETTINGS
145 #endif
146
147 /* NAND */
148 #ifndef CONFIG_SPL_BUILD
149 #define CONFIG_SYS_NAND_BASE            0x40000000
150 #define CONFIG_SYS_NAND_MAX_CHIPS       1
151 #define CONFIG_SYS_MAX_NAND_DEVICE      1
152 #define CONFIG_SYS_NAND_ONFI_DETECTION
153 /* APBH DMA is required for NAND support */
154 #endif
155
156 /* SPI Flash Configs */
157 #if defined(CONFIG_SPL_BUILD)
158 #undef CONFIG_DM_SPI
159 #undef CONFIG_DM_SPI_FLASH
160 #undef CONFIG_SPI_FLASH_MTD
161 #endif
162
163 /* Ethernet */
164 #define CONFIG_FEC_MXC
165 #define CONFIG_FEC_MXC_PHYADDR          0
166 #define CONFIG_FEC_XCV_TYPE             RGMII
167 #define IMX_FEC_BASE                    ENET_BASE_ADDR
168 #define CONFIG_ETHPRIME                 "FEC0"
169 #define CONFIG_ARP_TIMEOUT              200UL
170 #define CONFIG_NET_RETRY_COUNT          5
171
172 /* USB */
173 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
174 #define CONFIG_MXC_USB_FLAGS            0
175 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
176 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
177
178 /* I2C */
179 #define CONFIG_SYS_I2C
180 #define CONFIG_SYS_I2C_MXC
181 #define CONFIG_SYS_I2C_MXC_I2C1         /* enable I2C bus 1 */
182 #define CONFIG_SYS_I2C_MXC_I2C2         /* enable I2C bus 2 */
183 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
184 #define CONFIG_SYS_I2C_SPEED            100000
185 #define CONFIG_SYS_MXC_I2C3_SPEED       400000
186
187 #define CONFIG_SYS_I2C_EEPROM_ADDR      0x50
188 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN  1
189 #define CONFIG_SYS_I2C_EEPROM_BUS       2
190
191 /* SATA */
192 #define CONFIG_SYS_SATA_MAX_DEVICE      1
193 #define CONFIG_LBA48
194 #define CONFIG_DWC_AHSATA_PORT_ID       0
195 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_ARB_BASE_ADDR
196
197 /* Boot */
198 #define CONFIG_SYS_BOOTMAPSZ            (8 << 20)
199 #define CONFIG_SERIAL_TAG
200
201 /* misc */
202 #define CONFIG_SYS_MALLOC_LEN                   (10 * 1024 * 1024)
203
204 /* SPL */
205 #include "imx6_spl.h"
206
207 /* Display */
208 #define CONFIG_IMX_HDMI
209
210 #define CONFIG_SPLASH_SCREEN
211 #define CONFIG_SPLASH_SOURCE
212 #define CONFIG_VIDEO_BMP_RLE8
213
214 #define CONFIG_VIDEO_LOGO
215 #define CONFIG_VIDEO_BMP_LOGO
216
217 /* EEPROM */
218 #define CONFIG_ENV_EEPROM_IS_ON_I2C
219 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN          1
220 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS       4
221 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS   5
222 #define CONFIG_SYS_EEPROM_SIZE                  256
223
224 #endif  /* __CONFIG_CM_FX6_H */