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/samsung,s6e88a0-ams452ef01.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Samsung AMS452EF01 AMOLED panel with S6E88A0 video mode DSI controller 8 9maintainers: 10 - Michael Srba <Michael.Srba@seznam.cz> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 16 compatible: 17 const: samsung,s6e88a0-ams452ef01 18 reg: true 19 port: true 20 reset-gpios: true 21 vdd3-supply: 22 description: core voltage supply 23 vci-supply: 24 description: voltage supply for analog circuits 25 26required: 27 - compatible 28 - reg 29 - port 30 - vdd3-supply 31 - vci-supply 32 - reset-gpios 33 34additionalProperties: false 35 36examples: 37 - | 38 #include <dt-bindings/gpio/gpio.h> 39 40 dsi { 41 #address-cells = <1>; 42 #size-cells = <0>; 43 panel@0 { 44 reg = <0>; 45 46 compatible = "samsung,s6e88a0-ams452ef01"; 47 48 vdd3-supply = <&pm8916_l17>; 49 vci-supply = <®_vlcd_vci>; 50 reset-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>; 51 52 port { 53 panel_in: endpoint { 54 remote-endpoint = <&dsi0_out>; 55 }; 56 }; 57 }; 58 }; 59