Back to home page

OSCL-LXR

 
 

    


0001 Android Goldfish PIC
0002 
0003 Android Goldfish programmable interrupt device used by Android
0004 emulator.
0005 
0006 Required properties:
0007 
0008 - compatible : should contain "google,goldfish-pic"
0009 - reg        : <registers mapping>
0010 - interrupts : <interrupt mapping>
0011 
0012 Example for mips when used in cascade mode:
0013 
0014         cpuintc {
0015                 #interrupt-cells = <0x1>;
0016                 #address-cells = <0>;
0017                 interrupt-controller;
0018                 compatible = "mti,cpu-interrupt-controller";
0019         };
0020 
0021         interrupt-controller@1f000000 {
0022                 compatible = "google,goldfish-pic";
0023                 reg = <0x1f000000 0x1000>;
0024 
0025                 interrupt-controller;
0026                 #interrupt-cells = <0x1>;
0027 
0028                 interrupt-parent = <&cpuintc>;
0029                 interrupts = <0x2>;
0030         };