If the engine says it is ready for reset, it is ready
so avoid further dancing and proceed.

Cc: Chris Wilson <[email protected]
Signed-off-by: Mika Kuoppala <[email protected]>
---
 drivers/gpu/drm/i915/i915_reset.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/gpu/drm/i915/i915_reset.c 
b/drivers/gpu/drm/i915/i915_reset.c
index 68875ba43b8d..cde1a5309336 100644
--- a/drivers/gpu/drm/i915/i915_reset.c
+++ b/drivers/gpu/drm/i915/i915_reset.c
@@ -490,8 +490,13 @@ static int gen11_reset_engines(struct drm_i915_private 
*i915,
 static int gen8_engine_reset_prepare(struct intel_engine_cs *engine)
 {
        struct intel_uncore *uncore = engine->uncore;
+       u32 ctl;
        int ret;
 
+       ctl = intel_uncore_read_fw(uncore, RING_RESET_CTL(engine->mmio_base));
+       if (ctl & RESET_CTL_READY_TO_RESET)
+               return 0;
+
        intel_uncore_write_fw(uncore,
                              RING_RESET_CTL(engine->mmio_base),
                              _MASKED_BIT_ENABLE(RESET_CTL_REQUEST_RESET));
-- 
2.17.1

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to