board-omap4panda.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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/mfd/twl6040.h>
  28. #include <linux/regulator/machine.h>
  29. #include <linux/regulator/fixed.h>
  30. #include <linux/ti_wilink_st.h>
  31. #include <linux/usb/musb.h>
  32. #include <linux/wl12xx.h>
  33. #include <linux/platform_data/omap-abe-twl6040.h>
  34. #include <asm/hardware/gic.h>
  35. #include <asm/mach-types.h>
  36. #include <asm/mach/arch.h>
  37. #include <asm/mach/map.h>
  38. #include "common.h"
  39. #include "soc.h"
  40. #include "mmc.h"
  41. #include "hsmmc.h"
  42. #include "control.h"
  43. #include "mux.h"
  44. #include "common-board-devices.h"
  45. #include "dss-common.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. /* wl127x BT, FM, GPS connectivity chip */
  51. static struct ti_st_plat_data wilink_platform_data = {
  52. .nshutdown_gpio = 46,
  53. .dev_name = "/dev/ttyO1",
  54. .flow_cntrl = 1,
  55. .baud_rate = 3000000,
  56. .chip_enable = NULL,
  57. .suspend = NULL,
  58. .resume = NULL,
  59. };
  60. static struct platform_device wl1271_device = {
  61. .name = "kim",
  62. .id = -1,
  63. .dev = {
  64. .platform_data = &wilink_platform_data,
  65. },
  66. };
  67. static struct gpio_led gpio_leds[] = {
  68. {
  69. .name = "pandaboard::status1",
  70. .default_trigger = "heartbeat",
  71. .gpio = 7,
  72. },
  73. {
  74. .name = "pandaboard::status2",
  75. .default_trigger = "mmc0",
  76. .gpio = 8,
  77. },
  78. };
  79. static struct gpio_led_platform_data gpio_led_info = {
  80. .leds = gpio_leds,
  81. .num_leds = ARRAY_SIZE(gpio_leds),
  82. };
  83. static struct platform_device leds_gpio = {
  84. .name = "leds-gpio",
  85. .id = -1,
  86. .dev = {
  87. .platform_data = &gpio_led_info,
  88. },
  89. };
  90. static struct omap_abe_twl6040_data panda_abe_audio_data = {
  91. /* Audio out */
  92. .has_hs = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
  93. /* HandsFree through expansion connector */
  94. .has_hf = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
  95. /* PandaBoard: FM TX, PandaBoardES: can be connected to audio out */
  96. .has_aux = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
  97. /* PandaBoard: FM RX, PandaBoardES: audio in */
  98. .has_afm = ABE_TWL6040_LEFT | ABE_TWL6040_RIGHT,
  99. /* No jack detection. */
  100. .jack_detection = 0,
  101. /* MCLK input is 38.4MHz */
  102. .mclk_freq = 38400000,
  103. };
  104. static struct platform_device panda_abe_audio = {
  105. .name = "omap-abe-twl6040",
  106. .id = -1,
  107. .dev = {
  108. .platform_data = &panda_abe_audio_data,
  109. },
  110. };
  111. static struct platform_device panda_hdmi_audio_codec = {
  112. .name = "hdmi-audio-codec",
  113. .id = -1,
  114. };
  115. static struct platform_device btwilink_device = {
  116. .name = "btwilink",
  117. .id = -1,
  118. };
  119. static struct platform_device *panda_devices[] __initdata = {
  120. &leds_gpio,
  121. &wl1271_device,
  122. &panda_abe_audio,
  123. &panda_hdmi_audio_codec,
  124. &btwilink_device,
  125. };
  126. static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
  127. .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
  128. .port_mode[1] = OMAP_USBHS_PORT_MODE_UNUSED,
  129. .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
  130. .phy_reset = false,
  131. .reset_gpio_port[0] = -EINVAL,
  132. .reset_gpio_port[1] = -EINVAL,
  133. .reset_gpio_port[2] = -EINVAL
  134. };
  135. static 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. static void __init omap4_ehci_init(void)
  140. {
  141. int ret;
  142. struct clk *phy_ref_clk;
  143. /* FREF_CLK3 provides the 19.2 MHz reference clock to the PHY */
  144. phy_ref_clk = clk_get(NULL, "auxclk3_ck");
  145. if (IS_ERR(phy_ref_clk)) {
  146. pr_err("Cannot request auxclk3\n");
  147. return;
  148. }
  149. clk_set_rate(phy_ref_clk, 19200000);
  150. clk_prepare_enable(phy_ref_clk);
  151. /* disable the power to the usb hub prior to init and reset phy+hub */
  152. ret = gpio_request_array(panda_ehci_gpios,
  153. ARRAY_SIZE(panda_ehci_gpios));
  154. if (ret) {
  155. pr_err("Unable to initialize EHCI power/reset\n");
  156. return;
  157. }
  158. gpio_export(GPIO_HUB_POWER, 0);
  159. gpio_export(GPIO_HUB_NRESET, 0);
  160. gpio_set_value(GPIO_HUB_NRESET, 1);
  161. usbhs_init(&usbhs_bdata);
  162. /* enable power to hub */
  163. gpio_set_value(GPIO_HUB_POWER, 1);
  164. }
  165. static struct omap_musb_board_data musb_board_data = {
  166. .interface_type = MUSB_INTERFACE_UTMI,
  167. .mode = MUSB_OTG,
  168. .power = 100,
  169. };
  170. static struct omap2_hsmmc_info mmc[] = {
  171. {
  172. .mmc = 1,
  173. .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
  174. .gpio_wp = -EINVAL,
  175. .gpio_cd = -EINVAL,
  176. },
  177. {
  178. .name = "wl1271",
  179. .mmc = 5,
  180. .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_POWER_OFF_CARD,
  181. .gpio_wp = -EINVAL,
  182. .gpio_cd = -EINVAL,
  183. .ocr_mask = MMC_VDD_165_195,
  184. .nonremovable = true,
  185. },
  186. {} /* Terminator */
  187. };
  188. static struct regulator_consumer_supply omap4_panda_vmmc5_supply[] = {
  189. REGULATOR_SUPPLY("vmmc", "omap_hsmmc.4"),
  190. };
  191. static struct regulator_init_data panda_vmmc5 = {
  192. .constraints = {
  193. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  194. },
  195. .num_consumer_supplies = ARRAY_SIZE(omap4_panda_vmmc5_supply),
  196. .consumer_supplies = omap4_panda_vmmc5_supply,
  197. };
  198. static struct fixed_voltage_config panda_vwlan = {
  199. .supply_name = "vwl1271",
  200. .microvolts = 1800000, /* 1.8V */
  201. .gpio = GPIO_WIFI_PMENA,
  202. .startup_delay = 70000, /* 70msec */
  203. .enable_high = 1,
  204. .enabled_at_boot = 0,
  205. .init_data = &panda_vmmc5,
  206. };
  207. static struct platform_device omap_vwlan_device = {
  208. .name = "reg-fixed-voltage",
  209. .id = 1,
  210. .dev = {
  211. .platform_data = &panda_vwlan,
  212. },
  213. };
  214. static struct wl12xx_platform_data omap_panda_wlan_data __initdata = {
  215. .board_ref_clock = WL12XX_REFCLOCK_38, /* 38.4 MHz */
  216. };
  217. static struct twl6040_codec_data twl6040_codec = {
  218. /* single-step ramp for headset and handsfree */
  219. .hs_left_step = 0x0f,
  220. .hs_right_step = 0x0f,
  221. .hf_left_step = 0x1d,
  222. .hf_right_step = 0x1d,
  223. };
  224. static struct twl6040_platform_data twl6040_data = {
  225. .codec = &twl6040_codec,
  226. .audpwron_gpio = 127,
  227. };
  228. static struct i2c_board_info __initdata panda_i2c_1_boardinfo[] = {
  229. {
  230. I2C_BOARD_INFO("twl6040", 0x4b),
  231. .irq = 119 + OMAP44XX_IRQ_GIC_START,
  232. .platform_data = &twl6040_data,
  233. },
  234. };
  235. /* Panda board uses the common PMIC configuration */
  236. static struct twl4030_platform_data omap4_panda_twldata;
  237. /*
  238. * Display monitor features are burnt in their EEPROM as EDID data. The EEPROM
  239. * is connected as I2C slave device, and can be accessed at address 0x50
  240. */
  241. static struct i2c_board_info __initdata panda_i2c_eeprom[] = {
  242. {
  243. I2C_BOARD_INFO("eeprom", 0x50),
  244. },
  245. };
  246. static int __init omap4_panda_i2c_init(void)
  247. {
  248. omap4_pmic_get_config(&omap4_panda_twldata, TWL_COMMON_PDATA_USB,
  249. TWL_COMMON_REGULATOR_VDAC |
  250. TWL_COMMON_REGULATOR_VAUX2 |
  251. TWL_COMMON_REGULATOR_VAUX3 |
  252. TWL_COMMON_REGULATOR_VMMC |
  253. TWL_COMMON_REGULATOR_VPP |
  254. TWL_COMMON_REGULATOR_VANA |
  255. TWL_COMMON_REGULATOR_VCXIO |
  256. TWL_COMMON_REGULATOR_VUSB |
  257. TWL_COMMON_REGULATOR_CLK32KG |
  258. TWL_COMMON_REGULATOR_V1V8 |
  259. TWL_COMMON_REGULATOR_V2V1);
  260. omap4_pmic_init("twl6030", &omap4_panda_twldata, panda_i2c_1_boardinfo,
  261. ARRAY_SIZE(panda_i2c_1_boardinfo));
  262. omap_register_i2c_bus(2, 400, NULL, 0);
  263. /*
  264. * Bus 3 is attached to the DVI port where devices like the pico DLP
  265. * projector don't work reliably with 400kHz
  266. */
  267. omap_register_i2c_bus(3, 100, panda_i2c_eeprom,
  268. ARRAY_SIZE(panda_i2c_eeprom));
  269. omap_register_i2c_bus(4, 400, NULL, 0);
  270. return 0;
  271. }
  272. #ifdef CONFIG_OMAP_MUX
  273. static struct omap_board_mux board_mux[] __initdata = {
  274. /* WLAN IRQ - GPIO 53 */
  275. OMAP4_MUX(GPMC_NCS3, OMAP_MUX_MODE3 | OMAP_PIN_INPUT),
  276. /* WLAN POWER ENABLE - GPIO 43 */
  277. OMAP4_MUX(GPMC_A19, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
  278. /* WLAN SDIO: MMC5 CMD */
  279. OMAP4_MUX(SDMMC5_CMD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  280. /* WLAN SDIO: MMC5 CLK */
  281. OMAP4_MUX(SDMMC5_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  282. /* WLAN SDIO: MMC5 DAT[0-3] */
  283. OMAP4_MUX(SDMMC5_DAT0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  284. OMAP4_MUX(SDMMC5_DAT1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  285. OMAP4_MUX(SDMMC5_DAT2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  286. OMAP4_MUX(SDMMC5_DAT3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  287. /* gpio 0 - TFP410 PD */
  288. OMAP4_MUX(KPD_COL1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE3),
  289. /* dispc2_data23 */
  290. OMAP4_MUX(USBB2_ULPITLL_STP, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  291. /* dispc2_data22 */
  292. OMAP4_MUX(USBB2_ULPITLL_DIR, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  293. /* dispc2_data21 */
  294. OMAP4_MUX(USBB2_ULPITLL_NXT, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  295. /* dispc2_data20 */
  296. OMAP4_MUX(USBB2_ULPITLL_DAT0, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  297. /* dispc2_data19 */
  298. OMAP4_MUX(USBB2_ULPITLL_DAT1, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  299. /* dispc2_data18 */
  300. OMAP4_MUX(USBB2_ULPITLL_DAT2, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  301. /* dispc2_data15 */
  302. OMAP4_MUX(USBB2_ULPITLL_DAT3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  303. /* dispc2_data14 */
  304. OMAP4_MUX(USBB2_ULPITLL_DAT4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  305. /* dispc2_data13 */
  306. OMAP4_MUX(USBB2_ULPITLL_DAT5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  307. /* dispc2_data12 */
  308. OMAP4_MUX(USBB2_ULPITLL_DAT6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  309. /* dispc2_data11 */
  310. OMAP4_MUX(USBB2_ULPITLL_DAT7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  311. /* dispc2_data10 */
  312. OMAP4_MUX(DPM_EMU3, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  313. /* dispc2_data9 */
  314. OMAP4_MUX(DPM_EMU4, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  315. /* dispc2_data16 */
  316. OMAP4_MUX(DPM_EMU5, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  317. /* dispc2_data17 */
  318. OMAP4_MUX(DPM_EMU6, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  319. /* dispc2_hsync */
  320. OMAP4_MUX(DPM_EMU7, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  321. /* dispc2_pclk */
  322. OMAP4_MUX(DPM_EMU8, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  323. /* dispc2_vsync */
  324. OMAP4_MUX(DPM_EMU9, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  325. /* dispc2_de */
  326. OMAP4_MUX(DPM_EMU10, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  327. /* dispc2_data8 */
  328. OMAP4_MUX(DPM_EMU11, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  329. /* dispc2_data7 */
  330. OMAP4_MUX(DPM_EMU12, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  331. /* dispc2_data6 */
  332. OMAP4_MUX(DPM_EMU13, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  333. /* dispc2_data5 */
  334. OMAP4_MUX(DPM_EMU14, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  335. /* dispc2_data4 */
  336. OMAP4_MUX(DPM_EMU15, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  337. /* dispc2_data3 */
  338. OMAP4_MUX(DPM_EMU16, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  339. /* dispc2_data2 */
  340. OMAP4_MUX(DPM_EMU17, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  341. /* dispc2_data1 */
  342. OMAP4_MUX(DPM_EMU18, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  343. /* dispc2_data0 */
  344. OMAP4_MUX(DPM_EMU19, OMAP_PIN_OUTPUT | OMAP_MUX_MODE5),
  345. /* NIRQ2 for twl6040 */
  346. OMAP4_MUX(SYS_NIRQ2, OMAP_MUX_MODE0 |
  347. OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE),
  348. /* GPIO_127 for twl6040 */
  349. OMAP4_MUX(HDQ_SIO, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT),
  350. /* McPDM */
  351. OMAP4_MUX(ABE_PDM_UL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
  352. OMAP4_MUX(ABE_PDM_DL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
  353. OMAP4_MUX(ABE_PDM_FRAME, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP),
  354. OMAP4_MUX(ABE_PDM_LB_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
  355. OMAP4_MUX(ABE_CLKS, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
  356. /* McBSP1 */
  357. OMAP4_MUX(ABE_MCBSP1_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
  358. OMAP4_MUX(ABE_MCBSP1_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
  359. OMAP4_MUX(ABE_MCBSP1_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT |
  360. OMAP_PULL_ENA),
  361. OMAP4_MUX(ABE_MCBSP1_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
  362. { .reg_offset = OMAP_MUX_TERMINATOR },
  363. };
  364. #else
  365. #define board_mux NULL
  366. #endif
  367. static void omap4_panda_init_rev(void)
  368. {
  369. if (cpu_is_omap443x()) {
  370. /* PandaBoard 4430 */
  371. /* ASoC audio configuration */
  372. panda_abe_audio_data.card_name = "PandaBoard";
  373. panda_abe_audio_data.has_hsmic = 1;
  374. } else {
  375. /* PandaBoard ES */
  376. /* ASoC audio configuration */
  377. panda_abe_audio_data.card_name = "PandaBoardES";
  378. }
  379. }
  380. static void __init omap4_panda_init(void)
  381. {
  382. int package = OMAP_PACKAGE_CBS;
  383. int ret;
  384. if (omap_rev() == OMAP4430_REV_ES1_0)
  385. package = OMAP_PACKAGE_CBL;
  386. omap4_mux_init(board_mux, NULL, package);
  387. omap_panda_wlan_data.irq = gpio_to_irq(GPIO_WIFI_IRQ);
  388. ret = wl12xx_set_platform_data(&omap_panda_wlan_data);
  389. if (ret)
  390. pr_err("error setting wl12xx data: %d\n", ret);
  391. omap4_panda_init_rev();
  392. omap4_panda_i2c_init();
  393. platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices));
  394. platform_device_register(&omap_vwlan_device);
  395. omap_serial_init();
  396. omap_sdrc_init(NULL, NULL);
  397. omap4_twl6030_hsmmc_init(mmc);
  398. omap4_ehci_init();
  399. usb_musb_init(&musb_board_data);
  400. omap4_panda_display_init();
  401. }
  402. MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board")
  403. /* Maintainer: David Anders - Texas Instruments Inc */
  404. .atag_offset = 0x100,
  405. .smp = smp_ops(omap4_smp_ops),
  406. .reserve = omap_reserve,
  407. .map_io = omap4_map_io,
  408. .init_early = omap4430_init_early,
  409. .init_irq = gic_init_irq,
  410. .handle_irq = gic_handle_irq,
  411. .init_machine = omap4_panda_init,
  412. .init_late = omap4430_init_late,
  413. .timer = &omap4_timer,
  414. .restart = omap44xx_restart,
  415. MACHINE_END