>Synopsis:      Silicon Motion, Inc. SD/SDHC Card Reader not recognized
>Category:      USB mass
>Environment:
        System      : OpenBSD 6.8
        Details     : OpenBSD 6.8-current (GENERIC.MP) #62: Mon Nov 23 19:44:15 
PST 2020
                         
[email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP

        Architecture: OpenBSD.amd64
        Machine     : amd64
>Description:
        Plugging in a certain USB/SD adapter results in device being not
        recognized:

umass0 detached
umass0 at uhub0 port 2 configuration 1 interface 0 "Generic       ,   . USB2.0 
Card Reader" rev 2.00/1.00 addr 11
umass0: using SCSI over Bulk-Only
scsibus4 at umass0: 2 targets, initiator 0
probe(umass0:1:0): Check Condition (error 0) on opcode 0x0
sd1 at scsibus4 targ 1 lun 0: <Generic, , 6000> removable 
serial.090c6000901234567890

% doas fdisk sd1
fdisk: sd1: Device not configured

>How-To-Repeat:
        Plug-in the device, see disk unrecognized.
>Fix:
        The same device works in Linux. They have a quirk:

https://github.com/torvalds/linux/blob/dcc5c6f013d841e9ae74d527d312d512dfc2e2f0/drivers/usb/storage/unusual_devs.h#L1291

 * This card reader returns "Illegal Request, Logical Block Address
 * Out of Range" for the first READ(10) after a new card is inserted.
 */
UNUSUAL_DEV(  0x090c, 0x6000, 0x0100, 0x0100,
                "Feiya",
                "SD/SDHC Card Reader",
                USB_SC_DEVICE, USB_PR_DEVICE, NULL,
                US_FL_INITIAL_READ10 ),

$ lsusb -v
Bus 002 Device 007: ID 090c:6000 Silicon Motion, Inc. - Taiwan (formerly Feiya 
Technology Corp.) SD/SDHC Card Reader (SG365 / FlexiDrive XC+)
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0
  bDeviceSubClass         0
  bDeviceProtocol         0
  bMaxPacketSize0        64
  idVendor           0x090c Silicon Motion, Inc. - Taiwan (formerly Feiya 
Technology Corp.)
  idProduct          0x6000 SD/SDHC Card Reader (SG365 / FlexiDrive XC+)
  bcdDevice            1.00
  iManufacturer           1
  iProduct                2
  iSerial                 3
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength       0x0020
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0
    bmAttributes         0x80
      (Bus Powered)
    MaxPower              500mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         8 Mass Storage
      bInterfaceSubClass      6 SCSI
      bInterfaceProtocol     80 Bulk-Only
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval             255
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x02  EP 2 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0200  1x 512 bytes
        bInterval             255
$ dmesg
[17161.896147] usb 2-1.4: new high-speed USB device number 7 using ehci-pci
[17162.089228] usb 2-1.4: New USB device found, idVendor=090c, idProduct=6000, 
bcdDevice= 1.00
[17162.089236] usb 2-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
[17162.089240] usb 2-1.4: Product: USB2.0 Card Reader  
[17162.089244] usb 2-1.4: Manufacturer: Generic       ,   .
[17162.089247] usb 2-1.4: SerialNumber: 12345678901234567890
[17163.097458] usb-storage 2-1.4:1.0: USB Mass Storage device detected
[17163.099237] usb-storage 2-1.4:1.0: Quirks match for vid 090c pid 6000: 100000
[17163.099329] scsi host6: usb-storage 2-1.4:1.0
[17163.099564] usbcore: registered new interface driver usb-storage
[17163.199096] usbcore: registered new interface driver uas
[17164.114938] scsi 6:0:0:0: Direct-Access     Generic                   6000 
PQ: 0 ANSI: 0 CCS
[17164.115251] sd 6:0:0:0: Attached scsi generic sg2 type 0
[17164.117288] sd 6:0:0:0: [sdb] 3842048 512-byte logical blocks: (1.97 GB/1.83 
GiB)
[17164.118039] sd 6:0:0:0: [sdb] Write Protect is off
[17164.118043] sd 6:0:0:0: [sdb] Mode Sense: 4b 00 00 08
[17164.118795] sd 6:0:0:0: [sdb] No Caching mode page found
[17164.118802] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[17164.166330]  sdb: sdb1
[17164.169276] sd 6:0:0:0: [sdb] Attached SCSI removable disk

So far I only have this much of a patch. I would appreciate some
guidance about how I can add the quirk support.

>From c766feb8174ad72a810d788ded363193e944db56 Mon Sep 17 00:00:00 2001
From: Greg Steuck <[email protected]>
Date: Mon, 23 Nov 2020 21:14:38 -0800
Subject: [PATCH] Add Silicon Motion to usbdevs

---
 sys/dev/usb/usbdevs        |  5 +++++
 sys/dev/usb/usbdevs.h      |  7 ++++++-
 sys/dev/usb/usbdevs_data.h | 10 +++++++++-
 3 files changed, 20 insertions(+), 2 deletions(-)

diff --git sys/dev/usb/usbdevs sys/dev/usb/usbdevs
index fb6102fad95..f5656c6bb5d 100644
--- sys/dev/usb/usbdevs
+++ sys/dev/usb/usbdevs
@@ -358,6 +358,7 @@ vendor AUTHENTEC    0x08ff  AuthenTec
 vendor SIEMENS4                0x0908  Siemens
 vendor AUDIOTECHNICA   0x0909  Audio-Technica
 vendor TRUMPION                0x090a  Trumpion Microelectronics
+vendor SIMO            0x090c  Silicon Motion, Inc
 vendor ALATION         0x0910  Alation Systems
 vendor GLOBESPAN       0x0915  Globespan
 vendor CONCORDCAMERA   0x0919  Concord Camera
@@ -4088,6 +4089,10 @@ product SILABS5 EM358X           0x0002  EM358x
 product SILICOM U2E            0x0001  U2E
 product SILICOM GPE            0x0002  Psion Dacom Gold Port Ethernet
 
+
+/* Silicon Motion Inc */
+product SIMO SD_READER         0x6000  SD/SDHC Card Reader (SG365 / FlexiDrive 
XC+)
+
 /* Silicon Portals Inc. */
 product SILICONPORTALS YAPPH_NF        0x0200  YAP Phone (no firmware)
 product SILICONPORTALS YAPPHONE        0x0201  YAP Phone
diff --git sys/dev/usb/usbdevs.h sys/dev/usb/usbdevs.h
index 3c0d22ea726..1ab759b3e7d 100644
--- sys/dev/usb/usbdevs.h
+++ sys/dev/usb/usbdevs.h
@@ -1,4 +1,4 @@
-/*     $OpenBSD: usbdevs.h,v 1.740 2020/11/16 09:49:40 patrick Exp $   */
+/*     $OpenBSD$       */
 
 /*
  * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.
@@ -365,6 +365,7 @@
 #define        USB_VENDOR_SIEMENS4     0x0908          /* Siemens */
 #define        USB_VENDOR_AUDIOTECHNICA        0x0909          /* 
Audio-Technica */
 #define        USB_VENDOR_TRUMPION     0x090a          /* Trumpion 
Microelectronics */
+#define        USB_VENDOR_SIMO 0x090c          /* Silicon Motion, Inc */
 #define        USB_VENDOR_ALATION      0x0910          /* Alation Systems */
 #define        USB_VENDOR_GLOBESPAN    0x0915          /* Globespan */
 #define        USB_VENDOR_CONCORDCAMERA        0x0919          /* Concord 
Camera */
@@ -4095,6 +4096,10 @@
 #define        USB_PRODUCT_SILICOM_U2E 0x0001          /* U2E */
 #define        USB_PRODUCT_SILICOM_GPE 0x0002          /* Psion Dacom Gold 
Port Ethernet */
 
+
+/* Silicon Motion Inc */
+#define        USB_PRODUCT_SIMO_SD_READER      0x6000          /* SD/SDHC Card 
Reader (SG365 / FlexiDrive XC+) */
+
 /* Silicon Portals Inc. */
 #define        USB_PRODUCT_SILICONPORTALS_YAPPH_NF     0x0200          /* YAP 
Phone (no firmware) */
 #define        USB_PRODUCT_SILICONPORTALS_YAPPHONE     0x0201          /* YAP 
Phone */
diff --git sys/dev/usb/usbdevs_data.h sys/dev/usb/usbdevs_data.h
index f61389b3280..9130666ae59 100644
--- sys/dev/usb/usbdevs_data.h
+++ sys/dev/usb/usbdevs_data.h
@@ -1,4 +1,4 @@
-/*     $OpenBSD: usbdevs_data.h,v 1.734 2020/11/16 09:49:40 patrick Exp $      
*/
+/*     $OpenBSD$       */
 
 /*
  * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.
@@ -10453,6 +10453,10 @@ const struct usb_known_product usb_known_products[] = {
            USB_VENDOR_SILICOM, USB_PRODUCT_SILICOM_GPE,
            "Psion Dacom Gold Port Ethernet",
        },
+       {
+           USB_VENDOR_SIMO, USB_PRODUCT_SIMO_SD_READER,
+           "SD/SDHC Card Reader (SG365 / FlexiDrive XC+)",
+       },
        {
            USB_VENDOR_SILICONPORTALS, USB_PRODUCT_SILICONPORTALS_YAPPH_NF,
            "YAP Phone (no firmware)",
@@ -13285,6 +13289,10 @@ const struct usb_known_vendor usb_known_vendors[] = {
            USB_VENDOR_TRUMPION,
            "Trumpion Microelectronics",
        },
+       {
+           USB_VENDOR_SIMO,
+           "Silicon Motion, Inc",
+       },
        {
            USB_VENDOR_ALATION,
            "Alation Systems",
-- 
2.29.2



SENDBUG: Run sendbug as root if this is an ACPI report!
SENDBUG: dmesg and usbdevs are attached.
SENDBUG: Feel free to delete or use the -D flag if they contain sensitive 
information.

dmesg:
OpenBSD 6.8-current (GENERIC.MP) #62: Mon Nov 23 19:44:15 PST 2020
    [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 17055608832 (16265MB)
avail mem = 16523415552 (15757MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xbbe3f000 (33 entries)
bios0: vendor Hewlett-Packard version "L71 Ver. 01.20" date 07/28/2014
bios0: Hewlett-Packard HP EliteBook 840 G1
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP HPET APIC MCFG TCPA SSDT SSDT FPDT BGRT SSDT SSDT SSDT 
SSDT SSDT ASF! DMAR
acpi0: wakeup devices LANC(S5) EHC1(S3) XHC_(S3) PCIB(S5) NIC_(S5) RP04(S5) 
WNIC(S5)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz, 1995.63 MHz, 06-45-01
cpu0: 
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,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,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SRBDS_CTRL,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1.1.1, IBE
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz, 1995.39 MHz, 06-45-01
cpu1: 
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,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,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SRBDS_CTRL,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 1, core 0, package 0
cpu2 at mainbus0: apid 2 (application processor)
cpu2: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz, 1995.39 MHz, 06-45-01
cpu2: 
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,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,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SRBDS_CTRL,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 0, core 1, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz, 1995.39 MHz, 06-45-01
cpu3: 
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,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,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,SRBDS_CTRL,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 1, core 1, package 0
ioapic0 at mainbus0: apid 0 pa 0xfec00000, version 20, 40 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-255
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (PEGP)
acpiprt2 at acpi0: bus 1 (RP01)
acpiprt3 at acpi0: bus 2 (RP04)
acpiprt4 at acpi0: bus 3 (RP06)
acpiprt5 at acpi0: bus -1 (RP07)
acpiprt6 at acpi0: bus -1 (RP08)
acpiec0 at acpi0
"HPQ6001" at acpi0 not configured
acpipci0 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000
acpicmos0 at acpi0
"PNP0A06" at acpi0 not configured
"SYN3003" at acpi0 not configured
"HPQ6007" at acpi0 not configured
acpibat0 at acpi0: BAT0 model "Primary" serial 41076 2014/09/16 type LIon oem 
"Hewlett-Packard"
acpibat1 at acpi0: BAT1 not present
acpiac0 at acpi0: AC unit online
acpibtn0 at acpi0: SLPB
acpibtn1 at acpi0: LID_
"PNP0C14" at acpi0 not configured
tpm0 at acpi0 GTPM addr 0xfed40000/0x5000, Infineon SLB9635 1.2 rev 0x10
"INT33A0" at acpi0 not configured
acpicpu0 at acpi0: C3(200@506 mwait.1@0x60), C2(200@148 mwait.1@0x33), 
C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@506 mwait.1@0x60), C2(200@148 mwait.1@0x33), 
C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@506 mwait.1@0x60), C2(200@148 mwait.1@0x33), 
C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@506 mwait.1@0x60), C2(200@148 mwait.1@0x33), 
C1(1000@1 mwait.1), PSS
acpipwrres0 at acpi0: APPR, resource for HDEF
acpipwrres1 at acpi0: COMP, resource for COM1
acpipwrres2 at acpi0: LPP_, resource for LPT0
acpipwrres3 at acpi0: PXP6, resource for RP06
acpitz0 at acpi0: critical temperature is 128 degC
acpitz1 at acpi0: critical temperature is 128 degC
acpitz2 at acpi0: critical temperature is 128 degC
acpitz3 at acpi0: critical temperature is 128 degC
acpitz4 at acpi0: critical temperature is 128 degC
acpitz5 at acpi0: critical temperature is 128 degC
acpitz6 at acpi0: critical temperature is 128 degC
acpitz7 at acpi0: critical temperature is 128 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD01
cpu0: using VERW MDS workaround (except on vmm entry)
cpu0: Enhanced SpeedStep 1995 MHz: speeds: 2701, 2700, 2600, 2400, 2300, 2100, 
2000, 1800, 1700, 1600, 1400, 1300, 1100, 1000, 800, 756 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 4G Host" rev 0x0b
inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics" rev 0x0b
drm0 at inteldrm0
inteldrm0: msi, HASWELL, gen 7
azalia0 at pci0 dev 3 function 0 "Intel Core 4G HD Audio" rev 0x0b: msi
azalia0: No codecs found
xhci0 at pci0 dev 20 function 0 "Intel 8 Series xHCI" rev 0x04: msi, xHCI 1.0
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 8 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
em0 at pci0 dev 25 function 0 "Intel I218-LM" rev 0x04: msi, address 
azalia1 at pci0 dev 27 function 0 "Intel 8 Series HD Audio" rev 0x04: msi
azalia1: codecs: IDT/0x76e0
audio0 at azalia1
ppb0 at pci0 dev 28 function 0 "Intel 8 Series PCIE" rev 0xe4
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 3 "Intel 8 Series PCIE" rev 0xe4: msi
pci2 at ppb1 bus 2
iwm0 at pci2 dev 0 function 0 "Intel Dual Band Wireless AC 7260" rev 0x73, msi
ppb2 at pci0 dev 28 function 5 "Intel 8 Series PCIE" rev 0xe4: msi
pci3 at ppb2 bus 3
ehci0 at pci0 dev 29 function 0 "Intel 8 Series USB" rev 0x04: apic 0 int 17
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 
addr 1
pcib0 at pci0 dev 31 function 0 "Intel 8 Series LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 8 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, INTEL SSDSC2BF18, LH6i> naa.55cd2e404b57893b
sd0: 171705MB, 512 bytes/sector, 351651888 sectors, thin
ichiic0 at pci0 dev 31 function 3 "Intel 8 Series SMBus" rev 0x04: apic 0 int 18
iic0 at ichiic0
iic0: addr 0x2c 80=04 81=04 82=04 83=04 84=04 85=04 86=04 87=04 fd=01 words 
00=ffff 01=ffff 02=ffff 03=ffff 04=ffff 05=ffff 06=ffff 07=ffff
spdmem0 at iic0 addr 0x50: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
spdmem1 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
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)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
uhub2 at uhub0 port 3 configuration 1 interface 0 "SMSC USB2134B" rev 
2.10/50.00 addr 2
ugen0 at uhub2 port 2 "Intel product 0x07dc" rev 2.00/0.01 addr 3
uhub3 at uhub2 port 4 configuration 1 interface 0 "GenesysLogic USB2.0 Hub" rev 
2.00/92.16 addr 4
uhidev0 at uhub3 port 3 configuration 1 interface 0 "Microsoft Microsoft 
3-Button Mouse with IntelliEye(TM)" rev 1.10/3.00 addr 5
uhidev0: iclass 3/1
ums0 at uhidev0: 3 buttons, Z dir
wsmouse1 at ums0 mux 0
ugen1 at uhub0 port 5 "Validity Sensors product 0x003f" rev 1.10/1.04 addr 6
uvideo0 at uhub0 port 7 configuration 1 interface 0 "Chicony Electronics 
Co.,Ltd. HP HD Webcam" rev 2.00/66.63 addr 7
video0 at uvideo0
uhub4 at uhub0 port 12 configuration 1 interface 0 "SMSC USB5534B" rev 
3.00/50.00 addr 8
uhub5 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 
2.00/0.04 addr 2
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (86a971afbc66ee3f.a) swap on sd0b dump on sd0b
uhidev1 at uhub3 port 1 configuration 1 interface 0 "Google Inc. hg_0004" rev 
2.00/1.00 addr 9
uhidev1: iclass 3/0
fido0 at uhidev1: input=64, output=64, feature=0
uhidev2 at uhub3 port 4 configuration 1 interface 0 "Kinesis Advantage2 
Keyboard" rev 2.00/1.00 addr 10
uhidev2: iclass 3/1
ums1 at uhidev2: 3 buttons, Z dir
wsmouse2 at ums1 mux 0
uhidev3 at uhub3 port 4 configuration 1 interface 1 "Kinesis Advantage2 
Keyboard" rev 2.00/1.00 addr 10
uhidev3: iclass 3/1
ukbd0 at uhidev3: 8 variable keys, 6 key codes
inteldrm0: 1920x1080, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
iwm0: hw rev 0x140, fw ver 17.3216344376.0, address 
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev4 at uhub3 port 4 configuration 1 interface 2 "Kinesis Advantage2 
Keyboard" rev 2.00/1.00 addr 10
uhidev4: iclass 3/0, 2 report ids
uhid0 at uhidev4 reportid 1: input=1, output=0, feature=0
uhid1 at uhidev4 reportid 2: input=1, output=0, feature=0

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: 0424:2134 SMSC, USB2134B
         high speed, self powered, config 1, rev 50.00
         driver: uhub2
addr 03: 8087:07dc Intel, product 0x07dc
         full speed, self powered, config 1, rev 0.01
         driver: ugen0
addr 04: 05e3:0610 GenesysLogic, USB2.0 Hub
         high speed, self powered, config 1, rev 92.16
         driver: uhub3
addr 05: 045e:0040 Microsoft, Microsoft 3-Button Mouse with IntelliEye(TM)
         low speed, power 100 mA, config 1, rev 3.00
         driver: uhidev0
addr 06: 138a:003f Validity Sensors, product 0x003f
         full speed, power 100 mA, config 1, rev 1.04, iSerial 00b00c42dd94
         driver: ugen1
addr 07: 04f2:b3ed Chicony Electronics Co.,Ltd., HP HD Webcam
         high speed, power 500 mA, config 1, rev 66.63, iSerial 200901010001
         driver: uvideo0
addr 08: 0424:5534 SMSC, USB5534B
         super speed, self powered, config 1, rev 50.00
         driver: uhub4
addr 09: 18d1:5026 Google Inc., hg_0004
         full speed, power 100 mA, config 1, rev 1.00
         driver: uhidev1
addr 10: 29ea:0102 Kinesis, Advantage2 Keyboard
         full speed, power 100 mA, config 1, rev 1.00, iSerial 314159265359
         driver: uhidev2
         driver: uhidev3
         driver: uhidev4
addr 11: 090c:6000 Generic       ,   ., USB2.0 Card Reader
         high speed, power 500 mA, config 1, rev 1.00, iSerial 
12345678901234567890
         driver: umass0
Controller /dev/usb1:
addr 01: 8086:0000 Intel, EHCI root hub
         high speed, self powered, config 1, rev 1.00
         driver: uhub1
addr 02: 8087:8000 Intel, Rate Matching Hub
         high speed, self powered, config 1, rev 0.04
         driver: uhub5

Reply via email to