blob: e5fa46bfde2f3992b62d3ef1ddc339163cfd10d2 [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/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010039#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070040#include <plat/gpmc.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010041
Tomi Valkeinenda91e892011-05-09 10:13:20 +030042#include <video/omapdss.h>
43#include <video/omap-panel-generic-dpi.h>
44
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030045#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060046#include "control.h"
Tony Lindgrenb52b14e2010-07-05 16:31:37 +030047
Tony Lindgren9b6553c2006-04-02 17:46:30 +010048/* LED & Switch macros */
49#define LED0_GPIO13 13
50#define LED1_GPIO14 14
51#define LED2_GPIO15 15
52#define SW_ENTER_GPIO16 16
53#define SW_UP_GPIO17 17
54#define SW_DOWN_GPIO58 58
55
Kyungmin Parkf0248402006-12-06 17:13:53 -080056#define APOLLON_FLASH_CS 0
57#define APOLLON_ETH_CS 1
Tony Lindgren70554772009-03-23 18:07:35 -070058#define APOLLON_ETHR_GPIO_IRQ 74
Kyungmin Parkf0248402006-12-06 17:13:53 -080059
Tony Lindgren9b6553c2006-04-02 17:46:30 +010060static struct mtd_partition apollon_partitions[] = {
61 {
62 .name = "X-Loader + U-Boot",
63 .offset = 0,
64 .size = SZ_128K,
65 .mask_flags = MTD_WRITEABLE,
66 },
67 {
68 .name = "params",
69 .offset = MTDPART_OFS_APPEND,
70 .size = SZ_128K,
71 },
72 {
73 .name = "kernel",
74 .offset = MTDPART_OFS_APPEND,
75 .size = SZ_2M,
76 },
77 {
78 .name = "rootfs",
79 .offset = MTDPART_OFS_APPEND,
80 .size = SZ_16M,
81 },
82 {
83 .name = "filesystem00",
84 .offset = MTDPART_OFS_APPEND,
85 .size = SZ_32M,
86 },
87 {
88 .name = "filesystem01",
89 .offset = MTDPART_OFS_APPEND,
90 .size = MTDPART_SIZ_FULL,
91 },
92};
93
Magnus Damm778dbcc2009-09-18 12:51:44 -070094static struct onenand_platform_data apollon_flash_data = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +010095 .parts = apollon_partitions,
96 .nr_parts = ARRAY_SIZE(apollon_partitions),
97};
98
Kyungmin Parkf0248402006-12-06 17:13:53 -080099static struct resource apollon_flash_resource[] = {
100 [0] = {
101 .flags = IORESOURCE_MEM,
102 },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100103};
104
105static struct platform_device apollon_onenand_device = {
Magnus Damm778dbcc2009-09-18 12:51:44 -0700106 .name = "onenand-flash",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100107 .id = -1,
108 .dev = {
109 .platform_data = &apollon_flash_data,
110 },
Kyungmin Parkf0248402006-12-06 17:13:53 -0800111 .num_resources = ARRAY_SIZE(apollon_flash_resource),
112 .resource = apollon_flash_resource,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100113};
114
Kyungmin Parkf0248402006-12-06 17:13:53 -0800115static void __init apollon_flash_init(void)
116{
117 unsigned long base;
118
119 if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) {
120 printk(KERN_ERR "Cannot request OneNAND GPMC CS\n");
121 return;
122 }
123 apollon_flash_resource[0].start = base;
124 apollon_flash_resource[0].end = base + SZ_128K - 1;
125}
126
Ladislav Michl3bc48012009-12-11 16:16:33 -0800127static struct smc91x_platdata appolon_smc91x_info = {
128 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
129 .leda = RPC_LED_100_10,
130 .ledb = RPC_LED_TX_RX,
131};
132
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100133static struct resource apollon_smc91x_resources[] = {
134 [0] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100135 .flags = IORESOURCE_MEM,
136 },
137 [1] = {
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
Kyungmin Parkf0248402006-12-06 17:13:53 -0800152static struct omap_led_config apollon_led_config[] = {
153 {
154 .cdev = {
155 .name = "apollon:led0",
156 },
157 .gpio = LED0_GPIO13,
158 },
159 {
160 .cdev = {
161 .name = "apollon:led1",
162 },
163 .gpio = LED1_GPIO14,
164 },
165 {
166 .cdev = {
167 .name = "apollon:led2",
168 },
169 .gpio = LED2_GPIO15,
170 },
171};
172
173static struct omap_led_platform_data apollon_led_data = {
174 .nr_leds = ARRAY_SIZE(apollon_led_config),
175 .leds = apollon_led_config,
176};
177
178static struct platform_device apollon_led_device = {
179 .name = "omap-led",
180 .id = -1,
181 .dev = {
182 .platform_data = &apollon_led_data,
183 },
184};
185
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100186static struct platform_device *apollon_devices[] __initdata = {
187 &apollon_onenand_device,
188 &apollon_smc91x_device,
Kyungmin Parkf0248402006-12-06 17:13:53 -0800189 &apollon_led_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100190};
191
192static inline void __init apollon_init_smc91x(void)
193{
Kyungmin Parkf0248402006-12-06 17:13:53 -0800194 unsigned long base;
195
Paul Walmsley44595982008-03-18 10:04:51 +0200196 unsigned int rate;
197 struct clk *gpmc_fck;
198 int eth_cs;
Igor Grinbergbc593f52011-05-03 18:22:09 +0300199 int err;
Paul Walmsley44595982008-03-18 10:04:51 +0200200
201 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
202 if (IS_ERR(gpmc_fck)) {
203 WARN_ON(1);
204 return;
205 }
206
207 clk_enable(gpmc_fck);
208 rate = clk_get_rate(gpmc_fck);
209
210 eth_cs = APOLLON_ETH_CS;
211
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100212 /* Make sure CS1 timings are correct */
Paul Walmsley44595982008-03-18 10:04:51 +0200213 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200);
214
215 if (rate >= 160000000) {
216 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
217 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
218 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
219 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
220 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
221 } else if (rate >= 130000000) {
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, 0x041f1F1F);
226 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
227 } else {/* rate = 100000000 */
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, 0x031A1F1F);
232 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
233 }
Kyungmin Parkf0248402006-12-06 17:13:53 -0800234
235 if (gpmc_cs_request(APOLLON_ETH_CS, SZ_16M, &base) < 0) {
236 printk(KERN_ERR "Failed to request GPMC CS for smc91x\n");
Paul Walmsley44595982008-03-18 10:04:51 +0200237 goto out;
Kyungmin Parkf0248402006-12-06 17:13:53 -0800238 }
239 apollon_smc91x_resources[0].start = base + 0x300;
240 apollon_smc91x_resources[0].end = base + 0x30f;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100241 udelay(100);
242
Igor Grinbergbc593f52011-05-03 18:22:09 +0300243 omap_mux_init_gpio(APOLLON_ETHR_GPIO_IRQ, 0);
244 err = gpio_request_one(APOLLON_ETHR_GPIO_IRQ, GPIOF_IN, "SMC91x irq");
245 if (err) {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100246 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
247 APOLLON_ETHR_GPIO_IRQ);
Kyungmin Parkf0248402006-12-06 17:13:53 -0800248 gpmc_cs_free(APOLLON_ETH_CS);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100249 }
Paul Walmsley44595982008-03-18 10:04:51 +0200250out:
251 clk_disable(gpmc_fck);
252 clk_put(gpmc_fck);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100253}
254
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300255static struct panel_generic_dpi_data apollon_panel_data = {
256 .name = "apollon",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100257};
258
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300259static struct omap_dss_device apollon_lcd_device = {
260 .name = "lcd",
261 .driver_name = "generic_dpi_panel",
262 .type = OMAP_DISPLAY_TYPE_DPI,
263 .phy.dpi.data_lines = 18,
264 .data = &apollon_panel_data,
265};
266
267static struct omap_dss_device *apollon_dss_devices[] = {
268 &apollon_lcd_device,
269};
270
271static struct omap_dss_board_info apollon_dss_data = {
272 .num_devices = ARRAY_SIZE(apollon_dss_devices),
273 .devices = apollon_dss_devices,
274 .default_device = &apollon_lcd_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100275};
276
Igor Grinbergbc593f52011-05-03 18:22:09 +0300277static struct gpio apollon_gpio_leds[] __initdata = {
278 { LED0_GPIO13, GPIOF_OUT_INIT_LOW, "LED0" }, /* LED0 - AA10 */
279 { LED1_GPIO14, GPIOF_OUT_INIT_LOW, "LED1" }, /* LED1 - AA6 */
280 { LED2_GPIO15, GPIOF_OUT_INIT_LOW, "LED2" }, /* LED2 - AA4 */
281};
282
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100283static void __init apollon_led_init(void)
284{
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300285 omap_mux_init_signal("vlynq_clk.gpio_13", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300286 omap_mux_init_signal("vlynq_rx1.gpio_14", 0);
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300287 omap_mux_init_signal("vlynq_rx0.gpio_15", 0);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300288
289 gpio_request_array(apollon_gpio_leds, ARRAY_SIZE(apollon_gpio_leds));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100290}
291
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300292#ifdef CONFIG_OMAP_MUX
293static struct omap_board_mux board_mux[] __initdata = {
294 { .reg_offset = OMAP_MUX_TERMINATOR },
295};
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300296#endif
297
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100298static void __init omap_apollon_init(void)
299{
Paul Walmsley44595982008-03-18 10:04:51 +0200300 u32 v;
301
Tony Lindgrenb52b14e2010-07-05 16:31:37 +0300302 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
303
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800304 apollon_init_smc91x();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100305 apollon_led_init();
Kyungmin Parkf0248402006-12-06 17:13:53 -0800306 apollon_flash_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100307
308 /* REVISIT: where's the correct place */
Tony Lindgrenf99bf162010-07-05 16:31:40 +0300309 omap_mux_init_signal("sys_nirq", OMAP_PULL_ENA | OMAP_PULL_UP);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100310
Tony Lindgren18dbe6c2010-07-05 16:31:39 +0300311 /* LCD PWR_EN */
312 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
313
Masanari Iida260db902012-07-12 00:56:57 +0900314 /* Use Internal loop-back in MMC/SDIO Module Input Clock selection */
Paul Walmsley44595982008-03-18 10:04:51 +0200315 v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0);
316 v |= (1 << 24);
317 omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0);
Kyungmin Parkabc45e12006-09-25 12:41:25 +0300318
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100319 /*
320 * Make sure the serial ports are muxed on at this point.
321 * You have to mux them off in device drivers later on
322 * if not needed.
323 */
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700324 apollon_smc91x_resources[1].start = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
325 apollon_smc91x_resources[1].end = gpio_to_irq(APOLLON_ETHR_GPIO_IRQ);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100326 platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100327 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700328 omap_sdrc_init(NULL, NULL);
Tomi Valkeinenda91e892011-05-09 10:13:20 +0300329 omap_display_init(&apollon_dss_data);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100330}
331
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100332MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon")
333 /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400334 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100335 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700336 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700337 .init_early = omap2420_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700338 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100339 .handle_irq = omap2_intc_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100340 .init_machine = omap_apollon_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800341 .init_late = omap2420_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700342 .timer = &omap2_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000343 .restart = omap_prcm_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100344MACHINE_END