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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2023-2025 Keguang Zhang <keguang.zhang@gmail.com>
*/
/dts-v1/;
#include <dt-bindings/gpio/gpio.h>
#include "loongson1b.dtsi"
/ {
compatible = "loongson,ls1b-demo", "loongson,ls1b";
model = "LS1B-DEMO Board";
memory@0 {
device_type = "memory";
reg = <0x0 0x10000000>;
};
aliases {
ethernet0 = &gmac0;
ethernet1 = &gmac1;
gpio0 = &gpio0;
gpio1 = &gpio1;
serial0 = &uart0;
};
chosen {
stdout-path = "serial0:38400n8";
};
codec: audio-codec {
compatible = "realtek,alc203";
#sound-dai-cells = <0>;
};
sound {
compatible = "simple-audio-card";
simple-audio-card,name = "ls1b-alc203";
simple-audio-card,format = "ac97";
simple-audio-card,widgets =
"Speaker", "Line Out Jack",
"Headphone", "Headphone Jack",
"Microphone", "Microphone Jack";
simple-audio-card,routing =
"Line Out Jack", "TX",
"Headphone Jack", "TX",
"RX", "Microphone Jack";
simple-audio-card,cpu {
sound-dai = <&ac97>;
};
simple-audio-card,codec {
sound-dai = <&codec>;
};
};
};
&xtal {
clock-frequency = <33000000>;
};
&gmac0 {
phy-handle = <&phy0>;
phy-mode = "rgmii-id";
status = "okay";
mdio {
compatible = "snps,dwmac-mdio";
#address-cells = <1>;
#size-cells = <0>;
phy0: ethernet-phy@0 {
reg = <0x0>;
};
};
};
&nand {
status = "okay";
nand@0 {
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "kernel";
reg = <0x0 0x1000000>;
};
partition@1000000 {
label = "rootfs";
reg = <0x1000000 0x7000000>;
};
};
};
};
&ac97 {
status = "okay";
};
&ehci {
status = "okay";
};
&ohci {
status = "okay";
};
&rtc {
status = "okay";
};
&uart0 {
status = "okay";
};
&watchdog {
status = "okay";
};
|