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 # Innolux P079ZCA 7.85" 768x1024 TFT LCD panel 37 - innolux,p079zca 38 # JDI FHD_R63452 1080x1920 5.2" IPS LCD Panel 39 - jdi,fhd-r63452 40 # Khadas TS050 5" 1080x1920 LCD panel 41 - khadas,ts050 42 # Khadas TS050 V2 5" 1080x1920 LCD panel 43 - khadas,ts050v2 44 # Kingdisplay KD097D04 9.7" 1536x2048 TFT LCD panel 45 - kingdisplay,kd097d04 46 # LG ACX467AKM-7 4.95" 1080×1920 LCD Panel 47 - lg,acx467akm-7 48 # LG Corporation 5" HD TFT LCD panel 49 - lg,lh500wx1-sd03 50 # Lincoln LCD197 5" 1080x1920 LCD panel 51 - lincolntech,lcd197 52 # One Stop Displays OSD101T2587-53TS 10.1" 1920x1200 panel 53 - osddisplays,osd101t2587-53ts 54 # Panasonic 10" WUXGA TFT LCD panel 55 - panasonic,vvx10f004b00 56 # Panasonic 10" WUXGA TFT LCD panel 57 - panasonic,vvx10f034n00 58 # Samsung ltl106hl02 10.6" Full HD TFT LCD panel 59 - samsung,ltl106hl02-001 60 # Samsung s6e3fa7 1080x2220 based AMS559NK06 AMOLED panel 61 - samsung,s6e3fa7-ams559nk06 62 # Shangai Top Display Optoelectronics 7" TL070WSH30 1024x600 TFT LCD panel 63 - tdo,tl070wsh30 64 65 reg: 66 maxItems: 1 67 description: DSI virtual channel 68 69 backlight: true 70 enable-gpios: true 71 reset-gpios: true 72 port: true 73 power-supply: true 74 75additionalProperties: false 76 77required: 78 - compatible 79 - power-supply 80 - reg 81 82examples: 83 - | 84 dsi { 85 #address-cells = <1>; 86 #size-cells = <0>; 87 panel@0 { 88 compatible = "panasonic,vvx10f034n00"; 89 reg = <0>; 90 power-supply = <&vcc_lcd_reg>; 91 92 port { 93 panel: endpoint { 94 remote-endpoint = <<dc_out>; 95 }; 96 }; 97 }; 98 }; 99