You are not logged in.

#1 2010-01-07 13:15:29

lich00
Member
Registered: 2010-01-07
Posts: 2

dual head 2nd view setup with free radeon drivers on 64bit arch

Hi,

I have recently installed 64bit Arch on my desktop pc and having trouble getting the dual head setup to work.

Since the proprietary ati drivers seem not to be supported for my card (radeon X850) anymore, I tried the free radeon drivers. Singel head setup works fine, but i am allways getting a clone view. Here is my xorg.conf:

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "glx"
    Load  "dri"
    Load  "extmod"
    Load  "dbe"
    Load  "dri2"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    #DisplaySize      360   270    # mm
    Identifier   "Monitor0"
    #VendorName   "MED"
    #ModelName    "2914"
    HorizSync    30.0 - 98.0
    VertRefresh  50.0 - 120.0
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    HorizSync    30.0 - 98.0
    VertRefresh  50.0 - 120.0
EndSection


Section "Device"

    Identifier  "Card0"
    Driver      "radeon"
    BusID       "PCI:5:0:0"
#    Screen        0
EndSection

Section "Device"
    Identifier "Card1"
    Driver     "radeon"
    BusID      "PCI:5:0:0"
#    Screen     1
EndSection

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

Section "Screen"
    Identifier  "Screen1"
    Device      "Card1"
    Monitor        "Monitor1"
    DefaultDepth 24
    Subsection "Display"
           Depth       24
           Modes       "1280x1024"
           ViewPort    0 0
    EndSubsection

EndSection

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0"
        Screen      1  "Screen1" LeftOf "Screen0"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection


Section "DRI"
   Mode 0666
EndSection

When I unconmmend the Screen number identifier in the device section, the X-server freezes.

I hope you can help me with this.
mfg Lich

Offline

#2 2010-01-07 18:46:32

Eratosthenes
Member
Registered: 2009-11-02
Posts: 19

Re: dual head 2nd view setup with free radeon drivers on 64bit arch

My video is the Radeon 4200 that is integrated on the AMi 785G chip set. I think that is RS780. Here's my xorg.conf that does dual head OK:

Section "Module"
    load "glx"
    load "dri"
    load "drm"
EndSection

Section "Device"
        Identifier  "HD4200"
        Driver      "radeon"
        BusID       "PCI:1:5:0"
    Option      "AccelMethod" "EXA"
    Option      "DynamicPM" "on"
    Option      "ClockGating" "on"
    Option      "DMAforXv" "on"
        Option      "Monitor-VGA-0"  "Samsung"
        Option      "Monitor-DVI-0"  "Dell"
EndSection

Section "Screen"
        Identifier   "HD4200"
        Device       "HD4200"
        DefaultDepth     24
    Subsection "Display"
                Virtual 3200 1200
        EndSubsection
EndSection

Section "Monitor"
        Identifier   "Dell"
        Option       "DPMS" "true"
EndSection

Section "Monitor"
        Identifier   "Samsung"
        Option       "DPMS" "true"
    Option       "RightOf" "Dell"
EndSection

Section "DRI"
 Group        "video"
 Mode         0666
EndSection

Offline

#3 2010-01-07 20:55:54

lich00
Member
Registered: 2010-01-07
Posts: 2

Re: dual head 2nd view setup with free radeon drivers on 64bit arch

Thank you for the answer, but this creates one virtual screen over both monitors.
I need a setup with two separate screens.

Offline

Board footer

Powered by FluxBB