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