omap5.dtsi 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  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. * Based on "omap4.dtsi"
  8. */
  9. #include <dt-bindings/gpio/gpio.h>
  10. #include <dt-bindings/interrupt-controller/arm-gic.h>
  11. #include <dt-bindings/pinctrl/omap.h>
  12. #include "skeleton.dtsi"
  13. / {
  14. #address-cells = <1>;
  15. #size-cells = <1>;
  16. compatible = "ti,omap5";
  17. interrupt-parent = <&gic>;
  18. aliases {
  19. i2c0 = &i2c1;
  20. i2c1 = &i2c2;
  21. i2c2 = &i2c3;
  22. i2c3 = &i2c4;
  23. i2c4 = &i2c5;
  24. serial0 = &uart1;
  25. serial1 = &uart2;
  26. serial2 = &uart3;
  27. serial3 = &uart4;
  28. serial4 = &uart5;
  29. serial5 = &uart6;
  30. };
  31. cpus {
  32. #address-cells = <1>;
  33. #size-cells = <0>;
  34. cpu0: cpu@0 {
  35. device_type = "cpu";
  36. compatible = "arm,cortex-a15";
  37. reg = <0x0>;
  38. operating-points = <
  39. /* kHz uV */
  40. 500000 880000
  41. 1000000 1060000
  42. 1500000 1250000
  43. >;
  44. };
  45. cpu@1 {
  46. device_type = "cpu";
  47. compatible = "arm,cortex-a15";
  48. reg = <0x1>;
  49. };
  50. };
  51. timer {
  52. compatible = "arm,armv7-timer";
  53. /* PPI secure/nonsecure IRQ */
  54. interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
  55. <GIC_PPI 14 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
  56. <GIC_PPI 11 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>,
  57. <GIC_PPI 10 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_LOW)>;
  58. };
  59. gic: interrupt-controller@48211000 {
  60. compatible = "arm,cortex-a15-gic";
  61. interrupt-controller;
  62. #interrupt-cells = <3>;
  63. reg = <0x48211000 0x1000>,
  64. <0x48212000 0x1000>,
  65. <0x48214000 0x2000>,
  66. <0x48216000 0x2000>;
  67. };
  68. /*
  69. * The soc node represents the soc top level view. It is uses for IPs
  70. * that are not memory mapped in the MPU view or for the MPU itself.
  71. */
  72. soc {
  73. compatible = "ti,omap-infra";
  74. mpu {
  75. compatible = "ti,omap5-mpu";
  76. ti,hwmods = "mpu";
  77. };
  78. };
  79. /*
  80. * XXX: Use a flat representation of the OMAP3 interconnect.
  81. * The real OMAP interconnect network is quite complex.
  82. * Since that will not bring real advantage to represent that in DT for
  83. * the moment, just use a fake OCP bus entry to represent the whole bus
  84. * hierarchy.
  85. */
  86. ocp {
  87. compatible = "ti,omap4-l3-noc", "simple-bus";
  88. #address-cells = <1>;
  89. #size-cells = <1>;
  90. ranges;
  91. ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
  92. reg = <0x44000000 0x2000>,
  93. <0x44800000 0x3000>,
  94. <0x45000000 0x4000>;
  95. interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
  96. <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
  97. counter32k: counter@4ae04000 {
  98. compatible = "ti,omap-counter32k";
  99. reg = <0x4ae04000 0x40>;
  100. ti,hwmods = "counter_32k";
  101. };
  102. omap5_pmx_core: pinmux@4a002840 {
  103. compatible = "ti,omap4-padconf", "pinctrl-single";
  104. reg = <0x4a002840 0x01b6>;
  105. #address-cells = <1>;
  106. #size-cells = <0>;
  107. pinctrl-single,register-width = <16>;
  108. pinctrl-single,function-mask = <0x7fff>;
  109. };
  110. omap5_pmx_wkup: pinmux@4ae0c840 {
  111. compatible = "ti,omap4-padconf", "pinctrl-single";
  112. reg = <0x4ae0c840 0x0038>;
  113. #address-cells = <1>;
  114. #size-cells = <0>;
  115. pinctrl-single,register-width = <16>;
  116. pinctrl-single,function-mask = <0x7fff>;
  117. };
  118. sdma: dma-controller@4a056000 {
  119. compatible = "ti,omap4430-sdma";
  120. reg = <0x4a056000 0x1000>;
  121. interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
  122. <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
  123. <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
  124. <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
  125. #dma-cells = <1>;
  126. #dma-channels = <32>;
  127. #dma-requests = <127>;
  128. };
  129. gpio1: gpio@4ae10000 {
  130. compatible = "ti,omap4-gpio";
  131. reg = <0x4ae10000 0x200>;
  132. interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
  133. ti,hwmods = "gpio1";
  134. ti,gpio-always-on;
  135. gpio-controller;
  136. #gpio-cells = <2>;
  137. interrupt-controller;
  138. #interrupt-cells = <2>;
  139. };
  140. gpio2: gpio@48055000 {
  141. compatible = "ti,omap4-gpio";
  142. reg = <0x48055000 0x200>;
  143. interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
  144. ti,hwmods = "gpio2";
  145. gpio-controller;
  146. #gpio-cells = <2>;
  147. interrupt-controller;
  148. #interrupt-cells = <2>;
  149. };
  150. gpio3: gpio@48057000 {
  151. compatible = "ti,omap4-gpio";
  152. reg = <0x48057000 0x200>;
  153. interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
  154. ti,hwmods = "gpio3";
  155. gpio-controller;
  156. #gpio-cells = <2>;
  157. interrupt-controller;
  158. #interrupt-cells = <2>;
  159. };
  160. gpio4: gpio@48059000 {
  161. compatible = "ti,omap4-gpio";
  162. reg = <0x48059000 0x200>;
  163. interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
  164. ti,hwmods = "gpio4";
  165. gpio-controller;
  166. #gpio-cells = <2>;
  167. interrupt-controller;
  168. #interrupt-cells = <2>;
  169. };
  170. gpio5: gpio@4805b000 {
  171. compatible = "ti,omap4-gpio";
  172. reg = <0x4805b000 0x200>;
  173. interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
  174. ti,hwmods = "gpio5";
  175. gpio-controller;
  176. #gpio-cells = <2>;
  177. interrupt-controller;
  178. #interrupt-cells = <2>;
  179. };
  180. gpio6: gpio@4805d000 {
  181. compatible = "ti,omap4-gpio";
  182. reg = <0x4805d000 0x200>;
  183. interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
  184. ti,hwmods = "gpio6";
  185. gpio-controller;
  186. #gpio-cells = <2>;
  187. interrupt-controller;
  188. #interrupt-cells = <2>;
  189. };
  190. gpio7: gpio@48051000 {
  191. compatible = "ti,omap4-gpio";
  192. reg = <0x48051000 0x200>;
  193. interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
  194. ti,hwmods = "gpio7";
  195. gpio-controller;
  196. #gpio-cells = <2>;
  197. interrupt-controller;
  198. #interrupt-cells = <2>;
  199. };
  200. gpio8: gpio@48053000 {
  201. compatible = "ti,omap4-gpio";
  202. reg = <0x48053000 0x200>;
  203. interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
  204. ti,hwmods = "gpio8";
  205. gpio-controller;
  206. #gpio-cells = <2>;
  207. interrupt-controller;
  208. #interrupt-cells = <2>;
  209. };
  210. gpmc: gpmc@50000000 {
  211. compatible = "ti,omap4430-gpmc";
  212. reg = <0x50000000 0x1000>;
  213. #address-cells = <2>;
  214. #size-cells = <1>;
  215. interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
  216. gpmc,num-cs = <8>;
  217. gpmc,num-waitpins = <4>;
  218. ti,hwmods = "gpmc";
  219. };
  220. i2c1: i2c@48070000 {
  221. compatible = "ti,omap4-i2c";
  222. reg = <0x48070000 0x100>;
  223. interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
  224. #address-cells = <1>;
  225. #size-cells = <0>;
  226. ti,hwmods = "i2c1";
  227. };
  228. i2c2: i2c@48072000 {
  229. compatible = "ti,omap4-i2c";
  230. reg = <0x48072000 0x100>;
  231. interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
  232. #address-cells = <1>;
  233. #size-cells = <0>;
  234. ti,hwmods = "i2c2";
  235. };
  236. i2c3: i2c@48060000 {
  237. compatible = "ti,omap4-i2c";
  238. reg = <0x48060000 0x100>;
  239. interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
  240. #address-cells = <1>;
  241. #size-cells = <0>;
  242. ti,hwmods = "i2c3";
  243. };
  244. i2c4: i2c@4807a000 {
  245. compatible = "ti,omap4-i2c";
  246. reg = <0x4807a000 0x100>;
  247. interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
  248. #address-cells = <1>;
  249. #size-cells = <0>;
  250. ti,hwmods = "i2c4";
  251. };
  252. i2c5: i2c@4807c000 {
  253. compatible = "ti,omap4-i2c";
  254. reg = <0x4807c000 0x100>;
  255. interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
  256. #address-cells = <1>;
  257. #size-cells = <0>;
  258. ti,hwmods = "i2c5";
  259. };
  260. hwspinlock: spinlock@4a0f6000 {
  261. compatible = "ti,omap4-hwspinlock";
  262. reg = <0x4a0f6000 0x1000>;
  263. ti,hwmods = "spinlock";
  264. };
  265. mcspi1: spi@48098000 {
  266. compatible = "ti,omap4-mcspi";
  267. reg = <0x48098000 0x200>;
  268. interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
  269. #address-cells = <1>;
  270. #size-cells = <0>;
  271. ti,hwmods = "mcspi1";
  272. ti,spi-num-cs = <4>;
  273. dmas = <&sdma 35>,
  274. <&sdma 36>,
  275. <&sdma 37>,
  276. <&sdma 38>,
  277. <&sdma 39>,
  278. <&sdma 40>,
  279. <&sdma 41>,
  280. <&sdma 42>;
  281. dma-names = "tx0", "rx0", "tx1", "rx1",
  282. "tx2", "rx2", "tx3", "rx3";
  283. };
  284. mcspi2: spi@4809a000 {
  285. compatible = "ti,omap4-mcspi";
  286. reg = <0x4809a000 0x200>;
  287. interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
  288. #address-cells = <1>;
  289. #size-cells = <0>;
  290. ti,hwmods = "mcspi2";
  291. ti,spi-num-cs = <2>;
  292. dmas = <&sdma 43>,
  293. <&sdma 44>,
  294. <&sdma 45>,
  295. <&sdma 46>;
  296. dma-names = "tx0", "rx0", "tx1", "rx1";
  297. };
  298. mcspi3: spi@480b8000 {
  299. compatible = "ti,omap4-mcspi";
  300. reg = <0x480b8000 0x200>;
  301. interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
  302. #address-cells = <1>;
  303. #size-cells = <0>;
  304. ti,hwmods = "mcspi3";
  305. ti,spi-num-cs = <2>;
  306. dmas = <&sdma 15>, <&sdma 16>;
  307. dma-names = "tx0", "rx0";
  308. };
  309. mcspi4: spi@480ba000 {
  310. compatible = "ti,omap4-mcspi";
  311. reg = <0x480ba000 0x200>;
  312. interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
  313. #address-cells = <1>;
  314. #size-cells = <0>;
  315. ti,hwmods = "mcspi4";
  316. ti,spi-num-cs = <1>;
  317. dmas = <&sdma 70>, <&sdma 71>;
  318. dma-names = "tx0", "rx0";
  319. };
  320. uart1: serial@4806a000 {
  321. compatible = "ti,omap4-uart";
  322. reg = <0x4806a000 0x100>;
  323. interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
  324. ti,hwmods = "uart1";
  325. clock-frequency = <48000000>;
  326. };
  327. uart2: serial@4806c000 {
  328. compatible = "ti,omap4-uart";
  329. reg = <0x4806c000 0x100>;
  330. interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
  331. ti,hwmods = "uart2";
  332. clock-frequency = <48000000>;
  333. };
  334. uart3: serial@48020000 {
  335. compatible = "ti,omap4-uart";
  336. reg = <0x48020000 0x100>;
  337. interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
  338. ti,hwmods = "uart3";
  339. clock-frequency = <48000000>;
  340. };
  341. uart4: serial@4806e000 {
  342. compatible = "ti,omap4-uart";
  343. reg = <0x4806e000 0x100>;
  344. interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
  345. ti,hwmods = "uart4";
  346. clock-frequency = <48000000>;
  347. };
  348. uart5: serial@48066000 {
  349. compatible = "ti,omap4-uart";
  350. reg = <0x48066000 0x100>;
  351. interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
  352. ti,hwmods = "uart5";
  353. clock-frequency = <48000000>;
  354. };
  355. uart6: serial@48068000 {
  356. compatible = "ti,omap4-uart";
  357. reg = <0x48068000 0x100>;
  358. interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
  359. ti,hwmods = "uart6";
  360. clock-frequency = <48000000>;
  361. };
  362. mmc1: mmc@4809c000 {
  363. compatible = "ti,omap4-hsmmc";
  364. reg = <0x4809c000 0x400>;
  365. interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
  366. ti,hwmods = "mmc1";
  367. ti,dual-volt;
  368. ti,needs-special-reset;
  369. dmas = <&sdma 61>, <&sdma 62>;
  370. dma-names = "tx", "rx";
  371. };
  372. mmc2: mmc@480b4000 {
  373. compatible = "ti,omap4-hsmmc";
  374. reg = <0x480b4000 0x400>;
  375. interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
  376. ti,hwmods = "mmc2";
  377. ti,needs-special-reset;
  378. dmas = <&sdma 47>, <&sdma 48>;
  379. dma-names = "tx", "rx";
  380. };
  381. mmc3: mmc@480ad000 {
  382. compatible = "ti,omap4-hsmmc";
  383. reg = <0x480ad000 0x400>;
  384. interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
  385. ti,hwmods = "mmc3";
  386. ti,needs-special-reset;
  387. dmas = <&sdma 77>, <&sdma 78>;
  388. dma-names = "tx", "rx";
  389. };
  390. mmc4: mmc@480d1000 {
  391. compatible = "ti,omap4-hsmmc";
  392. reg = <0x480d1000 0x400>;
  393. interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
  394. ti,hwmods = "mmc4";
  395. ti,needs-special-reset;
  396. dmas = <&sdma 57>, <&sdma 58>;
  397. dma-names = "tx", "rx";
  398. };
  399. mmc5: mmc@480d5000 {
  400. compatible = "ti,omap4-hsmmc";
  401. reg = <0x480d5000 0x400>;
  402. interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
  403. ti,hwmods = "mmc5";
  404. ti,needs-special-reset;
  405. dmas = <&sdma 59>, <&sdma 60>;
  406. dma-names = "tx", "rx";
  407. };
  408. keypad: keypad@4ae1c000 {
  409. compatible = "ti,omap4-keypad";
  410. reg = <0x4ae1c000 0x400>;
  411. ti,hwmods = "kbd";
  412. };
  413. mcpdm: mcpdm@40132000 {
  414. compatible = "ti,omap4-mcpdm";
  415. reg = <0x40132000 0x7f>, /* MPU private access */
  416. <0x49032000 0x7f>; /* L3 Interconnect */
  417. reg-names = "mpu", "dma";
  418. interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
  419. ti,hwmods = "mcpdm";
  420. dmas = <&sdma 65>,
  421. <&sdma 66>;
  422. dma-names = "up_link", "dn_link";
  423. };
  424. dmic: dmic@4012e000 {
  425. compatible = "ti,omap4-dmic";
  426. reg = <0x4012e000 0x7f>, /* MPU private access */
  427. <0x4902e000 0x7f>; /* L3 Interconnect */
  428. reg-names = "mpu", "dma";
  429. interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
  430. ti,hwmods = "dmic";
  431. dmas = <&sdma 67>;
  432. dma-names = "up_link";
  433. };
  434. mcbsp1: mcbsp@40122000 {
  435. compatible = "ti,omap4-mcbsp";
  436. reg = <0x40122000 0xff>, /* MPU private access */
  437. <0x49022000 0xff>; /* L3 Interconnect */
  438. reg-names = "mpu", "dma";
  439. interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
  440. interrupt-names = "common";
  441. ti,buffer-size = <128>;
  442. ti,hwmods = "mcbsp1";
  443. dmas = <&sdma 33>,
  444. <&sdma 34>;
  445. dma-names = "tx", "rx";
  446. };
  447. mcbsp2: mcbsp@40124000 {
  448. compatible = "ti,omap4-mcbsp";
  449. reg = <0x40124000 0xff>, /* MPU private access */
  450. <0x49024000 0xff>; /* L3 Interconnect */
  451. reg-names = "mpu", "dma";
  452. interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
  453. interrupt-names = "common";
  454. ti,buffer-size = <128>;
  455. ti,hwmods = "mcbsp2";
  456. dmas = <&sdma 17>,
  457. <&sdma 18>;
  458. dma-names = "tx", "rx";
  459. };
  460. mcbsp3: mcbsp@40126000 {
  461. compatible = "ti,omap4-mcbsp";
  462. reg = <0x40126000 0xff>, /* MPU private access */
  463. <0x49026000 0xff>; /* L3 Interconnect */
  464. reg-names = "mpu", "dma";
  465. interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
  466. interrupt-names = "common";
  467. ti,buffer-size = <128>;
  468. ti,hwmods = "mcbsp3";
  469. dmas = <&sdma 19>,
  470. <&sdma 20>;
  471. dma-names = "tx", "rx";
  472. };
  473. timer1: timer@4ae18000 {
  474. compatible = "ti,omap5430-timer";
  475. reg = <0x4ae18000 0x80>;
  476. interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
  477. ti,hwmods = "timer1";
  478. ti,timer-alwon;
  479. };
  480. timer2: timer@48032000 {
  481. compatible = "ti,omap5430-timer";
  482. reg = <0x48032000 0x80>;
  483. interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
  484. ti,hwmods = "timer2";
  485. };
  486. timer3: timer@48034000 {
  487. compatible = "ti,omap5430-timer";
  488. reg = <0x48034000 0x80>;
  489. interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
  490. ti,hwmods = "timer3";
  491. };
  492. timer4: timer@48036000 {
  493. compatible = "ti,omap5430-timer";
  494. reg = <0x48036000 0x80>;
  495. interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
  496. ti,hwmods = "timer4";
  497. };
  498. timer5: timer@40138000 {
  499. compatible = "ti,omap5430-timer";
  500. reg = <0x40138000 0x80>,
  501. <0x49038000 0x80>;
  502. interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
  503. ti,hwmods = "timer5";
  504. ti,timer-dsp;
  505. ti,timer-pwm;
  506. };
  507. timer6: timer@4013a000 {
  508. compatible = "ti,omap5430-timer";
  509. reg = <0x4013a000 0x80>,
  510. <0x4903a000 0x80>;
  511. interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
  512. ti,hwmods = "timer6";
  513. ti,timer-dsp;
  514. ti,timer-pwm;
  515. };
  516. timer7: timer@4013c000 {
  517. compatible = "ti,omap5430-timer";
  518. reg = <0x4013c000 0x80>,
  519. <0x4903c000 0x80>;
  520. interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
  521. ti,hwmods = "timer7";
  522. ti,timer-dsp;
  523. };
  524. timer8: timer@4013e000 {
  525. compatible = "ti,omap5430-timer";
  526. reg = <0x4013e000 0x80>,
  527. <0x4903e000 0x80>;
  528. interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
  529. ti,hwmods = "timer8";
  530. ti,timer-dsp;
  531. ti,timer-pwm;
  532. };
  533. timer9: timer@4803e000 {
  534. compatible = "ti,omap5430-timer";
  535. reg = <0x4803e000 0x80>;
  536. interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
  537. ti,hwmods = "timer9";
  538. ti,timer-pwm;
  539. };
  540. timer10: timer@48086000 {
  541. compatible = "ti,omap5430-timer";
  542. reg = <0x48086000 0x80>;
  543. interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
  544. ti,hwmods = "timer10";
  545. ti,timer-pwm;
  546. };
  547. timer11: timer@48088000 {
  548. compatible = "ti,omap5430-timer";
  549. reg = <0x48088000 0x80>;
  550. interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
  551. ti,hwmods = "timer11";
  552. ti,timer-pwm;
  553. };
  554. wdt2: wdt@4ae14000 {
  555. compatible = "ti,omap5-wdt", "ti,omap3-wdt";
  556. reg = <0x4ae14000 0x80>;
  557. interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
  558. ti,hwmods = "wd_timer2";
  559. };
  560. emif1: emif@4c000000 {
  561. compatible = "ti,emif-4d5";
  562. ti,hwmods = "emif1";
  563. ti,no-idle-on-init;
  564. phy-type = <2>; /* DDR PHY type: Intelli PHY */
  565. reg = <0x4c000000 0x400>;
  566. interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
  567. hw-caps-read-idle-ctrl;
  568. hw-caps-ll-interface;
  569. hw-caps-temp-alert;
  570. };
  571. emif2: emif@4d000000 {
  572. compatible = "ti,emif-4d5";
  573. ti,hwmods = "emif2";
  574. ti,no-idle-on-init;
  575. phy-type = <2>; /* DDR PHY type: Intelli PHY */
  576. reg = <0x4d000000 0x400>;
  577. interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
  578. hw-caps-read-idle-ctrl;
  579. hw-caps-ll-interface;
  580. hw-caps-temp-alert;
  581. };
  582. omap_control_usb: omap-control-usb@4a002300 {
  583. compatible = "ti,omap-control-usb";
  584. reg = <0x4a002300 0x4>,
  585. <0x4a002370 0x4>;
  586. reg-names = "control_dev_conf", "phy_power_usb";
  587. ti,type = <2>;
  588. };
  589. usb3: omap_dwc3@4a020000 {
  590. compatible = "ti,dwc3";
  591. ti,hwmods = "usb_otg_ss";
  592. reg = <0x4a020000 0x10000>;
  593. interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
  594. #address-cells = <1>;
  595. #size-cells = <1>;
  596. utmi-mode = <2>;
  597. ranges;
  598. dwc3@4a030000 {
  599. compatible = "snps,dwc3";
  600. reg = <0x4a030000 0x10000>;
  601. interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
  602. usb-phy = <&usb2_phy>, <&usb3_phy>;
  603. dr_mode = "peripheral";
  604. tx-fifo-resize;
  605. };
  606. };
  607. ocp2scp@4a080000 {
  608. compatible = "ti,omap-ocp2scp";
  609. #address-cells = <1>;
  610. #size-cells = <1>;
  611. reg = <0x4a080000 0x20>;
  612. ranges;
  613. ti,hwmods = "ocp2scp1";
  614. usb2_phy: usb2phy@4a084000 {
  615. compatible = "ti,omap-usb2";
  616. reg = <0x4a084000 0x7c>;
  617. ctrl-module = <&omap_control_usb>;
  618. };
  619. usb3_phy: usb3phy@4a084400 {
  620. compatible = "ti,omap-usb3";
  621. reg = <0x4a084400 0x80>,
  622. <0x4a084800 0x64>,
  623. <0x4a084c00 0x40>;
  624. reg-names = "phy_rx", "phy_tx", "pll_ctrl";
  625. ctrl-module = <&omap_control_usb>;
  626. };
  627. };
  628. usbhstll: usbhstll@4a062000 {
  629. compatible = "ti,usbhs-tll";
  630. reg = <0x4a062000 0x1000>;
  631. interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
  632. ti,hwmods = "usb_tll_hs";
  633. };
  634. usbhshost: usbhshost@4a064000 {
  635. compatible = "ti,usbhs-host";
  636. reg = <0x4a064000 0x800>;
  637. ti,hwmods = "usb_host_hs";
  638. #address-cells = <1>;
  639. #size-cells = <1>;
  640. ranges;
  641. usbhsohci: ohci@4a064800 {
  642. compatible = "ti,ohci-omap3", "usb-ohci";
  643. reg = <0x4a064800 0x400>;
  644. interrupt-parent = <&gic>;
  645. interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
  646. };
  647. usbhsehci: ehci@4a064c00 {
  648. compatible = "ti,ehci-omap", "usb-ehci";
  649. reg = <0x4a064c00 0x400>;
  650. interrupt-parent = <&gic>;
  651. interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
  652. };
  653. };
  654. bandgap@4a0021e0 {
  655. reg = <0x4a0021e0 0xc
  656. 0x4a00232c 0xc
  657. 0x4a002380 0x2c
  658. 0x4a0023C0 0x3c>;
  659. interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
  660. compatible = "ti,omap5430-bandgap";
  661. };
  662. };
  663. };