imx6qdl-gw551x.dtsi 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. /*
  2. * Copyright 2014 Gateworks Corporation
  3. *
  4. * This file is dual-licensed: you can use it either under the terms
  5. * of the GPL or the X11 license, at your option. Note that this dual
  6. * licensing only applies to this file, and not this project as a
  7. * whole.
  8. *
  9. * a) This file is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This file is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public
  20. * License along with this file; if not, write to the Free
  21. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
  22. * MA 02110-1301 USA
  23. *
  24. * Or, alternatively,
  25. *
  26. * b) Permission is hereby granted, free of charge, to any person
  27. * obtaining a copy of this software and associated documentation
  28. * files (the "Software"), to deal in the Software without
  29. * restriction, including without limitation the rights to use,
  30. * copy, modify, merge, publish, distribute, sublicense, and/or
  31. * sell copies of the Software, and to permit persons to whom the
  32. * Software is furnished to do so, subject to the following
  33. * conditions:
  34. *
  35. * The above copyright notice and this permission notice shall be
  36. * included in all copies or substantial portions of the Software.
  37. *
  38. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  39. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  40. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  41. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  42. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  43. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  44. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  45. * OTHER DEALINGS IN THE SOFTWARE.
  46. */
  47. #include <dt-bindings/gpio/gpio.h>
  48. #include <dt-bindings/media/tda1997x.h>
  49. #include <dt-bindings/input/linux-event-codes.h>
  50. #include <dt-bindings/interrupt-controller/irq.h>
  51. #include <dt-bindings/sound/fsl-imx-audmux.h>
  52. / {
  53. /* these are used by bootloader for disabling nodes */
  54. aliases {
  55. led0 = &led0;
  56. nand = &gpmi;
  57. ssi0 = &ssi1;
  58. usb0 = &usbh1;
  59. usb1 = &usbotg;
  60. };
  61. chosen {
  62. bootargs = "console=ttymxc1,115200";
  63. };
  64. gpio-keys {
  65. compatible = "gpio-keys";
  66. user-pb {
  67. label = "user_pb";
  68. gpios = <&gsc_gpio 0 GPIO_ACTIVE_LOW>;
  69. linux,code = <BTN_0>;
  70. };
  71. user-pb1x {
  72. label = "user_pb1x";
  73. linux,code = <BTN_1>;
  74. interrupt-parent = <&gsc>;
  75. interrupts = <0>;
  76. };
  77. key-erased {
  78. label = "key-erased";
  79. linux,code = <BTN_2>;
  80. interrupt-parent = <&gsc>;
  81. interrupts = <1>;
  82. };
  83. eeprom-wp {
  84. label = "eeprom_wp";
  85. linux,code = <BTN_3>;
  86. interrupt-parent = <&gsc>;
  87. interrupts = <2>;
  88. };
  89. tamper {
  90. label = "tamper";
  91. linux,code = <BTN_4>;
  92. interrupt-parent = <&gsc>;
  93. interrupts = <5>;
  94. };
  95. switch-hold {
  96. label = "switch_hold";
  97. linux,code = <BTN_5>;
  98. interrupt-parent = <&gsc>;
  99. interrupts = <7>;
  100. };
  101. };
  102. leds {
  103. compatible = "gpio-leds";
  104. pinctrl-names = "default";
  105. pinctrl-0 = <&pinctrl_gpio_leds>;
  106. led0: led-user1 {
  107. label = "user1";
  108. gpios = <&gpio4 7 GPIO_ACTIVE_LOW>;
  109. default-state = "on";
  110. linux,default-trigger = "heartbeat";
  111. };
  112. };
  113. memory@10000000 {
  114. device_type = "memory";
  115. reg = <0x10000000 0x20000000>;
  116. };
  117. reg_5p0v: regulator-5p0v {
  118. compatible = "regulator-fixed";
  119. regulator-name = "5P0V";
  120. regulator-min-microvolt = <5000000>;
  121. regulator-max-microvolt = <5000000>;
  122. };
  123. reg_usb_h1_vbus: regulator-usb-h1-vbus {
  124. compatible = "regulator-fixed";
  125. regulator-name = "usb_h1_vbus";
  126. regulator-min-microvolt = <5000000>;
  127. regulator-max-microvolt = <5000000>;
  128. };
  129. reg_usb_otg_vbus: regulator-usb-otg-vbus {
  130. compatible = "regulator-fixed";
  131. regulator-name = "usb_otg_vbus";
  132. regulator-min-microvolt = <5000000>;
  133. regulator-max-microvolt = <5000000>;
  134. };
  135. sound-digital {
  136. compatible = "simple-audio-card";
  137. simple-audio-card,name = "tda1997x-audio";
  138. simple-audio-card,format = "i2s";
  139. simple-audio-card,bitclock-master = <&sound_codec>;
  140. simple-audio-card,frame-master = <&sound_codec>;
  141. sound_cpu: simple-audio-card,cpu {
  142. sound-dai = <&ssi1>;
  143. };
  144. sound_codec: simple-audio-card,codec {
  145. sound-dai = <&hdmi_receiver>;
  146. };
  147. };
  148. };
  149. &audmux {
  150. pinctrl-names = "default";
  151. pinctrl-0 = <&pinctrl_audmux>; /* AUD5<->tda1997x */
  152. status = "okay";
  153. ssi1 {
  154. fsl,audmux-port = <0>;
  155. fsl,port-config = <
  156. (IMX_AUDMUX_V2_PTCR_TFSDIR |
  157. IMX_AUDMUX_V2_PTCR_TFSEL(4+8) | /* RXFS */
  158. IMX_AUDMUX_V2_PTCR_TCLKDIR |
  159. IMX_AUDMUX_V2_PTCR_TCSEL(4+8) | /* RXC */
  160. IMX_AUDMUX_V2_PTCR_SYN)
  161. IMX_AUDMUX_V2_PDCR_RXDSEL(4)
  162. >;
  163. };
  164. aud5 {
  165. fsl,audmux-port = <4>;
  166. fsl,port-config = <
  167. IMX_AUDMUX_V2_PTCR_SYN
  168. IMX_AUDMUX_V2_PDCR_RXDSEL(0)>;
  169. };
  170. };
  171. &can1 {
  172. pinctrl-names = "default";
  173. pinctrl-0 = <&pinctrl_flexcan1>;
  174. status = "okay";
  175. };
  176. &gpmi {
  177. pinctrl-names = "default";
  178. pinctrl-0 = <&pinctrl_gpmi_nand>;
  179. status = "okay";
  180. };
  181. &hdmi {
  182. ddc-i2c-bus = <&i2c3>;
  183. status = "okay";
  184. };
  185. &i2c1 {
  186. clock-frequency = <100000>;
  187. pinctrl-names = "default";
  188. pinctrl-0 = <&pinctrl_i2c1>;
  189. status = "okay";
  190. gsc: gsc@20 {
  191. compatible = "gw,gsc";
  192. reg = <0x20>;
  193. interrupt-parent = <&gpio1>;
  194. interrupts = <4 IRQ_TYPE_LEVEL_LOW>;
  195. interrupt-controller;
  196. #interrupt-cells = <1>;
  197. #size-cells = <0>;
  198. adc {
  199. compatible = "gw,gsc-adc";
  200. #address-cells = <1>;
  201. #size-cells = <0>;
  202. channel@0 {
  203. gw,mode = <0>;
  204. reg = <0x00>;
  205. label = "temp";
  206. };
  207. channel@2 {
  208. gw,mode = <1>;
  209. reg = <0x02>;
  210. label = "vdd_vin";
  211. };
  212. channel@5 {
  213. gw,mode = <1>;
  214. reg = <0x05>;
  215. label = "vdd_3p3";
  216. };
  217. channel@8 {
  218. gw,mode = <1>;
  219. reg = <0x08>;
  220. label = "vdd_bat";
  221. };
  222. channel@b {
  223. gw,mode = <1>;
  224. reg = <0x0b>;
  225. label = "vdd_5p0";
  226. };
  227. channel@e {
  228. gw,mode = <1>;
  229. reg = <0xe>;
  230. label = "vdd_arm";
  231. };
  232. channel@11 {
  233. gw,mode = <1>;
  234. reg = <0x11>;
  235. label = "vdd_soc";
  236. };
  237. channel@14 {
  238. gw,mode = <1>;
  239. reg = <0x14>;
  240. label = "vdd_3p0";
  241. };
  242. channel@17 {
  243. gw,mode = <1>;
  244. reg = <0x17>;
  245. label = "vdd_1p5";
  246. };
  247. channel@1d {
  248. gw,mode = <1>;
  249. reg = <0x1d>;
  250. label = "vdd_1p8a";
  251. };
  252. channel@20 {
  253. gw,mode = <1>;
  254. reg = <0x20>;
  255. label = "vdd_1p0b";
  256. };
  257. };
  258. };
  259. gsc_gpio: gpio@23 {
  260. compatible = "nxp,pca9555";
  261. reg = <0x23>;
  262. gpio-controller;
  263. #gpio-cells = <2>;
  264. interrupt-parent = <&gsc>;
  265. interrupts = <4>;
  266. };
  267. eeprom1: eeprom@50 {
  268. compatible = "atmel,24c02";
  269. reg = <0x50>;
  270. pagesize = <16>;
  271. };
  272. eeprom2: eeprom@51 {
  273. compatible = "atmel,24c02";
  274. reg = <0x51>;
  275. pagesize = <16>;
  276. };
  277. eeprom3: eeprom@52 {
  278. compatible = "atmel,24c02";
  279. reg = <0x52>;
  280. pagesize = <16>;
  281. };
  282. eeprom4: eeprom@53 {
  283. compatible = "atmel,24c02";
  284. reg = <0x53>;
  285. pagesize = <16>;
  286. };
  287. rtc: ds1672@68 {
  288. compatible = "dallas,ds1672";
  289. reg = <0x68>;
  290. };
  291. };
  292. &i2c2 {
  293. clock-frequency = <100000>;
  294. pinctrl-names = "default";
  295. pinctrl-0 = <&pinctrl_i2c2>;
  296. status = "okay";
  297. ltc3676: pmic@3c {
  298. compatible = "lltc,ltc3676";
  299. reg = <0x3c>;
  300. pinctrl-names = "default";
  301. pinctrl-0 = <&pinctrl_pmic>;
  302. interrupt-parent = <&gpio1>;
  303. interrupts = <8 IRQ_TYPE_EDGE_FALLING>;
  304. regulators {
  305. /* VDD_SOC (1+R1/R2 = 1.635) */
  306. reg_vdd_soc: sw1 {
  307. regulator-name = "vddsoc";
  308. regulator-min-microvolt = <674400>;
  309. regulator-max-microvolt = <1308000>;
  310. lltc,fb-voltage-divider = <127000 200000>;
  311. regulator-ramp-delay = <7000>;
  312. regulator-boot-on;
  313. regulator-always-on;
  314. };
  315. /* VDD_DDR (1+R1/R2 = 2.105) */
  316. reg_vdd_ddr: sw2 {
  317. regulator-name = "vddddr";
  318. regulator-min-microvolt = <868310>;
  319. regulator-max-microvolt = <1684000>;
  320. lltc,fb-voltage-divider = <221000 200000>;
  321. regulator-ramp-delay = <7000>;
  322. regulator-boot-on;
  323. regulator-always-on;
  324. };
  325. /* VDD_ARM (1+R1/R2 = 1.635) */
  326. reg_vdd_arm: sw3 {
  327. regulator-name = "vddarm";
  328. regulator-min-microvolt = <674400>;
  329. regulator-max-microvolt = <1308000>;
  330. lltc,fb-voltage-divider = <127000 200000>;
  331. regulator-ramp-delay = <7000>;
  332. regulator-boot-on;
  333. regulator-always-on;
  334. };
  335. /* VDD_3P3 (1+R1/R2 = 1.281) */
  336. reg_3p3: sw4 {
  337. regulator-name = "vdd3p3";
  338. regulator-min-microvolt = <1880000>;
  339. regulator-max-microvolt = <3647000>;
  340. lltc,fb-voltage-divider = <200000 56200>;
  341. regulator-ramp-delay = <7000>;
  342. regulator-boot-on;
  343. regulator-always-on;
  344. };
  345. /* VDD_1P8a (1+R1/R2 = 2.505): HDMI In core */
  346. reg_1p8a: ldo2 {
  347. regulator-name = "vdd1p8a";
  348. regulator-min-microvolt = <1816125>;
  349. regulator-max-microvolt = <1816125>;
  350. lltc,fb-voltage-divider = <301000 200000>;
  351. regulator-boot-on;
  352. regulator-always-on;
  353. };
  354. /* VDD_1P8b: HDMI In analog */
  355. reg_1p8b: ldo3 {
  356. regulator-name = "vdd1p8b";
  357. regulator-min-microvolt = <1800000>;
  358. regulator-max-microvolt = <1800000>;
  359. regulator-boot-on;
  360. };
  361. /* VDD_HIGH (1+R1/R2 = 4.17) */
  362. reg_3p0: ldo4 {
  363. regulator-name = "vdd3p0";
  364. regulator-min-microvolt = <3023250>;
  365. regulator-max-microvolt = <3023250>;
  366. lltc,fb-voltage-divider = <634000 200000>;
  367. regulator-boot-on;
  368. regulator-always-on;
  369. };
  370. };
  371. };
  372. };
  373. &i2c3 {
  374. clock-frequency = <100000>;
  375. pinctrl-names = "default";
  376. pinctrl-0 = <&pinctrl_i2c3>;
  377. status = "okay";
  378. gpio_exp: pca9555@24 {
  379. compatible = "nxp,pca9555";
  380. reg = <0x24>;
  381. gpio-controller;
  382. #gpio-cells = <2>;
  383. };
  384. hdmi_receiver: hdmi-receiver@48 {
  385. compatible = "nxp,tda19971";
  386. pinctrl-names = "default";
  387. pinctrl-0 = <&pinctrl_tda1997x>;
  388. reg = <0x48>;
  389. interrupt-parent = <&gpio1>;
  390. interrupts = <7 IRQ_TYPE_LEVEL_LOW>;
  391. DOVDD-supply = <&reg_3p3>;
  392. AVDD-supply = <&reg_1p8b>;
  393. DVDD-supply = <&reg_1p8a>;
  394. #sound-dai-cells = <0>;
  395. nxp,audout-format = "i2s";
  396. nxp,audout-layout = <0>;
  397. nxp,audout-width = <16>;
  398. nxp,audout-mclk-fs = <128>;
  399. /*
  400. * The 8bpp YUV422 semi-planar mode outputs CbCr[11:4]
  401. * and Y[11:4] across 16bits in the same cycle
  402. * which we map to VP[15:08]<->CSI_DATA[19:12]
  403. */
  404. nxp,vidout-portcfg =
  405. /*G_Y_11_8<->VP[15:12]<->CSI_DATA[19:16]*/
  406. < TDA1997X_VP24_V15_12 TDA1997X_G_Y_11_8 >,
  407. /*G_Y_7_4<->VP[11:08]<->CSI_DATA[15:12]*/
  408. < TDA1997X_VP24_V11_08 TDA1997X_G_Y_7_4 >,
  409. /*R_CR_CBCR_11_8<->VP[07:04]<->CSI_DATA[11:08]*/
  410. < TDA1997X_VP24_V07_04 TDA1997X_R_CR_CBCR_11_8 >,
  411. /*R_CR_CBCR_7_4<->VP[03:00]<->CSI_DATA[07:04]*/
  412. < TDA1997X_VP24_V03_00 TDA1997X_R_CR_CBCR_7_4 >;
  413. port {
  414. tda1997x_to_ipu1_csi0_mux: endpoint {
  415. remote-endpoint = <&ipu1_csi0_mux_from_parallel_sensor>;
  416. bus-width = <16>;
  417. hsync-active = <1>;
  418. vsync-active = <1>;
  419. data-active = <1>;
  420. };
  421. };
  422. };
  423. };
  424. &ipu1_csi0_from_ipu1_csi0_mux {
  425. bus-width = <16>;
  426. };
  427. &ipu1_csi0_mux_from_parallel_sensor {
  428. remote-endpoint = <&tda1997x_to_ipu1_csi0_mux>;
  429. bus-width = <16>;
  430. };
  431. &ipu1_csi0 {
  432. pinctrl-names = "default";
  433. pinctrl-0 = <&pinctrl_ipu1_csi0>;
  434. };
  435. &pcie {
  436. pinctrl-names = "default";
  437. pinctrl-0 = <&pinctrl_pcie>;
  438. reset-gpio = <&gpio1 0 GPIO_ACTIVE_LOW>;
  439. status = "okay";
  440. };
  441. &pwm2 {
  442. pinctrl-names = "default";
  443. pinctrl-0 = <&pinctrl_pwm2>; /* MX6_DIO1 */
  444. status = "disabled";
  445. };
  446. &pwm3 {
  447. pinctrl-names = "default";
  448. pinctrl-0 = <&pinctrl_pwm3>; /* MX6_DIO2 */
  449. status = "disabled";
  450. };
  451. &ssi1 {
  452. status = "okay";
  453. };
  454. &uart2 {
  455. pinctrl-names = "default";
  456. pinctrl-0 = <&pinctrl_uart2>;
  457. status = "okay";
  458. };
  459. &uart3 {
  460. pinctrl-names = "default";
  461. pinctrl-0 = <&pinctrl_uart3>;
  462. status = "okay";
  463. };
  464. &usbotg {
  465. vbus-supply = <&reg_usb_otg_vbus>;
  466. pinctrl-names = "default";
  467. pinctrl-0 = <&pinctrl_usbotg>;
  468. disable-over-current;
  469. status = "okay";
  470. };
  471. &usbh1 {
  472. vbus-supply = <&reg_usb_h1_vbus>;
  473. status = "okay";
  474. };
  475. &wdog1 {
  476. pinctrl-names = "default";
  477. pinctrl-0 = <&pinctrl_wdog>;
  478. fsl,ext-reset-output;
  479. };
  480. &iomuxc {
  481. pinctrl_audmux: audmuxgrp {
  482. fsl,pins = <
  483. MX6QDL_PAD_DISP0_DAT19__AUD5_RXD 0x130b0
  484. MX6QDL_PAD_DISP0_DAT14__AUD5_RXC 0x130b0
  485. MX6QDL_PAD_DISP0_DAT13__AUD5_RXFS 0x130b0
  486. >;
  487. };
  488. pinctrl_flexcan1: flexcan1grp {
  489. fsl,pins = <
  490. MX6QDL_PAD_KEY_ROW2__FLEXCAN1_RX 0x1b0b1
  491. MX6QDL_PAD_KEY_COL2__FLEXCAN1_TX 0x1b0b1
  492. MX6QDL_PAD_GPIO_9__GPIO1_IO09 0x4001b0b0 /* CAN_STBY */
  493. >;
  494. };
  495. pinctrl_gpio_leds: gpioledsgrp {
  496. fsl,pins = <
  497. MX6QDL_PAD_KEY_ROW0__GPIO4_IO07 0x1b0b0
  498. >;
  499. };
  500. pinctrl_gpmi_nand: gpminandgrp {
  501. fsl,pins = <
  502. MX6QDL_PAD_NANDF_CLE__NAND_CLE 0xb0b1
  503. MX6QDL_PAD_NANDF_ALE__NAND_ALE 0xb0b1
  504. MX6QDL_PAD_NANDF_WP_B__NAND_WP_B 0xb0b1
  505. MX6QDL_PAD_NANDF_RB0__NAND_READY_B 0xb000
  506. MX6QDL_PAD_NANDF_CS0__NAND_CE0_B 0xb0b1
  507. MX6QDL_PAD_SD4_CMD__NAND_RE_B 0xb0b1
  508. MX6QDL_PAD_SD4_CLK__NAND_WE_B 0xb0b1
  509. MX6QDL_PAD_NANDF_D0__NAND_DATA00 0xb0b1
  510. MX6QDL_PAD_NANDF_D1__NAND_DATA01 0xb0b1
  511. MX6QDL_PAD_NANDF_D2__NAND_DATA02 0xb0b1
  512. MX6QDL_PAD_NANDF_D3__NAND_DATA03 0xb0b1
  513. MX6QDL_PAD_NANDF_D4__NAND_DATA04 0xb0b1
  514. MX6QDL_PAD_NANDF_D5__NAND_DATA05 0xb0b1
  515. MX6QDL_PAD_NANDF_D6__NAND_DATA06 0xb0b1
  516. MX6QDL_PAD_NANDF_D7__NAND_DATA07 0xb0b1
  517. >;
  518. };
  519. pinctrl_i2c1: i2c1grp {
  520. fsl,pins = <
  521. MX6QDL_PAD_EIM_D21__I2C1_SCL 0x4001b8b1
  522. MX6QDL_PAD_EIM_D28__I2C1_SDA 0x4001b8b1
  523. MX6QDL_PAD_GPIO_4__GPIO1_IO04 0xb0b1
  524. >;
  525. };
  526. pinctrl_i2c2: i2c2grp {
  527. fsl,pins = <
  528. MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b8b1
  529. MX6QDL_PAD_KEY_ROW3__I2C2_SDA 0x4001b8b1
  530. >;
  531. };
  532. pinctrl_i2c3: i2c3grp {
  533. fsl,pins = <
  534. MX6QDL_PAD_GPIO_3__I2C3_SCL 0x4001b8b1
  535. MX6QDL_PAD_GPIO_6__I2C3_SDA 0x4001b8b1
  536. >;
  537. };
  538. pinctrl_ipu1_csi0: ipu1_csi0grp {
  539. fsl,pins = <
  540. MX6QDL_PAD_CSI0_DAT4__IPU1_CSI0_DATA04 0x1b0b0
  541. MX6QDL_PAD_CSI0_DAT5__IPU1_CSI0_DATA05 0x1b0b0
  542. MX6QDL_PAD_CSI0_DAT6__IPU1_CSI0_DATA06 0x1b0b0
  543. MX6QDL_PAD_CSI0_DAT7__IPU1_CSI0_DATA07 0x1b0b0
  544. MX6QDL_PAD_CSI0_DAT8__IPU1_CSI0_DATA08 0x1b0b0
  545. MX6QDL_PAD_CSI0_DAT9__IPU1_CSI0_DATA09 0x1b0b0
  546. MX6QDL_PAD_CSI0_DAT10__IPU1_CSI0_DATA10 0x1b0b0
  547. MX6QDL_PAD_CSI0_DAT11__IPU1_CSI0_DATA11 0x1b0b0
  548. MX6QDL_PAD_CSI0_DAT12__IPU1_CSI0_DATA12 0x1b0b0
  549. MX6QDL_PAD_CSI0_DAT13__IPU1_CSI0_DATA13 0x1b0b0
  550. MX6QDL_PAD_CSI0_DAT14__IPU1_CSI0_DATA14 0x1b0b0
  551. MX6QDL_PAD_CSI0_DAT15__IPU1_CSI0_DATA15 0x1b0b0
  552. MX6QDL_PAD_CSI0_DAT16__IPU1_CSI0_DATA16 0x1b0b0
  553. MX6QDL_PAD_CSI0_DAT17__IPU1_CSI0_DATA17 0x1b0b0
  554. MX6QDL_PAD_CSI0_DAT18__IPU1_CSI0_DATA18 0x1b0b0
  555. MX6QDL_PAD_CSI0_DAT19__IPU1_CSI0_DATA19 0x1b0b0
  556. MX6QDL_PAD_CSI0_MCLK__IPU1_CSI0_HSYNC 0x1b0b0
  557. MX6QDL_PAD_CSI0_PIXCLK__IPU1_CSI0_PIXCLK 0x1b0b0
  558. MX6QDL_PAD_CSI0_VSYNC__IPU1_CSI0_VSYNC 0x1b0b0
  559. >;
  560. };
  561. pinctrl_pcie: pciegrp {
  562. fsl,pins = <
  563. MX6QDL_PAD_GPIO_0__GPIO1_IO00 0x1b0b0 /* PCIE RST */
  564. >;
  565. };
  566. pinctrl_pmic: pmicgrp {
  567. fsl,pins = <
  568. MX6QDL_PAD_GPIO_8__GPIO1_IO08 0x0001b0b0 /* PMIC_IRQ# */
  569. >;
  570. };
  571. pinctrl_pwm2: pwm2grp {
  572. fsl,pins = <
  573. MX6QDL_PAD_SD1_DAT2__PWM2_OUT 0x1b0b1
  574. >;
  575. };
  576. pinctrl_pwm3: pwm3grp {
  577. fsl,pins = <
  578. MX6QDL_PAD_SD1_DAT1__PWM3_OUT 0x1b0b1
  579. >;
  580. };
  581. pinctrl_tda1997x: tda1997xgrp {
  582. fsl,pins = <
  583. MX6QDL_PAD_GPIO_7__GPIO1_IO07 0x1b0b0
  584. >;
  585. };
  586. pinctrl_uart2: uart2grp {
  587. fsl,pins = <
  588. MX6QDL_PAD_SD4_DAT7__UART2_TX_DATA 0x1b0b1
  589. MX6QDL_PAD_SD4_DAT4__UART2_RX_DATA 0x1b0b1
  590. >;
  591. };
  592. pinctrl_uart3: uart3grp {
  593. fsl,pins = <
  594. MX6QDL_PAD_EIM_D24__UART3_TX_DATA 0x1b0b1
  595. MX6QDL_PAD_EIM_D25__UART3_RX_DATA 0x1b0b1
  596. >;
  597. };
  598. pinctrl_usbotg: usbotggrp {
  599. fsl,pins = <
  600. MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x17059
  601. >;
  602. };
  603. pinctrl_wdog: wdoggrp {
  604. fsl,pins = <
  605. MX6QDL_PAD_DISP0_DAT8__WDOG1_B 0x1b0b0
  606. >;
  607. };
  608. };