blob: 297f30bc842b3a4c0dd04380cb6849d6c0e0e482 [file] [log] [blame]
David Andersb075f582010-08-02 13:18:05 +03001/*
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>
Anand Gadiyar1740d482011-01-10 14:42:15 +000022#include <linux/clk.h>
David Andersb075f582010-08-02 13:18:05 +030023#include <linux/io.h>
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070024#include <linux/leds.h>
David Andersb075f582010-08-02 13:18:05 +030025#include <linux/gpio.h>
26#include <linux/usb/otg.h>
27#include <linux/i2c/twl.h>
28#include <linux/regulator/machine.h>
Panduranga Mallireddyedc84062011-02-15 03:40:34 -050029#include <linux/regulator/fixed.h>
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -050030#include <linux/wl12xx.h>
David Andersb075f582010-08-02 13:18:05 +030031
32#include <mach/hardware.h>
Marc Zyngier6b2f55d2011-09-06 10:23:45 +010033#include <asm/hardware/gic.h>
David Andersb075f582010-08-02 13:18:05 +030034#include <asm/mach-types.h>
35#include <asm/mach/arch.h>
36#include <asm/mach/map.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030037#include <video/omapdss.h>
David Andersb075f582010-08-02 13:18:05 +030038
39#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010040#include "common.h"
David Andersb075f582010-08-02 13:18:05 +030041#include <plat/usb.h>
42#include <plat/mmc.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030043#include <video/omap-panel-dvi.h>
David Andersb075f582010-08-02 13:18:05 +030044
Paul Walmsley4814ced2010-10-08 11:40:20 -060045#include "hsmmc.h"
46#include "control.h"
sricharanfc63de822010-11-08 19:26:11 +053047#include "mux.h"
Mike Rapoportfbd80712011-04-25 01:09:06 +030048#include "common-board-devices.h"
David Andersb075f582010-08-02 13:18:05 +030049
David Anders4415beb2010-10-07 19:36:30 +000050#define GPIO_HUB_POWER 1
51#define GPIO_HUB_NRESET 62
Panduranga Mallireddyedc84062011-02-15 03:40:34 -050052#define GPIO_WIFI_PMENA 43
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -050053#define GPIO_WIFI_IRQ 53
Tomi Valkeinen3932a322012-01-17 10:49:38 +020054#define HDMI_GPIO_CT_CP_HPD 60 /* HPD mode enable/disable */
K, Mythri P17c84ef2011-03-14 23:57:42 -050055#define HDMI_GPIO_LS_OE 41 /* Level shifter for HDMI */
Tomi Valkeinenaa742742012-01-17 11:05:32 +020056#define HDMI_GPIO_HPD 63 /* Hotplug detect */
David Anders4415beb2010-10-07 19:36:30 +000057
Guy Eilamec179ea52011-02-25 06:52:35 +000058/* wl127x BT, FM, GPS connectivity chip */
59static int wl1271_gpios[] = {46, -1, -1};
60static struct platform_device wl1271_device = {
61 .name = "kim",
62 .id = -1,
63 .dev = {
64 .platform_data = &wl1271_gpios,
65 },
66};
David Andersb075f582010-08-02 13:18:05 +030067
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070068static struct gpio_led gpio_leds[] = {
69 {
70 .name = "pandaboard::status1",
71 .default_trigger = "heartbeat",
72 .gpio = 7,
73 },
74 {
75 .name = "pandaboard::status2",
76 .default_trigger = "mmc0",
77 .gpio = 8,
78 },
79};
80
81static struct gpio_led_platform_data gpio_led_info = {
82 .leds = gpio_leds,
83 .num_leds = ARRAY_SIZE(gpio_leds),
84};
85
86static struct platform_device leds_gpio = {
87 .name = "leds-gpio",
88 .id = -1,
89 .dev = {
90 .platform_data = &gpio_led_info,
91 },
92};
93
94static struct platform_device *panda_devices[] __initdata = {
95 &leds_gpio,
Guy Eilamec179ea52011-02-25 06:52:35 +000096 &wl1271_device,
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070097};
David Andersb075f582010-08-02 13:18:05 +030098
Keshava Munegowda181b2502011-03-01 20:08:16 +053099static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
100 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
101 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
102 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
David Anders4415beb2010-10-07 19:36:30 +0000103 .phy_reset = false,
104 .reset_gpio_port[0] = -EINVAL,
105 .reset_gpio_port[1] = -EINVAL,
106 .reset_gpio_port[2] = -EINVAL
107};
108
Igor Grinbergbc593f52011-05-03 18:22:09 +0300109static struct gpio panda_ehci_gpios[] __initdata = {
110 { GPIO_HUB_POWER, GPIOF_OUT_INIT_LOW, "hub_power" },
111 { GPIO_HUB_NRESET, GPIOF_OUT_INIT_LOW, "hub_nreset" },
112};
113
David Anders4415beb2010-10-07 19:36:30 +0000114static void __init omap4_ehci_init(void)
115{
116 int ret;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000117 struct clk *phy_ref_clk;
David Anders4415beb2010-10-07 19:36:30 +0000118
Anand Gadiyar1740d482011-01-10 14:42:15 +0000119 /* 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");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300123 return;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000124 }
125 clk_set_rate(phy_ref_clk, 19200000);
126 clk_enable(phy_ref_clk);
David Anders4415beb2010-10-07 19:36:30 +0000127
Igor Grinbergbc593f52011-05-03 18:22:09 +0300128 /* disable the power to the usb hub prior to init and reset phy+hub */
129 ret = gpio_request_array(panda_ehci_gpios,
130 ARRAY_SIZE(panda_ehci_gpios));
David Anders4415beb2010-10-07 19:36:30 +0000131 if (ret) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300132 pr_err("Unable to initialize EHCI power/reset\n");
133 return;
David Anders4415beb2010-10-07 19:36:30 +0000134 }
David Anders4415beb2010-10-07 19:36:30 +0000135
Igor Grinbergbc593f52011-05-03 18:22:09 +0300136 gpio_export(GPIO_HUB_POWER, 0);
David Anders4415beb2010-10-07 19:36:30 +0000137 gpio_export(GPIO_HUB_NRESET, 0);
David Anders4415beb2010-10-07 19:36:30 +0000138 gpio_set_value(GPIO_HUB_NRESET, 1);
139
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530140 usbhs_init(&usbhs_bdata);
David Anders4415beb2010-10-07 19:36:30 +0000141
142 /* enable power to hub */
143 gpio_set_value(GPIO_HUB_POWER, 1);
David Anders4415beb2010-10-07 19:36:30 +0000144}
145
David Andersb075f582010-08-02 13:18:05 +0300146static struct omap_musb_board_data musb_board_data = {
147 .interface_type = MUSB_INTERFACE_UTMI,
Hema HK09e72002010-12-10 18:11:42 +0530148 .mode = MUSB_OTG,
David Andersb075f582010-08-02 13:18:05 +0300149 .power = 100,
150};
151
152static struct omap2_hsmmc_info mmc[] = {
153 {
154 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000155 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
David Andersb075f582010-08-02 13:18:05 +0300156 .gpio_wp = -EINVAL,
Raghuveer Murthy5b59cc22010-12-21 14:14:34 +0000157 .gpio_cd = -EINVAL,
David Andersb075f582010-08-02 13:18:05 +0300158 },
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500159 {
160 .name = "wl1271",
161 .mmc = 5,
162 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
163 .gpio_wp = -EINVAL,
164 .gpio_cd = -EINVAL,
165 .ocr_mask = MMC_VDD_165_195,
166 .nonremovable = true,
167 },
David Andersb075f582010-08-02 13:18:05 +0300168 {} /* Terminator */
169};
170
Oleg Drokin786b01a2011-06-06 18:57:07 +0000171static struct regulator_consumer_supply omap4_panda_vmmc5_supply[] = {
172 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.4"),
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500173};
174
175static struct regulator_init_data panda_vmmc5 = {
176 .constraints = {
177 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
178 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000179 .num_consumer_supplies = ARRAY_SIZE(omap4_panda_vmmc5_supply),
180 .consumer_supplies = omap4_panda_vmmc5_supply,
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500181};
182
183static struct fixed_voltage_config panda_vwlan = {
184 .supply_name = "vwl1271",
185 .microvolts = 1800000, /* 1.8V */
186 .gpio = GPIO_WIFI_PMENA,
187 .startup_delay = 70000, /* 70msec */
188 .enable_high = 1,
189 .enabled_at_boot = 0,
190 .init_data = &panda_vmmc5,
191};
192
193static struct platform_device omap_vwlan_device = {
194 .name = "reg-fixed-voltage",
195 .id = 1,
196 .dev = {
197 .platform_data = &panda_vwlan,
198 },
199};
200
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500201struct wl12xx_platform_data omap_panda_wlan_data __initdata = {
202 .irq = OMAP_GPIO_IRQ(GPIO_WIFI_IRQ),
203 /* PANDA ref clock is 38.4 MHz */
204 .board_ref_clock = 2,
205};
206
David Andersb075f582010-08-02 13:18:05 +0300207static int omap4_twl6030_hsmmc_late_init(struct device *dev)
208{
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100209 int irq = 0;
David Andersb075f582010-08-02 13:18:05 +0300210 struct platform_device *pdev = container_of(dev,
211 struct platform_device, dev);
212 struct omap_mmc_platform_data *pdata = dev->platform_data;
213
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500214 if (!pdata) {
215 dev_err(dev, "%s: NULL platform data\n", __func__);
216 return -EINVAL;
217 }
David Andersb075f582010-08-02 13:18:05 +0300218 /* Setting MMC1 Card detect Irq */
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500219 if (pdev->id == 0) {
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100220 irq = twl6030_mmc_card_detect_config();
221 if (irq < 0) {
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500222 dev_err(dev, "%s: Error card detect config(%d)\n",
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100223 __func__, irq);
224 return irq;
225 }
226 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500227 }
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100228 return 0;
David Andersb075f582010-08-02 13:18:05 +0300229}
230
231static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
232{
David Andersb9b52622010-10-07 19:36:29 +0000233 struct omap_mmc_platform_data *pdata;
234
235 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
236 if (!dev) {
237 pr_err("Failed omap4_twl6030_hsmmc_set_late_init\n");
238 return;
239 }
240 pdata = dev->platform_data;
David Andersb075f582010-08-02 13:18:05 +0300241
242 pdata->init = omap4_twl6030_hsmmc_late_init;
243}
244
245static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
246{
247 struct omap2_hsmmc_info *c;
248
249 omap2_hsmmc_init(controllers);
250 for (c = controllers; c->mmc; c++)
251 omap4_twl6030_hsmmc_set_late_init(c->dev);
252
253 return 0;
254}
255
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300256/* Panda board uses the common PMIC configuration */
257static struct twl4030_platform_data omap4_panda_twldata;
David Andersb075f582010-08-02 13:18:05 +0300258
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500259/*
260 * Display monitor features are burnt in their EEPROM as EDID data. The EEPROM
261 * is connected as I2C slave device, and can be accessed at address 0x50
262 */
263static struct i2c_board_info __initdata panda_i2c_eeprom[] = {
264 {
265 I2C_BOARD_INFO("eeprom", 0x50),
266 },
267};
268
David Andersb075f582010-08-02 13:18:05 +0300269static int __init omap4_panda_i2c_init(void)
270{
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300271 omap4_pmic_get_config(&omap4_panda_twldata, TWL_COMMON_PDATA_USB,
272 TWL_COMMON_REGULATOR_VDAC |
273 TWL_COMMON_REGULATOR_VAUX2 |
274 TWL_COMMON_REGULATOR_VAUX3 |
275 TWL_COMMON_REGULATOR_VMMC |
276 TWL_COMMON_REGULATOR_VPP |
277 TWL_COMMON_REGULATOR_VANA |
278 TWL_COMMON_REGULATOR_VCXIO |
279 TWL_COMMON_REGULATOR_VUSB |
280 TWL_COMMON_REGULATOR_CLK32KG);
Mike Rapoportfbd80712011-04-25 01:09:06 +0300281 omap4_pmic_init("twl6030", &omap4_panda_twldata);
David Andersb075f582010-08-02 13:18:05 +0300282 omap_register_i2c_bus(2, 400, NULL, 0);
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500283 /*
284 * Bus 3 is attached to the DVI port where devices like the pico DLP
285 * projector don't work reliably with 400kHz
286 */
287 omap_register_i2c_bus(3, 100, panda_i2c_eeprom,
288 ARRAY_SIZE(panda_i2c_eeprom));
David Andersb075f582010-08-02 13:18:05 +0300289 omap_register_i2c_bus(4, 400, NULL, 0);
290 return 0;
291}
sricharanfc63de822010-11-08 19:26:11 +0530292
293#ifdef CONFIG_OMAP_MUX
294static struct omap_board_mux board_mux[] __initdata = {
Panduranga Mallireddy66e171a2011-02-15 03:40:32 -0500295 /* WLAN IRQ - GPIO 53 */
296 OMAP4_MUX(GPMC_NCS3, OMAP_MUX_MODE3 | OMAP_PIN_INPUT),
297 /* WLAN POWER ENABLE - GPIO 43 */
298 OMAP4_MUX(GPMC_A19, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
299 /* WLAN SDIO: MMC5 CMD */
300 OMAP4_MUX(SDMMC5_CMD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
301 /* WLAN SDIO: MMC5 CLK */
302 OMAP4_MUX(SDMMC5_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
303 /* WLAN SDIO: MMC5 DAT[0-3] */
304 OMAP4_MUX(SDMMC5_DAT0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
305 OMAP4_MUX(SDMMC5_DAT1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
306 OMAP4_MUX(SDMMC5_DAT2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
307 OMAP4_MUX(SDMMC5_DAT3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500308 /* gpio 0 - TFP410 PD */
309 OMAP4_MUX(KPD_COL1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE3),
310 /* dispc2_data23 */
311 OMAP4_MUX(USBB2_ULPITLL_STP, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
312 /* dispc2_data22 */
313 OMAP4_MUX(USBB2_ULPITLL_DIR, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
314 /* dispc2_data21 */
315 OMAP4_MUX(USBB2_ULPITLL_NXT, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
316 /* dispc2_data20 */
317 OMAP4_MUX(USBB2_ULPITLL_DAT0, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
318 /* dispc2_data19 */
319 OMAP4_MUX(USBB2_ULPITLL_DAT1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
320 /* dispc2_data18 */
321 OMAP4_MUX(USBB2_ULPITLL_DAT2, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
322 /* dispc2_data15 */
323 OMAP4_MUX(USBB2_ULPITLL_DAT3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
324 /* dispc2_data14 */
325 OMAP4_MUX(USBB2_ULPITLL_DAT4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
326 /* dispc2_data13 */
327 OMAP4_MUX(USBB2_ULPITLL_DAT5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
328 /* dispc2_data12 */
329 OMAP4_MUX(USBB2_ULPITLL_DAT6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
330 /* dispc2_data11 */
331 OMAP4_MUX(USBB2_ULPITLL_DAT7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
332 /* dispc2_data10 */
333 OMAP4_MUX(DPM_EMU3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
334 /* dispc2_data9 */
335 OMAP4_MUX(DPM_EMU4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
336 /* dispc2_data16 */
337 OMAP4_MUX(DPM_EMU5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
338 /* dispc2_data17 */
339 OMAP4_MUX(DPM_EMU6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
340 /* dispc2_hsync */
341 OMAP4_MUX(DPM_EMU7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
342 /* dispc2_pclk */
343 OMAP4_MUX(DPM_EMU8, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
344 /* dispc2_vsync */
345 OMAP4_MUX(DPM_EMU9, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
346 /* dispc2_de */
347 OMAP4_MUX(DPM_EMU10, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
348 /* dispc2_data8 */
349 OMAP4_MUX(DPM_EMU11, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
350 /* dispc2_data7 */
351 OMAP4_MUX(DPM_EMU12, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
352 /* dispc2_data6 */
353 OMAP4_MUX(DPM_EMU13, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
354 /* dispc2_data5 */
355 OMAP4_MUX(DPM_EMU14, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
356 /* dispc2_data4 */
357 OMAP4_MUX(DPM_EMU15, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
358 /* dispc2_data3 */
359 OMAP4_MUX(DPM_EMU16, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
360 /* dispc2_data2 */
361 OMAP4_MUX(DPM_EMU17, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
362 /* dispc2_data1 */
363 OMAP4_MUX(DPM_EMU18, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
364 /* dispc2_data0 */
365 OMAP4_MUX(DPM_EMU19, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
sricharanfc63de822010-11-08 19:26:11 +0530366 { .reg_offset = OMAP_MUX_TERMINATOR },
367};
R Sricharan573efc22011-03-11 06:04:46 +0000368
sricharanfc63de822010-11-08 19:26:11 +0530369#else
370#define board_mux NULL
371#endif
372
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500373/* Display DVI */
374#define PANDA_DVI_TFP410_POWER_DOWN_GPIO 0
375
376static int omap4_panda_enable_dvi(struct omap_dss_device *dssdev)
377{
378 gpio_set_value(dssdev->reset_gpio, 1);
379 return 0;
380}
381
382static void omap4_panda_disable_dvi(struct omap_dss_device *dssdev)
383{
384 gpio_set_value(dssdev->reset_gpio, 0);
385}
386
387/* Using generic display panel */
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300388static struct panel_dvi_platform_data omap4_dvi_panel = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500389 .platform_enable = omap4_panda_enable_dvi,
390 .platform_disable = omap4_panda_disable_dvi,
Tomi Valkeinenfcca7192011-08-29 17:48:19 +0300391 .i2c_bus_num = 3,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500392};
393
394struct omap_dss_device omap4_panda_dvi_device = {
395 .type = OMAP_DISPLAY_TYPE_DPI,
396 .name = "dvi",
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300397 .driver_name = "dvi",
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500398 .data = &omap4_dvi_panel,
399 .phy.dpi.data_lines = 24,
400 .reset_gpio = PANDA_DVI_TFP410_POWER_DOWN_GPIO,
401 .channel = OMAP_DSS_CHANNEL_LCD2,
402};
403
404int __init omap4_panda_dvi_init(void)
405{
406 int r;
407
408 /* Requesting TFP410 DVI GPIO and disabling it, at bootup */
409 r = gpio_request_one(omap4_panda_dvi_device.reset_gpio,
410 GPIOF_OUT_INIT_LOW, "DVI PD");
411 if (r)
412 pr_err("Failed to get DVI powerdown GPIO\n");
413
414 return r;
415}
416
Igor Grinbergbc593f52011-05-03 18:22:09 +0300417static struct gpio panda_hdmi_gpios[] = {
Tomi Valkeinen3932a322012-01-17 10:49:38 +0200418 { HDMI_GPIO_CT_CP_HPD, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ct_cp_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300419 { HDMI_GPIO_LS_OE, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ls_oe" },
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200420 { HDMI_GPIO_HPD, GPIOF_DIR_IN, "hdmi_gpio_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300421};
422
K, Mythri P17c84ef2011-03-14 23:57:42 -0500423static int omap4_panda_panel_enable_hdmi(struct omap_dss_device *dssdev)
424{
425 int status;
426
Igor Grinbergbc593f52011-05-03 18:22:09 +0300427 status = gpio_request_array(panda_hdmi_gpios,
428 ARRAY_SIZE(panda_hdmi_gpios));
429 if (status)
430 pr_err("Cannot request HDMI GPIOs\n");
K, Mythri P17c84ef2011-03-14 23:57:42 -0500431
432 return status;
433}
434
435static void omap4_panda_panel_disable_hdmi(struct omap_dss_device *dssdev)
436{
Tomi Valkeinen575753e2012-01-17 11:04:53 +0200437 gpio_free_array(panda_hdmi_gpios, ARRAY_SIZE(panda_hdmi_gpios));
K, Mythri P17c84ef2011-03-14 23:57:42 -0500438}
439
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200440static struct omap_dss_hdmi_data omap4_panda_hdmi_data = {
441 .hpd_gpio = HDMI_GPIO_HPD,
442};
443
K, Mythri P17c84ef2011-03-14 23:57:42 -0500444static struct omap_dss_device omap4_panda_hdmi_device = {
445 .name = "hdmi",
446 .driver_name = "hdmi_panel",
447 .type = OMAP_DISPLAY_TYPE_HDMI,
448 .platform_enable = omap4_panda_panel_enable_hdmi,
449 .platform_disable = omap4_panda_panel_disable_hdmi,
450 .channel = OMAP_DSS_CHANNEL_DIGIT,
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200451 .data = &omap4_panda_hdmi_data,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500452};
453
454static struct omap_dss_device *omap4_panda_dss_devices[] = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500455 &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500456 &omap4_panda_hdmi_device,
457};
458
459static struct omap_dss_board_info omap4_panda_dss_data = {
460 .num_devices = ARRAY_SIZE(omap4_panda_dss_devices),
461 .devices = omap4_panda_dss_devices,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500462 .default_device = &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500463};
464
465void omap4_panda_display_init(void)
466{
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500467 int r;
468
469 r = omap4_panda_dvi_init();
470 if (r)
471 pr_err("error initializing panda DVI\n");
472
K, Mythri P17c84ef2011-03-14 23:57:42 -0500473 omap_display_init(&omap4_panda_dss_data);
Mythri P K9a901682012-01-02 14:02:38 +0530474
475 /*
476 * OMAP4460SDP/Blaze and OMAP4430 ES2.3 SDP/Blaze boards and
477 * later have external pull up on the HDMI I2C lines
478 */
479 if (cpu_is_omap446x() || omap_rev() > OMAP4430_REV_ES2_2)
480 omap_hdmi_init(OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP);
481 else
482 omap_hdmi_init(0);
Tomi Valkeinen78a1ad82012-01-17 11:02:36 +0200483
484 omap_mux_init_gpio(HDMI_GPIO_LS_OE, OMAP_PIN_OUTPUT);
485 omap_mux_init_gpio(HDMI_GPIO_CT_CP_HPD, OMAP_PIN_OUTPUT);
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200486 omap_mux_init_gpio(HDMI_GPIO_HPD, OMAP_PIN_INPUT_PULLDOWN);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500487}
488
David Andersb075f582010-08-02 13:18:05 +0300489static void __init omap4_panda_init(void)
490{
sricharanfc63de822010-11-08 19:26:11 +0530491 int package = OMAP_PACKAGE_CBS;
Russell King70d669d2012-02-07 11:03:23 +0000492 int ret;
sricharanfc63de822010-11-08 19:26:11 +0530493
494 if (omap_rev() == OMAP4430_REV_ES1_0)
495 package = OMAP_PACKAGE_CBL;
Colin Cross21a42c92011-05-04 14:57:57 -0700496 omap4_mux_init(board_mux, NULL, package);
sricharanfc63de822010-11-08 19:26:11 +0530497
Russell King70d669d2012-02-07 11:03:23 +0000498 ret = wl12xx_set_platform_data(&omap_panda_wlan_data);
499 if (ret)
500 pr_err("error setting wl12xx data: %d\n", ret);
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500501
David Andersb075f582010-08-02 13:18:05 +0300502 omap4_panda_i2c_init();
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700503 platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500504 platform_device_register(&omap_vwlan_device);
Govindraj.R7496ba32011-11-07 18:55:05 +0530505 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700506 omap_sdrc_init(NULL, NULL);
David Andersb075f582010-08-02 13:18:05 +0300507 omap4_twl6030_hsmmc_init(mmc);
David Anders4415beb2010-10-07 19:36:30 +0000508 omap4_ehci_init();
Felipe Balbi1ea7f352010-12-01 13:48:54 +0200509 usb_musb_init(&musb_board_data);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500510 omap4_panda_display_init();
David Andersb075f582010-08-02 13:18:05 +0300511}
512
David Andersb075f582010-08-02 13:18:05 +0300513MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
514 /* Maintainer: David Anders - Texas Instruments Inc */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400515 .atag_offset = 0x100,
Raghuveer Murthyd920e522010-12-17 18:15:07 -0800516 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700517 .map_io = omap4_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700518 .init_early = omap4430_init_early,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800519 .init_irq = gic_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100520 .handle_irq = gic_handle_irq,
David Andersb075f582010-08-02 13:18:05 +0300521 .init_machine = omap4_panda_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700522 .timer = &omap4_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000523 .restart = omap_prcm_restart,
David Andersb075f582010-08-02 13:18:05 +0300524MACHINE_END