From: graeme fisher <graeme@2d3d.co.za>
To: linux-kernel@vger.kernel.org
Cc: marcelo@plucky.distro.conectiva, alan@lxorguk.ukuu.org.uk
Subject: Agpgart for 845G
Date: Sun, 12 May 2002 18:47:41 +0200 [thread overview]
Message-ID: <3CDE9CAD.7314B9D5@2d3d.co.za> (raw)
[-- Attachment #1: Type: text/plain, Size: 57 bytes --]
Hi,
Patch for Intel 845G agpgart support
Cheers
Graeme
[-- Attachment #2: agp_845G.diff --]
[-- Type: text/plain, Size: 2450 bytes --]
diff -ruNp linux/drivers/char/agp/agp.h my_linux/drivers/char/agp/agp.h
--- linux/drivers/char/agp/agp.h Wed Apr 10 00:11:46 2002
+++ my_linux/drivers/char/agp/agp.h Tue Apr 9 05:15:07 2002
@@ -170,6 +170,12 @@ struct agp_bridge_data {
#ifndef PCI_DEVICE_ID_INTEL_810_0
#define PCI_DEVICE_ID_INTEL_810_0 0x7120
#endif
+#ifndef PCI_DEVICE_ID_INTEL_845_G_0
+#define PCI_DEVICE_ID_INTEL_845_G_0 0x2560
+#endif
+#ifndef PCI_DEVICE_ID_INTEL_845_G_1
+#define PCI_DEVICE_ID_INTEL_845_G_1 0x2562
+#endif
#ifndef PCI_DEVICE_ID_INTEL_830_M_0
#define PCI_DEVICE_ID_INTEL_830_M_0 0x3575
#endif
diff -ruNp linux/drivers/char/agp/agpgart_be.c my_linux/drivers/char/agp/agpgart_be.c
--- linux/drivers/char/agp/agpgart_be.c Wed Apr 10 00:11:46 2002
+++ my_linux/drivers/char/agp/agpgart_be.c Tue Apr 9 05:13:23 2002
@@ -3662,6 +3662,12 @@ static struct {
"Intel",
"i830M",
intel_830mp_setup },
+ { PCI_DEVICE_ID_INTEL_845_G_0,
+ PCI_VENDOR_ID_INTEL,
+ INTEL_I845_G,
+ "Intel",
+ "i845G",
+ intel_830mp_setup },
{ PCI_DEVICE_ID_INTEL_840_0,
PCI_VENDOR_ID_INTEL,
INTEL_I840,
@@ -3979,6 +3985,28 @@ static int __init agp_find_supported_dev
agp_bridge.type = INTEL_I810;
return intel_i810_setup(i810_dev);
+ case PCI_DEVICE_ID_INTEL_845_G_0:
+ i810_dev = pci_find_device(PCI_VENDOR_ID_INTEL,
+ PCI_DEVICE_ID_INTEL_845_G_1, NULL);
+ if(i810_dev && PCI_FUNC(i810_dev->devfn) != 0) {
+ i810_dev = pci_find_device(PCI_VENDOR_ID_INTEL,
+ PCI_DEVICE_ID_INTEL_845_G_1, i810_dev);
+ }
+
+ if (i810_dev == NULL) {
+ /*
+ * We probably have a I830MP chipset
+ * with an external graphics
+ * card. It will be initialized later
+ */
+ agp_bridge.type = INTEL_I845_G;
+ break;
+ }
+ printk(KERN_INFO PFX "Detected an Intel "
+ "845G Chipset.\n");
+ agp_bridge.type = INTEL_I810;
+ return intel_i830_setup(i810_dev);
+
case PCI_DEVICE_ID_INTEL_830_M_0:
i810_dev = pci_find_device(PCI_VENDOR_ID_INTEL,
PCI_DEVICE_ID_INTEL_830_M_1, NULL);
--- linux/include/linux/agp_backend.h Sat Nov 10 00:11:15 2001
+++ my_linux/include/linux/agp_backend.h Tue Apr 9 05:17:56 2002
@@ -48,6 +48,7 @@ enum chipset_type {
INTEL_I815,
INTEL_I820,
INTEL_I830_M,
+ INTEL_I845_G,
INTEL_I840,
INTEL_I845,
INTEL_I850,
next reply other threads:[~2002-05-12 16:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-05-12 16:47 graeme fisher [this message]
[not found] <fa.cfjurcv.v30q20@ifi.uio.no>
2002-05-13 15:26 ` Agpgart for 845G Nicolas Aspert
2002-05-14 7:37 ` Abraham vd Merwe
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=3CDE9CAD.7314B9D5@2d3d.co.za \
--to=graeme@2d3d.co.za \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo@plucky.distro.conectiva \
/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