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/himax,hx83102.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Himax HX83102 MIPI-DSI LCD panel controller 8 9maintainers: 10 - Cong Yang <yangcong5@huaqin.corp-partner.google.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 items: 18 - enum: 19 # Boe nv110wum-l60 11.0" WUXGA TFT LCD panel 20 - boe,nv110wum-l60 21 # CSOT pna957qt1-1 10.95" WUXGA TFT LCD panel 22 - csot,pna957qt1-1 23 # IVO t109nw41 11.0" WUXGA TFT LCD panel 24 - ivo,t109nw41 25 # KINGDISPLAY KD110N11-51IE 10.95" WUXGA TFT LCD panel 26 - kingdisplay,kd110n11-51ie 27 # STARRY 2082109QFH040022-50E 10.95" WUXGA TFT LCD panel 28 - starry,2082109qfh040022-50e 29 # STARRY himax83102-j02 10.51" WUXGA TFT LCD panel 30 - starry,himax83102-j02 31 - const: himax,hx83102 32 33 reg: 34 description: the virtual channel number of a DSI peripheral 35 36 enable-gpios: 37 description: a GPIO spec for the enable pin 38 39 pp1800-supply: 40 description: core voltage supply 41 42 avdd-supply: 43 description: phandle of the regulator that provides positive voltage 44 45 avee-supply: 46 description: phandle of the regulator that provides negative voltage 47 48 backlight: true 49 port: true 50 rotation: true 51 52required: 53 - compatible 54 - reg 55 - enable-gpios 56 - pp1800-supply 57 - avdd-supply 58 - avee-supply 59 60additionalProperties: false 61 62examples: 63 - | 64 dsi { 65 #address-cells = <1>; 66 #size-cells = <0>; 67 panel@0 { 68 compatible = "starry,himax83102-j02", "himax,hx83102"; 69 reg = <0>; 70 enable-gpios = <&pio 45 0>; 71 avdd-supply = <&ppvarn_lcd>; 72 avee-supply = <&ppvarp_lcd>; 73 pp1800-supply = <&pp1800_lcd>; 74 backlight = <&backlight_lcd0>; 75 port { 76 panel_in: endpoint { 77 remote-endpoint = <&dsi_out>; 78 }; 79 }; 80 }; 81 }; 82 83... 84