Message ID | 1302771827-26112-12-git-send-email-chris@chris-wilson.co.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, 14 Apr 2011 10:03:45 +0100, Chris Wilson <chris@chris-wilson.co.uk> wrote: > The docs have a dire warning not to attempt to access snooped (the old > style of cache sharing on pre-SandyBridge chipsets) pages through the GTT. > Prevent userspace from doing so by sending them a SIGBUS if they try. There is not plan for the user mode driver to use snooped access on pre-SNB chipsets. So, the kernel should not try to support this in any way.
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index dd2dc9d..1f57f99 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c @@ -1211,6 +1211,16 @@ int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf) trace_i915_gem_object_fault(obj, page_offset, true, write); + /* The docs warn of dire consequences if we try to write to a snooped + * page through the GTT. So kill the driver/app early with a SIGBUS. + */ + if (INTEL_INFO(dev)->gen < 6 && obj->cache_level != I915_CACHE_NONE) { + DRM_DEBUG("Attempting to read a snooped page through the GTT, " + "this is illegal on pre-SandyBridge chipsets.\n"); + ret = -EINVAL; + goto unlock; + } + /* Now bind it into the GTT if needed */ if (!obj->map_and_fenceable) { ret = i915_gem_object_unbind(obj);