Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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/novatek,nt36672e.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Novatek NT36672E LCD DSI Panel
8
9maintainers:
10 - Ritesh Kumar <quic_riteshk@quicinc.com>
11
12allOf:
13 - $ref: panel-common.yaml#
14
15properties:
16 compatible:
17 const: novatek,nt36672e
18
19 reg:
20 maxItems: 1
21 description: DSI virtual channel
22
23 vddi-supply: true
24 avdd-supply: true
25 avee-supply: true
26 port: true
27 reset-gpios: true
28 backlight: true
29
30required:
31 - compatible
32 - reg
33 - vddi-supply
34 - avdd-supply
35 - avee-supply
36 - reset-gpios
37 - port
38
39additionalProperties: false
40
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...