blob: dc11ddfeec9a6841409e2764353c954f860d198f [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>
Peter Ujfalusi8eaeb932012-04-03 11:56:51 +030028#include <linux/mfd/twl6040.h>
David Andersb075f582010-08-02 13:18:05 +030029#include <linux/regulator/machine.h>
Panduranga Mallireddyedc84062011-02-15 03:40:34 -050030#include <linux/regulator/fixed.h>
Mircea Gherzan9624f612012-05-09 14:19:13 -070031#include <linux/ti_wilink_st.h>
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -050032#include <linux/wl12xx.h>
Peter Ujfalusi3c90c982011-12-08 11:15:45 +020033#include <linux/platform_data/omap-abe-twl6040.h>
David Andersb075f582010-08-02 13:18:05 +030034
35#include <mach/hardware.h>
Marc Zyngier6b2f55d2011-09-06 10:23:45 +010036#include <asm/hardware/gic.h>
David Andersb075f582010-08-02 13:18:05 +030037#include <asm/mach-types.h>
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030040#include <video/omapdss.h>
David Andersb075f582010-08-02 13:18:05 +030041
42#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010043#include "common.h"
David Andersb075f582010-08-02 13:18:05 +030044#include <plat/usb.h>
45#include <plat/mmc.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030046#include <video/omap-panel-dvi.h>
David Andersb075f582010-08-02 13:18:05 +030047
Paul Walmsley4814ced2010-10-08 11:40:20 -060048#include "hsmmc.h"
49#include "control.h"
sricharanfc63de822010-11-08 19:26:11 +053050#include "mux.h"
Mike Rapoportfbd80712011-04-25 01:09:06 +030051#include "common-board-devices.h"
David Andersb075f582010-08-02 13:18:05 +030052
David Anders4415beb2010-10-07 19:36:30 +000053#define GPIO_HUB_POWER 1
54#define GPIO_HUB_NRESET 62
Panduranga Mallireddyedc84062011-02-15 03:40:34 -050055#define GPIO_WIFI_PMENA 43
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -050056#define GPIO_WIFI_IRQ 53
Tomi Valkeinen3932a322012-01-17 10:49:38 +020057#define HDMI_GPIO_CT_CP_HPD 60 /* HPD mode enable/disable */
K, Mythri P17c84ef2011-03-14 23:57:42 -050058#define HDMI_GPIO_LS_OE 41 /* Level shifter for HDMI */
Tomi Valkeinenaa742742012-01-17 11:05:32 +020059#define HDMI_GPIO_HPD 63 /* Hotplug detect */
David Anders4415beb2010-10-07 19:36:30 +000060
Guy Eilamec179ea52011-02-25 06:52:35 +000061/* wl127x BT, FM, GPS connectivity chip */
Mircea Gherzan9624f612012-05-09 14:19:13 -070062static struct ti_st_plat_data wilink_platform_data = {
63 .nshutdown_gpio = 46,
64 .dev_name = "/dev/ttyO1",
65 .flow_cntrl = 1,
66 .baud_rate = 3000000,
67 .chip_enable = NULL,
68 .suspend = NULL,
69 .resume = NULL,
70};
71
Guy Eilamec179ea52011-02-25 06:52:35 +000072static struct platform_device wl1271_device = {
73 .name = "kim",
74 .id = -1,
75 .dev = {
Mircea Gherzan9624f612012-05-09 14:19:13 -070076 .platform_data = &wilink_platform_data,
Guy Eilamec179ea52011-02-25 06:52:35 +000077 },
78};
David Andersb075f582010-08-02 13:18:05 +030079
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -070080static struct gpio_led gpio_leds[] = {
81 {
82 .name = "pandaboard::status1",
83 .default_trigger = "heartbeat",
84 .gpio = 7,
85 },
86 {
87 .name = "pandaboard::status2",
88 .default_trigger = "mmc0",
89 .gpio = 8,
90 },
91};
92
93static struct gpio_led_platform_data gpio_led_info = {
94 .leds = gpio_leds,
95 .num_leds = ARRAY_SIZE(gpio_leds),
96};
97
98static struct platform_device leds_gpio = {
99 .name = "leds-gpio",
100 .id = -1,
101 .dev = {
102 .platform_data = &gpio_led_info,
103 },
104};
105
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200106static struct omap_abe_twl6040_data panda_abe_audio_data = {
107 /* Audio out */
108 .has_hs = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
109 /* HandsFree through expasion connector */
110 .has_hf = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
111 /* PandaBoard: FM TX, PandaBoardES: can be connected to audio out */
112 .has_aux = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
113 /* PandaBoard: FM RX, PandaBoardES: audio in */
114 .has_afm = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
115 /* No jack detection. */
116 .jack_detection = 0,
117 /* MCLK input is 38.4MHz */
118 .mclk_freq = 38400000,
119
120};
121
122static struct platform_device panda_abe_audio = {
123 .name = "omap-abe-twl6040",
124 .id = -1,
125 .dev = {
126 .platform_data = &panda_abe_audio_data,
127 },
128};
129
Ricardo Nerice7962f2012-05-09 14:19:14 -0700130static struct platform_device panda_hdmi_audio_codec = {
131 .name = "hdmi-audio-codec",
132 .id = -1,
133};
134
Mircea Gherzan65f19152012-03-05 11:08:37 -0800135static struct platform_device btwilink_device = {
136 .name = "btwilink",
137 .id = -1,
138};
139
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700140static struct platform_device *panda_devices[] __initdata = {
141 &leds_gpio,
Guy Eilamec179ea52011-02-25 06:52:35 +0000142 &wl1271_device,
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200143 &panda_abe_audio,
Ricardo Nerice7962f2012-05-09 14:19:14 -0700144 &panda_hdmi_audio_codec,
Mircea Gherzan65f19152012-03-05 11:08:37 -0800145 &btwilink_device,
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700146};
David Andersb075f582010-08-02 13:18:05 +0300147
Keshava Munegowda181b2502011-03-01 20:08:16 +0530148static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
149 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
150 .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
151 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
David Anders4415beb2010-10-07 19:36:30 +0000152 .phy_reset = false,
153 .reset_gpio_port[0] = -EINVAL,
154 .reset_gpio_port[1] = -EINVAL,
155 .reset_gpio_port[2] = -EINVAL
156};
157
Igor Grinbergbc593f52011-05-03 18:22:09 +0300158static struct gpio panda_ehci_gpios[] __initdata = {
159 { GPIO_HUB_POWER, GPIOF_OUT_INIT_LOW, "hub_power" },
160 { GPIO_HUB_NRESET, GPIOF_OUT_INIT_LOW, "hub_nreset" },
161};
162
David Anders4415beb2010-10-07 19:36:30 +0000163static void __init omap4_ehci_init(void)
164{
165 int ret;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000166 struct clk *phy_ref_clk;
David Anders4415beb2010-10-07 19:36:30 +0000167
Anand Gadiyar1740d482011-01-10 14:42:15 +0000168 /* FREF_CLK3 provides the 19.2 MHz reference clock to the PHY */
169 phy_ref_clk = clk_get(NULL, "auxclk3_ck");
170 if (IS_ERR(phy_ref_clk)) {
171 pr_err("Cannot request auxclk3\n");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300172 return;
Anand Gadiyar1740d482011-01-10 14:42:15 +0000173 }
174 clk_set_rate(phy_ref_clk, 19200000);
175 clk_enable(phy_ref_clk);
David Anders4415beb2010-10-07 19:36:30 +0000176
Igor Grinbergbc593f52011-05-03 18:22:09 +0300177 /* disable the power to the usb hub prior to init and reset phy+hub */
178 ret = gpio_request_array(panda_ehci_gpios,
179 ARRAY_SIZE(panda_ehci_gpios));
David Anders4415beb2010-10-07 19:36:30 +0000180 if (ret) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300181 pr_err("Unable to initialize EHCI power/reset\n");
182 return;
David Anders4415beb2010-10-07 19:36:30 +0000183 }
David Anders4415beb2010-10-07 19:36:30 +0000184
Igor Grinbergbc593f52011-05-03 18:22:09 +0300185 gpio_export(GPIO_HUB_POWER, 0);
David Anders4415beb2010-10-07 19:36:30 +0000186 gpio_export(GPIO_HUB_NRESET, 0);
David Anders4415beb2010-10-07 19:36:30 +0000187 gpio_set_value(GPIO_HUB_NRESET, 1);
188
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530189 usbhs_init(&usbhs_bdata);
David Anders4415beb2010-10-07 19:36:30 +0000190
191 /* enable power to hub */
192 gpio_set_value(GPIO_HUB_POWER, 1);
David Anders4415beb2010-10-07 19:36:30 +0000193}
194
David Andersb075f582010-08-02 13:18:05 +0300195static struct omap_musb_board_data musb_board_data = {
196 .interface_type = MUSB_INTERFACE_UTMI,
Hema HK09e72002010-12-10 18:11:42 +0530197 .mode = MUSB_OTG,
David Andersb075f582010-08-02 13:18:05 +0300198 .power = 100,
199};
200
201static struct omap2_hsmmc_info mmc[] = {
202 {
203 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000204 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
David Andersb075f582010-08-02 13:18:05 +0300205 .gpio_wp = -EINVAL,
Raghuveer Murthy5b59cc22010-12-21 14:14:34 +0000206 .gpio_cd = -EINVAL,
David Andersb075f582010-08-02 13:18:05 +0300207 },
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500208 {
209 .name = "wl1271",
210 .mmc = 5,
211 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
212 .gpio_wp = -EINVAL,
213 .gpio_cd = -EINVAL,
214 .ocr_mask = MMC_VDD_165_195,
215 .nonremovable = true,
216 },
David Andersb075f582010-08-02 13:18:05 +0300217 {} /* Terminator */
218};
219
Oleg Drokin786b01a2011-06-06 18:57:07 +0000220static struct regulator_consumer_supply omap4_panda_vmmc5_supply[] = {
221 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.4"),
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500222};
223
224static struct regulator_init_data panda_vmmc5 = {
225 .constraints = {
226 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
227 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000228 .num_consumer_supplies = ARRAY_SIZE(omap4_panda_vmmc5_supply),
229 .consumer_supplies = omap4_panda_vmmc5_supply,
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500230};
231
232static struct fixed_voltage_config panda_vwlan = {
233 .supply_name = "vwl1271",
234 .microvolts = 1800000, /* 1.8V */
235 .gpio = GPIO_WIFI_PMENA,
236 .startup_delay = 70000, /* 70msec */
237 .enable_high = 1,
238 .enabled_at_boot = 0,
239 .init_data = &panda_vmmc5,
240};
241
242static struct platform_device omap_vwlan_device = {
243 .name = "reg-fixed-voltage",
244 .id = 1,
245 .dev = {
246 .platform_data = &panda_vwlan,
247 },
248};
249
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500250struct wl12xx_platform_data omap_panda_wlan_data __initdata = {
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500251 /* PANDA ref clock is 38.4 MHz */
252 .board_ref_clock = 2,
253};
254
David Andersb075f582010-08-02 13:18:05 +0300255static int omap4_twl6030_hsmmc_late_init(struct device *dev)
256{
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100257 int irq = 0;
David Andersb075f582010-08-02 13:18:05 +0300258 struct platform_device *pdev = container_of(dev,
259 struct platform_device, dev);
260 struct omap_mmc_platform_data *pdata = dev->platform_data;
261
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500262 if (!pdata) {
263 dev_err(dev, "%s: NULL platform data\n", __func__);
264 return -EINVAL;
265 }
David Andersb075f582010-08-02 13:18:05 +0300266 /* Setting MMC1 Card detect Irq */
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500267 if (pdev->id == 0) {
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100268 irq = twl6030_mmc_card_detect_config();
269 if (irq < 0) {
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500270 dev_err(dev, "%s: Error card detect config(%d)\n",
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100271 __func__, irq);
272 return irq;
273 }
274 pdata->slots[0].card_detect = twl6030_mmc_card_detect;
Menon, Nishanthbf56f0a2010-10-19 09:50:25 -0500275 }
Benoit Cousson9d4a4192012-03-02 16:20:01 +0100276 return 0;
David Andersb075f582010-08-02 13:18:05 +0300277}
278
279static __init void omap4_twl6030_hsmmc_set_late_init(struct device *dev)
280{
David Andersb9b52622010-10-07 19:36:29 +0000281 struct omap_mmc_platform_data *pdata;
282
283 /* dev can be null if CONFIG_MMC_OMAP_HS is not set */
284 if (!dev) {
285 pr_err("Failed omap4_twl6030_hsmmc_set_late_init\n");
286 return;
287 }
288 pdata = dev->platform_data;
David Andersb075f582010-08-02 13:18:05 +0300289
290 pdata->init = omap4_twl6030_hsmmc_late_init;
291}
292
293static int __init omap4_twl6030_hsmmc_init(struct omap2_hsmmc_info *controllers)
294{
295 struct omap2_hsmmc_info *c;
296
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800297 omap_hsmmc_init(controllers);
David Andersb075f582010-08-02 13:18:05 +0300298 for (c = controllers; c->mmc; c++)
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800299 omap4_twl6030_hsmmc_set_late_init(&c->pdev->dev);
David Andersb075f582010-08-02 13:18:05 +0300300
301 return 0;
302}
303
Peter Ujfalusi8eaeb932012-04-03 11:56:51 +0300304static struct twl6040_codec_data twl6040_codec = {
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200305 /* single-step ramp for headset and handsfree */
306 .hs_left_step = 0x0f,
307 .hs_right_step = 0x0f,
308 .hf_left_step = 0x1d,
309 .hf_right_step = 0x1d,
310};
311
Peter Ujfalusi8eaeb932012-04-03 11:56:51 +0300312static struct twl6040_platform_data twl6040_data = {
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200313 .codec = &twl6040_codec,
314 .audpwron_gpio = 127,
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200315 .irq_base = TWL6040_CODEC_IRQ_BASE,
316};
317
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300318/* Panda board uses the common PMIC configuration */
Peter Ujfalusi8eaeb932012-04-03 11:56:51 +0300319static struct twl4030_platform_data omap4_panda_twldata;
David Andersb075f582010-08-02 13:18:05 +0300320
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500321/*
322 * Display monitor features are burnt in their EEPROM as EDID data. The EEPROM
323 * is connected as I2C slave device, and can be accessed at address 0x50
324 */
325static struct i2c_board_info __initdata panda_i2c_eeprom[] = {
326 {
327 I2C_BOARD_INFO("eeprom", 0x50),
328 },
329};
330
David Andersb075f582010-08-02 13:18:05 +0300331static int __init omap4_panda_i2c_init(void)
332{
Peter Ujfalusib22f9542011-06-07 10:26:46 +0300333 omap4_pmic_get_config(&omap4_panda_twldata, TWL_COMMON_PDATA_USB,
334 TWL_COMMON_REGULATOR_VDAC |
335 TWL_COMMON_REGULATOR_VAUX2 |
336 TWL_COMMON_REGULATOR_VAUX3 |
337 TWL_COMMON_REGULATOR_VMMC |
338 TWL_COMMON_REGULATOR_VPP |
339 TWL_COMMON_REGULATOR_VANA |
340 TWL_COMMON_REGULATOR_VCXIO |
341 TWL_COMMON_REGULATOR_VUSB |
342 TWL_COMMON_REGULATOR_CLK32KG);
Peter Ujfalusi8eaeb932012-04-03 11:56:51 +0300343 omap4_pmic_init("twl6030", &omap4_panda_twldata,
344 &twl6040_data, OMAP44XX_IRQ_SYS_2N);
David Andersb075f582010-08-02 13:18:05 +0300345 omap_register_i2c_bus(2, 400, NULL, 0);
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500346 /*
347 * Bus 3 is attached to the DVI port where devices like the pico DLP
348 * projector don't work reliably with 400kHz
349 */
350 omap_register_i2c_bus(3, 100, panda_i2c_eeprom,
351 ARRAY_SIZE(panda_i2c_eeprom));
David Andersb075f582010-08-02 13:18:05 +0300352 omap_register_i2c_bus(4, 400, NULL, 0);
353 return 0;
354}
sricharanfc63de822010-11-08 19:26:11 +0530355
356#ifdef CONFIG_OMAP_MUX
357static struct omap_board_mux board_mux[] __initdata = {
Panduranga Mallireddy66e171a2011-02-15 03:40:32 -0500358 /* WLAN IRQ - GPIO 53 */
359 OMAP4_MUX(GPMC_NCS3, OMAP_MUX_MODE3 | OMAP_PIN_INPUT),
360 /* WLAN POWER ENABLE - GPIO 43 */
361 OMAP4_MUX(GPMC_A19, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
362 /* WLAN SDIO: MMC5 CMD */
363 OMAP4_MUX(SDMMC5_CMD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
364 /* WLAN SDIO: MMC5 CLK */
365 OMAP4_MUX(SDMMC5_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
366 /* WLAN SDIO: MMC5 DAT[0-3] */
367 OMAP4_MUX(SDMMC5_DAT0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
368 OMAP4_MUX(SDMMC5_DAT1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
369 OMAP4_MUX(SDMMC5_DAT2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
370 OMAP4_MUX(SDMMC5_DAT3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500371 /* gpio 0 - TFP410 PD */
372 OMAP4_MUX(KPD_COL1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE3),
373 /* dispc2_data23 */
374 OMAP4_MUX(USBB2_ULPITLL_STP, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
375 /* dispc2_data22 */
376 OMAP4_MUX(USBB2_ULPITLL_DIR, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
377 /* dispc2_data21 */
378 OMAP4_MUX(USBB2_ULPITLL_NXT, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
379 /* dispc2_data20 */
380 OMAP4_MUX(USBB2_ULPITLL_DAT0, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
381 /* dispc2_data19 */
382 OMAP4_MUX(USBB2_ULPITLL_DAT1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
383 /* dispc2_data18 */
384 OMAP4_MUX(USBB2_ULPITLL_DAT2, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
385 /* dispc2_data15 */
386 OMAP4_MUX(USBB2_ULPITLL_DAT3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
387 /* dispc2_data14 */
388 OMAP4_MUX(USBB2_ULPITLL_DAT4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
389 /* dispc2_data13 */
390 OMAP4_MUX(USBB2_ULPITLL_DAT5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
391 /* dispc2_data12 */
392 OMAP4_MUX(USBB2_ULPITLL_DAT6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
393 /* dispc2_data11 */
394 OMAP4_MUX(USBB2_ULPITLL_DAT7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
395 /* dispc2_data10 */
396 OMAP4_MUX(DPM_EMU3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
397 /* dispc2_data9 */
398 OMAP4_MUX(DPM_EMU4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
399 /* dispc2_data16 */
400 OMAP4_MUX(DPM_EMU5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
401 /* dispc2_data17 */
402 OMAP4_MUX(DPM_EMU6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
403 /* dispc2_hsync */
404 OMAP4_MUX(DPM_EMU7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
405 /* dispc2_pclk */
406 OMAP4_MUX(DPM_EMU8, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
407 /* dispc2_vsync */
408 OMAP4_MUX(DPM_EMU9, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
409 /* dispc2_de */
410 OMAP4_MUX(DPM_EMU10, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
411 /* dispc2_data8 */
412 OMAP4_MUX(DPM_EMU11, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
413 /* dispc2_data7 */
414 OMAP4_MUX(DPM_EMU12, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
415 /* dispc2_data6 */
416 OMAP4_MUX(DPM_EMU13, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
417 /* dispc2_data5 */
418 OMAP4_MUX(DPM_EMU14, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
419 /* dispc2_data4 */
420 OMAP4_MUX(DPM_EMU15, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
421 /* dispc2_data3 */
422 OMAP4_MUX(DPM_EMU16, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
423 /* dispc2_data2 */
424 OMAP4_MUX(DPM_EMU17, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
425 /* dispc2_data1 */
426 OMAP4_MUX(DPM_EMU18, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
427 /* dispc2_data0 */
428 OMAP4_MUX(DPM_EMU19, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
sricharanfc63de822010-11-08 19:26:11 +0530429 { .reg_offset = OMAP_MUX_TERMINATOR },
430};
R Sricharan573efc22011-03-11 06:04:46 +0000431
sricharanfc63de822010-11-08 19:26:11 +0530432#else
433#define board_mux NULL
434#endif
435
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500436/* Display DVI */
437#define PANDA_DVI_TFP410_POWER_DOWN_GPIO 0
438
439static int omap4_panda_enable_dvi(struct omap_dss_device *dssdev)
440{
441 gpio_set_value(dssdev->reset_gpio, 1);
442 return 0;
443}
444
445static void omap4_panda_disable_dvi(struct omap_dss_device *dssdev)
446{
447 gpio_set_value(dssdev->reset_gpio, 0);
448}
449
450/* Using generic display panel */
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300451static struct panel_dvi_platform_data omap4_dvi_panel = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500452 .platform_enable = omap4_panda_enable_dvi,
453 .platform_disable = omap4_panda_disable_dvi,
Tomi Valkeinenfcca7192011-08-29 17:48:19 +0300454 .i2c_bus_num = 3,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500455};
456
457struct omap_dss_device omap4_panda_dvi_device = {
458 .type = OMAP_DISPLAY_TYPE_DPI,
459 .name = "dvi",
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300460 .driver_name = "dvi",
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500461 .data = &omap4_dvi_panel,
462 .phy.dpi.data_lines = 24,
463 .reset_gpio = PANDA_DVI_TFP410_POWER_DOWN_GPIO,
464 .channel = OMAP_DSS_CHANNEL_LCD2,
465};
466
467int __init omap4_panda_dvi_init(void)
468{
469 int r;
470
471 /* Requesting TFP410 DVI GPIO and disabling it, at bootup */
472 r = gpio_request_one(omap4_panda_dvi_device.reset_gpio,
473 GPIOF_OUT_INIT_LOW, "DVI PD");
474 if (r)
475 pr_err("Failed to get DVI powerdown GPIO\n");
476
477 return r;
478}
479
Igor Grinbergbc593f52011-05-03 18:22:09 +0300480static struct gpio panda_hdmi_gpios[] = {
Tomi Valkeinen3932a322012-01-17 10:49:38 +0200481 { HDMI_GPIO_CT_CP_HPD, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ct_cp_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300482 { HDMI_GPIO_LS_OE, GPIOF_OUT_INIT_HIGH, "hdmi_gpio_ls_oe" },
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200483 { HDMI_GPIO_HPD, GPIOF_DIR_IN, "hdmi_gpio_hpd" },
Igor Grinbergbc593f52011-05-03 18:22:09 +0300484};
485
K, Mythri P17c84ef2011-03-14 23:57:42 -0500486static int omap4_panda_panel_enable_hdmi(struct omap_dss_device *dssdev)
487{
488 int status;
489
Igor Grinbergbc593f52011-05-03 18:22:09 +0300490 status = gpio_request_array(panda_hdmi_gpios,
491 ARRAY_SIZE(panda_hdmi_gpios));
492 if (status)
493 pr_err("Cannot request HDMI GPIOs\n");
K, Mythri P17c84ef2011-03-14 23:57:42 -0500494
495 return status;
496}
497
498static void omap4_panda_panel_disable_hdmi(struct omap_dss_device *dssdev)
499{
Tomi Valkeinen575753e32012-01-17 11:04:53 +0200500 gpio_free_array(panda_hdmi_gpios, ARRAY_SIZE(panda_hdmi_gpios));
K, Mythri P17c84ef2011-03-14 23:57:42 -0500501}
502
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200503static struct omap_dss_hdmi_data omap4_panda_hdmi_data = {
504 .hpd_gpio = HDMI_GPIO_HPD,
505};
506
K, Mythri P17c84ef2011-03-14 23:57:42 -0500507static struct omap_dss_device omap4_panda_hdmi_device = {
508 .name = "hdmi",
509 .driver_name = "hdmi_panel",
510 .type = OMAP_DISPLAY_TYPE_HDMI,
511 .platform_enable = omap4_panda_panel_enable_hdmi,
512 .platform_disable = omap4_panda_panel_disable_hdmi,
513 .channel = OMAP_DSS_CHANNEL_DIGIT,
Tomi Valkeinenc49d0052012-01-17 11:09:57 +0200514 .data = &omap4_panda_hdmi_data,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500515};
516
517static struct omap_dss_device *omap4_panda_dss_devices[] = {
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500518 &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500519 &omap4_panda_hdmi_device,
520};
521
522static struct omap_dss_board_info omap4_panda_dss_data = {
523 .num_devices = ARRAY_SIZE(omap4_panda_dss_devices),
524 .devices = omap4_panda_dss_devices,
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500525 .default_device = &omap4_panda_dvi_device,
K, Mythri P17c84ef2011-03-14 23:57:42 -0500526};
527
Tony Lindgrend1589f02012-02-20 09:43:30 -0800528void __init omap4_panda_display_init(void)
K, Mythri P17c84ef2011-03-14 23:57:42 -0500529{
Murthy, Raghuveerb295d6e2011-03-14 07:52:25 -0500530 int r;
531
532 r = omap4_panda_dvi_init();
533 if (r)
534 pr_err("error initializing panda DVI\n");
535
K, Mythri P17c84ef2011-03-14 23:57:42 -0500536 omap_display_init(&omap4_panda_dss_data);
Mythri P K9a901682012-01-02 14:02:38 +0530537
538 /*
539 * OMAP4460SDP/Blaze and OMAP4430 ES2.3 SDP/Blaze boards and
540 * later have external pull up on the HDMI I2C lines
541 */
542 if (cpu_is_omap446x() || omap_rev() > OMAP4430_REV_ES2_2)
543 omap_hdmi_init(OMAP_HDMI_SDA_SCL_EXTERNAL_PULLUP);
544 else
545 omap_hdmi_init(0);
Tomi Valkeinen78a1ad82012-01-17 11:02:36 +0200546
547 omap_mux_init_gpio(HDMI_GPIO_LS_OE, OMAP_PIN_OUTPUT);
548 omap_mux_init_gpio(HDMI_GPIO_CT_CP_HPD, OMAP_PIN_OUTPUT);
Tomi Valkeinenaa742742012-01-17 11:05:32 +0200549 omap_mux_init_gpio(HDMI_GPIO_HPD, OMAP_PIN_INPUT_PULLDOWN);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500550}
551
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200552static void omap4_panda_init_rev(void)
553{
Peter Ujfalusi0324e022012-02-17 11:12:08 +0200554 if (cpu_is_omap443x()) {
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200555 /* PandaBoard 4430 */
556 /* ASoC audio configuration */
557 panda_abe_audio_data.card_name = "PandaBoard";
558 panda_abe_audio_data.has_hsmic = 1;
559 } else {
560 /* PandaBoard ES */
561 /* ASoC audio configuration */
562 panda_abe_audio_data.card_name = "PandaBoardES";
563 }
564}
565
David Andersb075f582010-08-02 13:18:05 +0300566static void __init omap4_panda_init(void)
567{
sricharanfc63de822010-11-08 19:26:11 +0530568 int package = OMAP_PACKAGE_CBS;
Russell King70d669d2012-02-07 11:03:23 +0000569 int ret;
sricharanfc63de822010-11-08 19:26:11 +0530570
571 if (omap_rev() == OMAP4430_REV_ES1_0)
572 package = OMAP_PACKAGE_CBL;
Colin Cross21a42c92011-05-04 14:57:57 -0700573 omap4_mux_init(board_mux, NULL, package);
sricharanfc63de822010-11-08 19:26:11 +0530574
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700575 omap_panda_wlan_data.irq = gpio_to_irq(GPIO_WIFI_IRQ);
Russell King70d669d2012-02-07 11:03:23 +0000576 ret = wl12xx_set_platform_data(&omap_panda_wlan_data);
577 if (ret)
578 pr_err("error setting wl12xx data: %d\n", ret);
Panduranga Mallireddyb17e09792011-02-15 03:40:35 -0500579
Peter Ujfalusi3c90c982011-12-08 11:15:45 +0200580 omap4_panda_init_rev();
David Andersb075f582010-08-02 13:18:05 +0300581 omap4_panda_i2c_init();
Ricardo Salveti de Araujo3da434a2010-09-23 18:22:49 -0700582 platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
Panduranga Mallireddyedc84062011-02-15 03:40:34 -0500583 platform_device_register(&omap_vwlan_device);
Govindraj.R7496ba32011-11-07 18:55:05 +0530584 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700585 omap_sdrc_init(NULL, NULL);
David Andersb075f582010-08-02 13:18:05 +0300586 omap4_twl6030_hsmmc_init(mmc);
David Anders4415beb2010-10-07 19:36:30 +0000587 omap4_ehci_init();
Felipe Balbi1ea7f352010-12-01 13:48:54 +0200588 usb_musb_init(&musb_board_data);
K, Mythri P17c84ef2011-03-14 23:57:42 -0500589 omap4_panda_display_init();
David Andersb075f582010-08-02 13:18:05 +0300590}
591
David Andersb075f582010-08-02 13:18:05 +0300592MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
593 /* Maintainer: David Anders - Texas Instruments Inc */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400594 .atag_offset = 0x100,
Raghuveer Murthyd920e522010-12-17 18:15:07 -0800595 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700596 .map_io = omap4_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700597 .init_early = omap4430_init_early,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800598 .init_irq = gic_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100599 .handle_irq = gic_handle_irq,
David Andersb075f582010-08-02 13:18:05 +0300600 .init_machine = omap4_panda_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700601 .timer = &omap4_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000602 .restart = omap_prcm_restart,
David Andersb075f582010-08-02 13:18:05 +0300603MACHINE_END