linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Danny Brow <fms@ca.istop.com>
To: Kernel-Maillist <linux-kernel@vger.kernel.org>
Subject: Re: i875p
Date: Sat, 06 Dec 2003 14:13:09 -0500	[thread overview]
Message-ID: <1070737989.3822.2.camel@zeus.fullmotionsolutions.com> (raw)
In-Reply-To: <Pine.LNX.4.44.0312061549450.6871-100000@logos.cnet>

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

It's not much different then the original creators patch for 2.4.22, I
just modified the last hunk.  I can't remember who posted it though.  

On Sat, 2003-12-06 at 12:50, Marcelo Tosatti wrote:
> Would like to have it.
> 
> On Sat, 29 Nov 2003, Danny Brow wrote:
> 
> > Fixed this issue, I found a patch for 2.4.22 in the mailing list archive
> > I just had to updated it a little to get it to apply to the 2.4.23
> > kernel. If any one wants it I will post it latter and credit the
> > original creator.
> > 
> > On Sat, 2003-11-29 at 13:07, Joshua Schmidlkofer wrote:
> > > You have a dual p3 850 with an i875?
> > > 
> > > On Sat, 2003-11-29 at 10:03, Danny Brow wrote:
> > > > ATI Radeon DDR VIVO, it's a little old but even with my dual p3 850 I
> > > > was able to play a lot of current games.
> > > > 
> > > > On Sat, 2003-11-29 at 13:00, Joshua Schmidlkofer wrote:
> > > > > On Sat, 2003-11-29 at 08:56, Danny Brow wrote:
> > > > > > Is there going to be support for the i875p chipset in 2.4.24? I can't
> > > > > > load agpgart with 2.4.23, nor with 2..4.22. 
> > > > > 
> > > > > 
> > > > > What video card do you have?
> > > > > 
> > > > > 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

[-- Attachment #2: i875p.diff --]
[-- Type: text/x-patch, Size: 2366 bytes --]

diff -ur linux-2.4.22.orig/Documentation/Configure.help linux-2.4.22/Documentation/Configure.help
--- linux-2.4.22.orig/Documentation/Configure.help	2003-09-13 11:48:23.000000000 +0100
+++ linux-2.4.22/Documentation/Configure.help	2003-11-11 17:57:13.000000000 +0000
@@ -3678,10 +3678,11 @@
   a module, say M here and read <file:Documentation/modules.txt>.  The
   module will be called agpgart.o.
 
-Intel 440LX/BX/GX/815/820/830/840/845/850/860 support
+Intel 440LX/BX/GX/815/820/830/840/845/850/860/875 support
 CONFIG_AGP_INTEL
   This option gives you AGP support for the GLX component of the
-  XFree86 4.x on Intel 440LX/BX/GX, 815, 820, 830, 840, 845, 850 and 860 chipsets.
+  XFree86 4.x on Intel 440LX/BX/GX, 815, 820, 830, 840, 845, 850, 860 and 875
+  chipsets.
 
   You should say Y here if you use XFree86 3.3.6 or 4.x and want to
   use GLX or DRI.  If unsure, say N.
diff -ur linux-2.4.22.orig/drivers/char/agp/agp.h linux-2.4.22/drivers/char/agp/agp.h
--- linux-2.4.22.orig/drivers/char/agp/agp.h	2003-07-18 11:49:34.000000000 +0100
+++ linux-2.4.22/drivers/char/agp/agp.h	2003-11-11 17:48:57.000000000 +0000
@@ -205,6 +205,9 @@
 #ifndef PCI_DEVICE_ID_INTEL_865_G_1
 #define PCI_DEVICE_ID_INTEL_865_G_1	0x2572
 #endif
+#ifndef PCI_DEVICE_ID_INTEL_875_P_0
+#define PCI_DEVICE_ID_INTEL_875_P_0	0x2578
+#endif
 #ifndef PCI_DEVICE_ID_INTEL_820_0
 #define PCI_DEVICE_ID_INTEL_820_0       0x2500
 #endif
diff -ur linux-2.4.22.orig/drivers/char/agp/agpgart_be.c linux-2.4.22/drivers/char/agp/agpgart_be.c
--- linux-2.4.22.orig/drivers/char/agp/agpgart_be.c	2003-09-03 11:27:04.000000000 +0100
+++ linux-2.4.22/drivers/char/agp/agpgart_be.c	2003-11-11 17:51:20.000000000 +0000
@@ -4918,6 +4918,13 @@
 		"865G",
 		 intel_845_setup },
 
+	{ PCI_DEVICE_ID_INTEL_875_P_0,
+		PCI_VENDOR_ID_INTEL,
+		INTEL_I875_P,
+		"Intel(R)",
+		"875P",
+		 intel_845_setup },
+
 	{ PCI_DEVICE_ID_INTEL_840_0,
 		PCI_VENDOR_ID_INTEL,
 		INTEL_I840,
diff -ur linux-2.4.22.orig/include/linux/agp_backend.h linux-2.4.22/include/linux/agp_backend.h
--- linux-2.4.22.orig/include/linux/agp_backend.h	2003-11-11 17:59:03.000000000 +0000
+++ linux-2.4.22/include/linux/agp_backend.h	2003-11-11 17:53:01.000000000 +0000
@@ -55,6 +55,7 @@
 	INTEL_I855_PM,
 	INTEL_I860,
 	INTEL_I865_G,
+	INTEL_I875_P,
	INTEL_I7205,
	INTEL_I7505,
	INTEL_460GX, 	
	VIA_GENERIC,
 	VIA_VP3,
 	VIA_MVP3,

  reply	other threads:[~2003-12-06 19:12 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-29 16:56 i875p Danny Brow
2003-11-29 18:00 ` i875p Joshua Schmidlkofer
2003-11-29 18:03   ` i875p Danny Brow
     [not found]     ` <1070129273.1994.26.camel@menion.home>
2003-11-29 20:54       ` i875p Danny Brow
2003-12-06 17:50         ` i875p Marcelo Tosatti
2003-12-06 19:13           ` Danny Brow [this message]
2003-11-30  3:42 ` i875p Zoran Davidovac

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=1070737989.3822.2.camel@zeus.fullmotionsolutions.com \
    --to=fms@ca.istop.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 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).