>Synopsis: imt(4): Touchpad not working because of wrong USB Report ID. >Category: Kernel >Environment: System : OpenBSD 7.7 Details : OpenBSD 7.7 (MYKERNEL) #15: Sun May 4 17:18:01 CEST 2025 det...@oelmuehle.deep.space:/usr/src/sys/arch/amd64/compile/MYKERNEL
Architecture: OpenBSD.amd64 Machine : amd64 >Description: In short: OpenBSD does not properly detect my touchpad as multitouch. It is rejected by imt(4), even though ims(4) is able to use it. MY EDUCATED GUESS is that it is because of the wrongly detected repid in /usr/src/sys/dev/i2c/imt.c. The reason I am saying this, is because I added some debugging output to the kernel, (sorry about the dmesg) and started reading up on the USB HID specifications: https://www.usb.org/sites/default/files/documents/hid1_11.pdf https://usb.org/document-library/hid-usage-tables-16 From what I understand is that each device has its own data format when it is reporting updates, which is why there is a "report descriptor". The hex code in the dmesg output is said descriptor. And there are several reports available for the device. Think of it as one report for the buttons, and one for the cursor. (Even though that is not technically correct...) And there are also vendor specific reports. AND, HERE IS THE PROBLEM: For some reason, one of the vendor specific reports matches the if-clause in line 111 of i2c/imt.c. for (repid = 0; repid < parent->sc_nrepid; repid++) { .... if (hid_is_collection(desc, size, repid, HID_USAGE2(HUP_DIGITIZERS, HUD_TOUCHPAD))) { input = 1; if (sc != NULL && sc->sc_rep_input == -1) { sc->sc_rep_input = repid; } } else ... In my case, the correct match should be with repid 0x54=84, but report id 6 matches already. And because of the sc->sc_rep_input == -1 it will never match again. I suspect that this happens again later in the kernel, because simply overriding it does not work. You can contact me at dettus dot net, should you need more details or tests with my device. I can even offer my very own parser, which I wrote to better understand the spec. Because I REALLY REALLY REALLY want to be able to scroll with two fingers. :) Keep up the good work you guys! >How-To-Repeat: Install OpenBSD 7.7 on a Notebook with a ELAN0676 Touchpad. >Fix: None yet. As a hotfix, I tried overriding the repid with 0x54=84. This removed the line imt0: invalid max X/Y 0/0 from the dmesg. But since ims was no longer taking over, the touchpad did no longer work at all. dmesg: OpenBSD 7.7 (MYKERNEL) #15: Sun May 4 17:18:01 CEST 2025 det...@oelmuehle.deep.space:/usr/src/sys/arch/amd64/compile/MYKERNEL real mem = 102463893504 (97717MB) avail mem = 99331366912 (94729MB) random: good seed from bootblocks mpath0 at root scsibus0 at mpath0: 256 targets mainbus0 at root bios0 at mainbus0: SMBIOS rev. 3.6 @ 0x3e1fb000 (76 entries) bios0: vendor LENOVO version "R2DET32W (1.17 )" date 08/28/2024 bios0: LENOVO 21G2CTO1WW efi0 at bios0: UEFI 2.7 efi0: Lenovo rev 0x1170 acpi0 at bios0: ACPI 6.3 acpi0: sleep states S0ix S4 S5 acpi0: tables DSDT FACP SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT DTPR SSDT SSDT SSDT ECDT HPET APIC MCFG SSDT SSDT SSDT SSDT SSDT TPM2 LPIT WSMT SSDT DBGP DBG2 NHLT MSDM SSDT BATB DMAR FPDT SSDT SSDT SSDT SDEV ASF! PHAT BGRT UEFI SPCR acpi0: wakeup devices AWAC(S4) XDCI(S4) GLAN(S4) XHCI(S3) HDAS(S4) I3C0(S4) CNVW(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP03(S4) PXSX(S4) PXSX(S4) RP05(S4) PXSX(S4) [...] acpitimer0 at acpi0: 3579545 Hz, 24 bits acpiec0 at acpi0 acpihpet0 at acpi0: 19200000 Hz acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 32 (boot processor) cpu0: Intel(R) Core(TM) Ultra 9 185H, 4790.47 MHz, 06-aa-04, patch 00000020 cpu0: cpuid 1 edx=bfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> ecx=77fafbff<SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND> cpu0: cpuid 6 eax=dfcff7<SENSOR,ARAT> ecx=409<EFFFREQ> cpu0: cpuid 7.0 ebx=239c27eb<FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA> ecx=99c027ac<UMIP,PKU,WAITPKG,PKS> edx=fc1cc410<MD_CLEAR,IBT,IBRS,IBPB,STIBP,L1DF,SSBD> cpu0: cpuid a vers=5, gp=8, gpwidth=48, ff=3, ffwidth=48 cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES> cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG> ecx=121<LAHF,ABM,3DNOWP> cpu0: cpuid 80000007 edx=100<ITSC> cpu0: msr 10a=d89fd6b<IBRS_ALL,SKIP_L1DFL,MDS_NO,IF_PSCHANGE,TAA_NO,MISC_PKG_CT,ENERGY_FILT,DOITM,SBDR_SSDP_N,FBSDP_NO,PSDP_NO,RRSBA,OVERCLOCK,PBRSB_NO,GDS_NO,RFDS_NO> cpu0: 48KB 64b/line 12-way D-cache, 64KB 64b/line 16-way I-cache, 2MB 64b/line 16-way L2 cache, 24MB 64b/line 12-way L3 cache cpu0: smt 0, core 16, package 0 mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges cpu0: apic clock running at 38MHz cpu0: mwait min=64, max=64, C-substates=0.2.0.2.1.1.1.1, IBE cpu1 at mainbus0: apid 16 (application processor) cpu1: Intel(R) Core(TM) Ultra 9 185H, 5091.19 MHz, 06-aa-04, patch 00000020 cpu1: smt 0, core 8, package 0 cpu2 at mainbus0: apid 17 (application processor) cpu2: Intel(R) Core(TM) Ultra 9 185H, 5091.18 MHz, 06-aa-04, patch 00000020 cpu2: smt 1, core 8, package 0 cpu3 at mainbus0: apid 24 (application processor) cpu3: Intel(R) Core(TM) Ultra 9 185H, 5091.23 MHz, 06-aa-04, patch 00000020 cpu3: smt 0, core 12, package 0 cpu4 at mainbus0: apid 25 (application processor) cpu4: Intel(R) Core(TM) Ultra 9 185H, 5091.23 MHz, 06-aa-04, patch 00000020 cpu4: smt 1, core 12, package 0 cpu5 at mainbus0: apid 33 (application processor) cpu5: Intel(R) Core(TM) Ultra 9 185H, 4790.46 MHz, 06-aa-04, patch 00000020 cpu5: smt 1, core 16, package 0 cpu6 at mainbus0: apid 40 (application processor) cpu6: Intel(R) Core(TM) Ultra 9 185H, 4790.35 MHz, 06-aa-04, patch 00000020 cpu6: smt 0, core 20, package 0 cpu7 at mainbus0: apid 41 (application processor) cpu7: Intel(R) Core(TM) Ultra 9 185H, 4790.34 MHz, 06-aa-04, patch 00000020 cpu7: smt 1, core 20, package 0 cpu8 at mainbus0: apid 48 (application processor) cpu8: Intel(R) Core(TM) Ultra 9 185H, 4490.77 MHz, 06-aa-04, patch 00000020 cpu8: smt 0, core 24, package 0 cpu9 at mainbus0: apid 49 (application processor) cpu9: Intel(R) Core(TM) Ultra 9 185H, 4490.77 MHz, 06-aa-04, patch 00000020 cpu9: smt 1, core 24, package 0 cpu10 at mainbus0: apid 56 (application processor) cpu10: Intel(R) Core(TM) Ultra 9 185H, 4297.22 MHz, 06-aa-04, patch 00000020 cpu10: smt 0, core 28, package 0 cpu11 at mainbus0: apid 57 (application processor) cpu11: Intel(R) Core(TM) Ultra 9 185H, 4490.82 MHz, 06-aa-04, patch 00000020 cpu11: smt 1, core 28, package 0 cpu12 at mainbus0: apid 0 (application processor) cpu12: Intel(R) Core(TM) Ultra 9 185H, 1796.12 MHz, 06-aa-04, patch 00000020 cpu12: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 16-way L2 cache, 24MB 64b/line 12-way L3 cache cpu12: smt 0, core 0, package 0 cpu13 at mainbus0: apid 2 (application processor) cpu13: Intel(R) Core(TM) Ultra 9 185H, 1796.13 MHz, 06-aa-04, patch 00000020 cpu13: smt 0, core 1, package 0 cpu14 at mainbus0: apid 4 (application processor) cpu14: Intel(R) Core(TM) Ultra 9 185H, 1796.13 MHz, 06-aa-04, patch 00000020 cpu14: smt 0, core 2, package 0 cpu15 at mainbus0: apid 6 (application processor) cpu15: Intel(R) Core(TM) Ultra 9 185H, 1796.13 MHz, 06-aa-04, patch 00000020 cpu15: smt 0, core 3, package 0 cpu16 at mainbus0: apid 8 (application processor) cpu16: Intel(R) Core(TM) Ultra 9 185H, 1796.11 MHz, 06-aa-04, patch 00000020 cpu16: smt 0, core 4, package 0 cpu17 at mainbus0: apid 10 (application processor) cpu17: Intel(R) Core(TM) Ultra 9 185H, 1796.11 MHz, 06-aa-04, patch 00000020 cpu17: smt 0, core 5, package 0 cpu18 at mainbus0: apid 12 (application processor) cpu18: Intel(R) Core(TM) Ultra 9 185H, 1796.11 MHz, 06-aa-04, patch 00000020 cpu18: smt 0, core 6, package 0 cpu19 at mainbus0: apid 14 (application processor) cpu19: Intel(R) Core(TM) Ultra 9 185H, 1796.11 MHz, 06-aa-04, patch 00000020 cpu19: smt 0, core 7, package 0 cpu20 at mainbus0: apid 64 (application processor) cpu20: Intel(R) Core(TM) Ultra 9 185H, 899.79 MHz, 06-aa-04, patch 00000020 cpu20: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 16-way L2 cache cpu20: smt 0, core 32, package 0 cpu21 at mainbus0: apid 66 (application processor) cpu21: Intel(R) Core(TM) Ultra 9 185H, 897.81 MHz, 06-aa-04, patch 00000020 cpu21: smt 0, core 33, package 0 ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 120 pins acpimcfg0 at acpi0 acpimcfg0: addr 0xc0000000, bus 0-255 acpiprt0 at acpi0: bus 0 (PC00) acpiprt1 at acpi0: bus 29 (RP01) acpiprt2 at acpi0: bus -1 (RP02) acpiprt3 at acpi0: bus -1 (RP03) acpiprt4 at acpi0: bus -1 (RP04) acpiprt5 at acpi0: bus -1 (RP05) acpiprt6 at acpi0: bus -1 (RP06) acpiprt7 at acpi0: bus -1 (RP07) acpiprt8 at acpi0: bus -1 (RP08) acpiprt9 at acpi0: bus 5 (RP09) acpiprt10 at acpi0: bus -1 (RP10) acpiprt11 at acpi0: bus 4 (RP11) acpiprt12 at acpi0: bus -1 (RP12) acpiprt13 at acpi0: bus 32 (TRP0) acpiprt14 at acpi0: bus 80 (TRP2) acpipci0 at acpi0 PC00: 0x00000000 0x00000011 0x00000001 "ACPI000E" at acpi0 not configured acpithinkpad0 at acpi0: version 2.0 acpiac0 at acpi0: AC unit online acpibat0 at acpi0: BAT0 model "5B11H56401" serial 3666 type LiP oem "SMP" "LEN0111" at acpi0 not configured "LEN0100" at acpi0 not configured "LEN0130" at acpi0 not configured "INTC1062" at acpi0 not configured "INTC1062" at acpi0 not configured "INTC1062" at acpi0 not configured "INTC1062" at acpi0 not configured "INTC1062" at acpi0 not configured "INTC1062" at acpi0 not configured "LEN0071" at acpi0 not configured "LEN0321" at acpi0 not configured "ELAN0676" at acpi0 not configured pchgpio0 at acpi0 GPI0 addr 0xe0d10000/0x10000 0xe0d20000/0x10000 0xe0d30000/0x10000 0xe0d40000/0x10000 0xe0d50000/0x10000 irq 14, 416 pins acpibtn0 at acpi0: SLPB(wakeup) acpicpu0 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu1 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS /imd0acpicpu2 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu3 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu4 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu5 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu6 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu7 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu8 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu9 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu10 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu11 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu12 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu13 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu14 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu15 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu16 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu17 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu18 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu19 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu20 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS acpicpu21 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30), C1(1000@1 mwait.1), PSS "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured intelpmc0 at acpi0: PEPD state 0: 0x7f:1:2:0x00:0x0000000000000060 counter: 0x7f:64:0:0x00:0x0000000000000632 frequency: 0 state 1: 0x7f:1:2:0x00:0x0000000000000060 counter: 0x00:32:0:0x03:0x00000000fe00193c frequency: 8197 "INTC1070" at acpi0 not configured acpibtn1 at acpi0: LID_(wakeup) "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured acpibtn2 at acpi0: PWRB "PNP0C0B" at acpi0 not configured "INTC1025" at acpi0 not configured "PNP0A05" at acpi0 not configured "ELASB41A" at acpi0 not configured "INTC1042" at acpi0 not configured tpm0 at acpi0 TPM_ 2.0 (TIS) addr 0xfed40000/0x5000, device 0x00fc1050 rev 0x1 "USBC000" at acpi0 not configured acpipwrres0 at acpi0: PUBS, resource for XHCI acpipwrres1 at acpi0: BTRT acpipwrres2 at acpi0: DBTR acpipwrres3 at acpi0: WRST acpipwrres4 at acpi0: PXP_, resource for RP01, PXSX acpipwrres5 at acpi0: PXP_, resource for RP06 acpipwrres6 at acpi0: PXP_, resource for RP09, PXSX acpipwrres7 at acpi0: PXP_, resource for RP10, PXSX acpipwrres8 at acpi0: PXP_, resource for RP11, PXSX acpipwrres9 at acpi0: TBT0, resource for TDM0, TRP0, TRP1 acpipwrres10 at acpi0: TBT1, resource for TDM1, TRP2, TRP3 acpipwrres11 at acpi0: D3C_, resource for TXHC, TDM0, TDM1, TRP0, TRP1, TRP2, TRP3 acpitz0 at acpi0 acpitz0: critical temperature is 103 degC acpipwrres12 at acpi0: PIN_ acpipwrres13 at acpi0: PINP acpivideo0 at acpi0: GFX0 acpivout0 at acpivideo0: DD1F acpivout1 at acpivideo0: DD2F cpu0: Enhanced SpeedStep 4790 MHz: speeds: 3101, 3100, 2900, 2700, 2300, 2200, 2100, 1900, 1700, 1600, 1400, 1200, 1000, 800, 600, 400 MHz pci0 at mainbus0 bus 0 0:31:5: mem address conflict 0xfe010000/0x1000 pchb0 at pci0 dev 0 function 0 "Intel Core Ultra Host" rev 0x04 inteldrm0 at pci0 dev 2 function 0 "Intel Arc Graphics" rev 0x08 drm0 at inteldrm0 inteldrm0: msi, METEORLAKE, gen 12 "Intel Core Ultra DTT" rev 0x04 at pci0 dev 4 function 0 not configured ppb0 at pci0 dev 6 function 0 "Intel Core Ultra PCIE" rev 0x20: msi pci1 at ppb0 bus 5 ppb1 at pci0 dev 6 function 2 "Intel Core Ultra PCIE" rev 0x10: msi pci2 at ppb1 bus 4 nvme0 at pci2 dev 0 function 0 vendor "Kioxia", unknown product 0x0010 rev 0x01: msix, NVMe 1.4 nvme0: KXG8AZNV2T04 LA KIOXIA, firmware 5107APLA, serial 548F70G9FH1P scsibus1 at nvme0: 2 targets, initiator 0 sd0 at scsibus1 targ 1 lun 0: <NVMe, KXG8AZNV2T04 LA, 5107> sd0: 1953514MB, 512 bytes/sector, 4000797360 sectors ppb2 at pci0 dev 7 function 0 "Intel Core Ultra PCIE" rev 0x02: msi pci3 at ppb2 bus 32 ppb3 at pci0 dev 7 function 2 "Intel Core Ultra PCIE" rev 0x02: msi pci4 at ppb3 bus 80 "Intel Core Ultra PMT" rev 0x01 at pci0 dev 10 function 0 not configured "Intel Core Ultra NPU" rev 0x04 at pci0 dev 11 function 0 not configured xhci0 at pci0 dev 13 function 0 "Intel Core Ultra xHCI" rev 0x02: msi, xHCI 1.20 usb0 at xhci0: USB revision 3.0 uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1 "Intel Core Ultra TBT" rev 0x02 at pci0 dev 13 function 2 not configured "Intel Core Ultra TBT" rev 0x02 at pci0 dev 13 function 3 not configured xhci1 at pci0 dev 20 function 0 "Intel Core Ultra xHCI" rev 0x20: msi, xHCI 1.20 usb1 at xhci1: USB revision 3.0 uhub1 at usb1 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1 "Intel Core Ultra SRAM" rev 0x20 at pci0 dev 20 function 2 not configured iwx0 at pci0 dev 20 function 3 "Intel Wi-Fi 6 AX210" rev 0x20, msix dwiic0 at pci0 dev 21 function 0 "Intel Core Ultra I2C" rev 0x20: apic 2 int 32 iic0 at dwiic0 ihidev0 at iic0 addr 0x15 gpio 171, vendor 0x4f3 product 0x3195, ELAN0676 ihidev0: 92 report ids debug> number of reportid: 93 debug> matches repid 6 06 debug> matches repid 84 54 imt0 at ihidev0 debug> number of reportid: 93 debug> matches repid 6 06 debug> matches repid 84 54 debug> here we go 679 0xffff800000577400 debug> 05 01 09 02 A1 01 85 01 09 01 A1 00 05 09 19 01 29 02 15 00 25 01 75 01 95 02 81 02 95 06 81 03 05 01 09 30 09 31 15 81 25 7F 75 08 95 02 81 06 75 08 95 05 81 03 C0 06 00 FF 09 01 85 0E 09 C5 15 00 26 FF 00 75 08 95 04 B1 02 C0 06 00 FF 09 01 A1 01 85 5C 09 01 95 0B 75 08 81 06 85 0D 09 C5 15 00 26 FF 00 75 08 95 04 B1 02 85 0C 09 C6 96 10 03 75 08 B1 02 85 0B 09 C7 96 02 02 96 02 02 75 08 B1 02 C0 05 0D 09 05 A1 01 85 54 05 09 09 01 15 00 25 01 75 01 95 01 81 02 75 01 95 03 81 03 05 0D 09 54 25 0F 75 04 95 01 81 02 05 0D 09 56 15 00 25 64 55 0C 66 01 10 47 FF FF 00 00 27 FF FF 00 00 75 10 95 01 81 02 05 0D 09 22 A1 02 09 47 09 42 15 00 25 01 75 01 95 02 81 02 75 01 95 02 81 03 09 51 25 0F 75 04 95 01 81 02 05 01 09 30 15 00 26 C8 0D 35 00 46 D4 2B 55 0D 65 11 75 10 95 01 81 02 09 31 26 01 07 46 53 16 46 53 16 81 02 C0 05 0D 09 22 A1 02 09 47 09 42 15 00 25 01 75 01 95 02 81 02 75 01 95 02 81 03 09 51 25 0F 75 04 95 01 81 02 05 01 09 30 15 00 26 C8 0D 35 00 46 D4 2B 55 0D 65 11 75 10 95 01 81 02 09 31 26 01 07 46 53 16 46 53 16 81 02 C0 05 0D 09 22 A1 02 09 47 09 42 15 00 25 01 75 01 95 02 81 02 75 01 95 02 81 03 09 51 25 0F 75 04 95 01 81 02 05 01 09 30 15 00 26 C8 0D 35 00 46 D4 2B 55 0D 65 11 75 10 95 01 81 02 09 31 26 01 07 46 53 16 46 53 16 81 02 C0 05 0D 09 22 A1 02 09 47 09 42 15 00 25 01 75 01 95 02 81 02 75 01 95 02 81 03 09 51 25 0F 75 04 95 01 81 02 05 01 09 30 15 00 26 C8 0D 35 00 46 D4 2B 55 0D 65 11 75 10 95 01 81 02 09 31 26 01 07 46 53 16 46 53 16 81 02 C0 05 0D 09 22 A1 02 09 47 09 42 15 00 25 01 75 01 95 02 81 02 75 01 95 02 81 03 09 51 25 0F 75 04 95 01 81 02 05 01 09 30 15 00 26 C8 0D 35 00 46 D4 2B 55 0D 65 11 75 10 95 01 81 02 09 31 26 01 07 46 53 16 46 53 16 81 02 C0 05 0D 85 02 09 55 09 59 75 04 95 02 25 0F B1 02 85 07 09 60 75 01 95 01 15 00 25 01 B1 02 95 0F B1 03 06 00 FF 06 00 FF 85 06 09 C5 15 00 26 FF 00 75 08 96 00 01 B1 02 C0 05 0D 09 0E A1 01 85 03 09 22 A1 00 09 52 15 00 25 0A 75 10 95 01 B1 02 C0 09 22 A1 00 85 05 09 57 09 58 75 01 95 02 25 01 B1 02 95 0E B1 03 C0 C0 >> @ 0xffff800000577400 debug> 05 01 debug> 09 02 debug> A1 01 debug> h.report_ID:0 vs 6 debug> h.kind:3 vs 0 debug> 85 01 debug> 09 01 debug> A1 00 debug> h.report_ID:1 vs 6 debug> h.kind:3 vs 0 debug> 05 09 debug> 19 01 debug> 29 02 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> 95 06 debug> 81 03 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 09 31 debug> 15 81 debug> 25 7F debug> 75 08 debug> 95 02 debug> 81 06 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> 75 08 debug> 95 05 debug> 81 03 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:1 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:1 vs 6 debug> h.kind:4 vs 0 debug> 06 00 FF debug> 09 01 debug> 85 0E debug> 09 C5 debug> 15 00 debug> 26 FF 00 debug> 75 08 debug> 95 04 debug> B1 02 debug> C0 debug> h.report_ID:14 vs 6 debug> h.kind:4 vs 0 debug> 06 00 FF debug> 09 01 debug> A1 01 debug> h.report_ID:14 vs 6 debug> h.kind:3 vs 0 debug> 85 5C debug> 09 01 debug> 95 0B debug> 75 08 debug> 81 06 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:92 vs 6 debug> h.kind:0 vs 0 debug> 85 0D debug> 09 C5 debug> 15 00 debug> 26 FF 00 debug> 75 08 debug> 95 04 debug> B1 02 debug> 85 0C debug> 09 C6 debug> 96 10 03 debug> 75 08 debug> B1 02 debug> 85 0B debug> 09 C7 debug> 96 02 02 debug> 96 02 02 debug> 75 08 debug> B1 02 debug> C0 debug> h.report_ID:11 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 05 debug> A1 01 debug> h.report_ID:11 vs 6 debug> h.kind:3 vs 0 debug> 85 54 debug> 05 09 debug> 09 01 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 03 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 0D debug> 09 54 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 0D debug> 09 56 debug> 15 00 debug> 25 64 debug> 55 0C debug> 66 01 10 debug> 47 FF FF 00 00 debug> 27 FF FF 00 00 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 0D debug> 09 22 debug> A1 02 debug> h.report_ID:84 vs 6 debug> h.kind:3 vs 0 debug> 09 47 debug> 09 42 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 02 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 51 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 15 00 debug> 26 C8 0D debug> 35 00 debug> 46 D4 2B debug> 55 0D debug> 65 11 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 31 debug> 26 01 07 debug> 46 53 16 debug> 46 53 16 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:84 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 22 debug> A1 02 debug> h.report_ID:84 vs 6 debug> h.kind:3 vs 0 debug> 09 47 debug> 09 42 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 02 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 51 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 15 00 debug> 26 C8 0D debug> 35 00 debug> 46 D4 2B debug> 55 0D debug> 65 11 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 31 debug> 26 01 07 debug> 46 53 16 debug> 46 53 16 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:84 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 22 debug> A1 02 debug> h.report_ID:84 vs 6 debug> h.kind:3 vs 0 debug> 09 47 debug> 09 42 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 02 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 51 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 15 00 debug> 26 C8 0D debug> 35 00 debug> 46 D4 2B debug> 55 0D debug> 65 11 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 31 debug> 26 01 07 debug> 46 53 16 debug> 46 53 16 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:84 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 22 debug> A1 02 debug> h.report_ID:84 vs 6 debug> h.kind:3 vs 0 debug> 09 47 debug> 09 42 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 02 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 51 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 15 00 debug> 26 C8 0D debug> 35 00 debug> 46 D4 2B debug> 55 0D debug> 65 11 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 31 debug> 26 01 07 debug> 46 53 16 debug> 46 53 16 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:84 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 22 debug> A1 02 debug> h.report_ID:84 vs 6 debug> h.kind:3 vs 0 debug> 09 47 debug> 09 42 debug> 15 00 debug> 25 01 debug> 75 01 debug> 95 02 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 75 01 debug> 95 02 debug> 81 03 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 51 debug> 25 0F debug> 75 04 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 05 01 debug> 09 30 debug> 15 00 debug> 26 C8 0D debug> 35 00 debug> 46 D4 2B debug> 55 0D debug> 65 11 debug> 75 10 debug> 95 01 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> 09 31 debug> 26 01 07 debug> 46 53 16 debug> 46 53 16 debug> 81 02 debug> h.report_ID:84 vs 6 debug> h.kind:0 vs 0 debug> C0 debug> h.report_ID:84 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 85 02 debug> 09 55 debug> 09 59 debug> 75 04 debug> 95 02 debug> 25 0F debug> B1 02 debug> 85 07 debug> 09 60 debug> 75 01 debug> 95 01 debug> 15 00 debug> 25 01 debug> B1 02 debug> 95 0F debug> B1 03 debug> 06 00 FF debug> 06 00 FF debug> 85 06 debug> 09 C5 debug> 15 00 debug> 26 FF 00 debug> 75 08 debug> 96 00 01 debug> B1 02 debug> C0 debug> h.report_ID:6 vs 6 debug> h.kind:4 vs 0 debug> 05 0D debug> 09 0E debug> A1 01 debug> h.report_ID:6 vs 6 debug> h.kind:3 vs 0 debug> 85 03 debug> 09 22 debug> A1 00 debug> h.report_ID:3 vs 6 debug> h.kind:3 vs 0 debug> 09 52 debug> 15 00 debug> 25 0A debug> 75 10 debug> 95 01 debug> B1 02 debug> C0 debug> h.report_ID:3 vs 6 debug> h.kind:4 vs 0 debug> 09 22 debug> A1 00 debug> h.report_ID:3 vs 6 debug> h.kind:3 vs 0 debug> 85 05 debug> 09 57 debug> 09 58 debug> 75 01 debug> 95 02 debug> 25 01 debug> B1 02 debug> 95 0E debug> B1 03 debug> C0 debug> h.report_ID:5 vs 6 debug> h.kind:4 vs 0 debug> C0 debug> h.report_ID:5 vs 6 debug> h.kind:4 vs 0 imt0: invalid max X/Y 0/0 ims0 at ihidev0 reportid 1: 2 buttons wsmouse0 at ims0 mux 0 hid at ihidev0 reportid 5 not configured hid at ihidev0 reportid 7 not configured hid at ihidev0 reportid 11 not configured hid at ihidev0 reportid 12 not configured hid at ihidev0 reportid 13 not configured ims1 at ihidev0 reportid 14: 0 buttons wsmouse1 at ims1 mux 0 hid at ihidev0 reportid 84 not configured hid at ihidev0 reportid 92 not configured "Intel Core Ultra HECI" rev 0x20 at pci0 dev 22 function 0 not configured puc0 at pci0 dev 22 function 3 "Intel Core Ultra KT" rev 0x20: ports: 16 com com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo ppb4 at pci0 dev 28 function 0 "Intel Core Ultra PCIE" rev 0x20: msi pci5 at ppb4 bus 29 pcib0 at pci0 dev 31 function 0 "Intel Core Ultra eSPI" rev 0x20 azalia0 at pci0 dev 31 function 3 "Intel Core Ultra HD Audio" rev 0x20: msi azalia0: codecs: Realtek ALC257 audio0 at azalia0 ichiic0 at pci0 dev 31 function 4 "Intel Core Ultra SMBus" rev 0x20: apic 2 int 18 iic1 at ichiic0 iic1: addr 0x48 0c=03 0e=03 15=2c 16=20 19=04 1b=05 1c=60 1e=60 1f=60 20=cf 21=79 22=63 25=79 26=63 27=79 28=63 29=90 2a=99 2b=42 2e=84 2f=5a 31=49 32=80 34=0e 3b=10 3c=80 3d=b3 words 00=0000 01=0000 02=0000 03=0000 04=0000 05=0000 06=0000 07=0000 iic1: addr 0x4a 0c=03 0e=03 15=2c 16=20 19=04 1b=05 1c=60 1e=60 1f=60 20=cf 21=79 22=63 25=79 26=63 27=79 28=63 29=90 2a=99 2b=42 2e=b4 2f=5a 31=49 32=80 34=0e 3b=10 3c=80 3d=b3 words 00=0000 01=0000 02=0000 03=0000 04=0000 05=0000 06=0000 07=0000 "Intel Core Ultra SPI" rev 0x20 at pci0 dev 31 function 5 not configured em0 at pci0 dev 31 function 6 "Intel I219-LM" rev 0x20: msi, address c8:53:09:0d:35:21 isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 irq 1 irq 12 pckbd0 at pckbc0 (kbd slot) wskbd0 at pckbd0: console keyboard pms0 at pckbc0 (aux slot) wsmouse2 at pms0 mux 0 pcppi0 at isa0 port 0x61 spkr0 at pcppi0 vmm0 at mainbus0: VMX/EPT efifb at mainbus0 not configured ure0 at uhub0 port 4 configuration 1 interface 0 "Realtek USB 10/100/1000 LAN" rev 3.00/30.00 addr 2 ure0: RTL8153 (0x5c30), address a0:ce:c8:98:1b:32 rgephy0 at ure0 phy 0: RTL8251, rev. 0 ugen0 at uhub1 port 3 "Synaptics product 0x00f9" rev 2.00/0.00 addr 2 uvideo0 at uhub1 port 4 configuration 1 interface 0 "8SSC21K64624V1SR4BK29V4 Integrated Camera" rev 2.01/10.08 addr 3 video0 at uvideo0 uvideo1 at uhub1 port 4 configuration 1 interface 2 "8SSC21K64624V1SR4BK29V4 Integrated Camera" rev 2.01/10.08 addr 3 video1 at uvideo1 ugen1 at uhub1 port 4 configuration 1 "8SSC21K64624V1SR4BK29V4 Integrated Camera" rev 2.01/10.08 addr 3 uhub2 at uhub1 port 5 configuration 1 interface 0 "VIA Labs, Inc. USB2.0 Hub" rev 2.10/90.13 addr 4 uhub3 at uhub2 port 4 configuration 1 interface 0 "VIA Labs, Inc. USB2.0 Hub" rev 2.10/d.a0 addr 5 uhidev0 at uhub3 port 1 configuration 1 interface 0 "Razer Razer DeathAdder V2" rev 2.00/2.00 addr 6 uhidev0: iclass 3/1 ums0 at uhidev0: 5 buttons, Z dir wsmouse3 at ums0 mux 0 uhidev1 at uhub3 port 1 configuration 1 interface 1 "Razer Razer DeathAdder V2" rev 2.00/2.00 addr 6 uhidev1: iclass 3/0, 5 report ids ukbd0 at uhidev1 reportid 1: 8 variable keys, 6 key codes wskbd1 at ukbd0 mux 1 ucc0 at uhidev1 reportid 2: 573 usages, 20 keys, array wskbd2 at ucc0 mux 1 uhid0 at uhidev1 reportid 3: input=15, output=0, feature=0 uhid1 at uhidev1 reportid 4: input=15, output=0, feature=0 uhid2 at uhidev1 reportid 5: input=15, output=0, feature=0 uhidev2 at uhub3 port 1 configuration 1 interface 2 "Razer Razer DeathAdder V2" rev 2.00/2.00 addr 6 uhidev2: iclass 3/1 ukbd1 at uhidev2: 8 variable keys, 6 key codes wskbd3 at ukbd1 mux 1 uhidev3 at uhub3 port 1 configuration 1 interface 3 "Razer Razer DeathAdder V2" rev 2.00/2.00 addr 6 uhidev3: iclass 3/0, 7 report ids uhid3 at uhidev3 reportid 1: input=0, output=0, feature=22 uhid4 at uhidev3 reportid 2: input=0, output=0, feature=2 uhid5 at uhidev3 reportid 3: input=0, output=0, feature=27 uhid6 at uhidev3 reportid 4: input=0, output=0, feature=42 uhid7 at uhidev3 reportid 5: input=0, output=0, feature=8 uhid8 at uhidev3 reportid 6: input=0, output=0, feature=1 uhid9 at uhidev3 reportid 7: input=0, output=0, feature=63 uhidev4 at uhub3 port 4 configuration 1 interface 0 "Metadot - Das Keyboard Das Keyboard" rev 1.10/1.00 addr 7 uhidev4: iclass 3/1 ukbd2 at uhidev4: 8 variable keys, 6 key codes wskbd4 at ukbd2 mux 1 uhidev5 at uhub3 port 4 configuration 1 interface 1 "Metadot - Das Keyboard Das Keyboard" rev 1.10/1.00 addr 7 uhidev5: iclass 3/0, 3 report ids uhid10 at uhidev5 reportid 1: input=0, output=0, feature=7 uhid11 at uhidev5 reportid 2: input=1, output=0, feature=0 ucc1 at uhidev5 reportid 3: 24 usages, 13 keys, enum wskbd5 at ucc1 mux 1 ugen2 at uhub1 port 8 "Generic EMV Smartcard Reader" rev 2.01/1.20 addr 8 ugen3 at uhub1 port 10 "Intel Bluetooth" rev 2.01/0.00 addr 9 vscsi0 at root scsibus2 at vscsi0: 256 targets softraid0 at root scsibus3 at softraid0: 256 targets root on sd0a (b49aa8492a3ce39c.a) swap on sd0b dump on sd0b inteldrm0: 3072x1920, 32bpp wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0 wskbd1: connecting to wsdisplay0 wskbd2: connecting to wsdisplay0 wskbd3: connecting to wsdisplay0 wskbd4: connecting to wsdisplay0 wskbd5: connecting to wsdisplay0 wsdisplay0: screen 1-5 added (std, vt100 emulation) drm:pid72908:gsc_fw_load *ERROR* [drm] *ERROR* GT1: Request submission for GSC load failed 0xffffffffffffffc4e drm:pid72908:intel_uc_fw_mark_load_failed *ERROR* [drm] *ERROR* GT1: Failed to load GSC firmware i915/mtl_gsc_1.bin 0xffffffffffffffc4e iwx0: hw rev 0x440, fw 83.d24e06ed.0, pnvm ce1a5094, address 00:72:ee:76:63:49 usbdevs: Controller /dev/usb0: addr 01: 8086:0000 Intel, xHCI root hub super speed, self powered, config 1, rev 1.00 driver: uhub0 addr 02: 0bda:8153 Realtek, USB 10/100/1000 LAN super speed, power 72 mA, config 1, rev 30.00, iSerial 000000 driver: ure0 Controller /dev/usb1: addr 01: 8086:0000 Intel, xHCI root hub super speed, self powered, config 1, rev 1.00 driver: uhub1 addr 02: 06cb:00f9 Synaptics, product 0x00f9 full speed, power 100 mA, config 1, rev 0.00, iSerial 09e2d4b1b172 driver: ugen0 addr 03: 30c9:00cd 8SSC21K64624V1SR4BK29V4, Integrated Camera high speed, power 500 mA, config 1, rev 10.08, iSerial 0001 driver: uvideo0 driver: uvideo1 driver: ugen1 addr 04: 2109:2817 VIA Labs, Inc., USB2.0 Hub high speed, self powered, config 1, rev 90.13, iSerial 000000000 driver: uhub2 addr 05: 2109:2812 VIA Labs, Inc., USB2.0 Hub high speed, self powered, config 1, rev d.a0 driver: uhub3 addr 06: 1532:0084 Razer, Razer DeathAdder V2 full speed, self powered, config 1, rev 2.00 driver: uhidev0 driver: uhidev1 driver: uhidev2 driver: uhidev3 addr 07: 24f0:204a Metadot - Das Keyboard, Das Keyboard full speed, power 100 mA, config 1, rev 1.00 driver: uhidev4 driver: uhidev5 addr 08: 2ce3:9563 Generic, EMV Smartcard Reader full speed, power 50 mA, config 1, rev 1.20 driver: ugen2 addr 09: 8087:0033 Intel, Bluetooth full speed, self powered, config 1, rev 0.00 driver: ugen3