Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / ilitek,ili9805.yaml
blobff67129c94669f0730288a259da5a13d5fee9414
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/ilitek,ili9805.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Ilitek ILI9805 based MIPI-DSI panels
9 maintainers:
10   - Michael Trimarchi <michael@amarulasolutions.com>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     items:
18       - enum:
19           - giantplus,gpm1790a0
20           - tianma,tm041xdhg01
21       - const: ilitek,ili9805
23   reg:
24     maxItems: 1
26   avdd-supply: true
27   dvdd-supply: true
29 required:
30   - compatible
31   - avdd-supply
32   - dvdd-supply
33   - reg
34   - reset-gpios
35   - port
36   - backlight
38 unevaluatedProperties: false
40 examples:
41   - |
42     #include <dt-bindings/gpio/gpio.h>
44     dsi {
45         #address-cells = <1>;
46         #size-cells = <0>;
48         panel@0 {
49             compatible = "giantplus,gpm1790a0", "ilitek,ili9805";
50             reg = <0>;
51             avdd-supply = <&avdd_display>;
52             dvdd-supply = <&dvdd_display>;
53             reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
54             backlight = <&backlight>;
56             port {
57                 panel_in: endpoint {
58                     remote-endpoint = <&mipi_dsi_out>;
59                 };
60             };
61         };
62     };
64 ...