mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-18 06:33:43 -04:00
Like w552946aba, w552946aaa uses the Ilitek ILI9881D controller chip, and it supports up to 2 lanes. Signed-off-by: Chaoyi Chen <chaoyi.chen@rock-chips.com> Acked-by: Conor Dooley <conor.dooley@microchip.com> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://patch.msgid.link/20251106020632.92-2-kernel@airkyi.com
65 lines
1.3 KiB
YAML
65 lines
1.3 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/panel/ilitek,ili9881c.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Ilitek ILI9881c based MIPI-DSI panels
|
|
|
|
maintainers:
|
|
- Maxime Ripard <mripard@kernel.org>
|
|
|
|
allOf:
|
|
- $ref: panel-common.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- ampire,am8001280g
|
|
- bananapi,lhr050h41
|
|
- bestar,bsd1218-a101kl68
|
|
- feixin,k101-im2byl02
|
|
- raspberrypi,dsi-5inch
|
|
- raspberrypi,dsi-7inch
|
|
- startek,kd050hdfia020
|
|
- tdo,tl050hdv35
|
|
- wanchanglong,w552946aaa
|
|
- wanchanglong,w552946aba
|
|
- const: ilitek,ili9881c
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
backlight: true
|
|
port: true
|
|
power-supply: true
|
|
reset-gpios: true
|
|
rotation: true
|
|
|
|
required:
|
|
- compatible
|
|
- power-supply
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
dsi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
panel@0 {
|
|
compatible = "bananapi,lhr050h41", "ilitek,ili9881c";
|
|
reg = <0>;
|
|
power-supply = <®_display>;
|
|
reset-gpios = <&r_pio 0 5 GPIO_ACTIVE_LOW>; /* PL05 */
|
|
backlight = <&pwm_bl>;
|
|
};
|
|
};
|
|
|
|
...
|