am335x-evmsk.dts 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /*
  2. * Copyright (C) 2012 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. /*
  9. * AM335x Starter Kit
  10. * http://www.ti.com/tool/tmdssk3358
  11. */
  12. /dts-v1/;
  13. /include/ "am33xx.dtsi"
  14. / {
  15. model = "TI AM335x EVM-SK";
  16. compatible = "ti,am335x-evmsk", "ti,am33xx";
  17. cpus {
  18. cpu@0 {
  19. cpu0-supply = <&vdd1_reg>;
  20. };
  21. };
  22. memory {
  23. device_type = "memory";
  24. reg = <0x80000000 0x10000000>; /* 256 MB */
  25. };
  26. am33xx_pinmux: pinmux@44e10800 {
  27. pinctrl-names = "default";
  28. pinctrl-0 = <&gpio_keys_s0>;
  29. user_leds_s0: user_leds_s0 {
  30. pinctrl-single,pins = <
  31. 0x10 0x7 /* gpmc_ad4.gpio1_4, OUTPUT | MODE7 */
  32. 0x14 0x7 /* gpmc_ad5.gpio1_5, OUTPUT | MODE7 */
  33. 0x18 0x7 /* gpmc_ad6.gpio1_6, OUTPUT | MODE7 */
  34. 0x1c 0x7 /* gpmc_ad7.gpio1_7, OUTPUT | MODE7 */
  35. >;
  36. };
  37. gpio_keys_s0: gpio_keys_s0 {
  38. pinctrl-single,pins = <
  39. 0x94 0x27 /* gpmc_oen_ren.gpio2_3, INPUT | MODE7 */
  40. 0x90 0x27 /* gpmc_advn_ale.gpio2_2, INPUT | MODE7 */
  41. 0x70 0x27 /* gpmc_wait0.gpio0_30, INPUT | MODE7 */
  42. 0x9c 0x27 /* gpmc_ben0_cle.gpio2_5, INPUT | MODE7 */
  43. >;
  44. };
  45. i2c0_pins: pinmux_i2c0_pins {
  46. pinctrl-single,pins = <
  47. 0x188 0x30 /* i2c0_sda.i2c0_sda PULLUP | INPUTENABLE | MODE0 */
  48. 0x18c 0x30 /* i2c0_scl.i2c0_scl PULLUP | INPUTENABLE | MODE0 */
  49. >;
  50. };
  51. uart0_pins: pinmux_uart0_pins {
  52. pinctrl-single,pins = <
  53. 0x170 0x30 /* uart0_rxd.uart0_rxd PULLUP | INPUTENABLE | MODE0 */
  54. 0x174 0x00 /* uart0_txd.uart0_txd PULLDOWN | MODE0 */
  55. >;
  56. };
  57. };
  58. ocp {
  59. uart0: serial@44e09000 {
  60. pinctrl-names = "default";
  61. pinctrl-0 = <&uart0_pins>;
  62. status = "okay";
  63. };
  64. i2c0: i2c@44e0b000 {
  65. pinctrl-names = "default";
  66. pinctrl-0 = <&i2c0_pins>;
  67. status = "okay";
  68. clock-frequency = <400000>;
  69. tps: tps@2d {
  70. reg = <0x2d>;
  71. };
  72. lis331dlh: lis331dlh@18 {
  73. compatible = "st,lis331dlh", "st,lis3lv02d";
  74. reg = <0x18>;
  75. Vdd-supply = <&lis3_reg>;
  76. Vdd_IO-supply = <&lis3_reg>;
  77. st,click-single-x;
  78. st,click-single-y;
  79. st,click-single-z;
  80. st,click-thresh-x = <10>;
  81. st,click-thresh-y = <10>;
  82. st,click-thresh-z = <10>;
  83. st,irq1-click;
  84. st,irq2-click;
  85. st,wakeup-x-lo;
  86. st,wakeup-x-hi;
  87. st,wakeup-y-lo;
  88. st,wakeup-y-hi;
  89. st,wakeup-z-lo;
  90. st,wakeup-z-hi;
  91. st,min-limit-x = <120>;
  92. st,min-limit-y = <120>;
  93. st,min-limit-z = <140>;
  94. st,max-limit-x = <550>;
  95. st,max-limit-y = <550>;
  96. st,max-limit-z = <750>;
  97. };
  98. };
  99. };
  100. vbat: fixedregulator@0 {
  101. compatible = "regulator-fixed";
  102. regulator-name = "vbat";
  103. regulator-min-microvolt = <5000000>;
  104. regulator-max-microvolt = <5000000>;
  105. regulator-boot-on;
  106. };
  107. lis3_reg: fixedregulator@1 {
  108. compatible = "regulator-fixed";
  109. regulator-name = "lis3_reg";
  110. regulator-boot-on;
  111. };
  112. leds {
  113. pinctrl-names = "default";
  114. pinctrl-0 = <&user_leds_s0>;
  115. compatible = "gpio-leds";
  116. led@1 {
  117. label = "evmsk:green:usr0";
  118. gpios = <&gpio1 4 0>;
  119. default-state = "off";
  120. };
  121. led@2 {
  122. label = "evmsk:green:usr1";
  123. gpios = <&gpio1 5 0>;
  124. default-state = "off";
  125. };
  126. led@3 {
  127. label = "evmsk:green:mmc0";
  128. gpios = <&gpio1 6 0>;
  129. linux,default-trigger = "mmc0";
  130. default-state = "off";
  131. };
  132. led@4 {
  133. label = "evmsk:green:heartbeat";
  134. gpios = <&gpio1 7 0>;
  135. linux,default-trigger = "heartbeat";
  136. default-state = "off";
  137. };
  138. };
  139. gpio_buttons: gpio_buttons@0 {
  140. compatible = "gpio-keys";
  141. #address-cells = <1>;
  142. #size-cells = <0>;
  143. switch@1 {
  144. label = "button0";
  145. linux,code = <0x100>;
  146. gpios = <&gpio2 3 0>;
  147. };
  148. switch@2 {
  149. label = "button1";
  150. linux,code = <0x101>;
  151. gpios = <&gpio2 2 0>;
  152. };
  153. switch@3 {
  154. label = "button2";
  155. linux,code = <0x102>;
  156. gpios = <&gpio0 30 0>;
  157. gpio-key,wakeup;
  158. };
  159. switch@4 {
  160. label = "button3";
  161. linux,code = <0x103>;
  162. gpios = <&gpio2 5 0>;
  163. };
  164. };
  165. };
  166. /include/ "tps65910.dtsi"
  167. &tps {
  168. vcc1-supply = <&vbat>;
  169. vcc2-supply = <&vbat>;
  170. vcc3-supply = <&vbat>;
  171. vcc4-supply = <&vbat>;
  172. vcc5-supply = <&vbat>;
  173. vcc6-supply = <&vbat>;
  174. vcc7-supply = <&vbat>;
  175. vccio-supply = <&vbat>;
  176. regulators {
  177. vrtc_reg: regulator@0 {
  178. regulator-always-on;
  179. };
  180. vio_reg: regulator@1 {
  181. regulator-always-on;
  182. };
  183. vdd1_reg: regulator@2 {
  184. /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
  185. regulator-name = "vdd_mpu";
  186. regulator-min-microvolt = <912500>;
  187. regulator-max-microvolt = <1312500>;
  188. regulator-boot-on;
  189. regulator-always-on;
  190. };
  191. vdd2_reg: regulator@3 {
  192. /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
  193. regulator-name = "vdd_core";
  194. regulator-min-microvolt = <912500>;
  195. regulator-max-microvolt = <1150000>;
  196. regulator-boot-on;
  197. regulator-always-on;
  198. };
  199. vdd3_reg: regulator@4 {
  200. regulator-always-on;
  201. };
  202. vdig1_reg: regulator@5 {
  203. regulator-always-on;
  204. };
  205. vdig2_reg: regulator@6 {
  206. regulator-always-on;
  207. };
  208. vpll_reg: regulator@7 {
  209. regulator-always-on;
  210. };
  211. vdac_reg: regulator@8 {
  212. regulator-always-on;
  213. };
  214. vaux1_reg: regulator@9 {
  215. regulator-always-on;
  216. };
  217. vaux2_reg: regulator@10 {
  218. regulator-always-on;
  219. };
  220. vaux33_reg: regulator@11 {
  221. regulator-always-on;
  222. };
  223. vmmc_reg: regulator@12 {
  224. regulator-always-on;
  225. };
  226. };
  227. };