56 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/leadtek,ltk050h3146w.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Leadtek LTK050H3146W 5.0in 720x1280 DSI panel8 9maintainers:10 - Quentin Schulz <quentin.schulz@theobroma-systems.com>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 enum:18 - leadtek,ltk050h3146w19 - leadtek,ltk050h3146w-a220 - leadtek,ltk050h3148w21 22 reg:23 maxItems: 124 25 backlight: true26 reset-gpios: true27 iovcc-supply:28 description: regulator that supplies the iovcc voltage29 vci-supply:30 description: regulator that supplies the vci voltage31 32required:33 - compatible34 - reg35 - backlight36 - iovcc-supply37 - vci-supply38 39additionalProperties: false40 41examples:42 - |43 dsi {44 #address-cells = <1>;45 #size-cells = <0>;46 panel@0 {47 compatible = "leadtek,ltk050h3146w";48 reg = <0>;49 backlight = <&backlight>;50 iovcc-supply = <&vcc_1v8>;51 vci-supply = <&vcc3v3_lcd>;52 };53 };54 55...56