1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright (C) 2016 STMicroelectronics (R&D) Limited. 4*f126890aSEmmanuel Vadot * Author: Patrice Chotard <patrice.chotard@st.com> 5*f126890aSEmmanuel Vadot */ 6*f126890aSEmmanuel Vadot/dts-v1/; 7*f126890aSEmmanuel Vadot#include "stih410.dtsi" 8*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 9*f126890aSEmmanuel Vadot 10*f126890aSEmmanuel Vadot/ { 11*f126890aSEmmanuel Vadot model = "STiH410 B2260"; 12*f126890aSEmmanuel Vadot compatible = "st,stih410-b2260", "st,stih410"; 13*f126890aSEmmanuel Vadot 14*f126890aSEmmanuel Vadot chosen { 15*f126890aSEmmanuel Vadot stdout-path = &uart1; 16*f126890aSEmmanuel Vadot }; 17*f126890aSEmmanuel Vadot 18*f126890aSEmmanuel Vadot memory@40000000 { 19*f126890aSEmmanuel Vadot device_type = "memory"; 20*f126890aSEmmanuel Vadot reg = <0x40000000 0x40000000>; 21*f126890aSEmmanuel Vadot }; 22*f126890aSEmmanuel Vadot 23*f126890aSEmmanuel Vadot aliases { 24*f126890aSEmmanuel Vadot serial1 = &uart1; 25*f126890aSEmmanuel Vadot ethernet0 = ðernet0; 26*f126890aSEmmanuel Vadot }; 27*f126890aSEmmanuel Vadot 28*f126890aSEmmanuel Vadot leds { 29*f126890aSEmmanuel Vadot compatible = "gpio-leds"; 30*f126890aSEmmanuel Vadot led-user-green-1 { 31*f126890aSEmmanuel Vadot label = "User_green_1"; 32*f126890aSEmmanuel Vadot gpios = <&pio1 3 GPIO_ACTIVE_LOW>; 33*f126890aSEmmanuel Vadot linux,default-trigger = "heartbeat"; 34*f126890aSEmmanuel Vadot default-state = "off"; 35*f126890aSEmmanuel Vadot }; 36*f126890aSEmmanuel Vadot 37*f126890aSEmmanuel Vadot led-user-green-2 { 38*f126890aSEmmanuel Vadot label = "User_green_2"; 39*f126890aSEmmanuel Vadot gpios = <&pio4 1 GPIO_ACTIVE_LOW>; 40*f126890aSEmmanuel Vadot default-state = "off"; 41*f126890aSEmmanuel Vadot }; 42*f126890aSEmmanuel Vadot 43*f126890aSEmmanuel Vadot led-user-green-3 { 44*f126890aSEmmanuel Vadot label = "User_green_3"; 45*f126890aSEmmanuel Vadot gpios = <&pio2 1 GPIO_ACTIVE_LOW>; 46*f126890aSEmmanuel Vadot default-state = "off"; 47*f126890aSEmmanuel Vadot }; 48*f126890aSEmmanuel Vadot 49*f126890aSEmmanuel Vadot led-user-green-4 { 50*f126890aSEmmanuel Vadot label = "User_green_4"; 51*f126890aSEmmanuel Vadot gpios = <&pio2 5 GPIO_ACTIVE_LOW>; 52*f126890aSEmmanuel Vadot default-state = "off"; 53*f126890aSEmmanuel Vadot }; 54*f126890aSEmmanuel Vadot }; 55*f126890aSEmmanuel Vadot 56*f126890aSEmmanuel Vadot sound: sound { 57*f126890aSEmmanuel Vadot compatible = "simple-audio-card"; 58*f126890aSEmmanuel Vadot simple-audio-card,name = "STI-B2260"; 59*f126890aSEmmanuel Vadot status = "okay"; 60*f126890aSEmmanuel Vadot #address-cells = <1>; 61*f126890aSEmmanuel Vadot #size-cells = <0>; 62*f126890aSEmmanuel Vadot 63*f126890aSEmmanuel Vadot simple-audio-card,dai-link@0 { 64*f126890aSEmmanuel Vadot reg = <0>; 65*f126890aSEmmanuel Vadot /* DAC */ 66*f126890aSEmmanuel Vadot format = "i2s"; 67*f126890aSEmmanuel Vadot mclk-fs = <128>; 68*f126890aSEmmanuel Vadot cpu { 69*f126890aSEmmanuel Vadot sound-dai = <&sti_uni_player0>; 70*f126890aSEmmanuel Vadot }; 71*f126890aSEmmanuel Vadot 72*f126890aSEmmanuel Vadot codec { 73*f126890aSEmmanuel Vadot sound-dai = <&sti_hdmi>; 74*f126890aSEmmanuel Vadot }; 75*f126890aSEmmanuel Vadot }; 76*f126890aSEmmanuel Vadot }; 77*f126890aSEmmanuel Vadot 78*f126890aSEmmanuel Vadot miphy28lp_phy: miphy28lp { 79*f126890aSEmmanuel Vadot 80*f126890aSEmmanuel Vadot phy_port1: port@9b2a000 { 81*f126890aSEmmanuel Vadot st,osc-force-ext; 82*f126890aSEmmanuel Vadot }; 83*f126890aSEmmanuel Vadot }; 84*f126890aSEmmanuel Vadot 85*f126890aSEmmanuel Vadot usb2_picophy1: phy2 { 86*f126890aSEmmanuel Vadot status = "okay"; 87*f126890aSEmmanuel Vadot }; 88*f126890aSEmmanuel Vadot 89*f126890aSEmmanuel Vadot usb2_picophy2: phy3 { 90*f126890aSEmmanuel Vadot status = "okay"; 91*f126890aSEmmanuel Vadot }; 92*f126890aSEmmanuel Vadot 93*f126890aSEmmanuel Vadot soc { 94*f126890aSEmmanuel Vadot /* Low speed expansion connector */ 95*f126890aSEmmanuel Vadot uart0: serial@9830000 { 96*f126890aSEmmanuel Vadot label = "LS-UART0"; 97*f126890aSEmmanuel Vadot pinctrl-names = "default", "no-hw-flowctrl"; 98*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_serial0_hw_flowctrl>; 99*f126890aSEmmanuel Vadot pinctrl-1 = <&pinctrl_serial0>; 100*f126890aSEmmanuel Vadot rts-gpios = <&pio17 3 GPIO_ACTIVE_LOW>; 101*f126890aSEmmanuel Vadot uart-has-rtscts; 102*f126890aSEmmanuel Vadot status = "okay"; 103*f126890aSEmmanuel Vadot }; 104*f126890aSEmmanuel Vadot 105*f126890aSEmmanuel Vadot /* Low speed expansion connector */ 106*f126890aSEmmanuel Vadot uart1: serial@9831000 { 107*f126890aSEmmanuel Vadot label = "LS-UART1"; 108*f126890aSEmmanuel Vadot status = "okay"; 109*f126890aSEmmanuel Vadot }; 110*f126890aSEmmanuel Vadot 111*f126890aSEmmanuel Vadot /* Low speed expansion connector */ 112*f126890aSEmmanuel Vadot spi0: spi@9844000 { 113*f126890aSEmmanuel Vadot label = "LS-SPI0"; 114*f126890aSEmmanuel Vadot cs-gpios = <&pio30 3 0>; 115*f126890aSEmmanuel Vadot status = "okay"; 116*f126890aSEmmanuel Vadot }; 117*f126890aSEmmanuel Vadot 118*f126890aSEmmanuel Vadot /* Low speed expansion connector */ 119*f126890aSEmmanuel Vadot i2c0: i2c@9840000 { 120*f126890aSEmmanuel Vadot label = "LS-I2C0"; 121*f126890aSEmmanuel Vadot status = "okay"; 122*f126890aSEmmanuel Vadot }; 123*f126890aSEmmanuel Vadot 124*f126890aSEmmanuel Vadot /* Low speed expansion connector */ 125*f126890aSEmmanuel Vadot i2c1: i2c@9841000 { 126*f126890aSEmmanuel Vadot label = "LS-I2C1"; 127*f126890aSEmmanuel Vadot status = "okay"; 128*f126890aSEmmanuel Vadot }; 129*f126890aSEmmanuel Vadot 130*f126890aSEmmanuel Vadot /* high speed expansion connector */ 131*f126890aSEmmanuel Vadot i2c2: i2c@9842000 { 132*f126890aSEmmanuel Vadot label = "HS-I2C2"; 133*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c2_alt2_1>; 134*f126890aSEmmanuel Vadot status = "okay"; 135*f126890aSEmmanuel Vadot }; 136*f126890aSEmmanuel Vadot 137*f126890aSEmmanuel Vadot /* high speed expansion connector */ 138*f126890aSEmmanuel Vadot i2c3: i2c@9843000 { 139*f126890aSEmmanuel Vadot label = "HS-I2C3"; 140*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_i2c3_alt3_0>; 141*f126890aSEmmanuel Vadot status = "okay"; 142*f126890aSEmmanuel Vadot }; 143*f126890aSEmmanuel Vadot 144*f126890aSEmmanuel Vadot mmc0: sdhci@9060000 { 145*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_sd0>; 146*f126890aSEmmanuel Vadot bus-width = <4>; 147*f126890aSEmmanuel Vadot status = "okay"; 148*f126890aSEmmanuel Vadot }; 149*f126890aSEmmanuel Vadot 150*f126890aSEmmanuel Vadot /* high speed expansion connector */ 151*f126890aSEmmanuel Vadot mmc1: sdhci@9080000 { 152*f126890aSEmmanuel Vadot status = "okay"; 153*f126890aSEmmanuel Vadot }; 154*f126890aSEmmanuel Vadot 155*f126890aSEmmanuel Vadot pwm0: pwm@9810000 { 156*f126890aSEmmanuel Vadot status = "okay"; 157*f126890aSEmmanuel Vadot }; 158*f126890aSEmmanuel Vadot 159*f126890aSEmmanuel Vadot pwm1: pwm@9510000 { 160*f126890aSEmmanuel Vadot status = "okay"; 161*f126890aSEmmanuel Vadot }; 162*f126890aSEmmanuel Vadot 163*f126890aSEmmanuel Vadot ohci0: usb@9a03c00 { 164*f126890aSEmmanuel Vadot status = "okay"; 165*f126890aSEmmanuel Vadot }; 166*f126890aSEmmanuel Vadot 167*f126890aSEmmanuel Vadot ehci0: usb@9a03e00 { 168*f126890aSEmmanuel Vadot status = "okay"; 169*f126890aSEmmanuel Vadot }; 170*f126890aSEmmanuel Vadot 171*f126890aSEmmanuel Vadot ohci1: usb@9a83c00 { 172*f126890aSEmmanuel Vadot status = "okay"; 173*f126890aSEmmanuel Vadot }; 174*f126890aSEmmanuel Vadot 175*f126890aSEmmanuel Vadot ehci1: usb@9a83e00 { 176*f126890aSEmmanuel Vadot status = "okay"; 177*f126890aSEmmanuel Vadot }; 178*f126890aSEmmanuel Vadot 179*f126890aSEmmanuel Vadot st_dwc3: dwc3@8f94000 { 180*f126890aSEmmanuel Vadot status = "okay"; 181*f126890aSEmmanuel Vadot }; 182*f126890aSEmmanuel Vadot 183*f126890aSEmmanuel Vadot ethernet0: dwmac@9630000 { 184*f126890aSEmmanuel Vadot phy-mode = "rgmii"; 185*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_rgmii1 &pinctrl_rgmii1_mdio_1>; 186*f126890aSEmmanuel Vadot 187*f126890aSEmmanuel Vadot snps,reset-gpio = <&pio0 7 0>; 188*f126890aSEmmanuel Vadot snps,reset-active-low; 189*f126890aSEmmanuel Vadot snps,reset-delays-us = <0 10000 1000000>; 190*f126890aSEmmanuel Vadot 191*f126890aSEmmanuel Vadot status = "okay"; 192*f126890aSEmmanuel Vadot }; 193*f126890aSEmmanuel Vadot 194*f126890aSEmmanuel Vadot sti_uni_player0: sti-uni-player@8d80000 { 195*f126890aSEmmanuel Vadot status = "okay"; 196*f126890aSEmmanuel Vadot }; 197*f126890aSEmmanuel Vadot /* SSC11 to HDMI */ 198*f126890aSEmmanuel Vadot hdmiddc: i2c@9541000 { 199*f126890aSEmmanuel Vadot /* HDMI V1.3a supports Standard mode only */ 200*f126890aSEmmanuel Vadot clock-frequency = <100000>; 201*f126890aSEmmanuel Vadot st,i2c-min-scl-pulse-width-us = <0>; 202*f126890aSEmmanuel Vadot st,i2c-min-sda-pulse-width-us = <5>; 203*f126890aSEmmanuel Vadot status = "okay"; 204*f126890aSEmmanuel Vadot }; 205*f126890aSEmmanuel Vadot 206*f126890aSEmmanuel Vadot sata1: sata@9b28000 { 207*f126890aSEmmanuel Vadot status = "okay"; 208*f126890aSEmmanuel Vadot }; 209*f126890aSEmmanuel Vadot }; 210*f126890aSEmmanuel Vadot}; 211