omap5.dtsi 15 KB

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