[PATCH 28/51] drm/i915: Move busywaiting control to the scheduler
Chris Wilson
chris at chris-wilson.co.uk
Sun Jan 31 02:09:08 UTC 2021
Busy-waiting is use for preempt-to-busy by schedulers, if they so
choose. Since it is not a property of the engine, but that of the
submission backend, move the flag from out of the engine to
i915_sched_engine.
Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
---
drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 4 ++--
drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 6 +++++-
drivers/gpu/drm/i915/i915_scheduler_types.h | 7 +++++++
3 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
index cac80af7ad1c..d5268cfe8dcf 100644
--- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c
@@ -507,7 +507,7 @@ gen8_emit_fini_breadcrumb_tail(struct i915_request *rq, u32 *cs)
*cs++ = MI_USER_INTERRUPT;
*cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
- if (intel_engine_has_semaphores(rq->engine))
+ if (i915_sched_use_busywait(&rq->engine->sched))
cs = emit_preempt_busywait(rq, cs);
rq->tail = intel_ring_offset(rq, cs);
@@ -599,7 +599,7 @@ gen12_emit_fini_breadcrumb_tail(struct i915_request *rq, u32 *cs)
*cs++ = MI_USER_INTERRUPT;
*cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
- if (intel_engine_has_semaphores(rq->engine))
+ if (i915_sched_use_busywait(&rq->engine->sched))
cs = gen12_emit_preempt_busywait(rq, cs);
rq->tail = intel_ring_offset(rq, cs);
diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
index 334f57b68c48..83c308ac0ff5 100644
--- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
+++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c
@@ -296,7 +296,7 @@ static bool need_preempt(const struct intel_engine_cs *engine,
const struct i915_sched_engine *se = &engine->sched;
int last_prio;
- if (!intel_engine_has_semaphores(engine))
+ if (!i915_sched_use_busywait(se))
return false;
/*
@@ -2850,6 +2850,10 @@ logical_ring_default_vfuncs(struct intel_engine_cs *engine)
intel_engine_has_preemption(engine))
__set_bit(I915_SCHED_HAS_TIMESLICES_BIT,
&engine->sched.flags);
+
+ if (intel_engine_has_preemption(engine))
+ __set_bit(I915_SCHED_USE_BUSYWAIT_BIT,
+ &engine->sched.flags);
}
static void logical_ring_default_irqs(struct intel_engine_cs *engine)
diff --git a/drivers/gpu/drm/i915/i915_scheduler_types.h b/drivers/gpu/drm/i915/i915_scheduler_types.h
index 673fa4adf2bc..f001865d4c9b 100644
--- a/drivers/gpu/drm/i915/i915_scheduler_types.h
+++ b/drivers/gpu/drm/i915/i915_scheduler_types.h
@@ -20,6 +20,7 @@ enum {
I915_SCHED_ACTIVE_BIT = 0,
I915_SCHED_HAS_TIMESLICES_BIT,
I915_SCHED_NEEDS_BREADCRUMB_BIT,
+ I915_SCHED_USE_BUSYWAIT_BIT,
};
/* Inter-engine scheduling delegation */
@@ -180,4 +181,10 @@ i915_sched_needs_breadcrumb_tasklet(const struct i915_sched_engine *se)
return test_bit(I915_SCHED_NEEDS_BREADCRUMB_BIT, &se->flags);
}
+static inline bool
+i915_sched_use_busywait(const struct i915_sched_engine *se)
+{
+ return test_bit(I915_SCHED_USE_BUSYWAIT_BIT, &se->flags);
+}
+
#endif /* _I915_SCHEDULER_TYPES_H_ */
--
2.20.1
More information about the Intel-gfx-trybot
mailing list