brintos

brintos / linux-shallow public Read only

0
0
Text · 3.2 KiB · 9b92a05 Raw
119 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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-supply8 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 that15  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 22properties:23 24  compatible:25    enum:26      # compatible must be listed in alphabetical order, ordered by compatible.27      # The description in the comment is mandatory for each compatible.28 29        # AU Optronics Corporation 8.0" WUXGA TFT LCD panel30      - auo,b080uan0131        # Boe Corporation 8.0" WUXGA TFT LCD panel32      - boe,tv080wum-nl033        # Innolux P079ZCA 7.85" 768x1024 TFT LCD panel34      - innolux,p079zca35        # JDI FHD_R63452 1080x1920 5.2" IPS LCD Panel36      - jdi,fhd-r6345237        # Khadas TS050 5" 1080x1920 LCD panel38      - khadas,ts05039        # Khadas TS050 V2 5" 1080x1920 LCD panel40      - khadas,ts050v241        # Kingdisplay KD097D04 9.7" 1536x2048 TFT LCD panel42      - kingdisplay,kd097d0443        # LG ACX467AKM-7 4.95" 1080×1920 LCD Panel44      - lg,acx467akm-745        # LG Corporation 7" WXGA TFT LCD panel46      - lg,ld070wx3-sl0147        # LG Corporation 5" HD TFT LCD panel48      - lg,lh500wx1-sd0349        # Lincoln LCD197 5" 1080x1920 LCD panel50      - lincolntech,lcd19751        # One Stop Displays OSD101T2587-53TS 10.1" 1920x1200 panel52      - osddisplays,osd101t2587-53ts53        # Panasonic 10" WUXGA TFT LCD panel54      - panasonic,vvx10f004b0055        # Panasonic 10" WUXGA TFT LCD panel56      - panasonic,vvx10f034n0057        # Samsung s6e3fa7 1080x2220 based AMS559NK06 AMOLED panel58      - samsung,s6e3fa7-ams559nk0659        # Samsung s6e3fc2x01 1080x2340 AMOLED panel60      - samsung,s6e3fc2x0161        # Samsung sofef00 1080x2280 AMOLED panel62      - samsung,sofef0063        # Shangai Top Display Optoelectronics 7" TL070WSH30 1024x600 TFT LCD panel64      - tdo,tl070wsh3065 66  reg:67    maxItems: 168    description: DSI virtual channel69 70  backlight: true71  enable-gpios: true72  reset-gpios: true73  port: true74  power-supply: true75  vddio-supply: true76 77allOf:78  - $ref: panel-common.yaml#79  - if:80      properties:81        compatible:82          enum:83            - samsung,s6e3fc2x0184            - samsung,sofef0085    then:86      properties:87        power-supply: false88      required:89        - vddio-supply90    else:91      properties:92        vddio-supply: false93      required:94        - power-supply95 96additionalProperties: false97 98required:99  - compatible100  - reg101 102examples:103  - |104    dsi {105      #address-cells = <1>;106      #size-cells = <0>;107      panel@0 {108        compatible = "panasonic,vvx10f034n00";109        reg = <0>;110        power-supply = <&vcc_lcd_reg>;111 112        port {113          panel: endpoint {114            remote-endpoint = <&ltdc_out>;115          };116        };117      };118    };119