aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuston Li <juston.li@intel.com>2019-10-11 11:19:18 -0700
committerLyude Paul <lyude@redhat.com>2019-11-22 14:11:58 -0500
commit6025ba1204713a3d9667cc1a278ed180c5aa367c (patch)
tree82617e08101cdfbc95b3eda7dfd553912b66675e
parente8e61f105af43f33a60069b5b6a13356862ffb67 (diff)
downloadkernel_replicant_linux-6025ba1204713a3d9667cc1a278ed180c5aa367c.tar.gz
kernel_replicant_linux-6025ba1204713a3d9667cc1a278ed180c5aa367c.tar.bz2
kernel_replicant_linux-6025ba1204713a3d9667cc1a278ed180c5aa367c.zip
drm/i915: coffeelake supports hdcp2.2
This includes other platforms that utilize the same gen graphics as CFL: AML, WHL and CML. Signed-off-by: Juston Li <juston.li@intel.com> Reviewed-by: Ramalingam C <ramalingam.c@intel.com> Signed-off-by: Lyude Paul <lyude@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191011181918.29618-1-juston.li@intel.com
-rw-r--r--drivers/gpu/drm/i915/display/intel_hdcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index f1f41ca8402b..001ce27d7029 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -1887,7 +1887,7 @@ static bool is_hdcp2_supported(struct drm_i915_private *dev_priv)
return false;
return (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv) ||
- IS_KABYLAKE(dev_priv));
+ IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv));
}
void intel_hdcp_component_init(struct drm_i915_private *dev_priv)