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 7title: Simple DSI panels with a single power-supply 8 9maintainers: 10 - Thierry Reding <thierry.reding@gmail.com> 11 - Sam Ravnborg <sam@ravnborg.org> 12 13description: | 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 22allOf: 23 - $ref: panel-common.yaml# 24 25properties: 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 # Panasonic 10" WUXGA TFT LCD panel 33 - panasonic,vvx10f034n00 34 35 reg: 36 maxItems: 1 37 description: DSI virtual channel 38 39 backlight: true 40 enable-gpios: true 41 port: true 42 power-supply: true 43 44additionalProperties: false 45 46required: 47 - compatible 48 - power-supply 49 - reg 50 51examples: 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>; 60 61 port { 62 panel: endpoint { 63 remote-endpoint = <<dc_out>; 64 }; 65 }; 66 }; 67 }; 68