blob: cb02b70e54dcb86e83af83ad2b1b6d86edb65953 [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
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};