1// SPDX-License-Identifier: GPL-2.0-or-later 2// Copyright 2019 IBM Corp. 3 4/dts-v1/; 5 6#include "aspeed-g6.dtsi" 7 8/ { 9 model = "AST2600 EVB"; 10 compatible = "aspeed,ast2600"; 11 12 aliases { 13 serial4 = &uart5; 14 }; 15 16 chosen { 17 bootargs = "console=ttyS4,115200n8"; 18 }; 19 20 memory@80000000 { 21 device_type = "memory"; 22 reg = <0x80000000 0x80000000>; 23 }; 24}; 25 26&mdio1 { 27 status = "okay"; 28 29 ethphy1: ethernet-phy@0 { 30 compatible = "ethernet-phy-ieee802.3-c22"; 31 reg = <0>; 32 }; 33}; 34 35&mdio2 { 36 status = "okay"; 37 38 ethphy2: ethernet-phy@0 { 39 compatible = "ethernet-phy-ieee802.3-c22"; 40 reg = <0>; 41 }; 42}; 43 44&mdio3 { 45 status = "okay"; 46 47 ethphy3: ethernet-phy@0 { 48 compatible = "ethernet-phy-ieee802.3-c22"; 49 reg = <0>; 50 }; 51}; 52 53&mac1 { 54 status = "okay"; 55 56 phy-mode = "rgmii"; 57 phy-handle = <ðphy1>; 58}; 59 60&mac2 { 61 status = "okay"; 62 63 phy-mode = "rgmii"; 64 phy-handle = <ðphy2>; 65}; 66 67&mac3 { 68 status = "okay"; 69 70 phy-mode = "rgmii"; 71 phy-handle = <ðphy3>; 72}; 73 74&emmc { 75 status = "okay"; 76}; 77 78&rtc { 79 status = "okay"; 80}; 81