public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Toplica Tanasković" <toptan@EUnet.yu>
To: linux-kernel@vger.kernel.org
Subject: [Fwd: [ PATCH ] radeonfb and ATI Radeon R9000 (2.4.18)]
Date: Sun, 02 Feb 2003 01:46:28 +0100	[thread overview]
Message-ID: <3E3C6A64.5020009@EUnet.yu> (raw)

[-- Attachment #1: Type: text/plain, Size: 593 bytes --]



-------- Original Message --------
Subject: [ PATCH ] radeonfb and ATI Radeon R9000 (2.4.18)
Date: Sat, 01 Feb 2003 15:02:05 +0100
From: Toplica Tanasković <toptan@EUnet.yu>
Organization: Public news server of EUnet Yugoslavia
Newsgroups: comp.os.linux.development

	Hi,

	Here is the patch for 2.4.18 kernel that adds ATI Radeon R9000 support to
the Radeon Framebuffer driver, also fixes annoying console corruption
when using fglrx and switching from X to console.

	As I said this is a patch for 2.4.18, but I think that it will work with
2.4.19 and 2.4.20 too.

	Best regards,
	Toplica


[-- Attachment #2: radeonfb_patch.diff --]
[-- Type: text/plain, Size: 1771 bytes --]

--- orig/usr/src/linux/drivers/video/radeon.h	Sat Feb  1 14:08:53 2003
+++ linux/drivers/video/radeon.h	Sat Feb  1 14:21:39 2003
@@ -14,6 +14,7 @@
 #define PCI_DEVICE_ID_RADEON_LZ		0x4c5a
 #define PCI_DEVICE_ID_RADEON_QL		0x514c
 #define PCI_DEVICE_ID_RADEON_QW		0x5157
+#define PCI_DEVICE_ID_RADEON_IG		0x4966

 #define RADEON_REGSIZE			0x4000

--- orig/usr/src/linux/drivers/video/radeonfb.c	Sat Feb  1 14:08:53 2003
+++ linux/drivers/video/radeonfb.c	Sat Feb  1 14:23:40 2003
@@ -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-30	Added Radeon R9000, Tanaskovic Toplica <toptan@EUnet.yu>
  *
  *	Special thanks to ATI DevRel team for their hardware donations.
  *
@@ -100,7 +100,8 @@
 	RADEON_QW,	/* Radeon RV200 (7500) */
 	RADEON_LW,	/* Radeon Mobility M7 */
 	RADEON_LY,	/* Radeon Mobility M6 */
-	RADEON_LZ	/* Radeon Mobility M6 */
+	RADEON_LZ,	/* Radeon Mobility M6 */
+	RADEON_IG,	/* Radeon RV250 (9000) */
 };


@@ -127,6 +128,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_IG, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_IG},
 	{ 0, }
 };
 MODULE_DEVICE_TABLE(pci, radeonfb_pci_table);
@@ -856,6 +858,10 @@
 			strcpy(rinfo->name, "Radeon M6 LZ ");
 			rinfo->hasCRTC2 = 1;
 			break;
+		case PCI_DEVICE_ID_RADEON_IG:
+			strcpy(rinfo->name, "Radeon R9000 IG ");
+			rinfo->hasCRTC2 = 1;
+			break;
 		default:
 			return -ENODEV;
 	}


             reply	other threads:[~2003-02-02  0:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-02  0:46 Toplica Tanasković [this message]
2003-02-08 14:08 ` [Fwd: [ PATCH ] radeonfb and ATI Radeon R9000 (2.4.18)] wwp

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=3E3C6A64.5020009@EUnet.yu \
    --to=toptan@eunet.yu \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox