Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright 2011-2012 Calxeda, Inc.
4 */
5
6/dts-v1/;
7
8/* First 4KB has pen for secondary cores. */
9/memreserve/ 0x00000000 0x0001000;
10
11/ {
12 model = "Calxeda ECX-2000";
13 compatible = "calxeda,ecx-2000";
14 #address-cells = <2>;
15 #size-cells = <2>;
16
17 cpus {
18 #address-cells = <1>;
19 #size-cells = <0>;
20
21 cpu@0 {
22 compatible = "arm,cortex-a15";
23 device_type = "cpu";
24 reg = <0>;
25 clocks = <&a9pll>;
26 clock-names = "cpu";
27 };
28
29 cpu@1 {
30 compatible = "arm,cortex-a15";
31 device_type = "cpu";
32 reg = <1>;
33 clocks = <&a9pll>;
34 clock-names = "cpu";
35 };
36
37 cpu@2 {
38 compatible = "arm,cortex-a15";
39 device_type = "cpu";
40 reg = <2>;
41 clocks = <&a9pll>;
42 clock-names = "cpu";
43 };
44
45 cpu@3 {
46 compatible = "arm,cortex-a15";
47 device_type = "cpu";
48 reg = <3>;
49 clocks = <&a9pll>;
50 clock-names = "cpu";
51 };
52 };
53
54 memory@0 {
55 name = "memory";
56 device_type = "memory";
57 reg = <0x00000000 0x00000000 0x00000000 0xff800000>;
58 };
59
60 memory@200000000 {
61 name = "memory";
62 device_type = "memory";
63 reg = <0x00000002 0x00000000 0x00000003 0x00000000>;
64 };
65
66 soc {
67 ranges = <0x00000000 0x00000000 0x00000000 0xffffffff>;
68
69 timer {
70 compatible = "arm,cortex-a15-timer", "arm,armv7-timer"; interrupts = <1 13 0xf08>,
71 <1 14 0xf08>,
72 <1 11 0xf08>,
73 <1 10 0xf08>;
74 };
75
76 memory-controller@fff00000 {
77 compatible = "calxeda,ecx-2000-ddr-ctrl";
78 reg = <0xfff00000 0x1000>;
79 interrupts = <0 91 4>;
80 };
81
82 intc: interrupt-controller@fff11000 {
83 compatible = "arm,cortex-a15-gic";
84 #interrupt-cells = <3>;
85 #address-cells = <0>;
86 interrupt-controller;
87 interrupts = <1 9 0xf04>;
88 reg = <0xfff11000 0x1000>,
89 <0xfff12000 0x2000>,
90 <0xfff14000 0x2000>,
91 <0xfff16000 0x2000>;
92 };
93
94 pmu {
95 compatible = "arm,cortex-a9-pmu";
96 interrupts = <0 76 4>, <0 75 4>, <0 74 4>, <0 73 4>;
97 };
98 };
99};
100
101/include/ "ecx-common.dtsi"
1/*
2 * Copyright 2011-2012 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/dts-v1/;
18
19/* First 4KB has pen for secondary cores. */
20/memreserve/ 0x00000000 0x0001000;
21
22/ {
23 model = "Calxeda ECX-2000";
24 compatible = "calxeda,ecx-2000";
25 #address-cells = <2>;
26 #size-cells = <2>;
27 clock-ranges;
28
29 cpus {
30 #address-cells = <1>;
31 #size-cells = <0>;
32
33 cpu@0 {
34 compatible = "arm,cortex-a15";
35 device_type = "cpu";
36 reg = <0>;
37 clocks = <&a9pll>;
38 clock-names = "cpu";
39 };
40
41 cpu@1 {
42 compatible = "arm,cortex-a15";
43 device_type = "cpu";
44 reg = <1>;
45 clocks = <&a9pll>;
46 clock-names = "cpu";
47 };
48
49 cpu@2 {
50 compatible = "arm,cortex-a15";
51 device_type = "cpu";
52 reg = <2>;
53 clocks = <&a9pll>;
54 clock-names = "cpu";
55 };
56
57 cpu@3 {
58 compatible = "arm,cortex-a15";
59 device_type = "cpu";
60 reg = <3>;
61 clocks = <&a9pll>;
62 clock-names = "cpu";
63 };
64 };
65
66 memory@0 {
67 name = "memory";
68 device_type = "memory";
69 reg = <0x00000000 0x00000000 0x00000000 0xff800000>;
70 };
71
72 memory@200000000 {
73 name = "memory";
74 device_type = "memory";
75 reg = <0x00000002 0x00000000 0x00000003 0x00000000>;
76 };
77
78 soc {
79 ranges = <0x00000000 0x00000000 0x00000000 0xffffffff>;
80
81 timer {
82 compatible = "arm,cortex-a15-timer", "arm,armv7-timer"; interrupts = <1 13 0xf08>,
83 <1 14 0xf08>,
84 <1 11 0xf08>,
85 <1 10 0xf08>;
86 };
87
88 memory-controller@fff00000 {
89 compatible = "calxeda,ecx-2000-ddr-ctrl";
90 reg = <0xfff00000 0x1000>;
91 interrupts = <0 91 4>;
92 };
93
94 intc: interrupt-controller@fff11000 {
95 compatible = "arm,cortex-a15-gic";
96 #interrupt-cells = <3>;
97 #size-cells = <0>;
98 #address-cells = <1>;
99 interrupt-controller;
100 interrupts = <1 9 0xf04>;
101 reg = <0xfff11000 0x1000>,
102 <0xfff12000 0x2000>,
103 <0xfff14000 0x2000>,
104 <0xfff16000 0x2000>;
105 };
106
107 pmu {
108 compatible = "arm,cortex-a9-pmu";
109 interrupts = <0 76 4 0 75 4 0 74 4 0 73 4>;
110 };
111 };
112};
113
114/include/ "ecx-common.dtsi"