]> asedeno.scripts.mit.edu Git - linux.git/commit
drm/i915: use a separate context for gpu relocs
authorDaniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Tue, 27 Aug 2019 18:58:05 +0000 (11:58 -0700)
committerChris Wilson <chris@chris-wilson.co.uk>
Tue, 27 Aug 2019 20:14:43 +0000 (21:14 +0100)
commit8a9a982767b7c89b2f23290e4f0f21f194b79dfe
treeff899e34f4872e2db978da2e23899a63d2529933
parent45e9c829ebeaa13b3b999f76963b9920d2147128
drm/i915: use a separate context for gpu relocs

The CS pre-parser can pre-fetch commands across memory sync points and
starting from gen12 it is able to pre-fetch across BB_START and BB_END
boundaries as well, so when we emit gpu relocs the pre-parser might
fetch the target location of the reloc before the memory write lands.

The parser can't pre-fetch across the ctx switch, so we use a separate
context to guarantee that the memory is synchronized before the parser
can get to it.

Note that there is no risk of the CS doing a lite restore from the reloc
context to the user context, even if the two have the same hw_id,
because since gen11 the CS also checks the LRCA when deciding if it can
lite-restore.

v2: limit new context to gen12+, release in eb_destroy, add a comment
    in emit_fini_breadcrumb (Chris).

Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190827185805.21799-1-daniele.ceraolospurio@intel.com
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
drivers/gpu/drm/i915/gt/intel_lrc.c