1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright (C) 2014 NovaTech LLC - https://www.novatechweb.com 4*f126890aSEmmanuel Vadot */ 5*f126890aSEmmanuel Vadot/dts-v1/; 6*f126890aSEmmanuel Vadot 7*f126890aSEmmanuel Vadot#include "am33xx.dtsi" 8*f126890aSEmmanuel Vadot 9*f126890aSEmmanuel Vadot/ { 10*f126890aSEmmanuel Vadot model = "NovaTech OrionLXm"; 11*f126890aSEmmanuel Vadot compatible = "novatech,am335x-lxm", "ti,am33xx"; 12*f126890aSEmmanuel Vadot 13*f126890aSEmmanuel Vadot cpus { 14*f126890aSEmmanuel Vadot cpu@0 { 15*f126890aSEmmanuel Vadot cpu0-supply = <&vdd1_reg>; 16*f126890aSEmmanuel Vadot }; 17*f126890aSEmmanuel Vadot }; 18*f126890aSEmmanuel Vadot 19*f126890aSEmmanuel Vadot memory@80000000 { 20*f126890aSEmmanuel Vadot device_type = "memory"; 21*f126890aSEmmanuel Vadot reg = <0x80000000 0x20000000>; /* 512 MB */ 22*f126890aSEmmanuel Vadot }; 23*f126890aSEmmanuel Vadot 24*f126890aSEmmanuel Vadot /* Power supply provides a fixed 5V @2A */ 25*f126890aSEmmanuel Vadot vbat: fixedregulator0 { 26*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 27*f126890aSEmmanuel Vadot regulator-name = "vbat"; 28*f126890aSEmmanuel Vadot regulator-min-microvolt = <5000000>; 29*f126890aSEmmanuel Vadot regulator-max-microvolt = <5000000>; 30*f126890aSEmmanuel Vadot regulator-boot-on; 31*f126890aSEmmanuel Vadot }; 32*f126890aSEmmanuel Vadot 33*f126890aSEmmanuel Vadot /* Power supply provides a fixed 3.3V @3A */ 34*f126890aSEmmanuel Vadot vmmcsd_fixed: fixedregulator1 { 35*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 36*f126890aSEmmanuel Vadot regulator-name = "vmmcsd_fixed"; 37*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 38*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 39*f126890aSEmmanuel Vadot regulator-boot-on; 40*f126890aSEmmanuel Vadot }; 41*f126890aSEmmanuel Vadot}; 42*f126890aSEmmanuel Vadot 43*f126890aSEmmanuel Vadot&am33xx_pinmux { 44*f126890aSEmmanuel Vadot mmc1_pins: mmc1-pins { 45*f126890aSEmmanuel Vadot pinctrl-single,pins = < 46*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_DAT3, PIN_INPUT_PULLUP, MUX_MODE0) 47*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_DAT2, PIN_INPUT_PULLUP, MUX_MODE0) 48*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_DAT1, PIN_INPUT_PULLUP, MUX_MODE0) 49*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_DAT0, PIN_INPUT_PULLUP, MUX_MODE0) 50*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_CLK, PIN_INPUT_PULLUP, MUX_MODE0) 51*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MMC0_CMD, PIN_INPUT_PULLUP, MUX_MODE0) 52*f126890aSEmmanuel Vadot >; 53*f126890aSEmmanuel Vadot }; 54*f126890aSEmmanuel Vadot 55*f126890aSEmmanuel Vadot i2c0_pins: i2c0-pins { 56*f126890aSEmmanuel Vadot pinctrl-single,pins = < 57*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_I2C0_SDA, PIN_INPUT, MUX_MODE0) 58*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_I2C0_SCL, PIN_INPUT, MUX_MODE0) 59*f126890aSEmmanuel Vadot >; 60*f126890aSEmmanuel Vadot }; 61*f126890aSEmmanuel Vadot 62*f126890aSEmmanuel Vadot cpsw_default: cpsw-default-pins { 63*f126890aSEmmanuel Vadot pinctrl-single,pins = < 64*f126890aSEmmanuel Vadot /* Slave 1 */ 65*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A9, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_int */ 66*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_CRS, PIN_INPUT_PULLDOWN, MUX_MODE1) /* rmii1_crs_dv */ 67*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RX_ER, PIN_INPUT_PULLDOWN, MUX_MODE1) /* rmii1_rxer */ 68*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TX_EN, PIN_OUTPUT_PULLDOWN, MUX_MODE1) /* rmii1_txen */ 69*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TXD1, PIN_OUTPUT_PULLDOWN, MUX_MODE1) /* rmii1_td1 */ 70*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TXD0, PIN_OUTPUT_PULLDOWN, MUX_MODE1) /* rmii1_td0 */ 71*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RXD1, PIN_INPUT_PULLDOWN, MUX_MODE1) /* rmii1_rd1 */ 72*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RXD0, PIN_INPUT_PULLDOWN, MUX_MODE1) /* rmii1_rd0 */ 73*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_RMII1_REF_CLK, PIN_INPUT_PULLDOWN, MUX_MODE0) 74*f126890aSEmmanuel Vadot 75*f126890aSEmmanuel Vadot /* Slave 2 */ 76*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A0, PIN_OUTPUT_PULLDOWN, MUX_MODE3) /* rmii2_txen */ 77*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A4, PIN_OUTPUT_PULLDOWN, MUX_MODE3) /* rmii2_td1 */ 78*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A5, PIN_OUTPUT_PULLDOWN, MUX_MODE3) /* rmii2_td0 */ 79*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A10, PIN_INPUT_PULLDOWN, MUX_MODE3) /* rmii2_rd1 */ 80*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A11, PIN_INPUT_PULLDOWN, MUX_MODE3) /* rmii2_rd0 */ 81*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_WAIT0, PIN_INPUT_PULLDOWN, MUX_MODE3) /* rmii2_crs_dv */ 82*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_WPN, PIN_INPUT_PULLDOWN, MUX_MODE3) /* rmii2_rxer */ 83*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_BEN1, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_int */ 84*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_COL, PIN_INPUT_PULLDOWN, MUX_MODE1) /* rmii2_refclk */ 85*f126890aSEmmanuel Vadot >; 86*f126890aSEmmanuel Vadot }; 87*f126890aSEmmanuel Vadot 88*f126890aSEmmanuel Vadot cpsw_sleep: cpsw-sleep-pins { 89*f126890aSEmmanuel Vadot pinctrl-single,pins = < 90*f126890aSEmmanuel Vadot /* Slave 1 reset value */ 91*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A9, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_int */ 92*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_CRS, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_crs_dv */ 93*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RX_ER, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_rxer */ 94*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TX_EN, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_txen */ 95*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TXD1, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_td1 */ 96*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_TXD0, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_td0 */ 97*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RXD1, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_rd1 */ 98*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_RXD0, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_rd0 */ 99*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_RMII1_REF_CLK, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii1_refclk */ 100*f126890aSEmmanuel Vadot 101*f126890aSEmmanuel Vadot /* Slave 2 reset value*/ 102*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A0, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_txen */ 103*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A4, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_td1 */ 104*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A5, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_td0 */ 105*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A10, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_rd1 */ 106*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_A11, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_rd0 */ 107*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_WAIT0, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_crs_dv */ 108*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_WPN, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_rxer */ 109*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_BEN1, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_int */ 110*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MII1_COL, PIN_INPUT_PULLDOWN, MUX_MODE7) /* rmii2_refclk */ 111*f126890aSEmmanuel Vadot >; 112*f126890aSEmmanuel Vadot }; 113*f126890aSEmmanuel Vadot 114*f126890aSEmmanuel Vadot davinci_mdio_default: davinci-mdio-default-pins { 115*f126890aSEmmanuel Vadot pinctrl-single,pins = < 116*f126890aSEmmanuel Vadot /* MDIO */ 117*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MDIO, PIN_INPUT_PULLUP | SLEWCTRL_FAST, MUX_MODE0) 118*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MDC, PIN_OUTPUT_PULLUP, MUX_MODE0) 119*f126890aSEmmanuel Vadot >; 120*f126890aSEmmanuel Vadot }; 121*f126890aSEmmanuel Vadot 122*f126890aSEmmanuel Vadot davinci_mdio_sleep: davinci-mdio-sleep-pins { 123*f126890aSEmmanuel Vadot pinctrl-single,pins = < 124*f126890aSEmmanuel Vadot /* MDIO reset value */ 125*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MDIO, PIN_INPUT_PULLDOWN, MUX_MODE7) 126*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_MDC, PIN_INPUT_PULLDOWN, MUX_MODE7) 127*f126890aSEmmanuel Vadot >; 128*f126890aSEmmanuel Vadot }; 129*f126890aSEmmanuel Vadot 130*f126890aSEmmanuel Vadot emmc_pins: emmc-pins { 131*f126890aSEmmanuel Vadot pinctrl-single,pins = < 132*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_CSN1, PIN_INPUT_PULLUP, MUX_MODE2) /* gpmc_csn1.mmc1_clk */ 133*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_CSN2, PIN_INPUT_PULLUP, MUX_MODE2) /* gpmc_csn2.mmc1_cmd */ 134*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD0, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad0.mmc1_dat0 */ 135*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD1, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad1.mmc1_dat1 */ 136*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD2, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad2.mmc1_dat2 */ 137*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD3, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad3.mmc1_dat3 */ 138*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD4, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad4.mmc1_dat4 */ 139*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD5, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad5.mmc1_dat5 */ 140*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD6, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad6.mmc1_dat6 */ 141*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_GPMC_AD7, PIN_INPUT_PULLUP, MUX_MODE1) /* gpmc_ad7.mmc1_dat7 */ 142*f126890aSEmmanuel Vadot >; 143*f126890aSEmmanuel Vadot }; 144*f126890aSEmmanuel Vadot 145*f126890aSEmmanuel Vadot uart0_pins: uart0-pins { 146*f126890aSEmmanuel Vadot pinctrl-single,pins = < 147*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_UART0_RXD, PIN_INPUT_PULLUP, MUX_MODE0) 148*f126890aSEmmanuel Vadot AM33XX_PADCONF(AM335X_PIN_UART0_TXD, PIN_OUTPUT_PULLDOWN, MUX_MODE0) 149*f126890aSEmmanuel Vadot >; 150*f126890aSEmmanuel Vadot }; 151*f126890aSEmmanuel Vadot}; 152*f126890aSEmmanuel Vadot 153*f126890aSEmmanuel Vadot&i2c0 { 154*f126890aSEmmanuel Vadot pinctrl-names = "default"; 155*f126890aSEmmanuel Vadot pinctrl-0 = <&i2c0_pins>; 156*f126890aSEmmanuel Vadot 157*f126890aSEmmanuel Vadot status = "okay"; 158*f126890aSEmmanuel Vadot clock-frequency = <400000>; 159*f126890aSEmmanuel Vadot 160*f126890aSEmmanuel Vadot serial_config1: serial_config1@20 { 161*f126890aSEmmanuel Vadot compatible = "nxp,pca9539"; 162*f126890aSEmmanuel Vadot reg = <0x20>; 163*f126890aSEmmanuel Vadot gpio-controller; 164*f126890aSEmmanuel Vadot #gpio-cells = <2>; 165*f126890aSEmmanuel Vadot }; 166*f126890aSEmmanuel Vadot 167*f126890aSEmmanuel Vadot serial_config2: serial_config2@21 { 168*f126890aSEmmanuel Vadot compatible = "nxp,pca9539"; 169*f126890aSEmmanuel Vadot reg = <0x21>; 170*f126890aSEmmanuel Vadot gpio-controller; 171*f126890aSEmmanuel Vadot #gpio-cells = <2>; 172*f126890aSEmmanuel Vadot }; 173*f126890aSEmmanuel Vadot 174*f126890aSEmmanuel Vadot tps: tps@2d { 175*f126890aSEmmanuel Vadot compatible = "ti,tps65910"; 176*f126890aSEmmanuel Vadot reg = <0x2d>; 177*f126890aSEmmanuel Vadot }; 178*f126890aSEmmanuel Vadot}; 179*f126890aSEmmanuel Vadot 180*f126890aSEmmanuel Vadot/include/ "../../tps65910.dtsi" 181*f126890aSEmmanuel Vadot 182*f126890aSEmmanuel Vadot&tps { 183*f126890aSEmmanuel Vadot vcc1-supply = <&vbat>; 184*f126890aSEmmanuel Vadot vcc2-supply = <&vbat>; 185*f126890aSEmmanuel Vadot vcc3-supply = <&vbat>; 186*f126890aSEmmanuel Vadot vcc4-supply = <&vbat>; 187*f126890aSEmmanuel Vadot vcc5-supply = <&vbat>; 188*f126890aSEmmanuel Vadot vcc6-supply = <&vbat>; 189*f126890aSEmmanuel Vadot vcc7-supply = <&vbat>; 190*f126890aSEmmanuel Vadot vccio-supply = <&vbat>; 191*f126890aSEmmanuel Vadot 192*f126890aSEmmanuel Vadot regulators { 193*f126890aSEmmanuel Vadot /* vrtc - unused */ 194*f126890aSEmmanuel Vadot 195*f126890aSEmmanuel Vadot vio_reg: regulator@1 { 196*f126890aSEmmanuel Vadot regulator-name = "vio_1v5,ddr"; 197*f126890aSEmmanuel Vadot regulator-min-microvolt = <1500000>; 198*f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 199*f126890aSEmmanuel Vadot regulator-boot-on; 200*f126890aSEmmanuel Vadot regulator-always-on; 201*f126890aSEmmanuel Vadot }; 202*f126890aSEmmanuel Vadot 203*f126890aSEmmanuel Vadot vdd1_reg: regulator@2 { 204*f126890aSEmmanuel Vadot regulator-name = "vdd1,mpu"; 205*f126890aSEmmanuel Vadot regulator-min-microvolt = <600000>; 206*f126890aSEmmanuel Vadot regulator-max-microvolt = <1500000>; 207*f126890aSEmmanuel Vadot regulator-boot-on; 208*f126890aSEmmanuel Vadot regulator-always-on; 209*f126890aSEmmanuel Vadot }; 210*f126890aSEmmanuel Vadot 211*f126890aSEmmanuel Vadot vdd2_reg: regulator@3 { 212*f126890aSEmmanuel Vadot regulator-name = "vdd2_1v1,core"; 213*f126890aSEmmanuel Vadot regulator-min-microvolt = <1100000>; 214*f126890aSEmmanuel Vadot regulator-max-microvolt = <1100000>; 215*f126890aSEmmanuel Vadot regulator-boot-on; 216*f126890aSEmmanuel Vadot regulator-always-on; 217*f126890aSEmmanuel Vadot }; 218*f126890aSEmmanuel Vadot 219*f126890aSEmmanuel Vadot /* vdd3 - unused */ 220*f126890aSEmmanuel Vadot 221*f126890aSEmmanuel Vadot /* vdig1 - unused */ 222*f126890aSEmmanuel Vadot 223*f126890aSEmmanuel Vadot vdig2_reg: regulator@6 { 224*f126890aSEmmanuel Vadot regulator-name = "vdig2_1v8,vdds_pll"; 225*f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 226*f126890aSEmmanuel Vadot regulator-max-microvolt = <1800000>; 227*f126890aSEmmanuel Vadot regulator-boot-on; 228*f126890aSEmmanuel Vadot regulator-always-on; 229*f126890aSEmmanuel Vadot }; 230*f126890aSEmmanuel Vadot 231*f126890aSEmmanuel Vadot /* vpll - unused */ 232*f126890aSEmmanuel Vadot 233*f126890aSEmmanuel Vadot vdac_reg: regulator@8 { 234*f126890aSEmmanuel Vadot regulator-name = "vdac_1v8,vdds"; 235*f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 236*f126890aSEmmanuel Vadot regulator-max-microvolt = <1800000>; 237*f126890aSEmmanuel Vadot regulator-boot-on; 238*f126890aSEmmanuel Vadot regulator-always-on; 239*f126890aSEmmanuel Vadot }; 240*f126890aSEmmanuel Vadot 241*f126890aSEmmanuel Vadot vaux1_reg: regulator@9 { 242*f126890aSEmmanuel Vadot regulator-name = "vaux1_1v8,usb"; 243*f126890aSEmmanuel Vadot regulator-min-microvolt = <1800000>; 244*f126890aSEmmanuel Vadot regulator-max-microvolt = <1800000>; 245*f126890aSEmmanuel Vadot regulator-boot-on; 246*f126890aSEmmanuel Vadot regulator-always-on; 247*f126890aSEmmanuel Vadot }; 248*f126890aSEmmanuel Vadot 249*f126890aSEmmanuel Vadot vaux2_reg: regulator@10 { 250*f126890aSEmmanuel Vadot regulator-name = "vaux2_3v3,io"; 251*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 252*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 253*f126890aSEmmanuel Vadot regulator-boot-on; 254*f126890aSEmmanuel Vadot regulator-always-on; 255*f126890aSEmmanuel Vadot }; 256*f126890aSEmmanuel Vadot 257*f126890aSEmmanuel Vadot vaux33_reg: regulator@11 { 258*f126890aSEmmanuel Vadot regulator-name = "vaux33_3v3,usb"; 259*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 260*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 261*f126890aSEmmanuel Vadot regulator-boot-on; 262*f126890aSEmmanuel Vadot regulator-always-on; 263*f126890aSEmmanuel Vadot }; 264*f126890aSEmmanuel Vadot 265*f126890aSEmmanuel Vadot vmmc_reg: regulator@12 { 266*f126890aSEmmanuel Vadot regulator-name = "vmmc_3v3,io"; 267*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 268*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 269*f126890aSEmmanuel Vadot regulator-boot-on; 270*f126890aSEmmanuel Vadot regulator-always-on; 271*f126890aSEmmanuel Vadot }; 272*f126890aSEmmanuel Vadot }; 273*f126890aSEmmanuel Vadot}; 274*f126890aSEmmanuel Vadot 275*f126890aSEmmanuel Vadot&sham { 276*f126890aSEmmanuel Vadot status = "okay"; 277*f126890aSEmmanuel Vadot}; 278*f126890aSEmmanuel Vadot 279*f126890aSEmmanuel Vadot&aes { 280*f126890aSEmmanuel Vadot status = "okay"; 281*f126890aSEmmanuel Vadot}; 282*f126890aSEmmanuel Vadot 283*f126890aSEmmanuel Vadot&uart0 { 284*f126890aSEmmanuel Vadot pinctrl-names = "default"; 285*f126890aSEmmanuel Vadot pinctrl-0 = <&uart0_pins>; 286*f126890aSEmmanuel Vadot 287*f126890aSEmmanuel Vadot status = "okay"; 288*f126890aSEmmanuel Vadot}; 289*f126890aSEmmanuel Vadot 290*f126890aSEmmanuel Vadot&usb0 { 291*f126890aSEmmanuel Vadot dr_mode = "host"; 292*f126890aSEmmanuel Vadot}; 293*f126890aSEmmanuel Vadot 294*f126890aSEmmanuel Vadot&usb1 { 295*f126890aSEmmanuel Vadot dr_mode = "host"; 296*f126890aSEmmanuel Vadot}; 297*f126890aSEmmanuel Vadot 298*f126890aSEmmanuel Vadot&cpsw_port1 { 299*f126890aSEmmanuel Vadot phy-handle = <ðphy0>; 300*f126890aSEmmanuel Vadot phy-mode = "rmii"; 301*f126890aSEmmanuel Vadot ti,dual-emac-pvid = <2>; 302*f126890aSEmmanuel Vadot}; 303*f126890aSEmmanuel Vadot 304*f126890aSEmmanuel Vadot&cpsw_port2 { 305*f126890aSEmmanuel Vadot phy-handle = <ðphy1>; 306*f126890aSEmmanuel Vadot phy-mode = "rmii"; 307*f126890aSEmmanuel Vadot ti,dual-emac-pvid = <3>; 308*f126890aSEmmanuel Vadot}; 309*f126890aSEmmanuel Vadot 310*f126890aSEmmanuel Vadot&mac_sw { 311*f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 312*f126890aSEmmanuel Vadot pinctrl-0 = <&cpsw_default>; 313*f126890aSEmmanuel Vadot pinctrl-1 = <&cpsw_sleep>; 314*f126890aSEmmanuel Vadot status = "okay"; 315*f126890aSEmmanuel Vadot}; 316*f126890aSEmmanuel Vadot 317*f126890aSEmmanuel Vadot&davinci_mdio_sw { 318*f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 319*f126890aSEmmanuel Vadot pinctrl-0 = <&davinci_mdio_default>; 320*f126890aSEmmanuel Vadot pinctrl-1 = <&davinci_mdio_sleep>; 321*f126890aSEmmanuel Vadot 322*f126890aSEmmanuel Vadot ethphy0: ethernet-phy@5 { 323*f126890aSEmmanuel Vadot reg = <5>; 324*f126890aSEmmanuel Vadot }; 325*f126890aSEmmanuel Vadot 326*f126890aSEmmanuel Vadot ethphy1: ethernet-phy@4 { 327*f126890aSEmmanuel Vadot reg = <4>; 328*f126890aSEmmanuel Vadot }; 329*f126890aSEmmanuel Vadot}; 330*f126890aSEmmanuel Vadot 331*f126890aSEmmanuel Vadot&mmc1 { 332*f126890aSEmmanuel Vadot pinctrl-names = "default"; 333*f126890aSEmmanuel Vadot pinctrl-0 = <&mmc1_pins>; 334*f126890aSEmmanuel Vadot vmmc-supply = <&vmmcsd_fixed>; 335*f126890aSEmmanuel Vadot bus-width = <4>; 336*f126890aSEmmanuel Vadot status = "okay"; 337*f126890aSEmmanuel Vadot}; 338*f126890aSEmmanuel Vadot 339*f126890aSEmmanuel Vadot&mmc2 { 340*f126890aSEmmanuel Vadot pinctrl-names = "default"; 341*f126890aSEmmanuel Vadot pinctrl-0 = <&emmc_pins>; 342*f126890aSEmmanuel Vadot vmmc-supply = <&vmmcsd_fixed>; 343*f126890aSEmmanuel Vadot bus-width = <8>; 344*f126890aSEmmanuel Vadot non-removable; 345*f126890aSEmmanuel Vadot status = "okay"; 346*f126890aSEmmanuel Vadot}; 347*f126890aSEmmanuel Vadot 348