blob: 8eee9930ee5fc9b46d4396e416e191633fdf8591 [file] [log] [blame]
Jason9cbc3492010-05-17 14:39:09 +08001/*
2 * linux/arch/arm/mach-omap2/board-omap3evm.c
3 *
4 * Copyright (C) 2008 Guangzhou EMA-Tech
5 *
6 * Modified from mach-omap2/board-omap3evm.c
7 *
8 * Initial code: Syed Mohammed Khasim
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/delay.h>
19#include <linux/err.h>
20#include <linux/clk.h>
21#include <linux/io.h>
22#include <linux/leds.h>
23#include <linux/gpio.h>
24#include <linux/input.h>
25#include <linux/gpio_keys.h>
26
27#include <linux/regulator/machine.h>
28#include <linux/i2c/twl.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000029#include <linux/mmc/host.h>
Jason9cbc3492010-05-17 14:39:09 +080030
31#include <mach/hardware.h>
32#include <asm/mach-types.h>
33#include <asm/mach/arch.h>
34#include <asm/mach/map.h>
35#include <asm/mach/flash.h>
36
37#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010038#include "common.h"
Jason9cbc3492010-05-17 14:39:09 +080039#include <plat/gpmc.h>
40#include <plat/nand.h>
41#include <plat/usb.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030042#include <video/omapdss.h>
Tomi Valkeinenf8ae2f02011-05-10 19:48:10 +030043#include <video/omap-panel-generic-dpi.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030044#include <video/omap-panel-dvi.h>
Jason9cbc3492010-05-17 14:39:09 +080045
46#include <plat/mcspi.h>
47#include <linux/input/matrix_keypad.h>
48#include <linux/spi/spi.h>
Jason9cbc3492010-05-17 14:39:09 +080049#include <linux/interrupt.h>
50#include <linux/smsc911x.h>
51#include <linux/i2c/at24.h>
52
53#include "sdram-micron-mt46h32m32lf-6.h"
54#include "mux.h"
55#include "hsmmc.h"
Mike Rapoport96974a22011-04-25 01:09:05 +030056#include "common-board-devices.h"
Jason9cbc3492010-05-17 14:39:09 +080057
58#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
Mike Rapoport21b42732011-04-16 22:29:30 +000059#include <plat/gpmc-smsc911x.h>
60
Jason9cbc3492010-05-17 14:39:09 +080061#define OMAP3STALKER_ETHR_START 0x2c000000
62#define OMAP3STALKER_ETHR_SIZE 1024
63#define OMAP3STALKER_ETHR_GPIO_IRQ 19
64#define OMAP3STALKER_SMC911X_CS 5
65
Mike Rapoport21b42732011-04-16 22:29:30 +000066static struct omap_smsc911x_platform_data smsc911x_cfg = {
67 .cs = OMAP3STALKER_SMC911X_CS,
68 .gpio_irq = OMAP3STALKER_ETHR_GPIO_IRQ,
69 .gpio_reset = -EINVAL,
Jason9cbc3492010-05-17 14:39:09 +080070 .flags = (SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS),
71};
72
Jason9cbc3492010-05-17 14:39:09 +080073static inline void __init omap3stalker_init_eth(void)
74{
Jason9cbc3492010-05-17 14:39:09 +080075 struct clk *l3ck;
76 unsigned int rate;
77
Jason9cbc3492010-05-17 14:39:09 +080078 l3ck = clk_get(NULL, "l3_ck");
79 if (IS_ERR(l3ck))
80 rate = 100000000;
81 else
82 rate = clk_get_rate(l3ck);
83
84 omap_mux_init_gpio(19, OMAP_PIN_INPUT_PULLUP);
Mike Rapoport21b42732011-04-16 22:29:30 +000085 gpmc_smsc911x_init(&smsc911x_cfg);
Jason9cbc3492010-05-17 14:39:09 +080086}
87
88#else
89static inline void __init omap3stalker_init_eth(void)
90{
91 return;
92}
93#endif
94
95/*
96 * OMAP3 DSS control signals
97 */
98
99#define DSS_ENABLE_GPIO 199
100#define LCD_PANEL_BKLIGHT_GPIO 210
101#define ENABLE_VPLL2_DEV_GRP 0xE0
102
103static int lcd_enabled;
104static int dvi_enabled;
105
106static void __init omap3_stalker_display_init(void)
107{
108 return;
109}
110
Jason9cbc3492010-05-17 14:39:09 +0800111static int omap3_stalker_enable_tv(struct omap_dss_device *dssdev)
112{
113 return 0;
114}
115
116static void omap3_stalker_disable_tv(struct omap_dss_device *dssdev)
117{
118}
119
120static struct omap_dss_device omap3_stalker_tv_device = {
121 .name = "tv",
122 .driver_name = "venc",
123 .type = OMAP_DISPLAY_TYPE_VENC,
124#if defined(CONFIG_OMAP2_VENC_OUT_TYPE_SVIDEO)
125 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
126#elif defined(CONFIG_OMAP2_VENC_OUT_TYPE_COMPOSITE)
127 .u.venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE,
128#endif
129 .platform_enable = omap3_stalker_enable_tv,
130 .platform_disable = omap3_stalker_disable_tv,
131};
132
133static int omap3_stalker_enable_dvi(struct omap_dss_device *dssdev)
134{
135 if (lcd_enabled) {
136 printk(KERN_ERR "cannot enable DVI, LCD is enabled\n");
137 return -EINVAL;
138 }
139 gpio_set_value(DSS_ENABLE_GPIO, 1);
140 dvi_enabled = 1;
141 return 0;
142}
143
144static void omap3_stalker_disable_dvi(struct omap_dss_device *dssdev)
145{
146 gpio_set_value(DSS_ENABLE_GPIO, 0);
147 dvi_enabled = 0;
148}
149
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300150static struct panel_dvi_platform_data dvi_panel = {
Jason9cbc3492010-05-17 14:39:09 +0800151 .platform_enable = omap3_stalker_enable_dvi,
152 .platform_disable = omap3_stalker_disable_dvi,
153};
154
Bryan Wu89747c92010-11-17 13:34:34 +0000155static struct omap_dss_device omap3_stalker_dvi_device = {
156 .name = "dvi",
157 .type = OMAP_DISPLAY_TYPE_DPI,
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300158 .driver_name = "dvi",
Bryan Wu89747c92010-11-17 13:34:34 +0000159 .data = &dvi_panel,
160 .phy.dpi.data_lines = 24,
161};
162
Jason9cbc3492010-05-17 14:39:09 +0800163static struct omap_dss_device *omap3_stalker_dss_devices[] = {
Jason9cbc3492010-05-17 14:39:09 +0800164 &omap3_stalker_tv_device,
165 &omap3_stalker_dvi_device,
166};
167
168static struct omap_dss_board_info omap3_stalker_dss_data = {
169 .num_devices = ARRAY_SIZE(omap3_stalker_dss_devices),
170 .devices = omap3_stalker_dss_devices,
171 .default_device = &omap3_stalker_dvi_device,
172};
173
Oleg Drokin786b01a2011-06-06 18:57:07 +0000174static struct regulator_consumer_supply omap3stalker_vmmc1_supply[] = {
175 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Jason9cbc3492010-05-17 14:39:09 +0800176};
177
Oleg Drokin786b01a2011-06-06 18:57:07 +0000178static struct regulator_consumer_supply omap3stalker_vsim_supply[] = {
179 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Jason9cbc3492010-05-17 14:39:09 +0800180};
181
182/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
183static struct regulator_init_data omap3stalker_vmmc1 = {
184 .constraints = {
185 .min_uV = 1850000,
186 .max_uV = 3150000,
187 .valid_modes_mask = REGULATOR_MODE_NORMAL
188 | REGULATOR_MODE_STANDBY,
189 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
190 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
191 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000192 .num_consumer_supplies = ARRAY_SIZE(omap3stalker_vmmc1_supply),
193 .consumer_supplies = omap3stalker_vmmc1_supply,
Jason9cbc3492010-05-17 14:39:09 +0800194};
195
196/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
197static struct regulator_init_data omap3stalker_vsim = {
198 .constraints = {
199 .min_uV = 1800000,
200 .max_uV = 3000000,
201 .valid_modes_mask = REGULATOR_MODE_NORMAL
202 | REGULATOR_MODE_STANDBY,
203 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
204 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
205 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000206 .num_consumer_supplies = ARRAY_SIZE(omap3stalker_vsim_supply),
207 .consumer_supplies = omap3stalker_vsim_supply,
Jason9cbc3492010-05-17 14:39:09 +0800208};
209
210static struct omap2_hsmmc_info mmc[] = {
211 {
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800212 .mmc = 1,
213 .caps = MMC_CAP_4_BIT_DATA,
214 .gpio_cd = -EINVAL,
215 .gpio_wp = 23,
216 .deferred = true,
Jason9cbc3492010-05-17 14:39:09 +0800217 },
218 {} /* Terminator */
219};
220
221static struct gpio_keys_button gpio_buttons[] = {
222 {
223 .code = BTN_EXTRA,
224 .gpio = 18,
225 .desc = "user",
226 .wakeup = 1,
227 },
228};
229
230static struct gpio_keys_platform_data gpio_key_info = {
231 .buttons = gpio_buttons,
232 .nbuttons = ARRAY_SIZE(gpio_buttons),
233};
234
235static struct platform_device keys_gpio = {
236 .name = "gpio-keys",
237 .id = -1,
238 .dev = {
239 .platform_data = &gpio_key_info,
240 },
241};
242
243static struct gpio_led gpio_leds[] = {
244 {
245 .name = "stalker:D8:usr0",
246 .default_trigger = "default-on",
247 .gpio = 126,
248 },
249 {
250 .name = "stalker:D9:usr1",
251 .default_trigger = "default-on",
252 .gpio = 127,
253 },
254 {
255 .name = "stalker:D3:mmc0",
256 .gpio = -EINVAL, /* gets replaced */
257 .active_low = true,
258 .default_trigger = "mmc0",
259 },
260 {
261 .name = "stalker:D4:heartbeat",
262 .gpio = -EINVAL, /* gets replaced */
263 .active_low = true,
264 .default_trigger = "heartbeat",
265 },
266};
267
268static struct gpio_led_platform_data gpio_led_info = {
269 .leds = gpio_leds,
270 .num_leds = ARRAY_SIZE(gpio_leds),
271};
272
273static struct platform_device leds_gpio = {
274 .name = "leds-gpio",
275 .id = -1,
276 .dev = {
277 .platform_data = &gpio_led_info,
278 },
279};
280
281static int
282omap3stalker_twl_gpio_setup(struct device *dev,
283 unsigned gpio, unsigned ngpio)
284{
285 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
286 omap_mux_init_gpio(23, OMAP_PIN_INPUT);
287 mmc[0].gpio_cd = gpio + 0;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800288 omap_hsmmc_late_init(mmc);
Jason9cbc3492010-05-17 14:39:09 +0800289
Jason9cbc3492010-05-17 14:39:09 +0800290 /*
291 * Most GPIOs are for USB OTG. Some are mostly sent to
292 * the P2 connector; notably LEDA for the LCD backlight.
293 */
294
295 /* TWL4030_GPIO_MAX + 0 == ledA, LCD Backlight control */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300296 gpio_request_one(gpio + TWL4030_GPIO_MAX, GPIOF_OUT_INIT_LOW,
297 "EN_LCD_BKL");
Jason9cbc3492010-05-17 14:39:09 +0800298
299 /* gpio + 7 == DVI Enable */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300300 gpio_request_one(gpio + 7, GPIOF_OUT_INIT_LOW, "EN_DVI");
Jason9cbc3492010-05-17 14:39:09 +0800301
302 /* TWL4030_GPIO_MAX + 1 == ledB (out, mmc0) */
303 gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
304 /* GPIO + 13 == ledsync (out, heartbeat) */
305 gpio_leds[3].gpio = gpio + 13;
306
307 platform_device_register(&leds_gpio);
308 return 0;
309}
310
311static struct twl4030_gpio_platform_data omap3stalker_gpio_data = {
312 .gpio_base = OMAP_MAX_GPIO_LINES,
313 .irq_base = TWL4030_GPIO_IRQ_BASE,
314 .irq_end = TWL4030_GPIO_IRQ_END,
315 .use_leds = true,
316 .setup = omap3stalker_twl_gpio_setup,
317};
318
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700319static uint32_t board_keymap[] = {
Jason9cbc3492010-05-17 14:39:09 +0800320 KEY(0, 0, KEY_LEFT),
321 KEY(0, 1, KEY_DOWN),
322 KEY(0, 2, KEY_ENTER),
323 KEY(0, 3, KEY_M),
324
325 KEY(1, 0, KEY_RIGHT),
326 KEY(1, 1, KEY_UP),
327 KEY(1, 2, KEY_I),
328 KEY(1, 3, KEY_N),
329
330 KEY(2, 0, KEY_A),
331 KEY(2, 1, KEY_E),
332 KEY(2, 2, KEY_J),
333 KEY(2, 3, KEY_O),
334
335 KEY(3, 0, KEY_B),
336 KEY(3, 1, KEY_F),
337 KEY(3, 2, KEY_K),
338 KEY(3, 3, KEY_P)
339};
340
341static struct matrix_keymap_data board_map_data = {
342 .keymap = board_keymap,
343 .keymap_size = ARRAY_SIZE(board_keymap),
344};
345
346static struct twl4030_keypad_data omap3stalker_kp_data = {
347 .keymap_data = &board_map_data,
348 .rows = 4,
349 .cols = 4,
350 .rep = 1,
351};
352
Jason9cbc3492010-05-17 14:39:09 +0800353static struct twl4030_platform_data omap3stalker_twldata = {
Jason9cbc3492010-05-17 14:39:09 +0800354 /* platform_data for children goes here */
355 .keypad = &omap3stalker_kp_data,
Jason9cbc3492010-05-17 14:39:09 +0800356 .gpio = &omap3stalker_gpio_data,
Mike Rapoportfbd80712011-04-25 01:09:06 +0300357 .vmmc1 = &omap3stalker_vmmc1,
358 .vsim = &omap3stalker_vsim,
Jason9cbc3492010-05-17 14:39:09 +0800359};
360
361static struct at24_platform_data fram_info = {
362 .byte_len = (64 * 1024) / 8,
363 .page_size = 8192,
364 .flags = AT24_FLAG_ADDR16 | AT24_FLAG_IRUGO,
365};
366
367static struct i2c_board_info __initdata omap3stalker_i2c_boardinfo3[] = {
368 {
369 I2C_BOARD_INFO("24c64", 0x50),
370 .flags = I2C_CLIENT_WAKE,
371 .platform_data = &fram_info,
372 },
373};
374
375static int __init omap3_stalker_i2c_init(void)
376{
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +0300377 omap3_pmic_get_config(&omap3stalker_twldata,
378 TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_MADC |
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300379 TWL_COMMON_PDATA_AUDIO,
380 TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
381
382 omap3stalker_twldata.vdac->constraints.apply_uV = true;
383 omap3stalker_twldata.vpll2->constraints.apply_uV = true;
384 omap3stalker_twldata.vpll2->constraints.name = "VDVI";
385
Mike Rapoportfbd80712011-04-25 01:09:06 +0300386 omap3_pmic_init("twl4030", &omap3stalker_twldata);
Jason9cbc3492010-05-17 14:39:09 +0800387 omap_register_i2c_bus(2, 400, NULL, 0);
388 omap_register_i2c_bus(3, 400, omap3stalker_i2c_boardinfo3,
389 ARRAY_SIZE(omap3stalker_i2c_boardinfo3));
390 return 0;
391}
392
393#define OMAP3_STALKER_TS_GPIO 175
Jason9cbc3492010-05-17 14:39:09 +0800394
395static struct omap_board_config_kernel omap3_stalker_config[] __initdata = {
396};
397
Jason9cbc3492010-05-17 14:39:09 +0800398static struct platform_device *omap3_stalker_devices[] __initdata = {
Jason9cbc3492010-05-17 14:39:09 +0800399 &keys_gpio,
400};
401
Keshava Munegowda181b2502011-03-01 20:08:16 +0530402static struct usbhs_omap_board_data usbhs_bdata __initconst = {
403 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
404 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
405 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Jason9cbc3492010-05-17 14:39:09 +0800406
407 .phy_reset = true,
408 .reset_gpio_port[0] = -EINVAL,
409 .reset_gpio_port[1] = 21,
410 .reset_gpio_port[2] = -EINVAL,
411};
412
413#ifdef CONFIG_OMAP_MUX
414static struct omap_board_mux board_mux[] __initdata = {
415 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP |
416 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE),
417 OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP |
418 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE),
419 {.reg_offset = OMAP_MUX_TERMINATOR},
420};
Jason9cbc3492010-05-17 14:39:09 +0800421#endif
422
Jason9cbc3492010-05-17 14:39:09 +0800423static void __init omap3_stalker_init(void)
424{
425 omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800426 omap_board_config = omap3_stalker_config;
427 omap_board_config_size = ARRAY_SIZE(omap3_stalker_config);
Jason9cbc3492010-05-17 14:39:09 +0800428
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800429 omap_hsmmc_init(mmc);
Jason9cbc3492010-05-17 14:39:09 +0800430 omap3_stalker_i2c_init();
431
432 platform_add_devices(omap3_stalker_devices,
433 ARRAY_SIZE(omap3_stalker_devices));
434
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200435 omap_display_init(&omap3_stalker_dss_data);
Jason9cbc3492010-05-17 14:39:09 +0800436
437 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700438 omap_sdrc_init(mt46h32m32lf6_sdrc_params, NULL);
Mike Rapoport9e186302011-04-27 11:56:12 +0300439 usb_musb_init(NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530440 usbhs_init(&usbhs_bdata);
Mike Rapoport96974a22011-04-25 01:09:05 +0300441 omap_ads7846_init(1, OMAP3_STALKER_TS_GPIO, 310, NULL);
Jason9cbc3492010-05-17 14:39:09 +0800442
443 omap_mux_init_gpio(21, OMAP_PIN_OUTPUT);
444 omap_mux_init_gpio(18, OMAP_PIN_INPUT_PULLUP);
445
446 omap3stalker_init_eth();
447 omap3_stalker_display_init();
448/* Ensure SDRC pins are mux'd for self-refresh */
449 omap_mux_init_signal("sdr_cke0", OMAP_PIN_OUTPUT);
450 omap_mux_init_signal("sdr_cke1", OMAP_PIN_OUTPUT);
451}
452
Jason9cbc3492010-05-17 14:39:09 +0800453MACHINE_START(SBC3530, "OMAP3 STALKER")
454 /* Maintainer: Jason Lam -lzg@ema-tech.com */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400455 .atag_offset = 0x100,
Mike Rapoport869fef42010-08-04 14:43:18 +0300456 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700457 .init_early = omap35xx_init_early,
Tony Lindgrenbe732462011-09-26 15:25:22 -0700458 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100459 .handle_irq = omap3_intc_handle_irq,
Jason9cbc3492010-05-17 14:39:09 +0800460 .init_machine = omap3_stalker_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700461 .timer = &omap3_secure_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000462 .restart = omap_prcm_restart,
Jason9cbc3492010-05-17 14:39:09 +0800463MACHINE_END