* reused when sending message to gsc cs.
                 * this is only populated post Meteorlake
                 */
-               struct intel_hdcp_gsc_message *hdcp_message;
+               struct intel_hdcp_gsc_context *gsc_context;
                /* Mutex to protect the above hdcp related values. */
                struct mutex hdcp_mutex;
        } hdcp;
 
 #include "i915_utils.h"
 #include "intel_hdcp_gsc.h"
 
-struct intel_hdcp_gsc_message {
+struct intel_hdcp_gsc_context {
        struct i915_vma *vma;
        void *hdcp_cmd_in;
        void *hdcp_cmd_out;
 
 /*This function helps allocate memory for the command that we will send to gsc cs */
 static int intel_hdcp_gsc_initialize_message(struct drm_i915_private *i915,
-                                            struct intel_hdcp_gsc_message *hdcp_message)
+                                            struct intel_hdcp_gsc_context *gsc_context)
 {
        struct intel_gt *gt = i915->media_gt;
        struct drm_i915_gem_object *obj = NULL;
 
        memset(cmd_in, 0, obj->base.size);
 
-       hdcp_message->hdcp_cmd_in = cmd_in;
-       hdcp_message->hdcp_cmd_out = cmd_out;
-       hdcp_message->vma = vma;
+       gsc_context->hdcp_cmd_in = cmd_in;
+       gsc_context->hdcp_cmd_out = cmd_out;
+       gsc_context->vma = vma;
 
        return 0;
 
        return err;
 }
 
-struct intel_hdcp_gsc_message *intel_hdcp_gsc_hdcp2_init(struct intel_display *display)
+struct intel_hdcp_gsc_context *intel_hdcp_gsc_hdcp2_init(struct intel_display *display)
 {
        struct drm_i915_private *i915 = to_i915(display->drm);
-       struct intel_hdcp_gsc_message *hdcp_message;
+       struct intel_hdcp_gsc_context *gsc_context;
        int ret;
 
-       hdcp_message = kzalloc(sizeof(*hdcp_message), GFP_KERNEL);
-       if (!hdcp_message)
+       gsc_context = kzalloc(sizeof(*gsc_context), GFP_KERNEL);
+       if (!gsc_context)
                return ERR_PTR(-ENOMEM);
 
        /*
         * NOTE: No need to lock the comp mutex here as it is already
         * going to be taken before this function called
         */
-       ret = intel_hdcp_gsc_initialize_message(i915, hdcp_message);
+       ret = intel_hdcp_gsc_initialize_message(i915, gsc_context);
        if (ret) {
-               drm_err(display->drm, "Could not initialize hdcp_message\n");
-               kfree(hdcp_message);
-               hdcp_message = ERR_PTR(ret);
+               drm_err(display->drm, "Could not initialize gsc_context\n");
+               kfree(gsc_context);
+               gsc_context = ERR_PTR(ret);
        }
 
-       return hdcp_message;
+       return gsc_context;
 }
 
-void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_message *hdcp_message)
+void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_context *gsc_context)
 {
-       if (!hdcp_message)
+       if (!gsc_context)
                return;
 
-       i915_vma_unpin_and_release(&hdcp_message->vma, I915_VMA_RELEASE_MAP);
-       kfree(hdcp_message);
+       i915_vma_unpin_and_release(&gsc_context->vma, I915_VMA_RELEASE_MAP);
+       kfree(gsc_context);
 }
 
 static int intel_gsc_send_sync(struct drm_i915_private *i915,
 /*
  * This function can now be used for sending requests and will also handle
  * receipt of reply messages hence no different function of message retrieval
- * is required. We will initialize intel_hdcp_gsc_message structure then add
+ * is required. We will initialize intel_hdcp_gsc_context structure then add
  * gsc cs memory header as stated in specs after which the normal HDCP payload
  * will follow
  */
        struct intel_gt *gt = i915->media_gt;
        struct intel_gsc_mtl_header *header_in, *header_out;
        const size_t max_msg_size = PAGE_SIZE - sizeof(*header_in);
-       struct intel_hdcp_gsc_message *hdcp_message;
+       struct intel_hdcp_gsc_context *gsc_context;
        u64 addr_in, addr_out, host_session_id;
        u32 reply_size, msg_size_in, msg_size_out;
        int ret, tries = 0;
 
        msg_size_in = msg_in_len + sizeof(*header_in);
        msg_size_out = msg_out_len + sizeof(*header_out);
-       hdcp_message = i915->display.hdcp.hdcp_message;
-       header_in = hdcp_message->hdcp_cmd_in;
-       header_out = hdcp_message->hdcp_cmd_out;
-       addr_in = i915_ggtt_offset(hdcp_message->vma);
+       gsc_context = i915->display.hdcp.gsc_context;
+       header_in = gsc_context->hdcp_cmd_in;
+       header_out = gsc_context->hdcp_cmd_out;
+       addr_in = i915_ggtt_offset(gsc_context->vma);
        addr_out = addr_in + PAGE_SIZE;
 
        memset(header_in, 0, msg_size_in);
        get_random_bytes(&host_session_id, sizeof(u64));
        intel_gsc_uc_heci_cmd_emit_mtl_header(header_in, HECI_MEADDRESS_HDCP,
                                              msg_size_in, host_session_id);
-       memcpy(hdcp_message->hdcp_cmd_in + sizeof(*header_in), msg_in, msg_in_len);
+       memcpy(gsc_context->hdcp_cmd_in + sizeof(*header_in), msg_in, msg_in_len);
 
        /*
         * Keep sending request in case the pending bit is set no need to add
                            reply_size, (u32)msg_out_len);
        }
 
-       memcpy(msg_out, hdcp_message->hdcp_cmd_out + sizeof(*header_out), msg_out_len);
+       memcpy(msg_out, gsc_context->hdcp_cmd_out + sizeof(*header_out), msg_out_len);
 
 err:
        return ret;
 
 
 struct drm_i915_private;
 struct intel_display;
-struct intel_hdcp_gsc_message;
+struct intel_hdcp_gsc_context;
 
 bool intel_hdcp_gsc_cs_required(struct intel_display *display);
 ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in,
                                size_t msg_out_len);
 bool intel_hdcp_gsc_check_status(struct intel_display *display);
 
-struct intel_hdcp_gsc_message *intel_hdcp_gsc_hdcp2_init(struct intel_display *display);
-void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_message *hdcp_message);
+struct intel_hdcp_gsc_context *intel_hdcp_gsc_hdcp2_init(struct intel_display *display);
+void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_context *gsc_context);
 
 #endif /* __INTEL_HDCP_GCS_H__ */
 
 
 int intel_hdcp_gsc_init(struct intel_display *display)
 {
-       struct intel_hdcp_gsc_message *hdcp_message;
+       struct intel_hdcp_gsc_context *gsc_context;
        struct i915_hdcp_arbiter *arbiter;
        int ret = 0;
 
 
        mutex_lock(&display->hdcp.hdcp_mutex);
 
-       hdcp_message = intel_hdcp_gsc_hdcp2_init(display);
-       if (IS_ERR(hdcp_message)) {
-               ret = PTR_ERR(hdcp_message);
+       gsc_context = intel_hdcp_gsc_hdcp2_init(display);
+       if (IS_ERR(gsc_context)) {
+               ret = PTR_ERR(gsc_context);
                kfree(arbiter);
                goto out;
        }
        display->hdcp.arbiter = arbiter;
        display->hdcp.arbiter->hdcp_dev = display->drm->dev;
        display->hdcp.arbiter->ops = &gsc_hdcp_ops;
-       display->hdcp.hdcp_message = hdcp_message;
+       display->hdcp.gsc_context = gsc_context;
 
 out:
        mutex_unlock(&display->hdcp.hdcp_mutex);
 
 void intel_hdcp_gsc_fini(struct intel_display *display)
 {
-       intel_hdcp_gsc_free_message(display->hdcp.hdcp_message);
-       display->hdcp.hdcp_message = NULL;
+       intel_hdcp_gsc_free_message(display->hdcp.gsc_context);
+       display->hdcp.gsc_context = NULL;
        kfree(display->hdcp.arbiter);
        display->hdcp.arbiter = NULL;
 }
 
 
 #define HECI_MEADDRESS_HDCP 18
 
-struct intel_hdcp_gsc_message {
+struct intel_hdcp_gsc_context {
        struct xe_bo *hdcp_bo;
        u64 hdcp_cmd_in;
        u64 hdcp_cmd_out;
 
 /*This function helps allocate memory for the command that we will send to gsc cs */
 static int intel_hdcp_gsc_initialize_message(struct intel_display *display,
-                                            struct intel_hdcp_gsc_message *hdcp_message)
+                                            struct intel_hdcp_gsc_context *gsc_context)
 {
        struct xe_device *xe = to_xe_device(display->drm);
        struct xe_bo *bo = NULL;
        cmd_out = cmd_in + PAGE_SIZE;
        xe_map_memset(xe, &bo->vmap, 0, 0, bo->size);
 
-       hdcp_message->hdcp_bo = bo;
-       hdcp_message->hdcp_cmd_in = cmd_in;
-       hdcp_message->hdcp_cmd_out = cmd_out;
+       gsc_context->hdcp_bo = bo;
+       gsc_context->hdcp_cmd_in = cmd_in;
+       gsc_context->hdcp_cmd_out = cmd_out;
 out:
        return ret;
 }
 
-struct intel_hdcp_gsc_message *intel_hdcp_gsc_hdcp2_init(struct intel_display *display)
+struct intel_hdcp_gsc_context *intel_hdcp_gsc_hdcp2_init(struct intel_display *display)
 {
-       struct intel_hdcp_gsc_message *hdcp_message;
+       struct intel_hdcp_gsc_context *gsc_context;
        int ret;
 
-       hdcp_message = kzalloc(sizeof(*hdcp_message), GFP_KERNEL);
-       if (!hdcp_message)
+       gsc_context = kzalloc(sizeof(*gsc_context), GFP_KERNEL);
+       if (!gsc_context)
                return ERR_PTR(-ENOMEM);
 
        /*
         * NOTE: No need to lock the comp mutex here as it is already
         * going to be taken before this function called
         */
-       ret = intel_hdcp_gsc_initialize_message(display, hdcp_message);
+       ret = intel_hdcp_gsc_initialize_message(display, gsc_context);
        if (ret) {
-               drm_err(display->drm, "Could not initialize hdcp_message\n");
-               kfree(hdcp_message);
-               hdcp_message = ERR_PTR(ret);
+               drm_err(display->drm, "Could not initialize gsc_context\n");
+               kfree(gsc_context);
+               gsc_context = ERR_PTR(ret);
        }
 
-       return hdcp_message;
+       return gsc_context;
 }
 
-void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_message *hdcp_message)
+void intel_hdcp_gsc_free_message(struct intel_hdcp_gsc_context *gsc_context)
 {
-       if (!hdcp_message)
+       if (!gsc_context)
                return;
 
-       xe_bo_unpin_map_no_vm(hdcp_message->hdcp_bo);
-       kfree(hdcp_message);
+       xe_bo_unpin_map_no_vm(gsc_context->hdcp_bo);
+       kfree(gsc_context);
 }
 
 static int xe_gsc_send_sync(struct xe_device *xe,
-                           struct intel_hdcp_gsc_message *hdcp_message,
+                           struct intel_hdcp_gsc_context *gsc_context,
                            u32 msg_size_in, u32 msg_size_out,
                            u32 addr_out_off)
 {
-       struct xe_gt *gt = hdcp_message->hdcp_bo->tile->media_gt;
-       struct iosys_map *map = &hdcp_message->hdcp_bo->vmap;
+       struct xe_gt *gt = gsc_context->hdcp_bo->tile->media_gt;
+       struct iosys_map *map = &gsc_context->hdcp_bo->vmap;
        struct xe_gsc *gsc = >->uc.gsc;
        int ret;
 
-       ret = xe_gsc_pkt_submit_kernel(gsc, hdcp_message->hdcp_cmd_in, msg_size_in,
-                                      hdcp_message->hdcp_cmd_out, msg_size_out);
+       ret = xe_gsc_pkt_submit_kernel(gsc, gsc_context->hdcp_cmd_in, msg_size_in,
+                                      gsc_context->hdcp_cmd_out, msg_size_out);
        if (ret) {
                drm_err(&xe->drm, "failed to send gsc HDCP msg (%d)\n", ret);
                return ret;
                                size_t msg_out_len)
 {
        const size_t max_msg_size = PAGE_SIZE - HDCP_GSC_HEADER_SIZE;
-       struct intel_hdcp_gsc_message *hdcp_message;
+       struct intel_hdcp_gsc_context *gsc_context;
        u64 host_session_id;
        u32 msg_size_in, msg_size_out;
        u32 addr_out_off, addr_in_wr_off = 0;
 
        msg_size_in = msg_in_len + HDCP_GSC_HEADER_SIZE;
        msg_size_out = msg_out_len + HDCP_GSC_HEADER_SIZE;
-       hdcp_message = xe->display.hdcp.hdcp_message;
+       gsc_context = xe->display.hdcp.gsc_context;
        addr_out_off = PAGE_SIZE;
 
        host_session_id = xe_gsc_create_host_session_id();
        xe_pm_runtime_get_noresume(xe);
-       addr_in_wr_off = xe_gsc_emit_header(xe, &hdcp_message->hdcp_bo->vmap,
+       addr_in_wr_off = xe_gsc_emit_header(xe, &gsc_context->hdcp_bo->vmap,
                                            addr_in_wr_off, HECI_MEADDRESS_HDCP,
                                            host_session_id, msg_in_len);
-       xe_map_memcpy_to(xe, &hdcp_message->hdcp_bo->vmap, addr_in_wr_off,
+       xe_map_memcpy_to(xe, &gsc_context->hdcp_bo->vmap, addr_in_wr_off,
                         msg_in, msg_in_len);
        /*
         * Keep sending request in case the pending bit is set no need to add
         * 20 times each message 50 ms apart
         */
        do {
-               ret = xe_gsc_send_sync(xe, hdcp_message, msg_size_in, msg_size_out,
+               ret = xe_gsc_send_sync(xe, gsc_context, msg_size_in, msg_size_out,
                                       addr_out_off);
 
                /* Only try again if gsc says so */
        if (ret)
                goto out;
 
-       xe_map_memcpy_from(xe, msg_out, &hdcp_message->hdcp_bo->vmap,
+       xe_map_memcpy_from(xe, msg_out, &gsc_context->hdcp_bo->vmap,
                           addr_out_off + HDCP_GSC_HEADER_SIZE,
                           msg_out_len);