blob: a6a1b481cac149eb3e8e534ce1687df4ede4daa3 [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 Lindgren4e653312011-11-10 22:45:17 +010038#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/gpmc.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010040
Tomi Valkeinenda91e892011-05-09 10:13:20 +030041#include <video/omapdss.h>
42#include <video/omap-panel-generic-dpi.h>
43
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030044#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060045#include "control.h"
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030046
Tony Lindgren9b6553c2006-04-02 17:46:30 +010047/* LED & Switch macros */
48#define LED0_GPIO13 13
49#define LED1_GPIO14 14
50#define LED2_GPIO15 15
51#define SW_ENTER_GPIO16 16
52#define SW_UP_GPIO17 17
53#define SW_DOWN_GPIO58 58
54
Kyungmin Parkf0248402006-12-06 17:13:53 -080055#define APOLLON_FLASH_CS 0
56#define APOLLON_ETH_CS 1
Tony Lindgren70554772009-03-23 18:07:35 -070057#define APOLLON_ETHR_GPIO_IRQ 74
Kyungmin Parkf0248402006-12-06 17:13:53 -080058
Tony Lindgren9b6553c2006-04-02 17:46:30 +010059static struct mtd_partition apollon_partitions[] = {
60 {
61 .name = "X-Loader + U-Boot",
62 .offset = 0,
63 .size = SZ_128K,
64 .mask_flags = MTD_WRITEABLE,
65 },
66 {
67 .name = "params",
68 .offset = MTDPART_OFS_APPEND,
69 .size = SZ_128K,
70 },
71 {
72 .name = "kernel",
73 .offset = MTDPART_OFS_APPEND,
74 .size = SZ_2M,
75 },
76 {
77 .name = "rootfs",
78 .offset = MTDPART_OFS_APPEND,
79 .size = SZ_16M,
80 },
81 {
82 .name = "filesystem00",
83 .offset = MTDPART_OFS_APPEND,
84 .size = SZ_32M,
85 },
86 {
87 .name = "filesystem01",
88 .offset = MTDPART_OFS_APPEND,
89 .size = MTDPART_SIZ_FULL,
90 },
91};
92
Magnus Damm778dbcc2009-09-18 12:51:44 -070093static struct onenand_platform_data apollon_flash_data = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +010094 .parts = apollon_partitions,
95 .nr_parts = ARRAY_SIZE(apollon_partitions),
96};
97
Kyungmin Parkf0248402006-12-06 17:13:53 -080098static struct resource apollon_flash_resource[] = {
99 [0] = {
100 .flags = IORESOURCE_MEM,
101 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100102};
103
104static struct platform_device apollon_onenand_device = {
Magnus Damm778dbcc2009-09-18 12:51:44 -0700105 .name = "onenand-flash",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100106 .id = -1,
107 .dev = {
108 .platform_data = &apollon_flash_data,
109 },
Kyungmin Parkf0248402006-12-06 17:13:53 -0800110 .num_resources = ARRAY_SIZE(apollon_flash_resource),
111 .resource = apollon_flash_resource,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100112};
113
Kyungmin Parkf0248402006-12-06 17:13:53 -0800114static void __init apollon_flash_init(void)
115{
116 unsigned long base;
117
118 if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) {
119 printk(KERN_ERR "Cannot request OneNAND GPMC CS\n");
120 return;
121 }
122 apollon_flash_resource[0].start = base;
123 apollon_flash_resource[0].end = base + SZ_128K - 1;
124}
125
Ladislav Michl3bc48012009-12-11 16:16:33 -0800126static struct smc91x_platdata appolon_smc91x_info = {
127 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
128 .leda = RPC_LED_100_10,
129 .ledb = RPC_LED_TX_RX,
130};
131
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100132static struct resource apollon_smc91x_resources[] = {
133 [0] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100134 .flags = IORESOURCE_MEM,
135 },
136 [1] = {
Russell Kinge7b3dc72008-01-14 22:30:10 +0000137 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100138 },
139};
140
141static struct platform_device apollon_smc91x_device = {
142 .name = "smc91x",
143 .id = -1,
Ladislav Michl3bc48012009-12-11 16:16:33 -0800144 .dev = {
145 .platform_data = &appolon_smc91x_info,
146 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100147 .num_resources = ARRAY_SIZE(apollon_smc91x_resources),
148 .resource = apollon_smc91x_resources,
149};
150
Kyungmin Parkf0248402006-12-06 17:13:53 -0800151static struct omap_led_config apollon_led_config[] = {
152 {
153 .cdev = {
154 .name = "apollon:led0",
155 },
156 .gpio = LED0_GPIO13,
157 },
158 {
159 .cdev = {
160 .name = "apollon:led1",
161 },
162 .gpio = LED1_GPIO14,
163 },
164 {
165 .cdev = {
166 .name = "apollon:led2",
167 },
168 .gpio = LED2_GPIO15,
169 },
170};
171
172static struct omap_led_platform_data apollon_led_data = {
173 .nr_leds = ARRAY_SIZE(apollon_led_config),
174 .leds = apollon_led_config,
175};
176
177static struct platform_device apollon_led_device = {
178 .name = "omap-led",
179 .id = -1,
180 .dev = {
181 .platform_data = &apollon_led_data,
182 },
183};
184
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100185static struct platform_device *apollon_devices[] __initdata = {
186 &apollon_onenand_device,
187 &apollon_smc91x_device,
Kyungmin Parkf0248402006-12-06 17:13:53 -0800188 &apollon_led_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100189};
190
191static inline void __init apollon_init_smc91x(void)
192{
Kyungmin Parkf0248402006-12-06 17:13:53 -0800193 unsigned long base;
194
Paul Walmsley44595982008-03-18 10:04:51 +0200195 unsigned int rate;
196 struct clk *gpmc_fck;
197 int eth_cs;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300198 int err;
Paul Walmsley44595982008-03-18 10:04:51 +0200199
200 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
201 if (IS_ERR(gpmc_fck)) {
202 WARN_ON(1);
203 return;
204 }
205
206 clk_enable(gpmc_fck);
207 rate = clk_get_rate(gpmc_fck);
208
209 eth_cs = APOLLON_ETH_CS;
210
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100211 /* Make sure CS1 timings are correct */
Paul Walmsley44595982008-03-18 10:04:51 +0200212 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200);
213
214 if (rate >= 160000000) {
215 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
216 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
217 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
218 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
219 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
220 } else if (rate >= 130000000) {
221 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
222 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
223 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
224 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
225 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
226 } else {/* rate = 100000000 */
227 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
228 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
229 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
230 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F);
231 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
232 }
Kyungmin Parkf0248402006-12-06 17:13:53 -0800233
234 if (gpmc_cs_request(APOLLON_ETH_CS, SZ_16M, &base) < 0) {
235 printk(KERN_ERR "Failed to request GPMC CS for smc91x\n");
Paul Walmsley44595982008-03-18 10:04:51 +0200236 goto out;
Kyungmin Parkf0248402006-12-06 17:13:53 -0800237 }
238 apollon_smc91x_resources[0].start = base + 0x300;
239 apollon_smc91x_resources[0].end = base + 0x30f;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100240 udelay(100);
241
Igor Grinbergbc593f52011-05-03 18:22:09 +0300242 omap_mux_init_gpio(APOLLON_ETHR_GPIO_IRQ, 0);
243 err = gpio_request_one(APOLLON_ETHR_GPIO_IRQ, GPIOF_IN, "SMC91x irq");
244 if (err) {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100245 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
246 APOLLON_ETHR_GPIO_IRQ);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800247 gpmc_cs_free(APOLLON_ETH_CS);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100248 }
Paul Walmsley44595982008-03-18 10:04:51 +0200249out:
250 clk_disable(gpmc_fck);
251 clk_put(gpmc_fck);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100252}
253
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300254static struct panel_generic_dpi_data apollon_panel_data = {
255 .name = "apollon",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100256};
257
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300258static struct omap_dss_device apollon_lcd_device = {
259 .name = "lcd",
260 .driver_name = "generic_dpi_panel",
261 .type = OMAP_DISPLAY_TYPE_DPI,
262 .phy.dpi.data_lines = 18,
263 .data = &apollon_panel_data,
264};
265
266static struct omap_dss_device *apollon_dss_devices[] = {
267 &apollon_lcd_device,
268};
269
270static struct omap_dss_board_info apollon_dss_data = {
271 .num_devices = ARRAY_SIZE(apollon_dss_devices),
272 .devices = apollon_dss_devices,
273 .default_device = &apollon_lcd_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100274};
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
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300291#ifdef CONFIG_OMAP_MUX
292static struct omap_board_mux board_mux[] __initdata = {
293 { .reg_offset = OMAP_MUX_TERMINATOR },
294};
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300295#endif
296
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100297static void __init omap_apollon_init(void)
298{
Paul Walmsley44595982008-03-18 10:04:51 +0200299 u32 v;
300
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300301 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
302
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800303 apollon_init_smc91x();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100304 apollon_led_init();
Kyungmin Parkf0248402006-12-06 17:13:53 -0800305 apollon_flash_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100306
307 /* REVISIT: where's the correct place */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300308 omap_mux_init_signal("sys_nirq", OMAP_PULL_ENA | OMAP_PULL_UP);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100309
Tony Lindgren18dbe6c2010-07-05 16:31:39 +0300310 /* LCD PWR_EN */
311 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
312
Masanari Iida260db902012-07-12 00:56:57 +0900313 /* Use Internal loop-back in MMC/SDIO Module Input Clock selection */
Paul Walmsley44595982008-03-18 10:04:51 +0200314 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
315 v |= (1 << 24);
316 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300317
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100318 /*
319 * Make sure the serial ports are muxed on at this point.
320 * You have to mux them off in device drivers later on
321 * if not needed.
322 */
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700323 apollon_smc91x_resources[1].start = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
324 apollon_smc91x_resources[1].end = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100325 platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100326 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700327 omap_sdrc_init(NULL, NULL);
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300328 omap_display_init(&apollon_dss_data);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100329}
330
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100331MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon")
332 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400333 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100334 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700335 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700336 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700337 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100338 .handle_irq = omap2_intc_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100339 .init_machine = omap_apollon_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800340 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700341 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000342 .restart = omap_prcm_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100343MACHINE_END