blob: fdcfa925b30687c769f6b3e1dea8bd37e22248c2 [file] [log] [blame]
Andre Przywarafa23ada2022-08-19 11:00:37 +01001/*
2 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/* GICv3 with ITS configuration */
8
9/ {
10 gic: interrupt-controller@2f000000 {
11 compatible = "arm,gic-v3";
12 #interrupt-cells = <3>;
13 #address-cells = <1>;
14 #size-cells = <1>;
15 ranges = <0x0 0x0 0x2f000000 0x100000>;
16 interrupt-controller;
17 reg = <0x0 0x2f000000 0 0x10000>, // GICD
18 <0x0 0x2f100000 0 0x200000>, // GICR
19 <0x0 0x2c000000 0 0x2000>, // GICC
20 <0x0 0x2c010000 0 0x2000>, // GICH
21 <0x0 0x2c02f000 0 0x2000>; // GICV
22 interrupts = <1 9 4>;
23
24 its: msi-controller@2f020000 {
25 compatible = "arm,gic-v3-its";
26 msi-controller;
27 #msi-cells = <1>;
28 reg = <0x20000 0x20000>; // GITS
29 };
30 };
31};