blob: d85305afe3bb9c95b4c5fccb0fe7b53a874fedf0 [file] [log] [blame]
Harry Liebel43ef4f12013-10-22 17:29:14 +01001/*
Balint Dobszay5ce2c322020-01-10 17:16:27 +01002 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Harry Liebel43ef4f12013-10-22 17:29:14 +01003 *
Achin Gupta69387312016-09-26 10:22:56 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel43ef4f12013-10-22 17:29:14 +01005 */
6
7/dts-v1/;
8
9/memreserve/ 0x80000000 0x00010000;
10
11/ {
12};
13
14/ {
Harry Liebelcef93392014-04-01 19:27:38 +010015 model = "FVP Foundation";
Harry Liebel43ef4f12013-10-22 17:29:14 +010016 compatible = "arm,fvp-base", "arm,vexpress";
17 interrupt-parent = <&gic>;
18 #address-cells = <2>;
19 #size-cells = <2>;
20
21 chosen { };
22
23 aliases {
24 serial0 = &v2m_serial0;
25 serial1 = &v2m_serial1;
26 serial2 = &v2m_serial2;
27 serial3 = &v2m_serial3;
28 };
29
30 psci {
Soby Mathew1df077b2015-01-15 11:49:58 +000031 compatible = "arm,psci-1.0", "arm,psci-0.2", "arm,psci";
Harry Liebel43ef4f12013-10-22 17:29:14 +010032 method = "smc";
33 cpu_suspend = <0xc4000001>;
34 cpu_off = <0x84000002>;
35 cpu_on = <0xc4000003>;
Soby Mathewe0f55df2016-10-05 15:38:01 +010036 sys_poweroff = <0x84000008>;
37 sys_reset = <0x84000009>;
Madhukar Pappireddy26b945c2019-12-27 12:02:34 -060038 max-pwr-lvl = <2>;
Harry Liebel43ef4f12013-10-22 17:29:14 +010039 };
40
41 cpus {
42 #address-cells = <2>;
43 #size-cells = <0>;
44
Achin Gupta5ab4fe42014-08-20 17:33:09 +010045 cpu-map {
46 cluster0 {
47 core0 {
48 cpu = <&CPU0>;
49 };
50 core1 {
51 cpu = <&CPU1>;
52 };
53 core2 {
54 cpu = <&CPU2>;
55 };
56 core3 {
57 cpu = <&CPU3>;
58 };
59 };
60 };
61
62 idle-states {
63 entry-method = "arm,psci";
64
65 CPU_SLEEP_0: cpu-sleep-0 {
66 compatible = "arm,idle-state";
Juan Castillo3414f542015-04-16 14:17:49 +010067 local-timer-stop;
68 arm,psci-suspend-param = <0x0010000>;
Achin Gupta5ab4fe42014-08-20 17:33:09 +010069 entry-latency-us = <40>;
70 exit-latency-us = <100>;
71 min-residency-us = <150>;
72 };
73
74 CLUSTER_SLEEP_0: cluster-sleep-0 {
75 compatible = "arm,idle-state";
Juan Castillo3414f542015-04-16 14:17:49 +010076 local-timer-stop;
77 arm,psci-suspend-param = <0x1010000>;
Achin Gupta5ab4fe42014-08-20 17:33:09 +010078 entry-latency-us = <500>;
79 exit-latency-us = <1000>;
80 min-residency-us = <2500>;
81 };
82 };
83
84 CPU0:cpu@0 {
Harry Liebel43ef4f12013-10-22 17:29:14 +010085 device_type = "cpu";
86 compatible = "arm,armv8";
87 reg = <0x0 0x0>;
88 enable-method = "psci";
Achin Gupta5ab4fe42014-08-20 17:33:09 +010089 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Antonio Nino Diaz430147a2016-02-22 16:44:41 +000090 next-level-cache = <&L2_0>;
Harry Liebel43ef4f12013-10-22 17:29:14 +010091 };
Achin Gupta5ab4fe42014-08-20 17:33:09 +010092
93 CPU1:cpu@1 {
Harry Liebel43ef4f12013-10-22 17:29:14 +010094 device_type = "cpu";
95 compatible = "arm,armv8";
96 reg = <0x0 0x1>;
97 enable-method = "psci";
Achin Gupta5ab4fe42014-08-20 17:33:09 +010098 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Antonio Nino Diaz430147a2016-02-22 16:44:41 +000099 next-level-cache = <&L2_0>;
Harry Liebel43ef4f12013-10-22 17:29:14 +0100100 };
Achin Gupta5ab4fe42014-08-20 17:33:09 +0100101
102 CPU2:cpu@2 {
Harry Liebel43ef4f12013-10-22 17:29:14 +0100103 device_type = "cpu";
104 compatible = "arm,armv8";
105 reg = <0x0 0x2>;
106 enable-method = "psci";
Achin Gupta5ab4fe42014-08-20 17:33:09 +0100107 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Antonio Nino Diaz430147a2016-02-22 16:44:41 +0000108 next-level-cache = <&L2_0>;
Harry Liebel43ef4f12013-10-22 17:29:14 +0100109 };
Achin Gupta5ab4fe42014-08-20 17:33:09 +0100110
111 CPU3:cpu@3 {
Harry Liebel43ef4f12013-10-22 17:29:14 +0100112 device_type = "cpu";
113 compatible = "arm,armv8";
114 reg = <0x0 0x3>;
115 enable-method = "psci";
Achin Gupta5ab4fe42014-08-20 17:33:09 +0100116 cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>;
Antonio Nino Diaz430147a2016-02-22 16:44:41 +0000117 next-level-cache = <&L2_0>;
118 };
119
120 L2_0: l2-cache0 {
121 compatible = "cache";
Harry Liebel43ef4f12013-10-22 17:29:14 +0100122 };
123 };
124
125 memory@80000000 {
126 device_type = "memory";
Juan Castillo7055ca42014-05-16 15:33:15 +0100127 reg = <0x00000000 0x80000000 0 0x7F000000>,
Harry Liebel43ef4f12013-10-22 17:29:14 +0100128 <0x00000008 0x80000000 0 0x80000000>;
129 };
130
Harry Liebel34988592013-11-11 13:24:47 +0000131 gic: interrupt-controller@2f000000 {
Harry Liebel43ef4f12013-10-22 17:29:14 +0100132 compatible = "arm,gic-v3";
133 #interrupt-cells = <3>;
Harry Liebel34988592013-11-11 13:24:47 +0000134 #address-cells = <2>;
135 #size-cells = <2>;
136 ranges;
Harry Liebel43ef4f12013-10-22 17:29:14 +0100137 interrupt-controller;
138 reg = <0x0 0x2f000000 0 0x10000>, // GICD
139 <0x0 0x2f100000 0 0x200000>, // GICR
140 <0x0 0x2c000000 0 0x2000>, // GICC
141 <0x0 0x2c010000 0 0x2000>, // GICH
Harry Liebel34988592013-11-11 13:24:47 +0000142 <0x0 0x2c02f000 0 0x2000>; // GICV
Harry Liebel43ef4f12013-10-22 17:29:14 +0100143 interrupts = <1 9 4>;
Harry Liebel34988592013-11-11 13:24:47 +0000144
145 its: its@2f020000 {
146 compatible = "arm,gic-v3-its";
147 msi-controller;
148 reg = <0x0 0x2f020000 0x0 0x20000>; // GITS
149 };
Harry Liebel43ef4f12013-10-22 17:29:14 +0100150 };
151
152 timer {
153 compatible = "arm,armv8-timer";
154 interrupts = <1 13 0xff01>,
155 <1 14 0xff01>,
156 <1 11 0xff01>,
157 <1 10 0xff01>;
158 clock-frequency = <100000000>;
159 };
160
161 timer@2a810000 {
162 compatible = "arm,armv7-timer-mem";
163 reg = <0x0 0x2a810000 0x0 0x10000>;
164 clock-frequency = <100000000>;
165 #address-cells = <2>;
166 #size-cells = <2>;
167 ranges;
Harry Liebelcef93392014-04-01 19:27:38 +0100168 frame@2a830000 {
169 frame-number = <1>;
170 interrupts = <0 26 4>;
171 reg = <0x0 0x2a830000 0x0 0x10000>;
Harry Liebel43ef4f12013-10-22 17:29:14 +0100172 };
173 };
174
175 pmu {
176 compatible = "arm,armv8-pmuv3";
177 interrupts = <0 60 4>,
178 <0 61 4>,
179 <0 62 4>,
180 <0 63 4>;
181 };
182
183 smb {
184 compatible = "simple-bus";
185
186 #address-cells = <2>;
187 #size-cells = <1>;
188 ranges = <0 0 0 0x08000000 0x04000000>,
189 <1 0 0 0x14000000 0x04000000>,
190 <2 0 0 0x18000000 0x04000000>,
191 <3 0 0 0x1c000000 0x04000000>,
192 <4 0 0 0x0c000000 0x04000000>,
193 <5 0 0 0x10000000 0x04000000>;
194
Balint Dobszay5ce2c322020-01-10 17:16:27 +0100195 #include "fvp-foundation-motherboard.dtsi"
Harry Liebel43ef4f12013-10-22 17:29:14 +0100196 };
197};