ciu.txt 756 B

1234567891011121314151617181920212223242526
  1. * Central Interrupt Unit
  2. Properties:
  3. - compatible: "cavium,octeon-3860-ciu"
  4. Compatibility with all cn3XXX, cn5XXX and cn63XX 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 of 0 or 1. The second cell is the bit
  9. within the bank and may have a value between 0 and 63.
  10. Example:
  11. interrupt-controller@1070000000000 {
  12. compatible = "cavium,octeon-3860-ciu";
  13. interrupt-controller;
  14. /* Interrupts are specified by two parts:
  15. * 1) Controller register (0 or 1)
  16. * 2) Bit within the register (0..63)
  17. */
  18. #interrupt-cells = <2>;
  19. reg = <0x10700 0x00000000 0x0 0x7000>;
  20. };