xref: /linux/Documentation/devicetree/bindings/misc/google,android-pipe.yaml (revision 94c37d42cb7ca362aee9633bec2dbeed787edf3e)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/misc/google,android-pipe.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Android Goldfish QEMU Pipe
8
9maintainers:
10  - Kuan-Wei Chiu <visitorckw@gmail.com>
11
12description:
13  Android QEMU pipe virtual device generated by Android emulator.
14
15properties:
16  compatible:
17    const: google,android-pipe
18
19  reg:
20    maxItems: 1
21
22  interrupts:
23    maxItems: 1
24
25required:
26  - compatible
27  - reg
28  - interrupts
29
30additionalProperties: false
31
32examples:
33  - |
34    pipe@ff018000 {
35        compatible = "google,android-pipe";
36        reg = <0xff018000 0x2000>;
37        interrupts = <18>;
38    };
39