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

dt-bindings: display: panel: Document Hydis HV101HD1 DSI panel

Hydis HV101HD1 is a 2-lane 1366x768 MIPI DSI panel found in ASUS VivoTab RT
TF600T tablet.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20250717135752.55958-2-clamor95@gmail.com

authored by

Svyatoslav Ryhel and committed by
Neil Armstrong
bd068333 640d512c

+60
+60
Documentation/devicetree/bindings/display/panel/hydis,hv101hd1.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/hydis,hv101hd1.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Hydis HV101HD1 DSI Display Panel 8 + 9 + maintainers: 10 + - Svyatoslav Ryhel <clamor95@gmail.com> 11 + 12 + allOf: 13 + - $ref: panel-common.yaml# 14 + 15 + properties: 16 + compatible: 17 + const: hydis,hv101hd1 18 + 19 + reg: 20 + maxItems: 1 21 + 22 + vdd-supply: true 23 + vio-supply: true 24 + 25 + backlight: true 26 + port: true 27 + 28 + required: 29 + - compatible 30 + - vdd-supply 31 + - vio-supply 32 + - backlight 33 + 34 + additionalProperties: false 35 + 36 + examples: 37 + - | 38 + #include <dt-bindings/gpio/gpio.h> 39 + 40 + dsi { 41 + #address-cells = <1>; 42 + #size-cells = <0>; 43 + 44 + panel@0 { 45 + compatible = "hydis,hv101hd1"; 46 + reg = <0>; 47 + 48 + vdd-supply = <&vdd_lcd>; 49 + vio-supply = <&vddio_lcd>; 50 + 51 + backlight = <&backlight>; 52 + 53 + port { 54 + panel_in: endpoint { 55 + remote-endpoint = <&dsi_out>; 56 + }; 57 + }; 58 + }; 59 + }; 60 + ...