xref: /openbmc/u-boot/include/configs/nokia_rx51.h (revision e23b19f4)
1 /*
2  * (C) Copyright 2011-2012
3  * Pali Rohár <pali.rohar@gmail.com>
4  *
5  * (C) Copyright 2010
6  * Alistair Buxton <a.j.buxton@gmail.com>
7  *
8  * Derived from Beagle Board code:
9  * (C) Copyright 2006-2008
10  * Texas Instruments.
11  * Richard Woodruff <r-woodruff2@ti.com>
12  * Syed Mohammed Khasim <x0khasim@ti.com>
13  *
14  * Configuration settings for the Nokia RX-51 aka N900.
15  *
16  * SPDX-License-Identifier:	GPL-2.0+
17  */
18 
19 #ifndef __CONFIG_H
20 #define __CONFIG_H
21 
22 /*
23  * High Level Configuration Options
24  */
25 #define CONFIG_SYS_L2CACHE_OFF		/* pretend there is no L2 CACHE */
26 
27 #define CONFIG_MACH_TYPE		MACH_TYPE_NOKIA_RX51
28 
29 /*
30  * Nokia X-Loader loading secondary image to address 0x80400000
31  * NOLO loading boot image to random place, so it doesn't really
32  * matter what we set this to. We have to copy u-boot to this address
33  */
34 #define CONFIG_SYS_TEXT_BASE	0x80008000
35 
36 #include <asm/arch/cpu.h>		/* get chip and board defs */
37 #include <asm/arch/omap.h>
38 #include <asm/arch/mem.h>
39 #include <linux/stringify.h>
40 
41 /* Clock Defines */
42 #define V_OSCK			26000000	/* Clock output from T2 */
43 #define V_SCLK			(V_OSCK >> 1)
44 
45 #define CONFIG_MISC_INIT_R
46 #define CONFIG_SKIP_LOWLEVEL_INIT		/* X-Loader set everything up */
47 
48 #define CONFIG_CMDLINE_TAG	/* enable passing kernel command line string */
49 #define CONFIG_INITRD_TAG			/* enable passing initrd */
50 #define CONFIG_REVISION_TAG			/* enable passing revision tag*/
51 #define CONFIG_SETUP_MEMORY_TAGS		/* enable memory tag */
52 
53 /*
54  * Size of malloc() pool
55  */
56 #define CONFIG_ENV_SIZE			(128 << 10)
57 #define CONFIG_UBI_SIZE			(512 << 10)
58 #define CONFIG_SYS_MALLOC_LEN		(CONFIG_ENV_SIZE + CONFIG_UBI_SIZE + \
59 					(128 << 10))
60 
61 /*
62  * Hardware drivers
63  */
64 
65 /*
66  * NS16550 Configuration
67  */
68 #define V_NS16550_CLK		48000000		/* 48MHz (APLL96/2) */
69 
70 #define CONFIG_SYS_NS16550_SERIAL
71 #define CONFIG_SYS_NS16550_REG_SIZE	(-4)
72 #define CONFIG_SYS_NS16550_CLK		V_NS16550_CLK
73 
74 /*
75  * select serial console configuration
76  */
77 #define CONFIG_CONS_INDEX		3
78 #define CONFIG_SYS_NS16550_COM3		OMAP34XX_UART3
79 #define CONFIG_SERIAL3			3		/* UART3 on RX-51 */
80 
81 /* allow to overwrite serial and ethaddr */
82 #define CONFIG_ENV_OVERWRITE
83 #define CONFIG_SYS_BAUDRATE_TABLE { 4800, 9600, 19200, 38400, 57600, 115200 }
84 
85 /* USB device configuration */
86 #define CONFIG_USB_DEVICE
87 #define CONFIG_USBD_VENDORID		0x0421
88 #define CONFIG_USBD_PRODUCTID		0x01c8
89 #define CONFIG_USBD_MANUFACTURER	"Nokia"
90 #define CONFIG_USBD_PRODUCT_NAME	"N900"
91 
92 /* commands to include */
93 
94 #define CONFIG_CMDLINE_EDITING		/* add command line history */
95 #define CONFIG_AUTO_COMPLETE		/* add autocompletion support */
96 
97 #define CONFIG_SYS_I2C
98 #define CONFIG_SYS_OMAP24_I2C_SPEED	100000
99 #define CONFIG_SYS_OMAP24_I2C_SLAVE	1
100 
101 /*
102  * TWL4030
103  */
104 #define CONFIG_TWL4030_LED
105 #define CONFIG_TWL4030_KEYPAD
106 
107 #define GPIO_SLIDE			71
108 
109 /*
110  * Board ONENAND Info.
111  */
112 
113 #define PART1_NAME			"bootloader"
114 #define PART1_SIZE			128
115 #define PART1_MULL			1024
116 #define PART1_SUFF			"k"
117 #define PART1_OFFS			0x00000000
118 #define PART1_MASK			0x00000003
119 
120 #define PART2_NAME			"config"
121 #define PART2_SIZE			384
122 #define PART2_MULL			1024
123 #define PART2_SUFF			"k"
124 #define PART2_OFFS			0x00020000
125 #define PART2_MASK			0x00000000
126 
127 #define PART3_NAME			"log"
128 #define PART3_SIZE			256
129 #define PART3_MULL			1024
130 #define PART3_SUFF			"k"
131 #define PART3_OFFS			0x00080000
132 #define PART3_MASK			0x00000000
133 
134 #define PART4_NAME			"kernel"
135 #define PART4_SIZE			2
136 #define PART4_MULL			1024*1024
137 #define PART4_SUFF			"m"
138 #define PART4_OFFS			0x000c0000
139 #define PART4_MASK			0x00000000
140 
141 #define PART5_NAME			"initfs"
142 #define PART5_SIZE			2
143 #define PART5_MULL			1024*1024
144 #define PART5_SUFF			"m"
145 #define PART5_OFFS			0x002c0000
146 #define PART5_MASK			0x00000000
147 
148 #define PART6_NAME			"rootfs"
149 #define PART6_SIZE			257280
150 #define PART6_MULL			1024
151 #define PART6_SUFF			"k"
152 #define PART6_OFFS			0x004c0000
153 #define PART6_MASK			0x00000000
154 
155 #ifdef ONENAND_SUPPORT
156 
157 #define CONFIG_SYS_ONENAND_BASE		ONENAND_MAP
158 #define CONFIG_MTD_DEVICE
159 #define CONFIG_MTD_PARTITIONS
160 
161 #endif
162 
163 /* Watchdog support */
164 #define CONFIG_HW_WATCHDOG
165 
166 /*
167  * Framebuffer
168  */
169 /* Video console */
170 #define CONFIG_VIDEO_LOGO
171 #define VIDEO_FB_16BPP_PIXEL_SWAP
172 #define VIDEO_FB_16BPP_WORD_SWAP
173 #define CONFIG_SPLASH_SCREEN
174 
175 /* functions for cfb_console */
176 #define VIDEO_KBD_INIT_FCT		rx51_kp_init()
177 #define VIDEO_TSTC_FCT			rx51_kp_tstc
178 #define VIDEO_GETC_FCT			rx51_kp_getc
179 #ifndef __ASSEMBLY__
180 struct stdio_dev;
181 int rx51_kp_init(void);
182 int rx51_kp_tstc(struct stdio_dev *sdev);
183 int rx51_kp_getc(struct stdio_dev *sdev);
184 #endif
185 
186 /* Environment information */
187 #ifdef CONFIG_MTDPARTS_DEFAULT
188 #define MTDPARTS "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
189 #else
190 #define MTDPARTS
191 #endif
192 #define CONFIG_EXTRA_ENV_SETTINGS \
193 	MTDPARTS \
194 	"usbtty=cdc_acm\0" \
195 	"stdin=vga\0" \
196 	"stdout=vga\0" \
197 	"stderr=vga\0" \
198 	"setcon=setenv stdin ${con};" \
199 		"setenv stdout ${con};" \
200 		"setenv stderr ${con}\0" \
201 	"sercon=setenv con serial; run setcon\0" \
202 	"usbcon=setenv con usbtty; run setcon\0" \
203 	"vgacon=setenv con vga; run setcon\0" \
204 	"slide=gpio input " __stringify(GPIO_SLIDE) "\0" \
205 	"switchmmc=mmc dev ${mmcnum}\0" \
206 	"kernaddr=0x82008000\0" \
207 	"initrdaddr=0x84008000\0" \
208 	"scriptaddr=0x86008000\0" \
209 	"fileload=${mmctype}load mmc ${mmcnum}:${mmcpart} " \
210 		"${loadaddr} ${mmcfile}\0" \
211 	"kernload=setenv loadaddr ${kernaddr};" \
212 		"setenv mmcfile ${mmckernfile};" \
213 		"run fileload\0" \
214 	"initrdload=setenv loadaddr ${initrdaddr};" \
215 		"setenv mmcfile ${mmcinitrdfile};" \
216 		"run fileload\0" \
217 	"scriptload=setenv loadaddr ${scriptaddr};" \
218 		"setenv mmcfile ${mmcscriptfile};" \
219 		"run fileload\0" \
220 	"scriptboot=echo Running ${mmcscriptfile} from mmc " \
221 		"${mmcnum}:${mmcpart} ...; source ${scriptaddr}\0" \
222 	"kernboot=echo Booting ${mmckernfile} from mmc " \
223 		"${mmcnum}:${mmcpart} ...; bootm ${kernaddr}\0" \
224 	"kerninitrdboot=echo Booting ${mmckernfile} ${mmcinitrdfile} from mmc "\
225 		"${mmcnum}:${mmcpart} ...; bootm ${kernaddr} ${initrdaddr}\0" \
226 	"attachboot=echo Booting attached kernel image ...;" \
227 		"setenv setup_omap_atag 1;" \
228 		"bootm ${attkernaddr};" \
229 		"setenv setup_omap_atag\0" \
230 	"trymmcscriptboot=if run switchmmc; then " \
231 			"if run scriptload; then " \
232 				"run scriptboot;" \
233 			"fi;" \
234 		"fi\0" \
235 	"trymmckernboot=if run switchmmc; then " \
236 			"if run kernload; then " \
237 				"run kernboot;" \
238 			"fi;" \
239 		"fi\0" \
240 	"trymmckerninitrdboot=if run switchmmc; then " \
241 			"if run initrdload; then " \
242 				"if run kernload; then " \
243 					"run kerninitrdboot;" \
244 				"fi;" \
245 			"fi; " \
246 		"fi\0" \
247 	"trymmcpartboot=setenv mmcscriptfile boot.scr; run trymmcscriptboot;" \
248 		"setenv mmckernfile uImage; run trymmckernboot\0" \
249 	"trymmcallpartboot=setenv mmcpart 1; run trymmcpartboot;" \
250 		"setenv mmcpart 2; run trymmcpartboot;" \
251 		"setenv mmcpart 3; run trymmcpartboot;" \
252 		"setenv mmcpart 4; run trymmcpartboot\0" \
253 	"trymmcboot=if run switchmmc; then " \
254 			"setenv mmctype fat;" \
255 			"run trymmcallpartboot;" \
256 			"setenv mmctype ext2;" \
257 			"run trymmcallpartboot;" \
258 			"setenv mmctype ext4;" \
259 			"run trymmcallpartboot;" \
260 		"fi\0" \
261 	"emmcboot=setenv mmcnum 1; run trymmcboot\0" \
262 	"sdboot=setenv mmcnum 0; run trymmcboot\0" \
263 	"menucmd=bootmenu\0" \
264 	"bootmenu_0=Attached kernel=run attachboot\0" \
265 	"bootmenu_1=Internal eMMC=run emmcboot\0" \
266 	"bootmenu_2=External SD card=run sdboot\0" \
267 	"bootmenu_3=U-Boot boot order=boot\0" \
268 	"bootmenu_delay=30\0" \
269 	""
270 
271 #define CONFIG_PREBOOT \
272 	"setenv mmcnum 1; setenv mmcpart 1;" \
273 	"setenv mmcscriptfile bootmenu.scr;" \
274 	"if run switchmmc; then " \
275 		"setenv mmcdone true;" \
276 		"setenv mmctype fat;" \
277 		"if run scriptload; then true; else " \
278 			"setenv mmctype ext2;" \
279 			"if run scriptload; then true; else " \
280 				"setenv mmctype ext4;" \
281 				"if run scriptload; then true; else " \
282 					"setenv mmcdone false;" \
283 				"fi;" \
284 			"fi;" \
285 		"fi;" \
286 		"if ${mmcdone}; then " \
287 			"run scriptboot;" \
288 		"fi;" \
289 	"fi;" \
290 	"if run slide; then true; else " \
291 		"setenv bootmenu_delay 0;" \
292 		"setenv bootdelay 0;" \
293 	"fi"
294 
295 #define CONFIG_POSTBOOTMENU \
296 	"echo;" \
297 	"echo Extra commands:;" \
298 	"echo run sercon - Use serial port for control.;" \
299 	"echo run usbcon - Use usbtty for control.;" \
300 	"echo run vgacon - Use framebuffer/keyboard.;" \
301 	"echo run sdboot - Boot from SD card slot.;" \
302 	"echo run emmcboot - Boot internal eMMC memory.;" \
303 	"echo run attachboot - Boot attached kernel image.;" \
304 	"echo"
305 
306 #define CONFIG_BOOTCOMMAND \
307 	"run sdboot;" \
308 	"run emmcboot;" \
309 	"run attachboot;" \
310 	"echo"
311 
312 #define CONFIG_MENU_SHOW
313 
314 /*
315  * Miscellaneous configurable options
316  */
317 #define CONFIG_SYS_LONGHELP			/* undef to save memory */
318 
319 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
320 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + 0x01F00000)/*31MB*/
321 
322 /* default load address */
323 #define CONFIG_SYS_LOAD_ADDR		(OMAP34XX_SDRC_CS0)
324 
325 /*
326  * OMAP3 has 12 GP timers, they can be driven by the system clock
327  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
328  * This rate is divided by a local divisor.
329  */
330 #define CONFIG_SYS_TIMERBASE		(OMAP34XX_GPT2)
331 #define CONFIG_SYS_PTV			2	/* Divisor: 2^(PTV+1) => 8 */
332 
333 /*
334  * Physical Memory Map
335  */
336 #define CONFIG_NR_DRAM_BANKS		2
337 #define PHYS_SDRAM_1			OMAP34XX_SDRC_CS0
338 
339 /*
340  * FLASH and environment organization
341  */
342 
343 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
344 #define CONFIG_SYS_INIT_RAM_ADDR	0x4020f800
345 #define CONFIG_SYS_INIT_RAM_SIZE	0x800
346 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_INIT_RAM_ADDR + \
347 			CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
348 
349 /*
350  * Attached kernel image
351  */
352 
353 #define SDRAM_SIZE			0x10000000	/* 256 MB */
354 #define SDRAM_END			(CONFIG_SYS_SDRAM_BASE + SDRAM_SIZE)
355 
356 #define IMAGE_MAXSIZE			0x1FF800	/* 2 MB - 2 kB */
357 #define KERNEL_OFFSET			0x40000		/* 256 kB */
358 #define KERNEL_MAXSIZE			(IMAGE_MAXSIZE-KERNEL_OFFSET)
359 #define KERNEL_ADDRESS			(SDRAM_END-KERNEL_MAXSIZE)
360 
361 /* Reserve protected RAM for attached kernel */
362 #define CONFIG_PRAM			((KERNEL_MAXSIZE >> 10)+1)
363 
364 #endif /* __CONFIG_H */
365