LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-15-2003, 02:35 PM   #1
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,836

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
AGP question


I running RH8.0 on a Gigabyte GA-6VTXE-based system and using an Abit GF4 MX-8X video card in the AGP slot. The BIOS is set to run the AGP at 4X (which is the default). After firing up X and poking around in /proc/driver/nvidia/agp, I see that it appears that the AGP is only running at 2X. Even the ``host-bridge'' file reports that only mode 2X and 1X are available. I have a line ``Option AGPMode 4'' in /etc/X11/XF86Config but when X starts up it spits out the message:

``(WW) NVIDIA(0): Option "AGPMode" is not used''

It doesn't matter which AGP software I'm using (the code in AGPGART or Nvidia's) the message in the XFree86 log is the same.

I've been on Gigabyte's site and didn't see anything in the firmware upgrade docs about a newer version that fixes anything having to do with AGP (and I'm not looking to load a new BIOS unless it fixes a real problem). Nvidia's site doesn't seem to mention anything either.

I'm totally happy with the way the video card is working but am wondering why the 4X rate is not available. (Well, I suppose not totally happy since I can't get the higher rate to work. :-) )

Has anyone else noticed that the rate doesn't run as high as requested?

TIA,

Rick
 
Old 02-15-2003, 02:56 PM   #2
Palin
Member
 
Registered: Feb 2003
Location: A Meatlocker, well feels like one
Distribution: Gentoo
Posts: 292

Rep: Reputation: 30
are you loading the agpart module when you boot up
if you type lsmod what does it show?
 
Old 02-15-2003, 04:59 PM   #3
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,836

Original Poster
Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Quote:
Originally posted by Palin
are you loading the agpart module when you boot up
if you type lsmod what does it show?

#lsmod
Module Size Used by Tainted: P
agpgart 18728 3 (autoclean)
.
.
.
nvidia 1592160 10 (autoclean)
.
.
.
#


Does that look out of the ordinary?
 
Old 02-15-2003, 05:01 PM   #4
Palin
Member
 
Registered: Feb 2003
Location: A Meatlocker, well feels like one
Distribution: Gentoo
Posts: 292

Rep: Reputation: 30
nope not to my eyes atleast. Could you post your XF86config files as well so we can get a look at it?
 
Old 02-15-2003, 05:20 PM   #5
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,836

Original Poster
Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Quote:
Originally posted by Palin
Could you post your XF86config files as well so we can get a look at it?
Sure! See below (most comments stripped out, though):
--

Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/local/"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"

Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection

Load "glx"
Load "type1"
Load "freetype" # This loads the GLX module
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "AutoRepeat" "500 30"# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
Option "XkbRules" "xfree86"
Option "XkbModel" "pc101"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/mouse"# When using XQUEUE, comment out the above two lines, and uncomment
Option "Emulate3Buttons"# Option "Emulate3Timeout" "50"
EndSection

Section "Monitor"
Identifier "CTX960FL"
ModelName "CTX PR960F series"
HorizSync 30.0 - 110.0
VertRefresh 50.0 - 160.0
EndSection

Section "Device"
Identifier "Standard VGA"
Driver "vga"
VendorName "Unknown"
BoardName "Unknown"
EndSection

Section "Device"
#VideoRam 8192
# Insert Clocks lines here if appropriate
# The following options are for the Nvidia driver
#
Identifier "AGPvideo"
Driver "nvidia"
BoardName "Abit GF4 MX"
Option "AGPMode" "4"
Option "RenderAccel" "on"
Option "NvAGP" "3"
Option "NoLogo" "on"
EndSection

Section "Screen"
Identifier "Screen 1"
Device "AGPvideo"
Monitor "CTX960FL"
DefaultDepth 16

SubSection "Display"
Depth 8
Modes "1280x1024"
EndSubSection

SubSection "Display"
Depth 16
Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection

SubSection "Display"
Depth 24
Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection

EndSection
--

Anything look odd? Frankly, I've never been too sure about that ``dbe'' module but the Nvidia driver installation instructions didn't mention touching it I left it alone.

TIA,

Rick
 
Old 02-15-2003, 05:28 PM   #6
Palin
Member
 
Registered: Feb 2003
Location: A Meatlocker, well feels like one
Distribution: Gentoo
Posts: 292

Rep: Reputation: 30
Section "Device"
# no known options
Identifier "NVIDIA GeForce 2 MX (generic)"
Driver "nvidia"
VendorName "NVIDIA GeForce 2 MX (generic)"
BoardName "NVIDIA GeForce 2 MX (generic)"

#BusID
EndSection

thats what mine looks like try something similar see if it helps any not sure if you are running a dual head display or not
 
Old 02-16-2003, 09:58 AM   #7
Tih8710
Member
 
Registered: Jan 2003
Location: Finland
Distribution: ElementaryOS Freya as main, every other ubuntu-based as testing
Posts: 124

Rep: Reputation: 15
I suggest reading Appendixes F, D, G, and (if i recall) O from NVIDIA's Readme file. the problem may be due your mainboard.
 
Old 02-16-2003, 11:30 AM   #8
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,836

Original Poster
Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Quote:
Originally posted by Tih8710
I suggest reading Appendixes F, D, G, and (if i recall) O from NVIDIA's Readme file. the problem may be due your mainboard.
Thanks. My motherboard has a VIA VT82C694T chip and the Nvidia docs mention the ``X'' version of the chip. That could be the problem though I might try fiddling with the AGP drive ``strength'' value (which is current set to ``auto'' in the BIOS) to see if that helps at all. There aren't that many values to try. :-)

Like I said earlier, the performance is great even at 2X so this is not a really big deal.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Missing agp-gart modules (moving from PCI to AGP video card) JLTB Debian 1 03-31-2005 04:08 AM
question about getting 4x agp instead of 1x (slackware) mipia Linux - Software 3 10-12-2004 09:07 PM
I have an onboard AGP, but want to use my nVidia card in my AGP slot. xorg.conf help LordRaven Slackware 16 09-17-2004 05:36 PM
AGP Speed Question? chestnut Linux - Hardware 8 08-13-2004 08:16 AM
question about agp in linux Carson316 Linux - Hardware 1 10-07-2003 12:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration