The lvds.yaml file so far was both defining the generic LVDS properties (such as data-mapping) that could be used for any LVDS sink, but also the panel-lvds binding. That last binding was to describe LVDS panels simple enough, and had a number of other bindings using it as a base to specialise it further. However, this situation makes it fairly hard to extend and reuse both the generic parts, and the panel-lvds itself. Let's remove the panel-lvds parts and leave only the generic LVDS properties. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Maxime Ripard <maxime@cerno.tech> Link: https://lore.kernel.org/r/20220127143045.310199-1-maxime@cerno.tech
51 lines
930 B
YAML
51 lines
930 B
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/display/panel/innolux,ee101ia-01d.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Innolux Corporation 10.1" EE101IA-01D WXGA (1280x800) LVDS panel
|
|
|
|
maintainers:
|
|
- Heiko Stuebner <heiko.stuebner@bq.com>
|
|
- Thierry Reding <thierry.reding@gmail.com>
|
|
|
|
allOf:
|
|
- $ref: panel-common.yaml#
|
|
- $ref: /schemas/display/lvds.yaml/#
|
|
|
|
select:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
const: innolux,ee101ia-01d
|
|
|
|
required:
|
|
- compatible
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- const: innolux,ee101ia-01d
|
|
- const: panel-lvds
|
|
|
|
backlight: true
|
|
data-mapping: true
|
|
enable-gpios: true
|
|
power-supply: true
|
|
width-mm: true
|
|
height-mm: true
|
|
panel-timing: true
|
|
port: true
|
|
|
|
required:
|
|
- compatible
|
|
- data-mapping
|
|
- width-mm
|
|
- height-mm
|
|
- panel-timing
|
|
- port
|
|
|
|
additionalProperties: false
|
|
...
|