Sun Dublan
Dual Radeon 9700 

September 27, 2003

Dual Radeon 9700 12:19 PM, 0 Comments

I finally got my Radeon 9700 to do dual headed without cloning the screens on FreeBSD 5.1-CURRENT. I was eluded for a day or two about the BusID, since pciconf -lv would list two cards, 1:5:1, and 1:5:0, one even titled "Secondary". It ended up that I just need to set both screens to 1:5:0. I'll add the XF86Config...

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

Section "ServerFlags"
    Option "Xinerama" "true"
EndSection



Section "Files"
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	ModulePath   "/usr/X11R6/lib/modules"
	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/webfonts/"
EndSection


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


Section "InputDevice"
       Identifier  "Keyboard0"
       Driver      "keyboard"
       Option      "XkbRules" "xfree86"
       Option      "XkbModel" "pc105"
       Option      "XkbLayout" "us"
EndSection


Section "InputDevice"
       Identifier  "Mouse0"
       Driver      "mouse"
       Option	    "Device" "/dev/sysmouse"
       Option      "Protocol" "auto"
       Option      "ZAxisMapping" "4 5"
       Option      "Emulate3Buttons" "no"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "SNY"
	ModelName    "CPD-520GS"
	DisplaySize  400	300
	HorizSync    30.0 - 96.0
	VertRefresh  48.0 - 160.0
	Option	     "DPMS"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "SNY"
	ModelName    "Multiscan 200SX"
	DisplaySize  320	240
	HorizSync    31.0 - 70.0
	VertRefresh  50.0 - 150.0
	Option	     "DPMS"
EndSection

Section "Device"
       Identifier  "Videocard1"
       BusID	   "PCI:01:05:0"
       Driver      "radeon"
#       Driver      "ati"
       Option      "AGPMode" "4"
       VendorName  "ATI"
       Option      "CloneDisplay" "0"
       BoardName   "ATI Radeon 9700"
       Screen      0
EndSection

Section "Device"
       Identifier  "Videocard0"
       BusID       "PCI:01:05:0"
#       Driver      "ati"
       Driver      "radeon"
       Option      "AGPMode" "4"
       Option      "CloneDisplay" "0"
       VendorName  "ATI"
       BoardName   "ATI Radeon 9700"
       Screen      1
EndSection

Section "Screen"
       Identifier "Screen0"
       Device     "Videocard0"
       Monitor    "Monitor0"
       DefaultDepth     24
       SubSection "Display"
               Depth     24
               ViewPort 0 0
               Modes    "1152x864" "1024x768" "800x600" "640x480"
       EndSubSection
EndSection

Section "Screen"
       Identifier "Screen1"
       Device     "Videocard1"
       Monitor    "Monitor1"
       DefaultDepth     24
       SubSection "Display"
               Depth     24
               Modes    "1600x1200" "1024x768" "800x600" "640x480"
       EndSubSection
EndSection


#Section "DRI"
#       Group        0
#       Mode         0666
#EndSection
Comments
10/19/2005 Webmaster: Troy Bowman