]> git.baikalelectronics.ru Git - kernel.git/commit
i915: Set object to gtt domain when faulting it back in
authorKristian Høgsberg <krh@redhat.com>
Wed, 27 May 2009 18:37:28 +0000 (14:37 -0400)
committerEric Anholt <eric@anholt.net>
Wed, 27 May 2009 20:06:47 +0000 (13:06 -0700)
commit7d2356c520db25bb8ec8ecb142d0b8fb11822a9e
tree5979aceee3b529594e42a32973c5e31bd750234b
parentdac194489c1b2ccca666eca8123e4a89e2e21ed8
i915: Set object to gtt domain when faulting it back in

When a GEM object is evicted from the GTT we set it to the CPU domain,
as it might get swapped in and out or ever mmapped regularly.  If the
object is mmapped through the GTT it can still get evicted in this way
by other objects requiring GTT space.  When the GTT mapping is touched
again we fault it back into the GTT, but fail to set it back to the
GTT domain.  This means we fail to flush any cached CPU writes to the
pages backing the object which will then happen "eventually", typically
after we write to the page through the uncached GTT mapping.

[anholt: Note that userland does do a set_domain(GTT, GTT) when starting
to access the GTT mapping.  That covers getting the existing mapping of the
object synchronized if it's bound to the GTT.  But set_domain(GTT, GTT)
doesn't do anything if the object is currently unbound.  This fix covers the
transition to being bound for GTT mapping.]

Fixes glyph and other pixmap corruption during swapping.  fd.o bug #21790

Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
drivers/gpu/drm/i915/i915_gem.c