From: Alvaro Lopez Ortega <alvaro@alobbs.com>
To: linux-kernel@vger.kernel.org
Cc: Ani Joshi <ajoshi@unixbox.com>
Subject: radeonfb and `Radeon Mobility 9000'
Date: Mon, 27 Jan 2003 15:47:47 +0100 [thread overview]
Message-ID: <200301271547.47046.alvaro@alobbs.com> (raw)
[-- 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:
next reply other threads:[~2003-01-27 14:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-01-27 14:47 Alvaro Lopez Ortega [this message]
2003-01-27 15:35 ` radeonfb and `Radeon Mobility 9000' Alvaro Lopez Ortega
2003-01-27 17:12 ` wwp
2003-02-12 20:00 ` James Simmons
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200301271547.47046.alvaro@alobbs.com \
--to=alvaro@alobbs.com \
--cc=ajoshi@unixbox.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.