drm/i915/uc: Skip GuC HW unwinding if GuC is already dead
authorMichal Wajdeczko <michal.wajdeczko@intel.com>
Wed, 22 May 2019 19:32:01 +0000 (19:32 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 23 May 2019 20:58:36 +0000 (21:58 +0100)
We should not attempt to unwind GuC hardware/firmware setup
if we already have sanitized GuC.

v2: replace USES_GUC with guc_is_loaded

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190522193203.23932-8-michal.wajdeczko@intel.com
drivers/gpu/drm/i915/intel_uc.c

index 1a945f6..3d81a51 100644 (file)
@@ -460,7 +460,7 @@ void intel_uc_fini_hw(struct drm_i915_private *i915)
 {
        struct intel_guc *guc = &i915->guc;
 
-       if (!USES_GUC(i915))
+       if (!intel_guc_is_loaded(guc))
                return;
 
        GEM_BUG_ON(!HAS_GUC(i915));