[Intel-gfx] [PATCH 1/3] drm/i915: Shortcut readiness to reset check

Mika Kuoppala mika.kuoppala at linux.intel.com
Fri Apr 12 15:37:21 UTC 2019


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

Cc: Chris Wilson <chris at chris-wilson.co.uk
Signed-off-by: Mika Kuoppala <mika.kuoppala at linux.intel.com>
---
 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



More information about the Intel-gfx mailing list