* [PATCH 1/4] radeonfb: add PCI Id for RS482/Radeon Xpress 200M
@ 2007-09-04 10:58 aherrman
2007-09-04 13:45 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 3+ messages in thread
From: aherrman @ 2007-09-04 10:58 UTC (permalink / raw)
To: benh, linux-fbdev-devel, linux-kernel
.. which can be found in Acer Aspire 5100.
Signed-off-by: Andreas Herrmann <aherrman@arcor.de>
---
drivers/video/aty/ati_ids.h | 1 +
drivers/video/aty/radeon_base.c | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/video/aty/ati_ids.h b/drivers/video/aty/ati_ids.h
index 685a754..648da1e 100644
--- a/drivers/video/aty/ati_ids.h
+++ b/drivers/video/aty/ati_ids.h
@@ -211,3 +211,4 @@
#define PCI_CHIP_RS350_7834 0x7834
#define PCI_CHIP_RS350_7835 0x7835
#define PCI_CHIP_RS480_5955 0x5955
+#define PCI_CHIP_RS482_5975 0x5975
diff --git a/drivers/video/aty/radeon_base.c b/drivers/video/aty/radeon_base.c
index 47ca62f..90a3957 100644
--- a/drivers/video/aty/radeon_base.c
+++ b/drivers/video/aty/radeon_base.c
@@ -102,6 +102,7 @@
static struct pci_device_id radeonfb_pci_table[] = {
/* Radeon Xpress 200m */
CHIP_DEF(PCI_CHIP_RS480_5955, RS480, CHIP_HAS_CRTC2 | CHIP_IS_IGP | CHIP_IS_MOBILITY),
+ CHIP_DEF(PCI_CHIP_RS482_5975, RS480, CHIP_HAS_CRTC2 | CHIP_IS_IGP | CHIP_IS_MOBILITY),
/* Mobility M6 */
CHIP_DEF(PCI_CHIP_RADEON_LY, RV100, CHIP_HAS_CRTC2 | CHIP_IS_MOBILITY),
CHIP_DEF(PCI_CHIP_RADEON_LZ, RV100, CHIP_HAS_CRTC2 | CHIP_IS_MOBILITY),
--
1.5.3
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] radeonfb: add PCI Id for RS482/Radeon Xpress 200M
2007-09-04 10:58 [PATCH 1/4] radeonfb: add PCI Id for RS482/Radeon Xpress 200M aherrman
@ 2007-09-04 13:45 ` Benjamin Herrenschmidt
2007-09-10 22:38 ` aherrman
0 siblings, 1 reply; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2007-09-04 13:45 UTC (permalink / raw)
To: linux-fbdev-devel; +Cc: linux-kernel
On Tue, 2007-09-04 at 12:58 +0200, aherrman@arcor.de wrote:
> .. which can be found in Acer Aspire 5100.
>
> Signed-off-by: Andreas Herrmann <aherrman@arcor.de>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> ---
> drivers/video/aty/ati_ids.h | 1 +
> drivers/video/aty/radeon_base.c | 1 +
> 2 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/video/aty/ati_ids.h b/drivers/video/aty/ati_ids.h
> index 685a754..648da1e 100644
> --- a/drivers/video/aty/ati_ids.h
> +++ b/drivers/video/aty/ati_ids.h
> @@ -211,3 +211,4 @@
> #define PCI_CHIP_RS350_7834 0x7834
> #define PCI_CHIP_RS350_7835 0x7835
> #define PCI_CHIP_RS480_5955 0x5955
> +#define PCI_CHIP_RS482_5975 0x5975
> diff --git a/drivers/video/aty/radeon_base.c b/drivers/video/aty/radeon_base.c
> index 47ca62f..90a3957 100644
> --- a/drivers/video/aty/radeon_base.c
> +++ b/drivers/video/aty/radeon_base.c
> @@ -102,6 +102,7 @@
> static struct pci_device_id radeonfb_pci_table[] = {
> /* Radeon Xpress 200m */
> CHIP_DEF(PCI_CHIP_RS480_5955, RS480, CHIP_HAS_CRTC2 | CHIP_IS_IGP | CHIP_IS_MOBILITY),
> + CHIP_DEF(PCI_CHIP_RS482_5975, RS480, CHIP_HAS_CRTC2 | CHIP_IS_IGP | CHIP_IS_MOBILITY),
> /* Mobility M6 */
> CHIP_DEF(PCI_CHIP_RADEON_LY, RV100, CHIP_HAS_CRTC2 | CHIP_IS_MOBILITY),
> CHIP_DEF(PCI_CHIP_RADEON_LZ, RV100, CHIP_HAS_CRTC2 | CHIP_IS_MOBILITY),
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] radeonfb: add PCI Id for RS482/Radeon Xpress 200M
2007-09-04 13:45 ` Benjamin Herrenschmidt
@ 2007-09-10 22:38 ` aherrman
0 siblings, 0 replies; 3+ messages in thread
From: aherrman @ 2007-09-10 22:38 UTC (permalink / raw)
To: Benjamin Herrenschmidt; +Cc: linux-fbdev-devel, linux-kernel
On Tue, Sep 04, 2007 at 03:45:12PM +0200, Benjamin Herrenschmidt wrote:
> On Tue, 2007-09-04 at 12:58 +0200, aherrman@arcor.de wrote:
> > .. which can be found in Acer Aspire 5100.
> >
> > Signed-off-by: Andreas Herrmann <aherrman@arcor.de>
>
> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Sorry, I have missed that 0x5975 was already defined for radeonfb.
So this patch shouldn't be applied.
We have already:
/*Mobility Xpress 200 */
CHIP_DEF(PCI_CHIP_RS485_5975, R300, CHIP_HAS_CRTC2 | CHIP_IS_IGP | CHIP_IS_MOBILITY),
This was introduced with commit b5f2f4d1a6d7efde39cfb5e1d034981c69f2214c
But obviously this is not correct as the 0x5975 is an RS48x not R300.
With the current git (w/o my patch) my display goes blank (or better it looks striped)
and the Laptop hangs.
I'll do some further tests on my Laptop and probably come up with a new patch.
Regards,
Andreas
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-09-10 22:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-04 10:58 [PATCH 1/4] radeonfb: add PCI Id for RS482/Radeon Xpress 200M aherrman
2007-09-04 13:45 ` Benjamin Herrenschmidt
2007-09-10 22:38 ` aherrman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).