1/*
2 * ARM Ltd.
3 *
4 * ARMv8 Foundation model DTS (GICv3 configuration)
5 */
6
7#include "foundation-v8.dtsi"
8
9/ {
10	gic: interrupt-controller@2f000000 {
11		compatible = "arm,gic-v3";
12		#interrupt-cells = <3>;
13		#address-cells = <2>;
14		#size-cells = <2>;
15		ranges;
16		interrupt-controller;
17		reg =	<0x0 0x2f000000 0x0 0x10000>,
18			<0x0 0x2f100000 0x0 0x200000>,
19			<0x0 0x2c000000 0x0 0x2000>,
20			<0x0 0x2c010000 0x0 0x2000>,
21			<0x0 0x2c02f000 0x0 0x2000>;
22		interrupts = <1 9 4>;
23
24		its: its@2f020000 {
25			compatible = "arm,gic-v3-its";
26			msi-controller;
27			reg = <0x0 0x2f020000 0x0 0x20000>;
28		};
29	};
30};
31