omap5.dtsi 18 KB

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