drm/i915/hdcp: Add new remote capability check shim function
authorSuraj Kandpal <suraj.kandpal@intel.com>
Mon, 26 Feb 2024 05:10:18 +0000 (10:40 +0530)
committerAnkit Nautiyal <ankit.k.nautiyal@intel.com>
Mon, 26 Feb 2024 05:48:14 +0000 (11:18 +0530)
Create a remote HDCP capability shim function which can read the
remote monitor HDCP capability when in MST configuration.

--v2
-Add an assertion to make sure only mst encoder call this remote_cap
function [Ankit]

--v3
-rename remote_hdcp_cap to remote_hdcp_capability [Jani]

--v4
-fix hdcp2_prerequisite check condition
-Move intel_dp_hdcp_get_remote_capability to dp_mst shim instead of
having it in dp shim [Ankit]

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240226051017.1652970-2-suraj.kandpal@intel.com
drivers/gpu/drm/i915/display/intel_display_types.h
drivers/gpu/drm/i915/display/intel_dp_hdcp.c
drivers/gpu/drm/i915/display/intel_hdcp.c
drivers/gpu/drm/i915/display/intel_hdcp.h

index b6f86129c0bc64767bed595ba9978a8ee5f9638c..8ce986fadd9aaddf6e25632f2e6ed2a90c607a67 100644 (file)
@@ -531,6 +531,10 @@ struct intel_hdcp_shim {
        /* HDCP2.2 Link Integrity Check */
        int (*check_2_2_link)(struct intel_digital_port *dig_port,
                              struct intel_connector *connector);
+
+       /* HDCP remote sink cap */
+       int (*get_remote_hdcp_capability)(struct intel_connector *connector,
+                                         bool *hdcp_capable, bool *hdcp2_capable);
 };
 
 struct intel_hdcp {
index bf90e9024febe81da7815626e115c1f1d61460c3..eab6e9fab4e681dee4b563e18e31ea459a9a4ec6 100644 (file)
@@ -672,6 +672,32 @@ int intel_dp_hdcp2_get_capability(struct intel_connector *connector,
        return _intel_dp_hdcp2_get_capability(aux, capable);
 }
 
+static
+int intel_dp_hdcp_get_remote_capability(struct intel_connector *connector,
+                                       bool *hdcp_capable,
+                                       bool *hdcp2_capable)
+{
+       struct drm_i915_private *i915 = to_i915(connector->base.dev);
+       struct drm_dp_aux *aux = &connector->port->aux;
+       u8 bcaps;
+       int ret;
+
+       if (!intel_encoder_is_mst(connector->encoder))
+               return -EINVAL;
+
+       ret =  _intel_dp_hdcp2_get_capability(aux, hdcp2_capable);
+       if (ret)
+               return ret;
+
+       ret = intel_dp_hdcp_read_bcaps(aux, i915, &bcaps);
+       if (ret)
+               return ret;
+
+       *hdcp_capable = bcaps & DP_BCAPS_HDCP_CAPABLE;
+
+       return 0;
+}
+
 static const struct intel_hdcp_shim intel_dp_hdcp_shim = {
        .write_an_aksv = intel_dp_hdcp_write_an_aksv,
        .read_bksv = intel_dp_hdcp_read_bksv,
@@ -820,6 +846,7 @@ static const struct intel_hdcp_shim intel_dp_mst_hdcp_shim = {
        .stream_2_2_encryption = intel_dp_mst_hdcp2_stream_encryption,
        .check_2_2_link = intel_dp_mst_hdcp2_check_link,
        .hdcp_2_2_get_capability = intel_dp_hdcp2_get_capability,
+       .get_remote_hdcp_capability = intel_dp_hdcp_get_remote_capability,
        .protocol = HDCP_PROTOCOL_DP,
 };
 
index c1a32f9f119991149539b8ed7cd6d99a21dbf502..801b8f0495bb0f7869b5ad144c570652d8f00b86 100644 (file)
@@ -205,6 +205,22 @@ bool intel_hdcp2_get_capability(struct intel_connector *connector)
        return capable;
 }
 
+void intel_hdcp_get_remote_capability(struct intel_connector *connector,
+                                     bool *hdcp_capable,
+                                     bool *hdcp2_capable)
+{
+       struct intel_hdcp *hdcp = &connector->hdcp;
+
+       if (!hdcp->shim->get_remote_hdcp_capability)
+               return;
+
+       hdcp->shim->get_remote_hdcp_capability(connector, hdcp_capable,
+                                              hdcp2_capable);
+
+       if (!intel_hdcp2_prerequisite(connector))
+               *hdcp2_capable = false;
+}
+
 static bool intel_hdcp_in_use(struct drm_i915_private *i915,
                              enum transcoder cpu_transcoder, enum port port)
 {
index aeefb3c13d2c2221fc7636c9026b147e2e428d9f..477f2d2bb120d86edf47d6357afbd04beff00356 100644 (file)
@@ -40,6 +40,9 @@ void intel_hdcp_update_pipe(struct intel_atomic_state *state,
 bool is_hdcp_supported(struct drm_i915_private *i915, enum port port);
 bool intel_hdcp_get_capability(struct intel_connector *connector);
 bool intel_hdcp2_get_capability(struct intel_connector *connector);
+void intel_hdcp_get_remote_capability(struct intel_connector *connector,
+                                     bool *hdcp_capable,
+                                     bool *hdcp2_capable);
 void intel_hdcp_component_init(struct drm_i915_private *i915);
 void intel_hdcp_component_fini(struct drm_i915_private *i915);
 void intel_hdcp_cleanup(struct intel_connector *connector);