Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Xorg configuration problem for multiple videocards/monitors
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
kiskoller
n00b
n00b


Joined: 30 Oct 2010
Posts: 65

PostPosted: Tue Dec 17, 2013 9:47 pm    Post subject: Xorg configuration problem for multiple videocards/monitors Reply with quote

Hello guys!

Sadly I am having difficulties making my optimal X server conf

Here is how it looks like:
Code:

localhost ~ # cat /etc/X11/xorg.conf
Section "ServerLayout"
   Identifier   "ServerLayout0"
   Screen          "ScreenLGIntel" 0 0
   #Screen          "ScreenSamsungRadeon" 1920 0
EndSection



Section "Monitor"
   Identifier   "LGMonitorIntel"
EndSection

#Section "Monitor"
#   Identifier   "SamsungMonitorRadeon"
#EndSection


#Section   "Device"
#   Identifier   "RadeonCard"
#   Driver      "fglrx"
#   BusID      "PCI:1:0:0"
#EndSection

Section "Device"
          Identifier  "IntelCard"
         Driver      "intel"
        BusID       "PCI:0:2:0"
EndSection


#Section "Screen"
#   Identifier     "ScreenSamsungRadeon"
#   Device          "RadeonCard"
#   Monitor      "SamsungMonitorRadeon"
#EndSection


Section "Screen"
   Identifier   "ScreenLGIntel"
   Device      "IntelCard"
   Monitor      "LGMonitorIntel"
EndSection

At this state I get 1 working monitor, right out from my intel APU.

If I comment out the lines for the Intel Card, the Screen and the LG monitor, and uncomment the part for the RadeonCard, its Screen and the Samsung Monitor, they work too, I get 1 working monitor, right out from my RadeOn card inserted into the PCI-Slot.

However uncommenting everything does not load anything. I would like to achieve loading 2 videocards the same time, each using there own monitors separately. The next step would be adding a third monitor for the intel APU, but let's not get ahead of ourselves.

Any idea why this does not work?

Thanks for the help in advance!
Back to top
View user's profile Send private message
kiskoller
n00b
n00b


Joined: 30 Oct 2010
Posts: 65

PostPosted: Wed Dec 18, 2013 9:53 am    Post subject: Reply with quote

I also tried firing up 2 separate X servers:

Fire up one with the radeon configuration, then press CTRL+ALT+F2, log in again, change the configuration so this time the intel screen gets loaded, launched "startx" again.

This way however I could only see 1 monitor at any moment, and I could change between them with CTRL+ALT+F7/F8. That wouldnt be THAT much of a problem, the real problem was, that while I was active at the intel X server, the programs at the other X server went to sleep. Since I want to use OpenCL applications with the radeon card, this is not helping.
Back to top
View user's profile Send private message
dE_logics
Advocate
Advocate


Joined: 02 Jan 2009
Posts: 2253
Location: $TERM

PostPosted: Wed Dec 18, 2013 4:12 pm    Post subject: Reply with quote

Try this --

Code:
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
EndSection

Section "ServerLayout"
        Identifier     "ati"
        Screen      1 "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        Option "Primary" "true"
EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "intel"
        BusID       "PCI:x:x:x"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Monitor"
        Identifier   "aticonfig-Monitor[0]-0"
        Option      "VendorName" "ATI Proprietary Driver"
        Option      "ModelName" "Generic Autodetecting Monitor"
        Option      "DPMS" "true"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]-0"
        Driver      "fglrx"
        BusID       "PCI:x:x:x"
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]-0"
        Device     "aticonfig-Device[0]-0"
        Monitor    "aticonfig-Monitor[0]-0"
#       Option  "Accel" "false"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

_________________
My blog
Back to top
View user's profile Send private message
dE_logics
Advocate
Advocate


Joined: 02 Jan 2009
Posts: 2253
Location: $TERM

PostPosted: Wed Dec 18, 2013 4:16 pm    Post subject: Reply with quote

In the above, the PCI entries are not complete, replace x with the PCI address.

Figure out the address of your GPUs using lspci. Copy the address from lspci, and replace the last '.' with :

e.g. --
00:01.0

becomes PCI:00:01:0.

Next you need to test your multiseat setup.

I'm not sure of the following --

In a multiseat setup, you need to have 2 X server instances running, each having a different 'serverlayout'.

In the ttys run --

X -layout ati

This should start the display which's attached to your ATI card and

X -layout "X.org Configured"

Which should start your Intel display.

Report till here.
_________________
My blog
Back to top
View user's profile Send private message
kiskoller
n00b
n00b


Joined: 30 Oct 2010
Posts: 65

PostPosted: Wed Dec 18, 2013 8:27 pm    Post subject: Reply with quote

I tried this solution you said, 2 screenlayouts, and firing up X twice. Again this sadly does not solve my issue, because if focus I on the X server with the intel card, the X server with the radeon cards goes to sleep (the screen does not get updated either) and the programs stop calculating.

No, the only way this could work is with 1 screenlayout, 2 screens.
Back to top
View user's profile Send private message
kiskoller
n00b
n00b


Joined: 30 Oct 2010
Posts: 65

PostPosted: Thu Dec 19, 2013 12:28 am    Post subject: Reply with quote

This is the log for Xorg btw:

Code:
localhost ~ # cat /var/log/Xorg.0.log.old
[    84.567]
X.Org X Server 1.14.3
Release Date: 2013-09-12
[    84.568] X Protocol Version 11, Revision 0
[    84.569] Build Operating System: Linux 3.11.0-12-generic x86_64 Gentoo
[    84.569] Current Operating System: Linux localhost 3.10.17-gentoo #18 SMP Wed Dec 18 23:32:26 CET 2013 x86_64
[    84.569] Kernel command line: BOOT_IMAGE=gentoo ro root=803
[    84.570] Build Date: 08 November 2013  09:06:22PM
[    84.571] 
[    84.571] Current version of pixman: 0.32.4
[    84.572]    Before reporting problems, check http://wiki.x.org
   to make sure that you have the latest version.
[    84.572] Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    84.574] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 19 01:16:37 2013
[    84.577] (==) Using config file: "/etc/X11/xorg.conf"
[    84.577] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    84.578] (==) ServerLayout "radeon"
[    84.578] (**) |-->Screen "ScreenSamsungRadeon" (0)
[    84.578] (**) |   |-->Monitor "SamsungMonitorRadeon"
[    84.579] (**) |   |-->Device "RadeonCard"
[    84.579] (**) |-->Screen "ScreenLGIntel" (1)
[    84.579] (**) |   |-->Monitor "LGMonitorIntel"
[    84.579] (**) |   |-->Device "IntelCard"
[    84.579] (==) Automatically adding devices
[    84.579] (==) Automatically enabling devices
[    84.579] (==) Automatically adding GPU devices
[    84.579] (WW) The directory "/usr/share/fonts/misc/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (WW) The directory "/usr/share/fonts/100dpi/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (WW) The directory "/usr/share/fonts/75dpi/" does not exist.
[    84.579]    Entry deleted from font path.
[    84.579] (==) FontPath set to:
   
[    84.579] (==) ModulePath set to "/usr/lib64/xorg/modules"
[    84.579] (II) The server relies on udev to provide the list of input devices.
   If no devices become available, reconfigure udev or disable AutoAddDevices.
[    84.579] (II) Loader magic: 0x7fbc00
[    84.579] (II) Module ABI versions:
[    84.579]    X.Org ANSI C Emulation: 0.4
[    84.579]    X.Org Video Driver: 14.1
[    84.579]    X.Org XInput driver : 19.1
[    84.579]    X.Org Server Extension : 7.0
[    84.580] (II) xfree86: Adding drm device (/dev/dri/card0)
[    84.580] (--) PCI:*(0:0:2:0) 8086:0412:1043:8534 rev 6, Mem @ 0xf0400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[    84.580] (--) PCI: (0:1:0:0) 1002:679a:1458:254c rev 0, Mem @ 0xe0000000/268435456, 0xf0000000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[    84.581] Initializing built-in extension Generic Event Extension
[    84.582] Initializing built-in extension SHAPE
[    84.582] Initializing built-in extension MIT-SHM
[    84.583] Initializing built-in extension XInputExtension
[    84.583] Initializing built-in extension XTEST
[    84.584] Initializing built-in extension BIG-REQUESTS
[    84.584] Initializing built-in extension SYNC
[    84.585] Initializing built-in extension XKEYBOARD
[    84.585] Initializing built-in extension XC-MISC
[    84.586] Initializing built-in extension XINERAMA
[    84.586] Initializing built-in extension XFIXES
[    84.586] Initializing built-in extension RENDER
[    84.587] Initializing built-in extension RANDR
[    84.587] Initializing built-in extension COMPOSITE
[    84.588] Initializing built-in extension DAMAGE
[    84.588] Initializing built-in extension MIT-SCREEN-SAVER
[    84.588] Initializing built-in extension DOUBLE-BUFFER
[    84.589] Initializing built-in extension RECORD
[    84.589] Initializing built-in extension DPMS
[    84.590] Initializing built-in extension X-Resource
[    84.590] Initializing built-in extension XVideo
[    84.590] Initializing built-in extension XVideo-MotionCompensation
[    84.591] Initializing built-in extension XFree86-VidModeExtension
[    84.591] Initializing built-in extension XFree86-DGA
[    84.591] Initializing built-in extension XFree86-DRI
[    84.592] Initializing built-in extension DRI2
[    84.592] (II) "glx" will be loaded by default.
[    84.592] (II) LoadModule: "dri2"
[    84.592] (II) Module "dri2" already built-in
[    84.592] (II) LoadModule: "glamoregl"
[    84.594] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so
[    84.610] (EE) Failed to load /usr/lib64/xorg/modules/libglamoregl.so: /usr/lib64/xorg/modules/libglamoregl.so: undefined symbol: _glapi_tls_Context
[    84.610] (II) UnloadModule: "glamoregl"
[    84.610] (II) Unloading glamoregl
[    84.610] (EE) Failed to load module "glamoregl" (loader failed, 7)
[    84.610] (II) LoadModule: "glx"
[    84.614] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[    84.617] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[    84.617]    compiled for 6.9.0, module version = 1.0.0
[    84.618] Loading extension GLX
[    84.618] (II) LoadModule: "fglrx"
[    84.618] (II) Loading /usr/lib64/xorg/modules/drivers/fglrx_drv.so
[    84.660] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[    84.660]    compiled for 1.4.99.906, module version = 13.15.3
[    84.660]    Module class: X.Org Video Driver
[    84.660] (II) Loading sub module "fglrxdrm"
[    84.660] (II) LoadModule: "fglrxdrm"
[    84.660] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[    84.661] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    84.661]    compiled for 1.4.99.906, module version = 13.15.3
[    84.661] (II) LoadModule: "intel"
[    84.661] (II) Loading /usr/lib64/xorg/modules/drivers/intel_drv.so
[    84.664] (II) Module intel: vendor="X.Org Foundation"
[    84.664]    compiled for 1.14.3, module version = 2.21.15
[    84.664]    Module class: X.Org Video Driver
[    84.664]    ABI class: X.Org Video Driver, version 14.1
[    84.664] (II) AMD Proprietary Linux Driver Version Identifier:13.15.3
[    84.664] (II) AMD Proprietary Linux Driver Release Identifier: 13.152                               
[    84.664] (II) AMD Proprietary Linux Driver Build Date: Aug 30 2013 18:44:13
[    84.664] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
   i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
   915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
   Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
   GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
   HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
   HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
   HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
   HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
[    84.664] (--) using VT number 7

[    84.667] (WW) Falling back to old probe method for fglrx
[    84.674] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[    84.679] ukiDynamicMajor: found major device number 248
[    84.679] ukiDynamicMajor: found major device number 248
[    84.679] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    84.679] ukiOpenDevice: node name is /dev/ati/card0
[    84.679] ukiOpenDevice: open result is 9, (OK)
[    85.131] ukiOpenByBusid: ukiOpenMinor returns 9
[    85.131] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    85.133] (--) Chipset Supported AMD Graphics Processor (0x679A) found
[    85.134] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
[    85.135] (II) AMD Video driver is running on a device belonging to a group targeted for this release
[    85.135] (II) AMD Video driver is signed
[    85.135] (II) fglrx(0): pEnt->device->identifier=0x1470570
[    85.137] (II) fglrx(0): === [xdl_xs114_atiddxPreInit] === begin
[    85.137] (II) fglrx(0): Creating default Display subsection in Screen section
   "ScreenSamsungRadeon" for depth/fbbpp 24/32
[    85.137] (==) fglrx(0): Depth 24, (==) framebuffer bpp 32
[    85.137] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    85.137] (==) fglrx(0): Default visual is TrueColor
[    85.137] (==) fglrx(0): RGB weight 888
[    85.137] (II) fglrx(0): Using 8 bits per RGB
[    85.137] (==) fglrx(0): Buffer Tiling is ON
[    85.137] (II) Loading sub module "fglrxdrm"
[    85.137] (II) LoadModule: "fglrxdrm"
[    85.137] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[    85.137] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[    85.137]    compiled for 1.4.99.906, module version = 13.15.3
[    85.137] ukiDynamicMajor: found major device number 248
[    85.138] ukiDynamicMajor: found major device number 248
[    85.138] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    85.138] ukiOpenDevice: node name is /dev/ati/card0
[    85.138] ukiOpenDevice: open result is 13, (OK)
[    85.138] ukiOpenByBusid: ukiOpenMinor returns 13
[    85.138] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    85.138] (**) fglrx(0): NoAccel = NO
[    85.138] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[    85.138] (--) fglrx(0): Chipset: "AMD Radeon HD 7900 Series" (Chipset = 0x679a)
[    85.138] (--) fglrx(0): (PciSubVendor = 0x1458, PciSubDevice = 0x254c)
[    85.138] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[    85.138] (--) fglrx(0): Linear framebuffer (phys) at 0xe0000000
[    85.138] (--) fglrx(0): MMIO registers at 0xf0000000
[    85.138] (--) fglrx(0): I/O port at 0x0000e000
[    85.138] (==) fglrx(0): ROM-BIOS at 0x000c0000
[    85.139] (II) fglrx(0): AC Adapter is used
[    85.140] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[    85.140] (--) fglrx(0): Video RAM: 3145728 kByte, Type: GDDR5
[    85.140] (II) fglrx(0): PCIE card detected
[    85.141] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[    85.141] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[    85.141] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0xc0000000)
[    85.141] (II) fglrx(0): RandR 1.2 support is enabled!
[    85.141] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[    85.141] (==) fglrx(0): Center Mode is disabled
[    85.141] (II) Loading sub module "fb"
[    85.141] (II) LoadModule: "fb"
[    85.141] (II) Loading /usr/lib64/xorg/modules/libfb.so
[    85.142] (II) Module fb: vendor="X.Org Foundation"
[    85.142]    compiled for 1.14.3, module version = 1.0.0
[    85.142]    ABI class: X.Org ANSI C Emulation, version 0.4
[    85.142] (II) Loading sub module "ddc"
[    85.142] (II) LoadModule: "ddc"
[    85.142] (II) Module "ddc" already built-in
[    85.247] (II) fglrx(0): Output DFP1 using monitor section SamsungMonitorRadeon
[    85.247] (II) fglrx(0): Output DFP2 has no monitor section
[    85.247] (II) fglrx(0): Output DFP3 has no monitor section
[    85.247] (II) fglrx(0): Output DFP4 has no monitor section
[    85.247] (II) fglrx(0): Output DFP5 has no monitor section
[    85.247] (II) fglrx(0): Output DFP6 has no monitor section
[    85.247] (II) fglrx(0): Output DFP7 has no monitor section
[    85.247] (II) fglrx(0): Output DFP8 has no monitor section
[    85.247] (II) fglrx(0): Output DFP9 has no monitor section
[    85.247] (II) fglrx(0): Output DFP10 has no monitor section
[    85.247] (II) fglrx(0): Output CRT1 has no monitor section
[    85.247] (II) Loading sub module "ddc"
[    85.247] (II) LoadModule: "ddc"
[    85.247] (II) Module "ddc" already built-in
[    85.247] (II) fglrx(0): Connected Display0: DFP10
[    85.247] (II) fglrx(0):  Display0: Failed to get EDID information.
[    85.247] (II) fglrx(0): Dynamic Surface Resizing Enabled
[    85.248] (II) fglrx(0): EDID for output DFP1
[    85.248] (II) fglrx(0): EDID for output DFP2
[    85.248] (II) fglrx(0): EDID for output DFP3
[    85.248] (II) fglrx(0): EDID for output DFP4
[    85.248] (II) fglrx(0): EDID for output DFP5
[    85.248] (II) fglrx(0): EDID for output DFP6
[    85.248] (II) fglrx(0): EDID for output DFP7
[    85.248] (II) fglrx(0): EDID for output DFP8
[    85.248] (II) fglrx(0): EDID for output DFP9
[    85.248] (II) fglrx(0): EDID for output DFP10
[    85.248] (II) fglrx(0): Manufacturer: SAM  Model: 585  Serial#: 1297691187
[    85.248] (II) fglrx(0): Year: 2009  Week: 43
[    85.248] (II) fglrx(0): EDID Version: 1.3
[    85.248] (II) fglrx(0): Digital Display Input
[    85.248] (II) fglrx(0): Max Image Size [cm]: horiz.: 51  vert.: 29
[    85.248] (II) fglrx(0): Gamma: 2.20
[    85.248] (II) fglrx(0): DPMS capabilities: Off
[    85.248] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    85.248] (II) fglrx(0): First detailed timing is preferred mode
[    85.248] (II) fglrx(0): redX: 0.640 redY: 0.330   greenX: 0.300 greenY: 0.600
[    85.248] (II) fglrx(0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[    85.248] (II) fglrx(0): Supported established timings:
[    85.248] (II) fglrx(0): 640x480@60Hz
[    85.248] (II) fglrx(0): 800x600@56Hz
[    85.248] (II) fglrx(0): 800x600@60Hz
[    85.248] (II) fglrx(0): 1024x768@60Hz
[    85.248] (II) fglrx(0): Manufacturer's mask: 0
[    85.248] (II) fglrx(0): Supported standard timings:
[    85.248] (II) fglrx(0): #0: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    85.248] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    85.248] (II) fglrx(0): #2: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    85.248] (II) fglrx(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    85.248] (II) fglrx(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 156.8 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 2048  h_sync: 2096  h_sync_end 2128 h_blank_end 2208 h_border: 0
[    85.248] (II) fglrx(0): v_active: 1152  v_sync: 1155  v_sync_end 1160 v_blanking: 1185 v_border: 0
[    85.248] (II) fglrx(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H max: 81 kHz, PixClock max 165 MHz
[    85.248] (II) fglrx(0): Monitor name: SyncMaster
[    85.248] (II) fglrx(0): Serial No: H9XSA02653
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 148.5 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    85.248] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 148.5 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    85.248] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 74.2 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    85.248] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 74.2 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 1280  h_sync: 1720  h_sync_end 1760 h_blank_end 1980 h_border: 0
[    85.248] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 27.0 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 720  h_sync: 732  h_sync_end 796 h_blank_end 864 h_border: 0
[    85.248] (II) fglrx(0): v_active: 576  v_sync: 581  v_sync_end 586 v_blanking: 625 v_border: 0
[    85.248] (II) fglrx(0): Supported detailed timing:
[    85.248] (II) fglrx(0): clock: 27.0 MHz   Image Size:  510 x 287 mm
[    85.248] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    85.248] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    85.248] (II) fglrx(0): Number of EDID sections to follow: 1
[    85.248] (II) fglrx(0): EDID (in hex):
[    85.248] (II) fglrx(0):    00ffffffffffff004c2d85053332594d
[    85.248] (II) fglrx(0):    2b13010380331d782aee91a3544c9926
[    85.248] (II) fglrx(0):    0f50542308008180814081009500b300
[    85.248] (II) fglrx(0):    0101010101013b3d00a0808021403020
[    85.248] (II) fglrx(0):    3500fe1f1100001a000000fd00383c1e
[    85.248] (II) fglrx(0):    5110000a202020202020000000fc0053
[    85.248] (II) fglrx(0):    796e634d61737465720a2020000000ff
[    85.248] (II) fglrx(0):    00483958534130323635330a2020014e
[    85.248] (II) fglrx(0): Printing probed modes for output DFP10
[    85.248] (II) fglrx(0): Modeline "2048x1152"x60.0  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz eP)
[    85.248] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    85.248] (II) fglrx(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    85.248] (II) fglrx(0): Modeline "1776x1000"x50.0  148.50  1776 2304 2348 2640  1000 1004 1009 1125 +hsync +vsync (56.2 kHz ez)
[    85.248] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    85.248] (II) fglrx(0): Modeline "1400x1050"x60.0  146.25  1400 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    85.248] (II) fglrx(0): Modeline "1600x900"x60.0  146.25  1600 1784 1960 2240  900 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    85.248] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x800"x60.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x768"x60.0   83.50  1280 1352 1480 1680  768 803 809 831 -hsync +vsync (49.7 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    85.248] (II) fglrx(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    85.248] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    85.248] (II) fglrx(0): Modeline "1152x648"x50.0   74.25  1152 1592 1632 1980  648 653 658 750 +hsync +vsync (37.5 kHz ez)
[    85.248] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    85.248] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    85.248] (II) fglrx(0): Modeline "720x576"x60.0  156.75  720 2096 2128 2208  576 1155 1160 1185 +hsync -vsync (71.0 kHz e)
[    85.248] (II) fglrx(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    85.248] (II) fglrx(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    85.248] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    85.248] (II) fglrx(0): EDID for output CRT1
[    85.248] (II) fglrx(0): Output DFP1 disconnected
[    85.248] (II) fglrx(0): Output DFP2 disconnected
[    85.248] (II) fglrx(0): Output DFP3 disconnected
[    85.248] (II) fglrx(0): Output DFP4 disconnected
[    85.248] (II) fglrx(0): Output DFP5 disconnected
[    85.248] (II) fglrx(0): Output DFP6 disconnected
[    85.248] (II) fglrx(0): Output DFP7 disconnected
[    85.248] (II) fglrx(0): Output DFP8 disconnected
[    85.248] (II) fglrx(0): Output DFP9 disconnected
[    85.248] (II) fglrx(0): Output DFP10 connected
[    85.248] (II) fglrx(0): Output CRT1 disconnected
[    85.248] (II) fglrx(0): Using exact sizes for initial modes
[    85.248] (II) fglrx(0): Output DFP10 using initial mode 2048x1152
[    85.248] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    85.248] (II) fglrx(0): DPI set to (96, 96)
[    85.248] (II) fglrx(0): Eyefinity capable adapter detected.
[    85.248] (II) fglrx(0): Adapter AMD Radeon HD 7900 Series has 6 configurable heads and 1 displays connected.
[    85.248] (==) fglrx(0):  PseudoColor visuals disabled
[    85.248] (II) Loading sub module "ramdac"
[    85.248] (II) LoadModule: "ramdac"
[    85.248] (II) Module "ramdac" already built-in
[    85.248] (==) fglrx(0): NoDRI = NO
[    85.248] (==) fglrx(0): Capabilities: 0x00000000
[    85.248] (==) fglrx(0): CapabilitiesEx: 0x00000000
[    85.248] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[    85.248] (==) fglrx(0): UseFastTLS=0
[    85.248] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[    85.248] (II) intel(1): Creating default Display subsection in Screen section
   "ScreenLGIntel" for depth/fbbpp 24/32
[    85.248] (==) intel(1): Depth 24, (--) framebuffer bpp 32
[    85.248] (==) intel(1): RGB weight 888
[    85.248] (==) intel(1): Default visual is TrueColor
[    85.248] (--) intel(1): Integrated Graphics Chipset: Intel(R) HD Graphics 4600
[    85.249] (--) intel(1): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
[    85.249] (**) intel(1): Framebuffer tiled
[    85.249] (**) intel(1): Pixmaps tiled
[    85.249] (**) intel(1): "Tear free" disabled
[    85.249] (**) intel(1): Forcing per-crtc-pixmaps? no
[    85.249] (II) intel(1): Output VGA1 using monitor section LGMonitorIntel
[    85.249] (II) intel(1): Output HDMI1 has no monitor section
[    85.249] (II) intel(1): Output DP1 has no monitor section
[    85.249] (II) intel(1): Output HDMI2 has no monitor section
[    85.249] (II) intel(1): Output DP2 has no monitor section
[    85.249] (II) intel(1): Output HDMI3 has no monitor section
[    85.249] (II) intel(1): Output DP3 has no monitor section
[    85.249] (--) intel(1): Output VGA1 using initial mode 1920x1080 on pipe 0
[    85.249] (==) intel(1): DPI set to (96, 96)
[    85.249] (II) Loading sub module "dri2"
[    85.249] (II) LoadModule: "dri2"
[    85.249] (II) Module "dri2" already built-in
[    87.352] (EE) intel(G0): [drm] failed to set drm interface version: Permission denied [13].
[    87.352] (EE) intel(G0): Failed to claim DRM device.
[    87.352] (II) UnloadModule: "intel"
[    87.352] (--) Depth 24 pixmap format is 32 bpp
[    87.352] Loading extension ATIFGLRXDRI
[    87.352] (II) fglrx(0): doing swlDriScreenInit
[    87.352] (II) fglrx(0): swlDriScreenInit for fglrx driver
[    87.352] ukiDynamicMajor: found major device number 248
[    87.352] ukiDynamicMajor: found major device number 248
[    87.352] ukiDynamicMajor: found major device number 248
[    87.352] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    87.352] ukiOpenDevice: node name is /dev/ati/card0
[    87.352] ukiOpenDevice: open result is 14, (OK)
[    87.352] ukiOpenByBusid: ukiOpenMinor returns 14
[    87.352] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    87.352] (II) fglrx(0): [uki] DRM interface version 1.0
[    87.352] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[    87.352] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
[    87.352] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7f6e0b511000
[    87.352] (II) fglrx(0): [uki] framebuffer handle = 0x3000
[    87.352] (II) fglrx(0): [uki] added 1 reserved context for kernel
[    87.352] (II) fglrx(0): swlDriScreenInit done
[    87.352] (II) fglrx(0): Kernel Module Version Information:
[    87.352] (II) fglrx(0):     Name: fglrx
[    87.352] (II) fglrx(0):     Version: 13.15.3
[    87.352] (II) fglrx(0):     Date: Aug 30 2013
[    87.352] (II) fglrx(0):     Desc: AMD FireGL DRM kernel module
[    87.352] (II) fglrx(0): Kernel Module version matches driver.
[    87.352] (II) fglrx(0): Kernel Module Build Time Information:
[    87.352] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        3.10.17-gentoo
[    87.352] (II) fglrx(0):     Build-Kernel MODVERSIONS:        no
[    87.352] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[    87.353] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[    87.353] (II) fglrx(0): [uki] register handle = 0x00004000
[    87.356] (II) fglrx(0): DRI initialization successfull
[    87.357] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x01000000
[    87.358] (==) fglrx(0): Backing store disabled
[    87.358] Loading extension FGLRXEXTENSION
[    87.358] (==) fglrx(0): DPMS enabled
[    87.358] (II) fglrx(0): Initialized in-driver Xinerama extension
[    87.358] (**) fglrx(0): Textured Video is enabled.
[    87.358] (II) LoadModule: "glesx"
[    87.358] (II) Loading /usr/lib64/xorg/modules/glesx.so
[    87.373] (II) Module glesx: vendor="X.Org Foundation"
[    87.373]    compiled for 1.4.99.906, module version = 1.0.0
[    87.373] Loading extension GLESX
[    87.373] (II) fglrx(0): GLESX enableFlags = 592
[    87.374] (II) fglrx(0): GLESX is enabled
[    87.374] (II) LoadModule: "amdxmm"
[    87.374] (II) Loading /usr/lib64/xorg/modules/amdxmm.so
[    87.376] (II) Module amdxmm: vendor="X.Org Foundation"
[    87.376]    compiled for 1.4.99.906, module version = 2.0.0
[    87.388] Loading extension AMDXVOPL
[    87.388] Loading extension AMDXVBA
[    87.390] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
[    87.391] (II) fglrx(0): Enable composite support successfully
[    87.391] (II) fglrx(0): X context handle = 0x1
[    87.391] (II) fglrx(0): [DRI] installation complete
[    87.391] (==) fglrx(0): Silken mouse enabled
[    87.391] (==) fglrx(0): Using HW cursor of display infrastructure!
[    87.391] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    87.572] (--) RandR disabled
[    87.573] (II) intel(1): SNA initialized with Haswell (gen7.5, gt2) backend
[    87.573] (==) intel(1): Backing store disabled
[    87.573] (==) intel(1): Silken mouse enabled
[    87.573] (II) intel(1): HW Cursor enabled
[    87.573] (II) intel(1): RandR 1.2 enabled, ignore the following RandR disabled message.
[    87.573] (==) intel(1): DPMS enabled
[    87.573] (II) intel(1): [DRI2] Setup complete
[    87.573] (II) intel(1): [DRI2]   DRI driver: i965
[    87.573] (II) intel(1): direct rendering: DRI2 Enabled
[    87.573] (==) intel(1): hotplug detection: "enabled"
[    87.573] (--) RandR disabled
[    87.577] ukiDynamicMajor: found major device number 248
[    87.577] ukiDynamicMajor: found major device number 248
[    87.577] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    87.577] ukiOpenDevice: node name is /dev/ati/card0
[    87.577] ukiOpenDevice: open result is 16, (OK)
[    87.577] ukiOpenByBusid: ukiOpenMinor returns 16
[    87.577] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    87.577] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[    87.618] ukiDynamicMajor: found major device number 248
[    87.618] ukiDynamicMajor: found major device number 248
[    87.618] ukiDynamicMajor: found major device number 248
[    87.618] ukiOpenDevice: node name is /dev/ati/card0
[    87.618] ukiOpenDevice: open result is 17, (OK)
[    87.618] ukiGetBusid returned 'PCI:1:0:0'
[    87.618] ukiOpenDevice: node name is /dev/ati/card1
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card2
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card3
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card4
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card5
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card6
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card7
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card8
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card9
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card10
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card11
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: Open failed
[    87.618] ukiOpenDevice: node name is /dev/ati/card12
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.618] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: Open failed
[    87.619] ukiOpenDevice: node name is /dev/ati/card13
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: Open failed
[    87.619] ukiOpenDevice: node name is /dev/ati/card14
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: Open failed
[    87.619] ukiOpenDevice: node name is /dev/ati/card15
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: open result is -1, (No such device)
[    87.619] ukiOpenDevice: Open failed
[    87.619] ukiDynamicMajor: found major device number 248
[    87.619] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    87.619] ukiOpenDevice: node name is /dev/ati/card0
[    87.619] ukiOpenDevice: open result is 17, (OK)
[    87.619] ukiOpenByBusid: ukiOpenMinor returns 17
[    87.619] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    87.711] (EE)
[    87.711] (EE) Backtrace:
[    87.713] (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x589d16]
[    87.713] (EE) 1: /usr/bin/X (0x400000+0x18da09) [0x58da09]
[    87.713] (EE) 2: /lib64/libpthread.so.0 (0x7f6e0a83a000+0x10aa0) [0x7f6e0a84aaa0]
[    87.713] (EE) 3: /usr/lib64/xorg/modules/drivers/fglrx_drv.so (xdl_xs114_atiddxGetGPUMapInfo+0x188) [0x7f6e07b5ab08]
[    87.713] (EE) 4: /usr/lib64/xorg/modules/drivers/fglrx_drv.so (atiddxGetGPUMapInfo+0xd) [0x7f6e079af4ad]
[    87.713] (EE) 5: /usr/lib64/xorg/modules/extensions/libglx.so (0x7f6e085ed000+0x1d55d) [0x7f6e0860a55d]
[    87.713] (EE) 6: /usr/lib64/xorg/modules/extensions/libglx.so (0x7f6e085ed000+0x1ee55) [0x7f6e0860be55]
[    87.713] (EE) 7: /usr/bin/X (InitExtensions+0x49) [0x4ad3f9]
[    87.713] (EE) 8: /usr/bin/X (0x400000+0x29d21) [0x429d21]
[    87.713] (EE) 9: /lib64/libc.so.6 (__libc_start_main+0xf5) [0x7f6e094d19b5]
[    87.713] (EE) 10: /usr/bin/X (0x400000+0x2a241) [0x42a241]
[    87.713] (EE)
[    87.713] (EE) Segmentation fault at address 0x30000014c
[    87.713] (EE)
Fatal server error:
[    87.713] (EE) Caught signal 11 (Segmentation fault). Server aborting
[    87.713] (EE)
[    87.713] (EE)
Please consult the The X.Org Foundation support
    at http://wiki.x.org
 for help.
[    87.713] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    87.713] (EE)
[    87.713] (II) fglrx(0): Backup framebuffer data.
[    87.724] (II) fglrx(0): Backup complete.



I dont quite understand all the different layers here, but could the problem be, that 2 graphical drivers cant share DRM?

Code:
[    87.352] (EE) intel(G0): [drm] failed to set drm interface version: Permission denied [13].
[    87.352] (EE) intel(G0): Failed to claim DRM device.
[    87.352] (II) UnloadModule: "intel"
Back to top
View user's profile Send private message
dE_logics
Advocate
Advocate


Joined: 02 Jan 2009
Posts: 2253
Location: $TERM

PostPosted: Sat Jan 04, 2014 3:47 pm    Post subject: Reply with quote

Use option -sharevts and specify the vt's for each instance.
_________________
My blog
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