aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-02-14 08:01:17 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-02-14 08:18:07 -0500
commitc69766f2b9fa612840a820b68f7a417cc64c102b (patch)
tree4fbc88a20152762b7606d4c766b594c1d25e4028
parente01f69295b32dfd756d768a1fdae124108bfec04 (diff)
drm/i915: Don't allocate context pages as mappable
Only the hardware really access them, so no need to have cpu gtt access available. Split out from Chris vma-bind rework. Note that this is only possible due to the split-up of the mappable pin flag into PIN_GLOBAL and PIN_MAPPABLE. Cc: Chris Wilson <chris@chris-wilson.co.uk> Cc: Ben Widawsky <benjamin.widawsky@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/intel_pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 136647037244..a6b877a4a916 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -2741,7 +2741,7 @@ intel_alloc_context_page(struct drm_device *dev)
2741 return NULL; 2741 return NULL;
2742 } 2742 }
2743 2743
2744 ret = i915_gem_obj_ggtt_pin(ctx, 4096, PIN_MAPPABLE); 2744 ret = i915_gem_obj_ggtt_pin(ctx, 4096, 0);
2745 if (ret) { 2745 if (ret) {
2746 DRM_ERROR("failed to pin power context: %d\n", ret); 2746 DRM_ERROR("failed to pin power context: %d\n", ret);
2747 goto err_unref; 2747 goto err_unref;