projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01302d4
)
drm/dp: add drm_dp_tps3_supported helper
author
Jani Nikula
<jani.nikula@intel.com>
Wed, 26 Aug 2015 11:33:31 +0000
(14:33 +0300)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Tue, 1 Sep 2015 09:18:50 +0000
(11:18 +0200)
Cc: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
include/drm/drm_dp_helper.h
patch
|
blob
|
blame
|
history
diff --git
a/include/drm/drm_dp_helper.h
b/include/drm/drm_dp_helper.h
index 94898f6ea02af17d84dbbe46f0c8e8818b5b9124..6aa59b9c733581b11a35892728216bab24ec5acd 100644
(file)
--- a/
include/drm/drm_dp_helper.h
+++ b/
include/drm/drm_dp_helper.h
@@
-633,6
+633,13
@@
drm_dp_enhanced_frame_cap(const u8 dpcd[DP_RECEIVER_CAP_SIZE])
(dpcd[DP_MAX_LANE_COUNT] & DP_ENHANCED_FRAME_CAP);
}
+static inline bool
+drm_dp_tps3_supported(const u8 dpcd[DP_RECEIVER_CAP_SIZE])
+{
+ return dpcd[DP_DPCD_REV] >= 0x12 &&
+ dpcd[DP_MAX_LANE_COUNT] & DP_TPS3_SUPPORTED;
+}
+
/*
* DisplayPort AUX channel
*/