public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6 agpgart and acpi standby/resume
@ 2004-01-22 18:58 Terence Ripperda, tripperda
  2004-01-22 19:44 ` Dave Jones
  0 siblings, 1 reply; 4+ messages in thread
From: Terence Ripperda, tripperda @ 2004-01-22 18:58 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Terence Ripperda

when working on supporting the 2.6 kernel's acpi support, I ran into some issues on a Dell Inspiron 4100 notebook (w/ Intel Corp. 82830 830 Chipset Host Bridge) when resuming from standby. the basic problem was that agp configuration was lost in the host bridge's pci config space, causing dma problems with our chip.

I checked through the agpgart code (specifically the intel-agp.c driver) and saw that the driver did support acpi resume and attempted to reconfigure the chipset when resuming. but the problem is that the driver only does this if the bridge is using the generic or 845 driver. in my case, the 830mp driver was being used. I hacked in support for my driver and everything worked fine.

I'm curious why support was only added for 2 cases, instead of reconfiguring the chipset in every case. Is this because there were problems with some drivers, or is support added only on an "as-needed" basis?

(in this case, I happen to be testing with 2.6.0, but I see the same problem in the 2.6.1 code)

Thanks,
Terence

this fixed my problem:

--- intel-agp.c.orig    2004-01-22 12:51:31.000000000 -0600
+++ intel-agp.c 2004-01-22 12:51:20.000000000 -0600
@@ -1432,6 +1432,8 @@
                intel_configure();
        else if (bridge->driver == &intel_845_driver)
                intel_845_configure();
+       else if (bridge->driver == &intel_830mp_driver)
+               intel_830mp_configure();
 
        return 0;
 }

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-01-22 20:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-22 18:58 2.6 agpgart and acpi standby/resume Terence Ripperda, tripperda
2004-01-22 19:44 ` Dave Jones
2004-01-22 19:53   ` Terence Ripperda, tripperda
2004-01-22 20:06     ` Dave Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox