0001 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/panel-simple-dsi.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Simple DSI panels with a single power-supply
0008
0009 maintainers:
0010 - Thierry Reding <thierry.reding@gmail.com>
0011 - Sam Ravnborg <sam@ravnborg.org>
0012
0013 description: |
0014 This binding file is a collection of the DSI panels that
0015 requires only a single power-supply.
0016 There are optionally a backlight and an enable GPIO.
0017 The panel may use an OF graph binding for the association to the display,
0018 or it may be a direct child node of the display.
0019
0020 If the panel is more advanced a dedicated binding file is required.
0021
0022 allOf:
0023 - $ref: panel-common.yaml#
0024
0025 properties:
0026
0027 compatible:
0028 enum:
0029 # compatible must be listed in alphabetical order, ordered by compatible.
0030 # The description in the comment is mandatory for each compatible.
0031
0032 # AU Optronics Corporation 8.0" WUXGA TFT LCD panel
0033 - auo,b080uan01
0034 # Boe Corporation 8.0" WUXGA TFT LCD panel
0035 - boe,tv080wum-nl0
0036 # Innolux P079ZCA 7.85" 768x1024 TFT LCD panel
0037 - innolux,p079zca
0038 # JDI FHD_R63452 1080x1920 5.2" IPS LCD Panel
0039 - jdi,fhd-r63452
0040 # Khadas TS050 5" 1080x1920 LCD panel
0041 - khadas,ts050
0042 # Kingdisplay KD097D04 9.7" 1536x2048 TFT LCD panel
0043 - kingdisplay,kd097d04
0044 # LG ACX467AKM-7 4.95" 1080×1920 LCD Panel
0045 - lg,acx467akm-7
0046 # LG Corporation 7" WXGA TFT LCD panel
0047 - lg,ld070wx3-sl01
0048 # One Stop Displays OSD101T2587-53TS 10.1" 1920x1200 panel
0049 - osddisplays,osd101t2587-53ts
0050 # Panasonic 10" WUXGA TFT LCD panel
0051 - panasonic,vvx10f004b00
0052 # Panasonic 10" WUXGA TFT LCD panel
0053 - panasonic,vvx10f034n00
0054 # Samsung s6e3fc2x01 1080x2340 AMOLED panel
0055 - samsung,s6e3fc2x01
0056 # Samsung sofef00 1080x2280 AMOLED panel
0057 - samsung,sofef00
0058 # Shangai Top Display Optoelectronics 7" TL070WSH30 1024x600 TFT LCD panel
0059 - tdo,tl070wsh30
0060
0061 reg:
0062 maxItems: 1
0063 description: DSI virtual channel
0064
0065 backlight: true
0066 enable-gpios: true
0067 reset-gpios: true
0068 port: true
0069 power-supply: true
0070
0071 additionalProperties: false
0072
0073 required:
0074 - compatible
0075 - power-supply
0076 - reg
0077
0078 examples:
0079 - |
0080 dsi {
0081 #address-cells = <1>;
0082 #size-cells = <0>;
0083 panel@0 {
0084 compatible = "panasonic,vvx10f034n00";
0085 reg = <0>;
0086 power-supply = <&vcc_lcd_reg>;
0087
0088 port {
0089 panel: endpoint {
0090 remote-endpoint = <<dc_out>;
0091 };
0092 };
0093 };
0094 };