summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/display/panel/ebbg,ft8719.yaml
blob: 80deedc01c7c58910d5beaecaeb270f87027b934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/panel/ebbg,ft8719.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: EBBG FT8719 MIPI-DSI LCD panel

maintainers:
  - Joel Selvaraj <jo@jsfamily.in>

description: |
  The FT8719 panel from EBBG is a FHD+ LCD display panel with a resolution
  of 1080x2246. It is a video mode DSI panel. The backlight is managed
  through the QCOM WLED driver.

allOf:
  - $ref: panel-common.yaml#

properties:
  compatible:
    const: ebbg,ft8719

  reg:
    maxItems: 1
    description: DSI virtual channel of the peripheral

  vddio-supply:
    description: power IC supply regulator

  vddpos-supply:
    description: positive boost supply regulator

  vddneg-supply:
    description: negative boost supply regulator

required:
  - compatible
  - reg
  - vddio-supply
  - vddpos-supply
  - vddneg-supply
  - reset-gpios
  - port

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>

    dsi {
      #address-cells = <1>;
      #size-cells = <0>;

      panel@0 {
        compatible = "ebbg,ft8719";
        reg = <0>;

        vddio-supply = <&vreg_l14a_1p88>;
        vddpos-supply = <&lab>;
        vddneg-supply = <&ibb>;

        reset-gpios = <&tlmm 6 GPIO_ACTIVE_LOW>;

        backlight = <&pmi8998_wled>;

        port {
          ebbg_ft8719_in_0: endpoint {
            remote-endpoint = <&dsi0_out>;
          };
        };
      };
    };