|
|
#1 | |
|
Registered User
|
After a hiatus from using the NVIDIA drivers due to a serious hardware problem (http://forum.abit-usa.com/showthread...threadid=19135), I'm back in the saddle again. However, now I find with the 1.0-4496 drivers, I cannot enable AGP support.
$ more /proc/driver/nvidia/agp/status Status: Disabled I tried messing with the nvidia module options, but cannot seem to make them have any effect (WTF?! I thought this used to work?). What's the deal? Does anyone have AGP support working with a KT400 chipset? --- Redhat 9 w/ kernel 2.4.20-20.9 MSI KT4 Ultra (VIA KT400) Abit Siluro GF4 Ti4200 8x 128M |
|
|
|
|
|
|
#2 | |
|
Join Date: Sep 2003
Location: UK
Posts: 847
|
AGP works fine on my KT400 chipset.
__________________
AthlonXP 2600+ / nForce2 Asus A7N8X-X / PNY GeForce FX5900 Ultra / 1024Mb Samsung Ram /nForce Sound / Hansol 920D Plus 19" monitor / Lite-On 32x12x40 / 2x Maxtor HD 40Gb/80Gb / nVidia 7174 driver / Gnome 2.10.1 / Kernel 2.6.11.9 / Slackware 10.0 |
|
|
|
|
|
|
#3 |
|
Registered User
|
Are you using any special module options or NvAGP settings?
Last I knew, I was supposed to disable SBA in order to make it work, but the new drivers don't seem to honor that setting. (http://www.nvnews.net/vbulletin/show...threadid=10349) I really need AGP support for WineX3, otherwise none of my DirectX games work (because they can't allocate memory without it). |
|
|
|
|
|
#4 | |
|
Join Date: Sep 2003
Location: UK
Posts: 847
|
I didnot have to do anything, just downloaded the Nvidia drivers off suse update and configured SaX2 for my graphics card.
__________________
AthlonXP 2600+ / nForce2 Asus A7N8X-X / PNY GeForce FX5900 Ultra / 1024Mb Samsung Ram /nForce Sound / Hansol 920D Plus 19" monitor / Lite-On 32x12x40 / 2x Maxtor HD 40Gb/80Gb / nVidia 7174 driver / Gnome 2.10.1 / Kernel 2.6.11.9 / Slackware 10.0 |
|
|
|
|
|
|
#5 |
|
Registered User
|
Ok. Well, thanks anyhow.
In contrast to your apparent ease of use with the NVidia driver, when I install it fresh without alteration, I get ASCII garbage upon X startup and results in a hard lockup. I know there are others out there who at least used to have this problem. I think it might have something to do with the Ti4200 chipset. Perhaps this chipset does not support SBA? Anyone have the solution to this? Thanks! |
|
|
|
|
|
#6 | |
|
Registered User
Join Date: Jun 2003
Posts: 24
|
I had the same problem. AGPGART was disabled in the kernel. My Pro266T chipset PCI ID was not present in the pci_ids file and was not being used in the drivers/char/agp/agpgart_be.c. So no kernel AGP support. So I patched two files to add support. I got the PCI ID from /sbin/lspci -n
Here are the patches I did: --- linux-2.4.22/drivers/char/agp/agp.h 2003-08-25 06:44:41.000000000 -0500 +++ linux/drivers/char/agp_new/agp.h 2003-09-24 13:21:24.000000000 -0500 @@ -172,6 +172,9 @@ #ifndef PCI_DEVICE_ID_VIA_82C694X_0 #define PCI_DEVICE_ID_VIA_82C694X_0 0x0605 #endif +#ifndef PCI_DEVICE_ID_VIA_8633T_0 +#define PCI_DEVICE_ID_VIA_8633T_0 0x3101 +#endif #ifndef PCI_DEVICE_ID_INTEL_810_0 #define PCI_DEVICE_ID_INTEL_810_0 0x7120 #endif--- linux-2.4.22/drivers/char/agp/agpgart_be.c 2003-08-25 06:44:41.000000000 -0500 +++ linux/drivers/char/agp_new/agpgart_be.c 2003-09-24 13:33:19.000000000 -0500 @@ -5123,6 +5123,12 @@ "Via", "Apollo Pro KT400", via_generic_setup }, + { PCI_DEVICE_ID_VIA_8633T_0, + PCI_VENDOR_ID_VIA, + VIA_APOLLO_PRO266T, + "Via", + "Apollo Pro266T", + via_generic_setup }, { PCI_DEVICE_ID_VIA_P4M266, PCI_VENDOR_ID_VIA, VIA_APOLLO_P4M266, |
|
|
|
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| nvidia drivers in a motherboard with AGP 1.0 (motherboard MVP3+) | knocker | NVIDIA Linux | 1 | 08-19-02 01:57 AM |