board-omap4panda.c 19 KB

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