1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*b2d2a78aSEmmanuel Vadot%YAML 1.2 3*b2d2a78aSEmmanuel Vadot--- 4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/display/panel/boe,tv101wum-ll2.yaml# 5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*b2d2a78aSEmmanuel Vadot 7*b2d2a78aSEmmanuel Vadottitle: BOE TV101WUM-LL2 DSI Display Panel 8*b2d2a78aSEmmanuel Vadot 9*b2d2a78aSEmmanuel Vadotmaintainers: 10*b2d2a78aSEmmanuel Vadot - Neil Armstrong <neil.armstrong@linaro.org> 11*b2d2a78aSEmmanuel Vadot 12*b2d2a78aSEmmanuel VadotallOf: 13*b2d2a78aSEmmanuel Vadot - $ref: panel-common.yaml# 14*b2d2a78aSEmmanuel Vadot 15*b2d2a78aSEmmanuel Vadotproperties: 16*b2d2a78aSEmmanuel Vadot compatible: 17*b2d2a78aSEmmanuel Vadot const: boe,tv101wum-ll2 18*b2d2a78aSEmmanuel Vadot 19*b2d2a78aSEmmanuel Vadot reg: 20*b2d2a78aSEmmanuel Vadot maxItems: 1 21*b2d2a78aSEmmanuel Vadot description: DSI virtual channel 22*b2d2a78aSEmmanuel Vadot 23*b2d2a78aSEmmanuel Vadot backlight: true 24*b2d2a78aSEmmanuel Vadot reset-gpios: true 25*b2d2a78aSEmmanuel Vadot vsp-supply: true 26*b2d2a78aSEmmanuel Vadot vsn-supply: true 27*b2d2a78aSEmmanuel Vadot port: true 28*b2d2a78aSEmmanuel Vadot rotation: true 29*b2d2a78aSEmmanuel Vadot 30*b2d2a78aSEmmanuel Vadotrequired: 31*b2d2a78aSEmmanuel Vadot - compatible 32*b2d2a78aSEmmanuel Vadot - reg 33*b2d2a78aSEmmanuel Vadot - reset-gpios 34*b2d2a78aSEmmanuel Vadot - vsp-supply 35*b2d2a78aSEmmanuel Vadot - vsn-supply 36*b2d2a78aSEmmanuel Vadot - port 37*b2d2a78aSEmmanuel Vadot 38*b2d2a78aSEmmanuel VadotadditionalProperties: false 39*b2d2a78aSEmmanuel Vadot 40*b2d2a78aSEmmanuel Vadotexamples: 41*b2d2a78aSEmmanuel Vadot - | 42*b2d2a78aSEmmanuel Vadot #include <dt-bindings/gpio/gpio.h> 43*b2d2a78aSEmmanuel Vadot dsi { 44*b2d2a78aSEmmanuel Vadot #address-cells = <1>; 45*b2d2a78aSEmmanuel Vadot #size-cells = <0>; 46*b2d2a78aSEmmanuel Vadot panel@0 { 47*b2d2a78aSEmmanuel Vadot compatible = "boe,tv101wum-ll2"; 48*b2d2a78aSEmmanuel Vadot reg = <0>; 49*b2d2a78aSEmmanuel Vadot 50*b2d2a78aSEmmanuel Vadot vsn-supply = <&vsn_lcd>; 51*b2d2a78aSEmmanuel Vadot vsp-supply = <&vsp_lcd>; 52*b2d2a78aSEmmanuel Vadot 53*b2d2a78aSEmmanuel Vadot reset-gpios = <&pio 45 GPIO_ACTIVE_LOW>; 54*b2d2a78aSEmmanuel Vadot 55*b2d2a78aSEmmanuel Vadot port { 56*b2d2a78aSEmmanuel Vadot panel_in: endpoint { 57*b2d2a78aSEmmanuel Vadot remote-endpoint = <&dsi_out>; 58*b2d2a78aSEmmanuel Vadot }; 59*b2d2a78aSEmmanuel Vadot }; 60*b2d2a78aSEmmanuel Vadot }; 61*b2d2a78aSEmmanuel Vadot }; 62*b2d2a78aSEmmanuel Vadot 63*b2d2a78aSEmmanuel Vadot... 64