brcm,bcm3380-l2-intc.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Broadcom BCM3380-style Level 1 / Level 2 interrupt controller
  2. This interrupt controller shows up in various forms on many BCM338x/BCM63xx
  3. chipsets. It has the following properties:
  4. - outputs a single interrupt signal to its interrupt controller parent
  5. - contains one or more enable/status word pairs, which often appear at
  6. different offsets in different blocks
  7. - no atomic set/clear operations
  8. Required properties:
  9. - compatible: should be "brcm,bcm3380-l2-intc"
  10. - reg: specifies one or more enable/status pairs, in the following format:
  11. <enable_reg 0x4 status_reg 0x4>...
  12. - interrupt-controller: identifies the node as an interrupt controller
  13. - #interrupt-cells: specifies the number of cells needed to encode an interrupt
  14. source, should be 1.
  15. - interrupts: specifies the interrupt line in the interrupt-parent controller
  16. node, valid values depend on the type of parent interrupt controller
  17. Optional properties:
  18. - brcm,irq-can-wake: if present, this means the L2 controller can be used as a
  19. wakeup source for system suspend/resume.
  20. Example:
  21. irq0_intc: interrupt-controller@10000020 {
  22. compatible = "brcm,bcm3380-l2-intc";
  23. reg = <0x10000024 0x4 0x1000002c 0x4>,
  24. <0x10000020 0x4 0x10000028 0x4>;
  25. interrupt-controller;
  26. #interrupt-cells = <1>;
  27. interrupt-parent = <&cpu_intc>;
  28. interrupts = <2>;
  29. };