board-omap4panda.c 20 KB

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