Skip to content

Commit

Permalink
drm/i915/huc: Assert that HuC vma is placed in GuC accessible range
Browse files Browse the repository at this point in the history
HuC firmware is mapped at GuC accessible range. Let's add an assert to
verify that.

Cc: Anusha Srivatsa <anusha.srivatsa@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170120192348.2049-2-michal.winiarski@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
  • Loading branch information
Michał Winiarski authored and Chris Wilson committed Jan 20, 2017
1 parent 7e8d12b commit 3139b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_huc.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ void intel_guc_auth_huc(struct drm_i915_private *dev_priv)

/* Specify auth action and where public signature is. */
data[0] = INTEL_GUC_ACTION_AUTHENTICATE_HUC;
data[1] = i915_ggtt_offset(vma) + huc->fw.rsa_offset;
data[1] = guc_ggtt_offset(vma) + huc->fw.rsa_offset;

ret = intel_guc_send(guc, data, ARRAY_SIZE(data));
if (ret) {
Expand Down

0 comments on commit 3139b4a

Please sign in to comment.