Group and resource assignments for TWL4030
[linux-ginger.git] / arch / arm / mach-omap2 / board-apollon.c
blob727d282e431562bdcdd9561decbca1eb9d5b53e8
1 /*
2 * linux/arch/arm/mach-omap2/board-apollon.c
4 * Copyright (C) 2005-2008 Samsung Electronics
5 * Author: Kyungmin Park <kyungmin.park@samsung.com>
7 * Modified from mach-omap2/board-h4.c
9 * Code for apollon OMAP2 board. Should work on many OMAP2 systems where
10 * the bootloader passes the board-specific data to the kernel.
11 * Do not put any board specific code to this file; create a new machine
12 * type if you need custom low-level initializations.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/mtd/onenand.h>
25 #include <linux/irq.h>
26 #include <linux/interrupt.h>
27 #include <linux/delay.h>
28 #include <linux/leds.h>
29 #include <linux/err.h>
30 #include <linux/clk.h>
31 #include <linux/spi/spi.h>
32 #include <linux/spi/tsc210x.h>
34 #include <asm/io.h>
35 #include <mach/hardware.h>
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
38 #include <asm/mach/flash.h>
40 #include <mach/gpio.h>
41 #include <mach/led.h>
42 #include <mach/mux.h>
43 #include <mach/usb.h>
44 #include <mach/board.h>
45 #include <mach/common.h>
46 #include <mach/gpmc.h>
48 /* LED & Switch macros */
49 #define LED0_GPIO13 13
50 #define LED1_GPIO14 14
51 #define LED2_GPIO15 15
52 #define LED3_GPIO92 92
53 #define LED4_GPIO93 93
55 #define APOLLON_FLASH_CS 0
56 #define APOLLON_ETH_CS 1
57 #define APOLLON_NOR_CS 3
59 #define APOLLON_ONENAND_CS2_ADDRESS (0x00000e40 | (0x10000000 >> 24))
60 #define APOLLON_EXT_CS3_ADDRESS (0x00000c40 | (0x18000000 >> 24))
62 static struct mtd_partition apollon_partitions[] = {
64 .name = "X-Loader + U-Boot",
65 .offset = 0,
66 .size = SZ_128K,
67 .mask_flags = MTD_WRITEABLE,
70 .name = "params",
71 .offset = MTDPART_OFS_APPEND,
72 .size = SZ_128K,
75 .name = "kernel",
76 .offset = MTDPART_OFS_APPEND,
77 .size = SZ_2M,
80 .name = "rootfs",
81 .offset = MTDPART_OFS_APPEND,
82 .size = SZ_16M,
85 .name = "filesystem00",
86 .offset = MTDPART_OFS_APPEND,
87 .size = SZ_32M,
90 .name = "filesystem01",
91 .offset = MTDPART_OFS_APPEND,
92 .size = MTDPART_SIZ_FULL,
96 static struct flash_platform_data apollon_flash_data = {
97 .parts = apollon_partitions,
98 .nr_parts = ARRAY_SIZE(apollon_partitions),
101 static struct resource apollon_flash_resource[] = {
102 [0] = {
103 .flags = IORESOURCE_MEM,
107 static struct platform_device apollon_onenand_device = {
108 .name = "onenand",
109 .id = -1,
110 .dev = {
111 .platform_data = &apollon_flash_data,
113 .num_resources = ARRAY_SIZE(apollon_flash_resource),
114 .resource = apollon_flash_resource,
117 static struct mtd_partition apollon_nor_partitions[] = {
119 .name = "U-Boot",
120 .offset = 0,
121 .size = SZ_128K,
122 .mask_flags = MTD_WRITEABLE,
125 .name = "params",
126 .offset = MTDPART_OFS_APPEND,
127 .size = SZ_128K,
130 .name = "kernel",
131 .offset = MTDPART_OFS_APPEND,
132 .size = SZ_2M,
135 .name = "rootfs",
136 .offset = MTDPART_OFS_APPEND,
137 .size = SZ_4M - SZ_256K,
140 .name = "application",
141 .offset = MTDPART_OFS_APPEND,
142 .size = SZ_8M + SZ_2M,
145 .name = "reserved",
146 .offset = MTDPART_OFS_APPEND,
147 .size = MTDPART_SIZ_FULL,
151 static struct flash_platform_data apollon_nor_data = {
152 .map_name = "cfi_probe",
153 .width = 2,
154 .parts = apollon_nor_partitions,
155 .nr_parts = ARRAY_SIZE(apollon_nor_partitions),
158 static struct resource apollon_nor_resource[] = {
159 [0] = {
160 .flags = IORESOURCE_MEM,
164 static struct platform_device apollon_nor_device = {
165 .name = "omapflash",
166 .id = -1,
167 .dev = {
168 .platform_data = &apollon_nor_data,
170 .num_resources = ARRAY_SIZE(apollon_nor_resource),
171 .resource = apollon_nor_resource,
174 static void __init apollon_flash_init(void)
176 unsigned long base;
178 if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) {
179 printk(KERN_ERR "Cannot request OneNAND GPMC CS\n");
180 return;
182 apollon_flash_resource[0].start = base;
183 apollon_flash_resource[0].end = base + SZ_128K - 1;
185 if (gpmc_cs_request(APOLLON_NOR_CS, SZ_32M, &base) < 0) {
186 printk(KERN_ERR "Cannot request NOR GPMC CS\n");
187 return;
189 apollon_nor_resource[0].start = base;
190 apollon_nor_resource[0].end = base + SZ_32M - 1;
193 static struct resource apollon_smc91x_resources[] = {
194 [0] = {
195 .flags = IORESOURCE_MEM,
197 [1] = {
198 .start = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ),
199 .end = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ),
200 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
204 static struct platform_device apollon_smc91x_device = {
205 .name = "smc91x",
206 .id = -1,
207 .num_resources = ARRAY_SIZE(apollon_smc91x_resources),
208 .resource = apollon_smc91x_resources,
211 static struct platform_device apollon_lcd_device = {
212 .name = "apollon_lcd",
213 .id = -1,
216 static struct gpio_led apollon_led_config[] = {
218 .name = "d2",
219 .gpio = LED0_GPIO13,
220 .default_trigger = "heartbeat",
223 .name = "d3",
224 .gpio = LED1_GPIO14,
227 .name = "d4",
228 .gpio = LED2_GPIO15,
231 .name = "d5",
232 .gpio = LED3_GPIO92,
235 .name = "d6",
236 .gpio = LED4_GPIO93,
240 static struct gpio_led_platform_data apollon_led_data = {
241 .num_leds = ARRAY_SIZE(apollon_led_config),
242 .leds = apollon_led_config,
245 static struct platform_device apollon_led_device = {
246 .name = "leds-gpio",
247 .id = -1,
248 .dev = {
249 .platform_data = &apollon_led_data,
253 static struct platform_device *apollon_devices[] __initdata = {
254 &apollon_onenand_device,
255 &apollon_nor_device,
256 &apollon_smc91x_device,
257 &apollon_lcd_device,
258 &apollon_led_device,
261 static inline void __init apollon_init_smc91x(void)
263 unsigned long base;
264 unsigned int rate;
265 struct clk *gpmc_fck;
266 int eth_cs;
268 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
269 if (IS_ERR(gpmc_fck)) {
270 WARN_ON(1);
271 return;
274 clk_enable(gpmc_fck);
275 rate = clk_get_rate(gpmc_fck);
277 eth_cs = APOLLON_ETH_CS;
279 /* Make sure CS1 timings are correct */
280 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200);
282 if (rate >= 160000000) {
283 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
284 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
285 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
286 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
287 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
288 } else if (rate >= 130000000) {
289 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
290 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
291 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
292 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
293 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
294 } else {/* rate = 100000000 */
295 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
296 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
297 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
298 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F);
299 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
302 if (gpmc_cs_request(eth_cs, SZ_16M, &base) < 0) {
303 printk(KERN_ERR "Failed to request GPMC CS for smc91x\n");
304 goto out;
306 apollon_smc91x_resources[0].start = base + 0x300;
307 apollon_smc91x_resources[0].end = base + 0x30f;
308 udelay(100);
310 omap_cfg_reg(W4__24XX_GPIO74);
311 if (gpio_request(APOLLON_ETHR_GPIO_IRQ, "SMC91x irq") < 0) {
312 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
313 APOLLON_ETHR_GPIO_IRQ);
314 gpmc_cs_free(eth_cs);
315 goto out;
317 gpio_direction_input(APOLLON_ETHR_GPIO_IRQ);
319 out:
320 clk_disable(gpmc_fck);
321 clk_put(gpmc_fck);
324 static void __init omap_apollon_init_irq(void)
326 omap2_init_common_hw(NULL);
327 omap_init_irq();
328 omap_gpio_init();
329 apollon_init_smc91x();
332 static struct tsc210x_config tsc_platform_data = {
333 .use_internal = 1,
334 .monitor = TSC_TEMP,
335 .mclk = "sys_clkout",
338 static struct spi_board_info apollon_spi_board_info[] = {
339 [0] = {
340 .modalias = "tsc2101",
341 .irq = OMAP_GPIO_IRQ(85),
342 .bus_num = 1,
343 .chip_select = 0,
344 .mode = SPI_MODE_1,
345 .max_speed_hz = 6000000,
346 .platform_data = &tsc_platform_data,
350 static struct omap_uart_config apollon_uart_config __initdata = {
351 .enabled_uarts = (1 << 0) | (0 << 1) | (0 << 2),
354 static struct omap_usb_config apollon_usb_config __initdata = {
355 .register_dev = 1,
356 .hmc_mode = 0x14, /* 0:dev 1:host1 2:disable */
358 .pins[0] = 6,
361 static struct omap_lcd_config apollon_lcd_config __initdata = {
362 .ctrl_name = "internal",
365 static struct omap_board_config_kernel apollon_config[] __initdata = {
366 { OMAP_TAG_UART, &apollon_uart_config },
367 { OMAP_TAG_LCD, &apollon_lcd_config },
370 static void __init apollon_led_init(void)
372 /* LED0 - AA10 */
373 omap_cfg_reg(AA10_242X_GPIO13);
374 /* LED1 - AA6 */
375 omap_cfg_reg(AA6_242X_GPIO14);
376 /* LED2 - AA4 */
377 omap_cfg_reg(AA4_242X_GPIO15);
379 if (apollon_plus()) {
380 /* LED3 - M15 */
381 omap_cfg_reg(M15_24XX_GPIO92);
382 /* LED4 - P20 */
383 omap_cfg_reg(P20_24XX_GPIO93);
384 } else
385 apollon_led_data.num_leds = 3;
388 static void __init apollon_usb_init(void)
390 /* USB device */
391 /* DEVICE_SUSPEND */
392 omap_cfg_reg(P21_242X_GPIO12);
393 gpio_request(12, "USB suspend");
394 gpio_direction_output(12, 0);
395 omap_usb_init(&apollon_usb_config);
398 static void __init apollon_tsc_init(void)
400 /* TSC2101 */
401 omap_cfg_reg(N15_24XX_GPIO85);
402 gpio_request(85, "tsc2101 irq");
403 gpio_direction_input(85);
405 omap_cfg_reg(W14_24XX_SYS_CLKOUT); /* mclk */
408 static void __init apollon_cs_init(void)
410 unsigned long base;
411 unsigned int rate;
412 struct clk *l3ck;
413 u32 value;
414 int cs, sync = 0;
416 l3ck = clk_get(NULL, "core_l3_ck");
417 if (IS_ERR(l3ck))
418 rate = 100000000;
419 else
420 rate = clk_get_rate(l3ck);
422 /* CS2: OneNAND */
423 cs = 2;
424 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG1);
425 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, value);
426 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG2);
427 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG2, value);
428 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG3);
429 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG3, value);
430 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG4);
431 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, value);
432 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG5);
433 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG5, value);
434 value = gpmc_cs_read_reg(0, GPMC_CS_CONFIG6);
435 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG6, value);
437 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, APOLLON_ONENAND_CS2_ADDRESS);
439 /* CS3: External NOR */
440 cs = APOLLON_NOR_CS;
441 if (rate >= 160000000) {
442 sync = 1;
443 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, 0xe5011211);
444 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG2, 0x00090b01);
445 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG3, 0x00020201);
446 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, 0x09030b03);
447 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG5, 0x010a0a0c);
448 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG6, 0x00000000);
449 } else if (rate >= 130000000) {
450 /* Not yet know ... Use the async values */
451 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, 0x00021201);
452 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG2, 0x00121601);
453 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG3, 0x00040401);
454 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, 0x12061605);
455 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG5, 0x01151317);
456 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG6, 0x00000000);
457 } else {/* rate = 100000000 */
458 sync = 1;
459 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, 0xe1001202);
460 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG2, 0x00151501);
461 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG3, 0x00050501);
462 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG4, 0x0e070e07);
463 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG5, 0x01131F1F);
464 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG6, 0x00000000);
467 gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, APOLLON_EXT_CS3_ADDRESS);
469 if (gpmc_cs_request(cs, SZ_32M, &base) < 0) {
470 printk(KERN_ERR "Failed to request GPMC CS for external\n");
471 return;
474 /* Synchronous mode */
475 if (sync) {
476 void __iomem *addr = ioremap(base, SZ_32M);
477 writew(0xaa, addr + 0xaaa);
478 writew(0x55, addr + 0x554);
479 writew(0xc0, addr + 0x24aaa);
480 iounmap(addr);
483 gpmc_cs_free(cs);
486 static void __init omap_apollon_init(void)
488 apollon_cs_init();
489 apollon_led_init();
490 apollon_flash_init();
491 apollon_usb_init();
492 apollon_tsc_init();
495 * Make sure the serial ports are muxed on at this point.
496 * You have to mux them off in device drivers later on
497 * if not needed.
499 platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
500 omap_board_config = apollon_config;
501 omap_board_config_size = ARRAY_SIZE(apollon_config);
502 omap_serial_init();
503 omap_register_i2c_bus(1, 100, NULL, 0);
504 omap_register_i2c_bus(2, 100, NULL, 0);
506 spi_register_board_info(apollon_spi_board_info,
507 ARRAY_SIZE(apollon_spi_board_info));
509 apollon_mmc_init();
512 static void __init omap_apollon_map_io(void)
514 omap2_set_globals_242x();
515 omap2_map_common_io();
518 MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon")
519 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
520 .phys_io = 0x48000000,
521 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
522 .boot_params = 0x80000100,
523 .map_io = omap_apollon_map_io,
524 .init_irq = omap_apollon_init_irq,
525 .init_machine = omap_apollon_init,
526 .timer = &omap_timer,
527 MACHINE_END