summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/reserved-memory/framebuffer.yaml
blob: 851ec24d6142aaad10916bfdb92e0eda39b0cb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/reserved-memory/framebuffer.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: /reserved-memory framebuffer node

maintainers:
  - devicetree-spec@vger.kernel.org

allOf:
  - $ref: reserved-memory.yaml

properties:
  compatible:
    const: framebuffer
    description: >
      This indicates a region of memory meant to be used as a framebuffer for
      a set of display devices. It can be used by an operating system to keep
      the framebuffer from being overwritten and use it as the backing memory
      for a display device (such as simple-framebuffer).

unevaluatedProperties: false

examples:
  - |
    / {
        compatible = "foo";
        model = "foo";
        #address-cells = <1>;
        #size-cells = <1>;

        chosen {
            framebuffer {
                compatible = "simple-framebuffer";
                memory-region = <&fb>;
            };
        };

        reserved-memory {
            #address-cells = <1>;
            #size-cells = <1>;
            ranges;

            fb: framebuffer@80000000 {
                compatible = "framebuffer";
                reg = <0x80000000 0x007e9000>;
            };
        };
    };
...