imx6q.dtsi 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. /*
  2. * Copyright 2011 Freescale Semiconductor, Inc.
  3. * Copyright 2011 Linaro Ltd.
  4. *
  5. * The code contained herein is licensed under the GNU General Public
  6. * License. You may obtain a copy of the GNU General Public License
  7. * Version 2 or later at the following locations:
  8. *
  9. * http://www.opensource.org/licenses/gpl-license.html
  10. * http://www.gnu.org/copyleft/gpl.html
  11. */
  12. /include/ "skeleton.dtsi"
  13. / {
  14. aliases {
  15. serial0 = &uart1;
  16. serial1 = &uart2;
  17. serial2 = &uart3;
  18. serial3 = &uart4;
  19. serial4 = &uart5;
  20. gpio0 = &gpio1;
  21. gpio1 = &gpio2;
  22. gpio2 = &gpio3;
  23. gpio3 = &gpio4;
  24. gpio4 = &gpio5;
  25. gpio5 = &gpio6;
  26. gpio6 = &gpio7;
  27. };
  28. cpus {
  29. #address-cells = <1>;
  30. #size-cells = <0>;
  31. cpu@0 {
  32. compatible = "arm,cortex-a9";
  33. reg = <0>;
  34. next-level-cache = <&L2>;
  35. };
  36. cpu@1 {
  37. compatible = "arm,cortex-a9";
  38. reg = <1>;
  39. next-level-cache = <&L2>;
  40. };
  41. cpu@2 {
  42. compatible = "arm,cortex-a9";
  43. reg = <2>;
  44. next-level-cache = <&L2>;
  45. };
  46. cpu@3 {
  47. compatible = "arm,cortex-a9";
  48. reg = <3>;
  49. next-level-cache = <&L2>;
  50. };
  51. };
  52. intc: interrupt-controller@00a01000 {
  53. compatible = "arm,cortex-a9-gic";
  54. #interrupt-cells = <3>;
  55. #address-cells = <1>;
  56. #size-cells = <1>;
  57. interrupt-controller;
  58. reg = <0x00a01000 0x1000>,
  59. <0x00a00100 0x100>;
  60. };
  61. clocks {
  62. #address-cells = <1>;
  63. #size-cells = <0>;
  64. ckil {
  65. compatible = "fsl,imx-ckil", "fixed-clock";
  66. clock-frequency = <32768>;
  67. };
  68. ckih1 {
  69. compatible = "fsl,imx-ckih1", "fixed-clock";
  70. clock-frequency = <0>;
  71. };
  72. osc {
  73. compatible = "fsl,imx-osc", "fixed-clock";
  74. clock-frequency = <24000000>;
  75. };
  76. };
  77. soc {
  78. #address-cells = <1>;
  79. #size-cells = <1>;
  80. compatible = "simple-bus";
  81. interrupt-parent = <&intc>;
  82. ranges;
  83. dma-apbh@00110000 {
  84. compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh";
  85. reg = <0x00110000 0x2000>;
  86. };
  87. gpmi-nand@00112000 {
  88. compatible = "fsl,imx6q-gpmi-nand";
  89. #address-cells = <1>;
  90. #size-cells = <1>;
  91. reg = <0x00112000 0x2000>, <0x00114000 0x2000>;
  92. reg-names = "gpmi-nand", "bch";
  93. interrupts = <0 13 0x04>, <0 15 0x04>;
  94. interrupt-names = "gpmi-dma", "bch";
  95. fsl,gpmi-dma-channel = <0>;
  96. status = "disabled";
  97. };
  98. timer@00a00600 {
  99. compatible = "arm,cortex-a9-twd-timer";
  100. reg = <0x00a00600 0x20>;
  101. interrupts = <1 13 0xf01>;
  102. };
  103. L2: l2-cache@00a02000 {
  104. compatible = "arm,pl310-cache";
  105. reg = <0x00a02000 0x1000>;
  106. interrupts = <0 92 0x04>;
  107. cache-unified;
  108. cache-level = <2>;
  109. };
  110. aips-bus@02000000 { /* AIPS1 */
  111. compatible = "fsl,aips-bus", "simple-bus";
  112. #address-cells = <1>;
  113. #size-cells = <1>;
  114. reg = <0x02000000 0x100000>;
  115. ranges;
  116. spba-bus@02000000 {
  117. compatible = "fsl,spba-bus", "simple-bus";
  118. #address-cells = <1>;
  119. #size-cells = <1>;
  120. reg = <0x02000000 0x40000>;
  121. ranges;
  122. spdif@02004000 {
  123. reg = <0x02004000 0x4000>;
  124. interrupts = <0 52 0x04>;
  125. };
  126. ecspi@02008000 { /* eCSPI1 */
  127. #address-cells = <1>;
  128. #size-cells = <0>;
  129. compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
  130. reg = <0x02008000 0x4000>;
  131. interrupts = <0 31 0x04>;
  132. status = "disabled";
  133. };
  134. ecspi@0200c000 { /* eCSPI2 */
  135. #address-cells = <1>;
  136. #size-cells = <0>;
  137. compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
  138. reg = <0x0200c000 0x4000>;
  139. interrupts = <0 32 0x04>;
  140. status = "disabled";
  141. };
  142. ecspi@02010000 { /* eCSPI3 */
  143. #address-cells = <1>;
  144. #size-cells = <0>;
  145. compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
  146. reg = <0x02010000 0x4000>;
  147. interrupts = <0 33 0x04>;
  148. status = "disabled";
  149. };
  150. ecspi@02014000 { /* eCSPI4 */
  151. #address-cells = <1>;
  152. #size-cells = <0>;
  153. compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
  154. reg = <0x02014000 0x4000>;
  155. interrupts = <0 34 0x04>;
  156. status = "disabled";
  157. };
  158. ecspi@02018000 { /* eCSPI5 */
  159. #address-cells = <1>;
  160. #size-cells = <0>;
  161. compatible = "fsl,imx6q-ecspi", "fsl,imx51-ecspi";
  162. reg = <0x02018000 0x4000>;
  163. interrupts = <0 35 0x04>;
  164. status = "disabled";
  165. };
  166. uart1: serial@02020000 {
  167. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  168. reg = <0x02020000 0x4000>;
  169. interrupts = <0 26 0x04>;
  170. status = "disabled";
  171. };
  172. esai@02024000 {
  173. reg = <0x02024000 0x4000>;
  174. interrupts = <0 51 0x04>;
  175. };
  176. ssi1: ssi@02028000 {
  177. compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
  178. reg = <0x02028000 0x4000>;
  179. interrupts = <0 46 0x04>;
  180. fsl,fifo-depth = <15>;
  181. fsl,ssi-dma-events = <38 37>;
  182. status = "disabled";
  183. };
  184. ssi2: ssi@0202c000 {
  185. compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
  186. reg = <0x0202c000 0x4000>;
  187. interrupts = <0 47 0x04>;
  188. fsl,fifo-depth = <15>;
  189. fsl,ssi-dma-events = <42 41>;
  190. status = "disabled";
  191. };
  192. ssi3: ssi@02030000 {
  193. compatible = "fsl,imx6q-ssi","fsl,imx21-ssi";
  194. reg = <0x02030000 0x4000>;
  195. interrupts = <0 48 0x04>;
  196. fsl,fifo-depth = <15>;
  197. fsl,ssi-dma-events = <46 45>;
  198. status = "disabled";
  199. };
  200. asrc@02034000 {
  201. reg = <0x02034000 0x4000>;
  202. interrupts = <0 50 0x04>;
  203. };
  204. spba@0203c000 {
  205. reg = <0x0203c000 0x4000>;
  206. };
  207. };
  208. vpu@02040000 {
  209. reg = <0x02040000 0x3c000>;
  210. interrupts = <0 3 0x04 0 12 0x04>;
  211. };
  212. aipstz@0207c000 { /* AIPSTZ1 */
  213. reg = <0x0207c000 0x4000>;
  214. };
  215. pwm@02080000 { /* PWM1 */
  216. reg = <0x02080000 0x4000>;
  217. interrupts = <0 83 0x04>;
  218. };
  219. pwm@02084000 { /* PWM2 */
  220. reg = <0x02084000 0x4000>;
  221. interrupts = <0 84 0x04>;
  222. };
  223. pwm@02088000 { /* PWM3 */
  224. reg = <0x02088000 0x4000>;
  225. interrupts = <0 85 0x04>;
  226. };
  227. pwm@0208c000 { /* PWM4 */
  228. reg = <0x0208c000 0x4000>;
  229. interrupts = <0 86 0x04>;
  230. };
  231. flexcan@02090000 { /* CAN1 */
  232. reg = <0x02090000 0x4000>;
  233. interrupts = <0 110 0x04>;
  234. };
  235. flexcan@02094000 { /* CAN2 */
  236. reg = <0x02094000 0x4000>;
  237. interrupts = <0 111 0x04>;
  238. };
  239. gpt@02098000 {
  240. compatible = "fsl,imx6q-gpt";
  241. reg = <0x02098000 0x4000>;
  242. interrupts = <0 55 0x04>;
  243. };
  244. gpio1: gpio@0209c000 {
  245. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  246. reg = <0x0209c000 0x4000>;
  247. interrupts = <0 66 0x04 0 67 0x04>;
  248. gpio-controller;
  249. #gpio-cells = <2>;
  250. interrupt-controller;
  251. #interrupt-cells = <2>;
  252. };
  253. gpio2: gpio@020a0000 {
  254. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  255. reg = <0x020a0000 0x4000>;
  256. interrupts = <0 68 0x04 0 69 0x04>;
  257. gpio-controller;
  258. #gpio-cells = <2>;
  259. interrupt-controller;
  260. #interrupt-cells = <2>;
  261. };
  262. gpio3: gpio@020a4000 {
  263. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  264. reg = <0x020a4000 0x4000>;
  265. interrupts = <0 70 0x04 0 71 0x04>;
  266. gpio-controller;
  267. #gpio-cells = <2>;
  268. interrupt-controller;
  269. #interrupt-cells = <2>;
  270. };
  271. gpio4: gpio@020a8000 {
  272. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  273. reg = <0x020a8000 0x4000>;
  274. interrupts = <0 72 0x04 0 73 0x04>;
  275. gpio-controller;
  276. #gpio-cells = <2>;
  277. interrupt-controller;
  278. #interrupt-cells = <2>;
  279. };
  280. gpio5: gpio@020ac000 {
  281. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  282. reg = <0x020ac000 0x4000>;
  283. interrupts = <0 74 0x04 0 75 0x04>;
  284. gpio-controller;
  285. #gpio-cells = <2>;
  286. interrupt-controller;
  287. #interrupt-cells = <2>;
  288. };
  289. gpio6: gpio@020b0000 {
  290. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  291. reg = <0x020b0000 0x4000>;
  292. interrupts = <0 76 0x04 0 77 0x04>;
  293. gpio-controller;
  294. #gpio-cells = <2>;
  295. interrupt-controller;
  296. #interrupt-cells = <2>;
  297. };
  298. gpio7: gpio@020b4000 {
  299. compatible = "fsl,imx6q-gpio", "fsl,imx35-gpio";
  300. reg = <0x020b4000 0x4000>;
  301. interrupts = <0 78 0x04 0 79 0x04>;
  302. gpio-controller;
  303. #gpio-cells = <2>;
  304. interrupt-controller;
  305. #interrupt-cells = <2>;
  306. };
  307. kpp@020b8000 {
  308. reg = <0x020b8000 0x4000>;
  309. interrupts = <0 82 0x04>;
  310. };
  311. wdog@020bc000 { /* WDOG1 */
  312. compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
  313. reg = <0x020bc000 0x4000>;
  314. interrupts = <0 80 0x04>;
  315. status = "disabled";
  316. };
  317. wdog@020c0000 { /* WDOG2 */
  318. compatible = "fsl,imx6q-wdt", "fsl,imx21-wdt";
  319. reg = <0x020c0000 0x4000>;
  320. interrupts = <0 81 0x04>;
  321. status = "disabled";
  322. };
  323. ccm@020c4000 {
  324. compatible = "fsl,imx6q-ccm";
  325. reg = <0x020c4000 0x4000>;
  326. interrupts = <0 87 0x04 0 88 0x04>;
  327. };
  328. anatop@020c8000 {
  329. compatible = "fsl,imx6q-anatop";
  330. reg = <0x020c8000 0x1000>;
  331. interrupts = <0 49 0x04 0 54 0x04 0 127 0x04>;
  332. regulator-1p1@110 {
  333. compatible = "fsl,anatop-regulator";
  334. regulator-name = "vdd1p1";
  335. regulator-min-microvolt = <800000>;
  336. regulator-max-microvolt = <1375000>;
  337. regulator-always-on;
  338. anatop-reg-offset = <0x110>;
  339. anatop-vol-bit-shift = <8>;
  340. anatop-vol-bit-width = <5>;
  341. anatop-min-bit-val = <4>;
  342. anatop-min-voltage = <800000>;
  343. anatop-max-voltage = <1375000>;
  344. };
  345. regulator-3p0@120 {
  346. compatible = "fsl,anatop-regulator";
  347. regulator-name = "vdd3p0";
  348. regulator-min-microvolt = <2800000>;
  349. regulator-max-microvolt = <3150000>;
  350. regulator-always-on;
  351. anatop-reg-offset = <0x120>;
  352. anatop-vol-bit-shift = <8>;
  353. anatop-vol-bit-width = <5>;
  354. anatop-min-bit-val = <0>;
  355. anatop-min-voltage = <2625000>;
  356. anatop-max-voltage = <3400000>;
  357. };
  358. regulator-2p5@130 {
  359. compatible = "fsl,anatop-regulator";
  360. regulator-name = "vdd2p5";
  361. regulator-min-microvolt = <2000000>;
  362. regulator-max-microvolt = <2750000>;
  363. regulator-always-on;
  364. anatop-reg-offset = <0x130>;
  365. anatop-vol-bit-shift = <8>;
  366. anatop-vol-bit-width = <5>;
  367. anatop-min-bit-val = <0>;
  368. anatop-min-voltage = <2000000>;
  369. anatop-max-voltage = <2750000>;
  370. };
  371. regulator-vddcore@140 {
  372. compatible = "fsl,anatop-regulator";
  373. regulator-name = "cpu";
  374. regulator-min-microvolt = <725000>;
  375. regulator-max-microvolt = <1450000>;
  376. regulator-always-on;
  377. anatop-reg-offset = <0x140>;
  378. anatop-vol-bit-shift = <0>;
  379. anatop-vol-bit-width = <5>;
  380. anatop-min-bit-val = <1>;
  381. anatop-min-voltage = <725000>;
  382. anatop-max-voltage = <1450000>;
  383. };
  384. regulator-vddpu@140 {
  385. compatible = "fsl,anatop-regulator";
  386. regulator-name = "vddpu";
  387. regulator-min-microvolt = <725000>;
  388. regulator-max-microvolt = <1450000>;
  389. regulator-always-on;
  390. anatop-reg-offset = <0x140>;
  391. anatop-vol-bit-shift = <9>;
  392. anatop-vol-bit-width = <5>;
  393. anatop-min-bit-val = <1>;
  394. anatop-min-voltage = <725000>;
  395. anatop-max-voltage = <1450000>;
  396. };
  397. regulator-vddsoc@140 {
  398. compatible = "fsl,anatop-regulator";
  399. regulator-name = "vddsoc";
  400. regulator-min-microvolt = <725000>;
  401. regulator-max-microvolt = <1450000>;
  402. regulator-always-on;
  403. anatop-reg-offset = <0x140>;
  404. anatop-vol-bit-shift = <18>;
  405. anatop-vol-bit-width = <5>;
  406. anatop-min-bit-val = <1>;
  407. anatop-min-voltage = <725000>;
  408. anatop-max-voltage = <1450000>;
  409. };
  410. };
  411. usbphy1: usbphy@020c9000 {
  412. compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
  413. reg = <0x020c9000 0x1000>;
  414. interrupts = <0 44 0x04>;
  415. };
  416. usbphy2: usbphy@020ca000 {
  417. compatible = "fsl,imx6q-usbphy", "fsl,imx23-usbphy";
  418. reg = <0x020ca000 0x1000>;
  419. interrupts = <0 45 0x04>;
  420. };
  421. snvs@020cc000 {
  422. reg = <0x020cc000 0x4000>;
  423. interrupts = <0 19 0x04 0 20 0x04>;
  424. };
  425. epit@020d0000 { /* EPIT1 */
  426. reg = <0x020d0000 0x4000>;
  427. interrupts = <0 56 0x04>;
  428. };
  429. epit@020d4000 { /* EPIT2 */
  430. reg = <0x020d4000 0x4000>;
  431. interrupts = <0 57 0x04>;
  432. };
  433. src@020d8000 {
  434. compatible = "fsl,imx6q-src";
  435. reg = <0x020d8000 0x4000>;
  436. interrupts = <0 91 0x04 0 96 0x04>;
  437. };
  438. gpc@020dc000 {
  439. compatible = "fsl,imx6q-gpc";
  440. reg = <0x020dc000 0x4000>;
  441. interrupts = <0 89 0x04 0 90 0x04>;
  442. };
  443. iomuxc@020e0000 {
  444. compatible = "fsl,imx6q-iomuxc";
  445. reg = <0x020e0000 0x4000>;
  446. /* shared pinctrl settings */
  447. audmux {
  448. pinctrl_audmux_1: audmux-1 {
  449. fsl,pins = <18 0x80000000 /* MX6Q_PAD_SD2_DAT0__AUDMUX_AUD4_RXD */
  450. 1586 0x80000000 /* MX6Q_PAD_SD2_DAT3__AUDMUX_AUD4_TXC */
  451. 11 0x80000000 /* MX6Q_PAD_SD2_DAT2__AUDMUX_AUD4_TXD */
  452. 3 0x80000000>; /* MX6Q_PAD_SD2_DAT1__AUDMUX_AUD4_TXFS */
  453. };
  454. };
  455. gpmi-nand {
  456. pinctrl_gpmi_nand_1: gpmi-nand-1 {
  457. fsl,pins = <1328 0xb0b1 /* MX6Q_PAD_NANDF_CLE__RAWNAND_CLE */
  458. 1336 0xb0b1 /* MX6Q_PAD_NANDF_ALE__RAWNAND_ALE */
  459. 1344 0xb0b1 /* MX6Q_PAD_NANDF_WP_B__RAWNAND_RESETN */
  460. 1352 0xb000 /* MX6Q_PAD_NANDF_RB0__RAWNAND_READY0 */
  461. 1360 0xb0b1 /* MX6Q_PAD_NANDF_CS0__RAWNAND_CE0N */
  462. 1365 0xb0b1 /* MX6Q_PAD_NANDF_CS1__RAWNAND_CE1N */
  463. 1371 0xb0b1 /* MX6Q_PAD_NANDF_CS2__RAWNAND_CE2N */
  464. 1378 0xb0b1 /* MX6Q_PAD_NANDF_CS3__RAWNAND_CE3N */
  465. 1387 0xb0b1 /* MX6Q_PAD_SD4_CMD__RAWNAND_RDN */
  466. 1393 0xb0b1 /* MX6Q_PAD_SD4_CLK__RAWNAND_WRN */
  467. 1397 0xb0b1 /* MX6Q_PAD_NANDF_D0__RAWNAND_D0 */
  468. 1405 0xb0b1 /* MX6Q_PAD_NANDF_D1__RAWNAND_D1 */
  469. 1413 0xb0b1 /* MX6Q_PAD_NANDF_D2__RAWNAND_D2 */
  470. 1421 0xb0b1 /* MX6Q_PAD_NANDF_D3__RAWNAND_D3 */
  471. 1429 0xb0b1 /* MX6Q_PAD_NANDF_D4__RAWNAND_D4 */
  472. 1437 0xb0b1 /* MX6Q_PAD_NANDF_D5__RAWNAND_D5 */
  473. 1445 0xb0b1 /* MX6Q_PAD_NANDF_D6__RAWNAND_D6 */
  474. 1453 0xb0b1 /* MX6Q_PAD_NANDF_D7__RAWNAND_D7 */
  475. 1463 0x00b1>; /* MX6Q_PAD_SD4_DAT0__RAWNAND_DQS */
  476. };
  477. };
  478. i2c1 {
  479. pinctrl_i2c1_1: i2c1grp-1 {
  480. fsl,pins = <137 0x4001b8b1 /* MX6Q_PAD_EIM_D21__I2C1_SCL */
  481. 196 0x4001b8b1>; /* MX6Q_PAD_EIM_D28__I2C1_SDA */
  482. };
  483. };
  484. serial2 {
  485. pinctrl_serial2_1: serial2grp-1 {
  486. fsl,pins = <183 0x1b0b1 /* MX6Q_PAD_EIM_D26__UART2_TXD */
  487. 191 0x1b0b1>; /* MX6Q_PAD_EIM_D27__UART2_RXD */
  488. };
  489. };
  490. usdhc3 {
  491. pinctrl_usdhc3_1: usdhc3grp-1 {
  492. fsl,pins = <1273 0x17059 /* MX6Q_PAD_SD3_CMD__USDHC3_CMD */
  493. 1281 0x10059 /* MX6Q_PAD_SD3_CLK__USDHC3_CLK */
  494. 1289 0x17059 /* MX6Q_PAD_SD3_DAT0__USDHC3_DAT0 */
  495. 1297 0x17059 /* MX6Q_PAD_SD3_DAT1__USDHC3_DAT1 */
  496. 1305 0x17059 /* MX6Q_PAD_SD3_DAT2__USDHC3_DAT2 */
  497. 1312 0x17059 /* MX6Q_PAD_SD3_DAT3__USDHC3_DAT3 */
  498. 1265 0x17059 /* MX6Q_PAD_SD3_DAT4__USDHC3_DAT4 */
  499. 1257 0x17059 /* MX6Q_PAD_SD3_DAT5__USDHC3_DAT5 */
  500. 1249 0x17059 /* MX6Q_PAD_SD3_DAT6__USDHC3_DAT6 */
  501. 1241 0x17059>; /* MX6Q_PAD_SD3_DAT7__USDHC3_DAT7 */
  502. };
  503. };
  504. usdhc4 {
  505. pinctrl_usdhc4_1: usdhc4grp-1 {
  506. fsl,pins = <1386 0x17059 /* MX6Q_PAD_SD4_CMD__USDHC4_CMD */
  507. 1392 0x10059 /* MX6Q_PAD_SD4_CLK__USDHC4_CLK */
  508. 1462 0x17059 /* MX6Q_PAD_SD4_DAT0__USDHC4_DAT0 */
  509. 1470 0x17059 /* MX6Q_PAD_SD4_DAT1__USDHC4_DAT1 */
  510. 1478 0x17059 /* MX6Q_PAD_SD4_DAT2__USDHC4_DAT2 */
  511. 1486 0x17059 /* MX6Q_PAD_SD4_DAT3__USDHC4_DAT3 */
  512. 1493 0x17059 /* MX6Q_PAD_SD4_DAT4__USDHC4_DAT4 */
  513. 1501 0x17059 /* MX6Q_PAD_SD4_DAT5__USDHC4_DAT5 */
  514. 1509 0x17059 /* MX6Q_PAD_SD4_DAT6__USDHC4_DAT6 */
  515. 1517 0x17059>; /* MX6Q_PAD_SD4_DAT7__USDHC4_DAT7 */
  516. };
  517. };
  518. ecspi1 {
  519. pinctrl_ecspi1_1: ecspi1grp-1 {
  520. fsl,pins = <101 0x100b1 /* MX6Q_PAD_EIM_D17__ECSPI1_MISO */
  521. 109 0x100b1 /* MX6Q_PAD_EIM_D18__ECSPI1_MOSI */
  522. 94 0x100b1>; /* MX6Q_PAD_EIM_D16__ECSPI1_SCLK */
  523. };
  524. };
  525. };
  526. dcic@020e4000 { /* DCIC1 */
  527. reg = <0x020e4000 0x4000>;
  528. interrupts = <0 124 0x04>;
  529. };
  530. dcic@020e8000 { /* DCIC2 */
  531. reg = <0x020e8000 0x4000>;
  532. interrupts = <0 125 0x04>;
  533. };
  534. sdma@020ec000 {
  535. compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma";
  536. reg = <0x020ec000 0x4000>;
  537. interrupts = <0 2 0x04>;
  538. };
  539. };
  540. aips-bus@02100000 { /* AIPS2 */
  541. compatible = "fsl,aips-bus", "simple-bus";
  542. #address-cells = <1>;
  543. #size-cells = <1>;
  544. reg = <0x02100000 0x100000>;
  545. ranges;
  546. caam@02100000 {
  547. reg = <0x02100000 0x40000>;
  548. interrupts = <0 105 0x04 0 106 0x04>;
  549. };
  550. aipstz@0217c000 { /* AIPSTZ2 */
  551. reg = <0x0217c000 0x4000>;
  552. };
  553. usb@02184000 { /* USB OTG */
  554. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  555. reg = <0x02184000 0x200>;
  556. interrupts = <0 43 0x04>;
  557. fsl,usbphy = <&usbphy1>;
  558. status = "disabled";
  559. };
  560. usb@02184200 { /* USB1 */
  561. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  562. reg = <0x02184200 0x200>;
  563. interrupts = <0 40 0x04>;
  564. fsl,usbphy = <&usbphy2>;
  565. status = "disabled";
  566. };
  567. usb@02184400 { /* USB2 */
  568. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  569. reg = <0x02184400 0x200>;
  570. interrupts = <0 41 0x04>;
  571. status = "disabled";
  572. };
  573. usb@02184600 { /* USB3 */
  574. compatible = "fsl,imx6q-usb", "fsl,imx27-usb";
  575. reg = <0x02184600 0x200>;
  576. interrupts = <0 42 0x04>;
  577. status = "disabled";
  578. };
  579. ethernet@02188000 {
  580. compatible = "fsl,imx6q-fec";
  581. reg = <0x02188000 0x4000>;
  582. interrupts = <0 118 0x04 0 119 0x04>;
  583. status = "disabled";
  584. };
  585. mlb@0218c000 {
  586. reg = <0x0218c000 0x4000>;
  587. interrupts = <0 53 0x04 0 117 0x04 0 126 0x04>;
  588. };
  589. usdhc@02190000 { /* uSDHC1 */
  590. compatible = "fsl,imx6q-usdhc";
  591. reg = <0x02190000 0x4000>;
  592. interrupts = <0 22 0x04>;
  593. status = "disabled";
  594. };
  595. usdhc@02194000 { /* uSDHC2 */
  596. compatible = "fsl,imx6q-usdhc";
  597. reg = <0x02194000 0x4000>;
  598. interrupts = <0 23 0x04>;
  599. status = "disabled";
  600. };
  601. usdhc@02198000 { /* uSDHC3 */
  602. compatible = "fsl,imx6q-usdhc";
  603. reg = <0x02198000 0x4000>;
  604. interrupts = <0 24 0x04>;
  605. status = "disabled";
  606. };
  607. usdhc@0219c000 { /* uSDHC4 */
  608. compatible = "fsl,imx6q-usdhc";
  609. reg = <0x0219c000 0x4000>;
  610. interrupts = <0 25 0x04>;
  611. status = "disabled";
  612. };
  613. i2c@021a0000 { /* I2C1 */
  614. #address-cells = <1>;
  615. #size-cells = <0>;
  616. compatible = "fsl,imx6q-i2c", "fsl,imx1-i2c";
  617. reg = <0x021a0000 0x4000>;
  618. interrupts = <0 36 0x04>;
  619. status = "disabled";
  620. };
  621. i2c@021a4000 { /* I2C2 */
  622. #address-cells = <1>;
  623. #size-cells = <0>;
  624. compatible = "fsl,imx6q-i2c", "fsl,imx1-i2c";
  625. reg = <0x021a4000 0x4000>;
  626. interrupts = <0 37 0x04>;
  627. status = "disabled";
  628. };
  629. i2c@021a8000 { /* I2C3 */
  630. #address-cells = <1>;
  631. #size-cells = <0>;
  632. compatible = "fsl,imx6q-i2c", "fsl,imx1-i2c";
  633. reg = <0x021a8000 0x4000>;
  634. interrupts = <0 38 0x04>;
  635. status = "disabled";
  636. };
  637. romcp@021ac000 {
  638. reg = <0x021ac000 0x4000>;
  639. };
  640. mmdc@021b0000 { /* MMDC0 */
  641. compatible = "fsl,imx6q-mmdc";
  642. reg = <0x021b0000 0x4000>;
  643. };
  644. mmdc@021b4000 { /* MMDC1 */
  645. reg = <0x021b4000 0x4000>;
  646. };
  647. weim@021b8000 {
  648. reg = <0x021b8000 0x4000>;
  649. interrupts = <0 14 0x04>;
  650. };
  651. ocotp@021bc000 {
  652. reg = <0x021bc000 0x4000>;
  653. };
  654. ocotp@021c0000 {
  655. reg = <0x021c0000 0x4000>;
  656. interrupts = <0 21 0x04>;
  657. };
  658. tzasc@021d0000 { /* TZASC1 */
  659. reg = <0x021d0000 0x4000>;
  660. interrupts = <0 108 0x04>;
  661. };
  662. tzasc@021d4000 { /* TZASC2 */
  663. reg = <0x021d4000 0x4000>;
  664. interrupts = <0 109 0x04>;
  665. };
  666. audmux@021d8000 {
  667. compatible = "fsl,imx6q-audmux", "fsl,imx31-audmux";
  668. reg = <0x021d8000 0x4000>;
  669. status = "disabled";
  670. };
  671. mipi@021dc000 { /* MIPI-CSI */
  672. reg = <0x021dc000 0x4000>;
  673. };
  674. mipi@021e0000 { /* MIPI-DSI */
  675. reg = <0x021e0000 0x4000>;
  676. };
  677. vdoa@021e4000 {
  678. reg = <0x021e4000 0x4000>;
  679. interrupts = <0 18 0x04>;
  680. };
  681. uart2: serial@021e8000 {
  682. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  683. reg = <0x021e8000 0x4000>;
  684. interrupts = <0 27 0x04>;
  685. status = "disabled";
  686. };
  687. uart3: serial@021ec000 {
  688. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  689. reg = <0x021ec000 0x4000>;
  690. interrupts = <0 28 0x04>;
  691. status = "disabled";
  692. };
  693. uart4: serial@021f0000 {
  694. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  695. reg = <0x021f0000 0x4000>;
  696. interrupts = <0 29 0x04>;
  697. status = "disabled";
  698. };
  699. uart5: serial@021f4000 {
  700. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  701. reg = <0x021f4000 0x4000>;
  702. interrupts = <0 30 0x04>;
  703. status = "disabled";
  704. };
  705. };
  706. };
  707. };