]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - Documentation/devicetree/bindings/display/panel/panel-simple-dsi.yaml
f2698d7c09e69833fe229841cfb292203aacf5f6
[mirror_ubuntu-hirsute-kernel.git] / Documentation / devicetree / bindings / display / panel / panel-simple-dsi.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/panel-simple-dsi.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Simple DSI panels with a single power-supply
8
9 maintainers:
10 - Thierry Reding <thierry.reding@gmail.com>
11 - Sam Ravnborg <sam@ravnborg.org>
12
13 description: |
14 This binding file is a collection of the DSI panels that
15 requires only a single power-supply.
16 There are optionally a backlight and an enable GPIO.
17 The panel may use an OF graph binding for the association to the display,
18 or it may be a direct child node of the display.
19
20 If the panel is more advanced a dedicated binding file is required.
21
22 allOf:
23 - $ref: panel-common.yaml#
24
25 properties:
26
27 compatible:
28 enum:
29 # compatible must be listed in alphabetical order, ordered by compatible.
30 # The description in the comment is mandatory for each compatible.
31
32 # Kingdisplay KD097D04 9.7" 1536x2048 TFT LCD panel
33 - kingdisplay,kd097d04
34 # One Stop Displays OSD101T2587-53TS 10.1" 1920x1200 panel
35 - osddisplays,osd101t2587-53ts
36 # Panasonic 10" WUXGA TFT LCD panel
37 - panasonic,vvx10f034n00
38
39 reg:
40 maxItems: 1
41 description: DSI virtual channel
42
43 backlight: true
44 enable-gpios: true
45 port: true
46 power-supply: true
47
48 additionalProperties: false
49
50 required:
51 - compatible
52 - power-supply
53 - reg
54
55 examples:
56 - |
57 dsi {
58 #address-cells = <1>;
59 #size-cells = <0>;
60 panel@0 {
61 compatible = "panasonic,vvx10f034n00";
62 reg = <0>;
63 power-supply = <&vcc_lcd_reg>;
64
65 port {
66 panel: endpoint {
67 remote-endpoint = <&ltdc_out>;
68 };
69 };
70 };
71 };