Merge git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-linus
[pandora-kernel.git] / arch / arm / mach-omap2 / board-omap4panda.c
1 /*
2  * Board support file for OMAP4430 based PandaBoard.
3  *
4  * Copyright (C) 2010 Texas Instruments
5  *
6  * Author: David Anders <x0132446@ti.com>
7  *
8  * Based on mach-omap2/board-4430sdp.c
9  *
10  * Author: Santosh Shilimkar <santosh.shilimkar@ti.com>
11  *
12  * Based on mach-omap2/board-3430sdp.c
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/clk.h>
23 #include <linux/io.h>
24 #include <linux/leds.h>
25 #include <linux/gpio.h>
26 #include <linux/usb/otg.h>
27 #include <linux/i2c/twl.h>
28 #include <linux/regulator/machine.h>
29 #include <linux/regulator/fixed.h>
30 #include <linux/wl12xx.h>
31
32 #include <mach/hardware.h>
33 #include <mach/omap4-common.h>
34 #include <asm/mach-types.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <plat/display.h>
38
39 #include <plat/board.h>
40 #include <plat/common.h>
41 #include <plat/usb.h>
42 #include <plat/mmc.h>
43 #include <plat/panel-generic-dpi.h>
44 #include "timer-gp.h"
45
46 #include "hsmmc.h"
47 #include "control.h"
48 #include "mux.h"
49
50 #define GPIO_HUB_POWER          1
51 #define GPIO_HUB_NRESET         62
52 #define GPIO_WIFI_PMENA         43
53 #define GPIO_WIFI_IRQ           53
54 #define HDMI_GPIO_HPD 60 /* Hot plug pin for HDMI */
55 #define HDMI_GPIO_LS_OE 41 /* Level shifter for HDMI */
56
57 /* wl127x BT, FM, GPS connectivity chip */
58 static int wl1271_gpios[] = {46, -1, -1};
59 static struct platform_device wl1271_device = {
60         .name   = "kim",
61         .id     = -1,
62         .dev    = {
63                 .platform_data  = &wl1271_gpios,
64         },
65 };
66
67 static struct gpio_led gpio_leds[] = {
68         {
69                 .name                   = "pandaboard::status1",
70                 .default_trigger        = "heartbeat",
71                 .gpio                   = 7,
72         },
73         {
74                 .name                   = "pandaboard::status2",
75                 .default_trigger        = "mmc0",
76                 .gpio                   = 8,
77         },
78 };
79
80 static struct gpio_led_platform_data gpio_led_info = {
81         .leds           = gpio_leds,
82         .num_leds       = ARRAY_SIZE(gpio_leds),
83 };
84
85 static struct platform_device leds_gpio = {
86         .name   = "leds-gpio",
87         .id     = -1,
88         .dev    = {
89                 .platform_data  = &gpio_led_info,
90         },
91 };
92
93 static struct platform_device *panda_devices[] __initdata = {
94         &leds_gpio,
95         &wl1271_device,
96 };
97
98 static void __init omap4_panda_init_early(void)
99 {
100         omap2_init_common_infrastructure();
101         omap2_init_common_devices(NULL, NULL);
102 }
103
104 static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
105         .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
106         .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
107         .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
108         .phy_reset  = false,
109         .reset_gpio_port[0]  = -EINVAL,
110         .reset_gpio_port[1]  = -EINVAL,
111         .reset_gpio_port[2]  = -EINVAL
112 };
113
114 static void __init omap4_ehci_init(void)
115 {
116         int ret;
117         struct clk *phy_ref_clk;
118
119         /* FREF_CLK3 provides the 19.2 MHz reference clock to the PHY */
120         phy_ref_clk = clk_get(NULL, "auxclk3_ck");
121         if (IS_ERR(phy_ref_clk)) {
122                 pr_err("Cannot request auxclk3\n");
123                 goto error1;
124         }
125         clk_set_rate(phy_ref_clk, 19200000);
126         clk_enable(phy_ref_clk);
127
128         /* disable the power to the usb hub prior to init */
129         ret = gpio_request(GPIO_HUB_POWER, "hub_power");
130         if (ret) {
131                 pr_err("Cannot request GPIO %d\n", GPIO_HUB_POWER);
132                 goto error1;
133         }
134         gpio_export(GPIO_HUB_POWER, 0);
135         gpio_direction_output(GPIO_HUB_POWER, 0);
136         gpio_set_value(GPIO_HUB_POWER, 0);
137
138         /* reset phy+hub */
139         ret = gpio_request(GPIO_HUB_NRESET, "hub_nreset");
140         if (ret) {
141                 pr_err("Cannot request GPIO %d\n", GPIO_HUB_NRESET);
142                 goto error2;
143         }
144         gpio_export(GPIO_HUB_NRESET, 0);
145         gpio_direction_output(GPIO_HUB_NRESET, 0);
146         gpio_set_value(GPIO_HUB_NRESET, 0);
147         gpio_set_value(GPIO_HUB_NRESET, 1);
148
149         usbhs_init(&usbhs_bdata);
150
151         /* enable power to hub */
152         gpio_set_value(GPIO_HUB_POWER, 1);
153         return;
154
155 error2:
156         gpio_free(GPIO_HUB_POWER);
157 error1:
158         pr_err("Unable to initialize EHCI power/reset\n");
159         return;
160
161 }
162
163 static struct omap_musb_board_data musb_board_data = {
164         .interface_type         = MUSB_INTERFACE_UTMI,
165         .mode                   = MUSB_OTG,
166         .power                  = 100,
167 };
168
169 static struct twl4030_usb_data omap4_usbphy_data = {
170         .phy_init       = omap4430_phy_init,
171         .phy_exit       = omap4430_phy_exit,
172         .phy_power      = omap4430_phy_power,
173         .phy_set_clock  = omap4430_phy_set_clk,
174         .phy_suspend    = omap4430_phy_suspend,
175 };
176
177 static struct omap2_hsmmc_info mmc[] = {
178         {
179                 .mmc            = 1,
180                 .caps           = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
181                 .gpio_wp        = -EINVAL,
182                 .gpio_cd        = -EINVAL,
183         },
184         {
185                 .name           = "wl1271",
186                 .mmc            = 5,
187                 .caps           = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
188                 .gpio_wp        = -EINVAL,
189                 .gpio_cd        = -EINVAL,
190                 .ocr_mask       = MMC_VDD_165_195,
191                 .nonremovable   = true,
192         },
193         {}      /* Terminator */
194 };
195
196 static struct regulator_consumer_supply omap4_panda_vmmc_supply[] = {
197         {
198                 .supply = "vmmc",
199                 .dev_name = "omap_hsmmc.0",
200         },
201 };
202
203 static struct regulator_consumer_supply omap4_panda_vmmc5_supply = {
204         .supply = "vmmc",
205         .dev_name = "omap_hsmmc.4",
206 };
207
208 static struct regulator_init_data panda_vmmc5 = {
209         .constraints = {
210                 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
211         },
212         .num_consumer_supplies = 1,
213         .consumer_supplies = &omap4_panda_vmmc5_supply,
214 };
215
216 static struct fixed_voltage_config panda_vwlan = {
217         .supply_name = "vwl1271",
218         .microvolts = 1800000, /* 1.8V */
219         .gpio = GPIO_WIFI_PMENA,
220         .startup_delay = 70000, /* 70msec */
221         .enable_high = 1,
222         .enabled_at_boot = 0,
223         .init_data = &panda_vmmc5,
224 };
225
226 static struct platform_device omap_vwlan_device = {
227         .name           = "reg-fixed-voltage",
228         .id             = 1,
229         .dev = {
230                 .platform_data = &panda_vwlan,
231         },
232 };
233
234 struct wl12xx_platform_data omap_panda_wlan_data  __initdata = {
235         .irq = OMAP_GPIO_IRQ(GPIO_WIFI_IRQ),
236         /* PANDA ref clock is 38.4 MHz */
237         .board_ref_clock = 2,
238 };
239
240 static int omap4_twl6030_hsmmc_late_init(struct device *dev)
241 {
242         int ret = 0;
243         struct platform_device *pdev = container_of(dev,
244                                 struct platform_device, dev);
245         struct omap_mmc_platform_data *pdata = dev->platform_data;
246
247         if (!pdata) {
248                 dev_err(dev, "%s: NULL platform data\n", __func__);
249                 return -EINVAL;
250         }
251         /* Setting MMC1 Card detect Irq */
252         if (pdev->id == 0) {
253                 ret = twl6030_mmc_card_detect_config();
254                  if (ret)
255                         dev_err(dev, "%s: Error card detect config(%d)\n",
256                                 __func__, ret);
257                  else
258                         pdata->slots[0].card_detect = twl6030_mmc_card_detect;
259         }
260         return ret;
261 }
262
263 static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
264 {
265         struct omap_mmc_platform_data *pdata;
266
267         /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
268         if (!dev) {
269                 pr_err("Failed omap4_twl6030_hsmmc_set_late_init\n");
270                 return;
271         }
272         pdata = dev->platform_data;
273
274         pdata->init =   omap4_twl6030_hsmmc_late_init;
275 }
276
277 static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
278 {
279         struct omap2_hsmmc_info *c;
280
281         omap2_hsmmc_init(controllers);
282         for (c = controllers; c->mmc; c++)
283                 omap4_twl6030_hsmmc_set_late_init(c->dev);
284
285         return 0;
286 }
287
288 static struct regulator_init_data omap4_panda_vaux1 = {
289         .constraints = {
290                 .min_uV                 = 1000000,
291                 .max_uV                 = 3000000,
292                 .apply_uV               = true,
293                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
294                                         | REGULATOR_MODE_STANDBY,
295                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
296                                         | REGULATOR_CHANGE_MODE
297                                         | REGULATOR_CHANGE_STATUS,
298         },
299 };
300
301 static struct regulator_init_data omap4_panda_vaux2 = {
302         .constraints = {
303                 .min_uV                 = 1200000,
304                 .max_uV                 = 2800000,
305                 .apply_uV               = true,
306                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
307                                         | REGULATOR_MODE_STANDBY,
308                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
309                                         | REGULATOR_CHANGE_MODE
310                                         | REGULATOR_CHANGE_STATUS,
311         },
312 };
313
314 static struct regulator_init_data omap4_panda_vaux3 = {
315         .constraints = {
316                 .min_uV                 = 1000000,
317                 .max_uV                 = 3000000,
318                 .apply_uV               = true,
319                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
320                                         | REGULATOR_MODE_STANDBY,
321                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
322                                         | REGULATOR_CHANGE_MODE
323                                         | REGULATOR_CHANGE_STATUS,
324         },
325 };
326
327 /* VMMC1 for MMC1 card */
328 static struct regulator_init_data omap4_panda_vmmc = {
329         .constraints = {
330                 .min_uV                 = 1200000,
331                 .max_uV                 = 3000000,
332                 .apply_uV               = true,
333                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
334                                         | REGULATOR_MODE_STANDBY,
335                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
336                                         | REGULATOR_CHANGE_MODE
337                                         | REGULATOR_CHANGE_STATUS,
338         },
339         .num_consumer_supplies  = 1,
340         .consumer_supplies      = omap4_panda_vmmc_supply,
341 };
342
343 static struct regulator_init_data omap4_panda_vpp = {
344         .constraints = {
345                 .min_uV                 = 1800000,
346                 .max_uV                 = 2500000,
347                 .apply_uV               = true,
348                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
349                                         | REGULATOR_MODE_STANDBY,
350                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
351                                         | REGULATOR_CHANGE_MODE
352                                         | REGULATOR_CHANGE_STATUS,
353         },
354 };
355
356 static struct regulator_init_data omap4_panda_vusim = {
357         .constraints = {
358                 .min_uV                 = 1200000,
359                 .max_uV                 = 2900000,
360                 .apply_uV               = true,
361                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
362                                         | REGULATOR_MODE_STANDBY,
363                 .valid_ops_mask  = REGULATOR_CHANGE_VOLTAGE
364                                         | REGULATOR_CHANGE_MODE
365                                         | REGULATOR_CHANGE_STATUS,
366         },
367 };
368
369 static struct regulator_init_data omap4_panda_vana = {
370         .constraints = {
371                 .min_uV                 = 2100000,
372                 .max_uV                 = 2100000,
373                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
374                                         | REGULATOR_MODE_STANDBY,
375                 .valid_ops_mask  = REGULATOR_CHANGE_MODE
376                                         | REGULATOR_CHANGE_STATUS,
377         },
378 };
379
380 static struct regulator_init_data omap4_panda_vcxio = {
381         .constraints = {
382                 .min_uV                 = 1800000,
383                 .max_uV                 = 1800000,
384                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
385                                         | REGULATOR_MODE_STANDBY,
386                 .valid_ops_mask  = REGULATOR_CHANGE_MODE
387                                         | REGULATOR_CHANGE_STATUS,
388         },
389 };
390
391 static struct regulator_init_data omap4_panda_vdac = {
392         .constraints = {
393                 .min_uV                 = 1800000,
394                 .max_uV                 = 1800000,
395                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
396                                         | REGULATOR_MODE_STANDBY,
397                 .valid_ops_mask  = REGULATOR_CHANGE_MODE
398                                         | REGULATOR_CHANGE_STATUS,
399         },
400 };
401
402 static struct regulator_init_data omap4_panda_vusb = {
403         .constraints = {
404                 .min_uV                 = 3300000,
405                 .max_uV                 = 3300000,
406                 .apply_uV               = true,
407                 .valid_modes_mask       = REGULATOR_MODE_NORMAL
408                                         | REGULATOR_MODE_STANDBY,
409                 .valid_ops_mask  =      REGULATOR_CHANGE_MODE
410                                         | REGULATOR_CHANGE_STATUS,
411         },
412 };
413
414 static struct regulator_init_data omap4_panda_clk32kg = {
415         .constraints = {
416                 .valid_ops_mask         = REGULATOR_CHANGE_STATUS,
417         },
418 };
419
420 static struct twl4030_platform_data omap4_panda_twldata = {
421         .irq_base       = TWL6030_IRQ_BASE,
422         .irq_end        = TWL6030_IRQ_END,
423
424         /* Regulators */
425         .vmmc           = &omap4_panda_vmmc,
426         .vpp            = &omap4_panda_vpp,
427         .vusim          = &omap4_panda_vusim,
428         .vana           = &omap4_panda_vana,
429         .vcxio          = &omap4_panda_vcxio,
430         .vdac           = &omap4_panda_vdac,
431         .vusb           = &omap4_panda_vusb,
432         .vaux1          = &omap4_panda_vaux1,
433         .vaux2          = &omap4_panda_vaux2,
434         .vaux3          = &omap4_panda_vaux3,
435         .clk32kg        = &omap4_panda_clk32kg,
436         .usb            = &omap4_usbphy_data,
437 };
438
439 static struct i2c_board_info __initdata omap4_panda_i2c_boardinfo[] = {
440         {
441                 I2C_BOARD_INFO("twl6030", 0x48),
442                 .flags = I2C_CLIENT_WAKE,
443                 .irq = OMAP44XX_IRQ_SYS_1N,
444                 .platform_data = &omap4_panda_twldata,
445         },
446 };
447
448 /*
449  * Display monitor features are burnt in their EEPROM as EDID data. The EEPROM
450  * is connected as I2C slave device, and can be accessed at address 0x50
451  */
452 static struct i2c_board_info __initdata panda_i2c_eeprom[] = {
453         {
454                 I2C_BOARD_INFO("eeprom", 0x50),
455         },
456 };
457
458 static int __init omap4_panda_i2c_init(void)
459 {
460         /*
461          * Phoenix Audio IC needs I2C1 to
462          * start with 400 KHz or less
463          */
464         omap_register_i2c_bus(1, 400, omap4_panda_i2c_boardinfo,
465                         ARRAY_SIZE(omap4_panda_i2c_boardinfo));
466         omap_register_i2c_bus(2, 400, NULL, 0);
467         /*
468          * Bus 3 is attached to the DVI port where devices like the pico DLP
469          * projector don't work reliably with 400kHz
470          */
471         omap_register_i2c_bus(3, 100, panda_i2c_eeprom,
472                                         ARRAY_SIZE(panda_i2c_eeprom));
473         omap_register_i2c_bus(4, 400, NULL, 0);
474         return 0;
475 }
476
477 #ifdef CONFIG_OMAP_MUX
478 static struct omap_board_mux board_mux[] __initdata = {
479         /* WLAN IRQ - GPIO 53 */
480         OMAP4_MUX(GPMC_NCS3, OMAP_MUX_MODE3 | OMAP_PIN_INPUT),
481         /* WLAN POWER ENABLE - GPIO 43 */
482         OMAP4_MUX(GPMC_A19, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
483         /* WLAN SDIO: MMC5 CMD */
484         OMAP4_MUX(SDMMC5_CMD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
485         /* WLAN SDIO: MMC5 CLK */
486         OMAP4_MUX(SDMMC5_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
487         /* WLAN SDIO: MMC5 DAT[0-3] */
488         OMAP4_MUX(SDMMC5_DAT0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
489         OMAP4_MUX(SDMMC5_DAT1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
490         OMAP4_MUX(SDMMC5_DAT2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
491         OMAP4_MUX(SDMMC5_DAT3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
492         /* gpio 0 - TFP410 PD */
493         OMAP4_MUX(KPD_COL1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE3),
494         /* dispc2_data23 */
495         OMAP4_MUX(USBB2_ULPITLL_STP, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
496         /* dispc2_data22 */
497         OMAP4_MUX(USBB2_ULPITLL_DIR, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
498         /* dispc2_data21 */
499         OMAP4_MUX(USBB2_ULPITLL_NXT, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
500         /* dispc2_data20 */
501         OMAP4_MUX(USBB2_ULPITLL_DAT0, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
502         /* dispc2_data19 */
503         OMAP4_MUX(USBB2_ULPITLL_DAT1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
504         /* dispc2_data18 */
505         OMAP4_MUX(USBB2_ULPITLL_DAT2, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
506         /* dispc2_data15 */
507         OMAP4_MUX(USBB2_ULPITLL_DAT3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
508         /* dispc2_data14 */
509         OMAP4_MUX(USBB2_ULPITLL_DAT4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
510         /* dispc2_data13 */
511         OMAP4_MUX(USBB2_ULPITLL_DAT5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
512         /* dispc2_data12 */
513         OMAP4_MUX(USBB2_ULPITLL_DAT6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
514         /* dispc2_data11 */
515         OMAP4_MUX(USBB2_ULPITLL_DAT7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
516         /* dispc2_data10 */
517         OMAP4_MUX(DPM_EMU3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
518         /* dispc2_data9 */
519         OMAP4_MUX(DPM_EMU4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
520         /* dispc2_data16 */
521         OMAP4_MUX(DPM_EMU5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
522         /* dispc2_data17 */
523         OMAP4_MUX(DPM_EMU6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
524         /* dispc2_hsync */
525         OMAP4_MUX(DPM_EMU7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
526         /* dispc2_pclk */
527         OMAP4_MUX(DPM_EMU8, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
528         /* dispc2_vsync */
529         OMAP4_MUX(DPM_EMU9, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
530         /* dispc2_de */
531         OMAP4_MUX(DPM_EMU10, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
532         /* dispc2_data8 */
533         OMAP4_MUX(DPM_EMU11, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
534         /* dispc2_data7 */
535         OMAP4_MUX(DPM_EMU12, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
536         /* dispc2_data6 */
537         OMAP4_MUX(DPM_EMU13, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
538         /* dispc2_data5 */
539         OMAP4_MUX(DPM_EMU14, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
540         /* dispc2_data4 */
541         OMAP4_MUX(DPM_EMU15, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
542         /* dispc2_data3 */
543         OMAP4_MUX(DPM_EMU16, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
544         /* dispc2_data2 */
545         OMAP4_MUX(DPM_EMU17, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
546         /* dispc2_data1 */
547         OMAP4_MUX(DPM_EMU18, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
548         /* dispc2_data0 */
549         OMAP4_MUX(DPM_EMU19, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
550         { .reg_offset = OMAP_MUX_TERMINATOR },
551 };
552
553 static struct omap_device_pad serial2_pads[] __initdata = {
554         OMAP_MUX_STATIC("uart2_cts.uart2_cts",
555                          OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
556         OMAP_MUX_STATIC("uart2_rts.uart2_rts",
557                          OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
558         OMAP_MUX_STATIC("uart2_rx.uart2_rx",
559                          OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
560         OMAP_MUX_STATIC("uart2_tx.uart2_tx",
561                          OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
562 };
563
564 static struct omap_device_pad serial3_pads[] __initdata = {
565         OMAP_MUX_STATIC("uart3_cts_rctx.uart3_cts_rctx",
566                          OMAP_PIN_INPUT_PULLUP | OMAP_MUX_MODE0),
567         OMAP_MUX_STATIC("uart3_rts_sd.uart3_rts_sd",
568                          OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
569         OMAP_MUX_STATIC("uart3_rx_irrx.uart3_rx_irrx",
570                          OMAP_PIN_INPUT | OMAP_MUX_MODE0),
571         OMAP_MUX_STATIC("uart3_tx_irtx.uart3_tx_irtx",
572                          OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
573 };
574
575 static struct omap_device_pad serial4_pads[] __initdata = {
576         OMAP_MUX_STATIC("uart4_rx.uart4_rx",
577                          OMAP_PIN_INPUT | OMAP_MUX_MODE0),
578         OMAP_MUX_STATIC("uart4_tx.uart4_tx",
579                          OMAP_PIN_OUTPUT | OMAP_MUX_MODE0),
580 };
581
582 static struct omap_board_data serial2_data = {
583         .id             = 1,
584         .pads           = serial2_pads,
585         .pads_cnt       = ARRAY_SIZE(serial2_pads),
586 };
587
588 static struct omap_board_data serial3_data = {
589         .id             = 2,
590         .pads           = serial3_pads,
591         .pads_cnt       = ARRAY_SIZE(serial3_pads),
592 };
593
594 static struct omap_board_data serial4_data = {
595         .id             = 3,
596         .pads           = serial4_pads,
597         .pads_cnt       = ARRAY_SIZE(serial4_pads),
598 };
599
600 static inline void board_serial_init(void)
601 {
602         struct omap_board_data bdata;
603         bdata.flags     = 0;
604         bdata.pads      = NULL;
605         bdata.pads_cnt  = 0;
606         bdata.id        = 0;
607         /* pass dummy data for UART1 */
608         omap_serial_init_port(&bdata);
609
610         omap_serial_init_port(&serial2_data);
611         omap_serial_init_port(&serial3_data);
612         omap_serial_init_port(&serial4_data);
613 }
614 #else
615 #define board_mux       NULL
616
617 static inline void board_serial_init(void)
618 {
619         omap_serial_init();
620 }
621 #endif
622
623 /* Display DVI */
624 #define PANDA_DVI_TFP410_POWER_DOWN_GPIO        0
625
626 static int omap4_panda_enable_dvi(struct omap_dss_device *dssdev)
627 {
628         gpio_set_value(dssdev->reset_gpio, 1);
629         return 0;
630 }
631
632 static void omap4_panda_disable_dvi(struct omap_dss_device *dssdev)
633 {
634         gpio_set_value(dssdev->reset_gpio, 0);
635 }
636
637 /* Using generic display panel */
638 static struct panel_generic_dpi_data omap4_dvi_panel = {
639         .name                   = "generic",
640         .platform_enable        = omap4_panda_enable_dvi,
641         .platform_disable       = omap4_panda_disable_dvi,
642 };
643
644 struct omap_dss_device omap4_panda_dvi_device = {
645         .type                   = OMAP_DISPLAY_TYPE_DPI,
646         .name                   = "dvi",
647         .driver_name            = "generic_dpi_panel",
648         .data                   = &omap4_dvi_panel,
649         .phy.dpi.data_lines     = 24,
650         .reset_gpio             = PANDA_DVI_TFP410_POWER_DOWN_GPIO,
651         .channel                = OMAP_DSS_CHANNEL_LCD2,
652 };
653
654 int __init omap4_panda_dvi_init(void)
655 {
656         int r;
657
658         /* Requesting TFP410 DVI GPIO and disabling it, at bootup */
659         r = gpio_request_one(omap4_panda_dvi_device.reset_gpio,
660                                 GPIOF_OUT_INIT_LOW, "DVI PD");
661         if (r)
662                 pr_err("Failed to get DVI powerdown GPIO\n");
663
664         return r;
665 }
666
667
668 static void omap4_panda_hdmi_mux_init(void)
669 {
670         /* PAD0_HDMI_HPD_PAD1_HDMI_CEC */
671         omap_mux_init_signal("hdmi_hpd",
672                         OMAP_PIN_INPUT_PULLUP);
673         omap_mux_init_signal("hdmi_cec",
674                         OMAP_PIN_INPUT_PULLUP);
675         /* PAD0_HDMI_DDC_SCL_PAD1_HDMI_DDC_SDA */
676         omap_mux_init_signal("hdmi_ddc_scl",
677                         OMAP_PIN_INPUT_PULLUP);
678         omap_mux_init_signal("hdmi_ddc_sda",
679                         OMAP_PIN_INPUT_PULLUP);
680 }
681
682 static int omap4_panda_panel_enable_hdmi(struct omap_dss_device *dssdev)
683 {
684         int status;
685
686         status = gpio_request_one(HDMI_GPIO_HPD, GPIOF_OUT_INIT_HIGH,
687                                                         "hdmi_gpio_hpd");
688         if (status) {
689                 pr_err("Cannot request GPIO %d\n", HDMI_GPIO_HPD);
690                 return status;
691         }
692         status = gpio_request_one(HDMI_GPIO_LS_OE, GPIOF_OUT_INIT_HIGH,
693                                                         "hdmi_gpio_ls_oe");
694         if (status) {
695                 pr_err("Cannot request GPIO %d\n", HDMI_GPIO_LS_OE);
696                 goto error1;
697         }
698
699         return 0;
700
701 error1:
702         gpio_free(HDMI_GPIO_HPD);
703
704         return status;
705 }
706
707 static void omap4_panda_panel_disable_hdmi(struct omap_dss_device *dssdev)
708 {
709         gpio_free(HDMI_GPIO_LS_OE);
710         gpio_free(HDMI_GPIO_HPD);
711 }
712
713 static struct omap_dss_device  omap4_panda_hdmi_device = {
714         .name = "hdmi",
715         .driver_name = "hdmi_panel",
716         .type = OMAP_DISPLAY_TYPE_HDMI,
717         .platform_enable = omap4_panda_panel_enable_hdmi,
718         .platform_disable = omap4_panda_panel_disable_hdmi,
719         .channel = OMAP_DSS_CHANNEL_DIGIT,
720 };
721
722 static struct omap_dss_device *omap4_panda_dss_devices[] = {
723         &omap4_panda_dvi_device,
724         &omap4_panda_hdmi_device,
725 };
726
727 static struct omap_dss_board_info omap4_panda_dss_data = {
728         .num_devices    = ARRAY_SIZE(omap4_panda_dss_devices),
729         .devices        = omap4_panda_dss_devices,
730         .default_device = &omap4_panda_dvi_device,
731 };
732
733 void omap4_panda_display_init(void)
734 {
735         int r;
736
737         r = omap4_panda_dvi_init();
738         if (r)
739                 pr_err("error initializing panda DVI\n");
740
741         omap4_panda_hdmi_mux_init();
742         omap_display_init(&omap4_panda_dss_data);
743 }
744
745 static void __init omap4_panda_init(void)
746 {
747         int package = OMAP_PACKAGE_CBS;
748
749         if (omap_rev() == OMAP4430_REV_ES1_0)
750                 package = OMAP_PACKAGE_CBL;
751         omap4_mux_init(board_mux, package);
752
753         if (wl12xx_set_platform_data(&omap_panda_wlan_data))
754                 pr_err("error setting wl12xx data\n");
755
756         omap4_panda_i2c_init();
757         platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
758         platform_device_register(&omap_vwlan_device);
759         board_serial_init();
760         omap4_twl6030_hsmmc_init(mmc);
761         omap4_ehci_init();
762         usb_musb_init(&musb_board_data);
763         omap4_panda_display_init();
764 }
765
766 static void __init omap4_panda_map_io(void)
767 {
768         omap2_set_globals_443x();
769         omap44xx_map_common_io();
770 }
771
772 MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
773         /* Maintainer: David Anders - Texas Instruments Inc */
774         .boot_params    = 0x80000100,
775         .reserve        = omap_reserve,
776         .map_io         = omap4_panda_map_io,
777         .init_early     = omap4_panda_init_early,
778         .init_irq       = gic_init_irq,
779         .init_machine   = omap4_panda_init,
780         .timer          = &omap_timer,
781 MACHINE_END