omap5.dtsi 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  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. mcspi1: spi@48098000 {
  261. compatible = "ti,omap4-mcspi";
  262. reg = <0x48098000 0x200>;
  263. interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
  264. #address-cells = <1>;
  265. #size-cells = <0>;
  266. ti,hwmods = "mcspi1";
  267. ti,spi-num-cs = <4>;
  268. dmas = <&sdma 35>,
  269. <&sdma 36>,
  270. <&sdma 37>,
  271. <&sdma 38>,
  272. <&sdma 39>,
  273. <&sdma 40>,
  274. <&sdma 41>,
  275. <&sdma 42>;
  276. dma-names = "tx0", "rx0", "tx1", "rx1",
  277. "tx2", "rx2", "tx3", "rx3";
  278. };
  279. mcspi2: spi@4809a000 {
  280. compatible = "ti,omap4-mcspi";
  281. reg = <0x4809a000 0x200>;
  282. interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
  283. #address-cells = <1>;
  284. #size-cells = <0>;
  285. ti,hwmods = "mcspi2";
  286. ti,spi-num-cs = <2>;
  287. dmas = <&sdma 43>,
  288. <&sdma 44>,
  289. <&sdma 45>,
  290. <&sdma 46>;
  291. dma-names = "tx0", "rx0", "tx1", "rx1";
  292. };
  293. mcspi3: spi@480b8000 {
  294. compatible = "ti,omap4-mcspi";
  295. reg = <0x480b8000 0x200>;
  296. interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
  297. #address-cells = <1>;
  298. #size-cells = <0>;
  299. ti,hwmods = "mcspi3";
  300. ti,spi-num-cs = <2>;
  301. dmas = <&sdma 15>, <&sdma 16>;
  302. dma-names = "tx0", "rx0";
  303. };
  304. mcspi4: spi@480ba000 {
  305. compatible = "ti,omap4-mcspi";
  306. reg = <0x480ba000 0x200>;
  307. interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
  308. #address-cells = <1>;
  309. #size-cells = <0>;
  310. ti,hwmods = "mcspi4";
  311. ti,spi-num-cs = <1>;
  312. dmas = <&sdma 70>, <&sdma 71>;
  313. dma-names = "tx0", "rx0";
  314. };
  315. uart1: serial@4806a000 {
  316. compatible = "ti,omap4-uart";
  317. reg = <0x4806a000 0x100>;
  318. interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
  319. ti,hwmods = "uart1";
  320. clock-frequency = <48000000>;
  321. };
  322. uart2: serial@4806c000 {
  323. compatible = "ti,omap4-uart";
  324. reg = <0x4806c000 0x100>;
  325. interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
  326. ti,hwmods = "uart2";
  327. clock-frequency = <48000000>;
  328. };
  329. uart3: serial@48020000 {
  330. compatible = "ti,omap4-uart";
  331. reg = <0x48020000 0x100>;
  332. interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
  333. ti,hwmods = "uart3";
  334. clock-frequency = <48000000>;
  335. };
  336. uart4: serial@4806e000 {
  337. compatible = "ti,omap4-uart";
  338. reg = <0x4806e000 0x100>;
  339. interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
  340. ti,hwmods = "uart4";
  341. clock-frequency = <48000000>;
  342. };
  343. uart5: serial@48066000 {
  344. compatible = "ti,omap4-uart";
  345. reg = <0x48066000 0x100>;
  346. interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
  347. ti,hwmods = "uart5";
  348. clock-frequency = <48000000>;
  349. };
  350. uart6: serial@48068000 {
  351. compatible = "ti,omap4-uart";
  352. reg = <0x48068000 0x100>;
  353. interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
  354. ti,hwmods = "uart6";
  355. clock-frequency = <48000000>;
  356. };
  357. mmc1: mmc@4809c000 {
  358. compatible = "ti,omap4-hsmmc";
  359. reg = <0x4809c000 0x400>;
  360. interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
  361. ti,hwmods = "mmc1";
  362. ti,dual-volt;
  363. ti,needs-special-reset;
  364. dmas = <&sdma 61>, <&sdma 62>;
  365. dma-names = "tx", "rx";
  366. };
  367. mmc2: mmc@480b4000 {
  368. compatible = "ti,omap4-hsmmc";
  369. reg = <0x480b4000 0x400>;
  370. interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
  371. ti,hwmods = "mmc2";
  372. ti,needs-special-reset;
  373. dmas = <&sdma 47>, <&sdma 48>;
  374. dma-names = "tx", "rx";
  375. };
  376. mmc3: mmc@480ad000 {
  377. compatible = "ti,omap4-hsmmc";
  378. reg = <0x480ad000 0x400>;
  379. interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
  380. ti,hwmods = "mmc3";
  381. ti,needs-special-reset;
  382. dmas = <&sdma 77>, <&sdma 78>;
  383. dma-names = "tx", "rx";
  384. };
  385. mmc4: mmc@480d1000 {
  386. compatible = "ti,omap4-hsmmc";
  387. reg = <0x480d1000 0x400>;
  388. interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
  389. ti,hwmods = "mmc4";
  390. ti,needs-special-reset;
  391. dmas = <&sdma 57>, <&sdma 58>;
  392. dma-names = "tx", "rx";
  393. };
  394. mmc5: mmc@480d5000 {
  395. compatible = "ti,omap4-hsmmc";
  396. reg = <0x480d5000 0x400>;
  397. interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
  398. ti,hwmods = "mmc5";
  399. ti,needs-special-reset;
  400. dmas = <&sdma 59>, <&sdma 60>;
  401. dma-names = "tx", "rx";
  402. };
  403. keypad: keypad@4ae1c000 {
  404. compatible = "ti,omap4-keypad";
  405. reg = <0x4ae1c000 0x400>;
  406. ti,hwmods = "kbd";
  407. };
  408. mcpdm: mcpdm@40132000 {
  409. compatible = "ti,omap4-mcpdm";
  410. reg = <0x40132000 0x7f>, /* MPU private access */
  411. <0x49032000 0x7f>; /* L3 Interconnect */
  412. reg-names = "mpu", "dma";
  413. interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
  414. ti,hwmods = "mcpdm";
  415. dmas = <&sdma 65>,
  416. <&sdma 66>;
  417. dma-names = "up_link", "dn_link";
  418. };
  419. dmic: dmic@4012e000 {
  420. compatible = "ti,omap4-dmic";
  421. reg = <0x4012e000 0x7f>, /* MPU private access */
  422. <0x4902e000 0x7f>; /* L3 Interconnect */
  423. reg-names = "mpu", "dma";
  424. interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
  425. ti,hwmods = "dmic";
  426. dmas = <&sdma 67>;
  427. dma-names = "up_link";
  428. };
  429. mcbsp1: mcbsp@40122000 {
  430. compatible = "ti,omap4-mcbsp";
  431. reg = <0x40122000 0xff>, /* MPU private access */
  432. <0x49022000 0xff>; /* L3 Interconnect */
  433. reg-names = "mpu", "dma";
  434. interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
  435. interrupt-names = "common";
  436. ti,buffer-size = <128>;
  437. ti,hwmods = "mcbsp1";
  438. dmas = <&sdma 33>,
  439. <&sdma 34>;
  440. dma-names = "tx", "rx";
  441. };
  442. mcbsp2: mcbsp@40124000 {
  443. compatible = "ti,omap4-mcbsp";
  444. reg = <0x40124000 0xff>, /* MPU private access */
  445. <0x49024000 0xff>; /* L3 Interconnect */
  446. reg-names = "mpu", "dma";
  447. interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
  448. interrupt-names = "common";
  449. ti,buffer-size = <128>;
  450. ti,hwmods = "mcbsp2";
  451. dmas = <&sdma 17>,
  452. <&sdma 18>;
  453. dma-names = "tx", "rx";
  454. };
  455. mcbsp3: mcbsp@40126000 {
  456. compatible = "ti,omap4-mcbsp";
  457. reg = <0x40126000 0xff>, /* MPU private access */
  458. <0x49026000 0xff>; /* L3 Interconnect */
  459. reg-names = "mpu", "dma";
  460. interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
  461. interrupt-names = "common";
  462. ti,buffer-size = <128>;
  463. ti,hwmods = "mcbsp3";
  464. dmas = <&sdma 19>,
  465. <&sdma 20>;
  466. dma-names = "tx", "rx";
  467. };
  468. timer1: timer@4ae18000 {
  469. compatible = "ti,omap5430-timer";
  470. reg = <0x4ae18000 0x80>;
  471. interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
  472. ti,hwmods = "timer1";
  473. ti,timer-alwon;
  474. };
  475. timer2: timer@48032000 {
  476. compatible = "ti,omap5430-timer";
  477. reg = <0x48032000 0x80>;
  478. interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
  479. ti,hwmods = "timer2";
  480. };
  481. timer3: timer@48034000 {
  482. compatible = "ti,omap5430-timer";
  483. reg = <0x48034000 0x80>;
  484. interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
  485. ti,hwmods = "timer3";
  486. };
  487. timer4: timer@48036000 {
  488. compatible = "ti,omap5430-timer";
  489. reg = <0x48036000 0x80>;
  490. interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
  491. ti,hwmods = "timer4";
  492. };
  493. timer5: timer@40138000 {
  494. compatible = "ti,omap5430-timer";
  495. reg = <0x40138000 0x80>,
  496. <0x49038000 0x80>;
  497. interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
  498. ti,hwmods = "timer5";
  499. ti,timer-dsp;
  500. ti,timer-pwm;
  501. };
  502. timer6: timer@4013a000 {
  503. compatible = "ti,omap5430-timer";
  504. reg = <0x4013a000 0x80>,
  505. <0x4903a000 0x80>;
  506. interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
  507. ti,hwmods = "timer6";
  508. ti,timer-dsp;
  509. ti,timer-pwm;
  510. };
  511. timer7: timer@4013c000 {
  512. compatible = "ti,omap5430-timer";
  513. reg = <0x4013c000 0x80>,
  514. <0x4903c000 0x80>;
  515. interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
  516. ti,hwmods = "timer7";
  517. ti,timer-dsp;
  518. };
  519. timer8: timer@4013e000 {
  520. compatible = "ti,omap5430-timer";
  521. reg = <0x4013e000 0x80>,
  522. <0x4903e000 0x80>;
  523. interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
  524. ti,hwmods = "timer8";
  525. ti,timer-dsp;
  526. ti,timer-pwm;
  527. };
  528. timer9: timer@4803e000 {
  529. compatible = "ti,omap5430-timer";
  530. reg = <0x4803e000 0x80>;
  531. interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
  532. ti,hwmods = "timer9";
  533. ti,timer-pwm;
  534. };
  535. timer10: timer@48086000 {
  536. compatible = "ti,omap5430-timer";
  537. reg = <0x48086000 0x80>;
  538. interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
  539. ti,hwmods = "timer10";
  540. ti,timer-pwm;
  541. };
  542. timer11: timer@48088000 {
  543. compatible = "ti,omap5430-timer";
  544. reg = <0x48088000 0x80>;
  545. interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
  546. ti,hwmods = "timer11";
  547. ti,timer-pwm;
  548. };
  549. wdt2: wdt@4ae14000 {
  550. compatible = "ti,omap5-wdt", "ti,omap3-wdt";
  551. reg = <0x4ae14000 0x80>;
  552. interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
  553. ti,hwmods = "wd_timer2";
  554. };
  555. emif1: emif@4c000000 {
  556. compatible = "ti,emif-4d5";
  557. ti,hwmods = "emif1";
  558. ti,no-idle-on-init;
  559. phy-type = <2>; /* DDR PHY type: Intelli PHY */
  560. reg = <0x4c000000 0x400>;
  561. interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
  562. hw-caps-read-idle-ctrl;
  563. hw-caps-ll-interface;
  564. hw-caps-temp-alert;
  565. };
  566. emif2: emif@4d000000 {
  567. compatible = "ti,emif-4d5";
  568. ti,hwmods = "emif2";
  569. ti,no-idle-on-init;
  570. phy-type = <2>; /* DDR PHY type: Intelli PHY */
  571. reg = <0x4d000000 0x400>;
  572. interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
  573. hw-caps-read-idle-ctrl;
  574. hw-caps-ll-interface;
  575. hw-caps-temp-alert;
  576. };
  577. omap_control_usb: omap-control-usb@4a002300 {
  578. compatible = "ti,omap-control-usb";
  579. reg = <0x4a002300 0x4>,
  580. <0x4a002370 0x4>;
  581. reg-names = "control_dev_conf", "phy_power_usb";
  582. ti,type = <2>;
  583. };
  584. usb3: omap_dwc3@4a020000 {
  585. compatible = "ti,dwc3";
  586. ti,hwmods = "usb_otg_ss";
  587. reg = <0x4a020000 0x10000>;
  588. interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
  589. #address-cells = <1>;
  590. #size-cells = <1>;
  591. utmi-mode = <2>;
  592. ranges;
  593. dwc3@4a030000 {
  594. compatible = "snps,dwc3";
  595. reg = <0x4a030000 0x10000>;
  596. interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
  597. usb-phy = <&usb2_phy>, <&usb3_phy>;
  598. dr_mode = "peripheral";
  599. tx-fifo-resize;
  600. };
  601. };
  602. ocp2scp@4a080000 {
  603. compatible = "ti,omap-ocp2scp";
  604. #address-cells = <1>;
  605. #size-cells = <1>;
  606. reg = <0x4a080000 0x20>;
  607. ranges;
  608. ti,hwmods = "ocp2scp1";
  609. usb2_phy: usb2phy@4a084000 {
  610. compatible = "ti,omap-usb2";
  611. reg = <0x4a084000 0x7c>;
  612. ctrl-module = <&omap_control_usb>;
  613. };
  614. usb3_phy: usb3phy@4a084400 {
  615. compatible = "ti,omap-usb3";
  616. reg = <0x4a084400 0x80>,
  617. <0x4a084800 0x64>,
  618. <0x4a084c00 0x40>;
  619. reg-names = "phy_rx", "phy_tx", "pll_ctrl";
  620. ctrl-module = <&omap_control_usb>;
  621. };
  622. };
  623. usbhstll: usbhstll@4a062000 {
  624. compatible = "ti,usbhs-tll";
  625. reg = <0x4a062000 0x1000>;
  626. interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
  627. ti,hwmods = "usb_tll_hs";
  628. };
  629. usbhshost: usbhshost@4a064000 {
  630. compatible = "ti,usbhs-host";
  631. reg = <0x4a064000 0x800>;
  632. ti,hwmods = "usb_host_hs";
  633. #address-cells = <1>;
  634. #size-cells = <1>;
  635. ranges;
  636. usbhsohci: ohci@4a064800 {
  637. compatible = "ti,ohci-omap3", "usb-ohci";
  638. reg = <0x4a064800 0x400>;
  639. interrupt-parent = <&gic>;
  640. interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
  641. };
  642. usbhsehci: ehci@4a064c00 {
  643. compatible = "ti,ehci-omap", "usb-ehci";
  644. reg = <0x4a064c00 0x400>;
  645. interrupt-parent = <&gic>;
  646. interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
  647. };
  648. };
  649. bandgap@4a0021e0 {
  650. reg = <0x4a0021e0 0xc
  651. 0x4a00232c 0xc
  652. 0x4a002380 0x2c
  653. 0x4a0023C0 0x3c>;
  654. interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>;
  655. compatible = "ti,omap5430-bandgap";
  656. };
  657. };
  658. };