You are not logged in.

#1 2020-09-09 23:17:51

theodore
Member
Registered: 2008-09-09
Posts: 151

Optimus laptop and nvidia hdmi output sinking questions/issues

Hi all,

I have an archlinux installation on a new optimus laptop with intel/nvidia combination (i7-10875H/2080 SUPER Max-Q) and plasma. In my old installations I used to work with optimus-manager mainly because of the nvidia driver was lacking the output sink capability, however considering that since xorg-server 1.20.7 this doesn't seem to be a problem. Thus, I decided to give a try with the default instructions from the wiki regarding PRIME render offloading.

The two devices are correctly recognized from xrandr:

$ xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x43 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 1 associated providers: 1 name:modesetting
Provider 1: id: 0x256 cap: 0x2, Sink Output crtcs: 4 outputs: 7 associated providers: 1 name:NVIDIA-G0

By default it seems that the Intel card is used:

$ glxinfo | grep "OpenGL renderer"
OpenGL renderer string: Mesa Intel(R) UHD Graphics (CML GT2)

I have tried to setup a full power management of the dGPU based on the following https://us.download.nvidia.com/XFree86/ … ement.html, thus:

$ cat /etc/modprobe.d/nvidia.conf 
options nvidia "NVreg_DynamicPowerManagement=0x02"

Everything seems to work fine since once I plug an external screen it recognized and I can use it right away (HiDPI still needs some investigation though), on the other hand I do not really understand what the following means (taken from the above link):

Furthermore, the NVIDIA GPU driver controls power to the NVIDIA GPU and its video memory separately. While turning off the NVIDIA GPU, the video memory will be kept in a low power self-refresh mode unless the following conditions are met:

    The system is configured in PRIME render offload mode.

Does it mean that my dGPU will not be set in low power mode since I am using PRIME render offload?

Moreover, I've noticed that when I plug my hdmi external monitor I do not have audio hdmi pass-through. Apparently my nvidia HDMI audio devices are not found:

$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: ALC298 Analog [ALC298 Analog]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

Apparently I am falling into the following case https://wiki.archlinux.org/index.php/NV … _over_HDMI. I tried to follow the steps described there:

# setpci -s 01:00.0 0x488.l=0x2000000:0x2000000
# rmmod nvidia-drm nvidia-modeset nvidia
# echo 1 > /sys/bus/pci/devices/0000:01:00.0/remove
# echo 1 > /sys/bus/pci/devices/0000:00:01.0/rescan
# modprobe nvidia-drm
# xinit -- -retro

however on the second step it seems that the nvidia modules cannot be removed since I am getting the message that they are in use:

# rmmod nvidia-drm nvidia-modeset nvidia
rmmod: ERROR: Module nvidia_drm is in use
rmmod: ERROR: Module nvidia_modeset is in use by: nvidia_drm
rmmod: ERROR: Module nvidia is in use by: nvidia_modeset

If I try with the -f flag my system hangs and I need to hard reset. I guess this is because my dGPU is still active, how do I disable it?

Last edited by theodore (2020-09-10 22:25:02)

Offline

#2 2020-09-10 22:26:41

theodore
Member
Registered: 2008-09-09
Posts: 151

Re: Optimus laptop and nvidia hdmi output sinking questions/issues

Also forgot to mention that if I check the nvidia seems to be active all the time (apparently Xorg runs in dGPU), and it consumes quite some power:

$ nvidia-smi
Fri Sep 11 00:23:19 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 450.66       Driver Version: 450.66       CUDA Version: 11.0     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  GeForce RTX 208...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   42C    P8    19W /  N/A |      6MiB /  7982MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|    0   N/A  N/A      1610      G   /usr/lib/Xorg                       4MiB |
+-----------------------------------------------------------------------------+

Which leads me to the conclusion that the power management is not setup correctly.

Offline

#3 2020-09-11 07:05:02

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,736

Re: Optimus laptop and nvidia hdmi output sinking questions/issues

No that's technically normal with prime render offload. How big is the overall power draw if you check with powertop? Did you check the things mentioned in: https://us.download.nvidia.com/XFree86/ … rface01474 ?

You'll probably also want to set up the udev rules mentioned in the last paragraph of that page.

But I agree the section is somewhat misleading, as immediately after it mentions that it will put it into a low power mode when the conditions are met (which seems to be contradictory to the part preceeding the list of conditions). The way I read it is that it will put it into a low power mode with PRIME render offload granted the active usage doesn't exceed a specific threshhold and as far as I know the xorg process that is normal and mandated by the offloading setup should never trigger the active usage if you aren't actively running something on it.

Last edited by V1del (2020-09-11 07:26:24)

Offline

#4 2020-09-11 11:50:12

theodore
Member
Registered: 2008-09-09
Posts: 151

Re: Optimus laptop and nvidia hdmi output sinking questions/issues

Well if I check the nvidia consumption through the nvidia-smi via the watch command, I can see that the consumption for the dGPU varies from 7W to 30W while browsing, watching videos, etc.

I have already set up and enabled the udev rules mentioned at end of that page.

The question though is why xorg is running on the dGPU and not by modesetting, I mean for simple daily usage, e.g. browsing, text editing modesetting should be more than enough. This in principle would help to put dGPU in low power mode if not turning it off completely and then kick in again when more demanding process starts or an external screen is connected. Would be helpful to apply what is mentioned in the following thread https://bbs.archlinux.org/viewtopic.php?id=243402 to force xorg to start in modesetting?

Also having nvidia driving xorg I cannot remove the nvidia modules for solving the no hdmi audio pass-through. So I need somehow to force xorg to be running with modesetting.

Offline

#5 2020-09-11 12:24:53

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,736

Re: Optimus laptop and nvidia hdmi output sinking questions/issues

That's not the issue here. If you want to opt for the more traditional approach you can't have the PRIME offloading setup at all and you would be back at optimus-manager.

With PRIME render offload you will always have a xorg process on the nvidia gpu (it's also running on the integrated gpu via modesetting at the same time). Given you don't add an external screen and do not specifically instruct the nvidia gpu to be loaded via prepending commands with nvidia-prime, that additional xorg process should not relevantly factor into the active power usage.

That the audio device will not be present with this setup is documented however, if you've actually followed all of it in terms of configuration:

There is a known issue with the audio driver due to which the audio PCI function remains in an active state from the kernel version 4.19 and up. (from commit id: 37a3a98ef601f89100e3bb657fb0e190b857028c). Upstream kernel changes are being done to fix the issue. In the interim, the Audio PCI function needs to be disabled by using the following command.

echo 1 > /sys/bus/pci/devices/<Domain>:<Bus>:<Device>.1/remove

For example:

echo 1 > /sys/bus/pci/devices/0000\:01\:00.1/remove

This workaround will result in audio loss when the audio function is being used to play audio over DP/HDMI connection. To recover from audio loss, rescanning the PCI tree will bring back the audio PCI function and audio operation can be recovered. However, after rescanning the PCI tree, all the disabled PCI functions will again become active. To ensure that this feature works again, the workarounds mentioned in this section have to be done again.

so it seems that if having hdmi audio is important to you this is a non starter anyway and you want to go back to the more traditional method as setup by optimus-manager

FWIW can you post your xorg log and

xrandr -q

Last edited by V1del (2020-09-11 12:29:47)

Offline

#6 2020-09-12 15:36:33

theodore
Member
Registered: 2008-09-09
Posts: 151

Re: Optimus laptop and nvidia hdmi output sinking questions/issues

I see, ok then this is my bad since I thought that xorg should be only on the modesetting. As for the hdmi I guess I will have to wait the kernel fix to hit upstream or going back to optimus-manager I do not think it will help since I had the same issue there as well.

Please find below the output from the commands you've asked.

without external monitor connected

$ xrandr -q

Screen 0: minimum 320 x 200, current 3840 x 2160, maximum 16384 x 16384
eDP-1 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
   3840x2160     60.00*+  59.98    59.97  
   3200x1800     59.96    59.94  
   2880x1620     59.96    59.97  
   2560x1600     59.99    59.97  
   2560x1440     59.99    59.99    59.96    59.95  
   2048x1536     60.00  
   1920x1440     60.00  
   1856x1392     60.01  
   1792x1344     60.01  
   2048x1152     59.99    59.98    59.90    59.91  
   1920x1200     59.88    59.95  
   1920x1080     60.01    59.97    59.96    59.99    59.93  
   1600x1200     60.00  
   1680x1050     59.95    59.88  
   1400x1050     59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024     60.02  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      60.00    59.97  
   1368x768      59.88    59.85  
   1280x800      59.99    59.97    59.81    59.91  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   960x540       59.96    59.99    59.63    59.82  
   800x600       60.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       59.98  
   800x450       59.95    59.82  
   640x512       60.02  
   700x450       59.96    59.88  
   640x480       60.00    59.94  
   720x405       59.51    58.99  
   684x384       59.88    59.85  
   640x400       59.88    59.98  
   640x360       59.86    59.83    59.84    59.32  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.63    59.82  
   400x300       60.32    56.34  
   432x243       59.92    59.57  
   320x240       60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
DP-1-0 disconnected
DP-1-1 disconnected
DP-1-2 disconnected
DP-1-3 disconnected
HDMI-1-0 disconnected
DP-1-4 disconnected
DP-1-5 disconnected

with external monitor connected:

$ xrandr -q
Screen 0: minimum 320 x 200, current 5760 x 2160, maximum 16384 x 16384
eDP-1 connected primary 3840x2160+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
   3840x2160     60.00*+  59.98    59.97  
   3200x1800     59.96    59.94  
   2880x1620     59.96    59.97  
   2560x1600     59.99    59.97  
   2560x1440     59.99    59.99    59.96    59.95  
   2048x1536     60.00  
   1920x1440     60.00  
   1856x1392     60.01  
   1792x1344     60.01  
   2048x1152     59.99    59.98    59.90    59.91  
   1920x1200     59.88    59.95  
   1920x1080     60.01    59.97    59.96    59.99    59.93  
   1600x1200     60.00  
   1680x1050     59.95    59.88  
   1400x1050     59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024     60.02  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      60.00    59.97  
   1368x768      59.88    59.85  
   1280x800      59.99    59.97    59.81    59.91  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   960x540       59.96    59.99    59.63    59.82  
   800x600       60.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       59.98  
   800x450       59.95    59.82  
   640x512       60.02  
   700x450       59.96    59.88  
   640x480       60.00    59.94  
   720x405       59.51    58.99  
   684x384       59.88    59.85  
   640x400       59.88    59.98  
   640x360       59.86    59.83    59.84    59.32  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.63    59.82  
   400x300       60.32    56.34  
   432x243       59.92    59.57  
   320x240       60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
DP-1-0 disconnected
DP-1-1 disconnected
DP-1-2 disconnected
DP-1-3 disconnected
HDMI-1-0 connected 1920x1080+3840+0 0mm x 0mm panning 1920x2160+3840+0 tracking 5760x2160+0+0 border 0/0/0/0
   1360x768      60.02 +
   1920x1080     59.94*   50.00  
   1280x768      59.99  
   1280x720      60.00    59.94    50.00  
   1024x768      60.00  
   800x600       60.32  
   720x576       50.00  
   720x480       59.94  
   640x480       59.94    59.93  
DP-1-4 disconnected
DP-1-5 disconnected
  1024x768 (0x79) 65.000MHz -HSync -VSync
        h: width  1024 start 1048 end 1184 total 1344 skew    0 clock  48.36KHz
        v: height  768 start  771 end  777 total  806           clock  60.00Hz
  800x600 (0x88) 40.000MHz +HSync +VSync
        h: width   800 start  840 end  968 total 1056 skew    0 clock  37.88KHz
        v: height  600 start  601 end  605 total  628           clock  60.32Hz
  640x480 (0x95) 25.175MHz -HSync -VSync
        h: width   640 start  656 end  752 total  800 skew    0 clock  31.47KHz
        v: height  480 start  490 end  492 total  525           clock  59.94Hz

and xorg log:

[    47.275] (--) Log file renamed from "/var/log/Xorg.pid-1551.log" to "/var/log/Xorg.0.log"
[    47.276] 
X.Org X Server 1.20.9
X Protocol Version 11, Revision 0
[    47.276] Build Operating System: Linux Arch Linux
[    47.276] Current Operating System: Linux blade 5.8.8-arch1-1 #1 SMP PREEMPT Wed, 09 Sep 2020 18:59:45 +0000 x86_64
[    47.276] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/volgroup0-lv_root rw cryptdevice=/dev/nvme0n1p7:volgroup0:allow-discards resume=/dev/mapper/volgroup0-lv_root resume_offset=2861056 video=1920x1080 mem_sleep_default=deep intel_idle.max_cstate=5 audit=0 loglevel=3
[    47.276] Build Date: 02 September 2020  06:17:44AM
[    47.276]  
[    47.276] Current version of pixman: 0.40.0
[    47.276] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    47.276] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    47.276] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep 12 17:15:57 2020
[    47.277] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    47.277] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    47.277] (==) ServerLayout "layout"
[    47.277] (**) |-->Screen "intel" (0)
[    47.277] (**) |   |-->Monitor "<default monitor>"
[    47.277] (**) |   |-->Device "intel"
[    47.277] (**) |   |-->GPUDevice "nvidia"
[    47.277] (==) No monitor specified for screen "intel".
	Using a default monitor configuration.
[    47.277] (**) |-->Inactive Device "nvidia"
[    47.277] (==) Automatically adding devices
[    47.277] (==) Automatically enabling devices
[    47.277] (==) Automatically adding GPU devices
[    47.277] (==) Automatically binding GPU devices
[    47.277] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    47.279] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    47.279] 	Entry deleted from font path.
[    47.279] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    47.279] 	Entry deleted from font path.
[    47.280] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    47.280] (==) ModulePath set to "/usr/lib/xorg/modules"
[    47.280] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    47.280] (II) Module ABI versions:
[    47.280] 	X.Org ANSI C Emulation: 0.4
[    47.280] 	X.Org Video Driver: 24.1
[    47.280] 	X.Org XInput driver : 24.1
[    47.280] 	X.Org Server Extension : 10.0
[    47.280] (++) using VT number 1

[    47.280] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    47.280] (II) xfree86: Adding drm device (/dev/dri/card1)
[    47.280] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[    47.306] (II) xfree86: Adding drm device (/dev/dri/card0)
[    47.306] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[    47.309] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    47.310] (--) PCI:*(0@0:2:0) 8086:9bc4:1a58:200a rev 5, Mem @ 0x6043000000/16777216, 0x4000000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[    47.310] (--) PCI: (1@0:0:0) 10de:1e93:1a58:200a rev 161, Mem @ 0xa3000000/16777216, 0x6030000000/268435456, 0x6040000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
[    47.310] (II) Open ACPI successful (/var/run/acpid.socket)
[    47.310] (II) LoadModule: "glx"
[    47.310] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    47.314] (II) Module glx: vendor="X.Org Foundation"
[    47.314] 	compiled for 1.20.9, module version = 1.0.0
[    47.314] 	ABI class: X.Org Server Extension, version 10.0
[    47.314] (II) LoadModule: "modesetting"
[    47.315] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    47.316] (II) Module modesetting: vendor="X.Org Foundation"
[    47.316] 	compiled for 1.20.9, module version = 1.20.9
[    47.316] 	Module class: X.Org Video Driver
[    47.316] 	ABI class: X.Org Video Driver, version 24.1
[    47.316] (II) LoadModule: "nvidia"
[    47.316] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    47.319] (II) Module nvidia: vendor="NVIDIA Corporation"
[    47.319] 	compiled for 1.6.99.901, module version = 1.0.0
[    47.319] 	Module class: X.Org Video Driver
[    47.319] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    47.319] (II) NVIDIA dlloader X Driver  450.66  Wed Aug 12 19:44:12 UTC 2020
[    47.319] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    47.325] (II) modeset(0): using drv /dev/dri/card0
[    47.325] (II) Loading sub module "fb"
[    47.325] (II) LoadModule: "fb"
[    47.325] (II) Loading /usr/lib/xorg/modules/libfb.so
[    47.326] (II) Module fb: vendor="X.Org Foundation"
[    47.326] 	compiled for 1.20.9, module version = 1.0.0
[    47.326] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    47.326] (II) Loading sub module "wfb"
[    47.326] (II) LoadModule: "wfb"
[    47.326] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    47.327] (II) Module wfb: vendor="X.Org Foundation"
[    47.327] 	compiled for 1.20.9, module version = 1.0.0
[    47.327] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    47.327] (II) Loading sub module "ramdac"
[    47.327] (II) LoadModule: "ramdac"
[    47.327] (II) Module "ramdac" already built-in
[    47.327] (II) modeset(0): Creating default Display subsection in Screen section
	"intel" for depth/fbbpp 24/32
[    47.327] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    47.327] (==) modeset(0): RGB weight 888
[    47.327] (==) modeset(0): Default visual is TrueColor
[    47.327] (II) Loading sub module "glamoregl"
[    47.327] (II) LoadModule: "glamoregl"
[    47.327] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    47.331] (II) Module glamoregl: vendor="X.Org Foundation"
[    47.331] 	compiled for 1.20.9, module version = 1.0.1
[    47.331] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    47.480] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[    47.480] (II) modeset(0): glamor initialized
[    47.481] (II) modeset(0): Output eDP-1 has no monitor section
[    47.482] (II) modeset(0): EDID for output eDP-1
[    47.482] (II) modeset(0): Manufacturer: SDC  Model: a029  Serial#: 0
[    47.482] (II) modeset(0): Year: 2019  Week: 8
[    47.482] (II) modeset(0): EDID Version: 1.4
[    47.482] (II) modeset(0): Digital Display Input
[    47.482] (II) modeset(0): 10 bits per channel
[    47.482] (II) modeset(0): Digital interface is DisplayPort
[    47.482] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    47.482] (II) modeset(0): Gamma: 2.20
[    47.482] (II) modeset(0): No DPMS capabilities specified
[    47.482] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[    47.482] (II) modeset(0): First detailed timing is preferred mode
[    47.482] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    47.482] (II) modeset(0): redX: 0.685 redY: 0.312   greenX: 0.243 greenY: 0.707
[    47.482] (II) modeset(0): blueX: 0.139 blueY: 0.055   whiteX: 0.312 whiteY: 0.329
[    47.482] (II) modeset(0): Manufacturer's mask: 0
[    47.482] (II) modeset(0): Supported detailed timing:
[    47.482] (II) modeset(0): clock: 573.4 MHz   Image Size:  344 x 194 mm
[    47.482] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4400 h_border: 0
[    47.482] (II) modeset(0): v_active: 2160  v_sync: 2164  v_sync_end 2168 v_blanking: 2172 v_border: 0
[    47.482] (II) modeset(0): Supported detailed timing:
[    47.482] (II) modeset(0): clock: 573.4 MHz   Image Size:  344 x 194 mm
[    47.482] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4400 h_border: 0
[    47.482] (II) modeset(0): v_active: 2160  v_sync: 2164  v_sync_end 2168 v_blanking: 2172 v_border: 0
[    47.482] (II) modeset(0): Unknown vendor-specific block f
[    47.482] (II) modeset(0): Number of EDID sections to follow: 1
[    47.482] (II) modeset(0): EDID (in hex):
[    47.482] (II) modeset(0): 	00ffffffffffff004c8329a000000000
[    47.482] (II) modeset(0): 	081d0104b5221378024481af503eb523
[    47.482] (II) modeset(0): 	0e505400000001010101010101010101
[    47.482] (II) modeset(0): 	010101010101fddf0030f2700c803020
[    47.482] (II) modeset(0): 	440058c21000001bfddf0030f2700c80
[    47.482] (II) modeset(0): 	3020440058c21000001b0000000f00ff
[    47.482] (II) modeset(0): 	093cff093c2c80000000000000000010
[    47.482] (II) modeset(0): 	00010000000000000000000000000149
[    47.482] (II) modeset(0): 	02030f00e3058000e6060501736dd000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	00000000000000000000000000000000
[    47.482] (II) modeset(0): 	000000000000000000000000000000e2
[    47.483] (II) modeset(0): Printing probed modes for output eDP-1
[    47.483] (II) modeset(0): Modeline "3840x2160"x60.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    47.483] (II) modeset(0): Modeline "3840x2160"x60.0  712.75  3840 4160 4576 5312  2160 2163 2168 2237 -hsync +vsync (134.2 kHz d)
[    47.483] (II) modeset(0): Modeline "3840x2160"x60.0  533.00  3840 3888 3920 4000  2160 2163 2168 2222 +hsync -vsync (133.2 kHz d)
[    47.483] (II) modeset(0): Modeline "3200x1800"x60.0  492.00  3200 3456 3800 4400  1800 1803 1808 1865 -hsync +vsync (111.8 kHz d)
[    47.483] (II) modeset(0): Modeline "3200x1800"x59.9  373.00  3200 3248 3280 3360  1800 1803 1808 1852 +hsync -vsync (111.0 kHz d)
[    47.483] (II) modeset(0): Modeline "2880x1620"x60.0  396.25  2880 3096 3408 3936  1620 1623 1628 1679 -hsync +vsync (100.7 kHz d)
[    47.483] (II) modeset(0): Modeline "2880x1620"x60.0  303.75  2880 2928 2960 3040  1620 1623 1628 1666 +hsync -vsync (99.9 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1600"x60.0  348.50  2560 2760 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1600"x60.0  268.50  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (98.7 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1440"x120.0  638.25  2560 2780 3064 3568  1440 1441 1444 1491 doublescan -hsync +vsync (178.9 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1440"x120.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1440"x60.0  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync (89.5 kHz d)
[    47.483] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz d)
[    47.483] (II) modeset(0): Modeline "2048x1536"x60.0  266.95  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (95.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1856x1392"x60.0  218.30  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.4 kHz d)
[    47.483] (II) modeset(0): Modeline "1792x1344"x60.0  204.80  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.7 kHz d)
[    47.483] (II) modeset(0): Modeline "2048x1152"x120.0  406.50  2048 2220 2444 2840  1152 1153 1156 1193 doublescan -hsync +vsync (143.1 kHz d)
[    47.483] (II) modeset(0): Modeline "2048x1152"x120.0  302.50  2048 2072 2088 2128  1152 1153 1156 1185 doublescan +hsync -vsync (142.2 kHz d)
[    47.483] (II) modeset(0): Modeline "2048x1152"x59.9  197.00  2048 2184 2400 2752  1152 1155 1160 1195 -hsync +vsync (71.6 kHz d)
[    47.483] (II) modeset(0): Modeline "2048x1152"x59.9  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    47.483] (II) modeset(0): Modeline "1920x1080"x60.0  172.78  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    47.483] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    47.483] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    47.483] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    47.483] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    47.483] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    47.483] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    47.483] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    47.483] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    47.483] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    47.483] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    47.483] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    47.483] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    47.483] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    47.483] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    47.483] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    47.483] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    47.483] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    47.483] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    47.483] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    47.483] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    47.483] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    47.483] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    47.483] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    47.483] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    47.483] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    47.483] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    47.483] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    47.483] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    47.483] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    47.483] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    47.483] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    47.483] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    47.483] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    47.483] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    47.483] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    47.483] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    47.483] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    47.483] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    47.483] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    47.483] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    47.483] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    47.483] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    47.483] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    47.483] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    47.483] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    47.483] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    47.483] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    47.483] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    47.483] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    47.483] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    47.483] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    47.483] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    47.483] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    47.483] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    47.483] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    47.483] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    47.483] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    47.483] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    47.483] (II) modeset(0): Output eDP-1 connected
[    47.483] (II) modeset(0): Using exact sizes for initial modes
[    47.483] (II) modeset(0): Output eDP-1 using initial mode 3840x2160 +0+0
[    47.483] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    47.483] (==) modeset(0): DPI set to (96, 96)
[    47.483] (II) Loading sub module "fb"
[    47.483] (II) LoadModule: "fb"
[    47.483] (II) Loading /usr/lib/xorg/modules/libfb.so
[    47.483] (II) Module fb: vendor="X.Org Foundation"
[    47.483] 	compiled for 1.20.9, module version = 1.0.0
[    47.483] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    47.483] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[    47.483] (==) NVIDIA(G0): RGB weight 888
[    47.483] (==) NVIDIA(G0): Default visual is TrueColor
[    47.483] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[    47.483] (**) Option "AllowNVIDIAGpuScreens"
[    47.483] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    47.483] (**) NVIDIA(G0): Option "Stereo" "0"
[    47.483] (**) NVIDIA(G0): Option "nvidiaXineramaInfoOrder" "DFP-5"
[    47.483] (**) NVIDIA(G0): Option "SLI" "Off"
[    47.483] (**) NVIDIA(G0): Option "MultiGPU" "Off"
[    47.483] (**) NVIDIA(G0): Option "TripleBuffer" "true"
[    47.483] (**) NVIDIA(G0): Option "AllowIndirectGLXProtocol" "off"
[    47.483] (**) NVIDIA(G0): Option "BaseMosaic" "off"
[    47.483] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[    47.483] (**) NVIDIA(G0): Stereo disabled by request
[    47.483] (**) NVIDIA(G0): NVIDIA SLI disabled.
[    47.483] (**) NVIDIA(G0): NVIDIA Multi-GPU disabled.
[    47.483] (**) NVIDIA(G0): Enabling 2D acceleration
[    47.483] (II) Loading sub module "glxserver_nvidia"
[    47.483] (II) LoadModule: "glxserver_nvidia"
[    47.483] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    47.503] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    47.503] 	compiled for 1.6.99.901, module version = 1.0.0
[    47.503] 	Module class: X.Org Server Extension
[    47.503] (II) NVIDIA GLX Module  450.66  Wed Aug 12 19:41:37 UTC 2020
[    47.504] (II) NVIDIA: The X server supports PRIME Render Offload.
[    47.505] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    47.505] (--) NVIDIA(0):     DFP-0
[    47.505] (--) NVIDIA(0):     DFP-1
[    47.505] (--) NVIDIA(0):     DFP-2
[    47.505] (--) NVIDIA(0):     DFP-3
[    47.505] (--) NVIDIA(0):     DFP-4
[    47.505] (--) NVIDIA(0):     DFP-5
[    47.505] (--) NVIDIA(0):     DFP-6
[    47.506] (II) NVIDIA(G0): NVIDIA GPU GeForce RTX 2080 Super with Max-Q Design (TU104-A)
[    47.506] (II) NVIDIA(G0):     at PCI:1:0:0 (GPU-0)
[    47.506] (--) NVIDIA(G0): Memory: 8388608 kBytes
[    47.506] (--) NVIDIA(G0): VideoBIOS: 90.04.97.00.c3
[    47.506] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[    47.506] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    47.506] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    47.506] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    47.506] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    47.506] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    47.506] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    47.506] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.506] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    47.506] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    47.506] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    47.506] (--) NVIDIA(GPU-0): 
[    47.507] (II) NVIDIA(G0): Validated MetaModes:
[    47.507] (II) NVIDIA(G0):     "NULL"
[    47.507] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[    47.507] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[    47.507] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[    47.516] (==) modeset(0): Backing store enabled
[    47.516] (==) modeset(0): Silken mouse disabled
[    47.592] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    47.592] (==) modeset(0): DPMS enabled
[    47.592] (WW) modeset(0): Option "DRI" is not used
[    47.592] (II) modeset(0): [DRI2] Setup complete
[    47.592] (II) modeset(0): [DRI2]   DRI driver: iris
[    47.592] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    47.592] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[    47.592] (II) NVIDIA:     access.
[    47.635] (II) NVIDIA(G0): Setting mode "NULL"
[    47.650] (==) NVIDIA(G0): Disabling shared memory pixmaps
[    47.650] (==) NVIDIA(G0): Backing store enabled
[    47.650] (==) NVIDIA(G0): Silken mouse disabled
[    47.650] (==) NVIDIA(G0): DPMS enabled
[    47.650] (WW) NVIDIA(G0): Option "Coolbits" is not used
[    47.650] (WW) NVIDIA(G0): Option "metamodes" is not used
[    47.650] (II) Loading sub module "dri2"
[    47.650] (II) LoadModule: "dri2"
[    47.650] (II) Module "dri2" already built-in
[    47.650] (II) NVIDIA(G0): [DRI2] Setup complete
[    47.650] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[    47.650] (II) Initializing extension Generic Event Extension
[    47.650] (II) Initializing extension SHAPE
[    47.650] (II) Initializing extension MIT-SHM
[    47.650] (II) Initializing extension XInputExtension
[    47.650] (II) Initializing extension XTEST
[    47.650] (II) Initializing extension BIG-REQUESTS
[    47.650] (II) Initializing extension SYNC
[    47.650] (II) Initializing extension XKEYBOARD
[    47.651] (II) Initializing extension XC-MISC
[    47.651] (II) Initializing extension SECURITY
[    47.651] (II) Initializing extension XFIXES
[    47.651] (II) Initializing extension RENDER
[    47.651] (II) Initializing extension RANDR
[    47.651] (II) Initializing extension COMPOSITE
[    47.651] (II) Initializing extension DAMAGE
[    47.651] (II) Initializing extension MIT-SCREEN-SAVER
[    47.651] (II) Initializing extension DOUBLE-BUFFER
[    47.651] (II) Initializing extension RECORD
[    47.651] (II) Initializing extension DPMS
[    47.651] (II) Initializing extension Present
[    47.651] (II) Initializing extension DRI3
[    47.651] (II) Initializing extension X-Resource
[    47.651] (II) Initializing extension XVideo
[    47.651] (II) Initializing extension XVideo-MotionCompensation
[    47.651] (II) Initializing extension GLX
[    47.652] (II) Initializing extension GLX
[    47.652] (II) Indirect GLX disabled.
[    47.656] (II) AIGLX: Loaded and initialized iris
[    47.656] (II) GLX: Initialized DRI2 GL provider for screen 0
[    47.656] (II) Initializing extension XFree86-VidModeExtension
[    47.656] (II) Initializing extension XFree86-DGA
[    47.656] (II) Initializing extension XFree86-DRI
[    47.656] (II) Initializing extension DRI2
[    47.656] (II) Initializing extension NV-GLX
[    47.656] (II) Initializing extension NV-CONTROL
[    47.659] (II) modeset(0): Damage tracking initialized
[    47.659] (II) modeset(0): Setting screen physical size to 1016 x 571
[    47.709] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    47.709] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    47.709] (II) LoadModule: "libinput"
[    47.709] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    47.712] (II) Module libinput: vendor="X.Org Foundation"
[    47.712] 	compiled for 1.20.8, module version = 0.30.0
[    47.712] 	Module class: X.Org XInput Driver
[    47.712] 	ABI class: X.Org XInput driver, version 24.1
[    47.712] (II) Using input driver 'libinput' for 'Power Button'
[    47.712] (**) Power Button: always reports core events
[    47.712] (**) Option "Device" "/dev/input/event2"
[    47.712] (**) Option "_source" "server/udev"
[    47.715] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    47.716] (II) event2  - Power Button: device is a keyboard
[    47.716] (II) event2  - Power Button: device removed
[    47.740] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    47.740] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    47.742] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    47.742] (II) event2  - Power Button: device is a keyboard
[    47.743] (II) config/udev: Adding input device Video Bus (/dev/input/event19)
[    47.743] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    47.743] (II) Using input driver 'libinput' for 'Video Bus'
[    47.743] (**) Video Bus: always reports core events
[    47.743] (**) Option "Device" "/dev/input/event19"
[    47.743] (**) Option "_source" "server/udev"
[    47.745] (II) event19 - Video Bus: is tagged by udev as: Keyboard
[    47.745] (II) event19 - Video Bus: device is a keyboard
[    47.745] (II) event19 - Video Bus: device removed
[    47.767] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input26/event19"
[    47.767] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    47.769] (II) event19 - Video Bus: is tagged by udev as: Keyboard
[    47.769] (II) event19 - Video Bus: device is a keyboard
[    47.770] (II) config/udev: Adding input device Video Bus (/dev/input/event20)
[    47.770] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    47.770] (II) Using input driver 'libinput' for 'Video Bus'
[    47.770] (**) Video Bus: always reports core events
[    47.770] (**) Option "Device" "/dev/input/event20"
[    47.770] (**) Option "_source" "server/udev"
[    47.772] (II) event20 - Video Bus: is tagged by udev as: Keyboard
[    47.773] (II) event20 - Video Bus: device is a keyboard
[    47.773] (II) event20 - Video Bus: device removed
[    47.807] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:01/input/input27/event20"
[    47.807] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    47.810] (II) event20 - Video Bus: is tagged by udev as: Keyboard
[    47.810] (II) event20 - Video Bus: device is a keyboard
[    47.811] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    47.811] (II) No input driver specified, ignoring this device.
[    47.811] (II) This device may have been added with another device file.
[    47.812] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    47.812] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    47.812] (II) Using input driver 'libinput' for 'Power Button'
[    47.812] (**) Power Button: always reports core events
[    47.812] (**) Option "Device" "/dev/input/event1"
[    47.812] (**) Option "_source" "server/udev"
[    47.814] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    47.814] (II) event1  - Power Button: device is a keyboard
[    47.814] (II) event1  - Power Button: device removed
[    47.847] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    47.847] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[    47.849] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    47.849] (II) event1  - Power Button: device is a keyboard
[    47.851] (II) config/udev: Adding input device G-Tech Wireless Dongle Mouse (/dev/input/event3)
[    47.852] (**) G-Tech Wireless Dongle Mouse: Applying InputClass "libinput pointer catchall"
[    47.852] (II) Using input driver 'libinput' for 'G-Tech Wireless Dongle Mouse'
[    47.852] (**) G-Tech Wireless Dongle Mouse: always reports core events
[    47.852] (**) Option "Device" "/dev/input/event3"
[    47.852] (**) Option "_source" "server/udev"
[    47.854] (II) event3  - G-Tech Wireless Dongle Mouse: is tagged by udev as: Mouse
[    47.855] (II) event3  - G-Tech Wireless Dongle Mouse: device is a pointer
[    47.855] (II) event3  - G-Tech Wireless Dongle Mouse: device removed
[    47.913] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1A81:1701.0001/input/input3/event3"
[    47.914] (II) XINPUT: Adding extended input device "G-Tech Wireless Dongle Mouse" (type: MOUSE, id 10)
[    47.914] (**) Option "AccelerationScheme" "none"
[    47.914] (**) G-Tech Wireless Dongle Mouse: (accel) selected scheme none/0
[    47.914] (**) G-Tech Wireless Dongle Mouse: (accel) acceleration factor: 2.000
[    47.914] (**) G-Tech Wireless Dongle Mouse: (accel) acceleration threshold: 4
[    47.917] (II) event3  - G-Tech Wireless Dongle Mouse: is tagged by udev as: Mouse
[    47.917] (II) event3  - G-Tech Wireless Dongle Mouse: device is a pointer
[    47.919] (II) config/udev: Adding input device G-Tech Wireless Dongle Mouse (/dev/input/mouse0)
[    47.919] (II) No input driver specified, ignoring this device.
[    47.919] (II) This device may have been added with another device file.
[    47.920] (II) config/udev: Adding input device G-Tech Wireless Dongle (/dev/input/event4)
[    47.920] (II) No input driver specified, ignoring this device.
[    47.920] (II) This device may have been added with another device file.
[    47.922] (II) config/udev: Adding input device G-Tech Wireless Dongle Consumer Control (/dev/input/event5)
[    47.922] (**) G-Tech Wireless Dongle Consumer Control: Applying InputClass "libinput keyboard catchall"
[    47.922] (II) Using input driver 'libinput' for 'G-Tech Wireless Dongle Consumer Control'
[    47.922] (**) G-Tech Wireless Dongle Consumer Control: always reports core events
[    47.922] (**) Option "Device" "/dev/input/event5"
[    47.922] (**) Option "_source" "server/udev"
[    47.925] (II) event5  - G-Tech Wireless Dongle Consumer Control: is tagged by udev as: Keyboard
[    47.925] (II) event5  - G-Tech Wireless Dongle Consumer Control: device is a keyboard
[    47.925] (II) event5  - G-Tech Wireless Dongle Consumer Control: device removed
[    47.967] (II) libinput: G-Tech Wireless Dongle Consumer Control: needs a virtual subdevice
[    47.967] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1A81:1701.0001/input/input5/event5"
[    47.967] (II) XINPUT: Adding extended input device "G-Tech Wireless Dongle Consumer Control" (type: MOUSE, id 11)
[    47.967] (**) Option "AccelerationScheme" "none"
[    47.967] (**) G-Tech Wireless Dongle Consumer Control: (accel) selected scheme none/0
[    47.967] (**) G-Tech Wireless Dongle Consumer Control: (accel) acceleration factor: 2.000
[    47.967] (**) G-Tech Wireless Dongle Consumer Control: (accel) acceleration threshold: 4
[    47.970] (II) event5  - G-Tech Wireless Dongle Consumer Control: is tagged by udev as: Keyboard
[    47.971] (II) event5  - G-Tech Wireless Dongle Consumer Control: device is a keyboard
[    47.972] (II) config/udev: Adding input device G-Tech Wireless Dongle System Control (/dev/input/event6)
[    47.972] (**) G-Tech Wireless Dongle System Control: Applying InputClass "libinput keyboard catchall"
[    47.972] (II) Using input driver 'libinput' for 'G-Tech Wireless Dongle System Control'
[    47.972] (**) G-Tech Wireless Dongle System Control: always reports core events
[    47.972] (**) Option "Device" "/dev/input/event6"
[    47.972] (**) Option "_source" "server/udev"
[    47.975] (II) event6  - G-Tech Wireless Dongle System Control: is tagged by udev as: Keyboard
[    47.975] (II) event6  - G-Tech Wireless Dongle System Control: device is a keyboard
[    47.976] (II) event6  - G-Tech Wireless Dongle System Control: device removed
[    48.006] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1A81:1701.0001/input/input6/event6"
[    48.006] (II) XINPUT: Adding extended input device "G-Tech Wireless Dongle System Control" (type: KEYBOARD, id 12)
[    48.010] (II) event6  - G-Tech Wireless Dongle System Control: is tagged by udev as: Keyboard
[    48.010] (II) event6  - G-Tech Wireless Dongle System Control: device is a keyboard
[    48.012] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event28)
[    48.012] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[    48.012] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[    48.012] (**) Integrated Camera: Integrated C: always reports core events
[    48.012] (**) Option "Device" "/dev/input/event28"
[    48.012] (**) Option "_source" "server/udev"
[    48.015] (II) event28 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    48.015] (II) event28 - Integrated Camera: Integrated C: device is a keyboard
[    48.015] (II) event28 - Integrated Camera: Integrated C: device removed
[    48.060] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input35/event28"
[    48.060] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 13)
[    48.063] (II) event28 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    48.063] (II) event28 - Integrated Camera: Integrated C: device is a keyboard
[    48.065] (II) config/udev: Adding input device Integrated Camera: Integrated I (/dev/input/event29)
[    48.065] (**) Integrated Camera: Integrated I: Applying InputClass "libinput keyboard catchall"
[    48.065] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated I'
[    48.065] (**) Integrated Camera: Integrated I: always reports core events
[    48.065] (**) Option "Device" "/dev/input/event29"
[    48.065] (**) Option "_source" "server/udev"
[    48.068] (II) event29 - Integrated Camera: Integrated I: is tagged by udev as: Keyboard
[    48.068] (II) event29 - Integrated Camera: Integrated I: device is a keyboard
[    48.068] (II) event29 - Integrated Camera: Integrated I: device removed
[    48.140] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/input/input36/event29"
[    48.140] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated I" (type: KEYBOARD, id 14)
[    48.143] (II) event29 - Integrated Camera: Integrated I: is tagged by udev as: Keyboard
[    48.143] (II) event29 - Integrated Camera: Integrated I: device is a keyboard
[    48.145] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event7)
[    48.145] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    48.145] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    48.145] (**) Razer Razer Blade: always reports core events
[    48.145] (**) Option "Device" "/dev/input/event7"
[    48.145] (**) Option "_source" "server/udev"
[    48.148] (II) event7  - Razer Razer Blade: is tagged by udev as: Keyboard
[    48.148] (II) event7  - Razer Razer Blade: device is a keyboard
[    48.149] (II) event7  - Razer Razer Blade: device removed
[    48.194] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:1532:0253.0002/input/input8/event7"
[    48.194] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: KEYBOARD, id 15)
[    48.197] (II) event7  - Razer Razer Blade: is tagged by udev as: Keyboard
[    48.197] (II) event7  - Razer Razer Blade: device is a keyboard
[    48.199] (II) config/udev: Adding input device Razer Razer Blade Consumer Control (/dev/input/event9)
[    48.199] (**) Razer Razer Blade Consumer Control: Applying InputClass "libinput keyboard catchall"
[    48.199] (II) Using input driver 'libinput' for 'Razer Razer Blade Consumer Control'
[    48.199] (**) Razer Razer Blade Consumer Control: always reports core events
[    48.199] (**) Option "Device" "/dev/input/event9"
[    48.199] (**) Option "_source" "server/udev"
[    48.203] (II) event9  - Razer Razer Blade Consumer Control: is tagged by udev as: Keyboard
[    48.203] (II) event9  - Razer Razer Blade Consumer Control: device is a keyboard
[    48.203] (II) event9  - Razer Razer Blade Consumer Control: device removed
[    48.233] (II) libinput: Razer Razer Blade Consumer Control: needs a virtual subdevice
[    48.233] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1532:0253.0003/input/input10/event9"
[    48.233] (II) XINPUT: Adding extended input device "Razer Razer Blade Consumer Control" (type: MOUSE, id 16)
[    48.234] (**) Option "AccelerationScheme" "none"
[    48.234] (**) Razer Razer Blade Consumer Control: (accel) selected scheme none/0
[    48.234] (**) Razer Razer Blade Consumer Control: (accel) acceleration factor: 2.000
[    48.234] (**) Razer Razer Blade Consumer Control: (accel) acceleration threshold: 4
[    48.237] (II) event9  - Razer Razer Blade Consumer Control: is tagged by udev as: Keyboard
[    48.237] (II) event9  - Razer Razer Blade Consumer Control: device is a keyboard
[    48.239] (II) config/udev: Adding input device Razer Razer Blade System Control (/dev/input/event10)
[    48.239] (**) Razer Razer Blade System Control: Applying InputClass "libinput keyboard catchall"
[    48.239] (II) Using input driver 'libinput' for 'Razer Razer Blade System Control'
[    48.239] (**) Razer Razer Blade System Control: always reports core events
[    48.239] (**) Option "Device" "/dev/input/event10"
[    48.239] (**) Option "_source" "server/udev"
[    48.242] (II) event10 - Razer Razer Blade System Control: is tagged by udev as: Keyboard
[    48.242] (II) event10 - Razer Razer Blade System Control: device is a keyboard
[    48.243] (II) event10 - Razer Razer Blade System Control: device removed
[    48.260] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1532:0253.0003/input/input11/event10"
[    48.260] (II) XINPUT: Adding extended input device "Razer Razer Blade System Control" (type: KEYBOARD, id 17)
[    48.264] (II) event10 - Razer Razer Blade System Control: is tagged by udev as: Keyboard
[    48.264] (II) event10 - Razer Razer Blade System Control: device is a keyboard
[    48.266] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event11)
[    48.266] (II) No input driver specified, ignoring this device.
[    48.266] (II) This device may have been added with another device file.
[    48.267] (II) config/udev: Adding input device Razer Razer Blade Keyboard (/dev/input/event8)
[    48.267] (**) Razer Razer Blade Keyboard: Applying InputClass "libinput keyboard catchall"
[    48.268] (II) Using input driver 'libinput' for 'Razer Razer Blade Keyboard'
[    48.268] (**) Razer Razer Blade Keyboard: always reports core events
[    48.268] (**) Option "Device" "/dev/input/event8"
[    48.268] (**) Option "_source" "server/udev"
[    48.271] (II) event8  - Razer Razer Blade Keyboard: is tagged by udev as: Keyboard
[    48.271] (II) event8  - Razer Razer Blade Keyboard: device is a keyboard
[    48.271] (II) event8  - Razer Razer Blade Keyboard: device removed
[    48.300] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1532:0253.0003/input/input9/event8"
[    48.300] (II) XINPUT: Adding extended input device "Razer Razer Blade Keyboard" (type: KEYBOARD, id 18)
[    48.304] (II) event8  - Razer Razer Blade Keyboard: is tagged by udev as: Keyboard
[    48.304] (II) event8  - Razer Razer Blade Keyboard: device is a keyboard
[    48.306] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event12)
[    48.306] (**) Razer Razer Blade: Applying InputClass "libinput pointer catchall"
[    48.306] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    48.306] (**) Razer Razer Blade: always reports core events
[    48.306] (**) Option "Device" "/dev/input/event12"
[    48.306] (**) Option "_source" "server/udev"
[    48.366] (II) event12 - Razer Razer Blade: is tagged by udev as: Mouse
[    48.367] (II) event12 - Razer Razer Blade: device is a pointer
[    48.367] (II) event12 - Razer Razer Blade: device removed
[    48.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.2/0003:1532:0253.0004/input/input13/event12"
[    48.420] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: MOUSE, id 19)
[    48.420] (**) Option "AccelerationScheme" "none"
[    48.420] (**) Razer Razer Blade: (accel) selected scheme none/0
[    48.420] (**) Razer Razer Blade: (accel) acceleration factor: 2.000
[    48.420] (**) Razer Razer Blade: (accel) acceleration threshold: 4
[    48.480] (II) event12 - Razer Razer Blade: is tagged by udev as: Mouse
[    48.480] (II) event12 - Razer Razer Blade: device is a pointer
[    48.482] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/mouse1)
[    48.482] (II) No input driver specified, ignoring this device.
[    48.482] (II) This device may have been added with another device file.
[    48.483] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input/event13)
[    48.483] (**) ELAN Touchscreen: Applying InputClass "libinput touchscreen catchall"
[    48.483] (II) Using input driver 'libinput' for 'ELAN Touchscreen'
[    48.483] (**) ELAN Touchscreen: always reports core events
[    48.483] (**) Option "Device" "/dev/input/event13"
[    48.483] (**) Option "_source" "server/udev"
[    48.486] (II) event13 - ELAN Touchscreen: is tagged by udev as: Touchscreen
[    48.487] (II) event13 - ELAN Touchscreen: device is a touch device
[    48.487] (II) event13 - ELAN Touchscreen: device removed
[    48.540] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0/0003:04F3:2A38.0005/input/input18/event13"
[    48.540] (II) XINPUT: Adding extended input device "ELAN Touchscreen" (type: TOUCHSCREEN, id 20)
[    48.540] (**) Option "AccelerationScheme" "none"
[    48.540] (**) ELAN Touchscreen: (accel) selected scheme none/0
[    48.540] (**) ELAN Touchscreen: (accel) acceleration factor: 2.000
[    48.540] (**) ELAN Touchscreen: (accel) acceleration threshold: 4
[    48.544] (II) event13 - ELAN Touchscreen: is tagged by udev as: Touchscreen
[    48.544] (II) event13 - ELAN Touchscreen: device is a touch device
[    48.545] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input/mouse2)
[    48.545] (II) No input driver specified, ignoring this device.
[    48.545] (II) This device may have been added with another device file.
[    48.547] (II) config/udev: Adding input device ELAN Touchscreen UNKNOWN (/dev/input/event14)
[    48.547] (II) No input driver specified, ignoring this device.
[    48.547] (II) This device may have been added with another device file.
[    48.548] (II) config/udev: Adding input device ELAN Touchscreen UNKNOWN (/dev/input/event15)
[    48.548] (II) No input driver specified, ignoring this device.
[    48.548] (II) This device may have been added with another device file.
[    48.550] (II) config/udev: Adding input device 1A582009:00 06CB:CD73 Mouse (/dev/input/event17)
[    48.550] (**) 1A582009:00 06CB:CD73 Mouse: Applying InputClass "libinput pointer catchall"
[    48.550] (II) Using input driver 'libinput' for '1A582009:00 06CB:CD73 Mouse'
[    48.550] (**) 1A582009:00 06CB:CD73 Mouse: always reports core events
[    48.550] (**) Option "Device" "/dev/input/event17"
[    48.550] (**) Option "_source" "server/udev"
[    48.553] (II) event17 - 1A582009:00 06CB:CD73 Mouse: is tagged by udev as: Mouse Pointingstick
[    48.554] (II) event17 - 1A582009:00 06CB:CD73 Mouse: device is a pointer
[    48.557] (II) event17 - 1A582009:00 06CB:CD73 Mouse: device removed
[    48.620] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-1A582009:00/0018:06CB:CD73.0006/input/input23/event17"
[    48.620] (II) XINPUT: Adding extended input device "1A582009:00 06CB:CD73 Mouse" (type: MOUSE, id 21)
[    48.620] (**) Option "AccelerationScheme" "none"
[    48.620] (**) 1A582009:00 06CB:CD73 Mouse: (accel) selected scheme none/0
[    48.620] (**) 1A582009:00 06CB:CD73 Mouse: (accel) acceleration factor: 2.000
[    48.620] (**) 1A582009:00 06CB:CD73 Mouse: (accel) acceleration threshold: 4
[    48.624] (II) event17 - 1A582009:00 06CB:CD73 Mouse: is tagged by udev as: Mouse Pointingstick
[    48.624] (II) event17 - 1A582009:00 06CB:CD73 Mouse: device is a pointer
[    48.629] (II) config/udev: Adding input device 1A582009:00 06CB:CD73 Mouse (/dev/input/mouse3)
[    48.629] (II) No input driver specified, ignoring this device.
[    48.629] (II) This device may have been added with another device file.
[    48.630] (II) config/udev: Adding input device 1A582009:00 06CB:CD73 Touchpad (/dev/input/event18)
[    48.630] (**) 1A582009:00 06CB:CD73 Touchpad: Applying InputClass "libinput touchpad catchall"
[    48.630] (II) Using input driver 'libinput' for '1A582009:00 06CB:CD73 Touchpad'
[    48.630] (**) 1A582009:00 06CB:CD73 Touchpad: always reports core events
[    48.630] (**) Option "Device" "/dev/input/event18"
[    48.631] (**) Option "_source" "server/udev"
[    48.634] (II) event18 - 1A582009:00 06CB:CD73 Touchpad: is tagged by udev as: Touchpad
[    48.637] (II) event18 - 1A582009:00 06CB:CD73 Touchpad: device is a touchpad
[    48.637] (II) event18 - 1A582009:00 06CB:CD73 Touchpad: device removed
[    48.701] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-1A582009:00/0018:06CB:CD73.0006/input/input24/event18"
[    48.701] (II) XINPUT: Adding extended input device "1A582009:00 06CB:CD73 Touchpad" (type: TOUCHPAD, id 22)
[    48.704] (**) Option "AccelerationScheme" "none"
[    48.704] (**) 1A582009:00 06CB:CD73 Touchpad: (accel) selected scheme none/0
[    48.704] (**) 1A582009:00 06CB:CD73 Touchpad: (accel) acceleration factor: 2.000
[    48.704] (**) 1A582009:00 06CB:CD73 Touchpad: (accel) acceleration threshold: 4
[    48.707] (II) event18 - 1A582009:00 06CB:CD73 Touchpad: is tagged by udev as: Touchpad
[    48.711] (II) event18 - 1A582009:00 06CB:CD73 Touchpad: device is a touchpad
[    48.713] (II) config/udev: Adding input device 1A582009:00 06CB:CD73 Touchpad (/dev/input/mouse4)
[    48.713] (II) No input driver specified, ignoring this device.
[    48.713] (II) This device may have been added with another device file.
[    48.713] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event21)
[    48.713] (II) No input driver specified, ignoring this device.
[    48.713] (II) This device may have been added with another device file.
[    48.714] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event22)
[    48.714] (II) No input driver specified, ignoring this device.
[    48.714] (II) This device may have been added with another device file.
[    48.715] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event23)
[    48.715] (II) No input driver specified, ignoring this device.
[    48.715] (II) This device may have been added with another device file.
[    48.715] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event24)
[    48.715] (II) No input driver specified, ignoring this device.
[    48.715] (II) This device may have been added with another device file.
[    48.716] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event25)
[    48.716] (II) No input driver specified, ignoring this device.
[    48.716] (II) This device may have been added with another device file.
[    48.717] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event26)
[    48.717] (II) No input driver specified, ignoring this device.
[    48.717] (II) This device may have been added with another device file.
[    48.718] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event27)
[    48.718] (II) No input driver specified, ignoring this device.
[    48.718] (II) This device may have been added with another device file.
[    48.718] (II) config/udev: Adding input device PC Speaker (/dev/input/event16)
[    48.718] (II) No input driver specified, ignoring this device.
[    48.718] (II) This device may have been added with another device file.
[    48.784] (**) G-Tech Wireless Dongle Consumer Control: Applying InputClass "libinput keyboard catchall"
[    48.784] (II) Using input driver 'libinput' for 'G-Tech Wireless Dongle Consumer Control'
[    48.784] (**) G-Tech Wireless Dongle Consumer Control: always reports core events
[    48.784] (**) Option "Device" "/dev/input/event5"
[    48.784] (**) Option "_source" "_driver/libinput"
[    48.784] (II) libinput: G-Tech Wireless Dongle Consumer Control: is a virtual subdevice
[    48.784] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1A81:1701.0001/input/input5/event5"
[    48.784] (II) XINPUT: Adding extended input device "G-Tech Wireless Dongle Consumer Control" (type: KEYBOARD, id 23)
[    48.785] (**) Razer Razer Blade Consumer Control: Applying InputClass "libinput keyboard catchall"
[    48.785] (II) Using input driver 'libinput' for 'Razer Razer Blade Consumer Control'
[    48.785] (**) Razer Razer Blade Consumer Control: always reports core events
[    48.785] (**) Option "Device" "/dev/input/event9"
[    48.785] (**) Option "_source" "_driver/libinput"
[    48.785] (II) libinput: Razer Razer Blade Consumer Control: is a virtual subdevice
[    48.785] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1532:0253.0003/input/input10/event9"
[    48.785] (II) XINPUT: Adding extended input device "Razer Razer Blade Consumer Control" (type: KEYBOARD, id 24)
[    48.842] (EE) Failed to open authorization file "/var/run/sddm/{b4f3b75f-334b-4950-a75b-4a7a97a2018c}": No such file or directory
[    54.765] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    54.765] (II) modeset(0): Printing DDC gathered Modelines:
[    54.765] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    54.767] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    54.767] (II) modeset(0): Printing DDC gathered Modelines:
[    54.767] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    54.767] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    54.767] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    54.767] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    54.767] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    54.767] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    54.767] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    54.767] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    54.767] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    54.767] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    54.767] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    54.767] (--) NVIDIA(GPU-0): 
[    57.209] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    57.210] (II) modeset(0): Printing DDC gathered Modelines:
[    57.210] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    57.213] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    57.214] (II) modeset(0): Printing DDC gathered Modelines:
[    57.214] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    57.215] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    57.215] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    57.215] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    57.215] (--) NVIDIA(GPU-0): 
[    57.215] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    57.215] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    57.215] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    57.215] (--) NVIDIA(GPU-0): 
[    57.215] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    57.215] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    57.215] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    57.215] (--) NVIDIA(GPU-0): 
[    57.216] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    57.216] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    57.216] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    57.216] (--) NVIDIA(GPU-0): 
[    57.216] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    57.216] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    57.216] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    57.216] (--) NVIDIA(GPU-0): 
[    57.216] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    57.216] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    57.216] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    57.216] (--) NVIDIA(GPU-0): 
[    57.216] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    57.216] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    57.216] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    57.216] (--) NVIDIA(GPU-0): 
[    57.647] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    57.647] (II) modeset(0): Printing DDC gathered Modelines:
[    57.647] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    57.650] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    57.650] (II) modeset(0): Printing DDC gathered Modelines:
[    57.650] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    57.651] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    57.651] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    57.651] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    57.651] (--) NVIDIA(GPU-0): 
[    57.651] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    57.651] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    57.651] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    57.651] (--) NVIDIA(GPU-0): 
[    57.651] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    57.651] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    57.651] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    57.651] (--) NVIDIA(GPU-0): 
[    57.652] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    57.652] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    57.652] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    57.652] (--) NVIDIA(GPU-0): 
[    57.652] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    57.652] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    57.652] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    57.652] (--) NVIDIA(GPU-0): 
[    57.652] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    57.652] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    57.652] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    57.652] (--) NVIDIA(GPU-0): 
[    57.652] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    57.652] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    57.652] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    57.652] (--) NVIDIA(GPU-0): 
[    58.776] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    58.776] (II) modeset(0): Printing DDC gathered Modelines:
[    58.776] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    58.779] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    58.779] (II) modeset(0): Printing DDC gathered Modelines:
[    58.779] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    58.779] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    58.779] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    58.779] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    58.780] (--) NVIDIA(GPU-0): 
[    58.780] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    58.780] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    58.780] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    58.780] (--) NVIDIA(GPU-0): 
[    58.780] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    58.780] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    58.780] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    58.780] (--) NVIDIA(GPU-0): 
[    58.780] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    58.780] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    58.780] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    58.780] (--) NVIDIA(GPU-0): 
[    58.780] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    58.780] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    58.781] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    58.781] (--) NVIDIA(GPU-0): 
[    58.781] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    58.781] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    58.781] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    58.781] (--) NVIDIA(GPU-0): 
[    58.781] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    58.781] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    58.781] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    58.781] (--) NVIDIA(GPU-0): 
[    58.801] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    58.801] (II) modeset(0): Printing DDC gathered Modelines:
[    58.801] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    58.804] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    58.804] (II) modeset(0): Printing DDC gathered Modelines:
[    58.804] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    58.806] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    58.806] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    58.806] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    58.806] (--) NVIDIA(GPU-0): 
[    58.807] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    58.807] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    58.807] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    58.807] (--) NVIDIA(GPU-0): 
[    58.807] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    58.807] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    58.807] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    58.807] (--) NVIDIA(GPU-0): 
[    58.808] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    58.808] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    58.808] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    58.808] (--) NVIDIA(GPU-0): 
[    58.808] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    58.808] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    58.808] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    58.808] (--) NVIDIA(GPU-0): 
[    58.808] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    58.808] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    58.808] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    58.808] (--) NVIDIA(GPU-0): 
[    58.808] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    58.808] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    58.809] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    58.809] (--) NVIDIA(GPU-0): 
[    64.217] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    64.217] (II) modeset(0): Printing DDC gathered Modelines:
[    64.217] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    64.219] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    64.219] (II) modeset(0): Printing DDC gathered Modelines:
[    64.219] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    64.219] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    64.219] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    64.219] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    64.219] (--) NVIDIA(GPU-0): 
[    64.219] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    64.219] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    64.219] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    64.219] (--) NVIDIA(GPU-0): 
[    64.219] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    64.219] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    64.219] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    64.219] (--) NVIDIA(GPU-0): 
[    64.220] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    64.220] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    64.220] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    64.220] (--) NVIDIA(GPU-0): 
[    64.220] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    64.220] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    64.220] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    64.220] (--) NVIDIA(GPU-0): 
[    64.220] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    64.220] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    64.220] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    64.220] (--) NVIDIA(GPU-0): 
[    64.220] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    64.220] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    64.220] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    64.220] (--) NVIDIA(GPU-0): 
[    64.222] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    64.222] (II) modeset(0): Printing DDC gathered Modelines:
[    64.222] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    64.223] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    64.223] (II) modeset(0): Printing DDC gathered Modelines:
[    64.223] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    64.224] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    64.224] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    64.224] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    64.224] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    64.224] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    64.224] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    64.224] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    64.224] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    64.224] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    64.224] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    64.224] (--) NVIDIA(GPU-0): 
[    73.337] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.337] (II) modeset(0): Printing DDC gathered Modelines:
[    73.337] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.339] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.339] (II) modeset(0): Printing DDC gathered Modelines:
[    73.339] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.340] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    73.340] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    73.340] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    73.340] (--) NVIDIA(GPU-0): 
[    73.340] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    73.340] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    73.340] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    73.340] (--) NVIDIA(GPU-0): 
[    73.340] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    73.340] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    73.340] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    73.340] (--) NVIDIA(GPU-0): 
[    73.340] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    73.340] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    73.340] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    73.340] (--) NVIDIA(GPU-0): 
[    73.341] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    73.341] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    73.341] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    73.341] (--) NVIDIA(GPU-0): 
[    73.341] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    73.341] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    73.341] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    73.341] (--) NVIDIA(GPU-0): 
[    73.341] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    73.341] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    73.341] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    73.341] (--) NVIDIA(GPU-0): 
[    73.343] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.343] (II) modeset(0): Printing DDC gathered Modelines:
[    73.343] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.345] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.345] (II) modeset(0): Printing DDC gathered Modelines:
[    73.345] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.346] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    73.346] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    73.346] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    73.346] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    73.347] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    73.347] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    73.347] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    73.347] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    73.347] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.347] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    73.347] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    73.347] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    73.347] (--) NVIDIA(GPU-0): 
[    73.351] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.352] (II) modeset(0): Printing DDC gathered Modelines:
[    73.352] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.353] (II) modeset(0): EDID vendor "SDC", prod id 41001
[    73.353] (II) modeset(0): Printing DDC gathered Modelines:
[    73.353] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[    73.354] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    73.354] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    73.354] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    73.354] (--) NVIDIA(GPU-0): 
[    73.354] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    73.354] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    73.354] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    73.354] (--) NVIDIA(GPU-0): 
[    73.354] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    73.354] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    73.354] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[    73.354] (--) NVIDIA(GPU-0): 
[    73.355] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    73.355] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    73.355] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    73.355] (--) NVIDIA(GPU-0): 
[    73.355] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    73.355] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    73.355] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    73.355] (--) NVIDIA(GPU-0): 
[    73.355] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    73.355] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    73.355] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    73.355] (--) NVIDIA(GPU-0): 
[    73.355] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    73.355] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    73.355] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[    73.355] (--) NVIDIA(GPU-0): 
[   377.440] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 22ms, your system is too slow
[   382.934] (EE) event8  - Razer Razer Blade Keyboard: client bug: event processing lagging behind by 61ms, your system is too slow
[   391.987] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   391.987] (II) modeset(0): Printing DDC gathered Modelines:
[   391.987] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   391.989] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   391.989] (II) modeset(0): Printing DDC gathered Modelines:
[   391.989] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   391.990] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   391.990] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[   391.990] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[   391.990] (--) NVIDIA(GPU-0): 
[   393.724] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   393.724] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   393.724] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   393.724] (--) NVIDIA(GPU-0): 
[   393.724] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   393.724] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   393.724] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[   393.724] (--) NVIDIA(GPU-0): 
[   393.724] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   393.725] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   393.725] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   393.725] (--) NVIDIA(GPU-0): 
[   393.731] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   393.731] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[   393.731] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[   393.731] (--) NVIDIA(GPU-0): 
[   393.731] (--) NVIDIA(GPU-0): DFP-5: disconnected
[   393.731] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[   393.731] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[   393.731] (--) NVIDIA(GPU-0): 
[   393.731] (--) NVIDIA(GPU-0): DFP-6: disconnected
[   393.731] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[   393.731] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[   393.731] (--) NVIDIA(GPU-0): 
[   427.623] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): connected
[   427.623] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): Internal TMDS
[   427.623] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): 600.0 MHz maximum pixel clock
[   427.623] (--) NVIDIA(GPU-0): 
[   427.626] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   427.626] (II) modeset(0): Printing DDC gathered Modelines:
[   427.626] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   427.681] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   427.681] (II) modeset(0): Printing DDC gathered Modelines:
[   427.681] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   427.683] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   427.683] (II) modeset(0): Printing DDC gathered Modelines:
[   427.683] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   427.684] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   427.684] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[   427.684] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[   427.684] (--) NVIDIA(GPU-0): 
[   427.684] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   427.684] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   427.684] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   427.684] (--) NVIDIA(GPU-0): 
[   427.684] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   427.684] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   427.684] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[   427.684] (--) NVIDIA(GPU-0): 
[   427.684] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   427.684] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   427.684] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   427.684] (--) NVIDIA(GPU-0): 
[   427.715] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): connected
[   427.715] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): Internal TMDS
[   427.715] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): 600.0 MHz maximum pixel clock
[   427.715] (--) NVIDIA(GPU-0): 
[   427.715] (--) NVIDIA(GPU-0): DFP-5: disconnected
[   427.715] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[   427.715] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[   427.715] (--) NVIDIA(GPU-0): 
[   427.715] (--) NVIDIA(GPU-0): DFP-6: disconnected
[   427.715] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[   427.715] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[   427.715] (--) NVIDIA(GPU-0): 
[   428.371] (II) modeset(0): Allocate new frame buffer 5760x2160 stride
[   428.553] (II) NVIDIA(G0): Setting mode "HDMI-1-0: 1920x1080 @1920x1080 +3840+0 {AllowGSYNC=Off, ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[   452.427] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   452.427] (II) modeset(0): Printing DDC gathered Modelines:
[   452.427] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   452.429] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   452.430] (II) modeset(0): Printing DDC gathered Modelines:
[   452.430] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   452.430] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   452.430] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[   452.430] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[   452.430] (--) NVIDIA(GPU-0): 
[   452.431] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   452.431] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   452.431] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   452.431] (--) NVIDIA(GPU-0): 
[   452.431] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   452.431] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   452.431] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[   452.431] (--) NVIDIA(GPU-0): 
[   452.431] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   452.431] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   452.431] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   452.431] (--) NVIDIA(GPU-0): 
[   452.462] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): connected
[   452.462] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): Internal TMDS
[   452.462] (--) NVIDIA(GPU-0): DTV CHHWJT (DFP-4): 600.0 MHz maximum pixel clock
[   452.462] (--) NVIDIA(GPU-0): 
[   452.462] (--) NVIDIA(GPU-0): DFP-5: disconnected
[   452.462] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[   452.462] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[   452.462] (--) NVIDIA(GPU-0): 
[   452.462] (--) NVIDIA(GPU-0): DFP-6: disconnected
[   452.462] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[   452.462] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[   452.462] (--) NVIDIA(GPU-0): 
[   467.973] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   468.821] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   469.543] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 13ms, your system is too slow
[   477.796] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   477.949] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   477.949] (EE) event3  - G-Tech Wireless Dongle Mouse: WARNING: log rate limit exceeded (5 msgs per 60s). Discarding future messages.
[   486.116] (EE) client bug: timer event3 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[   498.440] (EE) event8  - Razer Razer Blade Keyboard: client bug: event processing lagging behind by 20ms, your system is too slow
[   547.093] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   547.093] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[   547.093] (--) NVIDIA(GPU-0): DFP-4: 600.0 MHz maximum pixel clock
[   547.093] (--) NVIDIA(GPU-0): 
[   547.107] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   547.107] (II) modeset(0): Printing DDC gathered Modelines:
[   547.107] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   547.196] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   547.196] (II) modeset(0): Printing DDC gathered Modelines:
[   547.196] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   547.301] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   547.301] (II) modeset(0): Printing DDC gathered Modelines:
[   547.301] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   547.302] (II) modeset(0): EDID vendor "SDC", prod id 41001
[   547.302] (II) modeset(0): Printing DDC gathered Modelines:
[   547.302] (II) modeset(0): Modeline "3840x2160"x0.0  573.41  3840 3888 3920 4400  2160 2164 2168 2172 +hsync -vsync (130.3 kHz eP)
[   547.303] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   547.303] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[   547.303] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[   547.303] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   547.304] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   547.304] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   547.304] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[   547.304] (--) NVIDIA(GPU-0): DFP-4: 600.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-5: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[   547.304] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.304] (--) NVIDIA(GPU-0): DFP-6: disconnected
[   547.304] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[   547.304] (--) NVIDIA(GPU-0): DFP-6: 2660.0 MHz maximum pixel clock
[   547.304] (--) NVIDIA(GPU-0): 
[   547.845] (II) NVIDIA(G0): Setting mode "NULL"
[   547.897] (II) modeset(0): Allocate new frame buffer 3840x2160 stride
[   558.297] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   562.227] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 14ms, your system is too slow
[   834.957] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 12ms, your system is too slow
[   847.671] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 13ms, your system is too slow
[   851.119] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 13ms, your system is too slow
[   869.838] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   872.726] (EE) event3  - G-Tech Wireless Dongle Mouse: client bug: event processing lagging behind by 11ms, your system is too slow
[   872.726] (EE) event3  - G-Tech Wireless Dongle Mouse: WARNING: log rate limit exceeded (5 msgs per 60s). Discarding future messages.

Offline

Board footer

Powered by FluxBB