brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · cc7ea3c Raw
48 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/panel-common-dual.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Common Properties for Dual-Link Display Panels8 9maintainers:10  - Thierry Reding <thierry.reding@gmail.com>11  - Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>12 13description:14  Properties common for Panel IC supporting dual link panels.  Devices might15  support also single link.16 17allOf:18  - $ref: panel-common.yaml#19 20properties:21  ports:22    $ref: /schemas/graph.yaml#/properties/ports23    additionalProperties: false24 25    properties:26      port@0:27        $ref: /schemas/graph.yaml#/properties/port28        description: First link29 30      port@1:31        $ref: /schemas/graph.yaml#/properties/port32        description: Second link33 34      "#address-cells": true35      "#size-cells": true36 37    required:38      - port@039 40# Single-panel setups are still allowed.41oneOf:42  - required:43      - ports44  - required:45      - port46 47additionalProperties: true48