xref: /freebsd-src/sys/contrib/device-tree/src/arm/nxp/imx/imx6qdl-vicut1.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Copyright (c) 2014 Protonic Holland
4*f126890aSEmmanuel Vadot * Copyright (c) 2020 Oleksij Rempel <kernel@pengutronix.de>, Pengutronix
5*f126890aSEmmanuel Vadot */
6*f126890aSEmmanuel Vadot
7*f126890aSEmmanuel Vadot#include <dt-bindings/display/sdtv-standards.h>
8*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h>
9*f126890aSEmmanuel Vadot#include <dt-bindings/input/input.h>
10*f126890aSEmmanuel Vadot#include <dt-bindings/leds/common.h>
11*f126890aSEmmanuel Vadot#include <dt-bindings/media/tvp5150.h>
12*f126890aSEmmanuel Vadot#include <dt-bindings/sound/fsl-imx-audmux.h>
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot/ {
15*f126890aSEmmanuel Vadot	chosen {
16*f126890aSEmmanuel Vadot		stdout-path = &uart4;
17*f126890aSEmmanuel Vadot	};
18*f126890aSEmmanuel Vadot
19*f126890aSEmmanuel Vadot	backlight_lcd: backlight {
20*f126890aSEmmanuel Vadot		compatible = "pwm-backlight";
21*f126890aSEmmanuel Vadot		pinctrl-names = "default";
22*f126890aSEmmanuel Vadot		pinctrl-0 = <&pinctrl_backlight>;
23*f126890aSEmmanuel Vadot		pwms = <&pwm1 0 5000000 0>;
24*f126890aSEmmanuel Vadot		brightness-levels = <0 16 64 255>;
25*f126890aSEmmanuel Vadot		num-interpolated-steps = <16>;
26*f126890aSEmmanuel Vadot		default-brightness-level = <48>;
27*f126890aSEmmanuel Vadot		power-supply = <&reg_3v3>;
28*f126890aSEmmanuel Vadot		enable-gpios = <&gpio4 28 GPIO_ACTIVE_HIGH>;
29*f126890aSEmmanuel Vadot	};
30*f126890aSEmmanuel Vadot
31*f126890aSEmmanuel Vadot	backlight_led: backlight-led {
32*f126890aSEmmanuel Vadot		compatible = "pwm-backlight";
33*f126890aSEmmanuel Vadot		pwms = <&pwm3 0 5000000 0>;
34*f126890aSEmmanuel Vadot		brightness-levels = <0 16 64 255>;
35*f126890aSEmmanuel Vadot		num-interpolated-steps = <16>;
36*f126890aSEmmanuel Vadot		default-brightness-level = <48>;
37*f126890aSEmmanuel Vadot		power-supply = <&reg_3v3>;
38*f126890aSEmmanuel Vadot	};
39*f126890aSEmmanuel Vadot
40*f126890aSEmmanuel Vadot	/* only for backwards compatibility with old HW */
41*f126890aSEmmanuel Vadot	backlight_isb: backlight-isb {
42*f126890aSEmmanuel Vadot		compatible = "pwm-backlight";
43*f126890aSEmmanuel Vadot		pwms = <&pwm2 0 5000000 0>;
44*f126890aSEmmanuel Vadot		brightness-levels = <0 8 48 255>;
45*f126890aSEmmanuel Vadot		num-interpolated-steps = <5>;
46*f126890aSEmmanuel Vadot		default-brightness-level = <0>;
47*f126890aSEmmanuel Vadot		power-supply = <&reg_3v3>;
48*f126890aSEmmanuel Vadot	};
49*f126890aSEmmanuel Vadot
50*f126890aSEmmanuel Vadot	connector {
51*f126890aSEmmanuel Vadot		compatible = "composite-video-connector";
52*f126890aSEmmanuel Vadot		label = "Composite0";
53*f126890aSEmmanuel Vadot		sdtv-standards = <SDTV_STD_PAL_B>;
54*f126890aSEmmanuel Vadot
55*f126890aSEmmanuel Vadot		port {
56*f126890aSEmmanuel Vadot			comp0_out: endpoint {
57*f126890aSEmmanuel Vadot				remote-endpoint = <&tvp5150_comp0_in>;
58*f126890aSEmmanuel Vadot			};
59*f126890aSEmmanuel Vadot		};
60*f126890aSEmmanuel Vadot	};
61*f126890aSEmmanuel Vadot
62*f126890aSEmmanuel Vadot	counter-0 {
63*f126890aSEmmanuel Vadot		compatible = "interrupt-counter";
64*f126890aSEmmanuel Vadot		pinctrl-names = "default";
65*f126890aSEmmanuel Vadot		pinctrl-0 = <&pinctrl_counter0>;
66*f126890aSEmmanuel Vadot		gpios = <&gpio2 0 GPIO_ACTIVE_LOW>;
67*f126890aSEmmanuel Vadot	};
68*f126890aSEmmanuel Vadot
69*f126890aSEmmanuel Vadot	counter-1 {
70*f126890aSEmmanuel Vadot		compatible = "interrupt-counter";
71*f126890aSEmmanuel Vadot		pinctrl-names = "default";
72*f126890aSEmmanuel Vadot		pinctrl-0 = <&pinctrl_counter1>;
73*f126890aSEmmanuel Vadot		gpios = <&gpio2 1 GPIO_ACTIVE_LOW>;
74*f126890aSEmmanuel Vadot	};
75*f126890aSEmmanuel Vadot
76*f126890aSEmmanuel Vadot	counter-2 {
77*f126890aSEmmanuel Vadot		compatible = "interrupt-counter";
78*f126890aSEmmanuel Vadot		pinctrl-names = "default";
79*f126890aSEmmanuel Vadot		pinctrl-0 = <&pinctrl_counter2>;
80*f126890aSEmmanuel Vadot		gpios = <&gpio2 2 GPIO_ACTIVE_LOW>;
81*f126890aSEmmanuel Vadot	};
82*f126890aSEmmanuel Vadot
83*f126890aSEmmanuel Vadot	leds {
84*f126890aSEmmanuel Vadot		compatible = "gpio-leds";
85*f126890aSEmmanuel Vadot		pinctrl-names = "default";
86*f126890aSEmmanuel Vadot		pinctrl-0 = <&pinctrl_leds>;
87*f126890aSEmmanuel Vadot
88*f126890aSEmmanuel Vadot		led-0 {
89*f126890aSEmmanuel Vadot			label = "debug0";
90*f126890aSEmmanuel Vadot			function = LED_FUNCTION_HEARTBEAT;
91*f126890aSEmmanuel Vadot			gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>;
92*f126890aSEmmanuel Vadot			linux,default-trigger = "heartbeat";
93*f126890aSEmmanuel Vadot		};
94*f126890aSEmmanuel Vadot
95*f126890aSEmmanuel Vadot		led-1 {
96*f126890aSEmmanuel Vadot			label = "debug1";
97*f126890aSEmmanuel Vadot			function = LED_FUNCTION_DISK;
98*f126890aSEmmanuel Vadot			gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
99*f126890aSEmmanuel Vadot			linux,default-trigger = "disk-activity";
100*f126890aSEmmanuel Vadot		};
101*f126890aSEmmanuel Vadot
102*f126890aSEmmanuel Vadot		led-2 {
103*f126890aSEmmanuel Vadot			label = "power_led";
104*f126890aSEmmanuel Vadot			function = LED_FUNCTION_POWER;
105*f126890aSEmmanuel Vadot			gpios = <&gpio2 24 GPIO_ACTIVE_HIGH>;
106*f126890aSEmmanuel Vadot			default-state = "on";
107*f126890aSEmmanuel Vadot		};
108*f126890aSEmmanuel Vadot
109*f126890aSEmmanuel Vadot		led-3 {
110*f126890aSEmmanuel Vadot			label = "isb_led";
111*f126890aSEmmanuel Vadot			function = LED_FUNCTION_POWER;
112*f126890aSEmmanuel Vadot			gpios = <&gpio4 31 GPIO_ACTIVE_HIGH>;
113*f126890aSEmmanuel Vadot			default-state = "on";
114*f126890aSEmmanuel Vadot		};
115*f126890aSEmmanuel Vadot	};
116*f126890aSEmmanuel Vadot
117*f126890aSEmmanuel Vadot	reg_1v8: regulator-1v8 {
118*f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
119*f126890aSEmmanuel Vadot		regulator-name = "1v8";
120*f126890aSEmmanuel Vadot		regulator-min-microvolt = <1800000>;
121*f126890aSEmmanuel Vadot		regulator-max-microvolt = <1800000>;
122*f126890aSEmmanuel Vadot	};
123*f126890aSEmmanuel Vadot
124*f126890aSEmmanuel Vadot	reg_3v3: regulator-3v3 {
125*f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
126*f126890aSEmmanuel Vadot		regulator-name = "3v3";
127*f126890aSEmmanuel Vadot		regulator-min-microvolt = <3300000>;
128*f126890aSEmmanuel Vadot		regulator-max-microvolt = <3300000>;
129*f126890aSEmmanuel Vadot	};
130*f126890aSEmmanuel Vadot
131*f126890aSEmmanuel Vadot	reg_otg_vbus: regulator-otg-vbus {
132*f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
133*f126890aSEmmanuel Vadot		regulator-name = "otg-vbus";
134*f126890aSEmmanuel Vadot		regulator-min-microvolt = <5000000>;
135*f126890aSEmmanuel Vadot		regulator-max-microvolt = <5000000>;
136*f126890aSEmmanuel Vadot		gpio = <&gpio3 22 GPIO_ACTIVE_HIGH>;
137*f126890aSEmmanuel Vadot		enable-active-high;
138*f126890aSEmmanuel Vadot	};
139*f126890aSEmmanuel Vadot
140*f126890aSEmmanuel Vadot	sound {
141*f126890aSEmmanuel Vadot		compatible = "simple-audio-card";
142*f126890aSEmmanuel Vadot		simple-audio-card,name = "prti6q-sgtl5000";
143*f126890aSEmmanuel Vadot		simple-audio-card,format = "i2s";
144*f126890aSEmmanuel Vadot		simple-audio-card,widgets =
145*f126890aSEmmanuel Vadot			"Microphone", "Microphone Jack",
146*f126890aSEmmanuel Vadot			"Line", "Line In Jack",
147*f126890aSEmmanuel Vadot			"Headphone", "Headphone Jack",
148*f126890aSEmmanuel Vadot			"Speaker", "External Speaker";
149*f126890aSEmmanuel Vadot		simple-audio-card,routing =
150*f126890aSEmmanuel Vadot			"MIC_IN", "Microphone Jack",
151*f126890aSEmmanuel Vadot			"LINE_IN", "Line In Jack",
152*f126890aSEmmanuel Vadot			"Headphone Jack", "HP_OUT",
153*f126890aSEmmanuel Vadot			"External Speaker", "LINE_OUT";
154*f126890aSEmmanuel Vadot
155*f126890aSEmmanuel Vadot		simple-audio-card,cpu {
156*f126890aSEmmanuel Vadot			sound-dai = <&ssi1>;
157*f126890aSEmmanuel Vadot			system-clock-frequency = <0>; /* Do NOT call fsl_ssi_set_dai_sysclk! */
158*f126890aSEmmanuel Vadot		};
159*f126890aSEmmanuel Vadot
160*f126890aSEmmanuel Vadot		simple-audio-card,codec {
161*f126890aSEmmanuel Vadot			sound-dai = <&codec>;
162*f126890aSEmmanuel Vadot			bitclock-master;
163*f126890aSEmmanuel Vadot			frame-master;
164*f126890aSEmmanuel Vadot		};
165*f126890aSEmmanuel Vadot	};
166*f126890aSEmmanuel Vadot
167*f126890aSEmmanuel Vadot	thermal-zones {
168*f126890aSEmmanuel Vadot		chassis-thermal {
169*f126890aSEmmanuel Vadot			polling-delay = <20000>;
170*f126890aSEmmanuel Vadot			polling-delay-passive = <0>;
171*f126890aSEmmanuel Vadot			thermal-sensors = <&tsens0>;
172*f126890aSEmmanuel Vadot
173*f126890aSEmmanuel Vadot			trips {
174*f126890aSEmmanuel Vadot				alert {
175*f126890aSEmmanuel Vadot					temperature = <105000>; /* millicelsius */
176*f126890aSEmmanuel Vadot					hysteresis = <2000>; /* millicelsius */
177*f126890aSEmmanuel Vadot					type = "passive";
178*f126890aSEmmanuel Vadot				};
179*f126890aSEmmanuel Vadot			};
180*f126890aSEmmanuel Vadot		};
181*f126890aSEmmanuel Vadot	};
182*f126890aSEmmanuel Vadot};
183*f126890aSEmmanuel Vadot
184*f126890aSEmmanuel Vadot&audmux {
185*f126890aSEmmanuel Vadot	pinctrl-names = "default";
186*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_audmux>;
187*f126890aSEmmanuel Vadot	status = "okay";
188*f126890aSEmmanuel Vadot
189*f126890aSEmmanuel Vadot	mux-ssi1 {
190*f126890aSEmmanuel Vadot		fsl,audmux-port = <0>;
191*f126890aSEmmanuel Vadot		fsl,port-config = <
192*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_SYN		0
193*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_TFSEL(2)	0
194*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_TCSEL(2)	0
195*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_TFSDIR	0
196*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_TCLKDIR	IMX_AUDMUX_V2_PDCR_RXDSEL(2)
197*f126890aSEmmanuel Vadot		>;
198*f126890aSEmmanuel Vadot	};
199*f126890aSEmmanuel Vadot
200*f126890aSEmmanuel Vadot	mux-pins3 {
201*f126890aSEmmanuel Vadot		fsl,audmux-port = <2>;
202*f126890aSEmmanuel Vadot		fsl,port-config = <
203*f126890aSEmmanuel Vadot			IMX_AUDMUX_V2_PTCR_SYN		IMX_AUDMUX_V2_PDCR_RXDSEL(0)
204*f126890aSEmmanuel Vadot			0				IMX_AUDMUX_V2_PDCR_TXRXEN
205*f126890aSEmmanuel Vadot		>;
206*f126890aSEmmanuel Vadot	};
207*f126890aSEmmanuel Vadot};
208*f126890aSEmmanuel Vadot
209*f126890aSEmmanuel Vadot&can1 {
210*f126890aSEmmanuel Vadot	pinctrl-names = "default";
211*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_can1>;
212*f126890aSEmmanuel Vadot	termination-gpios = <&gpio1 0 GPIO_ACTIVE_LOW>;
213*f126890aSEmmanuel Vadot	termination-ohms = <150>;
214*f126890aSEmmanuel Vadot	status = "okay";
215*f126890aSEmmanuel Vadot};
216*f126890aSEmmanuel Vadot
217*f126890aSEmmanuel Vadot&can2 {
218*f126890aSEmmanuel Vadot	pinctrl-names = "default";
219*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_can2>;
220*f126890aSEmmanuel Vadot	status = "okay";
221*f126890aSEmmanuel Vadot};
222*f126890aSEmmanuel Vadot
223*f126890aSEmmanuel Vadot&clks {
224*f126890aSEmmanuel Vadot	assigned-clocks = <&clks IMX6QDL_CLK_LDB_DI0_SEL>;
225*f126890aSEmmanuel Vadot	assigned-clock-parents = <&clks IMX6QDL_CLK_PLL5_VIDEO_DIV>;
226*f126890aSEmmanuel Vadot};
227*f126890aSEmmanuel Vadot
228*f126890aSEmmanuel Vadot&ecspi1 {
229*f126890aSEmmanuel Vadot	cs-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>;
230*f126890aSEmmanuel Vadot	pinctrl-names = "default";
231*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_ecspi1>;
232*f126890aSEmmanuel Vadot	status = "okay";
233*f126890aSEmmanuel Vadot
234*f126890aSEmmanuel Vadot	flash@0 {
235*f126890aSEmmanuel Vadot		compatible = "jedec,spi-nor";
236*f126890aSEmmanuel Vadot		reg = <0>;
237*f126890aSEmmanuel Vadot		spi-max-frequency = <20000000>;
238*f126890aSEmmanuel Vadot	};
239*f126890aSEmmanuel Vadot};
240*f126890aSEmmanuel Vadot
241*f126890aSEmmanuel Vadot&gpio2 {
242*f126890aSEmmanuel Vadot	gpio-line-names =
243*f126890aSEmmanuel Vadot		"YACO_WHEEL", "YACO_RADAR", "YACO_PTO", "", "", "", "", "",
244*f126890aSEmmanuel Vadot		"", "LED_PWM", "", "", "",
245*f126890aSEmmanuel Vadot			"", "", "",
246*f126890aSEmmanuel Vadot		"", "", "", "", "", "ISB_IN2", "ISB_nIN1", "ON_SWITCH",
247*f126890aSEmmanuel Vadot		"POWER_LED", "", "", "", "", "", "", "";
248*f126890aSEmmanuel Vadot};
249*f126890aSEmmanuel Vadot
250*f126890aSEmmanuel Vadot&gpio3 {
251*f126890aSEmmanuel Vadot	gpio-line-names =
252*f126890aSEmmanuel Vadot		"", "", "", "", "", "", "", "",
253*f126890aSEmmanuel Vadot		"", "", "", "", "", "", "", "",
254*f126890aSEmmanuel Vadot		"ECSPI1_SCLK", "ECSPI1_MISO", "ECSPI1_MOSI", "ECSPI1_SS1",
255*f126890aSEmmanuel Vadot			"CPU_ON1_FB", "USB_OTG_OC", "USB_OTG_PWR", "YACO_IRQ",
256*f126890aSEmmanuel Vadot		"TSS_TXD", "TSS_RXD", "", "", "", "", "YACO_BOOT0",
257*f126890aSEmmanuel Vadot			"YACO_RESET";
258*f126890aSEmmanuel Vadot};
259*f126890aSEmmanuel Vadot
260*f126890aSEmmanuel Vadot&gpio7 {
261*f126890aSEmmanuel Vadot	gpio-line-names =
262*f126890aSEmmanuel Vadot		"EMMC_DAT5", "EMMC_DAT4", "EMMC_CMD", "EMMC_CLK", "EMMC_DAT0",
263*f126890aSEmmanuel Vadot			"EMMC_DAT1", "EMMC_DAT2", "EMMC_DAT3",
264*f126890aSEmmanuel Vadot		"EMMC_RST", "", "", "", "CAM_DETECT", "", "", "",
265*f126890aSEmmanuel Vadot		"", "EMMC_DAT7", "EMMC_DAT6", "", "", "", "", "",
266*f126890aSEmmanuel Vadot		"", "", "", "", "", "", "", "";
267*f126890aSEmmanuel Vadot};
268*f126890aSEmmanuel Vadot
269*f126890aSEmmanuel Vadot&i2c1 {
270*f126890aSEmmanuel Vadot	clock-frequency = <100000>;
271*f126890aSEmmanuel Vadot	pinctrl-names = "default";
272*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_i2c1>;
273*f126890aSEmmanuel Vadot	status = "okay";
274*f126890aSEmmanuel Vadot
275*f126890aSEmmanuel Vadot	codec: audio-codec@a {
276*f126890aSEmmanuel Vadot		compatible = "fsl,sgtl5000";
277*f126890aSEmmanuel Vadot		reg = <0xa>;
278*f126890aSEmmanuel Vadot		#sound-dai-cells = <0>;
279*f126890aSEmmanuel Vadot		clocks = <&clks 201>;
280*f126890aSEmmanuel Vadot		VDDA-supply = <&reg_3v3>;
281*f126890aSEmmanuel Vadot		VDDIO-supply = <&reg_3v3>;
282*f126890aSEmmanuel Vadot		VDDD-supply = <&reg_1v8>;
283*f126890aSEmmanuel Vadot	};
284*f126890aSEmmanuel Vadot
285*f126890aSEmmanuel Vadot	video-decoder@5c {
286*f126890aSEmmanuel Vadot		compatible = "ti,tvp5150";
287*f126890aSEmmanuel Vadot		reg = <0x5c>;
288*f126890aSEmmanuel Vadot		#address-cells = <1>;
289*f126890aSEmmanuel Vadot		#size-cells = <0>;
290*f126890aSEmmanuel Vadot
291*f126890aSEmmanuel Vadot		port@0 {
292*f126890aSEmmanuel Vadot			reg = <0>;
293*f126890aSEmmanuel Vadot
294*f126890aSEmmanuel Vadot			tvp5150_comp0_in: endpoint {
295*f126890aSEmmanuel Vadot				remote-endpoint = <&comp0_out>;
296*f126890aSEmmanuel Vadot			};
297*f126890aSEmmanuel Vadot		};
298*f126890aSEmmanuel Vadot
299*f126890aSEmmanuel Vadot		/* Output port 2 is video output pad */
300*f126890aSEmmanuel Vadot		port@2 {
301*f126890aSEmmanuel Vadot			reg = <2>;
302*f126890aSEmmanuel Vadot
303*f126890aSEmmanuel Vadot			tvp5151_to_ipu1_csi0_mux: endpoint {
304*f126890aSEmmanuel Vadot				remote-endpoint = <&ipu1_csi0_mux_from_parallel_sensor>;
305*f126890aSEmmanuel Vadot			};
306*f126890aSEmmanuel Vadot		};
307*f126890aSEmmanuel Vadot	};
308*f126890aSEmmanuel Vadot};
309*f126890aSEmmanuel Vadot
310*f126890aSEmmanuel Vadot&i2c3 {
311*f126890aSEmmanuel Vadot	clock-frequency = <100000>;
312*f126890aSEmmanuel Vadot	pinctrl-names = "default";
313*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_i2c3>;
314*f126890aSEmmanuel Vadot	status = "okay";
315*f126890aSEmmanuel Vadot
316*f126890aSEmmanuel Vadot	adc@49 {
317*f126890aSEmmanuel Vadot		compatible = "ti,ads1015";
318*f126890aSEmmanuel Vadot		reg = <0x49>;
319*f126890aSEmmanuel Vadot		#address-cells = <1>;
320*f126890aSEmmanuel Vadot		#size-cells = <0>;
321*f126890aSEmmanuel Vadot
322*f126890aSEmmanuel Vadot		channel@4 {
323*f126890aSEmmanuel Vadot			reg = <4>;
324*f126890aSEmmanuel Vadot			ti,gain = <3>;
325*f126890aSEmmanuel Vadot			ti,datarate = <3>;
326*f126890aSEmmanuel Vadot		};
327*f126890aSEmmanuel Vadot
328*f126890aSEmmanuel Vadot		channel@5 {
329*f126890aSEmmanuel Vadot			reg = <5>;
330*f126890aSEmmanuel Vadot			ti,gain = <3>;
331*f126890aSEmmanuel Vadot			ti,datarate = <3>;
332*f126890aSEmmanuel Vadot		};
333*f126890aSEmmanuel Vadot
334*f126890aSEmmanuel Vadot		channel@6 {
335*f126890aSEmmanuel Vadot			reg = <6>;
336*f126890aSEmmanuel Vadot			ti,gain = <3>;
337*f126890aSEmmanuel Vadot			ti,datarate = <3>;
338*f126890aSEmmanuel Vadot		};
339*f126890aSEmmanuel Vadot
340*f126890aSEmmanuel Vadot		channel@7 {
341*f126890aSEmmanuel Vadot			reg = <7>;
342*f126890aSEmmanuel Vadot			ti,gain = <3>;
343*f126890aSEmmanuel Vadot			ti,datarate = <3>;
344*f126890aSEmmanuel Vadot		};
345*f126890aSEmmanuel Vadot	};
346*f126890aSEmmanuel Vadot
347*f126890aSEmmanuel Vadot	rtc@51 {
348*f126890aSEmmanuel Vadot		compatible = "nxp,pcf8563";
349*f126890aSEmmanuel Vadot		reg = <0x51>;
350*f126890aSEmmanuel Vadot	};
351*f126890aSEmmanuel Vadot
352*f126890aSEmmanuel Vadot	tsens0: temperature-sensor@70 {
353*f126890aSEmmanuel Vadot		compatible = "ti,tmp103";
354*f126890aSEmmanuel Vadot		reg = <0x70>;
355*f126890aSEmmanuel Vadot		#thermal-sensor-cells = <0>;
356*f126890aSEmmanuel Vadot	};
357*f126890aSEmmanuel Vadot};
358*f126890aSEmmanuel Vadot
359*f126890aSEmmanuel Vadot&ipu1_csi0 {
360*f126890aSEmmanuel Vadot	pinctrl-names = "default";
361*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_ipu1_csi0>;
362*f126890aSEmmanuel Vadot	status = "okay";
363*f126890aSEmmanuel Vadot};
364*f126890aSEmmanuel Vadot
365*f126890aSEmmanuel Vadot&ipu1_csi0_mux_from_parallel_sensor {
366*f126890aSEmmanuel Vadot	remote-endpoint = <&tvp5151_to_ipu1_csi0_mux>;
367*f126890aSEmmanuel Vadot};
368*f126890aSEmmanuel Vadot
369*f126890aSEmmanuel Vadot&ldb {
370*f126890aSEmmanuel Vadot	status = "okay";
371*f126890aSEmmanuel Vadot
372*f126890aSEmmanuel Vadot	lvds-channel@0 {
373*f126890aSEmmanuel Vadot		status = "okay";
374*f126890aSEmmanuel Vadot
375*f126890aSEmmanuel Vadot		port@4 {
376*f126890aSEmmanuel Vadot			reg = <4>;
377*f126890aSEmmanuel Vadot
378*f126890aSEmmanuel Vadot			lvds0_out: endpoint {
379*f126890aSEmmanuel Vadot				remote-endpoint = <&panel_in>;
380*f126890aSEmmanuel Vadot			};
381*f126890aSEmmanuel Vadot		};
382*f126890aSEmmanuel Vadot	};
383*f126890aSEmmanuel Vadot};
384*f126890aSEmmanuel Vadot
385*f126890aSEmmanuel Vadot&pwm1 {
386*f126890aSEmmanuel Vadot	pinctrl-names = "default";
387*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_pwm1>;
388*f126890aSEmmanuel Vadot	status = "okay";
389*f126890aSEmmanuel Vadot};
390*f126890aSEmmanuel Vadot
391*f126890aSEmmanuel Vadot&pwm2 {
392*f126890aSEmmanuel Vadot	pinctrl-names = "default";
393*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_pwm2>;
394*f126890aSEmmanuel Vadot	status = "okay";
395*f126890aSEmmanuel Vadot};
396*f126890aSEmmanuel Vadot
397*f126890aSEmmanuel Vadot&pwm3 {
398*f126890aSEmmanuel Vadot	pinctrl-names = "default";
399*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_pwm3>;
400*f126890aSEmmanuel Vadot	status = "okay";
401*f126890aSEmmanuel Vadot};
402*f126890aSEmmanuel Vadot
403*f126890aSEmmanuel Vadot&ssi1 {
404*f126890aSEmmanuel Vadot	status = "okay";
405*f126890aSEmmanuel Vadot};
406*f126890aSEmmanuel Vadot
407*f126890aSEmmanuel Vadot&uart1 {
408*f126890aSEmmanuel Vadot	pinctrl-names = "default";
409*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart1>;
410*f126890aSEmmanuel Vadot	status = "okay";
411*f126890aSEmmanuel Vadot};
412*f126890aSEmmanuel Vadot
413*f126890aSEmmanuel Vadot&uart3 {
414*f126890aSEmmanuel Vadot	pinctrl-names = "default";
415*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart3>;
416*f126890aSEmmanuel Vadot	status = "okay";
417*f126890aSEmmanuel Vadot};
418*f126890aSEmmanuel Vadot
419*f126890aSEmmanuel Vadot&uart4 {
420*f126890aSEmmanuel Vadot	pinctrl-names = "default";
421*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart4>;
422*f126890aSEmmanuel Vadot	status = "okay";
423*f126890aSEmmanuel Vadot};
424*f126890aSEmmanuel Vadot
425*f126890aSEmmanuel Vadot&uart5 {
426*f126890aSEmmanuel Vadot	pinctrl-names = "default";
427*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart5>;
428*f126890aSEmmanuel Vadot	status = "okay";
429*f126890aSEmmanuel Vadot};
430*f126890aSEmmanuel Vadot
431*f126890aSEmmanuel Vadot&usbh1 {
432*f126890aSEmmanuel Vadot	pinctrl-names = "default";
433*f126890aSEmmanuel Vadot	phy_type = "utmi";
434*f126890aSEmmanuel Vadot	dr_mode = "host";
435*f126890aSEmmanuel Vadot	disable-over-current;
436*f126890aSEmmanuel Vadot	status = "okay";
437*f126890aSEmmanuel Vadot};
438*f126890aSEmmanuel Vadot
439*f126890aSEmmanuel Vadot&usbotg {
440*f126890aSEmmanuel Vadot	vbus-supply = <&reg_otg_vbus>;
441*f126890aSEmmanuel Vadot	pinctrl-names = "default";
442*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_usbotg>;
443*f126890aSEmmanuel Vadot	phy_type = "utmi";
444*f126890aSEmmanuel Vadot	dr_mode = "host";
445*f126890aSEmmanuel Vadot	disable-over-current;
446*f126890aSEmmanuel Vadot	status = "okay";
447*f126890aSEmmanuel Vadot};
448*f126890aSEmmanuel Vadot
449*f126890aSEmmanuel Vadot&usbphynop1 {
450*f126890aSEmmanuel Vadot	status = "disabled";
451*f126890aSEmmanuel Vadot};
452*f126890aSEmmanuel Vadot
453*f126890aSEmmanuel Vadot&usbphynop2 {
454*f126890aSEmmanuel Vadot	status = "disabled";
455*f126890aSEmmanuel Vadot};
456*f126890aSEmmanuel Vadot
457*f126890aSEmmanuel Vadot&usdhc1 {
458*f126890aSEmmanuel Vadot	pinctrl-names = "default";
459*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_usdhc1>;
460*f126890aSEmmanuel Vadot	cd-gpios = <&gpio1 1 GPIO_ACTIVE_LOW>;
461*f126890aSEmmanuel Vadot	no-1-8-v;
462*f126890aSEmmanuel Vadot	disable-wp;
463*f126890aSEmmanuel Vadot	cap-sd-highspeed;
464*f126890aSEmmanuel Vadot	no-mmc;
465*f126890aSEmmanuel Vadot	no-sdio;
466*f126890aSEmmanuel Vadot	status = "okay";
467*f126890aSEmmanuel Vadot};
468*f126890aSEmmanuel Vadot
469*f126890aSEmmanuel Vadot&usdhc3 {
470*f126890aSEmmanuel Vadot	pinctrl-names = "default";
471*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_usdhc3>;
472*f126890aSEmmanuel Vadot	bus-width = <8>;
473*f126890aSEmmanuel Vadot	no-1-8-v;
474*f126890aSEmmanuel Vadot	non-removable;
475*f126890aSEmmanuel Vadot	no-sd;
476*f126890aSEmmanuel Vadot	no-sdio;
477*f126890aSEmmanuel Vadot	status = "okay";
478*f126890aSEmmanuel Vadot};
479*f126890aSEmmanuel Vadot
480*f126890aSEmmanuel Vadot&iomuxc {
481*f126890aSEmmanuel Vadot	pinctrl-names = "default";
482*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_hog>;
483*f126890aSEmmanuel Vadot
484*f126890aSEmmanuel Vadot	pinctrl_audmux: audmuxgrp {
485*f126890aSEmmanuel Vadot		fsl,pins = <
486*f126890aSEmmanuel Vadot			/* SGTL5000 sys_mclk */
487*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_MCLK__CCM_CLKO1			0x030b0
488*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT7__AUD3_RXD			0x130b0
489*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT4__AUD3_TXC			0x130b0
490*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT5__AUD3_TXD			0x110b0
491*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT6__AUD3_TXFS			0x130b0
492*f126890aSEmmanuel Vadot		>;
493*f126890aSEmmanuel Vadot	};
494*f126890aSEmmanuel Vadot
495*f126890aSEmmanuel Vadot	pinctrl_backlight: backlightgrp {
496*f126890aSEmmanuel Vadot		fsl,pins = <
497*f126890aSEmmanuel Vadot			MX6QDL_PAD_DISP0_DAT7__GPIO4_IO28		0x1b0b0
498*f126890aSEmmanuel Vadot		>;
499*f126890aSEmmanuel Vadot	};
500*f126890aSEmmanuel Vadot
501*f126890aSEmmanuel Vadot	pinctrl_can1: can1grp {
502*f126890aSEmmanuel Vadot		fsl,pins = <
503*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_ROW2__FLEXCAN1_RX		0x1b000
504*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_COL2__FLEXCAN1_TX		0x3008
505*f126890aSEmmanuel Vadot			/* CAN1_SR */
506*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_COL3__GPIO4_IO12			0x13008
507*f126890aSEmmanuel Vadot			/* CAN1_TERM */
508*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_0__GPIO1_IO00			0x1b088
509*f126890aSEmmanuel Vadot		>;
510*f126890aSEmmanuel Vadot	};
511*f126890aSEmmanuel Vadot
512*f126890aSEmmanuel Vadot	pinctrl_can2: can2grp {
513*f126890aSEmmanuel Vadot		fsl,pins = <
514*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_ROW4__FLEXCAN2_RX		0x1b000
515*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_COL4__FLEXCAN2_TX		0x3008
516*f126890aSEmmanuel Vadot			/* CAN2_SR */
517*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_ROW3__GPIO4_IO13			0x13008
518*f126890aSEmmanuel Vadot		>;
519*f126890aSEmmanuel Vadot	};
520*f126890aSEmmanuel Vadot
521*f126890aSEmmanuel Vadot	pinctrl_counter0: counter0grp {
522*f126890aSEmmanuel Vadot		fsl,pins = <
523*f126890aSEmmanuel Vadot			MX6QDL_PAD_NANDF_D0__GPIO2_IO00			0x1b000
524*f126890aSEmmanuel Vadot		>;
525*f126890aSEmmanuel Vadot	};
526*f126890aSEmmanuel Vadot
527*f126890aSEmmanuel Vadot	pinctrl_counter1: counter1grp {
528*f126890aSEmmanuel Vadot		fsl,pins = <
529*f126890aSEmmanuel Vadot			MX6QDL_PAD_NANDF_D1__GPIO2_IO01			0x1b000
530*f126890aSEmmanuel Vadot		>;
531*f126890aSEmmanuel Vadot	};
532*f126890aSEmmanuel Vadot
533*f126890aSEmmanuel Vadot	pinctrl_counter2: counter2grp {
534*f126890aSEmmanuel Vadot		fsl,pins = <
535*f126890aSEmmanuel Vadot			MX6QDL_PAD_NANDF_D2__GPIO2_IO02			0x1b000
536*f126890aSEmmanuel Vadot		>;
537*f126890aSEmmanuel Vadot	};
538*f126890aSEmmanuel Vadot
539*f126890aSEmmanuel Vadot	pinctrl_ecspi1: ecspi1grp {
540*f126890aSEmmanuel Vadot		fsl,pins = <
541*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D17__ECSPI1_MISO			0x100b1
542*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D18__ECSPI1_MOSI			0x100b1
543*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D16__ECSPI1_SCLK			0x100b1
544*f126890aSEmmanuel Vadot			/* CS */
545*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D19__GPIO3_IO19			0x000b1
546*f126890aSEmmanuel Vadot		>;
547*f126890aSEmmanuel Vadot	};
548*f126890aSEmmanuel Vadot
549*f126890aSEmmanuel Vadot	pinctrl_hog: hoggrp {
550*f126890aSEmmanuel Vadot		fsl,pins = <
551*f126890aSEmmanuel Vadot			/* ITU656_nRESET */
552*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_2__GPIO1_IO02			0x1b0b0
553*f126890aSEmmanuel Vadot			/* CAM1_MIRROR */
554*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_3__GPIO1_IO03			0x130b0
555*f126890aSEmmanuel Vadot			/* CAM2_MIRROR */
556*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_4__GPIO1_IO04			0x130b0
557*f126890aSEmmanuel Vadot			/* CAM_nDETECT */
558*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_17__GPIO7_IO12			0x1b0b0
559*f126890aSEmmanuel Vadot			/* ISB_IN1 */
560*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_A16__GPIO2_IO22			0x130b0
561*f126890aSEmmanuel Vadot			/* ISB_nIN2 */
562*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_A17__GPIO2_IO21			0x1b0b0
563*f126890aSEmmanuel Vadot			/* WARN_LIGHT */
564*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_A19__GPIO2_IO19			0x100b0
565*f126890aSEmmanuel Vadot			/* ON2_FB */
566*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_A25__GPIO5_IO02			0x100b0
567*f126890aSEmmanuel Vadot			/* YACO_nIRQ */
568*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D23__GPIO3_IO23			0x1b0b0
569*f126890aSEmmanuel Vadot			/* YACO_BOOT0 */
570*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D30__GPIO3_IO30			0x130b0
571*f126890aSEmmanuel Vadot			/* YACO_nRESET */
572*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D31__GPIO3_IO31			0x1b0b0
573*f126890aSEmmanuel Vadot			/* FORCE_ON1 */
574*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_EB2__GPIO2_IO30			0x1b0b0
575*f126890aSEmmanuel Vadot			/* AUDIO_nRESET */
576*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_VSYNC__GPIO5_IO21		0x1f0b0
577*f126890aSEmmanuel Vadot			/* ITU656_nPDN */
578*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DATA_EN__GPIO5_IO20		0x1b0b0
579*f126890aSEmmanuel Vadot
580*f126890aSEmmanuel Vadot			/* New in HW revision 1 */
581*f126890aSEmmanuel Vadot			/* ON1_FB */
582*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D20__GPIO3_IO20			0x100b0
583*f126890aSEmmanuel Vadot			/* DIP1_FB */
584*f126890aSEmmanuel Vadot			MX6QDL_PAD_DI0_PIN2__GPIO4_IO18			0x1b0b0
585*f126890aSEmmanuel Vadot		>;
586*f126890aSEmmanuel Vadot	};
587*f126890aSEmmanuel Vadot
588*f126890aSEmmanuel Vadot	pinctrl_i2c1: i2c1grp {
589*f126890aSEmmanuel Vadot		fsl,pins = <
590*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT8__I2C1_SDA		0x4001f8b1
591*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT9__I2C1_SCL		0x4001f8b1
592*f126890aSEmmanuel Vadot		>;
593*f126890aSEmmanuel Vadot	};
594*f126890aSEmmanuel Vadot
595*f126890aSEmmanuel Vadot	pinctrl_i2c3: i2c3grp {
596*f126890aSEmmanuel Vadot		fsl,pins = <
597*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_5__I2C3_SCL		0x4001b8b1
598*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_6__I2C3_SDA		0x4001b8b1
599*f126890aSEmmanuel Vadot		>;
600*f126890aSEmmanuel Vadot	};
601*f126890aSEmmanuel Vadot
602*f126890aSEmmanuel Vadot	pinctrl_ipu1_csi0: ipu1csi0grp {
603*f126890aSEmmanuel Vadot		fsl,pins = <
604*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT12__IPU1_CSI0_DATA12		0x1b0b0
605*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT13__IPU1_CSI0_DATA13		0x1b0b0
606*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT14__IPU1_CSI0_DATA14		0x1b0b0
607*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT15__IPU1_CSI0_DATA15		0x1b0b0
608*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT16__IPU1_CSI0_DATA16		0x1b0b0
609*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT17__IPU1_CSI0_DATA17		0x1b0b0
610*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT18__IPU1_CSI0_DATA18		0x1b0b0
611*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT19__IPU1_CSI0_DATA19		0x1b0b0
612*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_PIXCLK__IPU1_CSI0_PIXCLK	0x1b0b0
613*f126890aSEmmanuel Vadot		>;
614*f126890aSEmmanuel Vadot	};
615*f126890aSEmmanuel Vadot
616*f126890aSEmmanuel Vadot	pinctrl_leds: ledsgrp {
617*f126890aSEmmanuel Vadot		fsl,pins = <
618*f126890aSEmmanuel Vadot			/* DEBUG0 */
619*f126890aSEmmanuel Vadot			MX6QDL_PAD_DI0_DISP_CLK__GPIO4_IO16		0x1b0b0
620*f126890aSEmmanuel Vadot			/* DEBUG1 */
621*f126890aSEmmanuel Vadot			MX6QDL_PAD_DI0_PIN15__GPIO4_IO17		0x1b0b0
622*f126890aSEmmanuel Vadot			/* POWER_LED */
623*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_CS1__GPIO2_IO24			0x1b0b0
624*f126890aSEmmanuel Vadot			/* ISB_LED */
625*f126890aSEmmanuel Vadot			MX6QDL_PAD_DISP0_DAT10__GPIO4_IO31		0x1b0b0
626*f126890aSEmmanuel Vadot		>;
627*f126890aSEmmanuel Vadot	};
628*f126890aSEmmanuel Vadot
629*f126890aSEmmanuel Vadot	pinctrl_pwm1: pwm1grp {
630*f126890aSEmmanuel Vadot		fsl,pins = <
631*f126890aSEmmanuel Vadot			MX6QDL_PAD_DISP0_DAT8__PWM1_OUT			0x1b0b0
632*f126890aSEmmanuel Vadot		>;
633*f126890aSEmmanuel Vadot	};
634*f126890aSEmmanuel Vadot
635*f126890aSEmmanuel Vadot	pinctrl_pwm2: pwm2grp {
636*f126890aSEmmanuel Vadot		fsl,pins = <
637*f126890aSEmmanuel Vadot			MX6QDL_PAD_DISP0_DAT9__PWM2_OUT			0x1b0b0
638*f126890aSEmmanuel Vadot		>;
639*f126890aSEmmanuel Vadot	};
640*f126890aSEmmanuel Vadot
641*f126890aSEmmanuel Vadot	pinctrl_pwm3: pwm3grp {
642*f126890aSEmmanuel Vadot		fsl,pins = <
643*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD4_DAT1__PWM3_OUT			0x1b0b0
644*f126890aSEmmanuel Vadot		>;
645*f126890aSEmmanuel Vadot	};
646*f126890aSEmmanuel Vadot
647*f126890aSEmmanuel Vadot	/* YaCO AUX Uart */
648*f126890aSEmmanuel Vadot	pinctrl_uart1: uart1grp {
649*f126890aSEmmanuel Vadot		fsl,pins = <
650*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT10__UART1_TX_DATA		0x1b0b1
651*f126890aSEmmanuel Vadot			MX6QDL_PAD_CSI0_DAT11__UART1_RX_DATA		0x1b0b1
652*f126890aSEmmanuel Vadot		>;
653*f126890aSEmmanuel Vadot	};
654*f126890aSEmmanuel Vadot
655*f126890aSEmmanuel Vadot	/* YaCO Touchscreen UART */
656*f126890aSEmmanuel Vadot	pinctrl_uart3: uart3grp {
657*f126890aSEmmanuel Vadot		fsl,pins = <
658*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D24__UART3_TX_DATA		0x1b0b1
659*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D25__UART3_RX_DATA		0x1b0b1
660*f126890aSEmmanuel Vadot		>;
661*f126890aSEmmanuel Vadot	};
662*f126890aSEmmanuel Vadot
663*f126890aSEmmanuel Vadot	pinctrl_uart4: uart4grp {
664*f126890aSEmmanuel Vadot		fsl,pins = <
665*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_COL0__UART4_TX_DATA		0x1b0b1
666*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_ROW0__UART4_RX_DATA		0x1b0b1
667*f126890aSEmmanuel Vadot		>;
668*f126890aSEmmanuel Vadot	};
669*f126890aSEmmanuel Vadot
670*f126890aSEmmanuel Vadot	pinctrl_uart5: uart5grp {
671*f126890aSEmmanuel Vadot		fsl,pins = <
672*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_COL1__UART5_TX_DATA		0x1b0b1
673*f126890aSEmmanuel Vadot			MX6QDL_PAD_KEY_ROW1__UART5_RX_DATA		0x1b0b1
674*f126890aSEmmanuel Vadot		>;
675*f126890aSEmmanuel Vadot	};
676*f126890aSEmmanuel Vadot
677*f126890aSEmmanuel Vadot	pinctrl_usbotg: usbotggrp {
678*f126890aSEmmanuel Vadot		fsl,pins = <
679*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D21__USB_OTG_OC			0x1b0b0
680*f126890aSEmmanuel Vadot			/* power enable, high active */
681*f126890aSEmmanuel Vadot			MX6QDL_PAD_EIM_D22__GPIO3_IO22			0x1b0b0
682*f126890aSEmmanuel Vadot		>;
683*f126890aSEmmanuel Vadot	};
684*f126890aSEmmanuel Vadot
685*f126890aSEmmanuel Vadot	pinctrl_usdhc1: usdhc1grp {
686*f126890aSEmmanuel Vadot		fsl,pins = <
687*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_CMD__SD1_CMD			0x170f9
688*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_CLK__SD1_CLK			0x100f9
689*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_DAT0__SD1_DATA0			0x170f9
690*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_DAT1__SD1_DATA1			0x170f9
691*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_DAT2__SD1_DATA2			0x170f9
692*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD1_DAT3__SD1_DATA3			0x170f9
693*f126890aSEmmanuel Vadot			MX6QDL_PAD_GPIO_1__GPIO1_IO01			0x1b0b0
694*f126890aSEmmanuel Vadot		>;
695*f126890aSEmmanuel Vadot	};
696*f126890aSEmmanuel Vadot
697*f126890aSEmmanuel Vadot	pinctrl_usdhc3: usdhc3grp {
698*f126890aSEmmanuel Vadot		fsl,pins = <
699*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_CMD__SD3_CMD			0x17099
700*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_CLK__SD3_CLK			0x10099
701*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT0__SD3_DATA0			0x17099
702*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT1__SD3_DATA1			0x17099
703*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT2__SD3_DATA2			0x17099
704*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT3__SD3_DATA3			0x17099
705*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT4__SD3_DATA4			0x17099
706*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT5__SD3_DATA5			0x17099
707*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT6__SD3_DATA6			0x17099
708*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_DAT7__SD3_DATA7			0x17099
709*f126890aSEmmanuel Vadot			MX6QDL_PAD_SD3_RST__SD3_RESET			0x1b0b1
710*f126890aSEmmanuel Vadot		>;
711*f126890aSEmmanuel Vadot	};
712*f126890aSEmmanuel Vadot};
713