Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / Documentation / devicetree / bindings / interrupt-controller / google,goldfish-pic.txt
blob35f752706e7d6ba9e70158effce6d3ba87414dbc
1 Android Goldfish PIC
3 Android Goldfish programmable interrupt device used by Android
4 emulator.
6 Required properties:
8 - compatible : should contain "google,goldfish-pic"
9 - reg        : <registers mapping>
10 - interrupts : <interrupt mapping>
12 Example for mips when used in cascade mode:
14         cpuintc {
15                 #interrupt-cells = <0x1>;
16                 #address-cells = <0>;
17                 interrupt-controller;
18                 compatible = "mti,cpu-interrupt-controller";
19         };
21         interrupt-controller@1f000000 {
22                 compatible = "google,goldfish-pic";
23                 reg = <0x1f000000 0x1000>;
25                 interrupt-controller;
26                 #interrupt-cells = <0x1>;
28                 interrupt-parent = <&cpuintc>;
29                 interrupts = <0x2>;
30         };