2 * linux/arch/arm/mach-omap2/board-apollon.c
4 * Copyright (C) 2005,2006 Samsung Electronics
5 * Author: Kyungmin Park <kyungmin.park@samsung.com>
7 * Modified from mach-omap/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/delay.h>
26 #include <linux/leds.h>
27 #include <linux/err.h>
28 #include <linux/clk.h>
30 #include <mach/hardware.h>
31 #include <asm/mach-types.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/flash.h>
35 #include <mach/gpio.h>
39 #include <plat/board.h>
40 #include <plat/common.h>
41 #include <plat/gpmc.h>
42 #include <plat/control.h>
44 /* LED & Switch macros */
45 #define LED0_GPIO13 13
46 #define LED1_GPIO14 14
47 #define LED2_GPIO15 15
48 #define SW_ENTER_GPIO16 16
49 #define SW_UP_GPIO17 17
50 #define SW_DOWN_GPIO58 58
52 #define APOLLON_FLASH_CS 0
53 #define APOLLON_ETH_CS 1
54 #define APOLLON_ETHR_GPIO_IRQ 74
56 static struct mtd_partition apollon_partitions
[] = {
58 .name
= "X-Loader + U-Boot",
61 .mask_flags
= MTD_WRITEABLE
,
65 .offset
= MTDPART_OFS_APPEND
,
70 .offset
= MTDPART_OFS_APPEND
,
75 .offset
= MTDPART_OFS_APPEND
,
79 .name
= "filesystem00",
80 .offset
= MTDPART_OFS_APPEND
,
84 .name
= "filesystem01",
85 .offset
= MTDPART_OFS_APPEND
,
86 .size
= MTDPART_SIZ_FULL
,
90 static struct onenand_platform_data apollon_flash_data
= {
91 .parts
= apollon_partitions
,
92 .nr_parts
= ARRAY_SIZE(apollon_partitions
),
95 static struct resource apollon_flash_resource
[] = {
97 .flags
= IORESOURCE_MEM
,
101 static struct platform_device apollon_onenand_device
= {
102 .name
= "onenand-flash",
105 .platform_data
= &apollon_flash_data
,
107 .num_resources
= ARRAY_SIZE(apollon_flash_resource
),
108 .resource
= apollon_flash_resource
,
111 static void __init
apollon_flash_init(void)
115 if (gpmc_cs_request(APOLLON_FLASH_CS
, SZ_128K
, &base
) < 0) {
116 printk(KERN_ERR
"Cannot request OneNAND GPMC CS\n");
119 apollon_flash_resource
[0].start
= base
;
120 apollon_flash_resource
[0].end
= base
+ SZ_128K
- 1;
123 static struct resource apollon_smc91x_resources
[] = {
125 .flags
= IORESOURCE_MEM
,
128 .start
= OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ
),
129 .end
= OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ
),
130 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
,
134 static struct platform_device apollon_smc91x_device
= {
137 .num_resources
= ARRAY_SIZE(apollon_smc91x_resources
),
138 .resource
= apollon_smc91x_resources
,
141 static struct platform_device apollon_lcd_device
= {
142 .name
= "apollon_lcd",
146 static struct omap_led_config apollon_led_config
[] = {
149 .name
= "apollon:led0",
155 .name
= "apollon:led1",
161 .name
= "apollon:led2",
167 static struct omap_led_platform_data apollon_led_data
= {
168 .nr_leds
= ARRAY_SIZE(apollon_led_config
),
169 .leds
= apollon_led_config
,
172 static struct platform_device apollon_led_device
= {
176 .platform_data
= &apollon_led_data
,
180 static struct platform_device
*apollon_devices
[] __initdata
= {
181 &apollon_onenand_device
,
182 &apollon_smc91x_device
,
187 static inline void __init
apollon_init_smc91x(void)
192 struct clk
*gpmc_fck
;
195 gpmc_fck
= clk_get(NULL
, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
196 if (IS_ERR(gpmc_fck
)) {
201 clk_enable(gpmc_fck
);
202 rate
= clk_get_rate(gpmc_fck
);
204 eth_cs
= APOLLON_ETH_CS
;
206 /* Make sure CS1 timings are correct */
207 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG1
, 0x00011200);
209 if (rate
>= 160000000) {
210 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG2
, 0x001f1f01);
211 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG3
, 0x00080803);
212 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG4
, 0x1c0b1c0a);
213 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG5
, 0x041f1F1F);
214 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG6
, 0x000004C4);
215 } else if (rate
>= 130000000) {
216 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG2
, 0x001f1f00);
217 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG3
, 0x00080802);
218 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG4
, 0x1C091C09);
219 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG5
, 0x041f1F1F);
220 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG6
, 0x000004C4);
221 } else {/* rate = 100000000 */
222 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG2
, 0x001f1f00);
223 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG3
, 0x00080802);
224 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG4
, 0x1C091C09);
225 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG5
, 0x031A1F1F);
226 gpmc_cs_write_reg(eth_cs
, GPMC_CS_CONFIG6
, 0x000003C2);
229 if (gpmc_cs_request(APOLLON_ETH_CS
, SZ_16M
, &base
) < 0) {
230 printk(KERN_ERR
"Failed to request GPMC CS for smc91x\n");
233 apollon_smc91x_resources
[0].start
= base
+ 0x300;
234 apollon_smc91x_resources
[0].end
= base
+ 0x30f;
237 omap_cfg_reg(W4__24XX_GPIO74
);
238 if (gpio_request(APOLLON_ETHR_GPIO_IRQ
, "SMC91x irq") < 0) {
239 printk(KERN_ERR
"Failed to request GPIO%d for smc91x IRQ\n",
240 APOLLON_ETHR_GPIO_IRQ
);
241 gpmc_cs_free(APOLLON_ETH_CS
);
244 gpio_direction_input(APOLLON_ETHR_GPIO_IRQ
);
247 clk_disable(gpmc_fck
);
251 static struct omap_usb_config apollon_usb_config __initdata
= {
253 .hmc_mode
= 0x14, /* 0:dev 1:host1 2:disable */
258 static struct omap_lcd_config apollon_lcd_config __initdata
= {
259 .ctrl_name
= "internal",
262 static struct omap_board_config_kernel apollon_config
[] = {
263 { OMAP_TAG_LCD
, &apollon_lcd_config
},
266 static void __init
omap_apollon_init_irq(void)
268 omap_board_config
= apollon_config
;
269 omap_board_config_size
= ARRAY_SIZE(apollon_config
);
270 omap2_init_common_hw(NULL
, NULL
, NULL
, NULL
, NULL
);
273 apollon_init_smc91x();
276 static void __init
apollon_led_init(void)
279 omap_cfg_reg(AA10_242X_GPIO13
);
280 gpio_request(LED0_GPIO13
, "LED0");
281 gpio_direction_output(LED0_GPIO13
, 0);
283 omap_cfg_reg(AA6_242X_GPIO14
);
284 gpio_request(LED1_GPIO14
, "LED1");
285 gpio_direction_output(LED1_GPIO14
, 0);
287 omap_cfg_reg(AA4_242X_GPIO15
);
288 gpio_request(LED2_GPIO15
, "LED2");
289 gpio_direction_output(LED2_GPIO15
, 0);
292 static void __init
apollon_usb_init(void)
296 omap_cfg_reg(P21_242X_GPIO12
);
297 gpio_request(12, "USB suspend");
298 gpio_direction_output(12, 0);
299 omap_usb_init(&apollon_usb_config
);
302 static void __init
omap_apollon_init(void)
307 apollon_flash_init();
310 /* REVISIT: where's the correct place */
311 omap_cfg_reg(W19_24XX_SYS_NIRQ
);
313 /* Use Interal loop-back in MMC/SDIO Module Input Clock selection */
314 v
= omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0
);
316 omap_ctrl_writel(v
, OMAP2_CONTROL_DEVCONF0
);
319 * Make sure the serial ports are muxed on at this point.
320 * You have to mux them off in device drivers later on
323 platform_add_devices(apollon_devices
, ARRAY_SIZE(apollon_devices
));
327 static void __init
omap_apollon_map_io(void)
329 omap2_set_globals_242x();
330 omap2_map_common_io();
333 MACHINE_START(OMAP_APOLLON
, "OMAP24xx Apollon")
334 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
335 .phys_io
= 0x48000000,
336 .io_pg_offst
= ((0xfa000000) >> 18) & 0xfffc,
337 .boot_params
= 0x80000100,
338 .map_io
= omap_apollon_map_io
,
339 .init_irq
= omap_apollon_init_irq
,
340 .init_machine
= omap_apollon_init
,
341 .timer
= &omap_timer
,