1// SPDX-License-Identifier: (GPL-2.0 OR MIT)
2/*
3 * Copyright (C) 2019 Zodiac Inflight Innovations
4 */
5
6#include "imx8mq.dtsi"
7
8/ {
9	aliases {
10		mdio-gpio0 = &mdio0;
11		rtc0 = &ds1341;
12	};
13
14	chosen {
15		stdout-path = &uart1;
16	};
17
18	mdio0: bitbang-mdio {
19		compatible = "virtual,mdio-gpio";
20		pinctrl-names = "default";
21		pinctrl-0 = <&pinctrl_mdio_bitbang>, <&pinctrl_fec1_phy_reset>;
22		gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>, /* MDC */
23			<&gpio1 14 GPIO_ACTIVE_HIGH>; /* MDIO */
24		#address-cells = <1>;
25		#size-cells = <0>;
26
27		phy0: ethernet-phy@0 {
28			reg = <0>;
29			reset-gpios = <&gpio1 29 GPIO_ACTIVE_LOW>;
30		};
31	};
32
33	pcie0_refclk: clock-pcie0-refclk {
34		compatible = "fixed-clock";
35		#clock-cells = <0>;
36		clock-frequency = <100000000>;
37	};
38
39	pcie1_refclk: clock-pcie1-refclk {
40		compatible = "fixed-clock";
41		#clock-cells = <0>;
42		clock-frequency = <100000000>;
43	};
44
45	reg_12p0_main: regulator-12p0-main {
46		compatible = "regulator-fixed";
47		regulator-name = "12V_MAIN";
48		regulator-min-microvolt = <12000000>;
49		regulator-max-microvolt = <12000000>;
50		regulator-always-on;
51	};
52
53	reg_5p0_main: regulator-5p0-main {
54		compatible = "regulator-fixed";
55		vin-supply = <&reg_12p0_main>;
56		regulator-name = "5V_MAIN";
57		regulator-min-microvolt = <5000000>;
58		regulator-max-microvolt = <5000000>;
59		regulator-always-on;
60	};
61
62	reg_3p3_main: regulator-3p3-main {
63		compatible = "regulator-fixed";
64		vin-supply = <&reg_12p0_main>;
65		regulator-name = "3V3_MAIN";
66		regulator-min-microvolt = <3300000>;
67		regulator-max-microvolt = <3300000>;
68		regulator-always-on;
69	};
70
71	reg_gen_3p3: regulator-gen-3p3 {
72		compatible = "regulator-fixed";
73		vin-supply = <&reg_3p3_main>;
74		regulator-name = "GEN_3V3";
75		regulator-min-microvolt = <3300000>;
76		regulator-max-microvolt = <3300000>;
77		regulator-always-on;
78	};
79
80	reg_usdhc2_vmmc: regulator-vsd-3v3 {
81		pinctrl-names = "default";
82		pinctrl-0 = <&pinctrl_reg_usdhc2>;
83		compatible = "regulator-fixed";
84		vin-supply = <&reg_gen_3p3>;
85		regulator-name = "3V3_SD";
86		regulator-min-microvolt = <3300000>;
87		regulator-max-microvolt = <3300000>;
88		gpio = <&gpio2 19 GPIO_ACTIVE_HIGH>;
89		enable-active-high;
90	};
91
92	reg_arm: regulator-arm {
93		pinctrl-names = "default";
94		pinctrl-0 = <&pinctrl_reg_arm>;
95		compatible = "regulator-gpio";
96		vin-supply = <&reg_12p0_main>;
97		regulator-name = "0V9_ARM";
98		regulator-min-microvolt = <900000>;
99		regulator-max-microvolt = <1000000>;
100		gpios = <&gpio3 16 GPIO_ACTIVE_HIGH>;
101		states = <1000000 0x1
102		           900000 0x0>;
103		regulator-always-on;
104	};
105
106	cs2000_ref: cs2000-ref {
107		compatible = "fixed-clock";
108		#clock-cells = <0>;
109		clock-frequency = <24576000>;
110	};
111
112	cs2000_in_dummy: cs2000-in-dummy {
113		compatible = "fixed-clock";
114		#clock-cells = <0>;
115		clock-frequency = <0>;
116	};
117};
118
119&A53_0 {
120	cpu-supply = <&reg_arm>;
121};
122
123&A53_1 {
124	cpu-supply = <&reg_arm>;
125};
126
127&A53_2 {
128	cpu-supply = <&reg_arm>;
129};
130
131&A53_3 {
132	cpu-supply = <&reg_arm>;
133};
134
135&fec1 {
136	pinctrl-names = "default";
137	pinctrl-0 = <&pinctrl_fec1>;
138
139	phy-handle = <&phy0>;
140	phy-mode = "rmii";
141	status = "okay";
142
143	mdio {
144		#address-cells = <1>;
145		#size-cells = <0>;
146		clock-frequency = <12500000>;
147		suppress-preamble;
148		status = "okay";
149
150		switch: switch@0 {
151			compatible = "marvell,mv88e6085";
152			pinctrl-0 = <&pinctrl_switch_irq>;
153			pinctrl-names = "default";
154			reg = <0>;
155			dsa,member = <0 0>;
156			eeprom-length = <512>;
157			interrupt-parent = <&gpio1>;
158			interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
159			interrupt-controller;
160			#interrupt-cells = <2>;
161
162			ports {
163				#address-cells = <1>;
164				#size-cells = <0>;
165
166				port@0 {
167					reg = <0>;
168					label = "gigabit_proc";
169					phy-handle = <&switchphy0>;
170				};
171
172				port@1 {
173					reg = <1>;
174					label = "netaux";
175					phy-handle = <&switchphy1>;
176				};
177
178				port@2 {
179					reg = <2>;
180					label = "cpu";
181					ethernet = <&fec1>;
182
183					fixed-link {
184						speed = <100>;
185						full-duplex;
186					};
187				};
188
189				port@3 {
190					reg = <3>;
191					label = "netright";
192					phy-handle = <&switchphy3>;
193				};
194
195				port@4 {
196					reg = <4>;
197					label = "netleft";
198					phy-handle = <&switchphy4>;
199				};
200			};
201
202			mdio {
203				#address-cells = <1>;
204				#size-cells = <0>;
205
206				switchphy0: switchphy@0 {
207					reg = <0>;
208					interrupt-parent = <&switch>;
209					interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
210				};
211
212				switchphy1: switchphy@1 {
213					reg = <1>;
214					interrupt-parent = <&switch>;
215					interrupts = <1 IRQ_TYPE_LEVEL_HIGH>;
216				};
217
218				switchphy2: switchphy@2 {
219					reg = <2>;
220					interrupt-parent = <&switch>;
221					interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;
222				};
223
224				switchphy3: switchphy@3 {
225					reg = <3>;
226					interrupt-parent = <&switch>;
227					interrupts = <3 IRQ_TYPE_LEVEL_HIGH>;
228				};
229
230				switchphy4: switchphy@4 {
231					reg = <4>;
232					interrupt-parent = <&switch>;
233					interrupts = <4 IRQ_TYPE_LEVEL_HIGH>;
234				};
235			};
236		};
237	};
238};
239
240&gpio3 {
241	pinctrl-names = "default";
242	pinctrl-0 = <&pinctrl_gpio3_hog>;
243
244	usb-emulation-hog {
245		gpio-hog;
246		gpios = <10 GPIO_ACTIVE_HIGH>;
247		output-low;
248		line-name = "usb-emulation";
249	};
250
251	usb-mode1-hog {
252		gpio-hog;
253		gpios = <11 GPIO_ACTIVE_HIGH>;
254		output-high;
255		line-name = "usb-mode1";
256	};
257
258	usb-pwr-hog {
259		gpio-hog;
260		gpios = <12 GPIO_ACTIVE_LOW>;
261		output-high;
262		line-name = "usb-pwr-ctrl-en-n";
263	};
264
265	usb-mode2-hog {
266		gpio-hog;
267		gpios = <13 GPIO_ACTIVE_HIGH>;
268		output-high;
269		line-name = "usb-mode2";
270	};
271};
272
273&i2c1 {
274	clock-frequency = <400000>;
275	pinctrl-names = "default";
276	pinctrl-0 = <&pinctrl_i2c1>;
277	status = "okay";
278
279	accelerometer@1c {
280		compatible = "fsl,mma8451";
281		pinctrl-names = "default";
282		pinctrl-0 = <&pinctrl_accel>;
283		reg = <0x1c>;
284		interrupt-parent = <&gpio3>;
285		interrupts = <20 IRQ_TYPE_LEVEL_LOW>;
286		interrupt-names = "INT2";
287		vdd-supply = <&reg_gen_3p3>;
288		vddio-supply = <&reg_gen_3p3>;
289	};
290
291	ucs1002: charger@32 {
292		compatible = "microchip,ucs1002";
293		pinctrl-names = "default";
294		pinctrl-0 = <&pinctrl_ucs1002>;
295		reg = <0x32>;
296		interrupt-parent = <&gpio3>;
297		interrupts = <17 IRQ_TYPE_EDGE_BOTH>,
298		             <18 IRQ_TYPE_EDGE_FALLING>;
299		interrupt-names = "a_det", "alert";
300	};
301
302	hpa2: amp@60 {
303		compatible = "ti,tpa6130a2";
304		pinctrl-names = "default";
305		pinctrl-0 = <&pinctrl_tpa2>;
306		reg = <0x60>;
307		power-gpio = <&gpio1 8 GPIO_ACTIVE_HIGH>;
308		Vdd-supply = <&reg_5p0_main>;
309		sound-name-prefix = "HPA2";
310	};
311};
312
313&i2c2 {
314	clock-frequency = <400000>;
315	pinctrl-names = "default";
316	pinctrl-0 = <&pinctrl_i2c2>;
317	status = "okay";
318
319	pmic@8 {
320		compatible = "fsl,pfuze100";
321		reg = <0x8>;
322
323		regulators {
324			sw1a_reg: sw1ab {
325				regulator-min-microvolt = <825000>;
326				regulator-max-microvolt = <1100000>;
327			};
328
329			sw1c_reg: sw1c {
330				regulator-min-microvolt = <825000>;
331				regulator-max-microvolt = <1100000>;
332			};
333
334			sw2_reg: sw2 {
335				regulator-min-microvolt = <1100000>;
336				regulator-max-microvolt = <1100000>;
337				regulator-always-on;
338			};
339
340			sw3a_reg: sw3ab {
341				regulator-min-microvolt = <825000>;
342				regulator-max-microvolt = <1100000>;
343				regulator-always-on;
344			};
345
346			sw4_reg: sw4 {
347				regulator-min-microvolt = <1800000>;
348				regulator-max-microvolt = <1800000>;
349				regulator-always-on;
350			};
351
352			swbst_reg: swbst {
353				regulator-min-microvolt = <5000000>;
354				regulator-max-microvolt = <5150000>;
355			};
356
357			snvs_reg: vsnvs {
358				regulator-min-microvolt = <1000000>;
359				regulator-max-microvolt = <3000000>;
360				regulator-always-on;
361			};
362
363			vref_reg: vrefddr {
364				regulator-always-on;
365			};
366
367			vgen1_reg: vgen1 {
368				regulator-min-microvolt = <800000>;
369				regulator-max-microvolt = <1550000>;
370			};
371
372			vgen2_reg: vgen2 {
373				regulator-min-microvolt = <850000>;
374				regulator-max-microvolt = <975000>;
375				regulator-always-on;
376			};
377
378			vgen3_reg: vgen3 {
379				regulator-min-microvolt = <1675000>;
380				regulator-max-microvolt = <1975000>;
381				regulator-always-on;
382			};
383
384			vgen4_reg: vgen4 {
385				regulator-min-microvolt = <1625000>;
386				regulator-max-microvolt = <1875000>;
387				regulator-always-on;
388			};
389
390			vgen5_reg: vgen5 {
391				regulator-min-microvolt = <3075000>;
392				regulator-max-microvolt = <3625000>;
393				regulator-always-on;
394			};
395
396			vgen6_reg: vgen6 {
397				regulator-min-microvolt = <1800000>;
398				regulator-max-microvolt = <3300000>;
399			};
400		};
401	};
402
403	codec1: codec@18 {
404		compatible = "ti,tlv320dac3100";
405		pinctrl-names = "default";
406		pinctrl-0 = <&pinctrl_codec1>;
407		reg = <0x18>;
408		#sound-dai-cells = <0>;
409		HPVDD-supply = <&reg_gen_3p3>;
410		SPRVDD-supply = <&reg_gen_3p3>;
411		SPLVDD-supply = <&reg_gen_3p3>;
412		AVDD-supply = <&reg_gen_3p3>;
413		IOVDD-supply = <&reg_gen_3p3>;
414		DVDD-supply = <&vgen4_reg>;
415		reset-gpios = <&gpio3 3 GPIO_ACTIVE_LOW>;
416	};
417
418	eeprom@54 {
419		compatible = "atmel,24c128";
420		reg = <0x54>;
421	};
422
423	hpa1: amp@60 {
424		compatible = "ti,tpa6130a2";
425		pinctrl-names = "default";
426		pinctrl-0 = <&pinctrl_tpa1>;
427		reg = <0x60>;
428		power-gpio = <&gpio4 10 GPIO_ACTIVE_HIGH>;
429		Vdd-supply = <&reg_5p0_main>;
430		sound-name-prefix = "HPA1";
431	};
432
433	ds1341: rtc@68 {
434		compatible = "dallas,ds1341";
435		reg = <0x68>;
436	};
437};
438
439&i2c3 {
440	clock-frequency = <100000>;
441	pinctrl-names = "default";
442	pinctrl-0 = <&pinctrl_i2c3>;
443	status = "okay";
444
445	usbhub: usbhub@2c {
446		compatible = "microchip,usb2513b";
447		pinctrl-names = "default";
448		pinctrl-0 = <&pinctrl_usbhub>;
449		reg = <0x2c>;
450		reset-gpios = <&gpio3 25 GPIO_ACTIVE_LOW>;
451	};
452
453	watchdog@38 {
454		compatible = "zii,rave-wdt";
455		reg = <0x38>;
456	};
457
458	cs2000: clkgen@4e {
459		compatible = "cirrus,cs2000-cp";
460		reg = <0x4e>;
461		#clock-cells = <0>;
462		clock-names = "clk_in", "ref_clk";
463		clocks = <&cs2000_in_dummy>, <&cs2000_ref>;
464		assigned-clocks = <&cs2000>;
465		assigned-clock-rates = <24000000>;
466	};
467};
468
469&i2c4 {
470	clock-frequency = <400000>;
471	pinctrl-names = "default";
472	pinctrl-0 = <&pinctrl_i2c4>;
473	status = "okay";
474};
475
476&sai2 {
477	pinctrl-names = "default";
478	pinctrl-0 = <&pinctrl_sai2>;
479	status = "okay";
480};
481
482&uart1 {
483	pinctrl-names = "default";
484	pinctrl-0 = <&pinctrl_uart1>;
485	status = "okay";
486};
487
488&uart2 {
489	pinctrl-names = "default";
490	pinctrl-0 = <&pinctrl_uart2>;
491	status = "okay";
492
493	rave-sp {
494		compatible = "zii,rave-sp-rdu2";
495		current-speed = <1000000>;
496		#address-cells = <1>;
497		#size-cells = <1>;
498
499		watchdog {
500			compatible = "zii,rave-sp-watchdog";
501		};
502
503		backlight {
504			compatible = "zii,rave-sp-backlight";
505		};
506
507		pwrbutton {
508			compatible = "zii,rave-sp-pwrbutton";
509		};
510
511		eeprom@a3 {
512			compatible = "zii,rave-sp-eeprom";
513			reg = <0xa3 0x4000>;
514			zii,eeprom-name = "dds-eeprom";
515		};
516
517		eeprom@a4 {
518			compatible = "zii,rave-sp-eeprom";
519			reg = <0xa4 0x4000>;
520			#address-cells = <1>;
521			#size-cells = <1>;
522			zii,eeprom-name = "main-eeprom";
523		};
524	};
525};
526
527&usb3_phy0 {
528	vbus-supply = <&ucs1002>;
529	status = "okay";
530};
531
532&usb_dwc3_0 {
533	dr_mode = "host";
534	maximum-speed = "high-speed";
535	status = "okay";
536};
537
538&usb3_phy1 {
539	vbus-supply = <&reg_5p0_main>;
540	status = "okay";
541};
542
543&usb_dwc3_1 {
544	dr_mode = "host";
545	maximum-speed = "high-speed";
546	status = "okay";
547};
548
549&pcie0 {
550	pinctrl-names = "default";
551	pinctrl-0 = <&pinctrl_pcie0>;
552	reset-gpio = <&gpio1 3 GPIO_ACTIVE_LOW>;
553	clocks = <&clk IMX8MQ_CLK_PCIE1_ROOT>,
554	         <&clk IMX8MQ_CLK_PCIE1_AUX>,
555	         <&clk IMX8MQ_CLK_PCIE1_PHY>,
556	         <&pcie0_refclk>;
557	clock-names = "pcie", "pcie_aux", "pcie_phy", "pcie_bus";
558	vph-supply = <&vgen5_reg>;
559	status = "okay";
560};
561
562&pcie1 {
563	pinctrl-names = "default";
564	pinctrl-0 = <&pinctrl_pcie1>;
565	reset-gpio = <&gpio1 6 GPIO_ACTIVE_LOW>;
566	clocks = <&clk IMX8MQ_CLK_PCIE2_ROOT>,
567	         <&clk IMX8MQ_CLK_PCIE2_AUX>,
568	         <&clk IMX8MQ_CLK_PCIE2_PHY>,
569	         <&pcie1_refclk>;
570	clock-names = "pcie", "pcie_aux", "pcie_phy", "pcie_bus";
571	vph-supply = <&vgen5_reg>;
572	status = "okay";
573};
574
575&pgc_gpu {
576	power-supply = <&sw1a_reg>;
577};
578
579&pgc_vpu {
580	power-supply = <&sw1c_reg>;
581};
582
583&usdhc1 {
584	assigned-clocks = <&clk IMX8MQ_CLK_USDHC1>;
585	assigned-clock-rates = <400000000>;
586	pinctrl-names = "default", "state_100mhz", "state_200mhz";
587	pinctrl-0 = <&pinctrl_usdhc1>;
588	pinctrl-1 = <&pinctrl_usdhc1_100mhz>;
589	pinctrl-2 = <&pinctrl_usdhc1_200mhz>;
590	vqmmc-supply = <&sw4_reg>;
591	bus-width = <8>;
592	non-removable;
593	no-sd;
594	no-sdio;
595	status = "okay";
596};
597
598&usdhc2 {
599	assigned-clocks = <&clk IMX8MQ_CLK_USDHC2>;
600	assigned-clock-rates = <200000000>;
601	pinctrl-names = "default", "state_100mhz", "state_200mhz";
602	pinctrl-0 = <&pinctrl_usdhc2>;
603	pinctrl-1 = <&pinctrl_usdhc2_100mhz>;
604	pinctrl-2 = <&pinctrl_usdhc2_200mhz>;
605	cd-gpios = <&gpio2 12 GPIO_ACTIVE_LOW>;
606	vmmc-supply = <&reg_usdhc2_vmmc>;
607	status = "okay";
608};
609
610&snvs_rtc {
611	status = "disabled";
612};
613
614&iomuxc {
615	pinctrl_accel: accelgrp {
616		fsl,pins = <
617			MX8MQ_IOMUXC_SAI5_RXC_GPIO3_IO20		0x41
618		>;
619	};
620
621	pinctrl_codec1: dac1grp {
622		fsl,pins = <
623			MX8MQ_IOMUXC_NAND_CE2_B_GPIO3_IO3		0x41
624		>;
625	};
626
627	pinctrl_fec1: fec1grp {
628		fsl,pins = <
629			MX8MQ_IOMUXC_ENET_MDC_ENET1_MDC			0x3
630			MX8MQ_IOMUXC_ENET_MDIO_ENET1_MDIO		0x23
631			MX8MQ_IOMUXC_ENET_TD1_ENET1_RGMII_TD1		0x1f
632			MX8MQ_IOMUXC_ENET_TD0_ENET1_RGMII_TD0		0x1f
633			MX8MQ_IOMUXC_ENET_RD1_ENET1_RGMII_RD1		0x91
634			MX8MQ_IOMUXC_ENET_RD0_ENET1_RGMII_RD0		0x91
635			MX8MQ_IOMUXC_ENET_TD2_ENET1_TX_CLK		0x1f
636			MX8MQ_IOMUXC_ENET_RXC_ENET1_RX_ER		0x91
637			MX8MQ_IOMUXC_ENET_RX_CTL_ENET1_RGMII_RX_CTL	0x91
638			MX8MQ_IOMUXC_ENET_TX_CTL_ENET1_RGMII_TX_CTL	0x1f
639		>;
640	};
641
642	pinctrl_fec1_phy_reset: fec1phyresetgrp {
643		fsl,pins = <
644			MX8MQ_IOMUXC_ENET_RD3_GPIO1_IO29		0x11
645		>;
646	};
647
648	pinctrl_gpio3_hog: gpio3hoggrp {
649		fsl,pins = <
650			MX8MQ_IOMUXC_NAND_DATA04_GPIO3_IO10		0x6
651			MX8MQ_IOMUXC_NAND_DATA05_GPIO3_IO11		0x6
652			MX8MQ_IOMUXC_NAND_DATA06_GPIO3_IO12		0x6
653			MX8MQ_IOMUXC_NAND_DATA07_GPIO3_IO13		0x6
654		>;
655	};
656
657	pinctrl_i2c1: i2c1grp {
658		fsl,pins = <
659			MX8MQ_IOMUXC_I2C1_SCL_I2C1_SCL			0x40000022
660			MX8MQ_IOMUXC_I2C1_SDA_I2C1_SDA			0x400000a2
661		>;
662	};
663
664	pinctrl_i2c2: i2c2grp {
665		fsl,pins = <
666			MX8MQ_IOMUXC_I2C2_SCL_I2C2_SCL			0x40000022
667			MX8MQ_IOMUXC_I2C2_SDA_I2C2_SDA			0x400000a2
668		>;
669	};
670
671	pinctrl_i2c3: i2c3grp {
672		fsl,pins = <
673			MX8MQ_IOMUXC_I2C3_SCL_I2C3_SCL			0x40000022
674			MX8MQ_IOMUXC_I2C3_SDA_I2C3_SDA			0x400000a2
675		>;
676	};
677
678	pinctrl_i2c4: i2c4grp {
679		fsl,pins = <
680			MX8MQ_IOMUXC_I2C4_SCL_I2C4_SCL			0x40000022
681			MX8MQ_IOMUXC_I2C4_SDA_I2C4_SDA			0x400000a2
682		>;
683	};
684
685	pinctrl_mdio_bitbang: bitbangmdiogrp {
686		fsl,pins = <
687			MX8MQ_IOMUXC_GPIO1_IO13_GPIO1_IO13		0x44
688			MX8MQ_IOMUXC_GPIO1_IO14_GPIO1_IO14		0x64
689		>;
690	};
691
692	pinctrl_pcie0: pcie0grp {
693		fsl,pins = <
694			MX8MQ_IOMUXC_UART4_RXD_PCIE1_CLKREQ_B		0x66
695			MX8MQ_IOMUXC_GPIO1_IO03_GPIO1_IO3		0x6
696		>;
697	};
698
699	pinctrl_pcie1: pcie1grp {
700		fsl,pins = <
701			MX8MQ_IOMUXC_UART4_TXD_PCIE2_CLKREQ_B		0x66
702			MX8MQ_IOMUXC_GPIO1_IO06_GPIO1_IO6		0x6
703		>;
704	};
705
706	pinctrl_reg_arm: regarmgrp {
707		fsl,pins = <
708			MX8MQ_IOMUXC_NAND_READY_B_GPIO3_IO16		0x19
709		>;
710	};
711
712	pinctrl_reg_usdhc2: regusdhc2grp {
713		fsl,pins = <
714			MX8MQ_IOMUXC_SD2_RESET_B_GPIO2_IO19		0x41
715		>;
716	};
717
718	pinctrl_sai2: sai2grp {
719		fsl,pins = <
720			MX8MQ_IOMUXC_SAI2_TXFS_SAI2_TX_SYNC		0xd6
721			MX8MQ_IOMUXC_SAI2_TXC_SAI2_TX_BCLK		0xd6
722			MX8MQ_IOMUXC_SAI2_TXD0_SAI2_TX_DATA0		0xd6
723		>;
724	};
725
726	pinctrl_switch_irq: switchgrp {
727		fsl,pins = <
728			MX8MQ_IOMUXC_GPIO1_IO15_GPIO1_IO15		0x41
729		>;
730	};
731
732	pinctrl_tpa1: tpa6130-1grp {
733		fsl,pins = <
734			MX8MQ_IOMUXC_SAI1_TXFS_GPIO4_IO10		0x41
735		>;
736	};
737
738	pinctrl_tpa2: tpa6130-2grp {
739		fsl,pins = <
740			MX8MQ_IOMUXC_GPIO1_IO08_GPIO1_IO8		0x41
741		>;
742	};
743
744	pinctrl_ts: tsgrp {
745		fsl,pins = <
746			MX8MQ_IOMUXC_GPIO1_IO11_GPIO1_IO11		0x96
747			MX8MQ_IOMUXC_GPIO1_IO12_GPIO1_IO12		0x96
748		>;
749	};
750
751	pinctrl_uart1: uart1grp {
752		fsl,pins = <
753			MX8MQ_IOMUXC_UART1_RXD_UART1_DCE_RX		0x49
754			MX8MQ_IOMUXC_UART1_TXD_UART1_DCE_TX		0x49
755		>;
756	};
757
758	pinctrl_uart2: uart2grp {
759		fsl,pins = <
760			MX8MQ_IOMUXC_UART2_RXD_UART2_DCE_RX		0x49
761			MX8MQ_IOMUXC_UART2_TXD_UART2_DCE_TX		0x49
762		>;
763	};
764
765	pinctrl_ucs1002: ucs1002grp {
766		fsl,pins = <
767			MX8MQ_IOMUXC_NAND_WE_B_GPIO3_IO17		0x41
768			MX8MQ_IOMUXC_NAND_WP_B_GPIO3_IO18		0x41
769		>;
770	};
771
772	pinctrl_usbhub: usbhubgrp {
773		fsl,pins = <
774			MX8MQ_IOMUXC_SAI5_MCLK_GPIO3_IO25		0x41
775		>;
776	};
777
778	pinctrl_usdhc1: usdhc1grp {
779		fsl,pins = <
780			MX8MQ_IOMUXC_SD1_CLK_USDHC1_CLK			0x83
781			MX8MQ_IOMUXC_SD1_CMD_USDHC1_CMD			0xc3
782			MX8MQ_IOMUXC_SD1_DATA0_USDHC1_DATA0		0xc3
783			MX8MQ_IOMUXC_SD1_DATA1_USDHC1_DATA1		0xc3
784			MX8MQ_IOMUXC_SD1_DATA2_USDHC1_DATA2		0xc3
785			MX8MQ_IOMUXC_SD1_DATA3_USDHC1_DATA3		0xc3
786			MX8MQ_IOMUXC_SD1_DATA4_USDHC1_DATA4		0xc3
787			MX8MQ_IOMUXC_SD1_DATA5_USDHC1_DATA5		0xc3
788			MX8MQ_IOMUXC_SD1_DATA6_USDHC1_DATA6		0xc3
789			MX8MQ_IOMUXC_SD1_DATA7_USDHC1_DATA7		0xc3
790			MX8MQ_IOMUXC_SD1_STROBE_USDHC1_STROBE		0x83
791			MX8MQ_IOMUXC_SD1_RESET_B_USDHC1_RESET_B		0xc1
792		>;
793	};
794
795	pinctrl_usdhc1_100mhz: usdhc1-100grp {
796		fsl,pins = <
797			MX8MQ_IOMUXC_SD1_CLK_USDHC1_CLK			0x8d
798			MX8MQ_IOMUXC_SD1_CMD_USDHC1_CMD			0xcd
799			MX8MQ_IOMUXC_SD1_DATA0_USDHC1_DATA0		0xcd
800			MX8MQ_IOMUXC_SD1_DATA1_USDHC1_DATA1		0xcd
801			MX8MQ_IOMUXC_SD1_DATA2_USDHC1_DATA2		0xcd
802			MX8MQ_IOMUXC_SD1_DATA3_USDHC1_DATA3		0xcd
803			MX8MQ_IOMUXC_SD1_DATA4_USDHC1_DATA4		0xcd
804			MX8MQ_IOMUXC_SD1_DATA5_USDHC1_DATA5		0xcd
805			MX8MQ_IOMUXC_SD1_DATA6_USDHC1_DATA6		0xcd
806			MX8MQ_IOMUXC_SD1_DATA7_USDHC1_DATA7		0xcd
807			MX8MQ_IOMUXC_SD1_STROBE_USDHC1_STROBE		0x8d
808			MX8MQ_IOMUXC_SD1_RESET_B_USDHC1_RESET_B		0xc1
809		>;
810	};
811
812	pinctrl_usdhc1_200mhz: usdhc1-200grp {
813		fsl,pins = <
814			MX8MQ_IOMUXC_SD1_CLK_USDHC1_CLK			0x9f
815			MX8MQ_IOMUXC_SD1_CMD_USDHC1_CMD			0xdf
816			MX8MQ_IOMUXC_SD1_DATA0_USDHC1_DATA0		0xdf
817			MX8MQ_IOMUXC_SD1_DATA1_USDHC1_DATA1		0xdf
818			MX8MQ_IOMUXC_SD1_DATA2_USDHC1_DATA2		0xdf
819			MX8MQ_IOMUXC_SD1_DATA3_USDHC1_DATA3		0xdf
820			MX8MQ_IOMUXC_SD1_DATA4_USDHC1_DATA4		0xdf
821			MX8MQ_IOMUXC_SD1_DATA5_USDHC1_DATA5		0xdf
822			MX8MQ_IOMUXC_SD1_DATA6_USDHC1_DATA6		0xdf
823			MX8MQ_IOMUXC_SD1_DATA7_USDHC1_DATA7		0xdf
824			MX8MQ_IOMUXC_SD1_STROBE_USDHC1_STROBE		0x9f
825			MX8MQ_IOMUXC_SD1_RESET_B_USDHC1_RESET_B		0xc1
826		>;
827	};
828
829	pinctrl_usdhc2: usdhc2grp {
830		fsl,pins = <
831			MX8MQ_IOMUXC_SD2_CLK_USDHC2_CLK			0x83
832			MX8MQ_IOMUXC_SD2_CMD_USDHC2_CMD			0xc3
833			MX8MQ_IOMUXC_SD2_DATA0_USDHC2_DATA0		0xc3
834			MX8MQ_IOMUXC_SD2_DATA1_USDHC2_DATA1		0xc3
835			MX8MQ_IOMUXC_SD2_DATA2_USDHC2_DATA2		0xc3
836			MX8MQ_IOMUXC_SD2_DATA3_USDHC2_DATA3		0xc3
837			MX8MQ_IOMUXC_GPIO1_IO04_USDHC2_VSELECT		0xc1
838		>;
839	};
840
841	pinctrl_usdhc2_100mhz: usdhc2-100grp {
842		fsl,pins = <
843			MX8MQ_IOMUXC_SD2_CLK_USDHC2_CLK			0x85
844			MX8MQ_IOMUXC_SD2_CMD_USDHC2_CMD			0xc5
845			MX8MQ_IOMUXC_SD2_DATA0_USDHC2_DATA0		0xc5
846			MX8MQ_IOMUXC_SD2_DATA1_USDHC2_DATA1		0xc5
847			MX8MQ_IOMUXC_SD2_DATA2_USDHC2_DATA2		0xc5
848			MX8MQ_IOMUXC_SD2_DATA3_USDHC2_DATA3		0xc5
849			MX8MQ_IOMUXC_GPIO1_IO04_USDHC2_VSELECT		0xc1
850		>;
851	};
852
853	pinctrl_usdhc2_200mhz: usdhc2-200grp {
854		fsl,pins = <
855			MX8MQ_IOMUXC_SD2_CLK_USDHC2_CLK			0x87
856			MX8MQ_IOMUXC_SD2_CMD_USDHC2_CMD			0xc7
857			MX8MQ_IOMUXC_SD2_DATA0_USDHC2_DATA0		0xc7
858			MX8MQ_IOMUXC_SD2_DATA1_USDHC2_DATA1		0xc7
859			MX8MQ_IOMUXC_SD2_DATA2_USDHC2_DATA2		0xc7
860			MX8MQ_IOMUXC_SD2_DATA3_USDHC2_DATA3		0xc7
861			MX8MQ_IOMUXC_GPIO1_IO04_USDHC2_VSELECT		0xc1
862		>;
863	};
864};
865