omap4.dtsi 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  1. /*
  2. * Copyright (C) 2011 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. */
  8. #include <dt-bindings/gpio/gpio.h>
  9. #include <dt-bindings/interrupt-controller/arm-gic.h>
  10. #include <dt-bindings/pinctrl/omap.h>
  11. #include "skeleton.dtsi"
  12. / {
  13. compatible = "ti,omap4430", "ti,omap4";
  14. interrupt-parent = <&gic>;
  15. aliases {
  16. i2c0 = &i2c1;
  17. i2c1 = &i2c2;
  18. i2c2 = &i2c3;
  19. i2c3 = &i2c4;
  20. serial0 = &uart1;
  21. serial1 = &uart2;
  22. serial2 = &uart3;
  23. serial3 = &uart4;
  24. };
  25. cpus {
  26. #address-cells = <1>;
  27. #size-cells = <0>;
  28. cpu@0 {
  29. compatible = "arm,cortex-a9";
  30. device_type = "cpu";
  31. next-level-cache = <&L2>;
  32. reg = <0x0>;
  33. clocks = <&dpll_mpu_ck>;
  34. clock-names = "cpu";
  35. clock-latency = <300000>; /* From omap-cpufreq driver */
  36. };
  37. cpu@1 {
  38. compatible = "arm,cortex-a9";
  39. device_type = "cpu";
  40. next-level-cache = <&L2>;
  41. reg = <0x1>;
  42. };
  43. };
  44. gic: interrupt-controller@48241000 {
  45. compatible = "arm,cortex-a9-gic";
  46. interrupt-controller;
  47. #interrupt-cells = <3>;
  48. reg = <0x48241000 0x1000>,
  49. <0x48240100 0x0100>;
  50. };
  51. L2: l2-cache-controller@48242000 {
  52. compatible = "arm,pl310-cache";
  53. reg = <0x48242000 0x1000>;
  54. cache-unified;
  55. cache-level = <2>;
  56. };
  57. local-timer@48240600 {
  58. compatible = "arm,cortex-a9-twd-timer";
  59. clocks = <&mpu_periphclk>;
  60. reg = <0x48240600 0x20>;
  61. interrupts = <GIC_PPI 13 (GIC_CPU_MASK_RAW(3) | IRQ_TYPE_LEVEL_HIGH)>;
  62. };
  63. /*
  64. * The soc node represents the soc top level view. It is used for IPs
  65. * that are not memory mapped in the MPU view or for the MPU itself.
  66. */
  67. soc {
  68. compatible = "ti,omap-infra";
  69. mpu {
  70. compatible = "ti,omap4-mpu";
  71. ti,hwmods = "mpu";
  72. sram = <&ocmcram>;
  73. };
  74. dsp {
  75. compatible = "ti,omap3-c64";
  76. ti,hwmods = "dsp";
  77. };
  78. iva {
  79. compatible = "ti,ivahd";
  80. ti,hwmods = "iva";
  81. };
  82. };
  83. /*
  84. * XXX: Use a flat representation of the OMAP4 interconnect.
  85. * The real OMAP interconnect network is quite complex.
  86. * Since it will not bring real advantage to represent that in DT for
  87. * the moment, just use a fake OCP bus entry to represent the whole bus
  88. * hierarchy.
  89. */
  90. ocp {
  91. compatible = "ti,omap4-l3-noc", "simple-bus";
  92. #address-cells = <1>;
  93. #size-cells = <1>;
  94. ranges;
  95. ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
  96. reg = <0x44000000 0x1000>,
  97. <0x44800000 0x2000>,
  98. <0x45000000 0x1000>;
  99. interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
  100. <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
  101. cm1: cm1@4a004000 {
  102. compatible = "ti,omap4-cm1";
  103. reg = <0x4a004000 0x2000>;
  104. cm1_clocks: clocks {
  105. #address-cells = <1>;
  106. #size-cells = <0>;
  107. };
  108. cm1_clockdomains: clockdomains {
  109. };
  110. };
  111. prm: prm@4a306000 {
  112. compatible = "ti,omap4-prm";
  113. reg = <0x4a306000 0x3000>;
  114. interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
  115. prm_clocks: clocks {
  116. #address-cells = <1>;
  117. #size-cells = <0>;
  118. };
  119. prm_clockdomains: clockdomains {
  120. };
  121. };
  122. cm2: cm2@4a008000 {
  123. compatible = "ti,omap4-cm2";
  124. reg = <0x4a008000 0x3000>;
  125. cm2_clocks: clocks {
  126. #address-cells = <1>;
  127. #size-cells = <0>;
  128. };
  129. cm2_clockdomains: clockdomains {
  130. };
  131. };
  132. scrm: scrm@4a30a000 {
  133. compatible = "ti,omap4-scrm";
  134. reg = <0x4a30a000 0x2000>;
  135. scrm_clocks: clocks {
  136. #address-cells = <1>;
  137. #size-cells = <0>;
  138. };
  139. scrm_clockdomains: clockdomains {
  140. };
  141. };
  142. counter32k: counter@4a304000 {
  143. compatible = "ti,omap-counter32k";
  144. reg = <0x4a304000 0x20>;
  145. ti,hwmods = "counter_32k";
  146. };
  147. omap4_pmx_core: pinmux@4a100040 {
  148. compatible = "ti,omap4-padconf", "pinctrl-single";
  149. reg = <0x4a100040 0x0196>;
  150. #address-cells = <1>;
  151. #size-cells = <0>;
  152. #interrupt-cells = <1>;
  153. interrupt-controller;
  154. pinctrl-single,register-width = <16>;
  155. pinctrl-single,function-mask = <0x7fff>;
  156. };
  157. omap4_pmx_wkup: pinmux@4a31e040 {
  158. compatible = "ti,omap4-padconf", "pinctrl-single";
  159. reg = <0x4a31e040 0x0038>;
  160. #address-cells = <1>;
  161. #size-cells = <0>;
  162. #interrupt-cells = <1>;
  163. interrupt-controller;
  164. pinctrl-single,register-width = <16>;
  165. pinctrl-single,function-mask = <0x7fff>;
  166. };
  167. omap4_padconf_global: tisyscon@4a1005a0 {
  168. compatible = "syscon";
  169. reg = <0x4a1005a0 0x170>;
  170. };
  171. pbias_regulator: pbias_regulator {
  172. compatible = "ti,pbias-omap";
  173. reg = <0x60 0x4>;
  174. syscon = <&omap4_padconf_global>;
  175. pbias_mmc_reg: pbias_mmc_omap4 {
  176. regulator-name = "pbias_mmc_omap4";
  177. regulator-min-microvolt = <1800000>;
  178. regulator-max-microvolt = <3000000>;
  179. };
  180. };
  181. ocmcram: ocmcram@40304000 {
  182. compatible = "mmio-sram";
  183. reg = <0x40304000 0xa000>; /* 40k */
  184. };
  185. sdma: dma-controller@4a056000 {
  186. compatible = "ti,omap4430-sdma";
  187. reg = <0x4a056000 0x1000>;
  188. interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
  189. <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
  190. <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
  191. <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
  192. #dma-cells = <1>;
  193. #dma-channels = <32>;
  194. #dma-requests = <127>;
  195. };
  196. gpio1: gpio@4a310000 {
  197. compatible = "ti,omap4-gpio";
  198. reg = <0x4a310000 0x200>;
  199. interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
  200. ti,hwmods = "gpio1";
  201. ti,gpio-always-on;
  202. gpio-controller;
  203. #gpio-cells = <2>;
  204. interrupt-controller;
  205. #interrupt-cells = <2>;
  206. };
  207. gpio2: gpio@48055000 {
  208. compatible = "ti,omap4-gpio";
  209. reg = <0x48055000 0x200>;
  210. interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
  211. ti,hwmods = "gpio2";
  212. gpio-controller;
  213. #gpio-cells = <2>;
  214. interrupt-controller;
  215. #interrupt-cells = <2>;
  216. };
  217. gpio3: gpio@48057000 {
  218. compatible = "ti,omap4-gpio";
  219. reg = <0x48057000 0x200>;
  220. interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
  221. ti,hwmods = "gpio3";
  222. gpio-controller;
  223. #gpio-cells = <2>;
  224. interrupt-controller;
  225. #interrupt-cells = <2>;
  226. };
  227. gpio4: gpio@48059000 {
  228. compatible = "ti,omap4-gpio";
  229. reg = <0x48059000 0x200>;
  230. interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
  231. ti,hwmods = "gpio4";
  232. gpio-controller;
  233. #gpio-cells = <2>;
  234. interrupt-controller;
  235. #interrupt-cells = <2>;
  236. };
  237. gpio5: gpio@4805b000 {
  238. compatible = "ti,omap4-gpio";
  239. reg = <0x4805b000 0x200>;
  240. interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
  241. ti,hwmods = "gpio5";
  242. gpio-controller;
  243. #gpio-cells = <2>;
  244. interrupt-controller;
  245. #interrupt-cells = <2>;
  246. };
  247. gpio6: gpio@4805d000 {
  248. compatible = "ti,omap4-gpio";
  249. reg = <0x4805d000 0x200>;
  250. interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
  251. ti,hwmods = "gpio6";
  252. gpio-controller;
  253. #gpio-cells = <2>;
  254. interrupt-controller;
  255. #interrupt-cells = <2>;
  256. };
  257. gpmc: gpmc@50000000 {
  258. compatible = "ti,omap4430-gpmc";
  259. reg = <0x50000000 0x1000>;
  260. #address-cells = <2>;
  261. #size-cells = <1>;
  262. interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
  263. gpmc,num-cs = <8>;
  264. gpmc,num-waitpins = <4>;
  265. ti,hwmods = "gpmc";
  266. ti,no-idle-on-init;
  267. clocks = <&l3_div_ck>;
  268. clock-names = "fck";
  269. };
  270. uart1: serial@4806a000 {
  271. compatible = "ti,omap4-uart";
  272. reg = <0x4806a000 0x100>;
  273. interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
  274. ti,hwmods = "uart1";
  275. clock-frequency = <48000000>;
  276. };
  277. uart2: serial@4806c000 {
  278. compatible = "ti,omap4-uart";
  279. reg = <0x4806c000 0x100>;
  280. interrupts-extended = <&gic GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
  281. ti,hwmods = "uart2";
  282. clock-frequency = <48000000>;
  283. };
  284. uart3: serial@48020000 {
  285. compatible = "ti,omap4-uart";
  286. reg = <0x48020000 0x100>;
  287. interrupts-extended = <&gic GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
  288. ti,hwmods = "uart3";
  289. clock-frequency = <48000000>;
  290. };
  291. uart4: serial@4806e000 {
  292. compatible = "ti,omap4-uart";
  293. reg = <0x4806e000 0x100>;
  294. interrupts-extended = <&gic GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
  295. ti,hwmods = "uart4";
  296. clock-frequency = <48000000>;
  297. };
  298. hwspinlock: spinlock@4a0f6000 {
  299. compatible = "ti,omap4-hwspinlock";
  300. reg = <0x4a0f6000 0x1000>;
  301. ti,hwmods = "spinlock";
  302. #hwlock-cells = <1>;
  303. };
  304. i2c1: i2c@48070000 {
  305. compatible = "ti,omap4-i2c";
  306. reg = <0x48070000 0x100>;
  307. interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
  308. #address-cells = <1>;
  309. #size-cells = <0>;
  310. ti,hwmods = "i2c1";
  311. };
  312. i2c2: i2c@48072000 {
  313. compatible = "ti,omap4-i2c";
  314. reg = <0x48072000 0x100>;
  315. interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
  316. #address-cells = <1>;
  317. #size-cells = <0>;
  318. ti,hwmods = "i2c2";
  319. };
  320. i2c3: i2c@48060000 {
  321. compatible = "ti,omap4-i2c";
  322. reg = <0x48060000 0x100>;
  323. interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
  324. #address-cells = <1>;
  325. #size-cells = <0>;
  326. ti,hwmods = "i2c3";
  327. };
  328. i2c4: i2c@48350000 {
  329. compatible = "ti,omap4-i2c";
  330. reg = <0x48350000 0x100>;
  331. interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
  332. #address-cells = <1>;
  333. #size-cells = <0>;
  334. ti,hwmods = "i2c4";
  335. };
  336. mcspi1: spi@48098000 {
  337. compatible = "ti,omap4-mcspi";
  338. reg = <0x48098000 0x200>;
  339. interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
  340. #address-cells = <1>;
  341. #size-cells = <0>;
  342. ti,hwmods = "mcspi1";
  343. ti,spi-num-cs = <4>;
  344. dmas = <&sdma 35>,
  345. <&sdma 36>,
  346. <&sdma 37>,
  347. <&sdma 38>,
  348. <&sdma 39>,
  349. <&sdma 40>,
  350. <&sdma 41>,
  351. <&sdma 42>;
  352. dma-names = "tx0", "rx0", "tx1", "rx1",
  353. "tx2", "rx2", "tx3", "rx3";
  354. };
  355. mcspi2: spi@4809a000 {
  356. compatible = "ti,omap4-mcspi";
  357. reg = <0x4809a000 0x200>;
  358. interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>;
  359. #address-cells = <1>;
  360. #size-cells = <0>;
  361. ti,hwmods = "mcspi2";
  362. ti,spi-num-cs = <2>;
  363. dmas = <&sdma 43>,
  364. <&sdma 44>,
  365. <&sdma 45>,
  366. <&sdma 46>;
  367. dma-names = "tx0", "rx0", "tx1", "rx1";
  368. };
  369. mcspi3: spi@480b8000 {
  370. compatible = "ti,omap4-mcspi";
  371. reg = <0x480b8000 0x200>;
  372. interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
  373. #address-cells = <1>;
  374. #size-cells = <0>;
  375. ti,hwmods = "mcspi3";
  376. ti,spi-num-cs = <2>;
  377. dmas = <&sdma 15>, <&sdma 16>;
  378. dma-names = "tx0", "rx0";
  379. };
  380. mcspi4: spi@480ba000 {
  381. compatible = "ti,omap4-mcspi";
  382. reg = <0x480ba000 0x200>;
  383. interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
  384. #address-cells = <1>;
  385. #size-cells = <0>;
  386. ti,hwmods = "mcspi4";
  387. ti,spi-num-cs = <1>;
  388. dmas = <&sdma 70>, <&sdma 71>;
  389. dma-names = "tx0", "rx0";
  390. };
  391. mmc1: mmc@4809c000 {
  392. compatible = "ti,omap4-hsmmc";
  393. reg = <0x4809c000 0x400>;
  394. interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
  395. ti,hwmods = "mmc1";
  396. ti,dual-volt;
  397. ti,needs-special-reset;
  398. dmas = <&sdma 61>, <&sdma 62>;
  399. dma-names = "tx", "rx";
  400. pbias-supply = <&pbias_mmc_reg>;
  401. };
  402. mmc2: mmc@480b4000 {
  403. compatible = "ti,omap4-hsmmc";
  404. reg = <0x480b4000 0x400>;
  405. interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
  406. ti,hwmods = "mmc2";
  407. ti,needs-special-reset;
  408. dmas = <&sdma 47>, <&sdma 48>;
  409. dma-names = "tx", "rx";
  410. };
  411. mmc3: mmc@480ad000 {
  412. compatible = "ti,omap4-hsmmc";
  413. reg = <0x480ad000 0x400>;
  414. interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
  415. ti,hwmods = "mmc3";
  416. ti,needs-special-reset;
  417. dmas = <&sdma 77>, <&sdma 78>;
  418. dma-names = "tx", "rx";
  419. };
  420. mmc4: mmc@480d1000 {
  421. compatible = "ti,omap4-hsmmc";
  422. reg = <0x480d1000 0x400>;
  423. interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
  424. ti,hwmods = "mmc4";
  425. ti,needs-special-reset;
  426. dmas = <&sdma 57>, <&sdma 58>;
  427. dma-names = "tx", "rx";
  428. };
  429. mmc5: mmc@480d5000 {
  430. compatible = "ti,omap4-hsmmc";
  431. reg = <0x480d5000 0x400>;
  432. interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
  433. ti,hwmods = "mmc5";
  434. ti,needs-special-reset;
  435. dmas = <&sdma 59>, <&sdma 60>;
  436. dma-names = "tx", "rx";
  437. };
  438. mmu_dsp: mmu@4a066000 {
  439. compatible = "ti,omap4-iommu";
  440. reg = <0x4a066000 0x100>;
  441. interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
  442. ti,hwmods = "mmu_dsp";
  443. };
  444. mmu_ipu: mmu@55082000 {
  445. compatible = "ti,omap4-iommu";
  446. reg = <0x55082000 0x100>;
  447. interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
  448. ti,hwmods = "mmu_ipu";
  449. ti,iommu-bus-err-back;
  450. };
  451. wdt2: wdt@4a314000 {
  452. compatible = "ti,omap4-wdt", "ti,omap3-wdt";
  453. reg = <0x4a314000 0x80>;
  454. interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
  455. ti,hwmods = "wd_timer2";
  456. };
  457. mcpdm: mcpdm@40132000 {
  458. compatible = "ti,omap4-mcpdm";
  459. reg = <0x40132000 0x7f>, /* MPU private access */
  460. <0x49032000 0x7f>; /* L3 Interconnect */
  461. reg-names = "mpu", "dma";
  462. interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
  463. ti,hwmods = "mcpdm";
  464. dmas = <&sdma 65>,
  465. <&sdma 66>;
  466. dma-names = "up_link", "dn_link";
  467. status = "disabled";
  468. };
  469. dmic: dmic@4012e000 {
  470. compatible = "ti,omap4-dmic";
  471. reg = <0x4012e000 0x7f>, /* MPU private access */
  472. <0x4902e000 0x7f>; /* L3 Interconnect */
  473. reg-names = "mpu", "dma";
  474. interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
  475. ti,hwmods = "dmic";
  476. dmas = <&sdma 67>;
  477. dma-names = "up_link";
  478. status = "disabled";
  479. };
  480. mcbsp1: mcbsp@40122000 {
  481. compatible = "ti,omap4-mcbsp";
  482. reg = <0x40122000 0xff>, /* MPU private access */
  483. <0x49022000 0xff>; /* L3 Interconnect */
  484. reg-names = "mpu", "dma";
  485. interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
  486. interrupt-names = "common";
  487. ti,buffer-size = <128>;
  488. ti,hwmods = "mcbsp1";
  489. dmas = <&sdma 33>,
  490. <&sdma 34>;
  491. dma-names = "tx", "rx";
  492. status = "disabled";
  493. };
  494. mcbsp2: mcbsp@40124000 {
  495. compatible = "ti,omap4-mcbsp";
  496. reg = <0x40124000 0xff>, /* MPU private access */
  497. <0x49024000 0xff>; /* L3 Interconnect */
  498. reg-names = "mpu", "dma";
  499. interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
  500. interrupt-names = "common";
  501. ti,buffer-size = <128>;
  502. ti,hwmods = "mcbsp2";
  503. dmas = <&sdma 17>,
  504. <&sdma 18>;
  505. dma-names = "tx", "rx";
  506. status = "disabled";
  507. };
  508. mcbsp3: mcbsp@40126000 {
  509. compatible = "ti,omap4-mcbsp";
  510. reg = <0x40126000 0xff>, /* MPU private access */
  511. <0x49026000 0xff>; /* L3 Interconnect */
  512. reg-names = "mpu", "dma";
  513. interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
  514. interrupt-names = "common";
  515. ti,buffer-size = <128>;
  516. ti,hwmods = "mcbsp3";
  517. dmas = <&sdma 19>,
  518. <&sdma 20>;
  519. dma-names = "tx", "rx";
  520. status = "disabled";
  521. };
  522. mcbsp4: mcbsp@48096000 {
  523. compatible = "ti,omap4-mcbsp";
  524. reg = <0x48096000 0xff>; /* L4 Interconnect */
  525. reg-names = "mpu";
  526. interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
  527. interrupt-names = "common";
  528. ti,buffer-size = <128>;
  529. ti,hwmods = "mcbsp4";
  530. dmas = <&sdma 31>,
  531. <&sdma 32>;
  532. dma-names = "tx", "rx";
  533. status = "disabled";
  534. };
  535. keypad: keypad@4a31c000 {
  536. compatible = "ti,omap4-keypad";
  537. reg = <0x4a31c000 0x80>;
  538. interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
  539. reg-names = "mpu";
  540. ti,hwmods = "kbd";
  541. };
  542. dmm@4e000000 {
  543. compatible = "ti,omap4-dmm";
  544. reg = <0x4e000000 0x800>;
  545. interrupts = <0 113 0x4>;
  546. ti,hwmods = "dmm";
  547. };
  548. emif1: emif@4c000000 {
  549. compatible = "ti,emif-4d";
  550. reg = <0x4c000000 0x100>;
  551. interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
  552. ti,hwmods = "emif1";
  553. ti,no-idle-on-init;
  554. phy-type = <1>;
  555. hw-caps-read-idle-ctrl;
  556. hw-caps-ll-interface;
  557. hw-caps-temp-alert;
  558. };
  559. emif2: emif@4d000000 {
  560. compatible = "ti,emif-4d";
  561. reg = <0x4d000000 0x100>;
  562. interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
  563. ti,hwmods = "emif2";
  564. ti,no-idle-on-init;
  565. phy-type = <1>;
  566. hw-caps-read-idle-ctrl;
  567. hw-caps-ll-interface;
  568. hw-caps-temp-alert;
  569. };
  570. ocp2scp@4a0ad000 {
  571. compatible = "ti,omap-ocp2scp";
  572. reg = <0x4a0ad000 0x1f>;
  573. #address-cells = <1>;
  574. #size-cells = <1>;
  575. ranges;
  576. ti,hwmods = "ocp2scp_usb_phy";
  577. usb2_phy: usb2phy@4a0ad080 {
  578. compatible = "ti,omap-usb2";
  579. reg = <0x4a0ad080 0x58>;
  580. ctrl-module = <&omap_control_usb2phy>;
  581. clocks = <&usb_phy_cm_clk32k>;
  582. clock-names = "wkupclk";
  583. #phy-cells = <0>;
  584. };
  585. };
  586. mailbox: mailbox@4a0f4000 {
  587. compatible = "ti,omap4-mailbox";
  588. reg = <0x4a0f4000 0x200>;
  589. interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
  590. ti,hwmods = "mailbox";
  591. ti,mbox-num-users = <3>;
  592. ti,mbox-num-fifos = <8>;
  593. mbox_ipu: mbox_ipu {
  594. ti,mbox-tx = <0 0 0>;
  595. ti,mbox-rx = <1 0 0>;
  596. };
  597. mbox_dsp: mbox_dsp {
  598. ti,mbox-tx = <3 0 0>;
  599. ti,mbox-rx = <2 0 0>;
  600. };
  601. };
  602. timer1: timer@4a318000 {
  603. compatible = "ti,omap3430-timer";
  604. reg = <0x4a318000 0x80>;
  605. interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
  606. ti,hwmods = "timer1";
  607. ti,timer-alwon;
  608. };
  609. timer2: timer@48032000 {
  610. compatible = "ti,omap3430-timer";
  611. reg = <0x48032000 0x80>;
  612. interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
  613. ti,hwmods = "timer2";
  614. };
  615. timer3: timer@48034000 {
  616. compatible = "ti,omap4430-timer";
  617. reg = <0x48034000 0x80>;
  618. interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
  619. ti,hwmods = "timer3";
  620. };
  621. timer4: timer@48036000 {
  622. compatible = "ti,omap4430-timer";
  623. reg = <0x48036000 0x80>;
  624. interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
  625. ti,hwmods = "timer4";
  626. };
  627. timer5: timer@40138000 {
  628. compatible = "ti,omap4430-timer";
  629. reg = <0x40138000 0x80>,
  630. <0x49038000 0x80>;
  631. interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
  632. ti,hwmods = "timer5";
  633. ti,timer-dsp;
  634. };
  635. timer6: timer@4013a000 {
  636. compatible = "ti,omap4430-timer";
  637. reg = <0x4013a000 0x80>,
  638. <0x4903a000 0x80>;
  639. interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
  640. ti,hwmods = "timer6";
  641. ti,timer-dsp;
  642. };
  643. timer7: timer@4013c000 {
  644. compatible = "ti,omap4430-timer";
  645. reg = <0x4013c000 0x80>,
  646. <0x4903c000 0x80>;
  647. interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
  648. ti,hwmods = "timer7";
  649. ti,timer-dsp;
  650. };
  651. timer8: timer@4013e000 {
  652. compatible = "ti,omap4430-timer";
  653. reg = <0x4013e000 0x80>,
  654. <0x4903e000 0x80>;
  655. interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>;
  656. ti,hwmods = "timer8";
  657. ti,timer-pwm;
  658. ti,timer-dsp;
  659. };
  660. timer9: timer@4803e000 {
  661. compatible = "ti,omap4430-timer";
  662. reg = <0x4803e000 0x80>;
  663. interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
  664. ti,hwmods = "timer9";
  665. ti,timer-pwm;
  666. };
  667. timer10: timer@48086000 {
  668. compatible = "ti,omap3430-timer";
  669. reg = <0x48086000 0x80>;
  670. interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
  671. ti,hwmods = "timer10";
  672. ti,timer-pwm;
  673. };
  674. timer11: timer@48088000 {
  675. compatible = "ti,omap4430-timer";
  676. reg = <0x48088000 0x80>;
  677. interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
  678. ti,hwmods = "timer11";
  679. ti,timer-pwm;
  680. };
  681. usbhstll: usbhstll@4a062000 {
  682. compatible = "ti,usbhs-tll";
  683. reg = <0x4a062000 0x1000>;
  684. interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
  685. ti,hwmods = "usb_tll_hs";
  686. };
  687. usbhshost: usbhshost@4a064000 {
  688. compatible = "ti,usbhs-host";
  689. reg = <0x4a064000 0x800>;
  690. ti,hwmods = "usb_host_hs";
  691. #address-cells = <1>;
  692. #size-cells = <1>;
  693. ranges;
  694. clocks = <&init_60m_fclk>,
  695. <&xclk60mhsp1_ck>,
  696. <&xclk60mhsp2_ck>;
  697. clock-names = "refclk_60m_int",
  698. "refclk_60m_ext_p1",
  699. "refclk_60m_ext_p2";
  700. usbhsohci: ohci@4a064800 {
  701. compatible = "ti,ohci-omap3";
  702. reg = <0x4a064800 0x400>;
  703. interrupt-parent = <&gic>;
  704. interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
  705. };
  706. usbhsehci: ehci@4a064c00 {
  707. compatible = "ti,ehci-omap";
  708. reg = <0x4a064c00 0x400>;
  709. interrupt-parent = <&gic>;
  710. interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
  711. };
  712. };
  713. omap_control_usb2phy: control-phy@4a002300 {
  714. compatible = "ti,control-phy-usb2";
  715. reg = <0x4a002300 0x4>;
  716. reg-names = "power";
  717. };
  718. omap_control_usbotg: control-phy@4a00233c {
  719. compatible = "ti,control-phy-otghs";
  720. reg = <0x4a00233c 0x4>;
  721. reg-names = "otghs_control";
  722. };
  723. usb_otg_hs: usb_otg_hs@4a0ab000 {
  724. compatible = "ti,omap4-musb";
  725. reg = <0x4a0ab000 0x7ff>;
  726. interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
  727. interrupt-names = "mc", "dma";
  728. ti,hwmods = "usb_otg_hs";
  729. usb-phy = <&usb2_phy>;
  730. phys = <&usb2_phy>;
  731. phy-names = "usb2-phy";
  732. multipoint = <1>;
  733. num-eps = <16>;
  734. ram-bits = <12>;
  735. ctrl-module = <&omap_control_usbotg>;
  736. };
  737. aes: aes@4b501000 {
  738. compatible = "ti,omap4-aes";
  739. ti,hwmods = "aes";
  740. reg = <0x4b501000 0xa0>;
  741. interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
  742. dmas = <&sdma 111>, <&sdma 110>;
  743. dma-names = "tx", "rx";
  744. };
  745. des: des@480a5000 {
  746. compatible = "ti,omap4-des";
  747. ti,hwmods = "des";
  748. reg = <0x480a5000 0xa0>;
  749. interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
  750. dmas = <&sdma 117>, <&sdma 116>;
  751. dma-names = "tx", "rx";
  752. };
  753. abb_mpu: regulator-abb-mpu {
  754. compatible = "ti,abb-v2";
  755. regulator-name = "abb_mpu";
  756. #address-cells = <0>;
  757. #size-cells = <0>;
  758. ti,tranxdone-status-mask = <0x80>;
  759. clocks = <&sys_clkin_ck>;
  760. ti,settling-time = <50>;
  761. ti,clock-cycles = <16>;
  762. status = "disabled";
  763. };
  764. abb_iva: regulator-abb-iva {
  765. compatible = "ti,abb-v2";
  766. regulator-name = "abb_iva";
  767. #address-cells = <0>;
  768. #size-cells = <0>;
  769. ti,tranxdone-status-mask = <0x80000000>;
  770. clocks = <&sys_clkin_ck>;
  771. ti,settling-time = <50>;
  772. ti,clock-cycles = <16>;
  773. status = "disabled";
  774. };
  775. dss: dss@58000000 {
  776. compatible = "ti,omap4-dss";
  777. reg = <0x58000000 0x80>;
  778. status = "disabled";
  779. ti,hwmods = "dss_core";
  780. clocks = <&dss_dss_clk>;
  781. clock-names = "fck";
  782. #address-cells = <1>;
  783. #size-cells = <1>;
  784. ranges;
  785. dispc@58001000 {
  786. compatible = "ti,omap4-dispc";
  787. reg = <0x58001000 0x1000>;
  788. interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
  789. ti,hwmods = "dss_dispc";
  790. clocks = <&dss_dss_clk>;
  791. clock-names = "fck";
  792. };
  793. rfbi: encoder@58002000 {
  794. compatible = "ti,omap4-rfbi";
  795. reg = <0x58002000 0x1000>;
  796. status = "disabled";
  797. ti,hwmods = "dss_rfbi";
  798. clocks = <&dss_dss_clk>, <&dss_fck>;
  799. clock-names = "fck", "ick";
  800. };
  801. venc: encoder@58003000 {
  802. compatible = "ti,omap4-venc";
  803. reg = <0x58003000 0x1000>;
  804. status = "disabled";
  805. ti,hwmods = "dss_venc";
  806. clocks = <&dss_tv_clk>;
  807. clock-names = "fck";
  808. };
  809. dsi1: encoder@58004000 {
  810. compatible = "ti,omap4-dsi";
  811. reg = <0x58004000 0x200>,
  812. <0x58004200 0x40>,
  813. <0x58004300 0x20>;
  814. reg-names = "proto", "phy", "pll";
  815. interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
  816. status = "disabled";
  817. ti,hwmods = "dss_dsi1";
  818. clocks = <&dss_dss_clk>, <&dss_sys_clk>;
  819. clock-names = "fck", "sys_clk";
  820. };
  821. dsi2: encoder@58005000 {
  822. compatible = "ti,omap4-dsi";
  823. reg = <0x58005000 0x200>,
  824. <0x58005200 0x40>,
  825. <0x58005300 0x20>;
  826. reg-names = "proto", "phy", "pll";
  827. interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
  828. status = "disabled";
  829. ti,hwmods = "dss_dsi2";
  830. clocks = <&dss_dss_clk>, <&dss_sys_clk>;
  831. clock-names = "fck", "sys_clk";
  832. };
  833. hdmi: encoder@58006000 {
  834. compatible = "ti,omap4-hdmi";
  835. reg = <0x58006000 0x200>,
  836. <0x58006200 0x100>,
  837. <0x58006300 0x100>,
  838. <0x58006400 0x1000>;
  839. reg-names = "wp", "pll", "phy", "core";
  840. interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
  841. status = "disabled";
  842. ti,hwmods = "dss_hdmi";
  843. clocks = <&dss_48mhz_clk>, <&dss_sys_clk>;
  844. clock-names = "fck", "sys_clk";
  845. dmas = <&sdma 76>;
  846. dma-names = "audio_tx";
  847. };
  848. };
  849. };
  850. };
  851. /include/ "omap44xx-clocks.dtsi"