google,goldfish-fb.yaml 706 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/display/google,goldfish-fb.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Android Goldfish Framebuffer
  7. maintainers:
  8. - Kuan-Wei Chiu <visitorckw@gmail.com>
  9. description:
  10. Android Goldfish framebuffer device used by Android emulator.
  11. properties:
  12. compatible:
  13. const: google,goldfish-fb
  14. reg:
  15. maxItems: 1
  16. interrupts:
  17. maxItems: 1
  18. required:
  19. - compatible
  20. - reg
  21. - interrupts
  22. additionalProperties: false
  23. examples:
  24. - |
  25. display@1f008000 {
  26. compatible = "google,goldfish-fb";
  27. reg = <0x1f008000 0x100>;
  28. interrupts = <16>;
  29. };