fvp-base-gicv3.dtsi 774 B

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