-
Notifications
You must be signed in to change notification settings - Fork 1
/
frontend.dts
93 lines (78 loc) · 1.84 KB
/
frontend.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
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
/dts-v1/;
/ {
#size-cells = <0x2>;
#address-cells = <0x2>;
interrupt-parent = <&gic>;
cpus {
#size-cells = <0x0>;
#address-cells = <0x1>;
cpu@0 {
compatible = "arm,cortex-a53", "arm,armv8";
device_type = "cpu";
enable-method = "psci";
reg = <0x0>;
};
};
psci {
compatible = "arm,psci-0.2";
method = "smc";
};
memory@30000000 {
device_type = "memory";
reg = <0x0 0x30000000 0x0 0x40000000
0x0 0x20000000 0x0 0x01000000>;
};
reserved-memory {
#address-cells = <0x2>;
#size-cells = <0x2>;
ranges;
reserved1: buffer@20000000 {
compatible = "restricted-dma-pool";
reg = <0x0 0x20000000 0x0 0x1000000>;
};
};
gic: intc@8000000 {
interrupts = <0x01 0x09 0x04>;
reg = <0x00 0x8000000 0x00 0x10000 0x00 0x80a0000 0x00 0xf60000>;
#redistributor-regions = <0x01>;
compatible = "arm,gic-v3";
ranges;
#size-cells = <0x02>;
#address-cells = <0x02>;
interrupt-controller;
#interrupt-cells = <0x03>;
};
timer {
interrupts = <0x1 0xd 0xf04 0x1 0xe 0xf04 0x1 0xb 0xf04 0x1 0xa 0xf04>;
always-on;
compatible = "arm,armv8-timer", "arm,armv7-timer";
};
virtio@a003e00 {
dma-coherent;
interrupts = <0x0 0x2f 0x1>;
reg = <0x0 0xa003e00 0x0 0x200>;
compatible = "virtio,mmio";
memory-region = <&reserved1>;
};
pl011@9002000 {
clock-names = "uartclk\0apb_pclk";
clocks = <0x8000 0x8000>;
interrupts = <0x00 0x0B 0x04>;
reg = <0x00 0x9002000 0x00 0x1000>;
compatible = "arm,pl011\0arm,primecell";
};
aliases {
serial0 = "/pl011@9002000";
};
apb-pclk {
phandle = <0x8000>;
clock-output-names = "clk24mhz";
clock-frequency = <0x16e3600>;
#clock-cells = <0x00>;
compatible = "fixed-clock";
};
chosen {
bootargs = "earlycon console=ttyAMA0 ip=192.168.43.15 clk_ignore_unused init=/sbin/init";
stdout-path = "/pl011@9002000";
};
};