OSDN Git Service

sh: Add I/O DATA HDL-U support drivers.
[uclinux-h8/linux.git] / Documentation / devicetree / bindings / interrupt-controller / iodata-landisk.txt
1 DT bindings for the I/O DATA HDL-U interrupt controler
2
3 Required properties:
4
5   - compatible: has to be "iodata,landisk-intc".
6
7   - reg: Base address and length of interrupt controller register.
8
9   - interrupt-controller: Identifies the node as an interrupt controller.
10
11   - #interrupt-cells: has to be <2>: an interrupt index and flags, as defined
12     in interrupts.txt in this directory.
13
14   - interrupt-map: Interrupt mapping on parent controler.
15
16 Example
17 -------
18
19         cpldintc: cpld@b0000000 {
20                 compatible = "iodata,landisk-intc";
21                 #interrupt-cells = <2>;
22                 interrupt-controller;
23                 reg = <0xb0000000 8>;
24                 interrupt-map=<0 &shintc 0 0>, <1 &shintc 1 0>,
25                               <2 &shintc 2 0>, <3 &shintc 3 0>,
26                               <4 &shintc 4 0>, <5 &shintc 5 0>,
27                               <6 &shintc 6 0>, <7 &shintc 7 0>;
28         };