* [PATCH] suspend/resume for ATI Mobility Radeon RV350
@ 2008-09-30 14:06 Wolfgang Kroener
2008-09-30 22:10 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Kroener @ 2008-09-30 14:06 UTC (permalink / raw)
To: benh, linux-kernel
Hi,
I have a ATI Mobility Radeon RV350 and similar problems with radeonfb
described in http://kernel.org/doc/Documentation/power/s2ram.txt
Adding the device to radeon_workaround_list solves the Problem.
Please accept the following patch:
--8<--
--- drivers/video/aty/radeon_pm.c.orig 2008-09-30 15:00:40.988111330 +0200
+++ drivers/video/aty/radeon_pm.c 2008-09-30 15:14:10.941524474 +0200
@@ -89,6 +89,9 @@
BUGFIX("Acer Aspire 2010",
PCI_VENDOR_ID_AI, 0x0061,
radeon_pm_off, radeon_reinitialize_M10),
+ BUGFIX("Acer Travelmate 290D/292LMi",
+ PCI_VENDOR_ID_AI, 0x005a,
+ radeon_pm_off, radeon_reinitialize_M10),
{ .ident = NULL }
};
-->8--
Kind regards,
Wolfgang
P. S. please CC me, because I'm not subscribed to the lkml
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] suspend/resume for ATI Mobility Radeon RV350 2008-09-30 14:06 [PATCH] suspend/resume for ATI Mobility Radeon RV350 Wolfgang Kroener @ 2008-09-30 22:10 ` Benjamin Herrenschmidt 2008-10-01 10:22 ` Wolfgang Kroener 2009-01-08 20:57 ` Wolfgang Kroener 0 siblings, 2 replies; 6+ messages in thread From: Benjamin Herrenschmidt @ 2008-09-30 22:10 UTC (permalink / raw) To: Wolfgang Kroener; +Cc: linux-kernel On Tue, 2008-09-30 at 16:06 +0200, Wolfgang Kroener wrote: > Hi, > I have a ATI Mobility Radeon RV350 and similar problems with radeonfb > described in http://kernel.org/doc/Documentation/power/s2ram.txt > Adding the device to radeon_workaround_list solves the Problem. > Please accept the following patch: Can you resend it with a proper Signed-off-by: line ? Thanks ! Cheers, Ben. > --8<-- > --- drivers/video/aty/radeon_pm.c.orig 2008-09-30 15:00:40.988111330 +0200 > +++ drivers/video/aty/radeon_pm.c 2008-09-30 15:14:10.941524474 +0200 > @@ -89,6 +89,9 @@ > BUGFIX("Acer Aspire 2010", > PCI_VENDOR_ID_AI, 0x0061, > radeon_pm_off, radeon_reinitialize_M10), > + BUGFIX("Acer Travelmate 290D/292LMi", > + PCI_VENDOR_ID_AI, 0x005a, > + radeon_pm_off, radeon_reinitialize_M10), > { .ident = NULL } > }; > > -->8-- > Kind regards, > Wolfgang > > P. S. please CC me, because I'm not subscribed to the lkml ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] suspend/resume for ATI Mobility Radeon RV350 2008-09-30 22:10 ` Benjamin Herrenschmidt @ 2008-10-01 10:22 ` Wolfgang Kroener 2009-01-08 20:57 ` Wolfgang Kroener 1 sibling, 0 replies; 6+ messages in thread From: Wolfgang Kroener @ 2008-10-01 10:22 UTC (permalink / raw) To: Benjamin Herrenschmidt; +Cc: linux-kernel Hi, On Wed, Oct 01, 2008 at 08:10:10, Benjamin Herrenschmidt wrote: > Can you resend it with a proper Signed-off-by: line ? Thanks ! I hope, that's right. Kind regards, Wolfgang -- radeonfb suspend/resume for Acer Travelmate 29X This patch adds suspend/resume for the Acer Travelmate 290D/292LMi with the following graphic-chip: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] [1002:4e50] (prog-if 00 [VGA controller]) Subsystem: Acer Incorporated [ALI] TravelMate 290 [1025:005a] Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 10 Memory at a8000000 (32-bit, prefetchable) [size=128M] I/O ports at c100 [size=256] Memory at e0010000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at a0000000 [disabled] [size=128K] Capabilities: [58] AGP version 2.0 Capabilities: [50] Power Management version 2 Kernel driver in use: radeonfb Kernel modules: radeonfb Signed-off-by: Wolfgang Kroener <lkml@azog.de> --- drivers/video/aty/radeon_pm.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index 675abda..5e4b2da 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -89,6 +89,9 @@ static struct radeon_device_id radeon_workaround_list[] = { BUGFIX("Acer Aspire 2010", PCI_VENDOR_ID_AI, 0x0061, radeon_pm_off, radeon_reinitialize_M10), + BUGFIX("Acer Travelmate 290D/292LMi", + PCI_VENDOR_ID_AI, 0x005a, + radeon_pm_off, radeon_reinitialize_M10), { .ident = NULL } }; ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Bug#506964: [PATCH] suspend/resume for ATI Mobility Radeon RV350 2008-09-30 22:10 ` Benjamin Herrenschmidt @ 2009-01-08 20:57 ` Wolfgang Kroener 2009-01-08 20:57 ` Wolfgang Kroener 1 sibling, 0 replies; 6+ messages in thread From: Wolfgang Kroener @ 2009-01-08 20:57 UTC (permalink / raw) To: linux-kernel; +Cc: benh, linux-fbdev-devel, 506964 Hi, On Wed, Oct 01, 2008 at 08:10:10, Benjamin Herrenschmidt wrote: > Can you resend it with a proper Signed-off-by: line ? Thanks ! I think the mail (http://lkml.org/lkml/2008/10/1/134) got lost somewhere, so I try again: radeonfb suspend/resume for Acer Travelmate 29X This patch adds suspend/resume for the Acer Travelmate 290D/292LMi with the following graphic-chip: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] [1002:4e50] (prog-if 00 [VGA controller]) Subsystem: Acer Incorporated [ALI] TravelMate 290 [1025:005a] Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 10 Memory at a8000000 (32-bit, prefetchable) [size=128M] I/O ports at c100 [size=256] Memory at e0010000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at a0000000 [disabled] [size=128K] Capabilities: [58] AGP version 2.0 Capabilities: [50] Power Management version 2 Kernel driver in use: radeonfb Kernel modules: radeonfb Signed-off-by: Wolfgang Kroener <lkml@azog.de> --- drivers/video/aty/radeon_pm.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index 675abda..5e4b2da 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -89,6 +89,9 @@ static struct radeon_device_id radeon_workaround_list[] = { BUGFIX("Acer Aspire 2010", PCI_VENDOR_ID_AI, 0x0061, radeon_pm_off, radeon_reinitialize_M10), + BUGFIX("Acer Travelmate 290D/292LMi", + PCI_VENDOR_ID_AI, 0x005a, + radeon_pm_off, radeon_reinitialize_M10), { .ident = NULL } }; -- 1.5.6.5 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] suspend/resume for ATI Mobility Radeon RV350 @ 2009-01-08 20:57 ` Wolfgang Kroener 0 siblings, 0 replies; 6+ messages in thread From: Wolfgang Kroener @ 2009-01-08 20:57 UTC (permalink / raw) To: linux-kernel; +Cc: benh, linux-fbdev-devel, 506964 Hi, On Wed, Oct 01, 2008 at 08:10:10, Benjamin Herrenschmidt wrote: > Can you resend it with a proper Signed-off-by: line ? Thanks ! I think the mail (http://lkml.org/lkml/2008/10/1/134) got lost somewhere, so I try again: radeonfb suspend/resume for Acer Travelmate 29X This patch adds suspend/resume for the Acer Travelmate 290D/292LMi with the following graphic-chip: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] [1002:4e50] (prog-if 00 [VGA controller]) Subsystem: Acer Incorporated [ALI] TravelMate 290 [1025:005a] Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 10 Memory at a8000000 (32-bit, prefetchable) [size=128M] I/O ports at c100 [size=256] Memory at e0010000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at a0000000 [disabled] [size=128K] Capabilities: [58] AGP version 2.0 Capabilities: [50] Power Management version 2 Kernel driver in use: radeonfb Kernel modules: radeonfb Signed-off-by: Wolfgang Kroener <lkml@azog.de> --- drivers/video/aty/radeon_pm.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index 675abda..5e4b2da 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c @@ -89,6 +89,9 @@ static struct radeon_device_id radeon_workaround_list[] = { BUGFIX("Acer Aspire 2010", PCI_VENDOR_ID_AI, 0x0061, radeon_pm_off, radeon_reinitialize_M10), + BUGFIX("Acer Travelmate 290D/292LMi", + PCI_VENDOR_ID_AI, 0x005a, + radeon_pm_off, radeon_reinitialize_M10), { .ident = NULL } }; -- 1.5.6.5 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: Bug#506964: [PATCH] suspend/resume for ATI Mobility Radeon RV350 2009-01-08 20:57 ` Wolfgang Kroener (?) @ 2009-01-09 7:34 ` Benjamin Herrenschmidt -1 siblings, 0 replies; 6+ messages in thread From: Benjamin Herrenschmidt @ 2009-01-09 7:34 UTC (permalink / raw) To: Wolfgang Kroener, 506964; +Cc: linux-kernel, linux-fbdev-devel On Thu, 2009-01-08 at 21:57 +0100, Wolfgang Kroener wrote: > Hi, > On Wed, Oct 01, 2008 at 08:10:10, Benjamin Herrenschmidt wrote: > > Can you resend it with a proper Signed-off-by: line ? Thanks ! > > I think the mail (http://lkml.org/lkml/2008/10/1/134) got lost > somewhere, so I try again: Fell through the cracks along with some of my own radeonfb patches :-) Thanks for reminding. Cheers, Ben. > > radeonfb suspend/resume for Acer Travelmate 29X > > This patch adds suspend/resume for the Acer Travelmate 290D/292LMi with > the following graphic-chip: > 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV350 > [Mobility Radeon 9600 M10] [1002:4e50] (prog-if 00 [VGA controller]) > Subsystem: Acer Incorporated [ALI] TravelMate 290 [1025:005a] > Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 10 > Memory at a8000000 (32-bit, prefetchable) [size=128M] > I/O ports at c100 [size=256] > Memory at e0010000 (32-bit, non-prefetchable) [size=64K] > [virtual] Expansion ROM at a0000000 [disabled] [size=128K] > Capabilities: [58] AGP version 2.0 > Capabilities: [50] Power Management version 2 > Kernel driver in use: radeonfb > Kernel modules: radeonfb > > Signed-off-by: Wolfgang Kroener <lkml@azog.de> > --- > drivers/video/aty/radeon_pm.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c > index 675abda..5e4b2da 100644 > --- a/drivers/video/aty/radeon_pm.c > +++ b/drivers/video/aty/radeon_pm.c > @@ -89,6 +89,9 @@ static struct radeon_device_id radeon_workaround_list[] = { > BUGFIX("Acer Aspire 2010", > PCI_VENDOR_ID_AI, 0x0061, > radeon_pm_off, radeon_reinitialize_M10), > + BUGFIX("Acer Travelmate 290D/292LMi", > + PCI_VENDOR_ID_AI, 0x005a, > + radeon_pm_off, radeon_reinitialize_M10), > { .ident = NULL } > }; > > -- > 1.5.6.5 > > > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-01-09 7:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-09-30 14:06 [PATCH] suspend/resume for ATI Mobility Radeon RV350 Wolfgang Kroener 2008-09-30 22:10 ` Benjamin Herrenschmidt 2008-10-01 10:22 ` Wolfgang Kroener 2009-01-08 20:57 ` Bug#506964: " Wolfgang Kroener 2009-01-08 20:57 ` Wolfgang Kroener 2009-01-09 7:34 ` Bug#506964: " Benjamin Herrenschmidt
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.