marvell,armada-8k-pic.txt 887 B

1234567891011121314151617181920212223242526
  1. Marvell Armada 7K/8K PIC Interrupt controller
  2. ---------------------------------------------
  3. This is the Device Tree binding for the PIC, a secondary interrupt
  4. controller available on the Marvell Armada 7K/8K ARM64 SoCs, and
  5. typically connected to the GIC as the primary interrupt controller.
  6. Required properties:
  7. - compatible: should be "marvell,armada-8k-pic"
  8. - interrupt-controller: identifies the node as an interrupt controller
  9. - #interrupt-cells: the number of cells to define interrupts on this
  10. controller. Should be 1
  11. - reg: the register area for the PIC interrupt controller
  12. - interrupts: the interrupt to the primary interrupt controller,
  13. typically the GIC
  14. Example:
  15. pic: interrupt-controller@3f0100 {
  16. compatible = "marvell,armada-8k-pic";
  17. reg = <0x3f0100 0x10>;
  18. #interrupt-cells = <1>;
  19. interrupt-controller;
  20. interrupts = <GIC_PPI 15 IRQ_TYPE_LEVEL_HIGH>;
  21. };