60 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/ilitek,ili9881c.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Ilitek ILI9881c based MIPI-DSI panels8 9maintainers:10 - Maxime Ripard <mripard@kernel.org>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 items:18 - enum:19 - ampire,am8001280g20 - bananapi,lhr050h4121 - feixin,k101-im2byl0222 - startek,kd050hdfia02023 - tdo,tl050hdv3524 - wanchanglong,w552946aba25 - const: ilitek,ili9881c26 27 reg:28 maxItems: 129 30 backlight: true31 power-supply: true32 reset-gpios: true33 rotation: true34 35required:36 - compatible37 - power-supply38 - reg39 40additionalProperties: false41 42examples:43 - |44 #include <dt-bindings/gpio/gpio.h>45 46 dsi {47 #address-cells = <1>;48 #size-cells = <0>;49 50 panel@0 {51 compatible = "bananapi,lhr050h41", "ilitek,ili9881c";52 reg = <0>;53 power-supply = <®_display>;54 reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */55 backlight = <&pwm_bl>;56 };57 };58 59...60