Cheap broken USB devices not following spec?? Tell me that isn't possible!
:-) neirac <cneirabus...@gmail.com> wrote: > I have a Cirque Corporation, USB GlidePoint, that's not working in 7.3. > Checking the code I realized that this device is returning 0 as > bDescriptorType, so I relaxed the error condition to just looked at the size. > Is it common that devices don't return the expected UDES_DEVICE descriptor?. > Maybe my understanding of this problem is incorrect, but after this change > the mouse started working. > here is the patch: > > Index: usb_subr.c > =================================================================== > RCS file: /cvs/src/sys/dev/usb/usb_subr.c,v > retrieving revision 1.158 > diff -u -p -u -p -r1.158 usb_subr.c > --- usb_subr.c 16 Feb 2022 06:23:42 -0000 1.158 > +++ usb_subr.c 6 Oct 2023 13:09:59 -0000 > @@ -1149,8 +1149,7 @@ usbd_new_device(struct device *parent, s > dd->bDeviceProtocol, dd->bMaxPacketSize, dd->bLength, > dev->speed)); > > - if ((dd->bDescriptorType != UDESC_DEVICE) || > - (dd->bLength < USB_DEVICE_DESCRIPTOR_SIZE)) { > + if (dd->bLength < USB_DEVICE_DESCRIPTOR_SIZE) { > err = USBD_INVAL; > goto fail; > } > > ---------------------------------------------------------------------- > Devices: > > Controller /dev/usb0: > addr 01: 1022:0000 AMD, xHCI root hub > addr 02: 041e:3042 Creative Technology, SB X-Fi Surround 5.1 > Controller /dev/usb1: > addr 01: 1022:0000 AMD, xHCI root hub > Controller /dev/usb2: > addr 01: 1022:0000 AMD, EHCI root hub > Controller /dev/usb3: > addr 01: 1022:0000 AMD, EHCI root hub > Controller /dev/usb4: > addr 01: 1022:0000 AMD, OHCI root hub > Controller /dev/usb5: > addr 01: 1022:0000 AMD, OHCI root hub > addr 02: 058f:9254 ALCOR, Generic USB Hub > addr 03: 05f3:0081 PI Engineering, Kinesis Keyboard Hub > addr 04: 05f3:0007 P.I. Engineering, product 0x0007 > addr 05: 0461:4d22 Primax Electronics, USB Optical Mouse > addr 06: 0488:0022 Cirque Corporation, USB GlidePoint > addr 07: 2101:1407 D-Link, USB KVM > Controller /dev/usb6: > addr 01: 1022:0000 AMD, OHCI root hub > > ----------------------------------------------------------------------- > dmesg with kernel compiled with USB_DEBUG option > > OpenBSD 7.3-stable (TEST.MP) #14: Fri Oct 6 10:12:10 -03 2023 > nei...@litre.lan:/usr/src/sys/arch/amd64/compile/TEST.MP > real mem = 7716323328 (7358MB) > avail mem = 7463051264 (7117MB) > random: good seed from bootblocks > mpath0 at root > scsibus0 at mpath0: 256 targets > mainbus0 at root > bios0 at mainbus0: SMBIOS rev. 2.8 @ 0xebe50 (50 entries) > bios0: vendor American Megatrends Inc. version "V30.0" date 10/25/2013 > bios0: MSI MS-7721 > acpi0 at bios0: ACPI 5.0 > acpi0: sleep states S0 S3 S4 S5 > acpi0: tables DSDT FACP APIC FPDT MCFG HPET IVRS SSDT SSDT CRAT SSDT SSDT > acpi0: wakeup devices SBAZ(S4) P0PC(S4) OHC1(S4) EHC1(S4) OHC2(S4) EHC2(S4) > OHC3(S4) EHC3(S4) OHC4(S4) XHC0(S4) XHC1(S4) PE20(S4) PE21(S4) PE22(S4) > PE23(S4) PB2_(S4) [...] > acpitimer0 at acpi0: 3579545 Hz, 32 bits > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat > cpu0 at mainbus0: apid 16 (boot processor) > cpu0: AMD A8-5600K APU with Radeon(tm) HD Graphics, 3593.52 MHz, 15-10-01 > cpu0: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,XOP,SKINIT,WDT,FMA4,TCE,TBM,TOPEXT,CPCTR,ITSC,BMI1 > cpu0: 16KB 64b/line 4-way D-cache, 64KB 64b/line 2-way I-cache, 2MB 64b/line > 16-way L2 cache > cpu0: smt 0, core 0, package 0 > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges > cpu0: apic clock running at 99MHz > cpu0: mwait min=64, max=64, IBE > cpu1 at mainbus0: apid 17 (application processor) > cpu1: AMD A8-5600K APU with Radeon(tm) HD Graphics, 3593.56 MHz, 15-10-01 > cpu1: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,XOP,SKINIT,WDT,FMA4,TCE,TBM,TOPEXT,CPCTR,ITSC,BMI1 > cpu1: 16KB 64b/line 4-way D-cache, 64KB 64b/line 2-way I-cache, 2MB 64b/line > 16-way L2 cache > cpu1: smt 1, core 0, package 0 > cpu2 at mainbus0: apid 18 (application processor) > cpu2: AMD A8-5600K APU with Radeon(tm) HD Graphics, 3593.65 MHz, 15-10-01 > cpu2: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,XOP,SKINIT,WDT,FMA4,TCE,TBM,TOPEXT,CPCTR,ITSC,BMI1 > cpu2: 16KB 64b/line 4-way D-cache, 64KB 64b/line 2-way I-cache, 2MB 64b/line > 16-way L2 cache > cpu2: smt 0, core 1, package 0 > cpu3 at mainbus0: apid 19 (application processor) > cpu3: AMD A8-5600K APU with Radeon(tm) HD Graphics, 3594.00 MHz, 15-10-01 > cpu3: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,POPCNT,AES,XSAVE,AVX,F16C,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,XOP,SKINIT,WDT,FMA4,TCE,TBM,TOPEXT,CPCTR,ITSC,BMI1 > cpu3: 16KB 64b/line 4-way D-cache, 64KB 64b/line 2-way I-cache, 2MB 64b/line > 16-way L2 cache > cpu3: smt 1, core 1, package 0 > ioapic0 at mainbus0: apid 0 pa 0xfec00000, version 21, 24 pins > acpimcfg0 at acpi0 > acpimcfg0: addr 0xe0000000, bus 0-255 > acpihpet0 at acpi0: 14318180 Hz > acpiprt0 at acpi0: bus 0 (PCI0) > acpiprt1 at acpi0: bus 2 (P0PC) > acpiprt2 at acpi0: bus -1 (PE20) > acpiprt3 at acpi0: bus -1 (PE21) > acpiprt4 at acpi0: bus -1 (PE22) > acpiprt5 at acpi0: bus -1 (PE23) > acpiprt6 at acpi0: bus -1 (PB2_) > acpiprt7 at acpi0: bus -1 (PB3_) > acpiprt8 at acpi0: bus 1 (PB4_) > acpiprt9 at acpi0: bus -1 (PB5_) > acpiprt10 at acpi0: bus -1 (PB6_) > acpiprt11 at acpi0: bus -1 (PB7_) > acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001 > com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo > com0: probed fifo depth: 15 bytes > acpicmos0 at acpi0 > acpibtn0 at acpi0: PWRB > "pnp0c14" at acpi0 not configured > acpicpu0 at acpi0: C1(@1 halt!), PSS > acpicpu1 at acpi0: C1(@1 halt!), PSS > acpicpu2 at acpi0: C1(@1 halt!), PSS > acpicpu3 at acpi0: C1(@1 halt!), PSS > acpivideo0 at acpi0: VGA_ > acpivout0 at acpivideo0: LCD_ > acpivideo1 at acpi0: VGA_ > cpu0: 3593 MHz: speeds: 3600 3200 2800 2400 1900 1400 MHz > pci0 at mainbus0 bus 0 > pchb0 at pci0 dev 0 function 0 "AMD 15/1xh Host" rev 0x00 > "AMD 15/1xh IOMMU" rev 0x00 at pci0 dev 0 function 2 not configured > radeondrm0 at pci0 dev 1 function 0 "ATI Radeon HD 7560D" rev 0x00 > drm0 at radeondrm0 > radeondrm0: msi > azalia0 at pci0 dev 1 function 1 vendor "ATI", unknown product 0x9902 rev > 0x00: msi > azalia0: no supported codecs > ppb0 at pci0 dev 4 function 0 "AMD 15/1xh PCIE" rev 0x00: msi > pci1 at ppb0 bus 1 > re0 at pci1 dev 0 function 0 "Realtek 8168" rev 0x0c: RTL8168G/8111G > (0x4c00), msi, address 44:8a:5b:26:e9:1e > rgephy0 at re0 phy 7: RTL8251 PHY, rev. 0 > xhci0 at pci0 dev 16 function 0 "AMD Bolton xHCI" rev 0x09: msi, xHCI 1.0 > usb0 at xhci0: USB revision 3.0 > usbd_new_device: bus=0xffff800000315000 port=0 depth=0 speed=4 > usbd_setup_pipe: dev=0xffff8000000efd00 iface=0x0 ep=0xffff8000000efd38 > pipe=0xffff8000000efd08 > usbd_new_device: adding unit addr=1, rev=300, class=9, subclass=0, > protocol=1, maxpacket=9, len=18, speed=4 > usbd_new_device: new dev (addr 1), dev=0xffff8000000efd00, > parent=0xffff8000000efc00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff8000000efd00 iface=0xffff8000000c9bc0 > ep=0xffff80000002e630 pipe=0xffffffff82928528 > xhci1 at pci0 dev 16 function 1 "AMD Bolton xHCI" rev 0x09: msi, xHCI 1.0 > usb1 at xhci1: USB revision 3.0 > usbd_new_device: bus=0xffff800000330000 port=0 depth=0 speed=4 > usbd_setup_pipe: dev=0xffff800000346000 iface=0x0 ep=0xffff800000346038 > pipe=0xffff800000346008 > usbd_new_device: adding unit addr=1, rev=300, class=9, subclass=0, > protocol=1, maxpacket=9, len=18, speed=4 > usbd_new_device: new dev (addr 1), dev=0xffff800000346000, > parent=0xffff8000000eff00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub1 at usb1 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff800000346000 iface=0xffff8000000c9c80 > ep=0xffff80000002e800 pipe=0xffffffff82928528 > ahci0 at pci0 dev 17 function 0 "AMD Hudson-2 SATA" rev 0x40: msi, AHCI 1.3 > ahci0: port 0: 3.0Gb/s > ahci0: port 1: 6.0Gb/s > ahci0: port 3: 1.5Gb/s > scsibus1 at ahci0: 32 targets > sd0 at scsibus1 targ 0 lun 0: <ATA, WDC WD3200AAJS-0, 01.0> > naa.50014ee0abe5fca1 > sd0: 305245MB, 512 bytes/sector, 625142448 sectors > sd1 at scsibus1 targ 1 lun 0: <ATA, ST500DM002-1BD14, KC45> > naa.5000c50064bdcbda > sd1: 476940MB, 512 bytes/sector, 976773168 sectors > cd0 at scsibus1 targ 3 lun 0: <TSSTcorp, CDDVDW SH-S223F, SB03> removable > ohci0 at pci0 dev 18 function 0 "AMD Hudson-2 USB" rev 0x11: apic 0 int 18, > version 1.0, legacy support > ehci0 at pci0 dev 18 function 2 "AMD Hudson-2 USB2" rev 0x11: apic 0 int 17 > usb2 at ehci0: USB revision 2.0 > usbd_new_device: bus=0xffff80000036f000 port=0 depth=0 speed=3 > usbd_setup_pipe: dev=0xffff800000346800 iface=0x0 ep=0xffff800000346838 > pipe=0xffff800000346808 > usbd_new_device: adding unit addr=1, rev=200, class=9, subclass=0, > protocol=1, maxpacket=64, len=18, speed=3 > usbd_new_device: new dev (addr 1), dev=0xffff800000346800, > parent=0xffff800000346700 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub2 at usb2 configuration 1 interface 0 "AMD EHCI root hub" rev 2.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff800000346800 iface=0xffff8000000e3180 > ep=0xffff80000002e8f0 pipe=0xffffffff829284f8 > ohci1 at pci0 dev 19 function 0 "AMD Hudson-2 USB" rev 0x11: apic 0 int 18, > version 1.0, legacy support > ehci1 at pci0 dev 19 function 2 "AMD Hudson-2 USB2" rev 0x11: apic 0 int 17 > usb3 at ehci1: USB revision 2.0 > usbd_new_device: bus=0xffff800000375000 port=0 depth=0 speed=3 > usbd_setup_pipe: dev=0xffff800000346b00 iface=0x0 ep=0xffff800000346b38 > pipe=0xffff800000346b08 > usbd_new_device: adding unit addr=1, rev=200, class=9, subclass=0, > protocol=1, maxpacket=64, len=18, speed=3 > usbd_new_device: new dev (addr 1), dev=0xffff800000346b00, > parent=0xffff800000346a00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub3 at usb3 configuration 1 interface 0 "AMD EHCI root hub" rev 2.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff800000346b00 iface=0xffff8000000e3240 > ep=0xffff80000002e930 pipe=0xffffffff829284f8 > piixpm0 at pci0 dev 20 function 0 "AMD Hudson-2 SMBus" rev 0x16: SMI > iic0 at piixpm0 > spdmem0 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-8500 > azalia1 at pci0 dev 20 function 2 "AMD Hudson-2 HD Audio" rev 0x01: apic 0 > int 16 > azalia1: codecs: Realtek ALC887 > audio0 at azalia1 > pcib0 at pci0 dev 20 function 3 "AMD Hudson-2 LPC" rev 0x11 > ppb1 at pci0 dev 20 function 4 "AMD Hudson-2 PCI" rev 0x40 > pci2 at ppb1 bus 2 > ral0 at pci2 dev 5 function 0 "Ralink RT5360" rev 0x00: apic 0 int 20, > address d8:fe:e3:5a:f7:30 > ral0: MAC/BBP RT5392 (rev 0x0223), RF RT5360 (MIMO 1T1R) > ohci2 at pci0 dev 20 function 5 "AMD Hudson-2 USB" rev 0x11: apic 0 int 18, > version 1.0, legacy support > pchb1 at pci0 dev 24 function 0 "AMD 15/1xh Link Cfg" rev 0x00 > pchb2 at pci0 dev 24 function 1 "AMD 15/1xh Address Map" rev 0x00 > pchb3 at pci0 dev 24 function 2 "AMD 15/1xh DRAM Cfg" rev 0x00 > km0 at pci0 dev 24 function 3 "AMD 15/1xh Misc Cfg" rev 0x00 > pchb4 at pci0 dev 24 function 4 "AMD 15/1xh CPU Power" rev 0x00 > pchb5 at pci0 dev 24 function 5 "AMD 15/1xh NB Power" rev 0x00 > usb4 at ohci0: USB revision 1.0 > usbd_new_device: bus=0xffff80000036d000 port=0 depth=0 speed=2 > usbd_setup_pipe: dev=0xffff80000037d800 iface=0x0 ep=0xffff80000037d838 > pipe=0xffff80000037d808 > usbd_new_device: adding unit addr=1, rev=100, class=9, subclass=0, > protocol=0, maxpacket=64, len=18, speed=2 > usbd_new_device: new dev (addr 1), dev=0xffff80000037d800, > parent=0xffff80000037d700 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub4 at usb4 configuration 1 interface 0 "AMD OHCI root hub" rev 1.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff80000037d800 iface=0xffff8000000e3340 > ep=0xffff80000002ec70 pipe=0xffffffff82928768 > usb5 at ohci1: USB revision 1.0 > usbd_new_device: bus=0xffff800000373000 port=0 depth=0 speed=2 > usbd_setup_pipe: dev=0xffff80000037db00 iface=0x0 ep=0xffff80000037db38 > pipe=0xffff80000037db08 > usbd_new_device: adding unit addr=1, rev=100, class=9, subclass=0, > protocol=0, maxpacket=64, len=18, speed=2 > usbd_new_device: new dev (addr 1), dev=0xffff80000037db00, > parent=0xffff80000037da00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub5 at usb5 configuration 1 interface 0 "AMD OHCI root hub" rev 1.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff80000037db00 iface=0xffff80000006bf80 > ep=0xffff80000002eca0 pipe=0xffffffff82928768 > 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 > pcppi0 at isa0 port 0x61 > spkr0 at pcppi0 > lpt0 at isa0 port 0x378/4 irq 7 > usb6 at ohci2: USB revision 1.0 > usbd_new_device: bus=0xffff8000003b5000 port=0 depth=0 speed=2 > usbd_setup_pipe: dev=0xffff8000003bc100 iface=0x0 ep=0xffff8000003bc138 > pipe=0xffff8000003bc108 > usbd_new_device: adding unit addr=1, rev=100, class=9, subclass=0, > protocol=0, maxpacket=64, len=18, speed=2 > usbd_new_device: new dev (addr 1), dev=0xffff8000003bc100, > parent=0xffff8000003bc000 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 1) cno=1 attr=0xc0, selfpowered=1, power=0 > usbd_set_config_index: set config 1 > uhub6 at usb6 configuration 1 interface 0 "AMD OHCI root hub" rev 1.00/1.00 > addr 1 > usbd_setup_pipe: dev=0xffff8000003bc100 iface=0xffff80000006b140 > ep=0xffff80000002eff0 pipe=0xffffffff82928768 > vmm0 at mainbus0: SVM/RVI > usb_needs_explore: usb0: not exploring before first explore > usb_needs_explore: usb3: not exploring before first explore > usb_task_thread: start > usb_xfer_abort_thread: start > usbd_reset_port: port 4 reset done > usb_needs_explore: usb0: not exploring before first explore > usbd_new_device: bus=0xffff800000315000 port=4 depth=1 speed=2 > usbd_setup_pipe: dev=0xffff800000410700 iface=0x0 ep=0xffff800000410738 > pipe=0xffff800000410708 > usbd_new_device: adding unit addr=2, rev=110, class=0, subclass=0, > protocol=0, maxpacket=64, len=18, speed=2 > usbd_new_device: new dev (addr 2), dev=0xffff800000410700, > parent=0xffff80000032e180 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 2) cno=1 attr=0x80, selfpowered=0, power=400 > usbd_set_config_index: set config 1 > uaudio0 at uhub0 port 4 configuration 1 interface 1 "Creative Technology SB > X-Fi Surround 5.1" rev 1.10/1.00 addr 2 > uaudio0: class v1, full-speed, async, channels: 6 play, 2 rec, 0 ctls > audio1 at uaudio0 > usb_explore: usb0: first explore done > usb_explore: usb1: first explore done > usb_explore: usb2: first explore done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb3: not exploring before first explore > usbd_reset_port: port 1 reset done > usb_explore: usb3: first explore done > usb_explore: usb4: first explore done > usb_needs_explore: usb5: not exploring before first explore > usbd_reset_port: port 1 reset done > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=1 depth=1 speed=2 > usbd_setup_pipe: dev=0xffff800000410900 iface=0x0 ep=0xffff800000410938 > pipe=0xffff800000410908 > usbd_new_device: adding unit addr=2, rev=110, class=9, subclass=0, > protocol=0, maxpacket=8, len=18, speed=2 > usbd_new_device: new dev (addr 2), dev=0xffff800000410900, > parent=0xffff8000003b7a80 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: status=0x0001, error=NORMAL_COMPLETION > usbd_set_config_index: (addr 2) cno=1 attr=0xe0, selfpowered=1, power=100 > usbd_set_config_index: set config 1 > uhub7 at uhub5 port 1 configuration 1 interface 0 "ALCOR Generic USB Hub" rev > 1.10/3.12 addr 2 > usbd_setup_pipe: dev=0xffff800000410900 iface=0xffff80000040e940 > ep=0xffff8000003f5ce0 pipe=0xffff80002264a978 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_reset_port: port 2 reset done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=2 depth=2 speed=2 > usbd_setup_pipe: dev=0xffff800000410b00 iface=0x0 ep=0xffff800000410b38 > pipe=0xffff800000410b08 > usbd_new_device: adding unit addr=3, rev=110, class=9, subclass=0, > protocol=0, maxpacket=8, len=18, speed=2 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: new dev (addr 3), dev=0xffff800000410b00, > parent=0xffff800000440380 > usb_needs_explore: usb5: not exploring before first explore > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 3) cno=1 attr=0xa0, selfpowered=0, power=50 > usbd_set_config_index: set config 1 > uhub8 at uhub7 port 2 configuration 1 interface 0 "PI Engineering Kinesis > Keyboard Hub" rev 1.10/3.20 addr 3 > usbd_setup_pipe: dev=0xffff800000410b00 iface=0xffff80000040e980 > ep=0xffff8000003f5d10 pipe=0xffff80002264a8f8 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_reset_port: port 2 reset done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=2 depth=3 speed=2 > usbd_setup_pipe: dev=0xffff800000410d00 iface=0x0 ep=0xffff800000410d38 > pipe=0xffff800000410d08 > usbd_new_device: adding unit addr=4, rev=110, class=0, subclass=0, > protocol=0, maxpacket=8, len=18, speed=2 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: new dev (addr 4), dev=0xffff800000410d00, > parent=0xffff800000440680 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usb_needs_explore: usb5: not exploring before first explore > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 4) cno=1 attr=0xa0, selfpowered=0, power=64 > usbd_set_config_index: set config 1 > uhidev0 at uhub8 port 2 configuration 1 interface 0 "P.I. Engineering product > 0x0007" rev 1.10/3.20 addr 4 > usb_needs_explore: usb5: not exploring before first explore > uhidev0: iclass 3/1 > ukbd0 at uhidev0: 8 variable keys, 6 key codes, country code 33 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > wskbd1 at ukbd0 mux 1 > uhidev1 at uhub8 port 2 configuration 1 interface 1 "P.I. Engineering product > 0x0007" rev 1.10/3.20 addr 4 > usb_needs_explore: usb5: not exploring before first explore > uhidev1: iclass 3/0, 3 report ids > uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0 > ucc0 at uhidev1 reportid 3: 12 usages, 9 keys, enum > wskbd2 at ucc0 mux 1 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_reset_port: port 3 reset done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=3 depth=3 speed=1 > usbd_setup_pipe: dev=0xffff800000444300 iface=0x0 ep=0xffff800000444338 > pipe=0xffff800000444308 > usbd_new_device: adding unit addr=5, rev=200, class=0, subclass=0, > protocol=0, maxpacket=8, len=18, speed=1 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: new dev (addr 5), dev=0xffff800000444300, > parent=0xffff800000440680 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usb_needs_explore: usb5: not exploring before first explore > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 5) cno=1 attr=0xa0, selfpowered=0, power=100 > usbd_set_config_index: set config 1 > uhidev2 at uhub8 port 3 configuration 1 interface 0 "Primax Electronics USB > Optical Mouse" rev 2.00/2.00 addr 5 > usb_needs_explore: usb5: not exploring before first explore > uhidev2: iclass 3/1 > ums0 at uhidev2: 3 buttons, Z dir > wsmouse0 at ums0 mux 0 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_reset_port: port 4 reset done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=4 depth=3 speed=1 > usbd_setup_pipe: dev=0xffff800000444600 iface=0x0 ep=0xffff800000444638 > pipe=0xffff800000444608 > usbd_new_device: adding unit addr=6, rev=110, class=0, subclass=0, > protocol=0, maxpacket=8, len=34, speed=1 > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: new dev (addr 6), dev=0xffff800000444600, > parent=0xffff800000440680 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usb_needs_explore: usb5: not exploring before first explore > usbd_set_config_index: (addr 6) cno=1 attr=0xa0, selfpowered=0, power=30 > usbd_set_config_index: set config 1 > uhidev3 at uhub8 port 4 configuration 1 interface 0 "Cirque Corporation USB > GlidePoint" rev 1.10/1.30 addr 6 > uhidev3: iclass 3/1 > ums1 at uhidev3usbd_do_request_flags: status = 0x0000 > : 3 buttons, Z dir > wsmouse1 at ums1 mux 0 > usbd_reset_port: port 4 reset done > usb_needs_explore: usb5: not exploring before first explore > usb_needs_explore: usb5: not exploring before first explore > usbd_new_device: bus=0xffff800000373000 port=4 depth=2 speed=1 > usbd_setup_pipe: dev=0xffff800000444800 iface=0x0 ep=0xffff800000444838 > pipe=0xffff800000444808 > usbd_new_device: adding unit addr=7, rev=200, class=0, subclass=0, > protocol=0, maxpacket=8, len=18, speed=1 > usbd_new_device: new dev (addr 7), dev=0xffff800000444800, > parent=0xffff800000440380 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 7) cno=1 attr=0x80, selfpowered=0, power=100 > usbd_set_config_index: set config 1 > uhidev4 at uhub7 port 4 configuration 1 interface 0 "D-Link USB KVM" rev > 2.00/3.00 addr 7 > uhidev4: iclass 3/0 > ukbd1 at uhidev4: 8 variable keys, 6 key codes > wskbd3 at ukbd1 mux 1 > uhidev5 at uhub7 port 4 configuration 1 interface 1 "D-Link USB KVM" rev > 2.00/3.00 addr 7 > uhidev5: iclass 3/0, 3 report ids > ums2 at uhidev5 reportid 1: 3 buttons, Z dir > wsmouse2 at ums2 mux 0 > uhid1 at uhidev5 reportid 3: input=4, output=4, feature=0 > usb_explore: usb5: first explore done > usb_explore: usb6: first explore done > vscsi0 at root > scsibus2 at vscsi0: 256 targets > softraid0 at root > scsibus3 at softraid0: 256 targets > root on sd0a (44ffe981e8d72985.a) swap on sd0b dump on sd0b > radeondrm0: ARUBA > ### AML PARSE ERROR (0xf8c): Undefined name: \\_SB_.ALIB > error evaluating: \\_SB_.PCI0.VGA_.ATCS > radeondrm0: 1600x900, 32bpp > wsdisplay0 at radeondrm0 mux 1: console (std, vt100 emulation), using wskbd0 > usbd_setup_pipe: dev=0xffff800000410d00 iface=0xffff800000440a00 > ep=0xffff8000003f5d40 pipe=0xffffffff82928ad8 > wskbd1: connecting to wsdisplay0 > usbd_setup_pipe: dev=0xffff800000410d00 iface=0xffff800000440a38 > ep=0xffff8000003f5d50 pipe=0xffffffff82928ad8 > wskbd2: connecting to wsdisplay0 > usbd_setup_pipe: dev=0xffff800000444800 iface=0xffff800000445100 > ep=0xffff8000003f5e90 pipe=0xffffffff82928ad8 > wskbd3: connecting to wsdisplay0 > wsdisplay0: screen 1-5 added (std, vt100 emulation) > wskbd1: disconnecting from wsdisplay0 > wskbd1 detached > ukbd0 detached > uhidev0 detached > uhid0 detached > wskbd2: disconnecting from wsdisplay0 > wskbd2 detached > ucc0 detached > uhidev1 detached > usb_free_device: 0xffff800000410d00 > wsmouse0 detached > ums0 detached > uhidev2 detached > usb_free_device: 0xffff800000444300 > wsmouse1 detached > ums1 detached > uhidev3 detached > usb_free_device: 0xffff800000444600 > uhub8 detached > usb_free_device: 0xffff800000410b00 > usbd_reset_port: port 2 reset done > usbd_new_device: bus=0xffff800000373000 port=2 depth=2 speed=2 > usbd_setup_pipe: dev=0xffff800000444400 iface=0x0 ep=0xffff800000444438 > pipe=0xffff800000444408 > usbd_new_device: adding unit addr=3, rev=110, class=9, subclass=0, > protocol=0, maxpacket=8, len=18, speed=2 > usbd_new_device: new dev (addr 3), dev=0xffff800000444400, > parent=0xffff800000440380 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 3) cno=1 attr=0xa0, selfpowered=0, power=50 > usbd_set_config_index: set config 1 > uhub8 at uhub7 port 2 configuration 1 interface 0 "PI Engineering Kinesis > Keyboard Hub" rev 1.10/3.20 addr 3 > usbd_setup_pipe: dev=0xffff800000444400 iface=0xffff8000011a47c0 > ep=0xffff800001154da0 pipe=0xffff80002264a8f8 > usbd_reset_port: port 2 reset done > usbd_new_device: bus=0xffff800000373000 port=2 depth=3 speed=2 > usbd_setup_pipe: dev=0xffff800001173a00 iface=0x0 ep=0xffff800001173a38 > pipe=0xffff800001173a08 > usbd_new_device: adding unit addr=4, rev=110, class=0, subclass=0, > protocol=0, maxpacket=8, len=18, speed=2 > usbd_new_device: new dev (addr 4), dev=0xffff800001173a00, > parent=0xffff800000440c00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 4) cno=1 attr=0xa0, selfpowered=0, power=64 > usbd_set_config_index: set config 1 > uhidev0 at uhub8 port 2 configuration 1 interface 0 "P.I. Engineering product > 0x0007" rev 1.10/3.20 addr 4 > uhidev0: iclass 3/1 > ukbd0 at uhidev0: 8 variable keys, 6 key codes, country code 33 > wskbd1 at ukbd0 mux 1 > usbd_setup_pipe: dev=0xffff800001173a00 iface=0xffff800000440880 > ep=0xffff8000011bc800 pipe=0xffff80002264a4d8 > wskbd1: connecting to wsdisplay0 > uhidev1 at uhub8 port 2 configuration 1 interface 1 "P.I. Engineering product > 0x0007" rev 1.10/3.20 addr 4 > uhidev1: iclass 3/0, 3 report ids > uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0 > ucc0 at uhidev1 reportid 3: 12 usages, 9 keys, enum > wskbd2 at ucc0 mux 1 > usbd_setup_pipe: dev=0xffff800001173a00 iface=0xffff8000004408b8 > ep=0xffff800001154160 pipe=0xffff80002264a4c8 > wskbd2: connecting to wsdisplay0 > usbd_reset_port: port 3 reset done > usbd_new_device: bus=0xffff800000373000 port=3 depth=3 speed=1 > usbd_setup_pipe: dev=0xffff800000444700 iface=0x0 ep=0xffff800000444738 > pipe=0xffff800000444708 > usbd_new_device: adding unit addr=5, rev=200, class=0, subclass=0, > protocol=0, maxpacket=8, len=18, speed=1 > usbd_new_device: new dev (addr 5), dev=0xffff800000444700, > parent=0xffff800000440c00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 5) cno=1 attr=0xa0, selfpowered=0, power=100 > usbd_set_config_index: set config 1 > uhidev2 at uhub8 port 3 configuration 1 interface 0 "Primax Electronics USB > Optical Mouse" rev 2.00/2.00 addr 5 > uhidev2: iclass 3/1 > ums0 at uhidev2: 3 buttons, Z dir > wsmouse0 at ums0 mux 0 > usbd_reset_port: port 4 reset done > usbd_new_device: bus=0xffff800000373000 port=4 depth=3 speed=1 > usbd_setup_pipe: dev=0xffff800001193a00 iface=0x0 ep=0xffff800001193a38 > pipe=0xffff800001193a08 > usbd_new_device: adding unit addr=6, rev=110, class=0, subclass=0, > protocol=0, maxpacket=8, len=34, speed=1 > usbd_new_device: new dev (addr 6), dev=0xffff800001193a00, > parent=0xffff800000440c00 > usbd_probe_and_attach trying device specific drivers > usbd_probe_and_attach: no device specific driver found > usbd_probe_and_attach: looping over 1 configurations > usbd_set_config_index: (addr 6) cno=1 attr=0xa0, selfpowered=0, power=30 > usbd_set_config_index: set config 1 > uhidev3 at uhub8 port 4 configuration 1 interface 0 "Cirque Corporation USB > GlidePoint" rev 1.10/1.30 addr 6 > uhidev3: iclass 3/1 > ums1 at uhidev3usbd_do_request_flags: status = 0x0000 > : 3 buttons, Z dir > wsmouse1 at ums1 mux 0 > usbd_setup_pipe: dev=0xffff800000444700 iface=0xffff8000011a4e80 > ep=0xffff800001154350 pipe=0xffff800023a722a8 > usbd_setup_pipe: dev=0xffff800001193a00 iface=0xffff8000011c9280 > ep=0xffff800001154000 pipe=0xffff800023a722a8 > usbd_setup_pipe: dev=0xffff800000444800 iface=0xffff800000445138 > ep=0xffff8000003f5ea0 pipe=0xffff800023a722a8 > usbd_setup_pipe: dev=0xffff800000444700 iface=0xffff8000011a4e80 > ep=0xffff800001154350 pipe=0xffff800023a72258 > usbd_setup_pipe: dev=0xffff800001193a00 iface=0xffff8000011c9280 > ep=0xffff800001154000 pipe=0xffff800023a72258 > usbd_setup_pipe: dev=0xffff800000444800 iface=0xffff800000445138 > ep=0xffff8000003f5ea0 pipe=0xffff800023a72258 > usbd_setup_pipe: dev=0xffff800000444700 iface=0xffff8000011a4e80 > ep=0xffff800001154350 pipe=0xffff800023a72258 > usbd_setup_pipe: dev=0xffff800001193a00 iface=0xffff8000011c9280 > ep=0xffff800001154000 pipe=0xffff800023a72258 > usbd_setup_pipe: dev=0xffff800000444800 iface=0xffff800000445138 > ep=0xffff8000003f5ea0 pipe=0xffff800023a72258 > usbd_do_request_flags: status = 0x0000 > usbd_setup_pipe: dev=0xffff800000410700 iface=0xffff800000410838 > ep=0xffff80000143be20 pipe=0xffff800023ad7fb8 > usbd_setup_pipe: dev=0xffff800000410700 iface=0xffff800000410838 > ep=0xffff80000143be30 pipe=0xffff800023ad7fb8 > usbd_do_request_flags: status = 0x0000 > usbd_setup_pipe: dev=0xffff800000410700 iface=0xffff800000410870 > ep=0xffff8000013f7130 pipe=0xffff800023ad7fb8 > uaudio0: sync play xfer, err = 6 > uaudio0: sync play xfer, err = 6 > ----------------------------------------------------------------------- > > Bests >