gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / panel / panel-simple-dsi.yaml
blobb2e8742fd6af8cc9f099517f4b7abdd54da5c306
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#
7 title: Simple DSI panels with a single power-supply
9 maintainers:
10   - Thierry Reding <thierry.reding@gmail.com>
11   - Sam Ravnborg <sam@ravnborg.org>
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.
20   If the panel is more advanced a dedicated binding file is required.
22 allOf:
23   - $ref: panel-common.yaml#
25 properties:
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.
32         # Panasonic 10" WUXGA TFT LCD panel
33       - panasonic,vvx10f034n00
35   reg:
36     maxItems: 1
37     description: DSI virtual channel
39   backlight: true
40   enable-gpios: true
41   port: true
42   power-supply: true
44 additionalProperties: false
46 required:
47   - compatible
48   - power-supply
49   - reg
51 examples:
52   - |
53     dsi {
54       #address-cells = <1>;
55       #size-cells = <0>;
56       panel@0 {
57         compatible = "panasonic,vvx10f034n00";
58         reg = <0>;
59         power-supply = <&vcc_lcd_reg>;
61         port {
62           panel: endpoint {
63             remote-endpoint = <&ltdc_out>;
64           };
65         };
66       };
67     };