aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2018-05-14 21:08:49 +0200
committerThierry Reding <treding@nvidia.com>2018-05-29 16:22:43 +0200
commitbccfaffb76a8974ca275b99e9293a2594ae75f31 (patch)
tree43cefe90b24a1522315e411e9598c90dcc2322db /Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt
parentgpu: drm: drm_vm: Adding new typedef vm_fault_t (diff)
downloadwireguard-linux-bccfaffb76a8974ca275b99e9293a2594ae75f31.tar.xz
wireguard-linux-bccfaffb76a8974ca275b99e9293a2594ae75f31.zip
display: panel: Add AUO g070vvn01 display support (800x480)
This commit adds support for AUO's 7.0" display. Signed-off-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180514190849.18723-1-lukma@denx.de
Diffstat (limited to 'Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt')
-rw-r--r--Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt b/Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt
new file mode 100644
index 000000000000..49e4105378f6
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/auo,g070vvn01.txt
@@ -0,0 +1,29 @@
+AU Optronics Corporation 7.0" FHD (800 x 480) TFT LCD panel
+
+Required properties:
+- compatible: should be "auo,g070vvn01"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX6Q based board
+
+ lcd_panel: lcd-panel {
+ compatible = "auo,g070vvn01";
+ backlight = <&backlight_lcd>;
+ power-supply = <&reg_display>;
+
+ port {
+ lcd_panel_in: endpoint {
+ remote-endpoint = <&lcd_display_out>;
+ };
+ };
+ };