aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspanda@codeaurora.org <spanda@codeaurora.org>2018-05-15 01:52:44 -0400
committerThierry Reding <treding@nvidia.com>2018-05-18 06:05:20 -0400
commit9c04400f7ea6bbdfd0f069f082188c34c2d6a929 (patch)
treeb3283fa771b7a30ece96dfa7d81dce6ed8bfe56c
parenteea740a98df9ff914001bd066389b6e8f1024991 (diff)
dt-bindings: drm/panel: Document Innolux TV123WAM panel bindings
Innolux TV123WAM is a 12.3" eDP display panel with 2160x1440 resolution, which can be supported by simple panel driver. Changes in v1: - Make use of simple panel driver instead of creating a new driver for this panel (Sean Paul). - Combine dt-binding and driver changes into one patch as done by other existing panel support changes. Changes in v2: - Separate driver change from dt-binding documentation (Rob Herring). - Add the properties from simple-panel binding that are applicable to this panel (Rob Herring). Signed-off-by: Sandeep Panda <spanda@codeaurora.org> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/1526363564-13823-5-git-send-email-spanda@codeaurora.org
-rw-r--r--Documentation/devicetree/bindings/display/panel/innolux,tv123wam.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/panel/innolux,tv123wam.txt b/Documentation/devicetree/bindings/display/panel/innolux,tv123wam.txt
new file mode 100644
index 000000000000..a9b35265fa13
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/innolux,tv123wam.txt
@@ -0,0 +1,20 @@
1Innolux TV123WAM 12.3 inch eDP 2K display panel
2
3This binding is compatible with the simple-panel binding, which is specified
4in simple-panel.txt in this directory.
5
6Required properties:
7- compatible: should be "innolux,tv123wam"
8- power-supply: regulator to provide the supply voltage
9
10Optional properties:
11- enable-gpios: GPIO pin to enable or disable the panel
12- backlight: phandle of the backlight device attached to the panel
13
14Example:
15 panel_edp: panel-edp {
16 compatible = "innolux,tv123wam";
17 enable-gpios = <&msmgpio 31 GPIO_ACTIVE_LOW>;
18 power-supply = <&pm8916_l2>;
19 backlight = <&backlight>;
20 };