You are not logged in.

#1 2020-05-02 03:45:12

jazznuts
Member
Registered: 2020-03-24
Posts: 20

XrandR doesn't detect second output provider

Hi all,

I've been using the AMDGPU and nouveau drivers no problem on my machine, but I needed to install the nvidia proprietary drivers to use CUDA. I got the nvidia proprietary driver and removed nouveau, but now I can't get XrandR to detect both providers. Depending on how I set up my xorg.conf, I can get either to appear, but never both at the same time.

Here is my GPU info:

05:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK104 [GeForce GTX 760] [10de:1187] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: ASUSTeK Computer Inc. GK104 [GeForce GTX 760] [1043:847a]
	Flags: bus master, fast devsel, latency 0, IRQ 33
	Memory at f6000000 (32-bit, non-prefetchable) [size=16M]
	Memory at e8000000 (64-bit, prefetchable) [size=128M]
	Memory at f0000000 (64-bit, prefetchable) [size=32M]
	I/O ports at d000 [size=128]
	Expansion ROM at f7000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nvidia
	Kernel modules: nouveau, nvidia_drm, nvidia

06:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Ellesmere [Radeon RX 470/480/570/570X/580/580X/590] [1002:67df] (rev ef) (prog-if 00 [VGA controller])
	Subsystem: XFX Pine Group Inc. Radeon RX 570 [1682:c570]
	Flags: bus master, fast devsel, latency 0, IRQ 62
	Memory at d0000000 (64-bit, prefetchable) [size=256M]
	Memory at e0000000 (64-bit, prefetchable) [size=2M]
	I/O ports at f000 [size=256]
	Memory at f7a00000 (32-bit, non-prefetchable) [size=256K]
	Expansion ROM at 000c0000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: amdgpu
	Kernel modules: amdgpu

Here is the output for xrandr --listproviders:

Providers: number : 1
Provider 0: id: 0x5a cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 5 associated providers: 0 name:Radeon RX 570 Series @ pci:0000:06:00.0

And here is my xorg.conf:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Asus"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor2"
    VendorName     "Acer"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "AMD"
    Driver         "amdgpu"
    VendorName     "AMD"
    Option         "UseEDIDFreqs" "false"
    Option         "ConnectedMonitor" "CRT,CRT"
    BusID          "PCI:6:0:0"
    Screen          0
EndSection

Section "Device"
    Identifier     "Nvidia"
    Driver         "nvidia"
    Option         "NoLogo"
    Option         "UseEDIDFreqs" "false"
    Option         "ConnectedMonitor" "CRT,CRT"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 780 GTX"
    BusID          "PCI:5:0:0"
    Screen          1
EndSection


Section "Screen"
    Identifier     "Screen0"
    Device         "AMD"
    Monitor        "Monitor1"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Nvidia"
    Monitor        "Monitor2"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

I have already followed https://wiki.archlinux.org/index.php/PR … t_provider, but it doesn't seem to help.

Thank you in advance.

Last edited by jazznuts (2020-05-02 15:31:12)

Offline

#2 2020-05-02 06:40:11

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

You defined two screens, one being :0.0 and one :0.1
Your server layout only includes :0.0 (the amd one) and in any event, xrandr will not cross screens ("DISPLAY=:0.0 xrandr" would control the AMD and "DISPLAY=:0.1 xrandr" the nvidia one)
This is not a PRIME/Optimus setup and I doubt that you'll be able to combine the GPUs in one X11 screen, but if you only want to use the nvidia one for calculations, that's not required anyway.
=> What's the ultimate goal here?

On a technical matter, please edit your post and wrap all shell I/O and file contents in "code" tags, not "quote" tags. Thanks.

Offline

#3 2020-05-02 15:02:55

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

I am trying to set up PRIME, but to do so I need xrandr to detect both providers. My assumption was that this had something to do with xorg.conf because I could change the provider xrandr detects by modifying it, but I can't figure out what exactly I need to do.

I was able to get this to work with the nouveau and AMDGPU drivers, but the nvidia proprietary driver has been giving me trouble.

EDIT: Maybe I should add, each graphics card is connected to a separate monitor.

Last edited by jazznuts (2020-05-02 15:19:49)

Offline

#4 2020-05-02 15:46:20

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

For a prime setup, you need both in the same screen.
Remove the config file (it cannot work this way), start X11, and post the resulting log.

Offline

#5 2020-05-02 16:10:29

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

How do I start X11? I removed the file and rebooted but there is no new file and yet I still have windows and everything. xinit fails because there is already an xserver running.

Also, before your reply I installed the nvidia-prime package and was able to find both providers, but the way nvidia-prime works assumes that only the primary card is connected to a monitor and therefore does not have any outputs of its own.

Offline

#6 2020-05-02 19:06:09

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

I just realized that I could keep nouveau as the driver and only use the nvidia driver when I want to do calculations, but now xrandr does not detect my nouveau driver either. Anybody have an idea why?

Offline

#7 2020-05-02 19:40:40

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

How do I start X11? I removed the file and rebooted but there is no new file and yet I still have windows and everything.

startx or some DM (GDM, SDDM, LightDM,…) - how did you install archlinux?
You're not supposed to get a new file, you xorg log position depends on how you actually start the X11 server, https://wiki.archlinux.org/index.php/Xorg#General

Offline

#8 2020-05-02 19:46:17

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

Ok, ive restarted it.

Here is the xorg log file:

[     4.560] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[     4.560] Build Operating System: Linux Arch Linux
[     4.560] Current Operating System: Linux archlinux 5.6.8-arch1-1 #1 SMP PREEMPT Wed, 29 Apr 2020 16:22:56 +0000 x86_64
[     4.560] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f539597e-7ac0-4886-bc90-3681983d3286 rw loglevel=3 quiet
[     4.560] Build Date: 30 March 2020  05:05:45AM
[     4.560]  
[     4.560] Current version of pixman: 0.40.0
[     4.560] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.560] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.560] (==) Log file: "/var/log/Xorg.0.log", Time: Sat May  2 15:43:14 2020
[     4.564] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.565] (==) No Layout section.  Using the first Screen section.
[     4.565] (==) No screen section available. Using defaults.
[     4.565] (**) |-->Screen "Default Screen Section" (0)
[     4.565] (**) |   |-->Monitor "<default monitor>"
[     4.565] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     4.565] (==) Automatically adding devices
[     4.565] (==) Automatically enabling devices
[     4.565] (==) Automatically adding GPU devices
[     4.565] (==) Automatically binding GPU devices
[     4.565] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.566] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.566] 	Entry deleted from font path.
[     4.566] (==) FontPath set to:
	
[     4.566] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.566] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.566] (II) Module ABI versions:
[     4.566] 	X.Org ANSI C Emulation: 0.4
[     4.566] 	X.Org Video Driver: 24.1
[     4.566] 	X.Org XInput driver : 24.1
[     4.566] 	X.Org Server Extension : 10.0
[     4.567] (++) using VT number 7

[     4.567] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.567] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.585] (--) PCI: (5@0:0:0) 10de:1187:1043:847a rev 161, Mem @ 0xf6000000/16777216, 0xe8000000/134217728, 0xf0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[     4.585] (--) PCI:*(6@0:0:0) 1002:67df:1682:c570 rev 239, Mem @ 0xd0000000/268435456, 0xe0000000/2097152, 0xf7a00000/262144, I/O @ 0x0000f000/256, BIOS @ 0x????????/131072
[     4.585] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.585] (II) LoadModule: "glx"
[     4.587] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.598] (II) Module glx: vendor="X.Org Foundation"
[     4.598] 	compiled for 1.20.8, module version = 1.0.0
[     4.598] 	ABI class: X.Org Server Extension, version 10.0
[     4.598] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0
[     4.598] 	loading driver: amdgpu
[     4.598] (==) Matched amdgpu as autoconfigured driver 0
[     4.598] (==) Matched ati as autoconfigured driver 1
[     4.598] (==) Matched modesetting as autoconfigured driver 2
[     4.598] (==) Matched fbdev as autoconfigured driver 3
[     4.598] (==) Matched vesa as autoconfigured driver 4
[     4.598] (==) Assigned the driver to the xf86ConfigLayout
[     4.598] (II) LoadModule: "amdgpu"
[     4.599] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[     4.602] (II) Module amdgpu: vendor="X.Org Foundation"
[     4.602] 	compiled for 1.20.5, module version = 19.1.0
[     4.602] 	Module class: X.Org Video Driver
[     4.602] 	ABI class: X.Org Video Driver, version 24.0
[     4.602] (II) LoadModule: "ati"
[     4.603] (WW) Warning, couldn't open module ati
[     4.603] (EE) Failed to load module "ati" (module does not exist, 0)
[     4.603] (II) LoadModule: "modesetting"
[     4.603] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.604] (II) Module modesetting: vendor="X.Org Foundation"
[     4.604] 	compiled for 1.20.8, module version = 1.20.8
[     4.604] 	Module class: X.Org Video Driver
[     4.604] 	ABI class: X.Org Video Driver, version 24.1
[     4.604] (II) LoadModule: "fbdev"
[     4.604] (WW) Warning, couldn't open module fbdev
[     4.604] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     4.604] (II) LoadModule: "vesa"
[     4.604] (WW) Warning, couldn't open module vesa
[     4.604] (EE) Failed to load module "vesa" (module does not exist, 0)
[     4.604] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[     4.604] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.619] (II) AMDGPU(0): [KMS] Kernel modesetting enabled.
[     4.619] (WW) Falling back to old probe method for modesetting
[     4.619] (II) AMDGPU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     4.619] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[     4.619] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[     4.619] (==) AMDGPU(0): Default visual is TrueColor
[     4.619] (==) AMDGPU(0): RGB weight 888
[     4.619] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[     4.619] (--) AMDGPU(0): Chipset: "Radeon RX 570 Series" (ChipID = 0x67df)
[     4.619] (II) Loading sub module "fb"
[     4.619] (II) LoadModule: "fb"
[     4.619] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.620] (II) Module fb: vendor="X.Org Foundation"
[     4.620] 	compiled for 1.20.8, module version = 1.0.0
[     4.620] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.620] (II) Loading sub module "dri2"
[     4.620] (II) LoadModule: "dri2"
[     4.620] (II) Module "dri2" already built-in
[     4.831] (II) Loading sub module "glamoregl"
[     4.831] (II) LoadModule: "glamoregl"
[     4.831] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.839] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.839] 	compiled for 1.20.8, module version = 1.0.1
[     4.839] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.910] (II) AMDGPU(0): glamor X acceleration enabled on Radeon RX 570 Series (POLARIS10, DRM 3.36.0, 5.6.8-arch1-1, LLVM 10.0.0)
[     4.910] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[     4.910] (==) AMDGPU(0): TearFree property default: auto
[     4.910] (==) AMDGPU(0): VariableRefresh: disabled
[     4.910] (II) AMDGPU(0): KMS Pageflipping: enabled
[     4.910] (II) AMDGPU(0): Output DisplayPort-0 has no monitor section
[     4.910] (II) AMDGPU(0): Output DisplayPort-1 has no monitor section
[     4.911] (II) AMDGPU(0): Output DisplayPort-2 has no monitor section
[     4.911] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section
[     4.911] (II) AMDGPU(0): Output DVI-D-0 has no monitor section
[     4.915] (II) AMDGPU(0): EDID for output DisplayPort-0
[     4.915] (II) AMDGPU(0): EDID for output DisplayPort-1
[     4.915] (II) AMDGPU(0): EDID for output DisplayPort-2
[     4.915] (II) AMDGPU(0): EDID for output HDMI-A-0
[     4.915] (II) AMDGPU(0): Manufacturer: ACR  Model: 522  Serial#: 2202074357
[     4.915] (II) AMDGPU(0): Year: 2018  Week: 34
[     4.915] (II) AMDGPU(0): EDID Version: 1.3
[     4.915] (II) AMDGPU(0): Digital Display Input
[     4.915] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 60  vert.: 34
[     4.915] (II) AMDGPU(0): Gamma: 2.20
[     4.915] (II) AMDGPU(0): DPMS capabilities: StandBy Suspend
[     4.915] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     4.915] (II) AMDGPU(0): First detailed timing is preferred mode
[     4.915] (II) AMDGPU(0): redX: 0.645 redY: 0.329   greenX: 0.314 greenY: 0.619
[     4.915] (II) AMDGPU(0): blueX: 0.153 blueY: 0.063   whiteX: 0.312 whiteY: 0.328
[     4.915] (II) AMDGPU(0): Supported established timings:
[     4.915] (II) AMDGPU(0): 720x400@70Hz
[     4.915] (II) AMDGPU(0): 640x480@60Hz
[     4.915] (II) AMDGPU(0): 640x480@67Hz
[     4.915] (II) AMDGPU(0): 640x480@72Hz
[     4.915] (II) AMDGPU(0): 640x480@75Hz
[     4.915] (II) AMDGPU(0): 800x600@56Hz
[     4.915] (II) AMDGPU(0): 800x600@60Hz
[     4.915] (II) AMDGPU(0): 800x600@72Hz
[     4.915] (II) AMDGPU(0): 800x600@75Hz
[     4.915] (II) AMDGPU(0): 832x624@75Hz
[     4.915] (II) AMDGPU(0): 1024x768@60Hz
[     4.915] (II) AMDGPU(0): 1024x768@70Hz
[     4.915] (II) AMDGPU(0): 1024x768@75Hz
[     4.915] (II) AMDGPU(0): 1280x1024@75Hz
[     4.915] (II) AMDGPU(0): 1152x864@75Hz
[     4.915] (II) AMDGPU(0): Manufacturer's mask: 0
[     4.915] (II) AMDGPU(0): Supported standard timings:
[     4.915] (II) AMDGPU(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[     4.915] (II) AMDGPU(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[     4.915] (II) AMDGPU(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     4.915] (II) AMDGPU(0): #3: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[     4.915] (II) AMDGPU(0): #4: hsize: 1280  vsize 800  refresh: 60  vid: 129
[     4.915] (II) AMDGPU(0): #5: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     4.915] (II) AMDGPU(0): #6: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     4.915] (II) AMDGPU(0): #7: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     4.915] (II) AMDGPU(0): Supported detailed timing:
[     4.915] (II) AMDGPU(0): clock: 148.5 MHz   Image Size:  598 x 336 mm
[     4.915] (II) AMDGPU(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.915] (II) AMDGPU(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     4.915] (II) AMDGPU(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 83 kHz, PixClock max 175 MHz
[     4.915] (II) AMDGPU(0): Monitor name: KA270H
[     4.915] (II) AMDGPU(0): Serial No: T66AA00485A6
[     4.915] (II) AMDGPU(0): Supported detailed timing:
[     4.915] (II) AMDGPU(0): clock: 148.5 MHz   Image Size:  598 x 336 mm
[     4.915] (II) AMDGPU(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.915] (II) AMDGPU(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     4.915] (II) AMDGPU(0): Supported detailed timing:
[     4.915] (II) AMDGPU(0): clock: 74.2 MHz   Image Size:  598 x 336 mm
[     4.915] (II) AMDGPU(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.915] (II) AMDGPU(0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[     4.915] (II) AMDGPU(0): Supported detailed timing:
[     4.915] (II) AMDGPU(0): clock: 74.2 MHz   Image Size:  598 x 336 mm
[     4.915] (II) AMDGPU(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[     4.915] (II) AMDGPU(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[     4.915] (II) AMDGPU(0): Supported detailed timing:
[     4.915] (II) AMDGPU(0): clock: 27.0 MHz   Image Size:  598 x 336 mm
[     4.915] (II) AMDGPU(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[     4.915] (II) AMDGPU(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[     4.915] (II) AMDGPU(0): Number of EDID sections to follow: 1
[     4.915] (II) AMDGPU(0): EDID (in hex):
[     4.915] (II) AMDGPU(0): 	00ffffffffffff0004722205f5fc4083
[     4.915] (II) AMDGPU(0): 	221c0103803c2278ca1a50a554509e27
[     4.915] (II) AMDGPU(0): 	105054bfef80714f8140818081c08100
[     4.916] (II) AMDGPU(0): 	9500b300d1c0023a801871382d40582c
[     4.916] (II) AMDGPU(0): 	450056502100001e000000fd00384c1f
[     4.916] (II) AMDGPU(0): 	5311000a202020202020000000fc004b
[     4.916] (II) AMDGPU(0): 	41323730480a202020202020000000ff
[     4.916] (II) AMDGPU(0): 	005436364141303034383541360a017f
[     4.916] (II) AMDGPU(0): 	020324f14f0102030405060790111213
[     4.916] (II) AMDGPU(0): 	1415161f230907078301000067030c00
[     4.916] (II) AMDGPU(0): 	1000382d023a801871382d40582c4500
[     4.916] (II) AMDGPU(0): 	56502100001e011d8018711c1620582c
[     4.916] (II) AMDGPU(0): 	250056502100009e011d007251d01e20
[     4.916] (II) AMDGPU(0): 	6e28550056502100001e8c0ad08a20e0
[     4.916] (II) AMDGPU(0): 	2d10103e960056502100001800000000
[     4.916] (II) AMDGPU(0): 	000000000000000000000000000000e0
[     4.916] (--) AMDGPU(0): HDMI max TMDS frequency 225000KHz
[     4.916] (II) AMDGPU(0): Printing probed modes for output HDMI-A-0
[     4.916] (II) AMDGPU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[     4.916] (II) AMDGPU(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.916] (II) AMDGPU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     4.916] (II) AMDGPU(0): EDID for output DVI-D-0
[     4.916] (II) AMDGPU(0): Output DisplayPort-0 disconnected
[     4.916] (II) AMDGPU(0): Output DisplayPort-1 disconnected
[     4.916] (II) AMDGPU(0): Output DisplayPort-2 disconnected
[     4.916] (II) AMDGPU(0): Output HDMI-A-0 connected
[     4.916] (II) AMDGPU(0): Output DVI-D-0 disconnected
[     4.916] (II) AMDGPU(0): Using exact sizes for initial modes
[     4.916] (II) AMDGPU(0): Output HDMI-A-0 using initial mode 1920x1080 +0+0
[     4.916] (II) AMDGPU(0): mem size init: gart size :ff972000 vram size: s:feed7000 visible:f2e7000
[     4.916] (==) AMDGPU(0): DPI set to (96, 96)
[     4.916] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.916] (II) Loading sub module "ramdac"
[     4.916] (II) LoadModule: "ramdac"
[     4.916] (II) Module "ramdac" already built-in
[     4.916] (II) UnloadModule: "modesetting"
[     4.916] (II) Unloading modesetting
[     4.916] (II) AMDGPU(0): [DRI2] Setup complete
[     4.916] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[     4.916] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[     4.916] (II) AMDGPU(0): Front buffer pitch: 8192 bytes
[     4.918] (II) AMDGPU(0): SYNC extension fences enabled
[     4.918] (II) AMDGPU(0): Present extension enabled
[     4.918] (==) AMDGPU(0): DRI3 enabled
[     4.918] (==) AMDGPU(0): Backing store enabled
[     4.918] (II) AMDGPU(0): Direct rendering enabled
[     4.943] (II) AMDGPU(0): Use GLAMOR acceleration.
[     4.943] (II) AMDGPU(0): Acceleration enabled
[     4.943] (==) AMDGPU(0): DPMS enabled
[     4.943] (==) AMDGPU(0): Silken mouse disabled
[     4.943] (II) AMDGPU(0): Set up textured video (glamor)
[     4.949] (II) Initializing extension Generic Event Extension
[     4.949] (II) Initializing extension SHAPE
[     4.949] (II) Initializing extension MIT-SHM
[     4.949] (II) Initializing extension XInputExtension
[     4.949] (II) Initializing extension XTEST
[     4.949] (II) Initializing extension BIG-REQUESTS
[     4.949] (II) Initializing extension SYNC
[     4.949] (II) Initializing extension XKEYBOARD
[     4.949] (II) Initializing extension XC-MISC
[     4.949] (II) Initializing extension SECURITY
[     4.949] (II) Initializing extension XFIXES
[     4.949] (II) Initializing extension RENDER
[     4.950] (II) Initializing extension RANDR
[     4.950] (II) Initializing extension COMPOSITE
[     4.950] (II) Initializing extension DAMAGE
[     4.950] (II) Initializing extension MIT-SCREEN-SAVER
[     4.950] (II) Initializing extension DOUBLE-BUFFER
[     4.950] (II) Initializing extension RECORD
[     4.950] (II) Initializing extension DPMS
[     4.950] (II) Initializing extension Present
[     4.950] (II) Initializing extension DRI3
[     4.950] (II) Initializing extension X-Resource
[     4.950] (II) Initializing extension XVideo
[     4.950] (II) Initializing extension XVideo-MotionCompensation
[     4.950] (II) Initializing extension GLX
[     4.953] (II) AIGLX: Loaded and initialized radeonsi
[     4.953] (II) GLX: Initialized DRI2 GL provider for screen 0
[     4.953] (II) Initializing extension XFree86-VidModeExtension
[     4.953] (II) Initializing extension XFree86-DGA
[     4.953] (II) Initializing extension XFree86-DRI
[     4.953] (II) Initializing extension DRI2
[     4.966] (II) AMDGPU(0): Setting screen physical size to 508 x 285
[     5.102] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     5.102] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     5.102] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.102] (II) LoadModule: "libinput"
[     5.102] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.107] (II) Module libinput: vendor="X.Org Foundation"
[     5.107] 	compiled for 1.20.7, module version = 0.29.0
[     5.107] 	Module class: X.Org XInput Driver
[     5.107] 	ABI class: X.Org XInput driver, version 24.1
[     5.107] (II) Using input driver 'libinput' for 'Power Button'
[     5.107] (**) Power Button: always reports core events
[     5.107] (**) Option "Device" "/dev/input/event1"
[     5.107] (**) Option "_source" "server/udev"
[     5.112] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.113] (II) event1  - Power Button: device is a keyboard
[     5.113] (II) event1  - Power Button: device removed
[     5.133] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[     5.133] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.133] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.134] (II) event1  - Power Button: device is a keyboard
[     5.134] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     5.134] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     5.134] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.134] (II) Using input driver 'libinput' for 'Power Button'
[     5.134] (**) Power Button: always reports core events
[     5.134] (**) Option "Device" "/dev/input/event0"
[     5.134] (**) Option "_source" "server/udev"
[     5.134] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.135] (II) event0  - Power Button: device is a keyboard
[     5.135] (II) event0  - Power Button: device removed
[     5.173] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     5.173] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[     5.174] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.174] (II) event0  - Power Button: device is a keyboard
[     5.174] (II) config/udev: Adding drm device (/dev/dri/card1)
[     5.174] (II) xfree86: Adding drm device (/dev/dri/card1)
[     5.174] (II) LoadModule: "modesetting"
[     5.174] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     5.174] (II) Module modesetting: vendor="X.Org Foundation"
[     5.174] 	compiled for 1.20.8, module version = 1.20.8
[     5.174] 	Module class: X.Org Video Driver
[     5.174] 	ABI class: X.Org Video Driver, version 24.1
[     5.174] xf86: found device 1
[     5.174] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event14)
[     5.174] (II) No input driver specified, ignoring this device.
[     5.174] (II) This device may have been added with another device file.
[     5.174] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
[     5.174] (II) No input driver specified, ignoring this device.
[     5.174] (II) This device may have been added with another device file.
[     5.175] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event16)
[     5.175] (II) No input driver specified, ignoring this device.
[     5.175] (II) This device may have been added with another device file.
[     5.175] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event17)
[     5.175] (II) No input driver specified, ignoring this device.
[     5.175] (II) This device may have been added with another device file.
[     5.175] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event18)
[     5.175] (II) No input driver specified, ignoring this device.
[     5.175] (II) This device may have been added with another device file.
[     5.175] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event19)
[     5.175] (II) No input driver specified, ignoring this device.
[     5.175] (II) This device may have been added with another device file.
[     5.176] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event20)
[     5.176] (II) No input driver specified, ignoring this device.
[     5.176] (II) This device may have been added with another device file.
[     5.176] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event8)
[     5.176] (II) No input driver specified, ignoring this device.
[     5.176] (II) This device may have been added with another device file.
[     5.176] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event9)
[     5.176] (II) No input driver specified, ignoring this device.
[     5.176] (II) This device may have been added with another device file.
[     5.177] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event10)
[     5.177] (II) No input driver specified, ignoring this device.
[     5.177] (II) This device may have been added with another device file.
[     5.177] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event11)
[     5.177] (II) No input driver specified, ignoring this device.
[     5.177] (II) This device may have been added with another device file.
[     5.177] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event12)
[     5.177] (II) No input driver specified, ignoring this device.
[     5.177] (II) This device may have been added with another device file.
[     5.177] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event13)
[     5.177] (II) No input driver specified, ignoring this device.
[     5.177] (II) This device may have been added with another device file.
[     5.178] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event21)
[     5.178] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev keyboard catchall"
[     5.178] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "libinput keyboard catchall"
[     5.178] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate'
[     5.178] (**) Razer Razer BlackWidow Ultimate: always reports core events
[     5.178] (**) Option "Device" "/dev/input/event21"
[     5.178] (**) Option "_source" "server/udev"
[     5.179] (II) event21 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Keyboard
[     5.179] (II) event21 - Razer Razer BlackWidow Ultimate: device is a keyboard
[     5.179] (II) event21 - Razer Razer BlackWidow Ultimate: device removed
[     5.240] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.0/0003:1532:011A.0001/input/input21/event21"
[     5.240] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: KEYBOARD, id 8)
[     5.241] (II) event21 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Keyboard
[     5.241] (II) event21 - Razer Razer BlackWidow Ultimate: device is a keyboard
[     5.242] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate Keyboard (/dev/input/event22)
[     5.242] (**) Razer Razer BlackWidow Ultimate Keyboard: Applying InputClass "evdev keyboard catchall"
[     5.242] (**) Razer Razer BlackWidow Ultimate Keyboard: Applying InputClass "libinput keyboard catchall"
[     5.242] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Keyboard'
[     5.242] (**) Razer Razer BlackWidow Ultimate Keyboard: always reports core events
[     5.242] (**) Option "Device" "/dev/input/event22"
[     5.242] (**) Option "_source" "server/udev"
[     5.244] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: is tagged by udev as: Keyboard
[     5.244] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device is a keyboard
[     5.244] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device removed
[     5.333] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input22/event22"
[     5.333] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Keyboard" (type: KEYBOARD, id 9)
[     5.334] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: is tagged by udev as: Keyboard
[     5.334] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device is a keyboard
[     5.335] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate Consumer Control (/dev/input/event23)
[     5.335] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.335] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.335] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Consumer Control'
[     5.335] (**) Razer Razer BlackWidow Ultimate Consumer Control: always reports core events
[     5.335] (**) Option "Device" "/dev/input/event23"
[     5.335] (**) Option "_source" "server/udev"
[     5.336] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: is tagged by udev as: Keyboard
[     5.336] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device is a keyboard
[     5.336] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device removed
[     5.360] (II) libinput: Razer Razer BlackWidow Ultimate Consumer Control: needs a virtual subdevice
[     5.360] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input23/event23"
[     5.360] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Consumer Control" (type: MOUSE, id 10)
[     5.360] (**) Option "AccelerationScheme" "none"
[     5.360] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) selected scheme none/0
[     5.360] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) acceleration factor: 2.000
[     5.360] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) acceleration threshold: 4
[     5.361] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: is tagged by udev as: Keyboard
[     5.361] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device is a keyboard
[     5.361] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate System Control (/dev/input/event24)
[     5.361] (**) Razer Razer BlackWidow Ultimate System Control: Applying InputClass "evdev keyboard catchall"
[     5.361] (**) Razer Razer BlackWidow Ultimate System Control: Applying InputClass "libinput keyboard catchall"
[     5.361] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate System Control'
[     5.361] (**) Razer Razer BlackWidow Ultimate System Control: always reports core events
[     5.361] (**) Option "Device" "/dev/input/event24"
[     5.361] (**) Option "_source" "server/udev"
[     5.362] (II) event24 - Razer Razer BlackWidow Ultimate System Control: is tagged by udev as: Keyboard
[     5.362] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device is a keyboard
[     5.363] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device removed
[     5.386] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input24/event24"
[     5.386] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate System Control" (type: KEYBOARD, id 11)
[     5.388] (II) event24 - Razer Razer BlackWidow Ultimate System Control: is tagged by udev as: Keyboard
[     5.388] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device is a keyboard
[     5.389] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event25)
[     5.389] (II) No input driver specified, ignoring this device.
[     5.389] (II) This device may have been added with another device file.
[     5.389] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event26)
[     5.389] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev pointer catchall"
[     5.389] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "libinput pointer catchall"
[     5.389] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate'
[     5.389] (**) Razer Razer BlackWidow Ultimate: always reports core events
[     5.389] (**) Option "Device" "/dev/input/event26"
[     5.389] (**) Option "_source" "server/udev"
[     5.444] (II) event26 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Mouse
[     5.444] (II) event26 - Razer Razer BlackWidow Ultimate: device is a pointer
[     5.444] (II) event26 - Razer Razer BlackWidow Ultimate: device removed
[     5.506] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.2/0003:1532:011A.0003/input/input26/event26"
[     5.506] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: MOUSE, id 12)
[     5.506] (**) Option "AccelerationScheme" "none"
[     5.506] (**) Razer Razer BlackWidow Ultimate: (accel) selected scheme none/0
[     5.506] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration factor: 2.000
[     5.506] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration threshold: 4
[     5.564] (II) event26 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Mouse
[     5.564] (II) event26 - Razer Razer BlackWidow Ultimate: device is a pointer
[     5.565] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/mouse0)
[     5.565] (II) No input driver specified, ignoring this device.
[     5.565] (II) This device may have been added with another device file.
[     5.566] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/event27)
[     5.566] (**) BTL Gaming Mouse: Applying InputClass "evdev pointer catchall"
[     5.566] (**) BTL Gaming Mouse: Applying InputClass "libinput pointer catchall"
[     5.566] (II) Using input driver 'libinput' for 'BTL Gaming Mouse'
[     5.566] (**) BTL Gaming Mouse: always reports core events
[     5.566] (**) Option "Device" "/dev/input/event27"
[     5.566] (**) Option "_source" "server/udev"
[     5.567] (II) event27 - BTL Gaming Mouse: is tagged by udev as: Mouse
[     5.567] (II) event27 - BTL Gaming Mouse: device is a pointer
[     5.567] (II) event27 - BTL Gaming Mouse: device removed
[     5.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input27/event27"
[     5.640] (II) XINPUT: Adding extended input device "BTL Gaming Mouse" (type: MOUSE, id 13)
[     5.640] (**) Option "AccelerationScheme" "none"
[     5.640] (**) BTL Gaming Mouse: (accel) selected scheme none/0
[     5.640] (**) BTL Gaming Mouse: (accel) acceleration factor: 2.000
[     5.640] (**) BTL Gaming Mouse: (accel) acceleration threshold: 4
[     5.641] (II) event27 - BTL Gaming Mouse: is tagged by udev as: Mouse
[     5.641] (II) event27 - BTL Gaming Mouse: device is a pointer
[     5.642] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/mouse1)
[     5.642] (II) No input driver specified, ignoring this device.
[     5.642] (II) This device may have been added with another device file.
[     5.642] (II) config/udev: Adding input device BTL Gaming Mouse Consumer Control (/dev/input/event28)
[     5.642] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.642] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.642] (II) Using input driver 'libinput' for 'BTL Gaming Mouse Consumer Control'
[     5.642] (**) BTL Gaming Mouse Consumer Control: always reports core events
[     5.642] (**) Option "Device" "/dev/input/event28"
[     5.642] (**) Option "_source" "server/udev"
[     5.644] (II) event28 - BTL Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[     5.644] (II) event28 - BTL Gaming Mouse Consumer Control: device is a keyboard
[     5.644] (II) event28 - BTL Gaming Mouse Consumer Control: device removed
[     5.680] (II) libinput: BTL Gaming Mouse Consumer Control: needs a virtual subdevice
[     5.680] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input28/event28"
[     5.680] (II) XINPUT: Adding extended input device "BTL Gaming Mouse Consumer Control" (type: MOUSE, id 14)
[     5.680] (**) Option "AccelerationScheme" "none"
[     5.680] (**) BTL Gaming Mouse Consumer Control: (accel) selected scheme none/0
[     5.680] (**) BTL Gaming Mouse Consumer Control: (accel) acceleration factor: 2.000
[     5.680] (**) BTL Gaming Mouse Consumer Control: (accel) acceleration threshold: 4
[     5.681] (II) event28 - BTL Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[     5.681] (II) event28 - BTL Gaming Mouse Consumer Control: device is a keyboard
[     5.682] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/event29)
[     5.682] (**) BTL Gaming Mouse: Applying InputClass "evdev keyboard catchall"
[     5.682] (**) BTL Gaming Mouse: Applying InputClass "libinput keyboard catchall"
[     5.682] (II) Using input driver 'libinput' for 'BTL Gaming Mouse'
[     5.682] (**) BTL Gaming Mouse: always reports core events
[     5.682] (**) Option "Device" "/dev/input/event29"
[     5.682] (**) Option "_source" "server/udev"
[     5.683] (II) event29 - BTL Gaming Mouse: is tagged by udev as: Keyboard
[     5.683] (II) event29 - BTL Gaming Mouse: device is a keyboard
[     5.683] (II) event29 - BTL Gaming Mouse: device removed
[     5.733] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.1/0003:1EA7:1005.0005/input/input30/event29"
[     5.733] (II) XINPUT: Adding extended input device "BTL Gaming Mouse" (type: KEYBOARD, id 15)
[     5.734] (II) event29 - BTL Gaming Mouse: is tagged by udev as: Keyboard
[     5.734] (II) event29 - BTL Gaming Mouse: device is a keyboard
[     5.735] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event4)
[     5.735] (II) No input driver specified, ignoring this device.
[     5.735] (II) This device may have been added with another device file.
[     5.735] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event5)
[     5.735] (II) No input driver specified, ignoring this device.
[     5.735] (II) This device may have been added with another device file.
[     5.735] (II) config/udev: Adding input device HD-Audio Generic Line Out (/dev/input/event6)
[     5.735] (II) No input driver specified, ignoring this device.
[     5.735] (II) This device may have been added with another device file.
[     5.736] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event7)
[     5.736] (II) No input driver specified, ignoring this device.
[     5.736] (II) This device may have been added with another device file.
[     5.736] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event3)
[     5.736] (II) No input driver specified, ignoring this device.
[     5.736] (II) This device may have been added with another device file.
[     5.736] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[     5.736] (II) No input driver specified, ignoring this device.
[     5.736] (II) This device may have been added with another device file.
[     5.740] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.740] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.740] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Consumer Control'
[     5.740] (**) Razer Razer BlackWidow Ultimate Consumer Control: always reports core events
[     5.740] (**) Option "Device" "/dev/input/event23"
[     5.740] (**) Option "_source" "_driver/libinput"
[     5.740] (II) libinput: Razer Razer BlackWidow Ultimate Consumer Control: is a virtual subdevice
[     5.740] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input23/event23"
[     5.740] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Consumer Control" (type: KEYBOARD, id 16)
[     5.740] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.740] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.740] (II) Using input driver 'libinput' for 'BTL Gaming Mouse Consumer Control'
[     5.740] (**) BTL Gaming Mouse Consumer Control: always reports core events
[     5.740] (**) Option "Device" "/dev/input/event28"
[     5.740] (**) Option "_source" "_driver/libinput"
[     5.740] (II) libinput: BTL Gaming Mouse Consumer Control: is a virtual subdevice
[     5.740] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input28/event28"
[     5.740] (II) XINPUT: Adding extended input device "BTL Gaming Mouse Consumer Control" (type: KEYBOARD, id 17)
[     5.740] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:03.1/0000:06:00.0/drm/card0 /dev/dri/card0
[     5.740] xf86: remove device 0 /sys/devices/pci0000:00/0000:00:03.1/0000:06:00.0/drm/card0
[     5.741] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.0/drm/card1 /dev/dri/card1
[     5.741] (II) config/udev: Adding drm device (/dev/dri/card1)
[     5.741] (II) xfree86: Adding drm device (/dev/dri/card1)
[     5.741] (II) LoadModule: "modesetting"
[     5.741] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     5.741] (II) Module modesetting: vendor="X.Org Foundation"
[     5.741] 	compiled for 1.20.8, module version = 1.20.8
[     5.741] 	Module class: X.Org Video Driver
[     5.741] 	ABI class: X.Org Video Driver, version 24.1
[     5.741] (II) UnloadModule: "modesetting"
[     5.741] (II) Unloading modesetting
[     5.741] (II) Failed to load module "modesetting" (already loaded, 0)
[     5.741] xf86: found device 1
[     5.742] (II) config/udev: removing device BTL Gaming Mouse Consumer Control
[     5.742] (II) UnloadModule: "libinput"
[     5.742] (II) config/udev: removing device BTL Gaming Mouse Consumer Control
[     5.742] (II) event28 - BTL Gaming Mouse Consumer Control: device removed
[     5.785] (II) UnloadModule: "libinput"
[     5.786] (II) config/udev: Adding input device BTL Gaming Mouse Consumer Control (/dev/input/event28)
[     5.786] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.786] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.786] (II) Using input driver 'libinput' for 'BTL Gaming Mouse Consumer Control'
[     5.786] (**) BTL Gaming Mouse Consumer Control: always reports core events
[     5.786] (**) Option "Device" "/dev/input/event28"
[     5.786] (**) Option "_source" "server/udev"
[     5.787] (II) event28 - BTL Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[     5.787] (II) event28 - BTL Gaming Mouse Consumer Control: device is a keyboard
[     5.787] (II) event28 - BTL Gaming Mouse Consumer Control: device removed
[     5.806] (II) libinput: BTL Gaming Mouse Consumer Control: needs a virtual subdevice
[     5.806] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input28/event28"
[     5.806] (II) XINPUT: Adding extended input device "BTL Gaming Mouse Consumer Control" (type: MOUSE, id 14)
[     5.806] (**) Option "AccelerationScheme" "none"
[     5.806] (**) BTL Gaming Mouse Consumer Control: (accel) selected scheme none/0
[     5.806] (**) BTL Gaming Mouse Consumer Control: (accel) acceleration factor: 2.000
[     5.806] (**) BTL Gaming Mouse Consumer Control: (accel) acceleration threshold: 4
[     5.807] (II) event28 - BTL Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[     5.807] (II) event28 - BTL Gaming Mouse Consumer Control: device is a keyboard
[     5.808] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.808] (**) BTL Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.808] (II) Using input driver 'libinput' for 'BTL Gaming Mouse Consumer Control'
[     5.808] (**) BTL Gaming Mouse Consumer Control: always reports core events
[     5.808] (**) Option "Device" "/dev/input/event28"
[     5.808] (**) Option "_source" "_driver/libinput"
[     5.808] (II) libinput: BTL Gaming Mouse Consumer Control: is a virtual subdevice
[     5.808] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input28/event28"
[     5.808] (II) XINPUT: Adding extended input device "BTL Gaming Mouse Consumer Control" (type: KEYBOARD, id 17)
[     5.808] (II) config/udev: removing device Razer Razer BlackWidow Ultimate Consumer Control
[     5.808] (II) UnloadModule: "libinput"
[     5.808] (II) config/udev: removing device Razer Razer BlackWidow Ultimate Consumer Control
[     5.808] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device removed
[     5.836] (II) UnloadModule: "libinput"
[     5.837] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate Consumer Control (/dev/input/event23)
[     5.837] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.837] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.837] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Consumer Control'
[     5.837] (**) Razer Razer BlackWidow Ultimate Consumer Control: always reports core events
[     5.837] (**) Option "Device" "/dev/input/event23"
[     5.837] (**) Option "_source" "server/udev"
[     5.838] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: is tagged by udev as: Keyboard
[     5.838] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device is a keyboard
[     5.838] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device removed
[     5.866] (II) libinput: Razer Razer BlackWidow Ultimate Consumer Control: needs a virtual subdevice
[     5.866] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input23/event23"
[     5.866] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Consumer Control" (type: MOUSE, id 10)
[     5.866] (**) Option "AccelerationScheme" "none"
[     5.866] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) selected scheme none/0
[     5.866] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) acceleration factor: 2.000
[     5.866] (**) Razer Razer BlackWidow Ultimate Consumer Control: (accel) acceleration threshold: 4
[     5.868] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: is tagged by udev as: Keyboard
[     5.868] (II) event23 - Razer Razer BlackWidow Ultimate Consumer Control: device is a keyboard
[     5.868] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "evdev keyboard catchall"
[     5.868] (**) Razer Razer BlackWidow Ultimate Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.868] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Consumer Control'
[     5.868] (**) Razer Razer BlackWidow Ultimate Consumer Control: always reports core events
[     5.868] (**) Option "Device" "/dev/input/event23"
[     5.868] (**) Option "_source" "_driver/libinput"
[     5.868] (II) libinput: Razer Razer BlackWidow Ultimate Consumer Control: is a virtual subdevice
[     5.868] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input23/event23"
[     5.868] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Consumer Control" (type: KEYBOARD, id 16)
[     5.868] (II) config/udev: removing device Razer Razer BlackWidow Ultimate
[     5.868] (II) event21 - Razer Razer BlackWidow Ultimate: device removed
[     5.900] (II) UnloadModule: "libinput"
[     5.900] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event21)
[     5.900] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev keyboard catchall"
[     5.900] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "libinput keyboard catchall"
[     5.900] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate'
[     5.900] (**) Razer Razer BlackWidow Ultimate: always reports core events
[     5.900] (**) Option "Device" "/dev/input/event21"
[     5.900] (**) Option "_source" "server/udev"
[     5.901] (II) event21 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Keyboard
[     5.901] (II) event21 - Razer Razer BlackWidow Ultimate: device is a keyboard
[     5.902] (II) event21 - Razer Razer BlackWidow Ultimate: device removed
[     5.933] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.0/0003:1532:011A.0001/input/input21/event21"
[     5.933] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: KEYBOARD, id 8)
[     5.934] (II) event21 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Keyboard
[     5.934] (II) event21 - Razer Razer BlackWidow Ultimate: device is a keyboard
[     5.935] (II) config/udev: removing device Razer Razer BlackWidow Ultimate System Control
[     5.935] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device removed
[     5.973] (II) UnloadModule: "libinput"
[     5.973] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate System Control (/dev/input/event24)
[     5.973] (**) Razer Razer BlackWidow Ultimate System Control: Applying InputClass "evdev keyboard catchall"
[     5.973] (**) Razer Razer BlackWidow Ultimate System Control: Applying InputClass "libinput keyboard catchall"
[     5.973] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate System Control'
[     5.973] (**) Razer Razer BlackWidow Ultimate System Control: always reports core events
[     5.973] (**) Option "Device" "/dev/input/event24"
[     5.973] (**) Option "_source" "server/udev"
[     5.975] (II) event24 - Razer Razer BlackWidow Ultimate System Control: is tagged by udev as: Keyboard
[     5.975] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device is a keyboard
[     5.975] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device removed
[     6.013] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input24/event24"
[     6.013] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate System Control" (type: KEYBOARD, id 11)
[     6.014] (II) event24 - Razer Razer BlackWidow Ultimate System Control: is tagged by udev as: Keyboard
[     6.014] (II) event24 - Razer Razer BlackWidow Ultimate System Control: device is a keyboard
[     6.015] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event25)
[     6.015] (II) No input driver specified, ignoring this device.
[     6.015] (II) This device may have been added with another device file.
[     6.015] (II) config/udev: removing device BTL Gaming Mouse
[     6.015] (II) event27 - BTL Gaming Mouse: device removed
[     6.080] (II) UnloadModule: "libinput"
[     6.080] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/event27)
[     6.080] (**) BTL Gaming Mouse: Applying InputClass "evdev pointer catchall"
[     6.080] (**) BTL Gaming Mouse: Applying InputClass "libinput pointer catchall"
[     6.080] (II) Using input driver 'libinput' for 'BTL Gaming Mouse'
[     6.080] (**) BTL Gaming Mouse: always reports core events
[     6.080] (**) Option "Device" "/dev/input/event27"
[     6.080] (**) Option "_source" "server/udev"
[     6.081] (II) event27 - BTL Gaming Mouse: is tagged by udev as: Mouse
[     6.081] (II) event27 - BTL Gaming Mouse: device is a pointer
[     6.082] (II) event27 - BTL Gaming Mouse: device removed
[     6.133] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input27/event27"
[     6.133] (II) XINPUT: Adding extended input device "BTL Gaming Mouse" (type: MOUSE, id 13)
[     6.133] (**) Option "AccelerationScheme" "none"
[     6.133] (**) BTL Gaming Mouse: (accel) selected scheme none/0
[     6.133] (**) BTL Gaming Mouse: (accel) acceleration factor: 2.000
[     6.133] (**) BTL Gaming Mouse: (accel) acceleration threshold: 4
[     6.134] (II) event27 - BTL Gaming Mouse: is tagged by udev as: Mouse
[     6.134] (II) event27 - BTL Gaming Mouse: device is a pointer
[     6.135] (II) config/udev: removing device Razer Razer BlackWidow Ultimate Keyboard
[     6.135] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device removed
[     6.160] (II) UnloadModule: "libinput"
[     6.160] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate Keyboard (/dev/input/event22)
[     6.160] (**) Razer Razer BlackWidow Ultimate Keyboard: Applying InputClass "evdev keyboard catchall"
[     6.160] (**) Razer Razer BlackWidow Ultimate Keyboard: Applying InputClass "libinput keyboard catchall"
[     6.160] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate Keyboard'
[     6.160] (**) Razer Razer BlackWidow Ultimate Keyboard: always reports core events
[     6.160] (**) Option "Device" "/dev/input/event22"
[     6.160] (**) Option "_source" "server/udev"
[     6.161] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: is tagged by udev as: Keyboard
[     6.161] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device is a keyboard
[     6.162] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device removed
[     6.186] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input22/event22"
[     6.186] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate Keyboard" (type: KEYBOARD, id 9)
[     6.188] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: is tagged by udev as: Keyboard
[     6.188] (II) event22 - Razer Razer BlackWidow Ultimate Keyboard: device is a keyboard
[     6.188] (II) config/udev: removing device BTL Gaming Mouse
[     6.188] (II) event29 - BTL Gaming Mouse: device removed
[     6.240] (II) UnloadModule: "libinput"
[     6.241] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/event29)
[     6.241] (**) BTL Gaming Mouse: Applying InputClass "evdev keyboard catchall"
[     6.241] (**) BTL Gaming Mouse: Applying InputClass "libinput keyboard catchall"
[     6.241] (II) Using input driver 'libinput' for 'BTL Gaming Mouse'
[     6.241] (**) BTL Gaming Mouse: always reports core events
[     6.241] (**) Option "Device" "/dev/input/event29"
[     6.241] (**) Option "_source" "server/udev"
[     6.242] (II) event29 - BTL Gaming Mouse: is tagged by udev as: Keyboard
[     6.242] (II) event29 - BTL Gaming Mouse: device is a keyboard
[     6.242] (II) event29 - BTL Gaming Mouse: device removed
[     6.293] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.1/0003:1EA7:1005.0005/input/input30/event29"
[     6.293] (II) XINPUT: Adding extended input device "BTL Gaming Mouse" (type: KEYBOARD, id 15)
[     6.295] (II) event29 - BTL Gaming Mouse: is tagged by udev as: Keyboard
[     6.295] (II) event29 - BTL Gaming Mouse: device is a keyboard
[     6.296] (II) config/udev: Adding input device BTL Gaming Mouse (/dev/input/mouse1)
[     6.296] (II) No input driver specified, ignoring this device.
[     6.296] (II) This device may have been added with another device file.
[     6.296] (II) config/udev: removing device Razer Razer BlackWidow Ultimate
[     6.296] (II) event26 - Razer Razer BlackWidow Ultimate: device removed
[     6.347] (II) UnloadModule: "libinput"
[     6.347] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/event26)
[     6.347] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "evdev pointer catchall"
[     6.347] (**) Razer Razer BlackWidow Ultimate: Applying InputClass "libinput pointer catchall"
[     6.347] (II) Using input driver 'libinput' for 'Razer Razer BlackWidow Ultimate'
[     6.347] (**) Razer Razer BlackWidow Ultimate: always reports core events
[     6.347] (**) Option "Device" "/dev/input/event26"
[     6.347] (**) Option "_source" "server/udev"
[     6.405] (II) event26 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Mouse
[     6.405] (II) event26 - Razer Razer BlackWidow Ultimate: device is a pointer
[     6.405] (II) event26 - Razer Razer BlackWidow Ultimate: device removed
[     6.453] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.2/0003:1532:011A.0003/input/input26/event26"
[     6.453] (II) XINPUT: Adding extended input device "Razer Razer BlackWidow Ultimate" (type: MOUSE, id 12)
[     6.453] (**) Option "AccelerationScheme" "none"
[     6.453] (**) Razer Razer BlackWidow Ultimate: (accel) selected scheme none/0
[     6.453] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration factor: 2.000
[     6.453] (**) Razer Razer BlackWidow Ultimate: (accel) acceleration threshold: 4
[     6.511] (II) event26 - Razer Razer BlackWidow Ultimate: is tagged by udev as: Mouse
[     6.511] (II) event26 - Razer Razer BlackWidow Ultimate: device is a pointer
[     6.512] (II) config/udev: Adding input device Razer Razer BlackWidow Ultimate (/dev/input/mouse0)
[     6.512] (II) No input driver specified, ignoring this device.
[     6.512] (II) This device may have been added with another device file.
[    12.727] (II) AMDGPU(0): EDID vendor "ACR", prod id 1314
[    12.727] (II) AMDGPU(0): Using EDID range info for horizontal sync
[    12.727] (II) AMDGPU(0): Using EDID range info for vertical refresh
[    12.727] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    12.727] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    12.727] (II) AMDGPU(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1440x480i"x0.0   27.00  1440 1478 1602 1716  480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1440x576i"x0.0   27.00  1440 1464 1590 1728  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    12.727] (II) AMDGPU(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    12.727] (--) AMDGPU(0): HDMI max TMDS frequency 225000KHz

It looks like nouveau is never even initialized

Offline

#9 2020-05-02 20:11:15

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

Please post your complete system journal (to get us an idea what happened to the nvidia GPU) and the output of "pacman -Qs nvidia"
You will rather not be able to dynamically switch between the nouveau and nvidia drivers.

Offline

#10 2020-05-02 20:18:14

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

Here is the entire dmesg log:

[    0.000000] Linux version 5.6.8-arch1-1 (linux@archlinux) (gcc version 9.3.0 (Arch Linux 9.3.0-1)) #1 SMP PREEMPT Wed, 29 Apr 2020 16:22:56 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f539597e-7ac0-4886-bc90-3681983d3286 rw loglevel=3 quiet
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009d01fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d02000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20c000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000cb1f5fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cb1f6000-0x00000000cc70ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc710000-0x00000000cc891fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cc892000-0x00000000ccca7fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000ccca8000-0x00000000cd786fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd787000-0x00000000cd815fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000cd816000-0x00000000ceffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cf000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xccc25000  ACPI=0xccc25000  SMBIOS=0xcd64c000  SMBIOS 3.0=0xcd64b000  MEMATTR=0xc9cd5518  ESRT=0xca2f7b98 
[    0.000000] SMBIOS 3.2.1 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./B450M Pro4, BIOS P3.90 12/09/2019
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x42f380 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 0000CCF70000 mask FFFFFFFF0000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000430000000 aka 17152M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] total RAM covered: 3327M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 64M 	num_reg: 4  	lose cover RAM: 0G
[    0.000000] e820: update [mem 0xccf70000-0xccf7ffff] usable ==> reserved
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xcf000 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x00000000ca2f7b98 to 0x00000000ca2f7bd0.
[    0.000000] e820: update [mem 0xca2f7000-0xca2f7fff] usable ==> reserved
[    0.000000] check: Scanning 1 areas for low memory corruption
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x33c601000, 0x33c601fff] PGTABLE
[    0.000000] BRK [0x33c602000, 0x33c602fff] PGTABLE
[    0.000000] BRK [0x33c603000, 0x33c603fff] PGTABLE
[    0.000000] BRK [0x33c604000, 0x33c604fff] PGTABLE
[    0.000000] BRK [0x33c605000, 0x33c605fff] PGTABLE
[    0.000000] BRK [0x33c606000, 0x33c606fff] PGTABLE
[    0.000000] BRK [0x33c607000, 0x33c607fff] PGTABLE
[    0.000000] BRK [0x33c608000, 0x33c608fff] PGTABLE
[    0.000000] BRK [0x33c609000, 0x33c609fff] PGTABLE
[    0.000000] BRK [0x33c60a000, 0x33c60afff] PGTABLE
[    0.000000] BRK [0x33c60b000, 0x33c60bfff] PGTABLE
[    0.000000] BRK [0x33c60c000, 0x33c60cfff] PGTABLE
[    0.000000] Secure boot could not be determined
[    0.000000] RAMDISK: [mem 0x36ded000-0x376edfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000CCC25000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000CCC250A0 0000C4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000CCC2BFB8 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000CCC25200 006DB5 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000CCC91E00 000040
[    0.000000] ACPI: APIC 0x00000000CCC2C0D0 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000CCC2C230 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000CCC2C278 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000CCC2C318 0000FC (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.000000] ACPI: SSDT 0x00000000CCC2C418 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000CCC350B0 00315B (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000CCC38210 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: AAFT 0x00000000CCC38250 0003DA (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000CCC38630 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: UEFI 0x00000000CCC38668 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.000000] ACPI: BGRT 0x00000000CCC386B0 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: PCCT 0x00000000CCC386E8 00006E (v01 AMD    AMD PCCT 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000CCC38758 003EC9 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000CCC3C628 000ED8 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000CCC3D500 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000CCC3D530 001D34 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: SSDT 0x00000000CCC3F268 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: WSMT 0x00000000CCC3F328 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000CCC3F350 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000042f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x42f37c000-0x42f37ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000042f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009d01fff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20c000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000cb1f5fff]
[    0.000000]   node   0: [mem 0x00000000cc710000-0x00000000cc891fff]
[    0.000000]   node   0: [mem 0x00000000cd816000-0x00000000ceffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000042f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 17577 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000042f37ffff]
[    0.000000] On node 0 totalpages: 4176727
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 32 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13025 pages used for memmap
[    0.000000]   DMA32 zone: 833592 pages, LIFO batch:63
[    0.000000]   Normal zone: 52174 pages used for memmap
[    0.000000]   Normal zone: 3339136 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] e820: update [mem 0xc7a9e000-0xc7adefff] usable ==> reserved
[    0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x09d02000-0x09ffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20bfff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xc7a9e000-0xc7adefff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xca2f7000-0xca2f7fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xcb1f6000-0xcc70ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xcc892000-0xccca7fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xccca8000-0xcd786fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xcd787000-0xcd815fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xcf000000-0xcfffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xf7ffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.000000] [mem 0xd0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 4111432
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f539597e-7ac0-4886-bc90-3681983d3286 rw loglevel=3 quiet
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 118168(90%)
[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] mem auto-init: stack:byref_all, heap alloc:on, heap free:off
[    0.000000] Memory: 16214820K/16706908K available (12291K kernel code, 1463K rwdata, 4504K rodata, 1620K init, 3220K bss, 492088K reserved, 0K cma-reserved)
[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x3e/0x520 with crng_init=0
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 40157 entries in 157 pages
[    0.000000] ftrace: allocated 157 pages with 5 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=32.
[    0.000000] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 20736, nr_irqs: 1224, preallocated irqs: 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] ACPI: Core revision 20200110
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] Switched APIC routing to physical flat.
[    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.019999] tsc: PIT calibration matches HPET. 1 loops
[    0.019999] tsc: Detected 3593.283 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33cb8a4e089, max_idle_ns: 440795276666 ns
[    0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 7189.00 BogoMIPS (lpj=11977610)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.002266] LSM: Security Framework initializing
[    0.002269] Yama: becoming mindful.
[    0.002314] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.002344] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.002356] *** VALIDATE tmpfs ***
[    0.002459] *** VALIDATE proc ***
[    0.002503] *** VALIDATE cgroup ***
[    0.002504] *** VALIDATE cgroup2 ***
[    0.002529] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.002580] LVT offset 1 assigned for vector 0xf9
[    0.002708] LVT offset 2 assigned for vector 0xf4
[    0.002743] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.002744] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.002745] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.002747] Spectre V2 : Mitigation: Full AMD retpoline
[    0.002747] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.002748] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.002749] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[    0.002749] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.002963] Freeing SMP alternatives memory: 32K
[    0.115224] smpboot: CPU0: AMD Ryzen 7 3700X 8-Core Processor (family: 0x17, model: 0x71, stepping: 0x0)
[    0.133342] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.133345] ... version:                0
[    0.133345] ... bit width:              48
[    0.133345] ... generic registers:      6
[    0.133346] ... value mask:             0000ffffffffffff
[    0.133346] ... max period:             00007fffffffffff
[    0.133346] ... fixed-purpose events:   0
[    0.133346] ... event mask:             000000000000003f
[    0.140004] rcu: Hierarchical SRCU implementation.
[    0.163341] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.170006] smp: Bringing up secondary CPUs ...
[    0.210016] x86: Booting SMP configuration:
[    0.210016] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.772186] smp: Brought up 1 node, 16 CPUs
[    0.772186] smpboot: Max logical packages: 2
[    0.772186] smpboot: Total of 16 processors activated (115031.10 BogoMIPS)
[    0.773810] devtmpfs: initialized
[    0.773810] x86/mm: Memory block size: 128MB
[    0.774179] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20bfff] (49152 bytes)
[    0.774179] PM: Registering ACPI NVS region [mem 0xcc892000-0xccca7fff] (4284416 bytes)
[    0.774179] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.774179] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.774179] pinctrl core: initialized pinctrl subsystem
[    0.774179] PM: RTC time: 19:43:10, date: 2020-05-02
[    0.774179] thermal_sys: Registered thermal governor 'fair_share'
[    0.774179] thermal_sys: Registered thermal governor 'bang_bang'
[    0.774179] thermal_sys: Registered thermal governor 'step_wise'
[    0.774179] thermal_sys: Registered thermal governor 'user_space'
[    0.774179] thermal_sys: Registered thermal governor 'power_allocator'
[    0.774179] NET: Registered protocol family 16
[    0.774179] audit: initializing netlink subsys (disabled)
[    0.774179] audit: type=2000 audit(1588448589.793:1): state=initialized audit_enabled=0 res=1
[    0.774179] cpuidle: using governor ladder
[    0.774179] cpuidle: using governor menu
[    0.774179] Detected 1 PCC Subspaces
[    0.774179] Registering PCC driver as Mailbox controller
[    0.774179] ACPI: bus type PCI registered
[    0.774179] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.774179] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.774179] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.774179] PCI: Using configuration type 1 for base access
[    0.776885] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.776885] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.776885] ACPI: Added _OSI(Module Device)
[    0.776885] ACPI: Added _OSI(Processor Device)
[    0.776885] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.776885] ACPI: Added _OSI(Processor Aggregator Device)
[    0.776885] ACPI: Added _OSI(Linux-Dell-Video)
[    0.776885] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.776885] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.786890] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.790257] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.793055] ACPI: Interpreter enabled
[    0.793066] ACPI: (supports S0 S3 S4 S5)
[    0.793066] ACPI: Using IOAPIC for interrupt routing
[    0.793313] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.793619] ACPI: Enabled 2 GPEs in block 00 to 1F
[    0.799604] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.799604] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.799604] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    0.799604] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.799604] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.799604] PCI host bridge to bus 0000:00
[    0.799604] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.799604] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.799604] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.799604] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.799604] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.799604] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.799604] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfec2ffff window]
[    0.799604] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.799604] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.799604] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000
[    0.799604] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000
[    0.799604] pci 0000:00:01.3: [1022:1483] type 01 class 0x060400
[    0.799604] pci 0000:00:01.3: enabling Extended Tags
[    0.799604] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.799604] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000
[    0.799604] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000
[    0.799604] pci 0000:00:03.1: [1022:1483] type 01 class 0x060400
[    0.799604] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.799604] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000
[    0.799604] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000
[    0.800010] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000
[    0.800080] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400
[    0.800109] pci 0000:00:07.1: enabling Extended Tags
[    0.800147] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.800241] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000
[    0.800308] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400
[    0.800340] pci 0000:00:08.1: enabling Extended Tags
[    0.800380] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.800465] pci 0000:00:08.2: [1022:1484] type 01 class 0x060400
[    0.800496] pci 0000:00:08.2: enabling Extended Tags
[    0.800537] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.800625] pci 0000:00:08.3: [1022:1484] type 01 class 0x060400
[    0.800656] pci 0000:00:08.3: enabling Extended Tags
[    0.800697] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[    0.800799] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.800917] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.801041] pci 0000:00:18.0: [1022:1440] type 00 class 0x060000
[    0.801087] pci 0000:00:18.1: [1022:1441] type 00 class 0x060000
[    0.801135] pci 0000:00:18.2: [1022:1442] type 00 class 0x060000
[    0.801181] pci 0000:00:18.3: [1022:1443] type 00 class 0x060000
[    0.801226] pci 0000:00:18.4: [1022:1444] type 00 class 0x060000
[    0.801271] pci 0000:00:18.5: [1022:1445] type 00 class 0x060000
[    0.801317] pci 0000:00:18.6: [1022:1446] type 00 class 0x060000
[    0.801368] pci 0000:00:18.7: [1022:1447] type 00 class 0x060000
[    0.801472] pci 0000:01:00.0: [1022:43d5] type 00 class 0x0c0330
[    0.801499] pci 0000:01:00.0: reg 0x10: [mem 0xf73a0000-0xf73a7fff 64bit]
[    0.801543] pci 0000:01:00.0: enabling Extended Tags
[    0.801600] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.801679] pci 0000:01:00.1: [1022:43c8] type 00 class 0x010601
[    0.801736] pci 0000:01:00.1: reg 0x24: [mem 0xf7380000-0xf739ffff]
[    0.801744] pci 0000:01:00.1: reg 0x30: [mem 0xf7300000-0xf737ffff pref]
[    0.801751] pci 0000:01:00.1: enabling Extended Tags
[    0.801795] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.801855] pci 0000:01:00.2: [1022:43c6] type 01 class 0x060400
[    0.801908] pci 0000:01:00.2: enabling Extended Tags
[    0.801957] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.802057] pci 0000:00:01.3: PCI bridge to [bus 01-05]
[    0.802060] pci 0000:00:01.3:   bridge window [io  0xd000-0xefff]
[    0.802062] pci 0000:00:01.3:   bridge window [mem 0xf6000000-0xf73fffff]
[    0.802066] pci 0000:00:01.3:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.802151] pci 0000:02:00.0: [1022:43c7] type 01 class 0x060400
[    0.802209] pci 0000:02:00.0: enabling Extended Tags
[    0.802271] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.802355] pci 0000:02:01.0: [1022:43c7] type 01 class 0x060400
[    0.802413] pci 0000:02:01.0: enabling Extended Tags
[    0.802475] pci 0000:02:01.0: PME# supported from D3hot D3cold
[    0.802558] pci 0000:02:04.0: [1022:43c7] type 01 class 0x060400
[    0.802616] pci 0000:02:04.0: enabling Extended Tags
[    0.802678] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.802775] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.802780] pci 0000:01:00.2:   bridge window [io  0xd000-0xefff]
[    0.802783] pci 0000:01:00.2:   bridge window [mem 0xf6000000-0xf72fffff]
[    0.802788] pci 0000:01:00.2:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.802827] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.802898] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[    0.802943] pci 0000:04:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.802982] pci 0000:04:00.0: reg 0x18: [mem 0xf7204000-0xf7204fff 64bit]
[    0.803006] pci 0000:04:00.0: reg 0x20: [mem 0xf7200000-0xf7203fff 64bit]
[    0.803158] pci 0000:04:00.0: supports D1 D2
[    0.803159] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.803375] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.803380] pci 0000:02:01.0:   bridge window [io  0xe000-0xefff]
[    0.803383] pci 0000:02:01.0:   bridge window [mem 0xf7200000-0xf72fffff]
[    0.803446] pci 0000:05:00.0: [10de:1187] type 00 class 0x030000
[    0.803485] pci 0000:05:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.803503] pci 0000:05:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
[    0.803521] pci 0000:05:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.803531] pci 0000:05:00.0: reg 0x24: [io  0xd000-0xd07f]
[    0.803541] pci 0000:05:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.803553] pci 0000:05:00.0: enabling Extended Tags
[    0.803731] pci 0000:05:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x4 link at 0000:02:04.0 (capable of 126.016 Gb/s with 8 GT/s x16 link)
[    0.803777] pci 0000:05:00.1: [10de:0e0a] type 00 class 0x040300
[    0.803811] pci 0000:05:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.803903] pci 0000:05:00.1: enabling Extended Tags
[    0.804105] pci 0000:02:04.0: PCI bridge to [bus 05]
[    0.804110] pci 0000:02:04.0:   bridge window [io  0xd000-0xdfff]
[    0.804113] pci 0000:02:04.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.804118] pci 0000:02:04.0:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.804176] pci 0000:06:00.0: [1002:67df] type 00 class 0x030000
[    0.804203] pci 0000:06:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.804213] pci 0000:06:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.804220] pci 0000:06:00.0: reg 0x20: [io  0xf000-0xf0ff]
[    0.804226] pci 0000:06:00.0: reg 0x24: [mem 0xf7a00000-0xf7a3ffff]
[    0.804233] pci 0000:06:00.0: reg 0x30: [mem 0xf7a40000-0xf7a5ffff pref]
[    0.804245] pci 0000:06:00.0: BAR 0: assigned to efifb
[    0.804305] pci 0000:06:00.0: supports D1 D2
[    0.804305] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.804381] pci 0000:06:00.1: [1002:aaf0] type 00 class 0x040300
[    0.804403] pci 0000:06:00.1: reg 0x10: [mem 0xf7a60000-0xf7a63fff 64bit]
[    0.804484] pci 0000:06:00.1: supports D1 D2
[    0.804575] pci 0000:00:03.1: PCI bridge to [bus 06]
[    0.804577] pci 0000:00:03.1:   bridge window [io  0xf000-0xffff]
[    0.804579] pci 0000:00:03.1:   bridge window [mem 0xf7a00000-0xf7afffff]
[    0.804582] pci 0000:00:03.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.804616] pci 0000:07:00.0: [1022:148a] type 00 class 0x130000
[    0.804650] pci 0000:07:00.0: enabling Extended Tags
[    0.804755] pci 0000:00:07.1: PCI bridge to [bus 07]
[    0.804804] pci 0000:08:00.0: [1022:1485] type 00 class 0x130000
[    0.804845] pci 0000:08:00.0: enabling Extended Tags
[    0.804946] pci 0000:08:00.1: [1022:1486] type 00 class 0x108000
[    0.804967] pci 0000:08:00.1: reg 0x18: [mem 0xf7600000-0xf76fffff]
[    0.804979] pci 0000:08:00.1: reg 0x24: [mem 0xf7708000-0xf7709fff]
[    0.804987] pci 0000:08:00.1: enabling Extended Tags
[    0.805076] pci 0000:08:00.3: [1022:149c] type 00 class 0x0c0330
[    0.805094] pci 0000:08:00.3: reg 0x10: [mem 0xf7500000-0xf75fffff 64bit]
[    0.805124] pci 0000:08:00.3: enabling Extended Tags
[    0.805169] pci 0000:08:00.3: PME# supported from D0 D3hot D3cold
[    0.805225] pci 0000:08:00.4: [1022:1487] type 00 class 0x040300
[    0.805239] pci 0000:08:00.4: reg 0x10: [mem 0xf7700000-0xf7707fff]
[    0.805265] pci 0000:08:00.4: enabling Extended Tags
[    0.805307] pci 0000:08:00.4: PME# supported from D0 D3hot D3cold
[    0.805389] pci 0000:00:08.1: PCI bridge to [bus 08]
[    0.805393] pci 0000:00:08.1:   bridge window [mem 0xf7500000-0xf77fffff]
[    0.805431] pci 0000:09:00.0: [1022:7901] type 00 class 0x010601
[    0.805474] pci 0000:09:00.0: reg 0x24: [mem 0xf7900000-0xf79007ff]
[    0.805484] pci 0000:09:00.0: enabling Extended Tags
[    0.805537] pci 0000:09:00.0: PME# supported from D3hot D3cold
[    0.805624] pci 0000:00:08.2: PCI bridge to [bus 09]
[    0.805628] pci 0000:00:08.2:   bridge window [mem 0xf7900000-0xf79fffff]
[    0.805666] pci 0000:0a:00.0: [1022:7901] type 00 class 0x010601
[    0.805709] pci 0000:0a:00.0: reg 0x24: [mem 0xf7800000-0xf78007ff]
[    0.805718] pci 0000:0a:00.0: enabling Extended Tags
[    0.805772] pci 0000:0a:00.0: PME# supported from D3hot D3cold
[    0.805860] pci 0000:00:08.3: PCI bridge to [bus 0a]
[    0.805864] pci 0000:00:08.3:   bridge window [mem 0xf7800000-0xf78fffff]
[    0.806163] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.806203] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.806238] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.806280] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.806319] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.806355] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.806386] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.806418] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.806778] iommu: Default domain type: Translated 
[    0.806784] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.806784] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[    0.806784] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.806784] pci 0000:05:00.0: vgaarb: bridge control possible
[    0.806784] pci 0000:06:00.0: vgaarb: bridge control possible
[    0.806784] vgaarb: loaded
[    0.806849] SCSI subsystem initialized
[    0.806874] libata version 3.00 loaded.
[    0.806874] ACPI: bus type USB registered
[    0.806874] usbcore: registered new interface driver usbfs
[    0.806874] usbcore: registered new interface driver hub
[    0.806874] usbcore: registered new device driver usb
[    0.806874] pps_core: LinuxPPS API ver. 1 registered
[    0.806874] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.806874] PTP clock support registered
[    0.806874] EDAC MC: Ver: 3.0.0
[    0.806874] Registered efivars operations
[    0.806874] PCI: Using ACPI for IRQ routing
[    0.808448] PCI: pci_cache_line_size set to 64 bytes
[    0.808524] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.808525] e820: reserve RAM buffer [mem 0x09d02000-0x0bffffff]
[    0.808526] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.808526] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.808527] e820: reserve RAM buffer [mem 0xc7a9e000-0xc7ffffff]
[    0.808527] e820: reserve RAM buffer [mem 0xca2f7000-0xcbffffff]
[    0.808527] e820: reserve RAM buffer [mem 0xcb1f6000-0xcbffffff]
[    0.808528] e820: reserve RAM buffer [mem 0xcc892000-0xcfffffff]
[    0.808528] e820: reserve RAM buffer [mem 0xcf000000-0xcfffffff]
[    0.808529] e820: reserve RAM buffer [mem 0x42f380000-0x42fffffff]
[    0.808594] NetLabel: Initializing
[    0.808595] NetLabel:  domain hash size = 128
[    0.808595] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.808602] NetLabel:  unlabeled traffic allowed by default
[    0.810029] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.810031] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.813341] clocksource: Switched to clocksource tsc-early
[    0.820564] *** VALIDATE bpf ***
[    0.820623] VFS: Disk quotas dquot_6.6.0
[    0.820636] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.820649] *** VALIDATE ramfs ***
[    0.820651] *** VALIDATE hugetlbfs ***
[    0.820676] pnp: PnP ACPI init
[    0.820779] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.820782] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.820803] system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved
[    0.820804] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.820870] system 00:02: [mem 0xfd000000-0xfd0fffff] has been reserved
[    0.820871] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.820904] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.821043] system 00:04: [io  0x0280-0x028f] has been reserved
[    0.821044] system 00:04: [io  0x0290-0x029f] has been reserved
[    0.821045] system 00:04: [io  0x02a0-0x02af] has been reserved
[    0.821046] system 00:04: [io  0x02b0-0x02bf] has been reserved
[    0.821047] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.821235] pnp 00:05: [dma 0 disabled]
[    0.821256] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.821437] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.821438] system 00:06: [io  0x040b] has been reserved
[    0.821439] system 00:06: [io  0x04d6] has been reserved
[    0.821439] system 00:06: [io  0x0c00-0x0c01] has been reserved
[    0.821440] system 00:06: [io  0x0c14] has been reserved
[    0.821441] system 00:06: [io  0x0c50-0x0c51] has been reserved
[    0.821441] system 00:06: [io  0x0c52] has been reserved
[    0.821442] system 00:06: [io  0x0c6c] has been reserved
[    0.821443] system 00:06: [io  0x0c6f] has been reserved
[    0.821443] system 00:06: [io  0x0cd0-0x0cd1] has been reserved
[    0.821444] system 00:06: [io  0x0cd2-0x0cd3] has been reserved
[    0.821445] system 00:06: [io  0x0cd4-0x0cd5] has been reserved
[    0.821445] system 00:06: [io  0x0cd6-0x0cd7] has been reserved
[    0.821446] system 00:06: [io  0x0cd8-0x0cdf] has been reserved
[    0.821447] system 00:06: [io  0x0800-0x089f] has been reserved
[    0.821447] system 00:06: [io  0x0b00-0x0b0f] has been reserved
[    0.821448] system 00:06: [io  0x0b20-0x0b3f] has been reserved
[    0.821449] system 00:06: [io  0x0900-0x090f] has been reserved
[    0.821449] system 00:06: [io  0x0910-0x091f] has been reserved
[    0.821450] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.821451] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.821452] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.821453] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.821453] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.821454] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.821455] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.821457] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.821780] pnp: PnP ACPI: found 7 devices
[    0.827051] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.827080] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.827092] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.827094] pci 0000:02:01.0:   bridge window [io  0xe000-0xefff]
[    0.827099] pci 0000:02:01.0:   bridge window [mem 0xf7200000-0xf72fffff]
[    0.827107] pci 0000:02:04.0: PCI bridge to [bus 05]
[    0.827109] pci 0000:02:04.0:   bridge window [io  0xd000-0xdfff]
[    0.827113] pci 0000:02:04.0:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.827116] pci 0000:02:04.0:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827121] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.827123] pci 0000:01:00.2:   bridge window [io  0xd000-0xefff]
[    0.827127] pci 0000:01:00.2:   bridge window [mem 0xf6000000-0xf72fffff]
[    0.827130] pci 0000:01:00.2:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827135] pci 0000:00:01.3: PCI bridge to [bus 01-05]
[    0.827136] pci 0000:00:01.3:   bridge window [io  0xd000-0xefff]
[    0.827139] pci 0000:00:01.3:   bridge window [mem 0xf6000000-0xf73fffff]
[    0.827141] pci 0000:00:01.3:   bridge window [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827145] pci 0000:00:03.1: PCI bridge to [bus 06]
[    0.827146] pci 0000:00:03.1:   bridge window [io  0xf000-0xffff]
[    0.827148] pci 0000:00:03.1:   bridge window [mem 0xf7a00000-0xf7afffff]
[    0.827150] pci 0000:00:03.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.827154] pci 0000:00:07.1: PCI bridge to [bus 07]
[    0.827160] pci 0000:00:08.1: PCI bridge to [bus 08]
[    0.827163] pci 0000:00:08.1:   bridge window [mem 0xf7500000-0xf77fffff]
[    0.827167] pci 0000:00:08.2: PCI bridge to [bus 09]
[    0.827170] pci 0000:00:08.2:   bridge window [mem 0xf7900000-0xf79fffff]
[    0.827174] pci 0000:00:08.3: PCI bridge to [bus 0a]
[    0.827176] pci 0000:00:08.3:   bridge window [mem 0xf7800000-0xf78fffff]
[    0.827182] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.827182] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.827183] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.827184] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.827185] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.827185] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.827186] pci_bus 0000:00: resource 10 [mem 0xd0000000-0xfec2ffff window]
[    0.827187] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.827188] pci_bus 0000:01: resource 0 [io  0xd000-0xefff]
[    0.827189] pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf73fffff]
[    0.827189] pci_bus 0000:01: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827190] pci_bus 0000:02: resource 0 [io  0xd000-0xefff]
[    0.827191] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf72fffff]
[    0.827192] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827193] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
[    0.827193] pci_bus 0000:04: resource 1 [mem 0xf7200000-0xf72fffff]
[    0.827194] pci_bus 0000:05: resource 0 [io  0xd000-0xdfff]
[    0.827195] pci_bus 0000:05: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.827195] pci_bus 0000:05: resource 2 [mem 0xe8000000-0xf1ffffff 64bit pref]
[    0.827196] pci_bus 0000:06: resource 0 [io  0xf000-0xffff]
[    0.827197] pci_bus 0000:06: resource 1 [mem 0xf7a00000-0xf7afffff]
[    0.827198] pci_bus 0000:06: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.827199] pci_bus 0000:08: resource 1 [mem 0xf7500000-0xf77fffff]
[    0.827200] pci_bus 0000:09: resource 1 [mem 0xf7900000-0xf79fffff]
[    0.827200] pci_bus 0000:0a: resource 1 [mem 0xf7800000-0xf78fffff]
[    0.827270] NET: Registered protocol family 2
[    0.827393] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.827503] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.827714] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.827788] TCP: Hash tables configured (established 131072 bind 65536)
[    0.827854] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.827899] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.828060] NET: Registered protocol family 1
[    0.828063] NET: Registered protocol family 44
[    0.828220] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    0.828232] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.828236] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
[    0.828433] PCI: CLS 64 bytes, default 64
[    0.828468] Trying to unpack rootfs image as initramfs...
[    0.911504] Freeing initrd memory: 9220K
[    0.911507] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.911508] software IO TLB: mapped [mem 0xc2fcb000-0xc6fcb000] (64MB)
[    0.911541] amd_uncore: AMD NB counters detected
[    0.911545] amd_uncore: AMD LLC counters detected
[    0.911810] LVT offset 0 assigned for vector 0x400
[    0.911906] perf: AMD IBS detected (0x000003ff)
[    0.911936] check: Scanning for low memory corruption every 60 seconds
[    0.912321] Initialise system trusted keyrings
[    0.912330] Key type blacklist registered
[    0.912395] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[    0.913149] zbud: loaded
[    0.914932] Key type asymmetric registered
[    0.914934] Asymmetric key parser 'x509' registered
[    0.914939] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.914985] io scheduler mq-deadline registered
[    0.914985] io scheduler kyber registered
[    0.915001] io scheduler bfq registered
[    0.915194] pcieport 0000:00:01.3: PME: Signaling with IRQ 25
[    0.915293] pcieport 0000:00:03.1: PME: Signaling with IRQ 26
[    0.915415] pcieport 0000:00:07.1: PME: Signaling with IRQ 28
[    0.915470] pcieport 0000:00:07.1: AER: enabled with IRQ 28
[    0.915543] pcieport 0000:00:08.1: PME: Signaling with IRQ 29
[    0.915603] pcieport 0000:00:08.1: AER: enabled with IRQ 29
[    0.915705] pcieport 0000:00:08.2: PME: Signaling with IRQ 30
[    0.915760] pcieport 0000:00:08.2: AER: enabled with IRQ 30
[    0.915863] pcieport 0000:00:08.3: PME: Signaling with IRQ 31
[    0.915907] pcieport 0000:00:08.3: AER: enabled with IRQ 31
[    0.916390] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.916429] efifb: probing for efifb
[    0.916454] efifb: showing boot graphics
[    0.917541] efifb: framebuffer at 0xd0000000, using 8128k, total 8128k
[    0.917541] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.917541] efifb: scrolling: redraw
[    0.917542] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.917577] fbcon: Deferring console take-over
[    0.917577] fb0: EFI VGA frame buffer device
[    0.917613] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.917622] ACPI: Power Button [PWRB]
[    0.917642] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.918715] ACPI: Power Button [PWRF]
[    0.918794] Monitor-Mwait will be used to enter C-1 state
[    0.918798] ACPI: \_PR_.C000: Found 2 idle states
[    0.918914] ACPI: \_PR_.C002: Found 2 idle states
[    0.918969] ACPI: \_PR_.C004: Found 2 idle states
[    0.919029] ACPI: \_PR_.C006: Found 2 idle states
[    0.919096] ACPI: \_PR_.C008: Found 2 idle states
[    0.919212] ACPI: \_PR_.C00A: Found 2 idle states
[    0.919273] ACPI: \_PR_.C00C: Found 2 idle states
[    0.919340] ACPI: \_PR_.C00E: Found 2 idle states
[    0.919390] ACPI: \_PR_.C001: Found 2 idle states
[    0.919503] ACPI: \_PR_.C003: Found 2 idle states
[    0.919598] ACPI: \_PR_.C005: Found 2 idle states
[    0.919680] ACPI: \_PR_.C007: Found 2 idle states
[    0.919792] ACPI: \_PR_.C009: Found 2 idle states
[    0.919900] ACPI: \_PR_.C00B: Found 2 idle states
[    0.919961] ACPI: \_PR_.C00D: Found 2 idle states
[    0.920051] ACPI: \_PR_.C00F: Found 2 idle states
[    0.920243] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.920378] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.921190] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.921191] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.922001] ahci 0000:01:00.1: version 3.0
[    0.922078] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    0.922118] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    0.922120] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.922458] scsi host0: ahci
[    0.922537] scsi host1: ahci
[    0.922608] scsi host2: ahci
[    0.922686] scsi host3: ahci
[    0.922742] scsi host4: ahci
[    0.922802] scsi host5: ahci
[    0.922863] scsi host6: ahci
[    0.922929] scsi host7: ahci
[    0.922950] ata1: SATA max UDMA/133 abar m131072@0xf7380000 port 0xf7380100 irq 38
[    0.922952] ata2: SATA max UDMA/133 abar m131072@0xf7380000 port 0xf7380180 irq 38
[    0.922952] ata3: DUMMY
[    0.922953] ata4: DUMMY
[    0.922954] ata5: SATA max UDMA/133 abar m131072@0xf7380000 port 0xf7380300 irq 38
[    0.922955] ata6: SATA max UDMA/133 abar m131072@0xf7380000 port 0xf7380380 irq 38
[    0.922956] ata7: DUMMY
[    0.922956] ata8: DUMMY
[    0.923061] ahci 0000:09:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.923062] ahci 0000:09:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.923157] scsi host8: ahci
[    0.923180] ata9: SATA max UDMA/133 abar m2048@0xf7900000 port 0xf7900100 irq 40
[    0.923258] ahci 0000:0a:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.923259] ahci 0000:0a:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.923361] scsi host9: ahci
[    0.923395] ata10: SATA max UDMA/133 abar m2048@0xf7800000 port 0xf7800100 irq 42
[    0.923421] usbcore: registered new interface driver usbserial_generic
[    0.923423] usbserial: USB Serial support registered for generic
[    0.923439] rtc_cmos 00:03: RTC can wake from S4
[    0.923584] rtc_cmos 00:03: registered as rtc0
[    0.923594] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.923724] ledtrig-cpu: registered to indicate activity on CPUs
[    0.923862] drop_monitor: Initializing network drop monitor service
[    0.923981] NET: Registered protocol family 10
[    0.927105] Segment Routing with IPv6
[    0.927117] NET: Registered protocol family 17
[    0.927866] RAS: Correctable Errors collector initialized.
[    0.927904] microcode: CPU0: patch_level=0x08701013
[    0.927920] microcode: CPU1: patch_level=0x08701013
[    0.927925] microcode: CPU2: patch_level=0x08701013
[    0.927931] microcode: CPU3: patch_level=0x08701013
[    0.927946] microcode: CPU4: patch_level=0x08701013
[    0.927949] microcode: CPU5: patch_level=0x08701013
[    0.927954] microcode: CPU6: patch_level=0x08701013
[    0.927961] microcode: CPU7: patch_level=0x08701013
[    0.927966] microcode: CPU8: patch_level=0x08701013
[    0.927971] microcode: CPU9: patch_level=0x08701013
[    0.927977] microcode: CPU10: patch_level=0x08701013
[    0.927984] microcode: CPU11: patch_level=0x08701013
[    0.927989] microcode: CPU12: patch_level=0x08701013
[    0.927993] microcode: CPU13: patch_level=0x08701013
[    0.927997] microcode: CPU14: patch_level=0x08701013
[    0.928001] microcode: CPU15: patch_level=0x08701013
[    0.928035] microcode: Microcode Update Driver: v2.2.
[    0.928180] *** VALIDATE resctrl ***
[    0.928183] resctrl: L3 allocation detected
[    0.928183] resctrl: L3DATA allocation detected
[    0.928184] resctrl: L3CODE allocation detected
[    0.928184] resctrl: MB allocation detected
[    0.928184] resctrl: L3 monitoring detected
[    0.928187] IPI shorthand broadcast: enabled
[    0.928193] sched_clock: Marking stable (948172463, -19996733)->(934262098, -6086368)
[    0.928296] registered taskstats version 1
[    0.928304] Loading compiled-in X.509 certificates
[    0.930052] Loaded X.509 cert 'Build time autogenerated kernel key: 3173f57ffc4f79528759736b0e979de68a36535c'
[    0.930104] zswap: loaded using pool lzo/zbud
[    0.930251] Key type ._fscrypt registered
[    0.930251] Key type .fscrypt registered
[    0.930251] Key type fscrypt-provisioning registered
[    0.933052] Key type big_key registered
[    0.933364] PM:   Magic number: 4:842:747
[    0.933487] rtc_cmos 00:03: setting system clock to 2020-05-02T19:43:10 UTC (1588448590)
[    1.233967] ata9: SATA link down (SStatus 0 SControl 300)
[    1.233999] ata10: SATA link down (SStatus 0 SControl 300)
[    1.390454] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.391274] ata1.00: ATA-9: WDC WD10EZEX-00BN5A0, 01.01A01, max UDMA/133
[    1.391275] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.392077] ata1.00: configured for UDMA/133
[    1.392261] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00B 1A01 PQ: 0 ANSI: 5
[    1.392403] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.392405] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.392410] sd 0:0:0:0: [sda] Write Protect is off
[    1.392411] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.392420] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.471785]  sda: sda1
[    1.472142] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.863787] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.865314] ata2.00: ATA-9: WDC WD10EZEX-00BN5A0, 01.01A01, max UDMA/133
[    1.865315] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.866049] ata2.00: configured for UDMA/133
[    1.866169] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00B 1A01 PQ: 0 ANSI: 5
[    1.866318] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.866319] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    1.866325] sd 1:0:0:0: [sdb] Write Protect is off
[    1.866325] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.866332] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.927147] tsc: Refined TSC clocksource calibration: 3593.246 MHz
[    1.927283] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33cb66efe9d, max_idle_ns: 440795351205 ns
[    1.927326] clocksource: Switched to clocksource tsc
[    1.943251]  sdb: sdb1
[    1.943602] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.337137] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.380782] ata5.00: ATA-10: KINGSTON SA400S37240G, 03070009, max UDMA/133
[    2.380784] ata5.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    2.397569] ata5.00: configured for UDMA/133
[    2.397720] scsi 4:0:0:0: Direct-Access     ATA      KINGSTON SA400S3 0009 PQ: 0 ANSI: 5
[    2.397863] sd 4:0:0:0: [sdc] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    2.397869] sd 4:0:0:0: [sdc] Write Protect is off
[    2.397870] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    2.397879] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.401077]  sdc: sdc1 sdc2 sdc3 sdc4
[    2.401463] sd 4:0:0:0: [sdc] Attached SCSI disk
[    2.708086] ata6: SATA link down (SStatus 0 SControl 330)
[    2.709211] Freeing unused decrypted memory: 2040K
[    2.709472] Freeing unused kernel image (initmem) memory: 1620K
[    2.709474] Write protecting the kernel read-only data: 20480k
[    2.709968] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    2.710258] Freeing unused kernel image (rodata/data gap) memory: 1640K
[    2.725188] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.725190] Run /init as init process
[    2.725191]   with arguments:
[    2.725191]     /init
[    2.725192]   with environment:
[    2.725192]     HOME=/
[    2.725192]     TERM=linux
[    2.725193]     BOOT_IMAGE=/boot/vmlinuz-linux
[    2.757685] fbcon: Taking over console
[    2.757744] Console: switching to colour frame buffer device 240x67
[    2.804781] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.804787] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    2.846618] random: fast init done
[    2.860085] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    2.860236] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.06
[    2.860237] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.860238] usb usb1: Product: xHCI Host Controller
[    2.860239] usb usb1: Manufacturer: Linux 5.6.8-arch1-1 xhci-hcd
[    2.860239] usb usb1: SerialNumber: 0000:01:00.0
[    2.860319] hub 1-0:1.0: USB hub found
[    2.860334] hub 1-0:1.0: 10 ports detected
[    2.860809] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.860812] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    2.860814] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.860851] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.860862] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.06
[    2.860863] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.860863] usb usb2: Product: xHCI Host Controller
[    2.860864] usb usb2: Manufacturer: Linux 5.6.8-arch1-1 xhci-hcd
[    2.860865] usb usb2: SerialNumber: 0000:01:00.0
[    2.860914] hub 2-0:1.0: USB hub found
[    2.860922] hub 2-0:1.0: 4 ports detected
[    2.861303] xhci_hcd 0000:08:00.3: xHCI Host Controller
[    2.861306] xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 3
[    2.861409] xhci_hcd 0000:08:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410
[    2.861572] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.06
[    2.861572] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.861573] usb usb3: Product: xHCI Host Controller
[    2.861573] usb usb3: Manufacturer: Linux 5.6.8-arch1-1 xhci-hcd
[    2.861574] usb usb3: SerialNumber: 0000:08:00.3
[    2.861624] hub 3-0:1.0: USB hub found
[    2.861630] hub 3-0:1.0: 4 ports detected
[    2.861767] xhci_hcd 0000:08:00.3: xHCI Host Controller
[    2.861769] xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 4
[    2.861771] xhci_hcd 0000:08:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    2.861782] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.861797] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.06
[    2.861798] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.861799] usb usb4: Product: xHCI Host Controller
[    2.861799] usb usb4: Manufacturer: Linux 5.6.8-arch1-1 xhci-hcd
[    2.861800] usb usb4: SerialNumber: 0000:08:00.3
[    2.861851] hub 4-0:1.0: USB hub found
[    2.861857] hub 4-0:1.0: 4 ports detected
[    2.957297] EXT4-fs (sdc2): mounted filesystem with ordered data mode. Opts: (null)
[    3.086248] systemd[1]: systemd 245.5-2-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    3.100078] systemd[1]: Detected architecture x86-64.
[    3.127432] systemd[1]: Set hostname to <archlinux>.
[    3.190018] usb 1-3: new high-speed USB device number 2 using xhci_hcd
[    3.190025] usb 3-1: new full-speed USB device number 2 using xhci_hcd
[    3.305080] systemd[1]: Created slice system-getty.slice.
[    3.305209] systemd[1]: Created slice system-modprobe.slice.
[    3.305382] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.305515] systemd[1]: Created slice User and Session Slice.
[    3.305541] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.305556] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.305635] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.305648] systemd[1]: Reached target Local Encrypted Volumes.
[    3.305653] systemd[1]: Reached target Login Prompts.
[    3.305662] systemd[1]: Reached target Paths.
[    3.305667] systemd[1]: Reached target Remote File Systems.
[    3.305672] systemd[1]: Reached target Slices.
[    3.305710] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.305746] systemd[1]: Listening on LVM2 metadata daemon socket.
[    3.305772] systemd[1]: Listening on LVM2 poll daemon socket.
[    3.306656] systemd[1]: Listening on Process Core Dump Socket.
[    3.306682] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    3.306739] systemd[1]: Listening on Journal Audit Socket.
[    3.306773] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.306806] systemd[1]: Listening on Journal Socket.
[    3.306840] systemd[1]: Listening on udev Control Socket.
[    3.306862] systemd[1]: Listening on udev Kernel Socket.
[    3.307245] systemd[1]: Mounting Huge Pages File System...
[    3.307746] systemd[1]: Mounting POSIX Message Queue File System...
[    3.308170] systemd[1]: Mounting Kernel Debug File System...
[    3.308674] systemd[1]: Mounting Kernel Trace File System...
[    3.309219] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    3.309779] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    3.310184] systemd[1]: Starting Load Kernel Module drm...
[    3.311073] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    3.311088] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    3.311870] systemd[1]: Starting Journal Service...
[    3.313182] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[    3.313226] systemd[1]: Condition check resulted in FUSE Control File System being skipped.
[    3.313719] systemd[1]: Mounting Kernel Configuration File System...
[    3.314140] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.314532] systemd[1]: Starting Apply Kernel Variables...
[    3.314981] systemd[1]: Starting udev Coldplug all Devices...
[    3.315632] systemd[1]: Mounted Huge Pages File System.
[    3.315693] systemd[1]: Mounted POSIX Message Queue File System.
[    3.315742] systemd[1]: Mounted Kernel Debug File System.
[    3.315781] systemd[1]: Mounted Kernel Trace File System.
[    3.315986] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    3.316092] systemd[1]: Mounted Kernel Configuration File System.
[    3.319306] Linux agpgart interface v0.103
[    3.320174] EXT4-fs (sdc2): re-mounted. Opts: (null)
[    3.320634] systemd[1]: Finished Remount Root and Kernel File Systems.
[    3.320701] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    3.323058] random: lvm: uninitialized urandom read (4 bytes read)
[    3.324069] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    3.324473] systemd[1]: Starting Load/Save Random Seed...
[    3.324490] systemd[1]: Condition check resulted in Create System Users being skipped.
[    3.324933] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.325238] systemd[1]: Finished Apply Kernel Variables.
[    3.325855] systemd[1]: Started LVM2 metadata daemon.
[    3.337864] systemd[1]: Finished Create Static Device Nodes in /dev.
[    3.338487] systemd[1]: Starting udev Kernel Device Manager...
[    3.340022] systemd[1]: modprobe@drm.service: Succeeded.
[    3.340193] systemd[1]: Finished Load Kernel Module drm.
[    3.357800] usb 3-1: New USB device found, idVendor=1532, idProduct=011a, bcdDevice= 2.00
[    3.357801] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.357802] usb 3-1: Product: Razer BlackWidow Ultimate
[    3.357803] usb 3-1: Manufacturer: Razer
[    3.359239] systemd[1]: Finished udev Coldplug all Devices.
[    3.365388] usb 1-3: New USB device found, idVendor=058f, idProduct=6387, bcdDevice= 1.00
[    3.365389] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.365390] usb 1-3: Product: Mass Storage
[    3.365391] usb 1-3: Manufacturer: Generic
[    3.365391] usb 1-3: SerialNumber: 0B8791F4
[    3.501170] systemd[1]: Started Journal Service.
[    3.501228] audit: type=1130 audit(1588448593.063:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.506718] systemd-journald[412]: Received client request to flush runtime journal.
[    3.512245] systemd-journald[412]: File /var/log/journal/21f10e60de09474f919964754c0190a8/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    3.513349] usb 3-3: new full-speed USB device number 3 using xhci_hcd
[    3.557110] audit: type=1130 audit(1588448593.120:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.573402] acpi_cpufreq: overriding BIOS provided _PSD data
[    3.601742] audit: type=1130 audit(1588448593.163:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.616881] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    3.654708] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    3.654714] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    3.676722] Adding 31250428k swap on /dev/sdc3.  Priority:-2 extents:1 across:31250428k SSFS
[    3.677620] cryptd: max_cpu_qlen set to 1000
[    3.678264] IPMI message handler: version 39.2
[    3.679862] ipmi device interface
[    3.684829] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    3.684923] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    3.684928] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[    3.685472] AVX2 version of gcm_enc/dec engaged.
[    3.685473] AES CTR mode by8 optimization enabled
[    3.688504] ccp 0000:08:00.1: enabling device (0000 -> 0002)
[    3.688680] ccp 0000:08:00.1: ccp: unable to access the device: you might be running a broken BIOS.
[    3.696804] usb 3-3: New USB device found, idVendor=1ea7, idProduct=1005, bcdDevice= 1.04
[    3.696806] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.696807] usb 3-3: Product: Gaming Mouse
[    3.696808] usb 3-3: Manufacturer: BTL
[    3.708070] libphy: r8169: probed
[    3.708272] r8169 0000:04:00.0 eth0: RTL8168h/8111h, a8:a1:59:13:28:5e, XID 541, IRQ 56
[    3.708273] r8169 0000:04:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    3.734372] r8169 0000:04:00.0 enp4s0: renamed from eth0
[    3.768959] usb-storage 1-3:1.0: USB Mass Storage device detected
[    3.769062] scsi host10: usb-storage 1-3:1.0
[    3.769170] usbcore: registered new interface driver usb-storage
[    3.808203] audit: type=1130 audit(1588448593.370:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.840113] usb 3-4: new full-speed USB device number 4 using xhci_hcd
[    3.862413] audit: type=1130 audit(1588448593.423:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-A615\x2d7677 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.865388] usbcore: registered new interface driver uas
[    3.872245] snd_hda_intel 0000:05:00.1: Disabling MSI
[    3.872253] snd_hda_intel 0000:05:00.1: Handle vga_switcheroo audio client
[    3.872431] snd_hda_intel 0000:06:00.1: Force to non-snoop mode
[    3.872642] snd_hda_intel 0000:08:00.4: enabling device (0000 -> 0002)
[    3.903368] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC892: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    3.903370] snd_hda_codec_realtek hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.903372] snd_hda_codec_realtek hdaudioC2D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    3.903373] snd_hda_codec_realtek hdaudioC2D0:    mono: mono_out=0x0
[    3.903373] snd_hda_codec_realtek hdaudioC2D0:    inputs:
[    3.903375] snd_hda_codec_realtek hdaudioC2D0:      Front Mic=0x19
[    3.903376] snd_hda_codec_realtek hdaudioC2D0:      Rear Mic=0x18
[    3.903377] snd_hda_codec_realtek hdaudioC2D0:      Line=0x1a
[    3.908412] random: crng init done
[    3.911727] audit: type=1130 audit(1588448593.473:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.912492] kvm: Nested Virtualization enabled
[    3.912516] kvm: Nested Paging enabled
[    3.912517] SVM: Virtual VMLOAD VMSAVE supported
[    3.912518] SVM: Virtual GIF supported
[    3.916007] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/sound/card2/input9
[    3.916037] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/sound/card2/input10
[    3.916059] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/sound/card2/input11
[    3.916095] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/sound/card2/input12
[    3.916127] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/sound/card2/input13
[    3.923398] MCE: In-kernel MCE decoding enabled.
[    3.923904] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input3
[    3.923953] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input4
[    3.924007] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input5
[    3.924059] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input6
[    3.924117] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input7
[    3.924152] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input14
[    3.924175] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input8
[    3.924418] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input15
[    3.924491] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input16
[    3.924528] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input17
[    3.924563] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input18
[    3.924596] input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input19
[    3.924628] input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:01.3/0000:01:00.2/0000:02:04.0/0000:05:00.1/sound/card1/input20
[    3.926436] EDAC amd64: F17h_M70h detected (node 0).
[    3.926487] EDAC amd64: Node 0: DRAM ECC disabled.
[    3.994021] audit: type=1130 audit(1588448593.557:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-sdc4 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.996807] usb 3-4: New USB device found, idVendor=0d8c, idProduct=0134, bcdDevice= 1.00
[    3.996810] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.996812] usb 3-4: Product: TONOR TC-777 Audio Device
[    3.996813] usb 3-4: Manufacturer: C-Media Electronics Inc.
[    3.999893] EXT4-fs (sdc4): mounted filesystem with ordered data mode. Opts: (null)
[    4.016660] audit: type=1130 audit(1588448593.577:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.022640] audit: type=1127 audit(1588448593.583:10): pid=565 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
[    4.061166] EDAC amd64: F17h_M70h detected (node 0).
[    4.061220] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.062084] hid: raw HID events driver (C) Jiri Kosina
[    4.167506] EDAC amd64: F17h_M70h detected (node 0).
[    4.167556] [drm] amdgpu kernel modesetting enabled.
[    4.167561] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.167620] Parsing CRAT table with 1 nodes
[    4.167624] Ignoring ACPI CRAT on non-APU system
[    4.167628] Virtual CRAT table created for CPU
[    4.167629] Parsing CRAT table with 1 nodes
[    4.167630] Creating topology SYSFS entries
[    4.167638] Topology: Add CPU node
[    4.167639] Finished initializing topology
[    4.167723] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
[    4.167723] fb0: switching to amdgpudrmfb from EFI VGA
[    4.167779] Console: switching to colour dummy device 80x25
[    4.167809] amdgpu 0000:06:00.0: vgaarb: deactivate vga console
[    4.168009] [drm] initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1682:0xC570 0xEF).
[    4.168020] [drm] register mmio base: 0xF7A00000
[    4.168021] [drm] register mmio size: 262144
[    4.168028] [drm] add ip block number 0 <vi_common>
[    4.168030] [drm] add ip block number 1 <gmc_v8_0>
[    4.168031] [drm] add ip block number 2 <tonga_ih>
[    4.168032] [drm] add ip block number 3 <gfx_v8_0>
[    4.168033] [drm] add ip block number 4 <sdma_v3_0>
[    4.168034] [drm] add ip block number 5 <powerplay>
[    4.168036] [drm] add ip block number 6 <dm>
[    4.168037] [drm] add ip block number 7 <uvd_v6_0>
[    4.168038] [drm] add ip block number 8 <vce_v3_0>
[    4.168214] amdgpu 0000:06:00.0: No more image in the PCI ROM
[    4.168238] ATOM BIOS: 113-57045EHB2-W90
[    4.168255] [drm] UVD is enabled in VM mode
[    4.168256] [drm] UVD ENC is enabled in VM mode
[    4.168258] [drm] VCE enabled in VM mode
[    4.168281] [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
[    4.168949] amdgpu 0000:06:00.0: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)
[    4.168951] amdgpu 0000:06:00.0: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
[    4.168956] [drm] Detected VRAM RAM=4096M, BAR=256M
[    4.168957] [drm] RAM width 256bits GDDR5
[    4.169002] [TTM] Zone  kernel: Available graphics memory: 8161420 KiB
[    4.169002] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.169003] [TTM] Initializing pool allocator
[    4.169006] [TTM] Initializing DMA pool allocator
[    4.169036] [drm] amdgpu: 4096M of VRAM memory ready
[    4.169038] [drm] amdgpu: 4096M of GTT memory ready.
[    4.169053] [drm] GART: num cpu pages 65536, num gpu pages 65536
[    4.171398] [drm] PCIE GART of 256M enabled (table at 0x000000F4007E9000).
[    4.173020] [drm] Chained IB support enabled!
[    4.178142] amdgpu: [powerplay] hwmgr_sw_init smu backed is polaris10_smu
[    4.179772] [drm] Found UVD firmware Version: 1.130 Family ID: 16
[    4.181389] [drm] Found VCE firmware Version: 53.26 Binary ID: 3
[    4.209851] usbcore: registered new interface driver usbhid
[    4.209852] usbhid: USB HID core driver
[    4.246409] [drm] DM_PPLIB: values for Engine clock
[    4.246410] [drm] DM_PPLIB:	 300000
[    4.246410] [drm] DM_PPLIB:	 588000
[    4.246410] [drm] DM_PPLIB:	 952000
[    4.246411] [drm] DM_PPLIB:	 1076000
[    4.246411] [drm] DM_PPLIB:	 1143000
[    4.246411] [drm] DM_PPLIB:	 1208000
[    4.246411] [drm] DM_PPLIB:	 1250000
[    4.246411] [drm] DM_PPLIB:	 1286000
[    4.246412] [drm] DM_PPLIB: Validation clocks:
[    4.246412] [drm] DM_PPLIB:    engine_max_clock: 128600
[    4.246412] [drm] DM_PPLIB:    memory_max_clock: 175000
[    4.246413] [drm] DM_PPLIB:    level           : 8
[    4.246413] [drm] DM_PPLIB: values for Memory clock
[    4.246414] [drm] DM_PPLIB:	 300000
[    4.246414] [drm] DM_PPLIB:	 1000000
[    4.246414] [drm] DM_PPLIB:	 1750000
[    4.246414] [drm] DM_PPLIB: Validation clocks:
[    4.246415] [drm] DM_PPLIB:    engine_max_clock: 128600
[    4.246415] [drm] DM_PPLIB:    memory_max_clock: 175000
[    4.246415] [drm] DM_PPLIB:    level           : 8
[    4.246544] [drm] Display Core initialized with v3.2.69!
[    4.266869] snd_hda_intel 0000:06:00.1: bound 0000:06:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[    4.292632] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.292633] [drm] Driver supports precise vblank timestamp query.
[    4.292690] EDAC amd64: F17h_M70h detected (node 0).
[    4.292739] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.321861] [drm] UVD and UVD ENC initialized successfully.
[    4.347839] Generic FE-GE Realtek PHY r8169-400:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-400:00, irq=IGNORE)
[    4.353833] nvidia: loading out-of-tree module taints kernel.
[    4.353839] nvidia: module license 'NVIDIA' taints kernel.
[    4.353839] Disabling lock debugging due to kernel taint
[    4.417190] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    4.417428] EDAC amd64: F17h_M70h detected (node 0).
[    4.417493] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.418188] input: Razer Razer BlackWidow Ultimate as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.0/0003:1532:011A.0001/input/input21
[    4.418918] mc: Linux media interface: v0.10
[    4.422837] [drm] VCE initialized successfully.
[    4.424063] kfd kfd: Allocated 3969056 bytes on gart
[    4.424092] nvidia-nvlink: Nvlink Core is being initialized, major device number 236
[    4.424424] nvidia 0000:05:00.0: enabling device (0000 -> 0003)
[    4.424509] amdgpu 0000:06:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    4.424510] nvidia 0000:05:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[    4.424854] Virtual CRAT table created for GPU
[    4.424855] Parsing CRAT table with 1 nodes
[    4.424862] Creating topology SYSFS entries
[    4.424930] Topology: Add dGPU node [0x67df:0x1002]
[    4.424932] kfd kfd: added device 1002:67df
[    4.426599] [drm] fb mappable at 0xD0D19000
[    4.426600] [drm] vram apper at 0xD0000000
[    4.426600] [drm] size 8294400
[    4.426600] [drm] fb depth is 24
[    4.426600] [drm]    pitch is 7680
[    4.426646] fbcon: amdgpudrmfb (fb0) is primary device
[    4.463025] Console: switching to colour frame buffer device 240x67
[    4.464562] r8169 0000:04:00.0 enp4s0: Link is Down
[    4.473445] hid-generic 0003:1532:011A.0001: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer BlackWidow Ultimate] on usb-0000:08:00.3-1/input0
[    4.473672] input: Razer Razer BlackWidow Ultimate Keyboard as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input22
[    4.481695] amdgpu 0000:06:00.0: fb0: amdgpudrmfb frame buffer device
[    4.501007] [drm] Initialized amdgpu 3.36.0 20150101 for 0000:06:00.0 on minor 0
[    4.524999] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  440.82  Wed Apr  1 20:04:33 UTC 2020
[    4.530121] input: Razer Razer BlackWidow Ultimate Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input23
[    4.530186] input: Razer Razer BlackWidow Ultimate System Control as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input24
[    4.530234] input: Razer Razer BlackWidow Ultimate as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.1/0003:1532:011A.0002/input/input25
[    4.530281] hid-generic 0003:1532:011A.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow Ultimate] on usb-0000:08:00.3-1/input1
[    4.530411] input: Razer Razer BlackWidow Ultimate as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1:1.2/0003:1532:011A.0003/input/input26
[    4.530461] hid-generic 0003:1532:011A.0003: input,hidraw2: USB HID v1.11 Mouse [Razer Razer BlackWidow Ultimate] on usb-0000:08:00.3-1/input2
[    4.530703] input: BTL Gaming Mouse as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input27
[    4.530769] input: BTL Gaming Mouse Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.0/0003:1EA7:1005.0004/input/input28
[    4.549074] EDAC amd64: F17h_M70h detected (node 0).
[    4.549134] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.576553] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  440.82  Wed Apr  1 19:41:29 UTC 2020
[    4.580454] [drm] [nvidia-drm] [GPU ID 0x00000500] Loading driver
[    4.580456] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:05:00.0 on minor 1
[    4.590152] hid-generic 0003:1EA7:1005.0004: input,hiddev0,hidraw3: USB HID v1.10 Mouse [BTL Gaming Mouse] on usb-0000:08:00.3-3/input0
[    4.590270] input: BTL Gaming Mouse as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-3/3-3:1.1/0003:1EA7:1005.0005/input/input30
[    4.603966] usbcore: registered new interface driver snd-usb-audio
[    4.646884] hid-generic 0003:1EA7:1005.0005: input,hidraw4: USB HID v1.11 Keyboard [BTL Gaming Mouse] on usb-0000:08:00.3-3/input1
[    4.646969] hid-generic 0003:0D8C:0134.0006: No inputs registered, leaving
[    4.647009] hid-generic 0003:0D8C:0134.0006: hidraw5: USB HID v1.11 Device [C-Media Electronics Inc. TONOR TC-777 Audio Device] on usb-0000:08:00.3-4/input2
[    4.674186] EDAC amd64: F17h_M70h detected (node 0).
[    4.674256] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.683034] mousedev: PS/2 mouse device common for all mice
[    4.784064] scsi 10:0:0:0: Direct-Access     Generic  Flash Disk       8.07 PQ: 0 ANSI: 4
[    4.784914] sd 10:0:0:0: [sdd] 1986560 512-byte logical blocks: (1.02 GB/970 MiB)
[    4.785559] sd 10:0:0:0: [sdd] Write Protect is off
[    4.785560] sd 10:0:0:0: [sdd] Mode Sense: 23 00 00 00
[    4.786207] sd 10:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.794087] EDAC amd64: F17h_M70h detected (node 0).
[    4.794143] EDAC amd64: Node 0: DRAM ECC disabled.
[    4.813335]  sdd:
[    4.815484] sd 10:0:0:0: [sdd] Attached SCSI removable disk
[    4.914010] EDAC amd64: F17h_M70h detected (node 0).
[    4.914064] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.073963] EDAC amd64: F17h_M70h detected (node 0).
[    5.074083] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.193921] EDAC amd64: F17h_M70h detected (node 0).
[    5.193969] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.354101] EDAC amd64: F17h_M70h detected (node 0).
[    5.354149] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.447234] EDAC amd64: F17h_M70h detected (node 0).
[    5.447281] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.541473] EDAC amd64: F17h_M70h detected (node 0).
[    5.541534] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.634022] EDAC amd64: F17h_M70h detected (node 0).
[    5.634075] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.740782] EDAC amd64: F17h_M70h detected (node 0).
[    5.740834] EDAC amd64: Node 0: DRAM ECC disabled.
[    5.868208] kauditd_printk_skb: 20 callbacks suppressed
[    5.868209] audit: type=1130 audit(1588448595.430:31): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@977 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.871240] audit: type=1105 audit(1588448595.433:32): pid=676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[    8.045597] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[    8.045613] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   12.009065] audit: type=1100 audit(1588448601.570:33): pid=727 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_tally2,pam_shells,pam_unix,pam_permit,pam_gnome_keyring acct="grant" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   12.010556] audit: type=1101 audit(1588448601.573:34): pid=727 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="grant" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   12.029246] audit: type=1106 audit(1588448601.590:35): pid=676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   12.029308] audit: type=1104 audit(1588448601.590:36): pid=676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   12.031558] audit: type=1103 audit(1588448601.593:37): pid=727 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_tally2,pam_shells,pam_unix,pam_permit,pam_gnome_keyring acct="grant" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   12.031631] audit: type=1006 audit(1588448601.593:38): pid=727 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   12.049774] audit: type=1130 audit(1588448601.610:39): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.054342] audit: type=1101 audit(1588448601.617:40): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="grant" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   12.054366] audit: type=1103 audit(1588448601.617:41): pid=740 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="grant" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   12.054403] audit: type=1006 audit(1588448601.617:42): pid=740 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   22.291591] kauditd_printk_skb: 12 callbacks suppressed
[   22.291592] audit: type=1131 audit(1588448611.853:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@977 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.299899] audit: type=1131 audit(1588448611.860:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@977 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.329207] audit: type=1131 audit(1588448623.890:57): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   34.428687] audit: type=1334 audit(1588448623.993:58): prog-id=10 op=UNLOAD
[   34.428691] audit: type=1334 audit(1588448623.993:59): prog-id=9 op=UNLOAD
[  931.618084] audit: type=1130 audit(1588449521.180:60): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  931.618089] audit: type=1131 audit(1588449521.180:61): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1756.930172] audit: type=1100 audit(1588450346.493:62): pid=1589 uid=1000 auid=1000 ses=3 msg='op=PAM:unix_chkpwd acct="grant" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=failed'
[ 1764.669610] audit: type=1100 audit(1588450354.233:63): pid=1595 uid=1000 auid=1000 ses=3 msg='op=PAM:unix_chkpwd acct="grant" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'

This portion seems relevant:

[    4.353833] nvidia: loading out-of-tree module taints kernel.
[    4.353839] nvidia: module license 'NVIDIA' taints kernel.
[    4.353839] Disabling lock debugging due to kernel taint
[    4.417190] nvidia: module verification failed: signature and/or required key missing - tainting kernel

Again, no mention of nouveau anywhere but I'm not sure if thats the problem

As for pacman -Qs nvidia, I removed the proprietary drivers to get my multihead system to work again with nouveau but now I am enountering the same problem with nouveau.

Here is the output for pacman -Qs xf86-video-nouveau

local/xf86-video-nouveau 1.0.16-1

Last edited by jazznuts (2020-05-02 20:20:44)

Offline

#11 2020-05-02 20:34:32

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

This portion seems relevant:

[    4.353833] nvidia: loading out-of-tree module taints kernel.
[    4.353839] nvidia: module license 'NVIDIA' taints kernel.
[    4.353839] Disabling lock debugging due to kernel taint
[    4.417190] nvidia: module verification failed: signature and/or required key missing - tainting kernel

Again, no mention of nouveau anywhere but I'm not sure if thats the problem

As for pacman -Qs nvidia, I removed the proprietary drivers to get my multihead system to work again with nouveau but now I am enountering the same problem with nouveau.

Think about what you wrote here, maybe actually check the output of  "pacman -Qs nvidia". Then think harder.
;-)

Offline

#12 2020-05-02 20:42:50

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

Ok, my bad. Here is the output from pacman -Qs nvidia:

local/libvdpau 1.3-1
    Nvidia VDPAU library
local/nvidia-utils 440.82-1
    NVIDIA drivers utilities

Also, an interesting error message from "LANG= pacman -Qkk 2>&1"

error: error while reading file /var/lib/pacman/local/xf86-video-nouveau-1.0.16-1/mtree: Unrecognized archive format
xf86-video-nouveau: no mtree file

Offline

#13 2020-05-02 21:16:43

jazznuts
Member
Registered: 2020-03-24
Posts: 20

Re: XrandR doesn't detect second output provider

I fixed it, there was a problem with the nouveau and lib32-gcc-libs packages. I had to overwrite some of the files so we will see if anything breaks in the future. I still don't have the nvidia driver, but atleast I can start from square 1

Offline

#14 2020-05-03 07:01:02

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,821

Re: XrandR doesn't detect second output provider

Are you maybe conducting partial updates? Don't. Run "pacman -Syu", but the nouveau package already looks broken.
Do not symlink libraries around, that's a recipe for disaster.

Offline

Board footer

Powered by FluxBB