Enable the eMMC controller and limit it to 52MHz to avoid the host controller reporting bus error conditions. Reviewed-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Joel Stanley <joel@jms.id.au>
87 lines
1.1 KiB
Plaintext
87 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright 2019 IBM Corp.
|
|
|
|
/dts-v1/;
|
|
|
|
#include "aspeed-g6.dtsi"
|
|
|
|
/ {
|
|
model = "AST2600 EVB";
|
|
compatible = "aspeed,ast2600";
|
|
|
|
aliases {
|
|
serial4 = &uart5;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS4,115200n8";
|
|
};
|
|
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x80000000>;
|
|
};
|
|
};
|
|
|
|
&mdio1 {
|
|
status = "okay";
|
|
|
|
ethphy1: ethernet-phy@0 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
&mdio2 {
|
|
status = "okay";
|
|
|
|
ethphy2: ethernet-phy@0 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
&mdio3 {
|
|
status = "okay";
|
|
|
|
ethphy3: ethernet-phy@0 {
|
|
compatible = "ethernet-phy-ieee802.3-c22";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
&mac1 {
|
|
status = "okay";
|
|
|
|
phy-mode = "rgmii";
|
|
phy-handle = <ðphy1>;
|
|
};
|
|
|
|
&mac2 {
|
|
status = "okay";
|
|
|
|
phy-mode = "rgmii";
|
|
phy-handle = <ðphy2>;
|
|
};
|
|
|
|
&mac3 {
|
|
status = "okay";
|
|
|
|
phy-mode = "rgmii";
|
|
phy-handle = <ðphy3>;
|
|
};
|
|
|
|
&emmc_controller {
|
|
status = "okay";
|
|
};
|
|
|
|
&emmc {
|
|
non-removable;
|
|
bus-width = <4>;
|
|
max-frequency = <52000000>;
|
|
};
|
|
|
|
&rtc {
|
|
status = "okay";
|
|
};
|