* radeonfb and `Radeon Mobility 9000'
@ 2003-01-27 14:47 Alvaro Lopez Ortega
2003-01-27 15:35 ` Alvaro Lopez Ortega
0 siblings, 1 reply; 4+ messages in thread
From: Alvaro Lopez Ortega @ 2003-01-27 14:47 UTC (permalink / raw)
To: linux-kernel; +Cc: Ani Joshi
[-- Attachment #1: Type: text/plain, Size: 157 bytes --]
Hi,
This little patch adds `Radeon Mobility 9000' support to the Radeon
Framebuffer driver.
It works on my laptop (Dell Inspiron).
--
Greetings, alo.
[-- Attachment #2: radeon-Mobility9000-linux-2.4.20.diff --]
[-- Type: text/x-diff, Size: 1555 bytes --]
--- radeonfb_orig.c 2003-01-27 09:50:16.000000000 +0100
+++ radeonfb.c 2003-01-27 10:05:15.000000000 +0100
@@ -19,6 +19,7 @@
* 2001-11-18 DFP fixes, Kevin Hendricks, 0.1.3
* 2001-11-29 more cmap, backlight fixes, Benjamin Herrenschmidt
* 2002-01-18 DFP panel detection via BIOS, Michael Clark, 0.1.4
+ * 2003-01-28 added Radeon Mobility 9000, Alvaro Lopez Ortega
*
* Special thanks to ATI DevRel team for their hardware donations.
*
@@ -101,7 +102,8 @@
RADEON_LW, /* Radeon Mobility M7 */
RADEON_LY, /* Radeon Mobility M6 */
RADEON_LZ, /* Radeon Mobility M6 */
- RADEON_PM /* Radeon Mobility P/M */
+ RADEON_L9, /* Radeon Mobility 9000 */
+ RADEON_PM /* Radeon Mobility P/M */
};
@@ -128,6 +130,7 @@
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LW, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LW},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LY, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LY},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LZ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LZ},
+ { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_L9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_L9},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_PM, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_PM},
{ 0, }
};
@@ -858,7 +861,11 @@
strcpy(rinfo->name, "Radeon M6 LZ ");
rinfo->hasCRTC2 = 1;
break;
- case PCI_DEVICE_ID_RADEON_PM:
+ case PCI_DEVICE_ID_RADEON_L9:
+ strcpy(rinfo->name, "Radeon M9000");
+ rinfo->hasCRTC2 = 1;
+ break;
+ case PCI_DEVICE_ID_RADEON_PM:
strcpy(rinfo->name, "Radeon P/M ");
rinfo->hasCRTC2 = 1;
default:
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: radeonfb and `Radeon Mobility 9000'
2003-01-27 14:47 radeonfb and `Radeon Mobility 9000' Alvaro Lopez Ortega
@ 2003-01-27 15:35 ` Alvaro Lopez Ortega
2003-01-27 17:12 ` wwp
2003-02-12 20:00 ` James Simmons
0 siblings, 2 replies; 4+ messages in thread
From: Alvaro Lopez Ortega @ 2003-01-27 15:35 UTC (permalink / raw)
To: linux-kernel; +Cc: Ani Joshi
[-- Attachment #1: Type: text/plain, Size: 262 bytes --]
On Monday 27 January 2003 15:47, Alvaro Lopez Ortega wrote:
> This little patch adds `Radeon Mobility 9000' support to the Radeon
> Framebuffer driver.
Sorry, I made a mistake..
This is the right patch file, please ignore previous one.
--
Greetings, alo.
[-- Attachment #2: radeon-Mobility9000-linux-2.4.20.diff --]
[-- Type: text/x-diff, Size: 1922 bytes --]
--- radeon_orig.h 2003-01-27 16:20:01.000000000 +0100
+++ radeon.h 2003-01-27 16:16:58.000000000 +0100
@@ -13,6 +13,7 @@
#define PCI_DEVICE_ID_RADEON_LY 0x4c59
#define PCI_DEVICE_ID_RADEON_LZ 0x4c5a
#define PCI_DEVICE_ID_RADEON_PM 0x4c52
+#define PCI_DEVICE_ID_RADEON_LF 0x4c66
#define PCI_DEVICE_ID_RADEON_QL 0x514c
#define PCI_DEVICE_ID_RADEON_QW 0x5157
--- radeonfb_orig.c 2003-01-27 09:50:16.000000000 +0100
+++ radeonfb.c 2003-01-27 16:16:50.000000000 +0100
@@ -19,6 +19,7 @@
* 2001-11-18 DFP fixes, Kevin Hendricks, 0.1.3
* 2001-11-29 more cmap, backlight fixes, Benjamin Herrenschmidt
* 2002-01-18 DFP panel detection via BIOS, Michael Clark, 0.1.4
+ * 2003-01-28 added Radeon Mobility 9000, Alvaro Lopez Ortega
*
* Special thanks to ATI DevRel team for their hardware donations.
*
@@ -101,7 +102,8 @@
RADEON_LW, /* Radeon Mobility M7 */
RADEON_LY, /* Radeon Mobility M6 */
RADEON_LZ, /* Radeon Mobility M6 */
- RADEON_PM /* Radeon Mobility P/M */
+ RADEON_LF, /* Radeon Mobility 9000 */
+ RADEON_PM /* Radeon Mobility P/M */
};
@@ -128,6 +130,7 @@
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LW, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LW},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LY, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LY},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LZ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LZ},
+ { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_LF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_LF},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_RADEON_PM, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_PM},
{ 0, }
};
@@ -858,7 +861,11 @@
strcpy(rinfo->name, "Radeon M6 LZ ");
rinfo->hasCRTC2 = 1;
break;
- case PCI_DEVICE_ID_RADEON_PM:
+ case PCI_DEVICE_ID_RADEON_LF:
+ strcpy(rinfo->name, "Radeon R250 LF");
+ rinfo->hasCRTC2 = 1;
+ break;
+ case PCI_DEVICE_ID_RADEON_PM:
strcpy(rinfo->name, "Radeon P/M ");
rinfo->hasCRTC2 = 1;
default:
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: radeonfb and `Radeon Mobility 9000'
2003-01-27 15:35 ` Alvaro Lopez Ortega
@ 2003-01-27 17:12 ` wwp
2003-02-12 20:00 ` James Simmons
1 sibling, 0 replies; 4+ messages in thread
From: wwp @ 2003-01-27 17:12 UTC (permalink / raw)
To: linux-kernel
Hi Alvaro Lopez Ortega,
On Mon, 27 Jan 2003 16:35:52 +0100 Alvaro Lopez Ortega <alvaro@alobbs.com>
wrote:
> This is the right patch file, please ignore previous one.
Thanx, it works fine against 2.4.19/2.4.20 and fixes fglrx's problems that was
occuring when returning to console mode!
Regards,
--
wwp
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: radeonfb and `Radeon Mobility 9000'
2003-01-27 15:35 ` Alvaro Lopez Ortega
2003-01-27 17:12 ` wwp
@ 2003-02-12 20:00 ` James Simmons
1 sibling, 0 replies; 4+ messages in thread
From: James Simmons @ 2003-02-12 20:00 UTC (permalink / raw)
To: Alvaro Lopez Ortega; +Cc: linux-kernel, Ani Joshi
> > This little patch adds `Radeon Mobility 9000' support to the Radeon
> > Framebuffer driver.
>
> Sorry, I made a mistake..
> This is the right patch file, please ignore previous one.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2003-02-12 19:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-27 14:47 radeonfb and `Radeon Mobility 9000' Alvaro Lopez Ortega
2003-01-27 15:35 ` Alvaro Lopez Ortega
2003-01-27 17:12 ` wwp
2003-02-12 20:00 ` James Simmons
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox