brcm,l2-intc.txt 936 B

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