1f126890aSEmmanuel Vadot/* 2f126890aSEmmanuel Vadot * Copyright (C) 2015 Lucas Stach <kernel@pengutronix.de> 3f126890aSEmmanuel Vadot * 4f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms 5f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual 6f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a 7f126890aSEmmanuel Vadot * whole. 8f126890aSEmmanuel Vadot * 9f126890aSEmmanuel Vadot * a) This file is free software; you can redistribute it and/or 10f126890aSEmmanuel Vadot * modify it under the terms of the GNU General Public License 11f126890aSEmmanuel Vadot * version 2 as published by the Free Software Foundation. 12f126890aSEmmanuel Vadot * 13f126890aSEmmanuel Vadot * This file is distributed in the hope that it will be useful, 14f126890aSEmmanuel Vadot * but WITHOUT ANY WARRANTY; without even the implied warranty of 15f126890aSEmmanuel Vadot * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16f126890aSEmmanuel Vadot * GNU General Public License for more details. 17f126890aSEmmanuel Vadot * 18f126890aSEmmanuel Vadot * Or, alternatively, 19f126890aSEmmanuel Vadot * 20f126890aSEmmanuel Vadot * b) Permission is hereby granted, free of charge, to any person 21f126890aSEmmanuel Vadot * obtaining a copy of this software and associated documentation 22f126890aSEmmanuel Vadot * files (the "Software"), to deal in the Software without 23f126890aSEmmanuel Vadot * restriction, including without limitation the rights to use, 24f126890aSEmmanuel Vadot * copy, modify, merge, publish, distribute, sublicense, and/or 25f126890aSEmmanuel Vadot * sell copies of the Software, and to permit persons to whom the 26f126890aSEmmanuel Vadot * Software is furnished to do so, subject to the following 27f126890aSEmmanuel Vadot * conditions: 28f126890aSEmmanuel Vadot * 29f126890aSEmmanuel Vadot * The above copyright notice and this permission notice shall be 30f126890aSEmmanuel Vadot * included in all copies or substantial portions of the Software. 31f126890aSEmmanuel Vadot * 32f126890aSEmmanuel Vadot * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 33f126890aSEmmanuel Vadot * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 34f126890aSEmmanuel Vadot * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 35f126890aSEmmanuel Vadot * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 36f126890aSEmmanuel Vadot * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 37f126890aSEmmanuel Vadot * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 38f126890aSEmmanuel Vadot * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 39f126890aSEmmanuel Vadot * OTHER DEALINGS IN THE SOFTWARE. 40f126890aSEmmanuel Vadot */ 41f126890aSEmmanuel Vadot 42f126890aSEmmanuel Vadot/dts-v1/; 43f126890aSEmmanuel Vadot 44f126890aSEmmanuel Vadot#include "imx6q.dtsi" 45f126890aSEmmanuel Vadot#include "imx6qdl-sr-som.dtsi" 46f126890aSEmmanuel Vadot#include "imx6qdl-sr-som-brcm.dtsi" 47f126890aSEmmanuel Vadot 48f126890aSEmmanuel Vadot/ { 49f126890aSEmmanuel Vadot model = "Auvidea H100"; 50f126890aSEmmanuel Vadot compatible = "auvidea,h100", "fsl,imx6q"; 51f126890aSEmmanuel Vadot 52f126890aSEmmanuel Vadot /* Will be filled by the bootloader */ 53f126890aSEmmanuel Vadot memory@10000000 { 54f126890aSEmmanuel Vadot device_type = "memory"; 55f126890aSEmmanuel Vadot reg = <0x10000000 0>; 56f126890aSEmmanuel Vadot }; 57f126890aSEmmanuel Vadot 58f126890aSEmmanuel Vadot aliases { 59f126890aSEmmanuel Vadot rtc0 = &rtc; 60f126890aSEmmanuel Vadot rtc1 = &snvs_rtc; 61f126890aSEmmanuel Vadot }; 62f126890aSEmmanuel Vadot 63f126890aSEmmanuel Vadot chosen { 64f126890aSEmmanuel Vadot stdout-path = &uart2; 65f126890aSEmmanuel Vadot }; 66f126890aSEmmanuel Vadot 67f126890aSEmmanuel Vadot hdmi_osc: hdmi-osc { 68f126890aSEmmanuel Vadot compatible = "fixed-clock"; 69f126890aSEmmanuel Vadot clock-output-names = "hdmi-osc"; 70f126890aSEmmanuel Vadot clock-frequency = <27000000>; 71f126890aSEmmanuel Vadot #clock-cells = <0>; 72f126890aSEmmanuel Vadot }; 73f126890aSEmmanuel Vadot 74f126890aSEmmanuel Vadot leds { 75f126890aSEmmanuel Vadot compatible = "gpio-leds"; 76f126890aSEmmanuel Vadot pinctrl-names = "default"; 77f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_leds>; 78f126890aSEmmanuel Vadot 79f126890aSEmmanuel Vadot led0: led-power { 80f126890aSEmmanuel Vadot label = "power"; 81f126890aSEmmanuel Vadot gpios = <&gpio3 0 GPIO_ACTIVE_LOW>; 82f126890aSEmmanuel Vadot default-state = "on"; 83f126890aSEmmanuel Vadot }; 84f126890aSEmmanuel Vadot 85f126890aSEmmanuel Vadot led1: led-stream { 86f126890aSEmmanuel Vadot label = "stream"; 87f126890aSEmmanuel Vadot gpios = <&gpio2 29 GPIO_ACTIVE_LOW>; 88f126890aSEmmanuel Vadot default-state = "off"; 89f126890aSEmmanuel Vadot }; 90f126890aSEmmanuel Vadot 91f126890aSEmmanuel Vadot led2: led-rec { 92f126890aSEmmanuel Vadot label = "rec"; 93f126890aSEmmanuel Vadot gpios = <&gpio2 28 GPIO_ACTIVE_LOW>; 94f126890aSEmmanuel Vadot default-state = "off"; 95f126890aSEmmanuel Vadot }; 96f126890aSEmmanuel Vadot }; 97f126890aSEmmanuel Vadot 98f126890aSEmmanuel Vadot reg_3p3v: regulator-3p3v { 99f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 100f126890aSEmmanuel Vadot regulator-name = "3P3V"; 101f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 102f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 103f126890aSEmmanuel Vadot }; 104f126890aSEmmanuel Vadot 105f126890aSEmmanuel Vadot reg_hdmi: regulator-hdmi { 106f126890aSEmmanuel Vadot pinctrl-names = "default"; 107f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_reg_hdmi>; 108f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 109f126890aSEmmanuel Vadot enable-active-high; 110f126890aSEmmanuel Vadot gpio = <&gpio2 20 GPIO_ACTIVE_HIGH>; 111f126890aSEmmanuel Vadot regulator-name = "V_HDMI"; 112f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 113f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 114f126890aSEmmanuel Vadot regulator-always-on; 115f126890aSEmmanuel Vadot }; 116f126890aSEmmanuel Vadot 117f126890aSEmmanuel Vadot reg_usbh1_vbus: regulator-usb-h1-vbus { 118f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 119f126890aSEmmanuel Vadot enable-active-high; 120f126890aSEmmanuel Vadot gpio = <&gpio1 0 GPIO_ACTIVE_HIGH>; 121f126890aSEmmanuel Vadot pinctrl-names = "default"; 122f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_usbh1_vbus>; 123f126890aSEmmanuel Vadot regulator-name = "USB_H1_VBUS"; 124f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 125f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 126f126890aSEmmanuel Vadot }; 127f126890aSEmmanuel Vadot 128f126890aSEmmanuel Vadot reg_usbotg_vbus: regulator-usb-otg-vbus { 129f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 130f126890aSEmmanuel Vadot enable-active-high; 131f126890aSEmmanuel Vadot gpio = <&gpio3 22 GPIO_ACTIVE_HIGH>; 132f126890aSEmmanuel Vadot pinctrl-names = "default"; 133f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_usbotg_vbus>; 134f126890aSEmmanuel Vadot regulator-name = "USB_OTG_VBUS"; 135f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 136f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 137f126890aSEmmanuel Vadot }; 138f126890aSEmmanuel Vadot 139f126890aSEmmanuel Vadot sound-sgtl5000 { 140f126890aSEmmanuel Vadot compatible = "fsl,imx-audio-sgtl5000"; 141f126890aSEmmanuel Vadot model = "H100 on-board codec"; 142f126890aSEmmanuel Vadot audio-codec = <&sgtl5000>; 143f126890aSEmmanuel Vadot audio-routing = 144f126890aSEmmanuel Vadot "MIC_IN", "Mic Jack", 145f126890aSEmmanuel Vadot "Mic Jack", "Mic Bias", 146f126890aSEmmanuel Vadot "Headphone Jack", "HP_OUT"; 147f126890aSEmmanuel Vadot mux-ext-port = <5>; 148f126890aSEmmanuel Vadot mux-int-port = <1>; 149f126890aSEmmanuel Vadot ssi-controller = <&ssi1>; 150f126890aSEmmanuel Vadot }; 151f126890aSEmmanuel Vadot}; 152f126890aSEmmanuel Vadot 153f126890aSEmmanuel Vadot&audmux { 154f126890aSEmmanuel Vadot status = "okay"; 155f126890aSEmmanuel Vadot}; 156f126890aSEmmanuel Vadot 157f126890aSEmmanuel Vadot&hdmi { 158f126890aSEmmanuel Vadot pinctrl-names = "default"; 159f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_hdmi>; 160f126890aSEmmanuel Vadot ddc-i2c-bus = <&i2c2>; 161f126890aSEmmanuel Vadot status = "okay"; 162f126890aSEmmanuel Vadot}; 163f126890aSEmmanuel Vadot 164f126890aSEmmanuel Vadot&i2c1 { 165f126890aSEmmanuel Vadot pinctrl-names = "default"; 166f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_i2c1>; 167f126890aSEmmanuel Vadot status = "okay"; 168f126890aSEmmanuel Vadot 169f126890aSEmmanuel Vadot eeprom: eeprom@51 { 170f126890aSEmmanuel Vadot compatible = "microchip,24c02", "atmel,24c02"; 171f126890aSEmmanuel Vadot reg = <0x51>; 172f126890aSEmmanuel Vadot }; 173f126890aSEmmanuel Vadot 174f126890aSEmmanuel Vadot rtc: pcf8523@68 { 175f126890aSEmmanuel Vadot compatible = "nxp,pcf8523"; 176f126890aSEmmanuel Vadot reg = <0x68>; 177f126890aSEmmanuel Vadot }; 178f126890aSEmmanuel Vadot 179f126890aSEmmanuel Vadot sgtl5000: sgtl5000@a { 180f126890aSEmmanuel Vadot compatible = "fsl,sgtl5000"; 181f126890aSEmmanuel Vadot reg = <0x0a>; 182*aa1a8ff2SEmmanuel Vadot #sound-dai-cells = <0>; 183f126890aSEmmanuel Vadot pinctrl-names = "default"; 184f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_sgtl5000>; 185f126890aSEmmanuel Vadot clocks = <&clks IMX6QDL_CLK_CKO>; 186f126890aSEmmanuel Vadot VDDA-supply = <®_3p3v>; 187f126890aSEmmanuel Vadot VDDIO-supply = <®_3p3v>; 188f126890aSEmmanuel Vadot }; 189f126890aSEmmanuel Vadot 190f126890aSEmmanuel Vadot tc358743: tc358743@f { 191f126890aSEmmanuel Vadot compatible = "toshiba,tc358743"; 192f126890aSEmmanuel Vadot reg = <0x0f>; 193f126890aSEmmanuel Vadot pinctrl-names = "default"; 194f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_tc358743>; 195f126890aSEmmanuel Vadot clocks = <&hdmi_osc>; 196f126890aSEmmanuel Vadot clock-names = "refclk"; 197f126890aSEmmanuel Vadot reset-gpios = <&gpio6 15 GPIO_ACTIVE_LOW>; 198f126890aSEmmanuel Vadot /* IRQ has a wrong pull resistor which renders it useless */ 199f126890aSEmmanuel Vadot 200f126890aSEmmanuel Vadot port { 201f126890aSEmmanuel Vadot tc358743_out: endpoint { 202f126890aSEmmanuel Vadot remote-endpoint = <&mipi_csi2_in>; 203f126890aSEmmanuel Vadot data-lanes = <1 2 3 4>; 204f126890aSEmmanuel Vadot clock-lanes = <0>; 205f126890aSEmmanuel Vadot clock-noncontinuous; 206f126890aSEmmanuel Vadot link-frequencies = /bits/ 64 <297000000>; 207f126890aSEmmanuel Vadot }; 208f126890aSEmmanuel Vadot }; 209f126890aSEmmanuel Vadot }; 210f126890aSEmmanuel Vadot}; 211f126890aSEmmanuel Vadot 212f126890aSEmmanuel Vadot&i2c2 { 213f126890aSEmmanuel Vadot clock-frequency = <100000>; 214f126890aSEmmanuel Vadot pinctrl-names = "default"; 215f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_i2c2>; 216f126890aSEmmanuel Vadot status = "okay"; 217f126890aSEmmanuel Vadot}; 218f126890aSEmmanuel Vadot 219f126890aSEmmanuel Vadot&iomuxc { 220f126890aSEmmanuel Vadot h100 { 221f126890aSEmmanuel Vadot pinctrl_h100_hdmi: h100-hdmi { 222f126890aSEmmanuel Vadot fsl,pins = < 223f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW2__HDMI_TX_CEC_LINE 0x1f8b0 224f126890aSEmmanuel Vadot >; 225f126890aSEmmanuel Vadot }; 226f126890aSEmmanuel Vadot 227f126890aSEmmanuel Vadot pinctrl_h100_i2c1: h100-i2c1 { 228f126890aSEmmanuel Vadot fsl,pins = < 229f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D21__I2C1_SCL 0x4001b8b1 230f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D28__I2C1_SDA 0x4001b8b1 231f126890aSEmmanuel Vadot >; 232f126890aSEmmanuel Vadot }; 233f126890aSEmmanuel Vadot 234f126890aSEmmanuel Vadot pinctrl_h100_i2c2: h100-i2c2 { 235f126890aSEmmanuel Vadot fsl,pins = < 236f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL3__I2C2_SCL 0x4001b8b1 237f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW3__I2C2_SDA 0x4001b8b1 238f126890aSEmmanuel Vadot >; 239f126890aSEmmanuel Vadot }; 240f126890aSEmmanuel Vadot 241f126890aSEmmanuel Vadot pinctrl_h100_leds: pinctrl-h100-leds { 242f126890aSEmmanuel Vadot fsl,pins = < 243f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_DA0__GPIO3_IO00 0x1b0b0 244f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_EB1__GPIO2_IO29 0x1b0b0 245f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_EB0__GPIO2_IO28 0x1b0b0 246f126890aSEmmanuel Vadot >; 247f126890aSEmmanuel Vadot }; 248f126890aSEmmanuel Vadot 249f126890aSEmmanuel Vadot pinctrl_h100_reg_hdmi: h100-reg-hdmi { 250f126890aSEmmanuel Vadot fsl,pins = < 251f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_A18__GPIO2_IO20 0x1b0b0 252f126890aSEmmanuel Vadot >; 253f126890aSEmmanuel Vadot }; 254f126890aSEmmanuel Vadot 255f126890aSEmmanuel Vadot pinctrl_h100_sgtl5000: h100-sgtl5000 { 256f126890aSEmmanuel Vadot fsl,pins = < 257f126890aSEmmanuel Vadot MX6QDL_PAD_DISP0_DAT19__AUD5_RXD 0x130b0 258f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL0__AUD5_TXC 0x130b0 259f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW0__AUD5_TXD 0x110b0 260f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_COL1__AUD5_TXFS 0x130b0 261f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_5__CCM_CLKO1 0x130b0 262f126890aSEmmanuel Vadot >; 263f126890aSEmmanuel Vadot }; 264f126890aSEmmanuel Vadot 265f126890aSEmmanuel Vadot pinctrl_h100_tc358743: h100-tc358743 { 266f126890aSEmmanuel Vadot fsl,pins = < 267f126890aSEmmanuel Vadot MX6QDL_PAD_NANDF_CS2__GPIO6_IO15 0x1b0b0 268f126890aSEmmanuel Vadot >; 269f126890aSEmmanuel Vadot }; 270f126890aSEmmanuel Vadot 271f126890aSEmmanuel Vadot pinctrl_h100_uart2: h100-uart2 { 272f126890aSEmmanuel Vadot fsl,pins = < 273f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT4__UART2_RX_DATA 0x1b0b1 274f126890aSEmmanuel Vadot MX6QDL_PAD_SD4_DAT7__UART2_TX_DATA 0x1b0b1 275f126890aSEmmanuel Vadot >; 276f126890aSEmmanuel Vadot }; 277f126890aSEmmanuel Vadot 278f126890aSEmmanuel Vadot pinctrl_h100_usbh1_vbus: hummingboard-usbh1-vbus { 279f126890aSEmmanuel Vadot fsl,pins = < 280f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_0__GPIO1_IO00 0x1b0b0 281f126890aSEmmanuel Vadot >; 282f126890aSEmmanuel Vadot }; 283f126890aSEmmanuel Vadot 284f126890aSEmmanuel Vadot pinctrl_h100_usbotg_id: hummingboard-usbotg-id { 285f126890aSEmmanuel Vadot fsl,pins = < 286f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_1__USB_OTG_ID 0x13059 287f126890aSEmmanuel Vadot >; 288f126890aSEmmanuel Vadot }; 289f126890aSEmmanuel Vadot 290f126890aSEmmanuel Vadot pinctrl_h100_usbotg_vbus: hummingboard-usbotg-vbus { 291f126890aSEmmanuel Vadot fsl,pins = < 292f126890aSEmmanuel Vadot MX6QDL_PAD_EIM_D22__GPIO3_IO22 0x1b0b0 293f126890aSEmmanuel Vadot >; 294f126890aSEmmanuel Vadot }; 295f126890aSEmmanuel Vadot 296f126890aSEmmanuel Vadot pinctrl_h100_usdhc2: h100-usdhc2 { 297f126890aSEmmanuel Vadot fsl,pins = < 298f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_4__GPIO1_IO04 0x1f071 299f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CMD__SD2_CMD 0x17059 300f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CLK__SD2_CLK 0x10059 301f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT0__SD2_DATA0 0x17059 302f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT1__SD2_DATA1 0x17059 303f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT2__SD2_DATA2 0x17059 304f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT3__SD2_DATA3 0x13059 305f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW1__SD2_VSELECT 0x1b0b0 306f126890aSEmmanuel Vadot >; 307f126890aSEmmanuel Vadot }; 308f126890aSEmmanuel Vadot 309f126890aSEmmanuel Vadot pinctrl_h100_usdhc2_100mhz: h100-usdhc2-100mhz { 310f126890aSEmmanuel Vadot fsl,pins = < 311f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_4__GPIO1_IO04 0x1f071 312f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CMD__SD2_CMD 0x170b9 313f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CLK__SD2_CLK 0x100b9 314f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT0__SD2_DATA0 0x170b9 315f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT1__SD2_DATA1 0x170b9 316f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT2__SD2_DATA2 0x170b9 317f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT3__SD2_DATA3 0x170b9 318f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW1__SD2_VSELECT 0x1b0b0 319f126890aSEmmanuel Vadot >; 320f126890aSEmmanuel Vadot }; 321f126890aSEmmanuel Vadot 322f126890aSEmmanuel Vadot pinctrl_h100_usdhc2_200mhz: h100-usdhc2-200mhz { 323f126890aSEmmanuel Vadot fsl,pins = < 324f126890aSEmmanuel Vadot MX6QDL_PAD_GPIO_4__GPIO1_IO04 0x1f071 325f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CMD__SD2_CMD 0x170f9 326f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_CLK__SD2_CLK 0x100f9 327f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT0__SD2_DATA0 0x170f9 328f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT1__SD2_DATA1 0x170f9 329f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT2__SD2_DATA2 0x170f9 330f126890aSEmmanuel Vadot MX6QDL_PAD_SD2_DAT3__SD2_DATA3 0x170f9 331f126890aSEmmanuel Vadot MX6QDL_PAD_KEY_ROW1__SD2_VSELECT 0x1b0b0 332f126890aSEmmanuel Vadot >; 333f126890aSEmmanuel Vadot }; 334f126890aSEmmanuel Vadot }; 335f126890aSEmmanuel Vadot}; 336f126890aSEmmanuel Vadot 337f126890aSEmmanuel Vadot&mipi_csi { 338f126890aSEmmanuel Vadot status = "okay"; 339f126890aSEmmanuel Vadot 340f126890aSEmmanuel Vadot port { 341f126890aSEmmanuel Vadot mipi_csi2_in: endpoint { 342f126890aSEmmanuel Vadot remote-endpoint = <&tc358743_out>; 343f126890aSEmmanuel Vadot data-lanes = <1 2 3 4>; 344f126890aSEmmanuel Vadot clock-lanes = <0>; 345f126890aSEmmanuel Vadot clock-noncontinuous; 346f126890aSEmmanuel Vadot link-frequencies = /bits/ 64 <297000000>; 347f126890aSEmmanuel Vadot }; 348f126890aSEmmanuel Vadot }; 349f126890aSEmmanuel Vadot}; 350f126890aSEmmanuel Vadot 351f126890aSEmmanuel Vadot&ssi1 { 352f126890aSEmmanuel Vadot status = "okay"; 353f126890aSEmmanuel Vadot}; 354f126890aSEmmanuel Vadot 355f126890aSEmmanuel Vadot&uart2 { 356f126890aSEmmanuel Vadot pinctrl-names = "default"; 357f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_uart2>; 358f126890aSEmmanuel Vadot status = "okay"; 359f126890aSEmmanuel Vadot}; 360f126890aSEmmanuel Vadot 361f126890aSEmmanuel Vadot&usbh1 { 362f126890aSEmmanuel Vadot disable-over-current; 363f126890aSEmmanuel Vadot vbus-supply = <®_usbh1_vbus>; 364f126890aSEmmanuel Vadot status = "okay"; 365f126890aSEmmanuel Vadot}; 366f126890aSEmmanuel Vadot 367f126890aSEmmanuel Vadot&usbotg { 368f126890aSEmmanuel Vadot disable-over-current; 369f126890aSEmmanuel Vadot pinctrl-names = "default"; 370f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_usbotg_id>; 371f126890aSEmmanuel Vadot vbus-supply = <®_usbotg_vbus>; 372f126890aSEmmanuel Vadot status = "okay"; 373f126890aSEmmanuel Vadot}; 374f126890aSEmmanuel Vadot 375f126890aSEmmanuel Vadot&usdhc2 { 376f126890aSEmmanuel Vadot pinctrl-names = "default", "state_100mhz", "state_200mhz"; 377f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_h100_usdhc2>; 378f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_h100_usdhc2_100mhz>; 379f126890aSEmmanuel Vadot pinctrl-2 = <&pinctrl_h100_usdhc2_200mhz>; 380f126890aSEmmanuel Vadot vmmc-supply = <®_3p3v>; 381f126890aSEmmanuel Vadot cd-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; 382f126890aSEmmanuel Vadot status = "okay"; 383f126890aSEmmanuel Vadot}; 384