google,goldfish-pic.txt 806 B

123456789101112131415161718192021222324252627282930
  1. Android Goldfish PIC
  2. Android Goldfish programmable interrupt device used by Android
  3. emulator.
  4. Required properties:
  5. - compatible : should contain "google,goldfish-pic"
  6. - reg : <registers mapping>
  7. - interrupts : <interrupt mapping>
  8. Example for mips when used in cascade mode:
  9. cpuintc {
  10. #interrupt-cells = <0x1>;
  11. #address-cells = <0>;
  12. interrupt-controller;
  13. compatible = "mti,cpu-interrupt-controller";
  14. };
  15. interrupt-controller@1f000000 {
  16. compatible = "google,goldfish-pic";
  17. reg = <0x1f000000 0x1000>;
  18. interrupt-controller;
  19. #interrupt-cells = <0x1>;
  20. interrupt-parent = <&cpuintc>;
  21. interrupts = <0x2>;
  22. };