blob: c3d450dd83b76aab07443cd34c1917367216fda5 [file] [log] [blame]
Robert Markob4108f32022-05-20 13:46:32 +02001// SPDX-License-Identifier: GPL-2.0+
2
3/ {
4 smbios {
5 compatible = "u-boot,sysinfo-smbios";
6
7 smbios {
8 system {
9 product = "eDPU";
10 };
11
12 baseboard {
13 product = "eDPU";
14 };
15
16 chassis {
17 product = "eDPU";
18 };
19 };
20 };
21};
22
23&spi0 {
Simon Glass8c103c32023-02-13 08:56:33 -070024 bootph-all;
Robert Markob4108f32022-05-20 13:46:32 +020025
26 spi-flash@0 {
Simon Glass8c103c32023-02-13 08:56:33 -070027 bootph-all;
Robert Markob4108f32022-05-20 13:46:32 +020028 };
29};
30
31&sdhci0 {
Simon Glass8c103c32023-02-13 08:56:33 -070032 bootph-all;
Robert Markob4108f32022-05-20 13:46:32 +020033};
34
Robert Markob4108f32022-05-20 13:46:32 +020035&eth1 {
36 fixed-link {
37 speed = <1000>;
38 full-duplex;
39 };
40};
Robert Marko46471e62023-11-29 11:11:08 +010041
42/*
43 * eDPU v2 has a MV88E6361 switch on the MDIO bus and U-boot is used
44 * to patch the Linux DTS if its found so enable MDIO by default.
45 */
46&mdio {
47 status = "okay";
48};