xref: /linux/Documentation/devicetree/bindings/display/google,goldfish-fb.yaml (revision be1ca3ee8f97067fee87fda73ea5959d5ab75bbf)
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
7title: Android Goldfish Framebuffer
8
9maintainers:
10  - Kuan-Wei Chiu <visitorckw@gmail.com>
11
12description:
13  Android Goldfish framebuffer device used by Android emulator.
14
15properties:
16  compatible:
17    const: google,goldfish-fb
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    display@1f008000 {
35        compatible = "google,goldfish-fb";
36        reg = <0x1f008000 0x100>;
37        interrupts = <16>;
38    };
39