blob: 87aa5b1d4c885d38b386948782b2fe3a855d1ca5 [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
Russ Dill5b3689f2012-03-23 02:21:37 -070027#include <linux/regulator/fixed.h>
Jason9cbc3492010-05-17 14:39:09 +080028#include <linux/regulator/machine.h>
29#include <linux/i2c/twl.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000030#include <linux/mmc/host.h>
Jason9cbc3492010-05-17 14:39:09 +080031
32#include <mach/hardware.h>
33#include <asm/mach-types.h>
34#include <asm/mach/arch.h>
35#include <asm/mach/map.h>
36#include <asm/mach/flash.h>
37
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 Valkeinendac8eb52011-12-22 11:12:13 +020044#include <video/omap-panel-tfp410.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 omap_mux_init_gpio(19, OMAP_PIN_INPUT_PULLUP);
Mike Rapoport21b42732011-04-16 22:29:30 +000076 gpmc_smsc911x_init(&smsc911x_cfg);
Jason9cbc3492010-05-17 14:39:09 +080077}
78
79#else
80static inline void __init omap3stalker_init_eth(void)
81{
82 return;
83}
84#endif
85
86/*
87 * OMAP3 DSS control signals
88 */
89
90#define DSS_ENABLE_GPIO 199
91#define LCD_PANEL_BKLIGHT_GPIO 210
92#define ENABLE_VPLL2_DEV_GRP 0xE0
93
Jason9cbc3492010-05-17 14:39:09 +080094static void __init omap3_stalker_display_init(void)
95{
96 return;
97}
98
Jason9cbc3492010-05-17 14:39:09 +080099static int omap3_stalker_enable_tv(struct omap_dss_device *dssdev)
100{
101 return 0;
102}
103
104static void omap3_stalker_disable_tv(struct omap_dss_device *dssdev)
105{
106}
107
108static struct omap_dss_device omap3_stalker_tv_device = {
109 .name = "tv",
110 .driver_name = "venc",
111 .type = OMAP_DISPLAY_TYPE_VENC,
112#if defined(CONFIG_OMAP2_VENC_OUT_TYPE_SVIDEO)
113 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
114#elif defined(CONFIG_OMAP2_VENC_OUT_TYPE_COMPOSITE)
115 .u.venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE,
116#endif
117 .platform_enable = omap3_stalker_enable_tv,
118 .platform_disable = omap3_stalker_disable_tv,
119};
120
Tomi Valkeinen2e6f2ee2012-03-05 14:29:28 +0200121static struct tfp410_platform_data dvi_panel = {
Tomi Valkeinene813a552012-02-17 13:30:27 +0200122 .power_down_gpio = DSS_ENABLE_GPIO,
Jason9cbc3492010-05-17 14:39:09 +0800123};
124
Bryan Wu89747c92010-11-17 13:34:34 +0000125static struct omap_dss_device omap3_stalker_dvi_device = {
126 .name = "dvi",
127 .type = OMAP_DISPLAY_TYPE_DPI,
Tomi Valkeinen2e6f2ee2012-03-05 14:29:28 +0200128 .driver_name = "tfp410",
Bryan Wu89747c92010-11-17 13:34:34 +0000129 .data = &dvi_panel,
130 .phy.dpi.data_lines = 24,
131};
132
Jason9cbc3492010-05-17 14:39:09 +0800133static struct omap_dss_device *omap3_stalker_dss_devices[] = {
Jason9cbc3492010-05-17 14:39:09 +0800134 &omap3_stalker_tv_device,
135 &omap3_stalker_dvi_device,
136};
137
138static struct omap_dss_board_info omap3_stalker_dss_data = {
139 .num_devices = ARRAY_SIZE(omap3_stalker_dss_devices),
140 .devices = omap3_stalker_dss_devices,
141 .default_device = &omap3_stalker_dvi_device,
142};
143
Oleg Drokin786b01a2011-06-06 18:57:07 +0000144static struct regulator_consumer_supply omap3stalker_vmmc1_supply[] = {
145 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Jason9cbc3492010-05-17 14:39:09 +0800146};
147
Oleg Drokin786b01a2011-06-06 18:57:07 +0000148static struct regulator_consumer_supply omap3stalker_vsim_supply[] = {
149 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Jason9cbc3492010-05-17 14:39:09 +0800150};
151
152/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
153static struct regulator_init_data omap3stalker_vmmc1 = {
154 .constraints = {
155 .min_uV = 1850000,
156 .max_uV = 3150000,
157 .valid_modes_mask = REGULATOR_MODE_NORMAL
158 | REGULATOR_MODE_STANDBY,
159 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
160 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
161 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000162 .num_consumer_supplies = ARRAY_SIZE(omap3stalker_vmmc1_supply),
163 .consumer_supplies = omap3stalker_vmmc1_supply,
Jason9cbc3492010-05-17 14:39:09 +0800164};
165
166/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
167static struct regulator_init_data omap3stalker_vsim = {
168 .constraints = {
169 .min_uV = 1800000,
170 .max_uV = 3000000,
171 .valid_modes_mask = REGULATOR_MODE_NORMAL
172 | REGULATOR_MODE_STANDBY,
173 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
174 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
175 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000176 .num_consumer_supplies = ARRAY_SIZE(omap3stalker_vsim_supply),
177 .consumer_supplies = omap3stalker_vsim_supply,
Jason9cbc3492010-05-17 14:39:09 +0800178};
179
180static struct omap2_hsmmc_info mmc[] = {
181 {
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800182 .mmc = 1,
183 .caps = MMC_CAP_4_BIT_DATA,
184 .gpio_cd = -EINVAL,
185 .gpio_wp = 23,
186 .deferred = true,
Jason9cbc3492010-05-17 14:39:09 +0800187 },
188 {} /* Terminator */
189};
190
191static struct gpio_keys_button gpio_buttons[] = {
192 {
193 .code = BTN_EXTRA,
194 .gpio = 18,
195 .desc = "user",
196 .wakeup = 1,
197 },
198};
199
200static struct gpio_keys_platform_data gpio_key_info = {
201 .buttons = gpio_buttons,
202 .nbuttons = ARRAY_SIZE(gpio_buttons),
203};
204
205static struct platform_device keys_gpio = {
206 .name = "gpio-keys",
207 .id = -1,
208 .dev = {
209 .platform_data = &gpio_key_info,
210 },
211};
212
213static struct gpio_led gpio_leds[] = {
214 {
215 .name = "stalker:D8:usr0",
216 .default_trigger = "default-on",
217 .gpio = 126,
218 },
219 {
220 .name = "stalker:D9:usr1",
221 .default_trigger = "default-on",
222 .gpio = 127,
223 },
224 {
225 .name = "stalker:D3:mmc0",
226 .gpio = -EINVAL, /* gets replaced */
227 .active_low = true,
228 .default_trigger = "mmc0",
229 },
230 {
231 .name = "stalker:D4:heartbeat",
232 .gpio = -EINVAL, /* gets replaced */
233 .active_low = true,
234 .default_trigger = "heartbeat",
235 },
236};
237
238static struct gpio_led_platform_data gpio_led_info = {
239 .leds = gpio_leds,
240 .num_leds = ARRAY_SIZE(gpio_leds),
241};
242
243static struct platform_device leds_gpio = {
244 .name = "leds-gpio",
245 .id = -1,
246 .dev = {
247 .platform_data = &gpio_led_info,
248 },
249};
250
251static int
252omap3stalker_twl_gpio_setup(struct device *dev,
253 unsigned gpio, unsigned ngpio)
254{
255 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
Jason9cbc3492010-05-17 14:39:09 +0800256 mmc[0].gpio_cd = gpio + 0;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800257 omap_hsmmc_late_init(mmc);
Jason9cbc3492010-05-17 14:39:09 +0800258
Jason9cbc3492010-05-17 14:39:09 +0800259 /*
260 * Most GPIOs are for USB OTG. Some are mostly sent to
261 * the P2 connector; notably LEDA for the LCD backlight.
262 */
263
264 /* TWL4030_GPIO_MAX + 0 == ledA, LCD Backlight control */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300265 gpio_request_one(gpio + TWL4030_GPIO_MAX, GPIOF_OUT_INIT_LOW,
266 "EN_LCD_BKL");
Jason9cbc3492010-05-17 14:39:09 +0800267
268 /* gpio + 7 == DVI Enable */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300269 gpio_request_one(gpio + 7, GPIOF_OUT_INIT_LOW, "EN_DVI");
Jason9cbc3492010-05-17 14:39:09 +0800270
271 /* TWL4030_GPIO_MAX + 1 == ledB (out, mmc0) */
272 gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
273 /* GPIO + 13 == ledsync (out, heartbeat) */
274 gpio_leds[3].gpio = gpio + 13;
275
276 platform_device_register(&leds_gpio);
277 return 0;
278}
279
280static struct twl4030_gpio_platform_data omap3stalker_gpio_data = {
Jason9cbc3492010-05-17 14:39:09 +0800281 .use_leds = true,
282 .setup = omap3stalker_twl_gpio_setup,
283};
284
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700285static uint32_t board_keymap[] = {
Jason9cbc3492010-05-17 14:39:09 +0800286 KEY(0, 0, KEY_LEFT),
287 KEY(0, 1, KEY_DOWN),
288 KEY(0, 2, KEY_ENTER),
289 KEY(0, 3, KEY_M),
290
291 KEY(1, 0, KEY_RIGHT),
292 KEY(1, 1, KEY_UP),
293 KEY(1, 2, KEY_I),
294 KEY(1, 3, KEY_N),
295
296 KEY(2, 0, KEY_A),
297 KEY(2, 1, KEY_E),
298 KEY(2, 2, KEY_J),
299 KEY(2, 3, KEY_O),
300
301 KEY(3, 0, KEY_B),
302 KEY(3, 1, KEY_F),
303 KEY(3, 2, KEY_K),
304 KEY(3, 3, KEY_P)
305};
306
307static struct matrix_keymap_data board_map_data = {
308 .keymap = board_keymap,
309 .keymap_size = ARRAY_SIZE(board_keymap),
310};
311
312static struct twl4030_keypad_data omap3stalker_kp_data = {
313 .keymap_data = &board_map_data,
314 .rows = 4,
315 .cols = 4,
316 .rep = 1,
317};
318
Jason9cbc3492010-05-17 14:39:09 +0800319static struct twl4030_platform_data omap3stalker_twldata = {
Jason9cbc3492010-05-17 14:39:09 +0800320 /* platform_data for children goes here */
321 .keypad = &omap3stalker_kp_data,
Jason9cbc3492010-05-17 14:39:09 +0800322 .gpio = &omap3stalker_gpio_data,
Mike Rapoportfbd80712011-04-25 01:09:06 +0300323 .vmmc1 = &omap3stalker_vmmc1,
324 .vsim = &omap3stalker_vsim,
Jason9cbc3492010-05-17 14:39:09 +0800325};
326
327static struct at24_platform_data fram_info = {
328 .byte_len = (64 * 1024) / 8,
329 .page_size = 8192,
330 .flags = AT24_FLAG_ADDR16 | AT24_FLAG_IRUGO,
331};
332
333static struct i2c_board_info __initdata omap3stalker_i2c_boardinfo3[] = {
334 {
335 I2C_BOARD_INFO("24c64", 0x50),
336 .flags = I2C_CLIENT_WAKE,
337 .platform_data = &fram_info,
338 },
339};
340
341static int __init omap3_stalker_i2c_init(void)
342{
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +0300343 omap3_pmic_get_config(&omap3stalker_twldata,
344 TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_MADC |
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300345 TWL_COMMON_PDATA_AUDIO,
346 TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
347
348 omap3stalker_twldata.vdac->constraints.apply_uV = true;
349 omap3stalker_twldata.vpll2->constraints.apply_uV = true;
350 omap3stalker_twldata.vpll2->constraints.name = "VDVI";
351
Mike Rapoportfbd80712011-04-25 01:09:06 +0300352 omap3_pmic_init("twl4030", &omap3stalker_twldata);
Jason9cbc3492010-05-17 14:39:09 +0800353 omap_register_i2c_bus(2, 400, NULL, 0);
354 omap_register_i2c_bus(3, 400, omap3stalker_i2c_boardinfo3,
355 ARRAY_SIZE(omap3stalker_i2c_boardinfo3));
356 return 0;
357}
358
359#define OMAP3_STALKER_TS_GPIO 175
Jason9cbc3492010-05-17 14:39:09 +0800360
Jason9cbc3492010-05-17 14:39:09 +0800361static struct platform_device *omap3_stalker_devices[] __initdata = {
Jason9cbc3492010-05-17 14:39:09 +0800362 &keys_gpio,
363};
364
Keshava Munegowda181b2502011-03-01 20:08:16 +0530365static struct usbhs_omap_board_data usbhs_bdata __initconst = {
366 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
367 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
368 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Jason9cbc3492010-05-17 14:39:09 +0800369
370 .phy_reset = true,
371 .reset_gpio_port[0] = -EINVAL,
372 .reset_gpio_port[1] = 21,
373 .reset_gpio_port[2] = -EINVAL,
374};
375
376#ifdef CONFIG_OMAP_MUX
377static struct omap_board_mux board_mux[] __initdata = {
378 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP |
379 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE),
380 OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP |
381 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE),
382 {.reg_offset = OMAP_MUX_TERMINATOR},
383};
Jason9cbc3492010-05-17 14:39:09 +0800384#endif
385
Russ Dill5b3689f2012-03-23 02:21:37 -0700386static struct regulator_consumer_supply dummy_supplies[] = {
387 REGULATOR_SUPPLY("vddvario", "smsc911x.0"),
388 REGULATOR_SUPPLY("vdd33a", "smsc911x.0"),
389};
390
Jason9cbc3492010-05-17 14:39:09 +0800391static void __init omap3_stalker_init(void)
392{
Russ Dill5b3689f2012-03-23 02:21:37 -0700393 regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies));
Jason9cbc3492010-05-17 14:39:09 +0800394 omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);
395
Tony Lindgrend1589f02012-02-20 09:43:30 -0800396 omap_mux_init_gpio(23, OMAP_PIN_INPUT);
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800397 omap_hsmmc_init(mmc);
Tony Lindgrend1589f02012-02-20 09:43:30 -0800398
Jason9cbc3492010-05-17 14:39:09 +0800399 omap3_stalker_i2c_init();
400
401 platform_add_devices(omap3_stalker_devices,
402 ARRAY_SIZE(omap3_stalker_devices));
403
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200404 omap_display_init(&omap3_stalker_dss_data);
Jason9cbc3492010-05-17 14:39:09 +0800405
406 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700407 omap_sdrc_init(mt46h32m32lf6_sdrc_params, NULL);
Mike Rapoport9e186302011-04-27 11:56:12 +0300408 usb_musb_init(NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530409 usbhs_init(&usbhs_bdata);
Mike Rapoport96974a22011-04-25 01:09:05 +0300410 omap_ads7846_init(1, OMAP3_STALKER_TS_GPIO, 310, NULL);
Jason9cbc3492010-05-17 14:39:09 +0800411
412 omap_mux_init_gpio(21, OMAP_PIN_OUTPUT);
413 omap_mux_init_gpio(18, OMAP_PIN_INPUT_PULLUP);
414
415 omap3stalker_init_eth();
416 omap3_stalker_display_init();
417/* Ensure SDRC pins are mux'd for self-refresh */
418 omap_mux_init_signal("sdr_cke0", OMAP_PIN_OUTPUT);
419 omap_mux_init_signal("sdr_cke1", OMAP_PIN_OUTPUT);
420}
421
Jason9cbc3492010-05-17 14:39:09 +0800422MACHINE_START(SBC3530, "OMAP3 STALKER")
423 /* Maintainer: Jason Lam -lzg@ema-tech.com */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400424 .atag_offset = 0x100,
Mike Rapoport869fef42010-08-04 14:43:18 +0300425 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700426 .init_early = omap35xx_init_early,
Tony Lindgrenbe732462011-09-26 15:25:22 -0700427 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100428 .handle_irq = omap3_intc_handle_irq,
Jason9cbc3492010-05-17 14:39:09 +0800429 .init_machine = omap3_stalker_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800430 .init_late = omap35xx_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700431 .timer = &omap3_secure_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000432 .restart = omap_prcm_restart,
Jason9cbc3492010-05-17 14:39:09 +0800433MACHINE_END