1*b2d2a78aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2*b2d2a78aSEmmanuel Vadot/* 3*b2d2a78aSEmmanuel Vadot * Copyright (C) Protonic Holland 4*b2d2a78aSEmmanuel Vadot * Author: David Jander <david@protonic.nl> 5*b2d2a78aSEmmanuel Vadot */ 6*b2d2a78aSEmmanuel Vadot/dts-v1/; 7*b2d2a78aSEmmanuel Vadot 8*b2d2a78aSEmmanuel Vadot#include "stm32mp151.dtsi" 9*b2d2a78aSEmmanuel Vadot#include "stm32mp15xc.dtsi" 10*b2d2a78aSEmmanuel Vadot#include "stm32mp15-pinctrl.dtsi" 11*b2d2a78aSEmmanuel Vadot#include "stm32mp15xxaa-pinctrl.dtsi" 12*b2d2a78aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 13*b2d2a78aSEmmanuel Vadot#include <dt-bindings/input/input.h> 14*b2d2a78aSEmmanuel Vadot#include <dt-bindings/leds/common.h> 15*b2d2a78aSEmmanuel Vadot 16*b2d2a78aSEmmanuel Vadot/ { 17*b2d2a78aSEmmanuel Vadot model = "Protonic MECT1S"; 18*b2d2a78aSEmmanuel Vadot compatible = "prt,mect1s", "st,stm32mp151"; 19*b2d2a78aSEmmanuel Vadot 20*b2d2a78aSEmmanuel Vadot chosen { 21*b2d2a78aSEmmanuel Vadot stdout-path = "serial0:1500000n8"; 22*b2d2a78aSEmmanuel Vadot }; 23*b2d2a78aSEmmanuel Vadot 24*b2d2a78aSEmmanuel Vadot aliases { 25*b2d2a78aSEmmanuel Vadot serial0 = &uart4; 26*b2d2a78aSEmmanuel Vadot ethernet0 = ðernet0; 27*b2d2a78aSEmmanuel Vadot ethernet1 = ðernet1; 28*b2d2a78aSEmmanuel Vadot ethernet2 = ðernet2; 29*b2d2a78aSEmmanuel Vadot ethernet3 = ðernet3; 30*b2d2a78aSEmmanuel Vadot ethernet4 = ðernet4; 31*b2d2a78aSEmmanuel Vadot }; 32*b2d2a78aSEmmanuel Vadot 33*b2d2a78aSEmmanuel Vadot v3v3: regulator-v3v3 { 34*b2d2a78aSEmmanuel Vadot compatible = "regulator-fixed"; 35*b2d2a78aSEmmanuel Vadot regulator-name = "v3v3"; 36*b2d2a78aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 37*b2d2a78aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 38*b2d2a78aSEmmanuel Vadot }; 39*b2d2a78aSEmmanuel Vadot 40*b2d2a78aSEmmanuel Vadot v5v: regulator-v5v { 41*b2d2a78aSEmmanuel Vadot compatible = "regulator-fixed"; 42*b2d2a78aSEmmanuel Vadot regulator-name = "v5v"; 43*b2d2a78aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 44*b2d2a78aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 45*b2d2a78aSEmmanuel Vadot regulator-always-on; 46*b2d2a78aSEmmanuel Vadot }; 47*b2d2a78aSEmmanuel Vadot 48*b2d2a78aSEmmanuel Vadot led { 49*b2d2a78aSEmmanuel Vadot compatible = "gpio-leds"; 50*b2d2a78aSEmmanuel Vadot 51*b2d2a78aSEmmanuel Vadot led-0 { 52*b2d2a78aSEmmanuel Vadot color = <LED_COLOR_ID_RED>; 53*b2d2a78aSEmmanuel Vadot function = LED_FUNCTION_DEBUG; 54*b2d2a78aSEmmanuel Vadot gpios = <&gpioa 13 GPIO_ACTIVE_LOW>; 55*b2d2a78aSEmmanuel Vadot }; 56*b2d2a78aSEmmanuel Vadot 57*b2d2a78aSEmmanuel Vadot led-1 { 58*b2d2a78aSEmmanuel Vadot color = <LED_COLOR_ID_GREEN>; 59*b2d2a78aSEmmanuel Vadot function = LED_FUNCTION_DEBUG; 60*b2d2a78aSEmmanuel Vadot gpios = <&gpioa 14 GPIO_ACTIVE_LOW>; 61*b2d2a78aSEmmanuel Vadot linux,default-trigger = "heartbeat"; 62*b2d2a78aSEmmanuel Vadot }; 63*b2d2a78aSEmmanuel Vadot }; 64*b2d2a78aSEmmanuel Vadot}; 65*b2d2a78aSEmmanuel Vadot 66*b2d2a78aSEmmanuel Vadot&clk_hse { 67*b2d2a78aSEmmanuel Vadot clock-frequency = <24000000>; 68*b2d2a78aSEmmanuel Vadot}; 69*b2d2a78aSEmmanuel Vadot 70*b2d2a78aSEmmanuel Vadot&clk_lse { 71*b2d2a78aSEmmanuel Vadot status = "disabled"; 72*b2d2a78aSEmmanuel Vadot}; 73*b2d2a78aSEmmanuel Vadot 74*b2d2a78aSEmmanuel Vadotðernet0 { 75*b2d2a78aSEmmanuel Vadot status = "okay"; 76*b2d2a78aSEmmanuel Vadot pinctrl-0 = <ðernet0_rmii_pins_a>; 77*b2d2a78aSEmmanuel Vadot pinctrl-1 = <ðernet0_rmii_sleep_pins_a>; 78*b2d2a78aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 79*b2d2a78aSEmmanuel Vadot phy-mode = "rmii"; 80*b2d2a78aSEmmanuel Vadot max-speed = <100>; 81*b2d2a78aSEmmanuel Vadot st,eth-clk-sel; 82*b2d2a78aSEmmanuel Vadot 83*b2d2a78aSEmmanuel Vadot fixed-link { 84*b2d2a78aSEmmanuel Vadot speed = <100>; 85*b2d2a78aSEmmanuel Vadot full-duplex; 86*b2d2a78aSEmmanuel Vadot }; 87*b2d2a78aSEmmanuel Vadot 88*b2d2a78aSEmmanuel Vadot mdio0: mdio { 89*b2d2a78aSEmmanuel Vadot #address-cells = <1>; 90*b2d2a78aSEmmanuel Vadot #size-cells = <0>; 91*b2d2a78aSEmmanuel Vadot compatible = "snps,dwmac-mdio"; 92*b2d2a78aSEmmanuel Vadot }; 93*b2d2a78aSEmmanuel Vadot}; 94*b2d2a78aSEmmanuel Vadot 95*b2d2a78aSEmmanuel Vadot&{ethernet0_rmii_pins_a/pins1} { 96*b2d2a78aSEmmanuel Vadot pinmux = <STM32_PINMUX('B', 12, AF11)>, /* ETH1_RMII_TXD0 */ 97*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('B', 13, AF11)>, /* ETH1_RMII_TXD1 */ 98*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('B', 11, AF11)>, /* ETH1_RMII_TX_EN */ 99*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('A', 2, AF11)>, /* ETH1_MDIO */ 100*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('C', 1, AF11)>; /* ETH1_MDC */ 101*b2d2a78aSEmmanuel Vadot}; 102*b2d2a78aSEmmanuel Vadot 103*b2d2a78aSEmmanuel Vadot&{ethernet0_rmii_pins_a/pins2} { 104*b2d2a78aSEmmanuel Vadot pinmux = <STM32_PINMUX('C', 4, AF11)>, /* ETH1_RMII_RXD0 */ 105*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('C', 5, AF11)>, /* ETH1_RMII_RXD1 */ 106*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('A', 1, AF11)>, /* ETH1_RMII_REF_CLK input */ 107*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('A', 7, AF11)>; /* ETH1_RMII_CRS_DV */ 108*b2d2a78aSEmmanuel Vadot}; 109*b2d2a78aSEmmanuel Vadot 110*b2d2a78aSEmmanuel Vadot&{ethernet0_rmii_sleep_pins_a/pins1} { 111*b2d2a78aSEmmanuel Vadot pinmux = <STM32_PINMUX('B', 12, ANALOG)>, /* ETH1_RMII_TXD0 */ 112*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('B', 13, ANALOG)>, /* ETH1_RMII_TXD1 */ 113*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('B', 11, ANALOG)>, /* ETH1_RMII_TX_EN */ 114*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('C', 4, ANALOG)>, /* ETH1_RMII_RXD0 */ 115*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('C', 5, ANALOG)>, /* ETH1_RMII_RXD1 */ 116*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('A', 1, ANALOG)>, /* ETH1_RMII_REF_CLK */ 117*b2d2a78aSEmmanuel Vadot <STM32_PINMUX('A', 7, ANALOG)>; /* ETH1_RMII_CRS_DV */ 118*b2d2a78aSEmmanuel Vadot}; 119*b2d2a78aSEmmanuel Vadot 120*b2d2a78aSEmmanuel Vadot&mdio0 { 121*b2d2a78aSEmmanuel Vadot /* All this DP83TG720R PHYs can't be probed before switch@0 is 122*b2d2a78aSEmmanuel Vadot * probed so we need to use compatible with PHYid 123*b2d2a78aSEmmanuel Vadot */ 124*b2d2a78aSEmmanuel Vadot /* TI DP83TG720R */ 125*b2d2a78aSEmmanuel Vadot t1_phy0: ethernet-phy@8 { 126*b2d2a78aSEmmanuel Vadot compatible = "ethernet-phy-id2000.a284"; 127*b2d2a78aSEmmanuel Vadot reg = <8>; 128*b2d2a78aSEmmanuel Vadot interrupts-extended = <&gpioi 5 IRQ_TYPE_LEVEL_LOW>; 129*b2d2a78aSEmmanuel Vadot reset-gpios = <&gpioh 13 GPIO_ACTIVE_LOW>; 130*b2d2a78aSEmmanuel Vadot reset-assert-us = <10>; 131*b2d2a78aSEmmanuel Vadot reset-deassert-us = <35>; 132*b2d2a78aSEmmanuel Vadot }; 133*b2d2a78aSEmmanuel Vadot 134*b2d2a78aSEmmanuel Vadot /* TI DP83TG720R */ 135*b2d2a78aSEmmanuel Vadot t1_phy1: ethernet-phy@c { 136*b2d2a78aSEmmanuel Vadot compatible = "ethernet-phy-id2000.a284"; 137*b2d2a78aSEmmanuel Vadot reg = <12>; 138*b2d2a78aSEmmanuel Vadot interrupts-extended = <&gpioj 0 IRQ_TYPE_LEVEL_LOW>; 139*b2d2a78aSEmmanuel Vadot reset-gpios = <&gpioh 14 GPIO_ACTIVE_LOW>; 140*b2d2a78aSEmmanuel Vadot reset-assert-us = <10>; 141*b2d2a78aSEmmanuel Vadot reset-deassert-us = <35>; 142*b2d2a78aSEmmanuel Vadot }; 143*b2d2a78aSEmmanuel Vadot 144*b2d2a78aSEmmanuel Vadot /* TI DP83TG720R */ 145*b2d2a78aSEmmanuel Vadot t1_phy2: ethernet-phy@4 { 146*b2d2a78aSEmmanuel Vadot compatible = "ethernet-phy-id2000.a284"; 147*b2d2a78aSEmmanuel Vadot reg = <4>; 148*b2d2a78aSEmmanuel Vadot interrupts-extended = <&gpioi 7 IRQ_TYPE_LEVEL_LOW>; 149*b2d2a78aSEmmanuel Vadot reset-gpios = <&gpioh 15 GPIO_ACTIVE_LOW>; 150*b2d2a78aSEmmanuel Vadot reset-assert-us = <10>; 151*b2d2a78aSEmmanuel Vadot reset-deassert-us = <35>; 152*b2d2a78aSEmmanuel Vadot }; 153*b2d2a78aSEmmanuel Vadot 154*b2d2a78aSEmmanuel Vadot /* TI DP83TG720R */ 155*b2d2a78aSEmmanuel Vadot t1_phy3: ethernet-phy@d { 156*b2d2a78aSEmmanuel Vadot compatible = "ethernet-phy-id2000.a284"; 157*b2d2a78aSEmmanuel Vadot reg = <13>; 158*b2d2a78aSEmmanuel Vadot interrupts-extended = <&gpioi 15 IRQ_TYPE_LEVEL_LOW>; 159*b2d2a78aSEmmanuel Vadot reset-gpios = <&gpioi 13 GPIO_ACTIVE_LOW>; 160*b2d2a78aSEmmanuel Vadot reset-assert-us = <10000>; 161*b2d2a78aSEmmanuel Vadot reset-deassert-us = <1000>; 162*b2d2a78aSEmmanuel Vadot }; 163*b2d2a78aSEmmanuel Vadot}; 164*b2d2a78aSEmmanuel Vadot 165*b2d2a78aSEmmanuel Vadot&qspi { 166*b2d2a78aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 167*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&qspi_clk_pins_a 168*b2d2a78aSEmmanuel Vadot &qspi_bk1_pins_a 169*b2d2a78aSEmmanuel Vadot &qspi_cs1_pins_a>; 170*b2d2a78aSEmmanuel Vadot pinctrl-1 = <&qspi_clk_sleep_pins_a 171*b2d2a78aSEmmanuel Vadot &qspi_bk1_sleep_pins_a 172*b2d2a78aSEmmanuel Vadot &qspi_cs1_sleep_pins_a>; 173*b2d2a78aSEmmanuel Vadot status = "okay"; 174*b2d2a78aSEmmanuel Vadot 175*b2d2a78aSEmmanuel Vadot flash@0 { 176*b2d2a78aSEmmanuel Vadot compatible = "jedec,spi-nor"; 177*b2d2a78aSEmmanuel Vadot reg = <0>; 178*b2d2a78aSEmmanuel Vadot spi-rx-bus-width = <4>; 179*b2d2a78aSEmmanuel Vadot spi-max-frequency = <1000000>; 180*b2d2a78aSEmmanuel Vadot #address-cells = <1>; 181*b2d2a78aSEmmanuel Vadot #size-cells = <1>; 182*b2d2a78aSEmmanuel Vadot }; 183*b2d2a78aSEmmanuel Vadot}; 184*b2d2a78aSEmmanuel Vadot 185*b2d2a78aSEmmanuel Vadot&{qspi_bk1_pins_a/pins} { 186*b2d2a78aSEmmanuel Vadot /delete-property/ bias-disable; 187*b2d2a78aSEmmanuel Vadot bias-pull-up; 188*b2d2a78aSEmmanuel Vadot drive-push-pull; 189*b2d2a78aSEmmanuel Vadot slew-rate = <1>; 190*b2d2a78aSEmmanuel Vadot}; 191*b2d2a78aSEmmanuel Vadot 192*b2d2a78aSEmmanuel Vadot&spi2 { 193*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&spi2_pins_b>; 194*b2d2a78aSEmmanuel Vadot pinctrl-names = "default"; 195*b2d2a78aSEmmanuel Vadot cs-gpios = <&gpioj 3 GPIO_ACTIVE_LOW>; 196*b2d2a78aSEmmanuel Vadot /delete-property/dmas; 197*b2d2a78aSEmmanuel Vadot /delete-property/dma-names; 198*b2d2a78aSEmmanuel Vadot status = "okay"; 199*b2d2a78aSEmmanuel Vadot 200*b2d2a78aSEmmanuel Vadot switch@0 { 201*b2d2a78aSEmmanuel Vadot compatible = "nxp,sja1105q"; 202*b2d2a78aSEmmanuel Vadot reg = <0>; 203*b2d2a78aSEmmanuel Vadot spi-max-frequency = <1000000>; 204*b2d2a78aSEmmanuel Vadot spi-rx-delay-us = <1>; 205*b2d2a78aSEmmanuel Vadot spi-tx-delay-us = <1>; 206*b2d2a78aSEmmanuel Vadot spi-cpha; 207*b2d2a78aSEmmanuel Vadot 208*b2d2a78aSEmmanuel Vadot ports { 209*b2d2a78aSEmmanuel Vadot #address-cells = <1>; 210*b2d2a78aSEmmanuel Vadot #size-cells = <0>; 211*b2d2a78aSEmmanuel Vadot 212*b2d2a78aSEmmanuel Vadot ethernet1: port@0 { 213*b2d2a78aSEmmanuel Vadot reg = <0>; 214*b2d2a78aSEmmanuel Vadot label = "t10"; 215*b2d2a78aSEmmanuel Vadot phy-mode = "rgmii-id"; 216*b2d2a78aSEmmanuel Vadot phy-handle = <&t1_phy0>; 217*b2d2a78aSEmmanuel Vadot }; 218*b2d2a78aSEmmanuel Vadot 219*b2d2a78aSEmmanuel Vadot ethernet2: port@1 { 220*b2d2a78aSEmmanuel Vadot reg = <1>; 221*b2d2a78aSEmmanuel Vadot label = "t11"; 222*b2d2a78aSEmmanuel Vadot phy-mode = "rgmii-id"; 223*b2d2a78aSEmmanuel Vadot phy-handle = <&t1_phy1>; 224*b2d2a78aSEmmanuel Vadot }; 225*b2d2a78aSEmmanuel Vadot 226*b2d2a78aSEmmanuel Vadot ethernet3: port@2 { 227*b2d2a78aSEmmanuel Vadot reg = <2>; 228*b2d2a78aSEmmanuel Vadot label = "t12"; 229*b2d2a78aSEmmanuel Vadot phy-mode = "rgmii-id"; 230*b2d2a78aSEmmanuel Vadot phy-handle = <&t1_phy2>; 231*b2d2a78aSEmmanuel Vadot }; 232*b2d2a78aSEmmanuel Vadot 233*b2d2a78aSEmmanuel Vadot ethernet4: port@3 { 234*b2d2a78aSEmmanuel Vadot reg = <3>; 235*b2d2a78aSEmmanuel Vadot label = "t13"; 236*b2d2a78aSEmmanuel Vadot phy-mode = "rgmii-id"; 237*b2d2a78aSEmmanuel Vadot phy-handle = <&t1_phy3>; 238*b2d2a78aSEmmanuel Vadot }; 239*b2d2a78aSEmmanuel Vadot 240*b2d2a78aSEmmanuel Vadot port@4 { 241*b2d2a78aSEmmanuel Vadot reg = <4>; 242*b2d2a78aSEmmanuel Vadot label = "cpu"; 243*b2d2a78aSEmmanuel Vadot ethernet = <ðernet0>; 244*b2d2a78aSEmmanuel Vadot phy-mode = "rmii"; 245*b2d2a78aSEmmanuel Vadot 246*b2d2a78aSEmmanuel Vadot /* RGMII mode is not working properly, using RMII instead. */ 247*b2d2a78aSEmmanuel Vadot fixed-link { 248*b2d2a78aSEmmanuel Vadot speed = <100>; 249*b2d2a78aSEmmanuel Vadot full-duplex; 250*b2d2a78aSEmmanuel Vadot }; 251*b2d2a78aSEmmanuel Vadot }; 252*b2d2a78aSEmmanuel Vadot }; 253*b2d2a78aSEmmanuel Vadot }; 254*b2d2a78aSEmmanuel Vadot}; 255*b2d2a78aSEmmanuel Vadot 256*b2d2a78aSEmmanuel Vadot&uart4 { 257*b2d2a78aSEmmanuel Vadot pinctrl-names = "default", "sleep", "idle"; 258*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&uart4_pins_a>; 259*b2d2a78aSEmmanuel Vadot pinctrl-1 = <&uart4_sleep_pins_a>; 260*b2d2a78aSEmmanuel Vadot pinctrl-2 = <&uart4_idle_pins_a>; 261*b2d2a78aSEmmanuel Vadot /delete-property/dmas; 262*b2d2a78aSEmmanuel Vadot /delete-property/dma-names; 263*b2d2a78aSEmmanuel Vadot status = "okay"; 264*b2d2a78aSEmmanuel Vadot}; 265*b2d2a78aSEmmanuel Vadot 266*b2d2a78aSEmmanuel Vadot&usbh_ehci { 267*b2d2a78aSEmmanuel Vadot status = "okay"; 268*b2d2a78aSEmmanuel Vadot}; 269*b2d2a78aSEmmanuel Vadot 270*b2d2a78aSEmmanuel Vadot&usbotg_hs { 271*b2d2a78aSEmmanuel Vadot dr_mode = "host"; 272*b2d2a78aSEmmanuel Vadot pinctrl-0 = <&usbotg_hs_pins_a>; 273*b2d2a78aSEmmanuel Vadot pinctrl-names = "default"; 274*b2d2a78aSEmmanuel Vadot phys = <&usbphyc_port1 0>; 275*b2d2a78aSEmmanuel Vadot phy-names = "usb2-phy"; 276*b2d2a78aSEmmanuel Vadot vbus-supply = <&v5v>; 277*b2d2a78aSEmmanuel Vadot status = "okay"; 278*b2d2a78aSEmmanuel Vadot}; 279*b2d2a78aSEmmanuel Vadot 280*b2d2a78aSEmmanuel Vadot&usbphyc { 281*b2d2a78aSEmmanuel Vadot status = "okay"; 282*b2d2a78aSEmmanuel Vadot}; 283*b2d2a78aSEmmanuel Vadot 284*b2d2a78aSEmmanuel Vadot&usbphyc_port0 { 285*b2d2a78aSEmmanuel Vadot phy-supply = <&v3v3>; 286*b2d2a78aSEmmanuel Vadot}; 287*b2d2a78aSEmmanuel Vadot 288*b2d2a78aSEmmanuel Vadot&usbphyc_port1 { 289*b2d2a78aSEmmanuel Vadot phy-supply = <&v3v3>; 290*b2d2a78aSEmmanuel Vadot}; 291