15f62a964SEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+ OR MIT 25f62a964SEmmanuel Vadot/* 35f62a964SEmmanuel Vadot * Copyright (C) 2022 Kontron Electronics GmbH 45f62a964SEmmanuel Vadot */ 55f62a964SEmmanuel Vadot 65f62a964SEmmanuel Vadot#include <dt-bindings/interrupt-controller/irq.h> 75f62a964SEmmanuel Vadot#include "imx8mp.dtsi" 85f62a964SEmmanuel Vadot 95f62a964SEmmanuel Vadot/ { 105f62a964SEmmanuel Vadot model = "Kontron OSM-S i.MX8MP"; 115f62a964SEmmanuel Vadot compatible = "kontron,imx8mp-osm-s", "fsl,imx8mp"; 125f62a964SEmmanuel Vadot 135f62a964SEmmanuel Vadot aliases { 145f62a964SEmmanuel Vadot rtc0 = &rv3028; 155f62a964SEmmanuel Vadot rtc1 = &snvs_rtc; 165f62a964SEmmanuel Vadot }; 175f62a964SEmmanuel Vadot 185f62a964SEmmanuel Vadot memory@40000000 { 195f62a964SEmmanuel Vadot device_type = "memory"; 205f62a964SEmmanuel Vadot /* 215f62a964SEmmanuel Vadot * There are multiple SoM flavors with different DDR sizes. 225f62a964SEmmanuel Vadot * The smallest is 1GB. For larger sizes the bootloader will 235f62a964SEmmanuel Vadot * update the reg property. 245f62a964SEmmanuel Vadot */ 255f62a964SEmmanuel Vadot reg = <0x0 0x40000000 0 0x80000000>; 265f62a964SEmmanuel Vadot }; 275f62a964SEmmanuel Vadot 285f62a964SEmmanuel Vadot chosen { 295f62a964SEmmanuel Vadot stdout-path = &uart3; 305f62a964SEmmanuel Vadot }; 315f62a964SEmmanuel Vadot 325f62a964SEmmanuel Vadot reg_usb1_vbus: regulator-usb1-vbus { 335f62a964SEmmanuel Vadot compatible = "regulator-fixed"; 345f62a964SEmmanuel Vadot pinctrl-names = "default"; 355f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_reg_usb1_vbus>; 365f62a964SEmmanuel Vadot gpio = <&gpio1 12 GPIO_ACTIVE_HIGH>; 375f62a964SEmmanuel Vadot enable-active-high; 385f62a964SEmmanuel Vadot regulator-min-microvolt = <5000000>; 395f62a964SEmmanuel Vadot regulator-max-microvolt = <5000000>; 405f62a964SEmmanuel Vadot regulator-name = "VBUS_USB_A"; 415f62a964SEmmanuel Vadot }; 425f62a964SEmmanuel Vadot 435f62a964SEmmanuel Vadot reg_usb2_vbus: regulator-usb2-vbus { 445f62a964SEmmanuel Vadot compatible = "regulator-fixed"; 455f62a964SEmmanuel Vadot pinctrl-names = "default"; 465f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_reg_usb2_vbus>; 475f62a964SEmmanuel Vadot gpio = <&gpio1 9 GPIO_ACTIVE_HIGH>; 485f62a964SEmmanuel Vadot enable-active-high; 495f62a964SEmmanuel Vadot regulator-min-microvolt = <5000000>; 505f62a964SEmmanuel Vadot regulator-max-microvolt = <5000000>; 515f62a964SEmmanuel Vadot regulator-name = "VBUS_USB_B"; 525f62a964SEmmanuel Vadot }; 535f62a964SEmmanuel Vadot 545f62a964SEmmanuel Vadot reg_usdhc2_vcc: regulator-usdhc2-vcc { 555f62a964SEmmanuel Vadot compatible = "regulator-fixed"; 565f62a964SEmmanuel Vadot pinctrl-names = "default"; 575f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_reg_usdhc2_vcc>; 585f62a964SEmmanuel Vadot gpio = <&gpio2 19 GPIO_ACTIVE_HIGH>; 595f62a964SEmmanuel Vadot enable-active-high; 605f62a964SEmmanuel Vadot regulator-min-microvolt = <3300000>; 615f62a964SEmmanuel Vadot regulator-max-microvolt = <3300000>; 625f62a964SEmmanuel Vadot regulator-name = "VCC_SDIO_A"; 635f62a964SEmmanuel Vadot }; 645f62a964SEmmanuel Vadot 655f62a964SEmmanuel Vadot reg_usdhc3_vcc: regulator-usdhc3-vcc { 665f62a964SEmmanuel Vadot compatible = "regulator-fixed"; 675f62a964SEmmanuel Vadot pinctrl-names = "default"; 685f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_reg_usdhc3_vcc>; 695f62a964SEmmanuel Vadot gpio = <&gpio3 27 GPIO_ACTIVE_HIGH>; 705f62a964SEmmanuel Vadot enable-active-high; 715f62a964SEmmanuel Vadot regulator-min-microvolt = <3300000>; 725f62a964SEmmanuel Vadot regulator-max-microvolt = <3300000>; 735f62a964SEmmanuel Vadot regulator-name = "VCC_SDIO_B"; 745f62a964SEmmanuel Vadot }; 755f62a964SEmmanuel Vadot 765f62a964SEmmanuel Vadot reg_vdd_carrier: regulator-vdd-carrier { 775f62a964SEmmanuel Vadot compatible = "regulator-fixed"; 785f62a964SEmmanuel Vadot pinctrl-names = "default"; 795f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_reg_vdd_carrier>; 805f62a964SEmmanuel Vadot gpio = <&gpio3 16 GPIO_ACTIVE_HIGH>; 815f62a964SEmmanuel Vadot enable-active-high; 825f62a964SEmmanuel Vadot regulator-always-on; 835f62a964SEmmanuel Vadot regulator-boot-on; 845f62a964SEmmanuel Vadot regulator-name = "VDD_CARRIER"; 855f62a964SEmmanuel Vadot 865f62a964SEmmanuel Vadot regulator-state-standby { 875f62a964SEmmanuel Vadot regulator-on-in-suspend; 885f62a964SEmmanuel Vadot }; 895f62a964SEmmanuel Vadot 905f62a964SEmmanuel Vadot regulator-state-mem { 915f62a964SEmmanuel Vadot regulator-off-in-suspend; 925f62a964SEmmanuel Vadot }; 935f62a964SEmmanuel Vadot 945f62a964SEmmanuel Vadot regulator-state-disk { 955f62a964SEmmanuel Vadot regulator-off-in-suspend; 965f62a964SEmmanuel Vadot }; 975f62a964SEmmanuel Vadot }; 985f62a964SEmmanuel Vadot}; 995f62a964SEmmanuel Vadot 1005f62a964SEmmanuel Vadot&A53_0 { 1015f62a964SEmmanuel Vadot cpu-supply = <®_vdd_arm>; 1025f62a964SEmmanuel Vadot}; 1035f62a964SEmmanuel Vadot 1045f62a964SEmmanuel Vadot&A53_1 { 1055f62a964SEmmanuel Vadot cpu-supply = <®_vdd_arm>; 1065f62a964SEmmanuel Vadot}; 1075f62a964SEmmanuel Vadot 1085f62a964SEmmanuel Vadot&A53_2 { 1095f62a964SEmmanuel Vadot cpu-supply = <®_vdd_arm>; 1105f62a964SEmmanuel Vadot}; 1115f62a964SEmmanuel Vadot 1125f62a964SEmmanuel Vadot&A53_3 { 1135f62a964SEmmanuel Vadot cpu-supply = <®_vdd_arm>; 1145f62a964SEmmanuel Vadot}; 1155f62a964SEmmanuel Vadot 1165f62a964SEmmanuel Vadot&ecspi1 { /* OSM-S SPI_A */ 1175f62a964SEmmanuel Vadot pinctrl-names = "default"; 1185f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_ecspi1>; 1195f62a964SEmmanuel Vadot cs-gpios = <&gpio5 9 GPIO_ACTIVE_LOW>; 1205f62a964SEmmanuel Vadot}; 1215f62a964SEmmanuel Vadot 1225f62a964SEmmanuel Vadot&ecspi2 { /* OSM-S SPI_B */ 1235f62a964SEmmanuel Vadot pinctrl-names = "default"; 1245f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_ecspi2>; 1255f62a964SEmmanuel Vadot cs-gpios = <&gpio5 13 GPIO_ACTIVE_LOW>; 1265f62a964SEmmanuel Vadot}; 1275f62a964SEmmanuel Vadot 1285f62a964SEmmanuel Vadot&flexcan1 { /* OSM-S CAN_A */ 1295f62a964SEmmanuel Vadot pinctrl-names = "default"; 1305f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan1>; 1315f62a964SEmmanuel Vadot}; 1325f62a964SEmmanuel Vadot 1335f62a964SEmmanuel Vadot&flexcan2 { /* OSM-S CAN_B */ 1345f62a964SEmmanuel Vadot pinctrl-names = "default"; 1355f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_flexcan2>; 1365f62a964SEmmanuel Vadot}; 1375f62a964SEmmanuel Vadot 1385f62a964SEmmanuel Vadot&gpio1 { 1395f62a964SEmmanuel Vadot pinctrl-names = "default"; 1405f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_gpio1>; 1415f62a964SEmmanuel Vadot gpio-line-names = "GPIO_A_0", "GPIO_A_1", "", "", 1425f62a964SEmmanuel Vadot "", "GPIO_A_2", "GPIO_A_3", "GPIO_A_4", 1435f62a964SEmmanuel Vadot "GPIO_A_5", "USB_B_EN", "USB_A_ID", "USB_B_ID", 1445f62a964SEmmanuel Vadot "USB_A_EN", "USB_A_OC","CAM_MCK", "USB_B_OC", 1455f62a964SEmmanuel Vadot "ETH_B_MDC", "ETH_B_MDIO", "ETH_B_TXD3", "ETH_B_TXD2", 1465f62a964SEmmanuel Vadot "ETH_B_TXD1", "ETH_B_TXD0", "ETH_B_TX_EN", "ETH_B_TX_CLK", 1475f62a964SEmmanuel Vadot "ETH_B_RX_DV", "ETH_B_RX_CLK", "ETH_B_RXD0", "ETH_B_RXD1", 1485f62a964SEmmanuel Vadot "ETH_B_RXD2", "ETH_B_RXD3"; 1495f62a964SEmmanuel Vadot}; 1505f62a964SEmmanuel Vadot 1515f62a964SEmmanuel Vadot&gpio2 { 1525f62a964SEmmanuel Vadot gpio-line-names = "", "", "", "", "", "", "", "", "", "", "", "", 1535f62a964SEmmanuel Vadot "SDIO_A_CD", "SDIO_A_CLK", "SDIO_A_CMD", "SDIO_A_D0", 1545f62a964SEmmanuel Vadot "SDIO_A_D1", "SDIO_A_D2", "SDIO_A_D3", "SDIO_A_PWR_EN", 1555f62a964SEmmanuel Vadot "SDIO_A_WP"; 1565f62a964SEmmanuel Vadot}; 1575f62a964SEmmanuel Vadot 1585f62a964SEmmanuel Vadot&gpio3 { 1595f62a964SEmmanuel Vadot pinctrl-names = "default"; 1605f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_gpio3>; 1615f62a964SEmmanuel Vadot gpio-line-names = "PCIE_WAKE", "PCIE_CLKREQ", "PCIE_A_PERST", "SDIO_B_D5", 1625f62a964SEmmanuel Vadot "SDIO_B_D6", "SDIO_B_D7", "SPI_A_WP", "SPI_A_HOLD", 1635f62a964SEmmanuel Vadot "UART_B_RTS", "UART_B_CTS", "SDIO_B_D0", "SDIO_B_D1", 1645f62a964SEmmanuel Vadot "SDIO_B_D2", "SDIO_B_D3", "SDIO_B_WP", "SDIO_B_D4", 1655f62a964SEmmanuel Vadot "PCIE_SM_ALERT", "SDIO_B_CLK", "SDIO_B_CMD", "GPIO_B_0", 1665f62a964SEmmanuel Vadot "GPIO_B_1", "", "BOOT_SEL0", "BOOT_SEL1", 1675f62a964SEmmanuel Vadot "", "", "SDIO_B_CD", "SDIO_B_PWR_EN", 1685f62a964SEmmanuel Vadot "HDMI_CEC", "HDMI_HPD"; 1695f62a964SEmmanuel Vadot}; 1705f62a964SEmmanuel Vadot 1715f62a964SEmmanuel Vadot&gpio4 { 1725f62a964SEmmanuel Vadot pinctrl-names = "default"; 1735f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_gpio4>; 1745f62a964SEmmanuel Vadot gpio-line-names = "GPIO_B_5", "GPIO_B_6", "GPIO_B_7", "GPIO_C_0", 1755f62a964SEmmanuel Vadot "ETH_A_MDC", "ETH_A_MDIO", "ETH_A_RXD0", "ETH_A_RXD1", 1765f62a964SEmmanuel Vadot "ETH_A_RXD2", "ETH_A_RXD3", "ETH_A_RX_DV", "ETH_A_RX_CLK", 1775f62a964SEmmanuel Vadot "ETH_A_TXD0", "ETH_A_TXD1", "ETH_A_TXD2", "ETH_A_TXD3", 1785f62a964SEmmanuel Vadot "ETH_A_TX_EN", "ETH_A_TX_CLK", "GPIO_B_3", "GPIO_B_4", 1795f62a964SEmmanuel Vadot "GPIO_B_2", "GPIO_A_6", "CAN_A_TX", "UART_A_CTS", 1805f62a964SEmmanuel Vadot "UART_A_RTS", "CAN_A_RX", "CAN_B_TX", "CAN_B_RX", 1815f62a964SEmmanuel Vadot "GPIO_A_7", "CARRIER_PWR_EN", "I2S_A_DATA_IN", "I2S_LRCLK"; 1825f62a964SEmmanuel Vadot}; 1835f62a964SEmmanuel Vadot 1845f62a964SEmmanuel Vadot&gpio5 { 1855f62a964SEmmanuel Vadot gpio-line-names = "I2S_BITCLK", "I2S_A_DATA_OUT", "I2S_MCLK", "PWM_2", 1865f62a964SEmmanuel Vadot "PWM_1", "PWM_0", "SPI_A_SCK", "SPI_A_SDO", 1875f62a964SEmmanuel Vadot "SPI_A_SDI", "SPI_A_CS0", "SPI_B_SCK", "SPI_B_SDO", 1885f62a964SEmmanuel Vadot "SPI_B_SDI", "SPI_B_CS0", "I2C_A_SCL", "I2C_A_SDA", 1895f62a964SEmmanuel Vadot "I2C_B_SCL", "I2C_B_SDA", "PCIE_SMCLK", "PCIE_SMDAT", 1905f62a964SEmmanuel Vadot "I2C_CAM_SCL", "I2C_CAM_SDA", "UART_A_RX", "UART_A_TX", 1915f62a964SEmmanuel Vadot "UART_C_RX", "UART_C_TX", "UART_CON_RX", "UART_CON_TX", 1925f62a964SEmmanuel Vadot "UART_B_RX", "UART_B_TX"; 1935f62a964SEmmanuel Vadot}; 1945f62a964SEmmanuel Vadot 1955f62a964SEmmanuel Vadot&i2c1 { /* OSM-S I2C_A */ 1965f62a964SEmmanuel Vadot clock-frequency = <400000>; 1975f62a964SEmmanuel Vadot pinctrl-names = "default", "gpio"; 1985f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c1>; 1995f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c1_gpio>; 2005f62a964SEmmanuel Vadot scl-gpios = <&gpio5 14 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2015f62a964SEmmanuel Vadot sda-gpios = <&gpio5 15 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2025f62a964SEmmanuel Vadot}; 2035f62a964SEmmanuel Vadot 2045f62a964SEmmanuel Vadot&i2c2 { /* OSM-S I2C_B */ 2055f62a964SEmmanuel Vadot clock-frequency = <400000>; 2065f62a964SEmmanuel Vadot pinctrl-names = "default", "gpio"; 2075f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c2>; 2085f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c2_gpio>; 2095f62a964SEmmanuel Vadot scl-gpios = <&gpio5 16 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2105f62a964SEmmanuel Vadot sda-gpios = <&gpio5 17 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2115f62a964SEmmanuel Vadot}; 2125f62a964SEmmanuel Vadot 2135f62a964SEmmanuel Vadot&i2c3 { /* OSM-S PCIe SMDAT/SMCLK */ 2145f62a964SEmmanuel Vadot clock-frequency = <400000>; 2155f62a964SEmmanuel Vadot pinctrl-names = "default", "gpio"; 2165f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c3>; 2175f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c3_gpio>; 2185f62a964SEmmanuel Vadot scl-gpios = <&gpio5 18 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2195f62a964SEmmanuel Vadot sda-gpios = <&gpio5 19 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2205f62a964SEmmanuel Vadot}; 2215f62a964SEmmanuel Vadot 2225f62a964SEmmanuel Vadot&i2c4 { /* OSM-S I2C_CAM */ 2235f62a964SEmmanuel Vadot clock-frequency = <400000>; 2245f62a964SEmmanuel Vadot pinctrl-names = "default", "gpio"; 2255f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c4>; 2265f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c4_gpio>; 2275f62a964SEmmanuel Vadot scl-gpios = <&gpio5 20 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2285f62a964SEmmanuel Vadot sda-gpios = <&gpio5 21 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2295f62a964SEmmanuel Vadot}; 2305f62a964SEmmanuel Vadot 2315f62a964SEmmanuel Vadot&i2c5 { /* PMIC, EEPROM, RTC */ 2325f62a964SEmmanuel Vadot clock-frequency = <400000>; 2335f62a964SEmmanuel Vadot pinctrl-names = "default", "gpio"; 2345f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c5>; 2355f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_i2c5_gpio>; 2365f62a964SEmmanuel Vadot scl-gpios = <&gpio3 21 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2375f62a964SEmmanuel Vadot sda-gpios = <&gpio3 25 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>; 2385f62a964SEmmanuel Vadot status = "okay"; 2395f62a964SEmmanuel Vadot 2405f62a964SEmmanuel Vadot pca9450: pmic@25 { 2415f62a964SEmmanuel Vadot compatible = "nxp,pca9450c"; 2425f62a964SEmmanuel Vadot reg = <0x25>; 2435f62a964SEmmanuel Vadot pinctrl-names = "default"; 2445f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_pmic>; 2455f62a964SEmmanuel Vadot interrupt-parent = <&gpio1>; 2465f62a964SEmmanuel Vadot interrupts = <3 IRQ_TYPE_LEVEL_LOW>; 2475f62a964SEmmanuel Vadot nxp,i2c-lt-enable; 2485f62a964SEmmanuel Vadot 2495f62a964SEmmanuel Vadot regulators { 2505f62a964SEmmanuel Vadot reg_vdd_soc: BUCK1 { /* dual phase with BUCK3 */ 2515f62a964SEmmanuel Vadot regulator-name = "+0V8_VDD_SOC (BUCK1)"; 2525f62a964SEmmanuel Vadot regulator-min-microvolt = <850000>; 2535f62a964SEmmanuel Vadot regulator-max-microvolt = <950000>; 2545f62a964SEmmanuel Vadot regulator-boot-on; 2555f62a964SEmmanuel Vadot regulator-always-on; 2565f62a964SEmmanuel Vadot regulator-ramp-delay = <3125>; 2575f62a964SEmmanuel Vadot }; 2585f62a964SEmmanuel Vadot 2595f62a964SEmmanuel Vadot reg_vdd_arm: BUCK2 { 2605f62a964SEmmanuel Vadot regulator-name = "+0V9_VDD_ARM (BUCK2)"; 2615f62a964SEmmanuel Vadot regulator-min-microvolt = <850000>; 2625f62a964SEmmanuel Vadot regulator-max-microvolt = <950000>; 2635f62a964SEmmanuel Vadot regulator-boot-on; 2645f62a964SEmmanuel Vadot regulator-always-on; 2655f62a964SEmmanuel Vadot regulator-ramp-delay = <3125>; 2665f62a964SEmmanuel Vadot nxp,dvs-run-voltage = <950000>; 2675f62a964SEmmanuel Vadot nxp,dvs-standby-voltage = <850000>; 2685f62a964SEmmanuel Vadot }; 2695f62a964SEmmanuel Vadot 2705f62a964SEmmanuel Vadot reg_vdd_3v3: BUCK4 { 2715f62a964SEmmanuel Vadot regulator-name = "+3V3 (BUCK4)"; 2725f62a964SEmmanuel Vadot regulator-min-microvolt = <3300000>; 2735f62a964SEmmanuel Vadot regulator-max-microvolt = <3300000>; 2745f62a964SEmmanuel Vadot regulator-boot-on; 2755f62a964SEmmanuel Vadot regulator-always-on; 2765f62a964SEmmanuel Vadot }; 2775f62a964SEmmanuel Vadot 2785f62a964SEmmanuel Vadot reg_vdd_1v8: BUCK5 { 2795f62a964SEmmanuel Vadot regulator-name = "+1V8 (BUCK5)"; 2805f62a964SEmmanuel Vadot regulator-min-microvolt = <1800000>; 2815f62a964SEmmanuel Vadot regulator-max-microvolt = <1800000>; 2825f62a964SEmmanuel Vadot regulator-boot-on; 2835f62a964SEmmanuel Vadot regulator-always-on; 2845f62a964SEmmanuel Vadot }; 2855f62a964SEmmanuel Vadot 2865f62a964SEmmanuel Vadot reg_nvcc_dram: BUCK6 { 2875f62a964SEmmanuel Vadot regulator-name = "+1V1_NVCC_DRAM (BUCK6)"; 2885f62a964SEmmanuel Vadot regulator-min-microvolt = <1100000>; 2895f62a964SEmmanuel Vadot regulator-max-microvolt = <1100000>; 2905f62a964SEmmanuel Vadot regulator-boot-on; 2915f62a964SEmmanuel Vadot regulator-always-on; 2925f62a964SEmmanuel Vadot }; 2935f62a964SEmmanuel Vadot 2945f62a964SEmmanuel Vadot reg_nvcc_snvs: LDO1 { 2955f62a964SEmmanuel Vadot regulator-name = "+1V8_NVCC_SNVS (LDO1)"; 2965f62a964SEmmanuel Vadot regulator-min-microvolt = <1800000>; 2975f62a964SEmmanuel Vadot regulator-max-microvolt = <1800000>; 2985f62a964SEmmanuel Vadot regulator-boot-on; 2995f62a964SEmmanuel Vadot regulator-always-on; 3005f62a964SEmmanuel Vadot }; 3015f62a964SEmmanuel Vadot 3025f62a964SEmmanuel Vadot reg_vdda: LDO3 { 3035f62a964SEmmanuel Vadot regulator-name = "+1V8_VDDA (LDO3)"; 3045f62a964SEmmanuel Vadot regulator-min-microvolt = <1800000>; 3055f62a964SEmmanuel Vadot regulator-max-microvolt = <1800000>; 3065f62a964SEmmanuel Vadot regulator-boot-on; 3075f62a964SEmmanuel Vadot regulator-always-on; 3085f62a964SEmmanuel Vadot }; 3095f62a964SEmmanuel Vadot 3105f62a964SEmmanuel Vadot reg_nvcc_sd: LDO5 { 3115f62a964SEmmanuel Vadot regulator-name = "NVCC_SD (LDO5)"; 3125f62a964SEmmanuel Vadot regulator-min-microvolt = <1800000>; 3135f62a964SEmmanuel Vadot regulator-max-microvolt = <3300000>; 314*8ccc0d23SEmmanuel Vadot sd-vsel-gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>; 3155f62a964SEmmanuel Vadot }; 3165f62a964SEmmanuel Vadot }; 3175f62a964SEmmanuel Vadot }; 3185f62a964SEmmanuel Vadot 3195f62a964SEmmanuel Vadot eeprom@50 { 3205f62a964SEmmanuel Vadot compatible = "onnn,n24s64b", "atmel,24c64"; 3215f62a964SEmmanuel Vadot reg = <0x50>; 3225f62a964SEmmanuel Vadot pagesize = <32>; 3235f62a964SEmmanuel Vadot size = <8192>; 3245f62a964SEmmanuel Vadot num-addresses = <1>; 3255f62a964SEmmanuel Vadot }; 3265f62a964SEmmanuel Vadot 3275f62a964SEmmanuel Vadot rv3028: rtc@52 { 3285f62a964SEmmanuel Vadot compatible = "microcrystal,rv3028"; 3295f62a964SEmmanuel Vadot reg = <0x52>; 3305f62a964SEmmanuel Vadot pinctrl-names = "default"; 3315f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_rtc>; 3325f62a964SEmmanuel Vadot interrupts-extended = <&gpio3 24 IRQ_TYPE_LEVEL_LOW>; 3335f62a964SEmmanuel Vadot }; 3345f62a964SEmmanuel Vadot}; 3355f62a964SEmmanuel Vadot 3365f62a964SEmmanuel Vadot&pwm1 { /* OSM-S PWM_0 */ 3375f62a964SEmmanuel Vadot pinctrl-names = "default"; 3385f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm1>; 3395f62a964SEmmanuel Vadot}; 3405f62a964SEmmanuel Vadot 3415f62a964SEmmanuel Vadot&pwm2 { /* OSM-S PWM_1 */ 3425f62a964SEmmanuel Vadot pinctrl-names = "default"; 3435f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm2>; 3445f62a964SEmmanuel Vadot}; 3455f62a964SEmmanuel Vadot 3465f62a964SEmmanuel Vadot&pwm3 { /* OSM-S PWM_2 */ 3475f62a964SEmmanuel Vadot pinctrl-names = "default"; 3485f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm3>; 3495f62a964SEmmanuel Vadot}; 3505f62a964SEmmanuel Vadot 3515f62a964SEmmanuel Vadot&sai3 { /* OSM-S I2S_A */ 3525f62a964SEmmanuel Vadot pinctrl-names = "default"; 3535f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_sai3>; 3545f62a964SEmmanuel Vadot}; 3555f62a964SEmmanuel Vadot 3565f62a964SEmmanuel Vadot&uart1 { /* OSM-S UART_A */ 3575f62a964SEmmanuel Vadot pinctrl-names = "default"; 3585f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_uart1>; 3595f62a964SEmmanuel Vadot}; 3605f62a964SEmmanuel Vadot 3615f62a964SEmmanuel Vadot&uart2 { /* OSM-S UART_C */ 3625f62a964SEmmanuel Vadot pinctrl-names = "default"; 3635f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_uart2>; 3645f62a964SEmmanuel Vadot}; 3655f62a964SEmmanuel Vadot 3665f62a964SEmmanuel Vadot&uart3 { /* OSM-S UART_CON */ 3675f62a964SEmmanuel Vadot pinctrl-names = "default"; 3685f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_uart3>; 3695f62a964SEmmanuel Vadot status = "okay"; 3705f62a964SEmmanuel Vadot}; 3715f62a964SEmmanuel Vadot 3725f62a964SEmmanuel Vadot&uart4 { /* OSM-S UART_B */ 3735f62a964SEmmanuel Vadot pinctrl-names = "default"; 3745f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_uart4>; 3755f62a964SEmmanuel Vadot}; 3765f62a964SEmmanuel Vadot 3775f62a964SEmmanuel Vadot&usb3_0 { /* OSM-S USB_A */ 3785f62a964SEmmanuel Vadot pinctrl-names = "default"; 3795f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_usb1_oc>; 3805f62a964SEmmanuel Vadot fsl,over-current-active-low; 3815f62a964SEmmanuel Vadot}; 3825f62a964SEmmanuel Vadot 3835f62a964SEmmanuel Vadot&usb3_1 { /* OSM-S USB_B */ 3845f62a964SEmmanuel Vadot pinctrl-names = "default"; 3855f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_usb2_oc>; 3865f62a964SEmmanuel Vadot fsl,over-current-active-low; 3875f62a964SEmmanuel Vadot}; 3885f62a964SEmmanuel Vadot 3895f62a964SEmmanuel Vadot&usdhc1 { /* eMMC */ 3905f62a964SEmmanuel Vadot pinctrl-names = "default", "state_100mhz", "state_200mhz"; 3915f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc1>; 3925f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_usdhc1_100mhz>; 3935f62a964SEmmanuel Vadot pinctrl-2 = <&pinctrl_usdhc1_200mhz>; 3945f62a964SEmmanuel Vadot vmmc-supply = <®_vdd_3v3>; 3955f62a964SEmmanuel Vadot vqmmc-supply = <®_vdd_1v8>; 3965f62a964SEmmanuel Vadot bus-width = <8>; 3975f62a964SEmmanuel Vadot non-removable; 3985f62a964SEmmanuel Vadot status = "okay"; 3995f62a964SEmmanuel Vadot}; 4005f62a964SEmmanuel Vadot 4015f62a964SEmmanuel Vadot&usdhc2 { /* OSM-S SDIO_A */ 4025f62a964SEmmanuel Vadot pinctrl-names = "default", "state_100mhz", "state_200mhz"; 4035f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc2>, <&pinctrl_usdhc2_gpio>, <&pinctrl_usdhc2_wp>; 4045f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_usdhc2_100mhz>, <&pinctrl_usdhc2_gpio>, <&pinctrl_usdhc2_wp>; 4055f62a964SEmmanuel Vadot pinctrl-2 = <&pinctrl_usdhc2_200mhz>, <&pinctrl_usdhc2_gpio>, <&pinctrl_usdhc2_wp>; 4065f62a964SEmmanuel Vadot vmmc-supply = <®_usdhc2_vcc>; 4075f62a964SEmmanuel Vadot vqmmc-supply = <®_nvcc_sd>; 4085f62a964SEmmanuel Vadot cd-gpios = <&gpio2 12 GPIO_ACTIVE_LOW>; 4095f62a964SEmmanuel Vadot}; 4105f62a964SEmmanuel Vadot 4115f62a964SEmmanuel Vadot&usdhc3 { /* OSM-S SDIO_B */ 4125f62a964SEmmanuel Vadot pinctrl-names = "default", "state_100mhz", "state_200mhz"; 4135f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_usdhc3>, <&pinctrl_usdhc3_gpio>; 4145f62a964SEmmanuel Vadot pinctrl-1 = <&pinctrl_usdhc3_100mhz>, <&pinctrl_usdhc3_gpio>; 4155f62a964SEmmanuel Vadot pinctrl-2 = <&pinctrl_usdhc3_200mhz>, <&pinctrl_usdhc3_gpio>; 4165f62a964SEmmanuel Vadot vmmc-supply = <®_usdhc3_vcc>; 4175f62a964SEmmanuel Vadot vqmmc-supply = <®_nvcc_sd>; 4185f62a964SEmmanuel Vadot cd-gpios = <&gpio3 26 GPIO_ACTIVE_LOW>; 4195f62a964SEmmanuel Vadot wp-gpios = <&gpio3 14 GPIO_ACTIVE_HIGH>; 4205f62a964SEmmanuel Vadot}; 4215f62a964SEmmanuel Vadot 4225f62a964SEmmanuel Vadot&wdog1 { 4235f62a964SEmmanuel Vadot pinctrl-names = "default"; 4245f62a964SEmmanuel Vadot pinctrl-0 = <&pinctrl_wdog>; 4255f62a964SEmmanuel Vadot fsl,ext-reset-output; 4265f62a964SEmmanuel Vadot status = "okay"; 4275f62a964SEmmanuel Vadot}; 4285f62a964SEmmanuel Vadot 4295f62a964SEmmanuel Vadot&iomuxc { 4305f62a964SEmmanuel Vadot pinctrl_csi_mck: csimckgrp { 4315f62a964SEmmanuel Vadot fsl,pins = < 4325f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO14__CCM_CLKO1 0x59 /* CAM_MCK */ 4335f62a964SEmmanuel Vadot >; 4345f62a964SEmmanuel Vadot }; 4355f62a964SEmmanuel Vadot 4365f62a964SEmmanuel Vadot pinctrl_ecspi1: ecspi1grp { 4375f62a964SEmmanuel Vadot fsl,pins = < 4385f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI1_MISO__ECSPI1_MISO 0x44 /* SPI_A_SDI_(IO0) */ 4395f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI1_MOSI__ECSPI1_MOSI 0x44 /* SPI_A_SDO_(IO1) */ 4405f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI1_SCLK__ECSPI1_SCLK 0x44 /* SPI_A_SCK */ 4415f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI1_SS0__GPIO5_IO09 0x40 /* SPI_A_CS0# */ 4425f62a964SEmmanuel Vadot >; 4435f62a964SEmmanuel Vadot }; 4445f62a964SEmmanuel Vadot 4455f62a964SEmmanuel Vadot pinctrl_ecspi2: ecspi2grp { 4465f62a964SEmmanuel Vadot fsl,pins = < 4475f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI2_MISO__ECSPI2_MISO 0x44 /* SPI_B_SDI */ 4485f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI2_MOSI__ECSPI2_MOSI 0x44 /* SPI_B_SDO */ 4495f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI2_SCLK__ECSPI2_SCLK 0x44 /* SPI_B_SCK */ 4505f62a964SEmmanuel Vadot MX8MP_IOMUXC_ECSPI2_SS0__GPIO5_IO13 0x40 /* SPI_B_CS0# */ 4515f62a964SEmmanuel Vadot >; 4525f62a964SEmmanuel Vadot }; 4535f62a964SEmmanuel Vadot 4545f62a964SEmmanuel Vadot pinctrl_enet_rgmii: enetrgmiigrp { 4555f62a964SEmmanuel Vadot fsl,pins = < 4565f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD2__ENET1_MDC 0x3 /* ETH_MDC */ 4575f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD3__ENET1_MDIO 0x3 /* ETH_MDIO */ 4585f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD4__ENET1_RGMII_RD0 0x91 /* ETH_A_(S)(R)(G)MII_RXD0 */ 4595f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD5__ENET1_RGMII_RD1 0x91 /* ETH_A_(S)(R)(G)MII_RXD1 */ 4605f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD6__ENET1_RGMII_RD2 0x91 /* ETH_A_(R)(G)MII_RXD2 */ 4615f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD7__ENET1_RGMII_RD3 0x91 /* ETH_A_(R)(G)MII_RXD3 */ 4625f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXC__ENET1_RGMII_RXC 0x91 /* ETH_A_(R)(G)MII_RX_CLK */ 4635f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXFS__ENET1_RGMII_RX_CTL 0x91 /* ETH_A_(R)(G)MII_RX_DV(_ER) */ 4645f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD0__ENET1_RGMII_TD0 0x1f /* ETH_A_(S)(R)(G)MII_TXD0 */ 4655f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD1__ENET1_RGMII_TD1 0x1f /* ETH_A_(S)(R)(G)MII_TXD1 */ 4665f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD2__ENET1_RGMII_TD2 0x1f /* ETH_A_(S)(R)(G)MII_TXD2 */ 4675f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD3__ENET1_RGMII_TD3 0x1f /* ETH_A_(S)(R)(G)MII_TXD3 */ 4685f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD5__ENET1_RGMII_TXC 0x1f /* ETH_A_(R)(G)MII_TX_CLK */ 4695f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD4__ENET1_RGMII_TX_CTL 0x1f /* ETH_A_(R)(G)MII_TX_EN(_ER) */ 4705f62a964SEmmanuel Vadot >; 4715f62a964SEmmanuel Vadot }; 4725f62a964SEmmanuel Vadot 4735f62a964SEmmanuel Vadot pinctrl_eqos_rgmii: eqosrgmiigrp { 4745f62a964SEmmanuel Vadot fsl,pins = < 4755f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_MDC__ENET_QOS_MDC 0x3 /* ETH_B_MDC */ 4765f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_MDIO__ENET_QOS_MDIO 0x3 /* ETH_B_MDIO */ 4775f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RD0__ENET_QOS_RGMII_RD0 0x91 /* ETH_B_(S)(R)(G)MII_RXD0 */ 4785f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RD1__ENET_QOS_RGMII_RD1 0x91 /* ETH_B_(S)(R)(G)MII_RXD1 */ 4795f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RD2__ENET_QOS_RGMII_RD2 0x91 /* ETH_B_(R)(G)MII_RXD2 */ 4805f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RD3__ENET_QOS_RGMII_RD3 0x91 /* ETH_B_(R)(G)MII_RXD3 */ 4815f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RXC__CCM_ENET_QOS_CLOCK_GENERATE_RX_CLK 0x91 /* ETH_B_(R)(G)MII_RX_CLK */ 4825f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_RX_CTL__ENET_QOS_RGMII_RX_CTL 0x91 /* ETH_B_(R)(G)MII_RX_DV(_ER) */ 4835f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TD0__ENET_QOS_RGMII_TD0 0x1f /* ETH_B_(S)(R)(G)MII_TXD0 */ 4845f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TD1__ENET_QOS_RGMII_TD1 0x1f /* ETH_B_(S)(R)(G)MII_TXD1 */ 4855f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TD2__ENET_QOS_RGMII_TD2 0x1f /* ETH_B_(S)(R)(G)MII_TXD2 */ 4865f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TD3__ENET_QOS_RGMII_TD3 0x1f /* ETH_B_(S)(R)(G)MII_TXD3 */ 4875f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TXC__CCM_ENET_QOS_CLOCK_GENERATE_TX_CLK 0x1f /* ETH_B_(R)(G)MII_TX_CLK */ 4885f62a964SEmmanuel Vadot MX8MP_IOMUXC_ENET_TX_CTL__ENET_QOS_RGMII_TX_CTL 0x1f /* ETH_B_(R)(G)MII_TX_EN(_ER) */ 4895f62a964SEmmanuel Vadot >; 4905f62a964SEmmanuel Vadot }; 4915f62a964SEmmanuel Vadot 4925f62a964SEmmanuel Vadot pinctrl_flexcan1: flexcan1grp { 4935f62a964SEmmanuel Vadot fsl,pins = < 4945f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_RXC__CAN1_TX 0x154 /* CAN_A_TX */ 4955f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_TXC__CAN1_RX 0x154 /* CAN_A_RX */ 4965f62a964SEmmanuel Vadot >; 4975f62a964SEmmanuel Vadot }; 4985f62a964SEmmanuel Vadot 4995f62a964SEmmanuel Vadot pinctrl_flexcan2: flexcan2grp { 5005f62a964SEmmanuel Vadot fsl,pins = < 5015f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_TXD0__CAN2_TX 0x154 /* CAN_B_TX */ 5025f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_MCLK__CAN2_RX 0x154 /* CAN_B_RX */ 5035f62a964SEmmanuel Vadot >; 5045f62a964SEmmanuel Vadot }; 5055f62a964SEmmanuel Vadot 5065f62a964SEmmanuel Vadot pinctrl_gpio1: gpio1grp { 5075f62a964SEmmanuel Vadot fsl,pins = < 5085f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO00__GPIO1_IO00 0x19 /* GPIO_A_0 */ 5095f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO01__GPIO1_IO01 0x19 /* GPIO_A_1 */ 5105f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO05__GPIO1_IO05 0x19 /* GPIO_A_2 */ 5115f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO06__GPIO1_IO06 0x19 /* GPIO_A_3 */ 5125f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO07__GPIO1_IO07 0x19 /* GPIO_A_4 */ 5135f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO08__GPIO1_IO08 0x19 /* GPIO_A_5 */ 5145f62a964SEmmanuel Vadot >; 5155f62a964SEmmanuel Vadot }; 5165f62a964SEmmanuel Vadot 5175f62a964SEmmanuel Vadot pinctrl_gpio3: gpio3grp { 5185f62a964SEmmanuel Vadot fsl,pins = < 5195f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE0_B__GPIO3_IO01 0x19 /* GPIO_A_7 */ 5205f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXFS__GPIO3_IO19 0x19 /* GPIO_B_0 */ 5215f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXC__GPIO3_IO20 0x19 /* GPIO_B_1 */ 5225f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXD1__GPIO3_IO22 0x19 /* BOOT_SEL0# */ 5235f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXD2__GPIO3_IO23 0x19 /* BOOT_SEL1# */ 5245f62a964SEmmanuel Vadot >; 5255f62a964SEmmanuel Vadot }; 5265f62a964SEmmanuel Vadot 5275f62a964SEmmanuel Vadot pinctrl_gpio4: gpio4grp { 5285f62a964SEmmanuel Vadot fsl,pins = < 5295f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXFS__GPIO4_IO00 0x19 /* GPIO_B_5 */ 5305f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXC__GPIO4_IO01 0x19 /* GPIO_B_6 */ 5315f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD0__GPIO4_IO02 0x19 /* GPIO_B_7 */ 5325f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_RXD1__GPIO4_IO03 0x19 /* GPIO_C_0 */ 5335f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD6__GPIO4_IO18 0x19 /* GPIO_B_3 */ 5345f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_TXD7__GPIO4_IO19 0x19 /* GPIO_B_4 */ 5355f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI1_MCLK__GPIO4_IO20 0x19 /* GPIO_B_2 */ 5365f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_RXFS__GPIO4_IO21 0x19 /* GPIO_A_6 */ 5375f62a964SEmmanuel Vadot >; 5385f62a964SEmmanuel Vadot }; 5395f62a964SEmmanuel Vadot 5405f62a964SEmmanuel Vadot pinctrl_hdmi: hdmigrp { 5415f62a964SEmmanuel Vadot fsl,pins = < 5425f62a964SEmmanuel Vadot MX8MP_IOMUXC_HDMI_HPD__HDMIMIX_HDMI_HPD 0x19 /* HDMI_HPD */ 5435f62a964SEmmanuel Vadot >; 5445f62a964SEmmanuel Vadot }; 5455f62a964SEmmanuel Vadot 5465f62a964SEmmanuel Vadot pinctrl_i2c1: i2c1grp { 5475f62a964SEmmanuel Vadot fsl,pins = < 5485f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C1_SCL__I2C1_SCL 0x40000084 /* I2C_A_SCL */ 5495f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C1_SDA__I2C1_SDA 0x40000084 /* I2C_A_SDA */ 5505f62a964SEmmanuel Vadot >; 5515f62a964SEmmanuel Vadot }; 5525f62a964SEmmanuel Vadot 5535f62a964SEmmanuel Vadot pinctrl_i2c1_gpio: i2c1gpiogrp { 5545f62a964SEmmanuel Vadot fsl,pins = < 5555f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C1_SCL__GPIO5_IO14 0x84 /* I2C_A_SCL */ 5565f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C1_SDA__GPIO5_IO15 0x84 /* I2C_A_SDA */ 5575f62a964SEmmanuel Vadot >; 5585f62a964SEmmanuel Vadot }; 5595f62a964SEmmanuel Vadot 5605f62a964SEmmanuel Vadot pinctrl_i2c2: i2c2grp { 5615f62a964SEmmanuel Vadot fsl,pins = < 5625f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C2_SCL__I2C2_SCL 0x40000084 /* I2C_B_SCL */ 5635f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C2_SDA__I2C2_SDA 0x40000084 /* I2C_B_SDA */ 5645f62a964SEmmanuel Vadot >; 5655f62a964SEmmanuel Vadot }; 5665f62a964SEmmanuel Vadot 5675f62a964SEmmanuel Vadot pinctrl_i2c2_gpio: i2c2gpiogrp { 5685f62a964SEmmanuel Vadot fsl,pins = < 5695f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C2_SCL__GPIO5_IO16 0x84 /* I2C_B_SCL */ 5705f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C2_SDA__GPIO5_IO17 0x84 /* I2C_B_SDA */ 5715f62a964SEmmanuel Vadot >; 5725f62a964SEmmanuel Vadot }; 5735f62a964SEmmanuel Vadot 5745f62a964SEmmanuel Vadot pinctrl_i2c3: i2c3grp { 5755f62a964SEmmanuel Vadot fsl,pins = < 5765f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C3_SCL__I2C3_SCL 0x40000084 /* PCIe_SMCLK */ 5775f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C3_SDA__I2C3_SDA 0x40000084 /* PCIe_SMDAT */ 5785f62a964SEmmanuel Vadot >; 5795f62a964SEmmanuel Vadot }; 5805f62a964SEmmanuel Vadot 5815f62a964SEmmanuel Vadot pinctrl_i2c3_gpio: i2c3gpiogrp { 5825f62a964SEmmanuel Vadot fsl,pins = < 5835f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C3_SCL__GPIO5_IO18 0x84 /* PCIe_SMCLK */ 5845f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C3_SDA__GPIO5_IO19 0x84 /* PCIe_SMDAT */ 5855f62a964SEmmanuel Vadot >; 5865f62a964SEmmanuel Vadot }; 5875f62a964SEmmanuel Vadot 5885f62a964SEmmanuel Vadot pinctrl_i2c4: i2c4grp { 5895f62a964SEmmanuel Vadot fsl,pins = < 5905f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C4_SCL__I2C4_SCL 0x40000084 /* I2C_CAM_SCL/CSI_TX_P */ 5915f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C4_SDA__I2C4_SDA 0x40000084 /* I2C_CAM_SDA/CSI_TX_N */ 5925f62a964SEmmanuel Vadot >; 5935f62a964SEmmanuel Vadot }; 5945f62a964SEmmanuel Vadot 5955f62a964SEmmanuel Vadot pinctrl_i2c4_gpio: i2c4gpiogrp { 5965f62a964SEmmanuel Vadot fsl,pins = < 5975f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C4_SCL__GPIO5_IO20 0x84 /* I2C_CAM_SCL/CSI_TX_P */ 5985f62a964SEmmanuel Vadot MX8MP_IOMUXC_I2C4_SDA__GPIO5_IO21 0x84 /* I2C_CAM_SDA/CSI_TX_N */ 5995f62a964SEmmanuel Vadot >; 6005f62a964SEmmanuel Vadot }; 6015f62a964SEmmanuel Vadot 6025f62a964SEmmanuel Vadot pinctrl_i2c5: i2c5grp { 6035f62a964SEmmanuel Vadot fsl,pins = < 6045f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXD0__I2C5_SCL 0x40000084 6055f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_MCLK__I2C5_SDA 0x40000084 6065f62a964SEmmanuel Vadot >; 6075f62a964SEmmanuel Vadot }; 6085f62a964SEmmanuel Vadot 6095f62a964SEmmanuel Vadot pinctrl_i2c5_gpio: i2c5gpiogrp { 6105f62a964SEmmanuel Vadot fsl,pins = < 6115f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXD0__GPIO3_IO21 0x84 6125f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_MCLK__GPIO3_IO25 0x84 6135f62a964SEmmanuel Vadot >; 6145f62a964SEmmanuel Vadot }; 6155f62a964SEmmanuel Vadot 6165f62a964SEmmanuel Vadot pinctrl_pcie: pciegrp { 6175f62a964SEmmanuel Vadot fsl,pins = < 6185f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART4_RXD__PCIE_CLKREQ_B 0x19 /* PCIe_CLKREQ# */ 6195f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE1_B__GPIO3_IO02 0x19 /* PCIe_A_PERST# */ 6205f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_ALE__GPIO3_IO00 0x19 /* PCIe_WAKE# */ 6215f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_READY_B__GPIO3_IO16 0x19 /* PCIe_SM_ALERT */ 6225f62a964SEmmanuel Vadot >; 6235f62a964SEmmanuel Vadot }; 6245f62a964SEmmanuel Vadot 6255f62a964SEmmanuel Vadot pinctrl_pmic: pmicgrp { 6265f62a964SEmmanuel Vadot fsl,pins = < 6275f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO03__GPIO1_IO03 0x1c0 6285f62a964SEmmanuel Vadot >; 6295f62a964SEmmanuel Vadot }; 6305f62a964SEmmanuel Vadot 6315f62a964SEmmanuel Vadot pinctrl_pwm1: pwm1grp { 6325f62a964SEmmanuel Vadot fsl,pins = < 6335f62a964SEmmanuel Vadot MX8MP_IOMUXC_SPDIF_EXT_CLK__PWM1_OUT 0x6 /* PWM_0 */ 6345f62a964SEmmanuel Vadot >; 6355f62a964SEmmanuel Vadot }; 6365f62a964SEmmanuel Vadot 6375f62a964SEmmanuel Vadot pinctrl_pwm2: pwm2grp { 6385f62a964SEmmanuel Vadot fsl,pins = < 6395f62a964SEmmanuel Vadot MX8MP_IOMUXC_SPDIF_RX__PWM2_OUT 0x6 /* PWM_1 */ 6405f62a964SEmmanuel Vadot >; 6415f62a964SEmmanuel Vadot }; 6425f62a964SEmmanuel Vadot 6435f62a964SEmmanuel Vadot pinctrl_pwm3: pwm3grp { 6445f62a964SEmmanuel Vadot fsl,pins = < 6455f62a964SEmmanuel Vadot MX8MP_IOMUXC_SPDIF_TX__PWM3_OUT 0x6 /* PWM_2 */ 6465f62a964SEmmanuel Vadot >; 6475f62a964SEmmanuel Vadot }; 6485f62a964SEmmanuel Vadot 6495f62a964SEmmanuel Vadot pinctrl_reg_usb1_vbus: regusb1vbusgrp { 6505f62a964SEmmanuel Vadot fsl,pins = < 6515f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO12__GPIO1_IO12 0x19 /* USB_A_EN */ 6525f62a964SEmmanuel Vadot >; 6535f62a964SEmmanuel Vadot }; 6545f62a964SEmmanuel Vadot 6555f62a964SEmmanuel Vadot pinctrl_reg_usb2_vbus: regusb2vbusgrp { 6565f62a964SEmmanuel Vadot fsl,pins = < 6575f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO09__GPIO1_IO09 0x19 /* USB_B_EN */ 6585f62a964SEmmanuel Vadot >; 6595f62a964SEmmanuel Vadot }; 6605f62a964SEmmanuel Vadot 6615f62a964SEmmanuel Vadot pinctrl_reg_usdhc2_vcc: regusdhc2vccgrp { 6625f62a964SEmmanuel Vadot fsl,pins = < 6635f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_RESET_B__GPIO2_IO19 0x19 /* SDIO_A_PWR_EN */ 6645f62a964SEmmanuel Vadot >; 6655f62a964SEmmanuel Vadot }; 6665f62a964SEmmanuel Vadot 6675f62a964SEmmanuel Vadot pinctrl_reg_usdhc3_vcc: regusdhc3vccgrp { 6685f62a964SEmmanuel Vadot fsl,pins = < 6695f62a964SEmmanuel Vadot MX8MP_IOMUXC_HDMI_DDC_SDA__GPIO3_IO27 0x19 /* SDIO_B_PWR_EN */ 6705f62a964SEmmanuel Vadot >; 6715f62a964SEmmanuel Vadot }; 6725f62a964SEmmanuel Vadot 6735f62a964SEmmanuel Vadot pinctrl_reg_vdd_carrier: regvddcarriergrp { 6745f62a964SEmmanuel Vadot fsl,pins = < 6755f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_RXC__GPIO4_IO29 0x19 /* CARRIER_PWR_EN */ 6765f62a964SEmmanuel Vadot >; 6775f62a964SEmmanuel Vadot }; 6785f62a964SEmmanuel Vadot 6795f62a964SEmmanuel Vadot pinctrl_rtc: rtcgrp { 6805f62a964SEmmanuel Vadot fsl,pins = < 6815f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI5_RXD3__GPIO3_IO24 0x1c0 6825f62a964SEmmanuel Vadot >; 6835f62a964SEmmanuel Vadot }; 6845f62a964SEmmanuel Vadot 6855f62a964SEmmanuel Vadot pinctrl_sai3: sai3grp { 6865f62a964SEmmanuel Vadot fsl,pins = < 6875f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_RXD__AUDIOMIX_SAI3_RX_DATA00 0xd6 /* I2S_A_DATA_IN */ 6885f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_TXD__AUDIOMIX_SAI3_TX_DATA00 0xd6 /* I2S_A_DATA_OUT */ 6895f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_RXFS__AUDIOMIX_SAI3_RX_DATA01 0xd6 /* I2S_B_DATA_IN */ 6905f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_TXFS__AUDIOMIX_SAI3_TX_DATA01 0xd6 /* I2S_B_DATA_OUT */ 6915f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_MCLK__AUDIOMIX_SAI3_MCLK 0xd6 /* I2S_MCLK */ 6925f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA01__AUDIOMIX_SAI3_TX_SYNC 0xd6 /* I2S_LRCLK */ 6935f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI3_TXC__AUDIOMIX_SAI3_TX_BCLK 0xd6 /* I2S_BITCLK */ 6945f62a964SEmmanuel Vadot >; 6955f62a964SEmmanuel Vadot }; 6965f62a964SEmmanuel Vadot 6975f62a964SEmmanuel Vadot pinctrl_uart1: uart1grp { 6985f62a964SEmmanuel Vadot fsl,pins = < 6995f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART1_RXD__UART1_DCE_RX 0x140 /* UART_A_RX */ 7005f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART1_TXD__UART1_DCE_TX 0x140 /* UART_A_TX */ 7015f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_RXD0__UART1_DCE_RTS 0x140 /* UART_A_CTS */ 7025f62a964SEmmanuel Vadot MX8MP_IOMUXC_SAI2_TXFS__UART1_DCE_CTS 0x140 /* UART_A_RTS */ 7035f62a964SEmmanuel Vadot >; 7045f62a964SEmmanuel Vadot }; 7055f62a964SEmmanuel Vadot 7065f62a964SEmmanuel Vadot pinctrl_uart2: uart2grp { 7075f62a964SEmmanuel Vadot fsl,pins = < 7085f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART2_RXD__UART2_DCE_RX 0x140 /* UART_C_RX */ 7095f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART2_TXD__UART2_DCE_TX 0x140 /* UART_C_TX */ 7105f62a964SEmmanuel Vadot >; 7115f62a964SEmmanuel Vadot }; 7125f62a964SEmmanuel Vadot 7135f62a964SEmmanuel Vadot pinctrl_uart3: uart3grp { 7145f62a964SEmmanuel Vadot fsl,pins = < 7155f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART3_RXD__UART3_DCE_RX 0x140 /* UART_CON_RX */ 7165f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART3_TXD__UART3_DCE_TX 0x140 /* UART_CON_TX */ 7175f62a964SEmmanuel Vadot >; 7185f62a964SEmmanuel Vadot }; 7195f62a964SEmmanuel Vadot 7205f62a964SEmmanuel Vadot pinctrl_uart4: uart4grp { 7215f62a964SEmmanuel Vadot fsl,pins = < 7225f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA00__UART4_DCE_RX 0x140 /* UART_B_RX */ 7235f62a964SEmmanuel Vadot MX8MP_IOMUXC_UART4_TXD__UART4_DCE_TX 0x140 /* UART_B_TX */ 7245f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA03__UART4_DCE_RTS 0x140 /* UART_B_CTS */ 7255f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA02__UART4_DCE_CTS 0x140 /* UART_B_RTS */ 7265f62a964SEmmanuel Vadot >; 7275f62a964SEmmanuel Vadot }; 7285f62a964SEmmanuel Vadot 7295f62a964SEmmanuel Vadot pinctrl_usb1_id: usb1idgrp { 7305f62a964SEmmanuel Vadot fsl,pins = < 7315f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO10__GPIO1_IO10 0x1c4 /* USB_A_ID */ 7325f62a964SEmmanuel Vadot >; 7335f62a964SEmmanuel Vadot }; 7345f62a964SEmmanuel Vadot 7355f62a964SEmmanuel Vadot pinctrl_usb1_oc: usb1ocgrp { 7365f62a964SEmmanuel Vadot fsl,pins = < 7375f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO13__USB1_OTG_OC 0x1c0 /* USB_A_OC# */ 7385f62a964SEmmanuel Vadot >; 7395f62a964SEmmanuel Vadot }; 7405f62a964SEmmanuel Vadot 7415f62a964SEmmanuel Vadot pinctrl_usb2_id: usb2idgrp { 7425f62a964SEmmanuel Vadot fsl,pins = < 7435f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO11__USB2_OTG_ID 0x1c4 /* USB_B_ID */ 7445f62a964SEmmanuel Vadot >; 7455f62a964SEmmanuel Vadot }; 7465f62a964SEmmanuel Vadot 7475f62a964SEmmanuel Vadot pinctrl_usb2_oc: usb2ocgrp { 7485f62a964SEmmanuel Vadot fsl,pins = < 7495f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO15__USB2_OTG_OC 0x1c0 /* USB_B_OC# */ 7505f62a964SEmmanuel Vadot >; 7515f62a964SEmmanuel Vadot }; 7525f62a964SEmmanuel Vadot 7535f62a964SEmmanuel Vadot pinctrl_usdhc1: usdhc1grp { 7545f62a964SEmmanuel Vadot fsl,pins = < 7555f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CLK__USDHC1_CLK 0x190 7565f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CMD__USDHC1_CMD 0x1d0 7575f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA0__USDHC1_DATA0 0x1d0 7585f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA1__USDHC1_DATA1 0x1d0 7595f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA2__USDHC1_DATA2 0x1d0 7605f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA3__USDHC1_DATA3 0x1d0 7615f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA4__USDHC1_DATA4 0x1d0 7625f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA5__USDHC1_DATA5 0x1d0 7635f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA6__USDHC1_DATA6 0x1d0 7645f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA7__USDHC1_DATA7 0x1d0 7655f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_RESET_B__USDHC1_RESET_B 0x141 7665f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_STROBE__USDHC1_STROBE 0x190 7675f62a964SEmmanuel Vadot >; 7685f62a964SEmmanuel Vadot }; 7695f62a964SEmmanuel Vadot 7705f62a964SEmmanuel Vadot pinctrl_usdhc1_100mhz: usdhc1-100mhzgrp { 7715f62a964SEmmanuel Vadot fsl,pins = < 7725f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CLK__USDHC1_CLK 0x194 7735f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CMD__USDHC1_CMD 0x1d4 7745f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA0__USDHC1_DATA0 0x1d4 7755f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA1__USDHC1_DATA1 0x1d4 7765f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA2__USDHC1_DATA2 0x1d4 7775f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA3__USDHC1_DATA3 0x1d4 7785f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA4__USDHC1_DATA4 0x1d4 7795f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA5__USDHC1_DATA5 0x1d4 7805f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA6__USDHC1_DATA6 0x1d4 7815f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA7__USDHC1_DATA7 0x1d4 7825f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_RESET_B__USDHC1_RESET_B 0x141 7835f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_STROBE__USDHC1_STROBE 0x194 7845f62a964SEmmanuel Vadot >; 7855f62a964SEmmanuel Vadot }; 7865f62a964SEmmanuel Vadot 7875f62a964SEmmanuel Vadot pinctrl_usdhc1_200mhz: usdhc1-200mhzgrp { 7885f62a964SEmmanuel Vadot fsl,pins = < 7895f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CLK__USDHC1_CLK 0x196 7905f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_CMD__USDHC1_CMD 0x1d6 7915f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA0__USDHC1_DATA0 0x1d6 7925f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA1__USDHC1_DATA1 0x1d6 7935f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA2__USDHC1_DATA2 0x1d6 7945f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA3__USDHC1_DATA3 0x1d6 7955f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA4__USDHC1_DATA4 0x1d6 7965f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA5__USDHC1_DATA5 0x1d6 7975f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA6__USDHC1_DATA6 0x1d6 7985f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_DATA7__USDHC1_DATA7 0x1d6 7995f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_RESET_B__USDHC1_RESET_B 0x141 8005f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD1_STROBE__USDHC1_STROBE 0x196 8015f62a964SEmmanuel Vadot >; 8025f62a964SEmmanuel Vadot }; 8035f62a964SEmmanuel Vadot 8045f62a964SEmmanuel Vadot pinctrl_usdhc2: usdhc2grp { 8055f62a964SEmmanuel Vadot fsl,pins = < 8065f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CLK__USDHC2_CLK 0x190 /* SDIO_A_CLK */ 8075f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CMD__USDHC2_CMD 0x1d0 /* SDIO_A_CMD */ 8085f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA0__USDHC2_DATA0 0x1d0 /* SDIO_A_D0 */ 8095f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA1__USDHC2_DATA1 0x1d0 /* SDIO_A_D1 */ 8105f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA2__USDHC2_DATA2 0x1d0 /* SDIO_A_D2 */ 8115f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA3__USDHC2_DATA3 0x1d0 /* SDIO_A_D3 */ 812*8ccc0d23SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO04__USDHC2_VSELECT 0x400001d0 8135f62a964SEmmanuel Vadot >; 8145f62a964SEmmanuel Vadot }; 8155f62a964SEmmanuel Vadot 8165f62a964SEmmanuel Vadot pinctrl_usdhc2_100mhz: usdhc2-100mhzgrp { 8175f62a964SEmmanuel Vadot fsl,pins = < 8185f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CLK__USDHC2_CLK 0x194 /* SDIO_A_CLK */ 8195f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CMD__USDHC2_CMD 0x1d4 /* SDIO_A_CMD */ 8205f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA0__USDHC2_DATA0 0x1d4 /* SDIO_A_D0 */ 8215f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA1__USDHC2_DATA1 0x1d4 /* SDIO_A_D1 */ 8225f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA2__USDHC2_DATA2 0x1d4 /* SDIO_A_D2 */ 8235f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA3__USDHC2_DATA3 0x1d4 /* SDIO_A_D3 */ 824*8ccc0d23SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO04__USDHC2_VSELECT 0x400001d0 8255f62a964SEmmanuel Vadot >; 8265f62a964SEmmanuel Vadot }; 8275f62a964SEmmanuel Vadot 8285f62a964SEmmanuel Vadot pinctrl_usdhc2_200mhz: usdhc2-200mhzgrp { 8295f62a964SEmmanuel Vadot fsl,pins = < 8305f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CLK__USDHC2_CLK 0x196 /* SDIO_A_CLK */ 8315f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CMD__USDHC2_CMD 0x1d6 /* SDIO_A_CMD */ 8325f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA0__USDHC2_DATA0 0x1d6 /* SDIO_A_D0 */ 8335f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA1__USDHC2_DATA1 0x1d6 /* SDIO_A_D1 */ 8345f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA2__USDHC2_DATA2 0x1d6 /* SDIO_A_D2 */ 8355f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_DATA3__USDHC2_DATA3 0x1d6 /* SDIO_A_D3 */ 836*8ccc0d23SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO04__USDHC2_VSELECT 0x400001d0 8375f62a964SEmmanuel Vadot >; 8385f62a964SEmmanuel Vadot }; 8395f62a964SEmmanuel Vadot 8405f62a964SEmmanuel Vadot pinctrl_usdhc2_gpio: usdhc2gpiogrp { 8415f62a964SEmmanuel Vadot fsl,pins = < 8425f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_CD_B__GPIO2_IO12 0x19 /* SDIO_A_CD# */ 8435f62a964SEmmanuel Vadot >; 8445f62a964SEmmanuel Vadot }; 8455f62a964SEmmanuel Vadot 8465f62a964SEmmanuel Vadot pinctrl_usdhc2_wp: usdhc2wpgrp { 8475f62a964SEmmanuel Vadot fsl,pins = < 8485f62a964SEmmanuel Vadot MX8MP_IOMUXC_SD2_WP__USDHC2_WP 0x400000d6 /* SDIO_A_WP */ 8495f62a964SEmmanuel Vadot >; 8505f62a964SEmmanuel Vadot }; 8515f62a964SEmmanuel Vadot 8525f62a964SEmmanuel Vadot pinctrl_usdhc3: usdhc3grp { 8535f62a964SEmmanuel Vadot fsl,pins = < 8545f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WE_B__USDHC3_CLK 0x190 /* SDIO_B_CLK */ 8555f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WP_B__USDHC3_CMD 0x1d0 /* SDIO_B_CMD */ 8565f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA04__USDHC3_DATA0 0x1d0 /* SDIO_B_D0 */ 8575f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA05__USDHC3_DATA1 0x1d0 /* SDIO_B_D1 */ 8585f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA06__USDHC3_DATA2 0x1d0 /* SDIO_B_D2 */ 8595f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA07__USDHC3_DATA3 0x1d0 /* SDIO_B_D3 */ 8605f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_RE_B__USDHC3_DATA4 0x1d0 /* SDIO_B_D4 */ 8615f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE2_B__USDHC3_DATA5 0x1d0 /* SDIO_B_D5 */ 8625f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE3_B__USDHC3_DATA6 0x1d0 /* SDIO_B_D6 */ 8635f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CLE__USDHC3_DATA7 0x1d0 /* SDIO_B_D7 */ 8645f62a964SEmmanuel Vadot >; 8655f62a964SEmmanuel Vadot }; 8665f62a964SEmmanuel Vadot 8675f62a964SEmmanuel Vadot pinctrl_usdhc3_100mhz: usdhc3-100mhzgrp { 8685f62a964SEmmanuel Vadot fsl,pins = < 8695f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WE_B__USDHC3_CLK 0x194 /* SDIO_B_CLK */ 8705f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WP_B__USDHC3_CMD 0x1d4 /* SDIO_B_CMD */ 8715f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA04__USDHC3_DATA0 0x1d4 /* SDIO_B_D0 */ 8725f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA05__USDHC3_DATA1 0x1d4 /* SDIO_B_D1 */ 8735f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA06__USDHC3_DATA2 0x1d4 /* SDIO_B_D2 */ 8745f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA07__USDHC3_DATA3 0x1d4 /* SDIO_B_D3 */ 8755f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_RE_B__USDHC3_DATA4 0x1d4 /* SDIO_B_D4 */ 8765f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE2_B__USDHC3_DATA5 0x1d4 /* SDIO_B_D5 */ 8775f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE3_B__USDHC3_DATA6 0x1d4 /* SDIO_B_D6 */ 8785f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CLE__USDHC3_DATA7 0x1d4 /* SDIO_B_D7 */ 8795f62a964SEmmanuel Vadot >; 8805f62a964SEmmanuel Vadot }; 8815f62a964SEmmanuel Vadot 8825f62a964SEmmanuel Vadot pinctrl_usdhc3_200mhz: usdhc3-200mhzgrp { 8835f62a964SEmmanuel Vadot fsl,pins = < 8845f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WE_B__USDHC3_CLK 0x196 /* SDIO_B_CLK */ 8855f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_WP_B__USDHC3_CMD 0x1d6 /* SDIO_B_CMD */ 8865f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA04__USDHC3_DATA0 0x1d6 /* SDIO_B_D0 */ 8875f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA05__USDHC3_DATA1 0x1d6 /* SDIO_B_D1 */ 8885f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA06__USDHC3_DATA2 0x1d6 /* SDIO_B_D2 */ 8895f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DATA07__USDHC3_DATA3 0x1d6 /* SDIO_B_D3 */ 8905f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_RE_B__USDHC3_DATA4 0x1d6 /* SDIO_B_D4 */ 8915f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE2_B__USDHC3_DATA5 0x1d6 /* SDIO_B_D5 */ 8925f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CE3_B__USDHC3_DATA6 0x1d6 /* SDIO_B_D6 */ 8935f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_CLE__USDHC3_DATA7 0x1d6 /* SDIO_B_D7 */ 8945f62a964SEmmanuel Vadot >; 8955f62a964SEmmanuel Vadot }; 8965f62a964SEmmanuel Vadot 8975f62a964SEmmanuel Vadot pinctrl_usdhc3_gpio: usdhc3gpiogrp { 8985f62a964SEmmanuel Vadot fsl,pins = < 8995f62a964SEmmanuel Vadot MX8MP_IOMUXC_HDMI_DDC_SCL__GPIO3_IO26 0x19 /* SDIO_B_CD# */ 9005f62a964SEmmanuel Vadot MX8MP_IOMUXC_NAND_DQS__GPIO3_IO14 0x19 /* SDIO_B_WP */ 9015f62a964SEmmanuel Vadot >; 9025f62a964SEmmanuel Vadot }; 9035f62a964SEmmanuel Vadot 9045f62a964SEmmanuel Vadot pinctrl_wdog: wdoggrp { 9055f62a964SEmmanuel Vadot fsl,pins = < 9065f62a964SEmmanuel Vadot MX8MP_IOMUXC_GPIO1_IO02__WDOG1_WDOG_B 0xc6 9075f62a964SEmmanuel Vadot >; 9085f62a964SEmmanuel Vadot }; 9095f62a964SEmmanuel Vadot}; 910