blob: 4253f4dac9e57f6a39d6c66ddf24be83bf925589 (
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/dts-v1/;
/ {
compatible = "jcore,j2-soc";
model = "J2 FPGA SoC on Mimas v2 board";
#address-cells = <1>;
#size-cells = <1>;
interrupt-parent = <&aic>;
cpus {
#address-cells = <1>;
#size-cells = <0>;
enable-method = "jcore,j2-soc-smp";
cpu@0 {
device_type = "cpu";
compatible = "jcore,j2";
reg = < 0 >;
clock-frequency = < 50000000 >;
};
};
memory@10000000 {
device_type = "memory";
reg = < 0x10000000 0x4000000 >;
};
chosen {
stdout-path = "/soc@abcd0000/serial@100";
};
soc@abcd0000 {
compatible = "simple-bus";
ranges = <0 0xabcd0000 0x100000>;
#address-cells = <1>;
#size-cells = <1>;
aic: interrupt-controller {
compatible = "jcore,soc-aic-0.2";
reg = < 0x200 0x10 >;
cpu-offset = < 0x300 >;
interrupt-controller;
#interrupt-cells = <1>;
};
cache-controller {
compatible = "jcore,soc-cache-0.1";
reg = < 0xc0 4 >;
cpu-offset = < 4 >;
};
timer {
compatible = "jcore,soc-pit-0.1";
reg = < 0x200 0x30 >;
cpu-offset = < 0x300 >;
//interrupts = < 0x48 >;
interrupts = < 0x7f >;
};
ethernet {
compatible = "jcore,soc-emac-0.1";
reg = < 0x10000 0x2000 >;
//interrupts = < 0x60 >;
interrupts = < 0x11 >;
};
spi {
compatible = "jcore,soc-spi-0.1";
#address-cells = <1>;
#size-cells = <0>;
status = "ok";
//status = "disabled";
spi-max-frequency = <1250000>;
reg = < 0x40 0x8 >;
sdcard@1 {
compatible = "mmc-spi-slot";
reg = <0>;
spi-max-frequency = <400000>;
voltage-ranges = <3200 3400>;
mode = <0>;
};
};
serial@100 {
clock-frequency = <125000000>;
compatible = "xlnx,xps-uartlite-1.00.a";
current-speed = <115200>;
device_type = "serial";
//interrupts = < 0x5d >;
interrupts = < 0x12 >;
port-number = <0>;
reg = < 0x100 0x10 >;
};
};
};
|