TI816X: Update common OMAP machine specific sources
[deliverable/linux.git] / arch / arm / mach-omap2 / board-omap3evm.c
1 /*
2 * linux/arch/arm/mach-omap2/board-omap3evm.c
3 *
4 * Copyright (C) 2008 Texas Instruments
5 *
6 * Modified from mach-omap2/board-3430sdp.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/gpio.h>
22 #include <linux/input.h>
23 #include <linux/input/matrix_keypad.h>
24 #include <linux/leds.h>
25 #include <linux/interrupt.h>
26
27 #include <linux/spi/spi.h>
28 #include <linux/spi/ads7846.h>
29 #include <linux/i2c/twl.h>
30 #include <linux/usb/otg.h>
31 #include <linux/smsc911x.h>
32
33 #include <linux/regulator/machine.h>
34 #include <linux/mmc/host.h>
35
36 #include <mach/hardware.h>
37 #include <asm/mach-types.h>
38 #include <asm/mach/arch.h>
39 #include <asm/mach/map.h>
40
41 #include <plat/board.h>
42 #include <plat/usb.h>
43 #include <plat/common.h>
44 #include <plat/mcspi.h>
45 #include <plat/display.h>
46 #include <plat/panel-generic-dpi.h>
47
48 #include "mux.h"
49 #include "sdram-micron-mt46h32m32lf-6.h"
50 #include "hsmmc.h"
51
52 #define OMAP3_EVM_TS_GPIO 175
53 #define OMAP3_EVM_EHCI_VBUS 22
54 #define OMAP3_EVM_EHCI_SELECT 61
55
56 #define OMAP3EVM_ETHR_START 0x2c000000
57 #define OMAP3EVM_ETHR_SIZE 1024
58 #define OMAP3EVM_ETHR_ID_REV 0x50
59 #define OMAP3EVM_ETHR_GPIO_IRQ 176
60 #define OMAP3EVM_SMSC911X_CS 5
61
62 static u8 omap3_evm_version;
63
64 u8 get_omap3_evm_rev(void)
65 {
66 return omap3_evm_version;
67 }
68 EXPORT_SYMBOL(get_omap3_evm_rev);
69
70 static void __init omap3_evm_get_revision(void)
71 {
72 void __iomem *ioaddr;
73 unsigned int smsc_id;
74
75 /* Ethernet PHY ID is stored at ID_REV register */
76 ioaddr = ioremap_nocache(OMAP3EVM_ETHR_START, SZ_1K);
77 if (!ioaddr)
78 return;
79 smsc_id = readl(ioaddr + OMAP3EVM_ETHR_ID_REV) & 0xFFFF0000;
80 iounmap(ioaddr);
81
82 switch (smsc_id) {
83 /*SMSC9115 chipset*/
84 case 0x01150000:
85 omap3_evm_version = OMAP3EVM_BOARD_GEN_1;
86 break;
87 /*SMSC 9220 chipset*/
88 case 0x92200000:
89 default:
90 omap3_evm_version = OMAP3EVM_BOARD_GEN_2;
91 }
92 }
93
94 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
95 static struct resource omap3evm_smsc911x_resources[] = {
96 [0] = {
97 .start = OMAP3EVM_ETHR_START,
98 .end = (OMAP3EVM_ETHR_START + OMAP3EVM_ETHR_SIZE - 1),
99 .flags = IORESOURCE_MEM,
100 },
101 [1] = {
102 .start = OMAP_GPIO_IRQ(OMAP3EVM_ETHR_GPIO_IRQ),
103 .end = OMAP_GPIO_IRQ(OMAP3EVM_ETHR_GPIO_IRQ),
104 .flags = (IORESOURCE_IRQ | IRQF_TRIGGER_LOW),
105 },
106 };
107
108 static struct smsc911x_platform_config smsc911x_config = {
109 .phy_interface = PHY_INTERFACE_MODE_MII,
110 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
111 .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
112 .flags = (SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS),
113 };
114
115 static struct platform_device omap3evm_smsc911x_device = {
116 .name = "smsc911x",
117 .id = -1,
118 .num_resources = ARRAY_SIZE(omap3evm_smsc911x_resources),
119 .resource = &omap3evm_smsc911x_resources[0],
120 .dev = {
121 .platform_data = &smsc911x_config,
122 },
123 };
124
125 static inline void __init omap3evm_init_smsc911x(void)
126 {
127 int eth_cs;
128 struct clk *l3ck;
129 unsigned int rate;
130
131 eth_cs = OMAP3EVM_SMSC911X_CS;
132
133 l3ck = clk_get(NULL, "l3_ck");
134 if (IS_ERR(l3ck))
135 rate = 100000000;
136 else
137 rate = clk_get_rate(l3ck);
138
139 if (gpio_request(OMAP3EVM_ETHR_GPIO_IRQ, "SMSC911x irq") < 0) {
140 printk(KERN_ERR "Failed to request GPIO%d for smsc911x IRQ\n",
141 OMAP3EVM_ETHR_GPIO_IRQ);
142 return;
143 }
144
145 gpio_direction_input(OMAP3EVM_ETHR_GPIO_IRQ);
146 platform_device_register(&omap3evm_smsc911x_device);
147 }
148
149 #else
150 static inline void __init omap3evm_init_smsc911x(void) { return; }
151 #endif
152
153 /*
154 * OMAP3EVM LCD Panel control signals
155 */
156 #define OMAP3EVM_LCD_PANEL_LR 2
157 #define OMAP3EVM_LCD_PANEL_UD 3
158 #define OMAP3EVM_LCD_PANEL_INI 152
159 #define OMAP3EVM_LCD_PANEL_ENVDD 153
160 #define OMAP3EVM_LCD_PANEL_QVGA 154
161 #define OMAP3EVM_LCD_PANEL_RESB 155
162 #define OMAP3EVM_LCD_PANEL_BKLIGHT_GPIO 210
163 #define OMAP3EVM_DVI_PANEL_EN_GPIO 199
164
165 static int lcd_enabled;
166 static int dvi_enabled;
167
168 static void __init omap3_evm_display_init(void)
169 {
170 int r;
171
172 r = gpio_request(OMAP3EVM_LCD_PANEL_RESB, "lcd_panel_resb");
173 if (r) {
174 printk(KERN_ERR "failed to get lcd_panel_resb\n");
175 return;
176 }
177 gpio_direction_output(OMAP3EVM_LCD_PANEL_RESB, 1);
178
179 r = gpio_request(OMAP3EVM_LCD_PANEL_INI, "lcd_panel_ini");
180 if (r) {
181 printk(KERN_ERR "failed to get lcd_panel_ini\n");
182 goto err_1;
183 }
184 gpio_direction_output(OMAP3EVM_LCD_PANEL_INI, 1);
185
186 r = gpio_request(OMAP3EVM_LCD_PANEL_QVGA, "lcd_panel_qvga");
187 if (r) {
188 printk(KERN_ERR "failed to get lcd_panel_qvga\n");
189 goto err_2;
190 }
191 gpio_direction_output(OMAP3EVM_LCD_PANEL_QVGA, 0);
192
193 r = gpio_request(OMAP3EVM_LCD_PANEL_LR, "lcd_panel_lr");
194 if (r) {
195 printk(KERN_ERR "failed to get lcd_panel_lr\n");
196 goto err_3;
197 }
198 gpio_direction_output(OMAP3EVM_LCD_PANEL_LR, 1);
199
200 r = gpio_request(OMAP3EVM_LCD_PANEL_UD, "lcd_panel_ud");
201 if (r) {
202 printk(KERN_ERR "failed to get lcd_panel_ud\n");
203 goto err_4;
204 }
205 gpio_direction_output(OMAP3EVM_LCD_PANEL_UD, 1);
206
207 r = gpio_request(OMAP3EVM_LCD_PANEL_ENVDD, "lcd_panel_envdd");
208 if (r) {
209 printk(KERN_ERR "failed to get lcd_panel_envdd\n");
210 goto err_5;
211 }
212 gpio_direction_output(OMAP3EVM_LCD_PANEL_ENVDD, 0);
213
214 return;
215
216 err_5:
217 gpio_free(OMAP3EVM_LCD_PANEL_UD);
218 err_4:
219 gpio_free(OMAP3EVM_LCD_PANEL_LR);
220 err_3:
221 gpio_free(OMAP3EVM_LCD_PANEL_QVGA);
222 err_2:
223 gpio_free(OMAP3EVM_LCD_PANEL_INI);
224 err_1:
225 gpio_free(OMAP3EVM_LCD_PANEL_RESB);
226
227 }
228
229 static int omap3_evm_enable_lcd(struct omap_dss_device *dssdev)
230 {
231 if (dvi_enabled) {
232 printk(KERN_ERR "cannot enable LCD, DVI is enabled\n");
233 return -EINVAL;
234 }
235 gpio_set_value(OMAP3EVM_LCD_PANEL_ENVDD, 0);
236
237 if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2)
238 gpio_set_value(OMAP3EVM_LCD_PANEL_BKLIGHT_GPIO, 0);
239 else
240 gpio_set_value(OMAP3EVM_LCD_PANEL_BKLIGHT_GPIO, 1);
241
242 lcd_enabled = 1;
243 return 0;
244 }
245
246 static void omap3_evm_disable_lcd(struct omap_dss_device *dssdev)
247 {
248 gpio_set_value(OMAP3EVM_LCD_PANEL_ENVDD, 1);
249
250 if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2)
251 gpio_set_value(OMAP3EVM_LCD_PANEL_BKLIGHT_GPIO, 1);
252 else
253 gpio_set_value(OMAP3EVM_LCD_PANEL_BKLIGHT_GPIO, 0);
254
255 lcd_enabled = 0;
256 }
257
258 static struct omap_dss_device omap3_evm_lcd_device = {
259 .name = "lcd",
260 .driver_name = "sharp_ls_panel",
261 .type = OMAP_DISPLAY_TYPE_DPI,
262 .phy.dpi.data_lines = 18,
263 .platform_enable = omap3_evm_enable_lcd,
264 .platform_disable = omap3_evm_disable_lcd,
265 };
266
267 static int omap3_evm_enable_tv(struct omap_dss_device *dssdev)
268 {
269 return 0;
270 }
271
272 static void omap3_evm_disable_tv(struct omap_dss_device *dssdev)
273 {
274 }
275
276 static struct omap_dss_device omap3_evm_tv_device = {
277 .name = "tv",
278 .driver_name = "venc",
279 .type = OMAP_DISPLAY_TYPE_VENC,
280 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
281 .platform_enable = omap3_evm_enable_tv,
282 .platform_disable = omap3_evm_disable_tv,
283 };
284
285 static int omap3_evm_enable_dvi(struct omap_dss_device *dssdev)
286 {
287 if (lcd_enabled) {
288 printk(KERN_ERR "cannot enable DVI, LCD is enabled\n");
289 return -EINVAL;
290 }
291
292 gpio_set_value(OMAP3EVM_DVI_PANEL_EN_GPIO, 1);
293
294 dvi_enabled = 1;
295 return 0;
296 }
297
298 static void omap3_evm_disable_dvi(struct omap_dss_device *dssdev)
299 {
300 gpio_set_value(OMAP3EVM_DVI_PANEL_EN_GPIO, 0);
301
302 dvi_enabled = 0;
303 }
304
305 static struct panel_generic_dpi_data dvi_panel = {
306 .name = "generic",
307 .platform_enable = omap3_evm_enable_dvi,
308 .platform_disable = omap3_evm_disable_dvi,
309 };
310
311 static struct omap_dss_device omap3_evm_dvi_device = {
312 .name = "dvi",
313 .type = OMAP_DISPLAY_TYPE_DPI,
314 .driver_name = "generic_dpi_panel",
315 .data = &dvi_panel,
316 .phy.dpi.data_lines = 24,
317 };
318
319 static struct omap_dss_device *omap3_evm_dss_devices[] = {
320 &omap3_evm_lcd_device,
321 &omap3_evm_tv_device,
322 &omap3_evm_dvi_device,
323 };
324
325 static struct omap_dss_board_info omap3_evm_dss_data = {
326 .num_devices = ARRAY_SIZE(omap3_evm_dss_devices),
327 .devices = omap3_evm_dss_devices,
328 .default_device = &omap3_evm_lcd_device,
329 };
330
331 static struct platform_device omap3_evm_dss_device = {
332 .name = "omapdss",
333 .id = -1,
334 .dev = {
335 .platform_data = &omap3_evm_dss_data,
336 },
337 };
338
339 static struct regulator_consumer_supply omap3evm_vmmc1_supply = {
340 .supply = "vmmc",
341 };
342
343 static struct regulator_consumer_supply omap3evm_vsim_supply = {
344 .supply = "vmmc_aux",
345 };
346
347 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
348 static struct regulator_init_data omap3evm_vmmc1 = {
349 .constraints = {
350 .min_uV = 1850000,
351 .max_uV = 3150000,
352 .valid_modes_mask = REGULATOR_MODE_NORMAL
353 | REGULATOR_MODE_STANDBY,
354 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
355 | REGULATOR_CHANGE_MODE
356 | REGULATOR_CHANGE_STATUS,
357 },
358 .num_consumer_supplies = 1,
359 .consumer_supplies = &omap3evm_vmmc1_supply,
360 };
361
362 /* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
363 static struct regulator_init_data omap3evm_vsim = {
364 .constraints = {
365 .min_uV = 1800000,
366 .max_uV = 3000000,
367 .valid_modes_mask = REGULATOR_MODE_NORMAL
368 | REGULATOR_MODE_STANDBY,
369 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
370 | REGULATOR_CHANGE_MODE
371 | REGULATOR_CHANGE_STATUS,
372 },
373 .num_consumer_supplies = 1,
374 .consumer_supplies = &omap3evm_vsim_supply,
375 };
376
377 static struct omap2_hsmmc_info mmc[] = {
378 {
379 .mmc = 1,
380 .caps = MMC_CAP_4_BIT_DATA,
381 .gpio_cd = -EINVAL,
382 .gpio_wp = 63,
383 },
384 {} /* Terminator */
385 };
386
387 static struct gpio_led gpio_leds[] = {
388 {
389 .name = "omap3evm::ledb",
390 /* normally not visible (board underside) */
391 .default_trigger = "default-on",
392 .gpio = -EINVAL, /* gets replaced */
393 .active_low = true,
394 },
395 };
396
397 static struct gpio_led_platform_data gpio_led_info = {
398 .leds = gpio_leds,
399 .num_leds = ARRAY_SIZE(gpio_leds),
400 };
401
402 static struct platform_device leds_gpio = {
403 .name = "leds-gpio",
404 .id = -1,
405 .dev = {
406 .platform_data = &gpio_led_info,
407 },
408 };
409
410
411 static int omap3evm_twl_gpio_setup(struct device *dev,
412 unsigned gpio, unsigned ngpio)
413 {
414 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
415 omap_mux_init_gpio(63, OMAP_PIN_INPUT);
416 mmc[0].gpio_cd = gpio + 0;
417 omap2_hsmmc_init(mmc);
418
419 /* link regulators to MMC adapters */
420 omap3evm_vmmc1_supply.dev = mmc[0].dev;
421 omap3evm_vsim_supply.dev = mmc[0].dev;
422
423 /*
424 * Most GPIOs are for USB OTG. Some are mostly sent to
425 * the P2 connector; notably LEDA for the LCD backlight.
426 */
427
428 /* TWL4030_GPIO_MAX + 0 == ledA, LCD Backlight control */
429 gpio_request(gpio + TWL4030_GPIO_MAX, "EN_LCD_BKL");
430 gpio_direction_output(gpio + TWL4030_GPIO_MAX, 0);
431
432 /* gpio + 7 == DVI Enable */
433 gpio_request(gpio + 7, "EN_DVI");
434 gpio_direction_output(gpio + 7, 0);
435
436 /* TWL4030_GPIO_MAX + 1 == ledB (out, active low LED) */
437 gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1;
438
439 platform_device_register(&leds_gpio);
440
441 return 0;
442 }
443
444 static struct twl4030_gpio_platform_data omap3evm_gpio_data = {
445 .gpio_base = OMAP_MAX_GPIO_LINES,
446 .irq_base = TWL4030_GPIO_IRQ_BASE,
447 .irq_end = TWL4030_GPIO_IRQ_END,
448 .use_leds = true,
449 .setup = omap3evm_twl_gpio_setup,
450 };
451
452 static struct twl4030_usb_data omap3evm_usb_data = {
453 .usb_mode = T2_USB_MODE_ULPI,
454 };
455
456 static uint32_t board_keymap[] = {
457 KEY(0, 0, KEY_LEFT),
458 KEY(0, 1, KEY_DOWN),
459 KEY(0, 2, KEY_ENTER),
460 KEY(0, 3, KEY_M),
461
462 KEY(1, 0, KEY_RIGHT),
463 KEY(1, 1, KEY_UP),
464 KEY(1, 2, KEY_I),
465 KEY(1, 3, KEY_N),
466
467 KEY(2, 0, KEY_A),
468 KEY(2, 1, KEY_E),
469 KEY(2, 2, KEY_J),
470 KEY(2, 3, KEY_O),
471
472 KEY(3, 0, KEY_B),
473 KEY(3, 1, KEY_F),
474 KEY(3, 2, KEY_K),
475 KEY(3, 3, KEY_P)
476 };
477
478 static struct matrix_keymap_data board_map_data = {
479 .keymap = board_keymap,
480 .keymap_size = ARRAY_SIZE(board_keymap),
481 };
482
483 static struct twl4030_keypad_data omap3evm_kp_data = {
484 .keymap_data = &board_map_data,
485 .rows = 4,
486 .cols = 4,
487 .rep = 1,
488 };
489
490 static struct twl4030_madc_platform_data omap3evm_madc_data = {
491 .irq_line = 1,
492 };
493
494 static struct twl4030_codec_audio_data omap3evm_audio_data = {
495 .audio_mclk = 26000000,
496 };
497
498 static struct twl4030_codec_data omap3evm_codec_data = {
499 .audio_mclk = 26000000,
500 .audio = &omap3evm_audio_data,
501 };
502
503 static struct regulator_consumer_supply omap3_evm_vdda_dac_supply = {
504 .supply = "vdda_dac",
505 .dev = &omap3_evm_dss_device.dev,
506 };
507
508 /* VDAC for DSS driving S-Video */
509 static struct regulator_init_data omap3_evm_vdac = {
510 .constraints = {
511 .min_uV = 1800000,
512 .max_uV = 1800000,
513 .apply_uV = true,
514 .valid_modes_mask = REGULATOR_MODE_NORMAL
515 | REGULATOR_MODE_STANDBY,
516 .valid_ops_mask = REGULATOR_CHANGE_MODE
517 | REGULATOR_CHANGE_STATUS,
518 },
519 .num_consumer_supplies = 1,
520 .consumer_supplies = &omap3_evm_vdda_dac_supply,
521 };
522
523 /* VPLL2 for digital video outputs */
524 static struct regulator_consumer_supply omap3_evm_vpll2_supply =
525 REGULATOR_SUPPLY("vdds_dsi", "omapdss");
526
527 static struct regulator_init_data omap3_evm_vpll2 = {
528 .constraints = {
529 .min_uV = 1800000,
530 .max_uV = 1800000,
531 .apply_uV = true,
532 .valid_modes_mask = REGULATOR_MODE_NORMAL
533 | REGULATOR_MODE_STANDBY,
534 .valid_ops_mask = REGULATOR_CHANGE_MODE
535 | REGULATOR_CHANGE_STATUS,
536 },
537 .num_consumer_supplies = 1,
538 .consumer_supplies = &omap3_evm_vpll2_supply,
539 };
540
541 static struct twl4030_platform_data omap3evm_twldata = {
542 .irq_base = TWL4030_IRQ_BASE,
543 .irq_end = TWL4030_IRQ_END,
544
545 /* platform_data for children goes here */
546 .keypad = &omap3evm_kp_data,
547 .madc = &omap3evm_madc_data,
548 .usb = &omap3evm_usb_data,
549 .gpio = &omap3evm_gpio_data,
550 .codec = &omap3evm_codec_data,
551 .vdac = &omap3_evm_vdac,
552 .vpll2 = &omap3_evm_vpll2,
553 };
554
555 static struct i2c_board_info __initdata omap3evm_i2c_boardinfo[] = {
556 {
557 I2C_BOARD_INFO("twl4030", 0x48),
558 .flags = I2C_CLIENT_WAKE,
559 .irq = INT_34XX_SYS_NIRQ,
560 .platform_data = &omap3evm_twldata,
561 },
562 };
563
564 static int __init omap3_evm_i2c_init(void)
565 {
566 /*
567 * REVISIT: These entries can be set in omap3evm_twl_data
568 * after a merge with MFD tree
569 */
570 omap3evm_twldata.vmmc1 = &omap3evm_vmmc1;
571 omap3evm_twldata.vsim = &omap3evm_vsim;
572
573 omap_register_i2c_bus(1, 2600, omap3evm_i2c_boardinfo,
574 ARRAY_SIZE(omap3evm_i2c_boardinfo));
575 omap_register_i2c_bus(2, 400, NULL, 0);
576 omap_register_i2c_bus(3, 400, NULL, 0);
577 return 0;
578 }
579
580 static void ads7846_dev_init(void)
581 {
582 if (gpio_request(OMAP3_EVM_TS_GPIO, "ADS7846 pendown") < 0)
583 printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
584
585 gpio_direction_input(OMAP3_EVM_TS_GPIO);
586 gpio_set_debounce(OMAP3_EVM_TS_GPIO, 310);
587 }
588
589 static int ads7846_get_pendown_state(void)
590 {
591 return !gpio_get_value(OMAP3_EVM_TS_GPIO);
592 }
593
594 static struct ads7846_platform_data ads7846_config = {
595 .x_max = 0x0fff,
596 .y_max = 0x0fff,
597 .x_plate_ohms = 180,
598 .pressure_max = 255,
599 .debounce_max = 10,
600 .debounce_tol = 3,
601 .debounce_rep = 1,
602 .get_pendown_state = ads7846_get_pendown_state,
603 .keep_vref_on = 1,
604 .settle_delay_usecs = 150,
605 .wakeup = true,
606 };
607
608 static struct omap2_mcspi_device_config ads7846_mcspi_config = {
609 .turbo_mode = 0,
610 .single_channel = 1, /* 0: slave, 1: master */
611 };
612
613 static struct spi_board_info omap3evm_spi_board_info[] = {
614 [0] = {
615 .modalias = "ads7846",
616 .bus_num = 1,
617 .chip_select = 0,
618 .max_speed_hz = 1500000,
619 .controller_data = &ads7846_mcspi_config,
620 .irq = OMAP_GPIO_IRQ(OMAP3_EVM_TS_GPIO),
621 .platform_data = &ads7846_config,
622 },
623 };
624
625 static struct omap_board_config_kernel omap3_evm_config[] __initdata = {
626 };
627
628 static void __init omap3_evm_init_early(void)
629 {
630 omap_board_config = omap3_evm_config;
631 omap_board_config_size = ARRAY_SIZE(omap3_evm_config);
632 omap2_init_common_infrastructure();
633 omap2_init_common_devices(mt46h32m32lf6_sdrc_params, NULL);
634 }
635
636 static struct platform_device *omap3_evm_devices[] __initdata = {
637 &omap3_evm_dss_device,
638 };
639
640 static struct ehci_hcd_omap_platform_data ehci_pdata __initdata = {
641
642 .port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
643 .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
644 .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
645
646 .phy_reset = true,
647 /* PHY reset GPIO will be runtime programmed based on EVM version */
648 .reset_gpio_port[0] = -EINVAL,
649 .reset_gpio_port[1] = -EINVAL,
650 .reset_gpio_port[2] = -EINVAL
651 };
652
653 #ifdef CONFIG_OMAP_MUX
654 static struct omap_board_mux board_mux[] __initdata = {
655 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP |
656 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_OUTPUT_LOW |
657 OMAP_PIN_OFF_WAKEUPENABLE),
658 OMAP3_MUX(MCSPI1_CS1, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP |
659 OMAP_PIN_OFF_INPUT_PULLUP | OMAP_PIN_OFF_OUTPUT_LOW),
660 { .reg_offset = OMAP_MUX_TERMINATOR },
661 };
662 #endif
663
664 static struct omap_musb_board_data musb_board_data = {
665 .interface_type = MUSB_INTERFACE_ULPI,
666 .mode = MUSB_OTG,
667 .power = 100,
668 };
669
670 static void __init omap3_evm_init(void)
671 {
672 omap3_evm_get_revision();
673 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
674
675 omap3_evm_i2c_init();
676
677 platform_add_devices(omap3_evm_devices, ARRAY_SIZE(omap3_evm_devices));
678
679 spi_register_board_info(omap3evm_spi_board_info,
680 ARRAY_SIZE(omap3evm_spi_board_info));
681
682 omap_serial_init();
683
684 /* OMAP3EVM uses ISP1504 phy and so register nop transceiver */
685 usb_nop_xceiv_register();
686
687 if (get_omap3_evm_rev() >= OMAP3EVM_BOARD_GEN_2) {
688 /* enable EHCI VBUS using GPIO22 */
689 omap_mux_init_gpio(22, OMAP_PIN_INPUT_PULLUP);
690 gpio_request(OMAP3_EVM_EHCI_VBUS, "enable EHCI VBUS");
691 gpio_direction_output(OMAP3_EVM_EHCI_VBUS, 0);
692 gpio_set_value(OMAP3_EVM_EHCI_VBUS, 1);
693
694 /* Select EHCI port on main board */
695 omap_mux_init_gpio(61, OMAP_PIN_INPUT_PULLUP);
696 gpio_request(OMAP3_EVM_EHCI_SELECT, "select EHCI port");
697 gpio_direction_output(OMAP3_EVM_EHCI_SELECT, 0);
698 gpio_set_value(OMAP3_EVM_EHCI_SELECT, 0);
699
700 /* setup EHCI phy reset config */
701 omap_mux_init_gpio(21, OMAP_PIN_INPUT_PULLUP);
702 ehci_pdata.reset_gpio_port[1] = 21;
703
704 /* EVM REV >= E can supply 500mA with EXTVBUS programming */
705 musb_board_data.power = 500;
706 musb_board_data.extvbus = 1;
707 } else {
708 /* setup EHCI phy reset on MDC */
709 omap_mux_init_gpio(135, OMAP_PIN_OUTPUT);
710 ehci_pdata.reset_gpio_port[1] = 135;
711 }
712 usb_musb_init(&musb_board_data);
713 usb_ehci_init(&ehci_pdata);
714 ads7846_dev_init();
715 omap3evm_init_smsc911x();
716 omap3_evm_display_init();
717 }
718
719 MACHINE_START(OMAP3EVM, "OMAP3 EVM")
720 /* Maintainer: Syed Mohammed Khasim - Texas Instruments */
721 .boot_params = 0x80000100,
722 .reserve = omap_reserve,
723 .map_io = omap3_map_io,
724 .init_early = omap3_evm_init_early,
725 .init_irq = omap_init_irq,
726 .init_machine = omap3_evm_init,
727 .timer = &omap_timer,
728 MACHINE_END
This page took 0.047781 seconds and 5 git commands to generate.