0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/ebbg,ft8719.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: EBBG FT8719 MIPI-DSI LCD panel
0008
0009 maintainers:
0010 - Joel Selvaraj <jo@jsfamily.in>
0011
0012 description: |
0013 The FT8719 panel from EBBG is a FHD+ LCD display panel with a resolution
0014 of 1080x2246. It is a video mode DSI panel. The backlight is managed
0015 through the QCOM WLED driver.
0016
0017 allOf:
0018 - $ref: panel-common.yaml#
0019
0020 properties:
0021 compatible:
0022 const: ebbg,ft8719
0023
0024 reg:
0025 maxItems: 1
0026 description: DSI virtual channel of the peripheral
0027
0028 vddio-supply:
0029 description: power IC supply regulator
0030
0031 vddpos-supply:
0032 description: positive boost supply regulator
0033
0034 vddneg-supply:
0035 description: negative boost supply regulator
0036
0037 required:
0038 - compatible
0039 - reg
0040 - vddio-supply
0041 - vddpos-supply
0042 - vddneg-supply
0043 - reset-gpios
0044 - port
0045
0046 unevaluatedProperties: false
0047
0048 examples:
0049 - |
0050 #include <dt-bindings/gpio/gpio.h>
0051
0052 dsi {
0053 #address-cells = <1>;
0054 #size-cells = <0>;
0055
0056 panel@0 {
0057 compatible = "ebbg,ft8719";
0058 reg = <0>;
0059
0060 vddio-supply = <&vreg_l14a_1p88>;
0061 vddpos-supply = <&lab>;
0062 vddneg-supply = <&ibb>;
0063
0064 reset-gpios = <&tlmm 6 GPIO_ACTIVE_LOW>;
0065
0066 backlight = <&pmi8998_wled>;
0067
0068 port {
0069 ebbg_ft8719_in_0: endpoint {
0070 remote-endpoint = <&dsi0_out>;
0071 };
0072 };
0073 };
0074 };