diff options
author | Suraj Kandpal <suraj.kandpal@intel.com> | 2023-10-16 14:31:41 +0530 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-21 11:44:32 -0500 |
commit | 95ab70f134d837a566f2d998b3090f40227a1b60 (patch) | |
tree | 3d8f6cc5d6e74ecd7af48be5be72456b326da6f1 | |
parent | c79802d100d1dd8b1748ea7dc232f5e059bdc7c5 (diff) |
drm/xe/hdcp: Define intel_hdcp_gsc_check_status in Xe
Define intel_hdcp_gsc_check_status in Xe to account
for changes in i915 and Xe.
intel_hdcp_check_status always returns false as gsc cs
interface is not yet ported.
intel_hdcp_gsc_cs_required always returns true as going
forward gsc cs will always be required by upcoming
platforms
--v5
-Define intel_hdcp_gsc_cs_required()
--v6
-Explain reasons for the return values [Chaitanya]
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
-rw-r--r-- | drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c index 0453293af8ef..0f11a39333e2 100644 --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c @@ -6,6 +6,16 @@ #include "i915_drv.h" #include "intel_hdcp_gsc.h" +bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) +{ + return true; +} + +bool intel_hdcp_gsc_check_status(struct drm_i915_private *i915) +{ + return false; +} + int intel_hdcp_gsc_init(struct drm_i915_private *i915) { drm_info(&i915->drm, "HDCP support not yet implemented\n"); |