snps,archs-intc.txt 589 B

12345678910111213141516171819202122
  1. * ARC-HS incore Interrupt Controller (Provided by cores implementing ARCv2 ISA)
  2. Properties:
  3. - compatible: "snps,archs-intc"
  4. - interrupt-controller: This is an interrupt controller.
  5. - #interrupt-cells: Must be <1>.
  6. Single Cell "interrupts" property of a device specifies the IRQ number
  7. between 16 to 256
  8. intc accessed via the special ARC AUX register interface, hence "reg" property
  9. is not specified.
  10. Example:
  11. intc: interrupt-controller {
  12. compatible = "snps,archs-intc";
  13. interrupt-controller;
  14. #interrupt-cells = <1>;
  15. interrupts = <16 17 18 19 20 21 22 23 24 25>;
  16. };