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 # AU Optronics Corporation 8.0" WUXGA TFT LCD panel 33 - auo,b080uan01 34 # Boe Corporation 8.0" WUXGA TFT LCD panel 35 - boe,tv080wum-nl0 36 # Kingdisplay KD097D04 9.7" 1536x2048 TFT LCD panel 37 - kingdisplay,kd097d04 38 # LG ACX467AKM-7 4.95" 1080×1920 LCD Panel 39 - lg,acx467akm-7 40 # LG Corporation 7" WXGA TFT LCD panel 41 - lg,ld070wx3-sl01 42 # One Stop Displays OSD101T2587-53TS 10.1" 1920x1200 panel 43 - osddisplays,osd101t2587-53ts 44 # Panasonic 10" WUXGA TFT LCD panel 45 - panasonic,vvx10f004b00 46 # Panasonic 10" WUXGA TFT LCD panel 47 - panasonic,vvx10f034n00 48 49 reg: 50 maxItems: 1 51 description: DSI virtual channel 52 53 backlight: true 54 enable-gpios: true 55 port: true 56 power-supply: true 57 58additionalProperties: false 59 60required: 61 - compatible 62 - power-supply 63 - reg 64 65examples: 66 - | 67 dsi { 68 #address-cells = <1>; 69 #size-cells = <0>; 70 panel@0 { 71 compatible = "panasonic,vvx10f034n00"; 72 reg = <0>; 73 power-supply = <&vcc_lcd_reg>; 74 75 port { 76 panel: endpoint { 77 remote-endpoint = <<dc_out>; 78 }; 79 }; 80 }; 81 }; 82