62 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/samsung,s6e88a0-ams452ef01.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Samsung AMS452EF01 AMOLED panel with S6E88A0 video mode DSI controller8 9maintainers:10 - Michael Srba <Michael.Srba@seznam.cz>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: samsung,s6e88a0-ams452ef0118 19 reg:20 maxItems: 121 22 port: true23 reset-gpios: true24 vdd3-supply:25 description: core voltage supply26 vci-supply:27 description: voltage supply for analog circuits28 29required:30 - compatible31 - reg32 - port33 - vdd3-supply34 - vci-supply35 - reset-gpios36 37additionalProperties: false38 39examples:40 - |41 #include <dt-bindings/gpio/gpio.h>42 43 dsi {44 #address-cells = <1>;45 #size-cells = <0>;46 panel@0 {47 reg = <0>;48 49 compatible = "samsung,s6e88a0-ams452ef01";50 51 vdd3-supply = <&pm8916_l17>;52 vci-supply = <®_vlcd_vci>;53 reset-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>;54 55 port {56 panel_in: endpoint {57 remote-endpoint = <&dsi0_out>;58 };59 };60 };61 };62