[PATCH 36/75] drm/i915: Move preempt-reset flag to the scheduler
Chris Wilson
chris at chris-wilson.co.uk
Tue Feb 2 13:11:22 UTC 2021
While the HW may support preemption, whether or not the scheduler
enforces preemption by forcibly resetting the current context is
ultimately up to the scheduler.
Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
---
drivers/gpu/drm/i915/gt/intel_engine.h | 7 ++-----
drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 4 +++-
drivers/gpu/drm/i915/i915_scheduler_types.h | 9 +++++++++
3 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_engine.h b/drivers/gpu/drm/i915/gt/intel_engine.h
index ca3a9cb06328..0b532424b6c7 100644
--- a/drivers/gpu/drm/i915/gt/intel_engine.h
+++ b/drivers/gpu/drm/i915/gt/intel_engine.h
@@ -244,12 +244,9 @@ static inline bool intel_engine_uses_guc(const struct intel_engine_cs *engine)
}
static inline bool
-intel_engine_has_preempt_reset(const struct intel_engine_cs *engine)
+intel_engine_has_preempt_reset(struct intel_engine_cs *engine)
{
- if (!IS_ACTIVE(CONFIG_DRM_I915_PREEMPT_TIMEOUT))
- return false;
-
- return intel_engine_has_preemption(engine);
+ return i915_sched_has_preempt_reset(intel_engine_get_scheduler(engine));
}
static inline bool
diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
index 2b2e9bbb7684..4e4cf8282c77 100644
--- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
+++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
@@ -3052,8 +3052,10 @@ static void init_execlists(struct intel_engine_cs *engine)
intel_engine_has_preemption(engine))
__set_bit(I915_SCHED_TIMESLICE_BIT, &engine->sched.flags);
- if (intel_engine_has_preemption(engine))
+ if (intel_engine_has_preemption(engine)) {
__set_bit(I915_SCHED_BUSYWAIT_BIT, &engine->sched.flags);
+ __set_bit(I915_SCHED_PREEMPT_RESET_BIT, &engine->sched.flags);
+ }
timer_setup(&engine->execlists.timer, execlists_timeslice, 0);
timer_setup(&engine->execlists.preempt, execlists_preempt, 0);
diff --git a/drivers/gpu/drm/i915/i915_scheduler_types.h b/drivers/gpu/drm/i915/i915_scheduler_types.h
index 4ccb247f84e7..7467e0f7b903 100644
--- a/drivers/gpu/drm/i915/i915_scheduler_types.h
+++ b/drivers/gpu/drm/i915/i915_scheduler_types.h
@@ -23,6 +23,7 @@ enum {
I915_SCHED_ACTIVE_BIT,
I915_SCHED_PRIORITY_BIT, /* priority sorting of queue */
I915_SCHED_TIMESLICE_BIT, /* multitasking for long workloads */
+ I915_SCHED_PREEMPT_RESET_BIT, /* reset if preemption times out */
I915_SCHED_BUSYWAIT_BIT, /* preempt-to-busy */
};
@@ -212,4 +213,12 @@ static inline bool i915_sched_use_busywait(const struct i915_sched *se)
return test_bit(I915_SCHED_BUSYWAIT_BIT, &se->flags);
}
+static inline bool i915_sched_has_preempt_reset(const struct i915_sched *se)
+{
+ if (!IS_ACTIVE(CONFIG_DRM_I915_PREEMPT_TIMEOUT))
+ return false;
+
+ return test_bit(I915_SCHED_PREEMPT_RESET_BIT, &se->flags);
+}
+
#endif /* _I915_SCHEDULER_TYPES_H_ */
--
2.20.1
More information about the Intel-gfx-trybot
mailing list