You are not logged in.

#1 2015-11-16 00:36:26

8BitAce
Member
Registered: 2015-09-04
Posts: 9

[SOLVED] Choose OpenGL Renderer With 2 GPUs

I'm sort of at a loss at this point. Been trying everything for hours over the past 2 days.

Basically my problem is this:
I'm using my integrated GPU to power one monitor and my discrete GPU to power the other. Works fine except when using both at the same time applications ALWAYS use the OpenGL software renderer (llvmpipe). If I disable the discrete GPU in xorg.conf, then the i915 drivers get used. If I disable the iGPU then radeon gets used. But using both is a no-go...

Is there no way to FORCE X/OpenGL to use a specific renderer?

I've tried everything I can find. Best option I found was to use LIBGL_ALWAYS_INDIRECT=1, but that just causes this error:

name of display: :0.0
X Error of failed request:  GLXBadContext
  Major opcode of failed request:  155 (GLX)
  Minor opcode of failed request:  6 (X_GLXIsDirect)
  Serial number of failed request:  32
  Current serial number in output stream:  31

Any help would really be appreciated.

My xorg.conf for reference:

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	#Screen      1  "Screen1" LeftOf "Screen0"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
	Option         "Xinerama" "1"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/misc/"
	FontPath     "/usr/share/fonts/TTF/"
	FontPath     "/usr/share/fonts/OTF/"
	FontPath     "/usr/share/fonts/Type1/"
	FontPath     "/usr/share/fonts/100dpi/"
	FontPath     "/usr/share/fonts/75dpi/"
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
	Option       "DPMS" "false"
EndSection

#Section "Monitor"
#	Identifier   "Monitor1"
#	VendorName   "Monitor Vendor"
#	ModelName    "Monitor Model"
#	Option       "DPMS" "false"
#EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "Accel"              	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "ColorTiling"        	# [<bool>]
        #Option     "ColorTiling2D"      	# [<bool>]
        #Option     "RenderAccel"        	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "AccelMethod"        	# <str>
        #Option     "EXAVSync"           	# [<bool>]
        #Option     "EXAPixmaps"         	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "SwapbuffersWait"    	# [<bool>]
	
	#Option      "AccelMethod" "EXA"
	#Option      "RenderAccel" "True"
	Identifier  "Card0"
	Driver      "radeon"
	BusID       "PCI:2:0:0"
EndSection

#Section "Device"
#        ### Available Driver options are:-
#        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
#        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
#        ### <percent>: "<f>%"
#        ### [arg]: arg optional
#        #Option     "NoAccel"            	# [<bool>]
#        #Option     "AccelMethod"        	# <str>
#        #Option     "Backlight"          	# <str>
#        #Option     "CustomEDID"         	# <str>
#        #Option     "DRI"                	# <str>
#        #Option     "Present"            	# [<bool>]
#        #Option     "ColorKey"           	# <i>
#        #Option     "VideoKey"           	# <i>
#        #Option     "Tiling"             	# [<bool>]
#        #Option     "LinearFramebuffer"  	# [<bool>]
#        #Option     "HWRotation"         	# [<bool>]
#        #Option     "VSync"              	# [<bool>]
#        #Option     "PageFlip"           	# [<bool>]
#        #Option     "SwapbuffersWait"    	# [<bool>]
#        #Option     "TripleBuffer"       	# [<bool>]
#        #Option     "XvPreferOverlay"    	# [<bool>]
#        #Option     "HotPlug"            	# [<bool>]
#        #Option     "ReprobeOutputs"     	# [<bool>]
#        #Option     "XvMC"               	# [<bool>]
#        #Option     "ZaphodHeads"        	# <str>
#        #Option     "VirtualHeads"       	# <i>
#        #Option     "TearFree"           	# [<bool>]
#        #Option     "PerCrtcPixmaps"     	# [<bool>]
#        #Option     "FallbackDebug"      	# [<bool>]
#        #Option     "DebugFlushBatches"  	# [<bool>]
#        #Option     "DebugFlushCaches"   	# [<bool>]
#        #Option     "DebugWait"          	# [<bool>]
#        #Option     "BufferCache"        	# [<bool>]
#	Option      "AccelMethod" "uxa"
#        #Option      "DRI" "3"
#	Identifier  "Card1"
#	Driver      "intel"
#	BusID       "PCI:0:2:0"
#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 "Screen"
#	Identifier "Screen1"
#	Device     "Card1"
#	Monitor    "Monitor1"
#	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

EDIT: For anyone who finds themselves in a similar situation, try using the reverse PRIME method with your discrete card as the primary GPU.(https://wiki.archlinux.org/index.php/PRIME#Discrete_Card_as_Primary_GPU).

Last edited by 8BitAce (2015-11-19 23:41:11)

Offline

#2 2015-11-16 13:23:38

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,925

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

8BitAce, sounds like your system uses hybrid graphics and requires a special setup.
The PRIME wiki page should be useful, but let's gather some info first.

post lspci -k .

Rename or move your xorg.conf temporarily so X willl be forced to use autodetection.
Boot into X

post /var/log/Xorg.0.log  ( if not present or empty, post ~/.local/share/xorg/Xorg.0.log  instead )

Also post the output of xrandr  ,  xrandr --listproviders  and glxinfo | grep -i renderer .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#3 2015-11-18 04:35:02

8BitAce
Member
Registered: 2015-09-04
Posts: 9

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

Lone_Wolf wrote:

8BitAce, sounds like your system uses hybrid graphics and requires a special setup.
The PRIME wiki page should be useful, but let's gather some info first.

post lspci -k .

Rename or move your xorg.conf temporarily so X willl be forced to use autodetection.
Boot into X

post /var/log/Xorg.0.log  ( if not present or empty, post ~/.local/share/xorg/Xorg.0.log  instead )

Also post the output of xrandr  ,  xrandr --listproviders  and glxinfo | grep -i renderer .

Is it still called hybrid graphics in a desktop?

Anyway, the problem there is that I cannot get xrandr to work with this setup. I start X without a xorg.conf, I run `xrandr --setprovideroutputsource radeon Intel` and DVI-1-0 shows up but I can't output to it (always says it can't find the modes even though they are listed). If I do `xrandr --addmode DVI-1-0 1600x900` and `xrandr --output DVI-1-0 --mode 1600x900 --right-of HDMI1` X resizes but the monitor won't come on. From that I just concluded that xrandr is too buggy for this scenario.

lspci -k looks like this:

00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: hsw_uncore
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:01.1 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x8 Controller (rev 06)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
	DeviceName:  Onboard IGD
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: i915
	Kernel modules: i915
00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci
00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: mei_me
	Kernel modules: mei_me
00:19.0 Ethernet controller: Intel Corporation Ethernet Connection I217-V (rev 05)
	DeviceName:  Onboard LAN
	Subsystem: ASUSTeK Computer Inc. Device 859f
	Kernel driver in use: e1000e
	Kernel modules: e1000e
00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 859d
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00:1f.0 ISA bridge: Intel Corporation Z87 Express LPC Controller (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich
00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel driver in use: ahci
	Kernel modules: ahci
00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
	Subsystem: ASUSTeK Computer Inc. Device 8534
	Kernel modules: i2c_i801
02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti PRO [Radeon HD 7950/8950 OEM / R9 280]
	Subsystem: XFX Pine Group Inc. Device 3003
	Kernel driver in use: radeon
	Kernel modules: radeon
02:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Tahiti XT HDMI Audio [Radeon HD 7970 Series]
	Subsystem: XFX Pine Group Inc. Device aaa0
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
04:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 01)
	Subsystem: ASUSTeK Computer Inc. Device 858d
	Kernel driver in use: ahci
	Kernel modules: ahci

And Xorg.0.log looks like this when run with the config in OP (with the stuff uncommented though).

[ 38683.512] 
X.Org X Server 1.17.4
Release Date: 2015-10-28
[ 38683.512] X Protocol Version 11, Revision 0
[ 38683.513] Build Operating System: Linux 4.2.5-1-ARCH x86_64 
[ 38683.513] Current Operating System: Linux arch_d 4.1.9-1-vfio-lts #1 SMP PREEMPT Thu Oct 1 22:57:12 CDT 2015 x86_64
[ 38683.513] Kernel command line: initrd=\initramfs-linux-vfio-lts.img pcie_acs_override=downstream iommu=pt intel_iommu=on radeon.dpm=0 root=PARTUUID=4f035868-5458-4bd5-9b49-d5946c541316 rw
[ 38683.514] Build Date: 01 November 2015  10:36:50AM
[ 38683.514]  
[ 38683.514] Current version of pixman: 0.32.8
[ 38683.515] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 38683.515] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 38683.517] (==) Log file: "/home/eightbit/.local/share/xorg/Xorg.0.log", Time: Tue Nov 17 19:59:25 2015
[ 38683.517] (==) Using config file: "/etc/X11/xorg.conf"
[ 38683.517] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 38683.517] (==) ServerLayout "X.org Configured"
[ 38683.517] (**) |-->Screen "Screen0" (0)
[ 38683.517] (**) |   |-->Monitor "Monitor0"
[ 38683.518] (==) No device specified for screen "Screen0".
	Using the first device section listed.
[ 38683.518] (**) |   |-->Device "Card0"
[ 38683.518] (**) |-->Screen "Screen1" (1)
[ 38683.518] (**) |   |-->Monitor "Monitor1"
[ 38683.518] (**) |   |-->Device "Card1"
[ 38683.518] (**) |-->Input Device "Mouse0"
[ 38683.518] (**) |-->Input Device "Keyboard0"
[ 38683.518] (**) Option "Xinerama" "1"
[ 38683.518] (**) Option "AutoAddGPU" "off"
[ 38683.518] (==) Automatically adding devices
[ 38683.518] (==) Automatically enabling devices
[ 38683.518] (**) Not automatically adding GPU devices
[ 38683.518] (**) Xinerama: enabled
[ 38683.518] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[ 38683.518] 	Entry deleted from font path.
[ 38683.518] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[ 38683.518] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[ 38683.518] 	Entry deleted from font path.
[ 38683.518] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[ 38683.518] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[ 38683.518] 	Entry deleted from font path.
[ 38683.518] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[ 38683.518] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[ 38683.518] 	Entry deleted from font path.
[ 38683.518] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[ 38683.518] (**) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[ 38683.518] (**) ModulePath set to "/usr/lib/xorg/modules"
[ 38683.518] (**) Extension "Composite" is enabled
[ 38683.518] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 38683.518] (WW) Disabling Mouse0
[ 38683.518] (WW) Disabling Keyboard0
[ 38683.518] (II) Loader magic: 0x817d60
[ 38683.518] (II) Module ABI versions:
[ 38683.518] 	X.Org ANSI C Emulation: 0.4
[ 38683.518] 	X.Org Video Driver: 19.0
[ 38683.518] 	X.Org XInput driver : 21.1
[ 38683.518] 	X.Org Server Extension : 9.0
[ 38683.519] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[ 38683.519] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 38683.520] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 8 paused 0
[ 38683.520] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 38683.520] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
[ 38683.520] (--) PCI:*(0:0:2:0) 8086:0412:1043:8534 rev 6, Mem @ 0xf7800000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[ 38683.520] (--) PCI: (0:2:0:0) 1002:679a:1682:3003 rev 0, Mem @ 0xe0000000/268435456, 0xf7d00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[ 38683.520] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 38683.520] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 38683.520] (II) LoadModule: "glx"
[ 38683.521] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 38683.521] (II) Module glx: vendor="X.Org Foundation"
[ 38683.521] 	compiled for 1.17.4, module version = 1.0.0
[ 38683.521] 	ABI class: X.Org Server Extension, version 9.0
[ 38683.521] (==) AIGLX enabled
[ 38683.521] (II) LoadModule: "dri"
[ 38683.521] (II) Module "dri" already built-in
[ 38683.521] (II) LoadModule: "intel"
[ 38683.521] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 38683.521] (II) Module intel: vendor="X.Org Foundation"
[ 38683.521] 	compiled for 1.17.2, module version = 2.99.917
[ 38683.521] 	Module class: X.Org Video Driver
[ 38683.521] 	ABI class: X.Org Video Driver, version 19.0
[ 38683.521] (II) LoadModule: "radeon"
[ 38683.521] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[ 38683.521] (II) Module radeon: vendor="X.Org Foundation"
[ 38683.521] 	compiled for 1.17.0, module version = 7.5.0
[ 38683.521] 	Module class: X.Org Video Driver
[ 38683.521] 	ABI class: X.Org Video Driver, version 19.0
[ 38683.521] (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
[ 38683.522] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
[ 38683.522] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
[ 38683.522] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
[ 38683.522] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
	ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
	TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
	TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
	PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
	VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
	VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
	VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
	OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
	HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
	BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
	BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
	KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
	KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
	MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
	MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
	KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
	KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
	KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
	HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
[ 38683.524] (++) using VT number 1

[ 38683.524] (--) controlling tty is VT number 1, auto-enabling KeepTty
[ 38683.524] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[ 38683.524] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20150327
[ 38683.524] (II) intel(0): SNA compiled from 2.99.917-478-gdf72bc5
[ 38683.524] (II) [KMS] Kernel modesetting enabled.
[ 38683.524] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4600
[ 38683.524] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 4 threads
[ 38683.524] (**) intel(0): Depth 24, (--) framebuffer bpp 32
[ 38683.524] (==) intel(0): RGB weight 888
[ 38683.524] (==) intel(0): Default visual is TrueColor
[ 38683.524] (II) intel(0): Output VGA1 using monitor section Monitor0
[ 38683.524] (II) intel(0): Enabled output VGA1
[ 38683.524] (II) intel(0): Output HDMI1 using monitor section Monitor0
[ 38683.524] (II) intel(0): Enabled output HDMI1
[ 38683.524] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[ 38683.524] (II) intel(0): Output VIRTUAL1 has no monitor section
[ 38683.524] (II) intel(0): Enabled output VIRTUAL1
[ 38683.524] (--) intel(0): Output HDMI1 using initial mode 1360x768 on pipe 0
[ 38683.524] (==) intel(0): TearFree disabled
[ 38683.524] (==) intel(0): DPI set to (96, 96)
[ 38683.524] (II) Loading sub module "dri2"
[ 38683.524] (II) LoadModule: "dri2"
[ 38683.524] (II) Module "dri2" already built-in
[ 38683.524] (II) Loading sub module "present"
[ 38683.524] (II) LoadModule: "present"
[ 38683.524] (II) Module "present" already built-in
[ 38683.524] (==) RADEON(1): Depth 24, (--) framebuffer bpp 32
[ 38683.524] (II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[ 38683.524] (==) RADEON(1): Default visual is TrueColor
[ 38683.524] (==) RADEON(1): RGB weight 888
[ 38683.524] (II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
[ 38683.524] (--) RADEON(1): Chipset: "TAHITI" (ChipID = 0x679a)
[ 38683.524] (II) Loading sub module "dri2"
[ 38683.524] (II) LoadModule: "dri2"
[ 38683.524] (II) Module "dri2" already built-in
[ 38683.524] (II) Loading sub module "glamoregl"
[ 38683.524] (II) LoadModule: "glamoregl"
[ 38683.524] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 38683.527] (II) Module glamoregl: vendor="X.Org Foundation"
[ 38683.527] 	compiled for 1.17.4, module version = 1.0.0
[ 38683.527] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 38683.527] (II) glamor: OpenGL accelerated X.org driver based.
[ 38683.547] (II) glamor: EGL version 1.4 (DRI2):
[ 38683.548] (II) RADEON(1): glamor detected, initialising EGL layer.
[ 38683.548] (II) RADEON(1): KMS Color Tiling: enabled
[ 38683.548] (II) RADEON(1): KMS Color Tiling 2D: enabled
[ 38683.548] (II) RADEON(1): KMS Pageflipping: enabled
[ 38683.548] (II) RADEON(1): SwapBuffers wait for vsync: enabled
[ 38683.552] (II) RADEON(1): Output DisplayPort-0 using monitor section Monitor1
[ 38683.552] (**) RADEON(1): Option "RightOf" "HDMI1"
[ 38683.559] (II) RADEON(1): Output DisplayPort-1 has no monitor section
[ 38683.560] (II) RADEON(1): Output HDMI-1 has no monitor section
[ 38683.569] (II) RADEON(1): Output DVI-0 has no monitor section
[ 38683.599] (II) RADEON(1): Output DVI-1 has no monitor section
[ 38683.606] (II) RADEON(1): EDID for output DisplayPort-0
[ 38683.612] (II) RADEON(1): EDID for output DisplayPort-1
[ 38683.613] (II) RADEON(1): EDID for output HDMI-1
[ 38683.623] (II) RADEON(1): EDID for output DVI-0
[ 38683.653] (II) RADEON(1): EDID for output DVI-1
[ 38683.653] (II) RADEON(1): Manufacturer: HWP  Model: 2903  Serial#: 16843009
[ 38683.653] (II) RADEON(1): Year: 2011  Week: 51
[ 38683.653] (II) RADEON(1): EDID Version: 1.3
[ 38683.653] (II) RADEON(1): Digital Display Input
[ 38683.653] (II) RADEON(1): Max Image Size [cm]: horiz.: 44  vert.: 25
[ 38683.653] (II) RADEON(1): Gamma: 2.20
[ 38683.653] (II) RADEON(1): DPMS capabilities: Off
[ 38683.653] (II) RADEON(1): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[ 38683.653] (II) RADEON(1): Default color space is primary color space
[ 38683.653] (II) RADEON(1): First detailed timing is preferred mode
[ 38683.653] (II) RADEON(1): redX: 0.648 redY: 0.336   greenX: 0.294 greenY: 0.607
[ 38683.653] (II) RADEON(1): blueX: 0.145 blueY: 0.064   whiteX: 0.313 whiteY: 0.329
[ 38683.653] (II) RADEON(1): Supported established timings:
[ 38683.653] (II) RADEON(1): 720x400@70Hz
[ 38683.653] (II) RADEON(1): 640x480@60Hz
[ 38683.653] (II) RADEON(1): 800x600@60Hz
[ 38683.653] (II) RADEON(1): 1024x768@60Hz
[ 38683.653] (II) RADEON(1): Manufacturer's mask: 0
[ 38683.653] (II) RADEON(1): Supported standard timings:
[ 38683.653] (II) RADEON(1): #0: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[ 38683.653] (II) RADEON(1): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[ 38683.653] (II) RADEON(1): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[ 38683.653] (II) RADEON(1): #3: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[ 38683.653] (II) RADEON(1): Supported detailed timing:
[ 38683.653] (II) RADEON(1): clock: 108.0 MHz   Image Size:  443 x 249 mm
[ 38683.653] (II) RADEON(1): h_active: 1600  h_sync: 1624  h_sync_end 1704 h_blank_end 1800 h_border: 0
[ 38683.653] (II) RADEON(1): v_active: 900  v_sync: 901  v_sync_end 904 v_blanking: 1000 v_border: 0
[ 38683.653] (II) RADEON(1): Ranges: V min: 50 V max: 76 Hz, H min: 24 H max: 83 kHz, PixClock max 175 MHz
[ 38683.653] (II) RADEON(1): Monitor name: HP S2031
[ 38683.653] (II) RADEON(1): Serial No: 3CQ151NVR1
[ 38683.653] (II) RADEON(1): EDID (in hex):
[ 38683.653] (II) RADEON(1): 	00ffffffffffff0022f0032901010101
[ 38683.653] (II) RADEON(1): 	33150103802c19782e0625a6564b9b25
[ 38683.653] (II) RADEON(1): 	105054a1080081c081809500a9c00101
[ 38683.653] (II) RADEON(1): 	010101010101302a40c8608464301850
[ 38683.653] (II) RADEON(1): 	1300bbf91000001e000000fd00324c18
[ 38683.653] (II) RADEON(1): 	5311000a202020202020000000fc0048
[ 38683.653] (II) RADEON(1): 	502053323033310a20202020000000ff
[ 38683.653] (II) RADEON(1): 	003343513135314e5652310a20200019
[ 38683.653] (II) RADEON(1): Printing probed modes for output DVI-1
[ 38683.653] (II) RADEON(1): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[ 38683.653] (II) RADEON(1): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 38683.653] (II) RADEON(1): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[ 38683.653] (II) RADEON(1): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
[ 38683.653] (II) RADEON(1): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 38683.653] (II) RADEON(1): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 38683.653] (II) RADEON(1): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 38683.653] (II) RADEON(1): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 38683.653] (II) RADEON(1): Output DisplayPort-0 disconnected
[ 38683.653] (II) RADEON(1): Output DisplayPort-1 disconnected
[ 38683.653] (II) RADEON(1): Output HDMI-1 disconnected
[ 38683.653] (II) RADEON(1): Output DVI-0 disconnected
[ 38683.653] (II) RADEON(1): Output DVI-1 connected
[ 38683.653] (II) RADEON(1): Using user preference for initial modes
[ 38683.653] (II) RADEON(1): Output DVI-1 using initial mode 1600x900
[ 38683.653] (EE) RADEON(1): Cannot position output DisplayPort-0 relative to unknown output HDMI1
[ 38683.653] (II) RADEON(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 38683.653] (II) RADEON(1): mem size init: gart size :3fbce000 vram size: s:c0000000 visible:befbe000
[ 38683.653] (==) RADEON(1): DPI set to (96, 96)
[ 38683.653] (II) Loading sub module "fb"
[ 38683.653] (II) LoadModule: "fb"
[ 38683.653] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 38683.653] (II) Module fb: vendor="X.Org Foundation"
[ 38683.653] 	compiled for 1.17.4, module version = 1.0.0
[ 38683.653] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 38683.653] (II) Loading sub module "ramdac"
[ 38683.653] (II) LoadModule: "ramdac"
[ 38683.653] (II) Module "ramdac" already built-in
[ 38683.653] (--) Depth 24 pixmap format is 32 bpp
[ 38683.653] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
[ 38683.653] (==) intel(0): Backing store enabled
[ 38683.653] (==) intel(0): Silken mouse enabled
[ 38683.653] (II) intel(0): HW Cursor enabled
[ 38683.653] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 38683.653] (**) intel(0): Display hotplug detection disabled
[ 38683.653] (II) intel(0): [DRI2] Setup complete
[ 38683.653] (II) intel(0): [DRI2]   DRI driver: i965
[ 38683.653] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[ 38683.653] (II) intel(0): direct rendering: DRI2 enabled
[ 38683.653] (II) intel(0): hardware support for Present enabled
[ 38683.653] (--) RandR disabled
[ 38683.653] (II) RADEON(1): [DRI2] Setup complete
[ 38683.653] (II) RADEON(1): [DRI2]   DRI driver: radeonsi
[ 38683.653] (II) RADEON(1): [DRI2]   VDPAU driver: radeonsi
[ 38683.653] (II) RADEON(1): Front buffer size: 6400K
[ 38683.653] (II) RADEON(1): VRAM usage limit set to 2810325K
[ 38683.653] (==) RADEON(1): Backing store enabled
[ 38683.653] (II) RADEON(1): Direct rendering enabled
[ 38683.682] (II) RADEON(1): Use GLAMOR acceleration.
[ 38683.682] (II) RADEON(1): Acceleration enabled
[ 38683.682] (==) RADEON(1): Silken mouse enabled
[ 38683.682] (II) RADEON(1): Set up textured video (glamor)
[ 38683.682] (II) RADEON(1): [XvMC] Associated with GLAMOR Textured Video.
[ 38683.682] (II) RADEON(1): [XvMC] Extension initialized.
[ 38683.682] (II) RADEON(1): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 38683.682] (WW) RADEON(1): Option "DRI" is not used
[ 38683.682] (WW) RADEON(1): Option "Monitor-DVI-1-0" is not used
[ 38683.682] (WW) RADEON(1): Option "RightOf" is not used
[ 38683.682] (--) RandR disabled
[ 38683.687] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 38683.687] (II) AIGLX: enabled GLX_ARB_create_context
[ 38683.687] (II) AIGLX: enabled GLX_ARB_create_context_profile
[ 38683.687] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[ 38683.687] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 38683.687] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 38683.687] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[ 38683.687] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[ 38683.687] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 38683.687] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[ 38683.687] (II) AIGLX: Loaded and initialized i965
[ 38683.687] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 38683.687] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 38683.687] (II) AIGLX: enabled GLX_ARB_create_context
[ 38683.687] (II) AIGLX: enabled GLX_ARB_create_context_profile
[ 38683.687] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[ 38683.687] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 38683.687] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 38683.687] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[ 38683.687] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[ 38683.687] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 38683.688] (II) AIGLX: Loaded and initialized radeonsi
[ 38683.688] (II) GLX: Initialized DRI2 GL provider for screen 1
[ 38683.689] (II) intel(0): switch to mode 1360x768@60.0 on HDMI1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 38683.747] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[ 38683.747] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 38683.747] (II) LoadModule: "evdev"
[ 38683.747] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 38683.748] (II) Module evdev: vendor="X.Org Foundation"
[ 38683.748] 	compiled for 1.17.4, module version = 2.10.0
[ 38683.748] 	Module class: X.Org XInput Driver
[ 38683.748] 	ABI class: X.Org XInput driver, version 21.1
[ 38683.748] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 16 paused 0
[ 38683.748] (II) Using input driver 'evdev' for 'Power Button'
[ 38683.748] (**) Power Button: always reports core events
[ 38683.748] (**) evdev: Power Button: Device: "/dev/input/event4"
[ 38683.748] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 38683.748] (--) evdev: Power Button: Found keys
[ 38683.748] (II) evdev: Power Button: Configuring as keyboard
[ 38683.748] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event4"
[ 38683.748] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 38683.748] (**) Option "xkb_rules" "evdev"
[ 38683.748] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 38683.748] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 38683.748] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
[ 38683.748] (II) Using input driver 'evdev' for 'Power Button'
[ 38683.748] (**) Power Button: always reports core events
[ 38683.748] (**) evdev: Power Button: Device: "/dev/input/event3"
[ 38683.748] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 38683.748] (--) evdev: Power Button: Found keys
[ 38683.748] (II) evdev: Power Button: Configuring as keyboard
[ 38683.748] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event3"
[ 38683.748] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 38683.748] (**) Option "xkb_rules" "evdev"
[ 38683.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event5)
[ 38683.749] (II) No input driver specified, ignoring this device.
[ 38683.749] (II) This device may have been added with another device file.
[ 38683.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event20)
[ 38683.749] (II) No input driver specified, ignoring this device.
[ 38683.749] (II) This device may have been added with another device file.
[ 38683.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event21)
[ 38683.749] (II) No input driver specified, ignoring this device.
[ 38683.749] (II) This device may have been added with another device file.
[ 38683.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event22)
[ 38683.749] (II) No input driver specified, ignoring this device.
[ 38683.749] (II) This device may have been added with another device file.
[ 38683.749] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event23)
[ 38683.749] (II) No input driver specified, ignoring this device.
[ 38683.749] (II) This device may have been added with another device file.
[ 38683.750] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event24)
[ 38683.750] (II) No input driver specified, ignoring this device.
[ 38683.750] (II) This device may have been added with another device file.
[ 38683.750] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event7)
[ 38683.750] (II) No input driver specified, ignoring this device.
[ 38683.750] (II) This device may have been added with another device file.
[ 38683.750] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event8)
[ 38683.750] (II) No input driver specified, ignoring this device.
[ 38683.750] (II) This device may have been added with another device file.
[ 38683.750] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event9)
[ 38683.750] (II) No input driver specified, ignoring this device.
[ 38683.750] (II) This device may have been added with another device file.
[ 38683.750] (II) config/udev: Adding input device Burr-Brown from TI               USB Audio CODEC  (/dev/input/event0)
[ 38683.750] (**) Burr-Brown from TI               USB Audio CODEC : Applying InputClass "evdev keyboard catchall"
[ 38683.750] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 18 paused 0
[ 38683.751] (II) Using input driver 'evdev' for 'Burr-Brown from TI               USB Audio CODEC '
[ 38683.751] (**) Burr-Brown from TI               USB Audio CODEC : always reports core events
[ 38683.751] (**) evdev: Burr-Brown from TI               USB Audio CODEC : Device: "/dev/input/event0"
[ 38683.751] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Vendor 0x8bb Product 0x2902
[ 38683.751] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Found keys
[ 38683.751] (II) evdev: Burr-Brown from TI               USB Audio CODEC : Configuring as keyboard
[ 38683.751] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.3/0003:08BB:2902.0001/input/input2/event0"
[ 38683.751] (II) XINPUT: Adding extended input device "Burr-Brown from TI               USB Audio CODEC " (type: KEYBOARD, id 8)
[ 38683.751] (**) Option "xkb_rules" "evdev"
[ 38683.751] (II) config/udev: Adding input device DELL Dell USB Entry Keyboard (/dev/input/event1)
[ 38683.751] (**) DELL Dell USB Entry Keyboard: Applying InputClass "evdev keyboard catchall"
[ 38683.751] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 19 paused 0
[ 38683.751] (II) Using input driver 'evdev' for 'DELL Dell USB Entry Keyboard'
[ 38683.751] (**) DELL Dell USB Entry Keyboard: always reports core events
[ 38683.751] (**) evdev: DELL Dell USB Entry Keyboard: Device: "/dev/input/event1"
[ 38683.751] (--) evdev: DELL Dell USB Entry Keyboard: Vendor 0x413c Product 0x2107
[ 38683.751] (--) evdev: DELL Dell USB Entry Keyboard: Found keys
[ 38683.751] (II) evdev: DELL Dell USB Entry Keyboard: Configuring as keyboard
[ 38683.751] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:413C:2107.0002/input/input3/event1"
[ 38683.751] (II) XINPUT: Adding extended input device "DELL Dell USB Entry Keyboard" (type: KEYBOARD, id 9)
[ 38683.751] (**) Option "xkb_rules" "evdev"
[ 38683.752] (II) config/udev: Adding input device Logitech M315/235/317 (/dev/input/event2)
[ 38683.752] (**) Logitech M315/235/317: Applying InputClass "evdev pointer catchall"
[ 38683.752] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 20 paused 0
[ 38683.752] (II) Using input driver 'evdev' for 'Logitech M315/235/317'
[ 38683.752] (**) Logitech M315/235/317: always reports core events
[ 38683.752] (**) evdev: Logitech M315/235/317: Device: "/dev/input/event2"
[ 38683.752] (--) evdev: Logitech M315/235/317: Vendor 0x46d Product 0x4009
[ 38683.752] (--) evdev: Logitech M315/235/317: Found 20 mouse buttons
[ 38683.752] (--) evdev: Logitech M315/235/317: Found scroll wheel(s)
[ 38683.752] (--) evdev: Logitech M315/235/317: Found relative axes
[ 38683.752] (--) evdev: Logitech M315/235/317: Found x and y relative axes
[ 38683.752] (II) evdev: Logitech M315/235/317: Configuring as mouse
[ 38683.752] (II) evdev: Logitech M315/235/317: Adding scrollwheel support
[ 38683.752] (**) evdev: Logitech M315/235/317: YAxisMapping: buttons 4 and 5
[ 38683.752] (**) evdev: Logitech M315/235/317: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 38683.752] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:046D:C52B.0005/0003:046D:4009.0006/input/input4/event2"
[ 38683.752] (II) XINPUT: Adding extended input device "Logitech M315/235/317" (type: MOUSE, id 10)
[ 38683.752] (II) evdev: Logitech M315/235/317: initialized for relative axes.
[ 38683.752] (**) Logitech M315/235/317: (accel) keeping acceleration scheme 1
[ 38683.752] (**) Logitech M315/235/317: (accel) acceleration profile 0
[ 38683.752] (**) Logitech M315/235/317: (accel) acceleration factor: 2.000
[ 38683.752] (**) Logitech M315/235/317: (accel) acceleration threshold: 4
[ 38683.752] (II) config/udev: Adding input device Logitech M315/235/317 (/dev/input/mouse0)
[ 38683.752] (II) No input driver specified, ignoring this device.
[ 38683.752] (II) This device may have been added with another device file.
[ 38683.752] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
[ 38683.752] (II) No input driver specified, ignoring this device.
[ 38683.752] (II) This device may have been added with another device file.
[ 38683.752] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event11)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event12)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event13)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event14)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event15)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event16)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event17)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.753] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event18)
[ 38683.753] (II) No input driver specified, ignoring this device.
[ 38683.753] (II) This device may have been added with another device file.
[ 38683.754] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event19)
[ 38683.754] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[ 38683.754] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 21 paused 0
[ 38683.754] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[ 38683.754] (**) Eee PC WMI hotkeys: always reports core events
[ 38683.754] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event19"
[ 38683.754] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[ 38683.754] (--) evdev: Eee PC WMI hotkeys: Found keys
[ 38683.754] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[ 38683.754] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input22/event19"
[ 38683.754] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 11)
[ 38683.754] (**) Option "xkb_rules" "evdev"
[ 38683.754] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[ 38683.754] (II) No input driver specified, ignoring this device.
[ 38683.754] (II) This device may have been added with another device file.

And finally glxinfo reports the renderer as:

OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.7, 256 bits)

Offline

#4 2015-11-18 17:34:42

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,925

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

archwiki wrote:

Hybrid-graphics is a concept involving two graphics cards on same computer, it was first designed to control power consumption in laptops and is extending to desktop computers as well.

Yes, Hybrid graphics is also used on desktops.


8BitAce wrote:

From that I just concluded that xrandr is too buggy for this scenario.

Your xorg.conf is setup wrong, and that leads to the xrandr commands not working as you expect. .

[ 38683.653] (II) RADEON(1): Output DisplayPort-0 disconnected
[ 38683.653] (II) RADEON(1): Output DisplayPort-1 disconnected
[ 38683.653] (II) RADEON(1): Output HDMI-1 disconnected
[ 38683.653] (II) RADEON(1): Output DVI-0 disconnected
[ 38683.653] (II) RADEON(1): Output DVI-1 connected
[ 38683.653] (II) RADEON(1): Using user preference for initial modes
[ 38683.653] (II) RADEON(1): Output DVI-1 using initial mode 1600x900
[ 38683.653] (EE) RADEON(1): Cannot position output DisplayPort-0 relative to unknown output HDMI1
<snip>
[ 38683.682] (WW) RADEON(1): Option "DRI" is not used
[ 38683.682] (WW) RADEON(1): Option "Monitor-DVI-1-0" is not used
[ 38683.682] (WW) RADEON(1): Option "RightOf" is not used

The key to making setups like this work, is to find out what linux / X see using X autodetection.
Then a custom xorg.conf and xrandr commands to get the desired setup working can be crafted.


Please do these :

Rename or move your xorg.conf temporarily so X willl be forced to use autodetection.
start X

post Xorg.0.log , xrandr  ,  xrandr --listproviders  and glxinfo | grep -i renderer


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#5 2015-11-19 05:49:14

8BitAce
Member
Registered: 2015-09-04
Posts: 9

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

Lone_Wolf wrote:

Please do these :

Rename or move your xorg.conf temporarily so X willl be forced to use autodetection.
start X

post Xorg.0.log , xrandr  ,  xrandr --listproviders  and glxinfo | grep -i renderer

Without an xorg.conf Xorg.0.log reads:

[  3485.714]
X.Org X Server 1.17.4
Release Date: 2015-10-28
[  3485.715] X Protocol Version 11, Revision 0
[  3485.716] Build Operating System: Linux 4.2.5-1-ARCH x86_64
[  3485.717] Current Operating System: Linux arch_d 4.1.9-1-vfio-lts #1 SMP PREEMPT Thu Oct 1 22:57:12 CDT 2015 x86_64
[  3485.717] Kernel command line: initrd=\initramfs-linux-vfio-lts.img pcie_acs_override=downstream iommu=pt intel_iommu=on root=PARTUUID=4f035868-5458-4bd5-9b49-d5946c541316 rw
[  3485.718] Build Date: 01 November 2015  10:36:50AM
[  3485.719] 
[  3485.719] Current version of pixman: 0.32.8
[  3485.720]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[  3485.720] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  3485.723] (==) Log file: "/home/eightbit/.local/share/xorg/Xorg.0.log", Time: Wed Nov 18 23:47:00 2015
[  3485.723] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  3485.723] (==) No Layout section.  Using the first Screen section.
[  3485.723] (==) No screen section available. Using defaults.
[  3485.723] (**) |-->Screen "Default Screen Section" (0)
[  3485.723] (**) |   |-->Monitor "<default monitor>"
[  3485.723] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[  3485.723] (==) Automatically adding devices
[  3485.723] (==) Automatically enabling devices
[  3485.723] (==) Automatically adding GPU devices
[  3485.723] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  3485.723]     Entry deleted from font path.
[  3485.723]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  3485.723] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  3485.723]     Entry deleted from font path.
[  3485.723]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  3485.723] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
[  3485.723] (==) ModulePath set to "/usr/lib/xorg/modules"
[  3485.723] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[  3485.723] (II) Loader magic: 0x817d60
[  3485.723] (II) Module ABI versions:
[  3485.723]     X.Org ANSI C Emulation: 0.4
[  3485.723]     X.Org Video Driver: 19.0
[  3485.723]     X.Org XInput driver : 21.1
[  3485.723]     X.Org Server Extension : 9.0
[  3485.725] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[  3485.725] (II) xfree86: Adding drm device (/dev/dri/card1)
[  3485.725] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 8 paused 0
[  3485.726] (II) xfree86: Adding drm device (/dev/dri/card0)
[  3485.726] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
[  3485.726] (--) PCI:*(0:0:2:0) 8086:0412:1043:8534 rev 6, Mem @ 0xf7800000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[  3485.726] (--) PCI: (0:2:0:0) 1002:679a:1682:3003 rev 0, Mem @ 0xe0000000/268435456, 0xf7d00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[  3485.726] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  3485.726] (II) LoadModule: "glx"
[  3485.727] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  3485.727] (II) Module glx: vendor="X.Org Foundation"
[  3485.727]     compiled for 1.17.4, module version = 1.0.0
[  3485.727]     ABI class: X.Org Server Extension, version 9.0
[  3485.727] (==) AIGLX enabled
[  3485.727] (==) Matched intel as autoconfigured driver 0
[  3485.727] (==) Matched ati as autoconfigured driver 1
[  3485.727] (==) Matched intel as autoconfigured driver 2
[  3485.727] (==) Matched modesetting as autoconfigured driver 3
[  3485.727] (==) Matched fbdev as autoconfigured driver 4
[  3485.727] (==) Matched vesa as autoconfigured driver 5
[  3485.727] (==) Assigned the driver to the xf86ConfigLayout
[  3485.727] (II) LoadModule: "intel"
[  3485.727] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  3485.727] (II) Module intel: vendor="X.Org Foundation"
[  3485.727]     compiled for 1.17.2, module version = 2.99.917
[  3485.727]     Module class: X.Org Video Driver
[  3485.727]     ABI class: X.Org Video Driver, version 19.0
[  3485.727] (II) LoadModule: "ati"
[  3485.727] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[  3485.727] (II) Module ati: vendor="X.Org Foundation"
[  3485.727]     compiled for 1.17.0, module version = 7.5.0
[  3485.727]     Module class: X.Org Video Driver
[  3485.727]     ABI class: X.Org Video Driver, version 19.0
[  3485.727] (II) LoadModule: "radeon"
[  3485.728] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[  3485.728] (II) Module radeon: vendor="X.Org Foundation"
[  3485.728]     compiled for 1.17.0, module version = 7.5.0
[  3485.728]     Module class: X.Org Video Driver
[  3485.728]     ABI class: X.Org Video Driver, version 19.0
[  3485.728] (II) LoadModule: "modesetting"
[  3485.728] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[  3485.728] (II) Module modesetting: vendor="X.Org Foundation"
[  3485.728]     compiled for 1.17.4, module version = 1.17.4
[  3485.728]     Module class: X.Org Video Driver
[  3485.728]     ABI class: X.Org Video Driver, version 19.0
[  3485.728] (II) LoadModule: "fbdev"
[  3485.728] (WW) Warning, couldn't open module fbdev
[  3485.728] (II) UnloadModule: "fbdev"
[  3485.728] (II) Unloading fbdev
[  3485.728] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  3485.728] (II) LoadModule: "vesa"
[  3485.728] (WW) Warning, couldn't open module vesa
[  3485.728] (II) UnloadModule: "vesa"
[  3485.728] (II) Unloading vesa
[  3485.728] (EE) Failed to load module "vesa" (module does not exist, 0)
[  3485.728] (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
[  3485.728] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
[  3485.728] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
[  3485.728] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
[  3485.728] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO2, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
[  3485.730] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  3485.730] (++) using VT number 1

[  3485.730] (--) controlling tty is VT number 1, auto-enabling KeepTty
[  3485.730] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[  3485.730] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20150327
[  3485.730] (II) intel(0): SNA compiled from 2.99.917-478-gdf72bc5
[  3485.730] (II) [KMS] Kernel modesetting enabled.
[  3485.730] (WW) Falling back to old probe method for modesetting
[  3485.730] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[  3485.730] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4600
[  3485.730] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2; using a maximum of 4 threads
[  3485.730] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
[  3485.730] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  3485.730] (==) intel(0): RGB weight 888
[  3485.730] (==) intel(0): Default visual is TrueColor
[  3485.730] (II) intel(0): Output VGA1 has no monitor section
[  3485.730] (II) intel(0): Enabled output VGA1
[  3485.730] (II) intel(0): Output HDMI1 has no monitor section
[  3485.730] (II) intel(0): Enabled output HDMI1
[  3485.730] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[  3485.730] (II) intel(0): Output VIRTUAL1 has no monitor section
[  3485.730] (II) intel(0): Enabled output VIRTUAL1
[  3485.730] (--) intel(0): Output HDMI1 using initial mode 1360x768 on pipe 0
[  3485.730] (==) intel(0): TearFree disabled
[  3485.730] (==) intel(0): DPI set to (96, 96)
[  3485.730] (II) Loading sub module "dri2"
[  3485.730] (II) LoadModule: "dri2"
[  3485.730] (II) Module "dri2" already built-in
[  3485.730] (II) Loading sub module "present"
[  3485.730] (II) LoadModule: "present"
[  3485.730] (II) Module "present" already built-in
[  3485.731] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
[  3485.731] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[  3485.731] (==) RADEON(G0): Default visual is TrueColor
[  3485.731] (==) RADEON(G0): RGB weight 888
[  3485.731] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
[  3485.731] (--) RADEON(G0): Chipset: "TAHITI" (ChipID = 0x679a)
[  3485.731] (II) Loading sub module "dri2"
[  3485.731] (II) LoadModule: "dri2"
[  3485.731] (II) Module "dri2" already built-in
[  3485.731] (II) Loading sub module "glamoregl"
[  3485.731] (II) LoadModule: "glamoregl"
[  3485.731] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[  3485.733] (II) Module glamoregl: vendor="X.Org Foundation"
[  3485.733]     compiled for 1.17.4, module version = 1.0.0
[  3485.733]     ABI class: X.Org ANSI C Emulation, version 0.4
[  3485.733] (II) glamor: OpenGL accelerated X.org driver based.
[  3485.753] (II) glamor: EGL version 1.4 (DRI2):
[  3485.754] (II) RADEON(G0): glamor detected, initialising EGL layer.
[  3485.754] (II) RADEON(G0): KMS Color Tiling: enabled
[  3485.754] (II) RADEON(G0): KMS Color Tiling 2D: enabled
[  3485.754] (II) RADEON(G0): KMS Pageflipping: enabled
[  3485.754] (II) RADEON(G0): SwapBuffers wait for vsync: enabled
[  3485.759] (II) RADEON(G0): Output DisplayPort-1-0 has no monitor section
[  3485.766] (II) RADEON(G0): Output DisplayPort-1-1 has no monitor section
[  3485.767] (II) RADEON(G0): Output HDMI-1-1 has no monitor section
[  3485.776] (II) RADEON(G0): Output DVI-1-0 has no monitor section
[  3485.807] (II) RADEON(G0): Output DVI-1-0 has no monitor section
[  3485.813] (II) RADEON(G0): EDID for output DisplayPort-1-0
[  3485.819] (II) RADEON(G0): EDID for output DisplayPort-1-1
[  3485.820] (II) RADEON(G0): EDID for output HDMI-1-1
[  3485.829] (II) RADEON(G0): EDID for output DVI-1-0
[  3485.860] (II) RADEON(G0): EDID for output DVI-1-0
[  3485.860] (II) RADEON(G0): Manufacturer: HWP  Model: 2903  Serial#: 16843009
[  3485.860] (II) RADEON(G0): Year: 2011  Week: 51
[  3485.860] (II) RADEON(G0): EDID Version: 1.3
[  3485.860] (II) RADEON(G0): Digital Display Input
[  3485.860] (II) RADEON(G0): Max Image Size [cm]: horiz.: 44  vert.: 25
[  3485.860] (II) RADEON(G0): Gamma: 2.20
[  3485.860] (II) RADEON(G0): DPMS capabilities: Off
[  3485.860] (II) RADEON(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[  3485.860] (II) RADEON(G0): Default color space is primary color space
[  3485.860] (II) RADEON(G0): First detailed timing is preferred mode
[  3485.860] (II) RADEON(G0): redX: 0.648 redY: 0.336   greenX: 0.294 greenY: 0.607
[  3485.860] (II) RADEON(G0): blueX: 0.145 blueY: 0.064   whiteX: 0.313 whiteY: 0.329
[  3485.860] (II) RADEON(G0): Supported established timings:
[  3485.860] (II) RADEON(G0): 720x400@70Hz
[  3485.860] (II) RADEON(G0): 640x480@60Hz
[  3485.860] (II) RADEON(G0): 800x600@60Hz
[  3485.860] (II) RADEON(G0): 1024x768@60Hz
[  3485.860] (II) RADEON(G0): Manufacturer's mask: 0
[  3485.860] (II) RADEON(G0): Supported standard timings:
[  3485.860] (II) RADEON(G0): #0: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[  3485.860] (II) RADEON(G0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[  3485.860] (II) RADEON(G0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[  3485.860] (II) RADEON(G0): #3: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[  3485.860] (II) RADEON(G0): Supported detailed timing:
[  3485.860] (II) RADEON(G0): clock: 108.0 MHz   Image Size:  443 x 249 mm
[  3485.860] (II) RADEON(G0): h_active: 1600  h_sync: 1624  h_sync_end 1704 h_blank_end 1800 h_border: 0
[  3485.860] (II) RADEON(G0): v_active: 900  v_sync: 901  v_sync_end 904 v_blanking: 1000 v_border: 0
[  3485.860] (II) RADEON(G0): Ranges: V min: 50 V max: 76 Hz, H min: 24 H max: 83 kHz, PixClock max 175 MHz
[  3485.860] (II) RADEON(G0): Monitor name: HP S2031
[  3485.860] (II) RADEON(G0): Serial No: 3CQ151NVR1
[  3485.860] (II) RADEON(G0): EDID (in hex):
[  3485.860] (II) RADEON(G0):     00ffffffffffff0022f0032901010101
[  3485.860] (II) RADEON(G0):     33150103802c19782e0625a6564b9b25
[  3485.860] (II) RADEON(G0):     105054a1080081c081809500a9c00101
[  3485.860] (II) RADEON(G0):     010101010101302a40c8608464301850
[  3485.860] (II) RADEON(G0):     1300bbf91000001e000000fd00324c18
[  3485.860] (II) RADEON(G0):     5311000a202020202020000000fc0048
[  3485.860] (II) RADEON(G0):     502053323033310a20202020000000ff
[  3485.860] (II) RADEON(G0):     003343513135314e5652310a20200019
[  3485.860] (II) RADEON(G0): Printing probed modes for output DVI-1-0
[  3485.860] (II) RADEON(G0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[  3485.860] (II) RADEON(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  3485.860] (II) RADEON(G0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[  3485.860] (II) RADEON(G0): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
[  3485.860] (II) RADEON(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  3485.860] (II) RADEON(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  3485.860] (II) RADEON(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  3485.860] (II) RADEON(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  3485.860] (II) RADEON(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  3485.860] (II) RADEON(G0): mem size init: gart size :3fbce000 vram size: s:c0000000 visible:bf602000
[  3485.860] (==) RADEON(G0): DPI set to (96, 96)
[  3485.861] (II) Loading sub module "fb"
[  3485.861] (II) LoadModule: "fb"
[  3485.861] (II) Loading /usr/lib/xorg/modules/libfb.so
[  3485.861] (II) Module fb: vendor="X.Org Foundation"
[  3485.861]     compiled for 1.17.4, module version = 1.0.0
[  3485.861]     ABI class: X.Org ANSI C Emulation, version 0.4
[  3485.861] (II) Loading sub module "ramdac"
[  3485.861] (II) LoadModule: "ramdac"
[  3485.861] (II) Module "ramdac" already built-in
[  3485.861] (II) UnloadModule: "modesetting"
[  3485.861] (II) Unloading modesetting
[  3485.861] (==) Depth 24 pixmap format is 32 bpp
[  3485.861] (II) RADEON(G0): [DRI2] Setup complete
[  3485.861] (II) RADEON(G0): [DRI2]   DRI driver: radeonsi
[  3485.861] (II) RADEON(G0): [DRI2]   VDPAU driver: radeonsi
[  3485.861] (II) RADEON(G0): Front buffer size: 3072K
[  3485.861] (II) RADEON(G0): VRAM usage limit set to 2819095K
[  3485.861] (==) RADEON(G0): Backing store enabled
[  3485.861] (II) RADEON(G0): Direct rendering enabled
[  3485.889] (II) RADEON(G0): Use GLAMOR acceleration.
[  3485.889] (II) RADEON(G0): Acceleration enabled
[  3485.889] (==) RADEON(G0): DPMS enabled
[  3485.889] (==) RADEON(G0): Silken mouse enabled
[  3485.889] (II) RADEON(G0): Set up textured video (glamor)
[  3485.889] (II) RADEON(G0): [XvMC] Associated with GLAMOR Textured Video.
[  3485.889] (II) RADEON(G0): [XvMC] Extension initialized.
[  3485.889] (II) RADEON(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  3485.890] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
[  3485.890] (==) intel(0): Backing store enabled
[  3485.890] (==) intel(0): Silken mouse enabled
[  3485.890] (II) intel(0): HW Cursor enabled
[  3485.890] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  3485.890] (==) intel(0): DPMS enabled
[  3485.890] (==) intel(0): Display hotplug detection enabled
[  3485.890] (II) intel(0): [DRI2] Setup complete
[  3485.890] (II) intel(0): [DRI2]   DRI driver: i965
[  3485.890] (II) intel(0): [DRI2]   VDPAU driver: va_gl
[  3485.890] (II) intel(0): direct rendering: DRI2 enabled
[  3485.890] (II) intel(0): hardware support for Present enabled
[  3485.890] (--) RandR disabled
[  3485.895] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  3485.895] (II) AIGLX: enabled GLX_ARB_create_context
[  3485.895] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  3485.895] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[  3485.895] (II) AIGLX: enabled GLX_INTEL_swap_event
[  3485.895] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  3485.895] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  3485.895] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  3485.895] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  3485.895] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  3485.896] (II) AIGLX: Loaded and initialized i965
[  3485.896] (II) GLX: Initialized DRI2 GL provider for screen 0
[  3485.903] (II) intel(0): switch to mode 1360x768@60.0 on HDMI1 using pipe 0, position (0, 0), rotation normal, reflection none
[  3485.903] (II) intel(0): Setting screen physical size to 359 x 203
[  3485.924] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[  3485.924] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  3485.924] (II) LoadModule: "evdev"
[  3485.924] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  3485.925] (II) Module evdev: vendor="X.Org Foundation"
[  3485.925]     compiled for 1.17.4, module version = 2.10.0
[  3485.925]     Module class: X.Org XInput Driver
[  3485.925]     ABI class: X.Org XInput driver, version 21.1
[  3485.925] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 16 paused 0
[  3485.925] (II) Using input driver 'evdev' for 'Power Button'
[  3485.925] (**) Power Button: always reports core events
[  3485.925] (**) evdev: Power Button: Device: "/dev/input/event4"
[  3485.925] (--) evdev: Power Button: Vendor 0 Product 0x1
[  3485.925] (--) evdev: Power Button: Found keys
[  3485.925] (II) evdev: Power Button: Configuring as keyboard
[  3485.925] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event4"
[  3485.925] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  3485.925] (**) Option "xkb_rules" "evdev"
[  3485.925] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  3485.925] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  3485.926] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
[  3485.926] (II) Using input driver 'evdev' for 'Power Button'
[  3485.926] (**) Power Button: always reports core events
[  3485.926] (**) evdev: Power Button: Device: "/dev/input/event3"
[  3485.926] (--) evdev: Power Button: Vendor 0 Product 0x1
[  3485.926] (--) evdev: Power Button: Found keys
[  3485.926] (II) evdev: Power Button: Configuring as keyboard
[  3485.926] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event3"
[  3485.926] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  3485.926] (**) Option "xkb_rules" "evdev"
[  3485.926] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event7)
[  3485.926] (II) No input driver specified, ignoring this device.
[  3485.926] (II) This device may have been added with another device file.
[  3485.926] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event8)
[  3485.926] (II) No input driver specified, ignoring this device.
[  3485.926] (II) This device may have been added with another device file.
[  3485.926] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event9)
[  3485.926] (II) No input driver specified, ignoring this device.
[  3485.926] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event10)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event11)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event12)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event13)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event14)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.927] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event15)
[  3485.927] (II) No input driver specified, ignoring this device.
[  3485.927] (II) This device may have been added with another device file.
[  3485.928] (II) config/udev: Adding input device Burr-Brown from TI               USB Audio CODEC  (/dev/input/event0)
[  3485.928] (**) Burr-Brown from TI               USB Audio CODEC : Applying InputClass "evdev keyboard catchall"
[  3485.928] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 18 paused 0
[  3485.928] (II) Using input driver 'evdev' for 'Burr-Brown from TI               USB Audio CODEC '
[  3485.928] (**) Burr-Brown from TI               USB Audio CODEC : always reports core events
[  3485.928] (**) evdev: Burr-Brown from TI               USB Audio CODEC : Device: "/dev/input/event0"
[  3485.928] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Vendor 0x8bb Product 0x2902
[  3485.928] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Found keys
[  3485.928] (II) evdev: Burr-Brown from TI               USB Audio CODEC : Configuring as keyboard
[  3485.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.3/0003:08BB:2902.0001/input/input2/event0"
[  3485.928] (II) XINPUT: Adding extended input device "Burr-Brown from TI               USB Audio CODEC " (type: KEYBOARD, id 8)
[  3485.928] (**) Option "xkb_rules" "evdev"
[  3485.928] (II) config/udev: Adding input device DELL Dell USB Entry Keyboard (/dev/input/event1)
[  3485.928] (**) DELL Dell USB Entry Keyboard: Applying InputClass "evdev keyboard catchall"
[  3485.928] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 19 paused 0
[  3485.928] (II) Using input driver 'evdev' for 'DELL Dell USB Entry Keyboard'
[  3485.928] (**) DELL Dell USB Entry Keyboard: always reports core events
[  3485.928] (**) evdev: DELL Dell USB Entry Keyboard: Device: "/dev/input/event1"
[  3485.928] (--) evdev: DELL Dell USB Entry Keyboard: Vendor 0x413c Product 0x2107
[  3485.928] (--) evdev: DELL Dell USB Entry Keyboard: Found keys
[  3485.928] (II) evdev: DELL Dell USB Entry Keyboard: Configuring as keyboard
[  3485.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.0/0003:413C:2107.0002/input/input3/event1"
[  3485.928] (II) XINPUT: Adding extended input device "DELL Dell USB Entry Keyboard" (type: KEYBOARD, id 9)
[  3485.928] (**) Option "xkb_rules" "evdev"
[  3485.929] (II) config/udev: Adding input device Logitech M315/235/317 (/dev/input/event2)
[  3485.929] (**) Logitech M315/235/317: Applying InputClass "evdev pointer catchall"
[  3485.929] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 20 paused 0
[  3485.929] (II) Using input driver 'evdev' for 'Logitech M315/235/317'
[  3485.929] (**) Logitech M315/235/317: always reports core events
[  3485.929] (**) evdev: Logitech M315/235/317: Device: "/dev/input/event2"
[  3485.929] (--) evdev: Logitech M315/235/317: Vendor 0x46d Product 0x4009
[  3485.929] (--) evdev: Logitech M315/235/317: Found 20 mouse buttons
[  3485.929] (--) evdev: Logitech M315/235/317: Found scroll wheel(s)
[  3485.929] (--) evdev: Logitech M315/235/317: Found relative axes
[  3485.929] (--) evdev: Logitech M315/235/317: Found x and y relative axes
[  3485.929] (II) evdev: Logitech M315/235/317: Configuring as mouse
[  3485.929] (II) evdev: Logitech M315/235/317: Adding scrollwheel support
[  3485.929] (**) evdev: Logitech M315/235/317: YAxisMapping: buttons 4 and 5
[  3485.929] (**) evdev: Logitech M315/235/317: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  3485.929] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.2/0003:046D:C52B.0005/0003:046D:4009.0006/input/input4/event2"
[  3485.929] (II) XINPUT: Adding extended input device "Logitech M315/235/317" (type: MOUSE, id 10)
[  3485.929] (II) evdev: Logitech M315/235/317: initialized for relative axes.
[  3485.929] (**) Logitech M315/235/317: (accel) keeping acceleration scheme 1
[  3485.929] (**) Logitech M315/235/317: (accel) acceleration profile 0
[  3485.929] (**) Logitech M315/235/317: (accel) acceleration factor: 2.000
[  3485.929] (**) Logitech M315/235/317: (accel) acceleration threshold: 4
[  3485.930] (II) config/udev: Adding input device Logitech M315/235/317 (/dev/input/mouse0)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event16)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event17)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event18)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event19)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event20)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.930] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event21)
[  3485.930] (II) No input driver specified, ignoring this device.
[  3485.930] (II) This device may have been added with another device file.
[  3485.931] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event22)
[  3485.931] (II) No input driver specified, ignoring this device.
[  3485.931] (II) This device may have been added with another device file.
[  3485.931] (II) config/udev: Adding input device HDA Intel PCH Line Out Side (/dev/input/event23)
[  3485.931] (II) No input driver specified, ignoring this device.
[  3485.931] (II) This device may have been added with another device file.
[  3485.931] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event24)
[  3485.931] (II) No input driver specified, ignoring this device.
[  3485.931] (II) This device may have been added with another device file.
[  3485.931] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event25)
[  3485.931] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  3485.931] (II) systemd-logind: got fd for /dev/input/event25 13:89 fd 21 paused 0
[  3485.931] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[  3485.931] (**) Eee PC WMI hotkeys: always reports core events
[  3485.931] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event25"
[  3485.931] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[  3485.931] (--) evdev: Eee PC WMI hotkeys: Found keys
[  3485.931] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[  3485.931] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input28/event25"
[  3485.931] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 11)
[  3485.931] (**) Option "xkb_rules" "evdev"
[  3485.932] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[  3485.932] (II) No input driver specified, ignoring this device.
[  3485.932] (II) This device may have been added with another device file.
[  3485.957] (II) intel(0): EDID vendor "STD", prod id 199
[  3485.957] (II) intel(0): Using EDID range info for horizontal sync
[  3485.957] (II) intel(0): Using EDID range info for vertical refresh
[  3485.957] (II) intel(0): Printing DDC gathered Modelines:
[  3485.957] (II) intel(0): Modeline "1360x768"x0.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz eP)
[  3485.957] (II) intel(0): Modeline "1280x768"x0.0   68.25  1280 1328 1360 1440  768 771 778 790 +hsync -vsync (47.4 kHz e)
[  3485.957] (II) intel(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[  3485.957] (II) intel(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[  3485.957] (II) intel(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[  3485.957] (II) intel(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  3485.957] (II) intel(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  3485.957] (II) intel(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  3485.957] (II) intel(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  3485.957] (II) intel(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[  3485.957] (II) intel(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[  3485.957] (II) intel(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[  3485.957] (II) intel(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[  3485.957] (II) intel(0): Modeline "1440x480i"x0.0   27.00  1440 1478 1602 1716  480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[  3485.957] (II) intel(0): Modeline "1440x240"x0.0   27.00  1440 1478 1602 1716  240 244 247 262 -hsync -vsync (15.7 kHz e)
[  3485.957] (II) intel(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[  3485.957] (II) intel(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[  3485.957] (II) intel(0): Modeline "1440x576i"x0.0   27.00  1440 1464 1590 1728  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[  3485.957] (II) intel(0): Modeline "1440x288"x0.0   27.00  1440 1464 1590 1728  288 290 293 312 -hsync -vsync (15.6 kHz e)
[  3485.957] (II) intel(0): Modeline "1920x1080"x0.0   74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
[  3485.957] (II) intel(0): Modeline "1920x1080"x0.0   74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)

xrandr produces:

Screen 0: minimum 8 x 8, current 1360 x 768, maximum 32767 x 32767
HDMI1 connected 1360x768+0+0 (normal left inverted right x axis y axis) 698mm x 392mm
   1360x768      60.02*+
   1920x1080     60.00    50.00    59.94    24.00    23.98 
   1920x1080i    60.00    50.00    59.94 
   1680x1050     59.88 
   1440x900      59.90 
   1280x768      59.99 
   1280x720      60.00    50.00    59.94 
   1024x768      60.00 
   800x600       60.32 
   720x576       50.00 
   720x576i      50.00 
   720x480       60.00    59.94 
   720x480i      60.00    59.94 
   640x480       60.00    59.94 
   720x400       70.08 
VGA1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)

--listproviders:

Providers: number : 2
Provider 0: id: 0x89 cap: 0xb, Source Output, Sink Output, Sink Offload crtcs: 4 outputs: 3 associated providers: 0 name:Intel
Provider 1: id: 0x5a cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 5 associated providers: 0 name:radeon

And glxinfo:

OpenGL renderer string: Mesa DRI Intel(R) Haswell Desktop

Offline

#6 2015-11-19 20:25:37

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,925

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

Thanks, those outputs are consistent with a Motherboard/chipset using hybrid graphics.

Your screens are connected like this :
intel card : HDMI1
radeon card : DVI-1-0

With this setup you got some options :

- Use "Reverse Prime" and have the intel card render both screens (no xorg.conf necessary,just xrandr commands)

- "Discrete Card as Primary GPU" and have the radeon card render both screens (requires custom xorg.conf )

- If you prefer the intel card to render 1 monitor and the radeon card to render the other one :
Connect both monitors to the intel card, and use "PRIME GPU offloading" to have the radeon card render 1 of them
(no xorg.conf necessary)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#7 2015-11-19 23:38:41

8BitAce
Member
Registered: 2015-09-04
Posts: 9

Re: [SOLVED] Choose OpenGL Renderer With 2 GPUs

Lone_Wolf wrote:

Thanks, those outputs are consistent with a Motherboard/chipset using hybrid graphics.

Your screens are connected like this :
intel card : HDMI1
radeon card : DVI-1-0

With this setup you got some options :

- Use "Reverse Prime" and have the intel card render both screens (no xorg.conf necessary,just xrandr commands)

- "Discrete Card as Primary GPU" and have the radeon card render both screens (requires custom xorg.conf )

- If you prefer the intel card to render 1 monitor and the radeon card to render the other one :
Connect both monitors to the intel card, and use "PRIME GPU offloading" to have the radeon card render 1 of them
(no xorg.conf necessary)

Ok, so as I said before reverse PRIME would not work with Intel as the primary GPU.

BUT I just tried the reverse (with AMD as primary) and finally success! I don't know why I didn't think of that earlier...

Thanks for your help. Marking this as [SOLVED].

Offline

Board footer

Powered by FluxBB