Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / novatek,nt36672e.yaml
blobdc4672f3d01d7c95c3abbe129b6ebba53d5f083d
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#
7 title: Novatek NT36672E LCD DSI Panel
9 maintainers:
10   - Ritesh Kumar <quic_riteshk@quicinc.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: novatek,nt36672e
19   reg:
20     maxItems: 1
21     description: DSI virtual channel
23   vddi-supply: true
24   avdd-supply: true
25   avee-supply: true
26   port: true
27   reset-gpios: true
28   backlight: true
30 required:
31   - compatible
32   - reg
33   - vddi-supply
34   - avdd-supply
35   - avee-supply
36   - reset-gpios
37   - port
39 additionalProperties: false
41 examples:
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>;
51             reset-gpios = <&tlmm 44 GPIO_ACTIVE_HIGH>;
53             vddi-supply = <&vreg_l8c_1p8>;
54             avdd-supply = <&disp_avdd>;
55             avee-supply = <&disp_avee>;
57             backlight = <&pwm_backlight>;
59             port {
60                 panel0_in: endpoint {
61                     remote-endpoint = <&dsi0_out>;
62                 };
63             };
64         };
65     };
66 ...