xref: /openbmc/u-boot/include/configs/tao3530.h (revision 7ffce4f1)
1 /*
2  * Configuration settings for the TechNexion TAO-3530 SOM
3  * equipped on Thunder baseboard.
4  *
5  * Edward Lin <linuxfae@technexion.com>
6  * Tapani Utriainen <linuxfae@technexion.com>
7  *
8  * Copyright (C) 2013 Stefan Roese <sr@denx.de>
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #ifndef __CONFIG_H
14 #define __CONFIG_H
15 
16 /*
17  * High Level Configuration Options
18  */
19 #define CONFIG_OMAP			/* in a TI OMAP core */
20 
21 #define CONFIG_OMAP_GPIO
22 
23 #define CONFIG_SDRC			/* Has an SDRC controller */
24 
25 #include <asm/arch/cpu.h>		/* get chip and board defs */
26 #include <asm/arch/omap.h>
27 
28 /* Clock Defines */
29 #define V_OSCK			26000000	/* Clock output from T2 */
30 #define V_SCLK			(V_OSCK >> 1)
31 
32 #define CONFIG_MISC_INIT_R
33 
34 #define CONFIG_CMDLINE_TAG
35 #define CONFIG_SETUP_MEMORY_TAGS
36 #define CONFIG_INITRD_TAG
37 #define CONFIG_REVISION_TAG
38 
39 /*
40  * Size of malloc() pool
41  */
42 #define CONFIG_SYS_MALLOC_LEN		(4 << 20)
43 #define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB sector */
44 
45 /*
46  * Hardware drivers
47  */
48 
49 /*
50  * NS16550 Configuration
51  */
52 #define V_NS16550_CLK			48000000	/* 48MHz (APLL96/2) */
53 
54 #define CONFIG_SYS_NS16550_SERIAL
55 #define CONFIG_SYS_NS16550_REG_SIZE	(-4)
56 #define CONFIG_SYS_NS16550_CLK		V_NS16550_CLK
57 
58 /*
59  * select serial console configuration
60  */
61 #define CONFIG_CONS_INDEX		3
62 #define CONFIG_SYS_NS16550_COM3		OMAP34XX_UART3
63 
64 /* allow to overwrite serial and ethaddr */
65 #define CONFIG_ENV_OVERWRITE
66 
67 /* GPIO banks */
68 #define CONFIG_OMAP3_GPIO_2		/* GPIO32 ..63  is in GPIO bank 2 */
69 #define CONFIG_OMAP3_GPIO_3		/* GPIO64 ..95  is in GPIO bank 3 */
70 #define CONFIG_OMAP3_GPIO_4		/* GPIO96 ..127 is in GPIO bank 4 */
71 #define CONFIG_OMAP3_GPIO_5		/* GPIO128..159 is in GPIO bank 5 */
72 #define CONFIG_OMAP3_GPIO_6		/* GPIO160..191 is in GPIO bank 6 */
73 
74 /* commands to include */
75 #define CONFIG_CMD_MTDPARTS	/* Enable MTD parts commands */
76 #define CONFIG_MTD_DEVICE	/* needed for mtdparts commands */
77 #define MTDIDS_DEFAULT			"nand0=nand"
78 #define MTDPARTS_DEFAULT		"mtdparts=nand:512k(x-loader),"\
79 					"1920k(u-boot),128k(u-boot-env),"\
80 					"4m(kernel),-(fs)"
81 
82 #define CONFIG_CMD_NAND		/* NAND support			*/
83 
84 #define CONFIG_SYS_I2C
85 #define CONFIG_SYS_I2C_OMAP34XX
86 #define CONFIG_SYS_OMAP24_I2C_SPEED	100000
87 #define CONFIG_SYS_OMAP24_I2C_SLAVE	1
88 #define CONFIG_I2C_MULTI_BUS
89 
90 /*
91  * TWL4030
92  */
93 #define CONFIG_TWL4030_LED
94 
95 /*
96  * Board NAND Info.
97  */
98 #define CONFIG_NAND_OMAP_GPMC
99 #define CONFIG_SYS_NAND_ADDR		NAND_BASE	/* physical address */
100 							/* to access nand */
101 #define CONFIG_SYS_NAND_BASE		NAND_BASE	/* physical address */
102 							/* to access nand at */
103 							/* CS0 */
104 
105 #define CONFIG_SYS_MAX_NAND_DEVICE	1		/* Max number of NAND */
106 							/* devices */
107 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
108 /* Environment information */
109 
110 #define CONFIG_EXTRA_ENV_SETTINGS \
111 	"loadaddr=0x82000000\0" \
112 	"console=ttyO2,115200n8\0" \
113 	"mpurate=600\0" \
114 	"dvi_mode=omapfb.mode=dvi:1280x720-24@60\0" \
115 	"tv_mode=omapfb.mode=tv:ntsc\0" \
116 	"video_mode=omapdss.def_disp=lcd vram=6M omapfb.vram=0:2M,1:2M,2:2M\0" \
117 	"lcd_mode=omapfb.mode=lcd:800x480@60 \0" \
118 	"extra_options= \0" \
119 	"mmcdev=0\0" \
120 	"mmcroot=/dev/mmcblk0p2 rw\0" \
121 	"mmcrootfstype=ext3 rootwait\0" \
122 	"nandroot=ubi0:rootfs ubi.mtd=4\0" \
123 	"nandrootfstype=ubifs\0" \
124 	"mmcargs=setenv bootargs console=${console} " \
125 		"mpurate=${mpurate} " \
126 		"${video_mode} " \
127 		"root=${mmcroot} " \
128 		"rootfstype=${mmcrootfstype} " \
129 		"${extra_options}\0" \
130 	"nandargs=setenv bootargs console=${console} " \
131 		"mpurate=${mpurate} " \
132 		"${video_mode} " \
133 		"${network_setting} " \
134 		"root=${nandroot} " \
135 		"rootfstype=${nandrootfstype} "\
136 		"${extra_options}\0" \
137 	"loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
138 	"bootscript=echo Running bootscript from mmc ...; " \
139 		"source ${loadaddr}\0" \
140 	"loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
141 	"mmcboot=echo Booting from mmc ...; " \
142 		"run mmcargs; " \
143 		"bootm ${loadaddr}\0" \
144 	"nandboot=echo Booting from nand ...; " \
145 		"run nandargs; " \
146 		"nand read ${loadaddr} 280000 400000; " \
147 		"bootm ${loadaddr}\0" \
148 
149 #define CONFIG_BOOTCOMMAND \
150 	"if mmc rescan ${mmcdev}; then " \
151 		"if run loadbootscript; then " \
152 			"run bootscript; " \
153 		"else " \
154 			"if run loaduimage; then " \
155 				"run mmcboot; " \
156 			"else run nandboot; " \
157 			"fi; " \
158 		"fi; " \
159 	"else run nandboot; fi"
160 
161 /*
162  * Miscellaneous configurable options
163  */
164 #define CONFIG_SYS_LONGHELP		/* undef to save memory */
165 #define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
166 
167 /* turn on command-line edit/hist/auto */
168 #define CONFIG_CMDLINE_EDITING
169 #define CONFIG_AUTO_COMPLETE
170 
171 /* Print Buffer Size */
172 #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE + \
173 					sizeof(CONFIG_SYS_PROMPT) + 16)
174 #define CONFIG_SYS_MAXARGS		16	/* max number of command args */
175 /* Boot Argument Buffer Size */
176 #define CONFIG_SYS_BARGSIZE		(CONFIG_SYS_CBSIZE)
177 
178 #define CONFIG_SYS_ALT_MEMTEST		1
179 #define CONFIG_SYS_MEMTEST_START	(0x82000000)		/* memtest */
180 								/* defaults */
181 #define CONFIG_SYS_MEMTEST_END		(0x83FFFFFF)		/* 64MB */
182 #define CONFIG_SYS_MEMTEST_SCRATCH	(0x81000000)	/* dummy address */
183 
184 #define CONFIG_SYS_LOAD_ADDR		(OMAP34XX_SDRC_CS0)	/* default */
185 							/* load address */
186 #define CONFIG_SYS_TEXT_BASE		0x80008000
187 
188 /*
189  * OMAP3 has 12 GP timers, they can be driven by the system clock
190  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
191  * This rate is divided by a local divisor.
192  */
193 #define CONFIG_SYS_TIMERBASE		(OMAP34XX_GPT2)
194 #define CONFIG_SYS_PTV			2       /* Divisor: 2^(PTV+1) => 8 */
195 
196 /*
197  * Physical Memory Map
198  */
199 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
200 #define PHYS_SDRAM_1		OMAP34XX_SDRC_CS0
201 #define PHYS_SDRAM_1_SIZE	(32 << 20)	/* at least 32 MiB */
202 #define PHYS_SDRAM_2		OMAP34XX_SDRC_CS1
203 
204 /*
205  * FLASH and environment organization
206  */
207 
208 /* **** PISMO SUPPORT *** */
209 #define CONFIG_SYS_MONITOR_LEN		(256 << 10)	/* Reserve 2 sectors */
210 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
211 
212 /* Monitor at start of flash */
213 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
214 #define CONFIG_SYS_ONENAND_BASE		ONENAND_MAP
215 
216 #define CONFIG_ENV_IS_IN_NAND		1
217 #define ONENAND_ENV_OFFSET		0x260000 /* environment starts here */
218 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
219 
220 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)
221 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
222 #define CONFIG_ENV_ADDR			CONFIG_ENV_OFFSET
223 
224 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
225 #define CONFIG_SYS_INIT_RAM_ADDR	0x4020f800
226 #define CONFIG_SYS_INIT_RAM_SIZE	0x800
227 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_INIT_RAM_ADDR + \
228 					 CONFIG_SYS_INIT_RAM_SIZE - \
229 					 GENERATED_GBL_DATA_SIZE)
230 
231 #define CONFIG_OMAP3_SPI
232 
233 /*
234  * USB
235  *
236  * Currently only EHCI is enabled, the MUSB OTG controller
237  * is not enabled.
238  */
239 
240 /* USB EHCI */
241 #define CONFIG_USB_EHCI
242 #define CONFIG_USB_EHCI_OMAP
243 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO	162
244 
245 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
246 #define CONFIG_USB_HOST_ETHER
247 #define CONFIG_USB_ETHER_SMSC95XX
248 
249 #define CONFIG_USB_ETHER
250 #define CONFIG_USB_ETHER_RNDIS
251 
252 /* Defines for SPL */
253 #define CONFIG_SPL_FRAMEWORK
254 #define CONFIG_SPL_NAND_SIMPLE
255 
256 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION	1
257 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME	"u-boot.img"
258 
259 #define CONFIG_SPL_BOARD_INIT
260 #define CONFIG_SPL_NAND_BASE
261 #define CONFIG_SPL_NAND_DRIVERS
262 #define CONFIG_SPL_NAND_ECC
263 #define CONFIG_SPL_OMAP3_ID_NAND
264 #define CONFIG_SPL_LDSCRIPT		"arch/arm/mach-omap2/u-boot-spl.lds"
265 
266 /* NAND boot config */
267 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
268 #define CONFIG_SYS_NAND_PAGE_COUNT	64
269 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
270 #define CONFIG_SYS_NAND_OOBSIZE		64
271 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128 * 1024)
272 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	NAND_LARGE_BADBLOCK_POS
273 /*
274  * Use the ECC/OOB layout from omap_gpmc.h that matches your chip:
275  * SP vs LP, 8bit vs 16bit: GPMC_NAND_HW_ECC_LAYOUT
276  */
277 #define CONFIG_SYS_NAND_ECCPOS		{ 2, 3, 4, 5, 6, 7, 8, 9, \
278 					 10, 11, 12, 13 }
279 #define CONFIG_SYS_NAND_ECCSIZE		512
280 #define CONFIG_SYS_NAND_ECCBYTES	3
281 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_HAM1_CODE_HW
282 
283 #define CONFIG_SYS_NAND_U_BOOT_START	CONFIG_SYS_TEXT_BASE
284 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
285 
286 #define CONFIG_SPL_TEXT_BASE		0x40200800
287 #define CONFIG_SPL_MAX_SIZE		(SRAM_SCRATCH_SPACE_ADDR - \
288 					 CONFIG_SPL_TEXT_BASE)
289 
290 /*
291  * Use 0x80008000 as TEXT_BASE here for compatibility reasons with the
292  * older x-loader implementations. And move the BSS area so that it
293  * doesn't overlap with TEXT_BASE.
294  */
295 #define CONFIG_SYS_TEXT_BASE		0x80008000
296 #define CONFIG_SPL_BSS_START_ADDR	0x80100000
297 #define CONFIG_SPL_BSS_MAX_SIZE		0x80000		/* 512 KB */
298 
299 #define CONFIG_SYS_SPL_MALLOC_START	0x80208000
300 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000
301 
302 #endif /* __CONFIG_H */
303