LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Driver for Radeon 7000/VE (https://www.linuxquestions.org/questions/linux-hardware-18/driver-for-radeon-7000-ve-797889/)

noeldum 03-25-2010 05:12 PM

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?

adamk75 03-26-2010 05:00 AM

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.

noeldum 03-26-2010 06:59 PM

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.

noeldum 03-26-2010 07:07 PM

1 Attachment(s)
here is the log from X.

noeldum 03-27-2010 12:49 AM

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.


All times are GMT -5. The time now is 12:05 AM.