mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-11 22:03:15 +00:00
46471e6c1d
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>
48 lines
563 B
Text
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;
|
|
};
|
|
|
|
ð1 {
|
|
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";
|
|
};
|