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