Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/display/google,goldfish-fb.yaml
121834 views
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
7
title: Android Goldfish Framebuffer
8
9
maintainers:
10
- Kuan-Wei Chiu <visitorckw@gmail.com>
11
12
description:
13
Android Goldfish framebuffer device used by Android emulator.
14
15
properties:
16
compatible:
17
const: google,goldfish-fb
18
19
reg:
20
maxItems: 1
21
22
interrupts:
23
maxItems: 1
24
25
required:
26
- compatible
27
- reg
28
- interrupts
29
30
additionalProperties: false
31
32
examples:
33
- |
34
display@1f008000 {
35
compatible = "google,goldfish-fb";
36
reg = <0x1f008000 0x100>;
37
interrupts = <16>;
38
};
39
40