FreeBSD 13.0-STABLE / drm-kmod / dual radeon problems

From: John Kennedy <warlock_at_phouka.net>
Date: Fri, 20 Aug 2021 13:30:04 UTC
  To maybe go about this problem i a different way...

  Freebsd sees both cards.  X11 notices both cards, so FreeBSD is presumably
handing them off to X11.  Using a device section, I could exercise both cards
individually, so we'd seem to have some amount of functionality through the
entire stack.  Now xrandr seems to be the canary that highlights the problem...
X11 is acting like I only have one provider.  Doesn't this mean that this is
an issue at the X11 level?

  I haven't looked at the xrandr source code yet to see how it decides how
many providers it has available, but it wants a X server so I currently
presume that it is getting all it's information via X.

  Between no-.conf runs and .conf runs with drivers, we've basically tested a
couple of X11 drivers (although it may have been unloading the radeon drivers,
so that may not be totally true).

  So it seems logical to try and figure out why X11 might be making a decision
to ignore the 2nd card (and not add it to the list of providers), from which
all other problems would seem to descend from.


On Thu, Aug 19, 2021 at 11:51:36AM -0700, John Kennedy wrote:
> [resending to freebsd-x11@ vs x11@]
> 
>   I'm making my semi-annual attempt to convert a windows box to a FreeBSD box
> and having the same kind of issues.  It is a Dell Optiplex 9020 with dual
> radeon cards (and currently 3 monitors, 4 if I can get it to work).
> 
>   TL;DR:  I can get it to work with any one card, but not both cards.
> 
>   [uname -aUK]
> 	FreeBSD admin 13.0-STABLE FreeBSD 13.0-STABLE #4 stable/13-n246840-86a96281df03: Wed Aug 18 09:55:41 PDT 2021     warlock@admin:/usr/obj/usr/src/amd64.amd64/sys/GENERIC  amd64 1300514 1300514
> 
>   [pkg info | grep -E -e 'drm-.*kmod' -e 'xorg-([0-9]|server)' -e video-ati]
> 	drm-fbsd13-kmod-5.4.92.g20210720_1 DRM modules for the linuxkpi-based KMS components
> 	drm-kmod-g20190710_1           Metaport of DRM modules for the linuxkpi-based KMS components
> 	xf86-video-ati-19.1.0_4,1      X.Org ati display driver
> 	xorg-7.7_3                     X.Org complete distribution metaport
> 	xorg-server-1.20.11_3,1        X.Org X server and related programs
> 
>   Kernel drivers are loaded (although I don't think no-.conf setup tries to use the radeon bits):
> 
>     [kldstat | grep -e radeon -e ^Id -e drm]
> 	    Id Refs Address                Size Name
> 	     5    1 0xffffffff830f9000   150c80 radeonkms.ko
> 	     6    2 0xffffffff8324a000    7f548 drm.ko
> 	    10    1 0xffffffff832e9000     4358 radeon_oland_pfp_bin.ko
> 	    11    1 0xffffffff832ee000     4358 radeon_oland_me_bin.ko
> 	    12    1 0xffffffff832f3000     4358 radeon_oland_ce_bin.ko
> 	    13    1 0xffffffff832f8000     41d8 radeon_oland_rlc_bin.ko
> 	    14    1 0xffffffff832fd000     9dd8 radeon_oland_mc_bin.ko
> 	    15    1 0xffffffff83307000    11410 radeon_oland_smc_bin.ko
> 	    16    1 0xffffffff83319000    37af0 radeon_TAHITI_uvd_bin.ko
> 	    17    1 0xffffffff83351000     de00 radeon_TAHITI_vce_bin.ko
> 
>   X sees both cards:
> 
>     [grep -e 'More than one' -e 'PCI:' /var/log/Xorg.0.log -e WW]
> 	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
> 	[ 80926.514] (!!) More than one possible primary device found
> 	[ 80926.514] (--) PCI: (1@0:0:0) 1002:6611:1028:210b rev 0, Mem @ 0xe0000000/268435456, 0xf7e00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/65536
> 	[ 80926.514] (--) PCI: (5@0:0:0) 1002:6611:1028:210b rev 0, Mem @ 0xd0000000/268435456, 0xf7d00000/262144, I/O @ 0x0000d000/256, BIOS @ 0x????????/65536
> 	[ 80926.517] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
> 
>   I've seem people claim that VGA arbiter doesn't mean I can't use both cards
> at once the same time, but I'll call it out here.  OS obviously sees both cards
> and reports them like this:
> 
>   [pciconf -lv]
> 	vgapci0@pci0:1:0:0:     class=0x030000 rev=0x00 hdr=0x00 vendor=0x1002 device=0x6611 subvendor=0x1028 subdevice=0x210b
> 	     vendor     = 'Advanced Micro Devices, Inc. [AMD/ATI]'
> 	     device     = 'Oland [Radeon HD 8570 / R5 430 OEM / R7 240/340 / Radeon 520 OEM]'
> 	     class      = display
> 	     subclass   = VGA
> 	vgapci1@pci0:5:0:0:     class=0x030000 rev=0x00 hdr=0x00 vendor=0x1002 device=0x6611 subvendor=0x1028 subdevice=0x210b
> 	     vendor     = 'Advanced Micro Devices, Inc. [AMD/ATI]'
> 	     device     = 'Oland [Radeon HD 8570 / R5 430 OEM / R7 240/340 / Radeon 520 OEM]'
> 	     class      = display
> 	     subclass   = VGA
> 
>   X with no .conf only uses one monitor (or, more correctly, just the monitors
> that are associated with the card it defaulted to).  I can play games with a
> .conf using the device section and BusIDs to get it to use the two monitors on
> the 2nd card, but then the first gets ignored.  I've experimented with
> AutoAddGPU (true), and GPUDevice (2nd card) with no love.
> 
>   It seems like X doesn't want to recognize both cards (I think this is the one with radeon driver):
> 
>     [xrandr --listproviders)]
> 	Providers: number : 1
> 	Provider 0: id: 0x53 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 2 outputs: 2 associated providers: 0 name:OLAND @ pci:0000:05:00.0
> 
>   With no .conf, it just shows this:
> 
>     [xrandr --listproviders]
> 	Providers: number : 1
> 	Provider 0: id: 0x43 cap: 0xa, Sink Output, Sink Offload crtcs: 2 outputs: 2 associated providers: 0 name:modesetting
> 
>   Depending on which card I've picked with the .conf, it'll show that.
> It seems like my first hurdle is to get X running on all cards at the
> same time, then dig into Xinerama and monitor layouts so things show
> up where they're supposed to.
> 
>   Any suggestions?  There has been a LOT of water under the bridge for the
> DRM drivers and X11 from the web hits I'm finding.  I've attached the
> Xorg.0.log when I don't have a custom configuration, but I assume it's
> pretty useless since it says "Not automatically adding GPU devices",
> which would seem to preclude my 2nd card.
> 

> [ 83579.124] 
> X.Org X Server 1.20.11
> X Protocol Version 11, Revision 0
> [ 83579.124] Build Operating System: FreeBSD 13.0-STABLE amd64 
> [ 83579.124] Current Operating System: FreeBSD admin 13.0-STABLE FreeBSD 13.0-STABLE #4 stable/13-n246840-86a96281df03: Wed Aug 18 09:55:41 PDT 2021     warlock@admin:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
> [ 83579.124] Build Date: 17 August 2021  02:53:23PM
> [ 83579.124]  
> [ 83579.124] Current version of pixman: 0.40.0
> [ 83579.124] 	Before reporting problems, check http://wiki.x.org
> 	to make sure that you have the latest version.
> [ 83579.124] Markers: (--) probed, (**) from config file, (==) default setting,
> 	(++) from command line, (!!) notice, (II) informational,
> 	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
> [ 83579.124] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug 19 10:01:39 2021
> [ 83579.124] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
> [ 83579.124] (==) No Layout section.  Using the first Screen section.
> [ 83579.124] (==) No screen section available. Using defaults.
> [ 83579.124] (**) |-->Screen "Default Screen Section" (0)
> [ 83579.124] (**) |   |-->Monitor "<default monitor>"
> [ 83579.124] (==) No monitor specified for screen "Default Screen Section".
> 	Using a default monitor configuration.
> [ 83579.124] (==) Automatically adding devices
> [ 83579.124] (==) Automatically enabling devices
> [ 83579.124] (==) Not automatically adding GPU devices
> [ 83579.124] (==) Max clients allowed: 256, resource mask: 0x1fffff
> [ 83579.124] (==) FontPath set to:
> 	/usr/local/share/fonts/misc/,
> 	/usr/local/share/fonts/TTF/,
> 	/usr/local/share/fonts/OTF/,
> 	/usr/local/share/fonts/Type1/,
> 	/usr/local/share/fonts/100dpi/,
> 	/usr/local/share/fonts/75dpi/,
> 	catalogue:/usr/local/etc/X11/fontpath.d
> [ 83579.124] (==) ModulePath set to "/usr/local/lib/xorg/modules"
> [ 83579.124] (II) The server relies on udev to provide the list of input devices.
> 	If no devices become available, reconfigure udev or disable AutoAddDevices.
> [ 83579.124] (II) Loader magic: 0x434260
> [ 83579.125] (II) Module ABI versions:
> [ 83579.125] 	X.Org ANSI C Emulation: 0.4
> [ 83579.125] 	X.Org Video Driver: 24.1
> [ 83579.125] 	X.Org XInput driver : 24.1
> [ 83579.125] 	X.Org Server Extension : 10.0
> [ 83579.125] (!!) More than one possible primary device found
> [ 83579.125] (--) PCI: (1@0:0:0) 1002:6611:1028:210b rev 0, Mem @ 0xe0000000/268435456, 0xf7e00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/65536
> [ 83579.125] (--) PCI: (5@0:0:0) 1002:6611:1028:210b rev 0, Mem @ 0xd0000000/268435456, 0xf7d00000/262144, I/O @ 0x0000d000/256, BIOS @ 0x????????/65536
> [ 83579.125] (II) LoadModule: "glx"
> [ 83579.125] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
> [ 83579.125] (II) Module glx: vendor="X.Org Foundation"
> [ 83579.125] 	compiled for 1.20.11, module version = 1.0.0
> [ 83579.125] 	ABI class: X.Org Server Extension, version 10.0
> [ 83579.125] (==) Matched modesetting as autoconfigured driver 0
> [ 83579.125] (==) Matched scfb as autoconfigured driver 1
> [ 83579.125] (==) Matched vesa as autoconfigured driver 2
> [ 83579.125] (==) Assigned the driver to the xf86ConfigLayout
> [ 83579.125] (II) LoadModule: "modesetting"
> [ 83579.126] (II) Loading /usr/local/lib/xorg/modules/drivers/modesetting_drv.so
> [ 83579.126] (II) Module modesetting: vendor="X.Org Foundation"
> [ 83579.126] 	compiled for 1.20.11, module version = 1.20.11
> [ 83579.126] 	Module class: X.Org Video Driver
> [ 83579.126] 	ABI class: X.Org Video Driver, version 24.1
> [ 83579.126] (II) LoadModule: "scfb"
> [ 83579.126] (II) Loading /usr/local/lib/xorg/modules/drivers/scfb_drv.so
> [ 83579.126] (II) Module scfb: vendor="X.Org Foundation"
> [ 83579.126] 	compiled for 1.20.11, module version = 0.0.5
> [ 83579.126] 	ABI class: X.Org Video Driver, version 24.1
> [ 83579.126] (II) LoadModule: "vesa"
> [ 83579.126] (II) Loading /usr/local/lib/xorg/modules/drivers/vesa_drv.so
> [ 83579.126] (II) Module vesa: vendor="X.Org Foundation"
> [ 83579.126] 	compiled for 1.20.11, module version = 2.5.0
> [ 83579.126] 	Module class: X.Org Video Driver
> [ 83579.126] 	ABI class: X.Org Video Driver, version 24.1
> [ 83579.126] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
> [ 83579.126] (II) scfb: driver for wsdisplay framebuffer: scfb
> [ 83579.126] (II) VESA: driver for VESA chipsets: vesa
> [ 83579.126] (--) Using syscons driver with X support (version 2.0)
> [ 83579.126] (--) using VT number 9
> 
> [ 83579.126] (WW) Falling back to old probe method for modesetting
> [ 83579.126] (II) modeset(0): using default device
> [ 83579.126] (WW) Falling back to old probe method for scfb
> [ 83579.126] scfb trace: probe start
> [ 83579.126] (II) scfb(1): using default device
> [ 83579.126] scfb trace: probe done
> [ 83579.126] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
> [ 83579.126] (II) modeset(0): Creating default Display subsection in Screen section
> 	"Default Screen Section" for depth/fbbpp 24/32
> [ 83579.126] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
> [ 83579.126] (==) modeset(0): RGB weight 888
> [ 83579.126] (==) modeset(0): Default visual is TrueColor
> [ 83579.126] (II) Loading sub module "glamoregl"
> [ 83579.126] (II) LoadModule: "glamoregl"
> [ 83579.126] (II) Loading /usr/local/lib/xorg/modules/libglamoregl.so
> [ 83579.130] (II) Module glamoregl: vendor="X.Org Foundation"
> [ 83579.130] 	compiled for 1.20.11, module version = 1.0.1
> [ 83579.130] 	ABI class: X.Org ANSI C Emulation, version 0.4
> [ 83579.196] (II) modeset(0): glamor X acceleration enabled on AMD OLAND (DRM 2.50.0, 13.0-STABLE, LLVM 12.0.1)
> [ 83579.196] (II) modeset(0): glamor initialized
> [ 83579.206] (II) modeset(0): Output DP-1 has no monitor section
> [ 83579.211] (II) modeset(0): Output DVI-I-1 has no monitor section
> [ 83579.220] (II) modeset(0): EDID for output DP-1
> [ 83579.220] (II) modeset(0): Manufacturer: DEL  Model: a0ca  Serial#: 859261013
> [ 83579.220] (II) modeset(0): Year: 2015  Week: 48
> [ 83579.220] (II) modeset(0): EDID Version: 1.4
> [ 83579.220] (II) modeset(0): Digital Display Input
> [ 83579.220] (II) modeset(0): 8 bits per channel
> [ 83579.220] (II) modeset(0): Digital interface is DisplayPort
> [ 83579.220] (II) modeset(0): Max Image Size [cm]: horiz.: 53  vert.: 30
> [ 83579.220] (II) modeset(0): Gamma: 2.20
> [ 83579.220] (II) modeset(0): DPMS capabilities: Off
> [ 83579.220] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 YCrCb 4:2:2
> [ 83579.220] (II) modeset(0): First detailed timing is preferred mode
> [ 83579.220] (II) modeset(0): Preferred mode is native pixel format and refresh rate
> [ 83579.220] (II) modeset(0): redX: 0.645 redY: 0.332   greenX: 0.315 greenY: 0.619
> [ 83579.220] (II) modeset(0): blueX: 0.151 blueY: 0.065   whiteX: 0.313 whiteY: 0.329
> [ 83579.220] (II) modeset(0): Supported established timings:
> [ 83579.220] (II) modeset(0): 720x400@70Hz
> [ 83579.220] (II) modeset(0): 640x480@60Hz
> [ 83579.220] (II) modeset(0): 640x480@75Hz
> [ 83579.220] (II) modeset(0): 800x600@60Hz
> [ 83579.220] (II) modeset(0): 800x600@75Hz
> [ 83579.220] (II) modeset(0): 1024x768@60Hz
> [ 83579.220] (II) modeset(0): 1024x768@75Hz
> [ 83579.220] (II) modeset(0): 1280x1024@75Hz
> [ 83579.220] (II) modeset(0): Manufacturer's mask: 0
> [ 83579.220] (II) modeset(0): Supported standard timings:
> [ 83579.220] (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
> [ 83579.220] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
> [ 83579.220] (II) modeset(0): #2: hsize: 1600  vsize 900  refresh: 60  vid: 49321
> [ 83579.220] (II) modeset(0): #3: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
> [ 83579.220] (II) modeset(0): Supported detailed timing:
> [ 83579.220] (II) modeset(0): clock: 148.5 MHz   Image Size:  531 x 299 mm
> [ 83579.220] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
> [ 83579.220] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
> [ 83579.220] (II) modeset(0): Serial No: 9DKC35BQ37HU
> [ 83579.220] (II) modeset(0): Monitor name: DELL E2416H
> [ 83579.220] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
> [ 83579.220] (II) modeset(0): EDID (in hex):
> [ 83579.220] (II) modeset(0): 	00ffffffffffff0010accaa055483733
> [ 83579.220] (II) modeset(0): 	30190104a5351e783a0ef5a555509e26
> [ 83579.220] (II) modeset(0): 	105054a54b00714f8180a9c0d1c00101
> [ 83579.220] (II) modeset(0): 	010101010101023a801871382d40582c
> [ 83579.220] (II) modeset(0): 	4500132b2100001e000000ff0039444b
> [ 83579.220] (II) modeset(0): 	4333354251333748550a000000fc0044
> [ 83579.220] (II) modeset(0): 	454c4c204532343136480a20000000fd
> [ 83579.220] (II) modeset(0): 	00324c1e5311000a202020202020009b
> [ 83579.220] (II) modeset(0): Printing probed modes for output DP-1
> [ 83579.220] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
> [ 83579.220] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 83579.220] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
> [ 83579.226] (II) modeset(0): EDID for output DVI-I-1
> [ 83579.226] (II) modeset(0): Output DP-1 connected
> [ 83579.226] (II) modeset(0): Output DVI-I-1 disconnected
> [ 83579.226] (II) modeset(0): Using exact sizes for initial modes
> [ 83579.226] (II) modeset(0): Output DP-1 using initial mode 1920x1080 +0+0
> [ 83579.226] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
> [ 83579.226] (==) modeset(0): DPI set to (96, 96)
> [ 83579.226] (II) Loading sub module "fb"
> [ 83579.226] (II) LoadModule: "fb"
> [ 83579.226] (II) Loading /usr/local/lib/xorg/modules/libfb.so
> [ 83579.227] (II) Module fb: vendor="X.Org Foundation"
> [ 83579.227] 	compiled for 1.20.11, module version = 1.0.0
> [ 83579.227] 	ABI class: X.Org ANSI C Emulation, version 0.4
> [ 83579.227] scfb: PreInit 1
> [ 83579.227] (II) scfb(1): Using: depth (32),	width (1920),	 height (1080)
> [ 83579.227] (II) scfb(1): Creating default Display subsection in Screen section
> 	"Default Screen Section" for depth/fbbpp 24/32
> [ 83579.227] (==) scfb(1): Depth 24, (==) framebuffer bpp 32
> [ 83579.227] (==) scfb(1): RGB weight 888
> [ 83579.227] (==) scfb(1): Default visual is TrueColor
> [ 83579.227] (==) scfb(1): Using gamma correction (1.0, 1.0, 1.0)
> [ 83579.227] (II) scfb(1): Vidmem: 8100k
> [ 83579.227] (==) scfb(1): DPI set to (96, 96)
> [ 83579.227] (**) scfb(1): Using "Shadow Framebuffer"
> [ 83579.227] (II) Loading sub module "shadow"
> [ 83579.227] (II) LoadModule: "shadow"
> [ 83579.227] (II) Loading /usr/local/lib/xorg/modules/libshadow.so
> [ 83579.227] (II) Module shadow: vendor="X.Org Foundation"
> [ 83579.227] 	compiled for 1.20.11, module version = 1.1.0
> [ 83579.227] 	ABI class: X.Org ANSI C Emulation, version 0.4
> [ 83579.227] (II) Loading sub module "fb"
> [ 83579.227] (II) LoadModule: "fb"
> [ 83579.227] (II) Loading /usr/local/lib/xorg/modules/libfb.so
> [ 83579.227] (II) Module fb: vendor="X.Org Foundation"
> [ 83579.227] 	compiled for 1.20.11, module version = 1.0.0
> [ 83579.227] 	ABI class: X.Org ANSI C Emulation, version 0.4
> [ 83579.227] scfb: PreInit done
> [ 83579.227] (II) UnloadModule: "vesa"
> [ 83579.227] (II) Unloading vesa
> [ 83579.245] (==) modeset(0): Backing store enabled
> [ 83579.245] (==) modeset(0): Silken mouse enabled
> [ 83579.245] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
> [ 83579.245] (==) modeset(0): DPMS enabled
> [ 83579.245] (II) modeset(0): [DRI2] Setup complete
> [ 83579.245] (II) modeset(0): [DRI2]   DRI driver: radeonsi
> [ 83579.245] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
> [ 83579.245] scfb: ScfbScreenInit 1
> [ 83579.245] 	bitsPerPixel=32, depth=24, defaultVisual=TrueColor
> 	mask: ff0000,ff00,ff, offset: 16,8,0
> [ 83579.245] mmap returns: addr 0x80d9e1000 len 0x7e9000, fd 12, off 0
> [ 83579.245] scfb: ScfbSave 1
> [ 83579.245] scfb: ScfbSave done
> [ 83579.245] (==) scfb(1): Backing store enabled
> [ 83579.246] scfb: ScfbScreenInit done
> [ 83579.246] (II) Initializing extension Generic Event Extension
> [ 83579.246] (II) Initializing extension SHAPE
> [ 83579.246] (II) Initializing extension MIT-SHM
> [ 83579.246] (II) Initializing extension XInputExtension
> [ 83579.247] (II) Initializing extension XTEST
> [ 83579.247] (II) Initializing extension BIG-REQUESTS
> [ 83579.247] (II) Initializing extension SYNC
> [ 83579.247] (II) Initializing extension XKEYBOARD
> [ 83579.248] (II) Initializing extension XC-MISC
> [ 83579.248] (II) Initializing extension SECURITY
> [ 83579.248] (II) Initializing extension XFIXES
> [ 83579.248] (II) Initializing extension RENDER
> [ 83579.249] (II) Initializing extension RANDR
> [ 83579.249] (II) Initializing extension COMPOSITE
> [ 83579.249] (II) Initializing extension DAMAGE
> [ 83579.249] (II) Initializing extension MIT-SCREEN-SAVER
> [ 83579.250] (II) Initializing extension DOUBLE-BUFFER
> [ 83579.250] (II) Initializing extension RECORD
> [ 83579.250] (II) Initializing extension DPMS
> [ 83579.250] (II) Initializing extension Present
> [ 83579.251] (II) Initializing extension DRI3
> [ 83579.251] (II) Initializing extension X-Resource
> [ 83579.251] (II) Initializing extension XVideo
> [ 83579.252] (II) Initializing extension XVideo-MotionCompensation
> [ 83579.252] (II) Initializing extension GLX
> [ 83579.257] (II) AIGLX: Loaded and initialized radeonsi
> [ 83579.257] (II) GLX: Initialized DRI2 GL provider for screen 0
> [ 83579.257] (II) AIGLX: Screen 1 is not DRI2 capable
> [ 83579.261] (II) IGLX: Loaded and initialized swrast
> [ 83579.261] (II) GLX: Initialized DRISWRAST GL provider for screen 1
> [ 83579.261] (II) Initializing extension XFree86-VidModeExtension
> [ 83579.261] (II) Initializing extension XFree86-DGA
> [ 83579.262] (II) Initializing extension XFree86-DRI
> [ 83579.262] (II) Initializing extension DRI2
> [ 83579.262] (II) modeset(0): Damage tracking initialized
> [ 83579.262] (II) modeset(0): Setting screen physical size to 508 x 285
> [ 83579.318] (II) config/udev: Adding input device System mouse (/dev/input/event0)
> [ 83579.318] (**) System mouse: Applying InputClass "libinput pointer catchall"
> [ 83579.318] (II) LoadModule: "libinput"
> [ 83579.318] (II) Loading /usr/local/lib/xorg/modules/input/libinput_drv.so
> [ 83579.320] (II) Module libinput: vendor="X.Org Foundation"
> [ 83579.320] 	compiled for 1.20.11, module version = 0.30.0
> [ 83579.320] 	Module class: X.Org XInput Driver
> [ 83579.320] 	ABI class: X.Org XInput driver, version 24.1
> [ 83579.320] (II) Using input driver 'libinput' for 'System mouse'
> [ 83579.320] (**) System mouse: always reports core events
> [ 83579.320] (**) Option "Device" "/dev/input/event0"
> [ 83579.320] (**) Option "_source" "server/udev"
> [ 83579.321] (II) event0  - System mouse: is tagged by udev as: Mouse
> [ 83579.321] (II) event0  - System mouse: device is a pointer
> [ 83579.321] (II) event0  - System mouse: device removed
> [ 83579.321] (**) Option "config_info" "udev:/dev/input/event0"
> [ 83579.321] (II) XINPUT: Adding extended input device "System mouse" (type: MOUSE, id 6)
> [ 83579.321] (**) Option "AccelerationScheme" "none"
> [ 83579.322] (**) System mouse: (accel) selected scheme none/0
> [ 83579.322] (**) System mouse: (accel) acceleration factor: 2.000
> [ 83579.322] (**) System mouse: (accel) acceleration threshold: 4
> [ 83579.322] (II) event0  - System mouse: is tagged by udev as: Mouse
> [ 83579.322] (II) event0  - System mouse: device is a pointer
> [ 83579.322] (II) config/udev: Adding input device System keyboard multiplexer (/dev/input/event1)
> [ 83579.322] (**) System keyboard multiplexer: Applying InputClass "Evdev keyboard"
> [ 83579.322] (**) System keyboard multiplexer: Applying InputClass "libinput keyboard catchall"
> [ 83579.322] (II) Using input driver 'libinput' for 'System keyboard multiplexer'
> [ 83579.322] (**) System keyboard multiplexer: always reports core events
> [ 83579.322] (**) Option "Device" "/dev/input/event1"
> [ 83579.322] (**) Option "_source" "server/udev"
> [ 83579.323] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
> [ 83579.323] (II) event1  - System keyboard multiplexer: device is a keyboard
> [ 83579.323] (II) event1  - System keyboard multiplexer: device removed
> [ 83579.323] (**) Option "config_info" "udev:/dev/input/event1"
> [ 83579.323] (II) XINPUT: Adding extended input device "System keyboard multiplexer" (type: KEYBOARD, id 7)
> [ 83579.323] (**) Option "xkb_rules" "evdev"
> [ 83579.346] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
> [ 83579.346] (II) event1  - System keyboard multiplexer: device is a keyboard
> [ 83579.346] (II) config/udev: Adding input device Power Button (/dev/input/event2)
> [ 83579.346] (**) Power Button: Applying InputClass "Evdev keyboard"
> [ 83579.346] (**) Power Button: Applying InputClass "libinput keyboard catchall"
> [ 83579.346] (II) Using input driver 'libinput' for 'Power Button'
> [ 83579.346] (**) Power Button: always reports core events
> [ 83579.346] (**) Option "Device" "/dev/input/event2"
> [ 83579.346] (**) Option "_source" "server/udev"
> [ 83579.347] (II) event2  - Power Button: is tagged by udev as: Keyboard
> [ 83579.347] (II) event2  - Power Button: device is a keyboard
> [ 83579.347] (II) event2  - Power Button: device removed
> [ 83579.347] (**) Option "config_info" "udev:/dev/input/event2"
> [ 83579.347] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
> [ 83579.347] (**) Option "xkb_rules" "evdev"
> [ 83579.348] (II) event2  - Power Button: is tagged by udev as: Keyboard
> [ 83579.348] (II) event2  - Power Button: device is a keyboard
> [ 83579.348] (II) config/udev: Adding input device AT keyboard (/dev/input/event3)
> [ 83579.348] (**) AT keyboard: Applying InputClass "Evdev keyboard"
> [ 83579.348] (**) AT keyboard: Applying InputClass "libinput keyboard catchall"
> [ 83579.348] (II) Using input driver 'libinput' for 'AT keyboard'
> [ 83579.348] (**) AT keyboard: always reports core events
> [ 83579.348] (**) Option "Device" "/dev/input/event3"
> [ 83579.348] (**) Option "_source" "server/udev"
> [ 83579.348] (II) event3  - AT keyboard: is tagged by udev as: Keyboard
> [ 83579.348] (II) event3  - AT keyboard: device is a keyboard
> [ 83579.348] (II) event3  - AT keyboard: device removed
> [ 83579.348] (**) Option "config_info" "udev:/dev/input/event3"
> [ 83579.348] (II) XINPUT: Adding extended input device "AT keyboard" (type: KEYBOARD, id 9)
> [ 83579.348] (**) Option "xkb_rules" "evdev"
> [ 83579.349] (II) event3  - AT keyboard: is tagged by udev as: Keyboard
> [ 83579.349] (II) event3  - AT keyboard: device is a keyboard
> [ 83579.349] (II) config/udev: Adding input device Dell Dell QuietKey Keyboard (/dev/input/event4)
> [ 83579.349] (**) Dell Dell QuietKey Keyboard: Applying InputClass "Evdev keyboard"
> [ 83579.349] (**) Dell Dell QuietKey Keyboard: Applying InputClass "libinput keyboard catchall"
> [ 83579.349] (II) Using input driver 'libinput' for 'Dell Dell QuietKey Keyboard'
> [ 83579.349] (**) Dell Dell QuietKey Keyboard: always reports core events
> [ 83579.349] (**) Option "Device" "/dev/input/event4"
> [ 83579.349] (**) Option "_source" "server/udev"
> [ 83579.350] (II) event4  - Dell Dell QuietKey Keyboard, class 0/0, rev 1.10/1.50, addr 3: is tagged by udev as: Keyboard
> [ 83579.350] (II) event4  - Dell Dell QuietKey Keyboard, class 0/0, rev 1.10/1.50, addr 3: device is a keyboard
> [ 83579.350] (II) event4  - Dell Dell QuietKey Keyboard, class 0/0, rev 1.10/1.50, addr 3: device removed
> [ 83579.350] (**) Option "config_info" "udev:/dev/input/event4"
> [ 83579.350] (II) XINPUT: Adding extended input device "Dell Dell QuietKey Keyboard" (type: KEYBOARD, id 10)
> [ 83579.350] (**) Option "xkb_rules" "evdev"
> [ 83579.351] (II) event4  - Dell Dell QuietKey Keyboard, class 0/0, rev 1.10/1.50, addr 3: is tagged by udev as: Keyboard
> [ 83579.351] (II) event4  - Dell Dell QuietKey Keyboard, class 0/0, rev 1.10/1.50, addr 3: device is a keyboard
> [ 83579.351] (II) config/udev: Adding input device vendor 0x046d product 0xc016 (/dev/input/event5)
> [ 83579.351] (**) vendor 0x046d product 0xc016: Applying InputClass "libinput pointer catchall"
> [ 83579.351] (II) Using input driver 'libinput' for 'vendor 0x046d product 0xc016'
> [ 83579.351] (**) vendor 0x046d product 0xc016: always reports core events
> [ 83579.351] (**) Option "Device" "/dev/input/event5"
> [ 83579.351] (**) Option "_source" "server/udev"
> [ 83579.352] (II) event5  - vendor 0x046d product 0xc016, class 0/0, rev 2.00/3.40, addr 4: is tagged by udev as: Mouse
> [ 83579.352] (II) event5  - vendor 0x046d product 0xc016, class 0/0, rev 2.00/3.40, addr 4: device is a pointer
> [ 83579.352] (II) event5  - vendor 0x046d product 0xc016, class 0/0, rev 2.00/3.40, addr 4: device removed
> [ 83579.352] (**) Option "config_info" "udev:/dev/input/event5"
> [ 83579.352] (II) XINPUT: Adding extended input device "vendor 0x046d product 0xc016" (type: MOUSE, id 11)
> [ 83579.352] (**) Option "AccelerationScheme" "none"
> [ 83579.352] (**) vendor 0x046d product 0xc016: (accel) selected scheme none/0
> [ 83579.352] (**) vendor 0x046d product 0xc016: (accel) acceleration factor: 2.000
> [ 83579.352] (**) vendor 0x046d product 0xc016: (accel) acceleration threshold: 4
> [ 83579.353] (II) event5  - vendor 0x046d product 0xc016, class 0/0, rev 2.00/3.40, addr 4: is tagged by udev as: Mouse
> [ 83579.353] (II) event5  - vendor 0x046d product 0xc016, class 0/0, rev 2.00/3.40, addr 4: device is a pointer
> [ 83579.353] scfb: SaveScreen 1
> [ 83579.353] scfb: SaveScreen done
> [ 83579.410] (II) modeset(0): Disabling kernel dirty updates, not required.
> [ 83579.505] (II) modeset(0): EDID vendor "DEL", prod id 41162
> [ 83579.505] (II) modeset(0): Using EDID range info for horizontal sync
> [ 83579.505] (II) modeset(0): Using EDID range info for vertical refresh
> [ 83579.505] (II) modeset(0): Printing DDC gathered Modelines:
> [ 83579.505] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
> [ 83579.505] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 83579.505] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
> [ 83579.521] (II) modeset(0): EDID vendor "DEL", prod id 41162
> [ 83579.521] (II) modeset(0): Using hsync ranges from config file
> [ 83579.521] (II) modeset(0): Using vrefresh ranges from config file
> [ 83579.521] (II) modeset(0): Printing DDC gathered Modelines:
> [ 83579.521] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
> [ 83579.521] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 83579.521] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
> [ 83579.547] scfb: SaveScreen 1
> [ 83579.547] scfb: SaveScreen done
> [ 83579.556] (II) modeset(0): EDID vendor "DEL", prod id 41162
> [ 83579.556] (II) modeset(0): Using hsync ranges from config file
> [ 83579.556] (II) modeset(0): Using vrefresh ranges from config file
> [ 83579.556] (II) modeset(0): Printing DDC gathered Modelines:
> [ 83579.556] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
> [ 83579.556] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 83579.556] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
> [ 83579.570] (II) modeset(0): EDID vendor "DEL", prod id 41162
> [ 83579.570] (II) modeset(0): Using hsync ranges from config file
> [ 83579.570] (II) modeset(0): Using vrefresh ranges from config file
> [ 83579.570] (II) modeset(0): Printing DDC gathered Modelines:
> [ 83579.570] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
> [ 83579.570] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
> [ 83579.570] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)