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

dt-bindings: display: Convert tfc,s9700rtwv43tr-01b panel to DT schema

Convert the tfc,s9700rtwv43tr-01b panel binding to DT schema.

Cc: Heiko Stuebner <heiko.stuebner@bq.com>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: dri-devel@lists.freedesktop.org
Reviewed-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190705164221.4462-9-robh@kernel.org

+33 -15
-15
Documentation/devicetree/bindings/display/panel/tfc,s9700rtwv43tr-01b.txt
··· 1 - TFC S9700RTWV43TR-01B 7" Three Five Corp 800x480 LCD panel with 2 - resistive touch 3 - 4 - The panel is found on TI AM335x-evm. 5 - 6 - Required properties: 7 - - compatible: should be "tfc,s9700rtwv43tr-01b" 8 - - power-supply: See panel-common.txt 9 - 10 - Optional properties: 11 - - enable-gpios: GPIO pin to enable or disable the panel, if there is one 12 - - backlight: phandle of the backlight device attached to the panel 13 - 14 - This binding is compatible with the simple-panel binding, which is specified 15 - in simple-panel.txt in this directory.
+33
Documentation/devicetree/bindings/display/panel/tfc,s9700rtwv43tr-01b.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/display/panel/tfc,s9700rtwv43tr-01b.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: TFC S9700RTWV43TR-01B 7" Three Five Corp 800x480 LCD panel with resistive touch 8 + 9 + maintainers: 10 + - Jyri Sarha <jsarha@ti.com> 11 + - Thierry Reding <thierry.reding@gmail.com> 12 + 13 + description: |+ 14 + The panel is found on TI AM335x-evm. 15 + 16 + allOf: 17 + - $ref: panel-common.yaml# 18 + 19 + properties: 20 + compatible: 21 + const: tfc,s9700rtwv43tr-01b 22 + 23 + enable-gpios: true 24 + backlight: true 25 + port: true 26 + 27 + additionalProperties: false 28 + 29 + required: 30 + - compatible 31 + - power-supply 32 + 33 + ...