blob: 768ece2e9c3b4bcf14175a7068c801e68575e6d6 [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>
Tony Lindgren4e653312011-11-10 22:45:17 +010040#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070041#include <plat/gpmc.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010042
Tomi Valkeinenda91e892011-05-09 10:13:20 +030043#include <video/omapdss.h>
44#include <video/omap-panel-generic-dpi.h>
45
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030046#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060047#include "control.h"
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030048
Tony Lindgren9b6553c2006-04-02 17:46:30 +010049/* LED & Switch macros */
50#define LED0_GPIO13 13
51#define LED1_GPIO14 14
52#define LED2_GPIO15 15
53#define SW_ENTER_GPIO16 16
54#define SW_UP_GPIO17 17
55#define SW_DOWN_GPIO58 58
56
Kyungmin Parkf0248402006-12-06 17:13:53 -080057#define APOLLON_FLASH_CS 0
58#define APOLLON_ETH_CS 1
Tony Lindgren70554772009-03-23 18:07:35 -070059#define APOLLON_ETHR_GPIO_IRQ 74
Kyungmin Parkf0248402006-12-06 17:13:53 -080060
Tony Lindgren9b6553c2006-04-02 17:46:30 +010061static struct mtd_partition apollon_partitions[] = {
62 {
63 .name = "X-Loader + U-Boot",
64 .offset = 0,
65 .size = SZ_128K,
66 .mask_flags = MTD_WRITEABLE,
67 },
68 {
69 .name = "params",
70 .offset = MTDPART_OFS_APPEND,
71 .size = SZ_128K,
72 },
73 {
74 .name = "kernel",
75 .offset = MTDPART_OFS_APPEND,
76 .size = SZ_2M,
77 },
78 {
79 .name = "rootfs",
80 .offset = MTDPART_OFS_APPEND,
81 .size = SZ_16M,
82 },
83 {
84 .name = "filesystem00",
85 .offset = MTDPART_OFS_APPEND,
86 .size = SZ_32M,
87 },
88 {
89 .name = "filesystem01",
90 .offset = MTDPART_OFS_APPEND,
91 .size = MTDPART_SIZ_FULL,
92 },
93};
94
Magnus Damm778dbcc2009-09-18 12:51:44 -070095static struct onenand_platform_data apollon_flash_data = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +010096 .parts = apollon_partitions,
97 .nr_parts = ARRAY_SIZE(apollon_partitions),
98};
99
Kyungmin Parkf0248402006-12-06 17:13:53 -0800100static struct resource apollon_flash_resource[] = {
101 [0] = {
102 .flags = IORESOURCE_MEM,
103 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100104};
105
106static struct platform_device apollon_onenand_device = {
Magnus Damm778dbcc2009-09-18 12:51:44 -0700107 .name = "onenand-flash",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100108 .id = -1,
109 .dev = {
110 .platform_data = &apollon_flash_data,
111 },
Kyungmin Parkf0248402006-12-06 17:13:53 -0800112 .num_resources = ARRAY_SIZE(apollon_flash_resource),
113 .resource = apollon_flash_resource,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100114};
115
Kyungmin Parkf0248402006-12-06 17:13:53 -0800116static void __init apollon_flash_init(void)
117{
118 unsigned long base;
119
120 if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) {
121 printk(KERN_ERR "Cannot request OneNAND GPMC CS\n");
122 return;
123 }
124 apollon_flash_resource[0].start = base;
125 apollon_flash_resource[0].end = base + SZ_128K - 1;
126}
127
Ladislav Michl3bc48012009-12-11 16:16:33 -0800128static struct smc91x_platdata appolon_smc91x_info = {
129 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
130 .leda = RPC_LED_100_10,
131 .ledb = RPC_LED_TX_RX,
132};
133
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100134static struct resource apollon_smc91x_resources[] = {
135 [0] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100136 .flags = IORESOURCE_MEM,
137 },
138 [1] = {
Russell Kinge7b3dc72008-01-14 22:30:10 +0000139 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100140 },
141};
142
143static struct platform_device apollon_smc91x_device = {
144 .name = "smc91x",
145 .id = -1,
Ladislav Michl3bc48012009-12-11 16:16:33 -0800146 .dev = {
147 .platform_data = &appolon_smc91x_info,
148 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100149 .num_resources = ARRAY_SIZE(apollon_smc91x_resources),
150 .resource = apollon_smc91x_resources,
151};
152
Kyungmin Parkf0248402006-12-06 17:13:53 -0800153static struct omap_led_config apollon_led_config[] = {
154 {
155 .cdev = {
156 .name = "apollon:led0",
157 },
158 .gpio = LED0_GPIO13,
159 },
160 {
161 .cdev = {
162 .name = "apollon:led1",
163 },
164 .gpio = LED1_GPIO14,
165 },
166 {
167 .cdev = {
168 .name = "apollon:led2",
169 },
170 .gpio = LED2_GPIO15,
171 },
172};
173
174static struct omap_led_platform_data apollon_led_data = {
175 .nr_leds = ARRAY_SIZE(apollon_led_config),
176 .leds = apollon_led_config,
177};
178
179static struct platform_device apollon_led_device = {
180 .name = "omap-led",
181 .id = -1,
182 .dev = {
183 .platform_data = &apollon_led_data,
184 },
185};
186
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100187static struct platform_device *apollon_devices[] __initdata = {
188 &apollon_onenand_device,
189 &apollon_smc91x_device,
Kyungmin Parkf0248402006-12-06 17:13:53 -0800190 &apollon_led_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100191};
192
193static inline void __init apollon_init_smc91x(void)
194{
Kyungmin Parkf0248402006-12-06 17:13:53 -0800195 unsigned long base;
196
Paul Walmsley44595982008-03-18 10:04:51 +0200197 unsigned int rate;
198 struct clk *gpmc_fck;
199 int eth_cs;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300200 int err;
Paul Walmsley44595982008-03-18 10:04:51 +0200201
202 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
203 if (IS_ERR(gpmc_fck)) {
204 WARN_ON(1);
205 return;
206 }
207
208 clk_enable(gpmc_fck);
209 rate = clk_get_rate(gpmc_fck);
210
211 eth_cs = APOLLON_ETH_CS;
212
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100213 /* Make sure CS1 timings are correct */
Paul Walmsley44595982008-03-18 10:04:51 +0200214 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200);
215
216 if (rate >= 160000000) {
217 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
218 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
219 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
220 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
221 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
222 } else if (rate >= 130000000) {
223 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
224 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
225 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
226 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
227 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
228 } else {/* rate = 100000000 */
229 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
230 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
231 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
232 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F);
233 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
234 }
Kyungmin Parkf0248402006-12-06 17:13:53 -0800235
236 if (gpmc_cs_request(APOLLON_ETH_CS, SZ_16M, &base) < 0) {
237 printk(KERN_ERR "Failed to request GPMC CS for smc91x\n");
Paul Walmsley44595982008-03-18 10:04:51 +0200238 goto out;
Kyungmin Parkf0248402006-12-06 17:13:53 -0800239 }
240 apollon_smc91x_resources[0].start = base + 0x300;
241 apollon_smc91x_resources[0].end = base + 0x30f;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100242 udelay(100);
243
Igor Grinbergbc593f52011-05-03 18:22:09 +0300244 omap_mux_init_gpio(APOLLON_ETHR_GPIO_IRQ, 0);
245 err = gpio_request_one(APOLLON_ETHR_GPIO_IRQ, GPIOF_IN, "SMC91x irq");
246 if (err) {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100247 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
248 APOLLON_ETHR_GPIO_IRQ);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800249 gpmc_cs_free(APOLLON_ETH_CS);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100250 }
Paul Walmsley44595982008-03-18 10:04:51 +0200251out:
252 clk_disable(gpmc_fck);
253 clk_put(gpmc_fck);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100254}
255
Kyungmin Parkf0248402006-12-06 17:13:53 -0800256static struct omap_usb_config apollon_usb_config __initdata = {
257 .register_dev = 1,
258 .hmc_mode = 0x14, /* 0:dev 1:host1 2:disable */
259
260 .pins[0] = 6,
261};
262
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300263static struct panel_generic_dpi_data apollon_panel_data = {
264 .name = "apollon",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100265};
266
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300267static struct omap_dss_device apollon_lcd_device = {
268 .name = "lcd",
269 .driver_name = "generic_dpi_panel",
270 .type = OMAP_DISPLAY_TYPE_DPI,
271 .phy.dpi.data_lines = 18,
272 .data = &apollon_panel_data,
273};
274
275static struct omap_dss_device *apollon_dss_devices[] = {
276 &apollon_lcd_device,
277};
278
279static struct omap_dss_board_info apollon_dss_data = {
280 .num_devices = ARRAY_SIZE(apollon_dss_devices),
281 .devices = apollon_dss_devices,
282 .default_device = &apollon_lcd_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100283};
284
Igor Grinbergbc593f52011-05-03 18:22:09 +0300285static struct gpio apollon_gpio_leds[] __initdata = {
286 { LED0_GPIO13, GPIOF_OUT_INIT_LOW, "LED0" }, /* LED0 - AA10 */
287 { LED1_GPIO14, GPIOF_OUT_INIT_LOW, "LED1" }, /* LED1 - AA6 */
288 { LED2_GPIO15, GPIOF_OUT_INIT_LOW, "LED2" }, /* LED2 - AA4 */
289};
290
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100291static void __init apollon_led_init(void)
292{
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300293 omap_mux_init_signal("vlynq_clk.gpio_13", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300294 omap_mux_init_signal("vlynq_rx1.gpio_14", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300295 omap_mux_init_signal("vlynq_rx0.gpio_15", 0);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300296
297 gpio_request_array(apollon_gpio_leds, ARRAY_SIZE(apollon_gpio_leds));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100298}
299
Kyungmin Parkf0248402006-12-06 17:13:53 -0800300static void __init apollon_usb_init(void)
301{
302 /* USB device */
303 /* DEVICE_SUSPEND */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300304 omap_mux_init_signal("mcbsp2_clkx.gpio_12", 0);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300305 gpio_request_one(12, GPIOF_OUT_INIT_LOW, "USB suspend");
Tony Lindgrenb5e89052010-07-05 16:31:29 +0300306 omap2_usbfs_init(&apollon_usb_config);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800307}
308
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300309#ifdef CONFIG_OMAP_MUX
310static struct omap_board_mux board_mux[] __initdata = {
311 { .reg_offset = OMAP_MUX_TERMINATOR },
312};
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300313#endif
314
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100315static void __init omap_apollon_init(void)
316{
Paul Walmsley44595982008-03-18 10:04:51 +0200317 u32 v;
318
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300319 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
320
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800321 apollon_init_smc91x();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100322 apollon_led_init();
Kyungmin Parkf0248402006-12-06 17:13:53 -0800323 apollon_flash_init();
324 apollon_usb_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100325
326 /* REVISIT: where's the correct place */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300327 omap_mux_init_signal("sys_nirq", OMAP_PULL_ENA | OMAP_PULL_UP);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100328
Tony Lindgren18dbe6c2010-07-05 16:31:39 +0300329 /* LCD PWR_EN */
330 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
331
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300332 /* Use Interal loop-back in MMC/SDIO Module Input Clock selection */
Paul Walmsley44595982008-03-18 10:04:51 +0200333 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
334 v |= (1 << 24);
335 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300336
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100337 /*
338 * Make sure the serial ports are muxed on at this point.
339 * You have to mux them off in device drivers later on
340 * if not needed.
341 */
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700342 apollon_smc91x_resources[1].start = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
343 apollon_smc91x_resources[1].end = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100344 platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100345 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700346 omap_sdrc_init(NULL, NULL);
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300347 omap_display_init(&apollon_dss_data);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100348}
349
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100350MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon")
351 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400352 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100353 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700354 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700355 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700356 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100357 .handle_irq = omap2_intc_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100358 .init_machine = omap_apollon_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700359 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000360 .restart = omap_prcm_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100361MACHINE_END