Hi,
First off I'd like to thank everyone who's contributed to the Avivo driver. It undoubtedly takes a lot of work to write a graphics driver, let alone for a card with unreleased register specifications.
Anyhow I am having an issue with my Radeon X1300 Mobility. X starts up fine with 1 screen enabled; but when I enable the 2nd screen(an external LCD) I get the following error in my X startup:
Code:
Fatal server error:
Requested Entity already in use!
I got a similar error using multi X screens with the vesa driver. Below is my xorg.conf when I try dual-head mode with avivo:
Code:
Section "ServerLayout"
Identifier "MultiHead"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" LeftOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection
Section "Files"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Samsung SyncMaster 190N(M)/192N(M)/193N(M)"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 85.0
Option "dpms"
EndSection
Section "Device"
# Option "OpenGLOverlay" "off"
# Option "VideoOverlay" "on"
Identifier "Videocard0"
Driver "avivo"
Option "ShadowFB"
EndSection
Section "Device"
# Option "OpenGLOverlay" "off"
# Option "VideoOverlay" "on"
Identifier "Videocard1"
Driver "avivo"
BusID "PCI:1:0:0"
Option "ShadowFB"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Modes "1680x1050" "1280x1024" "1400x900" "1024x768" "800x600"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Modes "1280x1024" "1024x768" "800x600"
Depth 24
EndSubSection
EndSection
If anyone has any ideas I'd appreciate it. Thanks.