omap4-panda-common.dtsi 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /*
  2. * Copyright (C) 2011-2013 Texas Instruments Incorporated - http://www.ti.com/
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #include "elpida_ecb240abacn.dtsi"
  9. / {
  10. model = "TI OMAP4 PandaBoard";
  11. compatible = "ti,omap4-panda", "ti,omap4430", "ti,omap4";
  12. memory {
  13. device_type = "memory";
  14. reg = <0x80000000 0x40000000>; /* 1 GB */
  15. };
  16. leds: leds {
  17. compatible = "gpio-leds";
  18. pinctrl-names = "default";
  19. pinctrl-0 = <
  20. &led_wkgpio_pins
  21. >;
  22. heartbeat {
  23. label = "pandaboard::status1";
  24. gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
  25. linux,default-trigger = "heartbeat";
  26. };
  27. mmc {
  28. label = "pandaboard::status2";
  29. gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>;
  30. linux,default-trigger = "mmc0";
  31. };
  32. };
  33. sound: sound {
  34. compatible = "ti,abe-twl6040";
  35. ti,model = "PandaBoard";
  36. ti,mclk-freq = <38400000>;
  37. ti,mcpdm = <&mcpdm>;
  38. ti,twl6040 = <&twl6040>;
  39. /* Audio routing */
  40. ti,audio-routing =
  41. "Headset Stereophone", "HSOL",
  42. "Headset Stereophone", "HSOR",
  43. "Ext Spk", "HFL",
  44. "Ext Spk", "HFR",
  45. "Line Out", "AUXL",
  46. "Line Out", "AUXR",
  47. "HSMIC", "Headset Mic",
  48. "Headset Mic", "Headset Mic Bias",
  49. "AFML", "Line In",
  50. "AFMR", "Line In";
  51. };
  52. /*
  53. * Temp hack: Need to be replaced with the proper gpio-controlled
  54. * reset driver as soon it will be merged.
  55. * http://thread.gmane.org/gmane.linux.drivers.devicetree/36830
  56. */
  57. /* HS USB Port 1 RESET */
  58. hsusb1_reset: hsusb1_reset_reg {
  59. compatible = "regulator-fixed";
  60. regulator-name = "hsusb1_reset";
  61. regulator-min-microvolt = <3300000>;
  62. regulator-max-microvolt = <3300000>;
  63. gpio = <&gpio2 30 0>; /* gpio_62 */
  64. startup-delay-us = <70000>;
  65. enable-active-high;
  66. };
  67. /* HS USB Port 1 Power */
  68. hsusb1_power: hsusb1_power_reg {
  69. compatible = "regulator-fixed";
  70. regulator-name = "hsusb1_vbus";
  71. regulator-min-microvolt = <3300000>;
  72. regulator-max-microvolt = <3300000>;
  73. gpio = <&gpio1 1 0>; /* gpio_1 */
  74. startup-delay-us = <70000>;
  75. enable-active-high;
  76. /*
  77. * boot-on is required along with always-on as the
  78. * regulator framework doesn't enable the regulator
  79. * if boot-on is not there.
  80. */
  81. regulator-always-on;
  82. regulator-boot-on;
  83. };
  84. /* HS USB Host PHY on PORT 1 */
  85. hsusb1_phy: hsusb1_phy {
  86. compatible = "usb-nop-xceiv";
  87. reset-supply = <&hsusb1_reset>;
  88. vcc-supply = <&hsusb1_power>;
  89. /**
  90. * FIXME:
  91. * put the right clock phandle here when available
  92. * clocks = <&auxclk3>;
  93. * clock-names = "main_clk";
  94. */
  95. clock-frequency = <19200000>;
  96. };
  97. /* regulator for wl12xx on sdio5 */
  98. wl12xx_vmmc: wl12xx_vmmc {
  99. pinctrl-names = "default";
  100. pinctrl-0 = <&wl12xx_gpio>;
  101. compatible = "regulator-fixed";
  102. regulator-name = "vwl1271";
  103. regulator-min-microvolt = <1800000>;
  104. regulator-max-microvolt = <1800000>;
  105. gpio = <&gpio2 11 0>;
  106. startup-delay-us = <70000>;
  107. enable-active-high;
  108. };
  109. };
  110. &omap4_pmx_wkup {
  111. pinctrl-names = "default";
  112. pinctrl-0 = <
  113. &twl6030_wkup_pins
  114. >;
  115. twl6030_wkup_pins: pinmux_twl6030_wkup_pins {
  116. pinctrl-single,pins = <
  117. 0x14 (PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */
  118. >;
  119. };
  120. };
  121. &omap4_pmx_core {
  122. pinctrl-names = "default";
  123. pinctrl-0 = <
  124. &twl6030_pins
  125. &twl6040_pins
  126. &mcpdm_pins
  127. &mcbsp1_pins
  128. &dss_hdmi_pins
  129. &tpd12s015_pins
  130. &hsusbb1_pins
  131. >;
  132. twl6030_pins: pinmux_twl6030_pins {
  133. pinctrl-single,pins = <
  134. 0x15e (WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */
  135. >;
  136. };
  137. twl6040_pins: pinmux_twl6040_pins {
  138. pinctrl-single,pins = <
  139. 0xe0 (PIN_OUTPUT | MUX_MODE3) /* hdq_sio.gpio_127 */
  140. 0x160 (PIN_INPUT | MUX_MODE0) /* sys_nirq2.sys_nirq2 */
  141. >;
  142. };
  143. mcpdm_pins: pinmux_mcpdm_pins {
  144. pinctrl-single,pins = <
  145. 0xc6 (PIN_INPUT_PULLDOWN | MUX_MODE0) /* abe_pdm_ul_data.abe_pdm_ul_data */
  146. 0xc8 (PIN_INPUT_PULLDOWN | MUX_MODE0) /* abe_pdm_dl_data.abe_pdm_dl_data */
  147. 0xca (PIN_INPUT_PULLUP | MUX_MODE0) /* abe_pdm_frame.abe_pdm_frame */
  148. 0xcc (PIN_INPUT_PULLDOWN | MUX_MODE0) /* abe_pdm_lb_clk.abe_pdm_lb_clk */
  149. 0xce (PIN_INPUT_PULLDOWN | MUX_MODE0) /* abe_clks.abe_clks */
  150. >;
  151. };
  152. mcbsp1_pins: pinmux_mcbsp1_pins {
  153. pinctrl-single,pins = <
  154. 0xbe (PIN_INPUT | MUX_MODE0) /* abe_mcbsp1_clkx.abe_mcbsp1_clkx */
  155. 0xc0 (PIN_INPUT_PULLDOWN | MUX_MODE0) /* abe_mcbsp1_dr.abe_mcbsp1_dr */
  156. 0xc2 (PIN_OUTPUT_PULLDOWN | MUX_MODE0) /* abe_mcbsp1_dx.abe_mcbsp1_dx */
  157. 0xc4 (PIN_INPUT | MUX_MODE0) /* abe_mcbsp1_fsx.abe_mcbsp1_fsx */
  158. >;
  159. };
  160. dss_hdmi_pins: pinmux_dss_hdmi_pins {
  161. pinctrl-single,pins = <
  162. 0x5a (PIN_INPUT_PULLUP | MUX_MODE0) /* hdmi_cec.hdmi_cec */
  163. 0x5c (PIN_INPUT_PULLUP | MUX_MODE0) /* hdmi_scl.hdmi_scl */
  164. 0x5e (PIN_INPUT_PULLUP | MUX_MODE0) /* hdmi_sda.hdmi_sda */
  165. >;
  166. };
  167. tpd12s015_pins: pinmux_tpd12s015_pins {
  168. pinctrl-single,pins = <
  169. 0x22 (PIN_OUTPUT | MUX_MODE3) /* gpmc_a17.gpio_41 */
  170. 0x48 (PIN_OUTPUT | MUX_MODE3) /* gpmc_nbe1.gpio_60 */
  171. 0x58 (PIN_INPUT_PULLDOWN | MUX_MODE3) /* hdmi_hpd.gpio_63 */
  172. >;
  173. };
  174. hsusbb1_pins: pinmux_hsusbb1_pins {
  175. pinctrl-single,pins = <
  176. 0x82 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_clk.usbb1_ulpiphy_clk */
  177. 0x84 (PIN_OUTPUT | MUX_MODE4) /* usbb1_ulpitll_stp.usbb1_ulpiphy_stp */
  178. 0x86 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dir.usbb1_ulpiphy_dir */
  179. 0x88 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_nxt.usbb1_ulpiphy_nxt */
  180. 0x8a (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat0.usbb1_ulpiphy_dat0 */
  181. 0x8c (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat1.usbb1_ulpiphy_dat1 */
  182. 0x8e (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat2.usbb1_ulpiphy_dat2 */
  183. 0x90 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat3.usbb1_ulpiphy_dat3 */
  184. 0x92 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat4.usbb1_ulpiphy_dat4 */
  185. 0x94 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat5.usbb1_ulpiphy_dat5 */
  186. 0x96 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat6.usbb1_ulpiphy_dat6 */
  187. 0x98 (PIN_INPUT_PULLDOWN | MUX_MODE4) /* usbb1_ulpitll_dat7.usbb1_ulpiphy_dat7 */
  188. >;
  189. };
  190. i2c1_pins: pinmux_i2c1_pins {
  191. pinctrl-single,pins = <
  192. 0xe2 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */
  193. 0xe4 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_sda */
  194. >;
  195. };
  196. i2c2_pins: pinmux_i2c2_pins {
  197. pinctrl-single,pins = <
  198. 0xe6 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_scl */
  199. 0xe8 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_sda */
  200. >;
  201. };
  202. i2c3_pins: pinmux_i2c3_pins {
  203. pinctrl-single,pins = <
  204. 0xea (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */
  205. 0xec (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */
  206. >;
  207. };
  208. i2c4_pins: pinmux_i2c4_pins {
  209. pinctrl-single,pins = <
  210. 0xee (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c4_scl */
  211. 0xf0 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c4_sda */
  212. >;
  213. };
  214. };
  215. &omap4_pmx_wkup {
  216. led_wkgpio_pins: pinmux_leds_wkpins {
  217. pinctrl-single,pins = <
  218. 0x1a (PIN_OUTPUT | MUX_MODE3) /* gpio_wk7 */
  219. 0x1c (PIN_OUTPUT | MUX_MODE3) /* gpio_wk8 */
  220. >;
  221. };
  222. /*
  223. * wl12xx GPIO outputs for WLAN_EN, BT_EN, FM_EN, BT_WAKEUP
  224. * REVISIT: Are the pull-ups needed for GPIO 48 and 49?
  225. */
  226. wl12xx_gpio: pinmux_wl12xx_gpio {
  227. pinctrl-single,pins = <
  228. 0x26 (PIN_OUTPUT | MUX_MODE3) /* gpmc_a19.gpio_43 */
  229. 0x2c (PIN_OUTPUT | MUX_MODE3) /* gpmc_a22.gpio_46 */
  230. 0x30 (PIN_OUTPUT_PULLUP | MUX_MODE3) /* gpmc_a24.gpio_48 */
  231. 0x32 (PIN_OUTPUT_PULLUP | MUX_MODE3) /* gpmc_a25.gpio_49 */
  232. >;
  233. };
  234. /* wl12xx GPIO inputs and SDIO pins */
  235. wl12xx_pins: pinmux_wl12xx_pins {
  236. pinctrl-single,pins = <
  237. 0x38 (PIN_INPUT | MUX_MODE3) /* gpmc_ncs2.gpio_52 */
  238. 0x3a (PIN_INPUT | MUX_MODE3) /* gpmc_ncs3.gpio_53 */
  239. 0x108 (PIN_OUTPUT | MUX_MODE0) /* sdmmc5_clk.sdmmc5_clk */
  240. 0x10a (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc5_cmd.sdmmc5_cmd */
  241. 0x10c (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc5_dat0.sdmmc5_dat0 */
  242. 0x10e (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc5_dat1.sdmmc5_dat1 */
  243. 0x110 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc5_dat2.sdmmc5_dat2 */
  244. 0x112 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc5_dat3.sdmmc5_dat3 */
  245. >;
  246. };
  247. };
  248. &i2c1 {
  249. pinctrl-names = "default";
  250. pinctrl-0 = <&i2c1_pins>;
  251. clock-frequency = <400000>;
  252. twl: twl@48 {
  253. reg = <0x48>;
  254. /* IRQ# = 7 */
  255. interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; /* IRQ_SYS_1N cascaded to gic */
  256. interrupt-parent = <&gic>;
  257. };
  258. twl6040: twl@4b {
  259. compatible = "ti,twl6040";
  260. reg = <0x4b>;
  261. /* IRQ# = 119 */
  262. interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>; /* IRQ_SYS_2N cascaded to gic */
  263. interrupt-parent = <&gic>;
  264. ti,audpwron-gpio = <&gpio4 31 GPIO_ACTIVE_HIGH>; /* gpio line 127 */
  265. vio-supply = <&v1v8>;
  266. v2v1-supply = <&v2v1>;
  267. enable-active-high;
  268. };
  269. };
  270. #include "twl6030.dtsi"
  271. &i2c2 {
  272. pinctrl-names = "default";
  273. pinctrl-0 = <&i2c2_pins>;
  274. clock-frequency = <400000>;
  275. };
  276. &i2c3 {
  277. pinctrl-names = "default";
  278. pinctrl-0 = <&i2c3_pins>;
  279. clock-frequency = <100000>;
  280. /*
  281. * Display monitor features are burnt in their EEPROM as EDID data.
  282. * The EEPROM is connected as I2C slave device.
  283. */
  284. eeprom@50 {
  285. compatible = "ti,eeprom";
  286. reg = <0x50>;
  287. };
  288. };
  289. &i2c4 {
  290. pinctrl-names = "default";
  291. pinctrl-0 = <&i2c4_pins>;
  292. clock-frequency = <400000>;
  293. };
  294. &mmc1 {
  295. vmmc-supply = <&vmmc>;
  296. bus-width = <8>;
  297. };
  298. &mmc2 {
  299. status = "disabled";
  300. };
  301. &mmc3 {
  302. status = "disabled";
  303. };
  304. &mmc4 {
  305. status = "disabled";
  306. };
  307. &mmc5 {
  308. pinctrl-names = "default";
  309. pinctrl-0 = <&wl12xx_pins>;
  310. vmmc-supply = <&wl12xx_vmmc>;
  311. non-removable;
  312. bus-width = <4>;
  313. cap-power-off-card;
  314. };
  315. &emif1 {
  316. cs1-used;
  317. device-handle = <&elpida_ECB240ABACN>;
  318. };
  319. &emif2 {
  320. cs1-used;
  321. device-handle = <&elpida_ECB240ABACN>;
  322. };
  323. &mcbsp2 {
  324. status = "disabled";
  325. };
  326. &mcbsp3 {
  327. status = "disabled";
  328. };
  329. &dmic {
  330. status = "disabled";
  331. };
  332. &twl_usb_comparator {
  333. usb-supply = <&vusb>;
  334. };
  335. &usb_otg_hs {
  336. interface-type = <1>;
  337. mode = <3>;
  338. power = <50>;
  339. };
  340. &usbhshost {
  341. port1-mode = "ehci-phy";
  342. };
  343. &usbhsehci {
  344. phys = <&hsusb1_phy>;
  345. };