blob: cf546f86014eeb64043aff5c7801e0b5ff32a3a2 [file] [log] [blame]
Tony Lindgren9b6553c2006-04-02 17:46:30 +01001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/arm/mach-omap2/board-apollon.c
Tony Lindgren9b6553c2006-04-02 17:46:30 +01003 *
4 * Copyright (C) 2005,2006 Samsung Electronics
5 * Author: Kyungmin Park <kyungmin.park@samsung.com>
6 *
7 * Modified from mach-omap/omap2/board-h4.c
8 *
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.
13 *
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.
17 */
18
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>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010025#include <linux/delay.h>
Kyungmin Parkf0248402006-12-06 17:13:53 -080026#include <linux/leds.h>
Paul Walmsley44595982008-03-18 10:04:51 +020027#include <linux/err.h>
28#include <linux/clk.h>
Ladislav Michl3bc48012009-12-11 16:16:33 -080029#include <linux/smc91x.h>
Axel Linf9fa1bb2011-05-31 20:55:44 +080030#include <linux/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010033#include <asm/mach-types.h>
34#include <asm/mach/arch.h>
35#include <asm/mach/flash.h>
36
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/led.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070038#include <plat/usb.h>
39#include <plat/board.h>
40#include <plat/common.h>
41#include <plat/gpmc.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010042
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030043#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060044#include "control.h"
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030045
Tony Lindgren9b6553c2006-04-02 17:46:30 +010046/* LED & Switch macros */
47#define LED0_GPIO13 13
48#define LED1_GPIO14 14
49#define LED2_GPIO15 15
50#define SW_ENTER_GPIO16 16
51#define SW_UP_GPIO17 17
52#define SW_DOWN_GPIO58 58
53
Kyungmin Parkf0248402006-12-06 17:13:53 -080054#define APOLLON_FLASH_CS 0
55#define APOLLON_ETH_CS 1
Tony Lindgren70554772009-03-23 18:07:35 -070056#define APOLLON_ETHR_GPIO_IRQ 74
Kyungmin Parkf0248402006-12-06 17:13:53 -080057
Tony Lindgren9b6553c2006-04-02 17:46:30 +010058static struct mtd_partition apollon_partitions[] = {
59 {
60 .name = "X-Loader + U-Boot",
61 .offset = 0,
62 .size = SZ_128K,
63 .mask_flags = MTD_WRITEABLE,
64 },
65 {
66 .name = "params",
67 .offset = MTDPART_OFS_APPEND,
68 .size = SZ_128K,
69 },
70 {
71 .name = "kernel",
72 .offset = MTDPART_OFS_APPEND,
73 .size = SZ_2M,
74 },
75 {
76 .name = "rootfs",
77 .offset = MTDPART_OFS_APPEND,
78 .size = SZ_16M,
79 },
80 {
81 .name = "filesystem00",
82 .offset = MTDPART_OFS_APPEND,
83 .size = SZ_32M,
84 },
85 {
86 .name = "filesystem01",
87 .offset = MTDPART_OFS_APPEND,
88 .size = MTDPART_SIZ_FULL,
89 },
90};
91
Magnus Damm778dbcc2009-09-18 12:51:44 -070092static struct onenand_platform_data apollon_flash_data = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +010093 .parts = apollon_partitions,
94 .nr_parts = ARRAY_SIZE(apollon_partitions),
95};
96
Kyungmin Parkf0248402006-12-06 17:13:53 -080097static struct resource apollon_flash_resource[] = {
98 [0] = {
99 .flags = IORESOURCE_MEM,
100 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100101};
102
103static struct platform_device apollon_onenand_device = {
Magnus Damm778dbcc2009-09-18 12:51:44 -0700104 .name = "onenand-flash",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100105 .id = -1,
106 .dev = {
107 .platform_data = &apollon_flash_data,
108 },
Kyungmin Parkf0248402006-12-06 17:13:53 -0800109 .num_resources = ARRAY_SIZE(apollon_flash_resource),
110 .resource = apollon_flash_resource,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100111};
112
Kyungmin Parkf0248402006-12-06 17:13:53 -0800113static void __init apollon_flash_init(void)
114{
115 unsigned long base;
116
117 if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) {
118 printk(KERN_ERR "Cannot request OneNAND GPMC CS\n");
119 return;
120 }
121 apollon_flash_resource[0].start = base;
122 apollon_flash_resource[0].end = base + SZ_128K - 1;
123}
124
Ladislav Michl3bc48012009-12-11 16:16:33 -0800125static struct smc91x_platdata appolon_smc91x_info = {
126 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
127 .leda = RPC_LED_100_10,
128 .ledb = RPC_LED_TX_RX,
129};
130
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100131static struct resource apollon_smc91x_resources[] = {
132 [0] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100133 .flags = IORESOURCE_MEM,
134 },
135 [1] = {
136 .start = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ),
137 .end = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ),
Russell Kinge7b3dc72008-01-14 22:30:10 +0000138 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100139 },
140};
141
142static struct platform_device apollon_smc91x_device = {
143 .name = "smc91x",
144 .id = -1,
Ladislav Michl3bc48012009-12-11 16:16:33 -0800145 .dev = {
146 .platform_data = &appolon_smc91x_info,
147 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100148 .num_resources = ARRAY_SIZE(apollon_smc91x_resources),
149 .resource = apollon_smc91x_resources,
150};
151
152static struct platform_device apollon_lcd_device = {
153 .name = "apollon_lcd",
154 .id = -1,
155};
156
Kyungmin Parkf0248402006-12-06 17:13:53 -0800157static struct omap_led_config apollon_led_config[] = {
158 {
159 .cdev = {
160 .name = "apollon:led0",
161 },
162 .gpio = LED0_GPIO13,
163 },
164 {
165 .cdev = {
166 .name = "apollon:led1",
167 },
168 .gpio = LED1_GPIO14,
169 },
170 {
171 .cdev = {
172 .name = "apollon:led2",
173 },
174 .gpio = LED2_GPIO15,
175 },
176};
177
178static struct omap_led_platform_data apollon_led_data = {
179 .nr_leds = ARRAY_SIZE(apollon_led_config),
180 .leds = apollon_led_config,
181};
182
183static struct platform_device apollon_led_device = {
184 .name = "omap-led",
185 .id = -1,
186 .dev = {
187 .platform_data = &apollon_led_data,
188 },
189};
190
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100191static struct platform_device *apollon_devices[] __initdata = {
192 &apollon_onenand_device,
193 &apollon_smc91x_device,
194 &apollon_lcd_device,
Kyungmin Parkf0248402006-12-06 17:13:53 -0800195 &apollon_led_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100196};
197
198static inline void __init apollon_init_smc91x(void)
199{
Kyungmin Parkf0248402006-12-06 17:13:53 -0800200 unsigned long base;
201
Paul Walmsley44595982008-03-18 10:04:51 +0200202 unsigned int rate;
203 struct clk *gpmc_fck;
204 int eth_cs;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300205 int err;
Paul Walmsley44595982008-03-18 10:04:51 +0200206
207 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
208 if (IS_ERR(gpmc_fck)) {
209 WARN_ON(1);
210 return;
211 }
212
213 clk_enable(gpmc_fck);
214 rate = clk_get_rate(gpmc_fck);
215
216 eth_cs = APOLLON_ETH_CS;
217
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100218 /* Make sure CS1 timings are correct */
Paul Walmsley44595982008-03-18 10:04:51 +0200219 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200);
220
221 if (rate >= 160000000) {
222 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
223 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
224 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
225 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
226 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
227 } else if (rate >= 130000000) {
228 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
229 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
230 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
231 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
232 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
233 } else {/* rate = 100000000 */
234 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
235 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
236 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
237 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F);
238 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
239 }
Kyungmin Parkf0248402006-12-06 17:13:53 -0800240
241 if (gpmc_cs_request(APOLLON_ETH_CS, SZ_16M, &base) < 0) {
242 printk(KERN_ERR "Failed to request GPMC CS for smc91x\n");
Paul Walmsley44595982008-03-18 10:04:51 +0200243 goto out;
Kyungmin Parkf0248402006-12-06 17:13:53 -0800244 }
245 apollon_smc91x_resources[0].start = base + 0x300;
246 apollon_smc91x_resources[0].end = base + 0x30f;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100247 udelay(100);
248
Igor Grinbergbc593f52011-05-03 18:22:09 +0300249 omap_mux_init_gpio(APOLLON_ETHR_GPIO_IRQ, 0);
250 err = gpio_request_one(APOLLON_ETHR_GPIO_IRQ, GPIOF_IN, "SMC91x irq");
251 if (err) {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100252 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
253 APOLLON_ETHR_GPIO_IRQ);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800254 gpmc_cs_free(APOLLON_ETH_CS);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100255 }
Paul Walmsley44595982008-03-18 10:04:51 +0200256out:
257 clk_disable(gpmc_fck);
258 clk_put(gpmc_fck);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100259}
260
Kyungmin Parkf0248402006-12-06 17:13:53 -0800261static struct omap_usb_config apollon_usb_config __initdata = {
262 .register_dev = 1,
263 .hmc_mode = 0x14, /* 0:dev 1:host1 2:disable */
264
265 .pins[0] = 6,
266};
267
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100268static struct omap_lcd_config apollon_lcd_config __initdata = {
269 .ctrl_name = "internal",
270};
271
Bryan Wu1a6b5922010-12-08 02:41:25 +0000272static struct omap_board_config_kernel apollon_config[] __initdata = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100273 { OMAP_TAG_LCD, &apollon_lcd_config },
274};
275
Igor Grinbergbc593f52011-05-03 18:22:09 +0300276static struct gpio apollon_gpio_leds[] __initdata = {
277 { LED0_GPIO13, GPIOF_OUT_INIT_LOW, "LED0" }, /* LED0 - AA10 */
278 { LED1_GPIO14, GPIOF_OUT_INIT_LOW, "LED1" }, /* LED1 - AA6 */
279 { LED2_GPIO15, GPIOF_OUT_INIT_LOW, "LED2" }, /* LED2 - AA4 */
280};
281
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100282static void __init apollon_led_init(void)
283{
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300284 omap_mux_init_signal("vlynq_clk.gpio_13", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300285 omap_mux_init_signal("vlynq_rx1.gpio_14", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300286 omap_mux_init_signal("vlynq_rx0.gpio_15", 0);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300287
288 gpio_request_array(apollon_gpio_leds, ARRAY_SIZE(apollon_gpio_leds));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100289}
290
Kyungmin Parkf0248402006-12-06 17:13:53 -0800291static void __init apollon_usb_init(void)
292{
293 /* USB device */
294 /* DEVICE_SUSPEND */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300295 omap_mux_init_signal("mcbsp2_clkx.gpio_12", 0);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300296 gpio_request_one(12, GPIOF_OUT_INIT_LOW, "USB suspend");
Tony Lindgrenb5e89052010-07-05 16:31:29 +0300297 omap2_usbfs_init(&apollon_usb_config);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800298}
299
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300300#ifdef CONFIG_OMAP_MUX
301static struct omap_board_mux board_mux[] __initdata = {
302 { .reg_offset = OMAP_MUX_TERMINATOR },
303};
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300304#endif
305
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100306static void __init omap_apollon_init(void)
307{
Paul Walmsley44595982008-03-18 10:04:51 +0200308 u32 v;
309
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300310 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800311 omap_board_config = apollon_config;
312 omap_board_config_size = ARRAY_SIZE(apollon_config);
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300313
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800314 apollon_init_smc91x();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100315 apollon_led_init();
Kyungmin Parkf0248402006-12-06 17:13:53 -0800316 apollon_flash_init();
317 apollon_usb_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100318
319 /* REVISIT: where's the correct place */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300320 omap_mux_init_signal("sys_nirq", OMAP_PULL_ENA | OMAP_PULL_UP);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100321
Tony Lindgren18dbe6c2010-07-05 16:31:39 +0300322 /* LCD PWR_EN */
323 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
324
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300325 /* Use Interal loop-back in MMC/SDIO Module Input Clock selection */
Paul Walmsley44595982008-03-18 10:04:51 +0200326 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
327 v |= (1 << 24);
328 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300329
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100330 /*
331 * Make sure the serial ports are muxed on at this point.
332 * You have to mux them off in device drivers later on
333 * if not needed.
334 */
335 platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100336 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700337 omap_sdrc_init(NULL, NULL);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100338}
339
340static void __init omap_apollon_map_io(void)
341{
Paul Walmsleyc8d2eb82008-05-07 16:55:13 -0700342 omap2_set_globals_242x();
Tony Lindgren6fbd55d2010-02-12 12:26:47 -0800343 omap242x_map_common_io();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100344}
345
346MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon")
347 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100348 .boot_params = 0x80000100,
Russell King71ee7da2010-05-23 10:18:16 +0100349 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800350 .map_io = omap_apollon_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700351 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700352 .init_irq = omap2_init_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100353 .init_machine = omap_apollon_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700354 .timer = &omap2_timer,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100355MACHINE_END