omap5.dtsi 18 KB

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