Commit c3eb54aa authored by Chris Wilson's avatar Chris Wilson

drm/i915: Mark up "sentinel" requests

Sometimes we want to emit a terminator request, a request that flushes
the pipeline and allows no request to come after it. This can be used
for a "preempt-to-idle" to ensure that upon processing the
context-switch to that request, all other active contexts have been
flushed.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191012070136.32058-1-chris@chris-wilson.co.uk
parent d8ad5f52
...@@ -1208,7 +1208,8 @@ static bool can_merge_rq(const struct i915_request *prev, ...@@ -1208,7 +1208,8 @@ static bool can_merge_rq(const struct i915_request *prev,
if (i915_request_completed(next)) if (i915_request_completed(next))
return true; return true;
if (unlikely(prev->flags ^ next->flags) & I915_REQUEST_NOPREEMPT) if (unlikely((prev->flags ^ next->flags) &
(I915_REQUEST_NOPREEMPT | I915_REQUEST_SENTINEL)))
return false; return false;
if (!can_merge_ctx(prev->hw_context, next->hw_context)) if (!can_merge_ctx(prev->hw_context, next->hw_context))
...@@ -1659,6 +1660,9 @@ static void execlists_dequeue(struct intel_engine_cs *engine) ...@@ -1659,6 +1660,9 @@ static void execlists_dequeue(struct intel_engine_cs *engine)
if (last->hw_context == rq->hw_context) if (last->hw_context == rq->hw_context)
goto done; goto done;
if (i915_request_has_sentinel(last))
goto done;
/* /*
* If GVT overrides us we only ever submit * If GVT overrides us we only ever submit
* port[0], leaving port[1] empty. Note that we * port[0], leaving port[1] empty. Note that we
......
...@@ -216,8 +216,9 @@ struct i915_request { ...@@ -216,8 +216,9 @@ struct i915_request {
unsigned long emitted_jiffies; unsigned long emitted_jiffies;
unsigned long flags; unsigned long flags;
#define I915_REQUEST_WAITBOOST BIT(0) #define I915_REQUEST_WAITBOOST BIT(0)
#define I915_REQUEST_NOPREEMPT BIT(1) #define I915_REQUEST_NOPREEMPT BIT(1)
#define I915_REQUEST_SENTINEL BIT(2)
/** timeline->request entry for this request */ /** timeline->request entry for this request */
struct list_head link; struct list_head link;
...@@ -440,6 +441,11 @@ static inline bool i915_request_has_nopreempt(const struct i915_request *rq) ...@@ -440,6 +441,11 @@ static inline bool i915_request_has_nopreempt(const struct i915_request *rq)
return unlikely(rq->flags & I915_REQUEST_NOPREEMPT); return unlikely(rq->flags & I915_REQUEST_NOPREEMPT);
} }
static inline bool i915_request_has_sentinel(const struct i915_request *rq)
{
return unlikely(rq->flags & I915_REQUEST_SENTINEL);
}
static inline struct intel_timeline * static inline struct intel_timeline *
i915_request_timeline(struct i915_request *rq) i915_request_timeline(struct i915_request *rq)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment