blob: e7222d9691f7e75f47823b391f9df8a93e0330e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;
#include "ast2700.dtsi"
#include "ast2700-u-boot.dtsi"
/ {
model = "AST2700 EVB";
compatible = "aspeed,ast2700-evb", "aspeed,ast2700";
memory@400000000 {
device_type = "memory";
reg = <0x4 0x00000000 0x0 0x20000000>;
};
chosen {
stdout-path = &uart12;
};
};
&uart12 {
status = "okay";
};
&mdio0 {
status = "okay";
#address-cells = <1>;
#size-cells = <0>;
ethphy0: ethernet-phy@0 {
reg = <0>;
};
};
&mdio1 {
status = "okay";
#address-cells = <1>;
#size-cells = <0>;
ethphy1: ethernet-phy@0 {
reg = <0>;
};
};
&mac0 {
status = "okay";
phy-mode = "rgmii-id";
phy-handle = <ðphy0>;
rx-internal-delay-ps = <0>;
tx-internal-delay-ps = <0>;
};
&mac1 {
status = "okay";
phy-mode = "rgmii-id";
phy-handle = <ðphy1>;
rx-internal-delay-ps = <0>;
tx-internal-delay-ps = <0>;
};
&fmc {
status = "okay";
flash@0 {
status = "okay";
spi-max-frequency = <50000000>;
spi-tx-bus-width = <4>;
spi-rx-bus-width = <4>;
};
flash@1 {
status = "okay";
spi-max-frequency = <50000000>;
spi-tx-bus-width = <4>;
spi-rx-bus-width = <4>;
};
flash@2 {
status = "okay";
spi-max-frequency = <50000000>;
spi-tx-bus-width = <4>;
spi-rx-bus-width = <4>;
};
};
&wdt0 {
status = "okay";
};
|