xref: /linux/Documentation/devicetree/bindings/serial/google,goldfish-tty.yaml (revision c17ee635fd3a482b2ad2bf5e269755c2eae5f25e)
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
7title: Google Goldfish TTY
8
9maintainers:
10  - Kuan-Wei Chiu <visitorckw@gmail.com>
11
12allOf:
13  - $ref: /schemas/serial/serial.yaml#
14
15description:
16  Android goldfish TTY device generated by Android emulator.
17
18properties:
19  compatible:
20    const: google,goldfish-tty
21
22  reg:
23    maxItems: 1
24
25  interrupts:
26    maxItems: 1
27
28required:
29  - compatible
30  - reg
31  - interrupts
32
33unevaluatedProperties: false
34
35examples:
36  - |
37    serial@1f004000 {
38        compatible = "google,goldfish-tty";
39        reg = <0x1f004000 0x1000>;
40        interrupts = <12>;
41    };
42