Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.c so that intel_hdcp_gsc_message can be redefined for xe as needed. --v2 -Correct commit message to reflect what patch is actually doing [Arun] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Mika Kahola <mika.kahola@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240306024741.1858039-2-suraj.kandpal@intel.com
23 lines
660 B
C
23 lines
660 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_HDCP_GSC_H__
|
|
#define __INTEL_HDCP_GSC_H__
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_private;
|
|
struct intel_hdcp_gsc_message;
|
|
|
|
bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915);
|
|
ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in,
|
|
size_t msg_in_len, u8 *msg_out,
|
|
size_t msg_out_len);
|
|
int intel_hdcp_gsc_init(struct drm_i915_private *i915);
|
|
void intel_hdcp_gsc_fini(struct drm_i915_private *i915);
|
|
bool intel_hdcp_gsc_check_status(struct drm_i915_private *i915);
|
|
|
|
#endif /* __INTEL_HDCP_GCS_H__ */
|