jcore,aic.txt 744 B

123456789101112131415161718192021222324252627
  1. J-Core Advanced Interrupt Controller
  2. Required properties:
  3. - compatible: Should be "jcore,aic1" for the (obsolete) first-generation aic
  4. with 8 interrupt lines with programmable priorities, or "jcore,aic2" for
  5. the "aic2" core with 64 interrupts.
  6. - reg: Memory region(s) for configuration. For SMP, there should be one
  7. region per cpu, indexed by the sequential, zero-based hardware cpu
  8. number.
  9. - interrupt-controller: Identifies the node as an interrupt controller
  10. - #interrupt-cells: Specifies the number of cells needed to encode an
  11. interrupt source. The value shall be 1.
  12. Example:
  13. aic: interrupt-controller@200 {
  14. compatible = "jcore,aic2";
  15. reg = < 0x200 0x30 0x500 0x30 >;
  16. interrupt-controller;
  17. #interrupt-cells = <1>;
  18. };