DarkHelmet said:
Does anyone have a hack to get this working?
Below's an excerpt from my x.org conf (with Xinerama enabled). It took some fiddling and reading the output of dmesg | grep ffb and sudo grep ffb /var/log/Xorg.0.log to determine de BusIDs of the cards.
marc@grill:/etc/X11$ **dmesg | grep ffb**
[ 1.877066] ffb: FFB at 000001fc00000000 type 51 DAC 10
[ 1.877870] ffb: FFB at 000001fa00000000 type 51 DAC 10
marc@grill:~$ **sudo grep ffb /var/log/Xorg.0.log**
(--) SBUS:(0xf006e4d0) Sun FFB2+ Vertical Creator 3D at [COLOR="Red"]/SUNW,ffb@1e,0[/COLOR]
(--) SBUS:(0xf007669c) Sun FFB2+ Vertical Creator 3D at [COLOR="Red"]/SUNW,ffb@1d,0[/COLOR]
(II) LoadModule: "sunffb"
(II) Loading /usr/lib/xorg/modules/drivers/sunffb_drv.so
(II) Module sunffb: vendor="X.Org Foundation"
(--) Assigning device section with no busID to SBUS:/SUNW,ffb@1d,0
Interestingly enough, it wouldn't work when setting the BusID for both devices. So I left one without, the other with BusID setting.
Section "Module"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
[COLOR="Red"] Load "cfb"
Load "cfb32"
[/COLOR]EndSection
...
Section "Device"
Identifier "Sun Creator3D-0"
Driver "sunffb"
[COLOR="Red"] BusID "SBUS:/SUNW,ffb@1e,0"[/COLOR]
# Option "UseFBDev" "true"
EndSection
Section "Device"
Identifier "Sun Creator3D-1"
Driver "sunffb"
[COLOR="Red"]# BusID "SBUS:/SUNW.ffb@1d,0"[/COLOR]
# Option "UseFBDev" "true"
EndSection
Section "Monitor"
Identifier "EIZO L568-left"
Option "DPMS"
HorizSync 30-70
VertRefresh 50-160
EndSection
Section "Monitor"
Identifier "EIZO L568-right"
Option "DPMS"
HorizSync 30-70
VertRefresh 50-160
EndSection
Section "Screen"
Identifier "Left Screen"
Device "Sun Creator3D-0"
Monitor "EIZO L568-left"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Section "Screen"
Identifier "Right Screen"
Device "Sun Creator3D-1"
Monitor "EIZO L568-right"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Left Screen"
Screen "Right Screen" RightOf "Left Screen"
Option "Xinerama" "On"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Since I only ever use one resolution, I have configured only the 1280x1024 modes. What resolutions will you require?
Saying that you have spare U60s... are there any with Elite3D Cards? now that'd be interesting :-)
kind regards
Marc