brcm,bcm3380-l2-intc.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. - interrupt-parent: specifies the phandle to the parent interrupt controller
  16. this one is cascaded from
  17. - interrupts: specifies the interrupt line in the interrupt-parent controller
  18. node, valid values depend on the type of parent interrupt controller
  19. Optional properties:
  20. - brcm,irq-can-wake: if present, this means the L2 controller can be used as a
  21. wakeup source for system suspend/resume.
  22. Example:
  23. irq0_intc: interrupt-controller@10000020 {
  24. compatible = "brcm,bcm3380-l2-intc";
  25. reg = <0x10000024 0x4 0x1000002c 0x4>,
  26. <0x10000020 0x4 0x10000028 0x4>;
  27. interrupt-controller;
  28. #interrupt-cells = <1>;
  29. interrupt-parent = <&cpu_intc>;
  30. interrupts = <2>;
  31. };