rk3288-veyron.dtsi 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. /*
  2. * Google Veyron (and derivatives) board device tree source
  3. *
  4. * Copyright 2015 Google, Inc
  5. *
  6. * This file is dual-licensed: you can use it either under the terms
  7. * of the GPL or the X11 license, at your option. Note that this dual
  8. * licensing only applies to this file, and not this project as a
  9. * whole.
  10. *
  11. * a) This file is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of the
  14. * License, or (at your option) any later version.
  15. *
  16. * This file is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * Or, alternatively,
  22. *
  23. * b) Permission is hereby granted, free of charge, to any person
  24. * obtaining a copy of this software and associated documentation
  25. * files (the "Software"), to deal in the Software without
  26. * restriction, including without limitation the rights to use,
  27. * copy, modify, merge, publish, distribute, sublicense, and/or
  28. * sell copies of the Software, and to permit persons to whom the
  29. * Software is furnished to do so, subject to the following
  30. * conditions:
  31. *
  32. * The above copyright notice and this permission notice shall be
  33. * included in all copies or substantial portions of the Software.
  34. *
  35. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  36. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  37. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  38. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  39. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  40. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  41. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  42. * OTHER DEALINGS IN THE SOFTWARE.
  43. */
  44. #include <dt-bindings/clock/rockchip,rk808.h>
  45. #include <dt-bindings/input/input.h>
  46. #include "rk3288.dtsi"
  47. / {
  48. memory {
  49. device_type = "memory";
  50. reg = <0x0 0x80000000>;
  51. };
  52. gpio_keys: gpio-keys {
  53. compatible = "gpio-keys";
  54. #address-cells = <1>;
  55. #size-cells = <0>;
  56. pinctrl-names = "default";
  57. pinctrl-0 = <&pwr_key_l>;
  58. power {
  59. label = "Power";
  60. gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
  61. linux,code = <KEY_POWER>;
  62. debounce-interval = <100>;
  63. wakeup-source;
  64. };
  65. };
  66. gpio-restart {
  67. compatible = "gpio-restart";
  68. gpios = <&gpio0 13 GPIO_ACTIVE_HIGH>;
  69. pinctrl-names = "default";
  70. pinctrl-0 = <&ap_warm_reset_h>;
  71. priority = <200>;
  72. };
  73. emmc_pwrseq: emmc-pwrseq {
  74. compatible = "mmc-pwrseq-emmc";
  75. pinctrl-0 = <&emmc_reset>;
  76. pinctrl-names = "default";
  77. reset-gpios = <&gpio2 9 GPIO_ACTIVE_HIGH>;
  78. };
  79. sdio_pwrseq: sdio-pwrseq {
  80. compatible = "mmc-pwrseq-simple";
  81. clocks = <&rk808 RK808_CLKOUT1>;
  82. clock-names = "ext_clock";
  83. pinctrl-names = "default";
  84. pinctrl-0 = <&bt_enable_l>, <&wifi_enable_h>;
  85. /*
  86. * On the module itself this is one of these (depending
  87. * on the actual card populated):
  88. * - SDIO_RESET_L_WL_REG_ON
  89. * - PDN (power down when low)
  90. */
  91. reset-gpios = <&gpio4 28 GPIO_ACTIVE_LOW>;
  92. };
  93. vcc_5v: vcc-5v {
  94. compatible = "regulator-fixed";
  95. regulator-name = "vcc_5v";
  96. regulator-always-on;
  97. regulator-boot-on;
  98. regulator-min-microvolt = <5000000>;
  99. regulator-max-microvolt = <5000000>;
  100. };
  101. vcc33_sys: vcc33-sys {
  102. compatible = "regulator-fixed";
  103. regulator-name = "vcc33_sys";
  104. regulator-always-on;
  105. regulator-boot-on;
  106. regulator-min-microvolt = <3300000>;
  107. regulator-max-microvolt = <3300000>;
  108. };
  109. vcc50_hdmi: vcc50-hdmi {
  110. compatible = "regulator-fixed";
  111. regulator-name = "vcc50_hdmi";
  112. regulator-always-on;
  113. regulator-boot-on;
  114. vin-supply = <&vcc_5v>;
  115. };
  116. };
  117. &cpu0 {
  118. cpu0-supply = <&vdd_cpu>;
  119. operating-points = <
  120. /* KHz uV */
  121. 1800000 1400000
  122. 1704000 1350000
  123. 1608000 1300000
  124. 1512000 1250000
  125. 1416000 1200000
  126. 1200000 1100000
  127. 1008000 1050000
  128. 816000 1000000
  129. 696000 950000
  130. 600000 900000
  131. 408000 900000
  132. 216000 900000
  133. 126000 900000
  134. >;
  135. };
  136. &emmc {
  137. status = "okay";
  138. bus-width = <8>;
  139. cap-mmc-highspeed;
  140. rockchip,default-sample-phase = <158>;
  141. disable-wp;
  142. mmc-hs200-1_8v;
  143. mmc-pwrseq = <&emmc_pwrseq>;
  144. non-removable;
  145. num-slots = <1>;
  146. pinctrl-names = "default";
  147. pinctrl-0 = <&emmc_clk &emmc_cmd &emmc_bus8>;
  148. };
  149. &hdmi {
  150. ddc-i2c-bus = <&i2c5>;
  151. status = "okay";
  152. };
  153. &i2c0 {
  154. status = "okay";
  155. clock-frequency = <400000>;
  156. i2c-scl-falling-time-ns = <50>; /* 2.5ns measured */
  157. i2c-scl-rising-time-ns = <100>; /* 45ns measured */
  158. rk808: pmic@1b {
  159. compatible = "rockchip,rk808";
  160. reg = <0x1b>;
  161. clock-output-names = "xin32k", "wifibt_32kin";
  162. interrupt-parent = <&gpio0>;
  163. interrupts = <4 IRQ_TYPE_LEVEL_LOW>;
  164. pinctrl-names = "default";
  165. pinctrl-0 = <&pmic_int_l>;
  166. rockchip,system-power-controller;
  167. wakeup-source;
  168. #clock-cells = <1>;
  169. vcc1-supply = <&vcc33_sys>;
  170. vcc2-supply = <&vcc33_sys>;
  171. vcc3-supply = <&vcc33_sys>;
  172. vcc4-supply = <&vcc33_sys>;
  173. vcc6-supply = <&vcc_5v>;
  174. vcc7-supply = <&vcc33_sys>;
  175. vcc8-supply = <&vcc33_sys>;
  176. vcc12-supply = <&vcc_18>;
  177. vddio-supply = <&vcc33_io>;
  178. regulators {
  179. vdd_cpu: DCDC_REG1 {
  180. regulator-name = "vdd_arm";
  181. regulator-always-on;
  182. regulator-boot-on;
  183. regulator-min-microvolt = <750000>;
  184. regulator-max-microvolt = <1450000>;
  185. regulator-ramp-delay = <6001>;
  186. regulator-state-mem {
  187. regulator-off-in-suspend;
  188. };
  189. };
  190. vdd_gpu: DCDC_REG2 {
  191. regulator-name = "vdd_gpu";
  192. regulator-always-on;
  193. regulator-boot-on;
  194. regulator-min-microvolt = <800000>;
  195. regulator-max-microvolt = <1250000>;
  196. regulator-ramp-delay = <6001>;
  197. regulator-state-mem {
  198. regulator-on-in-suspend;
  199. regulator-suspend-microvolt = <1000000>;
  200. };
  201. };
  202. vcc135_ddr: DCDC_REG3 {
  203. regulator-name = "vcc135_ddr";
  204. regulator-always-on;
  205. regulator-boot-on;
  206. regulator-state-mem {
  207. regulator-on-in-suspend;
  208. };
  209. };
  210. /*
  211. * vcc_18 has several aliases. (vcc18_flashio and
  212. * vcc18_wl). We'll add those aliases here just to
  213. * make it easier to follow the schematic. The signals
  214. * are actually hooked together and only separated for
  215. * power measurement purposes).
  216. */
  217. vcc18_wl: vcc18_flashio: vcc_18: DCDC_REG4 {
  218. regulator-name = "vcc_18";
  219. regulator-always-on;
  220. regulator-boot-on;
  221. regulator-min-microvolt = <1800000>;
  222. regulator-max-microvolt = <1800000>;
  223. regulator-state-mem {
  224. regulator-on-in-suspend;
  225. regulator-suspend-microvolt = <1800000>;
  226. };
  227. };
  228. /*
  229. * Note that both vcc33_io and vcc33_pmuio are always
  230. * powered together. To simplify the logic in the dts
  231. * we just refer to vcc33_io every time something is
  232. * powered from vcc33_pmuio. In fact, on later boards
  233. * (such as danger) they're the same net.
  234. */
  235. vcc33_io: LDO_REG1 {
  236. regulator-name = "vcc33_io";
  237. regulator-always-on;
  238. regulator-boot-on;
  239. regulator-min-microvolt = <3300000>;
  240. regulator-max-microvolt = <3300000>;
  241. regulator-state-mem {
  242. regulator-on-in-suspend;
  243. regulator-suspend-microvolt = <3300000>;
  244. };
  245. };
  246. vdd_10: LDO_REG3 {
  247. regulator-name = "vdd_10";
  248. regulator-always-on;
  249. regulator-boot-on;
  250. regulator-min-microvolt = <1000000>;
  251. regulator-max-microvolt = <1000000>;
  252. regulator-state-mem {
  253. regulator-on-in-suspend;
  254. regulator-suspend-microvolt = <1000000>;
  255. };
  256. };
  257. vdd10_lcd_pwren_h: LDO_REG7 {
  258. regulator-name = "vdd10_lcd_pwren_h";
  259. regulator-always-on;
  260. regulator-boot-on;
  261. regulator-min-microvolt = <2500000>;
  262. regulator-max-microvolt = <2500000>;
  263. regulator-state-mem {
  264. regulator-off-in-suspend;
  265. };
  266. };
  267. vcc33_lcd: SWITCH_REG1 {
  268. regulator-name = "vcc33_lcd";
  269. regulator-always-on;
  270. regulator-boot-on;
  271. regulator-state-mem {
  272. regulator-off-in-suspend;
  273. };
  274. };
  275. };
  276. };
  277. };
  278. &i2c1 {
  279. status = "okay";
  280. clock-frequency = <400000>;
  281. i2c-scl-falling-time-ns = <50>; /* 2.5ns measured */
  282. i2c-scl-rising-time-ns = <100>; /* 40ns measured */
  283. tpm: tpm@20 {
  284. compatible = "infineon,slb9645tt";
  285. reg = <0x20>;
  286. powered-while-suspended;
  287. };
  288. };
  289. &i2c2 {
  290. status = "okay";
  291. /* 100kHz since 4.7k resistors don't rise fast enough */
  292. clock-frequency = <100000>;
  293. i2c-scl-falling-time-ns = <50>; /* 10ns measured */
  294. i2c-scl-rising-time-ns = <800>; /* 600ns measured */
  295. };
  296. &i2c4 {
  297. status = "okay";
  298. clock-frequency = <400000>;
  299. i2c-scl-falling-time-ns = <50>; /* 11ns measured */
  300. i2c-scl-rising-time-ns = <300>; /* 225ns measured */
  301. };
  302. &i2c5 {
  303. status = "okay";
  304. clock-frequency = <100000>;
  305. i2c-scl-falling-time-ns = <300>;
  306. i2c-scl-rising-time-ns = <1000>;
  307. };
  308. &io_domains {
  309. status = "okay";
  310. bb-supply = <&vcc33_io>;
  311. dvp-supply = <&vcc_18>;
  312. flash0-supply = <&vcc18_flashio>;
  313. gpio1830-supply = <&vcc33_io>;
  314. gpio30-supply = <&vcc33_io>;
  315. lcdc-supply = <&vcc33_lcd>;
  316. wifi-supply = <&vcc18_wl>;
  317. };
  318. &pwm1 {
  319. status = "okay";
  320. };
  321. &sdio0 {
  322. status = "okay";
  323. bus-width = <4>;
  324. cap-sd-highspeed;
  325. cap-sdio-irq;
  326. keep-power-in-suspend;
  327. mmc-pwrseq = <&sdio_pwrseq>;
  328. non-removable;
  329. num-slots = <1>;
  330. pinctrl-names = "default";
  331. pinctrl-0 = <&sdio0_clk &sdio0_cmd &sdio0_bus4>;
  332. sd-uhs-sdr12;
  333. sd-uhs-sdr25;
  334. sd-uhs-sdr50;
  335. sd-uhs-sdr104;
  336. vmmc-supply = <&vcc33_sys>;
  337. vqmmc-supply = <&vcc18_wl>;
  338. };
  339. &spi2 {
  340. status = "okay";
  341. rx-sample-delay-ns = <12>;
  342. flash@0 {
  343. compatible = "jedec,spi-nor";
  344. spi-max-frequency = <50000000>;
  345. reg = <0>;
  346. };
  347. };
  348. &tsadc {
  349. status = "okay";
  350. rockchip,hw-tshut-mode = <1>; /* tshut mode 0:CRU 1:GPIO */
  351. rockchip,hw-tshut-polarity = <1>; /* tshut polarity 0:LOW 1:HIGH */
  352. };
  353. &uart0 {
  354. status = "okay";
  355. /* We need to go faster than 24MHz, so adjust clock parents / rates */
  356. assigned-clocks = <&cru SCLK_UART0>;
  357. assigned-clock-rates = <48000000>;
  358. /* Pins don't include flow control by default; add that in */
  359. pinctrl-names = "default";
  360. pinctrl-0 = <&uart0_xfer &uart0_cts &uart0_rts>;
  361. };
  362. &uart1 {
  363. status = "okay";
  364. };
  365. &uart2 {
  366. status = "okay";
  367. };
  368. &usbphy {
  369. status = "okay";
  370. };
  371. &usb_host0_ehci {
  372. status = "okay";
  373. needs-reset-on-resume;
  374. };
  375. &usb_host1 {
  376. status = "okay";
  377. };
  378. &usb_otg {
  379. status = "okay";
  380. assigned-clocks = <&cru SCLK_USBPHY480M_SRC>;
  381. assigned-clock-parents = <&usbphy0>;
  382. dr_mode = "host";
  383. };
  384. &vopb {
  385. status = "okay";
  386. };
  387. &vopb_mmu {
  388. status = "okay";
  389. };
  390. &wdt {
  391. status = "okay";
  392. };
  393. &pinctrl {
  394. pinctrl-names = "default", "sleep";
  395. pinctrl-0 = <
  396. /* Common for sleep and wake, but no owners */
  397. &global_pwroff
  398. >;
  399. pinctrl-1 = <
  400. /* Common for sleep and wake, but no owners */
  401. &global_pwroff
  402. >;
  403. pcfg_pull_none_drv_8ma: pcfg-pull-none-drv-8ma {
  404. bias-disable;
  405. drive-strength = <8>;
  406. };
  407. pcfg_pull_up_drv_8ma: pcfg-pull-up-drv-8ma {
  408. bias-pull-up;
  409. drive-strength = <8>;
  410. };
  411. pcfg_output_high: pcfg-output-high {
  412. output-high;
  413. };
  414. pcfg_output_low: pcfg-output-low {
  415. output-low;
  416. };
  417. buttons {
  418. pwr_key_l: pwr-key-l {
  419. rockchip,pins = <0 5 RK_FUNC_GPIO &pcfg_pull_up>;
  420. };
  421. };
  422. emmc {
  423. emmc_reset: emmc-reset {
  424. rockchip,pins = <2 9 RK_FUNC_GPIO &pcfg_pull_none>;
  425. };
  426. /*
  427. * We run eMMC at max speed; bump up drive strength.
  428. * We also have external pulls, so disable the internal ones.
  429. */
  430. emmc_clk: emmc-clk {
  431. rockchip,pins = <3 18 RK_FUNC_2 &pcfg_pull_none_drv_8ma>;
  432. };
  433. emmc_cmd: emmc-cmd {
  434. rockchip,pins = <3 16 RK_FUNC_2 &pcfg_pull_none_drv_8ma>;
  435. };
  436. emmc_bus8: emmc-bus8 {
  437. rockchip,pins = <3 0 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  438. <3 1 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  439. <3 2 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  440. <3 3 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  441. <3 4 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  442. <3 5 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  443. <3 6 RK_FUNC_2 &pcfg_pull_none_drv_8ma>,
  444. <3 7 RK_FUNC_2 &pcfg_pull_none_drv_8ma>;
  445. };
  446. };
  447. pmic {
  448. pmic_int_l: pmic-int-l {
  449. rockchip,pins = <RK_GPIO0 4 RK_FUNC_GPIO &pcfg_pull_up>;
  450. };
  451. };
  452. reboot {
  453. ap_warm_reset_h: ap-warm-reset-h {
  454. rockchip,pins = <RK_GPIO0 13 RK_FUNC_GPIO &pcfg_pull_none>;
  455. };
  456. };
  457. recovery-switch {
  458. rec_mode_l: rec-mode-l {
  459. rockchip,pins = <0 9 RK_FUNC_GPIO &pcfg_pull_up>;
  460. };
  461. };
  462. sdio0 {
  463. wifi_enable_h: wifienable-h {
  464. rockchip,pins = <4 28 RK_FUNC_GPIO &pcfg_pull_none>;
  465. };
  466. /* NOTE: mislabelled on schematic; should be bt_enable_h */
  467. bt_enable_l: bt-enable-l {
  468. rockchip,pins = <4 29 RK_FUNC_GPIO &pcfg_pull_none>;
  469. };
  470. /*
  471. * We run sdio0 at max speed; bump up drive strength.
  472. * We also have external pulls, so disable the internal ones.
  473. */
  474. sdio0_bus4: sdio0-bus4 {
  475. rockchip,pins = <4 20 RK_FUNC_1 &pcfg_pull_none_drv_8ma>,
  476. <4 21 RK_FUNC_1 &pcfg_pull_none_drv_8ma>,
  477. <4 22 RK_FUNC_1 &pcfg_pull_none_drv_8ma>,
  478. <4 23 RK_FUNC_1 &pcfg_pull_none_drv_8ma>;
  479. };
  480. sdio0_cmd: sdio0-cmd {
  481. rockchip,pins = <4 24 RK_FUNC_1 &pcfg_pull_none_drv_8ma>;
  482. };
  483. sdio0_clk: sdio0-clk {
  484. rockchip,pins = <4 25 RK_FUNC_1 &pcfg_pull_none_drv_8ma>;
  485. };
  486. };
  487. tpm {
  488. tpm_int_h: tpm-int-h {
  489. rockchip,pins = <7 4 RK_FUNC_GPIO &pcfg_pull_none>;
  490. };
  491. };
  492. write-protect {
  493. fw_wp_ap: fw-wp-ap {
  494. rockchip,pins = <7 6 RK_FUNC_GPIO &pcfg_pull_none>;
  495. };
  496. };
  497. };