xref: /linux/Documentation/devicetree/bindings/display/panel/himax,hx83112b.yaml (revision 260f6f4fda93c8485c8037865c941b42b9cba5d2)
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/himax,hx83112b.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Himax HX83112B-based DSI display panels
8
9maintainers:
10  - Luca Weiss <luca@lucaweiss.eu>
11
12description:
13  The Himax HX83112B is a generic DSI Panel IC used to control
14  LCD panels.
15
16allOf:
17  - $ref: panel-common.yaml#
18
19properties:
20  compatible:
21    contains:
22      const: djn,98-03057-6598b-i
23
24  reg:
25    maxItems: 1
26
27  iovcc-supply:
28    description: I/O voltage rail
29
30  vsn-supply:
31    description: Positive source voltage rail
32
33  vsp-supply:
34    description: Negative source voltage rail
35
36required:
37  - compatible
38  - reg
39  - reset-gpios
40  - iovcc-supply
41  - vsn-supply
42  - vsp-supply
43  - port
44
45unevaluatedProperties: false
46
47examples:
48  - |
49    #include <dt-bindings/gpio/gpio.h>
50
51    dsi {
52        #address-cells = <1>;
53        #size-cells = <0>;
54
55        panel@0 {
56            compatible = "djn,98-03057-6598b-i";
57            reg = <0>;
58
59            reset-gpios = <&tlmm 61 GPIO_ACTIVE_LOW>;
60
61            iovcc-supply = <&pm8953_l6>;
62            vsn-supply = <&pmi632_lcdb_ncp>;
63            vsp-supply = <&pmi632_lcdb_ldo>;
64
65            port {
66                panel_in_0: endpoint {
67                    remote-endpoint = <&dsi0_out>;
68                };
69            };
70        };
71    };
72
73...
74