brcm,l2-intc.txt 938 B

12345678910111213141516171819202122232425262728
  1. Broadcom Generic Level 2 Interrupt Controller
  2. Required properties:
  3. - compatible: should be "brcm,l2-intc" for latched interrupt controllers
  4. should be "brcm,bcm7271-l2-intc" for level interrupt controllers
  5. - reg: specifies the base physical address and size of the registers
  6. - interrupt-controller: identifies the node as an interrupt controller
  7. - #interrupt-cells: specifies the number of cells needed to encode an
  8. interrupt source. Should be 1.
  9. - interrupts: specifies the interrupt line in the interrupt-parent irq space
  10. to be used for cascading
  11. Optional properties:
  12. - brcm,irq-can-wake: If present, this means the L2 controller can be used as a
  13. wakeup source for system suspend/resume.
  14. Example:
  15. hif_intr2_intc: interrupt-controller@f0441000 {
  16. compatible = "brcm,l2-intc";
  17. reg = <0xf0441000 0x30>;
  18. interrupt-controller;
  19. #interrupt-cells = <1>;
  20. interrupt-parent = <&intc>;
  21. interrupts = <0x0 0x20 0x0>;
  22. };