google,goldfish-tty.yaml 744 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/serial/google,goldfish-tty.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Google Goldfish TTY
  7. maintainers:
  8. - Kuan-Wei Chiu <visitorckw@gmail.com>
  9. allOf:
  10. - $ref: /schemas/serial/serial.yaml#
  11. description:
  12. Android goldfish TTY device generated by Android emulator.
  13. properties:
  14. compatible:
  15. const: google,goldfish-tty
  16. reg:
  17. maxItems: 1
  18. interrupts:
  19. maxItems: 1
  20. required:
  21. - compatible
  22. - reg
  23. - interrupts
  24. unevaluatedProperties: false
  25. examples:
  26. - |
  27. serial@1f004000 {
  28. compatible = "google,goldfish-tty";
  29. reg = <0x1f004000 0x1000>;
  30. interrupts = <12>;
  31. };