-
Notifications
You must be signed in to change notification settings - Fork 0
/
yuri.dts
55 lines (49 loc) · 1.39 KB
/
yuri.dts
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
/dts-v1/;
/ {
#address-cells = <2>;
#size-cells = <2>;
compatible = "yuri,yuri";
uart@10000000 {
compatible = "ns16550a";
reg = <0x0 0x10000000 0x0 0x100>;
interrupts = <1>;
interrupt-parent = <&plic>;
clock-frequency = <0x384000>;
};
memory@80000000 {
device_type = "memory";
reg = <0x0 0x80000000 0x0 0x8000000>;
};
cpus {
#address-cells = <1>;
#size-cells = <0>;
timebase-frequency = <10000000>;
cpu@0 {
device_type = "cpu";
compatible = "riscv";
reg = <0>;
status = "okay";
riscv,isa = "rv64imafdcsu";
mmu-type = "riscv,sv39";
cpu0_intc: interrupt-controller {
#interrupt-cells = <0x01>;
interrupt-controller;
compatible = "riscv,cpu-intc";
};
};
};
plic: interrupt-controller@c000000 {
#interrupt-cells = <1>;
#address-cells = <0>;
compatible = "riscv,plic0";
interrupt-controller;
riscv,ndev = <0x35>;
reg = <0x00 0xc000000 0x00 0x4000000>;
interrupts-extended = <&cpu0_intc 11 &cpu0_intc 9>;
};
clint: clint@2000000 {
compatible = "riscv,clint0";
reg = <0x00 0x2000000 0x00 0x10000>;
interrupts-extended = <&cpu0_intc 3 &cpu0_intc 7>;
};
};