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-edp-legacy.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Legacy eDP panels from before the "edp-panel" compatible 8 9maintainers: 10 - Douglas Anderson <dianders@chromium.org> 11 12description: | 13 This binding file is a collection of eDP panels from before the generic 14 "edp-panel" compatible was introduced. It is kept around to support old 15 dts files. The only reason one might add a new panel here instead of using 16 the generic "edp-panel" is if it needed to be used on an eDP controller 17 that doesn't support the generic "edp-panel" compatible, but it should be 18 a strong preference to add the generic "edp-panel" compatible instead. 19 20allOf: 21 - $ref: panel-common.yaml# 22 23properties: 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 10.1" WSVGA TFT LCD panel 30 - auo,b101ean01 31 # AUO B116XAK01 eDP TFT LCD panel 32 - auo,b116xa01 33 # AU Optronics Corporation 13.3" FHD (1920x1080) color TFT-LCD panel 34 - auo,b133han05 35 # AU Optronics Corporation 13.3" FHD (1920x1080) color TFT-LCD panel 36 - auo,b133htn01 37 # AU Optronics Corporation 13.3" WXGA (1366x768) TFT LCD panel 38 - auo,b133xtn01 39 # AU Optronics Corporation 14.0" FHD (1920x1080) color TFT-LCD panel 40 - auo,b140han06 41 # BOE OPTOELECTRONICS TECHNOLOGY 10.1" WXGA TFT LCD panel 42 - boe,nv101wxmn51 43 # BOE NV133FHM-N61 13.3" FHD (1920x1080) TFT LCD Panel 44 - boe,nv110wtm-n61 45 # BOE NV110WTM-N61 11.0" 2160x1440 TFT LCD Panel 46 - boe,nv133fhm-n61 47 # BOE NV133FHM-N62 13.3" FHD (1920x1080) TFT LCD Panel 48 - boe,nv133fhm-n62 49 # BOE NV140FHM-N49 14.0" FHD a-Si FT panel 50 - boe,nv140fhmn49 51 # Innolux Corporation 11.6" WXGA (1366x768) TFT LCD panel 52 - innolux,n116bca-ea1 53 # Innolux Corporation 11.6" WXGA (1366x768) TFT LCD panel 54 - innolux,n116bge 55 # InnoLux 13.3" FHD (1920x1080) eDP TFT LCD panel 56 - innolux,n125hce-gn1 57 # Innolux P120ZDG-BF1 12.02 inch eDP 2K display panel 58 - innolux,p120zdg-bf1 59 # InfoVision Optoelectronics M133NWF4 R0 13.3" FHD (1920x1080) TFT LCD panel 60 - ivo,m133nwf4-r0 61 # King & Display KD116N21-30NV-A010 eDP TFT LCD panel 62 - kingdisplay,kd116n21-30nv-a010 63 # LG LP079QX1-SP0V 7.9" (1536x2048 pixels) TFT LCD panel 64 - lg,lp079qx1-sp0v 65 # LG 9.7" (2048x1536 pixels) TFT LCD panel 66 - lg,lp097qx1-spa1 67 # LG 12.0" (1920x1280 pixels) TFT LCD panel 68 - lg,lp120up1 69 # LG 12.9" (2560x1700 pixels) TFT LCD panel 70 - lg,lp129qe 71 # NewEast Optoelectronics CO., LTD WJFH116008A eDP TFT LCD panel 72 - neweast,wjfh116008a 73 # Samsung 12.2" (2560x1600 pixels) TFT LCD panel 74 - samsung,lsn122dl01-c01 75 # Samsung Electronics 14" WXGA (1366x768) TFT LCD panel 76 - samsung,ltn140at29-301 77 # Sharp LD-D5116Z01B 12.3" WUXGA+ eDP panel 78 - sharp,ld-d5116z01b 79 # Sharp 12.3" (2400x1600 pixels) TFT LCD panel 80 - sharp,lq123p1jx31 81 # Sharp 14" (1920x1080 pixels) TFT LCD panel 82 - sharp,lq140m1jw46 83 # Starry 12.2" (1920x1200 pixels) TFT LCD panel 84 - starry,kr122ea0sra 85 86 backlight: true 87 ddc-i2c-bus: true 88 enable-gpios: true 89 panel-timing: true 90 port: true 91 power-supply: true 92 no-hpd: true 93 hpd-gpios: true 94 95additionalProperties: false 96 97required: 98 - compatible 99 - power-supply 100 101examples: 102 - | 103 panel: panel { 104 compatible = "innolux,n116bge"; 105 power-supply = <&panel_regulator>; 106 backlight = <&backlight>; 107 108 panel-timing { 109 clock-frequency = <74250000>; 110 hactive = <1366>; 111 hfront-porch = <136>; 112 hback-porch = <60>; 113 hsync-len = <30>; 114 hsync-active = <0>; 115 vactive = <768>; 116 vfront-porch = <8>; 117 vback-porch = <12>; 118 vsync-len = <12>; 119 vsync-active = <0>; 120 }; 121 122 port { 123 panel_in_edp: endpoint { 124 remote-endpoint = <&edp_out_panel>; 125 }; 126 }; 127 }; 128