Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / visionox,r66451.yaml
blob187840bb76c7a50705ca97b82e31a53f7e805816
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/visionox,r66451.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Visionox R66451 AMOLED DSI Panel
9 maintainers:
10   - Jessica Zhang <quic_jesszhan@quicinc.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: visionox,r66451
19   reg:
20     maxItems: 1
21     description: DSI virtual channel
23   vddio-supply: true
24   vdd-supply: true
25   port: true
26   reset-gpios: true
28 additionalProperties: false
30 required:
31   - compatible
32   - reg
33   - vddio-supply
34   - vdd-supply
35   - reset-gpios
36   - port
38 examples:
39   - |
40     #include <dt-bindings/gpio/gpio.h>
41     dsi {
42         #address-cells = <1>;
43         #size-cells = <0>;
44         panel@0 {
45             compatible = "visionox,r66451";
46             reg = <0>;
47             vddio-supply = <&vreg_l12c_1p8>;
48             vdd-supply = <&vreg_l13c_3p0>;
50             reset-gpios = <&tlmm 24 GPIO_ACTIVE_LOW>;
52             port {
53                 panel0_in: endpoint {
54                     remote-endpoint = <&dsi0_out>;
55                 };
56             };
57         };
58     };
59 ...