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

Configure Feed

Select the types of activity you want to include in your feed.

at nocache-cleanup 60 lines 1.1 kB view raw
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 7title: Hydis HV101HD1 DSI Display Panel 8 9maintainers: 10 - Svyatoslav Ryhel <clamor95@gmail.com> 11 12allOf: 13 - $ref: panel-common.yaml# 14 15properties: 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 28required: 29 - compatible 30 - vdd-supply 31 - vio-supply 32 - backlight 33 34additionalProperties: false 35 36examples: 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...