]> Pileus Git - ~andy/linux/commitdiff
drm/i915: Allow PPGTT enable to fail
authorBen Widawsky <benjamin.widawsky@intel.com>
Tue, 9 Apr 2013 01:43:56 +0000 (18:43 -0700)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 18 Apr 2013 07:43:16 +0000 (09:43 +0200)
I'm really not happy that we have to support this, but this will be the
simplest way to handle cases where PPGTT init can fail, which I promise
will be coming in the future.

v2: Resolve conflicts due to patch series reordering.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net> (v1)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_drv.c
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_gem.c
drivers/gpu/drm/i915/i915_gem_gtt.c

index 70d10de73bbd21303c8a5d9756be3d59e051e1f7..bddb9a50ea768e3a6055d0fda6f37159844a7f74 100644 (file)
@@ -927,8 +927,11 @@ int i915_reset(struct drm_device *dev)
                        ring->init(ring);
 
                i915_gem_context_init(dev);
-               if (dev_priv->mm.aliasing_ppgtt)
-                       dev_priv->mm.aliasing_ppgtt->enable(dev);
+               if (dev_priv->mm.aliasing_ppgtt) {
+                       ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
+                       if (ret)
+                               i915_gem_cleanup_aliasing_ppgtt(dev);
+               }
 
                /*
                 * It would make sense to re-init all the other hw state, at
index c1213213e4953ffd593aed90631e5e888aa2b3bc..f59a388a9e8ca8f17887425609775956dac53ae4 100644 (file)
@@ -449,7 +449,7 @@ struct i915_hw_ppgtt {
                               struct sg_table *st,
                               unsigned int pg_start,
                               enum i915_cache_level cache_level);
-       void (*enable)(struct drm_device *dev);
+       int (*enable)(struct drm_device *dev);
        void (*cleanup)(struct i915_hw_ppgtt *ppgtt);
 };
 
index 8a73a68a79ff5a30f45ac1aa4d5ce0eb919a68f5..da6d6de0a8b93466323641351622c8c13c6b6d45 100644 (file)
@@ -4029,8 +4029,13 @@ i915_gem_init_hw(struct drm_device *dev)
         * contexts before PPGTT.
         */
        i915_gem_context_init(dev);
-       if (dev_priv->mm.aliasing_ppgtt)
-               dev_priv->mm.aliasing_ppgtt->enable(dev);
+       if (dev_priv->mm.aliasing_ppgtt) {
+               ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
+               if (ret) {
+                       i915_gem_cleanup_aliasing_ppgtt(dev);
+                       DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
+               }
+       }
 
        return 0;
 }
index d32912e07bad09648ba4360a50ee5035411d6575..11143b4982fc80326acda7ebbebcbbcce02a212e 100644 (file)
@@ -75,7 +75,7 @@ static inline gen6_gtt_pte_t gen6_pte_encode(struct drm_device *dev,
        return pte;
 }
 
-static void gen6_ppgtt_enable(struct drm_device *dev)
+static int gen6_ppgtt_enable(struct drm_device *dev)
 {
        drm_i915_private_t *dev_priv = dev->dev_private;
        uint32_t pd_offset;
@@ -128,6 +128,7 @@ static void gen6_ppgtt_enable(struct drm_device *dev)
                I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
                I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
        }
+       return 0;
 }
 
 /* PPGTT support for Sandybdrige/Gen6 and later */