0001 * ARC-HS incore Interrupt Controller (Provided by cores implementing ARCv2 ISA)
0002
0003 Properties:
0004
0005 - compatible: "snps,archs-intc"
0006 - interrupt-controller: This is an interrupt controller.
0007 - #interrupt-cells: Must be <1>.
0008
0009 Single Cell "interrupts" property of a device specifies the IRQ number
0010 between 16 to 256
0011
0012 intc accessed via the special ARC AUX register interface, hence "reg" property
0013 is not specified.
0014
0015 Example:
0016
0017 intc: interrupt-controller {
0018 compatible = "snps,archs-intc";
0019 interrupt-controller;
0020 #interrupt-cells = <1>;
0021 interrupts = <16 17 18 19 20 21 22 23 24 25>;
0022 };