summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorDaniel Vetter2019-06-11 10:08:48 +0200
committerDaniel Vetter2019-06-11 10:08:49 +0200
commit34c8a892ec5e23133e1f0e56e56b9190567283ca (patch)
treefa5d755f01f676e4b88a77050c4bb822a259b5fd /include/drm
parentMerge branch 'drm-next-5.3' of git://people.freedesktop.org/~agd5f/linux into... (diff)
parentdrm: rcar-du: Add support for missing 16-bit RGB1555 formats (diff)
downloadkernel-qcow2-linux-34c8a892ec5e23133e1f0e56e56b9190567283ca.tar.gz
kernel-qcow2-linux-34c8a892ec5e23133e1f0e56e56b9190567283ca.tar.xz
kernel-qcow2-linux-34c8a892ec5e23133e1f0e56e56b9190567283ca.zip
Merge tag 'du-next-20190608-2' of git://linuxtv.org/pinchartl/media into drm-next
R-Car DU changes for v5.3: - R8A774A1 SoC support - LVDS dual-link mode support - Support for additional formats - Misc fixes Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> From: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190608134652.GE4786@pendragon.ideasonboard.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drm_bridge.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/drm/drm_bridge.h b/include/drm/drm_bridge.h
index d4428913a4e1..aea1fcfd92a7 100644
--- a/include/drm/drm_bridge.h
+++ b/include/drm/drm_bridge.h
@@ -265,6 +265,14 @@ struct drm_bridge_timings {
* input signal after the clock edge.
*/
u32 hold_time_ps;
+ /**
+ * @dual_link:
+ *
+ * True if the bus operates in dual-link mode. The exact meaning is
+ * dependent on the bus type. For LVDS buses, this indicates that even-
+ * and odd-numbered pixels are received on separate links.
+ */
+ bool dual_link;
};
/**