aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorAjay Kumar <ajaykumar.rs@samsung.com>2015-01-20 11:38:47 -0500
committerThierry Reding <treding@nvidia.com>2015-01-28 02:47:29 -0500
commit5bbb9a2ef87a9c62fc7ce89337a2aa90802be080 (patch)
treec9f16d9d5a6a086d0f29b72050ae9ab7618570e6 /Documentation
parent801855671ad1dc751aa5aa66047cfe314170a566 (diff)
drm/bridge: ptn3460: support drm_panel
Add drm_panel calls to the driver to make the panel and bridge work together in tandem. Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com> Acked-by: Inki Dae <inki.dae@samsung.com> Tested-by: Rahul Sharma <rahul.sharma@samsung.com> Tested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk> Tested-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Tested-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/drm/bridge/ptn3460.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/drm/bridge/ptn3460.txt b/Documentation/devicetree/bindings/drm/bridge/ptn3460.txt
index 52b93b2c6748..663fe6c1a6ea 100644
--- a/Documentation/devicetree/bindings/drm/bridge/ptn3460.txt
+++ b/Documentation/devicetree/bindings/drm/bridge/ptn3460.txt
@@ -17,6 +17,11 @@ Required properties:
17 | 6 | 1600x900 | ChiMei M215HGE | 17 | 6 | 1600x900 | ChiMei M215HGE |
18 +-------+------------+------------------+ 18 +-------+------------+------------------+
19 19
20 - video interfaces: Device node can contain video interface port
21 nodes for panel according to [1].
22
23[1]: Documentation/devicetree/bindings/media/video-interfaces.txt
24
20Example: 25Example:
21 lvds-bridge@20 { 26 lvds-bridge@20 {
22 compatible = "nxp,ptn3460"; 27 compatible = "nxp,ptn3460";
@@ -24,4 +29,11 @@ Example:
24 powerdown-gpio = <&gpy2 5 1 0 0>; 29 powerdown-gpio = <&gpy2 5 1 0 0>;
25 reset-gpio = <&gpx1 5 1 0 0>; 30 reset-gpio = <&gpx1 5 1 0 0>;
26 edid-emulation = <5>; 31 edid-emulation = <5>;
32 ports {
33 port@0 {
34 bridge_out: endpoint {
35 remote-endpoint = <&panel_in>;
36 };
37 };
38 };
27 }; 39 };