1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Support for the i.MX6-based Bosch ACC board. 4f126890aSEmmanuel Vadot * 5f126890aSEmmanuel Vadot * Copyright (C) 2016 Garz & Fricke GmbH 6f126890aSEmmanuel Vadot * Copyright (C) 2018 DENX Software Engineering GmbH, Heiko Schocher <hs@denx.de> 7f126890aSEmmanuel Vadot * Copyright (C) 2018 DENX Software Engineering GmbH, Niel Fourie <lusus@denx.de> 8f126890aSEmmanuel Vadot * Copyright (C) 2019-2021 Bosch Thermotechnik GmbH, Matthias Winker <matthias.winker@bosch.com> 9f126890aSEmmanuel Vadot * Copyright (C) 2022 DENX Software Engineering GmbH, Philip Oberfichtner <pro@denx.de> 10f126890aSEmmanuel Vadot */ 11f126890aSEmmanuel Vadot 12f126890aSEmmanuel Vadot/dts-v1/; 13f126890aSEmmanuel Vadot 14f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 15f126890aSEmmanuel Vadot#include <dt-bindings/leds/common.h> 16f126890aSEmmanuel Vadot#include "imx6q.dtsi" 17f126890aSEmmanuel Vadot 18f126890aSEmmanuel Vadot/ { 19f126890aSEmmanuel Vadot model = "Bosch ACC"; 20f126890aSEmmanuel Vadot compatible = "bosch,imx6q-acc", "fsl,imx6q"; 21f126890aSEmmanuel Vadot 22f126890aSEmmanuel Vadot aliases { 23f126890aSEmmanuel Vadot i2c0 = &i2c1; 24f126890aSEmmanuel Vadot i2c1 = &i2c2; 25f126890aSEmmanuel Vadot i2c2 = &i2c3; 26f126890aSEmmanuel Vadot mmc0 = &usdhc4; 27f126890aSEmmanuel Vadot mmc1 = &usdhc2; 28f126890aSEmmanuel Vadot serial0 = &uart2; 29f126890aSEmmanuel Vadot serial1 = &uart1; 30f126890aSEmmanuel Vadot }; 31f126890aSEmmanuel Vadot 32f126890aSEmmanuel Vadot memory@10000000 { 33f126890aSEmmanuel Vadot device_type = "memory"; 34f126890aSEmmanuel Vadot reg = <0x10000000 0x40000000>; 35f126890aSEmmanuel Vadot }; 36f126890aSEmmanuel Vadot 37f126890aSEmmanuel Vadot backlight_lvds: backlight-lvds { 38f126890aSEmmanuel Vadot compatible = "pwm-backlight"; 39*7d0873ebSEmmanuel Vadot pwms = <&pwm1 0 200000 0>; 40f126890aSEmmanuel Vadot brightness-levels = <0 61 499 1706 4079 8022 13938 22237 33328 47623 65535>; 41f126890aSEmmanuel Vadot num-interpolated-steps = <10>; 42f126890aSEmmanuel Vadot default-brightness-level = <60>; 43f126890aSEmmanuel Vadot power-supply = <®_lcd>; 44f126890aSEmmanuel Vadot }; 45f126890aSEmmanuel Vadot 46f126890aSEmmanuel Vadot panel { 47f126890aSEmmanuel Vadot compatible = "dataimage,fg1001l0dsswmg01"; 48f126890aSEmmanuel Vadot backlight = <&backlight_lvds>; 49f126890aSEmmanuel Vadot 50f126890aSEmmanuel Vadot port { 51f126890aSEmmanuel Vadot panel_in: endpoint { 52f126890aSEmmanuel Vadot remote-endpoint = <&lvds0_out>; 53f126890aSEmmanuel Vadot }; 54f126890aSEmmanuel Vadot }; 55f126890aSEmmanuel Vadot }; 56f126890aSEmmanuel Vadot 57f126890aSEmmanuel Vadot refclk: refclk { 58f126890aSEmmanuel Vadot compatible = "fixed-factor-clock"; 59f126890aSEmmanuel Vadot #clock-cells = <0>; 60f126890aSEmmanuel Vadot clocks = <&clks IMX6QDL_CLK_CKO2>; 61f126890aSEmmanuel Vadot clock-div = <1>; 62f126890aSEmmanuel Vadot clock-mult = <1>; 63f126890aSEmmanuel Vadot clock-output-names = "12mhz_refclk"; 64f126890aSEmmanuel Vadot assigned-clocks = <&clks IMX6QDL_CLK_CKO>, 65f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_CKO2>, 66f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_CKO2_SEL>; 67f126890aSEmmanuel Vadot assigned-clock-parents = <&clks IMX6QDL_CLK_CKO2>, 68f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_CKO2_PODF>, 69f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_OSC>; 70f126890aSEmmanuel Vadot assigned-clock-rates = <0>, <12000000>, <0>; 71f126890aSEmmanuel Vadot }; 72f126890aSEmmanuel Vadot 73f126890aSEmmanuel Vadot cpus { 74f126890aSEmmanuel Vadot cpu0: cpu@0 { 75f126890aSEmmanuel Vadot operating-points = < 76f126890aSEmmanuel Vadot /* kHz uV */ 77f126890aSEmmanuel Vadot 1200000 1275000 78f126890aSEmmanuel Vadot 996000 1225000 79f126890aSEmmanuel Vadot 852000 1225000 80f126890aSEmmanuel Vadot 792000 1150000 81f126890aSEmmanuel Vadot 396000 950000 82f126890aSEmmanuel Vadot >; 83f126890aSEmmanuel Vadot fsl,soc-operating-points = < 84f126890aSEmmanuel Vadot /* ARM kHz SOC-PU uV */ 85f126890aSEmmanuel Vadot 1200000 1225000 86f126890aSEmmanuel Vadot 996000 1175000 87f126890aSEmmanuel Vadot 852000 1175000 88f126890aSEmmanuel Vadot 792000 1150000 89f126890aSEmmanuel Vadot 396000 1150000 90f126890aSEmmanuel Vadot >; 91f126890aSEmmanuel Vadot }; 92f126890aSEmmanuel Vadot 93f126890aSEmmanuel Vadot cpu1: cpu@1 { 94f126890aSEmmanuel Vadot operating-points = < 95f126890aSEmmanuel Vadot /* kHz uV */ 96f126890aSEmmanuel Vadot 1200000 1275000 97f126890aSEmmanuel Vadot 996000 1225000 98f126890aSEmmanuel Vadot 852000 1225000 99f126890aSEmmanuel Vadot 792000 1150000 100f126890aSEmmanuel Vadot 396000 950000 101f126890aSEmmanuel Vadot >; 102f126890aSEmmanuel Vadot fsl,soc-operating-points = < 103f126890aSEmmanuel Vadot /* ARM kHz SOC-PU uV */ 104f126890aSEmmanuel Vadot 1200000 1225000 105f126890aSEmmanuel Vadot 996000 1175000 106f126890aSEmmanuel Vadot 852000 1175000 107f126890aSEmmanuel Vadot 792000 1150000 108f126890aSEmmanuel Vadot 396000 1150000 109f126890aSEmmanuel Vadot >; 110f126890aSEmmanuel Vadot }; 111f126890aSEmmanuel Vadot }; 112f126890aSEmmanuel Vadot 113f126890aSEmmanuel Vadot pwm-leds { 114f126890aSEmmanuel Vadot compatible = "pwm-leds"; 115f126890aSEmmanuel Vadot 116f126890aSEmmanuel Vadot led_red: led-0 { 117f126890aSEmmanuel Vadot color = <LED_COLOR_ID_RED>; 118f126890aSEmmanuel Vadot max-brightness = <248>; 119f126890aSEmmanuel Vadot default-state = "off"; 120*7d0873ebSEmmanuel Vadot pwms = <&pwm2 0 500000 0>; 121f126890aSEmmanuel Vadot }; 122f126890aSEmmanuel Vadot 123f126890aSEmmanuel Vadot led_white: led-1 { 124f126890aSEmmanuel Vadot color = <LED_COLOR_ID_WHITE>; 125f126890aSEmmanuel Vadot max-brightness = <248>; 126f126890aSEmmanuel Vadot default-state = "off"; 127*7d0873ebSEmmanuel Vadot pwms = <&pwm3 0 500000 0>; 128f126890aSEmmanuel Vadot linux,default-trigger = "heartbeat"; 129f126890aSEmmanuel Vadot }; 130f126890aSEmmanuel Vadot }; 131f126890aSEmmanuel Vadot 132f126890aSEmmanuel Vadot gpio-leds { 133f126890aSEmmanuel Vadot compatible = "gpio-leds"; 134f126890aSEmmanuel Vadot pinctrl-names = "default"; 135f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_reset_gpio_led>; 136f126890aSEmmanuel Vadot 137f126890aSEmmanuel Vadot led-2 { 138f126890aSEmmanuel Vadot color = <LED_COLOR_ID_RED>; 139f126890aSEmmanuel Vadot gpios = <&gpio5 18 GPIO_ACTIVE_HIGH>; 140f126890aSEmmanuel Vadot default-state = "off"; 141f126890aSEmmanuel Vadot }; 142f126890aSEmmanuel Vadot }; 143f126890aSEmmanuel Vadot 144f126890aSEmmanuel Vadot reg_5p0: regulator-5p0 { 145f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 146f126890aSEmmanuel Vadot regulator-name = "5p0"; 147f126890aSEmmanuel Vadot }; 148f126890aSEmmanuel Vadot 149f126890aSEmmanuel Vadot reg_vin: regulator-vin { 150f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 151f126890aSEmmanuel Vadot regulator-name = "VIN"; 152f126890aSEmmanuel Vadot regulator-min-microvolt = <4500000>; 153f126890aSEmmanuel Vadot regulator-max-microvolt = <4500000>; 154f126890aSEmmanuel Vadot regulator-always-on; 155f126890aSEmmanuel Vadot vin-supply = <®_5p0>; 156f126890aSEmmanuel Vadot }; 157f126890aSEmmanuel Vadot 158f126890aSEmmanuel Vadot reg_usb_otg_vbus: regulator-usb-otg-vbus { 159f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 160f126890aSEmmanuel Vadot regulator-name = "usb_otg_vbus"; 161f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 162f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 163f126890aSEmmanuel Vadot }; 164f126890aSEmmanuel Vadot 165f126890aSEmmanuel Vadot reg_usb_h1_vbus: regulator-usb-h1-vbus { 166f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 167f126890aSEmmanuel Vadot regulator-name = "usb_h1_vbus"; 168f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 169f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 170f126890aSEmmanuel Vadot regulator-always-on; 171f126890aSEmmanuel Vadot vin-supply = <®_5p0>; 172f126890aSEmmanuel Vadot }; 173f126890aSEmmanuel Vadot 174f126890aSEmmanuel Vadot reg_usb_h2_vbus: regulator-usb-h2-vbus { 175f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 176f126890aSEmmanuel Vadot regulator-name = "usb_h2_vbus"; 177f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 178f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 179f126890aSEmmanuel Vadot vin-supply = <®_5p0> ; 180f126890aSEmmanuel Vadot regulator-always-on; 181f126890aSEmmanuel Vadot }; 182f126890aSEmmanuel Vadot 183f126890aSEmmanuel Vadot reg_vsnvs: regulator-vsnvs { 184f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 185f126890aSEmmanuel Vadot regulator-name = "VSNVS_3V0"; 186f126890aSEmmanuel Vadot regulator-min-microvolt = <3000000>; 187f126890aSEmmanuel Vadot regulator-max-microvolt = <3000000>; 188f126890aSEmmanuel Vadot regulator-always-on; 189f126890aSEmmanuel Vadot vin-supply = <®_5p0>; 190f126890aSEmmanuel Vadot }; 191f126890aSEmmanuel Vadot 192f126890aSEmmanuel Vadot reg_lcd: regulator-lcd { 193f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 194f126890aSEmmanuel Vadot regulator-name = "LCD0 POWER"; 195f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 196f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 197f126890aSEmmanuel Vadot pinctrl-names = "default"; 198f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_lcd_enable>; 199f126890aSEmmanuel Vadot gpio = <&gpio3 23 GPIO_ACTIVE_HIGH>; 200f126890aSEmmanuel Vadot enable-active-high; 201f126890aSEmmanuel Vadot regulator-boot-on; 202f126890aSEmmanuel Vadot }; 203f126890aSEmmanuel Vadot 204f126890aSEmmanuel Vadot reg_dac: regulator-dac { 205f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 206f126890aSEmmanuel Vadot regulator-name = "vref_dac"; 207f126890aSEmmanuel Vadot regulator-min-microvolt = <20000>; 208f126890aSEmmanuel Vadot regulator-max-microvolt = <20000>; 209f126890aSEmmanuel Vadot vin-supply = <®_5p0> ; 210f126890aSEmmanuel Vadot regulator-boot-on; 211f126890aSEmmanuel Vadot }; 212f126890aSEmmanuel Vadot 213f126890aSEmmanuel Vadot reg_sw4: regulator-sw4 { 214f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 215f126890aSEmmanuel Vadot regulator-name = "SW4_3V3"; 216f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 217f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 218f126890aSEmmanuel Vadot regulator-always-on; 219f126890aSEmmanuel Vadot vin-supply = <®_5p0>; 220f126890aSEmmanuel Vadot }; 221f126890aSEmmanuel Vadot 222f126890aSEmmanuel Vadot reg_sys: regulator-sys { 223f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 224f126890aSEmmanuel Vadot regulator-name = "SYS_4V2"; 225f126890aSEmmanuel Vadot regulator-min-microvolt = <4200000>; 226f126890aSEmmanuel Vadot regulator-max-microvolt = <4200000>; 227f126890aSEmmanuel Vadot regulator-always-on; 228f126890aSEmmanuel Vadot vin-supply = <®_5p0>; 229f126890aSEmmanuel Vadot }; 230f126890aSEmmanuel Vadot}; 231f126890aSEmmanuel Vadot 232f126890aSEmmanuel Vadot®_arm { 233f126890aSEmmanuel Vadot vin-supply = <&sw2_reg>; 234f126890aSEmmanuel Vadot}; 235f126890aSEmmanuel Vadot 236f126890aSEmmanuel Vadot®_soc { 237f126890aSEmmanuel Vadot vin-supply = <&sw1c_reg>; 238f126890aSEmmanuel Vadot}; 239f126890aSEmmanuel Vadot 240f126890aSEmmanuel Vadot®_vdd1p1 { 241f126890aSEmmanuel Vadot vin-supply = <®_vsnvs>; 242f126890aSEmmanuel Vadot}; 243f126890aSEmmanuel Vadot 244f126890aSEmmanuel Vadot®_vdd2p5 { 245f126890aSEmmanuel Vadot vin-supply = <®_vsnvs>; 246f126890aSEmmanuel Vadot}; 247f126890aSEmmanuel Vadot 248f126890aSEmmanuel Vadot®_vdd3p0 { 249f126890aSEmmanuel Vadot vin-supply = <®_vsnvs>; 250f126890aSEmmanuel Vadot}; 251f126890aSEmmanuel Vadot 252f126890aSEmmanuel Vadot&fec { 253f126890aSEmmanuel Vadot pinctrl-names = "default"; 254f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_enet>; 255f126890aSEmmanuel Vadot clocks = <&clks IMX6QDL_CLK_ENET>, 256f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_ENET>, 257f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_ENET>, 258f126890aSEmmanuel Vadot <&clks IMX6QDL_CLK_ENET_REF>; 259f126890aSEmmanuel Vadot clock-names = "ipg", "ahb", "ptp", "enet_out"; 260f126890aSEmmanuel Vadot phy-mode = "rmii"; 261f126890aSEmmanuel Vadot phy-supply = <®_sw4>; 262f126890aSEmmanuel Vadot phy-handle = <ðphy>; 263f126890aSEmmanuel Vadot status = "okay"; 264f126890aSEmmanuel Vadot 265f126890aSEmmanuel Vadot mdio { 266f126890aSEmmanuel Vadot #address-cells = <1>; 267f126890aSEmmanuel Vadot #size-cells = <0>; 268f126890aSEmmanuel Vadot 269f126890aSEmmanuel Vadot ethphy: ethernet-phy@0 { 270f126890aSEmmanuel Vadot compatible = "ethernet-phy-ieee802.3-c22"; 271f126890aSEmmanuel Vadot reg = <0>; 272f126890aSEmmanuel Vadot interrupt-parent = <&gpio1>; 273f126890aSEmmanuel Vadot interrupts = <23 IRQ_TYPE_EDGE_FALLING>; 274f126890aSEmmanuel Vadot smsc,disable-energy-detect; 275f126890aSEmmanuel Vadot }; 276f126890aSEmmanuel Vadot }; 277f126890aSEmmanuel Vadot}; 278f126890aSEmmanuel Vadot 279f126890aSEmmanuel Vadot&gpu_vg { 280f126890aSEmmanuel Vadot status = "disabled"; 281f126890aSEmmanuel Vadot}; 282f126890aSEmmanuel Vadot 283f126890aSEmmanuel Vadot&gpu_2d { 284f126890aSEmmanuel Vadot status = "disabled"; 285f126890aSEmmanuel Vadot}; 286f126890aSEmmanuel Vadot 287f126890aSEmmanuel Vadot&i2c1 { 288f126890aSEmmanuel Vadot pinctrl-names = "default"; 289f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c1>; 290f126890aSEmmanuel Vadot clock-frequency = <400000>; 291f126890aSEmmanuel Vadot status = "okay"; 292f126890aSEmmanuel Vadot 293f126890aSEmmanuel Vadot pmic: pmic@8 { 294f126890aSEmmanuel Vadot compatible = "fsl,pfuze100"; 295f126890aSEmmanuel Vadot reg = <0x08>; 296f126890aSEmmanuel Vadot 297f126890aSEmmanuel Vadot regulators { 298f126890aSEmmanuel Vadot sw1c_reg: sw1c { 299f126890aSEmmanuel Vadot regulator-name = "VDD_SOC (sw1abc)"; 300f126890aSEmmanuel Vadot regulator-min-microvolt = <1275000>; 301f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 302f126890aSEmmanuel Vadot regulator-boot-on; 303f126890aSEmmanuel Vadot regulator-always-on; 304f126890aSEmmanuel Vadot regulator-ramp-delay = <6250>; 305f126890aSEmmanuel Vadot }; 306f126890aSEmmanuel Vadot 307f126890aSEmmanuel Vadot sw2_reg: sw2 { 308f126890aSEmmanuel Vadot regulator-name = "VDD_ARM (sw2)"; 309f126890aSEmmanuel Vadot regulator-min-microvolt = <1050000>; 310f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 311f126890aSEmmanuel Vadot regulator-boot-on; 312f126890aSEmmanuel Vadot regulator-always-on; 313f126890aSEmmanuel Vadot regulator-ramp-delay = <6250>; 314f126890aSEmmanuel Vadot }; 315f126890aSEmmanuel Vadot 316f126890aSEmmanuel Vadot sw3a_reg: sw3a { 317f126890aSEmmanuel Vadot regulator-name = "DDR_1V5a"; 318f126890aSEmmanuel Vadot regulator-boot-on; 319f126890aSEmmanuel Vadot regulator-always-on; 320f126890aSEmmanuel Vadot 321f126890aSEmmanuel Vadot }; 322f126890aSEmmanuel Vadot 323f126890aSEmmanuel Vadot sw3b_reg: sw3b { 324f126890aSEmmanuel Vadot regulator-name = "DDR_1V5b"; 325f126890aSEmmanuel Vadot regulator-boot-on; 326f126890aSEmmanuel Vadot regulator-always-on; 327f126890aSEmmanuel Vadot 328f126890aSEmmanuel Vadot }; 329f126890aSEmmanuel Vadot 330f126890aSEmmanuel Vadot sw4_reg: sw4 { 331f126890aSEmmanuel Vadot regulator-name = "AUX 3V15 (sw4)"; 332f126890aSEmmanuel Vadot regulator-min-microvolt = <800000>; 333f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 334f126890aSEmmanuel Vadot }; 335f126890aSEmmanuel Vadot 336f126890aSEmmanuel Vadot swbst_reg: swbst { 337f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 338f126890aSEmmanuel Vadot regulator-max-microvolt = <5150000>; 339f126890aSEmmanuel Vadot regulator-boot-on; 340f126890aSEmmanuel Vadot regulator-always-on; 341f126890aSEmmanuel Vadot status = "disabled"; 342f126890aSEmmanuel Vadot }; 343f126890aSEmmanuel Vadot 344f126890aSEmmanuel Vadot snvs_reg: vsnvs { 345f126890aSEmmanuel Vadot regulator-min-microvolt = <1200000>; 346f126890aSEmmanuel Vadot regulator-max-microvolt = <3000000>; 347f126890aSEmmanuel Vadot regulator-boot-on; 348f126890aSEmmanuel Vadot regulator-always-on; 349f126890aSEmmanuel Vadot }; 350f126890aSEmmanuel Vadot 351f126890aSEmmanuel Vadot vref_reg: vrefddr { 352f126890aSEmmanuel Vadot regulator-boot-on; 353f126890aSEmmanuel Vadot regulator-always-on; 354f126890aSEmmanuel Vadot }; 355f126890aSEmmanuel Vadot 356f126890aSEmmanuel Vadot vgen1_reg: vgen1 { 357f126890aSEmmanuel Vadot regulator-min-microvolt = <800000>; 358f126890aSEmmanuel Vadot regulator-max-microvolt = <1550000>; 359f126890aSEmmanuel Vadot regulator-always-on; 360f126890aSEmmanuel Vadot }; 361f126890aSEmmanuel Vadot 362f126890aSEmmanuel Vadot vgen2_reg: vgen2 { 363f126890aSEmmanuel Vadot regulator-min-microvolt = <800000>; 364f126890aSEmmanuel Vadot regulator-max-microvolt = <1550000>; 365f126890aSEmmanuel Vadot regulator-always-on; 366f126890aSEmmanuel Vadot }; 367f126890aSEmmanuel Vadot 368f126890aSEmmanuel Vadot vgen3_reg: vgen3 { 369f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 370f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 371f126890aSEmmanuel Vadot regulator-always-on; 372f126890aSEmmanuel Vadot }; 373f126890aSEmmanuel Vadot 374f126890aSEmmanuel Vadot vgen4_reg: vgen4 { 375f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 376f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 377f126890aSEmmanuel Vadot regulator-always-on; 378f126890aSEmmanuel Vadot regulator-boot-on; 379f126890aSEmmanuel Vadot }; 380f126890aSEmmanuel Vadot 381f126890aSEmmanuel Vadot vgen5_reg: vgen5 { 382f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 383f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 384f126890aSEmmanuel Vadot regulator-always-on; 385f126890aSEmmanuel Vadot regulator-boot-on; 386f126890aSEmmanuel Vadot }; 387f126890aSEmmanuel Vadot 388f126890aSEmmanuel Vadot vgen6_reg: vgen6 { 389f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 390f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 391f126890aSEmmanuel Vadot regulator-always-on; 392f126890aSEmmanuel Vadot }; 393f126890aSEmmanuel Vadot }; 394f126890aSEmmanuel Vadot }; 395f126890aSEmmanuel Vadot 396f126890aSEmmanuel Vadot lm75: sensor@49 { 397f126890aSEmmanuel Vadot compatible = "national,lm75b"; 398f126890aSEmmanuel Vadot pinctrl-names = "default"; 399f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_lm75>; 400f126890aSEmmanuel Vadot reg = <0x49>; 401f126890aSEmmanuel Vadot }; 402f126890aSEmmanuel Vadot 403f126890aSEmmanuel Vadot eeprom: eeprom@50 { 404f126890aSEmmanuel Vadot compatible = "atmel,24c32"; 405f126890aSEmmanuel Vadot reg = <0x50>; 406f126890aSEmmanuel Vadot pagesize = <32>; 407f126890aSEmmanuel Vadot }; 408f126890aSEmmanuel Vadot 409f126890aSEmmanuel Vadot rtc: rtc@51 { 410f126890aSEmmanuel Vadot pinctrl-names = "default"; 411f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_rtc>; 412f126890aSEmmanuel Vadot compatible = "nxp,pcf8563"; 413f126890aSEmmanuel Vadot reg = <0x51>; 414f126890aSEmmanuel Vadot }; 415f126890aSEmmanuel Vadot}; 416f126890aSEmmanuel Vadot 417f126890aSEmmanuel Vadot&i2c2 { 418f126890aSEmmanuel Vadot pinctrl-names = "default"; 419f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c2>; 420f126890aSEmmanuel Vadot clock-frequency = <100000>; 421f126890aSEmmanuel Vadot status = "okay"; 422f126890aSEmmanuel Vadot 423f126890aSEmmanuel Vadot eeprom_ext: eeprom@50 { 424f126890aSEmmanuel Vadot compatible = "atmel,24c32"; 425f126890aSEmmanuel Vadot reg = <0x50>; 426f126890aSEmmanuel Vadot pagesize = <32>; 427f126890aSEmmanuel Vadot }; 428f126890aSEmmanuel Vadot}; 429f126890aSEmmanuel Vadot 430f126890aSEmmanuel Vadot&i2c3 { 431f126890aSEmmanuel Vadot pinctrl-names = "default"; 432f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c3>; 433f126890aSEmmanuel Vadot clock-frequency = <400000>; 434f126890aSEmmanuel Vadot status = "okay"; 435f126890aSEmmanuel Vadot 436f126890aSEmmanuel Vadot usb3503: usb@8 { 437f126890aSEmmanuel Vadot compatible = "smsc,usb3503"; 438f126890aSEmmanuel Vadot pinctrl-names = "default"; 439f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usb3503>; 440f126890aSEmmanuel Vadot reg = <0x08>; 441f126890aSEmmanuel Vadot connect-gpios = <&gpio1 16 GPIO_ACTIVE_HIGH>; /* Old: 0, SS: HIGH */ 442f126890aSEmmanuel Vadot intn-gpios = <&gpio7 12 GPIO_ACTIVE_LOW>; /* Old: 1, SS: HIGH */ 443f126890aSEmmanuel Vadot reset-gpios = <&gpio5 5 GPIO_ACTIVE_LOW>; /* Old: 0, SS: HIGH */ 444f126890aSEmmanuel Vadot initial-mode = <1>; 445f126890aSEmmanuel Vadot clocks = <&refclk>; 446f126890aSEmmanuel Vadot clock-names = "refclk"; 447f126890aSEmmanuel Vadot refclk-frequency = <12000000>; 448f126890aSEmmanuel Vadot }; 449f126890aSEmmanuel Vadot 450f126890aSEmmanuel Vadot exc3000: touchscreen@2a { 451f126890aSEmmanuel Vadot compatible = "eeti,exc3000"; 452f126890aSEmmanuel Vadot reg = <0x2a>; 453f126890aSEmmanuel Vadot pinctrl-names = "default"; 454f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_ctouch>; 455f126890aSEmmanuel Vadot interrupt-parent = <&gpio4>; 456f126890aSEmmanuel Vadot interrupts = <6 IRQ_TYPE_LEVEL_LOW>; 457f126890aSEmmanuel Vadot touchscreen-size-x = <4096>; 458f126890aSEmmanuel Vadot touchscreen-size-y = <4096>; 459f126890aSEmmanuel Vadot }; 460f126890aSEmmanuel Vadot 461f126890aSEmmanuel Vadot vcnl4035: light-sensor@60 { 462f126890aSEmmanuel Vadot compatible = "vishay,vcnl4035"; 463f126890aSEmmanuel Vadot pinctrl-names = "default"; 464f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_proximity>; 465f126890aSEmmanuel Vadot reg = <0x60>; 466f126890aSEmmanuel Vadot }; 467f126890aSEmmanuel Vadot}; 468f126890aSEmmanuel Vadot 469f126890aSEmmanuel Vadot&ldb { 470f126890aSEmmanuel Vadot status = "okay"; 471f126890aSEmmanuel Vadot 472f126890aSEmmanuel Vadot lvds0: lvds-channel@0 { 473f126890aSEmmanuel Vadot fsl,data-mapping = "spwg"; 474f126890aSEmmanuel Vadot fsl,data-width = <24>; 475f126890aSEmmanuel Vadot 476f126890aSEmmanuel Vadot port@4 { 477f126890aSEmmanuel Vadot reg = <4>; 478f126890aSEmmanuel Vadot 479f126890aSEmmanuel Vadot lvds0_out: endpoint { 480f126890aSEmmanuel Vadot remote-endpoint = <&panel_in>; 481f126890aSEmmanuel Vadot }; 482f126890aSEmmanuel Vadot }; 483f126890aSEmmanuel Vadot }; 484f126890aSEmmanuel Vadot}; 485f126890aSEmmanuel Vadot 486f126890aSEmmanuel Vadot&pwm1 { 487f126890aSEmmanuel Vadot pinctrl-names = "default"; 488f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm1>; 489f126890aSEmmanuel Vadot status = "okay"; 490f126890aSEmmanuel Vadot}; 491f126890aSEmmanuel Vadot 492f126890aSEmmanuel Vadot&pwm2 { 493f126890aSEmmanuel Vadot pinctrl-names = "default"; 494f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm2>; 495f126890aSEmmanuel Vadot status = "okay"; 496f126890aSEmmanuel Vadot}; 497f126890aSEmmanuel Vadot 498f126890aSEmmanuel Vadot&pwm3 { 499f126890aSEmmanuel Vadot pinctrl-names = "default"; 500f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm3>; 501f126890aSEmmanuel Vadot status = "okay"; 502f126890aSEmmanuel Vadot}; 503f126890aSEmmanuel Vadot 504f126890aSEmmanuel Vadot&pwm4 { 505f126890aSEmmanuel Vadot pinctrl-names = "default"; 506f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm4>; 507f126890aSEmmanuel Vadot status = "okay"; 508f126890aSEmmanuel Vadot}; 509f126890aSEmmanuel Vadot 510f126890aSEmmanuel Vadot&uart1 { 511f126890aSEmmanuel Vadot pinctrl-names = "default"; 512f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart1>; 513f126890aSEmmanuel Vadot rts-gpios = <&gpio7 8 GPIO_ACTIVE_HIGH>; 514f126890aSEmmanuel Vadot linux,rs485-enabled-at-boot-time; 515f126890aSEmmanuel Vadot rs485-rx-during-tx; 516f126890aSEmmanuel Vadot status = "okay"; 517f126890aSEmmanuel Vadot}; 518f126890aSEmmanuel Vadot 519f126890aSEmmanuel Vadot&uart2 { 520f126890aSEmmanuel Vadot pinctrl-names = "default"; 521f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_uart2>; 522f126890aSEmmanuel Vadot uart-has-rtscts; 523f126890aSEmmanuel Vadot status = "okay"; 524f126890aSEmmanuel Vadot}; 525f126890aSEmmanuel Vadot 526f126890aSEmmanuel Vadot&usbh1 { 527f126890aSEmmanuel Vadot vbus-supply = <®_usb_h1_vbus>; 528f126890aSEmmanuel Vadot status = "okay"; 529f126890aSEmmanuel Vadot}; 530f126890aSEmmanuel Vadot 531f126890aSEmmanuel Vadot&usbh2 { 532f126890aSEmmanuel Vadot pinctrl-names = "idle", "active"; 533f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbh2_idle>; 534f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_usbh2_active>; 535f126890aSEmmanuel Vadot vbus-supply = <®_usb_h2_vbus>; 536f126890aSEmmanuel Vadot status = "okay"; 537f126890aSEmmanuel Vadot}; 538f126890aSEmmanuel Vadot 539f126890aSEmmanuel Vadot&usbotg { 540f126890aSEmmanuel Vadot pinctrl-names = "default"; 541f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usbotg>; 542f126890aSEmmanuel Vadot vbus-supply = <®_usb_otg_vbus>; 543f126890aSEmmanuel Vadot disable-over-current; 544f126890aSEmmanuel Vadot dr_mode = "otg"; 545f126890aSEmmanuel Vadot srp-disable; 546f126890aSEmmanuel Vadot hnp-disable; 547f126890aSEmmanuel Vadot adp-disable; 548f126890aSEmmanuel Vadot status = "okay"; 549f126890aSEmmanuel Vadot}; 550f126890aSEmmanuel Vadot 551f126890aSEmmanuel Vadot&usbphynop1 { 552f126890aSEmmanuel Vadot clocks = <&clks IMX6QDL_CLK_USBPHY1>; 553f126890aSEmmanuel Vadot clock-names = "main_clk"; 554f126890aSEmmanuel Vadot vcc-supply = <®_usb_h1_vbus>; 555f126890aSEmmanuel Vadot}; 556f126890aSEmmanuel Vadot 557f126890aSEmmanuel Vadot&usbphynop2 { 558f126890aSEmmanuel Vadot vcc-supply = <®_usb_h2_vbus>; 559f126890aSEmmanuel Vadot}; 560f126890aSEmmanuel Vadot 561f126890aSEmmanuel Vadot&usdhc2 { 562f126890aSEmmanuel Vadot pinctrl-names = "default"; 563f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc2>; 564f126890aSEmmanuel Vadot cd-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; 565f126890aSEmmanuel Vadot no-1-8-v; 566f126890aSEmmanuel Vadot keep-power-in-suspend; 567f126890aSEmmanuel Vadot wakeup-source; 568f126890aSEmmanuel Vadot voltage-ranges = <3300 3300>; 569f126890aSEmmanuel Vadot vmmc-supply = <®_sw4>; 570f126890aSEmmanuel Vadot fsl,wp-controller; 571f126890aSEmmanuel Vadot status = "okay"; 572f126890aSEmmanuel Vadot}; 573f126890aSEmmanuel Vadot 574f126890aSEmmanuel Vadot&usdhc4 { 575f126890aSEmmanuel Vadot pinctrl-names = "default"; 576f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc4>; 577f126890aSEmmanuel Vadot bus-width = <8>; 578f126890aSEmmanuel Vadot non-removable; 579f126890aSEmmanuel Vadot no-1-8-v; 580f126890aSEmmanuel Vadot keep-power-in-suspend; 581f126890aSEmmanuel Vadot voltage-ranges = <3300 3300>; 582f126890aSEmmanuel Vadot vmmc-supply = <®_sw4>; 583f126890aSEmmanuel Vadot fsl,wp-controller; 584f126890aSEmmanuel Vadot status = "okay"; 585f126890aSEmmanuel Vadot}; 586f126890aSEmmanuel Vadot 587f126890aSEmmanuel Vadot&wdog1 { 588f126890aSEmmanuel Vadot pinctrl-names = "default"; 589f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_wdog1>; 590f126890aSEmmanuel Vadot fsl,ext-reset-output; 591f126890aSEmmanuel Vadot timeout-sec = <10>; 592f126890aSEmmanuel Vadot status = "okay"; 593f126890aSEmmanuel Vadot}; 594f126890aSEmmanuel Vadot 595f126890aSEmmanuel Vadot&iomuxc { 596f126890aSEmmanuel Vadot pinctrl_enet: enetgrp { 597f126890aSEmmanuel Vadot fsl,pins = < 598f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_MDC__ENET_MDC 0x1b0b0 599f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_MDIO__ENET_MDIO 0x1b0b0 600f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_CRS_DV__ENET_RX_EN 0x1b0b0 601f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_REF_CLK__GPIO1_IO23 0x1b0b0 /* FEC INT */ 602f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_RX_ER__ENET_RX_ER 0x1b0b0 603f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_TX_EN__ENET_TX_EN 0x0001b098 604f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_RXD0__ENET_RX_DATA0 0x1b0b0 605f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_RXD1__ENET_RX_DATA1 0x1b0b0 606f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_TXD1__ENET_TX_DATA1 0x0001b098 607f126890aSEmmanuel Vadot MX6QDL_PAD_ENET_TXD0__ENET_TX_DATA0 0x0001b098 608f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_16__ENET_REF_CLK 0x4001b0a8 609f126890aSEmmanuel Vadot >; 610f126890aSEmmanuel Vadot }; 611f126890aSEmmanuel Vadot 612f126890aSEmmanuel Vadot pinctrl_reset_gpio_led: reset-gpio-led-grp { 613f126890aSEmmanuel Vadot fsl,pins = < 614f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_PIXCLK__GPIO5_IO18 0x1b0b0 615f126890aSEmmanuel Vadot >; 616f126890aSEmmanuel Vadot }; 617f126890aSEmmanuel Vadot 618f126890aSEmmanuel Vadot pinctrl_i2c1: i2c1grp { 619f126890aSEmmanuel Vadot fsl,pins = < 620f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT8__I2C1_SDA 0x4001b8b1 621f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_DAT9__I2C1_SCL 0x4001b8b1 622f126890aSEmmanuel Vadot >; 623f126890aSEmmanuel Vadot }; 624f126890aSEmmanuel Vadot 625f126890aSEmmanuel Vadot pinctrl_i2c2: i2c2grp { 626f126890aSEmmanuel Vadot fsl,pins = < 627f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b810 628f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW3__I2C2_SDA 0x4001b810 629f126890aSEmmanuel Vadot >; 630f126890aSEmmanuel Vadot }; 631f126890aSEmmanuel Vadot 632f126890aSEmmanuel Vadot pinctrl_i2c3: i2c3grp { 633f126890aSEmmanuel Vadot fsl,pins = < 634f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_5__I2C3_SCL 0x4001b8b1 635f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_6__I2C3_SDA 0x4001b8b1 636f126890aSEmmanuel Vadot >; 637f126890aSEmmanuel Vadot }; 638f126890aSEmmanuel Vadot 639f126890aSEmmanuel Vadot pinctrl_lcd_enable: lcdenablegrp { 640f126890aSEmmanuel Vadot fsl,pins = < 641f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D23__GPIO3_IO23 0x1b0b0 /* lcd enable */ 642f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D16__GPIO3_IO16 0x1b0b0 /* sel6_8 */ 643f126890aSEmmanuel Vadot >; 644f126890aSEmmanuel Vadot }; 645f126890aSEmmanuel Vadot 646f126890aSEmmanuel Vadot pinctrl_lm75: lm75grp { 647f126890aSEmmanuel Vadot fsl,pins = < 648f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW0__GPIO4_IO07 0x1b0b0 649f126890aSEmmanuel Vadot >; 650f126890aSEmmanuel Vadot }; 651f126890aSEmmanuel Vadot 652f126890aSEmmanuel Vadot pinctrl_proximity: proximitygrp { 653f126890aSEmmanuel Vadot fsl,pins = < 654f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW2__GPIO4_IO11 0x1b0b0 655f126890aSEmmanuel Vadot >; 656f126890aSEmmanuel Vadot }; 657f126890aSEmmanuel Vadot 658f126890aSEmmanuel Vadot pinctrl_pwm1: pwm1grp { 659f126890aSEmmanuel Vadot fsl,pins = < 660f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT3__PWM1_OUT 0x0001b0b0 661f126890aSEmmanuel Vadot >; 662f126890aSEmmanuel Vadot }; 663f126890aSEmmanuel Vadot 664f126890aSEmmanuel Vadot pinctrl_pwm2: pwm2grp { 665f126890aSEmmanuel Vadot fsl,pins = < 666f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT2__PWM2_OUT 0x0001b0b0 667f126890aSEmmanuel Vadot >; 668f126890aSEmmanuel Vadot }; 669f126890aSEmmanuel Vadot 670f126890aSEmmanuel Vadot pinctrl_pwm3: pwm3grp { 671f126890aSEmmanuel Vadot fsl,pins = < 672f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT1__PWM3_OUT 0x0001b0b0 673f126890aSEmmanuel Vadot >; 674f126890aSEmmanuel Vadot }; 675f126890aSEmmanuel Vadot 676f126890aSEmmanuel Vadot pinctrl_pwm4: pwm4grp { 677f126890aSEmmanuel Vadot fsl,pins = < 678f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_CMD__PWM4_OUT 0x0001b0b0 679f126890aSEmmanuel Vadot >; 680f126890aSEmmanuel Vadot }; 681f126890aSEmmanuel Vadot 682f126890aSEmmanuel Vadot pinctrl_rtc: rtc-grp { 683f126890aSEmmanuel Vadot fsl,pins = < 684f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL1__GPIO4_IO08 0x1b0b0 /* RTC INT */ 685f126890aSEmmanuel Vadot >; 686f126890aSEmmanuel Vadot }; 687f126890aSEmmanuel Vadot 688f126890aSEmmanuel Vadot pinctrl_ctouch: ctouch-grp { 689f126890aSEmmanuel Vadot fsl,pins = < 690f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL0__GPIO4_IO06 0x1b0b0 /* CTOUCH_INT */ 691f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_CLK__GPIO1_IO20 0x0001b0b0 /* CTOUCH_RESET */ 692f126890aSEmmanuel Vadot >; 693f126890aSEmmanuel Vadot }; 694f126890aSEmmanuel Vadot 695f126890aSEmmanuel Vadot pinctrl_uart1: uart1grp { 696f126890aSEmmanuel Vadot fsl,pins = < 697f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_DAT6__UART1_RX_DATA 0x1b0b1 698f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_DAT7__UART1_TX_DATA 0x1b0b1 699f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_RST__GPIO7_IO08 0x0001b0b0 700f126890aSEmmanuel Vadot >; 701f126890aSEmmanuel Vadot }; 702f126890aSEmmanuel Vadot 703f126890aSEmmanuel Vadot pinctrl_uart2: uart2grp { 704f126890aSEmmanuel Vadot fsl,pins = < 705f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_DAT4__UART2_RX_DATA 0x1b0b1 706f126890aSEmmanuel Vadot MX6QDL_PAD_SD3_DAT5__UART2_TX_DATA 0x1b0b1 707f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D28__UART2_CTS_B 0x1b0b1 708f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D29__UART2_RTS_B 0x1b0b1 709f126890aSEmmanuel Vadot >; 710f126890aSEmmanuel Vadot }; 711f126890aSEmmanuel Vadot 712f126890aSEmmanuel Vadot pinctrl_usbh2_idle: usbh2-idle-grp { 713f126890aSEmmanuel Vadot fsl,pins = < 714f126890aSEmmanuel Vadot MX6QDL_PAD_RGMII_TXC__USB_H2_DATA 0x00013018 715f126890aSEmmanuel Vadot MX6QDL_PAD_RGMII_TX_CTL__USB_H2_STROBE 0x00013018 716f126890aSEmmanuel Vadot >; 717f126890aSEmmanuel Vadot }; 718f126890aSEmmanuel Vadot 719f126890aSEmmanuel Vadot pinctrl_usbh2_active: usbh2-active-grp { 720f126890aSEmmanuel Vadot fsl,pins = < 721f126890aSEmmanuel Vadot MX6QDL_PAD_RGMII_TXC__USB_H2_DATA 0x00013018 722f126890aSEmmanuel Vadot MX6QDL_PAD_RGMII_TX_CTL__USB_H2_STROBE 0x00017018 723f126890aSEmmanuel Vadot >; 724f126890aSEmmanuel Vadot }; 725f126890aSEmmanuel Vadot 726f126890aSEmmanuel Vadot pinctrl_usb3503: usb3503-grp { 727f126890aSEmmanuel Vadot fsl,pins = < 728f126890aSEmmanuel Vadot MX6QDL_PAD_CSI0_MCLK__CCM_CLKO1 0x00000018 729f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_17__GPIO7_IO12 0x1b0b0 /* USB INT */ 730f126890aSEmmanuel Vadot MX6QDL_PAD_DISP0_DAT11__GPIO5_IO05 0x0001b0b0 /* USB Reset */ 731f126890aSEmmanuel Vadot MX6QDL_PAD_SD1_DAT0__GPIO1_IO16 0x1b0b0 /* USB Connect */ 732f126890aSEmmanuel Vadot >; 733f126890aSEmmanuel Vadot }; 734f126890aSEmmanuel Vadot 735f126890aSEmmanuel Vadot pinctrl_usbotg: usbotggrp { 736f126890aSEmmanuel Vadot fsl,pins = < 737f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x17059 738f126890aSEmmanuel Vadot >; 739f126890aSEmmanuel Vadot }; 740f126890aSEmmanuel Vadot 741f126890aSEmmanuel Vadot pinctrl_usdhc2: usdhc2grp { 742f126890aSEmmanuel Vadot fsl,pins = < 743f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CMD__SD2_CMD 0x00017069 744f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CLK__SD2_CLK 0x00010038 745f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT0__SD2_DATA0 0x00017069 746f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT1__SD2_DATA1 0x00017069 747f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT2__SD2_DATA2 0x00017069 748f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT3__SD2_DATA3 0x00017069 749f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_4__SD2_CD_B 0x0001b0b0 750f126890aSEmmanuel Vadot >; 751f126890aSEmmanuel Vadot }; 752f126890aSEmmanuel Vadot 753f126890aSEmmanuel Vadot pinctrl_usdhc4: usdhc4grp { 754f126890aSEmmanuel Vadot fsl,pins = < 755f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_CMD__SD4_CMD 0x00017059 756f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_CLK__SD4_CLK 0x00010059 757f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT0__SD4_DATA0 0x00017059 758f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT1__SD4_DATA1 0x00017059 759f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT2__SD4_DATA2 0x00017059 760f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT3__SD4_DATA3 0x00017059 761f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT4__SD4_DATA4 0x00017059 762f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT5__SD4_DATA5 0x00017059 763f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT6__SD4_DATA6 0x00017059 764f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT7__SD4_DATA7 0x00017059 765f126890aSEmmanuel Vadot >; 766f126890aSEmmanuel Vadot }; 767f126890aSEmmanuel Vadot 768f126890aSEmmanuel Vadot pinctrl_wdog1: wdoggrp { 769f126890aSEmmanuel Vadot fsl,pins = < 770f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_9__WDOG1_B 0x1b0b0 771f126890aSEmmanuel Vadot >; 772f126890aSEmmanuel Vadot }; 773f126890aSEmmanuel Vadot}; 774