mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-06 02:24:14 +08:00
drm/i915/gt: Check for arbitration after writing start seqno
On the off chance that we need to arbitrate before launching the payload, perform the check after we signal the request is ready to start. Assuming instantaneous processing of the CS event, the request will then be treated as having started when we make the decisions as to how to process that CS event. v2: More commentary about the users of i915_request_started() as a reminder about why we are marking the initial breadcrumb. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210112100759.32698-1-chris@chris-wilson.co.uk
This commit is contained in:
parent
8c1f21273e
commit
1a51b50c72
@ -361,19 +361,30 @@ int gen8_emit_init_breadcrumb(struct i915_request *rq)
|
||||
if (IS_ERR(cs))
|
||||
return PTR_ERR(cs);
|
||||
|
||||
*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
|
||||
*cs++ = hwsp_offset(rq);
|
||||
*cs++ = 0;
|
||||
*cs++ = rq->fence.seqno - 1;
|
||||
|
||||
/*
|
||||
* Check if we have been preempted before we even get started.
|
||||
*
|
||||
* After this point i915_request_started() reports true, even if
|
||||
* we get preempted and so are no longer running.
|
||||
*
|
||||
* i915_request_started() is used during preemption processing
|
||||
* to decide if the request is currently inside the user payload
|
||||
* or spinning on a kernel semaphore (or earlier). For no-preemption
|
||||
* requests, we do allow preemption on the semaphore before the user
|
||||
* payload, but do not allow preemption once the request is started.
|
||||
*
|
||||
* i915_request_started() is similarly used during GPU hangs to
|
||||
* determine if the user's payload was guilty, and if so, the
|
||||
* request is banned. Before the request is started, it is assumed
|
||||
* to be unharmed and an innocent victim of another's hang.
|
||||
*/
|
||||
*cs++ = MI_ARB_CHECK;
|
||||
*cs++ = MI_NOOP;
|
||||
|
||||
*cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
|
||||
*cs++ = hwsp_offset(rq);
|
||||
*cs++ = 0;
|
||||
*cs++ = rq->fence.seqno - 1;
|
||||
*cs++ = MI_ARB_CHECK;
|
||||
|
||||
intel_ring_advance(rq, cs);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user