You are not logged in.

#1 2023-11-03 06:17:14

twelvenight
Member
Registered: 2023-10-22
Posts: 22

laptop use vfio-pci gpu driver can`t connet to the hdmi

neofech

           Resolution : 2560x1600 
           DE : Hyprland 
           Terminal : kitty 
           CPU : AMD Ryzen 7 5800H with Radeon Graphics (16) @ 3.200GHz 
           GPU : NVIDIA GeForce RTX 3060 Mobile / Max-Q 
           GPU : AMD ATI Radeon Vega Series / Radeon Vega Mobile Series  
           GPU Driver : vfio-pci 
           Memory : 3444MiB / 13831MiB

cat /etc/defaut/grub

GRUB_CMDLINE_LINUX_DEFAULT="rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet  resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27"

cat etc/mkinitcpio,conf

MODULES=(vfio_pci vfio vfio_iommu_type1)
HOOKS=(base udev autodetect modconf keyboard keymap consolefont block filesystems resume fsck)

cat /etc/modprobe.d/vfio.conf

options vfio-pci ids=10de:2560,10de:228e

eglinfo -B

GBM platform:
amdgpu_device_initialize: amdgpu_query_info(ACCEL_WORKING) failed (-13)
amdgpu: amdgpu_device_initialize failed.
amdgpu_device_initialize: amdgpu_query_info(ACCEL_WORKING) failed (-13)
amdgpu: amdgpu_device_initialize failed.

I want to passthrough my nvidia gpu to my windows11,but when I follow the tutorial to config my os,finally reboot the labtop it can`t connect to the hdmi
I find it  maybe the nvidia toke over the hdmi port?
I think it`s the amd integrated gpu or the vfio-pci driver`s problem,I search many posts but have no idea to fix it.

Last edited by twelvenight (2023-11-03 06:21:17)

Offline

#2 2023-11-03 07:11:36

Khere
Member
From: Italy
Registered: 2020-03-04
Posts: 170

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Please post the output of

lsinitcpio -a

, in order to see wich hooks will actually run.
Post also the output of

dmesg | grep -i vfio

, in order to see what's blocking the correct start of the modules

Last edited by Khere (2023-11-03 07:11:56)


Fan of Giorgio Moroder & Mohammad Ammax enemy

Offline

#3 2023-11-03 10:35:55

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Khere wrote:

Please post the output of

lsinitcpio -a

, in order to see wich hooks will actually run.
Post also the output of

dmesg | grep -i vfio

, in order to see what's blocking the correct start of the modules

sudo demsg | grep -i vfio

[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=b84c5f4c-5979-4d96-91dc-75def21999c2 rw rootflags=subvol=timeshift-btrfs/snapshots/2023-10-31_15-07-28/@ ibt=off rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27
[    0.028657] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=b84c5f4c-5979-4d96-91dc-75def21999c2 rw rootflags=subvol=timeshift-btrfs/snapshots/2023-10-31_15-07-28/@ ibt=off rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27
[    1.044490] VFIO - User Level meta-driver version: 0.3
[    1.078064] vfio-pci 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=none
[    1.078288] vfio_pci: add [10de:2560[ffffffff:ffffffff]] class 0x000000/00000000
[    1.574432] vfio_pci: add [10de:228e[ffffffff:ffffffff]] class 0x000000/00000000
[    8.931832] vfio-pci 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=none

lsinitcpio -a /boot/initramfs-linux-lts.img

==> Image: /boot/initramfs-linux-lts.img
==> Created with mkinitcpio 36
==> Kernel: 6.1.60-1-lts
==> Size: 9.43 MiB
==> Compressed with: zstd
  -> Uncompressed size: 25.26 MiB (.373 ratio)
  -> Estimated decompression time: 0.033s

==> Included modules:
  atkbd			 crc32c-intel		 hid-logitech-hidpp	 libps2		 nvme-core		 sr_mod		 vfio-pci		 xhci-pci
  blake2b_generic	 crc-itu-t		 hid-multitouch	 mmc_block		 raid6_pq		 usbhid		 vfio-pci-core		 xhci-pci-renesas
  btrfs			 firewire-core		 i8042			 mmc_core		 serio			 usb-storage		 vfio_virqfd		 xor
  cdrom			 firewire-sbp2		 irqbypass		 nvme			 serio_raw		 vfio			 virtio_blk		 xxhash_generic
  crc32c_generic	 hid-logitech-dj	 libcrc32c		 nvme-common		 sha256-ssse3		 vfio_iommu_type1	 vivaldi-fmap

==> Included binaries:
  blkid			 fsck			 kmod			 switch_root		 udevadm
  busybox		 fsck.btrfs		 mount			 systemd-tmpfiles

==> Early hook run order:
  udev

==> Hook run order:
  udev keymap resume

==> Cleanup hook run order:
  udev

Offline

#4 2023-11-03 10:40:35

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

twelvenight wrote:
Khere wrote:

Please post the output of

lsinitcpio -a

, in order to see wich hooks will actually run.
Post also the output of

dmesg | grep -i vfio

, in order to see what's blocking the correct start of the modules

sudo demsg | grep -i vfio

[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=b84c5f4c-5979-4d96-91dc-75def21999c2 rw rootflags=subvol=timeshift-btrfs/snapshots/2023-10-31_15-07-28/@ ibt=off rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27
[    0.028657] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=b84c5f4c-5979-4d96-91dc-75def21999c2 rw rootflags=subvol=timeshift-btrfs/snapshots/2023-10-31_15-07-28/@ ibt=off rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27
[    1.044490] VFIO - User Level meta-driver version: 0.3
[    1.078064] vfio-pci 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=none
[    1.078288] vfio_pci: add [10de:2560[ffffffff:ffffffff]] class 0x000000/00000000
[    1.574432] vfio_pci: add [10de:228e[ffffffff:ffffffff]] class 0x000000/00000000
[    8.931832] vfio-pci 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=none

lsinitcpio -a /boot/initramfs-linux-lts.img

==> Image: /boot/initramfs-linux-lts.img
==> Created with mkinitcpio 36
==> Kernel: 6.1.60-1-lts
==> Size: 9.43 MiB
==> Compressed with: zstd
  -> Uncompressed size: 25.26 MiB (.373 ratio)
  -> Estimated decompression time: 0.033s

==> Included modules:
  atkbd			 crc32c-intel		 hid-logitech-hidpp	 libps2		 nvme-core		 sr_mod		 vfio-pci		 xhci-pci
  blake2b_generic	 crc-itu-t		 hid-multitouch	 mmc_block		 raid6_pq		 usbhid		 vfio-pci-core		 xhci-pci-renesas
  btrfs			 firewire-core		 i8042			 mmc_core		 serio			 usb-storage		 vfio_virqfd		 xor
  cdrom			 firewire-sbp2		 irqbypass		 nvme			 serio_raw		 vfio			 virtio_blk		 xxhash_generic
  crc32c_generic	 hid-logitech-dj	 libcrc32c		 nvme-common		 sha256-ssse3		 vfio_iommu_type1	 vivaldi-fmap

==> Included binaries:
  blkid			 fsck			 kmod			 switch_root		 udevadm
  busybox		 fsck.btrfs		 mount			 systemd-tmpfiles

==> Early hook run order:
  udev

==> Hook run order:
  udev keymap resume

==> Cleanup hook run order:
  udev

Over time, the output of

dmesg | grep -i vfio

will decrease and end in whitespace?

Offline

#5 2023-11-03 13:52:42

Khere
Member
From: Italy
Registered: 2020-03-04
Posts: 170

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Look like the hooks aren't in the correct order, in /etc/mkinitcpio.conf
change

HOOKS=(base udev autodetect modconf keyboard keymap consolefont block filesystems resume fsck)

WITH

HOOKS=(base udev autodetect modconf keymap consolefont block filesystems resume  keyboard  fsck)

After that regenerate the iniramfs with mkinitcpio and reboot, if that doesn't solve the issue, post the output of this script: https://wiki.archlinux.org/title/PCI_pa … _are_valid


Fan of Giorgio Moroder & Mohammad Ammax enemy

Offline

#6 2023-11-03 14:11:38

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Khere wrote:

Look like the hooks aren't in the correct order, in /etc/mkinitcpio.conf
change

HOOKS=(base udev autodetect modconf keyboard keymap consolefont block filesystems resume fsck)

WITH

HOOKS=(base udev autodetect modconf keymap consolefont block filesystems resume  keyboard  fsck)

After that regenerate the iniramfs with mkinitcpio and reboot, if that doesn't solve the issue, post the output of this script: https://wiki.archlinux.org/title/PCI_pa … _are_valid

It`s not work

the output is here

IOMMU Group 0:
	00:01.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge [1022:1632]
IOMMU Group 1:
	00:01.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir PCIe GPP Bridge [1022:1633]
IOMMU Group 2:
	00:01.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne PCIe GPP Bridge [1022:1634]
IOMMU Group 3:
	00:02.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge [1022:1632]
IOMMU Group 4:
	00:02.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne PCIe GPP Bridge [1022:1634]
IOMMU Group 5:
	00:02.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne PCIe GPP Bridge [1022:1634]
IOMMU Group 6:
	00:02.4 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne PCIe GPP Bridge [1022:1634]
IOMMU Group 7:
	00:08.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Renoir PCIe Dummy Host Bridge [1022:1632]
	00:08.1 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus [1022:1635]
	00:08.2 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD] Renoir Internal PCIe GPP Bridge to Bus [1022:1635]
	06:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne [Radeon Vega Series / Radeon Vega Mobile Series] [1002:1638] (rev c5)
	06:00.2 Encryption controller [1080]: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor [1022:15df]
	06:00.3 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne USB 3.1 [1022:1639]
	06:00.4 USB controller [0c03]: Advanced Micro Devices, Inc. [AMD] Renoir/Cezanne USB 3.1 [1022:1639]
	06:00.5 Multimedia controller [0480]: Advanced Micro Devices, Inc. [AMD] ACP/ACP3X/ACP6x Audio Coprocessor [1022:15e2] (rev 01)
	06:00.6 Audio device [0403]: Advanced Micro Devices, Inc. [AMD] Family 17h/19h HD Audio Controller [1022:15e3]
	07:00.0 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 81)
	07:00.1 SATA controller [0106]: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] [1022:7901] (rev 81)
IOMMU Group 8:
	00:14.0 SMBus [0c05]: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller [1022:790b] (rev 51)
	00:14.3 ISA bridge [0601]: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge [1022:790e] (rev 51)
IOMMU Group 9:
	00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 0 [1022:166a]
	00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 1 [1022:166b]
	00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 2 [1022:166c]
	00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 3 [1022:166d]
	00:18.4 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 4 [1022:166e]
	00:18.5 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 5 [1022:166f]
	00:18.6 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 6 [1022:1670]
	00:18.7 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] Cezanne Data Fabric; Function 7 [1022:1671]
IOMMU Group 10:
	01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GA106M [GeForce RTX 3060 Mobile / Max-Q] [10de:2560] (rev a1)
	01:00.1 Audio device [0403]: NVIDIA Corporation GA106 High Definition Audio Controller [10de:228e] (rev a1)
IOMMU Group 11:
	02:00.0 Non-Volatile memory controller [0108]: Sandisk Corp WD Black SN750 / PC SN730 / Red SN700 NVMe SSD [15b7:5006]
IOMMU Group 12:
	03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 15)
IOMMU Group 13:
	04:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8852AE 802.11ax PCIe Wireless Network Adapter [10ec:8852]
IOMMU Group 14:
	05:00.0 Non-Volatile memory controller [0108]: Solidigm P44 Pro NVMe SSD [025e:f1ac]

Offline

#7 2023-11-03 14:27:57

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

but when I follow the tutorial to config my os,finally reboot the labtop it can`t connect to the hdmi I find it  maybe the nvidia toke over the hdmi port?

This sounds like you're expecting linux to display on the hdmi output but it doesn't?

Please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Then disable vfio and please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
(If that's a fundamental problem, we can also check the edid's in /sys/class/drm, but it'll require edid-decode and https://wiki.archlinux.org/title/NVIDIA … de_setting )

Online

#8 2023-11-03 15:01:25

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

seth wrote:

but when I follow the tutorial to config my os,finally reboot the labtop it can`t connect to the hdmi I find it  maybe the nvidia toke over the hdmi port?

This sounds like you're expecting linux to display on the hdmi output but it doesn't?

Please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Then disable vfio and please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
(If that's a fundamental problem, we can also check the edid's in /sys/class/drm, but it'll require edid-decode and https://wiki.archlinux.org/title/NVIDIA … de_setting )

disable vfio -> http://0x0.st/Htz6.txt
enable vfio -> http://0x0.st/Htz0.txt

Last edited by twelvenight (2023-11-03 15:04:00)

Offline

#9 2023-11-03 15:03:59

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

No, the journal w/ enabled vfio (so we can see whether that's effective) and the xorg log w/ disabled vfio (so we can see where the HDMI is wired)

Edit: yes is, but nvidia is explcitly loaded (and expectably fails) and "rdblaclist=nouveau" is nonsense gibberish.

Last edited by seth (2023-11-03 15:05:52)

Online

#10 2023-11-03 15:10:45

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Edit: yes is, but nvidia is explcitly loaded (and expectably fails) and "rdblaclist=nouveau" is nonsense gibberish.

I do this because the journalctl output the nvidia err,so I disable the nouveau

Offline

#11 2023-11-03 15:13:29

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

"module_blacklist=nouveau" and that won't prevent the error - it happens b/c vfio_pci grabs the device, as intended.
Just don't load the nvidia modules.

Online

#12 2023-11-03 15:14:07

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
(If that's a fundamental problem, we can also check the edid's in /sys/class/drm, but it'll require edid-decode and https://wiki.archlinux.org/title/NVIDIA … de_setting )

I`m not using xorg but wayland

Offline

#13 2023-11-03 15:16:31

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

Nobody cares.
You can either acquire that information from the xorg log or by scanning sys/class/drm - running Xorg and looking at the log is gonna be way easier.
If you absolutely don't want to, make sure to enable KMS, install https://aur.archlinux.org/packages/edid-decode-git and post the output of

for OUT in /sys/class/drm/card0*; do echo $OUT; edid-decode $OUT/edid; echo "================="; done

Online

#14 2023-11-03 15:34:35

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

seth wrote:

Nobody cares.
You can either acquire that information from the xorg log or by scanning sys/class/drm - running Xorg and looking at the log is gonna be way easier.
If you absolutely don't want to, make sure to enable KMS, install https://aur.archlinux.org/packages/edid-decode-git and post the output of

for OUT in /sys/class/drm/card0*; do echo $OUT; edid-decode $OUT/edid; echo "================="; done

I`m sorry I don`t konw so much and the network is a little slow
the script output

/sys/class/drm/card0
/sys/class/drm/card0/edid: No such file or directory
=================
/sys/class/drm/card0-eDP-1
edid-decode (hex):

00 ff ff ff ff ff ff 00 09 e5 40 0a 00 00 00 00
10 1f 01 04 b5 22 15 78 03 7c e5 a4 55 4c 9f 26
0f 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
01 01 01 01 01 01 6b 6e 00 a0 a0 40 84 60 30 20
36 00 58 d7 10 00 00 1a 00 00 00 fd 0c 3c a5 1f
1f 4e 01 0a 20 20 20 20 20 20 00 00 00 fe 00 42
4f 45 20 43 51 0a 20 20 20 20 20 20 00 00 00 fe
00 4e 45 31 36 30 51 44 4d 2d 4e 59 31 0a 02 3b

02 03 1d 00 e3 05 80 00 e6 06 05 01 6a 6a 24 6d
1a 00 00 02 03 3c a5 00 04 6a 24 6a 24 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fe

70 13 79 00 00 03 01 14 a5 2f 01 85 ff 09 9f 00
2f 00 1f 00 3f 06 83 00 02 00 05 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 3e 90

----------------

Block 0, Base EDID:
  EDID Structure Version & Revision: 1.4
  Vendor & Product Identification:
    Manufacturer: BOE
    Model: 2624
    Made in: week 16 of 2021
  Basic Display Parameters & Features:
    Digital display
    Bits per primary color channel: 10
    DisplayPort interface
    Maximum image size: 34 cm x 21 cm
    Gamma: 2.20
    Supported color formats: RGB 4:4:4
    First detailed timing includes the native pixel format and preferred refresh rate
    Display supports continuous frequencies
  Color Characteristics:
    Red  : 0.6416, 0.3349
    Green: 0.2998, 0.6210
    Blue : 0.1513, 0.0605
    White: 0.3134, 0.3291
  Established Timings I & II: none
  Standard Timings: none
  Detailed Timing Descriptors:
    DTD 1:  2560x1600   60.001613 Hz  16:10   103.923 kHz    282.670000 MHz (344 mm x 215 mm)
                 Hfront   48 Hsync  32 Hback   80 Hpol P
                 Vfront    3 Vsync   6 Vback  123 Vpol N
    Display Range Limits:
      Monitor ranges (Range Limits Only): 60-165 Hz V, 286-286 kHz H, max dotclock 780 MHz
    Alphanumeric Data String: 'BOE CQ'
    Alphanumeric Data String: 'NE160QDM-NY1'
  Extension blocks: 2
Checksum: 0x3b

----------------

Block 1, CTA-861 Extension Block:
  Revision: 3
  Native detailed modes: 0
  Colorimetry Data Block:
    BT2020RGB
  HDR Static Metadata Data Block:
    Electro optical transfer functions:
      Traditional gamma - SDR luminance range
      SMPTE ST2084
    Supported static metadata descriptors:
      Static metadata type 1
    Desired content max luminance: 106 (496.743 cd/m^2)
    Desired content max frame-average luminance: 106 (496.743 cd/m^2)
    Desired content min luminance: 36 (0.099 cd/m^2)
  Vendor-Specific Data Block (AMD), OUI 00-00-1A:
    Version: 2.3
    Minimum Refresh Rate: 60 Hz
    Maximum Refresh Rate: 165 Hz
    Flags 1.x: 0x00
    Flags 2.x: 0x04
    Maximum luminance: 106 (496.743 cd/m^2)
    Minimum luminance: 36 (0.099 cd/m^2)
    Maximum luminance (without local dimming): 106 (496.743 cd/m^2)
    Minimum luminance (without local dimming): 36 (0.099 cd/m^2)
Checksum: 0xfe  Unused space in Extension Block: 98 bytes

----------------

Block 2, DisplayID Extension Block:
  Version: 1.3
  Extension Count: 0
  Display Product Type: Extension Section
  Video Timing Modes Type 1 - Detailed Timings Data Block:
    DTD:  2560x1600  165.003906 Hz  16:10   285.787 kHz    777.340000 MHz (aspect 16:10, no 3D stereo, preferred)
               Hfront   48 Hsync  32 Hback   80 Hpol N
               Vfront    3 Vsync   6 Vback  123 Vpol N
  Checksum: 0x3e
Checksum: 0x90
=================

and Xorg.0.log

[     8.726] (--) Log file renamed from "/var/log/Xorg.pid-1406.log" to "/var/log/Xorg.0.log"
[     8.727] 
X.Org X Server 1.21.1.9
X Protocol Version 11, Revision 0
[     8.727] Current Operating System: Linux nightArch 6.1.60-1-lts #1 SMP PREEMPT_DYNAMIC Wed, 25 Oct 2023 11:10:15 +0000 x86_64
[     8.727] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=UUID=b84c5f4c-5979-4d96-91dc-75def21999c2 rw rootflags=subvol=timeshift-btrfs/snapshots/2023-10-31_15-07-28/@ ibt=off rd.driver.pre=vfio-pci amd_iommu=on iommu=pt rdblaclist=nouveau loglevel=3 quiet resume=UUID=7a533112-6c5b-4745-91d9-e7c660d91f27
[     8.727]  
[     8.727] Current version of pixman: 0.42.2
[     8.727] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     8.727] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     8.727] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Nov  3 23:02:44 2023
[     8.728] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     8.728] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     8.728] (==) No Layout section.  Using the first Screen section.
[     8.728] (==) No screen section available. Using defaults.
[     8.728] (**) |-->Screen "Default Screen Section" (0)
[     8.728] (**) |   |-->Monitor "<default monitor>"
[     8.728] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     8.728] (==) Automatically adding devices
[     8.728] (==) Automatically enabling devices
[     8.728] (==) Automatically adding GPU devices
[     8.728] (==) Automatically binding GPU devices
[     8.728] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     8.729] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     8.729] 	Entry deleted from font path.
[     8.731] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     8.731] 	Entry deleted from font path.
[     8.733] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     8.733] (==) ModulePath set to "/usr/lib/xorg/modules"
[     8.733] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     8.733] (II) Module ABI versions:
[     8.733] 	X.Org ANSI C Emulation: 0.4
[     8.733] 	X.Org Video Driver: 25.2
[     8.733] 	X.Org XInput driver : 24.4
[     8.733] 	X.Org Server Extension : 10.0
[     8.734] (++) using VT number 2

[     8.734] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     8.734] (II) xfree86: Adding drm device (/dev/dri/card0)
[     8.734] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:06:00.0/drm/card0
[     9.077] (--) PCI: (1@0:0:0) 10de:2560:17aa:3a80 rev 161, Mem @ 0xd0000000/16777216, 0xfa00000000/8589934592, 0xfc00000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[     9.077] (--) PCI:*(6@0:0:0) 1002:1638:17aa:3a80 rev 197, Mem @ 0xfc10000000/268435456, 0xfc20000000/2097152, 0xd1500000/524288, I/O @ 0x00001000/256
[     9.077] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     9.077] (II) LoadModule: "glx"
[     9.085] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     9.093] (II) Module glx: vendor="X.Org Foundation"
[     9.093] 	compiled for 1.21.1.9, module version = 1.0.0
[     9.093] 	ABI class: X.Org Server Extension, version 10.0
[     9.093] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0
[     9.093] 	loading driver: amdgpu
[     9.093] (II) Applying OutputClass "AMD" to /dev/dri/card0
[     9.093] 	loading driver: amdgpu
[     9.093] (==) Matched amdgpu as autoconfigured driver 0
[     9.094] (==) Matched ati as autoconfigured driver 1
[     9.094] (==) Matched modesetting as autoconfigured driver 2
[     9.094] (==) Matched fbdev as autoconfigured driver 3
[     9.094] (==) Matched vesa as autoconfigured driver 4
[     9.094] (==) Assigned the driver to the xf86ConfigLayout
[     9.094] (II) LoadModule: "amdgpu"
[     9.094] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[     9.098] (II) Module amdgpu: vendor="X.Org Foundation"
[     9.099] 	compiled for 1.21.1.7, module version = 23.0.0
[     9.099] 	Module class: X.Org Video Driver
[     9.099] 	ABI class: X.Org Video Driver, version 25.2
[     9.099] (II) LoadModule: "ati"
[     9.099] (WW) Warning, couldn't open module ati
[     9.099] (EE) Failed to load module "ati" (module does not exist, 0)
[     9.099] (II) LoadModule: "modesetting"
[     9.099] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     9.100] (II) Module modesetting: vendor="X.Org Foundation"
[     9.100] 	compiled for 1.21.1.9, module version = 1.21.1
[     9.100] 	Module class: X.Org Video Driver
[     9.100] 	ABI class: X.Org Video Driver, version 25.2
[     9.100] (II) LoadModule: "fbdev"
[     9.101] (WW) Warning, couldn't open module fbdev
[     9.101] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     9.101] (II) LoadModule: "vesa"
[     9.101] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[     9.102] (II) Module vesa: vendor="X.Org Foundation"
[     9.102] 	compiled for 1.21.1.4, module version = 2.6.0
[     9.102] 	Module class: X.Org Video Driver
[     9.102] 	ABI class: X.Org Video Driver, version 25.2
[     9.102] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[     9.102] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     9.102] (II) VESA: driver for VESA chipsets: vesa
[     9.117] (WW) Falling back to old probe method for modesetting
[     9.117] (II) AMDGPU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     9.117] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[     9.117] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[     9.117] (==) AMDGPU(0): Default visual is TrueColor
[     9.117] (II) Applying OutputClass "AMDgpu" options to /dev/dri/card0
[     9.117] (II) Applying OutputClass "AMD" options to /dev/dri/card0
[     9.117] (**) AMDGPU(0): Option "TearFree" "true"
[     9.117] (==) AMDGPU(0): RGB weight 888
[     9.117] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[     9.117] (--) AMDGPU(0): Chipset: "AMD Radeon Graphics" (ChipID = 0x1638)
[     9.117] (II) Loading sub module "fb"
[     9.118] (II) LoadModule: "fb"
[     9.118] (II) Module "fb" already built-in
[     9.118] (II) Loading sub module "dri2"
[     9.118] (II) LoadModule: "dri2"
[     9.118] (II) Module "dri2" already built-in
[     9.308] (II) Loading sub module "glamoregl"
[     9.308] (II) LoadModule: "glamoregl"
[     9.308] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     9.318] (II) Module glamoregl: vendor="X.Org Foundation"
[     9.318] 	compiled for 1.21.1.9, module version = 1.0.1
[     9.318] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    10.507] (II) AMDGPU(0): glamor X acceleration enabled on AMD Radeon Graphics (renoir, LLVM 16.0.6, DRM 3.49, 6.1.60-1-lts)
[    10.507] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[    10.507] (**) AMDGPU(0): TearFree property default: on
[    10.507] (==) AMDGPU(0): VariableRefresh: disabled
[    10.507] (==) AMDGPU(0): AsyncFlipSecondaries: disabled
[    10.507] (II) AMDGPU(0): KMS Pageflipping: enabled
[    10.509] (II) AMDGPU(0): Output eDP has no monitor section
[    10.512] (II) AMDGPU(0): EDID for output eDP
[    10.512] (II) AMDGPU(0): Manufacturer: BOE  Model: a40  Serial#: 0
[    10.512] (II) AMDGPU(0): Year: 2021  Week: 16
[    10.512] (II) AMDGPU(0): EDID Version: 1.4
[    10.512] (II) AMDGPU(0): Digital Display Input
[    10.512] (II) AMDGPU(0): 10 bits per channel
[    10.512] (II) AMDGPU(0): Digital interface is DisplayPort
[    10.512] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 34  vert.: 21
[    10.513] (II) AMDGPU(0): Gamma: 2.20
[    10.513] (II) AMDGPU(0): No DPMS capabilities specified
[    10.513] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 
[    10.513] (II) AMDGPU(0): First detailed timing is preferred mode
[    10.513] (II) AMDGPU(0): Preferred mode is native pixel format and refresh rate
[    10.513] (II) AMDGPU(0): Display is continuous-frequency
[    10.513] (II) AMDGPU(0): redX: 0.642 redY: 0.335   greenX: 0.300 greenY: 0.621
[    10.513] (II) AMDGPU(0): blueX: 0.151 blueY: 0.061   whiteX: 0.313 whiteY: 0.329
[    10.513] (II) AMDGPU(0): Manufacturer's mask: 0
[    10.513] (II) AMDGPU(0): Supported detailed timing:
[    10.513] (II) AMDGPU(0): clock: 282.7 MHz   Image Size:  344 x 215 mm
[    10.513] (II) AMDGPU(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    10.513] (II) AMDGPU(0): v_active: 1600  v_sync: 1603  v_sync_end 1609 v_blanking: 1732 v_border: 0
[    10.513] (II) AMDGPU(0): Ranges: V min: 60 V max: 165 Hz, H min: 286 H max: 286 kHz, PixClock max 785 MHz
[    10.513] (II) AMDGPU(0):  BOE CQ
[    10.513] (II) AMDGPU(0):  NE160QDM-NY1
[    10.513] (II) AMDGPU(0): Number of EDID sections to follow: 2
[    10.513] (II) AMDGPU(0): EDID (in hex):
[    10.513] (II) AMDGPU(0): 	00ffffffffffff0009e5400a00000000
[    10.513] (II) AMDGPU(0): 	101f0104b5221578037ce5a4554c9f26
[    10.513] (II) AMDGPU(0): 	0f505400000001010101010101010101
[    10.513] (II) AMDGPU(0): 	0101010101016b6e00a0a04084603020
[    10.513] (II) AMDGPU(0): 	360058d71000001a000000fd0c3ca51f
[    10.513] (II) AMDGPU(0): 	1f4e010a202020202020000000fe0042
[    10.513] (II) AMDGPU(0): 	4f452043510a202020202020000000fe
[    10.513] (II) AMDGPU(0): 	004e4531363051444d2d4e59310a023b
[    10.513] (II) AMDGPU(0): 	02031d00e3058000e60605016a6a246d
[    10.513] (II) AMDGPU(0): 	1a000002033ca500046a246a24000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	000000000000000000000000000001fe
[    10.513] (II) AMDGPU(0): 	7013790000030114a52f0185ff099f00
[    10.513] (II) AMDGPU(0): 	2f001f003f0683000200050000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000000000
[    10.513] (II) AMDGPU(0): 	00000000000000000000000000003e90
[    10.513] (II) AMDGPU(0): Printing probed modes for output eDP
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x165.0  777.34  2560 2608 2640 2720  1600 1603 1609 1732 -hsync -vsync (285.8 kHz eP)
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x60.0  282.67  2560 2608 2640 2720  1600 1603 1609 1732 +hsync -vsync (103.9 kHz eP)
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x120.0  777.34  2560 2608 2640 2720  1600 2252 2258 2381 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x96.0  777.34  2560 2608 2640 2720  1600 2847 2853 2976 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x72.0  777.34  2560 2608 2640 2720  1600 3840 3846 3969 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "2560x1600"x60.0  777.34  2560 2608 2640 2720  1600 4634 4640 4763 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1920x1200"x165.0  777.34  1920 2608 2640 2720  1200 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1920x1080"x165.0  777.34  1920 2608 2640 2720  1080 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1600x1200"x165.0  777.34  1600 2608 2640 2720  1200 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1680x1050"x165.0  777.34  1680 2608 2640 2720  1050 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1280x1024"x165.0  777.34  1280 2608 2640 2720  1024 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1440x900"x165.0  777.34  1440 2608 2640 2720  900 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1280x800"x165.0  777.34  1280 2608 2640 2720  800 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1280x720"x165.0  777.34  1280 2608 2640 2720  720 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "1024x768"x165.0  777.34  1024 2608 2640 2720  768 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "800x600"x165.0  777.34  800 2608 2640 2720  600 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Modeline "640x480"x165.0  777.34  640 2608 2640 2720  480 1603 1609 1732 -hsync -vsync (285.8 kHz e)
[    10.513] (II) AMDGPU(0): Output eDP connected
[    10.513] (II) AMDGPU(0): Using exact sizes for initial modes
[    10.513] (II) AMDGPU(0): Output eDP using initial mode 2560x1600 +0+0
[    10.513] (II) AMDGPU(0): mem size init: gart size :1af94e800 vram size: s:7d775000 visible:7d775000
[    10.513] (==) AMDGPU(0): DPI set to (96, 96)
[    10.513] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[    10.513] (II) Loading sub module "ramdac"
[    10.513] (II) LoadModule: "ramdac"
[    10.513] (II) Module "ramdac" already built-in
[    10.513] (II) UnloadModule: "modesetting"
[    10.513] (II) Unloading modesetting
[    10.513] (II) UnloadModule: "vesa"
[    10.513] (II) Unloading vesa
[    10.513] (II) AMDGPU(0): [DRI2] Setup complete
[    10.513] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[    10.513] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[    10.527] (II) AMDGPU(0): Front buffer pitch: 10240 bytes
[    10.527] (II) AMDGPU(0): SYNC extension fences enabled
[    10.527] (II) AMDGPU(0): Present extension enabled
[    10.527] (==) AMDGPU(0): DRI3 enabled
[    10.527] (==) AMDGPU(0): Backing store enabled
[    10.527] (II) AMDGPU(0): Direct rendering enabled
[    10.533] (II) AMDGPU(0): Use GLAMOR acceleration.
[    10.533] (II) AMDGPU(0): Acceleration enabled
[    10.533] (==) AMDGPU(0): DPMS enabled
[    10.533] (==) AMDGPU(0): Silken mouse enabled
[    10.533] (II) AMDGPU(0): Set up textured video (glamor)
[    10.535] (WW) AMDGPU(0): Option "HotplugDriver" is not used
[    10.535] (II) Initializing extension Generic Event Extension
[    10.535] (II) Initializing extension SHAPE
[    10.535] (II) Initializing extension MIT-SHM
[    10.535] (II) Initializing extension XInputExtension
[    10.535] (II) Initializing extension XTEST
[    10.535] (II) Initializing extension BIG-REQUESTS
[    10.535] (II) Initializing extension SYNC
[    10.535] (II) Initializing extension XKEYBOARD
[    10.535] (II) Initializing extension XC-MISC
[    10.535] (II) Initializing extension SECURITY
[    10.535] (II) Initializing extension XFIXES
[    10.535] (II) Initializing extension RENDER
[    10.536] (II) Initializing extension RANDR
[    10.536] (II) Initializing extension COMPOSITE
[    10.536] (II) Initializing extension DAMAGE
[    10.536] (II) Initializing extension MIT-SCREEN-SAVER
[    10.536] (II) Initializing extension DOUBLE-BUFFER
[    10.536] (II) Initializing extension RECORD
[    10.536] (II) Initializing extension DPMS
[    10.536] (II) Initializing extension Present
[    10.536] (II) Initializing extension DRI3
[    10.536] (II) Initializing extension X-Resource
[    10.536] (II) Initializing extension XVideo
[    10.536] (II) Initializing extension XVideo-MotionCompensation
[    10.536] (II) Initializing extension GLX
[    10.540] (II) AIGLX: Loaded and initialized radeonsi
[    10.540] (II) GLX: Initialized DRI2 GL provider for screen 0
[    10.540] (II) Initializing extension XFree86-VidModeExtension
[    10.540] (II) Initializing extension XFree86-DGA
[    10.540] (II) Initializing extension XFree86-DRI
[    10.540] (II) Initializing extension DRI2
[    10.540] (II) AMDGPU(0): Setting screen physical size to 677 x 423
[    10.604] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    10.604] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    10.604] (II) LoadModule: "libinput"
[    10.605] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    10.607] (II) Module libinput: vendor="X.Org Foundation"
[    10.607] 	compiled for 1.21.1.8, module version = 1.4.0
[    10.607] 	Module class: X.Org XInput Driver
[    10.607] 	ABI class: X.Org XInput driver, version 24.4
[    10.607] (II) Using input driver 'libinput' for 'Power Button'
[    10.607] (**) Power Button: always reports core events
[    10.607] (**) Option "Device" "/dev/input/event2"
[    10.609] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    10.609] (II) event2  - Power Button: device is a keyboard
[    10.609] (II) event2  - Power Button: device removed
[    10.640] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    10.640] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    10.640] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    10.640] (II) event2  - Power Button: device is a keyboard
[    10.641] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[    10.641] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    10.641] (II) Using input driver 'libinput' for 'Video Bus'
[    10.641] (**) Video Bus: always reports core events
[    10.641] (**) Option "Device" "/dev/input/event4"
[    10.641] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    10.641] (II) event4  - Video Bus: device is a keyboard
[    10.641] (II) event4  - Video Bus: device removed
[    10.733] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:00/input/input4/event4"
[    10.733] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    10.734] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    10.734] (II) event4  - Video Bus: device is a keyboard
[    10.734] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    10.734] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    10.734] (II) Using input driver 'libinput' for 'Power Button'
[    10.734] (**) Power Button: always reports core events
[    10.734] (**) Option "Device" "/dev/input/event0"
[    10.735] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    10.735] (II) event0  - Power Button: device is a keyboard
[    10.735] (II) event0  - Power Button: device removed
[    10.773] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    10.773] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    10.774] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    10.774] (II) event0  - Power Button: device is a keyboard
[    10.774] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    10.774] (II) No input driver specified, ignoring this device.
[    10.774] (II) This device may have been added with another device file.
[    10.774] (II) config/udev: Adding input device SINO WEALTH Gaming KB  (/dev/input/event5)
[    10.775] (**) SINO WEALTH Gaming KB : Applying InputClass "libinput keyboard catchall"
[    10.775] (II) Using input driver 'libinput' for 'SINO WEALTH Gaming KB '
[    10.775] (**) SINO WEALTH Gaming KB : always reports core events
[    10.775] (**) Option "Device" "/dev/input/event5"
[    10.775] (II) event5  - SINO WEALTH Gaming KB : is tagged by udev as: Keyboard
[    10.775] (II) event5  - SINO WEALTH Gaming KB : device is a keyboard
[    10.775] (II) event5  - SINO WEALTH Gaming KB : device removed
[    10.803] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.1/1-2.1:1.0/0003:258A:0058.0001/input/input5/event5"
[    10.803] (II) XINPUT: Adding extended input device "SINO WEALTH Gaming KB " (type: KEYBOARD, id 9)
[    10.804] (II) event5  - SINO WEALTH Gaming KB : is tagged by udev as: Keyboard
[    10.804] (II) event5  - SINO WEALTH Gaming KB : device is a keyboard
[    10.805] (II) config/udev: Adding input device SINO WEALTH Gaming KB  Consumer Control (/dev/input/event10)
[    10.805] (**) SINO WEALTH Gaming KB  Consumer Control: Applying InputClass "libinput keyboard catchall"
[    10.805] (II) Using input driver 'libinput' for 'SINO WEALTH Gaming KB  Consumer Control'
[    10.805] (**) SINO WEALTH Gaming KB  Consumer Control: always reports core events
[    10.805] (**) Option "Device" "/dev/input/event10"
[    10.806] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: is tagged by udev as: Keyboard
[    10.806] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: device is a keyboard
[    10.806] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: device removed
[    10.846] (II) libinput: SINO WEALTH Gaming KB  Consumer Control: needs a virtual subdevice
[    10.846] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.1/1-2.1:1.1/0003:258A:0058.0003/input/input10/event10"
[    10.846] (II) XINPUT: Adding extended input device "SINO WEALTH Gaming KB  Consumer Control" (type: MOUSE, id 10)
[    10.846] (**) Option "AccelerationScheme" "none"
[    10.846] (**) SINO WEALTH Gaming KB  Consumer Control: (accel) selected scheme none/0
[    10.846] (**) SINO WEALTH Gaming KB  Consumer Control: (accel) acceleration factor: 2.000
[    10.846] (**) SINO WEALTH Gaming KB  Consumer Control: (accel) acceleration threshold: 4
[    10.847] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: is tagged by udev as: Keyboard
[    10.847] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: device is a keyboard
[    10.848] (II) config/udev: Adding input device SINO WEALTH Gaming KB  Keyboard (/dev/input/event11)
[    10.848] (**) SINO WEALTH Gaming KB  Keyboard: Applying InputClass "libinput keyboard catchall"
[    10.848] (II) Using input driver 'libinput' for 'SINO WEALTH Gaming KB  Keyboard'
[    10.848] (**) SINO WEALTH Gaming KB  Keyboard: always reports core events
[    10.848] (**) Option "Device" "/dev/input/event11"
[    10.849] (II) event11 - SINO WEALTH Gaming KB  Keyboard: is tagged by udev as: Keyboard
[    10.849] (II) event11 - SINO WEALTH Gaming KB  Keyboard: device is a keyboard
[    10.849] (II) event11 - SINO WEALTH Gaming KB  Keyboard: device removed
[    10.896] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.1/1-2.1:1.1/0003:258A:0058.0003/input/input11/event11"
[    10.896] (II) XINPUT: Adding extended input device "SINO WEALTH Gaming KB  Keyboard" (type: KEYBOARD, id 11)
[    10.897] (II) event11 - SINO WEALTH Gaming KB  Keyboard: is tagged by udev as: Keyboard
[    10.897] (II) event11 - SINO WEALTH Gaming KB  Keyboard: device is a keyboard
[    10.898] (II) config/udev: Adding input device SINO WEALTH Gaming KB  System Control (/dev/input/event8)
[    10.898] (**) SINO WEALTH Gaming KB  System Control: Applying InputClass "libinput keyboard catchall"
[    10.898] (II) Using input driver 'libinput' for 'SINO WEALTH Gaming KB  System Control'
[    10.898] (**) SINO WEALTH Gaming KB  System Control: always reports core events
[    10.898] (**) Option "Device" "/dev/input/event8"
[    10.899] (II) event8  - SINO WEALTH Gaming KB  System Control: is tagged by udev as: Keyboard
[    10.899] (II) event8  - SINO WEALTH Gaming KB  System Control: device is a keyboard
[    10.899] (II) event8  - SINO WEALTH Gaming KB  System Control: device removed
[    10.943] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.1/1-2.1:1.1/0003:258A:0058.0003/input/input9/event8"
[    10.943] (II) XINPUT: Adding extended input device "SINO WEALTH Gaming KB  System Control" (type: KEYBOARD, id 12)
[    10.945] (II) event8  - SINO WEALTH Gaming KB  System Control: is tagged by udev as: Keyboard
[    10.945] (II) event8  - SINO WEALTH Gaming KB  System Control: device is a keyboard
[    10.945] (II) config/udev: Adding input device Logitech G304 (/dev/input/mouse0)
[    10.945] (II) No input driver specified, ignoring this device.
[    10.945] (II) This device may have been added with another device file.
[    10.946] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event18)
[    10.946] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[    10.946] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[    10.946] (**) Integrated Camera: Integrated C: always reports core events
[    10.946] (**) Option "Device" "/dev/input/event18"
[    10.947] (II) event18 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    10.947] (II) event18 - Integrated Camera: Integrated C: device is a keyboard
[    10.947] (II) event18 - Integrated Camera: Integrated C: device removed
[    11.026] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-3/1-3:1.0/input/input25/event18"
[    11.026] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 13)
[    11.027] (II) event18 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    11.027] (II) event18 - Integrated Camera: Integrated C: device is a keyboard
[    11.028] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Keyboard (/dev/input/event12)
[    11.028] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[    11.028] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[    11.028] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[    11.028] (**) Option "Device" "/dev/input/event12"
[    11.029] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[    11.029] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[    11.029] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[    11.060] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: needs a virtual subdevice
[    11.060] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-4/1-4:1.0/0003:048D:C101.0004/input/input13/event12"
[    11.060] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: MOUSE, id 14)
[    11.060] (**) Option "AccelerationScheme" "none"
[    11.060] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) selected scheme none/0
[    11.060] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration factor: 2.000
[    11.060] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration threshold: 4
[    11.061] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[    11.061] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[    11.062] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Wireless Radio Control (/dev/input/event13)
[    11.062] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[    11.062] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Wireless Radio Control'
[    11.062] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: always reports core events
[    11.062] (**) Option "Device" "/dev/input/event13"
[    11.062] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[    11.062] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[    11.063] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[    11.140] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-4/1-4:1.0/0003:048D:C101.0004/input/input14/event13"
[    11.140] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Wireless Radio Control" (type: KEYBOARD, id 15)
[    11.141] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[    11.141] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[    11.142] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event14)
[    11.142] (II) No input driver specified, ignoring this device.
[    11.142] (II) This device may have been added with another device file.
[    11.142] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event19)
[    11.142] (II) No input driver specified, ignoring this device.
[    11.142] (II) This device may have been added with another device file.
[    11.142] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event9)
[    11.142] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[    11.142] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[    11.142] (**) Ideapad extra buttons: always reports core events
[    11.142] (**) Option "Device" "/dev/input/event9"
[    11.143] (II) event9  - Ideapad extra buttons: is tagged by udev as: Keyboard
[    11.143] (II) event9  - Ideapad extra buttons: device is a keyboard
[    11.143] (II) event9  - Ideapad extra buttons: device removed
[    11.233] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/input/input12/event9"
[    11.233] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 16)
[    11.234] (II) event9  - Ideapad extra buttons: is tagged by udev as: Keyboard
[    11.234] (II) event9  - Ideapad extra buttons: device is a keyboard
[    11.235] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Mouse (/dev/input/event15)
[    11.235] (**) MSFT0001:00 04F3:31AD Mouse: Applying InputClass "libinput pointer catchall"
[    11.235] (II) Using input driver 'libinput' for 'MSFT0001:00 04F3:31AD Mouse'
[    11.235] (**) MSFT0001:00 04F3:31AD Mouse: always reports core events
[    11.235] (**) Option "Device" "/dev/input/event15"
[    11.235] (II) event15 - MSFT0001:00 04F3:31AD Mouse: is tagged by udev as: Mouse Pointingstick
[    11.236] (II) event15 - MSFT0001:00 04F3:31AD Mouse: device is a pointer
[    11.237] (II) event15 - MSFT0001:00 04F3:31AD Mouse: device removed
[    11.300] (II) libinput: MSFT0001:00 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.300] (II) libinput: MSFT0001:00 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.300] (II) libinput: MSFT0001:00 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.300] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:01/i2c-0/i2c-MSFT0001:00/0018:04F3:31AD.0002/input/input20/event15"
[    11.300] (II) XINPUT: Adding extended input device "MSFT0001:00 04F3:31AD Mouse" (type: MOUSE, id 17)
[    11.300] (**) Option "AccelerationScheme" "none"
[    11.300] (**) MSFT0001:00 04F3:31AD Mouse: (accel) selected scheme none/0
[    11.300] (**) MSFT0001:00 04F3:31AD Mouse: (accel) acceleration factor: 2.000
[    11.300] (**) MSFT0001:00 04F3:31AD Mouse: (accel) acceleration threshold: 4
[    11.301] (II) event15 - MSFT0001:00 04F3:31AD Mouse: is tagged by udev as: Mouse Pointingstick
[    11.301] (II) event15 - MSFT0001:00 04F3:31AD Mouse: device is a pointer
[    11.302] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Mouse (/dev/input/mouse1)
[    11.302] (II) No input driver specified, ignoring this device.
[    11.302] (II) This device may have been added with another device file.
[    11.303] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Touchpad (/dev/input/event17)
[    11.303] (**) MSFT0001:00 04F3:31AD Touchpad: Applying InputClass "libinput touchpad catchall"
[    11.303] (II) Using input driver 'libinput' for 'MSFT0001:00 04F3:31AD Touchpad'
[    11.303] (**) MSFT0001:00 04F3:31AD Touchpad: always reports core events
[    11.303] (**) Option "Device" "/dev/input/event17"
[    11.304] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: is tagged by udev as: Touchpad
[    11.305] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: device is a touchpad
[    11.305] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: device removed
[    11.320] (II) libinput: MSFT0001:00 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.320] (II) libinput: MSFT0001:00 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.320] (II) libinput: MSFT0001:00 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    11.320] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:01/i2c-0/i2c-MSFT0001:00/0018:04F3:31AD.0002/input/input22/event17"
[    11.320] (II) XINPUT: Adding extended input device "MSFT0001:00 04F3:31AD Touchpad" (type: TOUCHPAD, id 18)
[    11.322] (**) Option "AccelerationScheme" "none"
[    11.322] (**) MSFT0001:00 04F3:31AD Touchpad: (accel) selected scheme none/0
[    11.322] (**) MSFT0001:00 04F3:31AD Touchpad: (accel) acceleration factor: 2.000
[    11.322] (**) MSFT0001:00 04F3:31AD Touchpad: (accel) acceleration threshold: 4
[    11.322] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: is tagged by udev as: Touchpad
[    11.324] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: device is a touchpad
[    11.325] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Touchpad (/dev/input/mouse2)
[    11.325] (II) No input driver specified, ignoring this device.
[    11.325] (II) This device may have been added with another device file.
[    11.325] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    11.325] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    11.325] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    11.325] (**) AT Translated Set 2 keyboard: always reports core events
[    11.325] (**) Option "Device" "/dev/input/event3"
[    11.325] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    11.326] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    11.327] (II) event3  - AT Translated Set 2 keyboard: device removed
[    11.356] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    11.356] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 19)
[    11.357] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    11.357] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    11.363] (**) SINO WEALTH Gaming KB  Consumer Control: Applying InputClass "libinput keyboard catchall"
[    11.363] (II) Using input driver 'libinput' for 'SINO WEALTH Gaming KB  Consumer Control'
[    11.363] (**) SINO WEALTH Gaming KB  Consumer Control: always reports core events
[    11.363] (**) Option "Device" "/dev/input/event10"
[    11.363] (II) libinput: SINO WEALTH Gaming KB  Consumer Control: is a virtual subdevice
[    11.363] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.1/1-2.1:1.1/0003:258A:0058.0003/input/input10/event10"
[    11.363] (II) XINPUT: Adding extended input device "SINO WEALTH Gaming KB  Consumer Control" (type: KEYBOARD, id 20)
[    11.363] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[    11.363] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[    11.363] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[    11.363] (**) Option "Device" "/dev/input/event12"
[    11.363] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: is a virtual subdevice
[    11.363] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-4/1-4:1.0/0003:048D:C101.0004/input/input13/event12"
[    11.363] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: KEYBOARD, id 21)
[    11.364] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event14)
[    11.364] (II) No input driver specified, ignoring this device.
[    11.364] (II) This device may have been added with another device file.
[    11.364] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Mouse (/dev/input/mouse1)
[    11.364] (II) No input driver specified, ignoring this device.
[    11.364] (II) This device may have been added with another device file.
[    11.364] (II) config/udev: Adding input device MSFT0001:00 04F3:31AD Touchpad (/dev/input/mouse2)
[    11.365] (II) No input driver specified, ignoring this device.
[    11.365] (II) This device may have been added with another device file.
[    11.870] (II) config/udev: Adding input device Logitech G304 (/dev/input/mouse0)
[    11.871] (II) No input driver specified, ignoring this device.
[    11.871] (II) This device may have been added with another device file.
[    12.062] (II) config/udev: Adding input device Logitech G304 (/dev/input/event6)
[    12.062] (**) Logitech G304: Applying InputClass "libinput pointer catchall"
[    12.062] (**) Logitech G304: Applying InputClass "libinput keyboard catchall"
[    12.062] (II) Using input driver 'libinput' for 'Logitech G304'
[    12.062] (**) Logitech G304: always reports core events
[    12.062] (**) Option "Device" "/dev/input/event6"
[    12.064] (II) event6  - Logitech G304: is tagged by udev as: Keyboard Mouse
[    12.064] (II) event6  - Logitech G304: device is a pointer
[    12.064] (II) event6  - Logitech G304: device is a keyboard
[    12.065] (II) event6  - Logitech G304: device removed
[    12.116] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.116] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.116] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.116] (II) libinput: Logitech G304: needs a virtual subdevice
[    12.116] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.3/1-2.3:1.2/0003:046D:C53F.0007/0003:046D:4074.0008/input/input31/event6"
[    12.116] (II) XINPUT: Adding extended input device "Logitech G304" (type: MOUSE, id 22)
[    12.117] (**) Option "AccelerationScheme" "none"
[    12.117] (**) Logitech G304: (accel) selected scheme none/0
[    12.117] (**) Logitech G304: (accel) acceleration factor: 2.000
[    12.117] (**) Logitech G304: (accel) acceleration threshold: 4
[    12.118] (II) event6  - Logitech G304: is tagged by udev as: Keyboard Mouse
[    12.118] (II) event6  - Logitech G304: device is a pointer
[    12.118] (II) event6  - Logitech G304: device is a keyboard
[    12.119] (**) Logitech G304: Applying InputClass "libinput pointer catchall"
[    12.119] (**) Logitech G304: Applying InputClass "libinput keyboard catchall"
[    12.119] (II) Using input driver 'libinput' for 'Logitech G304'
[    12.119] (**) Logitech G304: always reports core events
[    12.119] (**) Option "Device" "/dev/input/event6"
[    12.119] (II) libinput: Logitech G304: is a virtual subdevice
[    12.119] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.119] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.119] (II) libinput: Logitech G304: Step value 0 was provided, libinput Fallback acceleration function is used.
[    12.119] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.3/1-2.3:1.2/0003:046D:C53F.0007/0003:046D:4074.0008/input/input31/event6"
[    12.119] (II) XINPUT: Adding extended input device "Logitech G304" (type: KEYBOARD, id 23)
[    17.135] (II) event2  - Power Button: device removed
[    17.160] (II) event4  - Video Bus: device removed
[    17.243] (II) event0  - Power Button: device removed
[    17.290] (II) event5  - SINO WEALTH Gaming KB : device removed
[    17.313] (II) event11 - SINO WEALTH Gaming KB  Keyboard: device removed
[    17.363] (II) event8  - SINO WEALTH Gaming KB  System Control: device removed
[    17.396] (II) event18 - Integrated Camera: Integrated C: device removed
[    17.453] (II) event13 - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[    17.516] (II) event9  - Ideapad extra buttons: device removed
[    17.566] (II) event15 - MSFT0001:00 04F3:31AD Mouse: device removed
[    17.610] (II) event17 - MSFT0001:00 04F3:31AD Touchpad: device removed
[    17.656] (II) event3  - AT Translated Set 2 keyboard: device removed
[    17.693] (II) event10 - SINO WEALTH Gaming KB  Consumer Control: device removed
[    17.716] (II) event12 - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[    17.743] (II) event6  - Logitech G304: device removed
[    17.780] (II) AIGLX: Suspending AIGLX clients for VT switch

Last edited by twelvenight (2023-11-03 15:38:11)

Offline

#15 2023-11-03 16:11:00

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

The xorg log is definitively with vfio, the edid loop probably as well - therefore neither nvidia nor any HDMI outputs are available.
Coming  back to my inital post,

seth wrote:

This sounds like you're expecting linux to display on the hdmi output but it doesn't?

If that's the case, that's b/c the HDMI output is (most likely, pending the data from a run w/o vfio) wired to the nvidia GPU.
You cannot pass the nvidia GPU through and use the HDMI output for linux, but it's likely available for the windows VM

Online

#16 2023-11-04 00:45:14

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

seth wrote:

The xorg log is definitively with vfio, the edid loop probably as well - therefore neither nvidia nor any HDMI outputs are available.
Coming  back to my inital post,

seth wrote:

This sounds like you're expecting linux to display on the hdmi output but it doesn't?

If that's the case, that's b/c the HDMI output is (most likely, pending the data from a run w/o vfio) wired to the nvidia GPU.
You cannot pass the nvidia GPU through and use the HDMI output for linux, but it's likely available for the windows VM

I'm sorry for my slow reply, but it was very late yesterday in my case, and I am a little unwilling. May I ask whether I can use integrated  card for my hdmi? Is it feasible to switch back to the separate card when I start the virtual machine? What should I do to be able to make my hdmi using my integrated card?

Offline

#17 2023-11-04 07:28:08

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

May I ask whether I can use integrated  card for my hdmi?

Either by using reverse prime or, if supported, by deactivating the GPU in the UEFI what will typically soft-wire the HDMI output to the IGP.
Neither approach will allow you to pass through the GPU to a VM.

https://en.wikipedia.org/wiki/XY_problem
What is your actual plan on using the HW here?
Why do you want to pass through the GPU to the VM?
Why do you need an output wired to the GPU available on the host?

It's possibly to dynamically  pass through a device w/o rebooting the system, but you'll *never* use the HDMI output for the host while the GPU is passed through to a VM.
The HDMI belongs to the GPU - whatever gets the GPU, gets the HDMI.

Online

#18 2023-11-04 08:31:11

twelvenight
Member
Registered: 2023-10-22
Posts: 22

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

seth wrote:

May I ask whether I can use integrated  card for my hdmi?

Either by using reverse prime or, if supported, by deactivating the GPU in the UEFI what will typically soft-wire the HDMI output to the IGP.
Neither approach will allow you to pass through the GPU to a VM.

https://en.wikipedia.org/wiki/XY_problem
What is your actual plan on using the HW here?
Why do you want to pass through the GPU to the VM?
Why do you need an output wired to the GPU available on the host?

It's possibly to dynamically  pass through a device w/o rebooting the system, but you'll *never* use the HDMI output for the host while the GPU is passed through to a VM.
The HDMI belongs to the GPU - whatever gets the GPU, gets the HDMI.

actually,I just enjoy the course of passthrough my gpu to the vm,I just want to use it to edit some word document.But now just rdp is ok.As you say,I may try pass single gpu to my vm at the unique mode,in this case probably can  avoid only vm can use hdmi?

Offline

#19 2023-11-04 08:33:41

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,089

Re: laptop use vfio-pci gpu driver can`t connet to the hdmi

You don't need RDP - you can use a VM perfectly fine w/o passing through any devices for direct and exclusive control by the VM guest.

Edit: GPU passthrough is mostly interesting to get the maximum GPU performance in the VM guest, typically because you want to play demanding games in the guest system.
It's utterly unimportant for MS Office.

Last edited by seth (2023-11-04 08:36:37)

Online

Board footer

Powered by FluxBB