Just to confuse matters further, the following patch does *not* help.
Even with this patch applied, power consumption often goes high when
resuming, and writing 1 to i915_wedged after fully resuming fixes it.

I now officially have no clue what's going on.  Maybe there's
something wrong with the i915 resume code that increases power
consumption.

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 7f436ec..71472a9 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -99,11 +99,28 @@ static int i915_resume(struct drm_device *dev)
 {
        struct drm_i915_private *dev_priv = dev->dev_private;
        int ret = 0;
+       u8 gdrst;
+       unsigned long timeout;
+

        if (pci_enable_device(dev->pdev))
                return -1;
        pci_set_master(dev->pdev);

+       pci_read_config_byte(dev->pdev, GDRST, &gdrst);
+       pci_write_config_byte(dev->pdev, GDRST, gdrst | GDRST_RENDER);
+       udelay(50);
+       //pci_write_config_byte(dev->pdev, GDRST, gdrst & 0xfe);
+       
+       /* ...we don't want to loop forever though, 500ms should be plenty */
+       timeout = jiffies + msecs_to_jiffies(500);
+       do {
+               udelay(100);
+               pci_read_config_byte(dev->pdev, GDRST, &gdrst);
+       } while ((gdrst & 0x1) && time_after(timeout, jiffies));
+       printk(KERN_INFO "i915: Reset on resume took %d ms\n",
+              jiffies_to_msecs(jiffies - timeout + msecs_to_jiffies(500)));
+
        i915_restore_state(dev);

        intel_opregion_init(dev, 1);

--Andy

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to