From: Juston Li Date: Fri, 11 Oct 2019 18:19:18 +0000 (-0700) Subject: drm/i915: coffeelake supports hdcp2.2 X-Git-Tag: v5.10.7~1861^2~24^2~1674 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6025ba1204713a3d9667cc1a278ed180c5aa367c;p=platform%2Fkernel%2Flinux-rpi.git 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 Reviewed-by: Ramalingam C Signed-off-by: Lyude Paul Link: https://patchwork.freedesktop.org/patch/msgid/20191011181918.29618-1-juston.li@intel.com --- diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c index f1f41ca..001ce27 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)