Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
D610 with D Dock and i915, Xorg dual head problems [SOLVED]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Mondo1287
n00b
n00b


Joined: 26 Apr 2005
Posts: 16

PostPosted: Fri Jan 27, 2006 5:25 pm    Post subject: D610 with D Dock and i915, Xorg dual head problems [SOLVED] Reply with quote

Is there anyone out there using the D dock and the D610 that has dual displays working? I've gotten to the point where I can get the monitor connected to the VGA working, but instead of outputting the other screen to the DVI port, it gets outputted on the laptop's screen.

*Solved*

After reading this, http://www.xfree86.org/current/i810.4.html
I got it figured out, I needed to change

Code:
Option "MonitorLayout" "LFP,CRT"


to

Code:
Option "MonitorLayout" "DFP,CRT"


There are a bunch of different options provided by the i810 driver for dual head (see link above), such as Tripple Head, with one head cloaned. "DFP,CRT+LFP"

DFP is for the DVI port, CRT for VGA, and LFP for the laptop's lcd screen.

My Final Xorg.conf is as follows.

Code:

Section "ServerLayout"
   Identifier     "Layout0"
   Screen      0  "Screen0" 0 0
   Screen      1  "Screen1" LeftOf "Screen0"
#   Option      "Xinerama" "on"
   InputDevice    "Keyboard0" "CoreKeyboard"
   InputDevice    "Mouse0" "CorePointer"
EndSection

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

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "Auto"
   Option       "Emulate3Buttons"
   Option       "Device" "/dev/psaux"
   Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "keyboard"
   Option       "XkbModel" "pc101"
   Option       "XkbLayout" "us"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   HorizSync    31.5 - 64.3
   VertRefresh  50.0 - 70.0
EndSection

Section "Monitor"
   Identifier   "Monitor1"
   HorizSync    31.5 - 64.3
   VertRefresh  50.0 - 70.0
EndSection

Section "Device"
   Identifier  "Card0"
   Driver      "i810"
   Option   "MonitorLayout" "DFP,CRT"
    BusID "PCI:0:2:0"
Screen 0
EndSection

Section "Device"
   Identifier  "Card1"
   Driver      "i810"
        Option          "MonitorLayout" "DFP,CRT"
        BusID "PCI:0:2:0"
Screen 1
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   DefaultDepth     24
Subsection "Display"
        Depth       24
        Modes       "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
   
EndSection

Section "Screen"
   Identifier "Screen1"
        Subsection "Display"
             Depth       24
             Modes       "1280x1024" "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
   Device     "Card1"
   Monitor    "Monitor1"
   DefaultDepth     24
EndSection

Section "DRI"
   Mode 0666
EndSection
Back to top
View user's profile Send private message
Mondo1287
n00b
n00b


Joined: 26 Apr 2005
Posts: 16

PostPosted: Mon Jan 30, 2006 6:40 pm    Post subject: Reply with quote

[SOLVED]
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum