You are not logged in.

#1 2020-04-11 05:58:25

RMTT
Member
Registered: 2020-04-07
Posts: 11

NVIDIA PRIME seems doesn't work on optimus laptop

My laptop has intel HD530 and NVIDIA 960M double cards, and just the intel HD530 can output.I followed the PRIME wiki and use the

PRIME render offload

method, there is my xorg.conf:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 440.64

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

Section "Files"
EndSection

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

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

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "eGPU"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Device"
    Identifier    "iGPU"
    Driver 	 "modesetting"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "iGPU"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

And kernel modules:

lsmod | grep nvidia
nvidia_uvm           1093632  0
nvidia_drm             53248  1
nvidia_modeset       1118208  1 nvidia_drm
nvidia              20504576  17 nvidia_uvm,nvidia_modeset
drm_kms_helper        241664  2 nvidia_drm,i915
ipmi_msghandler        73728  2 ipmi_devintf,nvidia
drm                   565248  14 drm_kms_helper,nvidia_drm,i915


lsmod | grep i915
i915                 2498560  28
i2c_algo_bit           16384  1 i915
drm_kms_helper        241664  2 nvidia_drm,i915
cec                    65536  2 drm_kms_helper,i915
intel_gtt              24576  1 i915
drm                   565248  14 drm_kms_helper,nvidia_drm,i915
 

And the nvidia-smi can work:

Sat Apr 11 13:51:19 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 440.82       Driver Version: 440.82       CUDA Version: 10.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 960M    On   | 00000000:01:00.0 Off |                  N/A |
| N/A   32C    P8    N/A /  N/A |      0MiB /  2004MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

But if i run

prime-run glxinfo | grep "OpenGL renderer"

, then some error happened:

X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  152 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  39
  Current serial number in output stream:  40

And then run

prime-run vulkaninfo

, there is just one physical device:

Device Groups:
==============
Group 0:
	Properties:
		physicalDevices: count = 1
			Intel(R) HD Graphics 530 (SKL GT2) (ID: 0)
		subsetAllocation = 0

	Present Capabilities:
		Intel(R) HD Graphics 530 (SKL GT2) (ID: 0):
			Can present images from the following devices: count = 1
				Intel(R) HD Graphics 530 (SKL GT2) (ID: 0)
		Present modes: count = 1
			DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR

But when i use vulkaninfo on windows 10, it can output two physical devices, i don't know whether the PRIME is configured correctly.

Offline

#2 2020-04-11 06:41:16

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

Re: NVIDIA PRIME seems doesn't work on optimus laptop

wiki wrote:

In some cases, it might even be necessary to also include the appropriate BusID for the iGPU and dGPU devices in the configuration above, as per Xorg#More than one graphics card.

Unrelated note: the inputdevice sections in your xorg.conf are dead cruft generated by the nvidia-xconfig tool, the referenced drivers virtually don't exist anymore (and will fail to load)

Offline

#3 2020-04-11 07:39:53

RMTT
Member
Registered: 2020-04-07
Posts: 11

Re: NVIDIA PRIME seems doesn't work on optimus laptop

seth wrote:
wiki wrote:

In some cases, it might even be necessary to also include the appropriate BusID for the iGPU and dGPU devices in the configuration above, as per Xorg#More than one graphics card.

Unrelated note: the inputdevice sections in your xorg.conf are dead cruft generated by the nvidia-xconfig tool, the referenced drivers virtually don't exist anymore (and will fail to load)

Thanks man, it works after adding the pci address! I think it do not need PCI address because the nvidia-smi can output the information  about the nvidia card, it's my wrong!

Offline

#4 2020-04-11 12:29:46

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

Re: NVIDIA PRIME seems doesn't work on optimus laptop

Cool.
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

#5 2020-04-12 01:28:19

RMTT
Member
Registered: 2020-04-07
Posts: 11

Re: NVIDIA PRIME seems doesn't work on optimus laptop

seth wrote:

Cool.
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Yeah, but how to edit the post title?
And i found that the Xorg sometimes run by intel or sometimes run by nvidia when i reboot, how the kernel determine which card should be used (just reboot, not open any program). And if the  Xorg run by intel, the prime-run seems cannot work correctly.

Last edited by RMTT (2020-04-12 05:12:20)

Offline

#6 2020-04-12 05:41:42

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

Re: NVIDIA PRIME seems doesn't work on optimus laptop

The kernel doesn't determine that¹, you select the GPU for xorg.

And if the  Xorg run by intel, the prime-run seems cannot work correctly.

In that case your setup is broken.

Please post your present xorg.conf and an xorg log for when things do and when they don't work as well as the "broken" prime-run errors.

[1] You can determine which GPU to use on the framebuffer console using "fbcon=map:<n>", https://www.kernel.org/doc/Documentation/fb/fbcon.txt

Offline

#7 2020-04-12 10:32:50

RMTT
Member
Registered: 2020-04-07
Posts: 11

Re: NVIDIA PRIME seems doesn't work on optimus laptop

seth wrote:

The kernel doesn't determine that¹, you select the GPU for xorg.

And if the  Xorg run by intel, the prime-run seems cannot work correctly.

In that case your setup is broken.

Please post your present xorg.conf and an xorg log for when things do and when they don't work as well as the "broken" prime-run errors.

[1] You can determine which GPU to use on the framebuffer console using "fbcon=map:<n>", https://www.kernel.org/doc/Documentation/fb/fbcon.txt

current Xorg.conf:

Section "Device"
  Identifier "iGPU"
  Driver "modesetting"
  BusId  "PCI:0:2:0"
EndSection

Section "Screen"
  Identifier "iGPU"
  Device "iGPU"
EndSection

Section "Device"
  Identifier "dGPU"
  Driver "nvidia"
  BusID  "PCI:1:0:0"
EndSection

When using intel card, the Xorg log:

[     3.742] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[     3.742] Build Operating System: Linux Arch Linux
[     3.742] Current Operating System: Linux archlinux 5.6.3-arch1-1 #1 SMP PREEMPT Wed, 08 Apr 2020 07:47:16 +0000 x86_64
[     3.742] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9994a61c-722a-4a5e-8d9a-0727838b46d6 rw nvidia-drm.modeset=1 loglevel=3 quiet
[     3.742] Build Date: 30 March 2020  05:05:45AM
[     3.742]  
[     3.742] Current version of pixman: 0.38.4
[     3.742] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     3.742] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     3.742] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 12 18:13:59 2020
[     3.745] (==) Using config file: "/etc/X11/xorg.conf"
[     3.745] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     3.747] (==) ServerLayout "layout"
[     3.747] (**) |-->Screen "iGPU" (0)
[     3.747] (**) |   |-->Monitor "<default monitor>"
[     3.748] (**) |   |-->Device "iGPU"
[     3.748] (**) |   |-->GPUDevice "dGPU"
[     3.748] (==) No monitor specified for screen "iGPU".
	Using a default monitor configuration.
[     3.748] (==) Automatically adding devices
[     3.748] (==) Automatically enabling devices
[     3.748] (==) Automatically adding GPU devices
[     3.748] (==) Automatically binding GPU devices
[     3.748] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     3.749] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[     3.749] 	Entry deleted from font path.
[     3.749] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[     3.751] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     3.751] 	Entry deleted from font path.
[     3.753] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     3.753] (==) ModulePath set to "/usr/lib/xorg/modules"
[     3.753] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     3.753] (II) Module ABI versions:
[     3.753] 	X.Org ANSI C Emulation: 0.4
[     3.753] 	X.Org Video Driver: 24.1
[     3.753] 	X.Org XInput driver : 24.1
[     3.753] 	X.Org Server Extension : 10.0
[     3.753] (++) using VT number 7

[     3.753] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     3.754] (II) xfree86: Adding drm device (/dev/dri/card0)
[     3.773] (--) PCI:*(0@0:2:0) 8086:191b:17aa:0001 rev 6, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[     3.773] (--) PCI: (1@0:0:0) 10de:139b:17aa:0006 rev 162, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128
[     3.773] (II) Open ACPI successful (/var/run/acpid.socket)
[     3.773] (II) LoadModule: "glx"
[     3.773] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     3.784] (II) Module glx: vendor="X.Org Foundation"
[     3.784] 	compiled for 1.20.8, module version = 1.0.0
[     3.784] 	ABI class: X.Org Server Extension, version 10.0
[     3.784] (II) LoadModule: "modesetting"
[     3.784] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     3.786] (II) Module modesetting: vendor="X.Org Foundation"
[     3.786] 	compiled for 1.20.8, module version = 1.20.8
[     3.786] 	Module class: X.Org Video Driver
[     3.786] 	ABI class: X.Org Video Driver, version 24.1
[     3.786] (II) LoadModule: "nvidia"
[     3.786] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     3.792] (II) Module nvidia: vendor="NVIDIA Corporation"
[     3.792] 	compiled for 1.6.99.901, module version = 1.0.0
[     3.792] 	Module class: X.Org Video Driver
[     3.792] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     3.792] (II) NVIDIA dlloader X Driver  440.82  Wed Apr  1 19:50:17 UTC 2020
[     3.792] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.187] (II) modeset(0): using drv /dev/dri/card0
[     4.190] (II) Loading sub module "fb"
[     4.190] (II) LoadModule: "fb"
[     4.190] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.190] (II) Module fb: vendor="X.Org Foundation"
[     4.190] 	compiled for 1.20.8, module version = 1.0.0
[     4.190] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.190] (II) Loading sub module "wfb"
[     4.190] (II) LoadModule: "wfb"
[     4.190] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.191] (II) Module wfb: vendor="X.Org Foundation"
[     4.191] 	compiled for 1.20.8, module version = 1.0.0
[     4.191] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.191] (II) Loading sub module "ramdac"
[     4.191] (II) LoadModule: "ramdac"
[     4.191] (II) Module "ramdac" already built-in
[     4.192] (EE) Screen 1 deleted because of no matching config section.
[     4.192] (II) UnloadModule: "nvidia"
[     4.192] (II) UnloadSubModule: "wfb"
[     4.192] (II) UnloadSubModule: "fb"
[     4.192] (II) modeset(0): Creating default Display subsection in Screen section
	"iGPU" for depth/fbbpp 24/32
[     4.192] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     4.192] (==) modeset(0): RGB weight 888
[     4.192] (==) modeset(0): Default visual is TrueColor
[     4.192] (II) Loading sub module "glamoregl"
[     4.192] (II) LoadModule: "glamoregl"
[     4.192] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.198] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.198] 	compiled for 1.20.8, module version = 1.0.1
[     4.199] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.467] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) HD Graphics 530 (SKL GT2)
[     4.467] (II) modeset(0): glamor initialized
[     4.468] (II) modeset(0): Output eDP-1 has no monitor section
[     4.472] (II) modeset(0): Output HDMI-1 has no monitor section
[     4.472] (II) modeset(0): Output DP-1 has no monitor section
[     4.473] (II) modeset(0): EDID for output eDP-1
[     4.473] (II) modeset(0): Manufacturer: BOE  Model: 65e  Serial#: 0
[     4.473] (II) modeset(0): Year: 2015  Week: 1
[     4.473] (II) modeset(0): EDID Version: 1.4
[     4.473] (II) modeset(0): Digital Display Input
[     4.473] (II) modeset(0): 6 bits per channel
[     4.473] (II) modeset(0): Digital interface is DisplayPort
[     4.473] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     4.473] (II) modeset(0): Gamma: 2.20
[     4.473] (II) modeset(0): No DPMS capabilities specified
[     4.473] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     4.473] (II) modeset(0): First detailed timing is preferred mode
[     4.473] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     4.473] (II) modeset(0): redX: 0.590 redY: 0.350   greenX: 0.329 greenY: 0.555
[     4.473] (II) modeset(0): blueX: 0.152 blueY: 0.118   whiteX: 0.312 whiteY: 0.328
[     4.473] (II) modeset(0): Manufacturer's mask: 0
[     4.473] (II) modeset(0): Supported detailed timing:
[     4.473] (II) modeset(0): clock: 141.4 MHz   Image Size:  344 x 194 mm
[     4.473] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2142 h_border: 0
[     4.473] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1100 v_border: 0
[     4.473] (II) modeset(0):  BOE HF
[     4.473] (II) modeset(0):  NV156FHM-N42
[     4.473] (II) modeset(0): EDID (in hex):
[     4.473] (II) modeset(0): 	00ffffffffffff0009e55e0600000000
[     4.473] (II) modeset(0): 	01190104952213780224109759548e27
[     4.473] (II) modeset(0): 	1e505400000001010101010101010101
[     4.473] (II) modeset(0): 	0101010101013c3780de703814403020
[     4.473] (II) modeset(0): 	360058c21000001a0000000000000000
[     4.473] (II) modeset(0): 	00000000000000000000000000fe0042
[     4.473] (II) modeset(0): 	4f452048460a202020202020000000fe
[     4.473] (II) modeset(0): 	004e5631353646484d2d4e34320a006b
[     4.474] (II) modeset(0): Printing probed modes for output eDP-1
[     4.474] (II) modeset(0): Modeline "1920x1080"x60.0  141.40  1920 1968 2000 2142  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[     4.474] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[     4.474] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     4.474] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     4.474] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     4.474] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     4.474] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     4.474] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     4.474] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     4.474] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     4.474] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     4.474] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     4.474] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     4.474] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     4.474] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     4.474] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     4.474] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     4.474] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     4.474] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     4.474] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     4.474] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     4.474] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     4.474] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     4.474] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     4.474] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     4.474] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     4.474] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     4.474] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     4.474] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     4.474] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     4.474] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     4.474] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     4.474] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.474] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.474] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     4.474] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.474] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.474] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     4.474] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     4.474] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     4.474] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     4.474] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     4.474] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     4.474] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     4.474] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     4.474] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     4.474] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     4.474] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     4.474] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     4.474] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     4.474] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     4.474] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     4.474] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     4.474] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     4.474] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     4.474] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     4.475] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     4.475] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     4.475] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     4.475] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     4.475] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     4.475] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     4.475] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     4.478] (II) modeset(0): EDID for output HDMI-1
[     4.478] (II) modeset(0): EDID for output DP-1
[     4.478] (II) modeset(0): Output eDP-1 connected
[     4.478] (II) modeset(0): Output HDMI-1 disconnected
[     4.478] (II) modeset(0): Output DP-1 disconnected
[     4.478] (II) modeset(0): Using exact sizes for initial modes
[     4.478] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.478] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.478] (==) modeset(0): DPI set to (96, 96)
[     4.478] (II) Loading sub module "fb"
[     4.478] (II) LoadModule: "fb"
[     4.478] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.478] (II) Module fb: vendor="X.Org Foundation"
[     4.478] 	compiled for 1.20.8, module version = 1.0.0
[     4.478] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.493] (==) modeset(0): Backing store enabled
[     4.493] (==) modeset(0): Silken mouse disabled
[     4.571] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     4.571] (==) modeset(0): DPMS enabled
[     4.572] (II) modeset(0): [DRI2] Setup complete
[     4.572] (II) modeset(0): [DRI2]   DRI driver: iris
[     4.572] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     4.572] (II) Initializing extension Generic Event Extension
[     4.572] (II) Initializing extension SHAPE
[     4.572] (II) Initializing extension MIT-SHM
[     4.572] (II) Initializing extension XInputExtension
[     4.573] (II) Initializing extension XTEST
[     4.573] (II) Initializing extension BIG-REQUESTS
[     4.573] (II) Initializing extension SYNC
[     4.574] (II) Initializing extension XKEYBOARD
[     4.574] (II) Initializing extension XC-MISC
[     4.574] (II) Initializing extension SECURITY
[     4.575] (II) Initializing extension XFIXES
[     4.575] (II) Initializing extension RENDER
[     4.575] (II) Initializing extension RANDR
[     4.576] (II) Initializing extension COMPOSITE
[     4.576] (II) Initializing extension DAMAGE
[     4.576] (II) Initializing extension MIT-SCREEN-SAVER
[     4.576] (II) Initializing extension DOUBLE-BUFFER
[     4.577] (II) Initializing extension RECORD
[     4.577] (II) Initializing extension DPMS
[     4.577] (II) Initializing extension Present
[     4.578] (II) Initializing extension DRI3
[     4.578] (II) Initializing extension X-Resource
[     4.578] (II) Initializing extension XVideo
[     4.578] (II) Initializing extension XVideo-MotionCompensation
[     4.578] (II) Initializing extension GLX
[     4.600] (II) AIGLX: Loaded and initialized iris
[     4.600] (II) GLX: Initialized DRI2 GL provider for screen 0
[     4.600] (II) Initializing extension XFree86-VidModeExtension
[     4.601] (II) Initializing extension XFree86-DGA
[     4.601] (II) Initializing extension XFree86-DRI
[     4.601] (II) Initializing extension DRI2
[     4.609] (II) modeset(0): Damage tracking initialized
[     4.609] (II) modeset(0): Setting screen physical size to 508 x 285
[     4.695] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[     4.695] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     4.695] (II) LoadModule: "libinput"
[     4.695] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     4.698] (II) Module libinput: vendor="X.Org Foundation"
[     4.698] 	compiled for 1.20.7, module version = 0.29.0
[     4.698] 	Module class: X.Org XInput Driver
[     4.698] 	ABI class: X.Org XInput driver, version 24.1
[     4.698] (II) Using input driver 'libinput' for 'Power Button'
[     4.698] (**) Power Button: always reports core events
[     4.698] (**) Option "Device" "/dev/input/event2"
[     4.698] (**) Option "_source" "server/udev"
[     4.703] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     4.703] (II) event2  - Power Button: device is a keyboard
[     4.703] (II) event2  - Power Button: device removed
[     4.731] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[     4.731] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     4.732] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     4.732] (II) event2  - Power Button: device is a keyboard
[     4.732] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[     4.732] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     4.732] (II) Using input driver 'libinput' for 'Video Bus'
[     4.732] (**) Video Bus: always reports core events
[     4.732] (**) Option "Device" "/dev/input/event7"
[     4.732] (**) Option "_source" "server/udev"
[     4.733] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     4.733] (II) event7  - Video Bus: device is a keyboard
[     4.733] (II) event7  - Video Bus: device removed
[     4.757] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9/event7"
[     4.757] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     4.759] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     4.759] (II) event7  - Video Bus: device is a keyboard
[     4.760] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[     4.760] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     4.760] (II) Using input driver 'libinput' for 'Video Bus'
[     4.761] (**) Video Bus: always reports core events
[     4.761] (**) Option "Device" "/dev/input/event6"
[     4.761] (**) Option "_source" "server/udev"
[     4.763] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     4.763] (II) event6  - Video Bus: device is a keyboard
[     4.763] (II) event6  - Video Bus: device removed
[     4.797] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8/event6"
[     4.798] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     4.800] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     4.801] (II) event6  - Video Bus: device is a keyboard
[     4.802] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     4.802] (II) No input driver specified, ignoring this device.
[     4.802] (II) This device may have been added with another device file.
[     4.803] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     4.803] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     4.803] (II) Using input driver 'libinput' for 'Sleep Button'
[     4.803] (**) Sleep Button: always reports core events
[     4.803] (**) Option "Device" "/dev/input/event1"
[     4.803] (**) Option "_source" "server/udev"
[     4.805] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     4.805] (II) event1  - Sleep Button: device is a keyboard
[     4.806] (II) event1  - Sleep Button: device removed
[     4.824] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     4.824] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     4.827] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     4.827] (II) event1  - Sleep Button: device is a keyboard
[     4.827] (II) config/udev: Adding drm device (/dev/dri/card1)
[     4.827] (II) xfree86: Adding drm device (/dev/dri/card1)
[     4.827] (II) LoadModule: "modesetting"
[     4.827] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.828] (II) Module modesetting: vendor="X.Org Foundation"
[     4.828] 	compiled for 1.20.8, module version = 1.20.8
[     4.828] 	Module class: X.Org Video Driver
[     4.828] 	ABI class: X.Org Video Driver, version 24.1
[     4.828] (II) UnloadModule: "modesetting"
[     4.828] (II) Unloading modesetting
[     4.828] (II) Failed to load module "modesetting" (already loaded, 0)
[     4.828] (II) modeset(G0): using drv /dev/dri/card1
[     4.828] (II) modeset(G0): Using 24bpp hw front buffer with 32bpp shadow
[     4.828] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[     4.828] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.828] (==) modeset(G0): RGB weight 888
[     4.828] (==) modeset(G0): Default visual is TrueColor
[     4.828] (**) modeset(G0): Cannot use glamor with 24bpp packed fb
[     4.828] (II) modeset(G0): ShadowFB: preferred YES, enabled FORCE
[     4.828] (II) modeset(G0): Double-buffered shadow updates: off
[     4.828] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[     4.828] (==) modeset(G0): DPI set to (96, 96)
[     4.828] (II) Loading sub module "fb"
[     4.828] (II) LoadModule: "fb"
[     4.829] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.829] (II) Module fb: vendor="X.Org Foundation"
[     4.829] 	compiled for 1.20.8, module version = 1.0.0
[     4.829] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.829] (II) Loading sub module "shadow"
[     4.829] (II) LoadModule: "shadow"
[     4.829] (II) Loading /usr/lib/xorg/modules/libshadow.so
[     4.832] (II) Module shadow: vendor="X.Org Foundation"
[     4.832] 	compiled for 1.20.8, module version = 1.1.0
[     4.832] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.834] (==) modeset(G0): Backing store enabled
[     4.834] (==) modeset(G0): Silken mouse disabled
[     4.834] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[     4.834] (==) modeset(G0): DPMS enabled
[     4.834] (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
[     4.834] (II) modeset(G0): Damage tracking initialized
[     4.834] xf86: found device 2
[     4.836] (II) config/udev: Adding input device Lenovo EasyCamera: Lenovo EasyC (/dev/input/event17)
[     4.836] (**) Lenovo EasyCamera: Lenovo EasyC: Applying InputClass "libinput keyboard catchall"
[     4.836] (II) Using input driver 'libinput' for 'Lenovo EasyCamera: Lenovo EasyC'
[     4.836] (**) Lenovo EasyCamera: Lenovo EasyC: always reports core events
[     4.836] (**) Option "Device" "/dev/input/event17"
[     4.837] (**) Option "_source" "server/udev"
[     4.839] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     4.839] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     4.840] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device removed
[     4.891] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input18/event17"
[     4.891] (II) XINPUT: Adding extended input device "Lenovo EasyCamera: Lenovo EasyC" (type: KEYBOARD, id 10)
[     4.894] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     4.894] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     4.896] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event4)
[     4.896] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[     4.896] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[     4.896] (**) Ideapad extra buttons: always reports core events
[     4.896] (**) Option "Device" "/dev/input/event4"
[     4.896] (**) Option "_source" "server/udev"
[     4.898] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     4.898] (II) event4  - Ideapad extra buttons: device is a keyboard
[     4.898] (II) event4  - Ideapad extra buttons: device removed
[     4.931] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input5/event4"
[     4.931] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 11)
[     4.933] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     4.933] (II) event4  - Ideapad extra buttons: device is a keyboard
[     4.935] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[     4.935] (II) No input driver specified, ignoring this device.
[     4.935] (II) This device may have been added with another device file.
[     4.935] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
[     4.935] (II) No input driver specified, ignoring this device.
[     4.935] (II) This device may have been added with another device file.
[     4.936] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event11)
[     4.936] (II) No input driver specified, ignoring this device.
[     4.936] (II) This device may have been added with another device file.
[     4.937] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event12)
[     4.937] (II) No input driver specified, ignoring this device.
[     4.937] (II) This device may have been added with another device file.
[     4.938] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event13)
[     4.938] (II) No input driver specified, ignoring this device.
[     4.938] (II) This device may have been added with another device file.
[     4.939] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event14)
[     4.939] (II) No input driver specified, ignoring this device.
[     4.939] (II) This device may have been added with another device file.
[     4.939] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event15)
[     4.939] (II) No input driver specified, ignoring this device.
[     4.939] (II) This device may have been added with another device file.
[     4.940] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event16)
[     4.940] (II) No input driver specified, ignoring this device.
[     4.940] (II) This device may have been added with another device file.
[     4.941] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[     4.941] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     4.941] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     4.941] (**) AT Translated Set 2 keyboard: always reports core events
[     4.941] (**) Option "Device" "/dev/input/event3"
[     4.941] (**) Option "_source" "server/udev"
[     4.944] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     4.944] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     4.945] (II) event3  - AT Translated Set 2 keyboard: device removed
[     4.971] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[     4.971] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[     4.973] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     4.974] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     4.976] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event8)
[     4.976] (**) ETPS/2 Elantech Touchpad: Applying InputClass "libinput touchpad catchall"
[     4.976] (II) Using input driver 'libinput' for 'ETPS/2 Elantech Touchpad'
[     4.976] (**) ETPS/2 Elantech Touchpad: always reports core events
[     4.976] (**) Option "Device" "/dev/input/event8"
[     4.976] (**) Option "_source" "server/udev"
[     4.978] (II) event8  - ETPS/2 Elantech Touchpad: is tagged by udev as: Touchpad
[     4.981] (II) event8  - ETPS/2 Elantech Touchpad: device is a touchpad
[     4.981] (II) event8  - ETPS/2 Elantech Touchpad: device removed
[     5.024] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event8"
[     5.024] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 13)
[     5.026] (**) Option "AccelerationScheme" "none"
[     5.026] (**) ETPS/2 Elantech Touchpad: (accel) selected scheme none/0
[     5.026] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[     5.026] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[     5.028] (II) event8  - ETPS/2 Elantech Touchpad: is tagged by udev as: Touchpad
[     5.030] (II) event8  - ETPS/2 Elantech Touchpad: device is a touchpad
[     5.032] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[     5.032] (II) No input driver specified, ignoring this device.
[     5.032] (II) This device may have been added with another device file.
[     5.032] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[     5.032] (II) No input driver specified, ignoring this device.
[     5.033] (II) This device may have been added with another device file.
[     5.104] (II) config/udev: removing device Lenovo EasyCamera: Lenovo EasyC
[     5.105] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device removed
[     5.171] (II) UnloadModule: "libinput"
[     5.172] (II) config/udev: Adding input device Lenovo EasyCamera: Lenovo EasyC (/dev/input/event17)
[     5.172] (**) Lenovo EasyCamera: Lenovo EasyC: Applying InputClass "libinput keyboard catchall"
[     5.172] (II) Using input driver 'libinput' for 'Lenovo EasyCamera: Lenovo EasyC'
[     5.172] (**) Lenovo EasyCamera: Lenovo EasyC: always reports core events
[     5.172] (**) Option "Device" "/dev/input/event17"
[     5.172] (**) Option "_source" "server/udev"
[     5.175] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     5.175] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     5.175] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device removed
[     5.237] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input18/event17"
[     5.237] (II) XINPUT: Adding extended input device "Lenovo EasyCamera: Lenovo EasyC" (type: KEYBOARD, id 10)
[     5.241] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     5.241] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     5.241] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
[     5.241] xf86: remove device 1 /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[     5.242] (II) UnloadModule: "modesetting"
[     5.242] (II) UnloadSubModule: "shadow"
[     5.242] (II) Unloading shadow
[     5.242] (II) UnloadSubModule: "fb"
[     5.242] (II) Unloading fb
[     5.242] (II) config/udev: Adding drm device (/dev/dri/card1)
[     5.242] (II) xfree86: Adding drm device (/dev/dri/card1)
[     5.242] (II) LoadModule: "modesetting"
[     5.242] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     5.242] (II) Module modesetting: vendor="X.Org Foundation"
[     5.242] 	compiled for 1.20.8, module version = 1.20.8
[     5.243] 	Module class: X.Org Video Driver
[     5.243] 	ABI class: X.Org Video Driver, version 24.1
[     5.243] (II) UnloadModule: "modesetting"
[     5.243] (II) Unloading modesetting
[     5.243] (II) Failed to load module "modesetting" (already loaded, 0)
[     5.243] (II) modeset(G0): using drv /dev/dri/card1
[     5.243] (II) modeset(G0): Using 24bpp hw front buffer with 32bpp shadow
[     5.243] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[     5.243] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     5.243] (==) modeset(G0): RGB weight 888
[     5.243] (==) modeset(G0): Default visual is TrueColor
[     5.243] (**) modeset(G0): Cannot use glamor with 24bpp packed fb
[     5.243] (II) modeset(G0): ShadowFB: preferred YES, enabled FORCE
[     5.243] (II) modeset(G0): Double-buffered shadow updates: off
[     5.243] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[     5.243] (==) modeset(G0): DPI set to (96, 96)
[     5.243] (II) Loading sub module "fb"
[     5.243] (II) LoadModule: "fb"
[     5.243] (II) Loading /usr/lib/xorg/modules/libfb.so
[     5.243] (II) Module fb: vendor="X.Org Foundation"
[     5.243] 	compiled for 1.20.8, module version = 1.0.0
[     5.244] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.244] (II) Loading sub module "shadow"
[     5.244] (II) LoadModule: "shadow"
[     5.244] (II) Loading /usr/lib/xorg/modules/libshadow.so
[     5.244] (II) Module shadow: vendor="X.Org Foundation"
[     5.244] 	compiled for 1.20.8, module version = 1.1.0
[     5.244] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.246] (==) modeset(G0): Backing store enabled
[     5.246] (==) modeset(G0): Silken mouse disabled
[     5.246] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[     5.246] (==) modeset(G0): DPMS enabled
[     5.246] (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
[     5.246] (II) modeset(G0): Damage tracking initialized
[     5.246] xf86: found device 2
[    19.459] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/mouse1)
[    19.459] (II) No input driver specified, ignoring this device.
[    19.459] (II) This device may have been added with another device file.
[    19.487] (II) config/udev: Adding input device M585/M590 Keyboard (/dev/input/event18)
[    19.487] (**) M585/M590 Keyboard: Applying InputClass "libinput keyboard catchall"
[    19.487] (II) Using input driver 'libinput' for 'M585/M590 Keyboard'
[    19.487] (**) M585/M590 Keyboard: always reports core events
[    19.487] (**) Option "Device" "/dev/input/event18"
[    19.487] (**) Option "_source" "server/udev"
[    19.490] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    19.490] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    19.490] (II) event18 - M585/M590 Keyboard: device removed
[    19.514] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0001/input/input19/event18"
[    19.514] (II) XINPUT: Adding extended input device "M585/M590 Keyboard" (type: KEYBOARD, id 14)
[    19.517] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    19.517] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    19.519] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/event19)
[    19.519] (**) M585/M590 Mouse: Applying InputClass "libinput pointer catchall"
[    19.519] (II) Using input driver 'libinput' for 'M585/M590 Mouse'
[    19.519] (**) M585/M590 Mouse: always reports core events
[    19.519] (**) Option "Device" "/dev/input/event19"
[    19.519] (**) Option "_source" "server/udev"
[    19.526] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    19.527] (II) event19 - M585/M590 Mouse: device is a pointer
[    19.527] (II) event19 - M585/M590 Mouse: device removed
[    19.592] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0001/input/input20/event19"
[    19.592] (II) XINPUT: Adding extended input device "M585/M590 Mouse" (type: MOUSE, id 15)
[    19.593] (**) Option "AccelerationScheme" "none"
[    19.594] (**) M585/M590 Mouse: (accel) selected scheme none/0
[    19.594] (**) M585/M590 Mouse: (accel) acceleration factor: 2.000
[    19.594] (**) M585/M590 Mouse: (accel) acceleration threshold: 4
[    19.596] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    19.596] (II) event19 - M585/M590 Mouse: device is a pointer
[    49.064] (II) config/udev: removing device M585/M590 Keyboard
[    49.065] (II) event18 - M585/M590 Keyboard: device removed
[    49.082] (II) UnloadModule: "libinput"
[    49.083] (II) config/udev: removing device M585/M590 Mouse
[    49.083] (II) event19 - M585/M590 Mouse: device removed
[    49.105] (II) UnloadModule: "libinput"
[    53.189] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/mouse1)
[    53.189] (II) No input driver specified, ignoring this device.
[    53.189] (II) This device may have been added with another device file.
[    53.233] (II) config/udev: Adding input device M585/M590 Keyboard (/dev/input/event18)
[    53.234] (**) M585/M590 Keyboard: Applying InputClass "libinput keyboard catchall"
[    53.234] (II) Using input driver 'libinput' for 'M585/M590 Keyboard'
[    53.234] (**) M585/M590 Keyboard: always reports core events
[    53.234] (**) Option "Device" "/dev/input/event18"
[    53.234] (**) Option "_source" "server/udev"
[    53.236] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    53.236] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    53.237] (II) event18 - M585/M590 Keyboard: device removed
[    53.261] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0002/input/input22/event18"
[    53.261] (II) XINPUT: Adding extended input device "M585/M590 Keyboard" (type: KEYBOARD, id 14)
[    53.264] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    53.265] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    53.277] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/event19)
[    53.277] (**) M585/M590 Mouse: Applying InputClass "libinput pointer catchall"
[    53.277] (II) Using input driver 'libinput' for 'M585/M590 Mouse'
[    53.277] (**) M585/M590 Mouse: always reports core events
[    53.277] (**) Option "Device" "/dev/input/event19"
[    53.277] (**) Option "_source" "server/udev"
[    53.280] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    53.280] (II) event19 - M585/M590 Mouse: device is a pointer
[    53.281] (II) event19 - M585/M590 Mouse: device removed
[    53.353] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0002/input/input23/event19"
[    53.353] (II) XINPUT: Adding extended input device "M585/M590 Mouse" (type: MOUSE, id 15)
[    53.354] (**) Option "AccelerationScheme" "none"
[    53.355] (**) M585/M590 Mouse: (accel) selected scheme none/0
[    53.355] (**) M585/M590 Mouse: (accel) acceleration factor: 2.000
[    53.355] (**) M585/M590 Mouse: (accel) acceleration threshold: 4
[    53.357] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    53.357] (II) event19 - M585/M590 Mouse: device is a pointer
[   611.480] (II) event2  - Power Button: device removed
[   611.511] (II) event7  - Video Bus: device removed
[   611.534] (II) event6  - Video Bus: device removed
[   611.550] (II) event1  - Sleep Button: device removed
[   611.564] (II) event4  - Ideapad extra buttons: device removed
[   611.584] (II) event3  - AT Translated Set 2 keyboard: device removed
[   611.600] (II) event8  - ETPS/2 Elantech Touchpad: device removed
[   611.658] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device removed
[   611.714] (II) event18 - M585/M590 Keyboard: device removed
[   611.744] (II) event19 - M585/M590 Mouse: device removed
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.803] (II) UnloadModule: "libinput"
[   611.804] (II) UnloadModule: "libinput"
[   611.874] (II) Server terminated successfully (0). Closing log file.

When using Nvidia card, the Xorg log:

[     4.399] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[     4.399] Build Operating System: Linux Arch Linux
[     4.399] Current Operating System: Linux archlinux 5.6.3-arch1-1 #1 SMP PREEMPT Wed, 08 Apr 2020 07:47:16 +0000 x86_64
[     4.399] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9994a61c-722a-4a5e-8d9a-0727838b46d6 rw nvidia-drm.modeset=1 loglevel=3 quiet
[     4.399] Build Date: 30 March 2020  05:05:45AM
[     4.399]  
[     4.399] Current version of pixman: 0.38.4
[     4.399] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.399] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.399] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 12 18:24:22 2020
[     4.401] (==) Using config file: "/etc/X11/xorg.conf"
[     4.402] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.402] (==) ServerLayout "layout"
[     4.402] (**) |-->Screen "iGPU" (0)
[     4.402] (**) |   |-->Monitor "<default monitor>"
[     4.403] (**) |   |-->Device "iGPU"
[     4.403] (**) |   |-->GPUDevice "dGPU"
[     4.403] (==) No monitor specified for screen "iGPU".
	Using a default monitor configuration.
[     4.403] (==) Automatically adding devices
[     4.403] (==) Automatically enabling devices
[     4.403] (==) Automatically adding GPU devices
[     4.403] (==) Automatically binding GPU devices
[     4.403] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.404] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[     4.404] 	Entry deleted from font path.
[     4.404] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[     4.405] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.405] 	Entry deleted from font path.
[     4.406] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     4.406] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.406] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.406] (II) Module ABI versions:
[     4.406] 	X.Org ANSI C Emulation: 0.4
[     4.406] 	X.Org Video Driver: 24.1
[     4.406] 	X.Org XInput driver : 24.1
[     4.406] 	X.Org Server Extension : 10.0
[     4.406] (++) using VT number 7

[     4.406] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.407] (II) xfree86: Adding drm device (/dev/dri/card1)
[     4.407] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.416] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.417] (--) PCI:*(0@0:2:0) 8086:191b:17aa:0001 rev 6, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[     4.417] (--) PCI: (1@0:0:0) 10de:139b:17aa:0006 rev 162, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128
[     4.417] (II) Open ACPI successful (/var/run/acpid.socket)
[     4.417] (II) LoadModule: "glx"
[     4.419] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.426] (II) Module glx: vendor="X.Org Foundation"
[     4.426] 	compiled for 1.20.8, module version = 1.0.0
[     4.426] 	ABI class: X.Org Server Extension, version 10.0
[     4.426] (II) LoadModule: "modesetting"
[     4.426] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.428] (II) Module modesetting: vendor="X.Org Foundation"
[     4.428] 	compiled for 1.20.8, module version = 1.20.8
[     4.428] 	Module class: X.Org Video Driver
[     4.428] 	ABI class: X.Org Video Driver, version 24.1
[     4.428] (II) LoadModule: "nvidia"
[     4.428] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.433] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.433] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.433] 	Module class: X.Org Video Driver
[     4.434] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.434] (II) NVIDIA dlloader X Driver  440.82  Wed Apr  1 19:50:17 UTC 2020
[     4.434] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.465] (II) modeset(0): using drv /dev/dri/card0
[     4.466] (II) Loading sub module "fb"
[     4.466] (II) LoadModule: "fb"
[     4.466] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.466] (II) Module fb: vendor="X.Org Foundation"
[     4.466] 	compiled for 1.20.8, module version = 1.0.0
[     4.466] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.466] (II) Loading sub module "wfb"
[     4.466] (II) LoadModule: "wfb"
[     4.467] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.467] (II) Module wfb: vendor="X.Org Foundation"
[     4.467] 	compiled for 1.20.8, module version = 1.0.0
[     4.467] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.467] (II) Loading sub module "ramdac"
[     4.467] (II) LoadModule: "ramdac"
[     4.467] (II) Module "ramdac" already built-in
[     4.468] (II) modeset(0): Creating default Display subsection in Screen section
	"iGPU" for depth/fbbpp 24/32
[     4.468] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     4.468] (==) modeset(0): RGB weight 888
[     4.468] (==) modeset(0): Default visual is TrueColor
[     4.468] (II) Loading sub module "glamoregl"
[     4.468] (II) LoadModule: "glamoregl"
[     4.469] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.475] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.475] 	compiled for 1.20.8, module version = 1.0.1
[     4.475] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.771] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) HD Graphics 530 (SKL GT2)
[     4.771] (II) modeset(0): glamor initialized
[     4.772] (II) modeset(0): Output eDP-1 has no monitor section
[     4.775] (II) modeset(0): Output HDMI-1 has no monitor section
[     4.776] (II) modeset(0): Output DP-1 has no monitor section
[     4.777] (II) modeset(0): EDID for output eDP-1
[     4.777] (II) modeset(0): Manufacturer: BOE  Model: 65e  Serial#: 0
[     4.777] (II) modeset(0): Year: 2015  Week: 1
[     4.777] (II) modeset(0): EDID Version: 1.4
[     4.777] (II) modeset(0): Digital Display Input
[     4.777] (II) modeset(0): 6 bits per channel
[     4.777] (II) modeset(0): Digital interface is DisplayPort
[     4.777] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     4.777] (II) modeset(0): Gamma: 2.20
[     4.777] (II) modeset(0): No DPMS capabilities specified
[     4.777] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     4.777] (II) modeset(0): First detailed timing is preferred mode
[     4.777] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     4.777] (II) modeset(0): redX: 0.590 redY: 0.350   greenX: 0.329 greenY: 0.555
[     4.777] (II) modeset(0): blueX: 0.152 blueY: 0.118   whiteX: 0.312 whiteY: 0.328
[     4.777] (II) modeset(0): Manufacturer's mask: 0
[     4.777] (II) modeset(0): Supported detailed timing:
[     4.777] (II) modeset(0): clock: 141.4 MHz   Image Size:  344 x 194 mm
[     4.777] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2142 h_border: 0
[     4.777] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1100 v_border: 0
[     4.777] (II) modeset(0):  BOE HF
[     4.777] (II) modeset(0):  NV156FHM-N42
[     4.777] (II) modeset(0): EDID (in hex):
[     4.777] (II) modeset(0): 	00ffffffffffff0009e55e0600000000
[     4.777] (II) modeset(0): 	01190104952213780224109759548e27
[     4.777] (II) modeset(0): 	1e505400000001010101010101010101
[     4.777] (II) modeset(0): 	0101010101013c3780de703814403020
[     4.777] (II) modeset(0): 	360058c21000001a0000000000000000
[     4.777] (II) modeset(0): 	00000000000000000000000000fe0042
[     4.777] (II) modeset(0): 	4f452048460a202020202020000000fe
[     4.777] (II) modeset(0): 	004e5631353646484d2d4e34320a006b
[     4.778] (II) modeset(0): Printing probed modes for output eDP-1
[     4.778] (II) modeset(0): Modeline "1920x1080"x60.0  141.40  1920 1968 2000 2142  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[     4.778] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[     4.778] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     4.778] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     4.778] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     4.778] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     4.778] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     4.778] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     4.778] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     4.778] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     4.778] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     4.778] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     4.778] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     4.778] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     4.778] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     4.778] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     4.778] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     4.778] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     4.778] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     4.778] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     4.778] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     4.778] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     4.778] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     4.778] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     4.778] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     4.778] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     4.778] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     4.778] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     4.778] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     4.778] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     4.778] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     4.778] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     4.778] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.778] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.778] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     4.779] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.779] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.779] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     4.779] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     4.779] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     4.779] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     4.779] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     4.779] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     4.779] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     4.779] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     4.779] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     4.779] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     4.779] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     4.779] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     4.779] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     4.779] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     4.779] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     4.779] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     4.779] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     4.779] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     4.779] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     4.779] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     4.779] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     4.779] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     4.779] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     4.779] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     4.779] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     4.779] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     4.782] (II) modeset(0): EDID for output HDMI-1
[     4.782] (II) modeset(0): EDID for output DP-1
[     4.782] (II) modeset(0): Output eDP-1 connected
[     4.782] (II) modeset(0): Output HDMI-1 disconnected
[     4.782] (II) modeset(0): Output DP-1 disconnected
[     4.782] (II) modeset(0): Using exact sizes for initial modes
[     4.782] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.782] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.782] (==) modeset(0): DPI set to (96, 96)
[     4.782] (II) Loading sub module "fb"
[     4.782] (II) LoadModule: "fb"
[     4.783] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.783] (II) Module fb: vendor="X.Org Foundation"
[     4.783] 	compiled for 1.20.8, module version = 1.0.0
[     4.783] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.783] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[     4.783] (==) NVIDIA(G0): RGB weight 888
[     4.783] (==) NVIDIA(G0): Default visual is TrueColor
[     4.783] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[     4.783] (**) Option "AllowNVIDIAGpuScreens"
[     4.783] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.783] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[     4.783] (**) NVIDIA(G0): Enabling 2D acceleration
[     4.783] (II) Loading sub module "glxserver_nvidia"
[     4.783] (II) LoadModule: "glxserver_nvidia"
[     4.783] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.837] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.837] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.837] 	Module class: X.Org Server Extension
[     4.837] (II) NVIDIA GLX Module  440.82  Wed Apr  1 19:47:36 UTC 2020
[     4.839] (II) NVIDIA: The X server supports PRIME Render Offload.
[     4.841] (II) NVIDIA(G0): NVIDIA GPU GeForce GTX 960M (GM107-A) at PCI:1:0:0 (GPU-0)
[     4.841] (--) NVIDIA(G0): Memory: 2097152 kBytes
[     4.841] (--) NVIDIA(G0): VideoBIOS: 82.07.8d.00.0b
[     4.841] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[     4.841] (II) NVIDIA(G0): Validated MetaModes:
[     4.841] (II) NVIDIA(G0):     "NULL"
[     4.841] (**) NVIDIA(G0): Virtual screen size configured to be 1920 x 1080
[     4.841] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[     4.841] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[     4.858] (==) modeset(0): Backing store enabled
[     4.858] (==) modeset(0): Silken mouse disabled
[     4.933] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     4.933] (==) modeset(0): DPMS enabled
[     4.933] (II) modeset(0): [DRI2] Setup complete
[     4.933] (II) modeset(0): [DRI2]   DRI driver: iris
[     4.933] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     4.934] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[     4.934] (II) NVIDIA:     access.
[     4.974] (II) NVIDIA(G0): Setting mode "NULL"
[     4.977] (==) NVIDIA(G0): Disabling shared memory pixmaps
[     4.977] (==) NVIDIA(G0): Backing store enabled
[     4.977] (==) NVIDIA(G0): Silken mouse disabled
[     4.978] (==) NVIDIA(G0): DPMS enabled
[     4.978] (II) Loading sub module "dri2"
[     4.978] (II) LoadModule: "dri2"
[     4.978] (II) Module "dri2" already built-in
[     4.978] (II) NVIDIA(G0): [DRI2] Setup complete
[     4.978] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[     4.978] (II) Initializing extension Generic Event Extension
[     4.978] (II) Initializing extension SHAPE
[     4.978] (II) Initializing extension MIT-SHM
[     4.979] (II) Initializing extension XInputExtension
[     4.979] (II) Initializing extension XTEST
[     4.979] (II) Initializing extension BIG-REQUESTS
[     4.979] (II) Initializing extension SYNC
[     4.979] (II) Initializing extension XKEYBOARD
[     4.979] (II) Initializing extension XC-MISC
[     4.979] (II) Initializing extension SECURITY
[     4.979] (II) Initializing extension XFIXES
[     4.979] (II) Initializing extension RENDER
[     4.979] (II) Initializing extension RANDR
[     4.980] (II) Initializing extension COMPOSITE
[     4.980] (II) Initializing extension DAMAGE
[     4.980] (II) Initializing extension MIT-SCREEN-SAVER
[     4.980] (II) Initializing extension DOUBLE-BUFFER
[     4.980] (II) Initializing extension RECORD
[     4.980] (II) Initializing extension DPMS
[     4.980] (II) Initializing extension Present
[     4.980] (II) Initializing extension DRI3
[     4.980] (II) Initializing extension X-Resource
[     4.980] (II) Initializing extension XVideo
[     4.980] (II) Initializing extension XVideo-MotionCompensation
[     4.980] (II) Initializing extension GLX
[     4.981] (II) Initializing extension GLX
[     4.981] (II) Indirect GLX disabled.
[     4.987] (II) AIGLX: Loaded and initialized iris
[     4.987] (II) GLX: Initialized DRI2 GL provider for screen 0
[     4.987] (II) Initializing extension XFree86-VidModeExtension
[     4.987] (II) Initializing extension XFree86-DGA
[     4.987] (II) Initializing extension XFree86-DRI
[     4.987] (II) Initializing extension DRI2
[     4.987] (II) Initializing extension NV-GLX
[     4.988] (II) Initializing extension NV-CONTROL
[     4.992] (II) modeset(0): Damage tracking initialized
[     4.992] (II) modeset(0): Setting screen physical size to 508 x 285
[     5.063] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[     5.063] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.063] (II) LoadModule: "libinput"
[     5.063] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.066] (II) Module libinput: vendor="X.Org Foundation"
[     5.066] 	compiled for 1.20.7, module version = 0.29.0
[     5.066] 	Module class: X.Org XInput Driver
[     5.066] 	ABI class: X.Org XInput driver, version 24.1
[     5.066] (II) Using input driver 'libinput' for 'Power Button'
[     5.066] (**) Power Button: always reports core events
[     5.066] (**) Option "Device" "/dev/input/event2"
[     5.066] (**) Option "_source" "server/udev"
[     5.072] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     5.072] (II) event2  - Power Button: device is a keyboard
[     5.072] (II) event2  - Power Button: device removed
[     5.104] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[     5.104] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.105] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     5.105] (II) event2  - Power Button: device is a keyboard
[     5.106] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[     5.106] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.106] (II) Using input driver 'libinput' for 'Video Bus'
[     5.106] (**) Video Bus: always reports core events
[     5.106] (**) Option "Device" "/dev/input/event7"
[     5.106] (**) Option "_source" "server/udev"
[     5.107] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     5.107] (II) event7  - Video Bus: device is a keyboard
[     5.107] (II) event7  - Video Bus: device removed
[     5.144] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9/event7"
[     5.144] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.147] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     5.147] (II) event7  - Video Bus: device is a keyboard
[     5.148] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[     5.148] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.148] (II) Using input driver 'libinput' for 'Video Bus'
[     5.149] (**) Video Bus: always reports core events
[     5.149] (**) Option "Device" "/dev/input/event6"
[     5.149] (**) Option "_source" "server/udev"
[     5.151] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     5.151] (II) event6  - Video Bus: device is a keyboard
[     5.152] (II) event6  - Video Bus: device removed
[     5.184] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8/event6"
[     5.184] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     5.187] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     5.187] (II) event6  - Video Bus: device is a keyboard
[     5.189] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     5.189] (II) No input driver specified, ignoring this device.
[     5.189] (II) This device may have been added with another device file.
[     5.190] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     5.190] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.190] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.190] (**) Sleep Button: always reports core events
[     5.190] (**) Option "Device" "/dev/input/event1"
[     5.190] (**) Option "_source" "server/udev"
[     5.192] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.192] (II) event1  - Sleep Button: device is a keyboard
[     5.192] (II) event1  - Sleep Button: device removed
[     5.211] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     5.211] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.213] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.214] (II) event1  - Sleep Button: device is a keyboard
[     5.216] (II) config/udev: Adding input device Lenovo EasyCamera: Lenovo EasyC (/dev/input/event17)
[     5.216] (**) Lenovo EasyCamera: Lenovo EasyC: Applying InputClass "libinput keyboard catchall"
[     5.216] (II) Using input driver 'libinput' for 'Lenovo EasyCamera: Lenovo EasyC'
[     5.216] (**) Lenovo EasyCamera: Lenovo EasyC: always reports core events
[     5.216] (**) Option "Device" "/dev/input/event17"
[     5.216] (**) Option "_source" "server/udev"
[     5.219] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     5.219] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     5.219] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device removed
[     5.278] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input18/event17"
[     5.278] (II) XINPUT: Adding extended input device "Lenovo EasyCamera: Lenovo EasyC" (type: KEYBOARD, id 10)
[     5.281] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: is tagged by udev as: Keyboard
[     5.281] (II) event17 - Lenovo EasyCamera: Lenovo EasyC: device is a keyboard
[     5.282] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event4)
[     5.283] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[     5.283] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[     5.283] (**) Ideapad extra buttons: always reports core events
[     5.283] (**) Option "Device" "/dev/input/event4"
[     5.283] (**) Option "_source" "server/udev"
[     5.285] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     5.285] (II) event4  - Ideapad extra buttons: device is a keyboard
[     5.285] (II) event4  - Ideapad extra buttons: device removed
[     5.318] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input5/event4"
[     5.318] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 11)
[     5.320] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     5.320] (II) event4  - Ideapad extra buttons: device is a keyboard
[     5.321] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[     5.321] (II) No input driver specified, ignoring this device.
[     5.321] (II) This device may have been added with another device file.
[     5.322] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
[     5.322] (II) No input driver specified, ignoring this device.
[     5.322] (II) This device may have been added with another device file.
[     5.323] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event11)
[     5.323] (II) No input driver specified, ignoring this device.
[     5.323] (II) This device may have been added with another device file.
[     5.324] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event12)
[     5.324] (II) No input driver specified, ignoring this device.
[     5.324] (II) This device may have been added with another device file.
[     5.325] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event13)
[     5.325] (II) No input driver specified, ignoring this device.
[     5.325] (II) This device may have been added with another device file.
[     5.325] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event14)
[     5.325] (II) No input driver specified, ignoring this device.
[     5.325] (II) This device may have been added with another device file.
[     5.326] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event15)
[     5.326] (II) No input driver specified, ignoring this device.
[     5.326] (II) This device may have been added with another device file.
[     5.327] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event16)
[     5.327] (II) No input driver specified, ignoring this device.
[     5.327] (II) This device may have been added with another device file.
[     5.328] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[     5.328] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.328] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.328] (**) AT Translated Set 2 keyboard: always reports core events
[     5.328] (**) Option "Device" "/dev/input/event3"
[     5.328] (**) Option "_source" "server/udev"
[     5.330] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.331] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     5.332] (II) event3  - AT Translated Set 2 keyboard: device removed
[     5.358] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[     5.358] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[     5.360] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.361] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     5.363] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event8)
[     5.363] (**) ETPS/2 Elantech Touchpad: Applying InputClass "libinput touchpad catchall"
[     5.363] (II) Using input driver 'libinput' for 'ETPS/2 Elantech Touchpad'
[     5.363] (**) ETPS/2 Elantech Touchpad: always reports core events
[     5.363] (**) Option "Device" "/dev/input/event8"
[     5.363] (**) Option "_source" "server/udev"
[     5.365] (II) event8  - ETPS/2 Elantech Touchpad: is tagged by udev as: Touchpad
[     5.368] (II) event8  - ETPS/2 Elantech Touchpad: device is a touchpad
[     5.368] (II) event8  - ETPS/2 Elantech Touchpad: device removed
[     5.411] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event8"
[     5.411] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 13)
[     5.413] (**) Option "AccelerationScheme" "none"
[     5.413] (**) ETPS/2 Elantech Touchpad: (accel) selected scheme none/0
[     5.413] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[     5.413] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[     5.415] (II) event8  - ETPS/2 Elantech Touchpad: is tagged by udev as: Touchpad
[     5.418] (II) event8  - ETPS/2 Elantech Touchpad: device is a touchpad
[     5.419] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[     5.419] (II) No input driver specified, ignoring this device.
[     5.419] (II) This device may have been added with another device file.
[     5.420] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[     5.420] (II) No input driver specified, ignoring this device.
[     5.420] (II) This device may have been added with another device file.
[    18.635] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/mouse1)
[    18.635] (II) No input driver specified, ignoring this device.
[    18.635] (II) This device may have been added with another device file.
[    18.745] (II) config/udev: Adding input device M585/M590 Keyboard (/dev/input/event18)
[    18.745] (**) M585/M590 Keyboard: Applying InputClass "libinput keyboard catchall"
[    18.745] (II) Using input driver 'libinput' for 'M585/M590 Keyboard'
[    18.745] (**) M585/M590 Keyboard: always reports core events
[    18.745] (**) Option "Device" "/dev/input/event18"
[    18.745] (**) Option "_source" "server/udev"
[    18.746] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    18.746] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    18.746] (II) event18 - M585/M590 Keyboard: device removed
[    18.808] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0001/input/input19/event18"
[    18.808] (II) XINPUT: Adding extended input device "M585/M590 Keyboard" (type: KEYBOARD, id 14)
[    18.809] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    18.809] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    18.811] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/event19)
[    18.811] (**) M585/M590 Mouse: Applying InputClass "libinput pointer catchall"
[    18.811] (II) Using input driver 'libinput' for 'M585/M590 Mouse'
[    18.811] (**) M585/M590 Mouse: always reports core events
[    18.811] (**) Option "Device" "/dev/input/event19"
[    18.811] (**) Option "_source" "server/udev"
[    18.878] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    18.878] (II) event19 - M585/M590 Mouse: device is a pointer
[    18.878] (II) event19 - M585/M590 Mouse: device removed
[    18.984] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0001/input/input20/event19"
[    18.984] (II) XINPUT: Adding extended input device "M585/M590 Mouse" (type: MOUSE, id 15)
[    18.984] (**) Option "AccelerationScheme" "none"
[    18.984] (**) M585/M590 Mouse: (accel) selected scheme none/0
[    18.984] (**) M585/M590 Mouse: (accel) acceleration factor: 2.000
[    18.984] (**) M585/M590 Mouse: (accel) acceleration threshold: 4
[    18.985] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    18.985] (II) event19 - M585/M590 Mouse: device is a pointer
[    48.228] (II) config/udev: removing device M585/M590 Keyboard
[    48.229] (II) event18 - M585/M590 Keyboard: device removed
[    48.283] (II) UnloadModule: "libinput"
[    48.283] (II) config/udev: removing device M585/M590 Mouse
[    48.283] (II) event19 - M585/M590 Mouse: device removed
[    48.321] (II) UnloadModule: "libinput"
[    78.173] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/mouse1)
[    78.173] (II) No input driver specified, ignoring this device.
[    78.173] (II) This device may have been added with another device file.
[    78.203] (II) config/udev: Adding input device M585/M590 Keyboard (/dev/input/event18)
[    78.203] (**) M585/M590 Keyboard: Applying InputClass "libinput keyboard catchall"
[    78.203] (II) Using input driver 'libinput' for 'M585/M590 Keyboard'
[    78.203] (**) M585/M590 Keyboard: always reports core events
[    78.203] (**) Option "Device" "/dev/input/event18"
[    78.203] (**) Option "_source" "server/udev"
[    78.205] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    78.206] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    78.206] (II) event18 - M585/M590 Keyboard: device removed
[    78.223] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0002/input/input22/event18"
[    78.223] (II) XINPUT: Adding extended input device "M585/M590 Keyboard" (type: KEYBOARD, id 14)
[    78.227] (II) event18 - M585/M590 Keyboard: is tagged by udev as: Keyboard
[    78.227] (II) event18 - M585/M590 Keyboard: device is a keyboard
[    78.234] (II) config/udev: Adding input device M585/M590 Mouse (/dev/input/event19)
[    78.234] (**) M585/M590 Mouse: Applying InputClass "libinput pointer catchall"
[    78.234] (II) Using input driver 'libinput' for 'M585/M590 Mouse'
[    78.234] (**) M585/M590 Mouse: always reports core events
[    78.234] (**) Option "Device" "/dev/input/event19"
[    78.234] (**) Option "_source" "server/udev"
[    78.256] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    78.257] (II) event19 - M585/M590 Mouse: device is a pointer
[    78.257] (II) event19 - M585/M590 Mouse: device removed
[    78.317] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:046D:B01B.0002/input/input23/event19"
[    78.318] (II) XINPUT: Adding extended input device "M585/M590 Mouse" (type: MOUSE, id 15)
[    78.319] (**) Option "AccelerationScheme" "none"
[    78.320] (**) M585/M590 Mouse: (accel) selected scheme none/0
[    78.320] (**) M585/M590 Mouse: (accel) acceleration factor: 2.000
[    78.320] (**) M585/M590 Mouse: (accel) acceleration threshold: 4
[    78.322] (II) event19 - M585/M590 Mouse: is tagged by udev as: Mouse
[    78.322] (II) event19 - M585/M590 Mouse: device is a pointer

I noticed that when using intel card, the nvidia drm device seems be removed by xf86 device:

[     3.742] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9994a61c-722a-4a5e-8d9a-0727838b46d6 rw nvidia-drm.modeset=1 loglevel=3 quiet
[     3.754] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.827] (II) config/udev: Adding drm device (/dev/dri/card1)
[     4.827] (II) xfree86: Adding drm device (/dev/dri/card1)
[     5.241] (II) config/udev: removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
[     5.241] xf86: remove device 1 /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[     5.242] (II) config/udev: Adding drm device (/dev/dri/card1)
[     5.242] (II) xfree86: Adding drm device (/dev/dri/card1)

Offline

Board footer

Powered by FluxBB