blob: e4415917693f3d04cfa096283c031d8780b56321 [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>
Peter Ujfalusi3c90c982011-12-08 11:15:45 +020031#include <linux/platform_data/omap-abe-twl6040.h>
David Andersb075f582010-08-02 13:18:05 +030032
33#include <mach/hardware.h>
Marc Zyngier6b2f55d2011-09-06 10:23:45 +010034#include <asm/hardware/gic.h>
David Andersb075f582010-08-02 13:18:05 +030035#include <asm/mach-types.h>
36#include <asm/mach/arch.h>
37#include <asm/mach/map.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030038#include <video/omapdss.h>
David Andersb075f582010-08-02 13:18:05 +030039
40#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010041#include "common.h"
David Andersb075f582010-08-02 13:18:05 +030042#include <plat/usb.h>
43#include <plat/mmc.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030044#include <video/omap-panel-dvi.h>
David Andersb075f582010-08-02 13:18:05 +030045
Paul Walmsley4814ced2010-10-08 11:40:20 -060046#include "hsmmc.h"
47#include "control.h"
sricharanfc63de822010-11-08 19:26:11 +053048#include "mux.h"
Mike Rapoportfbd80712011-04-25 01:09:06 +030049#include "common-board-devices.h"
David Andersb075f582010-08-02 13:18:05 +030050
David Anders4415beb2010-10-07 19:36:30 +000051#define GPIO_HUB_POWER 1
52#define GPIO_HUB_NRESET 62
Panduranga Mallireddyedc84062011-02-15 03:40:34 -050053#define GPIO_WIFI_PMENA 43
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -050054#define GPIO_WIFI_IRQ 53
Tomi Valkeinen3932a322012-01-17 10:49:38 +020055#define HDMI_GPIO_CT_CP_HPD 60 /* HPD mode enable/disable */
K, Mythri P17c84ef2011-03-14 23:57:42 -050056#define HDMI_GPIO_LS_OE 41 /* Level shifter for HDMI */
Tomi Valkeinenaa742742012-01-17 11:05:32 +020057#define HDMI_GPIO_HPD 63 /* Hotplug detect */
David Anders4415beb2010-10-07 19:36:30 +000058
Guy Eilamec179ea2011-02-25 06:52:35 +000059/* wl127x BT, FM, GPS connectivity chip */
60static int wl1271_gpios[] = {46, -1, -1};
61static struct platform_device wl1271_device = {
62 .name = "kim",
63 .id = -1,
64 .dev = {
65 .platform_data = &wl1271_gpios,
66 },
67};
David Andersb075f582010-08-02 13:18:05 +030068
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070069static struct gpio_led gpio_leds[] = {
70 {
71 .name = "pandaboard::status1",
72 .default_trigger = "heartbeat",
73 .gpio = 7,
74 },
75 {
76 .name = "pandaboard::status2",
77 .default_trigger = "mmc0",
78 .gpio = 8,
79 },
80};
81
82static struct gpio_led_platform_data gpio_led_info = {
83 .leds = gpio_leds,
84 .num_leds = ARRAY_SIZE(gpio_leds),
85};
86
87static struct platform_device leds_gpio = {
88 .name = "leds-gpio",
89 .id = -1,
90 .dev = {
91 .platform_data = &gpio_led_info,
92 },
93};
94
Peter Ujfalusi3c90c982011-12-08 11:15:45 +020095static struct omap_abe_twl6040_data panda_abe_audio_data = {
96 /* Audio out */
97 .has_hs = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
98 /* HandsFree through expasion connector */
99 .has_hf = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
100 /* PandaBoard: FM TX, PandaBoardES: can be connected to audio out */
101 .has_aux = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
102 /* PandaBoard: FM RX, PandaBoardES: audio in */
103 .has_afm = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
104 /* No jack detection. */
105 .jack_detection = 0,
106 /* MCLK input is 38.4MHz */
107 .mclk_freq = 38400000,
108
109};
110
111static struct platform_device panda_abe_audio = {
112 .name = "omap-abe-twl6040",
113 .id = -1,
114 .dev = {
115 .platform_data = &panda_abe_audio_data,
116 },
117};
118
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700119static struct platform_device *panda_devices[] __initdata = {
120 &leds_gpio,
Guy Eilamec179ea2011-02-25 06:52:35 +0000121 &wl1271_device,
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200122 &panda_abe_audio,
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700123};
David Andersb075f582010-08-02 13:18:05 +0300124
Keshava Munegowda181b2502011-03-01 20:08:16 +0530125static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
126 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
127 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
128 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
David Anders4415beb2010-10-07 19:36:30 +0000129 .phy_reset = false,
130 .reset_gpio_port[0] = -EINVAL,
131 .reset_gpio_port[1] = -EINVAL,
132 .reset_gpio_port[2] = -EINVAL
133};
134
Igor Grinbergbc593f52011-05-03 18:22:09 +0300135static struct gpio panda_ehci_gpios[] __initdata = {
136 { GPIO_HUB_POWER, GPIOF_OUT_INIT_LOW, "hub_power" },
137 { GPIO_HUB_NRESET, GPIOF_OUT_INIT_LOW, "hub_nreset" },
138};
139
David Anders4415beb2010-10-07 19:36:30 +0000140static void __init omap4_ehci_init(void)
141{
142 int ret;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000143 struct clk *phy_ref_clk;
David Anders4415beb2010-10-07 19:36:30 +0000144
Anand Gadiyar1740d482011-01-10 14:42:15 +0000145 /* FREF_CLK3 provides the 19.2 MHz reference clock to the PHY */
146 phy_ref_clk = clk_get(NULL, "auxclk3_ck");
147 if (IS_ERR(phy_ref_clk)) {
148 pr_err("Cannot request auxclk3\n");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300149 return;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000150 }
151 clk_set_rate(phy_ref_clk, 19200000);
152 clk_enable(phy_ref_clk);
David Anders4415beb2010-10-07 19:36:30 +0000153
Igor Grinbergbc593f52011-05-03 18:22:09 +0300154 /* disable the power to the usb hub prior to init and reset phy+hub */
155 ret = gpio_request_array(panda_ehci_gpios,
156 ARRAY_SIZE(panda_ehci_gpios));
David Anders4415beb2010-10-07 19:36:30 +0000157 if (ret) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300158 pr_err("Unable to initialize EHCI power/reset\n");
159 return;
David Anders4415beb2010-10-07 19:36:30 +0000160 }
David Anders4415beb2010-10-07 19:36:30 +0000161
Igor Grinbergbc593f52011-05-03 18:22:09 +0300162 gpio_export(GPIO_HUB_POWER, 0);
David Anders4415beb2010-10-07 19:36:30 +0000163 gpio_export(GPIO_HUB_NRESET, 0);
David Anders4415beb2010-10-07 19:36:30 +0000164 gpio_set_value(GPIO_HUB_NRESET, 1);
165
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530166 usbhs_init(&usbhs_bdata);
David Anders4415beb2010-10-07 19:36:30 +0000167
168 /* enable power to hub */
169 gpio_set_value(GPIO_HUB_POWER, 1);
David Anders4415beb2010-10-07 19:36:30 +0000170}
171
David Andersb075f582010-08-02 13:18:05 +0300172static struct omap_musb_board_data musb_board_data = {
173 .interface_type = MUSB_INTERFACE_UTMI,
Hema HK09e72002010-12-10 18:11:42 +0530174 .mode = MUSB_OTG,
David Andersb075f582010-08-02 13:18:05 +0300175 .power = 100,
176};
177
178static struct omap2_hsmmc_info mmc[] = {
179 {
180 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000181 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
David Andersb075f582010-08-02 13:18:05 +0300182 .gpio_wp = -EINVAL,
Raghuveer Murthy5b59cc22010-12-21 14:14:34 +0000183 .gpio_cd = -EINVAL,
David Andersb075f582010-08-02 13:18:05 +0300184 },
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500185 {
186 .name = "wl1271",
187 .mmc = 5,
188 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
189 .gpio_wp = -EINVAL,
190 .gpio_cd = -EINVAL,
191 .ocr_mask = MMC_VDD_165_195,
192 .nonremovable = true,
193 },
David Andersb075f582010-08-02 13:18:05 +0300194 {} /* Terminator */
195};
196
Oleg Drokin786b01a2011-06-06 18:57:07 +0000197static struct regulator_consumer_supply omap4_panda_vmmc5_supply[] = {
198 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.4"),
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500199};
200
201static struct regulator_init_data panda_vmmc5 = {
202 .constraints = {
203 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
204 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000205 .num_consumer_supplies = ARRAY_SIZE(omap4_panda_vmmc5_supply),
206 .consumer_supplies = omap4_panda_vmmc5_supply,
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500207};
208
209static struct fixed_voltage_config panda_vwlan = {
210 .supply_name = "vwl1271",
211 .microvolts = 1800000, /* 1.8V */
212 .gpio = GPIO_WIFI_PMENA,
213 .startup_delay = 70000, /* 70msec */
214 .enable_high = 1,
215 .enabled_at_boot = 0,
216 .init_data = &panda_vmmc5,
217};
218
219static struct platform_device omap_vwlan_device = {
220 .name = "reg-fixed-voltage",
221 .id = 1,
222 .dev = {
223 .platform_data = &panda_vwlan,
224 },
225};
226
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500227struct wl12xx_platform_data omap_panda_wlan_data __initdata = {
228 .irq = OMAP_GPIO_IRQ(GPIO_WIFI_IRQ),
229 /* PANDA ref clock is 38.4 MHz */
230 .board_ref_clock = 2,
231};
232
David Andersb075f582010-08-02 13:18:05 +0300233static int omap4_twl6030_hsmmc_late_init(struct device *dev)
234{
235 int ret = 0;
236 struct platform_device *pdev = container_of(dev,
237 struct platform_device, dev);
238 struct omap_mmc_platform_data *pdata = dev->platform_data;
239
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500240 if (!pdata) {
241 dev_err(dev, "%s: NULL platform data\n", __func__);
242 return -EINVAL;
243 }
David Andersb075f582010-08-02 13:18:05 +0300244 /* Setting MMC1 Card detect Irq */
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500245 if (pdev->id == 0) {
246 ret = twl6030_mmc_card_detect_config();
247 if (ret)
248 dev_err(dev, "%s: Error card detect config(%d)\n",
249 __func__, ret);
250 else
251 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
252 }
David Andersb075f582010-08-02 13:18:05 +0300253 return ret;
254}
255
256static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
257{
David Andersb9b52622010-10-07 19:36:29 +0000258 struct omap_mmc_platform_data *pdata;
259
260 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
261 if (!dev) {
262 pr_err("Failed omap4_twl6030_hsmmc_set_late_init\n");
263 return;
264 }
265 pdata = dev->platform_data;
David Andersb075f582010-08-02 13:18:05 +0300266
267 pdata->init = omap4_twl6030_hsmmc_late_init;
268}
269
270static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
271{
272 struct omap2_hsmmc_info *c;
273
274 omap2_hsmmc_init(controllers);
275 for (c = controllers; c->mmc; c++)
276 omap4_twl6030_hsmmc_set_late_init(c->dev);
277
278 return 0;
279}
280
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200281static struct twl4030_codec_data twl6040_codec = {
282 /* single-step ramp for headset and handsfree */
283 .hs_left_step = 0x0f,
284 .hs_right_step = 0x0f,
285 .hf_left_step = 0x1d,
286 .hf_right_step = 0x1d,
287};
288
289static struct twl4030_audio_data twl6040_audio = {
290 .codec = &twl6040_codec,
291 .audpwron_gpio = 127,
292 .naudint_irq = OMAP44XX_IRQ_SYS_2N,
293 .irq_base = TWL6040_CODEC_IRQ_BASE,
294};
295
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300296/* Panda board uses the common PMIC configuration */
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200297static struct twl4030_platform_data omap4_panda_twldata = {
298 .audio = &twl6040_audio,
299};
David Andersb075f582010-08-02 13:18:05 +0300300
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500301/*
302 * Display monitor features are burnt in their EEPROM as EDID data. The EEPROM
303 * is connected as I2C slave device, and can be accessed at address 0x50
304 */
305static struct i2c_board_info __initdata panda_i2c_eeprom[] = {
306 {
307 I2C_BOARD_INFO("eeprom", 0x50),
308 },
309};
310
David Andersb075f582010-08-02 13:18:05 +0300311static int __init omap4_panda_i2c_init(void)
312{
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300313 omap4_pmic_get_config(&omap4_panda_twldata, TWL_COMMON_PDATA_USB,
314 TWL_COMMON_REGULATOR_VDAC |
315 TWL_COMMON_REGULATOR_VAUX2 |
316 TWL_COMMON_REGULATOR_VAUX3 |
317 TWL_COMMON_REGULATOR_VMMC |
318 TWL_COMMON_REGULATOR_VPP |
319 TWL_COMMON_REGULATOR_VANA |
320 TWL_COMMON_REGULATOR_VCXIO |
321 TWL_COMMON_REGULATOR_VUSB |
322 TWL_COMMON_REGULATOR_CLK32KG);
Mike Rapoportfbd80712011-04-25 01:09:06 +0300323 omap4_pmic_init("twl6030", &omap4_panda_twldata);
David Andersb075f582010-08-02 13:18:05 +0300324 omap_register_i2c_bus(2, 400, NULL, 0);
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500325 /*
326 * Bus 3 is attached to the DVI port where devices like the pico DLP
327 * projector don't work reliably with 400kHz
328 */
329 omap_register_i2c_bus(3, 100, panda_i2c_eeprom,
330 ARRAY_SIZE(panda_i2c_eeprom));
David Andersb075f582010-08-02 13:18:05 +0300331 omap_register_i2c_bus(4, 400, NULL, 0);
332 return 0;
333}
sricharanfc63de822010-11-08 19:26:11 +0530334
335#ifdef CONFIG_OMAP_MUX
336static struct omap_board_mux board_mux[] __initdata = {
Panduranga Mallireddy66e171a2011-02-15 03:40:32 -0500337 /* WLAN IRQ - GPIO 53 */
338 OMAP4_MUX(GPMC_NCS3, OMAP_MUX_MODE3 | OMAP_PIN_INPUT),
339 /* WLAN POWER ENABLE - GPIO 43 */
340 OMAP4_MUX(GPMC_A19, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
341 /* WLAN SDIO: MMC5 CMD */
342 OMAP4_MUX(SDMMC5_CMD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
343 /* WLAN SDIO: MMC5 CLK */
344 OMAP4_MUX(SDMMC5_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
345 /* WLAN SDIO: MMC5 DAT[0-3] */
346 OMAP4_MUX(SDMMC5_DAT0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
347 OMAP4_MUX(SDMMC5_DAT1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
348 OMAP4_MUX(SDMMC5_DAT2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
349 OMAP4_MUX(SDMMC5_DAT3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500350 /* gpio 0 - TFP410 PD */
351 OMAP4_MUX(KPD_COL1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE3),
352 /* dispc2_data23 */
353 OMAP4_MUX(USBB2_ULPITLL_STP, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
354 /* dispc2_data22 */
355 OMAP4_MUX(USBB2_ULPITLL_DIR, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
356 /* dispc2_data21 */
357 OMAP4_MUX(USBB2_ULPITLL_NXT, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
358 /* dispc2_data20 */
359 OMAP4_MUX(USBB2_ULPITLL_DAT0, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
360 /* dispc2_data19 */
361 OMAP4_MUX(USBB2_ULPITLL_DAT1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
362 /* dispc2_data18 */
363 OMAP4_MUX(USBB2_ULPITLL_DAT2, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
364 /* dispc2_data15 */
365 OMAP4_MUX(USBB2_ULPITLL_DAT3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
366 /* dispc2_data14 */
367 OMAP4_MUX(USBB2_ULPITLL_DAT4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
368 /* dispc2_data13 */
369 OMAP4_MUX(USBB2_ULPITLL_DAT5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
370 /* dispc2_data12 */
371 OMAP4_MUX(USBB2_ULPITLL_DAT6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
372 /* dispc2_data11 */
373 OMAP4_MUX(USBB2_ULPITLL_DAT7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
374 /* dispc2_data10 */
375 OMAP4_MUX(DPM_EMU3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
376 /* dispc2_data9 */
377 OMAP4_MUX(DPM_EMU4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
378 /* dispc2_data16 */
379 OMAP4_MUX(DPM_EMU5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
380 /* dispc2_data17 */
381 OMAP4_MUX(DPM_EMU6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
382 /* dispc2_hsync */
383 OMAP4_MUX(DPM_EMU7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
384 /* dispc2_pclk */
385 OMAP4_MUX(DPM_EMU8, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
386 /* dispc2_vsync */
387 OMAP4_MUX(DPM_EMU9, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
388 /* dispc2_de */
389 OMAP4_MUX(DPM_EMU10, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
390 /* dispc2_data8 */
391 OMAP4_MUX(DPM_EMU11, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
392 /* dispc2_data7 */
393 OMAP4_MUX(DPM_EMU12, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
394 /* dispc2_data6 */
395 OMAP4_MUX(DPM_EMU13, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
396 /* dispc2_data5 */
397 OMAP4_MUX(DPM_EMU14, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
398 /* dispc2_data4 */
399 OMAP4_MUX(DPM_EMU15, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
400 /* dispc2_data3 */
401 OMAP4_MUX(DPM_EMU16, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
402 /* dispc2_data2 */
403 OMAP4_MUX(DPM_EMU17, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
404 /* dispc2_data1 */
405 OMAP4_MUX(DPM_EMU18, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
406 /* dispc2_data0 */
407 OMAP4_MUX(DPM_EMU19, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
sricharanfc63de822010-11-08 19:26:11 +0530408 { .reg_offset = OMAP_MUX_TERMINATOR },
409};
R Sricharan573efc22011-03-11 06:04:46 +0000410
sricharanfc63de822010-11-08 19:26:11 +0530411#else
412#define board_mux NULL
413#endif
414
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500415/* Display DVI */
416#define PANDA_DVI_TFP410_POWER_DOWN_GPIO 0
417
418static int omap4_panda_enable_dvi(struct omap_dss_device *dssdev)
419{
420 gpio_set_value(dssdev->reset_gpio, 1);
421 return 0;
422}
423
424static void omap4_panda_disable_dvi(struct omap_dss_device *dssdev)
425{
426 gpio_set_value(dssdev->reset_gpio, 0);
427}
428
429/* Using generic display panel */
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300430static struct panel_dvi_platform_data omap4_dvi_panel = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500431 .platform_enable = omap4_panda_enable_dvi,
432 .platform_disable = omap4_panda_disable_dvi,
Tomi Valkeinenfcca7192011-08-29 17:48:19 +0300433 .i2c_bus_num = 3,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500434};
435
436struct omap_dss_device omap4_panda_dvi_device = {
437 .type = OMAP_DISPLAY_TYPE_DPI,
438 .name = "dvi",
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300439 .driver_name = "dvi",
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500440 .data = &omap4_dvi_panel,
441 .phy.dpi.data_lines = 24,
442 .reset_gpio = PANDA_DVI_TFP410_POWER_DOWN_GPIO,
443 .channel = OMAP_DSS_CHANNEL_LCD2,
444};
445
446int __init omap4_panda_dvi_init(void)
447{
448 int r;
449
450 /* Requesting TFP410 DVI GPIO and disabling it, at bootup */
451 r = gpio_request_one(omap4_panda_dvi_device.reset_gpio,
452 GPIOF_OUT_INIT_LOW, "DVI PD");
453 if (r)
454 pr_err("Failed to get DVI powerdown GPIO\n");
455
456 return r;
457}
458
Igor Grinbergbc593f52011-05-03 18:22:09 +0300459static struct gpio panda_hdmi_gpios[] = {
Tomi Valkeinen3932a322012-01-17 10:49:38 +0200460 { HDMI_GPIO_CT_CP_HPD, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ct_cp_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300461 { HDMI_GPIO_LS_OE, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ls_oe" },
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200462 { HDMI_GPIO_HPD, GPIOF_DIR_IN, "hdmi_gpio_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300463};
464
K, Mythri P17c84ef2011-03-14 23:57:42 -0500465static int omap4_panda_panel_enable_hdmi(struct omap_dss_device *dssdev)
466{
467 int status;
468
Igor Grinbergbc593f52011-05-03 18:22:09 +0300469 status = gpio_request_array(panda_hdmi_gpios,
470 ARRAY_SIZE(panda_hdmi_gpios));
471 if (status)
472 pr_err("Cannot request HDMI GPIOs\n");
K, Mythri P17c84ef2011-03-14 23:57:42 -0500473
474 return status;
475}
476
477static void omap4_panda_panel_disable_hdmi(struct omap_dss_device *dssdev)
478{
Tomi Valkeinen575753e2012-01-17 11:04:53 +0200479 gpio_free_array(panda_hdmi_gpios, ARRAY_SIZE(panda_hdmi_gpios));
K, Mythri P17c84ef2011-03-14 23:57:42 -0500480}
481
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200482static struct omap_dss_hdmi_data omap4_panda_hdmi_data = {
483 .hpd_gpio = HDMI_GPIO_HPD,
484};
485
K, Mythri P17c84ef2011-03-14 23:57:42 -0500486static struct omap_dss_device omap4_panda_hdmi_device = {
487 .name = "hdmi",
488 .driver_name = "hdmi_panel",
489 .type = OMAP_DISPLAY_TYPE_HDMI,
490 .platform_enable = omap4_panda_panel_enable_hdmi,
491 .platform_disable = omap4_panda_panel_disable_hdmi,
492 .channel = OMAP_DSS_CHANNEL_DIGIT,
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200493 .data = &omap4_panda_hdmi_data,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500494};
495
496static struct omap_dss_device *omap4_panda_dss_devices[] = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500497 &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500498 &omap4_panda_hdmi_device,
499};
500
501static struct omap_dss_board_info omap4_panda_dss_data = {
502 .num_devices = ARRAY_SIZE(omap4_panda_dss_devices),
503 .devices = omap4_panda_dss_devices,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500504 .default_device = &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500505};
506
507void omap4_panda_display_init(void)
508{
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500509 int r;
510
511 r = omap4_panda_dvi_init();
512 if (r)
513 pr_err("error initializing panda DVI\n");
514
K, Mythri P17c84ef2011-03-14 23:57:42 -0500515 omap_display_init(&omap4_panda_dss_data);
Mythri P K9a901682012-01-02 14:02:38 +0530516
517 /*
518 * OMAP4460SDP/Blaze and OMAP4430 ES2.3 SDP/Blaze boards and
519 * later have external pull up on the HDMI I2C lines
520 */
521 if (cpu_is_omap446x() || omap_rev() > OMAP4430_REV_ES2_2)
522 omap_hdmi_init(OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP);
523 else
524 omap_hdmi_init(0);
Tomi Valkeinen78a1ad82012-01-17 11:02:36 +0200525
526 omap_mux_init_gpio(HDMI_GPIO_LS_OE, OMAP_PIN_OUTPUT);
527 omap_mux_init_gpio(HDMI_GPIO_CT_CP_HPD, OMAP_PIN_OUTPUT);
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200528 omap_mux_init_gpio(HDMI_GPIO_HPD, OMAP_PIN_INPUT_PULLDOWN);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500529}
530
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200531static void omap4_panda_init_rev(void)
532{
Peter Ujfalusi0324e022012-02-17 11:12:08 +0200533 if (cpu_is_omap443x()) {
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200534 /* PandaBoard 4430 */
535 /* ASoC audio configuration */
536 panda_abe_audio_data.card_name = "PandaBoard";
537 panda_abe_audio_data.has_hsmic = 1;
538 } else {
539 /* PandaBoard ES */
540 /* ASoC audio configuration */
541 panda_abe_audio_data.card_name = "PandaBoardES";
542 }
543}
544
David Andersb075f582010-08-02 13:18:05 +0300545static void __init omap4_panda_init(void)
546{
sricharanfc63de822010-11-08 19:26:11 +0530547 int package = OMAP_PACKAGE_CBS;
Russell King70d669d2012-02-07 11:03:23 +0000548 int ret;
sricharanfc63de822010-11-08 19:26:11 +0530549
550 if (omap_rev() == OMAP4430_REV_ES1_0)
551 package = OMAP_PACKAGE_CBL;
Colin Cross21a42c92011-05-04 14:57:57 -0700552 omap4_mux_init(board_mux, NULL, package);
sricharanfc63de822010-11-08 19:26:11 +0530553
Russell King70d669d2012-02-07 11:03:23 +0000554 ret = wl12xx_set_platform_data(&omap_panda_wlan_data);
555 if (ret)
556 pr_err("error setting wl12xx data: %d\n", ret);
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500557
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200558 omap4_panda_init_rev();
David Andersb075f582010-08-02 13:18:05 +0300559 omap4_panda_i2c_init();
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700560 platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500561 platform_device_register(&omap_vwlan_device);
Govindraj.R7496ba32011-11-07 18:55:05 +0530562 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700563 omap_sdrc_init(NULL, NULL);
David Andersb075f582010-08-02 13:18:05 +0300564 omap4_twl6030_hsmmc_init(mmc);
David Anders4415beb2010-10-07 19:36:30 +0000565 omap4_ehci_init();
Felipe Balbi1ea7f352010-12-01 13:48:54 +0200566 usb_musb_init(&musb_board_data);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500567 omap4_panda_display_init();
David Andersb075f582010-08-02 13:18:05 +0300568}
569
David Andersb075f582010-08-02 13:18:05 +0300570MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
571 /* Maintainer: David Anders - Texas Instruments Inc */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400572 .atag_offset = 0x100,
Raghuveer Murthyd920e522010-12-17 18:15:07 -0800573 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700574 .map_io = omap4_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700575 .init_early = omap4430_init_early,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800576 .init_irq = gic_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100577 .handle_irq = gic_handle_irq,
David Andersb075f582010-08-02 13:18:05 +0300578 .init_machine = omap4_panda_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700579 .timer = &omap4_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000580 .restart = omap_prcm_restart,
David Andersb075f582010-08-02 13:18:05 +0300581MACHINE_END