Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / Documentation / devicetree / bindings / interrupt-controller / snps,archs-idu-intc.txt
blob8b46a34e05f1793fd159e40862891947cbeedb69
1 * ARC-HS Interrupt Distribution Unit
3   This optional 2nd level interrupt controller can be used in SMP configurations for
4   dynamic IRQ routing, load balancing of common/external IRQs towards core intc.
6 Properties:
8 - compatible: "snps,archs-idu-intc"
9 - interrupt-controller: This is an interrupt controller.
10 - interrupt-parent: <reference to parent core intc>
11 - #interrupt-cells: Must be <1>.
13   Value of the cell specifies the "common" IRQ from peripheral to IDU. Number N
14   of the particular interrupt line of IDU corresponds to the line N+24 of the
15   core interrupt controller.
17   intc accessed via the special ARC AUX register interface, hence "reg" property
18   is not specified.
20 Example:
21         core_intc: core-interrupt-controller {
22                 compatible = "snps,archs-intc";
23                 interrupt-controller;
24                 #interrupt-cells = <1>;
25         };
27         idu_intc: idu-interrupt-controller {
28                 compatible = "snps,archs-idu-intc";
29                 interrupt-controller;
30                 interrupt-parent = <&core_intc>;
31                 #interrupt-cells = <1>;
32         };
34         some_device: serial@c0fc1000 {
35                 interrupt-parent = <&idu_intc>;
36                 interrupts = <0>;       /* upstream idu IRQ #24 */
37         };