Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: display: panel: Add Ilitek ili9805 panel controller

Add documentation for "ilitek,ili9805" panel.

Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20231207141723.108004-8-dario.binacchi@amarulasolutions.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20231207141723.108004-8-dario.binacchi@amarulasolutions.com

authored by

Michael Trimarchi and committed by
Neil Armstrong
549240c9 2e87bad7

+62
+62
Documentation/devicetree/bindings/display/panel/ilitek,ili9805.yaml
··· 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# 6 + 7 + title: Ilitek ILI9805 based MIPI-DSI panels 8 + 9 + maintainers: 10 + - Michael Trimarchi <michael@amarulasolutions.com> 11 + 12 + allOf: 13 + - $ref: panel-common.yaml# 14 + 15 + properties: 16 + compatible: 17 + items: 18 + - enum: 19 + - giantplus,gpm1790a0 20 + - tianma,tm041xdhg01 21 + - const: ilitek,ili9805 22 + 23 + avdd-supply: true 24 + dvdd-supply: true 25 + reg: true 26 + 27 + required: 28 + - compatible 29 + - avdd-supply 30 + - dvdd-supply 31 + - reg 32 + - reset-gpios 33 + - port 34 + - backlight 35 + 36 + unevaluatedProperties: false 37 + 38 + examples: 39 + - | 40 + #include <dt-bindings/gpio/gpio.h> 41 + 42 + dsi { 43 + #address-cells = <1>; 44 + #size-cells = <0>; 45 + 46 + panel@0 { 47 + compatible = "giantplus,gpm1790a0", "ilitek,ili9805"; 48 + reg = <0>; 49 + avdd-supply = <&avdd_display>; 50 + dvdd-supply = <&dvdd_display>; 51 + reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */ 52 + backlight = <&backlight>; 53 + 54 + port { 55 + panel_in: endpoint { 56 + remote-endpoint = <&mipi_dsi_out>; 57 + }; 58 + }; 59 + }; 60 + }; 61 + 62 + ...