]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Free hardware status page on unload when physically mapped
authorKeith Packard <keithp@keithp.com>
Thu, 7 Oct 2010 08:20:12 +0000 (09:20 +0100)
committerAndi Kleen <ak@linux.intel.com>
Tue, 14 Dec 2010 22:40:03 +0000 (23:40 +0100)
commit c2873e9633fe908dccd36dbb1d370e9c59a1ca62 upstream.

A physically mapped hardware status page is allocated at driver load
time but was never freed. Call the existing code to free this page at
driver unload time on hardware which uses this kind.

Signed-off-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
[ickle: call before tearing down registers on KMS-only path, as pointed
out by Dave Airlie]
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/gpu/drm/i915/i915_dma.c

index d396fe5915dd2d14b7fb3126ab718537e45ccdc8..bdd39fb96590fa6cefd0161e047d5b1889a1e62b 100644 (file)
@@ -2297,6 +2297,9 @@ int i915_driver_unload(struct drm_device *dev)
                i915_gem_lastclose(dev);
 
                intel_cleanup_overlay(dev);
+
+               if (!I915_NEED_GFX_HWS(dev))
+                       i915_free_hws(dev);
        }
 
        intel_teardown_mchbar(dev);