blob: 1b2648f64d9b65517914ce49fea4fc468bdeb1b2 [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 {
24 u-boot,dm-pre-reloc;
25
26 spi-flash@0 {
27 u-boot,dm-pre-reloc;
28 };
29};
30
31&sdhci0 {
32 u-boot,dm-pre-reloc;
33};
34
35&eth0 {
36 /* G.hn does not work without additional configuration */
37 status = "disabled";
38};
39
40&eth1 {
41 fixed-link {
42 speed = <1000>;
43 full-duplex;
44 };
45};