aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2018-10-23 09:46:29 +0200
committerLinus Walleij <linus.walleij@linaro.org>2018-10-24 16:26:45 +0200
commit674c9e198c57930d6616007ba853f22df6657f72 (patch)
tree88f0784699ed302cdd3aa297f67e9de9a683e483 /Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt
parentdrm: dsi: Add lane clock rate fields to DSI device (diff)
downloadlinux-dev-674c9e198c57930d6616007ba853f22df6657f72.tar.xz
linux-dev-674c9e198c57930d6616007ba853f22df6657f72.zip
drm/panel: Add DT bindings for Samsung S6D16D0
This adds the device tree bindings for the Samsung S6D16D0 panel. This is a command mode only panel using DSI. Cc: devicetree@vger.kernel.org Cc: Andrzej Hajda <a.hajda@samsung.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20181023074630.29186-1-linus.walleij@linaro.org
Diffstat (limited to 'Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt')
-rw-r--r--Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt b/Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt
new file mode 100644
index 000000000000..b94e366f451b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/samsung,s6d16d0.txt
@@ -0,0 +1,30 @@
+Samsung S6D16D0 4" 864x480 AMOLED panel
+
+Required properties:
+ - compatible: should be:
+ "samsung,s6d16d0",
+ - reg: the virtual channel number of a DSI peripheral
+ - vdd1-supply: I/O voltage supply
+ - reset-gpios: a GPIO spec for the reset pin (active low)
+
+The device node can contain one 'port' child node with one child
+'endpoint' node, according to the bindings defined in
+media/video-interfaces.txt. This node should describe panel's video bus.
+
+Example:
+&dsi {
+ ...
+
+ panel@0 {
+ compatible = "samsung,s6d16d0";
+ reg = <0>;
+ vdd1-supply = <&foo>;
+ reset-gpios = <&foo_gpio 0 GPIO_ACTIVE_LOW>;
+
+ port {
+ panel_in: endpoint {
+ remote-endpoint = <&dsi_out>;
+ };
+ };
+ };
+};