1f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Copyright (C) 2018 PHYTEC Messtechnik GmbH 4f126890aSEmmanuel Vadot * Author: Christian Hemp <c.hemp@phytec.de> 5f126890aSEmmanuel Vadot */ 6f126890aSEmmanuel Vadot 7f126890aSEmmanuel Vadot 8f126890aSEmmanuel Vadot/ { 9f126890aSEmmanuel Vadot aliases { 10f126890aSEmmanuel Vadot rtc0 = &i2c_rtc; 11f126890aSEmmanuel Vadot }; 12f126890aSEmmanuel Vadot 13f126890aSEmmanuel Vadot backlight: backlight { 14f126890aSEmmanuel Vadot compatible = "pwm-backlight"; 15f126890aSEmmanuel Vadot brightness-levels = <0 4 8 16 32 64 128 255>; 16f126890aSEmmanuel Vadot default-brightness-level = <7>; 17f126890aSEmmanuel Vadot power-supply = <®_backlight>; 18*7d0873ebSEmmanuel Vadot pwms = <&pwm1 0 5000000 0>; 19f126890aSEmmanuel Vadot status = "okay"; 20f126890aSEmmanuel Vadot }; 21f126890aSEmmanuel Vadot 22f126890aSEmmanuel Vadot gpio_leds: leds { 23f126890aSEmmanuel Vadot compatible = "gpio-leds"; 24f126890aSEmmanuel Vadot pinctrl-names = "default"; 25f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_gpioleds>; 26f126890aSEmmanuel Vadot status = "disabled"; 27f126890aSEmmanuel Vadot 28f126890aSEmmanuel Vadot led-red { 29f126890aSEmmanuel Vadot label = "phyboard-mira:red"; 30f126890aSEmmanuel Vadot gpios = <&gpio5 22 GPIO_ACTIVE_HIGH>; 31f126890aSEmmanuel Vadot }; 32f126890aSEmmanuel Vadot 33f126890aSEmmanuel Vadot led-green { 34f126890aSEmmanuel Vadot label = "phyboard-mira:green"; 35f126890aSEmmanuel Vadot gpios = <&gpio5 23 GPIO_ACTIVE_HIGH>; 36f126890aSEmmanuel Vadot }; 37f126890aSEmmanuel Vadot 38f126890aSEmmanuel Vadot led-blue { 39f126890aSEmmanuel Vadot label = "phyboard-mira:blue"; 40f126890aSEmmanuel Vadot gpios = <&gpio5 24 GPIO_ACTIVE_HIGH>; 41f126890aSEmmanuel Vadot linux,default-trigger = "mmc0"; 42f126890aSEmmanuel Vadot }; 43f126890aSEmmanuel Vadot }; 44f126890aSEmmanuel Vadot 45f126890aSEmmanuel Vadot reg_backlight: regulator-backlight { 46f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 47f126890aSEmmanuel Vadot regulator-name = "backlight_3v3"; 48f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 49f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 50f126890aSEmmanuel Vadot regulator-always-on; 51f126890aSEmmanuel Vadot }; 52f126890aSEmmanuel Vadot 53f126890aSEmmanuel Vadot reg_en_switch: regulator-en-switch { 54f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 55f126890aSEmmanuel Vadot pinctrl-names = "default"; 56f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_en_switch>; 57f126890aSEmmanuel Vadot regulator-name = "Enable Switch"; 58f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 59f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 60f126890aSEmmanuel Vadot enable-active-high; 61f126890aSEmmanuel Vadot gpio = <&gpio3 4 GPIO_ACTIVE_HIGH>; 62f126890aSEmmanuel Vadot regulator-always-on; 63f126890aSEmmanuel Vadot }; 64f126890aSEmmanuel Vadot 65f126890aSEmmanuel Vadot reg_flexcan1: regulator-flexcan1 { 66f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 67f126890aSEmmanuel Vadot pinctrl-names = "default"; 68f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan1_en>; 69f126890aSEmmanuel Vadot regulator-name = "flexcan1-reg"; 70f126890aSEmmanuel Vadot regulator-min-microvolt = <1500000>; 71f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 72f126890aSEmmanuel Vadot gpio = <&gpio2 20 GPIO_ACTIVE_HIGH>; 73f126890aSEmmanuel Vadot enable-active-high; 74f126890aSEmmanuel Vadot }; 75f126890aSEmmanuel Vadot 76f126890aSEmmanuel Vadot reg_panel: regulator-panel { 77f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 78f126890aSEmmanuel Vadot regulator-name = "panel-power-supply"; 79f126890aSEmmanuel Vadot regulator-min-microvolt = <12000000>; 80f126890aSEmmanuel Vadot regulator-max-microvolt = <12000000>; 81f126890aSEmmanuel Vadot regulator-always-on; 82f126890aSEmmanuel Vadot }; 83f126890aSEmmanuel Vadot 84f126890aSEmmanuel Vadot reg_pcie: regulator-pcie { 85f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 86f126890aSEmmanuel Vadot pinctrl-names = "default"; 87f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pcie_reg>; 88f126890aSEmmanuel Vadot regulator-name = "mPCIe_1V5"; 89f126890aSEmmanuel Vadot regulator-min-microvolt = <1500000>; 90f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 91f126890aSEmmanuel Vadot gpio = <&gpio3 0 GPIO_ACTIVE_HIGH>; 92f126890aSEmmanuel Vadot enable-active-high; 93f126890aSEmmanuel Vadot }; 94f126890aSEmmanuel Vadot 95f126890aSEmmanuel Vadot reg_usb_h1_vbus: usb-h1-vbus { 96f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 97f126890aSEmmanuel Vadot pinctrl-names = "default"; 98f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbh1_vbus>; 99f126890aSEmmanuel Vadot regulator-name = "usb_h1_vbus"; 100f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 101f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 102f126890aSEmmanuel Vadot gpio = <&gpio2 18 GPIO_ACTIVE_HIGH>; 103f126890aSEmmanuel Vadot enable-active-high; 104f126890aSEmmanuel Vadot }; 105f126890aSEmmanuel Vadot 106f126890aSEmmanuel Vadot reg_usbotg_vbus: usbotg-vbus { 107f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 108f126890aSEmmanuel Vadot pinctrl-names = "default"; 109f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbotg_vbus>; 110f126890aSEmmanuel Vadot regulator-name = "usb_otg_vbus"; 111f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 112f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 113f126890aSEmmanuel Vadot gpio = <&gpio2 19 GPIO_ACTIVE_HIGH>; 114f126890aSEmmanuel Vadot enable-active-high; 115f126890aSEmmanuel Vadot }; 116f126890aSEmmanuel Vadot 117f126890aSEmmanuel Vadot panel { 118f126890aSEmmanuel Vadot compatible = "auo,g104sn02"; 119f126890aSEmmanuel Vadot pinctrl-names = "default"; 120f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_panel_en>; 121f126890aSEmmanuel Vadot power-supply = <®_panel>; 122f126890aSEmmanuel Vadot enable-gpios = <&gpio2 28 GPIO_ACTIVE_LOW>; 123f126890aSEmmanuel Vadot backlight = <&backlight>; 124f126890aSEmmanuel Vadot 125f126890aSEmmanuel Vadot port { 126f126890aSEmmanuel Vadot panel_in: endpoint { 127f126890aSEmmanuel Vadot remote-endpoint = <&lvds0_out>; 128f126890aSEmmanuel Vadot }; 129f126890aSEmmanuel Vadot }; 130f126890aSEmmanuel Vadot }; 131f126890aSEmmanuel Vadot}; 132f126890aSEmmanuel Vadot 133f126890aSEmmanuel Vadot&can1 { 134f126890aSEmmanuel Vadot pinctrl-names = "default"; 135f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan1>; 136f126890aSEmmanuel Vadot xceiver-supply = <®_flexcan1>; 137f126890aSEmmanuel Vadot status = "disabled"; 138f126890aSEmmanuel Vadot}; 139f126890aSEmmanuel Vadot 140f126890aSEmmanuel Vadot&hdmi { 141f126890aSEmmanuel Vadot pinctrl-names = "default"; 142f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_hdmicec>; 143f126890aSEmmanuel Vadot ddc-i2c-bus = <&i2c2>; 144f126890aSEmmanuel Vadot status = "disabled"; 145f126890aSEmmanuel Vadot}; 146f126890aSEmmanuel Vadot 147f126890aSEmmanuel Vadot&i2c1 { 148f126890aSEmmanuel Vadot pinctrl-names = "default", "gpio"; 149f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c1>; 150f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c1_gpio>; 151f126890aSEmmanuel Vadot scl-gpios = <&gpio3 21 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 152f126890aSEmmanuel Vadot sda-gpios = <&gpio3 28 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 153f126890aSEmmanuel Vadot clock-frequency = <400000>; 154f126890aSEmmanuel Vadot status = "disabled"; 155f126890aSEmmanuel Vadot 156f126890aSEmmanuel Vadot stmpe: touchctrl@44 { 157f126890aSEmmanuel Vadot compatible = "st,stmpe811"; 158f126890aSEmmanuel Vadot pinctrl-names = "default"; 159f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_stmpe>; 160f126890aSEmmanuel Vadot reg = <0x44>; 161f126890aSEmmanuel Vadot interrupt-parent = <&gpio7>; 162f126890aSEmmanuel Vadot interrupts = <12 IRQ_TYPE_NONE>; 163f126890aSEmmanuel Vadot status = "disabled"; 164f126890aSEmmanuel Vadot 165f126890aSEmmanuel Vadot stmpe_touchscreen { 166f126890aSEmmanuel Vadot compatible = "st,stmpe-ts"; 167f126890aSEmmanuel Vadot st,sample-time = <4>; 168f126890aSEmmanuel Vadot st,mod-12b = <1>; 169f126890aSEmmanuel Vadot st,ref-sel = <0>; 170f126890aSEmmanuel Vadot st,adc-freq = <1>; 171f126890aSEmmanuel Vadot st,ave-ctrl = <1>; 172f126890aSEmmanuel Vadot st,touch-det-delay = <2>; 173f126890aSEmmanuel Vadot st,settling = <2>; 174f126890aSEmmanuel Vadot st,fraction-z = <7>; 175f126890aSEmmanuel Vadot st,i-drive = <1>; 176f126890aSEmmanuel Vadot }; 177f126890aSEmmanuel Vadot }; 178f126890aSEmmanuel Vadot 179f126890aSEmmanuel Vadot i2c_rtc: rtc@68 { 180f126890aSEmmanuel Vadot compatible = "microcrystal,rv4162"; 181f126890aSEmmanuel Vadot pinctrl-names = "default"; 182f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_rtc_int>; 183f126890aSEmmanuel Vadot reg = <0x68>; 184f126890aSEmmanuel Vadot interrupt-parent = <&gpio7>; 185f126890aSEmmanuel Vadot interrupts = <8 IRQ_TYPE_LEVEL_LOW>; 186f126890aSEmmanuel Vadot status = "disabled"; 187f126890aSEmmanuel Vadot }; 188f126890aSEmmanuel Vadot}; 189f126890aSEmmanuel Vadot 190f126890aSEmmanuel Vadot&i2c2 { 191f126890aSEmmanuel Vadot pinctrl-names = "default", "gpio"; 192f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c2>; 193f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c2_gpio>; 194f126890aSEmmanuel Vadot scl-gpios = <&gpio4 12 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 195f126890aSEmmanuel Vadot sda-gpios = <&gpio4 13 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 196f126890aSEmmanuel Vadot clock-frequency = <100000>; 197f126890aSEmmanuel Vadot status = "disabled"; 198f126890aSEmmanuel Vadot}; 199f126890aSEmmanuel Vadot 200f126890aSEmmanuel Vadot&ldb { 201f126890aSEmmanuel Vadot status = "okay"; 202f126890aSEmmanuel Vadot 203f126890aSEmmanuel Vadot lvds-channel@0 { 204f126890aSEmmanuel Vadot fsl,data-mapping = "spwg"; 205f126890aSEmmanuel Vadot fsl,data-width = <24>; 206f126890aSEmmanuel Vadot status = "disabled"; 207f126890aSEmmanuel Vadot 208f126890aSEmmanuel Vadot port@4 { 209f126890aSEmmanuel Vadot reg = <4>; 210f126890aSEmmanuel Vadot 211f126890aSEmmanuel Vadot lvds0_out: endpoint { 212f126890aSEmmanuel Vadot remote-endpoint = <&panel_in>; 213f126890aSEmmanuel Vadot }; 214f126890aSEmmanuel Vadot }; 215f126890aSEmmanuel Vadot }; 216f126890aSEmmanuel Vadot}; 217f126890aSEmmanuel Vadot 218f126890aSEmmanuel Vadot&pcie { 219f126890aSEmmanuel Vadot pinctrl-names = "default"; 220f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pcie>; 221f126890aSEmmanuel Vadot reset-gpio = <&gpio2 25 GPIO_ACTIVE_LOW>; 222f126890aSEmmanuel Vadot vpcie-supply = <®_pcie>; 223f126890aSEmmanuel Vadot status = "disabled"; 224f126890aSEmmanuel Vadot}; 225f126890aSEmmanuel Vadot 226f126890aSEmmanuel Vadot&pwm1 { 227f126890aSEmmanuel Vadot pinctrl-names = "default"; 228f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm1>; 229f126890aSEmmanuel Vadot status = "okay"; 230f126890aSEmmanuel Vadot}; 231f126890aSEmmanuel Vadot 232f126890aSEmmanuel Vadot&uart2 { 233f126890aSEmmanuel Vadot pinctrl-names = "default"; 234f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart2>; 235f126890aSEmmanuel Vadot status = "okay"; 236f126890aSEmmanuel Vadot}; 237f126890aSEmmanuel Vadot 238f126890aSEmmanuel Vadot&uart3 { 239f126890aSEmmanuel Vadot pinctrl-names = "default"; 240f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart3>; 241f126890aSEmmanuel Vadot uart-has-rtscts; 242f126890aSEmmanuel Vadot status = "disabled"; 243f126890aSEmmanuel Vadot}; 244f126890aSEmmanuel Vadot 245f126890aSEmmanuel Vadot&usbh1 { 246f126890aSEmmanuel Vadot vbus-supply = <®_usb_h1_vbus>; 247f126890aSEmmanuel Vadot disable-over-current; 248f126890aSEmmanuel Vadot status = "disabled"; 249f126890aSEmmanuel Vadot}; 250f126890aSEmmanuel Vadot 251f126890aSEmmanuel Vadot&usbotg { 252f126890aSEmmanuel Vadot pinctrl-names = "default"; 253f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbotg>; 254f126890aSEmmanuel Vadot vbus-supply = <®_usbotg_vbus>; 255f126890aSEmmanuel Vadot disable-over-current; 256f126890aSEmmanuel Vadot status = "disabled"; 257f126890aSEmmanuel Vadot}; 258f126890aSEmmanuel Vadot 259f126890aSEmmanuel Vadot&usdhc1 { 260f126890aSEmmanuel Vadot pinctrl-names = "default"; 261f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc1>; 262f126890aSEmmanuel Vadot cd-gpios = <&gpio6 31 GPIO_ACTIVE_LOW>; 263f126890aSEmmanuel Vadot no-1-8-v; 264f126890aSEmmanuel Vadot disable-wp; 265f126890aSEmmanuel Vadot status = "disabled"; 266f126890aSEmmanuel Vadot}; 267f126890aSEmmanuel Vadot 268f126890aSEmmanuel Vadot&iomuxc { 269f126890aSEmmanuel Vadot pinctrl_panel_en: panelen1grp { 270f126890aSEmmanuel Vadot fsl,pins = < 271f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_EB0__GPIO2_IO28 0xb0b1 272f126890aSEmmanuel Vadot >; 273f126890aSEmmanuel Vadot }; 274f126890aSEmmanuel Vadot 275f126890aSEmmanuel Vadot pinctrl_en_switch: enswitchgrp { 276f126890aSEmmanuel Vadot fsl,pins = < 277f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_DA4__GPIO3_IO04 0xb0b1 278f126890aSEmmanuel Vadot >; 279f126890aSEmmanuel Vadot }; 280f126890aSEmmanuel Vadot 281f126890aSEmmanuel Vadot pinctrl_flexcan1: flexcan1grp { 282f126890aSEmmanuel Vadot fsl,pins = < 283f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_7__FLEXCAN1_TX 0x1b0b0 284f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_8__FLEXCAN1_RX 0x1b0b0 285f126890aSEmmanuel Vadot >; 286f126890aSEmmanuel Vadot }; 287f126890aSEmmanuel Vadot 288f126890aSEmmanuel Vadot pinctrl_flexcan1_en: flexcan1engrp { 289f126890aSEmmanuel Vadot fsl,pins = < 290f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_A18__GPIO2_IO20 0xb0b1 291f126890aSEmmanuel Vadot >; 292f126890aSEmmanuel Vadot }; 293f126890aSEmmanuel Vadot 294f126890aSEmmanuel Vadot pinctrl_gpioleds: gpioledsgrp { 295f126890aSEmmanuel Vadot fsl,pins = < 296f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT4__GPIO5_IO22 0x1b0b0 297f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT5__GPIO5_IO23 0x1b0b0 298f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT6__GPIO5_IO24 0x1b0b0 299f126890aSEmmanuel Vadot >; 300f126890aSEmmanuel Vadot }; 301f126890aSEmmanuel Vadot 302f126890aSEmmanuel Vadot pinctrl_hdmicec: hdmicecgrp { 303f126890aSEmmanuel Vadot fsl,pins = < 304f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW2__HDMI_TX_CEC_LINE 0x1f8b0 305f126890aSEmmanuel Vadot >; 306f126890aSEmmanuel Vadot }; 307f126890aSEmmanuel Vadot 308f126890aSEmmanuel Vadot pinctrl_i2c1: i2c1grp { 309f126890aSEmmanuel Vadot fsl,pins = < 310f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D21__I2C1_SCL 0x4001b8b1 311f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D28__I2C1_SDA 0x4001b8b1 312f126890aSEmmanuel Vadot >; 313f126890aSEmmanuel Vadot }; 314f126890aSEmmanuel Vadot 315f126890aSEmmanuel Vadot pinctrl_i2c1_gpio: i2c1gpiogrp { 316f126890aSEmmanuel Vadot fsl,pins = < 317f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D21__GPIO3_IO21 0x4001b8b1 318f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D28__GPIO3_IO28 0x4001b8b1 319f126890aSEmmanuel Vadot >; 320f126890aSEmmanuel Vadot }; 321f126890aSEmmanuel Vadot 322f126890aSEmmanuel Vadot pinctrl_i2c2: i2c2grp { 323f126890aSEmmanuel Vadot fsl,pins = < 324f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW3__I2C2_SDA 0x4001b8b1 325f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b8b1 326f126890aSEmmanuel Vadot >; 327f126890aSEmmanuel Vadot }; 328f126890aSEmmanuel Vadot 329f126890aSEmmanuel Vadot pinctrl_i2c2_gpio: i2c2gpiogrp { 330f126890aSEmmanuel Vadot fsl,pins = < 331f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW3__GPIO4_IO13 0x4001b8b1 332f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL3__GPIO4_IO12 0x4001b8b1 333f126890aSEmmanuel Vadot >; 334f126890aSEmmanuel Vadot }; 335f126890aSEmmanuel Vadot 336f126890aSEmmanuel Vadot pinctrl_pcie: pciegrp { 337f126890aSEmmanuel Vadot fsl,pins = < 338f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_OE__GPIO2_IO25 0xb0b1 339f126890aSEmmanuel Vadot >; 340f126890aSEmmanuel Vadot }; 341f126890aSEmmanuel Vadot 342f126890aSEmmanuel Vadot pinctrl_pcie_reg: pciereggrp { 343f126890aSEmmanuel Vadot fsl,pins = < 344f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_DA0__GPIO3_IO00 0xb0b1 345f126890aSEmmanuel Vadot >; 346f126890aSEmmanuel Vadot }; 347f126890aSEmmanuel Vadot 348f126890aSEmmanuel Vadot pinctrl_pwm1: pwm1grp { 349f126890aSEmmanuel Vadot fsl,pins = < 350f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_9__PWM1_OUT 0x1b0b1 351f126890aSEmmanuel Vadot >; 352f126890aSEmmanuel Vadot }; 353f126890aSEmmanuel Vadot 354f126890aSEmmanuel Vadot pinctrl_rtc_int: rtcintgrp { 355f126890aSEmmanuel Vadot fsl,pins = < 356f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_RST__GPIO7_IO08 0x1b0b0 357f126890aSEmmanuel Vadot >; 358f126890aSEmmanuel Vadot }; 359f126890aSEmmanuel Vadot 360f126890aSEmmanuel Vadot pinctrl_stmpe: stmpegrp { 361f126890aSEmmanuel Vadot fsl,pins = < 362f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_17__GPIO7_IO12 0x1b0b0 363f126890aSEmmanuel Vadot >; 364f126890aSEmmanuel Vadot }; 365f126890aSEmmanuel Vadot 366f126890aSEmmanuel Vadot pinctrl_uart2: uart2grp { 367f126890aSEmmanuel Vadot fsl,pins = < 368f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D26__UART2_TX_DATA 0x1b0b1 369f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D27__UART2_RX_DATA 0x1b0b1 370f126890aSEmmanuel Vadot >; 371f126890aSEmmanuel Vadot }; 372f126890aSEmmanuel Vadot 373f126890aSEmmanuel Vadot pinctrl_uart3: uart3grp { 374f126890aSEmmanuel Vadot fsl,pins = < 375f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_EB3__UART3_CTS_B 0x1b0b1 376f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D23__UART3_RTS_B 0x1b0b1 377f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D24__UART3_TX_DATA 0x1b0b1 378f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D25__UART3_RX_DATA 0x1b0b1 379f126890aSEmmanuel Vadot >; 380f126890aSEmmanuel Vadot }; 381f126890aSEmmanuel Vadot 382f126890aSEmmanuel Vadot pinctrl_usbh1_vbus: usbh1vbusgrp { 383f126890aSEmmanuel Vadot fsl,pins = < 384f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_A20__GPIO2_IO18 0xb0b1 385f126890aSEmmanuel Vadot >; 386f126890aSEmmanuel Vadot }; 387f126890aSEmmanuel Vadot 388f126890aSEmmanuel Vadot pinctrl_usbotg: usbotggrp { 389f126890aSEmmanuel Vadot fsl,pins = < 390f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x17059 391f126890aSEmmanuel Vadot >; 392f126890aSEmmanuel Vadot }; 393f126890aSEmmanuel Vadot 394f126890aSEmmanuel Vadot pinctrl_usbotg_vbus: usbotgvbusgrp { 395f126890aSEmmanuel Vadot fsl,pins = < 396f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_A19__GPIO2_IO19 0xb0b1 397f126890aSEmmanuel Vadot >; 398f126890aSEmmanuel Vadot }; 399f126890aSEmmanuel Vadot 400f126890aSEmmanuel Vadot pinctrl_usdhc1: usdhc1grp { 401f126890aSEmmanuel Vadot fsl,pins = < 402f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_CMD__SD1_CMD 0x170f9 403f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_CLK__SD1_CLK 0x100f9 404f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT0__SD1_DATA0 0x170f9 405f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT1__SD1_DATA1 0x170f9 406f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT2__SD1_DATA2 0x170f9 407f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT3__SD1_DATA3 0x170f9 408f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_BCLK__GPIO6_IO31 0xb0b1 /* CD */ 409f126890aSEmmanuel Vadot >; 410f126890aSEmmanuel Vadot }; 411f126890aSEmmanuel Vadot}; 412