Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 1 | /* |
Rupinderjit Singh | d2d0298 | 2022-09-12 17:25:32 +0100 | [diff] [blame] | 2 | * Copyright (c) 2020-2022, Arm Limited. All rights reserved. |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | /dts-v1/; |
| 8 | |
| 9 | / { |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 10 | compatible = "arm,tc"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 11 | interrupt-parent = <&gic>; |
| 12 | #address-cells = <2>; |
| 13 | #size-cells = <2>; |
| 14 | |
| 15 | aliases { |
| 16 | serial0 = &soc_uart0; |
| 17 | }; |
| 18 | |
| 19 | chosen { |
Nikos Nikoleris | 35800bd | 2021-01-21 13:50:25 +0000 | [diff] [blame] | 20 | stdout-path = "serial0:115200n8"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 21 | }; |
| 22 | |
| 23 | cpus { |
| 24 | #address-cells = <1>; |
| 25 | #size-cells = <0>; |
| 26 | |
| 27 | cpu-map { |
| 28 | cluster0 { |
| 29 | core0 { |
| 30 | cpu = <&CPU0>; |
| 31 | }; |
| 32 | core1 { |
| 33 | cpu = <&CPU1>; |
| 34 | }; |
| 35 | core2 { |
| 36 | cpu = <&CPU2>; |
| 37 | }; |
| 38 | core3 { |
| 39 | cpu = <&CPU3>; |
| 40 | }; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 41 | core4 { |
| 42 | cpu = <&CPU4>; |
| 43 | }; |
| 44 | core5 { |
| 45 | cpu = <&CPU5>; |
| 46 | }; |
| 47 | core6 { |
| 48 | cpu = <&CPU6>; |
| 49 | }; |
| 50 | core7 { |
| 51 | cpu = <&CPU7>; |
| 52 | }; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 53 | }; |
| 54 | }; |
| 55 | |
Usama Arif | 5790078 | 2020-08-12 17:14:37 +0100 | [diff] [blame] | 56 | /* |
| 57 | * The timings below are just to demonstrate working cpuidle. |
| 58 | * These values may be inaccurate. |
| 59 | */ |
| 60 | idle-states { |
| 61 | entry-method = "arm,psci"; |
| 62 | |
| 63 | CPU_SLEEP_0: cpu-sleep-0 { |
| 64 | compatible = "arm,idle-state"; |
| 65 | arm,psci-suspend-param = <0x0010000>; |
| 66 | local-timer-stop; |
| 67 | entry-latency-us = <300>; |
| 68 | exit-latency-us = <1200>; |
| 69 | min-residency-us = <2000>; |
| 70 | }; |
| 71 | CLUSTER_SLEEP_0: cluster-sleep-0 { |
| 72 | compatible = "arm,idle-state"; |
| 73 | arm,psci-suspend-param = <0x1010000>; |
| 74 | local-timer-stop; |
| 75 | entry-latency-us = <400>; |
| 76 | exit-latency-us = <1200>; |
| 77 | min-residency-us = <2500>; |
| 78 | }; |
| 79 | }; |
| 80 | |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 81 | amus { |
| 82 | amu: amu-0 { |
| 83 | #address-cells = <1>; |
| 84 | #size-cells = <0>; |
| 85 | |
| 86 | mpmm_gear0: counter@0 { |
| 87 | reg = <0>; |
| 88 | |
| 89 | enable-at-el3; |
| 90 | }; |
| 91 | |
| 92 | mpmm_gear1: counter@1 { |
| 93 | reg = <1>; |
| 94 | |
| 95 | enable-at-el3; |
| 96 | }; |
| 97 | |
| 98 | mpmm_gear2: counter@2 { |
| 99 | reg = <2>; |
| 100 | |
| 101 | enable-at-el3; |
| 102 | }; |
| 103 | }; |
| 104 | }; |
| 105 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 106 | CPU0:cpu@0 { |
| 107 | device_type = "cpu"; |
| 108 | compatible = "arm,armv8"; |
| 109 | reg = <0x0>; |
| 110 | enable-method = "psci"; |
| 111 | clocks = <&scmi_dvfs 0>; |
Usama Arif | 5790078 | 2020-08-12 17:14:37 +0100 | [diff] [blame] | 112 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 113 | capacity-dmips-mhz = <406>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 114 | amu = <&amu>; |
| 115 | supports-mpmm; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | CPU1:cpu@100 { |
| 119 | device_type = "cpu"; |
| 120 | compatible = "arm,armv8"; |
| 121 | reg = <0x100>; |
| 122 | enable-method = "psci"; |
| 123 | clocks = <&scmi_dvfs 0>; |
Usama Arif | 5790078 | 2020-08-12 17:14:37 +0100 | [diff] [blame] | 124 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 125 | capacity-dmips-mhz = <406>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 126 | amu = <&amu>; |
| 127 | supports-mpmm; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 128 | }; |
| 129 | |
| 130 | CPU2:cpu@200 { |
| 131 | device_type = "cpu"; |
| 132 | compatible = "arm,armv8"; |
| 133 | reg = <0x200>; |
| 134 | enable-method = "psci"; |
| 135 | clocks = <&scmi_dvfs 0>; |
Usama Arif | 5790078 | 2020-08-12 17:14:37 +0100 | [diff] [blame] | 136 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 137 | capacity-dmips-mhz = <406>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 138 | amu = <&amu>; |
| 139 | supports-mpmm; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | CPU3:cpu@300 { |
| 143 | device_type = "cpu"; |
| 144 | compatible = "arm,armv8"; |
| 145 | reg = <0x300>; |
| 146 | enable-method = "psci"; |
| 147 | clocks = <&scmi_dvfs 0>; |
Usama Arif | 5790078 | 2020-08-12 17:14:37 +0100 | [diff] [blame] | 148 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 149 | capacity-dmips-mhz = <406>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 150 | amu = <&amu>; |
| 151 | supports-mpmm; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 152 | }; |
| 153 | |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 154 | CPU4:cpu@400 { |
| 155 | device_type = "cpu"; |
| 156 | compatible = "arm,armv8"; |
| 157 | reg = <0x400>; |
| 158 | enable-method = "psci"; |
Usama Arif | 75edb75 | 2021-02-03 15:40:46 +0000 | [diff] [blame] | 159 | clocks = <&scmi_dvfs 1>; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 160 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 161 | capacity-dmips-mhz = <912>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 162 | amu = <&amu>; |
| 163 | supports-mpmm; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | CPU5:cpu@500 { |
| 167 | device_type = "cpu"; |
| 168 | compatible = "arm,armv8"; |
| 169 | reg = <0x500>; |
| 170 | enable-method = "psci"; |
Usama Arif | 75edb75 | 2021-02-03 15:40:46 +0000 | [diff] [blame] | 171 | clocks = <&scmi_dvfs 1>; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 172 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 173 | capacity-dmips-mhz = <912>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 174 | amu = <&amu>; |
| 175 | supports-mpmm; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | CPU6:cpu@600 { |
| 179 | device_type = "cpu"; |
| 180 | compatible = "arm,armv8"; |
| 181 | reg = <0x600>; |
| 182 | enable-method = "psci"; |
Usama Arif | 75edb75 | 2021-02-03 15:40:46 +0000 | [diff] [blame] | 183 | clocks = <&scmi_dvfs 1>; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 184 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 185 | capacity-dmips-mhz = <912>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 186 | amu = <&amu>; |
| 187 | supports-mpmm; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | CPU7:cpu@700 { |
| 191 | device_type = "cpu"; |
| 192 | compatible = "arm,armv8"; |
| 193 | reg = <0x700>; |
| 194 | enable-method = "psci"; |
Usama Arif | 410d50d | 2021-04-07 11:48:22 +0100 | [diff] [blame] | 195 | clocks = <&scmi_dvfs 2>; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 196 | cpu-idle-states = <&CPU_SLEEP_0 &CLUSTER_SLEEP_0>; |
Usama Arif | ecbc846 | 2021-06-14 12:38:37 +0100 | [diff] [blame] | 197 | capacity-dmips-mhz = <1024>; |
Chris Kay | c2d29ba | 2021-05-18 18:49:51 +0100 | [diff] [blame] | 198 | amu = <&amu>; |
| 199 | supports-mpmm; |
Avinash Mehta | f68a084 | 2020-10-28 16:43:28 +0000 | [diff] [blame] | 200 | }; |
| 201 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 202 | }; |
| 203 | |
Arunachalam Ganapathy | 948bb44 | 2020-12-14 12:31:32 +0000 | [diff] [blame] | 204 | reserved-memory { |
| 205 | #address-cells = <2>; |
| 206 | #size-cells = <2>; |
| 207 | ranges; |
| 208 | |
Anders Dellien | a6c9b72 | 2021-12-08 21:57:21 +0000 | [diff] [blame] | 209 | linux,cma { |
| 210 | compatible = "shared-dma-pool"; |
| 211 | reusable; |
| 212 | size = <0x0 0x8000000>; |
| 213 | linux,cma-default; |
| 214 | }; |
| 215 | |
Arunachalam Ganapathy | 948bb44 | 2020-12-14 12:31:32 +0000 | [diff] [blame] | 216 | optee@0xfce00000 { |
| 217 | reg = <0x00000000 0xfce00000 0 0x00200000>; |
| 218 | no-map; |
| 219 | }; |
| 220 | }; |
| 221 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 222 | psci { |
Usama Arif | 7a64bfa | 2021-05-27 20:09:17 +0100 | [diff] [blame] | 223 | compatible = "arm,psci-1.0", "arm,psci-0.2"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 224 | method = "smc"; |
| 225 | }; |
| 226 | |
| 227 | sram: sram@6000000 { |
| 228 | compatible = "mmio-sram"; |
| 229 | reg = <0x0 0x06000000 0x0 0x8000>; |
| 230 | |
| 231 | #address-cells = <1>; |
| 232 | #size-cells = <1>; |
| 233 | ranges = <0 0x0 0x06000000 0x8000>; |
| 234 | |
| 235 | cpu_scp_scmi_mem: scp-shmem@0 { |
| 236 | compatible = "arm,scmi-shmem"; |
| 237 | reg = <0x0 0x80>; |
| 238 | }; |
| 239 | }; |
| 240 | |
| 241 | mbox_db_rx: mhu@45010000 { |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 242 | compatible = "arm,mhuv2-rx","arm,primecell"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 243 | reg = <0x0 0x45010000 0x0 0x1000>; |
| 244 | clocks = <&soc_refclk100mhz>; |
| 245 | clock-names = "apb_pclk"; |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 246 | #mbox-cells = <2>; |
Usama Arif | 884f40d | 2020-08-18 12:56:44 +0100 | [diff] [blame] | 247 | interrupts = <0 317 4>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 248 | interrupt-names = "mhu_rx"; |
| 249 | mhu-protocol = "doorbell"; |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 250 | arm,mhuv2-protocols = <0 1>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 251 | }; |
| 252 | |
| 253 | mbox_db_tx: mhu@45000000 { |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 254 | compatible = "arm,mhuv2-tx","arm,primecell"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 255 | reg = <0x0 0x45000000 0x0 0x1000>; |
| 256 | clocks = <&soc_refclk100mhz>; |
| 257 | clock-names = "apb_pclk"; |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 258 | #mbox-cells = <2>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 259 | interrupt-names = "mhu_tx"; |
| 260 | mhu-protocol = "doorbell"; |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 261 | arm,mhuv2-protocols = <0 1>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 262 | }; |
| 263 | |
Rupinderjit Singh | 8c90196 | 2022-02-22 21:50:33 +0000 | [diff] [blame] | 264 | cmn-pmu { |
| 265 | compatible = "arm,ci-700"; |
| 266 | reg = <0x0 0x50000000 0x0 0x10000000>; |
| 267 | interrupts = <0x0 460 0x4>; |
| 268 | }; |
| 269 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 270 | scmi { |
| 271 | compatible = "arm,scmi"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 272 | mbox-names = "tx", "rx"; |
Usama Arif | b315c70 | 2021-05-27 20:01:39 +0100 | [diff] [blame] | 273 | mboxes = <&mbox_db_tx 0 0 &mbox_db_rx 0 0 >; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 274 | shmem = <&cpu_scp_scmi_mem &cpu_scp_scmi_mem>; |
| 275 | #address-cells = <1>; |
| 276 | #size-cells = <0>; |
| 277 | |
| 278 | scmi_dvfs: protocol@13 { |
| 279 | reg = <0x13>; |
| 280 | #clock-cells = <1>; |
| 281 | }; |
| 282 | |
| 283 | scmi_clk: protocol@14 { |
| 284 | reg = <0x14>; |
| 285 | #clock-cells = <1>; |
| 286 | }; |
| 287 | }; |
| 288 | |
| 289 | gic: interrupt-controller@2c010000 { |
| 290 | compatible = "arm,gic-600", "arm,gic-v3"; |
| 291 | #address-cells = <2>; |
| 292 | #interrupt-cells = <3>; |
| 293 | #size-cells = <2>; |
| 294 | ranges; |
| 295 | interrupt-controller; |
| 296 | reg = <0x0 0x30000000 0 0x10000>, /* GICD */ |
Usama Arif | fdfd250 | 2021-03-30 16:39:19 +0100 | [diff] [blame] | 297 | <0x0 0x30080000 0 0x200000>; /* GICR */ |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 298 | interrupts = <0x1 0x9 0x4>; |
| 299 | }; |
| 300 | |
| 301 | timer { |
| 302 | compatible = "arm,armv8-timer"; |
| 303 | interrupts = <0x1 13 0x8>, |
| 304 | <0x1 14 0x8>, |
| 305 | <0x1 11 0x8>, |
| 306 | <0x1 10 0x8>; |
| 307 | }; |
| 308 | |
| 309 | soc_refclk100mhz: refclk100mhz { |
| 310 | compatible = "fixed-clock"; |
| 311 | #clock-cells = <0>; |
| 312 | clock-frequency = <100000000>; |
| 313 | clock-output-names = "apb_pclk"; |
| 314 | }; |
| 315 | |
| 316 | soc_refclk60mhz: refclk60mhz { |
| 317 | compatible = "fixed-clock"; |
| 318 | #clock-cells = <0>; |
| 319 | clock-frequency = <60000000>; |
| 320 | clock-output-names = "iofpga_clk"; |
| 321 | }; |
| 322 | |
| 323 | soc_uartclk: uartclk { |
| 324 | compatible = "fixed-clock"; |
| 325 | #clock-cells = <0>; |
| 326 | clock-frequency = <50000000>; |
| 327 | clock-output-names = "uartclk"; |
| 328 | }; |
| 329 | |
| 330 | soc_uart0: uart@7ff80000 { |
| 331 | compatible = "arm,pl011", "arm,primecell"; |
| 332 | reg = <0x0 0x7ff80000 0x0 0x1000>; |
| 333 | interrupts = <0x0 116 0x4>; |
| 334 | clocks = <&soc_uartclk>, <&soc_refclk100mhz>; |
| 335 | clock-names = "uartclk", "apb_pclk"; |
| 336 | status = "okay"; |
| 337 | }; |
| 338 | |
Jayanth Dodderi Chidanand | 2858cf5 | 2022-09-28 11:41:48 +0100 | [diff] [blame] | 339 | rtc0: rtc@1C170000 { |
| 340 | compatible = "arm,pl031", "arm,primecell"; |
| 341 | reg = <0x0 0x1C170000 0x0 0x1000>; |
| 342 | interrupts = <0x0 100 0x4>; |
| 343 | clocks = <&soc_refclk100mhz>; |
| 344 | clock-names = "apb_pclk"; |
| 345 | wakeup-source; |
| 346 | }; |
Rupinderjit Singh | d2d0298 | 2022-09-12 17:25:32 +0100 | [diff] [blame] | 347 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 348 | vencoder { |
| 349 | compatible = "drm,virtual-encoder"; |
| 350 | |
| 351 | port { |
| 352 | vencoder_in: endpoint { |
Avinash Mehta | df71a60 | 2020-07-22 16:40:07 +0100 | [diff] [blame] | 353 | remote-endpoint = <&dp_pl0_out0>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 354 | }; |
| 355 | }; |
| 356 | |
| 357 | display-timings { |
| 358 | panel-timing { |
| 359 | clock-frequency = <25175000>; |
| 360 | hactive = <640>; |
| 361 | vactive = <480>; |
| 362 | hfront-porch = <16>; |
| 363 | hback-porch = <48>; |
| 364 | hsync-len = <96>; |
| 365 | vfront-porch = <10>; |
| 366 | vback-porch = <33>; |
| 367 | vsync-len = <2>; |
| 368 | }; |
| 369 | }; |
| 370 | |
| 371 | }; |
| 372 | |
| 373 | hdlcd: hdlcd@7ff60000 { |
| 374 | compatible = "arm,hdlcd"; |
| 375 | reg = <0x0 0x7ff60000 0x0 0x1000>; |
| 376 | interrupts = <0x0 117 0x4>; |
| 377 | clocks = <&fake_hdlcd_clk>; |
| 378 | clock-names = "pxlclk"; |
Avinash Mehta | df71a60 | 2020-07-22 16:40:07 +0100 | [diff] [blame] | 379 | status = "disabled"; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 380 | |
| 381 | port { |
| 382 | hdlcd_out: endpoint { |
| 383 | remote-endpoint = <&vencoder_in>; |
| 384 | }; |
| 385 | }; |
| 386 | }; |
| 387 | |
| 388 | fake_hdlcd_clk: fake-hdlcd-clk { |
| 389 | compatible = "fixed-clock"; |
| 390 | #clock-cells = <0>; |
| 391 | clock-frequency = <25175000>; |
| 392 | clock-output-names = "pxlclk"; |
| 393 | }; |
| 394 | |
| 395 | ethernet@18000000 { |
| 396 | compatible = "smsc,lan91c111"; |
| 397 | reg = <0x0 0x18000000 0x0 0x10000>; |
| 398 | interrupts = <0 109 4>; |
| 399 | }; |
| 400 | |
| 401 | kmi@1c060000 { |
| 402 | compatible = "arm,pl050", "arm,primecell"; |
| 403 | reg = <0x0 0x001c060000 0x0 0x1000>; |
| 404 | interrupts = <0 197 4>; |
| 405 | clocks = <&bp_clock24mhz>, <&bp_clock24mhz>; |
| 406 | clock-names = "KMIREFCLK", "apb_pclk"; |
| 407 | }; |
| 408 | |
| 409 | kmi@1c070000 { |
| 410 | compatible = "arm,pl050", "arm,primecell"; |
| 411 | reg = <0x0 0x001c070000 0x0 0x1000>; |
| 412 | interrupts = <0 103 4>; |
| 413 | clocks = <&bp_clock24mhz>, <&bp_clock24mhz>; |
| 414 | clock-names = "KMIREFCLK", "apb_pclk"; |
| 415 | }; |
| 416 | |
| 417 | bp_clock24mhz: clock24mhz { |
| 418 | compatible = "fixed-clock"; |
| 419 | #clock-cells = <0>; |
| 420 | clock-frequency = <24000000>; |
| 421 | clock-output-names = "bp:clock24mhz"; |
| 422 | }; |
| 423 | |
| 424 | virtio_block@1c130000 { |
| 425 | compatible = "virtio,mmio"; |
| 426 | reg = <0x0 0x1c130000 0x0 0x200>; |
| 427 | interrupts = <0 204 4>; |
| 428 | }; |
| 429 | |
Usama Arif | 1cd56dc | 2020-06-10 16:27:53 +0100 | [diff] [blame] | 430 | sysreg: sysreg@1c010000 { |
| 431 | compatible = "arm,vexpress-sysreg"; |
| 432 | reg = <0x0 0x001c010000 0x0 0x1000>; |
| 433 | gpio-controller; |
| 434 | #gpio-cells = <2>; |
| 435 | }; |
| 436 | |
| 437 | fixed_3v3: v2m-3v3 { |
| 438 | compatible = "regulator-fixed"; |
| 439 | regulator-name = "3V3"; |
| 440 | regulator-min-microvolt = <3300000>; |
| 441 | regulator-max-microvolt = <3300000>; |
| 442 | regulator-always-on; |
| 443 | }; |
| 444 | |
| 445 | mmci@1c050000 { |
| 446 | compatible = "arm,pl180", "arm,primecell"; |
| 447 | reg = <0x0 0x001c050000 0x0 0x1000>; |
| 448 | interrupts = <0 107 0x4>, |
| 449 | <0 108 0x4>; |
| 450 | cd-gpios = <&sysreg 0 0>; |
| 451 | wp-gpios = <&sysreg 1 0>; |
| 452 | bus-width = <8>; |
| 453 | max-frequency = <12000000>; |
| 454 | vmmc-supply = <&fixed_3v3>; |
| 455 | clocks = <&bp_clock24mhz>, <&bp_clock24mhz>; |
| 456 | clock-names = "mclk", "apb_pclk"; |
| 457 | }; |
| 458 | |
Anders Dellien | 7a84980 | 2022-01-01 21:51:21 +0000 | [diff] [blame] | 459 | gpu: gpu@2d000000 { |
| 460 | compatible = "arm,mali-midgard"; |
| 461 | reg = <0x0 0x2d000000 0x0 0x200000>; |
| 462 | interrupts = <0 66 4>, <0 67 4>, <0 65 4>; |
| 463 | interrupt-names = "JOB", "MMU", "GPU"; |
| 464 | clocks = <&soc_refclk100mhz>; |
| 465 | clock-names = "clk_mali"; |
| 466 | operating-points = < |
| 467 | /* KHz uV */ |
| 468 | 50000 820000 |
| 469 | >; |
| 470 | }; |
| 471 | |
Anders Dellien | a191413 | 2022-01-01 21:56:25 +0000 | [diff] [blame] | 472 | smmu: smmu@2ce00000 { |
| 473 | #iommu-cells = <1>; |
| 474 | compatible = "arm,smmu-v3"; |
| 475 | reg = <0x0 0x2ce00000 0x0 0x20000>; |
| 476 | status = "okay"; |
| 477 | }; |
| 478 | |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 479 | dp0: display@2cc00000 { |
| 480 | #address-cells = <1>; |
| 481 | #size-cells = <0>; |
| 482 | compatible = "arm,mali-d71"; |
| 483 | reg = <0 0x2cc00000 0 0x20000>; |
| 484 | interrupts = <0 69 4>; |
| 485 | interrupt-names = "DPU"; |
| 486 | clocks = <&scmi_clk 0>; |
| 487 | clock-names = "aclk"; |
Anders Dellien | a191413 | 2022-01-01 21:56:25 +0000 | [diff] [blame] | 488 | iommus = <&smmu 0>, <&smmu 1>, <&smmu 2>, <&smmu 3>, |
| 489 | <&smmu 4>, <&smmu 5>, <&smmu 6>, <&smmu 7>, |
| 490 | <&smmu 8>, <&smmu 9>; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 491 | pl0: pipeline@0 { |
| 492 | reg = <0>; |
| 493 | clocks = <&scmi_clk 1>; |
| 494 | clock-names = "pxclk"; |
| 495 | pl_id = <0>; |
| 496 | ports { |
| 497 | #address-cells = <1>; |
| 498 | #size-cells = <0>; |
| 499 | port@0 { |
| 500 | reg = <0>; |
| 501 | dp_pl0_out0: endpoint { |
| 502 | remote-endpoint = <&vencoder_in>; |
| 503 | }; |
| 504 | }; |
| 505 | }; |
| 506 | }; |
| 507 | |
| 508 | pl1: pipeline@1 { |
| 509 | reg = <1>; |
| 510 | clocks = <&scmi_clk 2>; |
| 511 | clock-names = "pxclk"; |
| 512 | pl_id = <1>; |
| 513 | ports { |
| 514 | #address-cells = <1>; |
| 515 | #size-cells = <0>; |
| 516 | port@0 { |
| 517 | reg = <0>; |
| 518 | }; |
| 519 | }; |
| 520 | }; |
| 521 | }; |
Arunachalam Ganapathy | c44e43d | 2020-11-17 15:05:01 +0000 | [diff] [blame] | 522 | |
Davidson K | 6536105 | 2021-10-13 18:49:41 +0530 | [diff] [blame] | 523 | ete0 { |
| 524 | compatible = "arm,embedded-trace-extension"; |
| 525 | cpu = <&CPU0>; |
| 526 | }; |
| 527 | |
| 528 | ete1 { |
| 529 | compatible = "arm,embedded-trace-extension"; |
| 530 | cpu = <&CPU1>; |
| 531 | }; |
| 532 | |
| 533 | ete2 { |
| 534 | compatible = "arm,embedded-trace-extension"; |
| 535 | cpu = <&CPU2>; |
| 536 | }; |
| 537 | |
| 538 | ete3 { |
| 539 | compatible = "arm,embedded-trace-extension"; |
| 540 | cpu = <&CPU3>; |
| 541 | }; |
| 542 | |
| 543 | ete4 { |
| 544 | compatible = "arm,embedded-trace-extension"; |
| 545 | cpu = <&CPU4>; |
| 546 | }; |
| 547 | |
| 548 | ete5 { |
| 549 | compatible = "arm,embedded-trace-extension"; |
| 550 | cpu = <&CPU5>; |
| 551 | }; |
| 552 | |
| 553 | ete6 { |
| 554 | compatible = "arm,embedded-trace-extension"; |
| 555 | cpu = <&CPU6>; |
| 556 | }; |
| 557 | |
| 558 | ete7 { |
| 559 | compatible = "arm,embedded-trace-extension"; |
| 560 | cpu = <&CPU7>; |
| 561 | }; |
| 562 | |
| 563 | trbe0 { |
| 564 | compatible = "arm,trace-buffer-extension"; |
| 565 | interrupts = <1 2 4>; |
| 566 | }; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 567 | }; |