-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: display: convert olimex,lcd-olinuxino to DT Schema
v2: - use "ic2" node name in example (Rob) Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Rob Herring <robh@kernel.org> Cc: Rob Herring <robh@kernel.org> Cc: Stefan Mavrodiev <stefan@olimex.com> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20200408195109.32692-36-sam@ravnborg.org
- Loading branch information
Sam Ravnborg
committed
Apr 15, 2020
1 parent
5717f3b
commit 8b9e7ac
Showing
3 changed files
with
71 additions
and
43 deletions.
There are no files selected for viewing
42 changes: 0 additions & 42 deletions
42
Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
This file was deleted.
Oops, something went wrong.
70 changes: 70 additions & 0 deletions
70
Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/panel/olimex,lcd-olinuxino.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Binding for Olimex Ltd. LCD-OLinuXino bridge panel. | ||
|
||
maintainers: | ||
- Stefan Mavrodiev <stefan@olimex.com> | ||
|
||
description: | | ||
This device can be used as bridge between a host controller and LCD panels. | ||
Currently supported LCDs are: | ||
- LCD-OLinuXino-4.3TS | ||
- LCD-OLinuXino-5 | ||
- LCD-OLinuXino-7 | ||
- LCD-OLinuXino-10 | ||
The panel itself contains: | ||
- AT24C16C EEPROM holding panel identification and timing requirements | ||
- AR1021 resistive touch screen controller (optional) | ||
- FT5x6 capacitive touch screnn controller (optional) | ||
- GT911/GT928 capacitive touch screen controller (optional) | ||
The above chips share same I2C bus. The EEPROM is factory preprogrammed with | ||
device information (id, serial, etc.) and timing requirements. | ||
Touchscreen bingings can be found in these files: | ||
- input/touchscreen/goodix.yaml | ||
- input/touchscreen/edt-ft5x06.txt | ||
- input/touchscreen/ar1021.txt | ||
allOf: | ||
- $ref: panel-common.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: olimex,lcd-olinuxino | ||
|
||
backlight: true | ||
enable-gpios: true | ||
power-supply: true | ||
reg: true | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- power-supply | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/gpio/gpio.h> | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
panel@50 { | ||
compatible = "olimex,lcd-olinuxino"; | ||
reg = <0x50>; | ||
power-supply = <®_vcc5v0>; | ||
enable-gpios = <&pio 7 8 GPIO_ACTIVE_HIGH>; | ||
backlight = <&backlight>; | ||
}; | ||
}; | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters