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