67 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/novatek,nt36672e.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Novatek NT36672E LCD DSI Panel8 9maintainers:10 - Ritesh Kumar <quic_riteshk@quicinc.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: novatek,nt36672e18 19 reg:20 maxItems: 121 description: DSI virtual channel22 23 vddi-supply: true24 avdd-supply: true25 avee-supply: true26 port: true27 reset-gpios: true28 backlight: true29 30required:31 - compatible32 - reg33 - vddi-supply34 - avdd-supply35 - avee-supply36 - reset-gpios37 - port38 39additionalProperties: false40 41examples:42 - |43 #include <dt-bindings/gpio/gpio.h>44 dsi {45 #address-cells = <1>;46 #size-cells = <0>;47 panel@0 {48 compatible = "novatek,nt36672e";49 reg = <0>;50 51 reset-gpios = <&tlmm 44 GPIO_ACTIVE_HIGH>;52 53 vddi-supply = <&vreg_l8c_1p8>;54 avdd-supply = <&disp_avdd>;55 avee-supply = <&disp_avee>;56 57 backlight = <&pwm_backlight>;58 59 port {60 panel0_in: endpoint {61 remote-endpoint = <&dsi0_out>;62 };63 };64 };65 };66...67