i915: enable bus mastering on i915 at resume time
authorJie Luo <clotho67@gmail.com>
Tue, 24 Jun 2008 17:38:31 +0000 (10:38 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Tue, 1 Jul 2008 19:22:54 +0000 (12:22 -0700)
On 9xx chips, bus mastering needs to be enabled at resume time for much of the
chip to function.  With this patch, vblank interrupts will work as expected
on resume, along with other chip functions.   Fixes kernel bugzilla #10844.

Signed-off-by: Jie Luo <clotho67@gmail.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
linux-core/i915_drv.c

index a1964f4..be25239 100644 (file)
@@ -95,6 +95,7 @@ static int i915_resume(struct drm_device *dev)
        pci_restore_state(dev->pdev);
        if (pci_enable_device(dev->pdev))
                return -1;
+       pci_set_master(dev->pdev);
 
        i915_restore_state(dev);