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

dt-bindings: display: panel: Add Tianma TL121BVMS07-00 panel

Add device tree bindings for the Tianma TL121BVMS07-00 12.1-inch
MIPI-DSI TFT LCD panel. The panel is based on the Ilitek IL79900A
controller.

Signed-off-by: Langyan Ye <yelangyan@huaqin.corp-partner.google.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20251031100447.253164-2-yelangyan@huaqin.corp-partner.google.com

authored by

Langyan Ye and committed by
Neil Armstrong
e147c472 437b30db

+68
+68
Documentation/devicetree/bindings/display/panel/ilitek,il79900a.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,il79900a.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Ilitek IL79900a based MIPI-DSI panels 8 + 9 + maintainers: 10 + - Langyan Ye <yelangyan@huaqin.corp-partner.google.com> 11 + 12 + allOf: 13 + - $ref: panel-common.yaml# 14 + 15 + properties: 16 + compatible: 17 + items: 18 + - enum: 19 + - tianma,tl121bvms07-00 20 + - const: ilitek,il79900a 21 + 22 + reg: 23 + maxItems: 1 24 + description: DSI virtual channel used by the panel 25 + 26 + enable-gpios: 27 + maxItems: 1 28 + description: GPIO specifier for the enable pin 29 + 30 + avdd-supply: 31 + description: Positive analog voltage supply (AVDD) 32 + 33 + avee-supply: 34 + description: Negative analog voltage supply (AVEE) 35 + 36 + pp1800-supply: 37 + description: 1.8V logic voltage supply 38 + 39 + backlight: true 40 + 41 + required: 42 + - compatible 43 + - reg 44 + - enable-gpios 45 + - avdd-supply 46 + - avee-supply 47 + - pp1800-supply 48 + 49 + additionalProperties: false 50 + 51 + examples: 52 + - | 53 + dsi { 54 + #address-cells = <1>; 55 + #size-cells = <0>; 56 + 57 + panel@0 { 58 + compatible = "tianma,tl121bvms07-00", "ilitek,il79900a"; 59 + reg = <0>; 60 + enable-gpios = <&pio 25 0>; 61 + avdd-supply = <&reg_avdd>; 62 + avee-supply = <&reg_avee>; 63 + pp1800-supply = <&reg_pp1800>; 64 + backlight = <&backlight>; 65 + }; 66 + }; 67 + 68 + ...