ciu2.txt 769 B

123456789101112131415161718192021222324252627
  1. * Central Interrupt Unit
  2. Properties:
  3. - compatible: "cavium,octeon-6880-ciu2"
  4. Compatibility with 68XX SOCs.
  5. - interrupt-controller: This is an interrupt controller.
  6. - reg: The base address of the CIU's register bank.
  7. - #interrupt-cells: Must be <2>. The first cell is the bank within
  8. the CIU and may have a value between 0 and 63. The second cell is
  9. the bit within the bank and may also have a value between 0 and 63.
  10. Example:
  11. interrupt-controller@1070100000000 {
  12. compatible = "cavium,octeon-6880-ciu2";
  13. interrupt-controller;
  14. /* Interrupts are specified by two parts:
  15. * 1) Controller register (0..63)
  16. * 2) Bit within the register (0..63)
  17. */
  18. #address-cells = <0>;
  19. #interrupt-cells = <2>;
  20. reg = <0x10701 0x00000000 0x0 0x4000000>;
  21. };