Soby Mathew | 4b435f3 | 2016-09-14 15:51:44 +0100 | [diff] [blame] | 1 | /* |
Achin Gupta | 6938731 | 2016-09-26 10:22:56 +0100 | [diff] [blame] | 2 | * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | 4b435f3 | 2016-09-14 15:51:44 +0100 | [diff] [blame] | 3 | * |
Achin Gupta | 6938731 | 2016-09-26 10:22:56 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | 4b435f3 | 2016-09-14 15:51:44 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /dts-v1/; |
| 8 | |
| 9 | /memreserve/ 0x80000000 0x00010000; |
| 10 | |
| 11 | / { |
| 12 | }; |
| 13 | |
| 14 | / { |
| 15 | model = "FVP Base"; |
| 16 | compatible = "arm,vfp-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 { |
| 31 | compatible = "arm,psci-1.0", "arm,psci-0.2", "arm,psci"; |
| 32 | method = "smc"; |
| 33 | cpu_suspend = <0x84000001>; |
| 34 | cpu_off = <0x84000002>; |
| 35 | cpu_on = <0x84000003>; |
| 36 | sys_poweroff = <0x84000008>; |
| 37 | sys_reset = <0x84000009>; |
| 38 | }; |
| 39 | |
| 40 | cpus { |
| 41 | #address-cells = <1>; |
| 42 | #size-cells = <0>; |
| 43 | |
| 44 | cpu-map { |
| 45 | cluster0 { |
| 46 | core0 { |
| 47 | cpu = <&CPU0>; |
| 48 | }; |
| 49 | core1 { |
| 50 | cpu = <&CPU1>; |
| 51 | }; |
| 52 | core2 { |
| 53 | cpu = <&CPU2>; |
| 54 | }; |
| 55 | core3 { |
| 56 | cpu = <&CPU3>; |
| 57 | }; |
| 58 | }; |
| 59 | |
| 60 | cluster1 { |
| 61 | core0 { |
| 62 | cpu = <&CPU4>; |
| 63 | }; |
| 64 | core1 { |
| 65 | cpu = <&CPU5>; |
| 66 | }; |
| 67 | core2 { |
| 68 | cpu = <&CPU6>; |
| 69 | }; |
| 70 | core3 { |
| 71 | cpu = <&CPU7>; |
| 72 | }; |
| 73 | }; |
| 74 | }; |
| 75 | |
| 76 | idle-states { |
| 77 | entry-method = "arm,psci"; |
| 78 | |
| 79 | CPU_SLEEP_0: cpu-sleep-0 { |
| 80 | compatible = "arm,idle-state"; |
| 81 | local-timer-stop; |
| 82 | arm,psci-suspend-param = <0x0010000>; |
| 83 | entry-latency-us = <40>; |
| 84 | exit-latency-us = <100>; |
| 85 | min-residency-us = <150>; |
| 86 | }; |
| 87 | |
| 88 | CLUSTER_SLEEP_0: cluster-sleep-0 { |
| 89 | compatible = "arm,idle-state"; |
| 90 | local-timer-stop; |
| 91 | arm,psci-suspend-param = <0x1010000>; |
| 92 | entry-latency-us = <500>; |
| 93 | exit-latency-us = <1000>; |
| 94 | min-residency-us = <2500>; |
| 95 | }; |
| 96 | }; |
| 97 | |
| 98 | CPU0:cpu@0 { |
| 99 | device_type = "cpu"; |
| 100 | compatible = "arm,armv8"; |
| 101 | reg = <0x0>; |
| 102 | enable-method = "psci"; |
| 103 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 104 | next-level-cache = <&L2_0>; |
| 105 | }; |
| 106 | |
| 107 | CPU1:cpu@1 { |
| 108 | device_type = "cpu"; |
| 109 | compatible = "arm,armv8"; |
| 110 | reg = <0x1>; |
| 111 | enable-method = "psci"; |
| 112 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 113 | next-level-cache = <&L2_0>; |
| 114 | }; |
| 115 | |
| 116 | CPU2:cpu@2 { |
| 117 | device_type = "cpu"; |
| 118 | compatible = "arm,armv8"; |
| 119 | reg = <0x2>; |
| 120 | enable-method = "psci"; |
| 121 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 122 | next-level-cache = <&L2_0>; |
| 123 | }; |
| 124 | |
| 125 | CPU3:cpu@3 { |
| 126 | device_type = "cpu"; |
| 127 | compatible = "arm,armv8"; |
| 128 | reg = <0x3>; |
| 129 | enable-method = "psci"; |
| 130 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 131 | next-level-cache = <&L2_0>; |
| 132 | }; |
| 133 | |
| 134 | CPU4:cpu@100 { |
| 135 | device_type = "cpu"; |
| 136 | compatible = "arm,armv8"; |
| 137 | reg = <0x100>; |
| 138 | enable-method = "psci"; |
| 139 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 140 | next-level-cache = <&L2_0>; |
| 141 | }; |
| 142 | |
| 143 | CPU5:cpu@101 { |
| 144 | device_type = "cpu"; |
| 145 | compatible = "arm,armv8"; |
| 146 | reg = <0x101>; |
| 147 | enable-method = "psci"; |
| 148 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 149 | next-level-cache = <&L2_0>; |
| 150 | }; |
| 151 | |
| 152 | CPU6:cpu@102 { |
| 153 | device_type = "cpu"; |
| 154 | compatible = "arm,armv8"; |
| 155 | reg = <0x102>; |
| 156 | enable-method = "psci"; |
| 157 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 158 | next-level-cache = <&L2_0>; |
| 159 | }; |
| 160 | |
| 161 | CPU7:cpu@103 { |
| 162 | device_type = "cpu"; |
| 163 | compatible = "arm,armv8"; |
| 164 | reg = <0x103>; |
| 165 | enable-method = "psci"; |
| 166 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
| 167 | next-level-cache = <&L2_0>; |
| 168 | }; |
| 169 | |
| 170 | L2_0: l2-cache0 { |
| 171 | compatible = "cache"; |
| 172 | }; |
| 173 | }; |
| 174 | |
| 175 | memory@80000000 { |
| 176 | device_type = "memory"; |
| 177 | reg = <0x00000000 0x80000000 0 0x7F000000>, |
| 178 | <0x00000008 0x80000000 0 0x80000000>; |
| 179 | }; |
| 180 | |
| 181 | gic: interrupt-controller@2f000000 { |
| 182 | compatible = "arm,gic-v3"; |
| 183 | #interrupt-cells = <3>; |
| 184 | #address-cells = <2>; |
| 185 | #size-cells = <2>; |
| 186 | ranges; |
| 187 | interrupt-controller; |
| 188 | reg = <0x0 0x2f000000 0 0x10000>, // GICD |
| 189 | <0x0 0x2f100000 0 0x200000>, // GICR |
| 190 | <0x0 0x2c000000 0 0x2000>, // GICC |
| 191 | <0x0 0x2c010000 0 0x2000>, // GICH |
| 192 | <0x0 0x2c02f000 0 0x2000>; // GICV |
| 193 | interrupts = <1 9 4>; |
| 194 | |
| 195 | its: its@2f020000 { |
| 196 | compatible = "arm,gic-v3-its"; |
| 197 | msi-controller; |
| 198 | reg = <0x0 0x2f020000 0x0 0x20000>; // GITS |
| 199 | }; |
| 200 | }; |
| 201 | |
| 202 | timer { |
| 203 | compatible = "arm,armv8-timer"; |
| 204 | interrupts = <1 13 0xff01>, |
| 205 | <1 14 0xff01>, |
| 206 | <1 11 0xff01>, |
| 207 | <1 10 0xff01>; |
| 208 | clock-frequency = <100000000>; |
| 209 | }; |
| 210 | |
| 211 | timer@2a810000 { |
| 212 | compatible = "arm,armv7-timer-mem"; |
| 213 | reg = <0x0 0x2a810000 0x0 0x10000>; |
| 214 | clock-frequency = <100000000>; |
| 215 | #address-cells = <2>; |
| 216 | #size-cells = <2>; |
| 217 | ranges; |
| 218 | frame@2a830000 { |
| 219 | frame-number = <1>; |
| 220 | interrupts = <0 26 4>; |
| 221 | reg = <0x0 0x2a830000 0x0 0x10000>; |
| 222 | }; |
| 223 | }; |
| 224 | |
| 225 | pmu { |
| 226 | compatible = "arm,armv8-pmuv3"; |
| 227 | interrupts = <0 60 4>, |
| 228 | <0 61 4>, |
| 229 | <0 62 4>, |
| 230 | <0 63 4>; |
| 231 | }; |
| 232 | |
| 233 | smb { |
| 234 | compatible = "simple-bus"; |
| 235 | |
| 236 | #address-cells = <2>; |
| 237 | #size-cells = <1>; |
| 238 | ranges = <0 0 0 0x08000000 0x04000000>, |
| 239 | <1 0 0 0x14000000 0x04000000>, |
| 240 | <2 0 0 0x18000000 0x04000000>, |
| 241 | <3 0 0 0x1c000000 0x04000000>, |
| 242 | <4 0 0 0x0c000000 0x04000000>, |
| 243 | <5 0 0 0x10000000 0x04000000>; |
| 244 | |
| 245 | #interrupt-cells = <1>; |
| 246 | interrupt-map-mask = <0 0 63>; |
| 247 | interrupt-map = <0 0 0 &gic 0 0 0 0 4>, |
| 248 | <0 0 1 &gic 0 0 0 1 4>, |
| 249 | <0 0 2 &gic 0 0 0 2 4>, |
| 250 | <0 0 3 &gic 0 0 0 3 4>, |
| 251 | <0 0 4 &gic 0 0 0 4 4>, |
| 252 | <0 0 5 &gic 0 0 0 5 4>, |
| 253 | <0 0 6 &gic 0 0 0 6 4>, |
| 254 | <0 0 7 &gic 0 0 0 7 4>, |
| 255 | <0 0 8 &gic 0 0 0 8 4>, |
| 256 | <0 0 9 &gic 0 0 0 9 4>, |
| 257 | <0 0 10 &gic 0 0 0 10 4>, |
| 258 | <0 0 11 &gic 0 0 0 11 4>, |
| 259 | <0 0 12 &gic 0 0 0 12 4>, |
| 260 | <0 0 13 &gic 0 0 0 13 4>, |
| 261 | <0 0 14 &gic 0 0 0 14 4>, |
| 262 | <0 0 15 &gic 0 0 0 15 4>, |
| 263 | <0 0 16 &gic 0 0 0 16 4>, |
| 264 | <0 0 17 &gic 0 0 0 17 4>, |
| 265 | <0 0 18 &gic 0 0 0 18 4>, |
| 266 | <0 0 19 &gic 0 0 0 19 4>, |
| 267 | <0 0 20 &gic 0 0 0 20 4>, |
| 268 | <0 0 21 &gic 0 0 0 21 4>, |
| 269 | <0 0 22 &gic 0 0 0 22 4>, |
| 270 | <0 0 23 &gic 0 0 0 23 4>, |
| 271 | <0 0 24 &gic 0 0 0 24 4>, |
| 272 | <0 0 25 &gic 0 0 0 25 4>, |
| 273 | <0 0 26 &gic 0 0 0 26 4>, |
| 274 | <0 0 27 &gic 0 0 0 27 4>, |
| 275 | <0 0 28 &gic 0 0 0 28 4>, |
| 276 | <0 0 29 &gic 0 0 0 29 4>, |
| 277 | <0 0 30 &gic 0 0 0 30 4>, |
| 278 | <0 0 31 &gic 0 0 0 31 4>, |
| 279 | <0 0 32 &gic 0 0 0 32 4>, |
| 280 | <0 0 33 &gic 0 0 0 33 4>, |
| 281 | <0 0 34 &gic 0 0 0 34 4>, |
| 282 | <0 0 35 &gic 0 0 0 35 4>, |
| 283 | <0 0 36 &gic 0 0 0 36 4>, |
| 284 | <0 0 37 &gic 0 0 0 37 4>, |
| 285 | <0 0 38 &gic 0 0 0 38 4>, |
| 286 | <0 0 39 &gic 0 0 0 39 4>, |
| 287 | <0 0 40 &gic 0 0 0 40 4>, |
| 288 | <0 0 41 &gic 0 0 0 41 4>, |
| 289 | <0 0 42 &gic 0 0 0 42 4>; |
| 290 | |
| 291 | /include/ "rtsm_ve-motherboard.dtsi" |
| 292 | }; |
| 293 | |
| 294 | panels { |
| 295 | panel@0 { |
| 296 | compatible = "panel"; |
| 297 | mode = "XVGA"; |
| 298 | refresh = <60>; |
| 299 | xres = <1024>; |
| 300 | yres = <768>; |
| 301 | pixclock = <15748>; |
| 302 | left_margin = <152>; |
| 303 | right_margin = <48>; |
| 304 | upper_margin = <23>; |
| 305 | lower_margin = <3>; |
| 306 | hsync_len = <104>; |
| 307 | vsync_len = <4>; |
| 308 | sync = <0>; |
| 309 | vmode = "FB_VMODE_NONINTERLACED"; |
| 310 | tim2 = "TIM2_BCD", "TIM2_IPC"; |
| 311 | cntl = "CNTL_LCDTFT", "CNTL_BGR", "CNTL_LCDVCOMP(1)"; |
| 312 | caps = "CLCD_CAP_5551", "CLCD_CAP_565", "CLCD_CAP_888"; |
| 313 | bpp = <16>; |
| 314 | }; |
| 315 | }; |
| 316 | }; |