blob: 485f1c5bb0074917fbef8f4120447c6ddbbef858 [file] [log] [blame]
Vladimir Vid32c9e1c2019-01-28 17:27:58 +01001// SPDX-License-Identifier: GPL-2.0+
2
Simon Glassfa9e1bc2020-11-05 06:32:15 -07003/ {
4 smbios {
5 compatible = "u-boot,sysinfo-smbios";
6
7 smbios {
8 system {
9 product = "uDPU";
10 };
11
12 baseboard {
13 product = "uDPU";
14 };
15
16 chassis {
17 product = "uDPU";
18 };
19 };
20 };
21};
22
Vladimir Vid32c9e1c2019-01-28 17:27:58 +010023&spi0 {
Simon Glass8c103c32023-02-13 08:56:33 -070024 bootph-all;
Vladimir Vid32c9e1c2019-01-28 17:27:58 +010025
26 spi-flash@0 {
Simon Glass8c103c32023-02-13 08:56:33 -070027 bootph-all;
Vladimir Vid32c9e1c2019-01-28 17:27:58 +010028 };
29};
30
Pali Rohár9dde7a02022-02-14 11:34:27 +010031&sdhci0 {
Simon Glass8c103c32023-02-13 08:56:33 -070032 bootph-all;
Vladimir Vid32c9e1c2019-01-28 17:27:58 +010033};
Robert Marko9e778c72022-03-24 10:57:38 +010034
35&pinctrl_sb {
36 sfp_pin: sfp-pin {
37 groups = "pcie1_clkreq";
38 function = "gpio";
39 };
40};
41
42&eth0 {
43 pinctrl-names = "default";
44 pinctrl-0 = <&sfp_pin>;
45
46 fixed-link {
47 speed = <1000>;
48 full-duplex;
49 };
50};
51
52&eth1 {
53 fixed-link {
54 speed = <1000>;
55 full-duplex;
56 };
57};