LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
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 03-25-2010, 05:12 PM   #1
noeldum
LQ Newbie
 
Registered: Jun 2007
Distribution: Fedora, Rhel4, Debian
Posts: 13

Rep: Reputation: 0
Driver for Radeon 7000/VE


I have a machine with an ATI Radeon 7000/VE graphic card and I can not get the screen resolution I need. This is running on redhat enterprise 4 OS (32bit).

My monitor is a 1600x1280 but I can not get anything better than 1024x768.

I did set the desired resolution in the xorg file.

I guess this would rather be a driver issue? I am running with radeon driver at the moment. I tried to get the fglrx from ATI but they do not seem to give any linux support for this card.

Do you now where I could find find the appropriate driver. Or is there any solution to this problem?
 
Old 03-26-2010, 05:00 AM   #2
adamk75
Senior Member
 
Registered: May 2006
Posts: 3,091

Rep: Reputation: 399Reputation: 399Reputation: 399Reputation: 399
fglrx never supported that card. Radeon *is* the appropriate driver. Please show us your /etc/X11/xorg.conf and /var/log/Xorg.0.log files.
 
Old 03-26-2010, 06:59 PM   #3
noeldum
LQ Newbie
 
Registered: Jun 2007
Distribution: Fedora, Rhel4, Debian
Posts: 13

Original Poster
Rep: Reputation: 0
Thank for confirming the radeon driver is the one I need.

I put here the xorg and log files. I have tried various think that I have left commented in the xorg.

For the moment I am just concentrating on getting it to work in 1280x1024. But it looks like my monitor is actually capable of 1920, it's a 24". I can see the X log file says the mode I have chosen is out of range.

Surely it must be possible to get higher resolution than 1024x768 on this setup. It was the case with a redhat 9 distro before I formatted all for rhel4. I regret I did not backup the old xorg file.

output of xrandr -q
Code:
 SZ:    Pixels          Physical       Refresh
*0   1024 x 768    ( 302mm x 222mm )  *60  
 1    640 x 350    ( 302mm x 222mm )   60  
 2    640 x 400    ( 302mm x 222mm )   60  
 3    720 x 400    ( 302mm x 222mm )   60  
 4    640 x 480    ( 302mm x 222mm )   60  
 5    800 x 600    ( 302mm x 222mm )   60  
 6    832 x 624    ( 302mm x 222mm )   60  
Current rotation - normal
Current reflection - none
Rotations possible - normal 
Reflections possible - none
Then the xorg.conf

Code:
Section "ServerLayout"
	Identifier     "single head configuration"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	FontPath     "unix/:7100"
EndSection

Section "Module"
	Load  "dbe"
	Load  "extmod"
	Load  "fbdevhw"
	Load  "glx"
	Load  "record"
	Load  "freetype"
	Load  "type1"
	Load  "xtrap"
	Load  "GLcore"
	Load  "dri"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Dell 2407WFP (Analog)"
	HorizSync    30.0 - 83.0
	VertRefresh  56.0 - 76.0
	Option	    "dpms"
        # 1280x1024 @ 65.00 Hz (GTF) hsync: 69.09 kHz; pclk: 119.40 MHz
        #Modeline "1280x1024_65.00"  119.40  1280 1368 1504 1728  1024 1025 1028 1063 
        #DisplaySize   600 400
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "radeon"
	VendorName  "Videocard vendor"
	BoardName   "ATI Radeon 7000"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1280x1024" 
	        #Virtual  1280 1024
        EndSubSection
EndSection

Section "DRI"
	Group        0
	Mode         0666
EndSection
I'll add the log in the next post.
 
Old 03-26-2010, 07:07 PM   #4
noeldum
LQ Newbie
 
Registered: Jun 2007
Distribution: Fedora, Rhel4, Debian
Posts: 13

Original Poster
Rep: Reputation: 0
here is the log from X.
Attached Files
File Type: log Xorg.0.log (40.8 KB, 18 views)
 
Old 03-27-2010, 12:49 AM   #5
noeldum
LQ Newbie
 
Registered: Jun 2007
Distribution: Fedora, Rhel4, Debian
Posts: 13

Original Poster
Rep: Reputation: 0
I have now sorted my problem.

The radeon 7000 does work at higher resolution than 1024x768. I have finally got mine configured at 1920x1200. This is how I fixed my problem:

Using gtf generate the timing information to input in the xorg.conf file.
Code:
gtf 1920 1200 60
This gaves:
Code:
# 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
  Modeline "1920x1200_60.00"  193.16  1920 2048 2256 2592  1200 1201 1204 1242  -HSync +Vsync
I then pasted that line in the monitor section of the xorg.conf file.

Then in the device section I added the following line:
Code:
Option       "PanelSize" "1920x1200"
and set my resolution accordingly in the Screen section.

I hope that will help anyone having the same problem.

Thanks adamk75 for your advice on the driver.
 
  


Reply



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
Radeon 7000 driver on Ubuntu ahmed_as8 Linux - Hardware 1 04-09-2009 07:45 PM
ATI Radeon 7000 AGP 64 MB - Xorg 7.4 won't load with 'radeon' driver highowl Linux - Hardware 2 02-23-2009 09:31 AM
ATI Radeon 7000 video driver Progmaker Linux - Hardware 3 02-04-2006 06:06 PM
Radeon 7000 Driver Quercus Linux - Newbie 27 01-13-2004 12:29 AM
writing a driver for radeon 7000 bripage Linux - Hardware 0 12-12-2002 03:45 PM

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

All times are GMT -5. The time now is 09:27 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