2022-05-20 11:46:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
|
|
|
/ {
|
|
|
|
smbios {
|
|
|
|
compatible = "u-boot,sysinfo-smbios";
|
|
|
|
|
|
|
|
smbios {
|
|
|
|
system {
|
|
|
|
product = "eDPU";
|
|
|
|
};
|
|
|
|
|
|
|
|
baseboard {
|
|
|
|
product = "eDPU";
|
|
|
|
};
|
|
|
|
|
|
|
|
chassis {
|
|
|
|
product = "eDPU";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-05-20 11:46:32 +00:00
|
|
|
|
|
|
|
spi-flash@0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-05-20 11:46:32 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&sdhci0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-05-20 11:46:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ð1 {
|
|
|
|
fixed-link {
|
|
|
|
speed = <1000>;
|
|
|
|
full-duplex;
|
|
|
|
};
|
|
|
|
};
|
2023-11-29 10:11:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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";
|
|
|
|
};
|