1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Digi International's ConnectCore6UL SBC Pro board device tree source 4f126890aSEmmanuel Vadot * 5f126890aSEmmanuel Vadot * Copyright 2018 Digi International, Inc. 6f126890aSEmmanuel Vadot * 7f126890aSEmmanuel Vadot */ 8f126890aSEmmanuel Vadot 9f126890aSEmmanuel Vadot/dts-v1/; 10f126890aSEmmanuel Vadot#include <dt-bindings/input/input.h> 11f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/irq.h> 12f126890aSEmmanuel Vadot#include "imx6ul.dtsi" 13f126890aSEmmanuel Vadot#include "imx6ul-ccimx6ulsom.dtsi" 14f126890aSEmmanuel Vadot 15f126890aSEmmanuel Vadot/ { 16f126890aSEmmanuel Vadot model = "Digi International ConnectCore 6UL SBC Pro."; 17f126890aSEmmanuel Vadot compatible = "digi,ccimx6ulsbcpro", "digi,ccimx6ulsom", "fsl,imx6ul"; 18f126890aSEmmanuel Vadot 19f126890aSEmmanuel Vadot lcd_backlight: backlight { 20f126890aSEmmanuel Vadot compatible = "pwm-backlight"; 217d0873ebSEmmanuel Vadot pwms = <&pwm5 0 50000 0>; 22f126890aSEmmanuel Vadot brightness-levels = <0 4 8 16 32 64 128 255>; 23f126890aSEmmanuel Vadot default-brightness-level = <6>; 24f126890aSEmmanuel Vadot status = "okay"; 25f126890aSEmmanuel Vadot }; 26f126890aSEmmanuel Vadot 27f126890aSEmmanuel Vadot panel { 28f126890aSEmmanuel Vadot compatible = "auo,g101evn010"; 29f126890aSEmmanuel Vadot power-supply = <&ldo4_ext>; 30f126890aSEmmanuel Vadot backlight = <&lcd_backlight>; 31f126890aSEmmanuel Vadot 32f126890aSEmmanuel Vadot port { 33f126890aSEmmanuel Vadot panel_in: endpoint { 34f126890aSEmmanuel Vadot remote-endpoint = <&display_out>; 35f126890aSEmmanuel Vadot }; 36f126890aSEmmanuel Vadot }; 37f126890aSEmmanuel Vadot }; 38f126890aSEmmanuel Vadot 39f126890aSEmmanuel Vadot reg_usb_otg1_vbus: regulator-usb-otg1 { 40f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 41f126890aSEmmanuel Vadot regulator-name = "usb_otg1_vbus"; 42f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 43f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 44f126890aSEmmanuel Vadot gpio = <&gpio1 4 GPIO_ACTIVE_HIGH>; 45f126890aSEmmanuel Vadot enable-active-high; 46f126890aSEmmanuel Vadot }; 47f126890aSEmmanuel Vadot}; 48f126890aSEmmanuel Vadot 49f126890aSEmmanuel Vadot&adc1 { 50f126890aSEmmanuel Vadot pinctrl-names = "default"; 51f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_adc1>; 52f126890aSEmmanuel Vadot status = "okay"; 53f126890aSEmmanuel Vadot}; 54f126890aSEmmanuel Vadot 55f126890aSEmmanuel Vadot&can1 { 56f126890aSEmmanuel Vadot pinctrl-names = "default"; 57f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan1>; 58f126890aSEmmanuel Vadot xceiver-supply = <&ext_3v3>; 59f126890aSEmmanuel Vadot status = "okay"; 60f126890aSEmmanuel Vadot}; 61f126890aSEmmanuel Vadot 62f126890aSEmmanuel Vadot/* CAN2 is multiplexed with UART2 RTS/CTS */ 63f126890aSEmmanuel Vadot&can2 { 64f126890aSEmmanuel Vadot pinctrl-names = "default"; 65f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan2>; 66f126890aSEmmanuel Vadot xceiver-supply = <&ext_3v3>; 67f126890aSEmmanuel Vadot status = "disabled"; 68f126890aSEmmanuel Vadot}; 69f126890aSEmmanuel Vadot 70f126890aSEmmanuel Vadot&ecspi1 { 71f126890aSEmmanuel Vadot cs-gpios = <&gpio3 26 GPIO_ACTIVE_LOW>; 72f126890aSEmmanuel Vadot pinctrl-names = "default"; 73f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_ecspi1_master>; 74f126890aSEmmanuel Vadot status = "okay"; 75f126890aSEmmanuel Vadot}; 76f126890aSEmmanuel Vadot 77f126890aSEmmanuel Vadot&fec1 { 78f126890aSEmmanuel Vadot pinctrl-names = "default"; 79f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_enet1>; 80f126890aSEmmanuel Vadot phy-mode = "rmii"; 81f126890aSEmmanuel Vadot phy-handle = <ðphy0>; 82f126890aSEmmanuel Vadot status = "okay"; 83f126890aSEmmanuel Vadot}; 84f126890aSEmmanuel Vadot 85f126890aSEmmanuel Vadot&fec2 { 86f126890aSEmmanuel Vadot pinctrl-names = "default"; 87f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_enet2 &pinctrl_enet2_mdio>; 88f126890aSEmmanuel Vadot phy-mode = "rmii"; 89f126890aSEmmanuel Vadot phy-handle = <ðphy1>; 90f126890aSEmmanuel Vadot phy-reset-gpios = <&gpio5 6 GPIO_ACTIVE_LOW>; 91f126890aSEmmanuel Vadot phy-reset-duration = <26>; 92f126890aSEmmanuel Vadot status = "okay"; 93f126890aSEmmanuel Vadot 94f126890aSEmmanuel Vadot mdio { 95f126890aSEmmanuel Vadot #address-cells = <1>; 96f126890aSEmmanuel Vadot #size-cells = <0>; 97f126890aSEmmanuel Vadot 98f126890aSEmmanuel Vadot ethphy0: ethernet-phy@0 { 99f126890aSEmmanuel Vadot compatible = "ethernet-phy-ieee802.3-c22"; 100f126890aSEmmanuel Vadot smsc,disable-energy-detect; 101f126890aSEmmanuel Vadot reg = <0>; 102f126890aSEmmanuel Vadot }; 103f126890aSEmmanuel Vadot 104f126890aSEmmanuel Vadot ethphy1: ethernet-phy@1 { 105f126890aSEmmanuel Vadot compatible = "ethernet-phy-ieee802.3-c22"; 106f126890aSEmmanuel Vadot smsc,disable-energy-detect; 107f126890aSEmmanuel Vadot reg = <1>; 108f126890aSEmmanuel Vadot }; 109f126890aSEmmanuel Vadot }; 110f126890aSEmmanuel Vadot}; 111f126890aSEmmanuel Vadot 112f126890aSEmmanuel Vadot&gpio5 { 113f126890aSEmmanuel Vadot emmc-usd-mux-hog { 114f126890aSEmmanuel Vadot gpio-hog; 115f126890aSEmmanuel Vadot gpios = <1 GPIO_ACTIVE_LOW>; 116f126890aSEmmanuel Vadot output-high; 117f126890aSEmmanuel Vadot }; 118f126890aSEmmanuel Vadot}; 119f126890aSEmmanuel Vadot 120f126890aSEmmanuel Vadot&i2c1 { 121f126890aSEmmanuel Vadot touchscreen@14 { 122f126890aSEmmanuel Vadot compatible = "goodix,gt911"; 123f126890aSEmmanuel Vadot reg = <0x14>; 124f126890aSEmmanuel Vadot pinctrl-names = "default"; 125f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_goodix_touch>; 126f126890aSEmmanuel Vadot interrupt-parent = <&gpio5>; 127f126890aSEmmanuel Vadot interrupts = <2 IRQ_TYPE_EDGE_RISING>; 128f126890aSEmmanuel Vadot irq-gpios = <&gpio5 2 GPIO_ACTIVE_HIGH>; 129f126890aSEmmanuel Vadot status = "okay"; 130f126890aSEmmanuel Vadot }; 131f126890aSEmmanuel Vadot}; 132f126890aSEmmanuel Vadot 133f126890aSEmmanuel Vadot&lcdif { 134f126890aSEmmanuel Vadot pinctrl-names = "default"; 135f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_lcdif_dat0_17 136f126890aSEmmanuel Vadot &pinctrl_lcdif_clken 137f126890aSEmmanuel Vadot &pinctrl_lcdif_hvsync>; 138f126890aSEmmanuel Vadot lcd-supply = <&ldo4_ext>; /* BU90T82 LVDS bridge power */ 139f126890aSEmmanuel Vadot status = "okay"; 140f126890aSEmmanuel Vadot 141f126890aSEmmanuel Vadot port { 142f126890aSEmmanuel Vadot display_out: endpoint { 143f126890aSEmmanuel Vadot remote-endpoint = <&panel_in>; 144f126890aSEmmanuel Vadot }; 145f126890aSEmmanuel Vadot }; 146f126890aSEmmanuel Vadot}; 147f126890aSEmmanuel Vadot 148f126890aSEmmanuel Vadot&ldo4_ext { 149f126890aSEmmanuel Vadot regulator-max-microvolt = <1800000>; 150f126890aSEmmanuel Vadot}; 151f126890aSEmmanuel Vadot 152f126890aSEmmanuel Vadot&pwm1 { 153f126890aSEmmanuel Vadot status = "okay"; 154f126890aSEmmanuel Vadot}; 155f126890aSEmmanuel Vadot 156f126890aSEmmanuel Vadot&pwm2 { 157f126890aSEmmanuel Vadot status = "okay"; 158f126890aSEmmanuel Vadot}; 159f126890aSEmmanuel Vadot 160f126890aSEmmanuel Vadot&pwm3 { 161f126890aSEmmanuel Vadot status = "okay"; 162f126890aSEmmanuel Vadot}; 163f126890aSEmmanuel Vadot 164f126890aSEmmanuel Vadot&pwm4 { 165f126890aSEmmanuel Vadot pinctrl-names = "default"; 166f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm4>; 167f126890aSEmmanuel Vadot status = "okay"; 168f126890aSEmmanuel Vadot}; 169f126890aSEmmanuel Vadot 170f126890aSEmmanuel Vadot&pwm5 { 171f126890aSEmmanuel Vadot pinctrl-names = "default"; 172f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm5>; 173f126890aSEmmanuel Vadot status = "okay"; 174f126890aSEmmanuel Vadot}; 175f126890aSEmmanuel Vadot 176f126890aSEmmanuel Vadot&pwm6 { 177f126890aSEmmanuel Vadot status = "okay"; 178f126890aSEmmanuel Vadot}; 179f126890aSEmmanuel Vadot 180f126890aSEmmanuel Vadot&pwm7 { 181f126890aSEmmanuel Vadot status = "okay"; 182f126890aSEmmanuel Vadot}; 183f126890aSEmmanuel Vadot 184f126890aSEmmanuel Vadot&pwm8 { 185f126890aSEmmanuel Vadot status = "okay"; 186f126890aSEmmanuel Vadot}; 187f126890aSEmmanuel Vadot 188f126890aSEmmanuel Vadot&sai2 { 189f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 190f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_sai2>; 191f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_sai2_sleep>; 192f126890aSEmmanuel Vadot assigned-clocks = <&clks IMX6UL_CLK_SAI2_SEL>, 193f126890aSEmmanuel Vadot <&clks IMX6UL_CLK_PLL4_AUDIO_DIV>, 194f126890aSEmmanuel Vadot <&clks IMX6UL_CLK_SAI2>; 195f126890aSEmmanuel Vadot assigned-clock-rates = <0>, <786432000>, <12288000>; 196f126890aSEmmanuel Vadot assigned-clock-parents = <&clks IMX6UL_CLK_PLL4_AUDIO_DIV>; 197f126890aSEmmanuel Vadot status = "okay"; 198f126890aSEmmanuel Vadot}; 199f126890aSEmmanuel Vadot 200f126890aSEmmanuel Vadot/* UART2 RTS/CTS muxed with CAN2 */ 201f126890aSEmmanuel Vadot&uart2 { 202f126890aSEmmanuel Vadot pinctrl-names = "default"; 203f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart2_4wires>; 204f126890aSEmmanuel Vadot uart-has-rtscts; 205f126890aSEmmanuel Vadot status = "okay"; 206f126890aSEmmanuel Vadot}; 207f126890aSEmmanuel Vadot 208f126890aSEmmanuel Vadot/* UART3 RTS/CTS muxed with CAN 1 */ 209f126890aSEmmanuel Vadot&uart3 { 210f126890aSEmmanuel Vadot pinctrl-names = "default"; 211f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart3_2wires>; 212f126890aSEmmanuel Vadot status = "okay"; 213f126890aSEmmanuel Vadot}; 214f126890aSEmmanuel Vadot 215f126890aSEmmanuel Vadot&uart5 { 216f126890aSEmmanuel Vadot pinctrl-names = "default"; 217f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart5>; 218f126890aSEmmanuel Vadot status = "okay"; 219f126890aSEmmanuel Vadot}; 220f126890aSEmmanuel Vadot 221f126890aSEmmanuel Vadot&usbotg1 { 222f126890aSEmmanuel Vadot dr_mode = "otg"; 223f126890aSEmmanuel Vadot vbus-supply = <®_usb_otg1_vbus>; 224f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbotg1>; 225f126890aSEmmanuel Vadot status = "okay"; 226f126890aSEmmanuel Vadot}; 227f126890aSEmmanuel Vadot 228f126890aSEmmanuel Vadot&usbotg2 { 229f126890aSEmmanuel Vadot dr_mode = "host"; 230f126890aSEmmanuel Vadot disable-over-current; 231f126890aSEmmanuel Vadot status = "okay"; 232f126890aSEmmanuel Vadot}; 233f126890aSEmmanuel Vadot 234f126890aSEmmanuel Vadot/* USDHC2 (microSD conflicts with eMMC) */ 235f126890aSEmmanuel Vadot&usdhc2 { 236f126890aSEmmanuel Vadot pinctrl-names = "default"; 237f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc2>; 238f126890aSEmmanuel Vadot no-1-8-v; 239f126890aSEmmanuel Vadot broken-cd; /* no carrier detect line (use polling) */ 240f126890aSEmmanuel Vadot status = "okay"; 241f126890aSEmmanuel Vadot}; 242f126890aSEmmanuel Vadot 243f126890aSEmmanuel Vadot&iomuxc { 244f126890aSEmmanuel Vadot pinctrl_adc1: adc1grp { 245f126890aSEmmanuel Vadot fsl,pins = < 246f126890aSEmmanuel Vadot /* EXP_GPIO_2 -> GPIO1_3/ADC1_IN3 */ 247f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO03__GPIO1_IO03 0xb0 248f126890aSEmmanuel Vadot >; 249f126890aSEmmanuel Vadot }; 250f126890aSEmmanuel Vadot 251*b2d2a78aSEmmanuel Vadot pinctrl_ecspi1_master: ecspi1-1-grp { 252f126890aSEmmanuel Vadot fsl,pins = < 253f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA20__ECSPI1_SCLK 0x10b0 254f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA22__ECSPI1_MOSI 0x10b0 255f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA23__ECSPI1_MISO 0x10b0 256f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA21__GPIO3_IO26 0x10b0 257f126890aSEmmanuel Vadot >; 258f126890aSEmmanuel Vadot }; 259f126890aSEmmanuel Vadot 260f126890aSEmmanuel Vadot pinctrl_enet1: enet1grp { 261f126890aSEmmanuel Vadot fsl,pins = < 262f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_RX_EN__ENET1_RX_EN 0x1b0b0 263f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_RX_ER__ENET1_RX_ER 0x1b0b0 264f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_RX_DATA0__ENET1_RDATA00 0x1b0b0 265f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_RX_DATA1__ENET1_RDATA01 0x1b0b0 266f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_TX_EN__ENET1_TX_EN 0x1b0b0 267f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_TX_DATA0__ENET1_TDATA00 0x1b0b0 268f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_TX_DATA1__ENET1_TDATA01 0x1b0b0 269f126890aSEmmanuel Vadot MX6UL_PAD_ENET1_TX_CLK__ENET1_REF_CLK1 0x40017051 270f126890aSEmmanuel Vadot >; 271f126890aSEmmanuel Vadot }; 272f126890aSEmmanuel Vadot 273f126890aSEmmanuel Vadot pinctrl_enet2: enet2grp { 274f126890aSEmmanuel Vadot fsl,pins = < 275f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_RX_EN__ENET2_RX_EN 0x1b0b0 276f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_RX_ER__ENET2_RX_ER 0x1b0b0 277f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_RX_DATA0__ENET2_RDATA00 0x1b0b0 278f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_RX_DATA1__ENET2_RDATA01 0x1b0b0 279f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_TX_EN__ENET2_TX_EN 0x1b0b0 280f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_TX_DATA0__ENET2_TDATA00 0x1b0b0 281f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_TX_DATA1__ENET2_TDATA01 0x1b0b0 282f126890aSEmmanuel Vadot MX6UL_PAD_ENET2_TX_CLK__ENET2_REF_CLK2 0x40017051 283f126890aSEmmanuel Vadot >; 284f126890aSEmmanuel Vadot }; 285f126890aSEmmanuel Vadot 286f126890aSEmmanuel Vadot pinctrl_enet2_mdio: mdioenet2grp { 287f126890aSEmmanuel Vadot fsl,pins = < 288f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO07__ENET2_MDC 0x1b0b0 289f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO06__ENET2_MDIO 0x1b0b0 290f126890aSEmmanuel Vadot >; 291f126890aSEmmanuel Vadot }; 292f126890aSEmmanuel Vadot 293f126890aSEmmanuel Vadot pinctrl_flexcan1: flexcan1grp { 294f126890aSEmmanuel Vadot fsl,pins = < 295f126890aSEmmanuel Vadot MX6UL_PAD_UART3_CTS_B__FLEXCAN1_TX 0x1b020 296f126890aSEmmanuel Vadot MX6UL_PAD_UART3_RTS_B__FLEXCAN1_RX 0x1b020 297f126890aSEmmanuel Vadot >; 298f126890aSEmmanuel Vadot }; 299f126890aSEmmanuel Vadot pinctrl_flexcan2: flexcan2grp { 300f126890aSEmmanuel Vadot fsl,pins = < 301f126890aSEmmanuel Vadot MX6UL_PAD_UART2_CTS_B__FLEXCAN2_TX 0x1b020 302f126890aSEmmanuel Vadot MX6UL_PAD_UART2_RTS_B__FLEXCAN2_RX 0x1b020 303f126890aSEmmanuel Vadot >; 304f126890aSEmmanuel Vadot }; 305f126890aSEmmanuel Vadot 306f126890aSEmmanuel Vadot pinctrl_goodix_touch: goodixgrp { 307f126890aSEmmanuel Vadot fsl,pins = < 308f126890aSEmmanuel Vadot MX6UL_PAD_SNVS_TAMPER2__GPIO5_IO02 0x1020 309f126890aSEmmanuel Vadot >; 310f126890aSEmmanuel Vadot }; 311f126890aSEmmanuel Vadot 312*b2d2a78aSEmmanuel Vadot pinctrl_lcdif_dat0_17: lcdifdat0-17-grp { 313f126890aSEmmanuel Vadot fsl,pins = < 314f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA00__LCDIF_DATA00 0x79 315f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA01__LCDIF_DATA01 0x79 316f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA02__LCDIF_DATA02 0x79 317f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA03__LCDIF_DATA03 0x79 318f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA04__LCDIF_DATA04 0x79 319f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA05__LCDIF_DATA05 0x79 320f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA06__LCDIF_DATA06 0x79 321f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA07__LCDIF_DATA07 0x79 322f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA08__LCDIF_DATA08 0x79 323f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA09__LCDIF_DATA09 0x79 324f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA10__LCDIF_DATA10 0x79 325f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA11__LCDIF_DATA11 0x79 326f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA12__LCDIF_DATA12 0x79 327f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA13__LCDIF_DATA13 0x79 328f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA14__LCDIF_DATA14 0x79 329f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA15__LCDIF_DATA15 0x79 330f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA16__LCDIF_DATA16 0x79 331f126890aSEmmanuel Vadot MX6UL_PAD_LCD_DATA17__LCDIF_DATA17 0x79 332f126890aSEmmanuel Vadot >; 333f126890aSEmmanuel Vadot }; 334f126890aSEmmanuel Vadot 335*b2d2a78aSEmmanuel Vadot pinctrl_lcdif_clken: lcdifctrl-1-grp { 336f126890aSEmmanuel Vadot fsl,pins = < 337f126890aSEmmanuel Vadot MX6UL_PAD_LCD_CLK__LCDIF_CLK 0x17050 338f126890aSEmmanuel Vadot MX6UL_PAD_LCD_ENABLE__LCDIF_ENABLE 0x79 339f126890aSEmmanuel Vadot >; 340f126890aSEmmanuel Vadot }; 341f126890aSEmmanuel Vadot 342*b2d2a78aSEmmanuel Vadot pinctrl_lcdif_hvsync: lcdifctrl-2-grp { 343f126890aSEmmanuel Vadot fsl,pins = < 344f126890aSEmmanuel Vadot MX6UL_PAD_LCD_HSYNC__LCDIF_HSYNC 0x79 345f126890aSEmmanuel Vadot MX6UL_PAD_LCD_VSYNC__LCDIF_VSYNC 0x79 346f126890aSEmmanuel Vadot >; 347f126890aSEmmanuel Vadot }; 348f126890aSEmmanuel Vadot 349f126890aSEmmanuel Vadot pinctrl_pwm4: pwm4grp { 350f126890aSEmmanuel Vadot fsl,pins = < 351f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO05__PWM4_OUT 0x110b0 352f126890aSEmmanuel Vadot >; 353f126890aSEmmanuel Vadot }; 354f126890aSEmmanuel Vadot 355f126890aSEmmanuel Vadot pinctrl_pwm5: pwm5grp { 356f126890aSEmmanuel Vadot fsl,pins = < 357f126890aSEmmanuel Vadot MX6UL_PAD_NAND_DQS__PWM5_OUT 0x110b0 358f126890aSEmmanuel Vadot >; 359f126890aSEmmanuel Vadot }; 360f126890aSEmmanuel Vadot 361f126890aSEmmanuel Vadot pinctrl_sai2: sai2grp { 362f126890aSEmmanuel Vadot fsl,pins = < 363f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TRST_B__SAI2_TX_DATA 0x11088 364f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TCK__SAI2_RX_DATA 0x11088 365f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TMS__SAI2_MCLK 0x17088 366f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TDI__SAI2_TX_BCLK 0x17088 367f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TDO__SAI2_TX_SYNC 0x17088 368f126890aSEmmanuel Vadot /* Interrupt */ 369f126890aSEmmanuel Vadot MX6UL_PAD_SNVS_TAMPER7__GPIO5_IO07 0x10b0 370f126890aSEmmanuel Vadot >; 371f126890aSEmmanuel Vadot }; 372f126890aSEmmanuel Vadot 373*b2d2a78aSEmmanuel Vadot pinctrl_sai2_sleep: sai2-sleep-grp { 374f126890aSEmmanuel Vadot fsl,pins = < 375f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TRST_B__GPIO1_IO15 0x3000 376f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TCK__GPIO1_IO14 0x3000 377f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TMS__GPIO1_IO11 0x3000 378f126890aSEmmanuel Vadot MX6UL_PAD_JTAG_TDO__GPIO1_IO12 0x3000 379f126890aSEmmanuel Vadot /* Interrupt */ 380f126890aSEmmanuel Vadot MX6UL_PAD_SNVS_TAMPER7__GPIO5_IO07 0x3000 381f126890aSEmmanuel Vadot >; 382f126890aSEmmanuel Vadot }; 383f126890aSEmmanuel Vadot 384*b2d2a78aSEmmanuel Vadot pinctrl_uart2_4wires: uart2-4wires-grp { 385f126890aSEmmanuel Vadot fsl,pins = < 386f126890aSEmmanuel Vadot MX6UL_PAD_UART2_TX_DATA__UART2_DCE_TX 0x1b0b1 387f126890aSEmmanuel Vadot MX6UL_PAD_UART2_RX_DATA__UART2_DCE_RX 0x1b0b1 388f126890aSEmmanuel Vadot MX6UL_PAD_UART2_CTS_B__UART2_DCE_CTS 0x1b0b1 389f126890aSEmmanuel Vadot MX6UL_PAD_UART2_RTS_B__UART2_DCE_RTS 0x1b0b1 390f126890aSEmmanuel Vadot >; 391f126890aSEmmanuel Vadot }; 392f126890aSEmmanuel Vadot 393*b2d2a78aSEmmanuel Vadot pinctrl_uart3_2wires: uart3-2wires-grp { 394f126890aSEmmanuel Vadot fsl,pins = < 395f126890aSEmmanuel Vadot MX6UL_PAD_UART3_TX_DATA__UART3_DCE_TX 0x1b0b1 396f126890aSEmmanuel Vadot MX6UL_PAD_UART3_RX_DATA__UART3_DCE_RX 0x1b0b1 397f126890aSEmmanuel Vadot >; 398f126890aSEmmanuel Vadot }; 399f126890aSEmmanuel Vadot 400f126890aSEmmanuel Vadot pinctrl_uart5: uart5grp { 401f126890aSEmmanuel Vadot fsl,pins = < 402f126890aSEmmanuel Vadot MX6UL_PAD_UART5_TX_DATA__UART5_DCE_TX 0x1b0b1 403f126890aSEmmanuel Vadot MX6UL_PAD_UART5_RX_DATA__UART5_DCE_RX 0x1b0b1 404f126890aSEmmanuel Vadot >; 405f126890aSEmmanuel Vadot }; 406f126890aSEmmanuel Vadot 407f126890aSEmmanuel Vadot pinctrl_usdhc2: usdhc2grp { 408f126890aSEmmanuel Vadot fsl,pins = < 409f126890aSEmmanuel Vadot MX6UL_PAD_CSI_HSYNC__USDHC2_CMD 0x17059 410f126890aSEmmanuel Vadot MX6UL_PAD_CSI_VSYNC__USDHC2_CLK 0x10039 411f126890aSEmmanuel Vadot MX6UL_PAD_CSI_DATA00__USDHC2_DATA0 0x17059 412f126890aSEmmanuel Vadot MX6UL_PAD_CSI_DATA01__USDHC2_DATA1 0x17059 413f126890aSEmmanuel Vadot MX6UL_PAD_CSI_DATA02__USDHC2_DATA2 0x17059 414f126890aSEmmanuel Vadot MX6UL_PAD_CSI_DATA03__USDHC2_DATA3 0x17059 415f126890aSEmmanuel Vadot /* Mux selector between eMMC/SD# */ 416f126890aSEmmanuel Vadot MX6UL_PAD_SNVS_TAMPER1__GPIO5_IO01 0x79 417f126890aSEmmanuel Vadot >; 418f126890aSEmmanuel Vadot }; 419f126890aSEmmanuel Vadot 420f126890aSEmmanuel Vadot pinctrl_usbotg1: usbotg1grp { 421f126890aSEmmanuel Vadot fsl,pins = < 422f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO00__ANATOP_OTG1_ID 0x17059 423f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO04__GPIO1_IO04 0x17059 424f126890aSEmmanuel Vadot MX6UL_PAD_GPIO1_IO01__USB_OTG1_OC 0x17059 425f126890aSEmmanuel Vadot >; 426f126890aSEmmanuel Vadot }; 427f126890aSEmmanuel Vadot}; 428