xref: /openbmc/u-boot/include/configs/mx53ard.h (revision 78d1e1d0)
1 /*
2  * Copyright (C) 2011 Freescale Semiconductor, Inc.
3  *
4  * Configuration settings for the MX53ARD Freescale board.
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11 
12 #define CONFIG_MX53
13 
14 #define CONFIG_DISPLAY_CPUINFO
15 #define CONFIG_DISPLAY_BOARDINFO
16 
17 #define CONFIG_MACH_TYPE	MACH_TYPE_MX53_ARD
18 
19 #include <asm/arch/imx-regs.h>
20 
21 #define CONFIG_CMDLINE_TAG			/* enable passing of ATAGs */
22 #define CONFIG_SETUP_MEMORY_TAGS
23 #define CONFIG_INITRD_TAG
24 #define CONFIG_REVISION_TAG
25 
26 #define CONFIG_SYS_FSL_CLK
27 
28 /* Size of malloc() pool */
29 #define CONFIG_SYS_MALLOC_LEN		(CONFIG_ENV_SIZE + 2 * 1024 * 1024)
30 
31 #define CONFIG_BOARD_EARLY_INIT_F
32 #define CONFIG_MXC_GPIO
33 
34 #define CONFIG_CMD_BOOTZ
35 
36 #define CONFIG_SYS_MAX_NAND_DEVICE	1
37 #define CONFIG_SYS_NAND_BASE		NFC_BASE_ADDR_AXI
38 #define CONFIG_NAND_MXC
39 #define CONFIG_MXC_NAND_REGS_BASE	NFC_BASE_ADDR_AXI
40 #define CONFIG_MXC_NAND_IP_REGS_BASE	NFC_BASE_ADDR
41 #define CONFIG_SYS_NAND_LARGEPAGE
42 #define CONFIG_MXC_NAND_HWECC
43 #define CONFIG_SYS_NAND_USE_FLASH_BBT
44 #define CONFIG_CMD_NAND
45 
46 #define CONFIG_MXC_UART
47 #define CONFIG_MXC_UART_BASE	UART1_BASE
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_I2C3		/* enable I2C bus 3 */
55 
56 /* MMC Configs */
57 #define CONFIG_FSL_ESDHC
58 #define CONFIG_SYS_FSL_ESDHC_ADDR	0
59 #define CONFIG_SYS_FSL_ESDHC_NUM	2
60 
61 #define CONFIG_MMC
62 #define CONFIG_CMD_MMC
63 #define CONFIG_GENERIC_MMC
64 #define CONFIG_CMD_FAT
65 #define CONFIG_DOS_PARTITION
66 
67 /* Eth Configs */
68 #define CONFIG_HAS_ETH1
69 #define CONFIG_MII
70 
71 #define CONFIG_CMD_MII
72 
73 /* allow to overwrite serial and ethaddr */
74 #define CONFIG_ENV_OVERWRITE
75 #define CONFIG_CONS_INDEX		1
76 #define CONFIG_BAUDRATE			115200
77 
78 /* Command definition */
79 #define CONFIG_BOOTDELAY	3
80 
81 #define CONFIG_ETHPRIME		"smc911x"
82 
83 /*Support LAN9217*/
84 #define CONFIG_SMC911X
85 #define CONFIG_SMC911X_16_BIT
86 #define CONFIG_SMC911X_BASE CS1_BASE_ADDR
87 
88 #define CONFIG_LOADADDR		0x72000000	/* loadaddr env var */
89 #define CONFIG_SYS_TEXT_BASE    0x77800000
90 
91 #define CONFIG_DEFAULT_FDT_FILE		"imx53-ard.dtb"
92 
93 #define CONFIG_EXTRA_ENV_SETTINGS \
94 	"script=boot.scr\0" \
95 	"uimage=zImage\0" \
96 	"console=ttymxc0\0" \
97 	"fdt_high=0xffffffff\0" \
98 	"initrd_high=0xffffffff\0" \
99 	"fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
100 	"fdt_addr=0x78000000\0" \
101 	"boot_fdt=try\0" \
102 	"ip_dyn=yes\0" \
103 	"mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
104 	"mmcpart=1\0" \
105 	"mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
106 	"update_sd_firmware_filename=u-boot.imx\0" \
107 	"update_sd_firmware=" \
108 		"if test ${ip_dyn} = yes; then " \
109 			"setenv get_cmd dhcp; " \
110 		"else " \
111 			"setenv get_cmd tftp; " \
112 		"fi; " \
113 		"if mmc dev ${mmcdev}; then "	\
114 			"if ${get_cmd} ${update_sd_firmware_filename}; then " \
115 				"setexpr fw_sz ${filesize} / 0x200; " \
116 				"setexpr fw_sz ${fw_sz} + 1; "	\
117 				"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
118 			"fi; "	\
119 		"fi\0" \
120 	"mmcargs=setenv bootargs console=${console},${baudrate} " \
121 		"root=${mmcroot}\0" \
122 	"loadbootscript=" \
123 		"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
124 	"bootscript=echo Running bootscript from mmc ...; " \
125 		"source\0" \
126 	"loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
127 	"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
128 	"mmcboot=echo Booting from mmc ...; " \
129 		"run mmcargs; " \
130 		"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
131 			"if run loadfdt; then " \
132 				"bootz ${loadaddr} - ${fdt_addr}; " \
133 			"else " \
134 				"if test ${boot_fdt} = try; then " \
135 					"bootz; " \
136 				"else " \
137 					"echo WARN: Cannot load the DT; " \
138 				"fi; " \
139 			"fi; " \
140 		"else " \
141 			"bootz; " \
142 		"fi;\0" \
143 	"netargs=setenv bootargs console=${console},${baudrate} " \
144 		"root=/dev/nfs " \
145 	"ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
146 		"netboot=echo Booting from net ...; " \
147 		"run netargs; " \
148 		"if test ${ip_dyn} = yes; then " \
149 			"setenv get_cmd dhcp; " \
150 		"else " \
151 			"setenv get_cmd tftp; " \
152 		"fi; " \
153 		"${get_cmd} ${uimage}; " \
154 		"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
155 			"if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
156 				"bootz ${loadaddr} - ${fdt_addr}; " \
157 			"else " \
158 				"if test ${boot_fdt} = try; then " \
159 					"bootz; " \
160 				"else " \
161 					"echo WARN: Cannot load the DT; " \
162 				"fi; " \
163 			"fi; " \
164 		"else " \
165 			"bootz; " \
166 		"fi;\0"
167 
168 #define CONFIG_BOOTCOMMAND \
169 	   "mmc dev ${mmcdev}; if mmc rescan; then " \
170 		   "if run loadbootscript; then " \
171 			   "run bootscript; " \
172 		   "else " \
173 			   "if run loaduimage; then " \
174 				   "run mmcboot; " \
175 			   "else run netboot; " \
176 			   "fi; " \
177 		   "fi; " \
178 	   "else run netboot; fi"
179 
180 #define CONFIG_ARP_TIMEOUT	200UL
181 
182 /* Miscellaneous configurable options */
183 #define CONFIG_SYS_LONGHELP		/* undef to save memory */
184 #define CONFIG_AUTO_COMPLETE
185 #define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
186 
187 /* Print Buffer Size */
188 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
189 #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
190 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
191 
192 #define CONFIG_SYS_MEMTEST_START       0x70000000
193 #define CONFIG_SYS_MEMTEST_END         0x70010000
194 
195 #define CONFIG_SYS_LOAD_ADDR		CONFIG_LOADADDR
196 
197 #define CONFIG_CMDLINE_EDITING
198 
199 /* Physical Memory Map */
200 #define CONFIG_NR_DRAM_BANKS	2
201 #define PHYS_SDRAM_1		CSD0_BASE_ADDR
202 #define PHYS_SDRAM_1_SIZE	(512 * 1024 * 1024)
203 #define PHYS_SDRAM_2		CSD1_BASE_ADDR
204 #define PHYS_SDRAM_2_SIZE	(512 * 1024 * 1024)
205 #define PHYS_SDRAM_SIZE         (PHYS_SDRAM_1_SIZE + PHYS_SDRAM_2_SIZE)
206 
207 #define CONFIG_SYS_SDRAM_BASE		(PHYS_SDRAM_1)
208 #define CONFIG_SYS_INIT_RAM_ADDR	(IRAM_BASE_ADDR)
209 #define CONFIG_SYS_INIT_RAM_SIZE	(IRAM_SIZE)
210 
211 #define CONFIG_SYS_INIT_SP_OFFSET \
212 	(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
213 #define CONFIG_SYS_INIT_SP_ADDR \
214 	(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
215 
216 /* FLASH and environment organization */
217 #define CONFIG_SYS_NO_FLASH
218 
219 #define CONFIG_ENV_OFFSET      (6 * 64 * 1024)
220 #define CONFIG_ENV_SIZE        (8 * 1024)
221 #define CONFIG_ENV_IS_IN_MMC
222 #define CONFIG_SYS_MMC_ENV_DEV	0
223 
224 
225 #define MX53ARD_CS1GCR1		(CSEN | DSZ(2))
226 #define MX53ARD_CS1RCR1		(RCSN(2) | OEN (1) | RWSC(22))
227 #define MX53ARD_CS1RCR2		RBEN(2)
228 #define MX53ARD_CS1WCR1		(WCSN(2) | WEN(2) | WBEN(2) | WWSC(22))
229 
230 #endif				/* __CONFIG_H */
231