u-boot/arch/arm/dts/armada-3720-eDPU-u-boot.dtsi
Robert Marko 46471e6c1d arm: mvebu: eDPU: support new board revision
There is a new eDPU revision that uses Marvell 88E6361 switch onboard.
We can rely on detecting the switch to enable and fixup the Linux DTS
so a single DTS can be used.

There is currently no support for the 88E6361 switch and thus no working
networking in U-Boot, so we disable both ports.

Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Reviewed-by: Stefan Roese <sr@denx.de>
2024-01-10 09:38:55 +01:00

48 lines
563 B
Text

// SPDX-License-Identifier: GPL-2.0+
/ {
smbios {
compatible = "u-boot,sysinfo-smbios";
smbios {
system {
product = "eDPU";
};
baseboard {
product = "eDPU";
};
chassis {
product = "eDPU";
};
};
};
};
&spi0 {
bootph-all;
spi-flash@0 {
bootph-all;
};
};
&sdhci0 {
bootph-all;
};
&eth1 {
fixed-link {
speed = <1000>;
full-duplex;
};
};
/*
* eDPU v2 has a MV88E6361 switch on the MDIO bus and U-boot is used
* to patch the Linux DTS if its found so enable MDIO by default.
*/
&mdio {
status = "okay";
};