From eef792f6ff41078f226e6db1cf7a92018a731757 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Fri, 29 Apr 2022 13:42:03 +0300 Subject: [PATCH] kdecore: KDeviceDatabase rewrite and test for it Signed-off-by: Ivailo Monev --- kdecore/CMakeLists.txt | 6 + kdecore/genpci.py | 82 - kdecore/genusb.py | 83 - kdecore/pci.ids | 35086 +++++++++++++ kdecore/regen.sh | 10 + kdecore/services/regen.sh | 2 + kdecore/tests/CMakeLists.txt | 1 + kdecore/tests/kdevicedatabasetest.cpp | 57 + kdecore/tests/kdevicedatabasetest.h | 40 + kdecore/usb.ids | 25236 +++++++++ kdecore/util/kdevicedatabase.cpp | 43185 +--------------- kdecore/util/kdevicedatabase.h | 56 +- .../solid/backends/devinfo/devinfodevice.cpp | 9 +- solid/solid/backends/devinfo/devinfodevice.h | 3 + solid/solid/backends/udev/udevdevice.cpp | 9 +- solid/solid/backends/udev/udevdevice.h | 2 + solid/solid/regen.sh | 2 + 17 files changed, 60868 insertions(+), 43001 deletions(-) delete mode 100755 kdecore/genpci.py delete mode 100755 kdecore/genusb.py create mode 100644 kdecore/pci.ids create mode 100755 kdecore/regen.sh create mode 100644 kdecore/tests/kdevicedatabasetest.cpp create mode 100644 kdecore/tests/kdevicedatabasetest.h create mode 100644 kdecore/usb.ids diff --git a/kdecore/CMakeLists.txt b/kdecore/CMakeLists.txt index a5362c74..f877f6d6 100644 --- a/kdecore/CMakeLists.txt +++ b/kdecore/CMakeLists.txt @@ -441,3 +441,9 @@ install( DESTINATION ${KDE4_SERVICETYPES_INSTALL_DIR} ) +install( + FILES + pci.ids + usb.ids + DESTINATION ${KDE4_DATA_INSTALL_DIR}/kdevicedatabase +) diff --git a/kdecore/genpci.py b/kdecore/genpci.py deleted file mode 100755 index c234834e..00000000 --- a/kdecore/genpci.py +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/python3 - -# pci.ids can be obtained from: -# https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids - -import sys - -def isvalidid(fromid): - if len(fromid) == 4: - return True - return False - -def bytetostr(frombytes): - return frombytes.decode('utf-8') - -def splitpciline(fromline): - doublespaceindex = fromline.index(b' ') - lineid = fromline[:doublespaceindex] - linename = fromline[doublespaceindex+2:] - # nested quotes - linename = linename.replace(b'"', b'\\"') - # what is the question? - linename = linename.replace(b'??', b'Unknown') # 036c - linename = linename.replace(b'???', b'Unknown') # 2a15 - return (lineid, linename) - -vendormap = {} -devicemap = {} -with open('./pci.ids', 'rb') as f: - ingroupsection = False - for line in f.readlines(): - sline = line.strip() - if not sline or sline.startswith(b'#'): - continue; - elif line.startswith(b'\t\t'): - # subvendor - continue - elif line.startswith(b'C'): - ingroupsection = True - elif line.startswith(b'\t') and not ingroupsection: - deviceid, devicename = splitpciline(sline) - - if b' ' in deviceid: - print('ranges are not supported: %s' % deviceid) - sys.exit(123) - if not isvalidid(deviceid): - continue - - if not vendorid in devicemap.keys(): - devicemap[vendorid] = [] - devicemap[vendorid].append({'deviceid': deviceid, 'devicename': devicename }) - else: - ingroupsection = False - vendorid, vendorname = splitpciline(sline) - - if b' ' in vendorid: - print('ranges are not supported: %s' % vendorid) - sys.exit(123) - if not isvalidid(vendorid): - continue - - vendormap[vendorid] = vendorname - -print('''static const struct pciVendorTblData { - const char* const vendorid; - const char* const vendorname; -} pciVendorTbl[] = {''') -for vendorid in vendormap.keys(): - print(' { "%s", "%s" },' % (bytetostr(vendorid), bytetostr(vendormap[vendorid]))) -print('};') -print('static const size_t pciVendorTblSize = sizeof(pciVendorTbl) / sizeof(pciVendorTblData);') -print('') -print('''static const struct pciDeviceTblData { - const char* const vendorid; - const char* const deviceid; - const char* const devicename; -} pciDeviceTbl[] = {''') -for vendorid in devicemap.keys(): - for devicedict in devicemap[vendorid]: - print(' { "%s", "%s", "%s" },' % (bytetostr(vendorid), bytetostr(devicedict['deviceid']), bytetostr(devicedict['devicename']))) -print('};') -print('static const size_t pciDeviceTblSize = sizeof(pciDeviceTbl) / sizeof(pciDeviceTblData);') diff --git a/kdecore/genusb.py b/kdecore/genusb.py deleted file mode 100755 index cc84b78b..00000000 --- a/kdecore/genusb.py +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/python3 - -# usb.ids can be obtained from: -# http://www.linux-usb.org/usb.ids - -import sys - -def isvalidid(fromid): - if len(fromid) == 4: - return True - return False - -def bytetostr(frombytes): - return frombytes.decode('utf-8') - -def splitusbline(fromline): - doublespaceindex = fromline.index(b' ') - lineid = fromline[:doublespaceindex] - linename = fromline[doublespaceindex+2:] - # invalid escape sequence in C++ - linename = linename.replace(b'\\', b'/') # 1400 - # nested quotes - linename = linename.replace(b'"', b'\\"') - # what is the question? - linename = linename.replace(b'??', b'Unknown') # 1183 - return (lineid, linename) - -vendormap = {} -devicemap = {} -with open('./usb.ids', 'rb') as f: - ingroupsection = False - for line in f.readlines(): - sline = line.strip() - if not sline or sline.startswith(b'#'): - continue; - elif line.startswith(b'\t\t'): - # subvendor - continue - elif line.startswith((b'C', b'AT', b'HID', b'R', b'BIAS', b'PHY', b'HUT', b'L', b'HCC', b'VT')): - ingroupsection = True - elif line.startswith(b'\t') and not ingroupsection: - deviceid, devicename = splitusbline(sline) - - if b' ' in deviceid: - print('ranges are not supported: %s' % deviceid) - sys.exit(123) - if not isvalidid(deviceid): - continue - - if not vendorid in devicemap.keys(): - devicemap[vendorid] = [] - devicemap[vendorid].append({'deviceid': deviceid, 'devicename': devicename }) - else: - ingroupsection = False - vendorid, vendorname = splitusbline(sline) - - if b' ' in vendorid: - print('ranges are not supported: %s' % vendorid) - sys.exit(123) - if not isvalidid(vendorid): - continue - - vendormap[vendorid] = vendorname - -print('''static const struct usbVendorTblData { - const char* const vendorid; - const char* const vendorname; -} usbVendorTbl[] = {''') -for vendorid in vendormap.keys(): - print(' { "%s", "%s" },' % (bytetostr(vendorid), bytetostr(vendormap[vendorid]))) -print('};') -print('static const size_t usbVendorTblSize = sizeof(usbVendorTbl) / sizeof(usbVendorTblData);') -print('') -print('''static const struct usbDeviceTblData { - const char* const vendorid; - const char* const deviceid; - const char* const devicename; -} usbDeviceTbl[] = {''') -for vendorid in devicemap.keys(): - for devicedict in devicemap[vendorid]: - print(' { "%s", "%s", "%s" },' % (bytetostr(vendorid), bytetostr(devicedict['deviceid']), bytetostr(devicedict['devicename']))) -print('};') -print('static const size_t usbDeviceTblSize = sizeof(usbDeviceTbl) / sizeof(usbDeviceTblData);') diff --git a/kdecore/pci.ids b/kdecore/pci.ids new file mode 100644 index 00000000..c657b038 --- /dev/null +++ b/kdecore/pci.ids @@ -0,0 +1,35086 @@ +# +# List of PCI ID's +# +# Version: 2022.04.16 +# Date: 2022-04-16 00:17:00 +# +# Maintained by Albert Pool, Martin Mares, and other volunteers from +# the PCI ID Project at https://pci-ids.ucw.cz/. +# +# New data are always welcome, especially if they are accurate. If you have +# anything to contribute, please follow the instructions at the web site. +# +# This file can be distributed under either the GNU General Public License +# (version 2 or higher) or the 3-clause BSD License. +# +# The database is a compilation of factual data, and as such the copyright +# only covers the aggregation and formatting. The copyright is held by +# Martin Mares and Albert Pool. +# + +# Vendors, devices and subsystems. Please keep sorted. + +# Syntax: +# vendor vendor_name +# device device_name <-- single tab +# subvendor subdevice subsystem_name <-- two tabs + +0001 SafeNet (wrong ID) +0010 Allied Telesis, Inc (Wrong ID) +# This is a relabelled RTL-8139 + 8139 AT-2500TX V3 Ethernet +0014 Loongson Technology LLC + 7a00 Hyper Transport Bridge Controller + 7a02 APB (Advanced Peripheral Bus) Controller + 7a03 Gigabit Ethernet Controller + 7a04 OTG USB Controller + 7a05 Vivante GPU (Graphics Processing Unit) + 7a06 DC (Display Controller) + 7a07 HDA (High Definition Audio) Controller + 7a08 SATA AHCI Controller + 7a09 PCI-to-PCI Bridge + 7a0b SPI Controller + 7a0c LPC Controller + 7a0f DMA (Direct Memory Access) Controller +# Found on some boards with two sockets + 7a10 Hyper Transport Bridge Controller + 7a14 EHCI USB Controller + 7a15 Vivante GPU (Graphics Processing Unit) + 7a19 PCI-to-PCI Bridge + 7a24 OHCI USB Controller + 7a29 PCI-to-PCI Bridge +001c PEAK-System Technik GmbH + 0001 PCAN-PCI CAN-Bus controller + 001c 0004 2 Channel CAN Bus SJC1000 + 001c 0005 2 Channel CAN Bus SJC1000 (Optically Isolated) +003d Lockheed Martin-Marietta Corp +# Real TJN ID is e159, but they got it wrong several times --mj +0059 Tiger Jet Network Inc. (Wrong ID) +0070 Hauppauge computer works Inc. + 7801 WinTV HVR-1800 MCE +0071 Nebula Electronics Ltd. +0095 Silicon Image, Inc. (Wrong ID) + 0680 Ultra ATA/133 IDE RAID CONTROLLER CARD +# Wrong ID used in subsystem ID of the TELES.S0/PCI 2.x ISDN adapter +00a7 Teles AG (Wrong ID) +0100 nCipher Security +0123 General Dynamics +0128 Dell (wrong ID) +# 018a is not LevelOne but there is a board misprogrammed +018a LevelOne + 0106 FPC-0106TX misprogrammed [RTL81xx] +01de Oxide Computer Company +# probably misprogrammed Intel Atom C2338 on Dell 0K8Y0N board +0200 Dell (wrong ID) +# 021b is not Compaq but there is a board misprogrammed +021b Compaq Computer Corporation + 8139 HNE-300 (RealTek RTL8139c) [iPaq Networking] +0270 Hauppauge computer works Inc. (Wrong ID) +0291 Davicom Semiconductor, Inc. (Wrong ID) +# SpeedStream is Efficient Networks, Inc, a Siemens Company +02ac SpeedStream + 1012 1012 PCMCIA 10/100 Ethernet Card [RTL81xx] +02e0 XFX Pine Group Inc. (Wrong ID) +0303 Hewlett-Packard Company (Wrong ID) +0308 ZyXEL Communications Corporation (Wrong ID) +0315 SK-Electronics Co., Ltd. +0357 TTTech Computertechnik AG (Wrong ID) + 000a TTP-Monitoring Card V2.0 +0432 SCM Microsystems, Inc. + 0001 Pluto2 DVB-T Receiver for PCMCIA [EasyWatch MobilSet] +0497 Dell Inc. (wrong ID) +0675 Dynalink + 1700 IS64PH ISDN Adapter + 1702 IS64PH ISDN Adapter + 1703 ISDN Adapter (PCI Bus, DV, W) + 1704 ISDN Adapter (PCI Bus, D, C) +0721 Sapphire, Inc. +0731 Jingjia Microelectronics Co Ltd + 7200 JM7200 Series GPU + 0731 7201 JM7201 + 0731 7202 JM7202 + 0731 7208 JM7200 + 0731 7212 JM7200 + 0731 7214 JM7500 + 0731 7215 JM7200 + 9100 JM9100 + 0731 9101 JM9100 + 0731 9102 JM9100-I + 910a JH910 + 0731 910a JH910 + 0731 910b JH910-I + 0731 910c JH910-M + 9200 JM9200 + 920a JH920 + 0731 920a JH920 + 0731 920b JH920-I + 0731 920c JH920-M + 920b JH920-I + 920c JH920-M + 9210 JM9210 + 0731 9210 JM9210 + 0731 9211 JM9210-I + 9211 JM9210-I + 9230 JM9230 + 0731 9230 JM9230 + 0731 9231 JM9230-I + 9231 JM9231-I + 9250 JM9250 + 0731 9250 JM9250 + 930a JH930-I + 0731 930a JH930-I + 0731 930b JH930-M + 930b JH930-M +0777 Ubiquiti Networks, Inc. +0795 Wired Inc. + 6663 Butane II (MPEG2 encoder board) + 6666 MediaPress (MPEG2 encoder board) +07d1 D-Link System Inc +0824 T1042 [Freescale] +0925 VIA Technologies, Inc. (Wrong ID) +0a89 BREA Technologies Inc +0b0b Rhino Equipment Corp. + 0105 R1T1 + 0205 R4FXO + 0206 RCB4FXO 4-channel FXO analog telephony card + 0305 R4T1 + 0405 R8FXX + 0406 RCB8FXX 8-channel modular analog telephony card + 0505 R24FXX + 0506 RCB24FXS 24-Channel FXS analog telephony card + 0605 R2T1 + 0705 R24FXS + 0706 RCB24FXO 24-Channel FXO analog telephony card + 0905 R1T3 Single T3 Digital Telephony Card + 0906 RCB24FXX 24-channel modular analog telephony card + 0a06 RCB672FXX 672-channel modular analog telephony card +0ccd Preferred Networks, Inc. +0e11 Compaq Computer Corporation + 0001 PCI to EISA Bridge + 0002 PCI to ISA Bridge + 0046 Smart Array 64xx + 0e11 4091 Smart Array 6i + 0e11 409a Smart Array 641 + 0e11 409b Smart Array 642 + 0e11 409c Smart Array 6400 + 0e11 409d Smart Array 6400 EM + 0049 NC7132 Gigabit Upgrade Module + 004a NC6136 Gigabit Server Adapter + 005a Remote Insight II board - Lights-Out + 007c NC7770 1000BaseTX + 007d NC6770 1000BaseTX + 0085 NC7780 1000BaseTX + 00b1 Remote Insight II board - PCI device + 00bb NC7760 + 00ca NC7771 + 00cb NC7781 + 00cf NC7772 + 00d0 NC7782 + 00d1 NC7783 + 00e3 NC7761 + 0508 Netelligent 4/16 Token Ring + 1000 Triflex/Pentium Bridge, Model 1000 + 2000 Triflex/Pentium Bridge, Model 2000 + 3032 QVision 1280/p + 3033 QVision 1280/p + 3034 QVision 1280/p + 4000 4000 [Triflex] + 4040 Integrated Array + 4048 Compaq Raid LC2 + 4050 Smart Array 4200 + 4051 Smart Array 4250ES + 4058 Smart Array 431 + 4070 Smart Array 5300 + 4080 Smart Array 5i + 4082 Smart Array 532 + 4083 Smart Array 5312 + 4091 Smart Array 6i + 409a Smart Array 641 + 409b Smart Array 642 + 409c Smart Array 6400 + 409d Smart Array 6400 EM + 6010 HotPlug PCI Bridge 6010 + 7020 USB Controller + a0ec Fibre Channel Host Controller + a0f0 Advanced System Management Controller + 0e11 b0f3 ProLiant DL360 + a0f3 Triflex PCI to ISA Bridge + a0f7 PCI Hotplug Controller + 8086 002a PCI Hotplug Controller A + 8086 002b PCI Hotplug Controller B + a0f8 ZFMicro Chipset USB + a0fc FibreChannel HBA Tachyon + ae10 Smart-2/P RAID Controller + 0e11 4030 Smart-2/P Array Controller + 0e11 4031 Smart-2SL Array Controller + 0e11 4032 Smart Array 3200 Controller + 0e11 4033 Smart Array 3100ES Controller + 0e11 4034 Smart Array 221 Controller + ae29 MIS-L + ae2a MPC + ae2b MIS-E + ae31 System Management Controller + ae32 Netelligent 10/100 TX PCI UTP + ae33 Triflex Dual EIDE Controller + ae34 Netelligent 10 T PCI UTP + ae35 Integrated NetFlex-3/P + ae40 Netelligent Dual 10/100 TX PCI UTP + ae43 Netelligent Integrated 10/100 TX UTP + ae69 CETUS-L + ae6c Northstar + ae6d NorthStar CPU to PCI Bridge + b011 Netelligent 10/100 TX Embedded UTP + b012 Netelligent 10 T/2 PCI UTP/Coax + b01e NC3120 Fast Ethernet NIC + b01f NC3122 Fast Ethernet NIC + b02f NC1120 Ethernet NIC + b030 Netelligent 10/100 TX UTP + b04a 10/100 TX PCI Intel WOL UTP Controller + b060 Smart Array 5300 Controller + b0c6 NC3161 Fast Ethernet NIC + b0c7 NC3160 Fast Ethernet NIC + b0d7 NC3121 Fast Ethernet NIC + b0dd NC3131 Fast Ethernet NIC + b0de NC3132 Fast Ethernet Module + b0df NC6132 Gigabit Module + b0e0 NC6133 Gigabit Module + b0e1 NC3133 Fast Ethernet Module + b123 NC6134 Gigabit NIC + b134 NC3163 Fast Ethernet NIC + b13c NC3162 Fast Ethernet NIC + b144 NC3123 Fast Ethernet NIC + b163 NC3134 Fast Ethernet NIC + b164 NC3165 Fast Ethernet Upgrade Module + b178 Smart Array 5i/532 + 0e11 4080 Smart Array 5i + 0e11 4082 Smart Array 532 + 0e11 4083 Smart Array 5312 + b1a4 NC7131 Gigabit Server Adapter + b200 Memory Hot-Plug Controller + b203 Integrated Lights Out Controller + b204 Integrated Lights Out Processor + c000 Remote Insight Lights-Out Edition + f130 NetFlex-3/P ThunderLAN 1.0 + f150 NetFlex-3/P ThunderLAN 2.3 +0e55 HaSoTec GmbH +0eac SHF Communication Technologies AG + 0008 Ethernet Powerlink Managing Node 01 +0f62 Acrox Technologies Co., Ltd. +1000 Broadcom / LSI + 0001 53c810 + 1000 1000 LSI53C810AE PCI to SCSI I/O Processor + 0002 53c820 + 0003 53c825 + 1000 1000 LSI53C825AE PCI to SCSI I/O Processor (Ultra Wide) + 0004 53c815 + 0005 53c810AP + 0006 53c860 + 1000 1000 LSI53C860E PCI to Ultra SCSI I/O Processor + 000a 53c1510 + 0e11 b143 Integrated Dual Channel Wide Ultra2 SCSI Controller + 1000 1000 LSI53C1510 PCI to Dual Channel Wide Ultra2 SCSI Controller (Nonintelligent mode) + 000b 53C896/897 + 0e11 6004 EOB003 Series SCSI host adapter + 1000 1000 LSI53C896/7 PCI to Dual Channel Ultra2 SCSI Multifunction Controller + 1000 1010 LSI22910 PCI to Dual Channel Ultra2 SCSI host adapter + 1000 1020 LSI21002 PCI to Dual Channel Ultra2 SCSI host adapter + 13e9 1000 6221L-4U (Dual U2W SCSI, dual 10/100TX, graphics) + 000c 53c895 + 1000 1010 LSI8951U PCI to Ultra2 SCSI host adapter + 1000 1020 LSI8952U PCI to Ultra2 SCSI host adapter + 1de1 3906 DC-390U2B SCSI adapter + 1de1 3907 DC-390U2W + 000d 53c885 + 000f 53c875 + 0e11 7004 Embedded Ultra Wide SCSI Controller + 1000 1000 LSI53C876/E PCI to Dual Channel SCSI Controller + 1000 1010 LSI22801 PCI to Dual Channel Ultra SCSI host adapter + 1000 1020 LSI22802 PCI to Dual Channel Ultra SCSI host adapter + 1092 8760 FirePort 40 Dual SCSI Controller + 1775 10d0 V5D Single Board Computer Wide Ultra SCSI + 1775 10d1 V5D Single Board Computer Ultra SCSI + 1de1 3904 DC390F/U Ultra Wide SCSI Adapter + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 4c53 1050 CT7 mainboard + 0010 53C1510 + 0e11 4040 Integrated Smart Array Controller + 0e11 4048 RAID LC2 Controller + 1000 1000 53C1510 PCI to Dual Channel Wide Ultra2 SCSI Controller (Intelligent mode) + 0012 53c895a + 1000 1000 LSI53C895A PCI to Ultra2 SCSI Controller + 0013 53c875a + 1000 1000 LSI53C875A PCI to Ultra SCSI Controller + 0014 MegaRAID Tri-Mode SAS3516 + 1000 9460 MegaRAID 9460-16i + 1000 9480 MegaRAID 9480-8i8e + 1000 9481 MegaRAID 9480-8e + 1028 1f3a PERC H745 Adapter + 1028 1f3b PERC H745 Front + 1028 1fd4 PERC H745P MX + 1137 020e UCSC-RAID-M5 12G Modular RAID Controller + 1d49 0602 ThinkSystem RAID 930-16i 4GB Flash PCIe 12Gb Adapter + 1d49 0604 ThinkSystem RAID 930-8e 4GB Flash PCIe 12Gb Adapter + 1d49 0607 ThinkSystem RAID 930-16i 8GB Flash PCIe 12Gb Adapter + 8086 352d Integrated RAID Module RMSP3AD160F + 8086 9460 RAID Controller RSP3TD160F + 8086 9480 RAID Controller RSP3MD088F + 0015 MegaRAID Tri-Mode SAS3416 + 1000 9441 MegaRAID 9440-16i + 1028 1f3c PERC H345 Adapter + 1028 1f3d PERC H345 Front + 1d49 0503 ThinkSystem RAID 530-16i PCIe 12Gb Adapter + 0016 MegaRAID Tri-Mode SAS3508 + 1000 9461 MegaRAID 9460-8i + 1000 9462 MegaRAID 9460-4i + 1000 9463 MegaRAID 9365-28i + 1000 9464 MegaRAID 9365-24i + 1028 1fc9 PERC H840 Adapter + 1028 1fcb PERC H740P Adapter + 1028 1fcd PERC H740P Mini + 1028 1fcf PERC H740P Mini + 1d49 0601 ThinkSystem RAID 930-8i 2GB Flash PCIe 12Gb Adapter + 1d49 0603 ThinkSystem RAID 930-24i 4GB Flash PCIe 12Gb Adapter + 8086 352e Integrated RAID Module RMSP3CD080F + 8086 352f Integrated RAID Module RMSP3HD080E + 8086 9461 RAID Controller RSP3DD080F + 0017 MegaRAID Tri-Mode SAS3408 + 1000 9440 MegaRAID 9440-8i + 1000 9442 MegaRAID 9440-4i + 1d49 0500 ThinkSystem RAID 530-8i PCIe 12Gb Adapter + 1d49 0502 ThinkSystem RAID 530-8i Dense Adapter + 8086 3528 Integrated RAID RMSP3LD060 + 8086 3529 Integrated RAID RMSP3LD060 + 8086 9441 RAID Controller RSP3WD080E + 001b MegaRAID Tri-Mode SAS3504 + 1d49 0605 ThinkSystem RAID 930-4i 2GB Flash Flex Adapter + 001c MegaRAID Tri-Mode SAS3404 + 1d49 0501 ThinkSystem RAID 530-4i Flex Adapter + 0020 53c1010 Ultra3 SCSI Adapter + 1000 1000 LSI53C1010-33 PCI to Dual Channel Ultra160 SCSI Controller + 107b 1040 Server Onboard 53C1010-33 + 1de1 1020 DC-390U3W + 0021 53c1010 66MHz Ultra3 SCSI Adapter + 1000 1000 LSI53C1000/1000R/1010R/1010-66 PCI to Ultra160 SCSI Controller + 1000 1010 Asus TR-DLS onboard 53C1010-66 + 103c 1300 Ultra160 SCSI [AB306A] + 103c 1310 Ultra160 SCSI [A9918A] + 103c 1330 Ultra160 SCSI [A7059A] + 103c 1340 Ultra160 SCSI [A7060A] + 124b 1070 PMC-USCSI3 + 4c53 1080 CT8 mainboard + 4c53 1300 P017 mezzanine (32-bit PMC) + 4c53 1310 P017 mezzanine (64-bit PMC) + 002f MegaRAID SAS 2208 IOV [Thunderbolt] + 1028 1f39 SPERC8-e + 1028 1f3e SPERC 8 + 0030 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI + 0e11 00da ProLiant ML 350 + 1028 0123 LSI Logic 1020/1030 + 1028 014a LSI Logic 1020/1030 + 1028 016c PowerEdge 1850 MPT Fusion SCSI/RAID (Perc 4) + 1028 0183 LSI Logic 1020/1030 + 1028 018a PERC 4/IM + 1028 1010 LSI U320 SCSI Controller + 103c 12c5 Ultra320 SCSI [A7173A] + 103c 1323 Core I/O LAN/SCSI Combo [AB314A] + 103c 3108 Single Channel Ultra320 SCSI HBA G2 + 103c 322a SC11Xe Ultra320 Single Channel PCIe x4 SCSI Host Bus Adapter (412911-B21) + 124b 1170 PMC-USCSI320 +# VMware's emulation of this device. Was missing from the list. + 15ad 1976 LSI Logic Parallel SCSI Controller + 1734 1052 PRIMERGY BX/RX/TX S2 series onboard SCSI(IME) + 0031 53c1030ZC PCI-X Fusion-MPT Dual Ultra320 SCSI + 0032 53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI + 1000 1000 LSI53C1020/1030 PCI-X to Ultra320 SCSI Controller + 0033 1030ZC_53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI + 0040 53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI + 1000 0033 MegaRAID SCSI 320-2XR + 1000 0066 MegaRAID SCSI 320-2XRWS + 0041 53C1035ZC PCI-X Fusion-MPT Dual Ultra320 SCSI + 0050 SAS1064 PCI-X Fusion-MPT SAS + 1028 1f04 SAS 5/E + 1028 1f09 SAS 5i/R + 0052 MegaRAID SAS-3 3216/3224 [Cutlass] + 0053 MegaRAID SAS-3 3216/3224 [Cutlass] + 1000 9350 MegaRAID SAS 9341-16i + 1000 9351 MegaRAID SAS 9341-24i + 0054 SAS1068 PCI-X Fusion-MPT SAS + 1028 1f04 SAS 5/E Adapter Controller + 1028 1f05 SAS 5/i Adapter Controller + 1028 1f06 SAS 5/i Integrated Controller + 1028 1f07 SAS 5/iR Integrated RAID Controller + 1028 1f08 SAS 5/iR Integrated RAID Controller + 1028 1f09 SAS 5/iR Adapter RAID Controller + 15ad 1976 SAS Controller + 0055 SAS1068 PCI-X Fusion-MPT SAS + 1033 8336 SAS1068 + 0056 SAS1064ET PCI-Express Fusion-MPT SAS + 1014 03bb ServeRAID BR10il SAS/SATA Controller v2 + 8086 34dc AXX4SASMOD RAID Controller + 0057 M1064E MegaRAID SAS + 8086 346c Embedded Software RAID Technology II (ESTRII) + 0058 SAS1068E PCI-Express Fusion-MPT SAS + 1000 3140 SAS3081E-R 8-Port SAS/SATA Host Bus Adapter + 1028 021d SAS 6/iR Integrated Workstations RAID Controller + 1028 1f0e SAS 6/iR Adapter RAID Controller + 1028 1f0f SAS 6/iR Integrated Blades RAID Controller + 1028 1f10 SAS 6/iR Integrated RAID Controller + 103c 3229 SC44Ge Host Bus Adapter + 0059 MegaRAID SAS 8208ELP/8208ELP + 005a SAS1066E PCI-Express Fusion-MPT SAS + 005b MegaRAID SAS 2208 [Thunderbolt] + 1000 9265 MegaRAID SAS 9265-8i + 1000 9266 MegaRAID SAS 9266-8i + 1000 9267 MegaRAID SAS 9267-8i + 1000 9268 MegaRAID SAS 9265CV-8i / 9270CV-8i + 1000 9269 MegaRAID SAS 9266-4i + 1000 9270 MegaRAID SAS 9270-8i + 1000 9271 MegaRAID SAS 9271-8i + 1000 9272 MegaRAID SAS 9272-8i + 1000 9273 MegaRAID SAS 9270CV-8i + 1000 9274 MegaRAID SAS 9270-4i + 1000 9275 MegaRAID SAS 9271-8iCC + 1000 9276 MegaRAID SAS 9271-4i + 1000 9285 MegaRAID SAS 9285-8e + 1000 9288 MegaRAID SAS 9285CV-8e + 1000 9290 MegaRAID SAS 9286-8e + 1000 9291 MegaRAID SAS 9286CV-8e + 1000 9295 MegaRAID SAS 9286CV-8eCC + 1014 040b ServeRAID M5110 SAS/SATA Controller + 1014 040c ServeRAID M5120 SAS/SATA Controller + 1014 0412 ServeRAID M5110e SAS/SATA Controller + 1028 1f2d PERC H810 Adapter + 1028 1f30 PERC H710 Embedded + 1028 1f31 PERC H710P Adapter + 1028 1f33 PERC H710P Mini (for blades) + 1028 1f34 PERC H710P Mini (for monolithics) + 1028 1f35 PERC H710 Adapter + 1028 1f37 PERC H710 Mini (for blades) + 1028 1f38 PERC H710 Mini (for monolithics) + 15d9 0690 LSI MegaRAID ROMB + 8086 3510 RMS25PB080 RAID Controller + 8086 3511 RMS25PB040 RAID Controller + 8086 3512 RMT3PB080 RAID Controller + 8086 3513 Integrated RAID Module RMS25CB080 + 8086 3514 RMS25CB040 RAID Controller + 8086 351c RMS25PB080N RAID Controller + 8086 351d RMS25CB080N RAID Controller + 8086 9265 RS25DB080 RAID Controller + 8086 9268 RS25AB080 RAID Controller + 8086 9285 RS25NB008 RAID Controller + 8086 9288 RS25SB008 RAID Controller + 005c SAS1064A PCI-X Fusion-MPT SAS + 005d MegaRAID SAS-3 3108 [Invader] + 1000 9361 MegaRAID SAS 9361-8i + 1000 9363 MegaRAID SAS 9361-4i + 1000 9364 MegaRAID SAS 9364-8i + 1000 936a MegaRAID SAS 9364-8i + 1000 9380 MegaRAID SAS 9380-8e + 1028 1f41 PERC H830 Adapter + 1028 1f42 PERC H730P Adapter + 1028 1f43 PERC H730 Adapter + 1028 1f47 PERC H730P Mini + 1028 1f48 PERC H730P Mini (for blades) + 1028 1f49 PERC H730 Mini + 1028 1f4a PERC H730 Mini (for blades) + 1028 1f4d PERC FD33xS + 1028 1f4f PERC H730P Slim + 1028 1f54 PERC FD33xD + 1028 1fd1 PERC H730P MX + 17aa 1052 ThinkServer RAID 720i + 17aa 1053 ThinkServer RAID 720ix + 1bd4 0014 12G SAS3108 2G + 1bd4 0015 12G SAS3108 4G + 1d49 0600 ThinkSystem RAID 730-8i 1GB Cache PCIe 12Gb Adapter + 1d49 0608 ThinkSystem RAID 730-8i 2GB Flash PCIe 12Gb Adapter + 1d49 0609 ThinkSystem RAID 730-8i 4GB Flash PCIe 12Gb Adapter + 8086 351e RMS3CC080 RAID Controller + 8086 351f RMS3CC040 RAID Controller + 8086 9360 RS3DC080 RAID Controller + 8086 9362 RS3DC040 RAID Controller + 8086 9380 RS3SC008 RAID Controller + 8086 9381 RS3MC044 RAID Controller + 005e SAS1066 PCI-X Fusion-MPT SAS + 005f MegaRAID SAS-3 3008 [Fury] + 1028 1f44 PERC H330 Adapter + 1028 1f4b PERC H330 Mini + 1028 1f4c PERC H330 Mini (for blades) + 1028 1f4d PERC H330 Embedded (for monolithic) + 1054 306a SAS 3004 iMR ROMB + 1734 1211 PRAID CP400i [D3307-A12] + 1d49 04db ServeRAID M1210 SAS/SATA Controller + 1d49 0504 ThinkSystem RAID 520-8i PCIe 12Gb Adapter + 0060 MegaRAID SAS 1078 + 1000 1006 MegaRAID SAS 8888ELP + 1000 100a MegaRAID SAS 8708ELP + 1000 100e MegaRAID SAS 8884E + 1000 100f MegaRAID SAS 8708E + 1000 1010 MegaRAID SATA 350-8ELP + 1000 1011 MegaRAID SATA 350-4ELP + 1000 1012 MegaRAID SAS 8704ELP + 1000 1016 MegaRAID SAS 8880EM2 + 1014 0363 MegaRAID SAS PCI Express ROMB + 1014 0364 SystemX MegaRAID SAS 8808E + 1014 0365 SystemX MegaRAID SAS 8884E + 1014 0379 SystemX MegaRAID SAS 8880EM2 + 1028 1f0a PERC 6/E Adapter RAID Controller + 1028 1f0b PERC 6/i Adapter RAID Controller + 1028 1f0c PERC 6/i Integrated RAID Controller + 1028 1f0d PERC 6/i Integrated RAID Controller + 1028 1f11 CERC 6/i Integrated RAID Controller + 1033 835a MegaRAID SAS PCI Express ROMB + 1043 824d MegaRAID SAS PCI Express ROMB + 1170 002f MegaRAID SAS PCI Express ROMB + 1170 0036 MegaRAID SAS PCI Express ROMB + 15d9 c080 MegaRAID SAS PCI Express ROMB + 17aa 6b7c MegaRAID SAS PCI Express ROMB + 18a1 0003 LSI MegaRAID SAS PCI Express ROMB + 8086 1006 RAID Controller SRCSAS28EP + 8086 100a RAID Controller SRCSAS28EV + 8086 1010 RAID Controller SRCSATA28E + 8086 34cc Integrated RAID Controller SROMBSAS28E + 8086 34cd Integrated RAID Controller SROMBSAS28E + 8086 3505 Integrated RAID Controller SROMBSASMP2 + 0062 SAS1078 PCI-Express Fusion-MPT SAS + 1000 0062 SAS1078 PCI-Express Fusion-MPT SAS + 0064 SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor] + 1000 3030 9200-16e 6Gb/s SAS/SATA PCIe x8 External HBA + 1000 30c0 SAS 9201-16i + 1000 30d0 9201-16e 6Gb/s SAS/SATA PCIe x8 External HBA + 0065 SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor] + 006e SAS2308 PCI-Express Fusion-MPT SAS-2 + 0070 SAS2004 PCI-Express Fusion-MPT SAS-2 [Spitfire] + 1000 3010 SAS9211-4i + 1014 040e ServeRAID H1110 + 0071 MR SAS HBA 2004 + 0072 SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon] + 1000 3040 9210-8i + 1000 3080 9200-8e [LSI SAS 6Gb/s SAS/SATA PCIe x8 External HBA] + 1000 30b0 9200-8e [LSI SAS 6Gb/s SAS/SATA PCIe x8 External HBA] + 1014 03ca IBM 6Gb SAS HBA [9212-4i4e] + 1028 1f1c 6Gbps SAS HBA Adapter + 1028 1f1d PERC H200 Adapter + 1028 1f1e PERC H200 Integrated + 1028 1f1f PERC H200 Modular + 1028 1f20 PERC H200 Embedded + 1028 1f22 PERC H200 Internal Tape Adapter +# Fujitsu D2607 SAS2008 HBA controller + 1734 1177 HBA Ctrl SAS 6G 0/1 [D2607] + 1bd4 000d 6G SAS2008IT + 1bd4 000e 6G SAS2008IR + 1bd4 000f 6G SAS2008IT SA5248 + 1bd4 0010 6G SAS2008IR SA5248 + 8086 350f RMS2LL040 RAID Controller + 8086 3700 SSD 910 Series + 0073 MegaRAID SAS 2008 [Falcon] + 1000 9240 MegaRAID SAS 9240-8i + 1000 9241 MegaRAID SAS 9240-4i + 1000 92a0 MegaRAID SAS 9220-8i + 1014 03b1 ServeRAID M1015 SAS/SATA Controller + 1014 040d ServeRAID M1115 SAS/SATA Controller + 1028 1f4e PERC H310 Adapter + 1028 1f4f PERC H310 Integrated + 1028 1f50 PERC H310 Mini Blades + 1028 1f51 PERC H310 Mini Monolithics + 1028 1f52 PERC H310 Embedded1 + 1028 1f53 PERC H310 Embedded2 + 1028 1f54 PERC H310 Reserved + 1028 1f78 PERC H310 + 1054 3035 LSI MegaRAID SAS 9240-8i + 1137 0072 2004 iMR ROMB + 1137 0073 2008 ROMB + 1137 00b0 UCSC RAID SAS 2008M-8i + 1137 00b1 UCSC RAID SAS 2008M-8i + 1137 00c2 UCS E-Series Double Wide + 1137 00c3 UCS E-Series Single Wide + 15d9 0400 Supermicro SMC2008-iMR + 1734 1177 RAID Ctrl SAS 6G 0/1 (D2607) + 17aa 1051 ThinkServer RAID 510i + 8086 350d RMS2AF040 RAID Controller + 8086 9240 RAID Controller RS2WC080 + 8086 9241 RAID Controller RS2WC040 + 0074 SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator] + 0076 SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator] + 0077 SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator] + 0079 MegaRAID SAS 2108 [Liberator] + 1000 9251 MegaRAID SAS 9260-4ix + 1000 9256 MegaRAID SAS 9260-8ix + 1000 9260 MegaRAID SAS 9260-4i + 1000 9261 MegaRAID SAS 9260-8i + 1000 9262 MegaRAID SAS 9262-8i + 1000 9263 MegaRAID SAS 9261-8i + 1000 9264 MegaRAID SAS 9264-8i + 1000 9267 MegaRAID SAS 9260CV-4i + 1000 9268 MegaRAID SAS 9260CV-8i + 1000 9275 MegaRAID SAS 9280-8ex + 1000 9276 MR9260-16i + 1000 9280 MegaRAID SAS 9280-8e + 1000 9281 MegaRAID SAS 9281-8E + 1000 9282 MegaRAID SAS 9280-4i4e + 1000 9290 MegaRAID SAS 9280DE-24i4e + 1014 03b2 ServeRAID M5015 SAS/SATA Controller + 1014 03b3 ServeRAID M5025 SAS/SATA Controller + 1028 1f15 PERC H800 Adapter + 1028 1f16 PERC H700 Adapter + 1028 1f17 PERC H700 Integrated + 1028 1f18 PERC H700 Modular + 1028 1f1a PERC H800 Proto Adapter + 1028 1f1b PERC H700 Integrated + 1043 8480 PIKE-2108 16PD + 1734 1176 RAID Ctrl SAS 6G 5/6 512MB (D2616) + 1734 1177 RAID Ctrl SAS 6G 0/1 (D2607) + 8086 350b RMS2MH080 RAID Controller + 8086 9256 MegaRAID SAS 9260DE-8i RS2BL080DE + 8086 9260 RAID Controller RS2BL040 + 8086 9261 RAID Controller RS2BL080 + 8086 9264 RAID Controller RT3WB080 Warm Beach (Caster Lite) + 8086 9267 RAID Controller RS2VB040 + 8086 9268 RAID Controller RS2VB080 + 8086 9275 RAID Controller RS2PI008DE + 8086 9276 RAID Controller RS2WG160 + 8086 9280 RAID Controller RS2PI008 + 8086 9282 RAID Controller RS2MB044 + 8086 9290 RAID Controller RS2SG244 + 007c MegaRAID SAS 1078DE + 1014 0395 ServeRAID-AR10is SAS/SATA Controller + 007e SSS6200 PCI-Express Flash SSD + 1000 0504 Nytro NWD-BLP4-800 + 1000 0507 Nytro NWD-BLP4-1600 + 1000 0581 Nytro NWD-BLP4-400 + 1000 100d Nytro NWD-BFH6-1200 + 1000 100e Nytro NWD-BFH8-1600 + 1000 107e Nytro NWD-BFH8-3200 + 1000 1310 Nytro XP6302-8B1536 + 1000 1311 Nytro XP6302-8B2048 + 1000 1314 Nytro XP6302-8B4096 + 1000 150c Nytro XP6210-4A2048 + 1000 150f Nytro XP6210-4B2048 + 1000 160b Nytro XP6209-4A1024 + 1000 1613 Nytro XP6209-4B2048 + 108e 050a Nytro ELP4x200_4d_n + 108e 0581 Nytro ELP4x100_4d_n + 0080 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0081 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0082 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0083 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0084 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0085 SAS2208 PCI-Express Fusion-MPT SAS-2 + 0086 SAS2308 PCI-Express Fusion-MPT SAS-2 + 15d9 0690 Onboard MegaRAID SAS2208 [Thunderbolt] + 15d9 0691 Onboard SAS2308 PCI-Express Fusion-MPT SAS-2 + 0087 SAS2308 PCI-Express Fusion-MPT SAS-2 + 1000 3020 9207-8i SAS2.1 HBA + 1000 3030 SAS9207-4i4e + 1000 3040 9207-8e SAS2.1 HBA + 1000 3050 SAS9217-8i + 1000 3060 SAS9217-4i4e + 1014 0472 N2125 External Host Bus Adapter + 1014 047a N2115 Internal Host Bus Adapter + 1590 0041 H220i + 1590 0042 H221 / 9207-8e + 1590 0044 H220i + 1bd4 0009 6G SAS2308IR + 1bd4 000a 6G SAS2308IT + 8086 3000 RS25GB008 RAID Controller + 8086 3060 RS25FB044 RAID Controller + 8086 3516 RMS25JB080 RAID Controller + 8086 3517 RMS25JB040 RAID Controller + 8086 3518 RMS25KB080 RAID Controller + 8086 3519 RMS25KB040 RAID Controller + 8086 351a RMS25LB040 RAID Controller + 8086 351b RMS25LB080 RAID Controller + 008f 53c875J + 1092 8000 FirePort 40 SCSI Controller + 1092 8760 FirePort 40 Dual SCSI Host Adapter + 0090 SAS3108 PCI-Express Fusion-MPT SAS-3 + 0091 SAS3108 PCI-Express Fusion-MPT SAS-3 + 0094 SAS3108 PCI-Express Fusion-MPT SAS-3 + 0095 SAS3108 PCI-Express Fusion-MPT SAS-3 + 0096 SAS3004 PCI-Express Fusion-MPT SAS-3 + 0097 SAS3008 PCI-Express Fusion-MPT SAS-3 + 1000 3090 SAS9311-8i + 1000 30a0 SAS9300-8e + 1000 30e0 SAS9300-8i + 1000 3130 SAS 9300-16i + 1028 1f45 HBA330 Adapter + 1028 1f46 12Gbps HBA + 1028 1f53 HBA330 Mini + 1028 1fd2 HBA330 MX + 1028 1fd3 HBA330 MMZ +# Supermicro AOC-S3008L-L8e uses 0808 for their SAS3008 SAS controller + 15d9 0808 AOC-S3008L-L8e + 1bd4 0008 12G SAS3008IMR Onboard + 1bd4 000b 12G SAS3008IR + 1bd4 000c 12G SAS3008IT + 1bd4 0011 Inspur 12Gb 8i-3008 IT SAS HBA + 1bd4 0012 12Gb SAS3008IR UDM + 1bd4 001f 12G SAS3008IR Onboard + 1bd4 0020 12G SAS3008IT Onboard + 1bd4 0026 12G SAS3008IT RACK + 1bd4 0027 12G SAS3008IMR RACK + 1bd4 0028 12G SAS3008IR RACK + 00a5 Fusion-MPT 24GSAS/PCIe SAS40xx + 1000 4600 MegaRAID 9670W-16i Tri-Mode Storage Adapter + 1000 4610 MegaRAID 9670-24i Tri-Mode Storage Adapter + 1000 4620 MegaRAID 9660-16i Tri-Mode Storage Adapter + 1000 4630 MegaRAID 9660-8i8e Tri-Mode Storage Adapter + 1000 4640 eHBA 9600W-16i Tri-Mode Storage Adapter + 1000 4650 eHBA 9600W-16e Tri-Mode Storage Adapter + 1000 4660 eHBA 9600-24i Tri-Mode Storage Adapter + 1000 4670 eHBA 9600-16i Tri-Mode Storage Adapter + 1000 4680 eHBA 9600-16e Tri-Mode Storage Adapter + 1000 4690 MegaRAID 9620-16i Tri-Mode Storage Adapter + 1000 46a0 MegaRAID 9660-24i Tri-Mode Storage Adapter + 1000 46c0 eHBA 9680W-16e Tri-Mode Storage Adapter + 1000 46d0 eHBA 9600-8i8e Tri-Mode Storage Adapter + 1028 2114 PERC H965i Adapter + 1028 2115 PERC H965i Front + 1028 2117 PERC H965i MX + 1028 213a PERC H965e Adapter + 1028 213b PERC H765i Adapter + 1028 213c PERC H765i Front + 1028 213d PERC H765N Front + 1028 213e PERC H765i MX + 1028 213f PERC H365i Adapter + 1028 2140 PERC H365i Front + 1028 2141 PERC H360 MX + 1028 2142 HBA 465e Adapter + 00ab SAS3516 Fusion-MPT Tri-Mode RAID On Chip (ROC) +# 8 Internal and 8 External port channel 9400 HBA + 1000 3040 HBA 9400-8i8e + 8086 3530 Integrated RAID Module RMSP3JD160J + 00ac SAS3416 Fusion-MPT Tri-Mode I/O Controller Chip (IOC) +# Channel 16 internal port HBA + 1000 3000 HBA 9400-16i +# Channel 16 external port HBA + 1000 3020 HBA 9400-16e + 1028 1fe3 HBA345 Adapter + 1028 1fe4 HBA345 Front + 1d49 0201 ThinkSystem 430-16i SAS/SATA 12Gb HBA + 1d49 0203 ThinkSystem 430-16e SAS/SATA 12Gb HBA + 8086 3000 RAID Controller RSP3QD160J + 8086 3020 RAID Controller RSP3GD016J + 00ae SAS3508 Fusion-MPT Tri-Mode RAID On Chip (ROC) + 00af SAS3408 Fusion-MPT Tri-Mode I/O Controller Chip (IOC) + 1000 3010 HBA 9400-8i +# 9400 Channel 8 external port HBA + 1000 3030 HBA 9400-8e + 1d49 0200 ThinkSystem 430-8i SAS/SATA 12Gb HBA + 1d49 0202 ThinkSystem 430-8e SAS/SATA 12Gb HBA + 1d49 0204 ThinkSystem 430-8i SAS/SATA 12Gb Dense HBA + 00b2 PCIe Switch management endpoint + 1d49 0003 ThinkSystem 1611-8P PCIe Gen4 NVMe Switch Adapter + 00be SAS3504 Fusion-MPT Tri-Mode RAID On Chip (ROC) + 00bf SAS3404 Fusion-MPT Tri-Mode I/O Controller Chip (IOC) + 00c0 SAS3324 PCI-Express Fusion-MPT SAS-3 + 00c1 SAS3324 PCI-Express Fusion-MPT SAS-3 + 00c2 SAS3324 PCI-Express Fusion-MPT SAS-3 + 00c3 SAS3324 PCI-Express Fusion-MPT SAS-3 + 00c4 SAS3224 PCI-Express Fusion-MPT SAS-3 +# SAS 9305 16 internal port HBA + 1000 3190 SAS9305-16i +# SAS 9305 24 internal port HBA + 1000 31a0 SAS9305-24i + 1170 0002 SAS3224 PCI Express to 12Gb HBA MEZZ CARD + 00c5 SAS3316 PCI-Express Fusion-MPT SAS-3 + 00c6 SAS3316 PCI-Express Fusion-MPT SAS-3 + 00c7 SAS3316 PCI-Express Fusion-MPT SAS-3 + 00c8 SAS3316 PCI-Express Fusion-MPT SAS-3 + 00c9 SAS3216 PCI-Express Fusion-MPT SAS-3 +# 9305 16 external port SAS HBA + 1000 3180 SAS9305-16e + 00ce MegaRAID SAS-3 3316 [Intruder] + 1000 9371 MegaRAID SAS 9361-16i + 1000 9390 MegaRAID SAS 9380-8i8e + 00cf MegaRAID SAS-3 3324 [Intruder] + 1000 9370 MegaRAID SAS 9361-24i + 00d0 SAS3716 Fusion-MPT Tri-Mode RAID Controller Chip (ROC) +# 9405W 16 internal port channel HBA + 1000 3050 HBA 9405W-16i +# 9405W 8 internal and 8 external port channel HBA + 1000 3070 HBA 9405W-8i8e + 00d1 SAS3616 Fusion-MPT Tri-Mode I/O Controller Chip (IOC) +# 9405W 16 external port Channel HBA + 1000 3080 HBA 9405W-16e +# 9405W 16 internal port Channel HBA + 1000 3090 HBA 9405W-16i + 00d3 MegaRAID Tri-Mode SAS3716W + 00e0 Fusion-MPT 12GSAS/PCIe Unsupported SAS39xx + 00e1 Fusion-MPT 12GSAS/PCIe SAS39xx + 00e2 Fusion-MPT 12GSAS/PCIe Secure SAS39xx + 00e3 Fusion-MPT 12GSAS/PCIe Unsupported SAS39xx + 00e4 Fusion-MPT 12GSAS/PCIe Unsupported SAS38xx +# Invalid part + 1028 200b HBA355i Adapter Invalid +# Invalid part + 1028 200c HBA355i Front Invalid +# Invalid part + 1028 200d HBA355e Adapter Invalid +# Invalid part + 1028 200e HBA350i MX Invalid +# Soft Secure + 00e5 Fusion-MPT 12GSAS/PCIe SAS38xx +# Soft Secure + 1028 200b HBA355i Adapter +# Soft Secure + 1028 200c HBA355i Front +# Soft Secure + 1028 200d HBA355e Adapter +# Soft Secure + 1028 200e HBA350i MX + 1d49 0205 ThinkSystem 440-16i SAS/SATA PCIe Gen4 12Gb Internal HBA + 1d49 0206 ThinkSystem 440-16e SAS/SATA PCIe Gen4 12Gb HBA + 00e6 Fusion-MPT 12GSAS/PCIe Secure SAS38xx + 1000 4050 9500-16i Tri-Mode HBA + 1000 4060 9500-8i Tri-Mode HBA + 1000 4070 9500-16e Tri-Mode HBA + 1000 4080 9500-8e Tri-Mode HBA + 1028 200b HBA355i Adapter + 1028 200c HBA355i Front + 1028 200d HBA355e Adapter + 1028 200e HBA350i MX + 1028 2170 HBA350i MM + 1028 2175 HBA350i Adapter + 1028 2197 HBA350i MM LP + 1d49 0205 ThinkSystem 440-16i SAS/SATA PCIe Gen4 12Gb Internal HBA + 1d49 0206 ThinkSystem 440-16e SAS/SATA PCIe Gen4 12Gb HBA + 1d49 0207 ThinkSystem 440-8i SAS/SATA PCIe Gen4 12Gb HBA + 1d49 0208 ThinkSystem 440-16i SAS/SATA PCIe Gen4 12Gb HBA + 1d49 0209 ThinkSystem 440-8e SAS/SATA PCIe Gen4 12Gb HBA + 8086 4050 Storage Controller RS3P4QF160J + 8086 4070 Storage Controller RS3P4GF016J + 00e7 Fusion-MPT 12GSAS/PCIe Unsupported SAS38xx +# Tampered part + 1028 200b HBA355i Adapter Tampered +# Tampered part + 1028 200c HBA355i Front Tampered +# Tampered part + 1028 200d HBA355e Adapter Tampered +# Tampered part + 1028 200e HBA350i MX Tampered + 02b0 Virtual Endpoint on PCIe Switch + 1d49 0001 ThinkSystem 1610-4P NVMe Switch Adapter + 1d49 0002 ThinkSystem 810-4P NVMe Switch Adapter + 02b1 Virtual Endpoint on PCIe Switch (9749) + 1d49 0004 ThinkSystem 1610-8P NVMe Switch Adapter + 0407 MegaRAID + 1000 0530 MegaRAID 530 SCSI 320-0X RAID Controller + 1000 0531 MegaRAID 531 SCSI 320-4X RAID Controller + 1000 0532 MegaRAID 532 SCSI 320-2X RAID Controller + 1028 0531 PowerEdge Expandable RAID Controller 4/QC + 1028 0533 PowerEdge Expandable RAID Controller 4/QC + 8086 0530 MegaRAID Intel RAID Controller SRCZCRX + 8086 0532 MegaRAID Intel RAID Controller SRCU42X + 0408 MegaRAID + 1000 0001 MegaRAID SCSI 320-1E RAID Controller + 1000 0002 MegaRAID SCSI 320-2E RAID Controller + 1025 004d MegaRAID ACER ROMB-2E RAID Controller + 1028 0001 PowerEdge RAID Controller PERC4e/SC + 1028 0002 PowerEdge RAID Controller PERC4e/DC + 1028 0012 PowerEdge RAID Controller RAC4 + 1028 0015 PowerEdge RAID Controller PERC5 + 1028 1f03 PowerEdge RAID Controller PERC5 + 1734 1065 FSC MegaRAID PCI Express ROMB + 8086 0002 MegaRAID Intel RAID Controller SRCU42E + 8086 3449 MegaRAID Intel RAID Controller SROMBU + 0409 MegaRAID + 1000 3004 MegaRAID SATA 300-4X RAID Controller + 1000 3008 MegaRAID SATA 300-8X RAID Controller + 8086 3008 MegaRAID RAID Controller SRCS28X + 8086 3431 MegaRAID RAID Controller Alief SROMBU42E + 8086 3499 MegaRAID RAID Controller Harwich SROMBU42E + 0411 MegaRAID SAS 1068 + 1000 1001 MegaRAID SAS 8408E + 1000 1002 MegaRAID SAS 8480E + 1000 1003 MegaRAID SAS 8344ELP + 1000 1004 MegaRAID SAS 8308ELP + 1000 1008 MegaRAID SAS 84016E + 1000 100c MegaRAID SATA 300-12E + 1000 100d MegaRAID SATA 300-16E + 1000 2004 MegaRAID SATA 300-8ELP + 1000 2005 MegaRAID SATA 300-4ELP + 1033 8287 MegaRAID SAS PCI Express ROMB + 1054 3016 MegaRAID SAS RoMB Server + 1734 1081 MegaRAID SAS PCI Express ROMB + 1734 10a3 MegaRAID SAS PCI Express ROMB + 8086 1001 RAID Controller SRCSAS18E + 8086 1003 RAID Controller SRCSAS144E + 8086 3500 SROMBSAS18E RAID Controller + 8086 3501 SROMBSAS18E RAID Controller + 8086 3504 SROMBSAS18E RAID Controller + 0413 MegaRAID SAS 1068 [Verde ZCR] + 1000 1005 MegaRAID SAS 8300XLP + 0621 FC909 Fibre Channel Adapter + 0622 FC929 Fibre Channel Adapter + 1000 1020 44929 O Dual Fibre Channel card + 0623 FC929 LAN + 0624 FC919 Fibre Channel Adapter + 0625 FC919 LAN + 0626 FC929X Fibre Channel Adapter + 1000 1010 7202-XP-LC Dual Fibre Channel card + 0627 FC929X LAN + 0628 FC919X Fibre Channel Adapter + 0629 FC919X LAN + 0640 FC949X Fibre Channel Adapter + 0642 FC939X Fibre Channel Adapter + 0646 FC949ES Fibre Channel Adapter + 0701 83C885 NT50 DigitalScape Fast Ethernet + 0702 Yellowfin G-NIC gigabit ethernet + 1318 0000 PEI100X + 0804 SA2010 + 0805 SA2010ZC + 0806 SA2020 + 0807 SA2020ZC + 0901 61C102 + 1000 63C815 + 10e0 MegaRAID 12GSAS/PCIe Unsupported SAS39xx + 1028 1ae0 PERC H755 Adapter - Invalid Device + 1028 1ae1 PERC H755 Front - Invalid Device + 1028 1ae2 PERC H755N Front - Invalid Device + 1028 1ae3 PERC H755 MX - Invalid Device + 10e1 MegaRAID 12GSAS/PCIe SAS39xx + 1028 1ae0 PERC H755 Adapter + 1028 1ae1 PERC H755 Front + 1028 1ae2 PERC H755N Front + 1028 1ae3 PERC H755 MX + 1d49 060a ThinkSystem RAID 940-8i 4GB Flash PCIe Gen4 12Gb Adapter + 1d49 060b ThinkSystem RAID 940-8i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060c ThinkSystem RAID 940-16i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060d ThinkSystem RAID 940-16i 8GB Flash PCIe Gen4 12Gb Internal Adapter + 1d49 060e ThinkSystem RAID 940-32i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060f ThinkSystem RAID 940-8e 4GB Flash PCIe Gen4 12Gb Adapter + 10e2 MegaRAID 12GSAS/PCIe Secure SAS39xx +# 9560 16 internal port RAID controller + 1000 4000 MegaRAID 9560-16i +# 9561 16 internal port RAID controller + 1000 4002 MegaRAID 9561-16i +# 9560 8 internal port RAID controller + 1000 4010 MegaRAID 9560-8i +# 9580 8 internal & 8 external port RAID controller + 1000 4020 MegaRAID 9580-8i8e +# MegaRAID 9562-16i 9562 16 internal port RAID controller + 1000 40b0 MegaRAID 9562-16i + 1028 1ae0 PERC H755 Adapter + 1028 1ae1 PERC H755 Front + 1028 1ae2 PERC H755N Front + 1028 1ae3 PERC H755 MX + 1028 2171 PERC H750 Mini + 1028 2176 PERC H750 Adapter + 1d49 060a ThinkSystem RAID 940-8i 4GB Flash PCIe Gen4 12Gb Adapter + 1d49 060b ThinkSystem RAID 940-8i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060c ThinkSystem RAID 940-16i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060d ThinkSystem RAID 940-16i 8GB Flash PCIe Gen4 12Gb Internal Adapter + 1d49 060e ThinkSystem RAID 940-32i 8GB Flash PCIe Gen4 12Gb Adapter + 1d49 060f ThinkSystem RAID 940-8e 4GB Flash PCIe Gen4 12Gb Adapter + 1d49 0610 ThinkSystem RAID 940-16i 4GB Flash PCIe Gen4 12Gb Adapter + 8086 4000 RAID Controller RS3P4TF160F + 8086 4020 RAID Controller RS3P4MF088F + 10e3 MegaRAID 12GSAS/PCIe Unsupported SAS39xx + 1028 1ae0 PERC H755 Adapter - Tampered Device + 1028 1ae1 PERC H755 Front - Tampered Device + 1028 1ae2 PERC H755N Front - Tampered Device + 1028 1ae3 PERC H755 MX - Tampered Device + 10e4 MegaRAID 12GSAS/PCIe Unsupported SAS38xx + 10e5 MegaRAID 12GSAS/PCIe SAS38xx + 10e6 MegaRAID 12GSAS/PCIe Secure SAS38xx + 1028 2172 PERC H355 Adapter + 1028 2173 PERC H355 Front + 1028 2174 PERC H350 Mini + 1028 2177 PERC H350 Adapter + 1028 2199 PERC H350 Mini LP + 1d49 0505 ThinkSystem RAID 540-8i PCIe Gen4 12Gb Adapter + 1d49 0506 ThinkSystem RAID 540-16i PCIe Gen4 12Gb Adapter + 10e7 MegaRAID 12GSAS/PCIe Unsupported SAS38xx + 1960 MegaRAID + 1000 0518 MegaRAID 518 SCSI 320-2 Controller + 1000 0520 MegaRAID 520 SCSI 320-1 Controller + 1000 0522 MegaRAID 522 i4 133 RAID Controller + 1000 0523 MegaRAID SATA 150-6 RAID Controller + 1000 4523 MegaRAID SATA 150-4 RAID Controller + 1000 a520 MegaRAID ZCR SCSI 320-0 Controller + 1028 0518 MegaRAID 518 DELL PERC 4/DC RAID Controller + 1028 0520 MegaRAID 520 DELL PERC 4/SC RAID Controller + 1028 0531 PowerEdge Expandable RAID Controller 4/QC + 1028 0533 PowerEdge Expandable RAID Controller 4/QC + 8086 0520 MegaRAID RAID Controller SRCU41L + 8086 0523 MegaRAID RAID Controller SRCS16 + 3050 SAS2008 PCI-Express Fusion-MPT SAS-2 + 6001 DX1 Multiformat Broadcast HD/SD Encoder/Decoder + c010 PEX88048 50 lane, 50 port, PCI Express Gen 4.0 ExpressFabric Platform + c012 PEX880xx PCIe Gen 4 Switch + 1d49 0003 ThinkSystem 1611-8P PCIe Gen4 NVMe Switch Adapter + c030 PEX890xx PCIe Gen 5 Switch +1001 Kolter Electronic + 0010 PCI 1616 Measurement card with 32 digital I/O lines + 0011 OPTO-PCI Opto-Isolated digital I/O board + 0012 PCI-AD/DA Analogue I/O board + 0013 PCI-OPTO-RELAIS Digital I/O board with relay outputs + 0014 PCI-Counter/Timer Counter Timer board + 0015 PCI-DAC416 Analogue output board + 0016 PCI-MFB Analogue I/O board + 0017 PROTO-3 PCI Prototyping board + 9100 INI-9100/9100W SCSI Host +# nee ATI Technologies, Inc. +1002 Advanced Micro Devices, Inc. [AMD/ATI] + 1304 Kaveri + 1305 Kaveri + 1306 Kaveri + 1307 Kaveri + 1308 Kaveri HDMI/DP Audio Controller + 17aa 3988 Z50-75 + 1309 Kaveri [Radeon R6/R7 Graphics] + 17aa 3830 Z50-75 + 130a Kaveri [Radeon R6 Graphics] + 130b Kaveri [Radeon R4 Graphics] + 130c Kaveri [Radeon R7 Graphics] + 130d Kaveri [Radeon R6 Graphics] + 130e Kaveri [Radeon R5 Graphics] + 130f Kaveri [Radeon R7 Graphics] + 1310 Kaveri + 1311 Kaveri + 1312 Kaveri + 1313 Kaveri [Radeon R7 Graphics] + 1314 Wrestler HDMI Audio + 174b 1001 PURE Fusion Mini + 1315 Kaveri [Radeon R5 Graphics] + 1316 Kaveri [Radeon R5 Graphics] + 1317 Kaveri + 1318 Kaveri [Radeon R5 Graphics] + 131b Kaveri [Radeon R4 Graphics] + 131c Kaveri [Radeon R7 Graphics] + 131d Kaveri [Radeon R6 Graphics] + 13e9 Ariel + 13fe Cyan Skillfish + 1478 Navi 10 XL Upstream Port of PCI Express Switch + 1479 Navi 10 XL Downstream Port of PCI Express Switch + 154c Kryptos [Radeon RX 350] + 1462 7c28 MS-7C28 Motherboard + 154e Garfield + 1551 Arlene + 1552 Pooky + 1561 Anubis + 15d8 Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile Series] + 103c 8615 Pavilion Laptop 15-cw1xxx + 17aa 3181 ThinkCentre M75n IoT + 17aa 5124 ThinkPad E595 + ea50 cc10 RXi2-BP + 15dd Raven Ridge [Radeon Vega Series / Radeon Vega Mobile Series] + 103c 83c6 Radeon Vega 8 Mobile + 1043 876b PRIME Motherboard + 1458 d000 Radeon RX Vega 11 + ea50 cc10 RXi2-BP + 15de Raven/Raven2/Fenghuang HDMI/DP Audio Controller + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME B450M-A Motherboard + 17aa 5124 ThinkPad E595 + ea50 cc10 RXi2-BP + 15df Raven/Raven2/Fenghuang/Renoir Cryptographic Coprocessor + 103c 8615 Pavilion Laptop 15-cw1xxx + ea50 ce19 mCOM10-L1900 + 15e7 Barcelo + 15ff Fenghuang [Zhongshan Subor Z+] + 1607 Arden + 1636 Renoir + 1637 Renoir Radeon High Definition Audio Controller + 1638 Cezanne +# Used in the Steam Deck + 163f VanGogh [AMD Custom GPU 0405] + 1640 Rembrandt Radeon High Definition Audio Controller + 164c Lucienne + 164d Rembrandt + 1681 Rembrandt [Radeon 680M] + 1714 BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series] + 103c 168b ProBook 4535s + 3150 RV380/M24 [Mobility Radeon X600] + 103c 0934 nx8220 + 3151 RV380 GL [FireMV 2400] + 3152 RV370/M22 [Mobility Radeon X300] + 3154 RV380/M24 GL [Mobility FireGL V3200] + 3155 RV380 GL [FireMV 2400] + 3171 RV380 GL [FireMV 2400] (Secondary) + 3e50 RV380 [Radeon X550/X600] + 3e54 RV380 GL [FireGL V3200] + 3e70 RV380 [Radeon X550/X600] (Secondary) + 4136 RS100 [Mobility IGP 320M] + 4137 RS200 [Radeon IGP 340] + 4144 R300 [Radeon 9500] + 4146 R300 [Radeon 9700 PRO] + 4147 R300 GL [FireGL Z1] + 4148 R350 [Radeon 9800/9800 SE] + 4150 RV350 [Radeon 9550/9600/X1050 Series] + 1002 0002 R9600 Pro primary (Asus OEM for HP) + 1002 0003 R9600 Pro secondary (Asus OEM for HP) + 1002 4722 All-in-Wonder 2006 AGP Edition + 1458 4024 GV-R96128D + 148c 2064 R96A-C3N + 148c 2066 R96A-C3N + 174b 7c19 Atlantis Radeon 9600 Pro + 174b 7c29 GC-R9600PRO + 17ee 2002 Radeon 9600 256Mb Primary + 18bc 0101 GC-R9600PRO (Primary) + 4151 RV350 [Radeon 9600 Series] + 1043 c004 A9600SE + 174b 7c37 Radeon 9600SE 128M DDR V/D/VO + 4152 RV360 [Radeon 9600/X1050 Series] + 1002 0002 Radeon 9600XT + 1002 4772 All-in-Wonder 9600 XT + 1043 c002 Radeon 9600 XT TVD + 1043 c01a A9600XT/TD + 1462 9510 RX9600XT (MS-8951) + 174b 7c29 Radeon 9600XT + 1787 4002 Radeon 9600 XT + 4153 RV350 [Radeon 9550] + 1043 010c A9550GE/TD + 1462 932c RX9550SE-TD128 (MS-8932) + 4154 RV350 GL [FireGL T2] + 4155 RV350 [Radeon 9600] + 4157 RV350 GL [FireGL T2] + 4158 68800AX [Graphics Ultra Pro PCI] + 4164 R300 [Radeon 9500 PRO] (Secondary) + 4165 R300 [Radeon 9700 PRO] (Secondary) + 4166 R300 [Radeon 9700 PRO] (Secondary) + 4168 RV350 [Radeon 9800 SE] (Secondary) + 4170 RV350 [Radeon 9550/9600/X1050 Series] (Secondary) + 1002 0003 R9600 Pro secondary (Asus OEM for HP) + 1002 4723 All-in-Wonder 2006 AGP Edition (Secondary) + 1458 4025 GV-R96128D (Secondary) + 148c 2067 R96A-C3N (Secondary) + 174b 7c28 GC-R9600PRO (Secondary) + 17ee 2003 Radeon 9600 256Mb (Secondary) + 18bc 0100 GC-R9600PRO (Secondary) + 4171 RV350 [Radeon 9600] (Secondary) + 1043 c005 A9600SE (Secondary) + 174b 7c36 Radeon 9600SE 128M DDR V/D/VO (secondary) + 4172 RV350 [Radeon 9600/X1050 Series] (Secondary) + 1002 0003 Radeon 9600XT (Secondary) + 1002 4773 All-in-Wonder 9600 XT (Secondary) + 1043 c003 A9600XT (Secondary) + 1043 c01b A9600XT/TD (Secondary) + 174b 7c28 Radeon 9600XT (Secondary) + 1787 4003 Radeon 9600 XT (Secondary) + 4173 RV350 [Radeon 9550] (Secondary) + 1043 010d A9550GE/TD (Secondary) + 4242 R200 [All-In-Wonder Radeon 8500 DV] + 1002 02aa Radeon 8500 AIW DV Edition + 4243 R200 PCI Bridge [All-in-Wonder Radeon 8500DV] + 4336 RS100 [Radeon IGP 320M] + 1002 4336 Pavilion ze4300 ATI Radeon Mobility U1 (IGP 320 M) + 103c 0024 Pavilion ze4400 builtin Video + 161f 2029 eMachines M5312 builtin Video + 4337 RS200M [Radeon IGP 330M/340M/345M/350M] + 1014 053a ThinkPad R40e + 103c 0850 Radeon IGP 345M + 4341 SB200 AC97 Audio Controller + 4342 SB200 PCI to PCI Bridge + 4345 SB200 EHCI USB Controller + 4346 Crayola 6 [XENOS Parent Die (XBOX 360)] + 4347 SB200 OHCI USB Controller #1 + 4348 SB200 OHCI USB Controller #2 + 4349 SB200 IDE Controller + 434c SB200 PCI to LPC Bridge + 434d SB200 AC97 Modem Controller + 4353 SB200 SMBus Controller + 4354 215CT [Mach64 CT PCI] + 4358 Mach64 CX [Graphics Xpression] + 4361 SB300 AC'97 Audio Controller + 4362 SB300 PCI to PCI Bridge + 4363 SB300 SMBus Controller + 4365 SB300 USB Controller (EHCI) + 4367 SB300 USB Controller (EHCI) + 4368 SB300 USB Controller (EHCI) + 4369 SB300 IDE Controller + 436c SB300 PCI to LPC Bridge + 436d SB300 AC97 Modem Controller + 436e SB300 Serial ATA Controller + 4370 IXP SB400 AC'97 Audio Controller + 1025 0079 Aspire 5024WLMMi + 1025 0091 Aspire 5032WXMi + 103c 2a05 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 105b 0c81 Realtek ALC 653 + 107b 0300 MX6421 + 1462 0131 MS-1013 Notebook + 4371 IXP SB4x0 PCI-PCI Bridge + 103c 308b MX6125 + 1462 7217 Aspire L250 + 4372 IXP SB4x0 SMBus Controller + 1025 0080 Aspire 5024WLMMi + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 0131 MS-1013 Notebook + 1462 7217 Aspire L250 + 4373 IXP SB4x0 USB2 Host Controller + 1025 0080 Aspire 5024WLMMi + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 7217 Aspire L250 + 4374 IXP SB4x0 USB Host Controller + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 7217 Aspire L250 + 4375 IXP SB4x0 USB Host Controller + 1025 0080 Aspire 5024WLMMi + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 7217 Aspire L250 + 4376 IXP SB4x0 IDE Controller + 1025 0080 Aspire 5024WLMMi + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 0131 MS-1013 Notebook + 1462 7217 Aspire L250 + 4377 IXP SB4x0 PCI-ISA Bridge + 1025 0080 Aspire 5024WLMi + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 7217 Aspire L250 + 4378 IXP SB400 AC'97 Modem Controller + 1025 0080 Aspire 5024WLMMi + 103c 308b MX6125 + 1462 0131 MS-1013 Notebook + 4379 IXP SB4x0 Serial ATA Controller + 1462 7141 Aspire L250 + 437a IXP SB400 Serial ATA Controller + 1002 4379 4379 Serial ATA Controller + 1002 437a 437A Serial ATA Controller + 1462 7141 Aspire L250 + 14f1 8800 Leadtek WinFast TV2000XP Expert + 437b IXP SB4x0 High Definition Audio Controller + 1002 437b IXP SB4x0 High Definition Audio Controller + 10cf 1326 Fujitsu Lifebook A3040 + 1734 10b8 Realtek High Definition Audio + 4380 SB600 Non-Raid-5 SATA + 103c 2813 DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1458 b003 GA-MA790FX-DS5 (rev. 1.0) + 1458 b005 Gigabyte GA-MA69G-S3H Motherboard + 1462 7327 K9AG Neo2 + 17f2 5999 KI690-AM2 Motherboard + 4381 SB600 SATA Controller (RAID 5 mode) + 4382 SB600 AC97 Audio + 4383 SBx00 Azalia (Intel HDA) + 1019 2120 A785GM-M + 103c 1611 Pavilion dm1z-3000 + 103c 280a DC5750 Microtower + 1043 8230 M3A78-EH Motherboard + 1043 836c M4A785TD Motherboard + 1043 8410 M4A89GTD PRO/USB3 Motherboard + 1043 841b M5A88-V EVO + 1043 8445 M5A78L LE + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1179 ff50 Satellite P305D-S8995E + 1458 a022 GA-MA770-DS3rev2.0 Motherboard + 1458 a102 GA-880GMA-USB3 + 1462 7596 760GM-E51(MS-7596) Motherboard + 17f2 5000 KI690-AM2 Motherboard + 4384 SBx00 PCI to PCI Bridge + 4385 SBx00 SMBus Controller + 1019 2120 A785GM-M + 103c 1611 Pavilion DM1Z-3000 + 103c 280a DC5750 Microtower + 1043 82ef M3A78-EH Motherboard + 1043 8389 M4A785TD Motherboard + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1179 ff50 Satellite P305D-S8995E + 1458 4385 GA-MA770-DS3rev2.0 Motherboard + 1462 7368 K9AG Neo2 + 1462 7596 760GM-E51(MS-7596) Motherboard + 15d9 a811 H8DGU + 174b 1001 PURE Fusion Mini + 17f2 5000 KI690-AM2 Motherboard + 4386 SB600 USB Controller (EHCI) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 4387 SB600 USB (OHCI0) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 4388 SB600 USB (OHCI1) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 4389 SB600 USB (OHCI2) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 438a SB600 USB (OHCI3) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 438b SB600 USB (OHCI4) + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 438c SB600 IDE + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1458 5002 Gigabyte GA-MA69G-S3H Motherboard + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 438d SB600 PCI to LPC Bridge + 103c 280a DC5750 Microtower + 1179 ff50 Satellite P305D-S8995E + 1462 7368 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 438e SB600 AC97 Modem + 4390 SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode] + 1043 82ef M3A78-EH Motherboard + 1043 8389 M4A785TD Motherboard + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1458 b002 GA-MA770-DS3rev2.0 Motherboard + 1462 7596 760GM-E51(MS-7596) Motherboard + 1849 4390 Motherboard (one of many) + 4391 SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] + 103c 1609 ProLiant MicroServer N36L + 103c 1611 Pavilion DM1Z-3000 + 1043 82ef M3A78-EH Motherboard + 1043 8443 M5A88-V EVO + 1043 84dd M5A99X EVO (R1.0) SB950 + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1458 b002 GA-880GMA-USB3 + 174b 1001 PURE Fusion Mini + 4392 SB7x0/SB8x0/SB9x0 SATA Controller [Non-RAID5 mode] + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 4393 SB7x0/SB8x0/SB9x0 SATA Controller [RAID5 mode] + 4394 SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] + 4395 SB8x0/SB9x0 SATA Controller [Storage mode] + 4396 SB7x0/SB8x0/SB9x0 USB EHCI Controller + 1019 2120 A785GM-M + 103c 1609 ProLiant MicroServer N36L + 103c 1611 Pavilion DM1Z-3000 + 1043 82ef M3A78-EH Motherboard + 1043 8443 M5A88-V EVO + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1458 5004 GA-880GMA-USB3 + 1462 7596 760GM-E51(MS-7596) Motherboard + 15d9 a811 H8DGU + 174b 1001 PURE Fusion Mini + 4397 SB7x0/SB8x0/SB9x0 USB OHCI0 Controller + 1019 2120 A785GM-M + 103c 1609 ProLiant MicroServer N36L + 103c 1611 Pavilion DM1Z-3000 + 1043 82ef M3A78-EH Motherboard + 1043 8443 M5A88-V EVO + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1458 5004 GA-880GMA-USB3 + 1462 7596 760GM-E51(MS-7596) Motherboard + 15d9 a811 H8DGU + 174b 1001 PURE Fusion Mini + 4398 SB7x0 USB OHCI1 Controller + 1019 2120 A785GM-M + 1043 82ef M3A78-EH Motherboard + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1462 7596 760GM-E51(MS-7596) Motherboard + 15d9 a811 H8DGU + 4399 SB7x0/SB8x0/SB9x0 USB OHCI2 Controller + 1019 2120 A785GM-M + 1043 82ef M3A78-EH Motherboard + 1043 8443 M5A88-V EVO + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1458 5004 GA-880GMA-USB3 + 1462 7596 760GM-E51(MS-7596) Motherboard + 174b 1001 PURE Fusion Mini + 439c SB7x0/SB8x0/SB9x0 IDE Controller + 1002 4392 MSI MS-7713 motherboard + 1019 2120 A785GM-M + 103c 1609 ProLiant MicroServer N36L + 1043 82ef M3A78-EH Motherboard + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1462 7596 760GM-E51(MS-7596) Motherboard + 439d SB7x0/SB8x0/SB9x0 LPC host controller + 1019 2120 A785GM-M + 103c 1609 ProLiant MicroServer N36L + 103c 1611 Pavilion DM1Z-3000 + 1043 82ef M3A78-EH Motherboard + 1043 8443 M5A88-V EVO + 105b 0e13 N15235/A74MX mainboard / AMD SB700 + 1462 7596 760GM-E51(MS-7596) Motherboard + 174b 1001 PURE Fusion Mini + 43a0 SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0) + 43a1 SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1) + 43a2 SB900 PCI to PCI bridge (PCIE port 2) + 43a3 SB900 PCI to PCI bridge (PCIE port 3) + 4437 RS250 [Mobility Radeon 7000 IGP] + 4554 210888ET [Mach64 ET] + 4630 XENOS Parent Die (XBOX 360) + 4631 XENOS Daughter Die (XBOX 360) + 4654 Mach64 VT + 4742 Rage 3 [3D Rage PRO AGP 2X] + 1002 0040 Rage Pro Turbo AGP 2X + 1002 0044 Rage Pro Turbo AGP 2X + 1002 0061 Rage Pro AIW AGP 2X + 1002 0062 Rage Pro AIW AGP 2X + 1002 0063 Rage Pro AIW AGP 2X + 1002 0080 Rage Pro Turbo AGP 2X + 1002 0084 Rage Pro Turbo AGP 2X + 1002 4742 Rage Pro Turbo AGP 2X + 1002 8001 Rage Pro Turbo AGP 2X + 1028 0082 Rage Pro Turbo AGP 2X + 1028 4082 Optiplex GX1 Onboard Display Adapter + 1028 8082 Rage Pro Turbo AGP 2X + 1028 c082 Rage Pro Turbo AGP 2X + 8086 4152 Xpert 98D AGP 2X + 8086 464a Rage Pro Turbo AGP 2X + 4744 Rage 3 [3D Rage PRO AGP 1X] + 1002 4744 Rage Pro Turbo AGP + 8086 4d55 Rage 3D Pro AGP 1X [Intel MU440EX] + 4749 3D Rage PRO PCI + 1002 0061 Rage Pro AIW + 1002 0062 Rage Pro AIW + 474d Rage XL AGP 2X + 1002 0004 Xpert 98 RXL AGP 2X + 1002 0008 Xpert 98 RXL AGP 2X + 1002 0080 Rage XL AGP 2X + 1002 0084 Xpert 98 AGP 2X + 1002 474d Rage XL AGP + 1033 806a Rage XL AGP + 474e Rage XC AGP + 1002 474e Rage XC AGP + 474f Rage XL + 1002 0008 Rage XL + 1002 474f Rage XL + 4750 3D Rage Pro PCI + 1002 0040 Rage Pro Turbo + 1002 0044 Rage Pro Turbo + 1002 0080 Rage Pro Turbo + 1002 0084 Rage Pro Turbo + 1002 4750 Rage Pro Turbo + 4752 Rage 3 [Rage XL PCI] + 0e11 001e Proliant Rage XL + 1002 0008 Rage XL + 1002 4752 Proliant Rage XL + 1002 8008 Rage XL + 1014 0240 eServer xSeries server mainboard + 1028 00ce PowerEdge 1400 + 1028 00d1 PowerEdge 2550 + 1028 00d9 PowerEdge 2500 + 1028 0134 PowerEdge 600SC + 1028 014a PowerEdge 1750 + 1028 0165 PowerEdge 750 + 103c 10e1 NetServer Rage XL + 103c 3208 ProLiant DL140 G2 + 107b 6400 6400 Server + 1734 007a PRIMERGY RX/TX series onboard VGA + 1734 1073 Primergy Econel 200 D2020 mainboard + 8086 3411 SDS2 Mainboard + 8086 3427 S875WP1-E mainboard + 8086 5744 S845WD1-E mainboard + 4753 Rage XC + 1002 4753 Rage XC + 4754 Mach64 GT/GT-B [3D Rage I/II] + 4755 Mach64 GT-B [3D Rage II+ DVD] + 4756 Rage 2 [3D Rage IIC PCI] + 1002 4756 Rage IIC + 4757 Rage 2 [3D Rage IIC AGP] + 1002 4757 Rage IIC AGP + 1028 0089 Rage 3D IIC + 1028 008e PowerEdge 1300 onboard video + 1028 4082 Rage 3D IIC + 1028 8082 Rage 3D IIC + 1028 c082 Rage 3D IIC + 4758 Mach64 GX [WinTurbo] + 4759 Rage 3 [3D Rage IIC PCI] + 475a 3D Rage IIC AGP + 1002 0084 Rage 3D Pro AGP 2x XPERT 98 + 1002 0087 Rage 3D IIC + 1002 475a Rage IIC AGP + 4845 Xilleon 220 HBIU for HDTV2 + 4846 Xilleon 220 IDE for HDTV2 + 4847 Xilleon 220 USB for HDTV2 + 4848 Xilleon 220 DAIO-0 for HDTV2 + 4849 Xilleon 220 DAIO-1 for HDTV2 + 484a Xilleon 220 LPC for HDTV2 + 4850 Xilleon 215 HBIU for X215 + 4851 Xilleon 215 IDE for X215 + 4852 Xilleon 215 USB for X215 + 4853 Xilleon 215 DAIO-0 for X215 + 4854 Xilleon 215 DAIO-1 for X215 + 4855 Xilleon 225 HBIU for X225 + 4856 Xilleon 225 IDE for X225 + 4857 Xilleon 225 USB for X225 + 4858 Xilleon 225 DAIO-0 for X225 + 4859 Xilleon 225 DAIO-1 for X225 + 4860 Xilleon 210 HBIU for X210 + 4861 Xilleon 210 IDE for X210 + 4862 Xilleon 210 USB for X210 + 4863 Xilleon 210 DAIO-0 for X210 + 4864 Xilleon 210 DAIO-1 for X210 + 4865 Xilleon 226 HBIU for X226 + 4866 Xilleon 226 IDE for X226 + 4867 Xilleon 226 USB for X226 + 4868 Xilleon 226 DAIO-0 for X226 + 4869 Xilleon 226 DAIO-1 for X226 + 486a Xilleon 240S HBIU for X240S + 486b Xilleon 240H HBIU for X240H + 486c Xilleon 240S USB for X240S + 486d Xilleon 240H USB for X240H + 486e Xilleon 250 USB 1.1 for X250 + 486f Xilleon 260 USB 1.1 for X260 + 4870 Xilleon 250 HBIU for X250 + 4871 Xilleon 250 IDE for X250 + 4872 Xilleon 234/235 HBIU for X234/X235 + 4873 Xilleon 244/245 HBIU for X244/X245 + 4874 Xilleon 234/235 USB 1.1 for X234/X235 + 4875 Xilleon 260 HBIU for X260 + 4876 Xilleon 260 IDE for X260 + 4877 Xilleon 244/245 USB 1.1 for X244/X245 + 4878 Xilleon 270 HBIU for X270 + 487b Xilleon 242 HBIU for X242 + 487d Xilleon 242 USB 1.1 for X242 + 4880 Xilleon 254 HBIU for X254 + 4881 Xilleon 254 USB 1.1 for X254 + 4882 Xilleon 255 HBIU for X255 + 4883 Xilleon 255 USB 1.1 for X255 + 4884 Xilleon 243 HBIU for X243 + 4885 Xilleon 243 USB 1.1 for X243 + 4886 Xilleon 233 HBIU for X233 + 4887 Xilleon 233 USB 1.1 for X233 + 4888 Xilleon 143 HBIU for X143 + 4889 Xilleon 143 HBIU for X143L + 488a Xilleon 143 HBIU for X143S + 4966 RV250 [Radeon 9000 Series] + 10f1 0002 RV250 If [Tachyon G9000 PRO] + 148c 2039 RV250 If [Radeon 9000 Pro "Evil Commando"] + 1509 9a00 RV250 If [Radeon 9000 "AT009"] + 1681 0040 RV250 If [3D prophet 9000] + 174b 7176 Radeon 9000 Pro + 174b 7192 RV250 If [Radeon 9000 "Atlantis"] + 17af 2005 RV250 If [Excalibur Radeon 9000 Pro] + 17af 2006 RV250 If [Excalibur Radeon 9000] + 496e RV250 [Radeon 9000] (Secondary) + 4a49 R420 [Radeon X800 PRO/GTO AGP] + 174b 2620 R420 [Radeon X800 GTO AGP] + 4a4a R420 [Radeon X800 GT AGP] + 4a4b R420 [Radeon X800 AGP Series] + 4a4d R420 GL [FireGL X3-256] + 4a4e RV420/M18 [Mobility Radeon 9800] + 4a4f R420 [Radeon X850 AGP] + 4a50 R420 [Radeon X800 XT Platinum Edition AGP] + 4a54 R420 [Radeon X800 VE AGP] + 1002 4422 All-In-Wonder X800 VE AGP + 4a69 R420 [Radeon X800 PRO/GTO] (Secondary) + 4a6a R420 [Radeon X800] (Secondary) + 4a6b R420 [Radeon X800 XT AGP] (Secondary) + 4a70 R420 [Radeon X800 XT Platinum Edition AGP] (Secondary) + 4a74 R420 [Radeon X800 VE] (Secondary) + 4b49 R481 [Radeon X850 XT AGP] + 4b4b R481 [Radeon X850 PRO AGP] + 4b4c R481 [Radeon X850 XT Platinum Edition AGP] + 4b69 R481 [Radeon X850 XT AGP] (Secondary) + 4b6b R481 [Radeon X850 PRO AGP] (Secondary) + 4b6c R481 [Radeon X850 XT Platinum Edition AGP] (Secondary) + 4c42 Mach64 LT [3D Rage LT PRO AGP] + 0e11 b0e7 Rage LT Pro (Compaq Presario 5240) + 0e11 b0e8 Rage 3D LT Pro + 0e11 b10e 3D Rage LT Pro (Compaq Armada 1750) + 1002 0040 Rage LT Pro AGP 2X + 1002 0044 Rage LT Pro AGP 2X + 1002 4c42 Rage LT Pro AGP 2X + 1002 8001 Rage LT Pro AGP 2X + 1028 0085 Rage 3D LT Pro + 4c46 Rage Mobility 128 AGP 2X/Mobility M3 + 1002 0155 IBM Thinkpad A22p + 1014 0155 Thinkpad A22p + 1028 00b1 Latitude C600 + 4c47 3D Rage IIC PCI / Mobility Radeon 7500/7500C + 4c49 3D Rage LT PRO PCI + 1002 0004 Rage LT Pro + 1002 0040 Rage LT Pro + 1002 0044 Rage LT Pro + 1002 4c49 Rage LT Pro + 4c4d Rage Mobility AGP 2x Series + 0e11 b111 Armada M700 + 0e11 b160 Armada E500 + 1002 0084 Xpert 98 AGP 2X (Mobility) + 1014 0154 ThinkPad A20m/A21m + 1028 00aa Latitude CPt + 1028 00bb Latitude CPx + 1179 ff00 Satellite 1715XCDS laptop + 13bd 1019 PC-AR10 + 4c50 Rage 3 LT [3D Rage LT PRO PCI] + 1002 4c50 Rage LT Pro + 4c52 M1 [Rage Mobility-M1 PCI] + 1033 8112 Versa Note VXi + 4c54 264LT [Mach64 LT] + 4c57 RV200/M7 [Mobility Radeon 7500] + 1014 0517 ThinkPad T30 + 1014 0530 ThinkPad T4x Series + 1028 00e6 Radeon Mobility M7 LW (Dell Inspiron 8100) + 1028 012a Latitude C640 + 1043 1622 Mobility Radeon M7 (L3C/S) + 144d c006 Radeon Mobility M7 LW in vpr Matrix 170B4 + 4c58 RV200/M7 GL [Mobility FireGL 7800] + 4c59 RV100/M6 [Rage/Radeon Mobility Series] + 0e11 b111 Evo N600c + 1014 0235 ThinkPad A30/A30p (2652/2653) + 1014 0239 ThinkPad X22/X23/X24 + 103c 0025 XE4500 Notebook + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 104d 8140 PCG-Z1SP laptop + 1509 1930 Medion MD9703 + 4c66 RV250/M9 GL [Mobility FireGL 9000/Radeon 9000] + 1014 054d ThinkPad T41 + 4c6e RV250/M9 [Mobility Radeon 9000] (Secondary) + 4d46 Rage Mobility 128 AGP 4X/Mobility M4 + 4d52 Theater 550 PRO PCI [ATI TV Wonder 550] + 4d53 Theater 550 PRO PCIe + 4e44 R300 [Radeon 9700/9700 PRO] + 1002 515e Radeon ES1000 + 1002 5965 Radeon ES1000 + 4e45 R300 [Radeon 9500 PRO/9700] + 1002 0002 Radeon R300 NE [Radeon 9500 Pro] + 1681 0002 Hercules 3D Prophet 9500 PRO [Radeon 9500 Pro] + 4e46 R300 [Radeon 9600 TX] + 4e47 R300 GL [FireGL X1] + 4e48 R350 [Radeon 9800 Series] + 4e49 R350 [Radeon 9800] + 4e4a R360 [Radeon 9800 XXL/XT] + 1002 4e4a R360 [Radeon 9800 XT] + 4e4b R350 GL [FireGL X2 AGP Pro] + 4e50 RV350/M10 / RV360/M11 [Mobility Radeon 9600 (PRO) / 9700] + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: ATI RV360/M11 [Mobility Radeon 9700] + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 144d c00c P35 notebook + 1462 0311 MSI M510A + 1734 1055 Amilo M1420W + 4e51 RV350 [Radeon 9550/9600/X1050 Series] + 4e52 RV350/M10 [Mobility Radeon 9500/9700 SE] + 144d c00c P35 notebook + 4e54 RV350/M10 GL [Mobility FireGL T2] + 4e56 RV360/M12 [Mobility Radeon 9550] + 4e64 R300 [Radeon 9700 PRO] (Secondary) + 4e65 R300 [Radeon 9500 PRO] (Secondary) + 1002 0003 Radeon R300 NE [Radeon 9500 Pro] + 1681 0003 Hercules 3D Prophet 9500 PRO [Radeon 9500 Pro] (Secondary) + 4e66 RV350 [Radeon 9600] (Secondary) + 4e67 R300 GL [FireGL X1] (Secondary) + 4e68 R350 [Radeon 9800 PRO] (Secondary) + 4e69 R350 [Radeon 9800] (Secondary) + 4e6a RV350 [Radeon 9800 XT] (Secondary) + 1002 4e6a R360 [Radeon 9800 XT] (Secondary) + 1002 4e71 M10 NQ [Radeon Mobility 9600] + 4e71 RV350/M10 [Mobility Radeon 9600] (Secondary) + 4f72 RV250 [Radeon 9000 Series] + 4f73 RV250 [Radeon 9000 Series] (Secondary) + 5044 All-In-Wonder 128 PCI + 1002 0028 Rage 128 AIW + 1002 0029 Rage 128 AIW + 5046 Rage 4 [Rage 128 PRO AGP 4X] + 1002 0004 Rage Fury Pro + 1002 0008 Rage Fury Pro/Xpert 2000 Pro + 1002 0014 Rage Fury Pro + 1002 0018 Rage Fury Pro/Xpert 2000 Pro + 1002 0028 Rage 128 Pro AIW AGP + 1002 002a Rage 128 Pro AIW AGP + 1002 0048 Rage Fury Pro + 1002 2000 Rage Fury MAXX AGP 4x (TMDS) (VGA device) + 1002 2001 Rage Fury MAXX AGP 4x (TMDS) (Extra device?!) + 5050 Rage 4 [Rage 128 PRO PCI / Xpert 128 PCI] + 1002 0008 Xpert 128 + 5052 Rage 4 [Rage 128 PRO AGP 4X] + 5144 R100 [Radeon 7200 / All-In-Wonder Radeon] + 1002 0008 Radeon 7000/Radeon VE + 1002 0009 Radeon 7000/Radeon + 1002 000a Radeon 7000/Radeon + 1002 001a Radeon 7000/Radeon + 1002 0029 Radeon AIW + 1002 0038 Radeon 7000/Radeon + 1002 0039 Radeon 7000/Radeon + 1002 008a Radeon 7000/Radeon + 1002 00ba Radeon 7000/Radeon + 1002 0139 Radeon 7000/Radeon + 1002 028a Radeon 7000/Radeon + 1002 02aa Radeon AIW + 1002 053a Radeon 7000/Radeon + 5148 R200 GL [FireGL 8800] + 1002 010a FireGL 8800 64Mb + 1002 0152 FireGL 8800 128Mb + 1002 0162 FireGL 8700 32Mb + 1002 0172 FireGL 8700 64Mb + 514c R200 [Radeon 8500/8500 LE] + 1002 003a Radeon R200 QL [Radeon 8500 LE] + 1002 013a Radeon 8500 + 148c 2026 R200 QL [Radeon 8500 Evil Master II Multi Display Edition] + 1681 0010 Radeon 8500 [3D Prophet 8500 128Mb] + 174b 7149 Radeon 8500 LE + 1787 0f08 Radeon R200 QL [PowerMagic Radeon 8500] + 514d R200 [Radeon 9100] + 5157 RV200 [Radeon 7500/7500 LE] + 1002 013a Radeon 7500 + 1002 0f2b ALL-IN-WONDER VE PCI + 1002 103a Dell Optiplex GX260 + 1458 4000 RV200 QW [RADEON 7500 PRO MAYA AR] + 148c 2024 RV200 QW [Radeon 7500LE Dual Display] + 148c 2025 RV200 QW [Radeon 7500 Evil Master Multi Display Edition] + 148c 2036 RV200 QW [Radeon 7500 PCI Dual Display] + 174b 7146 RV200 QW [Radeon 7500 LE] + 174b 7147 Radeon 7500 LE + 174b 7161 Radeon RV200 QW [Radeon 7500 LE] + 17af 0202 RV200 QW [Excalibur Radeon 7500LE] + 5159 RV100 [Radeon 7000 / Radeon VE] + 1002 000a Radeon 7000/Radeon VE + 1002 000b Radeon 7000 + 1002 0038 Radeon 7000/Radeon VE + 1002 003a Radeon 7000/Radeon VE + 1002 00ba Radeon 7000/Radeon VE + 1002 013a Radeon 7000/Radeon VE + 1002 0908 XVR-100 (supplied by Sun) +# The IBM card doubles as an ATI PCI video adapter + 1014 029a Remote Supervisor Adapter II (RSA2) + 1014 02c8 eServer xSeries server mainboard + 1028 016c PowerEdge 1850 Embedded Radeon 7000/VE + 1028 016d PowerEdge 2850 Embedded Radeon 7000-M + 1028 0170 PowerEdge 6850 Embedded Radeon 7000/VE + 1028 019a PowerEdge SC1425 + 103c 1292 Radeon 7000 + 1043 c00a A7000/T/64M + 1458 4002 RV100 QY [RADEON 7000 PRO MAYA AV Series] + 148c 2003 RV100 QY [Radeon 7000 Multi-Display Edition] + 148c 2023 RV100 QY [Radeon 7000 Evil Master Multi-Display] + 148c 2081 RV6DE + 174b 0280 Radeon RV100 QY [Radeon 7000/VE] + 174b 7112 Radeon VE 7000 + 174b 7c28 Radeon VE 7000 DDR + 1787 0202 RV100 QY [Excalibur Radeon 7000] + 17ee 1001 Radeon 7000 64MB DDR + DVI + 515e ES1000 + 1028 01bb PowerEdge 1955 Embedded ATI ES1000 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 1028 01f0 PowerEdge R900 Embedded ATI ES1000 + 1028 0205 PowerEdge 2970 Embedded ATI ES1000 + 1028 020b PowerEdge T605 Embedded ATI ES1000 + 1028 020f PowerEdge R300 Embedded ATI ES1000 + 1028 0210 PowerEdge T300 Embedded ATI ES1000 + 1028 0221 PowerEdge R805 Embedded ATI ES1000 + 1028 0223 PowerEdge R905 Embedded ATI ES1000 + 1028 0225 PowerEdge T105 Embedded ATI ES1000 + 1028 023c PowerEdge R200 Embedded ATI ES1000 + 103c 1304 Integrity iLO2 Advanced KVM VGA [AD307A] + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 5245 Rage 128 GL PCI + 1002 0008 Xpert 128 + 1002 0028 Rage 128 AIW + 1002 0029 Rage 128 AIW + 1002 0068 Rage 128 AIW + 5246 Rage 128 (Rage 4) series + 1002 0004 Magnum/Xpert 128/Xpert 99 + 1002 0008 Rage 128 AGP 2x + 1002 0028 Rage 128 AIW AGP + 1002 0044 Rage Fury/Xpert 128/Xpert 2000 + 1002 0068 Rage 128 AIW AGP + 1002 0448 Rage Fury + 524b Rage 128 VR PCI + 524c Rage 128 VR AGP + 1002 0008 Xpert 99/Xpert 2000 + 1002 0088 Xpert 99 + 534d Rage 128 4X AGP 4x + 1002 0008 Xpert 99/Xpert 2000 + 1002 0018 Xpert 2000 + 5354 Mach 64 VT + 1002 5654 Mach 64 reference + 5446 Rage 128 PRO Ultra AGP 4x + 1002 0004 Rage Fury Pro + 1002 0008 Rage Fury Pro/Xpert 2000 Pro + 1002 0018 Rage Fury Pro/Xpert 2000 Pro + 1002 0028 Rage 128 AIW Pro AGP + 1002 0029 Rage 128 AIW + 1002 002a Rage 128 AIW Pro AGP + 1002 002b Rage 128 AIW + 1002 0048 Xpert 2000 Pro + 5452 Rage 128 PRO Ultra4XL VR-R AGP + 1002 001c Rage 128 Pro 4XL + 103c 1279 Rage 128 Pro 4XL + 5460 RV370/M22 [Mobility Radeon X300] + 1775 1100 CR11/VR11 Single Board Computer + 5461 RV370/M22 [Mobility Radeon X300] + 5462 RV380/M24C [Mobility Radeon X600 SE] + 5464 RV370/M22 GL [Mobility FireGL V3100] + 5549 R423 [Radeon X800 GTO] + 554a R423 [Radeon X800 XT Platinum Edition] + 554b R423 [Radeon X800 GT/SE] + 1002 0302 Radeon X800 SE + 554d R480 [Radeon X800 GTO2/XL] + 1002 0322 All-In-Wonder X800 XL + 1458 2124 GV-R80L256V-B (AGP) + 554e R430 [All-In-Wonder X800 GT] + 554f R430 [Radeon X800] + 5550 R423 GL [FireGL V7100] + 5551 R423 GL [FireGL V5100] + 5569 R423 [Radeon X800 PRO] (Secondary) + 556b R423 [Radeon X800 GT] (Secondary) + 556d R480 [Radeon X800 GTO2/XL] (Secondary) + 1458 2125 GV-R80L256V-B (AGP) + 556f R430 [Radeon X800] (Secondary) + 5571 R423 GL [FireGL V5100] (Secondary) + 564b RV410/M26 GL [Mobility FireGL V5000] + 564f RV410/M26 [Mobility Radeon X700 XL] + 5652 RV410/M26 [Mobility Radeon X700] + 5653 RV410/M26 [Mobility Radeon X700] + 1025 0080 Aspire 5024WLMi + 103c 0940 Compaq NW8240 Mobile Workstation + 5654 Mach64 VT [Video Xpression] + 1002 5654 Mach64VT Reference + 5655 264VT3 [Mach64 VT3] + 5656 Mach64 VT4 [Video Xpression+] + 5657 RV410 [Radeon X550 XTX / X700] + 5830 RS300 Host Bridge + 5831 RS300 Host Bridge + 5832 RS300 Host Bridge + 5833 RS300 Host Bridge + 5834 RS300 [Radeon 9100 IGP] + 5835 RS300M [Mobility Radeon 9100 IGP] + 5838 RS300 AGP Bridge + 5854 RS480 [Radeon Xpress 200 Series] (Secondary) + 5874 RS480 [Radeon Xpress 1150] (Secondary) + 5940 RV280 [Radeon 9200 PRO] (Secondary) + 17af 2021 Excalibur Radeon 9250 (Secondary) + 5941 RV280 [Radeon 9200] (Secondary) + 1458 4019 Radeon 9200 + 174b 7c12 Radeon 9200 + 17af 200d Excalibur Radeon 9200 + 18bc 0050 GC-R9200-C3 (Secondary) + 5944 RV280 [Radeon 9200 SE PCI] + 5950 RS480/RS482/RS485 Host Bridge + 1025 0080 Aspire 5024WLMMi + 103c 280a DC5750 Microtower + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 308b MX6125 + 1462 0131 MS-1013 Notebook + 1462 7217 Aspire L250 + 5951 RX480/RX482 Host Bridge + 5952 RD580 Host Bridge + 5954 RS480 [Radeon Xpress 200 Series] + 1002 5954 RV370 [Radeon Xpress 200G Series] + 5955 RS480M [Mobility Radeon Xpress 200] + 1002 5955 RS480 0x5955 [Radeon XPRESS 200M 5955 (PCIE)] + 103c 308b MX6125 + 1462 0131 MS-1013 Notebook + 5956 RD790 Host Bridge + 5957 RX780/RX790 Host Bridge + 1849 5957 A770CrossFire Motherboard + 5958 RD780 Host Bridge + 5960 RV280 [Radeon 9200 PRO / 9250] + 17af 2020 Excalibur Radeon 9250 + 5961 RV280 [Radeon 9200] + 1002 2f72 All-in-Wonder 9200 Series + 1019 4c30 Radeon 9200 VIVO + 12ab 5961 YUAN SMARTVGA Radeon 9200 + 1458 4018 Radeon 9200 + 174b 7c13 Radeon 9200 + 17af 200c Excalibur Radeon 9200 + 18bc 0050 Radeon 9200 Game Buster + 18bc 0051 GC-R9200-C3 + 18bc 0053 Radeon 9200 Game Buster VIVO + 5962 RV280 [Radeon 9200] + 5964 RV280 [Radeon 9200 SE] + 1002 5964 Radeon 9200 SE, 64-bit 128MB DDR, 200/166MHz + 1043 c006 Radeon 9200 SE / TD / 128M + 1458 4018 R92S128T (Radeon 9200 SE 128MB) + 1458 4032 Radeon 9200 SE 128MB + 147b 6191 R9200SE-DT + 148c 2073 CN-AG92E + 174b 7c13 Radeon 9200 SE + 1787 5964 Excalibur 9200SE VIVO 128M + 17af 2012 Radeon 9200 SE Excalibur + 18bc 0170 Sapphire Radeon 9200 SE 128MB Game Buster + 18bc 0173 GC-R9200L(SE)-C3H [Radeon 9200 Game Buster] + 5965 RV280 GL [FireMV 2200 PCI] + 5974 RS482/RS485 [Radeon Xpress 1100/1150] + 103c 280a DC5750 Microtower + 1462 7141 Aspire L250 + 5975 RS482M [Mobility Radeon Xpress 200] + 5978 RX780/RD790 PCI to PCI bridge (external gfx0 port A) + 1849 5957 A770CrossFire Motherboard + 5979 RD790 PCI to PCI bridge (external gfx0 port B) + 597a RD790 PCI to PCI bridge (PCI express gpp port A) + 597b RX780/RD790 PCI to PCI bridge (PCI express gpp port B) + 597c RD790 PCI to PCI bridge (PCI express gpp port C) + 597d RX780/RD790 PCI to PCI bridge (PCI express gpp port D) + 597e RD790 PCI to PCI bridge (PCI express gpp port E) + 1849 5957 A770CrossFire Motherboard + 597f RD790 PCI to PCI bridge (PCI express gpp port F) + 1849 5957 A770CrossFire Motherboard + 5980 RD790 PCI to PCI bridge (external gfx1 port A) + 5981 RD790 PCI to PCI bridge (external gfx1 port B) + 5982 RD790 PCI to PCI bridge (NB-SB link) + 5a10 RD890 Northbridge only dual slot (2x16) PCI-e GFX Hydra part + 5a11 RD890 Northbridge only single slot PCI-e GFX Hydra part + 5a12 RD890 Northbridge only dual slot (2x8) PCI-e GFX Hydra part + 15d9 a811 H8DGU + 5a13 RD890S/SR5650 Host Bridge + 5a14 RD9x0/RX980 Host Bridge + 5a15 RD890 PCI to PCI bridge (PCI express gpp port A) + 5a16 RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GFX port 0) + 5a17 RD890/RD9x0 PCI to PCI bridge (PCI Express GFX port 1) + 5a18 RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 0) + 15d9 a811 H8DGU + 5a19 RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 1) + 5a1a RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 2) + 5a1b RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 3) + 5a1c RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 4) + 5a1d RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 5) + 5a1e RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP2 Port 0) + 5a1f RD890/RD990 PCI to PCI bridge (PCI Express GFX2 port 0) + 15d9 a811 H8DGU + 5a20 RD890/RD990 PCI to PCI bridge (PCI Express GFX2 port 1) + 5a23 RD890S/RD990 I/O Memory Management Unit (IOMMU) + 5a31 RC410 Host Bridge + 5a33 RS400 Host Bridge + 5a34 RS4xx PCI Express Port [ext gfx] + 5a36 RC4xx/RS4xx PCI Express Port 1 + 5a37 RC4xx/RS4xx PCI Express Port 2 + 5a38 RC4xx/RS4xx PCI Express Port 3 + 5a39 RC4xx/RS4xx PCI Express Port 4 + 5a3f RC4xx/RS4xx PCI Bridge [int gfx] + 1462 7217 Aspire L250 + 5a41 RS400 [Radeon Xpress 200] + 5a42 RS400M [Radeon Xpress 200M] + 5a61 RC410 [Radeon Xpress 200/1100] + 5a62 RC410M [Mobility Radeon Xpress 200M] + 5b60 RV370 [Radeon X300] + 1043 002a Extreme AX300SE-X + 1043 032e Extreme AX300/TD + 1458 2102 GV-RX30S128D (X300SE) + 1462 0400 RX300SE-TD128E (MS-8940 REV:200) + 1462 0402 RX300SE-TD128E (MS-8940) + 174b 0500 Radeon X300 (PCIE) + 196d 1086 X300SE HM + 5b62 RV370 [Radeon X600/X600 SE] + 5b63 RV370 [Radeon X300/X550/X1050 Series] + 5b64 RV370 GL [FireGL V3100] + 5b65 RV370 GL [FireMV 2200] + 5b66 RV370X + 5b70 RV370 [Radeon X300 SE] +# RX300SE-TD128E + 1462 0403 Radeon X300 SE 128MB DDR + 174b 0501 Radeon X300 SE + 196d 1087 Radeon X300 SE HyperMemory + 5b72 RV380 [Radeon X300/X550/X1050 Series] (Secondary) + 5b73 RV370 [Radeon X300/X550/X1050 Series] (Secondary) + 5b74 RV370 GL [FireGL V3100] (Secondary) + 5b75 RV370 GL [FireMV 2200] (Secondary) + 5c61 RV280/M9+ [Mobility Radeon 9200 AGP] + 5c63 RV280/M9+ [Mobility Radeon 9200 AGP] + 1002 5c63 Apple iBook G4 2004 + 144d c00c P30 notebook + 5d44 RV280 [Radeon 9200 SE] (Secondary) + 1458 4019 R92S128T (Radeon 9200 SE 128MB Secondary) + 1458 4032 Radeon 9200 SE 128MB + 147b 6190 R9200SE-DT (Secondary) + 174b 7c12 Radeon 9200 SE (Secondary) + 1787 5965 Excalibur 9200SE VIVO 128M (Secondary) + 17af 2013 Radeon 9200 SE Excalibur (Secondary) + 18bc 0171 Radeon 9200 SE 128MB Game Buster (Secondary) + 18bc 0172 GC-R9200L(SE)-C3H [Radeon 9200 Game Buster] + 5d45 RV280 GL [FireMV 2200 PCI] (Secondary) + 5d48 R423/M28 [Mobility Radeon X800 XT] + 5d49 R423/M28 GL [Mobility FireGL V5100] + 5d4a R423/M28 [Mobility Radeon X800] + 5d4d R480 [Radeon X850 XT Platinum Edition] + 5d4e R480 [Radeon X850 SE] + 5d4f R480 [Radeon X800 GTO] + 5d50 R480 GL [FireGL V7200] + 5d52 R480 [Radeon X850 XT] + 1002 0b12 PowerColor X850XT PCIe (Primary) + 5d57 R423 [Radeon X800 XT] + 5d6d R480 [Radeon X850 XT Platinum Edition] (Secondary) + 5d6f R480 [Radeon X800 GTO] (Secondary) + 5d72 R480 [Radeon X850 XT] (Secondary) + 1002 0b13 PowerColor X850XT PCIe (Secondary) + 5d77 R423 [Radeon X800 XT] (Secondary) + 5e48 RV410 GL [FireGL V5000] + 5e49 RV410 [Radeon X700 Series] + 5e4a RV410 [Radeon X700 XT] + 5e4b RV410 [Radeon X700 PRO] + 5e4c RV410 [Radeon X700 SE] + 5e4d RV410 [Radeon X700] + 148c 2116 Bravo X700 + 5e4f RV410 [Radeon X700] + 1569 1e4f Radeon X550 XT + 5e6b RV410 [Radeon X700 PRO] (Secondary) + 5e6d RV410 [Radeon X700] (Secondary) + 148c 2117 Bravo X700 (Secondary) + 5f57 R423 [Radeon X800 XT] + 6600 Mars [Radeon HD 8670A/8670M/8750M / R7 M370] + 103c 1952 ProBook 455 G1 + 6601 Mars [Radeon HD 8730M] + 103c 2100 FirePro M4100 + 6604 Opal XT [Radeon R7 M265/M365X/M465] + 1025 0776 Aspire V5 Radeon R7 M265 + 103c 8006 FirePro M4170 + 103c 814f Litho XT [Radeon R7 M365X] + 103c 82aa Litho XT [Radeon R7 M465] + 17aa 3643 Radeon R7 A360 + 6605 Opal PRO [Radeon R7 M260X] + 103c 2259 FirePro M4150 + 6606 Mars XTX [Radeon HD 8790M] + 1028 0684 FirePro W4170M + 6607 Mars LE [Radeon HD 8530M / R5 M240] + 6608 Oland GL [FirePro W2100] + 13cc 3d28 MXRT-2600 + 6609 Oland GL [FirePro W2100 / Barco MXRT 2600] + 6610 Oland XT [Radeon HD 8670 / R5 340X OEM / R7 250/350/350X OEM] + 1019 0030 Radeon HD 8670 + 1028 0081 Radeon R7 350X OEM + 1028 0083 Radeon R5 340X OEM + 1028 2120 Radeon R7 250 + 1028 2322 Radeon R7 250 + 1462 2910 Radeon HD 8670 + 1462 2911 Radeon HD 8670 + 148c 7350 Radeon R7 350 + 1642 3c81 Radeon HD 8670 + 1642 3c91 Radeon HD 8670 + 1642 3f09 Radeon R7 350 + 6611 Oland [Radeon HD 8570 / R5 430 OEM / R7 240/340 / Radeon 520 OEM] + 1028 1001 Radeon R5 430 OEM (1024 MByte) + 1028 1002 Radeon R5 430 OEM (2048 MByte) +# The 'AMD Radeon R5 430' instead of 240/340 is NOT a typo! It's actually correct. + 1028 1711 R5 430 OEM (2048 MByte) + 1028 210b Radeon R5 240 OEM +# OEM-card for Dell; verified through AMD's own drivers (*.inf) and a TPU BIOS in database + 1028 2121 Radeon HD 8570 OEM +# OEM-card from Fujitsu; verified through AMD's own drivers (*.inf) + 10cf 1889 Radeon HD 8570 OEM + 1642 1869 Radeon 520 OEM + 174b 4248 Radeon R7 240 OEM + 174b a240 Radeon R7 240 OEM + 174b d340 Radeon R7 340 OEM + 1b0a 90d3 Radeon R7 240 OEM + 6613 Oland PRO [Radeon R7 240/340 / Radeon 520] + 148c 7340 Radeon R7 340 + 1682 7240 R7 240 2048 MB + 1dcf 3000 Oland PRO [Radeon R7 240/340 / Radeon 520] + 6631 Oland + 6640 Saturn XT [FirePro M6100] + 106b 014b Tropo XT [Radeon R9 M380 Mac Edition] + 6641 Saturn PRO [Radeon HD 8930M] + 6646 Bonaire XT [Radeon R9 M280X] + 6647 Saturn PRO/XT [Radeon R9 M270X/M280X] + 1043 223d N551ZU laptop Radeon R9 M280X + 6649 Bonaire [FirePro W5100] + 1002 0b0c FirePro W4300 + 103c 0b0c Bonaire [FirePro W4300] + 103c 230c FirePro W5100 + 13cc 3d2a MXRT-5600 + 664d Bonaire [FirePro W5100 / Barco MXRT-5600] + 6650 Bonaire + 6651 Bonaire + 6658 Bonaire XTX [Radeon R7 260X/360] + 1043 048f R7260X-DC2OC-2GD5 + 1043 04d3 AMD Radeon R7 260X +# GV-R726XOC-1GD + 1458 227b Radeon R7 260X + 148c 0907 Radeon R7 360 + 1682 0907 Radeon R7 360 + 1682 7360 Radeon R7 360 + 665c Bonaire XT [Radeon HD 7790/8770 / R7 360 / R9 260/360 OEM] + 1043 0452 Radeon HD 7790 DirectCU II OC +# R7790-1GD5/OC + 1462 2930 Radeon HD 7790 OC + 1462 2932 Radeon HD 8770 + 1462 2934 Radeon R9 260 OEM + 1462 2938 Radeon R9 360 OEM + 148c 0907 Radeon R7 360 + 148c 9260 Radeon R9 260 OEM + 148c 9360 Radeon R9 360 OEM + 1682 0907 Radeon R7 360 +# FX-779A-CDB4 / FX-779A-CDBC + 1682 3310 Radeon HD 7790 Black Edition 2 GB +# 100356OCL / 11210-01-20G + 174b e253 Radeon HD 7790 Dual-X OC + 1787 2329 Radeon HD 7790 TurboDuo + 665d Bonaire [Radeon R7 200 Series] + 665f Tobago PRO [Radeon R7 360 / R9 360 OEM] + 1028 0b04 Radeon R9 360 OEM + 1462 2938 Radeon R9 360 OEM + 1462 3271 Radeon R9 360 OEM + 1682 7360 Radeon R7 360 + 6660 Sun XT [Radeon HD 8670A/8670M/8690M / R5 M330 / M430 / Radeon 520 Mobile] + 1028 05ea Radeon HD 8670M + 1028 06bf Radeon R5 M335 + 103c 1970 Radeon HD 8670M + 103c 80be Radeon R5 M330 + 103c 8136 Radeon R5 M330 + 103c 8329 Radeon R7 M520 + 17aa 3633 Radeon R5 A330 + 17aa 3804 Radeon R5 M330 + 17aa 3809 Radeon R5 M330 + 17aa 381a Radeon R5 M430 + 17aa 390c Radeon R5 M330 + 6663 Sun PRO [Radeon HD 8570A/8570M] + 1025 0846 Radeon HD 8570A + 17aa 3805 Radeon HD 8570M + 6664 Jet XT [Radeon R5 M240] + 6665 Jet PRO [Radeon R5 M230 / R7 M260DX / Radeon 520 Mobile] + 17aa 1309 Z50-75 Radeon R7 M260DX + 17aa 368f Radeon R5 A230 + 6667 Jet ULT [Radeon R5 M230] + 666f Sun LE [Radeon HD 8550M / R5 M230] + 66a0 Vega 20 [Radeon Instinct] + 66a1 Vega 20 [Radeon Pro VII/Radeon Instinct MI50 32GB] + 66a2 Vega 20 + 66a3 Vega 20 [Radeon Pro Vega II/Radeon Pro Vega II Duo] + 66a7 Vega 20 [Radeon Pro Vega 20] + 66af Vega 20 [Radeon VII] + 6704 Cayman PRO GL [FirePro V7900] + 6707 Cayman LE GL [FirePro V5900] + 6718 Cayman XT [Radeon HD 6970] + 6719 Cayman PRO [Radeon HD 6950] + 671c Antilles [Radeon HD 6990] + 671d Antilles [Radeon HD 6990] + 671f Cayman CE [Radeon HD 6930] + 6720 Blackcomb [Radeon HD 6970M/6990M] + 1028 048f Radeon HD 6990M + 1028 0490 Alienware M17x R3 Radeon HD 6970M + 1028 04a4 FirePro M8900 + 1028 04ba Radeon HD 6990M + 1028 053f FirePro M8900 + 106b 0b00 Radeon HD 6970M + 1558 5102 Radeon HD 6970M + 1558 5104 Radeon HD 6990M + 1558 7201 Radeon HD 6990M + 174b e188 Radeon HD 6970M + 6738 Barts XT [Radeon HD 6870] +# HD-687A-ZDFC + 1682 3103 Radeon HD 8670 + 1787 201a Barts XT [Radeon HD 6870 X2] + 1787 201b Barts XT [Radeon HD 6870 X2] + 6739 Barts PRO [Radeon HD 6850] + 1043 03b4 EAH6850 [Radeon HD 6850] + 673e Barts LE [Radeon HD 6790] + 148c 7720 Radeon HD 7720 OEM + 6740 Whistler [Radeon HD 6730M/6770M/7690M XT] + 1019 238c Radeon HD 6730M + 1019 238e Radeon HD 6730M + 1019 2391 Radeon HD 6730M + 1019 2392 Radeon HD 6770M + 1028 04a3 Precision M4600 + 1028 053e FirePro M5950 + 103c 1630 FirePro M5950 + 103c 1631 FirePro M5950 + 103c 164b Radeon HD 6730M + 103c 164e Radeon HD 6730M + 103c 1657 Radeon HD 6770M + 103c 1658 Radeon HD 6770M + 103c 165a Radeon HD 6770M + 103c 165b Radeon HD 6770M + 103c 1688 Radeon HD 6770M + 103c 1689 Radeon HD 6770M + 103c 168a Radeon HD 6770M + 103c 185e Radeon HD 7690M XT + 103c 3388 Radeon HD 6770M + 103c 3389 Radeon HD 6770M + 103c 3582 Radeon HD 6770M + 103c 366c Radeon HD 6730M + 1043 1d02 Radeon HD 6730M + 1043 1d12 Radeon HD 6730M + 104d 9084 Radeon HD 6730M + 104d 9085 Radeon HD 6730M + 144d b074 Radeon HD 6730M + 144d b077 Radeon HD 6730M + 144d b084 Radeon HD 6730M + 144d b088 Radeon HD 6730M + 17aa 3982 Radeon HD 6730M + 6741 Whistler [Radeon HD 6630M/6650M/6750M/7670M/7690M] + 1019 238e Radeon HD 6650M + 1019 238f Radeon HD 6650M + 1025 0379 Radeon HD 6650M + 1025 037b Radeon HD 6650M + 1025 037e Radeon HD 6650M + 1025 0382 Radeon HD 6650M + 1025 0384 Radeon HD 6650M + 1025 0385 Radeon HD 6650M + 1025 0386 Radeon HD 6650M + 1025 0387 Radeon HD 6650M + 1025 0388 Radeon HD 6650M + 1025 0442 Radeon HD 6650M + 1025 0451 Radeon HD 6650M + 1025 0489 Radeon HD 6650M + 1025 048b Radeon HD 6650M + 1025 048c Radeon HD 6650M + 1025 050a Radeon HD 6650M + 1025 050b Radeon HD 6650M + 1025 050c Radeon HD 6650M + 1025 050e Radeon HD 6650M + 1025 050f Radeon HD 6650M + 1025 0513 Radeon HD 6650M + 1025 0514 Radeon HD 6650M + 1025 0515 Radeon HD 6650M + 1025 0516 Radeon HD 6650M + 1025 051e Radeon HD 6650M + 1025 051f Radeon HD 6650M + 1025 0520 Radeon HD 6650M + 1025 0521 Radeon HD 6650M + 1025 052a Radeon HD 6650M + 1025 0555 Radeon HD 6650M + 1025 0556 Radeon HD 6650M + 1025 055d Radeon HD 6650M + 1025 055e Radeon HD 6650M + 1025 056d Radeon HD 6650M + 1025 059a Radeon HD 6650M + 1025 059b Radeon HD 6650M + 1025 059e Radeon HD 6650M + 1025 059f Radeon HD 6650M + 1025 0600 Radeon HD 6650M + 1025 0605 Radeon HD 6650M + 1025 0606 Radeon HD 6650M + 1025 0619 Radeon HD 6650M + 1028 04c1 Radeon HD 6630M + 1028 04c5 Radeon HD 6630M + 1028 04cd Radeon HD 6630M + 1028 04d7 Radeon HD 6630M + 1028 04d9 Radeon HD 6630M + 1028 052d Radeon HD 6630M + 103c 1617 Radeon HD 6650M + 103c 1646 Radeon HD 6750M + 103c 1647 Radeon HD 6650M + 103c 164b Radeon HD 6650M + 103c 164e Radeon HD 6650M + 103c 1688 Radeon HD 6750M + 103c 1689 Radeon HD 6750M + 103c 168a Radeon HD 6750M + 103c 1860 Radeon HD 7690M + 103c 3385 Radeon HD 6630M + 103c 3560 Radeon HD 6750M + 103c 358d Radeon HD 6750M + 103c 3590 Radeon HD 6750M + 103c 3593 Radeon HD 6750M + 103c 366c Radeon HD 6650M + 1043 1cd2 Radeon HD 6650M + 1043 2121 Radeon HD 6650M + 1043 2122 Radeon HD 6650M + 1043 2123 Radeon HD 6650M + 1043 2125 Radeon HD 7670M + 1043 2127 Radeon HD 7670M + 104d 907b Radeon HD 6630M + 104d 9080 Radeon HD 6630M + 104d 9081 Radeon HD 6630M + 106b 00e2 MacBookPro8,2 [Core i7, 15", Late 2011] + 1179 fd63 Radeon HD 6630M + 1179 fd65 Radeon HD 6630M + 144d c093 Radeon HD 6650M + 144d c0ac Radeon HD 6650M + 144d c0b3 Radeon HD 6750M + 144d c539 Radeon HD 6630M + 144d c609 Radeon HD 6630M + 152d 0914 Radeon HD 6650M + 17aa 21e1 Radeon HD 6630M + 17aa 3970 Radeon HD 6650M + 17aa 3976 Radeon HD 6650M + 1854 0907 Radeon HD 6650M + 6742 Whistler LE [Radeon HD 6610M/7610M] + 1002 6570 Turks [Radeon HD 6570] + 1019 2393 Radeon HD 6610M + 1043 1d82 K53SK Laptop Radeon HD 7610M + 1179 fb22 Radeon HD 7610M + 1179 fb23 Radeon HD 7610M + 1179 fb27 Radeon HD 7610M + 1179 fb2a Radeon HD 7610M + 1179 fb2c Radeon HD 7610M + 1179 fb30 Radeon HD 7610M + 1179 fb31 Radeon HD 7610M + 1179 fb32 Radeon HD 7610M + 1179 fb38 Radeon HD 7610M + 1179 fb39 Radeon HD 7610M + 1179 fb3a Radeon HD 7610M + 1179 fb3b Radeon HD 7610M + 1179 fb40 Radeon HD 7610M + 1179 fb41 Radeon HD 7610M + 1179 fb47 Radeon HD 7610M + 1179 fb48 Radeon HD 7610M + 1179 fb49 Radeon HD 7610M + 1179 fb51 Radeon HD 7610M + 1179 fb52 Radeon HD 7610M + 1179 fb53 Radeon HD 7610M + 1179 fb56 Radeon HD 7610M + 1179 fb81 Radeon HD 7610M + 1179 fb82 Radeon HD 7610M + 1179 fb83 Radeon HD 7610M + 1179 fc56 Radeon HD 7610M + 1179 fcd4 Radeon HD 7610M + 1179 fcee Radeon HD 7610M + 1458 6570 Turks [Radeon HD 6570] + 1462 6570 Turks [Radeon HD 6570] + 148c 6570 Turks [Radeon HD 6570] + 1682 6570 Turks [Radeon HD 6570] + 174b 5570 Turks [Radeon HD 5570] + 174b 6570 Turks [Radeon HD 6570] + 174b 7570 Turks [Radeon HD 7570] + 174b 8510 Turks [Radeon HD 8510] + 174b 8570 Turks [Radeon HD 8570] + 1787 6570 Turks [Radeon HD 6570] + 17af 6570 Turks [Radeon HD 6570] + 8086 2111 Radeon HD 6625M + 6743 Whistler [Radeon E6760] + 6749 Turks GL [FirePro V4900] + 15c3 2b06 MED-X4900 (EIZO) + 674a Turks GL [FirePro V3900] + 13cc 3d22 MXRT-2500 + 15c3 0106 MED-X3900 + 6750 Onega [Radeon HD 6650A/7650A] + 1462 2670 Radeon HD 6670A + 17aa 3079 Radeon HD 7650A + 17aa 307a Radeon HD 6650A + 17aa 3087 Radeon HD 7650A + 17aa 3618 Radeon HD 6650A + 17aa 3623 Radeon HD 6650A + 17aa 3627 Radeon HD 6650A + 6751 Turks [Radeon HD 7650A/7670A] + 1028 0548 Radeon HD 7650A + 1462 2671 Radeon HD 7670A + 1462 2672 Radeon HD 7670A + 1462 2680 Radeon HD 7650A + 1462 2681 Radeon HD 7650A + 17aa 3087 Radeon HD 7650A + 6758 Turks XT [Radeon HD 6670/7670] + 1028 0b0e Radeon HD 6670 + 103c 6882 Radeon HD 6670 + 1462 250a Radeon HD 7670 + 148c 7670 Radeon HD 7670 + 1545 7670 Radeon HD 7670 + 1682 3300 Radeon HD 7670 + 174b 7670 Radeon HD 7670 + 174b e181 Radeon HD 6670 + 1787 2309 Radeon HD 6670 + 6759 Turks PRO [Radeon HD 6570/7570/8550 / R5 230] + 103c 3130 Radeon HD 6570 + 1043 0403 Radeon HD 6570 + 1462 2500 Radeon HD 6570 + 1462 2509 Radeon HD 7570 + 148c 7570 Radeon HD 7570 + 1642 3a67 Radeon HD 6570 + 1682 3280 Radeon HD 7570 + 1682 3530 Radeon HD 8550 + 1682 5230 Radeon R5 230 series + 1682 6450 Radeon HD 6450 series + 174b 7570 Radeon HD 7570 + 174b 8550 Radeon HD8550 OEM + 174b 8570 Radeon HD8550 OEM + 174b e142 Radeon HD 6570 + 174b e181 Radeon HD 6570 + 1787 a230 Radeon R5 230 series + 1787 a450 Radeon HD 6450 series + 1b0a 908f Radeon HD 6570 + 1b0a 9090 Radeon HD 6570 + 1b0a 9091 Radeon HD 6570 + 1b0a 9092 Radeon HD 6570 + 1b0a 909e Radeon HD 6570 + 1b0a 90b5 Radeon HD 7570 + 1b0a 90b6 Radeon HD 7570 + 675b Turks [Radeon HD 7600 Series] + 675d Turks PRO [Radeon HD 7570] + 675f Turks LE [Radeon HD 5570/6510/7510/8510] + 148c 6510 Radeon HD 6510 + 148c 6530 Radeon HD 6530 + 148c 7510 Radeon HD 7510 + 1545 7570 Radeon HD 7570 + 174b 6510 Radeon HD 6510 + 174b 7510 Radeon HD 7510 + 174b 8510 Radeon HD 8510 + 1787 2012 Radeon HD 5570 2GB GDDR3 + 1787 2314 Radeon HD 5570 1GB DDR2/GDDR3 + 6760 Seymour [Radeon HD 6400M/7400M Series] + 1002 0124 Radeon HD 6470M + 1002 0134 Radeon HD 6470M + 1019 238b Radeon HD 6470M + 1019 238e Radeon HD 6470M + 1019 2390 Radeon HD 6470M + 1019 9985 Radeon HD 6470M + 1028 04c1 Radeon HD 6470M + 1028 04c3 Radeon HD 6470M + 1028 04ca Radeon HD 6470M + 1028 04cb Radeon HD 6470M + 1028 04cc Vostro 3350 + 1028 04d1 Radeon HD 6470M + 1028 04d3 Radeon HD 6470M + 1028 04d7 Radeon HD 6470M + 1028 0502 Radeon HD 6470M + 1028 0503 Radeon HD 6470M + 1028 0506 Radeon HD 6470M + 1028 0507 Radeon HD 6470M + 1028 0514 Radeon HD 6470M + 1028 051c Radeon HD 6450M + 1028 051d Radeon HD 6450M + 103c 161a Radeon HD 6470M + 103c 161b Radeon HD 6470M + 103c 161e Radeon HD 6470M + 103c 161f Radeon HD 6470M + 103c 1622 Radeon HD 6450M + 103c 1623 Radeon HD 6450M + 103c 164a Radeon HD 6470M + 103c 164d Radeon HD 6470M + 103c 1651 Radeon HD 6470M + 103c 1656 Radeon HD 6490M + 103c 1658 Radeon HD 6490M + 103c 1659 Radeon HD 6490M + 103c 165b Radeon HD 6490M + 103c 165d Radeon HD 6470M + 103c 165f Radeon HD 6470M + 103c 1661 Radeon HD 6470M + 103c 1663 Radeon HD 6470M + 103c 1665 Radeon HD 6470M + 103c 1667 Radeon HD 6470M + 103c 1669 Radeon HD 6470M + 103c 166b Radeon HD 6470M + 103c 166c Radeon HD 6470M + 103c 166e Radeon HD 6470M + 103c 1670 Radeon HD 6470M + 103c 1672 Radeon HD 6470M + 103c 167a Radeon HD 6470M + 103c 167b Radeon HD 6470M + 103c 167d Radeon HD 6490M + 103c 167f Radeon HD 6490M + 103c 168c Radeon HD 6470M + 103c 168f Radeon HD 6470M + 103c 1694 Radeon HD 6470M + 103c 1696 Radeon HD 6470M + 103c 1698 Radeon HD 6470M + 103c 169a Radeon HD 6470M + 103c 169c Radeon HD 6490M + 103c 1855 Radeon HD 7450M + 103c 1859 Radeon HD 7450M + 103c 185c Radeon HD 7450M + 103c 185d Radeon HD 7470M + 103c 185f Radeon HD 7470M + 103c 1863 Radeon HD 7450M + 103c 355c Radeon HD 6490M + 103c 355f Radeon HD 6490M + 103c 3563 Radeon HD 6470M + 103c 3565 Radeon HD 6470M + 103c 3567 Radeon HD 6470M + 103c 3569 Radeon HD 6470M + 103c 3581 Radeon HD 6490M + 103c 3584 Radeon HD 6470M + 103c 358c Radeon HD 6490M + 103c 358f Radeon HD 6490M + 103c 3592 Radeon HD 6490M + 103c 3596 Radeon HD 6490M + 103c 366b Radeon HD 6470M + 103c 3671 FirePro M3900 + 103c 3673 Radeon HD 6470M + 1043 100a Radeon HD 7470M + 1043 100c Radeon HD 6470M + 1043 101b Radeon HD 6470M + 1043 101c Radeon HD 6470M + 1043 102a Radeon HD 7450M + 1043 102c Radeon HD 6470M + 1043 104b Radeon HD 7470M + 1043 105d Radeon HD 7470M + 1043 106b Radeon HD 7470M + 1043 106d Radeon HD 7470M + 1043 107d Radeon HD 7470M + 1043 1cb2 Radeon HD 6470M + 1043 1d22 Radeon HD 6470M + 1043 1d32 Radeon HD 6470M + 1043 2001 Radeon HD 6470M + 1043 2002 Radeon HD 7470M + 1043 2107 Radeon HD 7470M + 1043 2108 Radeon HD 7470M + 1043 2109 Radeon HD 7470M + 1043 84a0 Radeon HD 6470M + 1043 84e9 Radeon HD 6470M + 1043 8515 Radeon HD 7470M + 1043 8517 Radeon HD 7470M + 1043 855a Radeon HD 7470M + 104d 907b Radeon HD 6470M + 104d 9081 Radeon HD 6470M + 104d 9084 Radeon HD 6470M + 104d 9085 Radeon HD 6470M + 1179 0001 Radeon HD 6450M + 1179 0003 Radeon HD 6450M + 1179 0004 Radeon HD 6450M + 1179 fb22 Radeon HD 7470M + 1179 fb23 Radeon HD 7470M + 1179 fb2c Radeon HD 7470M + 1179 fb31 Radeon HD 7470M + 1179 fb32 Radeon HD 7470M + 1179 fb33 Radeon HD 7470M + 1179 fb38 Radeon HD 7470M + 1179 fb39 Radeon HD 7470M + 1179 fb3a Radeon HD 7470M + 1179 fb40 Radeon HD 7470M + 1179 fb41 Radeon HD 7470M + 1179 fb42 Radeon HD 7470M + 1179 fb47 Radeon HD 7470M + 1179 fb48 Radeon HD 7470M + 1179 fb51 Radeon HD 7470M + 1179 fb52 Radeon HD 7470M + 1179 fb53 Radeon HD 7470M + 1179 fb81 Radeon HD 7470M + 1179 fb82 Radeon HD 7470M + 1179 fb83 Radeon HD 7470M + 1179 fc51 Radeon HD 6470M + 1179 fc52 Radeon HD 7470M + 1179 fc56 Radeon HD 7470M + 1179 fcd3 Radeon HD 7470M + 1179 fcd4 Radeon HD 7470M + 1179 fcee Radeon HD 7470M + 1179 fdee Radeon HD 7470M + 144d b074 Radeon HD 6470M + 144d b084 Radeon HD 6470M + 144d c095 Radeon HD 6470M + 144d c0b3 Radeon HD 6490M + 144d c538 Radeon HD 6470M + 144d c581 Radeon HD 6470M + 144d c589 Radeon HD 6470M + 144d c609 Radeon HD 7470M + 144d c625 Radeon HD 7470M + 144d c636 Radeon HD 7450M + 1462 10ac Radeon HD 6470M + 152d 0916 Radeon HD 6470M + 17aa 21e5 Radeon HD 6470M + 17aa 3900 Radeon HD 7450M + 17aa 3902 Radeon HD 7450M + 17aa 3969 Radeon HD 6470M + 17aa 3970 Radeon HD 7450M + 17aa 3976 Radeon HD 6470M + 17aa 397b Radeon HD 6470M + 17aa 397d Radeon HD 6470M + 17aa 5101 Radeon HD 7470M + 17aa 5102 Radeon HD 7450M + 17aa 5103 Radeon HD 7450M + 17aa 5106 Radeon HD 7450M + 1854 0897 Radeon HD 6470M + 1854 0900 Radeon HD 6470M + 1854 0908 Radeon HD 6470M + 1854 2015 Radeon HD 6470M + 6761 Seymour LP [Radeon HD 6430M] + 6763 Seymour [Radeon E6460] + 6764 Seymour [Radeon HD 6400M Series] + 6765 Seymour [Radeon HD 6400M Series] + 6766 Caicos + 6767 Caicos + 6768 Caicos + 6770 Caicos [Radeon HD 6450A/7450A] + 17aa 308d Radeon HD 7450A + 17aa 3623 Radeon HD 6450A + 17aa 3627 Radeon HD 6450A + 17aa 3629 Radeon HD 6450A + 17aa 363c Radeon HD 6450A + 17aa 3658 Radeon HD 7470A + 6771 Caicos XTX [Radeon HD 8490 / R5 235X OEM] + 6772 Caicos [Radeon HD 7450A] + 6778 Caicos XT [Radeon HD 7470/8470 / R5 235/310 OEM] + 1019 0024 Radeon HD 7470 + 1019 0027 Radeon HD 8470 + 1028 2120 Radeon HD 7470 + 1462 b491 Radeon HD 8470 + 1462 b492 Radeon HD 8470 + 1462 b493 Radeon HD 8470 OEM + 1462 b499 Radeon R5 235 OEM + 1642 3c65 Radeon HD 8470 + 1642 3c75 Radeon HD 8470 + 174b 8145 Radeon HD 8470 + 174b d145 Radeon R5 235 OEM + 174b d335 Radeon R5 310 OEM + 174b e145 Radeon HD 7470 + 17aa 3694 Radeon R5 A220 + 6779 Caicos [Radeon HD 6450/7450/8450 / R5 230 OEM] + 1019 0016 Radeon HD 6450 + 1019 0017 Radeon HD 6450 + 1019 0018 Radeon HD 6450 + 1028 2120 Radeon HD 6450 + 103c 2128 Radeon HD 6450 + 103c 2aee Radeon HD 7450A + 1092 6450 Radeon HD 6450 + 1462 2125 Radeon HD 6450 + 1462 2346 Radeon HD 7450 + 1462 2490 Radeon HD 6450 + 1462 2494 Radeon HD 6450 + 1462 2496 Radeon HD 7450 + 148c 7450 Radeon HD 7450 + 148c 8450 Radeon HD 8450 OEM + 1545 7470 Radeon HD 7470 + 1642 3a65 Radeon HD 6450 + 1642 3a66 Radeon HD 7450 + 1642 3a75 Radeon HD 6450 + 1642 3a76 Radeon HD 7450 + 1682 3200 Radeon HD 7450 + 174b 7450 Radeon HD 7450 + 174b e127 Radeon HD 6450 + 174b e153 Radeon HD 6450 + 174b e164 Radeon HD 6450 1 GB DDR3 + 174b e180 Radeon HD 6450 + 174b e201 Radeon HD 6450 + 1787 2311 Radeon HD 6450 + 17af 8450 Radeon HD 8450 OEM + 1b0a 9096 Radeon HD 6450 + 1b0a 9097 Radeon HD 6450 + 1b0a 90a8 Radeon HD 6450A + 1b0a 90b1 Radeon HD 6450 + 1b0a 90b3 Radeon HD 7450A + 1b0a 90bb Radeon HD 7450A + 677b Caicos PRO [Radeon HD 7450] + 6780 Tahiti XT GL [FirePro W9000] + 6784 Tahiti [FirePro Series Graphics Adapter] + 6788 Tahiti [FirePro Series Graphics Adapter] + 678a Tahiti PRO GL [FirePro Series] + 1002 030c FirePro W8000 + 1002 0310 FirePro S9000 + 1002 0420 Radeon Sky 700 + 1002 0422 Radeon Sky 900 + 1002 0710 FirePro S9050 + 1002 0b0e FirePro S10000 Passive + 1002 0b2a FirePro S10000 + 1028 030c FirePro W8000 + 1028 0710 FirePro S9000 + 6798 Tahiti XT [Radeon HD 7970/8970 OEM / R9 280X] + 1002 3000 Tahiti XT2 [Radeon HD 7970 GHz Edition] + 1002 3001 Tahiti XTL [Radeon R9 280X] + 1002 4000 Radeon HD 8970 OEM + 1043 041c HD 7970 DirectCU II + 1043 0420 HD 7970 DirectCU II TOP + 1043 0444 HD 7970 DirectCU II TOP + 1043 0448 HD 7970 DirectCU II TOP + 1043 044a Tahiti XT2 [Matrix HD 7970] + 1043 044c Tahiti XT2 [Matrix HD 7970 Platinum] + 1043 3001 Tahiti XTL [ROG Matrix R9 280X] + 1043 3006 Tahiti XTL [Radeon R9 280X DirectCU II TOP] + 1043 9999 ARES II + 106b 0127 FirePro D700 + 106b 0128 FirePro D700 + 1092 3000 Tahiti XT2 [Radeon HD 7970 GHz Edition] + 1458 2261 Tahiti XT2 [Radeon HD 7970 GHz Edition OC] +# GV-R928XOC-3GD + 1458 3001 Tahiti XTL [Radeon R9 280X OC] + 1462 2774 HD 7970 TwinFrozr III Boost Edition OC + 1682 3001 Tahiti XTL [Radeon R9 280X] + 1682 3211 Double D HD 7970 Black Edition +# FX-797A-TNBC + 1682 3213 HD 7970 Black Edition + 1682 3214 Double D HD 7970 + 1787 201c HD 7970 IceQ X² +# Radeon HD 7970 X2 + 1787 2317 Radeon HD 7990 + 1787 3000 Tahiti XT2 [Radeon HD 7970 GHz Edition] + 679a Tahiti PRO [Radeon HD 7950/8950 OEM / R9 280] + 1002 0b01 Radeon HD 8950 OEM + 1002 3000 Tahiti PRO2 [Radeon HD 7950 Boost] + 1462 3000 Radeon HD 8950 OEM + 174b a003 Radeon R9 280 + 679b Malta [Radeon HD 7990/8990 OEM] + 1002 0b28 Radeon HD 8990 OEM + 1002 0b2a Radeon HD 7990 + 1462 8036 Radeon HD 8990 OEM + 148c 8990 Radeon HD 8990 OEM + 679e Tahiti LE [Radeon HD 7870 XT] + 106b 0125 FirePro D500 + 106b 0126 FirePro D500 + 1787 2328 Radeon HD 7870 Black Edition 2 GB GDDR5 [2GBD5-2DHV3E] + 679f Tahiti + 67a0 Hawaii XT GL [FirePro W9100] + 1002 0335 FirePro S9150 + 1002 0735 FirePro S9170 + 1028 031f FirePro W9100 + 1028 0335 FirePro S9150 + 67a1 Hawaii PRO GL [FirePro W8100] + 1002 0335 FirePro S9100 + 1028 0335 FirePro S9100 + 67a2 Hawaii GL + 67a8 Hawaii + 67a9 Hawaii + 67aa Hawaii + 67b0 Hawaii XT / Grenada XT [Radeon R9 290X/390X] + 1028 0b00 Grenada XT [Radeon R9 390X] + 103c 6566 Radeon R9 390X + 1043 046a R9 290X DirectCU II + 1043 046c R9 290X DirectCU II OC + 1043 0474 Matrix R9 290X Platinum + 1043 0476 ARES III + 1043 04d7 Radeon R9 390X + 1043 04db Radeon R9 390X + 1043 04df Radeon R9 390X + 1043 04e9 Radeon R9 390X + 1458 227c R9 290X WindForce 3X OC + 1458 2281 R9 290X WindForce 3X OC + 1458 228c R9 290X WindForce 3X + 1458 228d R9 290X WindForce 3X OC + 1458 2290 R9 290X WindForce 3X + 1458 22bc Radeon R9 390X + 1458 22c1 Grenada PRO [Radeon R9 390] + 1462 2015 Radeon R9 390X + 1462 3070 R9 290X Lightning + 1462 3071 R9 290X Lightning + 1462 3072 R9 290X Lightning LE + 1462 3080 R9 290X Gaming + 1462 3082 R9 290X Gaming OC + 148c 2347 Devil 13 Dual Core R9 290X + 148c 2357 Grenada XT [Radeon R9 390X] + 1682 9290 Double Dissipation R9 290X + 1682 9395 Grenada XT [Radeon R9 390X] + 174b 0e34 Radeon R9 390X + 174b e282 Vapor-X R9 290X Tri-X OC + 174b e285 R9 290X Tri-X OC + 174b e324 Grenada XT2 [Radeon R9 390X] + 1787 2020 R9 290X IceQ X² Turbo + 1787 2357 Grenada XT [Radeon R9 390X] + 67b1 Hawaii PRO [Radeon R9 290/390] + 1043 04dd STRIX R9 390 + 148c 2358 Radeon R9 390 + 174b e324 Sapphire Nitro R9 390 + 67b8 Hawaii XT [Radeon R9 290X Engineering Sample] + 67b9 Vesuvius [Radeon R9 295X2] + 67be Hawaii LE + 67c0 Ellesmere [Radeon Pro WX 7100 Mobile] + 67c2 Ellesmere [Radeon Pro V7300X / V7350x2] + 67c4 Ellesmere [Radeon Pro WX 7100] + 1002 0336 Radeon Pro Duo + 1002 1336 Radeon Pro Duo + 67c7 Ellesmere [Radeon Pro WX 5100] + 67ca Ellesmere [Polaris10] + 67cc Ellesmere [Polaris10] + 67cf Ellesmere [Polaris10] + 67d0 Ellesmere [Radeon Pro V7300X / V7350x2] + 67d4 Ellesmere [Radeon Pro WX 7100 / Barco MXRT-8700] + 67d7 Ellesmere [Radeon Pro WX 5100 / Barco MXRT-6700] + 67df Ellesmere [Radeon RX 470/480/570/570X/580/580X/590] + 1002 0b37 Radeon RX 480 + 1028 1722 Radeon RX 570X + 1028 1723 Radeon RX 580X +# OEM card found in desktops sold by HP. + 103c 840e Radeon RX 580 4GB + 1043 04a8 Radeon RX 480 + 1043 04b0 Radeon RX 470 + 1043 04fb Radeon RX 480 + 1043 04fd Radeon RX 480 8GB + 1043 056a Radeon RX 590 + 106b 0161 Radeon Pro 580 + 106b 0162 Radeon Pro 575 + 106b 0163 Radeon Pro 570 + 1458 22f0 Radeon RX 570 + 1458 22f7 Radeon RX 570 Gaming 4G + 1462 3411 Radeon RX 470 + 1462 3413 Radeon RX 480 Gaming X 8GB + 1462 3416 Radeon RX 570 + 1462 3418 Radeon RX 580 Armor 4G OC + 1462 341b Radeon RX 570 Armor 8G OC + 1462 341e Radeon RX 570 Armor 4G OC + 1462 809e Radeon RX 480 4GB + 1462 8a92 Radeon RX 580 + 148c 2372 Radeon RX 480 [Red Dragon] + 148c 2373 Radeon RX 470 + 148c 2377 Red Devil RX 580 8G Golden +# https://www.techpowerup.com/vgabios/?manufacturer=Powercolor&model=RX+580 + 148c 2378 Radeon RX 580 + 148c 2379 Radeon RX 570 4G [Red Dragon] + 148c 2391 Radeon RX 590 [Red Devil] + 1682 9470 Radeon RX 470 + 1682 9480 Radeon RX 480 + 1682 9587 Radeon RX 590 FATBOY 8GB + 1682 9588 Radeon RX 580 XTR + 1682 c570 Radeon RX 570 + 1682 c580 Radeon RX 580 + 174b e347 Radeon RX 470/480 + 174b e349 Radeon RX 470 + 1787 a470 Radeon RX 470 + 1787 a480 Radeon RX 480 + 1849 5001 Phantom Gaming X RX 580 OC + 1849 5030 Phantom Gaming D Radeon RX580 8G OC + 1da2 e353 Radeon RX 570 Pulse 4GB + 1da2 e366 Nitro+ Radeon RX 570/580/590 + 1da2 e387 Radeon RX 580 Pulse 4GB + 67e0 Baffin [Radeon Pro WX 4170] + 103c 8270 Radeon Pro WX 4170 + 103c 8272 Radeon Pro WX 4170 + 67e1 Baffin [Polaris11] + 67e3 Baffin [Radeon Pro WX 4100] + 67e8 Baffin [Radeon Pro WX 4130/4150] + 1028 075d Radeon Pro WX 4150 + 1028 07b0 Radeon Pro WX 4130/4150 + 1028 07b1 Radeon Pro WX 4130 + 1028 175d Radeon Pro WX 4150 + 1028 17b0 Radeon Pro WX 4130/4150 + 1028 17b1 Radeon Pro WX 4130 + 103c 8275 Radeon Pro WX 4150 + 103c 8277 Radeon Pro WX 4150 + 67e9 Baffin [Polaris11] + 67eb Baffin [Radeon Pro V5300X] + 67ef Baffin [Radeon RX 460/560D / Pro 450/455/460/555/555X/560/560X] + 1025 1367 RX560X 4GB + 1028 1703 RX 560D OEM OC 2 GB + 103c 3421 Radeon RX 460 + 1043 0561 AREZ Radeon RX 560 + 106b 0160 Radeon Pro 460 + 106b 0166 Radeon Pro 455 + 106b 0167 Radeon Pro 450 + 106b 0179 Radeon Pro 560 + 106b 017a Radeon Pro 555 + 106b 018f Radeon Pro 560X + 106b 0190 Radeon Pro 555X + 1642 1727 Polaris 21 XL [Radeon RX 560D] + 1682 956d Polaris 21 XL [Radeon RX 560D] + 67ff Baffin [Radeon RX 550 640SP / RX 560/560X] + 1002 0b04 Radeon RX 560 + 1028 1721 Radeon RX 560X + 1028 1726 Radeon RX 560DX + 103c 8479 Radeon RX 560X Mobile + 1043 04bc Radeon RX 560 + 1043 052f Radeon RX 560 + 1458 22ed Radeon RX 560 + 148c 2381 Radeon RX 560 + 1682 9560 Radeon RX 560 + 1da2 e348 Radeon RX 560 + 1da2 e367 Radeon RX 550 640SP + 6800 Wimbledon XT [Radeon HD 7970M] + 1002 0124 Radeon HD 7970M + 8086 2110 Radeon HD 7970M + 8086 2111 Radeon HD 7970M + 6801 Neptune XT [Radeon HD 8970M] + 1002 0124 Radeon HD 8970M + 1462 1117 Radeon R9 M290X + 8086 2110 Radeon HD 8970M + 8086 2111 Radeon HD 8970M + 6802 Wimbledon + 6806 Neptune + 6808 Pitcairn XT GL [FirePro W7000] + 1002 0310 FirePro S7000 + 1002 0420 Radeon Sky 500 + 103c 030c MED-X7000 + 13cc 3d25 MXRT-7500 + 15c3 030c MED-X7000 + 6809 Pitcairn LE GL [FirePro W5000] + 13cc 3d23 MXRT-5500 + 13cc 3d24 MXRT-5550 + 15c3 0b06 MED-X5000 + 6810 Curacao XT / Trinidad XT [Radeon R7 370 / R9 270X/370X] + 106b 012a FirePro D300 + 106b 012b FirePro D300 + 148c 0908 Radeon R9 370 OEM + 1682 7370 Radeon R7 370 + 6811 Curacao PRO [Radeon R7 370 / R9 270/370 OEM] + 1028 0b00 Trinidad PRO [Radeon R9 370 OEM] + 1043 2016 Trinidad PRO [Radeon R9 370 OEM] + 1458 2016 Trinidad PRO [Radeon R9 370 OEM] + 1462 2016 Trinidad PRO [Radeon R9 370 OEM] + 1462 3050 R9 270 Gaming OC + 148c 2016 Trinidad PRO [Radeon R9 370 OEM] + 1682 2015 Trinidad PRO [Radeon R7 370] + 174b 2015 NITRO Radeon R7 370 + 174b 2016 Trinidad PRO [Radeon R9 370 OEM] + 1787 2016 Trinidad PRO [Radeon R9 370 OEM] + 6816 Pitcairn + 6817 Pitcairn + 6818 Pitcairn XT [Radeon HD 7870 GHz Edition] + 1002 0b05 Radeon HD 8870 OEM + 174b 8b04 Radeon HD 8860 + 6819 Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP] + 1043 042c Radeon HD 7850 + 1682 7269 Radeon R9 270 1024SP + 1682 9278 Radeon R9 270 1024SP + 174b a008 Radeon R9 270 1024SP + 174b e221 Radeon HD 7850 2GB GDDR5 DVI-I/DVI-D/HDMI/DP + 6820 Venus XTX [Radeon HD 8890M / R9 M275X/M375X] + 103c 1851 Radeon HD 7750M + 17aa 3643 Radeon R9 A375 + 17aa 3801 Radeon R9 M275 + 17aa 3824 Radeon R9 M375 + 1da2 e26a Radeon R7 250 + 6821 Venus XT [Radeon HD 8870M / R9 M270X/M370X] + 1002 031e FirePro SX4000 + 1028 05cc FirePro M5100 + 1028 15cc FirePro M5100 + 106b 0149 Radeon R9 M370X Mac Edition + 6822 Venus PRO [Radeon E8860] + 6823 Venus PRO [Radeon HD 8850M / R9 M265X] + 6825 Heathrow XT [Radeon HD 7870M] + 1028 053f FirePro M6000 + 1028 05cd FirePro M6000 + 1028 15cd FirePro M6000 + 103c 176c FirePro M6000 + 8086 2111 Chelsea PRO + 6826 Chelsea LP [Radeon HD 7700M Series] + 6827 Heathrow PRO [Radeon HD 7850M/8850M] + 6828 Cape Verde PRO [FirePro W600] + 15c3 2b1e MED-X6000 + 6829 Cape Verde + 682a Venus PRO + 682b Cape Verde PRO / Venus LE / Tropo PRO-L [Radeon HD 8830M / R7 250 / R7 M465X] + 0128 079c Radeon R7 465X + 1462 3012 Radeon R7 250 + 682c Cape Verde GL [FirePro W4100] + 682d Chelsea XT GL [FirePro M4000] + 682f Chelsea LP [Radeon HD 7730M] + 103c 1851 Radeon HD 7750M + 6835 Cape Verde PRX [Radeon R9 255 OEM] + 6837 Cape Verde LE [Radeon HD 7730/8730] + 1462 2796 Radeon HD 8730 + 1462 8092 Radeon HD 8730 + 148c 8730 Radeon HD 8730 + 1787 3000 Radeon HD 6570 + 683d Cape Verde XT [Radeon HD 7770/8760 / R7 250X] + 1002 0030 Radeon HD 8760 OEM + 1019 0030 Radeon HD 8760 OEM + 103c 6890 Radeon HD 8760 OEM + 1043 8760 Radeon HD 8760 OEM + 1462 2710 R7770-PMD1GD5 + 174b 8304 Radeon HD 8760 OEM + 683f Cape Verde PRO [Radeon HD 7750/8740 / R7 250E] + 1462 2790 Radeon HD 8740 + 1462 2791 Radeon HD 8740 + 1642 3b97 Radeon HD 8740 + 6840 Thames [Radeon HD 7500M/7600M Series] + 1025 050e Radeon HD 7670M + 1025 050f Radeon HD 7670M + 1025 0513 Radeon HD 7670M + 1025 0514 Radeon HD 7670M + 1025 056d Radeon HD 7670M + 1025 059a Radeon HD 7670M + 1025 059b Radeon HD 7670M + 1025 059e Radeon HD 7670M + 1025 0600 Radeon HD 7670M + 1025 0606 Radeon HD 7670M + 1025 0696 Radeon HD 7650M + 1025 0697 Radeon HD 7650M + 1025 0698 Radeon HD 7650M + 1025 0699 Radeon HD 7650M + 1025 0757 Radeon HD 7670M + 1028 056a Radeon HD 7670M + 1028 056e Radeon HD 7670M + 1028 0598 Radeon HD 7670M + 1028 059d Radeon HD 7670M + 1028 05a3 Radeon HD 7670M + 1028 05b9 Radeon HD 7670M + 1028 05bb Radeon HD 7670M + 103c 1789 FirePro M2000 + 103c 17f1 Radeon HD 7570M + 103c 17f4 Radeon HD 7650M + 103c 1813 Radeon HD 7590M + 103c 182f Radeon HD 7670M + 103c 1830 Radeon HD 7670M + 103c 1835 Radeon HD 7670M + 103c 183a Radeon HD 7670M + 103c 183c Radeon HD 7670M + 103c 183e Radeon HD 7670M + 103c 1840 Radeon HD 7670M + 103c 1842 Radeon HD 7670M + 103c 1844 Radeon HD 7670M + 103c 1848 Radeon HD 7670M + 103c 184a Radeon HD 7670M + 103c 184c Radeon HD 7670M + 103c 1895 Radeon HD 7670M + 103c 1897 Radeon HD 7670M + 103c 18a5 Radeon HD 7670M + 103c 18a7 Radeon HD 7670M + 103c 18f4 Radeon HD 7670M + 1043 100a Radeon HD 7670M + 1043 104b Radeon HD 7670M + 1043 10dc Radeon HD 7670M + 1043 2121 Radeon HD 7670M + 1043 2122 Radeon HD 7670M + 1043 2123 Radeon HD 7670M + 1043 2125 Radeon HD 7670M + 1043 2127 Radeon HD 7670M + 1179 fb11 Radeon HD 7670M + 1179 fb22 Radeon HD 7670M + 1179 fb23 Radeon HD 7670M + 1179 fb2c Radeon HD 7670M + 1179 fb31 Radeon HD 7670M + 1179 fb32 Radeon HD 7670M + 1179 fb38 Radeon HD 7670M + 1179 fb39 Radeon HD 7670M + 1179 fb3a Radeon HD 7670M + 1179 fb40 Radeon HD 7670M + 1179 fb41 Radeon HD 7670M + 1179 fb47 Radeon HD 7670M + 1179 fb48 Radeon HD 7670M + 1179 fb51 Radeon HD 7670M + 1179 fb52 Radeon HD 7670M + 1179 fb53 Radeon HD 7670M + 1179 fb81 Radeon HD 7670M + 1179 fb82 Radeon HD 7670M + 1179 fb83 Radeon HD 7670M + 1179 fc56 Radeon HD 7670M + 1179 fcd4 Radeon HD 7670M + 1179 fcee Radeon HD 7670M + 144d c0c5 Radeon HD 7690M + 144d c0ce Radeon HD 7670M + 144d c0da Radeon HD 7670M + 17aa 3970 Radeon HD 7670M + 17aa 397b Radeon HD 7670M + 17aa 5101 Radeon HD 7670M + 17aa 5102 Radeon HD 7670M + 17aa 5103 Radeon HD 7670M + 6841 Thames [Radeon HD 7550M/7570M/7650M] + 1028 0561 Radeon HD 7650M + 1028 056c Radeon HD 7650M + 1028 057f Radeon HD 7570M + 103c 17f1 Radeon HD 7570M + 103c 17f4 Radeon HD 7650M + 103c 1813 Radeon HD 7570M + 103c 183a Radeon HD 7650M + 103c 183c Radeon HD 7650M + 103c 183e Radeon HD 7650M + 103c 1840 Radeon HD 7650M + 103c 1842 Radeon HD 7650M + 103c 1844 Radeon HD 7650M + 1043 100a Radeon HD 7650M + 1043 104b Radeon HD 7650M + 1043 10dc Radeon HD 7650M + 1043 2134 Radeon HD 7650M + 1179 0001 Radeon HD 7570M + 1179 0002 Radeon HD 7570M + 1179 fb43 Radeon HD 7550M + 1179 fb91 Radeon HD 7550M + 1179 fb92 Radeon HD 7550M + 1179 fb93 Radeon HD 7550M + 1179 fba2 Radeon HD 7550M + 1179 fba3 Radeon HD 7550M + 144d c0c7 Radeon HD 7550M + 6842 Thames LE [Radeon HD 7000M Series] + 6843 Thames [Radeon HD 7670M] + 6860 Vega 10 [Radeon Instinct MI25] + 1002 0c35 Radeon PRO V320 + 1002 6c75 Radeon PRO V320 + 106b 017c Radeon Pro Vega 64 + 6861 Vega 10 XT [Radeon PRO WX 9100] + 6862 Vega 10 XT [Radeon PRO SSG] + 6863 Vega 10 XTX [Radeon Vega Frontier Edition] + 6864 Vega 10 [Radeon Pro V340] + 6867 Vega 10 XL [Radeon Pro Vega 56] + 6868 Vega 10 [Radeon PRO WX 8100/8200] + 6869 Vega 10 XGA [Radeon Pro Vega 48] + 686a Vega 10 LEA + 686b Vega 10 XTXA [Radeon Pro Vega 64X] + 686c Vega 10 [Radeon Instinct MI25 MxGPU] + 686d Vega 10 GLXTA + 686e Vega 10 GLXLA + 687f Vega 10 XL/XT [Radeon RX Vega 56/64] + 1002 0b36 RX Vega64 + 1002 6b76 RX Vega64 +# ROG-STRIX-RXVEGA64-O8G-GAMING + 1043 04c4 Radeon RX Vega 64 + 1458 230c Radeon RX VEGA 56 GAMING OC 8G + 1da2 e376 Radeon RX VEGA 56 Pulse 8GB OC HBM2 + 6880 Lexington [Radeon HD 6550M] + 103c 163c Pavilion dv6 Radeon HD 6550M + 6888 Cypress XT [FirePro V8800] + 6889 Cypress PRO [FirePro V7800] + 1002 0301 FirePro V7800P + 13cc 3d1f MXRT-7400 + 688a Cypress XT [FirePro V9800] + 1002 030c FirePro V9800P + 688c Cypress XT GL [FireStream 9370] + 688d Cypress PRO GL [FireStream 9350] + 6898 Cypress XT [Radeon HD 5870] + 1002 0b00 Radeon HD 5870 Eyefinity⁶ Edition + 106b 00d0 Radeon HD 5870 Mac Edition +# R5870-PM2D1G + 1462 8032 Radeon HD 5870 1 GB GDDR5 + 174b 6870 Radeon HD 6870 1600SP Edition + 6899 Cypress PRO [Radeon HD 5850] +# EAH5850 + 1043 0330 Radeon HD 5850 + 174b 237b Radeon HD 5850 X2 + 174b 6850 Radeon HD 6850 1440SP Edition + 689b Cypress PRO [Radeon HD 6800 Series] + 689c Hemlock [Radeon HD 5970] + 1043 0352 ARES + 689d Hemlock [Radeon HD 5970] + 689e Cypress LE [Radeon HD 5830] + 68a0 Broadway XT [Mobility Radeon HD 5870] + 1028 12ef FirePro M7820 + 103c 1520 FirePro M7820 + 68a1 Broadway PRO [Mobility Radeon HD 5850] + 106b 00cc iMac MC511 Mobility Radeon HD 5850 MXM Module + 68a8 Granville [Radeon HD 6850M/6870M] + 1025 0442 Radeon HD 6850M + 1025 0451 Radeon HD 6850M + 1025 050a Radeon HD 6850M + 1025 050b Radeon HD 6850M + 1025 050c Radeon HD 6850M + 1025 050e Radeon HD 6850M + 1025 050f Radeon HD 6850M + 1025 0513 Radeon HD 6850M + 1025 0514 Radeon HD 6850M + 1025 0515 Radeon HD 6850M + 1025 0516 Radeon HD 6850M + 1025 0525 Radeon HD 6850M + 1025 0526 Radeon HD 6850M + 1025 056d Radeon HD 6850M + 1028 048f Radeon HD 6870M + 1028 0490 Radeon HD 6870M + 1028 04b9 Radeon HD 6870M + 1028 04ba Radeon HD 6870M + 103c 159b Radeon HD 6850M + 144d c0ad Radeon HD 6850M + 68a9 Juniper XT [FirePro V5800] + 13cc 3d1e MXRT-5400 + 13cc 3d20 MXRT-5450 + 68b8 Juniper XT [Radeon HD 5770] + 106b 00cf MacPro5,1 [Mac Pro 2.8GHz DDR3] + 68b9 Juniper LE [Radeon HD 5670 640SP Edition] + 68ba Juniper XT [Radeon HD 6770] + 68be Juniper PRO [Radeon HD 5750] + 148c 3000 Radeon HD 6750 + 68bf Juniper PRO [Radeon HD 6750] + 174b 6750 Radeon HD 6750 + 68c0 Madison [Mobility Radeon HD 5730 / 6570M] + 1019 2383 Mobility Radeon HD 5730 + 1028 02a2 Mobility Radeon HD 5730 + 1028 02fe Mobility Radeon HD 5730 + 1028 0419 Mobility Radeon HD 5730 + 103c 147d Mobility Radeon HD 5730 + 103c 1521 Madison XT [FirePro M5800] + 103c 1593 Mobility Radeon HD 6570 + 103c 1596 Mobility Radeon HD 6570 + 103c 1599 Mobility Radeon HD 6570 + 1043 1c22 Mobility Radeon HD 5730 + 17aa 3927 Mobility Radeon HD 5730 + 17aa 3952 Mobility Radeon HD 5730 + 17aa 3978 Radeon HD 6570M + 68c1 Madison [Mobility Radeon HD 5650/5750 / 6530M/6550M] + 1025 0205 Mobility Radeon HD 5650 + 1025 0293 Mobility Radeon HD 5650 + 1025 0294 Mobility Radeon HD 5650 + 1025 0296 Mobility Radeon HD 5650 + 1025 0308 Mobility Radeon HD 5650 + 1025 030a Mobility Radeon HD 5650 + 1025 0311 Mobility Radeon HD 5650 + 1025 0312 Mobility Radeon HD 5650 + 1025 031c Mobility Radeon HD 5650 + 1025 031d Mobility Radeon HD 5650 + 1025 033d Mobility Radeon HD 5650 + 1025 033e Mobility Radeon HD 5650 + 1025 033f Mobility Radeon HD 5650 + 1025 0346 Mobility Radeon HD 5650 + 1025 0347 Aspire 7740G + 1025 0348 Mobility Radeon HD 5650 + 1025 0356 Mobility Radeon HD 5650 + 1025 0357 Mobility Radeon HD 5650 + 1025 0358 Mobility Radeon HD 5650 + 1025 0359 Mobility Radeon HD 5650 + 1025 035a Mobility Radeon HD 5650 + 1025 035b Mobility Radeon HD 5650 + 1025 035c Mobility Radeon HD 5650 + 1025 035d Mobility Radeon HD 5650 + 1025 035e Mobility Radeon HD 5650 + 1025 0360 Mobility Radeon HD 5650 + 1025 0362 Mobility Radeon HD 5650 + 1025 0364 Mobility Radeon HD 5650 + 1025 0365 Mobility Radeon HD 5650 + 1025 0366 Mobility Radeon HD 5650 + 1025 0367 Mobility Radeon HD 5650 + 1025 0368 Mobility Radeon HD 5650 + 1025 036c Mobility Radeon HD 5650 + 1025 036d Mobility Radeon HD 5650 + 1025 036e Mobility Radeon HD 5650 + 1025 036f Mobility Radeon HD 5650 + 1025 0372 Mobility Radeon HD 5650 + 1025 0373 Mobility Radeon HD 5650 + 1025 0377 Mobility Radeon HD 5650 + 1025 0378 Mobility Radeon HD 5650 + 1025 0379 Mobility Radeon HD 5650 + 1025 037a Mobility Radeon HD 5650 + 1025 037b Mobility Radeon HD 5650 + 1025 037e Mobility Radeon HD 5650 + 1025 037f Mobility Radeon HD 5650 + 1025 0382 Mobility Radeon HD 5650 + 1025 0383 Mobility Radeon HD 5650 + 1025 0384 Mobility Radeon HD 5650 + 1025 0385 Mobility Radeon HD 5650 + 1025 0386 Mobility Radeon HD 5650 + 1025 0387 Mobility Radeon HD 5650 + 1025 0388 Mobility Radeon HD 5650 + 1025 038b Mobility Radeon HD 5650 + 1025 038c Mobility Radeon HD 5650 + 1025 039a Mobility Radeon HD 5650 + 1025 0411 Mobility Radeon HD 5650 + 1025 0412 Mobility Radeon HD 5650 + 1025 0418 Mobility Radeon HD 5650 + 1025 0419 Mobility Radeon HD 5650 + 1025 0420 Mobility Radeon HD 5650 + 1025 0421 Mobility Radeon HD 5650 + 1025 0425 Mobility Radeon HD 5650 + 1025 042a Mobility Radeon HD 5650 + 1025 042e Mobility Radeon HD 5650 + 1025 042f Mobility Radeon HD 5650 + 1025 0432 Mobility Radeon HD 5650 + 1025 0433 Mobility Radeon HD 5650 + 1025 0442 Mobility Radeon HD 5650 + 1025 044c Mobility Radeon HD 5650 + 1025 044e Mobility Radeon HD 5650 + 1025 0451 Mobility Radeon HD 5650 + 1025 0454 Mobility Radeon HD 5650 + 1025 0455 Mobility Radeon HD 5650 + 1025 0475 Mobility Radeon HD 5650 + 1025 0476 Mobility Radeon HD 5650 + 1025 0487 Mobility Radeon HD 5650 + 1025 0489 Mobility Radeon HD 5650 + 1025 0498 Mobility Radeon HD 5650 + 1025 0517 Radeon HD 6550M + 1025 051a Radeon HD 6550M + 1025 051b Radeon HD 6550M + 1025 051c Radeon HD 6550M + 1025 051d Radeon HD 6550M + 1025 0525 Radeon HD 6550M + 1025 0526 Radeon HD 6550M + 1025 052b Radeon HD 6550M + 1025 052c Radeon HD 6550M + 1025 053c Radeon HD 6550M + 1025 053d Radeon HD 6550M + 1025 053e Radeon HD 6550M + 1025 053f Radeon HD 6550M + 1025 0607 Radeon HD 6550M + 1028 041b Mobility Radeon HD 5650 + 1028 0447 Mobility Radeon HD 5650 + 1028 0448 Mobility Radeon HD 5650 + 1028 0456 Mobility Radeon HD 5650 + 1028 0457 Mobility Radeon HD 5650 + 103c 1436 Mobility Radeon HD 5650 + 103c 1437 Mobility Radeon HD 5650 + 103c 1440 Mobility Radeon HD 5650 + 103c 1448 Mobility Radeon HD 5650 + 103c 1449 Mobility Radeon HD 5650 + 103c 144a Mobility Radeon HD 5650 + 103c 144b Mobility Radeon HD 5650 + 103c 147b Mobility Radeon HD 5650 + 103c 149c Mobility Radeon HD 5650 + 103c 149e Mobility Radeon HD 5650 + 103c 1521 Madison Pro [FirePro M5800] + 1043 1bc2 Mobility Radeon HD 5650 + 104d 9071 Mobility Radeon HD 5650 + 104d 9077 Mobility Radeon HD 5650 + 104d 9081 Mobility Radeon HD 5650 + 1179 fd00 Mobility Radeon HD 5650 + 1179 fd12 Mobility Radeon HD 5650 + 1179 fd1a Mobility Radeon HD 5650 + 1179 fd30 Mobility Radeon HD 5650 + 1179 fd31 Mobility Radeon HD 5650 + 1179 fd50 Mobility Radeon HD 5650 + 1179 fd52 Radeon HD 6530M + 1179 fd63 Radeon HD 6530M + 1179 fd65 Radeon HD 6530M + 1179 fdd0 Mobility Radeon HD 5650 + 1179 fdd2 Radeon HD 6530M + 144d c07e Mobility Radeon HD 5650 + 144d c085 Mobility Radeon HD 5650 + 14c0 0043 Mobility Radeon HD 5650 + 14c0 004d Mobility Radeon HD 5650 + 17aa 3928 Mobility Radeon HD 5650 + 17aa 3951 Mobility Radeon HD 5650 + 17aa 3977 Radeon HD 6550M + 68c7 Pinewood [Mobility Radeon HD 5570/6550A] + 1462 2241 Mobility Radeon HD 5570 + 1462 2243 Mobility Radeon HD 5570 + 1462 2244 Mobility Radeon HD 5570 + 1462 2245 Radeon HD 6550A + 1462 2246 Radeon HD 6550A + 68c8 Redwood XT GL [FirePro V4800] + 68c9 Redwood PRO GL [FirePro V3800] + 13cc 3d1d MXRT-2400 + 68d8 Redwood XT [Radeon HD 5670/5690/5730] + 1028 68e0 Radeon HD 5670 + 174b 5690 Radeon HD 5690 + 174b 5730 Radeon HD 5730 + 174b e151 Radeon HD 5670 + 1787 3000 Radeon HD 5730 + 17af 3010 Radeon HD 5730 + 17af 3011 Radeon HD 5690 + 68d9 Redwood PRO [Radeon HD 5550/5570/5630/6510/6610/7570] + 103c 6870 Radeon HD 5570 + 103c 6872 Radeon HD 5570 + 1043 03ce Radeon HD 5550 + 1462 2151 Radeon HD 5570 + 1462 2240 Radeon HD 5570 + 148c 3000 Radeon HD 6510 + 148c 3001 Radeon HD 6610 + 1545 5550 Radeon HD 5550 + 1545 7570 Radeon HD 7570 + 1642 3985 Radeon HD 5570 + 1642 3996 Radeon HD 5570 + 174b 3000 Radeon HD 6510 + 174b 6510 Radeon HD 6510 + 174b 6610 Radeon HD 6610 + 174b e142 Radeon HD 5570 + 1787 3000 Radeon HD 6510 + 17af 3000 Radeon HD 6510 + 17af 3010 Radeon HD 5630 + 68da Redwood LE [Radeon HD 5550/5570/5630/6390/6490/7570] + 1462 8071 VR5550-MD1G (Radeon HD 5550) + 148c 3000 Radeon HD 6390 + 148c 3001 Radeon HD 6490 + 1545 7570 Radeon HD 7570 + 174b 3000 Radeon HD 6390 + 174b 5570 Radeon HD 5570 + 174b 5630 Radeon HD 5630 + 174b 6490 Radeon HD 6490 + 1787 3000 Radeon HD 5630 + 17af 3000 Radeon HD 6390 + 17af 3010 Radeon HD 5630 + 68de Redwood + 68e0 Park [Mobility Radeon HD 5430/5450/5470] + 1028 0404 Mobility Radeon HD 5450 + 1028 0414 Mobility Radeon HD 5450 + 1028 0434 Mobility Radeon HD 5450 + 103c 1433 Mobility Radeon HD 5450 + 103c 1434 Mobility Radeon HD 5450 + 103c 1469 Mobility Radeon HD 5450 + 103c 146b Mobility Radeon HD 5450 + 103c 1486 TouchSmart tm2-2050er discrete GPU (Mobility Radeon HD 5450) + 103c 1622 Mobility Radeon HD 5450 + 103c 1623 Mobility Radeon HD 5450 + 103c eeee Mobility Radeon HD 5450 + 104d 9076 Mobility Radeon HD 5450 + 1682 304e Caicos [Radeon HD 5450] + 1682 6000 Caicos [Radeon HD 5450] + 17aa 9e52 FirePro M3800 + 17aa 9e53 FirePro M3800 + 68e1 Park [Mobility Radeon HD 5430] + 1043 041f Caicos [Radeon HD 7350] + 1043 3000 Caicos [Radeon HD 5450] + 148c 3000 Caicos [Radeon HD 5450] + 148c 3001 Caicos [Radeon HD 6230] + 148c 3002 Caicos [Radeon HD 6250] + 148c 3003 Caicos [Radeon HD 6350] + 148c 7350 Caicos [Radeon HD 7350] + 148c 8350 Caicos [Radeon HD 8350] + 1545 5450 Caicos [Radeon HD 5450] + 1545 7350 Caicos [Radeon HD 7350] + 1682 3000 Caicos [Radeon HD 5450] + 1682 6000 Caicos [Radeon HD 5450] + 1682 7350 Caicos [Radeon HD 7350] + 174b 3000 Caicos [Radeon HD 5450] + 174b 5470 Caicos [Radeon HD 5470] + 174b 6000 Caicos [Radeon HD 5450] + 174b 6230 Caicos [Radeon HD 6230] + 174b 6350 Caicos [Radeon HD 6350] + 174b 7350 Caicos [Radeon HD 7350] + 1787 3000 Caicos [Radeon HD 5450] + 17af 3000 Caicos [Radeon HD 5450] + 17af 3001 Caicos [Radeon HD 6230] + 17af 3014 Caicos [Radeon HD 6350] + 17af 3015 Caicos [Radeon HD 7350] + 17af 8350 Caicos [Radeon HD 8350 OEM] + 68e4 Robson CE [Radeon HD 6370M/7370M] + 1019 2386 Radeon HD 6350M + 1019 2387 Radeon HD 6350M + 1019 238d Radeon HD 6370M + 1019 238e Radeon HD 6370M + 1025 0382 Radeon HD 6370M + 1025 0489 Radeon HD 6370M + 1025 048a Radeon HD 6370M + 1025 048b Radeon HD 6370M + 1025 048c Radeon HD 6370M + 1028 04c1 Radeon HD 6370M + 1028 04ca Radeon HD 6370M + 1028 04cc Radeon HD 6370M + 1028 04cd Radeon HD 6370M + 1028 04d7 Radeon HD 6370M + 103c 1411 Radeon HD 6370M + 103c 1421 Radeon HD 6370M + 103c 1426 Radeon HD 6370M + 103c 1428 Radeon HD 6370M + 103c 142a Radeon HD 6370M + 103c 142b Radeon HD 6370M + 103c 143a Radeon HD 6370M + 103c 143c Radeon HD 6370M + 103c 1445 Radeon HD 6370M + 103c 162c Radeon HD 6370M + 103c 162d Radeon HD 6370M + 103c 162e Radeon HD 6370M + 103c 162f Radeon HD 6370M + 103c 1639 Radeon HD 6370M + 103c 163a Radeon HD 6370M + 103c 163b Radeon HD 6370M + 103c 163c Radeon HD 6370M + 103c 163d Radeon HD 6370M + 103c 163e Radeon HD 6370M + 103c 163f Radeon HD 6370M + 103c 1641 Radeon HD 6370M + 103c 1643 Radeon HD 6370M + 103c 3578 Radeon HD 6370M + 103c 357a Radeon HD 6370M + 103c 3673 Radeon HD 6370M + 103c 3675 Radeon HD 6370M + 1043 1c92 Radeon HD 6370M + 1043 84a1 Radeon HD 6370M + 1043 84ad Radeon HD 6370M + 104d 9081 Radeon HD 6370M + 1545 7350 Cedar [Radeon HD 7350] + 1558 4510 Radeon HD 6370M + 1558 5505 Radeon HD 6370M + 174b 5450 Cedar [Radeon HD 5450] + 17aa 21dd Radeon HD 6370M + 17aa 21e9 Radeon HD 6370M + 17aa 3971 Radeon HD 6370M + 17aa 3972 Radeon HD 7370M + 17aa 397a Radeon HD 6370M/7370M + 17aa 397b Radeon HD 6370M/7370M + 17aa 397f Radeon HD 7370M + 68e5 Robson LE [Radeon HD 6330M] + 1179 fd3c Radeon HD 6330M + 1179 fd50 Radeon HD 6330M + 1179 fd52 Radeon HD 6330M + 1179 fd63 Radeon HD 6330M + 1179 fd65 Radeon HD 6330M + 1179 fd73 Radeon HD 6330M + 1179 fd75 Radeon HD 6330M + 1179 fdd0 Radeon HD 6330M + 1179 fdd2 Radeon HD 6330M + 1179 fdea Radeon HD 6330M + 1179 fdf8 Radeon HD 6330M + 148c 5450 Cedar [Radeon HD 5450] + 148c 6350 Cedar [Radeon HD 6350] + 148c 7350 Cedar [Radeon HD 7350] + 148c 8350 Cedar [Radeon HD 8350] + 1545 7350 Cedar [Radeon HD 7350] + 68e8 Cedar + 68e9 Cedar [ATI FirePro (FireGL) Graphics Adapter] + 68f1 Cedar GL [FirePro 2460] + 68f2 Cedar GL [FirePro 2270] + 68f8 Cedar [Radeon HD 7300 Series] + 68f9 Cedar [Radeon HD 5000/6000/7350/8350 Series] + 1019 0001 Radeon HD 5450 + 1019 0002 Radeon HD 5450 + 1019 0019 Radeon HD 6350 + 1025 0518 Radeon HD 5450 + 1025 0519 Radeon HD 5450 + 1028 010e XPS 8300 + 1028 2126 Radeon HD 6350 + 103c 2126 Radeon HD 6350 + 103c 2aac Radeon HD 5450 + 103c 2aae Radeon HD 5450 + 103c 3580 Radeon HD 5450 + 1043 0386 Radeon HD 5450 + 1043 03c2 EAH5450 SILENT/DI/512MD2 (LP) + 1462 2130 Radeon HD 5450 + 1462 2131 Radeon HD 5450 + 1462 2133 Radeon HD 6350 + 1462 2180 Radeon HD 5450 + 1462 2181 Radeon HD 5450 + 1462 2182 Radeon HD 6350 + 1462 2183 Radeon HD 6350 + 1462 2230 Radeon HD 5450 + 1462 2231 Radeon HD 5450 + 1462 2495 Radeon HD 6350 + 148c 3001 Radeon HD 5530/6250 + 148c 3002 Radeon HD 6290 + 148c 3003 Radeon HD 6230 + 148c 3004 Radeon HD 6350 + 148c 7350 Radeon HD 7350 + 148c 8350 Radeon HD 8350 + 1545 7350 Radeon HD 7350 + 1642 3983 Radeon HD 5450 + 1642 3984 Radeon HD 6350 + 1642 3987 Radeon HD 6350 + 1642 3997 Radeon HD 5450 + 1642 3a05 Radeon HD 5450 + 1642 3b31 Radeon HD 6350A + 1682 3270 Radeon HD 7350 + 174b 3000 Radeon HD 6230 + 174b 3987 Radeon HD 6350 + 174b 5470 Radeon HD 5470 + 174b 5490 Radeon HD 5490 + 174b 5530 Radeon HD 5530 + 174b 6230 Radeon HD 6230 + 174b 6250 Radeon HD 6250 + 174b 6290 Radeon HD 6290 + 174b 6350 Radeon HD 6350 + 174b 7350 Radeon HD 7350 + 174b 8350 Radeon HD 8350 + 174b e127 Radeon HD 5450 + 174b e145 Radeon HD 5450 + 174b e153 Radeon HD 5450 + 1787 3000 Radeon HD 5470 + 1787 3001 Radeon HD 5530 + 1787 3002 Radeon HD 5490 + 17aa 3602 Radeon HD 5450 + 17aa 3603 Radeon HD 5450 + 17aa 360f Radeon HD 5450 + 17aa 3619 Radeon HD 5450 + 17af 3000 Radeon HD 6250 + 17af 3001 Radeon HD 6230 + 17af 3002 Radeon HD 6290 + 17af 3011 Radeon HD 5470 + 17af 3012 Radeon HD 5490 + 17af 3013 Radeon HD 5470 + 17af 3014 Radeon HD 6350 + 68fa Cedar [Radeon HD 7350/8350 / R5 220] + 1019 0019 Radeon HD 7350 + 1019 0021 Radeon HD 7350 + 1019 0022 Radeon HD 7350 + 1019 0026 Radeon HD 8350 + 103c 2adf Radeon HD 7350A + 103c 2ae8 Radeon HD 7350A + 1043 8350 Radeon HD 8350 + 1462 2128 Radeon HD 7350 + 1462 2184 Radeon HD 7350 + 1462 2186 Radeon HD 7350 + 1462 2495 Radeon HD 7350 + 1462 b490 Radeon HD 7350 + 1642 3985 Radeon HD 7350 + 174b 3510 Radeon HD 8350 + 174b 3521 Radeon R5 220 + 174b 3522 Radeon R5 220 + 174b 7350 Radeon HD 7350 + 174b 8153 Radeon HD 8350 + 174b e127 Radeon HD 7350 + 174b e153 Radeon HD 7350 + 174b e180 Radeon HD 7350 + 17af 3015 Radeon HD 7350 + 68fe Cedar LE + 6900 Topaz XT [Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile] + 1025 1056 Radeon R7 M360 / R8 M365DX + 1028 0640 Radeon R7 M260/M265 + 1028 0643 Radeon R7 M260/M265 + 1028 067f Radeon R7 M260 + 1028 0767 Radeon R7 M445 + 1028 0810 Radeon 530 + 1028 130a Radeon R7 M260 + 103c 2263 Radeon R7 M260 + 103c 2269 Radeon R7 M260 + 103c 22c6 Radeon R7 M260 + 103c 22c8 Radeon R7 M260 + 103c 2b45 Radeon R7 A360 + 103c 808c Radeon R7 M260 + 103c 8099 Radeon R7 M360 + 103c 80b5 Radeon R7 M360 + 103c 80b9 Radeon R7 M360 + 103c 811c Radeon R7 M340 + 103c 8226 Radeon R7 M440 + 10cf 1906 Radeon R7 M260 + 1170 9979 Radeon R7 M360 + 1179 f903 Radeon R7 M260 + 1179 f922 Radeon R7 M260 + 1179 f923 Radeon R7 M260 + 1179 f934 Radeon R7 M260 + 17aa 3822 Radeon R7 M360 + 17aa 3824 Radeon R7 M360 + 17aa 5021 Radeon R7 M260 + 6901 Topaz PRO [Radeon R5 M255] + 103c 1318 Radeon R6 M255DX + 6907 Meso XT [Radeon R5 M315] + 6920 Amethyst [Radeon R9 M395/ M395X Mac Edition] + 6921 Amethyst XT [Radeon R9 M295X / M390X] + 6929 Tonga XT GL [FirePro S7150] + 692b Tonga PRO GL [FirePro W7100] + 13cc 3d2b MXRT-7600 + 692f Tonga XTV GL [FirePro S7150V] + 6938 Tonga XT / Amethyst XT [Radeon R9 380X / R9 M295X] + 1043 04f5 Radeon R9 380X + 1043 04f7 Radeon R9 380X + 106b 013a Radeon R9 M295X Mac Edition + 1458 22c8 Radeon R9 380X + 148c 2350 Radeon R9 380X + 1682 9385 Radeon R9 380X + 174b e308 Radeon R9 380X Nitro 4G D5 + 17af 2006 Radeon R9 380X + 6939 Tonga PRO [Radeon R9 285/380] + 1462 2015 Radeon R9 380 Gaming 4G + 148c 9380 Radeon R9 380 +# Make naming scheme consistent + 174b e308 Radeon R9 380 Nitro 4G D5 + 174b e315 Radeon R9 285 + 693b Tonga PRO GL [FirePro W7100 / Barco MXRT-7600] + 694c Polaris 22 XT [Radeon RX Vega M GH] + 694e Polaris 22 XL [Radeon RX Vega M GL] + 694f Polaris 22 MGL XL [Radeon Pro WX Vega M GL] + 6980 Polaris12 + 6981 Lexa XT [Radeon PRO WX 3200] + 6985 Lexa XT [Radeon PRO WX 3100] + 6986 Polaris12 + 6987 Lexa [Radeon 540X/550X/630 / RX 640 / E9171 MCM] + 698f Lexa XT [Radeon PRO WX 3100 / Barco MXRT 4700] + 6995 Lexa XT [Radeon PRO WX 2100] + 699f Lexa PRO [Radeon 540/540X/550/550X / RX 540X/550/550X] + 1028 1720 Radeon RX 550X + 148c 2380 Lexa XL [Radeon RX 550] + 1da2 e367 Lexa PRO [Radeon RX 550] + 69a0 Vega 12 + 69a1 Vega 12 + 69a2 Vega 12 + 69a3 Vega 12 + 69af Vega 12 [Radeon Pro Vega 20] + 6fdf Polaris 20 XL [Radeon RX 580 2048SP] + 700f RS100 AGP Bridge + 7010 RS200/RS250 AGP Bridge + 7100 R520 [Radeon X1800 XT] + 7101 R520/M58 [Mobility Radeon X1800 XT] + 7102 R520/M58 [Mobility Radeon X1800] + 7104 R520 GL [FireGL V7200 / Barco MXTR-5100] + 13cc 3d0a MXRT-5100 + 7109 R520 [Radeon X1800 XL] + 1002 0322 All-in-Wonder X1800XL + 1002 0d02 Radeon X1800 CrossFire Edition + 710a R520 [Radeon X1800 GTO] + 1002 0b12 Radeon X1800 GTO² + 710b R520 [Radeon X1800 GTO] + 710e R520 GL [FireGL V7300] + 13cc 3d0c MXRT-5150 + 710f R520 GL [FireGL V7350] + 13cc 3d0e MXRT-7100 + 7120 R520 [Radeon X1800] (Secondary) + 7124 R520 GL [FireGL V7200] (Secondary) + 13cc 3d0b MXRT-5100 (Secondary) + 7129 R520 [Radeon X1800] (Secondary) + 1002 0323 All-In-Wonder X1800 XL (Secondary) + 1002 0d03 Radeon X1800 CrossFire Edition (Secondary) + 712e R520 GL [FireGL V7300] (Secondary) + 13cc 3d0d MXRT-5150 (Secondary) + 712f R520 GL [FireGL V7350] (Secondary) + 13cc 3d0f MXRT-7100 (Secondary) + 7140 RV515 [Radeon X1300/X1550/X1600 Series] + 7142 RV515 PRO [Radeon X1300/X1550 Series] + 1002 0322 All-in-Wonder 2006 PCI-E Edition + 1043 0142 EAX1300PRO/TD/256M + 7143 RV505 [Radeon X1300/X1550 Series] + 7145 RV515/M54 [Mobility Radeon X1400] + 17aa 2006 Thinkpad T60 model 2007 + 7146 RV515 [Radeon X1300/X1550] + 1002 0322 All-in-Wonder 2006 PCI-E Edition + 1545 1996 Radeon X1300 512MB PCI-e + 7147 RV505 [Radeon X1550 64-bit] + 7149 RV515/M52 [Mobility Radeon X1300] + 714a RV515/M52 [Mobility Radeon X1300] + 7152 RV515 GL [FireGL V3300] + 7153 RV515 GL [FireGL V3350] + 715f RV505 CE [Radeon X1550 64-bit] + 7162 RV515 PRO [Radeon X1300/X1550 Series] (Secondary) + 1002 0323 All-in-Wonder 2006 PCI-E Edition (Secondary) + 7163 RV505 [Radeon X1550 Series] (Secondary) + 7166 RV515 [Radeon X1300/X1550 Series] (Secondary) + 1002 0323 All-in-Wonder 2006 PCI-E Edition (Secondary) + 1545 1997 Radeon X1300 512MB PCI-e (Secondary) + 7167 RV515 [Radeon X1550 64-bit] (Secondary) + 7172 RV515 GL [FireGL V3300] (Secondary) + 7173 RV515 GL [FireGL V3350] (Secondary) + 7181 RV516 [Radeon X1600/X1650 Series] + 7183 RV516 [Radeon X1300/X1550 Series] + 7186 RV516/M64 [Mobility Radeon X1450] + 7187 RV516 [Radeon X1300/X1550 Series] + 7188 RV516/M64-S [Mobility Radeon X2300] + 103c 30c1 6910p + 718a RV516/M64 [Mobility Radeon X2300] + 718b RV516/M62 [Mobility Radeon X1350] + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 718c RV516/M62-CSP64 [Mobility Radeon X1350] + 718d RV516/M64-CSP128 [Mobility Radeon X1450] + 7193 RV516 [Radeon X1550 Series] + 7196 RV516/M62-S [Mobility Radeon X1350] + 719b RV516 GL [FireMV 2250] + 13cc 3d12 MXRT-1150 + 13cc 3d14 MXRT-2150 + 719f RV516 [Radeon X1550 Series] + 71a0 RV516 [Radeon X1300/X1550 Series] (Secondary) + 71a1 RV516 [Radeon X1600/X1650 Series] (Secondary) + 71a3 RV516 [Radeon X1300/X1550 Series] (Secondary) + 71a7 RV516 [Radeon X1300/X1550 Series] (Secondary) + 71bb RV516 GL [FireMV 2250] (Secondary) + 13cc 3d13 MXRT-1150 (Secondary) + 13cc 3d15 MXRT-2150 (Secondary) + 71c0 RV530 [Radeon X1600 XT/X1650 GTO] + 1002 e160 Radeon X1650 GTO + 174b e160 Radeon X1650 GTO + 71c1 RV535 [Radeon X1650 PRO] + 174b 0880 Radeon X1700 FSC + 71c2 RV530 [Radeon X1600 PRO] + 71c3 RV530 [Radeon X1600 PRO] + 71c4 RV530/M56 GL [Mobility FireGL V5200] + 17aa 2007 ThinkPad T60p + 71c5 RV530/M56-P [Mobility Radeon X1600] + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq NW8440 + 1043 10b2 A6J-Q008 + 106b 0080 MacBook Pro + 71c6 RV530LE [Radeon X1600/X1650 PRO] + 71c7 RV535 [Radeon X1650 PRO] + 1787 3000 PowerColor X1650 PRO AGP + 71ce RV530 [Radeon X1300 XT/X1600 PRO] + 71d2 RV530 GL [FireGL V3400] + 13cc 3d08 MXRT-2100 + 71d4 RV530/M66 GL [Mobility FireGL V5250] + 71d5 RV530/M66-P [Mobility Radeon X1700] + 71d6 RV530/M66-XT [Mobility Radeon X1700] + 71de RV530/M66 [Mobility Radeon X1700/X2500] + 71e0 RV530 [Radeon X1600] (Secondary) + 174b e161 Radeon X1600 GTO (Secondary) + 71e1 RV535 [Radeon X1650 PRO] (Secondary) + 174b 0881 Radeon X1700 FSC (Secondary) + 71e2 RV530 [Radeon X1600] (Secondary) + 71e6 RV530 [Radeon X1650] (Secondary) + 71e7 RV535 [Radeon X1650 PRO] (Secondary) + 1787 3001 Radeon X1650 PRO AGP + 71f2 RV530 GL [FireGL V3400] (Secondary) + 13cc 3d09 MXRT-2100 (Secondary) + 7210 RV550/M71 [Mobility Radeon HD 2300] + 7211 RV550/M71 [Mobility Radeon X2300 HD] + 7240 R580+ [Radeon X1950 XTX] + 1002 0d02 Radeon X1950 CrossFire Edition + 7244 R580+ [Radeon X1950 XT] + 7248 R580 [Radeon X1950] + 7249 R580 [Radeon X1900 XT] + 1002 0412 All-In-Wonder X1900 + 1002 0b12 Radeon X1900 XT/XTX + 1002 0d02 Radeon X1900 CrossFire Edition + 1043 0160 Radeon X1900 XTX 512 MB GDDR3 + 724b R580 [Radeon X1900 GT] + 1002 0b12 Radeon X1900 (Primary) + 1002 0b13 Radeon X1900 (Secondary) + 724e R580 GL [FireGL V7350] + 7269 R580 [Radeon X1900 XT] (Secondary) + 726b R580 [Radeon X1900 GT] (Secondary) + 726e R580 [AMD Stream Processor] (Secondary) + 7280 RV570 [Radeon X1950 PRO] + 7288 RV570 [Radeon X1950 GT] + 7291 RV560 [Radeon X1650 XT] + 1462 0810 Radeon X1700 SE + 7293 RV560 [Radeon X1650 GT] + 72a0 RV570 [Radeon X1950 PRO] (Secondary) + 72a8 RV570 [Radeon X1950 GT] (Secondary) + 72b1 RV560 [Radeon X1650 XT] (Secondary) + 72b3 RV560 [Radeon X1650 GT] (Secondary) + 7300 Fiji [Radeon R9 FURY / NANO Series] + 1002 0b36 Radeon R9 FURY X / NANO + 1002 1b36 Radeon Pro Duo + 1043 049e Radeon R9 FURY + 1043 04a0 Radeon R9 FURY X + 174b e329 Radeon R9 FURY + 7310 Navi 10 [Radeon Pro W5700X] + 7312 Navi 10 [Radeon Pro W5700] + 7314 Navi 10 USB + 731f Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] + 1002 0b36 Reference RX 5700 XT + 1458 2313 Radeon RX 5700 XT Gaming OC + 1682 5701 RX 5700 XT RAW II + 1849 5120 Radeon RX 5600 XT + 1da2 e409 Sapphire Technology Limited Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] + 1da2 e411 Radeon RX 5600 XT + 7340 Navi 14 [Radeon RX 5500/5500M / Pro 5500M] + 7341 Navi 14 [Radeon Pro W5500] + 7347 Navi 14 [Radeon Pro W5500M] + 734f Navi 14 [Radeon Pro W5300M] + 7360 Navi 12 [Radeon Pro 5600M / V520] + 7362 Navi 12 [Radeon Pro V520] + 7388 Arcturus GL-XL + 738c Arcturus GL-XL [Instinct MI100] + 738e Arcturus GL-XL [Instinct MI100] + 73a2 Navi 21 Pro-XTA [Radeon Pro W6900X] + 73a3 Navi 21 GL-XL [Radeon PRO W6800] + 73a4 Navi 21 USB + 73a5 Navi 21 [Radeon RX 6950 XT] + 73ab Navi 21 Pro-XLA [Radeon Pro W6800X/Radeon Pro W6800X Duo] + 73af Navi 21 [Radeon RX 6900 XT] + 148c 2414 Navi 21 XTXH [PowerColor Red Devil RX 6900 XT Ultimate] + 73bf Navi 21 [Radeon RX 6800/6800 XT / 6900 XT] + 1002 0e3a Radeon RX 6900 XT + 148c 2408 Red Devil AMD Radeon RX 6900 XT + 1eae 6701 XFX Speedster MERC 319 AMD Radeon RX 6800 XT Black + 73c3 Navi 22 + 73c4 Navi 22 USB + 73df Navi 22 [Radeon RX 6700/6700 XT/6750 XT / 6800M] + 73e0 Navi 23 + 73e1 Navi 23 WKS-XM [Radeon PRO W6600M] + 73e3 Navi 23 WKS-XL [Radeon PRO W6600] + 73e4 Navi 23 USB + 73ef Navi 23 [Radeon RX 6650 XT] + 73ff Navi 23 [Radeon RX 6600/6600 XT/6600M] + 148c 2412 PowerColor Red Devil RX 6600 XT + 7408 Aldebaran + 740c Aldebaran + 740f Aldebaran + 743f Navi 24 [Radeon RX 6400 / 6500 XT] + 1da2 e457 PULSE AMD Radeon RX 6500 XT + 7833 RS350 Host Bridge + 7834 RS350 [Radeon 9100 PRO/XT IGP] + 7835 RS350M [Mobility Radeon 9000 IGP] + 7838 RS350 AGP Bridge + 7910 RS690 Host Bridge + 1179 ff50 Satellite P305D-S8995E + 17f2 5000 KI690-AM2 Motherboard + 7911 RS690/RS740 Host Bridge + 1002 7910 RS690/RS740 Host Bridge + 7912 RS690/RS740 PCI to PCI Bridge (Internal gfx) + 7913 RS690 PCI to PCI Bridge (PCI Express Graphics Port 0) + 7915 RS690 PCI to PCI Bridge (PCI Express Port 1) + 7916 RS690 PCI to PCI Bridge (PCI Express Port 2) + 7917 RS690 PCI to PCI Bridge (PCI Express Port 3) + 1002 7910 RS690 PCI to PCI Bridge + 7919 RS690 HDMI Audio [Radeon Xpress 1200 Series] + 1179 7919 Satellite P305D-S8995E + 17f2 5000 KI690-AM2 Motherboard + 791e RS690 [Radeon X1200] + 1462 7327 K9AG Neo2 + 17f2 5000 KI690-AM2 Motherboard + 791f RS690M [Radeon Xpress 1200/1250/1270] + 1179 ff50 Satellite P305D-S8995E + 7930 RS600 Host Bridge + 7932 RS600 PCI to PCI Bridge (Internal gfx) + 7933 RS600 PCI to PCI Bridge (PCI Express Graphics Port 0) + 7935 RS600 PCI to PCI Bridge (PCI Express Port 1) + 7936 RS600 PCI to PCI Bridge (PCI Express Port 2) + 7937 RS690 PCI to PCI Bridge (PCI Express Port 3) + 793b RS600 HDMI Audio [Radeon Xpress 1250] + 793f RS690M [Radeon Xpress 1200/1250/1270] (Secondary) + 7941 RS600 [Radeon Xpress 1250] + 7942 RS600M [Radeon Xpress 1250] + 796e RS740 [Radeon 2100] + 105b 0e13 N15235/A74MX mainboard + 9400 R600 [Radeon HD 2900 PRO/XT] + 1002 2552 Radeon HD 2900 XT + 1002 3000 Radeon HD 2900 PRO + 1002 3142 HIS Radeon HD 2900XT 512MB GDDR3 VIVO PCIe + 9401 R600 [Radeon HD 2900 XT] + 9403 R600 [Radeon HD 2900 PRO] + 9405 R600 [Radeon HD 2900 GT] + 940a R600 GL [FireGL V8650] + 13cc 3d16 MXRT-7200 + 940b R600 GL [FireGL V8600] + 940f R600 GL [FireGL V7600] + 9440 RV770 [Radeon HD 4870] + 9441 R700 [Radeon HD 4870 X2] + 9442 RV770 [Radeon HD 4850] + 1002 0502 MSI Radeon HD 4850 512MB GDDR3 + 174b e810 Radeon HD 4850 512MB GDDR3 + 9443 R700 [Radeon HD 4850 X2] + 9444 RV770 GL [FirePro V8750] + 9446 RV770 GL [FirePro V7760] + 944a RV770/M98L [Mobility Radeon HD 4850] + 944b RV770/M98 [Mobility Radeon HD 4850 X2] + 944c RV770 LE [Radeon HD 4830] + 944e RV770 CE [Radeon HD 4710] + 174b 3261 Radeon HD 4810 + 9450 RV770 GL [FireStream 9270] + 9452 RV770 GL [FireStream 9250] + 9456 RV770 GL [FirePro V8700] + 945a RV770/M98-XT [Mobility Radeon HD 4870] + 9460 RV790 [Radeon HD 4890] + 9462 RV790 [Radeon HD 4860] + 946a RV770 GL [FirePro M7750] + 9480 RV730/M96 [Mobility Radeon HD 4650/5165] + 103c 3628 Mobility Radeon HD 4650 [dv6-1190en] + 9488 RV730/M96-XT [Mobility Radeon HD 4670] + 9489 RV730/M96 GL [Mobility FireGL V5725] + 9490 RV730 XT [Radeon HD 4670] + 174b e880 Radeon HD 4670 512MB GDDR3 Dual DVI-I/TVO + 9491 RV730/M96-CSP [Radeon E4690] + 9495 RV730 [Radeon HD 4600 AGP Series] + 1002 0028 Radeon HD 4650/4670 AGP + 1092 0028 Radeon HD 4670 AGP 512MB DDR2 + 1458 0028 Radeon HD 4650 AGP + 1682 0028 Radeon HD 4650 AGP + 174b 0028 Radeon HD 4650 AGP DDR2 + 9498 RV730 PRO [Radeon HD 4650] + 949c RV730 GL [FirePro V7750] + 13cc 3d1b MXRT-7300 + 949e RV730 GL [FirePro V5700] + 949f RV730 GL [FirePro V3750] + 94a0 RV740/M97 [Mobility Radeon HD 4830] + 94a1 RV740/M97-XT [Mobility Radeon HD 4860] + 94a3 RV740/M97 GL [FirePro M7740] + 94b3 RV740 PRO [Radeon HD 4770] + 94b4 RV740 PRO [Radeon HD 4750] + 94c1 RV610 [Radeon HD 2400 PRO/XT] + 1028 0211 Optiplex 755 + 1028 0d02 Optiplex 755 + 94c3 RV610 [Radeon HD 2400 PRO] + 1028 0302 Radeon HD 2400 Pro + 174b e400 Radeon HD 2400 PRO + 18bc 3550 Radeon HD 2400 PRO + 94c4 RV610 LE [Radeon HD 2400 PRO AGP] + 94c5 RV610 [Radeon HD 2400 LE] + 94c7 RV610 [Radeon HD 2350] + 94c8 RV610/M74 [Mobility Radeon HD 2400 XT] + 94c9 RV610/M72-S [Mobility Radeon HD 2400] + 1002 94c9 Radeon HD2400 + 94cb RV610 [Radeon E2400] + 94cc RV610 LE [Radeon HD 2400 PRO PCI] + 9500 RV670 [Radeon HD 3850 X2] + 9501 RV670 [Radeon HD 3870] + 174b e620 Radeon HD 3870 + 9504 RV670/M88 [Mobility Radeon HD 3850] + 9505 RV670 [Radeon HD 3690/3850] + 148c 3000 Radeon HD 3850 + 174b 3000 Radeon HD 3690/3850 + 1787 3000 Radeon HD 3690 + 9506 RV670/M88 [Mobility Radeon HD 3850 X2] + 9507 RV670 [Radeon HD 3830] + 9508 RV670/M88-XT [Mobility Radeon HD 3870] + 9509 RV670/M88 [Mobility Radeon HD 3870 X2] + 950f R680 [Radeon HD 3870 X2] + 9511 RV670 GL [FireGL V7700] + 9513 RV670 [Radeon HD 3850 X2] + 9515 RV670 PRO [Radeon HD 3850 AGP] + 9519 RV670 GL [FireStream 9170] + 9540 RV710 [Radeon HD 4550] + 954f RV710 [Radeon HD 4350/4550] + 1462 1618 R4350 MD512H (MS-V161) + 9552 RV710/M92 [Mobility Radeon HD 4330/4350/4550] + 1028 1103 M92 [Mobility Radeon HD 4330] +# GV-R435OC-512I/FF1 + 1458 21ac Radeon HD 4350 +# GV-R455HM-512I/F41 + 1458 21ed Radeon HD 4550 +# 113-100928-J01 + 148c 3000 Radeon HD 4350 Go! Green 512MB GDDR3 +# 113-2E172001-003 + 174b 3000 Radeon HD 4350/4550 HyperMemory DDR2 + 9553 RV710/M92 [Mobility Radeon HD 4530/4570/545v] + 1025 015e Mobility Radeon HD 4570 + 1025 017d Mobility Radeon HD 4570 + 1025 0205 Mobility Radeon HD 4570 / 545v + 1025 0206 Mobility Radeon HD 4570 + 1025 0237 Mobility Radeon HD 4570 + 1028 02be Mobility Radeon HD 4570 / 545v + 1028 02e8 Mobility Radeon HD 4530 + 103c 143c Mobility Radeon HD 545v + 103c 1446 Mobility Radeon HD 545v + 103c 3624 Mobility Radeon HD 4530 + 103c 3628 Mobility Radeon HD 4530 + 103c 3636 Mobility Radeon HD 4530 + 1043 1b32 Mobility Radeon HD 4570 + 1043 1b42 Mobility Radeon HD 4570 + 104d 9056 Mobility Radeon HD 4570 + 1179 ff82 Satellite L505-13T GPU (Mobility Radeon HD 5145) + 144d c07f Mobility Radeon HD 545v + 144d c571 Mobility Radeon HD 545v + 1462 1006 Mobility Radeon HD 545v + 17aa 2129 Mobility Radeon HD 545v + 17aa 215b Mobility Radeon HD 545v + 17aa 21bb Mobility Radeon HD 545v + 9555 RV710/M92 [Mobility Radeon HD 4350/4550] + 103c 1411 ProBook 4720s GPU (Mobility Radeon HD 4350) + 9557 RV711/M93 GL [FirePro RG220] + 955f RV710/M92 [Mobility Radeon HD 4330] + 9580 RV630 [Radeon HD 2600 PRO] + 9581 RV630/M76 [Mobility Radeon HD 2600] + 9583 RV630/M76 [Mobility Radeon HD 2600 XT/2700] + 106b 0083 iMac 7,1 + 1734 1107 Mobility Radeon HD 2700 + 9586 RV630 XT [Radeon HD 2600 XT AGP] + 9587 RV630 PRO [Radeon HD 2600 PRO AGP] + 9588 RV630 XT [Radeon HD 2600 XT] + 1458 216c Radeon HD 2600 XT, 256MB GDDR3, 2x DVI, TV-out, PCIe (GV-RX26T256H) + 9589 RV630 PRO [Radeon HD 2600 PRO] +# Rebranded HD 2600 PRO + 1787 3000 Radeon HD 3610 + 958a RV630 [Radeon HD 2600 X2] + 958b RV630/M76 [Mobility Radeon HD 2600 XT] + 958c RV630 GL [FireGL V5600] + 13cc 3d18 MXRT-5200 + 958d RV630 GL [FireGL V3600] + 9591 RV635/M86 [Mobility Radeon HD 3650] + 1002 9591 Mobility Radeon HD 3650 + 9593 RV635/M86 [Mobility Radeon HD 3670] + 9595 RV635/M86 GL [Mobility FireGL V5700] + 9596 RV635 PRO [Radeon HD 3650 AGP] + 1043 0028 EAH3650 SILENT/HTDI/512M/A + 9597 RV635 PRO [Radeon HD 3650 AGP] + 9598 RV635 [Radeon HD 3650/3750/4570/4580] + 1002 9598 Mobility Radeon HD 3600 + 1043 01d6 EAH3650 Silent + 1043 3001 Radeon HD 4570 + 174b 3001 Radeon HD 3750 + 174b 4580 RV635 PRO [Radeon HD 4580] + 17af 3011 RV635 PRO [Radeon HD 4580] + 9599 RV635 PRO [Radeon HD 3650 AGP] + 95c0 RV620 PRO [Radeon HD 3470] + 1002 95c0 Mobility Radeon HD 3470 + 1028 3243 C120D + 95c2 RV620/M82 [Mobility Radeon HD 3410/3430] + 95c4 RV620/M82 [Mobility Radeon HD 3450/3470] + 1002 95c4 Mobility Radeon HD 3400 + 95c5 RV620 LE [Radeon HD 3450] + 1028 0342 OptiPlex 980 + 95c6 RV620 LE [Radeon HD 3450 AGP] + 95c9 RV620 LE [Radeon HD 3450 PCI] + 95cc RV620 GL [FirePro V3700] + 95cd RV620 GL [FirePro 2450] + 95cf RV620 GL [FirePro 2260] + 960f RS780 HDMI Audio [Radeon 3000/3100 / HD 3200/3300] + 1462 7596 760GM-E51(MS-7596) Motherboard + 9610 RS780 [Radeon HD 3200] + 1458 d000 GA-MA78GM-S2H Motherboard + 9611 RS780C [Radeon 3100] + 9612 RS780M [Mobility Radeon HD 3200] + 9613 RS780MC [Mobility Radeon HD 3100] + 9614 RS780D [Radeon HD 3300] + 9615 RS780E [Radeon HD 3200] + 9616 RS780L [Radeon 3000] +# ID is probably a copy-paste error by a MSI developer from another mainboard, since all other ID numbers on this mainboard including the sub-device of this device has used subsystem ID 1462:7596 + 1462 7501 760GM-E51(MS-7596) Motherboard + 9640 Sumo [Radeon HD 6550D] + 9641 Sumo [Radeon HD 6620G] + 9642 SuperSumo [Radeon HD 6370D] + 9643 SuperSumo [Radeon HD 6380G] + 9644 SuperSumo [Radeon HD 6410D] + 9645 SuperSumo [Radeon HD 6410D] + 9647 Sumo [Radeon HD 6520G] + 9648 Sumo [Radeon HD 6480G] + 9649 SuperSumo [Radeon HD 6480G] + 964a Sumo [Radeon HD 6530D] + 964b Sumo + 964c Sumo + 964e Sumo + 964f Sumo + 970f RS880 HDMI Audio [Radeon HD 4200 Series] + 1019 2120 A785GM-M + 1043 83a2 M4A785TD Motherboard + 1043 843e M5A88-V EVO + 9710 RS880 [Radeon HD 4200] + 1019 2120 A785GM-M + 1043 83a2 M4A785TD Motherboard + 9712 RS880M [Mobility Radeon HD 4225/4250] + 103c 1609 ProLiant MicroServer N36L + 9713 RS880M [Mobility Radeon HD 4100] + 9714 RS880 [Radeon HD 4290] + 9715 RS880 [Radeon HD 4250] + 1043 843e M5A88-V EVO +# Radeon HD 6250 too? + 9802 Wrestler [Radeon HD 6310] + 174b 1001 PURE Fusion Mini + 9803 Wrestler [Radeon HD 6310] + 9804 Wrestler [Radeon HD 6250] + 9805 Wrestler [Radeon HD 6250] + 9806 Wrestler [Radeon HD 6320] + 9807 Wrestler [Radeon HD 6290] + 9808 Wrestler [Radeon HD 7340] + 9809 Wrestler [Radeon HD 7310] + 980a Wrestler [Radeon HD 7290] + 9830 Kabini [Radeon HD 8400 / R3 Series] + 1043 8623 AM1I-A Motherboard + 9831 Kabini [Radeon HD 8400E] + 9832 Kabini [Radeon HD 8330] + 1849 9832 QC5000-ITX/PH + 9833 Kabini [Radeon HD 8330E] + 9834 Kabini [Radeon HD 8210] + 9835 Kabini [Radeon HD 8310E] + 9836 Kabini [Radeon HD 8280 / R3 Series] + 9837 Kabini [Radeon HD 8280E] + 9838 Kabini [Radeon HD 8240 / R3 Series] + 9839 Kabini [Radeon HD 8180] + 983d Temash [Radeon HD 8250/8280G] + 9840 Kabini HDMI/DP Audio + 1043 8623 AM1I-A Motherboard + 1849 9840 QC5000-ITX/PH + 9850 Mullins [Radeon R3 Graphics] + 9851 Mullins [Radeon R4/R5 Graphics] + 1179 f928 Beema [Radeon R5 Graphics] + 9852 Mullins [Radeon R2 Graphics] + 9853 Mullins [Radeon R2 Graphics] + 9854 Mullins [Radeon R3E Graphics] + 9855 Mullins [Radeon R6 Graphics] + 9856 Mullins [Radeon R1E/R2E Graphics] + 9857 Mullins [Radeon APU XX-2200M with R2 Graphics] + 9858 Mullins + 9859 Mullins + 985a Mullins + 985b Mullins + 985c Mullins + 985d Mullins + 985e Mullins + 985f Mullins + 9874 Wani [Radeon R5/R6/R7 Graphics] + 1002 1871 Radeon R5 Graphics + 1002 1e20 Radeon R7 Graphics + 1028 06bd Radeon R6 Graphics + 103c 2b44 Radeon R6 Graphics + 103c 8221 Radeon R5 Graphics + 103c 8223 Radeon R5 Graphics + 103c 8238 Radeon R7 Graphics + 103c 8353 Radeon R7 Graphics + 1458 d000 Radeon R7 Graphics + 17aa 5113 Radeon R6 Graphics + 17aa 5116 Radeon R6 Graphics + 17aa 5118 Radeon R5 Graphics + 9890 Amur + 98c0 Nolan + 98e4 Stoney [Radeon R2/R3/R4/R5 Graphics] + 9900 Trinity [Radeon HD 7660G] + 103c 1985 Pavilion 17-e163sg Notebook PC +# AMD A10-5800K CPU + 9901 Trinity [Radeon HD 7660D] + 9902 Trinity HDMI Audio Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 9903 Trinity [Radeon HD 7640G] + 103c 194e ProBook 455 G1 Notebook + 103c 1952 ProBook 455 G1 Notebook + 9904 Trinity [Radeon HD 7560D] + 9905 Trinity GL [FirePro A300] + 9906 Trinity GL [FirePro A320] + 9907 Trinity [Radeon HD 7620G] + 9908 Trinity [Radeon HD 7600G] + 9909 Trinity [Radeon HD 7500G] + 990a Trinity [Radeon HD 7500G] + 990b Richland [Radeon HD 8650G] + 990c Richland [Radeon HD 8670D] + 990d Richland [Radeon HD 8550G] + 990e Richland [Radeon HD 8570D] + 990f Richland [Radeon HD 8610G] + 9910 Trinity [Radeon HD 7660G] + 9913 Trinity [Radeon HD 7640G] + 9917 Trinity [Radeon HD 7620G] + 9918 Trinity [Radeon HD 7600G] + 9919 Trinity [Radeon HD 7500G] + 991e Bishop [Xbox One S APU] + 9920 Liverpool [Playstation 4 APU] + 9921 Liverpool HDMI/DP Audio Controller + 9922 Starshp + 9923 Starsha2 [Kingston/Clayton] + 9924 Gladius + 9925 Kingston/Clayton/Jupiter/Gladius/Montego HDMI Controller + 9926 Jupiter + 9990 Trinity 2 [Radeon HD 7520G] + 9991 Trinity 2 [Radeon HD 7540D] + 9992 Trinity 2 [Radeon HD 7420G] + 9993 Trinity 2 [Radeon HD 7480D] + 9994 Trinity 2 [Radeon HD 7400G] + 9995 Richland [Radeon HD 8450G] + 9996 Richland [Radeon HD 8470D] + 9997 Richland [Radeon HD 8350G] + 9998 Richland [Radeon HD 8370D] + 9999 Richland [Radeon HD 8510G] + 999a Richland [Radeon HD 8410G] + 999b Richland [Radeon HD 8310G] + 999c Richland [Radeon HD 8650D] +# AMD Quad-Core A8-Series APU A8-6500T with Radeon HD 8550D + 999d Richland [Radeon HD 8550D] + 99a0 Trinity 2 [Radeon HD 7520G] + 99a2 Trinity 2 [Radeon HD 7420G] + 99a4 Trinity 2 [Radeon HD 7400G] + aa00 R600 HDMI Audio [Radeon HD 2900 GT/PRO/XT] + aa01 RV635 HDMI Audio [Radeon HD 3650/3730/3750] + aa08 RV630 HDMI Audio [Radeon HD 2600 PRO/XT / HD 3610] + aa10 RV610 HDMI Audio [Radeon HD 2350 PRO / 2400 PRO/XT / HD 3410] + 174b aa10 Radeon HD 2400 PRO + 18bc aa10 Radeon HD 2400 PRO + aa18 RV670/680 HDMI Audio [Radeon HD 3690/3800 Series] + aa20 RV635 HDMI Audio [Radeon HD 3650/3730/3750] + aa28 RV620 HDMI Audio [Radeon HD 3450/3470/3550/3570] + aa30 RV770 HDMI Audio [Radeon HD 4850/4870] + 174b aa30 Radeon HD 4850 512MB GDDR3 PCI-E Dual Slot Fansink + aa38 RV710/730 HDMI Audio [Radeon HD 4000 series] + 103c 3628 dv6-1190en + aa50 Cypress HDMI Audio [Radeon HD 5830/5850/5870 / 6850/6870 Rebrand] + aa58 Juniper HDMI Audio [Radeon HD 5700 Series] +# 5500, 5600 and mobile 5700 series + aa60 Redwood HDMI Audio [Radeon HD 5000 Series] + 1025 033d Mobility Radeon HD 5650 + 1025 0347 Aspire 7740G + aa68 Cedar HDMI Audio [Radeon HD 5400/6300/7300 Series] + 1028 aa68 XPS 8300 + aa80 Cayman/Antilles HDMI Audio [Radeon HD 6930/6950/6970/6990] + aa88 Barts HDMI Audio [Radeon HD 6790/6850/6870 / 7720 OEM] + aa90 Turks HDMI Audio [Radeon HD 6500/6600 / 6700M Series] + 1028 04a3 Precision M4600 + aa98 Caicos HDMI Audio [Radeon HD 6450 / 7450/8450/8490 OEM / R5 230/235/235X OEM] + 174b aa98 Radeon HD 6450 1GB DDR3 + aaa0 Tahiti HDMI Audio [Radeon HD 7870 XT / 7950/7970] + aab0 Oland/Hainan/Cape Verde/Pitcairn HDMI Audio [Radeon HD 7000 Series] + aab8 Tiran HDMI Audio + aac0 Tobago HDMI Audio [Radeon R7 360 / R9 360 OEM] + 1043 aac0 R7260X-DC2OC-2GD5 + aac8 Hawaii HDMI Audio [Radeon R9 290/290X / 390/390X] + aad8 Tonga HDMI Audio [Radeon R9 285/380] + 174b aad8 Radeon R9 285/380 HDMI Audio + aae0 Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X] + aae8 Fiji HDMI/DP Audio [Radeon R9 Nano / FURY/FURY X] + aaf0 Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590] + aaf8 Vega 10 HDMI Audio [Radeon Vega 56/64] + ab00 Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X] + ab08 Polaris 22 HDMI Audio + ab10 Lexa HDMI Audio + ab18 Vega 12 HDMI Audio + ab20 Vega 20 HDMI Audio [Radeon VII] + ab28 Navi 21/23 HDMI/DP Audio Controller + ab38 Navi 10 HDMI Audio + ac00 Theater 506 World-Wide Analog Decoder + ac01 Theater 506 World-Wide Analog Decoder + ac02 TV Wonder HD 600 PCIe + ac03 Theater 506 PCIe + ac04 Theater 506 USB + ac05 Theater 506 USB + ac06 Theater 506 External USB + ac07 Theater 506 External USB + ac08 Theater 506A World-Wide Analog Decoder + Demodulator + ac09 Theater 506A World-Wide Analog Decoder + Demodulator + ac0a Theater 506A PCIe + ac0b Theater 506A PCIe + ac0c Theater 506A USB + ac0d Theater 506A USB + ac0e Theater 506A External USB + ac0f Theater 506A External USB + ac12 Theater HD T507 (DVB-T) TV tuner/capture device + cab0 RS100 Host Bridge + cab2 RS200 Host Bridge + cab3 RS250 Host Bridge + cbb2 RS200 Host Bridge +1003 ULSI Systems + 0201 US201 +1004 VLSI Technology Inc + 0005 82C592-FC1 + 0006 82C593-FC1 + 0007 82C594-AFC2 + 0008 82C596/7 [Wildcat] + 0009 82C597-AFC2 + 000c 82C541 [Lynx] + 000d 82C543 [Lynx] + 0101 82C532 + 0102 82C534 [Eagle] + 0103 82C538 + 0104 82C535 + 0105 82C147 + 0200 82C975 + 0280 82C925 + 0304 QSound ThunderBird PCI Audio + 1004 0304 QSound ThunderBird PCI Audio + 122d 1206 DSP368 Audio + 1483 5020 XWave Thunder 3D Audio + 0305 QSound ThunderBird PCI Audio Gameport + 1004 0305 QSound ThunderBird PCI Audio Gameport + 122d 1207 DSP368 Audio Gameport + 1483 5021 XWave Thunder 3D Audio Gameport + 0306 QSound ThunderBird PCI Audio Support Registers + 1004 0306 QSound ThunderBird PCI Audio Support Registers + 122d 1208 DSP368 Audio Support Registers + 1483 5022 XWave Thunder 3D Audio Support Registers + 0307 SAA7785 ThunderBird PCI Audio + 1004 0703 Philips Rhythmic Edge PSC703 + 1004 0705 Philips Seismic Edge PSC705 + 1004 0706 Philips Acoustic Edge PSC706 + 0308 SAA7785 ThunderBird PCI Audio Gameport + 0702 VAS96011 [Golden Gate II] + 0703 Tollgate +1005 Avance Logic Inc. [ALI] + 2064 ALG2032/2064 + 2128 ALG2364A + 2301 ALG2301 + 2302 ALG2302 + 2364 ALG2364 + 2464 ALG2364A + 2501 ALG2564A/25128A +1006 Reply Group +1007 NetFrame Systems Inc +1008 Epson +100a Phoenix Technologies +100b National Semiconductor Corporation + 0001 DP83810 + 0002 87415/87560 IDE + 000e 87560 Legacy I/O + 000f FireWire Controller + 0011 NS87560 National PCI System I/O + 0012 USB Controller + 0020 DP83815 (MacPhyter) Ethernet Controller + 103c 0024 Pavilion ze4400 builtin Network + 12d9 000c Aculab E1/T1 PMXc cPCI carrier card + 1385 f311 FA311 / FA312 (FA311 with WoL HW) + 1385 f312 FA312 (rev. A1) Fast Ethernet PCI Adapter + 0021 PC87200 PCI to ISA Bridge + 0022 DP83820 10/100/1000 Ethernet Controller + 1186 4900 DGE-500T + 1385 621a GA621 + 1385 622a GA622T + 0028 Geode GX2 Host Bridge + 002a CS5535 South Bridge + 002b CS5535 ISA bridge + 002d CS5535 IDE + 002e CS5535 Audio + 002f CS5535 USB + 0030 Geode GX2 Graphics Processor + 0035 DP83065 [Saturn] 10/100/1000 Ethernet Controller + 0500 SCx200 Bridge + 0501 SCx200 SMI + 0502 SCx200, SC1100 IDE controller + 100b 0502 IDE Controller + 0503 SCx200, SC1100 Audio Controller + 100b 0503 XpressAudio controller + 0504 SCx200 Video + 0505 SCx200 XBus + 0510 SC1100 Bridge + 100b 0500 GPIO and LPC support bridge + 0511 SC1100 SMI & ACPI + 100b 0501 SC1100 SMI & ACPI bridge + 0515 SC1100 XBus + 100b 0505 SC1100 PCI to XBus bridge + d001 87410 IDE +100c Tseng Labs Inc + 3202 ET4000/W32p rev A + 3205 ET4000/W32p rev B + 3206 ET4000/W32p rev C + 3207 ET4000/W32p rev D + 3208 ET6000 + 4702 ET6300 +100d AST Research Inc +100e Weitek + 9000 P9000 Viper + 9001 P9000 Viper + 9002 P9000 Viper + 9100 P9100 Viper Pro/SE +1010 Video Logic, Ltd. +1011 Digital Equipment Corporation + 0001 DECchip 21050 + 0002 DECchip 21040 [Tulip] + 0004 DECchip 21030 [TGA] + 0007 NVRAM [Zephyr NVRAM] + 0008 KZPSA [KZPSA] + 0009 DECchip 21140 [FasterNet] + 1025 0310 21140 Fast Ethernet + 10b8 2001 SMC9332BDT EtherPower 10/100 + 10b8 2002 SMC9332BVT EtherPower T4 10/100 + 10b8 2003 SMC9334BDT EtherPower 10/100 (1-port) + 1109 2400 ANA-6944A/TX Fast Ethernet + 1112 2300 RNS2300 Fast Ethernet + 1112 2320 RNS2320 Fast Ethernet + 1112 2340 RNS2340 Fast Ethernet + 1113 1207 EN-1207-TX Fast Ethernet + 1186 1100 DFE-500TX Fast Ethernet + 1186 1112 DFE-570TX Fast Ethernet + 1186 1140 DFE-660 Cardbus Ethernet 10/100 + 1186 1142 DFE-660 Cardbus Ethernet 10/100 + 11f6 0503 Freedomline Fast Ethernet + 1282 9100 AEF-380TXD Fast Ethernet + 1385 1100 FA310TX Fast Ethernet + 2646 0001 KNE100TX Fast Ethernet + 000a 21230 Video Codec + 000d PBXGB [TGA2] + 000f PCI-to-PDQ Interface Chip [PFI] FDDI (DEFPA) + 1011 def1 FDDIcontroller/PCI (DEFPA) + 103c def1 FDDIcontroller/PCI (3X-DEFPA) + 0014 DECchip 21041 [Tulip Pass 3] + 1186 0100 DE-530+ + 0016 ATMworks 350 Adapter [OPPO] (DGLPB) + 0017 PV-PCI Graphics Controller (ZLXp-L) + 0018 Memory Channel interface + 0019 DECchip 21142/43 + 1011 500a DE500A Fast Ethernet + 1011 500b DE500B Fast Ethernet + 1014 0001 10/100 EtherJet Cardbus + 1025 0315 ALN315 Fast Ethernet + 1033 800c PC-9821-CS01 100BASE-TX Interface Card + 1033 800d PC-9821NR-B06 100BASE-TX Interface Card + 103c 125a 10/100Base-TX (PCI) [A5506B] + 108d 0016 Rapidfire 2327 10/100 Ethernet + 108d 0017 GoCard 2250 Ethernet 10/100 Cardbus + 10b8 2005 SMC8032DT Extreme Ethernet 10/100 + 10b8 8034 SMC8034 Extreme Ethernet 10/100 + 10ef 8169 Cardbus Fast Ethernet + 1109 2a00 ANA-6911A/TX Fast Ethernet + 1109 2b00 ANA-6911A/TXC Fast Ethernet + 1109 3000 ANA-6922/TX Fast Ethernet + 1113 1207 Cheetah Fast Ethernet + 1113 2220 Cardbus Fast Ethernet + 115d 0002 Cardbus Ethernet 10/100 + 1179 0203 Fast Ethernet + 1179 0204 Cardbus Fast Ethernet + 1186 1100 DFE-500TX Fast Ethernet + 1186 1101 DFE-500TX Fast Ethernet + 1186 1102 DFE-500TX Fast Ethernet + 1186 1112 DFE-570TX Quad Fast Ethernet + 11f0 4235 21143 [FASTLine-II UTP 10/100] + 1259 2800 AT-2800Tx Fast Ethernet + 1266 0004 Eagle Fast EtherMAX + 12af 0019 NetFlyer Cardbus Fast Ethernet + 1374 0001 Cardbus Ethernet Card 10/100 + 1374 0002 Cardbus Ethernet Card 10/100 + 1374 0007 Cardbus Ethernet Card 10/100 + 1374 0008 Cardbus Ethernet Card 10/100 + 1385 2100 FA510 + 1395 0001 10/100 Ethernet CardBus PC Card + 13d1 ab01 EtherFast 10/100 Cardbus (PCMPC200) + 1498 000a TPMC880-10 10/100Base-T and 10Base2 PMC Ethernet Adapter + 1498 000b TPMC880-11 Single 10/100Base-T PMC Ethernet Adapter + 1498 000c TPMC880-12 Single 10Base2 PMC Ethernet Adapter + 14cb 0100 LNDL-100N 100Base-TX Ethernet PC Card + 1668 2000 FastNet Pro (PE2000) + 2646 0001 KNE100TX + 2646 0002 KNE-CB4TX + 8086 0001 EtherExpress PRO/100 Mobile CardBus 32 + 001a Farallon PN9000SX Gigabit Ethernet + 0021 DECchip 21052 + 0022 DECchip 21150 + 0023 DECchip 21150 + 0024 DECchip 21152 + 0025 DECchip 21153 + 0026 DECchip 21154 + 0034 56k Modem Cardbus + 1374 0003 56k Modem Cardbus + 0045 DECchip 21553 + 0046 DECchip 21554 + 0e11 4050 Smart Array 4200 Controller + 0e11 4051 Smart Array 4250ES Controller + 0e11 4058 Smart Array 431 Controller + 103c 10c2 NetRAID-4M + 12d9 000a IP Telephony card + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 9005 0364 5400S (Mustang) + 9005 0365 5400S (Mustang) + 9005 1364 Dell PowerEdge RAID Controller 2 + 9005 1365 Dell PowerEdge RAID Controller 2 + e4bf 1000 CC8-1-BLUES + 1065 StrongARM DC21285 + 1069 0020 DAC960P / DAC1164P +1012 Micronics Computers Inc +1013 Cirrus Logic + 0038 GD 7548 + 0040 GD 7555 Flat Panel GUI Accelerator + 004c GD 7556 Video/Graphics LCD/CRT Ctrlr + 00a0 GD 5430/40 [Alpine] + 00a2 GD 5432 [Alpine] + 00a4 GD 5434-4 [Alpine] + 00a8 GD 5434-8 [Alpine] + 00ac GD 5436 [Alpine] + 00b0 GD 5440 + 00b8 GD 5446 + 1af4 1100 QEMU Virtual Machine + 00bc GD 5480 + 1013 00bc CL-GD5480 + 00d0 GD 5462 + 00d2 GD 5462 [Laguna I] + 00d4 GD 5464 [Laguna] + 00d5 GD 5464 BD [Laguna] + 00d6 GD 5465 [Laguna] + 13ce 8031 Barco Metheus 2 Megapixel, Dual Head + 13cf 8031 Barco Metheus 2 Megapixel, Dual Head + 00e8 GD 5436U + 1100 CL 6729 + 1110 PD 6832 PCMCIA/CardBus Ctrlr + 1112 PD 6834 PCMCIA/CardBus Ctrlr + 1113 PD 6833 PCMCIA/CardBus Ctrlr + 1200 GD 7542 [Nordic] + 1202 GD 7543 [Viking] + 1204 GD 7541 [Nordic Light] + 4000 MD 5620 [CLM Data Fax Voice] + 4400 CD 4400 + 6001 CS 4610/11 [CrystalClear SoundFusion Audio Accelerator] + 1014 1010 CS4610 SoundFusion Audio Accelerator + 6003 CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator] + 1013 4280 Crystal SoundFusion PCI Audio Accelerator + 1014 0153 ThinkPad 600X/A20m + 153b 112e DMX XFire 1024 + 153b 1136 SiXPack 5.1+ + 1681 0050 Game Theater XP + 1681 a010 Gamesurround Fortissimo II + 1681 a011 Gamesurround Fortissimo III 7.1 + 5053 3357 Santa Cruz + 6004 CS 4614/22/24 [CrystalClear SoundFusion Audio Accelerator] + 6005 Crystal CS4281 PCI Audio + 1013 4281 Crystal CS4281 PCI Audio + 10cf 10a8 Crystal CS4281 PCI Audio + 10cf 10a9 Crystal CS4281 PCI Audio + 10cf 10aa Crystal CS4281 PCI Audio + 10cf 10ab Crystal CS4281 PCI Audio + 10cf 10ac Crystal CS4281 PCI Audio + 10cf 10ad Crystal CS4281 PCI Audio + 10cf 10b4 Crystal CS4281 PCI Audio + 1179 0001 Crystal CS4281 PCI Audio + 14c0 000c Crystal CS4281 PCI Audio +1014 IBM + 0002 PCI to MCA Bridge + 0005 Processor to I/O Controller [Alta Lite] + 0007 Processor to I/O Controller [Alta MP] + 000a PCI to ISA Bridge (IBM27-82376) [Fire Coral] + 0017 CPU to PCI Bridge + 0018 TR Auto LANstreamer + 001b GXT-150P + 001c Carrera + 001d SCSI-2 FAST PCI Adapter (82G2675) + 0020 GXT1000 Graphics Adapter + 0022 PCI to PCI Bridge (IBM27-82351) + 002d Processor to I/O Controller [Python] + 002e SCSI RAID Adapter [ServeRAID] + 1014 002e ServeRAID-3x + 1014 022e ServeRAID-4H + 0031 2 Port Serial Adapter +# AS400 iSeries PCI sync serial card + 1014 0031 2721 WAN IOA - 2 Port Sync Serial Adapter + 0036 PCI to 32-bit LocalBus Bridge [Miami] + 0037 PowerPC to PCI Bridge (IBM27-82660) + 003a CPU to PCI Bridge + 003c GXT250P/GXT255P Graphics Adapter + 003e 16/4 Token ring UTP/STP controller + 1014 003e Token-Ring Adapter + 1014 00cd Token-Ring Adapter + Wake-On-LAN + 1014 00ce 16/4 Token-Ring Adapter 2 + 1014 00cf 16/4 Token-Ring Adapter Special + 1014 00e4 High-Speed 100/16/4 Token-Ring Adapter + 1014 00e5 16/4 Token-Ring Adapter 2 + Wake-On-LAN + 1014 016d iSeries 2744 Card + 0045 SSA Adapter + 0046 MPIC interrupt controller + 0047 PCI to PCI Bridge + 0048 PCI to PCI Bridge + 0049 Warhead SCSI Controller + 004e ATM Controller (14104e00) + 004f ATM Controller (14104f00) + 0050 ATM Controller (14105000) + 0053 25 MBit ATM Controller + 0054 GXT500P/GXT550P Graphics Adapter + 0057 MPEG PCI Bridge + 0058 SSA Adapter [Advanced SerialRAID/X] + 005e GXT800P Graphics Adapter + 007c ATM Controller (14107c00) + 007d 3780IDSP [MWave] + 008b EADS PCI to PCI Bridge + 008e GXT3000P Graphics Adapter + 0090 GXT 3000P + 1014 008e GXT-3000P + 0091 SSA Adapter + 0095 20H2999 PCI Docking Bridge + 0096 Chukar chipset SCSI controller + 1014 0097 iSeries 2778 DASD IOA + 1014 0098 iSeries 2763 DASD IOA + 1014 0099 iSeries 2748 DASD IOA + 009f PCI 4758 Cryptographic Accelerator + 00a5 ATM Controller (1410a500) + 00a6 ATM 155MBPS MM Controller (1410a600) + 00b7 GXT2000P Graphics Adapter + 1092 00b8 FireGL1 AGP 32Mb + 00b8 GXT2000P Graphics Adapter + 00be ATM 622MBPS Controller (1410be00) + 00dc Advanced Systems Management Adapter (ASMA) + 00fc CPC710 Dual Bridge and Memory Controller (PCI-64) + 0105 CPC710 Dual Bridge and Memory Controller (PCI-32) + 010f Remote Supervisor Adapter (RSA) + 0142 Yotta Video Compositor Input + 1014 0143 Yotta Input Controller (ytin) + 0144 Yotta Video Compositor Output + 1014 0145 Yotta Output Controller (ytout) + 0156 405GP PLB to PCI Bridge + 015e 622Mbps ATM PCI Adapter + 0160 64bit/66MHz PCI ATM 155 MMF + 016e GXT4000P Graphics Adapter + 0170 GXT6000P Graphics Adapter + 1092 0172 Fire GL2 + 1092 0173 Fire GL3 + 1092 0174 Fire GL4 + 1092 0184 Fire GL4s + 017d GXT300P Graphics Adapter + 0180 Snipe chipset SCSI controller + 1014 0241 iSeries 2757 DASD IOA + 1014 0264 Quad Channel PCI-X U320 SCSI RAID Adapter (2780) + 0188 EADS-X PCI-X to PCI-X Bridge + 01a7 PCI-X to PCI-X Bridge + 01bd ServeRAID Controller + 1014 01bd ServeRAID 4Lx + 1014 01be ServeRAID-4M + 1014 01bf ServeRAID-4L + 1014 0208 ServeRAID-4Mx + 1014 020e ServeRAID-4Lx + 1014 022e ServeRAID-4H + 1014 0258 ServeRAID-5i + 1014 0259 ServeRAID-5i + 01c1 64bit/66MHz PCI ATM 155 UTP + 01e6 Cryptographic Accelerator + 01ef PowerPC 440GP PCI Bridge + 1734 102b PCEAS PCI-X Dual Port ESCON Adapter + 1734 10f8 PCEAT PCI-Express Dual Port ESCON Adapter + 01ff 10/100 Mbps Ethernet + 0219 Multiport Serial Adapter + 1014 021a Dual RVX + 1014 0251 Internal Modem/RVX + 1014 0252 Quad Internal Modem + 021b GXT6500P Graphics Adapter + 021c GXT4500P Graphics Adapter + 0233 GXT135P Graphics Adapter +# Internal debugging card for CELL based systems + 025a Drone card + 028c Citrine chipset SCSI controller + 1014 028d Dual Channel PCI-X DDR SAS RAID Adapter (572E) + 1014 02be Dual Channel PCI-X DDR U320 SCSI RAID Adapter (571B) + 1014 02c0 Dual Channel PCI-X DDR U320 SCSI Adapter (571A) + 1014 030d PCI-X DDR Auxiliary Cache Adapter (575B) + 02a1 Calgary PCI-X Host Bridge + 02bd Obsidian chipset SCSI controller + 1014 02c1 PCI-X DDR 3Gb SAS Adapter (572A/572C) + 1014 02c2 PCI-X DDR 3Gb SAS RAID Adapter (572B/571D) + 1014 0338 PCI-X DDR Auxiliary Cache Adapter (575C) + 0302 Winnipeg PCI-X Host Bridge + 0308 CalIOC2 PCI-E Root Port + 0311 FC 5740/1954 4-Port 10/100/1000 Base-TX PCI-X Adapter for POWER + 0314 ZISC 036 Neural accelerator card + 032d Axon - Cell Companion Chip + 1014 03a1 PCIe PowerXCell 8i Cell Accelerator Board + 0339 Obsidian-E PCI-E SCSI controller + 1014 030a PCIe 3Gb SAS RAID Adapter (574E) + 1014 033a PCIe 3Gb SAS Adapter (57B3) + 1014 035c PCIe x8 Internal 3Gb SAS adapter (57CC) + 1014 0360 PCI-E Auxiliary Cache Adapter (57B7) + 033d PCI-E IPR SAS Adapter (FPGA) + 1014 033c PCIe2 1.8GB Cache 6Gb SAS RAID Adapter Tri-port (57B5) + 1014 0353 PCIe2 3.1GB Cache 6Gb SAS RAID Enclosure (57C3) + 1014 0354 PCIe2 6Gb SAS Adapter Dual-port (57C4) + 1014 0356 PCIe2 1.8GB Cache 6Gb SAS RAID & SSD Adapter (574D) + 1014 035f PCIe2 6Gb SAS Adapter Quad-port (57B2) + 034a PCI-E IPR SAS Adapter (ASIC) + 1014 033b PCIe2 6Gb SAS RAID Adapter Quad-port (57B4) + 1014 0355 PCIe2 3.6GB Cache 6Gb SAS RAID Adapter Quad-port (57B1) + 1014 0357 PCIe2 6Gb SAS Adapter Quad-port (57C6) + 1014 035d PCIe3 1.8GB Cache RAID SAS Adapter Quad-port 6GB (57C8) + 1014 035e PCIe2 3.6GB Cache 6Gb SAS RAID Adapter Quad-port (57CE) + 1014 03fb PCIe3 28GB Cache RAID SAS Enclosure 6Gb x 16 (57D5) + 1014 03fe PCIe3 x8 Cache SAS RAID Internal Adapter 6Gb (57D8) + 1014 03ff PCIe3 x8 SAS RAID Internal Adapter 6Gb (57D7) + 1014 0474 PCIe3 x16 Cache SAS RAID Internal Adapter 6Gb (57EB) + 1014 0475 PCIe3 x16 SAS RAID Internal Adapter 6Gb (57EC) + 1014 0499 PCIe3 x16 Cache SAS RAID Internal Adapter 6Gb (57ED) + 1014 049a PCIe3 x16 SAS RAID Internal Adapter 6Gb (57EE) + 1014 04c7 PCIe3 x 8 Cache SAS RAID Internal Adapter 6GB(2CCA) + 1014 04c8 PCIe3 x 8 Cache SAS RAID Internal Adapter 6GB(2CD2) + 1014 04c9 PCIe3 x 8 Cache SAS RAID Internal Adapter 6GB(2CCD) + 03dc POWER8 Host Bridge (PHB3) + 044b GenWQE Accelerator Adapter + 04aa Flash Adapter 90 (PCIe2 0.9TB) + 04c1 POWER9 Host Bridge (PHB4) + 04da PCI-E IPR SAS+ Adapter (ASIC) + 1014 04fb PCIe3 x16 20GB Cache 12Gb Quad SAS RAID+ Adapter(580B) + 1014 04fc PCIe3 x8 12Gb Quad SAS RAID+ Adapter(580A) + 04ed Internal Shared Memory (ISM) virtual PCI device + 3022 QLA3022 Network Adapter + 4022 QLA3022 Network Adapter + ffff MPIC-2 interrupt controller +1015 LSI Logic Corp of Canada +1016 ICL Personal Systems +1017 SPEA Software AG + 5343 SPEA 3D Accelerator +1018 Unisys Systems +1019 Elitegroup Computer Systems +101a AT&T GIS (NCR) + 0005 100VG ethernet + 0007 BYNET BIC4G/2C/2G + 101a 0019 BYNET BIC2C + 101a 001c BYNET BIC2G + 101a 001f BYNET BIC4G + 0009 PQS Memory Controller + 000a BYNET BPCI Adapter + 000b BYNET 4 Port BYA Switch (BYA4P) + 000c BYNET 4 Port BYA Switch (BYA4G) + 0010 NCR AMC Memory Controller + 1dc1 BYNET BIC2M/BIC4M/BYA4M + 101a 0019 BIC2M + 101a 001f BIC4M + 101a 0ece BYA4M + 1fa8 BYNET Multi-port BIC Adapter (XBIC Based) + 101a 00c3 BYNET BIC2SE +101b Vitesse Semiconductor +# Maxim VSC452 Super BMC Controller with Video + 0452 VSC452 [SuperBMC] +101c Western Digital + 0193 33C193A + 0196 33C196A + 0197 33C197A + 0296 33C296A + 3193 7193 + 3197 7197 + 3296 33C296A + 4296 34C296 + 9710 Pipeline 9710 + 9712 Pipeline 9712 + c24a 90C +# ID for Newly Acquired Storage Products from Vitesse +101d Maxim Integrated Products +101e American Megatrends Inc. + 0009 MegaRAID 428 Ultra RAID Controller (rev 03) + 1960 MegaRAID + 101e 0471 MegaRAID 471 Enterprise 1600 RAID Controller + 101e 0475 MegaRAID 475 Express 500/500LC RAID Controller + 101e 0477 MegaRAID 477 Elite 3100 RAID Controller + 101e 0493 MegaRAID 493 Elite 1600 RAID Controller + 101e 0494 MegaRAID 494 Elite 1650 RAID Controller + 101e 0503 MegaRAID 503 Enterprise 1650 RAID Controller + 101e 0511 MegaRAID 511 i4 IDE RAID Controller + 101e 0522 MegaRAID 522 i4133 RAID Controller + 1028 0471 PowerEdge RAID Controller 3/QC + 1028 0475 PowerEdge RAID Controller 3/SC + 1028 0493 PowerEdge RAID Controller 3/DC + 1028 0511 PowerEdge Cost Effective RAID Controller ATA100/4Ch + 103c 60e7 NetRAID-1M + 103c 60e8 NetRaid 2M [AMI MegaRaid 493] + 9010 MegaRAID 428 Ultra RAID Controller + 9030 EIDE Controller + 9031 EIDE Controller + 9032 EIDE & SCSI Controller + 9033 SCSI Controller + 9040 Multimedia card + 9060 MegaRAID 434 Ultra GT RAID Controller + 9063 MegaRAC + 101e 0767 Dell Remote Assistant Card 2 +101f PictureTel +1020 Hitachi Computer Products +1021 OKI Electric Industry Co. Ltd. +1022 Advanced Micro Devices, Inc. [AMD] + 1100 K8 [Athlon64/Opteron] HyperTransport Technology Configuration + 1101 K8 [Athlon64/Opteron] Address Map + 1102 K8 [Athlon64/Opteron] DRAM Controller + 1103 K8 [Athlon64/Opteron] Miscellaneous Control + 1200 Family 10h Processor HyperTransport Configuration + 1201 Family 10h Processor Address Map + 1202 Family 10h Processor DRAM Controller + 1203 Family 10h Processor Miscellaneous Control + 1204 Family 10h Processor Link Control + 1300 Family 11h Processor HyperTransport Configuration + 1301 Family 11h Processor Address Map + 1302 Family 11h Processor DRAM Controller + 1303 Family 11h Processor Miscellaneous Control + 1304 Family 11h Processor Link Control + 1305 Griffin Function 5 + 1306 Griffin Function 6 + 1307 Griffin Function 7 + 1308 Kaveri Audio Controller + 1314 Wrestler/Bheem/Ontario/Krishna Audio Controller + 13e0 Ariel Root Complex + 13e1 Ariel IOMMU + 13e2 Ariel PCIe Dummy Host Bridge + 13e3 Ariel PCIe GPP Bridge + 13e4 Ariel PCIe Dummy Host Bridge + 13e5 Ariel Internal PCIe GPP Bridge 0 to Bus A + 13e6 Ariel Internal PCIe GPP Bridge 0 to Bus B + 13e7 Ariel SMBus Controller + 13e8 Ariel LPC Bridge + 13e9 Ariel Internal GPU + 13ea Ariel HD Audio Controller + 13eb Ariel HD Audio Coprocessor + 13ec Ariel Cryptographic Coprocessor + 13ed Ariel USB 3.1 Type C: Gen2 x 1port + DP Alt Mode + 13ee Ariel USB 3.1 Type A: Gen2 x 2 ports + 13ef Ariel ZCN/MP4 + 13f0 Ariel Device 24: Function 0 + 13f1 Ariel Device 24: Function 1 + 13f2 Ariel Device 24: Function 2 + 13f3 Ariel Device 24: Function 3 + 13f4 Ariel Device 24: Function 4 + 13f5 Ariel Device 24: Function 5 + 13f6 Ariel Device 24: Function 6 + 13f7 Ariel Device 24: Function 7 + 1400 Family 15h (Models 10h-1fh) Processor Function 0 + 1401 Family 15h (Models 10h-1fh) Processor Function 1 + 1402 Family 15h (Models 10h-1fh) Processor Function 2 + 1403 Family 15h (Models 10h-1fh) Processor Function 3 + 1404 Family 15h (Models 10h-1fh) Processor Function 4 + 1405 Family 15h (Models 10h-1fh) Processor Function 5 + 1410 Family 15h (Models 10h-1fh) Processor Root Complex + 103c 1985 Pavilion 17-e163sg Notebook PC + 1412 Family 15h (Models 10h-1fh) Processor Root Port + 1022 1234 Trinity A-series APU + 1413 Family 15h (Models 10h-1fh) Processor Root Port + 1414 Family 15h (Models 10h-1fh) Processor Root Port + 1022 1234 Trinity A-series APU + 1415 Family 15h (Models 10h-1fh) Processor Root Port + 1416 Family 15h (Models 10h-1fh) Processor Root Port + 1417 Family 15h (Models 10h-1fh) Processor Root Port + 1418 Family 15h (Models 10h-1fh) Processor Root Port + 1419 Family 15h (Models 10h-1fh) I/O Memory Management Unit + 141a Family 15h (Models 30h-3fh) Processor Function 0 + 141b Family 15h (Models 30h-3fh) Processor Function 1 + 141c Family 15h (Models 30h-3fh) Processor Function 2 + 141d Family 15h (Models 30h-3fh) Processor Function 3 + 141e Family 15h (Models 30h-3fh) Processor Function 4 + 141f Family 15h (Models 30h-3fh) Processor Function 5 + 1422 Family 15h (Models 30h-3fh) Processor Root Complex + 1423 Family 15h (Models 30h-3fh) I/O Memory Management Unit + 1424 Family 15h (Models 30h-3fh) Processor Root Port + 1425 Kaveri P2P Bridge for GFX PCIe Port [1:0] + 1426 Family 15h (Models 30h-3fh) Processor Root Port + 142e Liverpool Processor HT configuration + 142f Liverpool Processor Address Maps + 1430 Liverpool Processor DRAM configuration + 1431 Liverpool Processor Misc configuration + 1432 Liverpool Processor PM configuration + 1433 Liverpool Processor NB Performance Monitor + 1434 Liverpool Processor SPLL Configuration + 1436 Liverpool Processor Root Complex + 1437 Liverpool I/O Memory Management Unit + 1438 Liverpool UMI PCIe Dummy Host Bridge + 1439 Family 16h Processor Functions 5:1 + 143a Kingston/Clayton/Gladius/Montego Root Complex + 143b Kingston/Clayton/Gladius/Montego P2P Bridge for UMI Link + 1440 Matisse/Vermeer Data Fabric: Device 18h; Function 0 + 1441 Matisse/Vermeer Data Fabric: Device 18h; Function 1 + 1442 Matisse/Vermeer Data Fabric: Device 18h; Function 2 + 1443 Matisse/Vermeer Data Fabric: Device 18h; Function 3 + 1444 Matisse/Vermeer Data Fabric: Device 18h; Function 4 + 1445 Matisse/Vermeer Data Fabric: Device 18h; Function 5 + 1446 Matisse/Vermeer Data Fabric: Device 18h; Function 6 + 1447 Matisse/Vermeer Data Fabric: Device 18h; Function 7 + 1448 Renoir Device 24: Function 0 + 1449 Renoir Device 24: Function 1 + 144a Renoir Device 24: Function 2 + 144b Renoir Device 24: Function 3 + 144c Renoir Device 24: Function 4 + 144d Renoir Device 24: Function 5 + 144e Renoir Device 24: Function 6 + 144f Renoir Device 24: Function 7 + 1450 Family 17h (Models 00h-0fh) Root Complex + 1451 Family 17h (Models 00h-0fh) I/O Memory Management Unit + 1452 Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge + ea50 ce19 mCOM10-L1900 + 1453 Family 17h (Models 00h-0fh) PCIe GPP Bridge + 1454 Family 17h (Models 00h-0fh) Internal PCIe GPP Bridge 0 to Bus B + 1455 Zeppelin/Renoir PCIe Dummy Function + 1456 Family 17h (Models 00h-0fh) Platform Security Processor + 1457 Family 17h (Models 00h-0fh) HD Audio Controller + 145a Zeppelin/Raven/Raven2 PCIe Dummy Function + 145b Zeppelin Non-Transparent Bridge + 145c Family 17h (Models 00h-0fh) USB 3.0 Host Controller + 145d Zeppelin Switch Upstream (PCIE SW.US) + 145e Zeppelin Switch Downstream (PCIE SW.DS) + 145f Zeppelin USB 3.0 Host controller + 1460 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 0 + 1461 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 1 + 1462 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 2 + 1463 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 3 + 1464 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 4 + 1465 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 5 + 1466 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 6 + 1467 Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 7 + 1468 Zeppelin Cryptographic Coprocessor NTBCCP + 1470 Vega 10 PCIe Bridge + 1471 Vega 10 PCIe Bridge + 1480 Starship/Matisse Root Complex + 1462 7c37 X570-A PRO motherboard + 15d9 1b95 H12SSL-i + 1481 Starship/Matisse IOMMU + 1482 Starship/Matisse PCIe Dummy Host Bridge + 1483 Starship/Matisse GPP Bridge + 1484 Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] + 1485 Starship/Matisse Reserved SPP + 1486 Starship/Matisse Cryptographic Coprocessor PSPCPP + 1487 Starship/Matisse HD Audio Controller + 1462 9c37 X570-A PRO motherboard + 1488 Starship Reserved SSP + 1489 Starship Reserved SSP + 148a Starship/Matisse PCIe Dummy Function + 148b Starship/Matisse Non-Transparent Bridge + 148c Starship USB 3.0 Host Controller + 15d9 145c H12SSL-i + 148d Starship/Matisse Switch Upstream (PCIE SW.US) + 148e Starship/Matisse Switch Downstream (PCIE SW.DS) + 148f Starship Reserved SSP + 1490 Starship Device 24; Function 0 + 1491 Starship Device 24; Function 1 + 1492 Starship Device 24; Function 2 + 1493 Starship Device 24; Function 3 + 1494 Starship Device 24; Function 4 + 1495 Starship Device 24; Function 5 + 1496 Starship Device 24; Function 6 + 1497 Starship Device 24; Function 7 + 1498 Starship/Matisse PTDMA + 1499 Starship/Matisse NVMe + 149a Starship PCIe GPP Bridge [1:0] + 149b Starship Reserved SSP + 149c Matisse USB 3.0 Host Controller + 1462 7c37 X570-A PRO motherboard + 149d Vangogh CVIP + 1510 Family 14h Processor Root Complex + 174b 1001 PURE Fusion Mini + 1512 Family 14h Processor Root Port + 1513 Family 14h Processor Root Port + 1514 Family 14h Processor Root Port + 1515 Family 14h Processor Root Port + 1516 Family 14h Processor Root Port + 1530 Family 16h Processor Function 0 + 1531 Family 16h Processor Function 1 + 1532 Family 16h Processor Function 2 + 1533 Family 16h Processor Function 3 + 1534 Family 16h Processor Function 4 + 1535 Family 16h Processor Function 5 + 1536 Family 16h Processor Root Complex + 1043 8623 AM1I-A Motherboard + 1849 1536 QC5000-ITX/PH + 1537 Kabini/Mullins PSP-Platform Security Processor + 1538 Family 16h Processor Function 0 + 1539 Kabini P2P Bridge for PCIe Ports[4:0] + 1540 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky HT Configuration + 1541 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Address Maps + 1542 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky DRAM Configuration + 1543 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Miscellaneous Configuration + 1544 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky PM Configuration + 1545 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky NB Performance Monitor + 1546 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Root Complex + 1547 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky IOMMU + 1548 Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky UMI PCIe Dummy Host Bridge + 1549 Kryptos/Cato/Garfield/Garfield+ P2P Bridge for PCIe Port [3:0] + 154a Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Audio Processor + 154b Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Security Processor + 154d Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky/Anubis HDMI Controller + 154f Anubis Audio Processor + 1550 Garfield+/Arlene/Pooky/Anubis SPLL Configuration + 1553 Arlene/Pooky P2P Bridge for PCIE (3:0) + 155b Anubis Root Complex + 155c Anubis IOMMU + 155d Anubis UMI PCIe Dummy Bridge + 155e Anubis P2P Bridge for PCIe Ports [4:0] + 1560 Anubis Security Processor + 1566 Family 16h (Models 30h-3fh) Processor Root Complex + 1567 Mullins IOMMU + 156b Family 16h (Models 30h-3fh) Host Bridge + 1570 Family 15h (Models 60h-6fh) Processor Function 0 + 1571 Family 15h (Models 60h-6fh) Processor Function 1 + 1572 Family 15h (Models 60h-6fh) Processor Function 2 + 1573 Family 15h (Models 60h-6fh) Processor Function 3 + 1574 Family 15h (Models 60h-6fh) Processor Function 4 + 1575 Family 15h (Models 60h-6fh) Processor Function 5 + 1576 Family 15h (Models 60h-6fh) Processor Root Complex + 1577 Family 15h (Models 60h-6fh) I/O Memory Management Unit + 1578 Carrizo Platform Security Processor + 1579 Carrizo Audio Processor + 157a Family 15h (Models 60h-6fh) Audio Controller + 157b Family 15h (Models 60h-6fh) Host Bridge + 157c Family 15h (Models 60h-6fh) Processor Root Port + 157d Carrizo Audio Dummy Host Bridge + 157e Carrizo Audio Controller + 1580 Family 16h (Models 30h-3fh) Processor Function 0 + 1581 Family 16h (Models 30h-3fh) Processor Function 1 + 1582 Family 16h (Models 30h-3fh) Processor Function 2 + 1583 Family 16h (Models 30h-3fh) Processor Function 3 + 1584 Family 16h (Models 30h-3fh) Processor Function 4 + 1585 Family 16h (Models 30h-3fh) Processor Function 5 + 1590 Amur/Nolan HT Configuration + 1591 Amur/Nolan Address Maps + 1592 Amur/Nolan DRAM Configuration + 1593 Amur/Nolan Miscellaneous Configuration + 1594 Amur/Nolan PM Configuration + 1595 Amur/Nolan NB Performance Monitor + 1596 Amur/Nolan Root Complex + 1597 Amur/Nolan IOMMU + 1598 Amur/Nolan Platform Security Processor + 1599 Amur/Nolan PCIe Dummy Host Bridge + 159d Amur Function 6: Gasket + 15b0 Stoney HT Configuration + 15b1 Stoney Address Maps + 15b2 Stoney DRAM Configuration + 15b3 Stoney Miscellaneous Configuration + 15b4 Stoney PM Configuration + 15b5 Stoney NB Performance Monitor + 15bc Stoney PCIe [GFX,GPP] Bridge [4:0] + 15be Stoney Audio Processor + 15d0 Raven/Raven2 Root Complex + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME B450M-A Motherboard + ea50 ce19 mCOM10-L1900 + 15d1 Raven/Raven2 IOMMU + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME B450M-A Motherboard + ea50 ce19 mCOM10-L1900 + 15d2 Raven/Raven2 PCIe Dummy Host Bridge + 15d3 Raven/Raven2 PCIe GPP Bridge [6:0] + ea50 ce19 mCOM10-L1900 + 15d4 FireFlight USB 3.1 + 15d5 FireFlight USB 3.1 + 15da Raven/Raven2 PCIe Dummy Host Bridge + 15db Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus A + ea50 ce19 mCOM10-L1900 + 15dc Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus B + ea50 ce19 mCOM10-L1900 + 15de Raven/Raven2/FireFlight HD Audio Controller + 15df Family 17h (Models 10h-1fh) Platform Security Processor + 1043 876b PRIME Motherboard + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 15e0 Raven USB 3.1 + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME Motherboard + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 15e1 Raven USB 3.1 + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME Motherboard + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 15e2 ACP/ACP3X/ACP6x Audio Coprocessor + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 15e3 Family 17h/19h HD Audio Controller + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 86c7 PRIME B450M-A Motherboard + 17aa 5124 ThinkPad E595 + 15e4 Sensor Fusion Hub + 15e5 Raven2 USB 3.1 + ea50 ce19 mCOM10-L1900 + 15e6 Raven/Raven2/Renoir Non-Sensor Fusion Hub KMDF driver + 1022 15e4 Raven/Raven2/Renoir Sensor Fusion Hub + ea50 ce19 mCOM10-L1900 + 15e8 Raven/Raven2 Device 24: Function 0 + 15e9 Raven/Raven2 Device 24: Function 1 + 15ea Raven/Raven2 Device 24: Function 2 + 15eb Raven/Raven2 Device 24: Function 3 + 15ec Raven/Raven2 Device 24: Function 4 + 15ed Raven/Raven2 Device 24: Function 5 + 15ee Raven/Raven2 Device 24: Function 6 + 15ef Raven/Raven2 Device 24: Function 7 + 15f0 FireFlight Device 24: Function 0 + 15f1 FireFlight Device 24: Function 1 + 15f2 FireFlight Device 24: Function 2 + 15f3 FireFlight Device 24: Function 3 + 15f4 FireFlight Device 24: Function 4 + 15f5 FireFlight Device 24: Function 5 + 15f6 FireFlight Device 24: Function 6 + 15f7 FireFlight Device 24: Function 7 + 15f8 FireFlight Root Complex + 15f9 FireFlight IOMMU + 15fa FireFlight PCIe Dummy Host Bridge + 15fb FireFlight PCIe GPP Bride 3:0 + 15fc FireFlight PCIe Dummy Host Bridge + 15fd FireFlight Internal PCIe GPP Bridge 0 to Bus A + 15fe FireFlight Internal PCIe GPP Bridge 0 to Bus B + 15ff FireFlight Bus A; Device 0: Function 0: Internal GPU + 1600 Family 15h Processor Function 0 + 1601 Family 15h Processor Function 1 + 1602 Family 15h Processor Function 2 + 1603 Family 15h Processor Function 3 + 1604 Family 15h Processor Function 4 + 1605 Family 15h Processor Function 5 + 1606 Arden Security Processor + 1608 Arden Device 18h: Function 0 + 1609 Arden Device 18h: Function 1 + 160a Arden Device 18h: Function 2 + 160b Arden Device 18h: Function 3 + 160c Arden Device 18h: Function 4 + 160d Arden Device 18h: Function 5 + 160e Arden Device 18h: Function 6 + 160f Arden Device 18h: Function 7 + 1620 Anubis HT Configuration + 1621 Anubis Address Maps + 1622 Anubis DRAM Configuration + 1623 Anubis Miscellaneous Configuration + 1624 Anubis PM Configuration + 1625 Anubis NB Performance Monitor + 1626 Arden Root Complex + 1627 Arden IOMMU + 1628 Arden PCIe Dummy Host Bridge + 1629 Arden PCIe GPP Bridge + 162a Arden Internal PCIe GPP Bridge 0 to bus X + 162b Arden PCIe Non-Transparent Bridge + 1630 Renoir/Cezanne Root Complex + 1631 Renoir/Cezanne IOMMU + 1632 Renoir PCIe Dummy Host Bridge + 1633 Renoir PCIe GPP Bridge + 1634 Renoir/Cezanne PCIe GPP Bridge + 1635 Renoir Internal PCIe GPP Bridge to Bus + 1637 Renoir HD Audio Controller + 1639 Renoir/Cezanne USB 3.1 + 163a VanGogh USB0 + 163b VanGogh USB1 + 163c VanGogh SecUSB + 163d VanGogh SecureFunction + 163e VanGogh HSP + 1641 Renoir 10GbE Controller Port 0 (XGBE0/1) + 1642 Renoir WLAN + 1643 Renoir BT + 1644 Renoir I2S + 1648 VanGogh Root Complex + 1649 VanGogh PSP/CCP + 164f Milan IOMMU + 1650 Milan Data Fabric; Function 0 + 1651 Milan Data Fabric; Function 1 + 1652 Milan Data Fabric; Function 2 + 1653 Milan Data Fabric; Function 3 + 1654 Milan Data Fabric; Function 4 + 1655 Milan Data Fabric; Function 5 + 1656 Milan Data Fabric; Function 6 + 1657 Milan Data Fabric; Function 7 + 166a Cezanne Data Fabric; Function 0 + 166b Cezanne Data Fabric; Function 1 + 166c Cezanne Data Fabric; Function 2 + 166d Cezanne Data Fabric; Function 3 + 166e Cezanne Data Fabric; Function 4 + 166f Cezanne Data Fabric; Function 5 + 1670 Cezanne Data Fabric; Function 6 + 1671 Cezanne Data Fabric; Function 7 + 1700 Family 12h/14h Processor Function 0 + 1701 Family 12h/14h Processor Function 1 + 1702 Family 12h/14h Processor Function 2 + 1703 Family 12h/14h Processor Function 3 + 1704 Family 12h/14h Processor Function 4 + 1705 Family 12h Processor Root Complex + 1706 Llano P2P Bridge to external GPU + 1707 Family 12h Processor Root Port + 1708 Family 12h Processor Root Port + 1709 Family 12h Processor Root Port + 170a Family 12h Processor Root Port + 170b Family 12h Processor Root Port + 170c Family 12h Processor Root Port + 170d Family 12h Processor Root Port + 1716 Family 12h/14h Processor Function 5 + 1718 Family 12h/14h Processor Function 6 + 1719 Family 12h/14h Processor Function 7 + 2000 79c970 [PCnet32 LANCE] + 1014 2000 NetFinity 10/100 Fast Ethernet + 1022 2000 PCnet - Fast 79C971 + 103c 104c Ethernet with LAN remote power Adapter + 103c 1064 Ethernet with LAN remote power Adapter + 103c 1065 Ethernet with LAN remote power Adapter + 103c 106c Ethernet with LAN remote power Adapter + 103c 106e Ethernet with LAN remote power Adapter + 103c 10ea Ethernet with LAN remote power Adapter + 1113 1220 EN1220 10/100 Fast Ethernet + 1259 2450 AT-2450 10/100 Fast Ethernet + 1259 2454 AT-2450v4 10Mb Ethernet Adapter + 1259 2700 AT-2700TX 10/100 Fast Ethernet + 1259 2701 AT-2700FX 100Mb Ethernet + 1259 2702 AT-2700FTX 10/100 Mb Fiber/Copper Fast Ethernet + 1259 2703 AT-2701FX + 1259 2704 AT-2701FTX 10/100 Mb Fiber/Copper Fast Ethernet + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 4c53 1010 CP5/CR6 mainboard + 4c53 1020 VR6 mainboard + 4c53 1030 PC5 mainboard + 4c53 1040 CL7 mainboard + 4c53 1060 PC7 mainboard +# Via AMD's own technical reference on their Am79C978 NICs; https://www.amd.com/system/files/TechDocs/22206.pdf + 2001 Am79C978 PCnet Home (HomePNA) 1/10 PCI Ethernet Adapter [Am79C971 PHY] + 1092 0a78 Multimedia Home Network Adapter + 1668 0299 ActionLink Home Network Adapter + 2003 Am 1771 MBW [Alchemy] + 2020 53c974 [PCscsi] + 1af4 1100 QEMU Virtual Machine + 2040 79c974 + 2080 CS5536 [Geode companion] Host Bridge + 2081 Geode LX Video + 2082 Geode LX AES Security Block + 208f CS5536 GeodeLink PCI South Bridge + 2090 CS5536 [Geode companion] ISA + 2091 CS5536 [Geode companion] FLASH + 2093 CS5536 [Geode companion] Audio + 2094 CS5536 [Geode companion] OHC + 2095 CS5536 [Geode companion] EHC + 2096 CS5536 [Geode companion] UDC + 2097 CS5536 [Geode companion] UOC + 209a CS5536 [Geode companion] IDE + 2625 Am79C973 [Lance/PCI PCNet/32] + 2627 Am79C975 [Lance/PCI PCNet/32] + 3000 ELanSC520 Microcontroller + 43a0 Hudson PCI to PCI bridge (PCIE port 0) + 43a1 Hudson PCI to PCI bridge (PCIE port 1) + 43a2 Hudson PCI to PCI bridge (PCIE port 2) + 43a3 Hudson PCI to PCI bridge (PCIE port 3) + 43b0 X370 Series Chipset PCIe Upstream Port + 1849 43c6 Fatal1ty X370 Professional Gaming + 43b1 X399 Series Chipset PCIe Bridge + 43b4 300 Series Chipset PCIe Port + 43b5 X370 Series Chipset SATA Controller + 1849 43c8 Fatal1ty X370 Professional Gaming + 43b6 X399 Series Chipset SATA Controller + 43b7 300 Series Chipset SATA Controller + 43b9 X370 Series Chipset USB 3.1 xHCI Controller + 1849 43d0 Fatal1ty X370 Professional Gaming + 43ba X399 Series Chipset USB 3.1 xHCI Controller + 43bb 300 Series Chipset USB 3.1 xHCI Controller + 43c6 400 Series Chipset PCIe Bridge + 43c7 400 Series Chipset PCIe Port + 43c8 400 Series Chipset SATA Controller + 43d5 400 Series Chipset USB 3.1 XHCI Controller + 43e9 500 Series Chipset Switch Upstream Port + 43eb 500 Series Chipset SATA Controller +# or ASM106X Serial ATA Controller + 1b21 1062 ASM1062 Serial ATA Controller + 43ee 500 Series Chipset USB 3.1 XHCI Controller +# maybe + 1b21 1142 ASM1042A USB 3.0 Host Controller + 57a3 Matisse PCIe GPP Bridge + 57a4 Matisse PCIe GPP Bridge + 57ad Matisse Switch Upstream + 7006 AMD-751 [Irongate] System Controller + 7007 AMD-751 [Irongate] AGP Bridge + 700a AMD-IGR4 AGP Host to PCI Bridge + 700b AMD-IGR4 PCI to PCI Bridge + 700c AMD-760 MP [IGD4-2P] System Controller + 700d AMD-760 MP [IGD4-2P] AGP Bridge + 700e AMD-760 [IGD4-1P] System Controller + 700f AMD-760 [IGD4-1P] AGP Bridge + 7400 AMD-755 [Cobra] ISA + 7401 AMD-755 [Cobra] IDE + 7403 AMD-755 [Cobra] ACPI + 7404 AMD-755 [Cobra] USB + 7408 AMD-756 [Viper] ISA + 7409 AMD-756 [Viper] IDE + 740b AMD-756 [Viper] ACPI + 740c AMD-756 [Viper] USB + 7410 AMD-766 [ViperPlus] ISA + 7411 AMD-766 [ViperPlus] IDE + 7413 AMD-766 [ViperPlus] ACPI + 7414 AMD-766 [ViperPlus] USB + 7440 AMD-768 [Opus] ISA + 1043 8044 A7M-D Mainboard + 7441 AMD-768 [Opus] IDE + 7443 AMD-768 [Opus] ACPI + 1043 8044 A7M-D Mainboard + 7445 AMD-768 [Opus] Audio + 7446 AMD-768 [Opus] MC97 Modem + 7448 AMD-768 [Opus] PCI + 7449 AMD-768 [Opus] USB + 7450 AMD-8131 PCI-X Bridge + 7451 AMD-8131 PCI-X IOAPIC + 7454 AMD-8151 System Controller + 7455 AMD-8151 AGP Bridge + 7458 AMD-8132 PCI-X Bridge + 7459 AMD-8132 PCI-X IOAPIC + 7460 AMD-8111 PCI + 161f 3017 HDAMB + 7461 AMD-8111 USB + 7462 AMD-8111 Ethernet + 7463 AMD-8111 USB EHCI + 7464 AMD-8111 USB OHCI + 161f 3017 HDAMB + 7468 AMD-8111 LPC + 161f 3017 HDAMB + 7469 AMD-8111 IDE + 1022 2b80 AMD-8111 IDE [Quartet] + 161f 3017 HDAMB + 746a AMD-8111 SMBus 2.0 + 746b AMD-8111 ACPI + 161f 3017 HDAMB + 746d AMD-8111 AC97 Audio + 161f 3017 HDAMB + 746e AMD-8111 MC97 Modem + 756b AMD-8111 ACPI + 7800 FCH SATA Controller [IDE mode] + 7801 FCH SATA Controller [AHCI mode] + 103c 168b ProBook 4535s Notebook + 103c 194e ProBook 455 G1 Notebook + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 7801 QC5000-ITX/PH + 7802 FCH SATA Controller [RAID mode] + 7803 FCH SATA Controller [RAID mode] + 7804 FCH SATA Controller [AHCI mode] + 103c 1985 Pavilion 17-e163sg Notebook PC + 7805 FCH SATA Controller [RAID mode] + 7806 FCH SD Flash Controller + 7807 FCH USB OHCI Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 7807 QC5000-ITX/PH + 7808 FCH USB EHCI Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 7808 QC5000-ITX/PH + 7809 FCH USB OHCI Controller + 103c 194e ProBook 455 G1 Notebook + 17aa 3988 Z50-75 + 780a Kabini/Mullins SATA Raid/AHCI Mode (DotHill driver) + 780b FCH SMBus Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 780b QC5000-ITX/PH + 780c FCH IDE Controller + 780d FCH Azalia Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8444 F2A85-M Series + 1043 8576 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 8892 QC5000-ITX/PH + 780e FCH LPC Bridge + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 780e QC5000-ITX/PH + 780f FCH PCI Bridge + 7812 FCH USB XHCI Controller + 7813 FCH SD Flash Controller + 7814 FCH USB XHCI Controller + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 1043 8623 AM1I-A Motherboard + 17aa 3988 Z50-75 + 1849 7814 QC5000-ITX/PH + 7900 FCH SATA Controller [IDE mode] + 7901 FCH SATA Controller [AHCI mode] + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME Motherboard + 1462 7c37 X570-A PRO motherboard + 15d9 7901 H12SSL-i + ea50 ce19 mCOM10-L1900 + 7902 FCH SATA Controller [RAID mode] + 7903 FCH SATA Controller [RAID mode] + 7904 FCH SATA Controller [AHCI mode] + 7906 FCH SD Flash Controller + 7908 FCH USB EHCI Controller + 790b FCH SMBus Controller + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME Motherboard + 1462 7c37 X570-A PRO motherboard + 15d9 790b H12SSL-i + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 790e FCH LPC Bridge + 103c 8615 Pavilion Laptop 15-cw1xxx + 1043 876b PRIME B450M-A Motherboard + 1462 7c37 X570-A PRO motherboard + 15d9 790e H12SSL-i + 17aa 5124 ThinkPad E595 + ea50 ce19 mCOM10-L1900 + 790f FCH PCI Bridge + 7914 FCH USB XHCI Controller + 9600 RS780 Host Bridge + 1043 82ee M378A-CM Motherboard + 1043 82f1 M3A78-EH Motherboard + 9601 RS880 Host Bridge + 1019 2120 A785GM-M + 103c 1609 ProLiant MicroServer N36L + 1043 83a2 M4A785-M Mainboard + 1043 843e M5A88-V EVO + 9602 RS780/RS880 PCI to PCI bridge (int gfx) + 9603 RS780 PCI to PCI bridge (ext gfx port 0) + 103c 1609 ProLiant MicroServer N36L + 9604 RS780/RS880 PCI to PCI bridge (PCIE port 0) + 9605 RS780/RS880 PCI to PCI bridge (PCIE port 1) + 9606 RS780 PCI to PCI bridge (PCIE port 2) + 103c 1609 ProLiant MicroServer N36L + 9607 RS780/RS880 PCI to PCI bridge (PCIE port 3) + 9608 RS780/RS880 PCI to PCI bridge (PCIE port 4) + 9609 RS780/RS880 PCI to PCI bridge (PCIE port 5) + 960a RS780 PCI to PCI bridge (NB-SB link) + 960b RS780 PCI to PCI bridge (ext gfx port 1) +1023 Trident Microsystems + 0194 82C194 + 2000 4DWave DX + 2001 4DWave NX + 122d 1400 Trident PCI288-Q3DII (NX) + 2100 CyberBlade XP4m32 + 2200 XGI Volari XP5 + 8400 CyberBlade/i7 + 1023 8400 CyberBlade i7 AGP + 8420 CyberBlade/i7d + 0e11 b15a CyberBlade i7 AGP + 8500 CyberBlade/i1 + 8520 CyberBlade i1 + 0e11 b16e CyberBlade i1 AGP + 1023 8520 CyberBlade i1 AGP + 8620 CyberBlade/i1 + 1014 0502 ThinkPad R30/T30 + 1014 1025 Travelmate 352TE + 8820 CyberBlade XPAi1 + 9320 TGUI 9320 + 9350 GUI Accelerator + 9360 Flat panel GUI Accelerator + 9382 Cyber 9382 [Reference design] + 9383 Cyber 9383 [Reference design] + 9385 Cyber 9385 [Reference design] + 9386 Cyber 9386 + 9388 Cyber 9388 + 9397 Cyber 9397 + 939a Cyber 9397DVD + 9420 TGUI 9420 + 9430 TGUI 9430 + 9440 TGUI 9440 + 9460 TGUI 9460 + 9470 TGUI 9470 + 9520 Cyber 9520 + 9525 Cyber 9525 + 9540 Cyber 9540 + 9660 TGUI 9660/938x/968x + 9680 TGUI 9680 + 9682 TGUI 9682 + 9683 TGUI 9683 + 9685 ProVIDIA 9685 + 9750 3DImage 9750 + 1014 9750 3DImage 9750 + 1023 9750 3DImage 9750 + 9753 TGUI 9753 + 9754 TGUI 9754 + 9759 TGUI 975 + 9783 TGUI 9783 + 9785 TGUI 9785 + 9850 3DImage 9850 + 9880 Blade 3D PCI/AGP + 1023 9880 Blade 3D + 9910 CyberBlade/XP + 9930 CyberBlade/XPm + 9960 CyberBlade XP2 +1024 Zenith Data Systems +1025 Acer Incorporated [ALI] + 1435 M1435 + 1445 M1445 + 1449 M1449 + 1451 M1451 + 1461 M1461 + 1489 M1489 + 1511 M1511 + 1512 ALI M1512 Aladdin + 1513 M1513 + 1521 ALI M1521 Aladdin III CPU Bridge + 10b9 1521 ALI M1521 Aladdin III CPU Bridge + 1523 ALI M1523 ISA Bridge + 10b9 1523 ALI M1523 ISA Bridge + 1531 M1531 Northbridge [Aladdin IV/IV+] + 1533 M1533 PCI-to-ISA Bridge + 10b9 1533 ALI M1533 Aladdin IV/V ISA South Bridge + 1535 M1535 PCI Bridge + Super I/O + FIR + 1541 M1541 Northbridge [Aladdin V] + 10b9 1541 ALI M1541 Aladdin V/V+ AGP+PCI North Bridge + 1542 M1542 Northbridge [Aladdin V] + 1543 M1543 PCI-to-ISA Bridge + Super I/O + FIR + 1561 M1561 Northbridge [Aladdin 7] + 1621 M1621 Northbridge [Aladdin-Pro II] + 1631 M1631 Northbridge+3D Graphics [Aladdin TNT2] + 1641 M1641 Northbridge [Aladdin-Pro IV] + 1647 M1647 [MaGiK1] PCI North Bridge + 1671 M1671 Northbridge [ALADDiN-P4] + 1672 Northbridge [CyberALADDiN-P4] + 3141 M3141 + 3143 M3143 + 3145 M3145 + 3147 M3147 + 3149 M3149 + 3151 M3151 + 3307 M3307 MPEG-I Video Controller + 3309 M3309 MPEG-II Video w/ Software Audio Decoder + 3321 M3321 MPEG-II Audio/Video Decoder + 5212 M4803 + 5215 ALI PCI EIDE Controller + 5217 M5217H + 5219 M5219 + 5225 M5225 + 5229 M5229 + 5235 M5235 + 5237 M5237 PCI USB Host Controller + 5240 EIDE Controller + 5241 PCMCIA Bridge + 5242 General Purpose Controller + 5243 PCI to PCI Bridge Controller + 5244 Floppy Disk Controller + 5247 M1541 PCI to PCI Bridge + 5251 M5251 P1394 Controller + 5427 PCI to AGP Bridge + 5451 M5451 PCI AC-Link Controller Audio Device + 5453 M5453 PCI AC-Link Controller Modem Device + 7101 M7101 PCI PMU Power Management Controller + 10b9 7101 M7101 PCI PMU Power Management Controller +# should be 1022:9602 + 9602 AMD RS780/RS880 PCI to PCI bridge (int gfx) +1028 Dell + 0001 PowerEdge Expandable RAID Controller 2/Si + 1028 0001 PowerEdge 2400 + 0002 PowerEdge Expandable RAID Controller 3/Di + 1028 0002 PowerEdge 4400 + 1028 00d1 PERC 3/DiV [Viper] + 1028 00d9 PERC 3/DiL [Lexus] + 0003 PowerEdge Expandable RAID Controller 3/Si + 1028 0003 PowerEdge 2450 +# PowerEdge Codename Iguana + 0004 PowerEdge Expandable RAID Controller 3/Di [Iguana] + 1028 0004 PERC 3/DiF [Iguana] + 0006 PowerEdge Expandable RAID Controller 3/Di + 0007 Remote Access Card III + 0008 Remote Access Card III + 0009 Remote Access Card III: BMC/SMIC device not present + 000a PowerEdge Expandable RAID Controller 3/Di + 1028 0106 PERC 3/DiJ [Jaguar] + 1028 011b PERC 3/DiD [Dagger] + 1028 0121 PERC 3/DiB [Boxster] + 000c Embedded Remote Access or ERA/O + 000d Embedded Remote Access: BMC/SMIC device + 000e PowerEdge Expandable RAID controller 4/Di + 000f PowerEdge Expandable RAID controller 4/Di + 1028 014a PowerEdge 1750 + 0010 Remote Access Card 4 + 0011 Remote Access Card 4 Daughter Card + 0012 Remote Access Card 4 Daughter Card Virtual UART + 0013 PowerEdge Expandable RAID controller 4 + 1028 016c PowerEdge Expandable RAID Controller 4e/Si + 1028 016d PowerEdge Expandable RAID Controller 4e/Di + 1028 016e PowerEdge Expandable RAID Controller 4e/Di + 1028 016f PowerEdge Expandable RAID Controller 4e/Di + 1028 0170 PowerEdge Expandable RAID Controller 4e/Di + 0014 Remote Access Card 4 Daughter Card SMIC interface + 0015 PowerEdge Expandable RAID controller 5 + 1028 1f01 PERC 5/E Adapter RAID Controller + 1028 1f02 PERC 5/i Adapter RAID Controller + 1028 1f03 PERC 5/i Integrated RAID Controller + 0016 PowerEdge Expandable RAID controller S300 + 1028 1f24 PERC S300 Controller +# NV-RAM Adapter used in Dell DR appliances + 0073 NV-RAM Adapter +1029 Siemens Nixdorf IS +102a LSI Logic + 0000 HYDRA + 0010 ASPEN + 001f AHA-2940U2/U2W /7890/7891 SCSI Controllers + 9005 000f 2940U2W SCSI Controller + 9005 0106 2940U2W SCSI Controller + 9005 a180 2940U2W SCSI Controller + 00c5 AIC-7899 U160/m SCSI Controller + 1028 00c5 PowerEdge 2550/2650/4600 + 00cf AIC-7899P U160/m + 1028 0106 PowerEdge 4600 + 1028 0121 PowerEdge 2650 +102b Matrox Electronics Systems Ltd. +# DJ: I've a suspicion that 0010 is a duplicate of 0d10. + 0010 MGA-I [Impression?] + 0100 MGA 1064SG [Mystique] + 0518 MGA-II [Athena] + 0519 MGA 2064W [Millennium] + 051a MGA 1064SG [Mystique] + 102b 0100 MGA-1064SG Mystique + 102b 051a MGA-1164SG Mystique 220 + 102b 1100 MGA-1084SG Mystique + 102b 1200 MGA-1084SG Mystique + 1100 102b MGA-1084SG Mystique + 110a 0018 Scenic Pro C5 (D1025) + 051b MGA 2164W [Millennium II] + 102b 051b MGA-2164W Millennium II + 102b 1100 MGA-2164W Millennium II + 102b 1200 MGA-2164W Millennium II + 102b 2100 MGA-2164W Millennium II + 051e MGA 1064SG [Mystique] AGP + 051f MGA 2164W [Millennium II] AGP + 102b 2100 MGA-2164WA [Millennium II A] + 0520 MGA G200 + 102b dbc2 G200 Multi-Monitor + 102b dbc8 G200 Multi-Monitor + 102b dbe2 G200 Multi-Monitor + 102b dbe8 G200 Multi-Monitor + 102b ff03 Millennium G200 SD + 102b ff04 Marvel G200 + 0521 MGA G200 AGP + 1014 ff03 Millennium G200 AGP + 102b 48e9 Mystique G200 AGP + 102b 48f8 Millennium G200 SD AGP + 102b 4a60 Millennium G200 LE AGP + 102b 4a64 Millennium G200 AGP + 102b c93c Millennium G200 AGP + 102b c9b0 Millennium G200 AGP + 102b c9bc Millennium G200 AGP + 102b ca60 Millennium G250 LE AGP + 102b ca6c Millennium G250 AGP + 102b dbbc Millennium G200 AGP + 102b dbc2 Millennium G200 MMS (Dual G200) + 102b dbc3 G200 Multi-Monitor + 102b dbc8 Millennium G200 MMS (Dual G200) + 102b dbd2 G200 Multi-Monitor + 102b dbd3 G200 Multi-Monitor + 102b dbd4 G200 Multi-Monitor + 102b dbd5 G200 Multi-Monitor + 102b dbd8 G200 Multi-Monitor + 102b dbd9 G200 Multi-Monitor + 102b dbe2 Millennium G200 MMS (Quad G200) + 102b dbe3 G200 Multi-Monitor + 102b dbe8 Millennium G200 MMS (Quad G200) + 102b dbf2 G200 Multi-Monitor + 102b dbf3 G200 Multi-Monitor + 102b dbf4 G200 Multi-Monitor + 102b dbf5 G200 Multi-Monitor + 102b dbf8 G200 Multi-Monitor + 102b dbf9 G200 Multi-Monitor + 102b f806 Mystique G200 Video AGP + 102b ff00 MGA-G200 AGP + 102b ff02 Mystique G200 AGP + 102b ff03 Millennium G200A AGP + 102b ff04 Marvel G200 AGP + 110a 0032 MGA-G200 AGP + 0522 MGA G200e [Pilot] ServerEngines (SEP1) + 103c 31fa ProLiant DL140 G3 + 0525 MGA G400/G450 + 0e11 b16f MGA-G400 AGP + 102b 0328 Millennium G400 16Mb SDRAM + 102b 0338 Millennium G400 16Mb SDRAM + 102b 0378 Millennium G400 32Mb SDRAM + 102b 0541 Millennium G450 Dual Head + 102b 0542 Millennium G450 Dual Head LX + 102b 0543 Millennium G450 Single Head LX + 102b 0641 Millennium G450 32Mb SDRAM Dual Head + 102b 0642 Millennium G450 32Mb SDRAM Dual Head LX + 102b 0643 Millennium G450 32Mb SDRAM Single Head LX + 102b 07c0 Millennium G450 Dual Head LE + 102b 07c1 Millennium G450 SDR Dual Head LE + 102b 0d41 Millennium G450 Dual Head PCI + 102b 0d42 Millennium G450 Dual Head LX PCI + 102b 0d43 Millennium G450 32Mb Dual Head PCI + 102b 0e00 Marvel G450 eTV + 102b 0e01 Marvel G450 eTV + 102b 0e02 Marvel G450 eTV + 102b 0e03 Marvel G450 eTV + 102b 0f80 Millennium G450 Low Profile + 102b 0f81 Millennium G450 Low Profile + 102b 0f82 Millennium G450 Low Profile DVI + 102b 0f83 Millennium G450 Low Profile DVI + 102b 19d8 Millennium G400 16Mb SGRAM + 102b 19f8 Millennium G400 32Mb SGRAM + 102b 2159 Millennium G400 Dual Head 16Mb + 102b 2179 Millennium G400 MAX/Dual Head 32Mb + 102b 217d Millennium G400 Dual Head Max + 102b 23c0 Millennium G450 + 102b 23c1 Millennium G450 + 102b 23c2 Millennium G450 DVI + 102b 23c3 Millennium G450 DVI + 102b 2f58 Millennium G400 + 102b 2f78 Millennium G400 + 102b 3693 Marvel G400 AGP + 102b 5dd0 4Sight II + 102b 5f50 4Sight II + 102b 5f51 4Sight II + 102b 5f52 4Sight II + 102b 9010 Millennium G400 Dual Head + 1458 0400 GA-G400 + 1705 0001 Millennium G450 32MB SGRAM + 1705 0002 Millennium G450 16MB SGRAM + 1705 0003 Millennium G450 32MB + 1705 0004 Millennium G450 16MB + 0527 Parhelia + 102b 0840 Parhelia 128Mb + 102b 0850 Parhelia 256MB + 102b 0870 MED2mp-DVI + 102b 0880 P-256 Edge Overlap Controller + 0528 Parhelia + 102b 1020 Parhelia 128MB + 102b 1030 Parhelia 256 MB Dual DVI + 102b 1040 MED2mp-DVI + 102b 1050 Sono S20 + 102b 1060 PJ-30L + 102b 1070 PJ-40L + 102b 1421 MED5mp + 102b 1431 MED3mp-DVI + 102b 1451 MED5mp-DVI + 102b 1491 MED2mp-DVI + 102b 14b1 MED3mp-DVI + 102b 14c1 MED5mp-DVI + 102b 14e1 Parhelia PCI 256MB + 102b 14f1 Parhelia Precision SGT + 102b 1501 ATC-4MP + 102b 1511 ATC-4MP + 102b 1521 TheatreVUE T30 + 102b 1531 TheatreVUE T20 + 102b 1541 MED2mp-DVI + 102b 1551 MED3mp-DVI + 102b 1561 MED5mp-DVI + 102b 1571 Parhelia DL256 PCI + 102b 1591 Parhelia Precision SDT + 102b 15a1 MED4mp-DVI + 102b 2011 Parhelia HR256 + 102b 2021 QID Pro + 102b 2061 PJ-40LP + 102b 2081 EWS Quad + 102b 2411 PPX-OUT8 + 102b 2421 VPX-OUT8 + 102b 2441 PPX-OUT4 + 102b 2451 VPX-OUT4 + 102b 2491 LPX-OUT4 + 0530 MGA G200EV + 0532 MGA G200eW WPCM450 + 1028 0235 PowerEdge R710 MGA G200eW WPCM450 + 1028 0236 PowerEdge R610 MGA G200eW WPCM450 + 1028 0237 PowerEdge T610 MGA G200eW WPCM450 + 1028 0287 PowerEdge M610 MGA G200eW WPCM450 + 1028 028c PowerEdge R410 MGA G200eW WPCM450 + 1028 028d PowerEdge T410 MGA G200eW WPCM450 + 1028 029c PowerEdge M710 MGA G200eW WPCM450 + 1028 02a4 PowerEdge T310 MGA G200eW WPCM450 + 15d9 0605 X8SIL + 15d9 0624 X9SCM-F Motherboard + 15d9 066b X9SRL-F + 15d9 a811 H8DGU + 0533 MGA G200EH + 103c 3381 iLO4 + 0534 G200eR2 + 1028 04f7 PowerEdge R320 server + 0536 Integrated Matrox G200eW3 Graphics Controller + 0538 MGA G200eH3 + 1590 00e4 iLO5 VGA + 0540 M91XX + 102b 2080 M9140 LP PCIe x16 + 102b 20c0 Xenia + 102b 20c1 Xenia Pro + 102b 2100 M9120 PCIe x16 + 102b 2140 M9125 PCIe x16 + 102b 2180 M9120 Plus LP PCIe x16 + 102b 21c0 M9120 Plus LP PCIe x1 + 102b 2200 VDA1164 Output Board + 102b 2240 M9148 LP PCIe x16 + 102b 2241 M9138 LP PCIe x16 + 102b 2280 M9188 ATX PCIe x16 + 102b 22c0 M9128 LP PCIe x16 + 0550 SV2 + 102b 00c0 MURA-IPX-I4EF + 102b 00c1 MURA-IPX-I4DF + 102b 00c3 MURA-IPX-I4DHF + 102b 00c5 MURA-IPX-I4EHF + 0d10 MGA Ultima/Impression + 1000 MGA G100 [Productiva] + 102b ff01 Productiva G100 + 102b ff05 Productiva G100 Multi-Monitor + 1001 MGA G100 [Productiva] AGP + 102b 1001 MGA-G100 AGP + 102b ff00 MGA-G100 AGP + 102b ff01 MGA-G100 Productiva AGP + 102b ff03 Millennium G100 AGP + 102b ff04 MGA-G100 AGP + 102b ff05 MGA-G100 Productiva AGP Multi-Monitor + 110a 001e MGA-G100 AGP + 2007 MGA Mistral + 2527 Millennium G550 +# PCI\VEN_102B&DEV_2527&SUBSYS_0F42102B&REV_01 + 102b 0f42 Matrox G550 Low Profile PCI + 102b 0f83 Millennium G550 + 102b 0f84 Millennium G550 Dual Head DDR 32Mb + 102b 1e41 Millennium G550 + 102b 22c0 G550 PCIe + 102b 2300 Millennium G550 LP PCIE + 2537 Millennium P650/P750 + 102b 1820 Millennium P750 64MB + 102b 1830 Millennium P650 64MB + 102b 1850 RAD2mp + 102b 1860 RAD3mp + 102b 1880 Sono S10 + 102b 1c10 QID 128MB + 102b 2811 Millennium P650 Low-profile PCI 64MB + 102b 2821 Millennium P650 Low-profile PCI + 102b 2841 RAD PCI + 102b 2851 Spectrum PCI + 102b 2871 EpicA TC2 + 102b 2c11 QID Low-profile PCI + 102b 2c21 QID LP PCI LW + 102b 2c31 QID LP PCI + 102b 2c41 EpicA TC4 + 102b 3001 Extio F1400 + 102b 3011 Extio F1220 + 102b 3041 RG-200DL + 102b 3051 RG-400SL + 102b 3061 Extio F1420 + 102b 3081 Extio F1240 + 2538 Millennium P650 PCIe + 102b 0847 RAD PCIe + 102b 08c7 Millennium P650 PCIe 128MB + 102b 0907 Millennium P650 PCIe 64MB + 102b 0947 Parhelia APVe + 102b 0987 ATC PCIe 4MP + 102b 1047 Millennium P650 LP PCIe 128MB + 102b 1087 Millennium P650 LP PCIe 64MB + 102b 1801 Millennium P650 PCIe x1 + 102b 2538 Parhelia APVe + 102b 3007 QID Low-profile PCIe + 102b 3087 Aurora VX3mp + 102b 30c7 QID LP PCIe + 2539 Millennium P690 + 102b 0040 Millennium P690 PCIe x16 + 102b 0042 ONYX + 102b 0043 SPECTRA + 102b 0080 Millennium P690 Plus LP PCIe x16 + 102b 0081 Millennium P690 LP PCIe x16 + 102b 0082 RAD LPX PCIe x16 + 102b 00c0 Millennium P690 Plus LP PCI + 102b 00c2 Millennium P690 LP PCI + 102b 00c3 RAD LPX PCI + 102b 0101 Millennium P690 PCI + 102b 0140 Millennium P690 LP PCIe x1 + 102b 0180 Display Wall IP Decode 128 MB + 4164 Morphis QxT frame grabber + 43b4 Morphis Qxt encoding engine + 4510 Morphis COM port + 4536 VIA Framegrabber + 4686 Concord GX (customized Intel 82541) + 475b Solios eCL/XCL-B frame grabber + 475d Vio frame grabber family + 102b 4b90 Vio Duo frame grabber (single channel) + 102b 4b91 Vio Duo frame grabber + 102b 4b92 Vio Analog frame grabber + 102b 4b93 Vio SDI Frame Grabber + 102b 4b94 Vio DVI-A frame grabber + 475f Solios (single-Full) CL frame grabber + 102b 475f Solios eCL/XCL-F frame grabber + 102b 4d5f Solios eV-CL (single-Full) frame grabber + 102b 4e5f Solios eM-CL (single-Full) frame grabber + 47a1 Solios eA/XA frame grabber + 102b 4be0 Solios eA/XA (single) frame grabber + 102b 4be1 Solios eA/XA (dual) frame grabber + 102b 4be2 Solios eA/XA (quad) frame grabber + 47a2 Solios COM port + 47c1 Solios (dual-Base/single-Medium) CL frame grabber + 102b 0000 Solios frame grabber + 102b 4b80 Solios eCL/XCL (single-Medium) frame grabber + 102b 4b81 Solios eCL/XCL (dual-Base) frame grabber + 102b 4d80 Solios eV-CL (single-Medium) frame grabber + 102b 4d81 Solios eV-CL (dual-Base) frame grabber + 102b 4e80 Solios eM-CL (single-Medium) frame grabber + 102b 4e81 Solios eM-CL (dual-Base) frame grabber + 47c2 Solios COM port + 4949 Radient frame grabber family + 102b 0010 Radient eCL (Single-full) frame grabber + 102b 0011 Radient eCLV (Single-full) frame grabber + 102b 0020 Radient eCL (Dual-base) frame grabber + 102b 0030 Radient eCL (Dual-full) frame grabber + 102b 0040 Radient eCL (Quad-base) frame grabber + 102b 0050 Radient eCL (Golden) frame grabber + 102b 1010 Radient eV-CXP (quad CXP-6) frame grabber + 102b 1015 Radient eV-CXP (dual CXP-6) frame grabber + 102b 1020 Radient eV-CXP (quad CXP-3) frame grabber + 102b 1050 Radient eV-CXP (Golden) frame grabber + 4cdc Morphis JPEG2000 accelerator + 4f54 Morphis (e)Quad frame grabber + 4fc5 Morphis (e)Dual frame grabber + 5e10 Morphis aux I/O + 6573 Shark 10/100 Multiport SwitchNIC +102c Chips and Technologies + 00b8 F64310 + 00c0 F69000 HiQVideo + 102c 00c0 F69000 HiQVideo + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 4c53 1010 CP5/CR6 mainboard + 4c53 1020 VR6 mainboard + 4c53 1030 PC5 mainboard + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 00d0 F65545 + 00d8 F65545 + 00dc F65548 + 00e0 F65550 + 00e4 F65554 + 00e5 F65555 HiQVPro + 0e11 b049 Armada 1700 Laptop Display Controller + 1179 0001 Satellite Pro/Satellite + 00f0 F68554 + 00f4 F68554 HiQVision + 00f5 F68555 + 0c30 F69030 + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 4c53 1080 CT8 mainboard +102d Wyse Technology Inc. + 50dc 3328 Audio +102e Olivetti Advanced Technology +102f Toshiba America + 0009 r4x00 + 000a TX3927 MIPS RISC PCI Controller + 0020 ATM Meteor 155 + 102f 00f8 ATM Meteor 155 + 0030 TC35815CF PCI 10/100 Mbit Ethernet Controller + 0031 TC35815CF PCI 10/100 Mbit Ethernet Controller with WOL + 0032 TC35815CF PCI 10/100 Mbit Ethernet Controller on TX4939 + 0105 TC86C001 [goku-s] IDE + 0106 TC86C001 [goku-s] USB 1.1 Host + 0107 TC86C001 [goku-s] USB Device Controller + 0108 TC86C001 [goku-s] I2C/SIO/GPIO Controller + 0180 TX4927/38 MIPS RISC PCI Controller + 0181 TX4925 MIPS RISC PCI Controller + 0182 TX4937 MIPS RISC PCI Controller + 01b4 Celleb platform IDE interface + 01b5 SCC USB 2.0 EHCI controller + 01b6 SCC USB 1.1 OHCI controller +1030 TMC Research +1031 Miro Computer Products AG + 5601 DC20 ASIC + 5607 Video I/O & motion JPEG compressor + 5631 Media 3D + 6057 MiroVideo DC10/DC30+ +1032 Compaq +1033 NEC Corporation + 0000 Vr4181A USB Host or Function Control Unit + 0001 PCI to 486-like bus Bridge + 0002 PCI to VL98 Bridge + 0003 ATM Controller + 0004 R4000 PCI Bridge + 0005 PCI to 486-like bus Bridge + 0006 PC-9800 Graphic Accelerator + 0007 PCI to UX-Bus Bridge + 0008 PC-9800 Graphic Accelerator + 0009 PCI to PC9800 Core-Graph Bridge + 0016 PCI to VL Bridge + 001a [Nile II] + 0021 Vrc4373 [Nile I] + 0029 PowerVR PCX1 + 002a PowerVR 3D + 002c Star Alpha 2 + 002d PCI to C-bus Bridge + 0035 OHCI USB Controller + 1033 0035 USB Controller + 103c 1293 USB add-in card + 103c 1294 USB 2.0 add-in card + 1179 0001 USB + 1186 0035 DUB-C2 USB 2.0 2-port 32-bit cardbus controller + 12ee 7000 Root Hub + 14c2 0105 PTI-205N USB 2.0 Host Controller + 1799 0001 Root Hub + 1931 000a GlobeTrotter Fusion Quad Lite (PPP data) + 1931 000b GlobeTrotter Fusion Quad Lite (GSM data) + 807d 0035 PCI-USB2 (OHCI subsystem) + 8086 4d44 D850EMV2 motherboard + 003b PCI to C-bus Bridge + 003e NAPCCARD Cardbus Controller + 0046 PowerVR PCX2 [midas] + 005a Vrc5074 [Nile 4] + 0063 uPD72862 [Firewarden] IEEE1394 OHCI 1.0 Link Controller + 0067 PowerVR Neon 250 Chipset + 1010 0020 PowerVR Neon 250 AGP 32Mb + 1010 0080 PowerVR Neon 250 AGP 16Mb + 1010 0088 PowerVR Neon 250 16Mb + 1010 0090 PowerVR Neon 250 AGP 16Mb + 1010 0098 PowerVR Neon 250 16Mb + 1010 00a0 PowerVR Neon 250 AGP 32Mb + 1010 00a8 PowerVR Neon 250 32Mb + 1010 0120 PowerVR Neon 250 AGP 32Mb + 0072 uPD72874 IEEE1394 OHCI 1.1 3-port PHY-Link Ctrlr + 0074 56k Voice Modem + 1033 8014 RCV56ACF 56k Voice Modem + 009b Vrc5476 + 00a5 VRC4173 + 00a6 VRC5477 AC97 + 00cd uPD72870 [Firewarden] IEEE1394a OHCI 1.0 Link/3-port PHY Controller + 12ee 8011 Root hub + 00ce uPD72871 [Firewarden] IEEE1394a OHCI 1.0 Link/1-port PHY Controller + 00df Vr4131 + 00e0 uPD72010x USB 2.0 Controller + 1186 f100 DUB-C2 USB 2.0 2-port 32-bit cardbus controller + 12ee 7001 Root hub + 14c2 0205 PTI-205N USB 2.0 Host Controller + 1799 0002 Root Hub + 807d 1043 PCI-USB2 (EHCI subsystem) + 8086 4d44 D850EMV2 motherboard + 00e7 uPD72873 [Firewarden] IEEE1394a OHCI 1.1 Link/2-port PHY Controller + 00f2 uPD72874 [Firewarden] IEEE1394a OHCI 1.1 Link/3-port PHY Controller + 00f3 uPD6113x Multimedia Decoder/Processor [EMMA2] + 010c VR7701 + 0125 uPD720400 PCI Express - PCI/PCI-X Bridge + 013a Dual Tuner/MPEG Encoder + 0194 uPD720200 USB 3.0 Host Controller + 1028 04a3 Precision M4600 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1043 8413 P8P67 Deluxe Motherboard + 104d 907a Vaio VPCF1 + 1af4 1100 QEMU Virtual Machine + 1b96 0001 USB 3.0 PCIe Card + 01e7 uPD72873 [Firewarden] IEEE1394a OHCI 1.1 Link/2-port PHY Controller + 01f2 uPD72874 [Firewarden] IEEE1394a OHCI 1.1 Link/3-port PHY Controller +1034 Framatome Connectors USA Inc. +1035 Comp. & Comm. Research Lab +1036 Future Domain Corp. + 0000 TMC-18C30 [36C70] +1037 Hitachi Micro Systems +1038 AMP, Inc +1039 Silicon Integrated Systems [SiS] + 0001 AGP Port (virtual PCI-to-PCI bridge) + 0002 AGP Port (virtual PCI-to-PCI bridge) + 0003 AGP Port (virtual PCI-to-PCI bridge) + 0004 PCI-to-PCI bridge + 1039 0000 PCIe x16 port + 0006 85C501/2/3 + 0008 SiS85C503/5513 (LPC Bridge) + 0009 5595 Power Management Controller + 000a PCI-to-PCI bridge + 1039 0000 PCIe x1 port + 0016 SiS961/2/3 SMBus controller + 0018 SiS85C503/5513 (LPC Bridge) + 0163 163 802.11b/g Wireless LAN Adapter + 0180 RAID bus controller 180 SATA/PATA [SiS] + 0181 SATA + 0182 182 SATA/RAID Controller + 1734 1095 D2030-A1 + 0186 AHCI Controller (0106) + 0190 190 Ethernet Adapter + 0191 191 Gigabit Ethernet Adapter + 1043 8139 P5SD2-FM/S mainboard + 0200 5597/5598/6326 VGA + 1039 0000 SiS5597 SVGA (Shared RAM) + 0204 82C204 + 0205 SG86C205 + 0300 300/305 PCI/AGP VGA Display Adapter + 107d 2720 Leadtek WinFast VR300 + 0310 315H PCI/AGP VGA Display Adapter + 0315 315 PCI/AGP VGA Display Adapter + 0325 315PRO PCI/AGP VGA Display Adapter + 0330 330 [Xabre] PCI/AGP VGA Display Adapter + 0406 85C501/2 + 0496 SiS85C496 PCI & CPU Memory Controller (PCM) + 0530 530 Host + 0540 540 Host + 0550 550 Host + 0597 5513C + 0601 85C601 + 0620 620 Host + 0630 630 Host + 0633 633 Host + 0635 635 Host + 0645 SiS645 Host & Memory & AGP Controller + 0646 SiS645DX Host & Memory & AGP Controller + 0648 645xx + 0649 SiS649 Host + 0650 650/M650 Host + 0651 651 Host + 0655 655 Host + 0660 660 Host + 0661 661FX/M661FX/M661MX Host + 0662 662 Host + 0671 671MX + 0730 730 Host + 0733 733 Host + 0735 735 Host + 0740 740 Host + 0741 741/741GX/M741 Host + 1849 0741 K7S41/K7S41GX motherboard + 0745 745 Host + 0746 746 Host + 0755 755 Host + 0760 760/M760 Host + 0761 761/M761 Host + 1734 1099 D2030-A1 Motherboard + 0900 SiS900 PCI Fast Ethernet + 1019 0a14 K7S5A motherboard + 1039 0900 SiS900 10/100 Ethernet Adapter onboard + 1043 8035 CUSI-FX motherboard + 1043 80a7 Motherboard P4S800D-X + 1462 0900 MS-6701 motherboard + 0961 SiS961 [MuTIOL Media IO] + 0962 SiS962 [MuTIOL Media IO] LPC Controller + 0963 SiS963 [MuTIOL Media IO] LPC Controller + 0964 SiS964 [MuTIOL Media IO] LPC Controller + 0965 SiS965 [MuTIOL Media IO] + 0966 SiS966 [MuTIOL Media IO] + 0968 SiS968 [MuTIOL Media IO] + 1180 SATA Controller / IDE mode + 1182 SATA Controller / RAID mode + 1039 0180 SiS 966 4-port SATA controller + 1183 SATA Controller / IDE mode + 1039 0180 SiS 966 4-port SATA controller + 1184 AHCI Controller / RAID mode + 1185 AHCI IDE Controller (0106) + 3602 83C602 + 5107 5107 + 5300 SiS540 PCI Display Adapter + 5315 550 PCI/AGP VGA Display Adapter + 5401 486 PCI Chipset + 5511 5511/5512 + 5513 5513 IDE Controller + 1019 0970 P6STP-FL motherboard + 1039 5513 SiS5513 EIDE Controller (A,B step) + 1043 8035 CUSI-FX motherboard + 1462 7010 MS-6701 motherboard + 1631 5513 GA-8SIML Rev1.0 Motherboard + 1734 1095 D2030-A1 Motherboard + 5517 5517 + 5571 5571 + 5581 5581 Pentium Chipset + 5582 5582 + 5591 5591/5592 Host + 5596 5596 Pentium Chipset + 5597 5597 [SiS5582] + 5600 5600 Host + 6204 Video decoder & MPEG interface + 6205 VGA Controller + 6236 6236 3D-AGP + 6300 630/730 PCI/AGP VGA Display Adapter + 1019 0970 P6STP-FL motherboard + 1043 8035 CUSI-FX motherboard + 104d 80e2 VAIO PCV-J200 + 6306 530/620 PCI/AGP VGA Display Adapter + 6325 65x/M650/740 PCI/AGP VGA Display Adapter + 1039 6325 SiS 651 onboard [Asus P4SC-EA] + 1631 1004 SiS 651C onboard [Gigabyte GA-8SIML Rev1.0] + 6326 86C326 5598/6326 + 1039 6326 SiS6326 GUI Accelerator + 1092 0a50 SpeedStar A50 + 1092 0a70 SpeedStar A70 + 1092 4910 SpeedStar A70 + 1092 4920 SpeedStar A70 + 10b0 6326 S6110-B (AGP) + 1569 6326 SiS6326 GUI Accelerator + 6330 661/741/760 PCI/AGP or 662/761Gx PCIE VGA Display Adapter + 1039 6330 [M]661xX/[M]741[GX]/[M]760 PCI/AGP VGA Adapter + 1043 8113 SiS Real 256E (ASUS P5S800-VM motherboard) + 1458 d000 SiS661FX GUI 2D/3D Accelerator + 1734 1099 D2030-A1 + 6350 770/670 PCIE VGA Display Adapter + 6351 771/671 PCIE VGA Display Adapter + 7001 USB 1.1 Controller + 1019 0a14 K7S5A motherboard + 1039 7000 Onboard USB Controller + 1462 5470 ECS K7SOM+ motherboard + 1462 7010 MS-6701 motherboard + 1734 1095 D2030-A1 Motherboard + 7002 USB 2.0 Controller + 1462 5470 K7SOM+ 5.2C Motherboard + 1462 7010 MS-6701 motherboard + 1509 7002 Onboard USB Controller + 1734 1095 D2030-A1 + 7007 FireWire Controller + 1462 701d MS-6701 + 7012 SiS7012 AC'97 Sound Controller + 1019 0f05 A928 (i-Buddie) + 1039 7012 SiS 7012 onboard [Asus P4SC-EA] AC'97 Sound Controller + 1043 818f A8S-X Motherboard + 13f6 0300 CMI9739(A) on ECS K7S series motherboard + 1462 5850 MSI 648 Max (MS-6585) + 1462 7010 MS-6701 motherboard + 15bd 1001 DFI 661FX motherboard + 1734 109f D2030-A1 Motherboard + 1849 7012 K7S41GX motherboard +# There are may be different modem codecs here (Intel537 compatible and incompatible) + 7013 AC'97 Modem Controller + 7016 SiS7016 PCI Fast Ethernet Adapter + 1039 7016 SiS7016 10/100 Ethernet Adapter + 7018 SiS PCI Audio Accelerator + 1014 01b6 SiS PCI Audio Accelerator + 1014 01b7 SiS PCI Audio Accelerator + 1019 7018 SiS PCI Audio Accelerator + 1025 000e SiS PCI Audio Accelerator + 1025 0018 SiS PCI Audio Accelerator + 1039 7018 SiS PCI Audio Accelerator + 1043 1453 SiS PCI Audio Accelerator + 1043 800b SiS PCI Audio Accelerator + 104d 80e2 VAIO PCV-J200 + 1054 7018 SiS PCI Audio Accelerator + 107d 5330 SiS PCI Audio Accelerator + 107d 5350 SiS PCI Audio Accelerator + 1170 3209 SiS PCI Audio Accelerator + 1462 400a SiS PCI Audio Accelerator + 14a4 2089 SiS PCI Audio Accelerator + 14cd 2194 SiS PCI Audio Accelerator + 14ff 1100 SiS PCI Audio Accelerator + 152d 8808 SiS PCI Audio Accelerator + 1558 1103 SiS PCI Audio Accelerator + 1558 2200 SiS PCI Audio Accelerator + 1563 7018 SiS PCI Audio Accelerator + 15c5 0111 SiS PCI Audio Accelerator + 270f a171 SiS PCI Audio Accelerator + a0a0 0022 SiS PCI Audio Accelerator + 7019 SiS7019 Audio Accelerator + 7502 Azalia Audio Controller + 1043 81a1 P5SD2-FM/S mainboard +103a Seiko Epson Corporation +103b Tatung Corp. Of America +103c Hewlett-Packard Company + 1005 A4977A Visualize EG + 1008 Visualize FX + 1028 Tach TL Fibre Channel Host Adapter + 1029 Tach XL2 Fibre Channel Host Adapter + 107e 000f Interphase 5560 Fibre Channel Adapter + 9004 9210 1Gb/2Gb Family Fibre Channel Controller + 9004 9211 1Gb/2Gb Family Fibre Channel Controller + 102a Tach TS Fibre Channel Host Adapter + 107e 000e Interphase 5540/5541 Fibre Channel Adapter + 9004 9110 1Gb/2Gb Family Fibre Channel Controller + 9004 9111 1Gb/2Gb Family Fibre Channel Controller + 1030 J2585A DeskDirect 10/100VG NIC + 1031 J2585B HP 10/100VG PCI LAN Adapter + 103c 1040 J2973A DeskDirect 10BaseT NIC + 103c 1041 J2585B DeskDirect 10/100VG NIC + 103c 1042 J2970A DeskDirect 10BaseT/2 NIC + 1040 J2973A DeskDirect 10BaseT NIC + 1041 J2585B DeskDirect 10/100 NIC + 1042 J2970A DeskDirect 10BaseT/2 NIC + 1048 Diva Serial [GSP] Multiport UART + 103c 1049 Tosca Console + 103c 104a Tosca Secondary + 103c 104b Maestro SP2 + 103c 1223 Superdome Console + 103c 1226 Keystone SP2 + 103c 1227 Powerbar SP2 + 103c 1282 Everest SP2 + 103c 1301 Diva RMP3 + 1054 PCI Local Bus Adapter + 1064 79C970 PCnet Ethernet Controller + 108b Visualize FXe + 10c1 NetServer Smart IRQ Router + 10ed TopTools Remote Control + 10f0 rio System Bus Adapter + 10f1 rio I/O Controller + 1219 NetServer PCI Hot-Plug Controller + 121a NetServer SMIC Controller + 121b NetServer Legacy COM Port Decoder + 121c NetServer PCI COM Port Decoder + 1229 zx1 System Bus Adapter + 122a zx1 I/O Controller + 122e PCI-X Local Bus Adapter + 127b sx1000 System Bus Adapter + 127c sx1000 I/O Controller + 128d Diva [GSP] Management Board + 1290 Auxiliary Diva Serial Port + 103c 1291 Diva SP2 + 1291 Auxiliary Diva Serial Port + 12b4 zx1 QuickSilver AGP8x Local Bus Adapter + 12eb sx2000 System Bus Adapter + 12ec sx2000 I/O Controller + 12ee PCI-X 2.0 Local Bus Adapter + 1302 RMP-3 Shared Memory Driver + 1303 RMP-3 (Remote Management Processor) + 22f6 iLO5 Virtual USB Controller + 1590 00e4 iLO5 Standard Virtual USB Controller + 2910 E2910A PCIBus Exerciser + 2925 E2925A 32 Bit, 33 MHzPCI Exerciser & Analyzer + 3206 Adaptec Embedded Serial ATA HostRAID + 3220 Smart Array P600 + 103c 3225 3 Gb/s SAS RAID + 3230 Smart Array Controller + 103c 3223 Smart Array P800 + 103c 3234 P400 SAS Controller + 103c 3235 P400i SAS Controller + 103c 3237 E500 SAS Controller + 103c 323d P700m SAS Controller + 3238 Smart Array E200i (SAS Controller) + 103c 3211 Smart Array E200i + 103c 3212 Smart Array E200 + 3239 Smart Array Gen9 Controllers + 103c 21bd P244br + 103c 21be P741m + 103c 21bf H240ar + 103c 21c0 P440ar + 103c 21c1 P840ar + 103c 21c2 P440 + 103c 21c3 P441 + 103c 21c4 Smart Array + 103c 21c5 P841 + 103c 21c6 H244br + 103c 21c7 H240 + 103c 21c8 H241 + 103c 21c9 Smart Array + 103c 21ca P246br + 103c 21cb P840 + 103c 21cc Smart Array + 103c 21cd P240nr + 103c 21ce H240nr + 323a Smart Array G6 controllers + 103c 3241 Smart Array P212 + 103c 3243 Smart Array P410 + 103c 3245 Smart Array P410i + 103c 3247 Smart Array P411 + 103c 3249 Smart Array P812 + 103c 324a Smart Array 712m (Mezzanine RAID controller) + 103c 324b Smart Array P711m (Mezzanine RAID controller) + 323b Smart Array Gen8 Controllers + 103c 3350 P222 + 103c 3351 P420 + 103c 3352 P421 + 103c 3354 P420i + 103c 3355 P220i + 323c Smart Array Gen8+ Controllers + 103c 1920 P430i + 103c 1921 P830i + 103c 1922 P430 + 103c 1923 P431 + 103c 1924 P830 + 103c 1925 Smart Array + 103c 1926 P731m + 103c 1928 P230i + 3300 Integrated Lights-Out Standard Virtual USB Controller + 103c 3304 iLO2 + 103c 3305 iLO2 + 103c 3309 iLO2 GXL/iLO3 GXE + 103c 330e iLO3 + 103c 3381 iLO4 + 3301 Integrated Lights-Out Standard Serial Port + 103c 3304 iLO2 + 103c 3305 iLO2 + 103c 330e iLO3 + 103c 3381 iLO4 +# Virtual serial port which is presented on a Java applet + 3302 Integrated Lights-Out Standard KCS Interface + 103c 3304 iLO2 + 103c 3305 iLO2 + 103c 330e iLO3 + 103c 3381 iLO4 + 3305 Integrated Lights-Out (iLO2) Controller + 3306 Integrated Lights-Out Standard Slave Instrumentation & System Support + 103c 330e iLO3 + 103c 3381 iLO4 + 1590 00e4 iLO5 + 3307 Integrated Lights-Out Standard Management Processor Support and Messaging +# HP DL380 G6 + 103c 3309 iLO 2 + 103c 330e iLO3 + 103c 3381 iLO4 + 3308 Integrated Lights-Out Standard MS Watchdog Timer + 103c 330e iLO3 + 103c 3381 iLO4 + 4030 zx2 System Bus Adapter + 4031 zx2 I/O Controller + 4037 PCIe Local Bus Adapter + 9602 AMD RS780/RS880 PCI to PCI bridge (int gfx) + 103c 1609 ProLiant MicroServer N36L +103e Solliday Engineering +103f Synopsys/Logic Modeling Group +1040 Accelgraphics Inc. +1041 Computrend +1042 Micron + 1000 PC Tech RZ1000 + 1001 PC Tech RZ1001 + 3000 Samurai_0 + 3010 Samurai_1 + 3020 Samurai_IDE +1043 ASUSTeK Computer Inc. + 0464 Radeon R9 270x GPU + 0521 RX580 [RX 580 Dual O8G] + 0675 ISDNLink P-IN100-ST-D + 0675 1704 ISDN Adapter (PCI Bus, D, C) + 0675 1707 ISDN Adapter (PCI Bus, DV, W) + 10cf 105e ISDN Adapter (PCI Bus, DV, W) +# Should be 1022:9602 + 9602 AMD RS780/RS880 PCI to PCI bridge (int gfx) + 1043 83a2 M4A785TD Motherboard +1044 Adaptec (formerly DPT) + 1012 Domino RAID Engine + a400 SmartCache/Raid I-IV Controller + a500 PCI Bridge + a501 SmartRAID V Controller + 1044 c001 PM1554U2 Ultra2 Single Channel + 1044 c002 PM1654U2 Ultra2 Single Channel + 1044 c003 PM1564U3 Ultra3 Single Channel + 1044 c004 PM1564U3 Ultra3 Dual Channel + 1044 c005 PM1554U2 Ultra2 Single Channel (NON ACPI) + 1044 c00a PM2554U2 Ultra2 Single Channel + 1044 c00b PM2654U2 Ultra2 Single Channel + 1044 c00c PM2664U3 Ultra3 Single Channel + 1044 c00d PM2664U3 Ultra3 Dual Channel + 1044 c00e PM2554U2 Ultra2 Single Channel (NON ACPI) + 1044 c00f PM2654U2 Ultra2 Single Channel (NON ACPI) + 1044 c014 PM3754U2 Ultra2 Single Channel (NON ACPI) + 1044 c015 PM3755U2B Ultra2 Single Channel (NON ACPI) + 1044 c016 PM3755F Fibre Channel (NON ACPI) + 1044 c01e PM3757U2 Ultra2 Single Channel + 1044 c01f PM3757U2 Ultra2 Dual Channel + 1044 c020 PM3767U3 Ultra3 Dual Channel + 1044 c021 PM3767U3 Ultra3 Quad Channel + 1044 c028 PM2865U3 Ultra3 Single Channel + 1044 c029 PM2865U3 Ultra3 Dual Channel + 1044 c02a PM2865F Fibre Channel + 1044 c03c 2000S Ultra3 Single Channel + 1044 c03d 2000S Ultra3 Dual Channel + 1044 c03e 2000F Fibre Channel + 1044 c046 3000S Ultra3 Single Channel + 1044 c047 3000S Ultra3 Dual Channel + 1044 c048 3000F Fibre Channel + 1044 c050 5000S Ultra3 Single Channel + 1044 c051 5000S Ultra3 Dual Channel + 1044 c052 5000F Fibre Channel + 1044 c05a 2400A UDMA Four Channel + 1044 c05b 2400A UDMA Four Channel DAC + 1044 c064 3010S Ultra3 Dual Channel + 1044 c065 3410S Ultra160 Four Channel + 1044 c066 3010S Fibre Channel + a511 SmartRAID V Controller + 1044 c032 ASR-2005S I2O Zero Channel + 1044 c035 ASR-2010S I2O Zero Channel + c066 3010S Ultra3 Dual Channel +1045 OPTi Inc. + a0f8 82C750 [Vendetta] USB Controller + c101 92C264 + c178 92C178 + c556 82X556 [Viper] + c557 82C557 [Viper-M] + c558 82C558 [Viper-M ISA+IDE] + c567 82C750 [Vendetta], device 0 + c568 82C750 [Vendetta], device 1 + c569 82C579 [Viper XPress+ Chipset] + c621 82C621 [Viper-M/N+] + c700 82C700 [FireStar] + c701 82C701 [FireStar Plus] + c814 82C814 [Firebridge 1] + c822 82C822 + c824 82C824 + c825 82C825 [Firebridge 2] + c832 82C832 + c861 82C861 OHCI USB Host + c881 82C881 [FireLink] 1394 OHCI Link Controller + c895 82C895 + c935 EV1935 ECTIVA MachOne PCIAudio + d568 82C825 [Firebridge 2] + d721 IDE [FireStar] +1046 IPC Corporation, Ltd. +1047 Genoa Systems Corp +1048 Elsa AG + 0c60 Gladiac MX + 0d22 Quadro4 900XGL [ELSA GLoria4 900XGL] + 1000 QuickStep 1000 + 3000 QuickStep 3000 + 8901 Gloria XL + 1048 0935 GLoria XL (Virge) +1049 Fountain Technologies, Inc. +# nee SGS Thomson Microelectronics +104a STMicroelectronics + 0000 STLS2F Host Bridge + 0008 STG 2000X + 0009 STG 1764X + 0010 STG4000 [3D Prophet Kyro Series] + 104a 4018 ST PowerVR Kyro (64MB AGP TVO) +# 64MB AGP + 1681 0010 PowerVR Kyro II [3D Prophet 4500] + 1681 0028 3D Prophet 4000XT + 1681 c010 3D Prophet 4500 TV-Out + 1681 c069 3D Prophet 4000XT + 0201 STPC Vega Northbridge + 0209 STPC Consumer/Industrial North- and Southbridge + 020a STPC Atlas/ConsumerS/Consumer IIA Northbridge + 020b STPC Consumer II ISA Bridge + 0210 STPC Atlas ISA Bridge + 021a STPC Consumer S Southbridge + 021b STPC Consumer IIA Southbridge + 0220 STPC Industrial PCI to PCCard bridge + 0228 STPC Atlas IDE + 0229 STPC Vega IDE + 0230 STPC Atlas/Vega OHCI USB Controller + 0238 STPC Vega LAN + 0500 ST70137 [Unicorn] ADSL DMT Transceiver + 104a 0500 BeWAN ADSL PCI st + 0564 STPC Client Northbridge + 0981 21x4x DEC-Tulip compatible 10/100 Ethernet + 1746 STG 1764X + 2774 21x4x DEC-Tulip compatible 10/100 Ethernet + 3520 MPEG-II decoder card + 55cc STPC Client Southbridge +104b BusLogic + 0140 BT-946C (old) [multimaster 01] + 1040 BT-946C (BA80C30) [MultiMaster 10] + 8130 Flashpoint LT +104c Texas Instruments + 0500 100 MBit LAN Controller + 0508 TMS380C2X Compressor Interface + 1000 Eagle i/f AS + 104c PCI1510 PC card Cardbus Controller + 3d04 TVP4010 [Permedia] + 3d07 TVP4020 [Permedia 2] + 1011 4d10 Comet + 1040 000f AccelStar II + 1040 0011 AccelStar II + 1048 0a31 WINNER 2000 + 1048 0a32 GLoria Synergy + 1048 0a34 GLoria Synergy + 1048 0a35 GLoria Synergy + 1048 0a36 GLoria Synergy + 1048 0a43 GLoria Synergy + 1048 0a44 GLoria Synergy + 107d 2633 WinFast 3D L2300 + 1092 0126 FIRE GL 1000 PRO + 1092 0127 FIRE GL 1000 PRO + 1092 0136 FIRE GL 1000 PRO + 1092 0141 FIRE GL 1000 PRO + 1092 0146 FIRE GL 1000 PRO + 1092 0148 FIRE GL 1000 PRO + 1092 0149 FIRE GL 1000 PRO + 1092 0152 FIRE GL 1000 PRO + 1092 0154 FIRE GL 1000 PRO + 1092 0155 FIRE GL 1000 PRO + 1092 0156 FIRE GL 1000 PRO + 1092 0157 FIRE GL 1000 PRO + 1097 3d01 Jeronimo Pro + 1102 100f Graphics Blaster Extreme + 3d3d 0100 Reference Permedia 2 3D + 8000 PCILynx/PCILynx2 IEEE 1394 Link Layer Controller + 105e 8003 FireBoard200 + 1443 8003 FireBoard200 + 1443 8005 FireBoard400 + 1443 8006 FireBoard400 + e4bf 1010 CF1-1-SNARE + e4bf 1020 CF1-2-SNARE + e4bf 1040 FireCompact400 + 8009 TSB12LV22 IEEE-1394 Controller + 104d 8032 8032 OHCI i.LINK (IEEE 1394) Controller + 1443 8010 FireBoard400-OHCI + 8017 PCI4410 FireWire Controller + 8019 TSB12LV23 IEEE-1394 Controller + 11bd 000a Studio DV500-1394 + 11bd 000e Studio DV + 1443 8010 FireBoard400-OHCI + e4bf 1010 CF2-1-CYMBAL + 8020 TSB12LV26 IEEE-1394 Controller (Link) + 1028 00d8 Precision 530 + 104d 80e2 VAIO PCV-J200 + 11bd 000f Studio DV500-1394 + 11bd 001c Excalibur 4.1 + 1443 8010 FireBoard400-OHCI + 8021 TSB43AA22 IEEE-1394 Controller (PHY/Link Integrated) + 104d 80df Vaio PCG-FX403 + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 8022 TSB43AB22 IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx] + 104c 8023 TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) + 8023 TSB43AB22A IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx] + 1028 0168 Precision Workstation 670 Mainboard + 103c 088c NC8000 laptop + 1043 808b K8N4/A8N Series Mainboard + 1043 815b P5W DH Deluxe Motherboard + 1443 8023 FireCard400 + 8086 5044 Desktop Board DP35DP + 8024 TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link) + 107d 6620 Winfast DV2000 FireWire Controller + 1443 8024 FireBoard Blue + 1458 1000 Motherboard + 8025 TSB82AA2 IEEE-1394b Link Layer Controller + 1043 813c P5P series mainboard + 1443 8025 FireBoard800 + 1458 1000 GA-K8N Ultra-9 Mainboard + 1546 8025 FWB-PCI01 + 17fc 8025 GIC3800 + 8026 TSB43AB21 IEEE-1394a-2000 Controller (PHY/Link) + 1025 0035 TravelMate 660 + 1025 003c Aspire 2001WLCi (Compaq CL50 motherboard) + 103c 0025 XE4500 Notebook + 103c 006a NX9500 + 1043 808d A7V333 mainboard. + 8027 PCI4451 IEEE-1394 Controller + 1028 00e5 Latitude C810 + 1028 00e6 PCI4451 IEEE-1394 Controller (Dell Inspiron 8100) + 8029 PCI4510 IEEE-1394 Controller + 1028 0163 Latitude D505 + 1028 0196 Inspiron 5160 + 1071 8160 MIM2900 + 802b PCI7410,7510,7610 OHCI-Lynx Controller + 1028 0139 Latitude D400 + 1028 014e PCI7410,7510,7610 OHCI-Lynx Controller (Latitude D800) + 802e PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller + 1028 018d Inspiron 700m/710m + 8031 PCIxx21/PCIxx11/PCIx515 PC Card Controller + 1025 0064 Extensa 3000 series laptop + 1025 0080 Aspire 5024WLMi + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 103c 308b MX6125 + 8032 OHCI Compliant IEEE 1394 Host Controller + 1025 0064 Extensa 3000 series laptop + 1025 0080 Aspire 5024WLMi + 103c 0934 Compaq nw8240/nx8220 + 103c 099c NX6110/NC6120 + 103c 308b MX6125 + 8033 PCIxx21/PCIxx11 Flash Media Controller + 1025 0064 Extensa 3000 series laptop + 1025 0080 Aspire 5024WLMi + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 103c 308b MX6125 + 8034 PCIxx21/PCIxx11 SD Host Controller + 1025 0080 Aspire 5024WLMi + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 103c 308b MX6125 + 8035 PCIxx21/PCIxx11 Smart Card Controller + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 8036 PCI6515 Cardbus Controller + 8038 PCI6515 SmartCard Controller + 8039 PCIxx12 Cardbus Controller + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 104d 902d VAIO VGN-NR120E + 803a PCIxx12 OHCI Compliant IEEE 1394 Host Controller + 103c 309f nx9420 + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 104d 902d VAIO VGN-NR120E + 803b PCIxx12 Flash Media Controller + 103c 309f nx9420 + 103c 30a3 Compaq nw8440 + 104d 8212 VAIO VGN-N21E + 104d 902d VAIO VGN-NR120E + 803c PCIxx12 SDA Standard Compliant SD Host Controller + 103c 309f nx9420 + 103c 30a3 Compaq nw8440 + 803d PCIxx12 GemCore based SmartCard controller + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 nc8430 + 103c 30aa nc6310 + 8101 TSB43DB42 IEEE-1394a-2000 Controller (PHY/Link) + 8201 PCI1620 Firmware Loading Function + 8204 PCI7410/7510/7610 PCI Firmware Loading Function + 1028 0139 Latitude D400 + 1028 014e Latitude D800 + 8231 XIO2000(A)/XIO2200A PCI Express-to-PCI Bridge + 5678 1234 DC-1394 PCIe + 8232 XIO3130 PCI Express Switch (Upstream) + 8233 XIO3130 PCI Express Switch (Downstream) + 8235 XIO2200A IEEE-1394a-2000 Controller (PHY/Link) + 5678 1234 DC-1394 PCIe + 823e XIO2213A/B/XIO2221 PCI Express to PCI Bridge [Cheetah Express] + 823f XIO2213A/B/XIO2221 IEEE-1394b OHCI Controller [Cheetah Express] + 1546 803c FWB-PCIE1X11B + 8240 XIO2001 PCI Express-to-PCI Bridge + 8241 TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller + 1014 04b2 S824 (8286-42A) + 8400 ACX 100 22Mbps Wireless Interface + 1186 3b00 DWL-650+ PC Card cardbus 22Mbs Wireless Adapter [AirPlus] + 1186 3b01 DWL-520+ 22Mbps PCI Wireless Adapter + 1395 2201 WL22-PC + 16ab 8501 WL-8305 IEEE802.11b+ Wireless LAN PCI Adapter + 8401 ACX 100 22Mbps Wireless Interface + 8888 Multicore DSP+ARM KeyStone II SOC + 9000 Wireless Interface (of unknown type) + 9065 TMS320DM642 + 9066 ACX 111 54Mbps Wireless Interface + 0308 3404 G-102 v1 802.11g Wireless Cardbus Adapter + 0308 3406 G-162 v2 802.11g Wireless Cardbus Adapter + 104c 9066 WL212 Sitecom Wireless Network PCI-Card 100M (Version 1) +# Found in Philips ADSL ANNEX A WLAN Router SNA6500/18 sold by Belgacom + 104c 9067 TNETW1130GVF + 104c 9096 Trendnet TEW-412PC Wireless PCI Adapter (Version A) + 1186 3b04 DWL-G520+ Wireless PCI Adapter + 1186 3b05 DWL-G650+ AirPlusG+ CardBus Wireless LAN + 1186 3b08 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.B1) + 1385 4c00 WG311v2 802.11g Wireless PCI Adapter + 13d1 aba0 SWLMP-54108 108Mbps Wireless mini PCI card 802.11g+ + 14ea ab07 GW-NS54GM Wireless Cardbus Adapter + 16ec 010d USR5416 802.11g Wireless Turbo PCI Adapter + 16ec 010e USR5410 802.11g Wireless Cardbus Adapter + 1737 0033 WPC54G v2 802.11g Wireless-G Notebook Adapter + 17cf 0032 G-162 v1 802.11g Wireless Cardbus Adapter + 17cf 0033 Z-Com XG650 Wireless miniPCI 802.11b/g + 187e 340b G-302 v2 802.11g Wireless PCI Adapter + 187e 340c G-360 v2 802.11g Wireless PCI Adapter + a001 TDC1570 + a100 TDC1561 + a102 TNETA1575 HyperSAR Plus w/PCI Host i/f & UTOPIA i/f + a106 TMS320C6414 TMS320C6415 TMS320C6416 + 175c 5000 ASI50xx Audio Adapter + 175c 6400 ASI6400 Cobranet series + 175c 8700 ASI87xx Radio Tuner card + ac10 PCI1050 + ac11 PCI1053 + ac12 PCI1130 + ac13 PCI1031 + ac15 PCI1131 + ac16 PCI1250 + 1014 0092 ThinkPad 600 + ac17 PCI1220 + ac18 PCI1260 + ac19 PCI1221 + ac1a PCI1210 + ac1b PCI1450 + 0e11 b113 Armada M700 + 1014 0130 ThinkPad 600X/A21m/T20/T22 + ac1c PCI1225 + 0e11 b121 Armada E500 + 1028 0088 Latitude CPi A400XT + ac1d PCI1251A + ac1e PCI1211 + ac1f PCI1251B + ac20 TI 2030 + ac21 PCI2031 + ac22 PCI2032 PCI Docking Bridge + ac23 PCI2250 PCI-to-PCI Bridge + ac28 PCI2050 PCI-to-PCI Bridge + ac2c PCI2060 PCI-to-PCI Bridge + ac30 PCI1260 PC card Cardbus Controller + ac40 PCI4450 PC card Cardbus Controller + ac41 PCI4410 PC card Cardbus Controller + ac42 PCI4451 PC card Cardbus Controller + 1028 00e6 PCI4451 PC card CardBus Controller (Inspiron 8100) + ac44 PCI4510 PC card Cardbus Controller + 1028 0149 Inspiron 5100 + 1028 0163 Latitude D505 + 1028 0196 Inspiron 5160 + 1071 8160 MIM2000 + ac46 PCI4520 PC card Cardbus Controller + 1014 0552 ThinkPad + ac47 PCI7510 PC card Cardbus Controller + 1028 0139 Latitude D400 + 1028 013f Precision M60 + 1028 014e Latitude D800 + ac48 PCI7610 PC Card Cardbus Controller + ac49 PCI7410 PC Card Cardbus Controller + ac4a PCI7510/7610 CardBus Bridge + 1028 0139 Latitude D400 + 1028 014e Latitude D800 + ac4b PCI7610 SD/MMC controller + ac4c PCI7610 Memory Stick controller + ac50 PCI1410 PC card Cardbus Controller + ac51 PCI1420 PC card Cardbus Controller + 0e11 004e Evo N600c + 1014 0148 ThinkPad A20m + 1014 023b ThinkPad T23 + 1028 00b1 Latitude C600 + 1028 012a Latitude C640 + 1033 80cd Versa Note VXi + 10cf 1095 Lifebook S-4510/C6155 + e4bf 1000 CP2-2-HIPHOP + ac52 PCI1451 PC card Cardbus Controller + ac53 PCI1421 PC card Cardbus Controller + ac54 PCI1620 PC Card Controller + 103c 08b0 tc1100 tablet + ac55 PCI1520 PC card Cardbus Controller + 1014 0512 ThinkPad T30/T40 + 103c 0025 XE4500 Notebook + ac56 PCI1510 PC card Cardbus Controller + 1014 0512 ThinkPad R50e + 1014 0528 ThinkPad R40e + 17aa 2012 ThinkPad T60/R60 series + ac60 PCI2040 PCI to DSP Bridge Controller + 175c 5100 ASI51xx Audio Adapter + 175c 6100 ASI61xx Audio Adapter + 175c 6200 ASI62xx Audio Adapter + 175c 8800 ASI88xx Audio Adapter + 186f 3001 WR-G303 PCI radio receiver + 186f 3005 WR-G305 PCI radio receiver + 186f 3101 WR-G313 PCI radio receiver + 186f 3105 WR-G315 PCI radio receiver + ac8d PCI 7620 + ac8e PCI7420 CardBus Controller + 1028 018d Inspiron 700m/710m + ac8f PCI7420/7620 SD/MS-Pro Controller + 1028 018d Inspiron 700m/710m + b001 TMS320C6424 + fe00 FireWire Host Controller + fe03 12C01A FireWire Host Controller +104d Sony Corporation + 8004 DTL-H2500 [Playstation development board] + 8009 CXD1947Q i.LINK Controller + 800c DTL-H800 [PS1 sound development board] + 8039 CXD3222 i.LINK Controller + 8047 PS2 TOOL MRP + 8056 Rockwell HCF 56K modem + 808a Memory Stick Controller + 80ff PS2 Performance Analyzer + 814a PS2 Performance Analyzer + 8183 ATHENS [PS3 prototype developer interface card] + 81b0 BM-1 [PSP TOOL Board Management Device] + 81c3 VO-4 [PSP TOOL Video Output Device] + 81ce SxS Pro memory card + 81ff PS3 TOOL MRP + 8200 PS3 TOOL RSX Tracing FPGA + 820e CXD9208GP [PS3 PS2 emulation subsystem adapter] +# 2nd ID + 905c SxS Pro memory card +# 2nd ID + 907f SxS Pro+ memory card + 908f Aeolia ACPI + 909e Aeolia Ethernet Controller (Marvell Yukon 2 Family) + 909f Aeolia SATA AHCI Controller + 90a0 Aeolia SD/MMC Host Controller + 90a1 Aeolia PCI Express Glue and Miscellaneous Devices + 90a2 Aeolia DMA Controller + 90a3 Aeolia Memory (DDR3/SPM) + 90a4 Aeolia USB 3.0 xHCI Host Controller + 90bc SxS Pro+ memory card + 90c8 Belize ACPI + 90c9 Belize Ethernet Controller + 90ca Belize SATA AHCI Controller + 90cb Belize SD/MMC Host Controller + 90cc Belize PCI Express Glue and Miscellaneous Devices + 90cd Belize DMA Controller + 90ce Belize Memory (DDR3/SPM) + 90cf Belize USB 3.0 xHCI Host Controller + 90d7 Baikal ACPI + 90d8 Baikal Ethernet Controller + 90d9 Baikal SATA AHCI Controller + 90da Baikal SD/MMC Host Controller + 90db Baikal PCI Express Glue and Miscellaneous Devices + 90dc Baikal DMA Controller + 90dd Baikal Memory (DDR3/SPM) + 90de Baikal USB 3.0 xHCI Host Controller +104e Oak Technology, Inc + 0017 OTI-64017 + 0107 OTI-107 [Spitfire] + 0109 Video Adapter + 0111 OTI-64111 [Spitfire] + 0217 OTI-64217 + 0317 OTI-64317 +104f Co-time Computer Ltd +1050 Winbond Electronics Corp + 0000 NE2000 + 0001 W83769F + 0033 W89C33D 802.11 a/b/g BB/MAC + 0105 W82C105 + 0840 W89C840 + 1050 0001 W89C840 Ethernet Adapter + 1050 0840 W89C840 Ethernet Adapter + 0940 W89C940 + 5a5a W89C940F + 6692 W6692 + 1043 1702 ISDN Adapter (PCI Bus, D, W) + 1043 1703 ISDN Adapter (PCI Bus, DV, W) + 1043 1707 ISDN Adapter (PCI Bus, DV, W) + 144f 1702 ISDN Adapter (PCI Bus, D, W) + 144f 1703 ISDN Adapter (PCI Bus, DV, W) + 144f 1707 ISDN Adapter (PCI Bus, DV, W) + 9921 W99200F MPEG-1 Video Encoder + 9922 W99200F/W9922PF MPEG-1/2 Video Encoder + 9970 W9970CF +1051 Anigma, Inc. +1052 ?Young Micro Systems +1053 Young Micro Systems +1054 Hitachi, Ltd + 3009 2Gbps Fibre Channel to PCI HBA 3009 + 300a 4Gbps Fibre Channel to PCI-X HBA 300a + 300b 4Gbps Fibre Channel to PCI-X HBA 300b + 300f ColdFusion 3 Chipset Processor to I/O Controller + 3010 ColdFusion 3 Chipset Memory Controller Hub + 3011 ColdFusion 3e Chipset Processor to I/O Controller + 3012 ColdFusion 3e Chipset Memory Controller Hub + 3017 Unassigned Hitachi Shared FC Device 3017 + 301b Virtual VGA Device + 301d PCIe-to-PCIe Bridge with Virtualization IO Assist Feature + 3020 FIVE-EX based Fibre Channel to PCIe HBA + 302c M001 PCI Express Switch Upstream Port + 302d M001 PCI Express Switch Downstream Port + 3070 Hitachi FIVE-FX Fibre Channel to PCIe HBA + 3505 SH7751 PCI Controller (PCIC) + 350e SH7751R PCI Controller (PCIC) +1055 Microchip Technology / SMSC + 9130 SLC90E66 [Victory66] IDE + 9460 SLC90E66 [Victory66] ISA + 9462 SLC90E66 [Victory66] USB + 9463 SLC90E66 [Victory66] ACPI + e420 LAN9420/LAN9420i +1056 ICL +# Motorola made a mistake and used 1507 instead of 1057 in some chips. Please look at the 1507 entry as well when updating this. +1057 Motorola + 0001 MPC105 [Eagle] + 0002 MPC106 [Grackle] + 0003 MPC8240 [Kahlua] + 0004 MPC107 + 0006 MPC8245 [Unity] + 0008 MPC8540 + 0009 MPC8560 + 0012 MPC8548 [PowerQUICC III] + 0100 MC145575 [HFC-PCI] + 0431 KTI829c 100VG + 1073 Nokia N770 + 1219 Nokia N800 + 1801 DSP56301 Digital Signal Processor + 14fb 0101 Transas Radar Imitator Board [RIM] + 14fb 0102 Transas Radar Imitator Board [RIM-2] + 14fb 0202 Transas Radar Integrator Board [RIB-2] + 14fb 0611 1 channel CAN bus Controller [CanPci-1] + 14fb 0612 2 channels CAN bus Controller [CanPci-2] + 14fb 0613 3 channels CAN bus Controller [CanPci-3] + 14fb 0614 4 channels CAN bus Controller [CanPci-4] + 14fb 0621 1 channel CAN bus Controller [CanPci2-1] + 14fb 0622 2 channels CAN bus Controller [CanPci2-2] + 14fb 0810 Transas VTS Radar Integrator Board [RIB-4] + 175c 4200 ASI4215 Audio Adapter + 175c 4300 ASI43xx Audio Adapter + 175c 4400 ASI4401 Audio Adapter + ecc0 0010 Darla + ecc0 0020 Gina + ecc0 0030 Layla rev.0 + ecc0 0031 Layla rev.1 + ecc0 0040 Darla24 rev.0 + ecc0 0041 Darla24 rev.1 + ecc0 0050 Gina24 rev.0 + ecc0 0051 Gina24 rev.1 + ecc0 0070 Mona rev.0 + ecc0 0071 Mona rev.1 + ecc0 0072 Mona rev.2 + 18c0 MPC8265A/8266/8272 + 18c1 MPC8271/MPC8272 + 3052 SM56 Data Fax Modem + 3410 DSP56361 Digital Signal Processor + ecc0 0050 Gina24 rev.0 + ecc0 0051 Gina24 rev.1 + ecc0 0060 Layla24 + ecc0 0070 Mona rev.0 + ecc0 0071 Mona rev.1 + ecc0 0072 Mona rev.2 + ecc0 0080 Mia rev.0 + ecc0 0081 Mia rev.1 + ecc0 0090 Indigo + ecc0 00a0 Indigo IO + ecc0 00b0 Indigo DJ + ecc0 0100 3G + 4801 Raven + 4802 Falcon + 4803 Hawk + 4806 CPX8216 +# MPC7410 PowerPC microprocessor and PCI host bridge + 480b MPC7410 + 4d68 20268 + 5600 SM56 PCI Modem + 1057 0300 SM56 PCI Speakerphone Modem + 1057 0301 SM56 PCI Voice Modem + 1057 0302 SM56 PCI Fax Modem + 1057 5600 SM56 PCI Voice modem + 13d2 0300 SM56 PCI Speakerphone Modem + 13d2 0301 SM56 PCI Voice modem + 13d2 0302 SM56 PCI Fax Modem + 1436 0300 SM56 PCI Speakerphone Modem + 1436 0301 SM56 PCI Voice modem + 1436 0302 SM56 PCI Fax Modem + 144f 100c SM56 PCI Fax Modem + 1494 0300 SM56 PCI Speakerphone Modem + 1494 0301 SM56 PCI Voice modem + 14c8 0300 SM56 PCI Speakerphone Modem + 14c8 0302 SM56 PCI Fax Modem + 1668 0300 SM56 PCI Speakerphone Modem + 1668 0302 SM56 PCI Fax Modem + 5608 Wildcard X100P + 5803 MPC5200 + 5806 MCF54 Coldfire + 5808 MPC8220 + 5809 MPC5200B + 6400 MPC190 Security Processor (S1 family, encryption) + 6405 MPC184 Security Processor (S1 family) +1058 Electronics & Telecommunications RSH +1059 Kontron +105a Promise Technology, Inc. + 0d30 PDC20265 (FastTrak100 Lite/Ultra100) + 1043 8042 AV7266-E South Bridge Promise RAID + 105a 4d33 Ultra100 + 0d38 20263 + 105a 4d39 Fasttrak66 + 1275 20275 + 3318 PDC20318 (SATA150 TX4) + 3319 PDC20319 (FastTrak S150 TX4) + 105a 3319 FastTrak S150 TX4 4 port SATA PCI board + 8086 3427 S875WP1-E mainboard + 3371 PDC20371 (FastTrak S150 TX2plus) + 3373 PDC20378 (FastTrak 378/SATA 378) + 1043 80f5 K8V Deluxe/PC-DL Deluxe motherboard + 1462 590d KT6 Delta-FIS2R (MS-6590) + 1462 702e K8T NEO FIS2R motherboard + 3375 PDC20375 (SATA150 TX2plus) + 3376 PDC20376 (FastTrak 376) + 1043 809e A7V8X motherboard + 3515 PDC40719 [FastTrak TX4300/TX4310] + 3519 PDC40519 (FastTrak TX4200) + 3570 PDC20771 [FastTrak TX2300] + 3571 PDC20571 (FastTrak TX2200) + 3574 PDC20579 SATAII 150 IDE Controller + 3577 PDC40779 (SATA 300 779) + 3d17 PDC40718 (SATA 300 TX4) + 3d18 PDC20518/PDC40518 (SATAII 150 TX4) + 3d73 PDC40775 (SATA 300 TX2plus) + 3d75 PDC20575 (SATAII150 TX2plus) + 3f20 PDC42819 [FastTrak TX2650/TX4650] + 4302 80333 [SuperTrak EX4350] + 4d30 PDC20267 (FastTrak100/Ultra100) + 105a 4d33 Ultra100 + 105a 4d39 FastTrak100 + 8086 5744 S845WD1-E mainboard + 4d33 20246 + 105a 4d33 20246 IDE Controller + 4d38 PDC20262 (FastTrak66/Ultra66) + 105a 4d30 Ultra Device on SuperTrak + 105a 4d33 Ultra66 + 105a 4d39 FastTrak66 + 4d68 PDC20268 [Ultra100 TX2] + 105a 4d68 Ultra100 TX2 + 4d69 20269 + 105a 4d68 Ultra133TX2 + 5275 PDC20276 (MBFastTrak133 Lite) + 1043 807e A7V333 motherboard. + 105a 0275 SuperTrak SX6000 IDE + 105a 1275 MBFastTrak133 Lite (tm) Controller (RAID mode) + 1458 b001 MBUltra 133 + 5300 DC5300 + 6268 PDC20270 (FastTrak100 LP/TX2/TX4) + 105a 4d68 FastTrak100 TX2 + 6269 PDC20271 (FastTrak TX2000) + 105a 6269 FastTrak TX2/TX2000 + 6300 PDC81731 [FastTrak SX8300] + 6621 PDC20621 (FastTrak S150 SX4/FastTrak SX4000 lite) + 6622 PDC20621 [SATA150 SX4] 4 Channel IDE RAID Controller + 6624 PDC20621 [FastTrak SX4100] + 6626 PDC20618 (Ultra 618) + 6629 PDC20619 (FastTrak TX4000) + 7275 PDC20277 (SBFastTrak133 Lite) + 8002 SATAII150 SX8 + 8350 80333 [SuperTrak EX8350/EX16350], 80331 [SuperTrak EX8300/EX16300] + 8650 81384 [SuperTrak EX SAS and SATA RAID Controller] + 105a 4600 SuperTrak EX4650A + 105a 4601 SuperTrak EX4650 + 105a 4610 SuperTrak EX4650EL + 105a 8600 SuperTrak EX8650EL + 105a 8601 SuperTrak EX8650A + 105a 8602 SuperTrak EX8654 + 105a 8603 SuperTrak EX8658 + 105a 8604 SuperTrak EX8650 + 105a 8610 SuperTrak EX8650M + 105a a600 SuperTrak EX12650 + 105a b600 SuperTrak EX16650 + 105a b601 SuperTrak EX16654 + 105a b602 SuperTrak EX16658 + 8760 PM8010 [SuperTrak EX SAS and SATA 6G RAID Controller] + c350 80333 [SuperTrak EX12350] + e350 80333 [SuperTrak EX24350] +105b Foxconn International, Inc. +105c Wipro Infotech Limited +105d Number 9 Computer Company + 2309 Imagine 128 + 2339 Imagine 128-II + 105d 0000 Imagine 128 series 2 4Mb VRAM + 105d 0001 Imagine 128 series 2 4Mb VRAM + 105d 0002 Imagine 128 series 2 4Mb VRAM + 105d 0003 Imagine 128 series 2 4Mb VRAM + 105d 0004 Imagine 128 series 2 4Mb VRAM + 105d 0005 Imagine 128 series 2 4Mb VRAM + 105d 0006 Imagine 128 series 2 4Mb VRAM + 105d 0007 Imagine 128 series 2 4Mb VRAM + 105d 0008 Imagine 128 series 2e 4Mb DRAM + 105d 0009 Imagine 128 series 2e 4Mb DRAM + 105d 000a Imagine 128 series 2 8Mb VRAM + 105d 000b Imagine 128 series 2 8Mb H-VRAM + 11a4 000a Metheus 5 Megapixel + 13cc 0000 Metheus 5 Megapixel + 13cc 0004 Metheus 5 Megapixel + 13cc 0005 Metheus 5 Megapixel + 13cc 0006 Metheus 5 Megapixel + 13cc 0008 Metheus 5 Megapixel + 13cc 0009 Metheus 5 Megapixel + 13cc 000a Metheus 5 Megapixel + 13cc 000c Metheus 5 Megapixel + 493d Imagine 128 T2R [Ticket to Ride] + 11a4 000a Metheus 5 Megapixel, Dual Head + 11a4 000b Metheus 5 Megapixel, Dual Head + 13cc 0002 Metheus 4 Megapixel, Dual Head + 13cc 0003 Metheus 5 Megapixel, Dual Head + 13cc 0007 Metheus 5 Megapixel, Dual Head + 13cc 0008 Metheus 5 Megapixel, Dual Head + 13cc 0009 Metheus 5 Megapixel, Dual Head + 13cc 000a Metheus 5 Megapixel, Dual Head + 5348 Revolution 4 + 105d 0037 Revolution IV-FP AGP (For SGI 1600SW) + 11a4 0028 PVS5600M + 11a4 0038 PVS5600D +105e Vtech Computers Ltd +105f Infotronic America Inc +1060 United Microelectronics [UMC] + 0001 UM82C881 + 0002 UM82C886 + 0101 UM8673F + 0881 UM8881 + 0886 UM8886F + 0891 UM8891A + 1001 UM886A + 673a UM8886BF + 673b EIDE Master/DMA + 8710 UM8710 + 886a UM8886A + 8881 UM8881F + 8886 UM8886F + 888a UM8886A + 8891 UM8891A + 9017 UM9017F + 9018 UM9018 + 9026 UM9026 + e881 UM8881N + e886 UM8886N + e88a UM8886N + e891 UM8891N +1061 I.I.T. + 0001 AGX016 + 0002 IIT3204/3501 +1062 Maspar Computer Corp +1063 Ocean Office Automation +1064 Alcatel + 1102 Dynamite 2840 (ADSL PCI modem) +1065 Texas Microsystems +1066 PicoPower Technology + 0000 PT80C826 + 0001 PT86C521 [Vesuvius v1] Host Bridge + 0002 PT86C523 [Vesuvius v3] PCI-ISA Bridge Master + 0003 PT86C524 [Nile] PCI-to-PCI Bridge + 0004 PT86C525 [Nile-II] PCI-to-PCI Bridge + 0005 National PC87550 System Controller + 8002 PT86C523 [Vesuvius v3] PCI-ISA Bridge Slave +1067 Mitsubishi Electric + 0301 AccelGraphics AccelECLIPSE + 0304 AccelGALAXY A2100 [OEM Evans & Sutherland] + 0308 Tornado 3000 [OEM Evans & Sutherland] + 1002 VG500 [VolumePro Volume Rendering Accelerator] +1068 Diversified Technology +1069 Mylex Corporation + 0001 DAC960P + 0002 DAC960PD + 0010 DAC960PG + 0020 DAC960LA + 0050 AcceleRAID 352/170/160 support Device + 1069 0050 AcceleRAID 352 support Device + 1069 0052 AcceleRAID 170 support Device + 1069 0054 AcceleRAID 160 support Device + b166 AcceleRAID 600/500/400/Sapphire support Device + 1014 0242 iSeries 2872 DASD IOA + 1014 0266 Dual Channel PCI-X U320 SCSI Adapter + 1014 0278 Dual Channel PCI-X U320 SCSI RAID Adapter + 1014 02d3 Dual Channel PCI-X U320 SCSI Adapter + 1014 02d4 Dual Channel PCI-X U320 SCSI RAID Adapter + 1069 0200 AcceleRAID 400, Single Channel, PCI-X, U320, SCSI RAID + 1069 0202 AcceleRAID Sapphire, Dual Channel, PCI-X, U320, SCSI RAID + 1069 0204 AcceleRAID 500, Dual Channel, Low-Profile, PCI-X, U320, SCSI RAID + 1069 0206 AcceleRAID 600, Dual Channel, PCI-X, U320, SCSI RAID + ba55 eXtremeRAID 1100 support Device + ba56 eXtremeRAID 2000/3000 support Device + 1069 0030 eXtremeRAID 3000 support Device + 1069 0040 eXtremeRAID 2000 support Device + ba57 eXtremeRAID 4000/5000 support Device + 1069 0072 eXtremeRAID 5000 support Device +106a Aten Research Inc +106b Apple Inc. + 0001 Bandit PowerPC host bridge + 0002 Grand Central I/O + 0003 Control Video + 0004 PlanB Video-In + 0007 O'Hare I/O + 000b Apple Camera + 000c DOS on Mac + 000e Hydra Mac I/O + 0010 Heathrow Mac I/O + 0017 Paddington Mac I/O + 0018 UniNorth FireWire + 0019 KeyLargo USB + 001e UniNorth Internal PCI + 001f UniNorth PCI + 0020 UniNorth AGP + 0021 UniNorth GMAC (Sun GEM) + 0022 KeyLargo Mac I/O + 0024 UniNorth/Pangea GMAC (Sun GEM) + 0025 KeyLargo/Pangea Mac I/O + 0026 KeyLargo/Pangea USB + 0027 UniNorth/Pangea AGP + 0028 UniNorth/Pangea PCI + 0029 UniNorth/Pangea Internal PCI + 002d UniNorth 1.5 AGP + 002e UniNorth 1.5 PCI + 002f UniNorth 1.5 Internal PCI + 0030 UniNorth/Pangea FireWire + 0031 UniNorth 2 FireWire + 106b 5811 iBook G4 2004 + 0032 UniNorth 2 GMAC (Sun GEM) + 0033 UniNorth 2 ATA/100 + 0034 UniNorth 2 AGP + 0035 UniNorth 2 PCI + 0036 UniNorth 2 Internal PCI + 003b UniNorth/Intrepid ATA/100 + 003e KeyLargo/Intrepid Mac I/O + 003f KeyLargo/Intrepid USB + 1af4 1100 QEMU Virtual Machine + 0040 K2 KeyLargo USB + 0041 K2 KeyLargo Mac/IO + 0042 K2 FireWire + 0043 K2 ATA/100 + 0045 K2 HT-PCI Bridge + 0046 K2 HT-PCI Bridge + 0047 K2 HT-PCI Bridge + 0048 K2 HT-PCI Bridge + 0049 K2 HT-PCI Bridge + 004a CPC945 HT Bridge + 004b U3 AGP + 004c K2 GMAC (Sun GEM) + 004f Shasta Mac I/O + 0050 Shasta IDE + 0051 Shasta (Sun GEM) + 0052 Shasta Firewire + 0053 Shasta PCI Bridge + 0054 Shasta PCI Bridge + 0055 Shasta PCI Bridge + 0056 U4 PCIe + 0057 U3 HT Bridge + 0058 U3L AGP Bridge + 0059 U3H AGP Bridge + 005b CPC945 PCIe Bridge + 0066 Intrepid2 AGP Bridge + 0067 Intrepid2 PCI Bridge + 0068 Intrepid2 PCI Bridge + 0069 Intrepid2 ATA/100 + 006a Intrepid2 Firewire + 006b Intrepid2 GMAC (Sun GEM) + 0074 U4 HT Bridge +# should be 14e4:1645 + 1645 Broadcom NetXtreme BCM5701 Gigabit Ethernet + 1801 T2 Bridge Controller + 1802 T2 Secure Enclave Processor + 1803 Apple Audio Device + 2001 S1X NVMe Controller + 2002 S3ELab NVMe Controller + 2003 S3X NVMe Controller + 2005 ANS2 NVMe Controller +106c Hynix Semiconductor + 8139 8139c 100BaseTX Ethernet Controller + 8801 Dual Pentium ISA/PCI Motherboard + 8802 PowerPC ISA/PCI Motherboard + 8803 Dual Window Graphics Accelerator + 8804 LAN Controller + 8805 100-BaseT LAN +106d Sequent Computer Systems +106e DFI, Inc +106f City Gate Development Ltd +1070 Daewoo Telecom Ltd +1071 Mitac + 8160 Mitac 8060B Mobile Platform +1072 GIT Co Ltd +1073 Yamaha Corporation + 0001 3D GUI Accelerator + 0002 YGV615 [RPA3 3D-Graphics Controller] + 0003 YMF-740 + 0004 YMF-724 + 1073 0004 YMF724-Based PCI Audio Adapter + 0005 DS1 Audio + 1073 0005 DS-XG PCI Audio CODEC + 0006 DS1 Audio + 0008 DS1 Audio + 1073 0008 DS-XG PCI Audio CODEC + 000a DS1L Audio + 1073 0004 DS-XG PCI Audio CODEC + 1073 000a DS-XG PCI Audio CODEC + 8086 4d55 DS-XG PCI Audio CODEC [Intel MU440EX] + 000c YMF-740C [DS-1L Audio Controller] + 107a 000c DS-XG PCI Audio CODEC + 000d YMF-724F [DS-1 Audio Controller] + 1073 000d DS-XG PCI Audio CODEC + 0010 YMF-744B [DS-1S Audio Controller] + 1073 0006 DS-XG PCI Audio CODEC + 1073 0010 DS-XG PCI Audio CODEC + 0012 YMF-754 [DS-1E Audio Controller] + 1073 0012 DS-XG PCI Audio Codec + 0020 DS-1 Audio + 1000 SW1000XG [XG Factory] + 2000 DS2416 Digital Mixing Card + 1073 2000 DS2416 Digital Mixing Card +1074 NexGen Microsystems + 4e78 82c500/1 +1075 Advanced Integrations Research +1076 Chaintech Computer Co. Ltd +1077 QLogic Corp. + 1016 ISP10160 Single Channel Ultra3 SCSI Processor + 1020 ISP1020 Fast-wide SCSI + 1022 ISP1022 Fast-wide SCSI + 1080 ISP1080 SCSI Host Adapter + 1216 ISP12160 Dual Channel Ultra3 SCSI Processor + 101e 8471 QLA12160 on AMI MegaRAID + 101e 8493 QLA12160 on AMI MegaRAID + 1240 ISP1240 SCSI Host Adapter + 1280 ISP1280 SCSI Host Adapter + 1634 FastLinQ QL45000 Series 40GbE Controller + 1077 e4f1 FastLinQ QL45212H 40GbE Adapter + 1077 e4f2 FastLinQ QL45211H 40GbE Adapter + 1077 e4f3 FastLinQ QL45412H 40GbE Adapter + 1077 e4f4 FastLinQ QL45411H 40GbE Adapter + 1644 FastLinQ QL45000 Series 100GbE Controller + 1077 e4f8 FastLinQ QL45611H 100GbE Adapter + 1654 FastLinQ QL45000 Series 50GbE Controller + 1077 0032 QL45212 Flex 50Gb 2-port Ethernet Adapter + 1590 0223 Synergy 6810C 25/50Gb Ethernet Adapter + 1590 0287 Synergy 6820C 25/50Gb CNA + 1656 FastLinQ QL45000 Series 25GbE Controller + 1077 0033 QL45214 Flex 25Gb 4-port Ethernet Adapter + 1077 02a7 QL45212-DE 25GbE Adapter + 1077 e4f6 FastLinQ QL45211H 25GbE Adapter + 1077 e4f7 FastLinQ QL45212H 25GbE Adapter + 1590 0245 10/20/25GbE 2P 4820c CNA + 165c FastLinQ QL45000 Series 10/25/40/50GbE Controller (FCoE) + 1077 0034 QL45262 Flex 50Gb 2-port Ethernet Adapter w/ iSCSI/FCoE + 1077 e4f1 FastLinQ QL45462H 40GbE FCoE Adapter + 1077 e4f2 FastLinQ QL45461H 40GbE FCoE Adapter + 1590 0245 10/20/25GbE 2P 4820c CNA FCoE + 165e FastLinQ QL45000 Series 10/25/40/50GbE Controller (iSCSI) + 1077 0034 QL45262 Flex 50Gb 2-port Ethernet Adapter w/ iSCSI/FCoE + 1077 e4f1 FastLinQ QL45462H 40GbE iSCSI Adapter + 1077 e4f2 FastLinQ QL45461H 40GbE iSCSI Adapter + 1590 0245 10/20/25GbE 2P 4820c CNA iSCSI + 1664 FastLinQ QL45000 Series Gigabit Ethernet Controller (SR-IOV VF) + 1077 e4f1 FastLinQ QL45462H 40GbE Adapter (SR-IOV VF) + 1077 e4f2 FastLinQ QL45461H 40GbE Adapter (SR-IOV VF) + 1077 e4f3 FastLinQ QL45412H 40GbE Adapter (SR-IOV VF) + 1077 e4f4 FastLinQ QL45411H 40GbE Adapter (SR-IOV VF) + 1077 e4f6 FastLinQ QL45211H 25GbE Adapter (SR-IOV VF) + 1077 e4f7 FastLinQ QL45212H 25GbE Adapter (SR-IOV VF) + 1077 e4f8 FastLinQ QL45611H 100GbE Adapter (SR-IOV VF) + 1590 0245 10/20/25GbE 2P 4820c CNA SRIOV + 2020 ISP2020A Fast!SCSI Basic Adapter + 2031 ISP8324-based 16Gb Fibre Channel to PCI Express Adapter + 103c 17e7 SN1000Q 16Gb Single Port Fibre Channel Adapter + 103c 17e8 SN1000Q 16Gb Dual Port Fibre Channel Adapter + 103c 1939 QMH2672 16Gb Dual Port Fibre Channel Adapter + 103c 8002 3830C 16G Fibre Channel Host Bus Adapter + 1077 0241 QLE2670 16Gb Single Port Fibre Channel Adapter + 2071 ISP2714-based 16/32Gb Fibre Channel to PCIe Adapter + 1077 0283 QLE2764 Quad Port 32Gb Fibre Channel to PCIe Adapter + 1077 029e QLE2694 Quad Port 16Gb Fibre Channel to PCIe Adapter + 1077 02a2 QLE2694L Quad Port 16Gb Fibre Channel to PCIe Adapter + 1077 02ad QLE2694U Quad Port 16/32Gb Fibre Channel to PCIe Adapter + 2081 ISP2814-based 64/32G Fibre Channel to PCIe Controller + 1077 02e1 QLE2874 Quad Port 64GFC PCIe Gen4 x16 Adapter + 1077 02e3 QLE2774 Quad Port 32GFC PCIe Gen4 x16 Adapter + 2089 ISP2854-based 64/32G Fibre Channel to PCIe Controller with StorCryption + 1077 02e8 QLE2884 Quad Port 64GFC PCIe Gen4 x16 Adapter with StorCryption + 1077 02ea QLE2784 Quad Port 32GFC PCIe Gen4 x16 Adapter with StorCryption + 2100 QLA2100 64-bit Fibre Channel Adapter + 1077 0001 QLA2100 64-bit Fibre Channel Adapter + 2200 QLA2200 64-bit Fibre Channel Adapter + 1077 0002 QLA2200 + 2261 ISP2722-based 16/32Gb Fibre Channel to PCIe Adapter + 1077 0299 QLE2740 Single Port 32Gb Fibre Channel to PCIe Adapter + 1077 029a QLE2742 Dual Port 32Gb Fibre Channel to PCIe Adapter + 1077 029b QLE2690 Single Port 16Gb Fibre Channel to PCIe Adapter + 1077 029c QLE2692 Dual Port 16Gb Fibre Channel to PCIe Adapter + 1077 02a7 QLE2690 Single Port 16Gb FC to PCIe Gen3 x8 Adapter + 1077 02a8 QLE2692 Dual Port 16Gb FC to PCIe Gen3 x8 Adapter + 1077 02ab QLE2740 Single Port 32Gb FC to PCIe Gen3 x8 Adapter + 1077 02ac QLE2742 Dual Port 32Gb FC to PCIe Gen3 x8 Adapter + 1077 02b8 2x16Gb QME2692 FC HBA + 1077 02b9 2x32Gb QME2742 FC HBA + 1590 00f9 StoreFabric SN1100Q 16Gb Single Port Fibre Channel Host Bus Adapter + 1590 00fa StoreFabric SN1100Q 16Gb Dual Port Fibre Channel Host Bus Adapter + 1590 0203 StoreFabric SN1600Q 32Gb Single Port Fibre Channel Host Bus Adapter + 1590 0204 StoreFabric SN1600Q 32Gb Dual Port Fibre Channel Host Bus Adapter + 1590 022d 5830C 32Gb Dual Port Fibre Channel Adapter + 193d 100d NIC-FC680i-Mb-2x16G + 2281 ISP2812-based 64/32G Fibre Channel to PCIe Controller + 1077 02e2 QLE2872 Dual Port 64GFC PCIe Gen4 x8 Adapter + 1077 02e4 QLE2772 Dual Port 32GFC PCIe Gen4 x8 Adapter + 1077 02ee QLE2870 Single Port 64GFC PCIe Gen4 x8 Adapter + 1077 02f0 QLE2770 Single Port 32GFC PCIe Gen4 x8 Adapter + 1077 02f2 QLogic 1x32Gb QLE2770 FC HBA + 1077 02f3 QLogic 2x32Gb QLE2772 FC HBA + 1590 02d3 SN1610Q - 1P Enhanced 32GFC Single Port Fibre Channel Host Bus Adapter + 1590 02d4 SN1610Q – 2P Enhanced 32GFC Dual Port Fibre Channel Host Bus Adapter + 2289 ISP2852-based 64/32G Fibre Channel to PCIe Controller with StorCryption + 1077 02e9 QLE2882 Dual Port 64GFC PCIe Gen4 x8 Adapter with StorCryption + 1077 02eb QLE2782 Dual Port 32GFC PCIe Gen4 x8 Adapter with StorCryption + 1077 02ef QLE2880 Single Port 64GFC PCIe Gen4 x8 Adapter with StorCryption + 1077 02f1 QLE2780 Single Port 32GFC PCIe Gen4 x8 Adapter with StorCryption + 2300 QLA2300 64-bit Fibre Channel Adapter + 2312 ISP2312-based 2Gb Fibre Channel to PCI-X HBA + 103c 0131 2Gb Fibre Channel - Single port [A7538A] + 103c 12ba 2Gb Fibre Channel - Dual port [A6826A] + 2322 ISP2322-based 2Gb Fibre Channel to PCI-X HBA + 2422 ISP2422-based 4Gb Fibre Channel to PCI-X HBA + 103c 12d7 4Gb Fibre Channel [AB379A] + 103c 12dd 4Gb Fibre Channel [AB429A] + 2432 ISP2432-based 4Gb Fibre Channel to PCI Express HBA + 103c 7040 FC1142SR 4Gb 1-port PCIe Fibre Channel Host Bus Adapter [HPAE311A] + 1077 0137 QLE2460 Single-Port 4Gbps FC-to-PCI-X/PCIe Host Bus Adapter + 1077 0138 QLE2462 Dual-Port 4Gbps FC-to-PCI-X/PCIe Host Bus Adapter + 2532 ISP2532-based 8Gb Fibre Channel to PCI Express HBA + 1014 041e FC EN0Y/EN12 PCIe2 LP 8 Gb 4-port Fibre Channel Adapter for POWER + 103c 3262 StorageWorks 81Q + 103c 3263 StorageWorks 82Q + 1077 015c QLE2560 PCI Express to 8Gb FC Single Channel + 1077 015d QLE2562 PCI Express to 8Gb FC Dual Channel + 1077 015e QLE2564 PCI Express to 8Gb FC Quad Channel + 1077 0167 QME2572 Dual Port FC8 HBA Mezzanine + 1590 00fc StoreFabric 84Q 8Gb Quad Port Fibre Channel Host Bus Adapter + 2971 ISP2684 + 3022 ISP4022-based Ethernet NIC + 3032 ISP4032-based Ethernet IPv6 NIC + 4010 ISP4010-based iSCSI TOE HBA + 4022 ISP4022-based iSCSI TOE HBA + 4032 ISP4032-based iSCSI TOE IPv6 HBA + 5432 SP232-based 4Gb Fibre Channel to PCI Express HBA + 6312 SP202-based 2Gb Fibre Channel to PCI-X HBA + 6322 SP212-based 2Gb Fibre Channel to PCI-X HBA + 7220 IBA7220 InfiniBand HCA + 7322 IBA7322 QDR InfiniBand HCA + 8000 10GbE Converged Network Adapter (TCP/IP Networking) + 8001 10GbE Converged Network Adapter (FCoE) + 1014 03af FC 5708/5270 10 Gb FCoE PCIe Dual Port Adapter for POWER + 8020 cLOM8214 1/10GbE Controller + 1028 1f64 QMD8262-k 10G DP bNDC KR + 103c 3346 CN1000Q Dual Port Converged Network Adapter + 103c 3733 NC523SFP 10Gb 2-port Server Adapter + 1077 0203 8200 Series Single Port 10GbE Converged Network Adapter (TCP/IP Networking) + 1077 0207 8200 Series Dual Port 10GbE Converged Network Adapter (TCP/IP Networking) + 1077 020b 3200 Series Dual Port 10Gb Intelligent Ethernet Adapter + 1077 020c 3200 Series Quad Port 1Gb Intelligent Ethernet Adapter + 1077 020f 3200 Series Single Port 10Gb Intelligent Ethernet Adapter + 1077 0210 QME8242-k 10GbE Dual Port Mezzanine Card + 1077 0233 QME8262-k 10GbE Dual Port Mezzanine Card + 8021 8200 Series 10GbE Converged Network Adapter (FCoE) + 103c 3348 CN1000Q Dual Port Converged Network Adapter + 1077 0211 QME8242-k 10GbE Dual Port Mezzanine Card, FCoE + 8022 8200 Series 10GbE Converged Network Adapter (iSCSI) + 103c 3347 CN1000Q Dual Port Converged Network Adapter + 1077 0212 QME8242-k 10GbE Dual Port Mezzanine Card, iSCSI + 8030 ISP8324 1/10GbE Converged Network Controller + 1077 0243 8300 Series Single Port 10GbE Converged Network Adapter (TCP/IP Networking) + 1077 0246 8300 Series Dual Port 10GbE Converged Network Adapter (TCP/IP Networking) + 8031 8300 Series 10GbE Converged Network Adapter (FCoE) + 8032 8300 Series 10GbE Converged Network Adapter (iSCSI) + 8070 FastLinQ QL41000 Series 10/25/40/50GbE Controller + 1077 0001 10GE 2P QL41162HxRJ-DE Adapter + 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0004 4x10GE QL41164HFCU CNA + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA + 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000f 2x25GE QL41262HMKR CNA + 1077 0010 2x25GE QL41232HMKR NIC + 1077 0011 FastLinQ QL41212HLCU 25GbE Adapter + 1077 0012 FastLinQ QL41112H 10GbE Adapter + 1077 0019 QL41232HOCU - Dual Port 25/10GbE SFP28 OCP Adapter + 1077 0039 QLogic QL41262 PCIe 25Gb 2-Port SFP28 Ethernet Adapter + 1077 0053 QLogic 2x25GE QL41232HQCU NIC + 1077 0054 2x10GE QL41132HQRJ NIC + 1077 0055 QLogic 2x10GE QL41132HQCU NIC + 1077 0056 2x10GE QL41132HxRJ NIC + 1077 0057 2x25GE QL41232HxCU NIC + 1077 0065 QLogic 4x10GE QL41154HQRJ CNA + 1077 0066 QLogic 4x10GE QL41154HQCU CNA + 1077 0068 10GbE 2p SFP+ QL41132HLCU-HC Adapter + 1077 0069 10GbE 2p BASE-T QL41132HQRJ-HC OCP3 Adapter + 1077 0070 10GbE 2p BASE-T QL41132HLRJ-HC Adapter + 1077 0071 10GbE 2p SFP+ QL41132HQCU-HC OCP3 Adapter + 1077 0072 10GbE 4p SFP+ QL41134HLCU-HC Adapter + 1077 0073 10/25GbE 2p SFP28 QL41232HQCU-HC OCP3 Adapter + 1077 0074 10/25GbE 2p SFP28 QL41232HLCU-HC Adapter + 1590 021a 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021b 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021d 10/25GbE 2P QL41222HLCU-HP Adapter + 1590 021e 10/25GbE 2P QL41162HMRJ-HP Adapter + 1590 021f 10/25GbE 2P QL41262HMCU-HP Adapter + 1590 0220 10/25GbE 2P QL41122HLRJ-HP Adapter + 1590 02bd 10Gb 2P 524SFP+ NIC + 193d 1030 NIC-ETH681i-Mb-2x25G + 193d 1032 NIC-ETH682i-Mb-2x25G + 8080 FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE) + 1077 0001 10GE 2P QL41162HxRJ-DE Adapter + 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0004 4x10GE QL41164HFCU CNA + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA + 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA + 1077 000d FastLinQ QL41262H 25GbE FCoE Adapter + 1077 000e FastLinQ QL41162H 10GbE FCoE Adapter + 1077 000f 2x25GE QL41262HMKR CNA + 1590 021a 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021b 10GbE 2P QL41162HLRJ-HP Adapter + 8084 FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI) + 1077 0001 10GE 2P QL41162HxRJ-DE Adapter + 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0003 4x10GE QL41164HxRJ CNA + 1077 0004 4x10GE QL41164HFCU CNA + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x25GE QL41262HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA + 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA + 1077 000d FastLinQ QL41262H 25GbE iSCSI Adapter + 1077 000e FastLinQ QL41162H 10GbE iSCSI Adapter + 1077 000f 2x25GE QL41262HMKR CNA + 1077 0065 QLogic 4x10GE QL41154HQRJ CNA + 1077 0066 QLogic 4x10GE QL41154HQCU CNA + 1590 021a 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021b 10GbE 2P QL41162HLRJ-HP Adapter + 8090 FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF) + 1077 0001 25GE 2P QL41262HxCU-DE Adapter + 1077 0002 10GE 2P QL41112HxCU-DE Adapter + 1077 0003 4x10GE QL41164HxRJ CNA + 1077 0004 4x10GE QL41164HFCU CNA + 1077 0005 QLogic 4x10GE QL41164HMRJ CNA + 1077 0006 QLogic 4x10GE QL41164HMCU CNA + 1077 0007 QLogic 2x1GE+2x10GE QL41264HMCU CNA + 1077 0009 QLogic 2x1GE+2x10GE QL41162HMRJ CNA + 1077 000b 25GE 2P QL41262HxCU-DE Adapter + 1077 000c QLogic 2x25GE QL41262HMCU CNA + 1077 000d FastLinQ QL41262H 25GbE FCoE Adapter (SR-IOV VF) + 1077 000e FastLinQ QL41162H 10GbE iSCSI Adapter (SR-IOV VF) + 1077 000f 2x25GE QL41262HMKR CNA + 1077 0010 2x25GE QL41232HMKR NIC + 1077 0011 FastLinQ QL41212H 25GbE Adapter (SR-IOV VF) + 1077 0012 FastLinQ QL41112H 10GbE Adapter (SR-IOV VF) + 1077 0053 QLogic 2x25GE QL41232HQCU NIC + 1077 0054 QLogic 2x10GE QL41132HQRJ NIC + 1077 0055 QLogic 2x10GE QL41132HQCU NIC + 1077 0056 2x10GE QL41132HxRJ NIC + 1077 0057 2x25GE QL41232HxCU NIC + 1077 0065 QLogic 4x10GE QL41154HQRJ CNA + 1077 0066 QLogic 4x10GE QL41154HQCU CNA + 1590 021a 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021b 10GbE 2P QL41162HLRJ-HP Adapter + 1590 021e 10/25GbE 2P QL41162HMRJ-HP Adapter + 1590 021f 10/25GbE 2P QL41262HMCU-HP Adapter + 1590 02bd 10Gb 2P 524SFP+ NIC + 8430 ISP8324 1/10GbE Converged Network Controller (NIC VF) + 8431 8300 Series 10GbE Converged Network Adapter (FCoE VF) + 8432 ISP2432M-based 10GbE Converged Network Adapter (CNA) +1078 Cyrix Corporation + 0000 5510 [Grappa] + 0001 PCI Master + 0002 5520 [Cognac] + 0100 5530 Legacy [Kahlua] + 0101 5530 SMI [Kahlua] + 0102 5530 IDE [Kahlua] + 0103 5530 Audio [Kahlua] + 0104 5530 Video [Kahlua] + 0400 ZFMicro PCI Bridge + 0401 ZFMicro Chipset SMI + 0402 ZFMicro Chipset IDE + 0403 ZFMicro Expansion Bus +1079 I-Bus +107a NetWorth +# formerly Gateway 2000 / acquired by Acer Inc. +107b Gateway, Inc. +107c LG Electronics [Lucky Goldstar Co. Ltd] +107d LeadTek Research Inc. + 0000 P86C850 +107e Interphase Corporation + 0001 5515 ATM Adapter [Flipper] + 0002 100 VG AnyLan Controller + 0004 5526 Fibre Channel Host Adapter + 0005 x526 Fibre Channel Host Adapter + 0008 5525/5575 ATM Adapter (155 Mbit) [Atlantic] + 9003 5535-4P-BRI-ST + 9007 5535-4P-BRI-U + 9008 5535-1P-SR + 900c 5535-1P-SR-ST + 900e 5535-1P-SR-U + 9011 5535-1P-PRI + 9013 5535-2P-PRI + 9023 5536-4P-BRI-ST + 9027 5536-4P-BRI-U + 9031 5536-1P-PRI + 9033 5536-2P-PRI +107f Data Technology Corporation + 0802 SL82C105 +1080 Contaq Microsystems + 0600 82C599 + c691 Cypress CY82C691 + c693 82c693 +1081 Supermac Technology + 0d47 Radius PCI to NuBUS Bridge +1082 EFA Corporation of America +1083 Forex Computer Corporation + 0001 FR710 +1084 Parador +1086 J. Bond Computer Systems +1087 Cache Computer +1088 Microcomputer Systems (M) Son +1089 Data General Corporation +# Formerly Bit3 Computer Corp. +108a SBS Technologies + 0001 VME Bridge Model 617 + 0010 VME Bridge Model 618 + 0040 dataBLIZZARD + 3000 VME Bridge Model 2706 +108c Oakleigh Systems Inc. +108d Olicom + 0001 Token-Ring 16/4 PCI Adapter (3136/3137) + 0002 16/4 Token Ring + 0004 RapidFire OC-3139/3140 Token-Ring 16/4 PCI Adapter + 108d 0004 OC-3139/3140 RapidFire Token-Ring 16/4 Adapter + 0005 GoCard 3250 Token-Ring 16/4 CardBus PC Card + 0006 OC-3530 RapidFire Token-Ring 100 + 0007 RapidFire 3141 Token-Ring 16/4 PCI Fiber Adapter + 108d 0007 OC-3141 RapidFire Token-Ring 16/4 Adapter + 0008 RapidFire 3540 HSTR 100/16/4 PCI Adapter + 108d 0008 OC-3540 RapidFire HSTR 100/16/4 Adapter + 0011 OC-2315 + 0012 OC-2325 + 0013 OC-2183/2185 + 0014 OC-2326 + 0019 OC-2327/2250 10/100 Ethernet Adapter + 108d 0016 OC-2327 Rapidfire 10/100 Ethernet Adapter + 108d 0017 OC-2250 GoCard 10/100 Ethernet Adapter + 0021 OC-6151/6152 [RapidFire ATM 155] + 0022 ATM Adapter +108e Oracle/SUN + 0001 EBUS + 1000 EBUS + 1001 Happy Meal 10/100 Ethernet [hme] + 1100 RIO EBUS + 108e 1100 RIO EBUS on Blade 100 motherboard + 1101 RIO 10/100 Ethernet [eri] + 108e 1101 RIO GEM on Blade 100 motherboard + 1102 RIO 1394 + 108e 1102 RIO 1394 on Blade 100 motherboard + 1103 RIO USB + 108e 1103 RIO USB on Blade 100 motherboard + 1647 Broadcom 570x 10/100/1000 Ethernet [bge] + 1648 Broadcom 570x 10/100/1000 Ethernet [bge] + 16a7 Broadcom 570x 10/100/1000 Ethernet [bge] + 16a8 Broadcom 570x 10/100/1000 Ethernet [bge] + 2bad GEM 10/100/1000 Ethernet [ge] + 5000 Simba Advanced PCI Bridge + 108e 5000 Netra AX1105-500 + 5043 SunPCI Co-processor + 5ca0 Crypto Accelerator 6000 [mca] + 6300 Intel 21554 PCI-PCI bus bridge [db21554] + 6301 Intel 21554 PCI-PCI bus bridge [db21554] + 6302 Intel 21554 PCI-PCI bus bridge [db21554] + 6303 Intel 21554 PCI-PCI bus bridge [db21554] + 6310 Intel 21554 PCI-PCI bus bridge [db21554] + 6311 Intel 21554 PCI-PCI bus bridge [db21554] + 6312 Intel 21554 PCI-PCI bus bridge [db21554] + 6313 Intel 21554 PCI-PCI bus bridge [db21554] + 6320 Intel 21554 PCI-PCI bus bridge [db21554] + 6323 Intel 21554 PCI-PCI bus bridge [db21554] + 6330 Intel 21554 PCI-PCI bus bridge [db21554] + 6331 Intel 21554 PCI-PCI bus bridge [db21554] + 6332 Intel 21554 PCI-PCI bus bridge [db21554] + 6333 Intel 21554 PCI-PCI bus bridge [db21554] + 6340 Intel 21554 PCI-PCI bus bridge [db21554] + 6343 Intel 21554 PCI-PCI bus bridge [db21554] + 6350 Intel 21554 PCI-PCI bus bridge [db21554] + 6353 Intel 21554 PCI-PCI bus bridge [db21554] + 6722 Intel 21554 PCI-PCI bus bridge [db21554] + 676e SunPCiIII + 7063 SunPCiII / SunPCiIIpro + 8000 Psycho PCI Bus Module + 8001 Schizo PCI Bus Module + 8002 Schizo+ PCI Bus Module + 80f0 PCIe switch [px] + 80f8 PCIe switch [px] + 9010 PCIe/PCI bridge switch [pxb_plx] + 9020 PCIe/PCI bridge switch [pxb_plx] + 9102 Davicom Fast Ethernet driver for Davicom DM9102A [dmfe] + a000 Psycho UPA-PCI Bus Module [pcipsy] + a001 Psycho UPA-PCI Bus Module [pcipsy] + 108e a001 Ultra IIe on Blade 100 motherboard + a801 Schizo Fireplane-PCI bus bridge module [pcisch] + aaaa Multithreaded Shared 10GbE Ethernet Network Controller + abba Cassini 10/100/1000 + abcd Multithreaded 10-Gigabit Ethernet Network Controller + c416 Sun Fire System/System Controller Interface chip [sbbc] +108f Systemsoft +1090 Compro Computer Services, Inc. + 4610 PCI RTOM + 4620 GPIO HSD +1091 Intergraph Corporation + 0020 3D graphics processor + 0021 3D graphics processor w/Texturing + 0040 3D graphics frame buffer + 0041 3D graphics frame buffer + 0060 Proprietary bus bridge + 00e4 Powerstorm 4D50T + 0720 Motion JPEG codec + 0780 Intense3D Wildcat 3410 (MSMT496) + 07a0 Sun Expert3D-Lite Graphics Accelerator + 1091 Sun Expert3D Graphics Accelerator +1092 Diamond Multimedia Systems + 0028 Viper V770 + 1092 4a00 Viper V770 32MB + 00a0 Speedstar Pro SE + 00a8 Speedstar 64 + 0550 Viper V550 + 08d4 Supra 2260 Modem + 094c SupraExpress 56i Pro + 1001 Video Crunch It 1001 capture card + 1092 Viper V330 + 6120 Maximum DVD + 8810 Stealth SE + 8811 Stealth 64/SE + 8880 Stealth + 8881 Stealth + 88b0 Stealth 64 + 88b1 Stealth 64 + 88c0 Stealth 64 + 88c1 Stealth 64 + 88d0 Stealth 64 + 88d1 Stealth 64 + 88f0 Stealth 64 + 88f1 Stealth 64 + 9999 DMD-I0928-1 "Monster sound" sound chip +1093 National Instruments + 0160 PCI-DIO-96 + 0162 PCI-MIO-16XE-50 + 0fe1 PXI-8320 + 1150 PCI-6533 (PCI-DIO-32HS) + 1170 PCI-MIO-16XE-10 + 1180 PCI-MIO-16E-1 + 1190 PCI-MIO-16E-4 + 11b0 PXI-6070E + 11c0 PXI-6040E + 11d0 PXI-6030E + 1270 PCI-6032E + 1290 PCI-6704 + 12b0 PCI-6534 + 1310 PCI-6602 + 1320 PXI-6533 + 1330 PCI-6031E + 1340 PCI-6033E + 1350 PCI-6071E + 1360 PXI-6602 + 13c0 PXI-6508 + 1490 PXI-6534 + 14e0 PCI-6110 + 14f0 PCI-6111 + 1580 PXI-6031E + 15b0 PXI-6071E + 1710 PXI-6509 + 17c0 PXI-5690 + 17d0 PCI-6503 + 1870 PCI-6713 + 1880 PCI-6711 + 18b0 PCI-6052E + 18c0 PXI-6052E + 1920 PXI-6704 + 1930 PCI-6040E + 19c0 PCI-4472 + 1aa0 PXI-4110 + 1ad0 PCI-6133 + 1ae0 PXI-6133 + 1e30 PCI-6624 + 1e40 PXI-6624 + 1e50 PXI-5404 + 2410 PCI-6733 + 2420 PXI-6733 + 2430 PCI-6731 + 2470 PCI-4474 + 24a0 PCI-4065 + 24b0 PXI-4200 + 24f0 PXI-4472 + 2510 PCI-4472 + 2520 PCI-4474 + 27a0 PCI-6123 + 27b0 PXI-6123 + 2880 DAQCard-6601 + 2890 PCI-6036E + 28a0 PXI-4461 + 28b0 PCI-6013 + 28c0 PCI-6014 + 28d0 PCI-5122 + 28e0 PXI-5122 + 29f0 PXI-7334 + 2a00 PXI-7344 + 2a60 PCI-6023E + 2a70 PCI-6024E + 2a80 PCI-6025E + 2ab0 PXI-6025E + 2b10 PXI-6527 + 2b20 PCI-6527 + 2b80 PXI-6713 + 2b90 PXI-6711 + 2c60 PCI-6601 + 2c70 PXI-6601 + 2c80 PCI-6035E + 2c90 PCI-6703 + 2ca0 PCI-6034E + 2cb0 PCI-7344 + 2cc0 PXI-6608 + 2d20 PXI-5600 + 2db0 PCI-6608 + 2dc0 PCI-4070 + 2dd0 PXI-4070 + 2eb0 PXI-4472 + 2ec0 PXI-6115 + 2ed0 PCI-6115 + 2ee0 PXI-6120 + 2ef0 PCI-6120 + 2fd1 PCI-7334 + 2fd2 PCI-7350 + 2fd3 PCI-7342 + 2fd5 PXI-7350 + 2fd6 PXI-7342 + 7003 PCI-6551 + 7004 PXI-6551 + 700b PXI-5421 + 700c PCI-5421 + 701a VXIpc-87xB + 701b VXIpc-770 + 7023 PXI-2593 + 7027 PCI-MXI-2 Universal + 702c PXI-7831R + 702d PCI-7831R + 702e PXI-7811R + 702f PCI-7811R + 7030 PCI-CAN (Series 2) + 7031 PCI-CAN/2 (Series 2) + 7032 PCI-CAN/LS (Series 2) + 7033 PCI-CAN/LS2 (Series 2) + 7034 PCI-CAN/DS (Series 2) + 7035 PXI-8460 (Series 2, 1 port) + 7036 PXI-8460 (Series 2, 2 ports) + 7037 PXI-8461 (Series 2, 1 port) + 7038 PXI-8461 (Series 2, 2 ports) + 7039 PXI-8462 (Series 2) + 703f PXI-2566 + 7040 PXI-2567 + 7044 MXI-4 Connection Monitor + 7047 PXI-6653 + 704c PXI-2530 + 704f PXI-4220 + 7050 PXI-4204 + 7055 PXI-7830R + 7056 PCI-7830R + 705a PCI-CAN/XS (Series 2) + 705b PCI-CAN/XS2 (Series 2) + 705c PXI-8464 (Series 2, 1 port) + 705d PXI-8464 (Series 2, 2 ports) + 705e cRIO-9102 + 7060 PXI-5610 + 7064 PXI-1045 Trigger Routing Module + 7065 PXI-6652 + 7066 PXI-6651 + 7067 PXI-2529 + 7068 PCI-CAN/SW (Series 2) + 7069 PCI-CAN/SW2 (Series 2) + 706a PXI-8463 (Series 2, 1 port) + 706b PXI-8463 (Series 2, 2 ports) + 7073 PCI-6723 + 7074 PXI-7833R + 7075 PXI-6552 + 7076 PCI-6552 + 707c PXI-1428 + 707e PXI-4462 + 7080 PXI-8430/2 (RS-232) Interface + 7081 PXI-8431/2 (RS-485) Interface + 7083 PCI-7833R + 7085 PCI-6509 + 7086 PXI-6528 + 7087 PCI-6515 + 7088 PCI-6514 + 708c PXI-2568 + 708d PXI-2569 + 70a9 PCI-6528 + 70aa PCI-6229 + 70ab PCI-6259 + 70ac PCI-6289 + 70ad PXI-6251 + 70ae PXI-6220 + 70af PCI-6221 + 70b0 PCI-6220 + 70b1 PXI-6229 + 70b2 PXI-6259 + 70b3 PXI-6289 + 70b4 PCI-6250 + 70b5 PXI-6221 + 70b6 PCI-6280 + 70b7 PCI-6254 + 70b8 PCI-6251 + 70b9 PXI-6250 + 70ba PXI-6254 + 70bb PXI-6280 + 70bc PCI-6284 + 70bd PCI-6281 + 70be PXI-6284 + 70bf PXI-6281 + 70c0 PCI-6143 + 70c3 PCI-6511 + 70c4 PXI-7330 + 70c5 PXI-7340 + 70c6 PCI-7330 + 70c7 PCI-7340 + 70c8 PCI-6513 + 70c9 PXI-6515 + 70ca PCI-1405 + 70cc PCI-6512 + 70cd PXI-6514 + 70ce PXI-1405 + 70cf PCIe-GPIB + 70d0 PXI-2570 + 70d1 PXI-6513 + 70d2 PXI-6512 + 70d3 PXI-6511 + 70d4 PCI-6722 + 70d6 PXI-4072 + 70d7 PXI-6541 + 70d8 PXI-6542 + 70d9 PCI-6541 + 70da PCI-6542 + 70db PCI-8430/2 (RS-232) Interface + 70dc PCI-8431/2 (RS-485) Interface + 70dd PXI-8430/4 (RS-232) Interface + 70de PXI-8431/4 (RS-485) Interface + 70df PCI-8430/4 (RS-232) Interface + 70e0 PCI-8431/4 (RS-485) Interface + 70e1 PXI-2532 + 70e2 PXI-8430/8 (RS-232) Interface + 70e3 PXI-8431/8 (RS-485) Interface + 70e4 PCI-8430/8 (RS-232) Interface + 70e5 PCI-8431/8 (RS-485) Interface + 70e6 PXI-8430/16 (RS-232) Interface + 70e7 PCI-8430/16 (RS-232) Interface + 70e8 PXI-8432/2 (Isolated RS-232) Interface + 70e9 PXI-8433/2 (Isolated RS-485) Interface + 70ea PCI-8432/2 (Isolated RS-232) Interface + 70eb PCI-8433/2 (Isolated RS-485) Interface + 70ec PXI-8432/4 (Isolated RS-232) Interface + 70ed PXI-8433/4 (Isolated RS-485) Interface + 70ee PCI-8432/4 (Isolated RS-232) Interface + 70ef PCI-8433/4 (Isolated RS-485) Interface + 70f0 PXI-5922 + 70f1 PCI-5922 + 70f2 PCI-6224 + 70f3 PXI-6224 + 70f6 cRIO-9101 + 70f7 cRIO-9103 + 70f8 cRIO-9104 + 70ff PXI-6723 + 7100 PXI-6722 + 7104 PCIx-1429 + 7105 PCIe-1429 + 710a PXI-4071 + 710d PXI-6143 + 710e PCIe-GPIB + 710f PXI-5422 + 7110 PCI-5422 + 7111 PXI-5441 + 7119 PXI-6561 + 711a PXI-6562 + 711b PCI-6561 + 711c PCI-6562 + 7120 PCI-7390 + 7121 PXI-5122EX + 7122 PCI-5122EX + 7123 PXIe-5653 + 7124 PCI-6510 + 7125 PCI-6516 + 7126 PCI-6517 + 7127 PCI-6518 + 7128 PCI-6519 + 7137 PXI-2575 + 713c PXI-2585 + 713d PXI-2586 + 7142 PXI-4224 + 7144 PXI-5124 + 7145 PCI-5124 + 7146 PCI-6132 + 7147 PXI-6132 + 7148 PCI-6122 + 7149 PXI-6122 + 714c PXI-5114 + 714d PCI-5114 + 7150 PXI-2564 + 7152 PCI-5640R + 7156 PXI-1044 Trigger Routing Module + 715d PCI-1426 + 7167 PXI-5412 + 7168 PCI-5412 + 716b PCI-6230 + 716c PCI-6225 + 716d PXI-6225 + 716f PCI-4461 + 7170 PCI-4462 + 7171 PCI-6010 + 7174 PXI-8360 + 7177 PXI-6230 + 717d PCIe-6251 + 717f PCIe-6259 + 7187 PCI-1410 + 718b PCI-6521 + 718c PXI-6521 + 7191 PCI-6154 + 7193 PXI-7813R + 7194 PCI-7813R + 7195 PCI-8254R + 7197 PXI-5402 + 7198 PCI-5402 + 719f PCIe-6535 + 71a0 PCIe-6536 + 71a3 PXI-5650 + 71a4 PXI-5652 + 71a5 PXI-2594 + 71a7 PXI-2595 + 71a9 PXI-2596 + 71aa PXI-2597 + 71ab PXI-2598 + 71ac PXI-2599 + 71ad PCI-GPIB+ + 71ae PCIe-1430 + 71b7 PXI-1056 Trigger Routing Module + 71b8 PXI-1045 Trigger Routing Module + 71b9 PXI-1044 Trigger Routing Module + 71bb PXI-2584 + 71bc PCI-6221 (37-pin) + 71bf PCIe-1427 + 71c5 PCI-6520 + 71c6 PXI-2576 + 71c7 cRIO-9072 + 71dc PCI-1588 + 71e0 PCI-6255 + 71e1 PXI-6255 + 71e2 PXI-5406 + 71e3 PCI-5406 + 71fc PXI-4022 + 7209 PCI-6233 + 720a PXI-6233 + 720b PCI-6238 + 720c PXI-6238 + 7260 PXI-5142 + 7261 PCI-5142 + 726d PXI-5651 + 7273 PXI-4461 + 7274 PXI-4462 + 7279 PCI-6232 + 727a PXI-6232 + 727b PCI-6239 + 727c PXI-6239 + 727e SMBus Controller + 1093 75ac PXIe-8388 + 1093 75ad PXIe-8389 + 1093 7650 PXIe-8381 + 1093 8360 PXIe-8360 + 1093 8370 PXIe-8370 + 1093 8375 PXIe-8375 + 7281 PCI-6236 + 7282 PXI-6236 + 7283 PXI-2554 + 7288 PXIe-5611 + 7293 PCIe-8255R + 729d cRIO-9074 + 72a4 PCIe-4065 + 72a7 PCIe-6537 + 72a8 PXI-5152 + 72a9 PCI-5152 + 72aa PXI-5105 + 72ab PCI-5105 + 72b8 PXI-6682 + 72d0 PXI-2545 + 72d1 PXI-2546 + 72d2 PXI-2547 + 72d3 PXI-2548 + 72d4 PXI-2549 + 72d5 PXI-2555 + 72d6 PXI-2556 + 72d7 PXI-2557 + 72d8 PXI-2558 + 72d9 PXI-2559 + 72e8 PXIe-6251 + 72e9 PXIe-6259 + 72ef PXI-4498 + 72f0 PXI-4496 + 72fb PXIe-6672 + 730e PXI-4130 + 730f PXI-5922EX + 7310 PCI-5922EX + 731c PXI-2535 + 731d PXI-2536 + 7322 PXIe-6124 + 7327 PXI-6529 + 732c VXI-8360T + 7331 PXIe-5602 + 7332 PXIe-5601 + 7333 PXI-5900 + 7335 PXI-2533 + 7336 PXI-2534 + 7342 PXI-4461 + 7349 PXI-5154 + 734a PCI-5154 + 7357 PXI-4065 + 7359 PXI-4495 + 7370 PXI-4461 + 7373 sbRIO-9601 + 7374 IOtech-9601 + 7375 sbRIO-9602 + 7378 sbRIO-9641 + 737d PXI-5124EX + 7384 PXI-7851R + 7385 PXI-7852R + 7386 PCIe-7851R + 7387 PCIe-7852R + 7390 PXI-7841R + 7391 PXI-7842R + 7392 PXI-7853R + 7393 PCIe-7841R + 7394 PCIe-7842R + 7397 sbRIO-9611 + 7398 sbRIO-9612 + 7399 sbRIO-9631 + 739a sbRIO-9632 + 739b sbRIO-9642 + 73a1 PXIe-4498 + 73a2 PXIe-4496 + 73a5 PXIe-5641R + 73a7 PXI-8250 Chassis Monitor Module + 73a8 PXI-8511 CAN/LS + 73a9 PXI-8511 CAN/LS + 73aa PXI-8512 CAN/HS + 73ab PXI-8512 CAN/HS + 73ac PXI-8513 CAN/XS + 73ad PXI-8513 CAN/XS + 73af PXI-8516 LIN + 73b1 PXI-8517 FlexRay + 73b2 PXI-8531 CANopen + 73b3 PXI-8531 CANopen + 73b4 PXI-8532 DeviceNet + 73b5 PXI-8532 DeviceNet + 73b6 PCI-8511 CAN/LS + 73b7 PCI-8511 CAN/LS + 73b8 PCI-8512 CAN/HS + 73b9 PCI-8512 CAN/HS + 73ba PCI-8513 CAN/XS + 73bb PCI-8513 CAN/XS + 73bd PCI-8516 LIN + 73bf PCI-8517 FlexRay + 73c0 PCI-8531 CANopen + 73c1 PCI-8531 CANopen + 73c2 PCI-8532 DeviceNet + 73c3 PCI-8532 DeviceNet + 73c5 PXIe-2527 + 73c6 PXIe-2529 + 73c8 PXIe-2530 + 73c9 PXIe-2532 + 73ca PXIe-2569 + 73cb PXIe-2575 + 73cc PXIe-2593 + 73d5 PXI-7951R + 73d6 PXI-7952R + 73d7 PXI-7953R + 73e1 PXI-7854R + 73ec PXI-7954R + 73ed cRIO-9073 + 73f0 PXI-5153 + 73f1 PCI-5153 + 73f4 PXI-2515 + 73f6 cRIO-9111 + 73f7 cRIO-9112 + 73f8 cRIO-9113 + 73f9 cRIO-9114 + 73fa cRIO-9116 + 73fb cRIO-9118 + 7404 PXI-4132 + 7405 PXIe-6674T + 7406 PXIe-6674 + 740e PCIe-8430/16 (RS-232) Interface + 740f PCIe-8430/8 (RS-232) Interface + 7410 PCIe-8431/16 (RS-485) Interface + 7411 PCIe-8431/8 (RS-485) Interface + 7414 PCIe-GPIB+ + 741c PXI-5691 + 741d PXI-5695 + 743c CSC-3059 + 7448 PXI-2510 + 7454 PXI-2512 + 7455 PXI-2514 + 7456 PXIe-2512 + 7457 PXIe-2514 + 745a PXI-6682H + 745e PXI-5153EX + 745f PCI-5153EX + 7460 PXI-5154EX + 7461 PCI-5154EX + 746d PXIe-5650 + 746e PXIe-5651 + 746f PXIe-5652 + 7472 PXI-2800 + 7495 PXIe-5603 + 7497 PXIe-5605 + 74ae PXIe-2515 + 74b4 PXI-2531 + 74b5 PXIe-2531 + 74c1 PXIe-8430/16 (RS-232) Interface + 74c2 PXIe-8430/8 (RS-232) Interface + 74c3 PXIe-8431/16 (RS-485) Interface + 74c4 PXIe-8431/8 (RS-485) Interface + 74d5 PXIe-5630 + 74d9 PCIe-8432/2 (Isolated RS-232) Interface + 74da PCIe-8433/2 (Isolated RS-485) Interface + 74db PCIe-8432/4 (Isolated RS-232) Interface + 74dc PCIe-8433/4 (Isolated RS-485) Interface + 74e8 NI 9148 + 7515 PCIe-8430/2 (RS-232) Interface + 7516 PCIe-8430/4 (RS-232) Interface + 7517 PCIe-8431/2 (RS-485) Interface + 7518 PCIe-8431/4 (RS-485) Interface + 751b cRIO-9081 + 751c cRIO-9082 + 7528 PXIe-4497 + 7529 PXIe-4499 + 752a PXIe-4492 + 7539 NI 9157 + 753a NI 9159 + 7598 PXI-2571 + 75a4 PXI-4131A + 75b1 PCIe-7854R + 75ba PXI-2543 + 75bb PXIe-2543 + 75e5 PXI-6683 + 75e6 PXI-6683H + 75ef PXIe-5632 + 761c VXI-8360LT + 761f PXI-2540 + 7620 PXIe-2540 + 7621 PXI-2541 + 7622 PXIe-2541 + 7626 NI 9154 + 7627 NI 9155 + 7638 PXI-2720 + 7639 PXI-2722 + 763a PXIe-2725 + 763b PXIe-2727 + 763c PXI-4465 + 764b PXIe-2790 + 764c PXI-2520 + 764d PXI-2521 + 764e PXI-2522 + 764f PXI-2523 + 7654 PXI-2796 + 7655 PXI-2797 + 7656 PXI-2798 + 7657 PXI-2799 + 765d PXI-2542 + 765e PXIe-2542 + 765f PXI-2544 + 7660 PXIe-2544 + 766d PCIe-6535B + 766e PCIe-6536B + 766f PCIe-6537B + 76a3 PXIe-6535B + 76a4 PXIe-6536B + 76a5 PXIe-6537B + 783e PXI-8368 + 9020 PXI-2501 + 9030 PXI-2503 + 9040 PXI-2527 + 9050 PXI-2565 + 9060 PXI-2590 + 9070 PXI-2591 + 9080 PXI-2580 + 9090 PCI-4021 + 90a0 PXI-4021 + a001 PCI-MXI-2 + b001 PCI-1408 + b011 PXI-1408 + b021 PCI-1424 + b022 PXI-1424 + b031 PCI-1413 + b041 PCI-1407 + b051 PXI-1407 + b061 PCI-1411 + b071 PCI-1422 + b081 PXI-1422 + b091 PXI-1411 + b0b1 PCI-1409 + b0c1 PXI-1409 + b0e1 PCI-1428 + c4c4 PXIe/PCIe Device + 1093 728a PXIe-5421 + 1093 728b PXIe-5442 + 1093 728d PXIe-5451 + 1093 72a2 PXIe-5122 + 1093 72da PXIe-5422 + 1093 72f7 PXIe-6535 + 1093 72f8 PXIe-6536 + 1093 72f9 PXIe-6537 + 1093 7326 PCIe-6509 + 1093 736c PXIe-4140 + 1093 738b PXIe-5622 + 1093 73c4 PXIe-5450 + 1093 73c7 PXIe-6545 + 1093 73d4 PXIe-6544 + 1093 7425 PCIe-6320 + 1093 7427 PCIe-6321 + 1093 7428 PXIe-6323 + 1093 7429 PCIe-6323 + 1093 742a PXIe-6341 + 1093 742b PCIe-6341 + 1093 742c PXIe-6343 + 1093 742d PCIe-6343 + 1093 742f PCIe-6351 + 1093 7431 PCIe-6353 + 1093 7432 PXIe-6361 + 1093 7433 PCIe-6361 + 1093 7434 PXIe-6363 + 1093 7435 PCIe-6363 + 1093 7436 PXIe-6356 + 1093 7437 PXIe-6358 + 1093 7438 PXIe-6366 + 1093 7439 PXIe-6368 + 1093 7468 PXIe-5185 + 1093 7469 PXIe-5186 + 1093 7492 PXIe-4300 + 1093 7498 PXIe-6548 + 1093 7499 PXIe-6547 + 1093 74a8 PXIe-4330 + 1093 74a9 PXIe-4331 + 1093 74b1 PXIe-4154 + 1093 74b2 PXIe-4353 + 1093 74b6 PCIe-1433 + 1093 74cd PXIe-5643R + 1093 74d0 PXIe-7961R + 1093 74dd PXIe-6376 + 1093 74de PXIe-6378 + 1093 74e2 PXIe-7962R + 1093 74e3 PXIe-7965R + 1093 74e5 PXIe-4844 + 1093 74f3 PCIe-5140 + 1093 753c PXIe-1435 + 1093 7548 PXIe-5622 (25MHz DDC) + 1093 754d PCIe-5155 + 1093 7551 PXIe-6556 + 1093 7553 PCIe-1473R + 1093 7570 PCIe-1474R + 1093 7571 PXIe-1475R + 1093 7572 PXIe-1476R + 1093 75a2 PXIe-5693 + 1093 75a3 PXIe-5694 + 1093 75a5 PXIe-4141 + 1093 75ce PXIe-7966R + 1093 75cf PXIe-4357 + 1093 75d2 PXIe-RevB-5643R + 1093 75d3 PXIe-5644R + 1093 75ee PXIe-5645R + 1093 7613 PXIe-6555 + 1093 7619 PXIe-5185 + 1093 761a PXIe-5186 + 1093 7629 PXIe-4142 + 1093 762a PXIe-4143 + 1093 762b PXIe-4138 + 1093 762c PXIe-4144 + 1093 762d PXIe-4145 + 1093 762e PXIe-5606 + 1093 7644 PXIe-4841 + 1093 764a PCIe-8237R-S + 1093 7658 PXIe-5162 (4CH) + 1093 76ab PXIe-4322 + 1093 76ad PXIe-4112 + 1093 76ae PXIe-4113 + 1093 76b5 PXIe-7971R + 1093 76b6 PXIe-7972R + 1093 76b7 PXIe-7975R + 1093 76b8 PXIe-5696 + 1093 76b9 PXIe-5654 + 1093 76c8 PXIe-6614 + 1093 76c9 PXIe-6612 + 1093 76cb PXIe-5646R + 1093 76cc PXIe-5162 (2CH) + 1093 76ce CVS-1459 + 1093 76d0 PXIe-5160 (2CH) + 1093 76d1 PXIe-5160 (4CH) + 1093 76dc PXIe-4610 + 1093 76ec PXIe-2524 + 1093 76ed PXIe-2525 + 1093 76ee PXIe-2526 + 1093 76ef PXIe-2737 + 1093 76f0 PXIe-2738 + 1093 76f1 PXIe-2739 + 1093 76fb PCIe-1473R-LX110 + 1093 76fc PXIe-5105 + 1093 76fd PXIe-5114 + 1093 76fe PXIe-5644R + 1093 76ff PXIe-5644R + 1093 7700 PXIe-5644R + 1093 7701 PXIe-5645R + 1093 7702 PXIe-5645R + 1093 7703 PXIe-5645R + 1093 770c PXIe-4139 + 1093 7711 PXIe-4464 + 1093 7712 PXIe-4463 + 1093 7716 PCIe-6612 + 1093 771d Unconfigured CA4 Switch + 1093 771e PXIe-4339 + 1093 7735 cRIO-9033 + 1093 773e PXIe-5624R + 1093 774b cRIO-9031 + 1093 774d cRIO-9034 + 1093 7755 cRIO-9030 + 1093 7768 PXIe-2747 + 1093 7769 PXIe-2748 + 1093 776a PXIe-2746 + 1093 7777 PXIe-7976R + 1093 7782 PXIe-5646R + 1093 7783 PXIe-5646R + 1093 7784 PXIe-5646R + 1093 7790 PXIe-5170R (4CH) + 1093 7791 PXIe-5170R (8CH) + 1093 7793 PXIe-5171R (8CH) + 1093 77a5 PXIe-6345 + 1093 77a6 PXIe-6355 + 1093 77a7 PXIe-6365 + 1093 77a8 PXIe-6375 + 1093 77aa CVS-1458 + 1093 77ad IC-3173 + 1093 77b4 PXIe-7820R + 1093 77b5 PXIe-7821R + 1093 77b6 PXIe-7822R + 1093 77b9 cRIO-9038 + 1093 77ba PXIe-4136 + 1093 77bb PXIe-4137 + 1093 77c0 PXIe-5624R + 1093 77c1 PXIe-5624R + 1093 77c2 PXIe-5624R + 1093 77ca PXIe-6738 + 1093 77cb PXIe-6739 + 1093 77db cRIO-9035 + 1093 77dc cRIO-9036 + 1093 77dd cRIO-9039 + 1093 7802 PXIe-4302 + 1093 7803 PXIe-4303 + 1093 7805 PXIe-4305 + 1093 786f PXIe-4163 + 1093 788e PXIe-4304 + 1093 78f8 NI FlexRIO Module (KU035) + 1093 78f9 NI FlexRIO Module (KU040) + 1093 78fa NI FlexRIO Module (KU060) + 1093 78ff PXIe-4162 + 1093 7995 PXIe-7911R + 1093 7996 PXIe-7912R + 1093 7997 PXIe-7915R + 1093 79d3 NI FlexRIO PCIe Module (KU035) + 1093 79d4 NI FlexRIO PCIe Module (KU040) + 1093 79d5 NI FlexRIO PCIe Module (KU060) + c801 PCI-GPIB + c811 PCI-GPIB+ + c821 PXI-GPIB + c831 PMC-GPIB + c840 PCI-GPIB + d130 PCI-232/2 Interface + d140 PCI-232/4 Interface + d150 PCI-232/8 Interface + d160 PCI-485/2 Interface + d170 PCI-485/4 Interface + d190 PXI-8422/2 (Isolated RS-232) Interface + d1a0 PXI-8422/4 (Isolated RS-232) Interface + d1b0 PXI-8423/2 (Isolated RS-485) Interface + d1c0 PXI-8423/4 (Isolated RS-485) Interface + d1d0 PXI-8420/2 (RS-232) Interface + d1e0 PXI-8420/4 (RS-232) Interface + d1f0 PXI-8420/8 (RS-232) Interface + d1f1 PXI-8420/16 (RS-232) Interface + d230 PXI-8421/2 (RS-485) Interface + d240 PXI-8421/4 (RS-485) Interface + d250 PCI-232/2 (Isolated) Interface + d260 PCI-485/2 (Isolated) Interface + d270 PCI-232/4 (Isolated) Interface + d280 PCI-485/4 (Isolated) Interface + d290 PCI-485/8 Interface + d2a0 PXI-8421/8 (RS-485) Interface + d2b0 PCI-232/16 Interface + e111 PCI-CAN + e131 PXI-8461 (1 port) + e141 PCI-CAN/LS + e151 PXI-8460 (1 port) + e211 PCI-CAN/2 + e231 PXI-8461 (2 ports) + e241 PCI-CAN/LS2 + e251 PXI-8460 (2 ports) + e261 PCI-CAN/DS + e271 PXI-8462 + f110 VMEpc-650 + f120 VXIpc-650 + fe00 VXIpc-87x + fe41 VXIpc-860 + fe51 VXIpc-74x + fe61 VXIpc-850 + fe70 VXIpc-880 +1094 First International Computers [FIC] +# nee CMD Technology Inc +1095 Silicon Image, Inc. + 0240 Adaptec AAR-1210SA SATA HostRAID Controller + 0640 PCI0640 + 0643 PCI0643 + 0646 PCI0646 + 0647 PCI0647 + 0648 PCI0648 + 1043 8025 CUBX motherboard + 0649 SiI 0649 Ultra ATA/100 PCI to ATA Host Controller + 0e11 005d Integrated Ultra ATA-100 Dual Channel Controller + 0e11 007e Integrated Ultra ATA-100 IDE RAID Controller + 101e 0649 AMI MegaRAID IDE 100 Controller + 0650 PBC0650A + 0670 USB0670 + 1095 0670 USB0670 + 0673 USB0673 + 0680 PCI0680 Ultra ATA-133 Host Controller + 1095 0680 SiI 0680 ATA/133 Controller + 1095 3680 Winic W-680 (Silicon Image 680 based) + 3112 SiI 3112 [SATALink/SATARaid] Serial ATA Controller + 1095 3112 SiI 3112 SATALink Controller + 1095 6112 SiI 3112 SATARaid Controller + 9005 0250 SATAConnect 1205SA Host Controller + 3114 SiI 3114 [SATALink/SATARaid] Serial ATA Controller + 1043 8167 A8N-SLI Deluxe/Premium Mainboard + 1095 3114 SiI 3114 SATALink Controller + 1095 6114 SiI 3114 SATARaid Controller + 3124 SiI 3124 PCI-X Serial ATA Controller + 1095 3124 SiI 3124 PCI-X Serial ATA Controller + 3132 SiI 3132 Serial ATA Raid II Controller + 3512 SiI 3512 [SATALink/SATARaid] Serial ATA Controller + 1095 3512 SiI 3512 SATALink Controller + 1095 6512 SiI 3512 SATARaid Controller + 3531 SiI 3531 [SATALink/SATARaid] Serial ATA Controller + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] +1096 Alacron +1097 Appian Technology +1098 Quantum Designs (H.K.) Ltd + 0001 QD-8500 + 0002 QD-8580 +1099 Samsung Electronics Co., Ltd +109a Packard Bell +109b Gemlight Computer Ltd. +109c Megachips Corporation +109d Zida Technologies Ltd. +109e Brooktree Corporation + 0310 Bt848 Video Capture + 032e Bt878 Video Capture + 0350 Bt848 Video Capture + 0351 Bt849A Video capture + 0369 Bt878 Video Capture + 1002 0001 TV-Wonder + 1002 0003 TV-Wonder/VE + 036c Bt879(??) Video Capture + 13e9 0070 Win/TV (Video Section) + 036e Bt878 Video Capture + 0000 0001 Euresys Picolo PCIe + 0070 13eb WinTV Series + 0070 ff01 Viewcast Osprey 200 + 0071 0101 DigiTV PCI + 107d 6606 WinFast TV 2000 + 11bd 0012 PCTV pro (TV + FM stereo receiver) + 11bd 001c PCTV Sat (DBC receiver) + 127a 0001 Bt878 Mediastream Controller NTSC + 127a 0002 Bt878 Mediastream Controller PAL BG + 127a 0003 Bt878a Mediastream Controller PAL BG + 127a 0048 Bt878/832 Mediastream Controller + 144f 3000 MagicTView CPH060 - Video + 1461 0002 TV98 Series (TV/No FM/Remote) + 1461 0003 AverMedia UltraTV PCI 350 + 1461 0004 AVerTV WDM Video Capture + 1461 0761 AverTV DVB-T + 1461 0771 AverMedia AVerTV DVB-T 771 + 14f1 0001 Bt878 Mediastream Controller NTSC + 14f1 0002 Bt878 Mediastream Controller PAL BG + 14f1 0003 Bt878a Mediastream Controller PAL BG + 14f1 0048 Bt878/832 Mediastream Controller + 1822 0001 VisionPlus DVB card + 1851 1850 FlyVideo'98 - Video + 1851 1851 FlyVideo II + 1852 1852 FlyVideo'98 - Video (with FM Tuner) + 18ac d500 DViCO FusionHDTV5 Lite + 270f fc00 Digitop DTT-1000 +# Vendor/ID appear to be randomly chosen + aa00 1460 Spectra8 CardA Input0 +# Vendor/ID appear to be randomly chosen + aa01 1461 Spectra8 CardA Input1 +# Vendor/ID appear to be randomly chosen + aa02 1462 Spectra8 CardA Input2 +# Vendor/ID appear to be randomly chosen + aa03 1463 Spectra8 CardA Input3 +# Vendor/ID appear to be randomly chosen + aa04 1464 Spectra8 CardB Input0 +# Vendor/ID appear to be randomly chosen + aa05 1465 Spectra8 CardB Input1 +# Vendor/ID appear to be randomly chosen + aa06 1466 Spectra8 CardB Input2 +# Vendor/ID appear to be randomly chosen + aa07 1467 Spectra8 CardB Input3 +# Vendor/ID appear to be randomly chosen + aa08 1468 Spectra8 CardC Input0 +# Vendor/ID appear to be randomly chosen + aa09 1469 Spectra8 CardC Input1 +# Vendor/ID appear to be randomly chosen + aa0a 146a Spectra8 CardC Input2 +# Vendor/ID appear to be randomly chosen + aa0b 146b Spectra8 CardC Input3 +# Vendor/ID appear to be randomly chosen + aa0c 146c Spectra8 CardD Input0 +# Vendor/ID appear to be randomly chosen + aa0d 146d Spectra8 CardD Input1 +# Vendor/ID appear to be randomly chosen + aa0e 146e Spectra8 CardD Input2 +# Vendor/ID appear to be randomly chosen + aa0f 146f Spectra8 CardD Input3 + bd11 1200 PCTV pro (TV + FM stereo receiver) + 036f Bt879 Video Capture + 127a 0044 Bt879 Video Capture NTSC + 127a 0122 Bt879 Video Capture PAL I + 127a 0144 Bt879 Video Capture NTSC + 127a 0222 Bt879 Video Capture PAL BG + 127a 0244 Bt879a Video Capture NTSC + 127a 0322 Bt879 Video Capture NTSC + 127a 0422 Bt879 Video Capture NTSC + 127a 1122 Bt879 Video Capture PAL I + 127a 1222 Bt879 Video Capture PAL BG + 127a 1322 Bt879 Video Capture NTSC + 127a 1522 Bt879a Video Capture PAL I + 127a 1622 Bt879a Video Capture PAL BG + 127a 1722 Bt879a Video Capture NTSC + 14f1 0044 Bt879 Video Capture NTSC + 14f1 0122 Bt879 Video Capture PAL I + 14f1 0144 Bt879 Video Capture NTSC + 14f1 0222 Bt879 Video Capture PAL BG + 14f1 0244 Bt879a Video Capture NTSC + 14f1 0322 Bt879 Video Capture NTSC + 14f1 0422 Bt879 Video Capture NTSC + 14f1 1122 Bt879 Video Capture PAL I + 14f1 1222 Bt879 Video Capture PAL BG + 14f1 1322 Bt879 Video Capture NTSC + 14f1 1522 Bt879a Video Capture PAL I + 14f1 1622 Bt879a Video Capture PAL BG + 14f1 1722 Bt879a Video Capture NTSC + 1851 1850 FlyVideo'98 - Video + 1851 1851 FlyVideo II + 1852 1852 FlyVideo'98 - Video (with FM Tuner) + 0370 Bt880 Video Capture + 1851 1850 FlyVideo'98 + 1851 1851 FlyVideo'98 EZ - video + 1852 1852 FlyVideo'98 (with FM Tuner) + 0878 Bt878 Audio Capture + 0000 0001 Euresys Picolo PCIe + 0070 13eb WinTV Series + 0070 ff01 Viewcast Osprey 200 + 0071 0101 DigiTV PCI + 1002 0001 TV-Wonder + 1002 0003 TV-Wonder/VE + 11bd 0012 PCTV pro (TV + FM stereo receiver, audio section) + 11bd 001c PCTV Sat (DBC receiver) + 127a 0001 Bt878 Video Capture (Audio Section) + 127a 0002 Bt878 Video Capture (Audio Section) + 127a 0003 Bt878 Video Capture (Audio Section) + 127a 0048 Bt878 Video Capture (Audio Section) + 13e9 0070 Win/TV (Audio Section) + 144f 3000 MagicTView CPH060 - Audio + 1461 0002 Avermedia PCTV98 Audio Capture + 1461 0003 UltraTV PCI 350 + 1461 0004 AVerTV WDM Audio Capture + 1461 0761 AVerTV DVB-T + 1461 0771 AverMedia AVerTV DVB-T 771 + 14f1 0001 Bt878 Video Capture (Audio Section) + 14f1 0002 Bt878 Video Capture (Audio Section) + 14f1 0003 Bt878 Video Capture (Audio Section) + 14f1 0048 Bt878 Video Capture (Audio Section) + 1822 0001 VisionPlus DVB Card + 18ac d500 DViCO FusionHDTV5 Lite + 270f fc00 Digitop DTT-1000 + bd11 1200 PCTV pro (TV + FM stereo receiver, audio section) + 0879 Bt879 Audio Capture + 127a 0044 Bt879 Video Capture (Audio Section) + 127a 0122 Bt879 Video Capture (Audio Section) + 127a 0144 Bt879 Video Capture (Audio Section) + 127a 0222 Bt879 Video Capture (Audio Section) + 127a 0244 Bt879 Video Capture (Audio Section) + 127a 0322 Bt879 Video Capture (Audio Section) + 127a 0422 Bt879 Video Capture (Audio Section) + 127a 1122 Bt879 Video Capture (Audio Section) + 127a 1222 Bt879 Video Capture (Audio Section) + 127a 1322 Bt879 Video Capture (Audio Section) + 127a 1522 Bt879 Video Capture (Audio Section) + 127a 1622 Bt879 Video Capture (Audio Section) + 127a 1722 Bt879 Video Capture (Audio Section) + 14f1 0044 Bt879 Video Capture (Audio Section) + 14f1 0122 Bt879 Video Capture (Audio Section) + 14f1 0144 Bt879 Video Capture (Audio Section) + 14f1 0222 Bt879 Video Capture (Audio Section) + 14f1 0244 Bt879 Video Capture (Audio Section) + 14f1 0322 Bt879 Video Capture (Audio Section) + 14f1 0422 Bt879 Video Capture (Audio Section) + 14f1 1122 Bt879 Video Capture (Audio Section) + 14f1 1222 Bt879 Video Capture (Audio Section) + 14f1 1322 Bt879 Video Capture (Audio Section) + 14f1 1522 Bt879 Video Capture (Audio Section) + 14f1 1622 Bt879 Video Capture (Audio Section) + 14f1 1722 Bt879 Video Capture (Audio Section) + 0880 Bt880 Audio Capture + 2115 BtV 2115 Mediastream controller + 2125 BtV 2125 Mediastream controller + 2164 BtV 2164 + 2165 BtV 2165 + 8230 Bt8230 ATM Segment/Reassembly Ctrlr (SRC) + 8472 Bt8472 + 8474 Bt8474 +109f Trigem Computer Inc. +10a0 Meidensha Corporation +10a1 Juko Electronics Ind. Co. Ltd +10a2 Quantum Corporation +10a3 Everex Systems Inc +10a4 Globe Manufacturing Sales +10a5 Smart Link Ltd. + 3052 SmartPCI562 56K Modem + 5449 SmartPCI561 modem +10a6 Informtech Industrial Ltd. +10a7 Benchmarq Microelectronics +10a8 Sierra Semiconductor + 0000 STB Horizon 64 +10a9 Silicon Graphics Intl. Corp. + 0001 Crosstalk to PCI Bridge + 0002 Linc I/O controller + 0003 IOC3 I/O controller + 0004 O2 MACE + 0005 RAD Audio + 0006 HPCEX + 0007 RPCEX + 0008 DiVO VIP + 0009 AceNIC Gigabit Ethernet + 10a9 8002 AceNIC Gigabit Ethernet + 0010 AMP Video I/O + 0011 GRIP + 0012 SGH PSHAC GSN + 0208 SSIM1 SAS Adapter + 1001 Magic Carpet + 1002 Lithium + 1003 Dual JPEG 1 + 1004 Dual JPEG 2 + 1005 Dual JPEG 3 + 1006 Dual JPEG 4 + 1007 Dual JPEG 5 + 1008 Cesium + 100a IOC4 I/O controller + 1504 SSIM1 Fibre Channel Adapter + 2001 Fibre Channel + 2002 ASDE + 4001 TIO-CE PCI Express Bridge + 4002 TIO-CE PCI Express Port + 8001 O2 1394 + 8002 G-net NT +# PCIe x1 Low Profile + 802b REACT external interrupt controller +10aa ACC Microelectronics + 0000 ACCM 2188 + 2051 2051 CPU bridge + 5842 2051 ISA bridge +10ab Digicom +10ac Honeywell IAC +10ad Symphony Labs + 0001 W83769F + 0003 SL82C103 + 0005 SL82C105 + 0103 SL82c103 + 0105 SL82c105 + 0565 W83C553F/W83C554F +10ae Cornerstone Technology +10af Micro Computer Systems Inc +10b0 CardExpert Technology +10b1 Cabletron Systems Inc +10b2 Raytheon Company +10b3 Databook Inc + 3106 DB87144 + b106 DB87144 +10b4 STB Systems Inc + 1b1d Velocity 128 3D + 10b4 237e Velocity 4400 +10b5 PLX Technology, Inc. + 0001 i960 PCI bus interface + 0557 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 Digium Tormenta 2 T400P-SS7 or E400P-SS7 Quad T1 or E1 PCI card + 1000 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 ATCOM AT400P Quad T1 PCI card + 1024 Acromag, Inc. IndustryPack Carrier Card + 1042 Brandywine / jxi2, Inc. - PMC-SyncClock32, IRIG A & B, Nasa 36 + 106a Dual OX16C952 4 port serial adapter [Megawolf Romulus/4] + 1076 VScom 800 8 port serial adaptor + 1077 VScom 400 4 port serial adaptor + 1078 VScom 210 2 port serial and 1 port parallel adaptor + 1103 VScom 200 2 port serial adaptor + 1146 VScom 010 1 port parallel adaptor + 1147 VScom 020 2 port parallel adaptor + 2000 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 ATCOM AE400P Quad E1 PCI card + 2540 IXXAT CAN-Interface PC-I 04/PCI + 2724 Thales PCSM Security Card + 3376 Cosateq 4 Port CAN Card + 4000 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 Tormenta 3 Varion V400P/ATCOM TE400P Quad E1/T1/J1 PCI card + 4001 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 ATCOM A400PE Quad E1 PCI card + 4002 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 ATCOM A400PT Quad T1 PCI card + 6140 PCI6140 32-bit 33MHz PCI-to-PCI Bridge + 6150 PCI6150 32-bit 33MHz PCI-to-PCI Bridge + 6152 PCI6152 32-bit 66MHz PCI-to-PCI Bridge + 6154 PCI6154 64-bit 66MHz PCI-to-PCI Bridge + 6254 PCI6254 64-bit 66MHz PCI-to-PCI Bridge + 6466 PCI6466 64-bit 66MHz PCI-to-PCI Bridge + 6520 PCI6520 64-bit 133MHz PCI-X-to-PCI-X Bridge + 6540 PCI6540 64-bit 133MHz PCI-X-to-PCI-X Bridge + 1775 1100 CR11 Single Board Computer + 4c53 10e0 PSL09 PrPMC + 6541 PCI6540/6466 PCI-PCI bridge (non-transparent mode, primary side) + 1775 1100 CR11 Single Board Computer + 4c53 10e0 PSL09 PrPMC + 6542 PCI6540/6466 PCI-PCI bridge (non-transparent mode, secondary side) + 1775 1100 CR11 Single Board Computer + 4c53 10e0 PSL09 PrPMC + 8111 PEX 8111 PCI Express-to-PCI Bridge + 8112 PEX8112 x1 Lane PCI Express-to-PCI Bridge + 8114 PEX 8114 PCI Express-to-PCI/PCI-X Bridge + 8311 PEX8311 x1 Lane PCI Express-to-Generic Local Bus Bridge + 8505 PEX 8505 5-lane, 5-port PCI Express Switch + 8508 PEX 8508 8-lane, 5-port PCI Express Switch + 8509 PEX 8509 8-lane, 8-port PCI Express Switch + 8512 PEX 8512 12-lane, 5-port PCI Express Switch + 8516 PEX 8516 Versatile PCI Express Switch + 8517 PEX 8517 16-lane, 5-port PCI Express Switch + 8518 PEX 8518 16-lane, 5-port PCI Express Switch + 8524 PEX 8524 24-lane, 6-port PCI Express Switch + 8525 PEX 8525 24-lane, 5-port PCI Express Switch + 8532 PEX 8532 Versatile PCI Express Switch + 8533 PEX 8533 32-lane, 6-port PCI Express Switch + 8547 PEX 8547 48-lane, 3-port PCI Express Switch + 8548 PEX 8548 48-lane, 9-port PCI Express Switch + 8603 PEX 8603 3-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8604 PEX 8604 4-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8605 PEX 8605 PCI Express 4-port Gen2 Switch + 8606 PEX 8606 6 Lane, 6 Port PCI Express Gen 2 (5.0 GT/s) Switch + 8608 PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8609 PEX 8609 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA + 8612 PEX 8612 12-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8613 PEX 8613 12-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8614 PEX 8614 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8615 PEX 8615 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA + 8616 PEX 8616 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8617 PEX 8617 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch with P2P + 8618 PEX 8618 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8619 PEX 8619 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA + 8624 PEX 8624 24-lane, 6-Port PCI Express Gen 2 (5.0 GT/s) Switch [ExpressLane] + 13a3 1845 DX1845 Acceleration Card + 8625 PEX 8625 24-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8632 PEX 8632 32-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8636 PEX 8636 36-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8647 PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8648 PEX 8648 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8649 PEX 8649 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8664 PEX 8664 64-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch + 8680 PEX 8680 80-lane, 20-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch + 8696 PEX 8696 96-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch + 8717 PEX 8717 16-lane, 8-Port PCI Express Gen 3 (8.0 GT/s) Switch with DMA + 8718 PEX 8718 16-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch + 8724 PEX 8724 24-Lane, 6-Port PCI Express Gen 3 (8 GT/s) Switch, 19 x 19mm FCBGA + 8725 PEX 8725 24-Lane, 10-Port PCI Express Gen 3 (8.0 GT/s) Multi-Root Switch with DMA + 8732 PEX 8732 32-lane, 8-Port PCI Express Gen 3 (8.0 GT/s) Switch + 8734 PEX 8734 32-lane, 8-Port PCI Express Gen 3 (8.0GT/s) Switch + 8747 PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch + 8748 PEX 8748 48-Lane, 12-Port PCI Express Gen 3 (8 GT/s) Switch, 27 x 27mm FCBGA + 8749 PEX 8749 48-Lane, 18-Port PCI Express Gen 3 (8.0 GT/s) Multi-Root Switch with DMA + 87a0 PEX PCI Express Switch NT0 Port Link Interface + 87a1 PEX PCI Express Switch NT1 Port Link Interface + 87b0 PEX PCI Express Switch NT0 Port Virtual Interface + 1093 7761 PXIe-8830mc + 87b1 PEX PCI Express Switch NT1 Port Virtual Interface + 87d0 PEX PCI Express Switch DMA interface + 9016 PLX 9016 8-port serial controller + 9030 PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 2695 Hilscher CIF50-PB/DPS Profibus + 10b5 2862 Alpermann+Velte PCL PCI LV (3V/5V): Timecode Reader Board + 10b5 2906 Alpermann+Velte PCI TS (3V/5V): Time Synchronisation Board + 10b5 2940 Alpermann+Velte PCL PCI D (3V/5V): Timecode Reader Board + 10b5 2977 IXXAT iPC-I XC16/PCI CAN Board + 10b5 2978 SH ARC-PCIu/SH ARC-PCI104/SH ARC-PCIe SOHARD ARCNET card + 10b5 3025 Alpermann+Velte PCL PCI L (3V/5V): Timecode Reader Board + 10b5 3068 Alpermann+Velte PCL PCI HD (3V/5V): Timecode Reader Board + 10b5 3463 Alpermann+Velte PCL PCI D (v2) (3V/5V): Timecode Reader Board + 10b5 3591 PLURA PCL PCI L (v2) (3.3V/5V): Time Code Reader Board + 12fe 0111 CPCI-ASIO4 (ESD 4-port Serial Interface Board) + 1369 9c01 VX222v2 + 1369 9d01 VX222-Mic + 1369 9d02 VX222-Mic + 1369 9e01 PCX924v2 + 1369 9f01 PCX924-Mic + 1369 9f02 PCX924-Mic + 1369 a001 PCX22v2 + 1369 a701 LCM220v2 + 1369 a801 LCM200 + 1397 3136 4xS0-ISDN PCI Adapter + 1397 3137 S2M-E1-ISDN PCI Adapter + 1518 0200 ThinkIO-C + 15ed 1002 MCCS 8-port Serial Hot Swap + 15ed 1003 MCCS 16-port Serial Hot Swap +# MIL-STD-1553B Board + e1c5 0001 TE1-PCI + e1c5 0005 TA1-PCI + e1c5 0006 TA1-PCI4 + 9036 9036 + 9050 PCI <-> IOBus Bridge + 10b5 1067 IXXAT CAN i165 + 10b5 114e Wasco WITIO PCI168extended + 10b5 1169 Wasco OPTOIO32standard 32 digital in, 32 digital out + 10b5 1172 IK220 (Heidenhain) + 10b5 2036 SatPak GPS + 10b5 2221 Alpermann+Velte PCL PCI LV: Timecode Reader Board + 10b5 2273 SH ARC-PCI SOHARD ARCNET card + 10b5 2431 Alpermann+Velte PCL PCI D: Timecode Reader Board + 10b5 2905 Alpermann+Velte PCI TS: Time Synchronisation Board + 10b5 3196 Goramo PLX200SYN sync serial card + 10b5 9050 PCI-I04 PCI Passive PC/CAN Interface + 12fe 0001 CAN-PCI/331 CAN bus controller + 1369 8901 PCX11+ PCI + 1369 8f01 VX222 + 1369 9401 PCX924 + 1369 9501 PCX22 + 1498 0362 TPMC866 8 Channel Serial Card + 1522 0001 RockForce 4 Port V.90 Data/Fax/Voice Modem + 1522 0002 RockForce 2 Port V.90 Data/Fax/Voice Modem + 1522 0003 RockForce 6 Port V.90 Data/Fax/Voice Modem + 1522 0004 RockForce 8 Port V.90 Data/Fax/Voice Modem + 1522 0010 RockForce2000 4 Port V.90 Data/Fax/Voice Modem + 1522 0020 RockForce2000 2 Port V.90 Data/Fax/Voice Modem + 15ed 1000 Macrolink MCCS 8-port Serial + 15ed 1001 Macrolink MCCS 16-port Serial + 15ed 1002 Macrolink MCCS 8-port Serial Hot Swap + 15ed 1003 Macrolink MCCS 16-port Serial Hot Swap + 5654 2036 OpenSwitch 6 Telephony card + 5654 3132 OpenSwitch 12 Telephony card + 5654 5634 OpenLine4 Telephony Card + d531 c002 PCIntelliCAN 2xSJA1000 CAN bus + d84d 4006 EX-4006 1P + d84d 4008 EX-4008 1P EPP/ECP + d84d 4014 EX-4014 2P + d84d 4018 EX-4018 3P EPP/ECP + d84d 4025 EX-4025 1S(16C550) RS-232 + d84d 4027 EX-4027 1S(16C650) RS-232 + d84d 4028 EX-4028 1S(16C850) RS-232 + d84d 4036 EX-4036 2S(16C650) RS-232 + d84d 4037 EX-4037 2S(16C650) RS-232 + d84d 4038 EX-4038 2S(16C850) RS-232 + d84d 4052 EX-4052 1S(16C550) RS-422/485 + d84d 4053 EX-4053 2S(16C550) RS-422/485 + d84d 4055 EX-4055 4S(16C550) RS-232 + d84d 4058 EX-4055 4S(16C650) RS-232 + d84d 4065 EX-4065 8S(16C550) RS-232 + d84d 4068 EX-4068 8S(16C650) RS-232 + d84d 4078 EX-4078 2S(16C552) RS-232+1P + 9052 PCI9052 PCI <-> IOBus Bridge + 9054 PCI9054 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 2455 Wessex Techology PHIL-PCI + 10b5 2696 Innes Corp AM Radcap card + 10b5 2717 Innes Corp Auricon card + 10b5 2844 Innes Corp TVS Encoder card + 12c7 4001 Intel Dialogic DM/V960-4T1 PCI + 12d9 0002 PCI Prosody Card rev 1.5 + 14b4 d100 Dektec DTA-100 + 14b4 d114 Dektec DTA-120 + 16df 0011 PIKA PrimeNet MM PCI + 16df 0012 PIKA PrimeNet MM cPCI 8 + 16df 0013 PIKA PrimeNet MM cPCI 8 (without CAS Signaling) + 16df 0014 PIKA PrimeNet MM cPCI 4 + 16df 0015 PIKA Daytona MM + 16df 0016 PIKA InLine MM + 9056 PCI9056 32-bit 66MHz PCI <-> IOBus Bridge + 10b5 2979 CellinkBlade 11 - CPCI board VoATM AAL1 + 10b5 3268 IXXAT iPC-I XC16/PCIe CAN Board + 10b5 3334 Cambridge Pixel HPx Radar Input Card + 10b5 3352 Alpermann+Velte PCL PCIe HD: Timecode Reader Board + 10b5 3353 Alpermann+Velte PCL PCIe D: Timecode Reader Board + 10b5 3354 Alpermann+Velte PCL PCIe LV: Timecode Reader Board + 10b5 3355 Alpermann+Velte PCL PCIe L: Timecode Reader Board + 10b5 3415 Alpermann+Velte PCIe TS: Time Synchronisation Board + 10b5 3493 Alpermann+Velte PCL PCIe 3G: Timecode Reader Board + 10b5 3565 Cambridge Pixel HPx Radar Output Card + 1369 c001 LX6464ES + 1369 c201 LX1616ES + 14b4 d10a DekTec DTA-110T + 14b4 d128 Dektec DTA-140 + 14b4 d140 Dektec DTA-140 + 1a0e 006f Dektec DTA-111 + 9060 PCI9060 32-bit 33MHz PCI <-> IOBus Bridge + 906d 9060SD + 125c 0640 Aries 16000P + 906e 9060ES + 9080 PCI9080 32-bit; 33MHz PCI <-> IOBus Bridge + 103c 10eb (Agilent) E2777B 83K Series Optical Communication Interface + 103c 10ec (Agilent) E6978-66442 PCI CIC + 10b5 1123 Sectra KK631 encryption board + 10b5 9080 9080 [real subsystem ID not set] + 12d9 0002 PCI Prosody Card + 12df 4422 4422PCI ["Do-All" Telemetry Data Acquisition System] + 1369 9601 PCX822np + 1369 a102 PCX822v2 + 1369 a201 PCX442 + 1369 a301 LCM440v2 + 1369 a401 VX822 + 1369 a402 VX822v2 + 1369 a901 LCM420 + 1369 aa01 VX820v2 + 1517 000b ECSG-1R3ADC-PMC Clock synthesizer + 9656 PCI9656 PCI <-> IOBus Bridge + 1517 000f ECDR-GC314-PMC Receiver + 1885 0700 Tsunami FPGA PMC with Altera Stratix S40 + 1885 0701 Tsunami FPGA PMC with Altera Stratix S30 + 9733 PEX 9733 33-lane, 9-port PCI Express Gen 3 (8.0 GT/s) Switch + 1d49 0001 ThinkSystem 1610-4P NVMe Switch Adapter + 1d49 0002 ThinkSystem 810-4P NVMe Switch Adapter + 9749 PEX 9749 49-lane, 13-port PCI Express Gen 3 (8.0 GT/s) Switch + 1d49 0004 ThinkSystem 1610-8P NVMe Switch Adapter + a100 Blackmagic Design DeckLink + bb04 B&B 3PCIOSD1A Isolated PCI Serial + c001 CronyxOmega-PCI (8-port RS232) + d00d PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 Digium Tormenta 2 T400P or E400P Quad T1 or E1 PCI card + d33d PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 9030 Tormenta 3 Varion V401PT Quad T1/J1 PCI card + d44d PCI9030 32-bit 33MHz PCI <-> IOBus Bridge + 10b5 17f6 Allo CP100P/E 1-port E1/T1/J1 PCI/PCIe card + 10b5 17f7 Allo CP400P/E 4-port E1/T1/J1 PCI/PCIe card + 10b5 17f8 Allo CP200P/E 2-port E1/T1/J1 PCI/PCIe card + 10b5 9030 Tormenta 3 Varion V401PE Quad E1 PCI card +10b6 Madge Networks + 0001 Smart 16/4 PCI Ringnode + 0002 Smart 16/4 PCI Ringnode Mk2 + 10b6 0002 Smart 16/4 PCI Ringnode Mk2 + 10b6 0006 16/4 CardBus Adapter + 0003 Smart 16/4 PCI Ringnode Mk3 + 0e11 b0fd Compaq NC4621 PCI, 4/16, WOL + 10b6 0003 Smart 16/4 PCI Ringnode Mk3 + 10b6 0007 Presto PCI Plus Adapter + 0004 Smart 16/4 PCI Ringnode Mk1 + 0006 16/4 Cardbus Adapter + 10b6 0006 16/4 CardBus Adapter + 0007 Presto PCI Adapter + 10b6 0007 Presto PCI + 0009 Smart 100/16/4 PCI-HS Ringnode + 10b6 0009 Smart 100/16/4 PCI-HS Ringnode + 000a Token Ring 100/16/4 Ringnode/Ringrunner + 10b6 000a Token Ring 100/16/4 Ringnode/Ringrunner + 000b 16/4 CardBus Adapter Mk2 + 10b6 0008 16/4 CardBus Adapter Mk2 + 10b6 000b 16/4 Cardbus Adapter Mk2 + 000c RapidFire 3140V2 16/4 TR Adapter + 10b6 000c RapidFire 3140V2 16/4 TR Adapter + 1000 Collage 25/155 ATM Client Adapter + 1001 Collage 155 ATM Server Adapter +10b7 3Com Corporation + 0001 3c985 1000BaseSX (SX/TX) +# wrong ID? + 9850 0001 3c985B-SX + 0013 AR5212 802.11abg NIC (3CRDAG675) + 10b7 2031 3CRDAG675 11a/b/g Wireless PCI Adapter + 0910 3C910-A01 + 1006 MINI PCI type 3B Data Fax Modem + 1007 Mini PCI 56k Winmodem + 10b7 615b Mini PCI 56K Modem + 10b7 615c Mini PCI 56K Modem + 1201 3c982-TXM 10/100baseTX Dual Port A [Hydra] + 1202 3c982-TXM 10/100baseTX Dual Port B [Hydra] + 1700 3c940 10/100/1000Base-T [Marvell] + 1043 80eb A7V600/P4P800/K8V motherboard + 10b7 0010 3C940 Gigabit LOM Ethernet Adapter + 10b7 0020 3C941 Gigabit LOM Ethernet Adapter + 147b 1407 KV8-MAX3 motherboard + 3390 3c339 TokenLink Velocity + 3590 3c359 TokenLink Velocity XL + 10b7 3590 TokenLink Velocity XL Adapter (3C359/359B) + 4500 3c450 HomePNA [Tornado] + 5055 3c555 Laptop Hurricane + 5057 3c575 Megahertz 10/100 LAN CardBus [Boomerang] + 10b7 5a57 3C575 Megahertz 10/100 LAN Cardbus PC Card + 5157 3cCFE575BT Megahertz 10/100 LAN CardBus [Cyclone] + 10b7 5b57 3C575 Megahertz 10/100 LAN Cardbus PC Card + 5257 3cCFE575CT CardBus [Cyclone] + 10b7 5c57 FE575C-3Com 10/100 LAN CardBus-Fast Ethernet + 5900 3c590 10BaseT [Vortex] + 5920 3c592 EISA 10mbps Demon/Vortex + 5950 3c595 100BaseTX [Vortex] + 5951 3c595 100BaseT4 [Vortex] + 5952 3c595 100Base-MII [Vortex] + 5970 3c597 EISA Fast Demon/Vortex + 5b57 3c595 Megahertz 10/100 LAN CardBus [Boomerang] + 10b7 5b57 3C575 Megahertz 10/100 LAN Cardbus PC Card + 6000 3CRSHPW796 [OfficeConnect Wireless CardBus] + 6001 3com 3CRWE154G72 [Office Connect Wireless LAN Adapter] + 6055 3c556 Hurricane CardBus [Cyclone] + 6056 3c556B CardBus [Tornado] + 10b7 6556 10/100 Mini PCI Ethernet Adapter + 6560 3cCFE656 CardBus [Cyclone] + 10b7 656a 3CCFEM656 10/100 LAN+56K Modem CardBus + 6561 3cCFEM656 10/100 LAN+56K Modem CardBus + 10b7 656b 3CCFEM656 10/100 LAN+56K Modem CardBus + 6562 3cCFEM656B 10/100 LAN+Winmodem CardBus [Cyclone] + 10b7 656b 3CCFEM656B 10/100 LAN+56K Modem CardBus + 6563 3cCFEM656B 10/100 LAN+56K Modem CardBus + 10b7 656b 3CCFEM656 10/100 LAN+56K Modem CardBus + 6564 3cXFEM656C 10/100 LAN+Winmodem CardBus [Tornado] + 7646 3cSOHO100-TX Hurricane + 7770 3CRWE777 PCI Wireless Adapter [Airconnect] + 7940 3c803 FDDILink UTP Controller + 7980 3c804 FDDILink SAS Controller + 7990 3c805 FDDILink DAS Controller + 80eb 3c940B 10/100/1000Base-T + 8811 Token ring + 9000 3c900 10BaseT [Boomerang] + 9001 3c900 10Mbps Combo [Boomerang] + 9004 3c900B-TPO Etherlink XL [Cyclone] + 10b7 9004 3C900B-TPO Etherlink XL TPO 10Mb + 9005 3c900B-Combo Etherlink XL [Cyclone] + 10b7 9005 3C900B-Combo Etherlink XL Combo + 9006 3c900B-TPC Etherlink XL [Cyclone] + 900a 3c900B-FL 10base-FL [Cyclone] + 9050 3c905 100BaseTX [Boomerang] + 9051 3c905 100BaseT4 [Boomerang] + 9054 3C905B-TX Fast Etherlink XL PCI + 10b7 9054 3C905B-TX Fast Etherlink XL PCI + 9055 3c905B 100BaseTX [Cyclone] + 1028 0080 3C905B Fast Etherlink XL 10/100 + 1028 0081 3C905B Fast Etherlink XL 10/100 + 1028 0082 3C905B Fast Etherlink XL 10/100 + 1028 0083 3C905B Fast Etherlink XL 10/100 + 1028 0084 3C905B Fast Etherlink XL 10/100 + 1028 0085 3C905B Fast Etherlink XL 10/100 + 1028 0086 3C905B Fast Etherlink XL 10/100 + 1028 0087 3C905B Fast Etherlink XL 10/100 + 1028 0088 3C905B Fast Etherlink XL 10/100 + 1028 0089 3C905B Fast Etherlink XL 10/100 + 1028 0090 3C905B Fast Etherlink XL 10/100 + 1028 0091 3C905B Fast Etherlink XL 10/100 + 1028 0092 3C905B Fast Etherlink XL 10/100 + 1028 0093 3C905B Fast Etherlink XL 10/100 + 1028 0094 3C905B Fast Etherlink XL 10/100 + 1028 0095 3C905B Fast Etherlink XL 10/100 + 1028 0096 3C905B Fast Etherlink XL 10/100 + 1028 0097 3C905B Fast Etherlink XL 10/100 + 1028 0098 3C905B Fast Etherlink XL 10/100 + 1028 0099 3C905B Fast Etherlink XL 10/100 + 10b7 9055 3C905B Fast Etherlink XL 10/100 + 9056 3c905B-T4 Fast EtherLink XL [Cyclone] + 9058 3c905B Deluxe Etherlink 10/100/BNC [Cyclone] + 905a 3c905B-FX Fast Etherlink XL FX 100baseFx [Cyclone] + 9200 3c905C-TX/TX-M [Tornado] + 1028 0095 3C920 Integrated Fast Ethernet Controller + 1028 0097 3C920 Integrated Fast Ethernet Controller + 1028 00b4 OptiPlex GX110 + 1028 00d8 Precision 530 + 1028 00fe Optiplex GX240 + 1028 012a 3C920 Integrated Fast Ethernet Controller [Latitude C640] + 10b7 1000 3C905CX-TX/TX-M Fast Etherlink for PC Management NIC + 10b7 7000 10/100 Mini PCI Ethernet Adapter + 10f1 2466 Tiger MPX S2466 (3C920 Integrated Fast Ethernet Controller) + 144d c005 X10 Laptop + 9201 3C920B-EMB Integrated Fast Ethernet Controller [Tornado] + 1043 80ab A7N8X Deluxe onboard 3C920B-EMB Integrated Fast Ethernet Controller + 9202 3Com 3C920B-EMB-WNM Integrated Fast Ethernet Controller + 9210 3C920B-EMB-WNM Integrated Fast Ethernet Controller + 9300 3CSOHO100B-TX 910-A01 [tulip] + 9800 3c980-TX Fast Etherlink XL Server Adapter [Cyclone] + 10b7 9800 3c980-TX Fast Etherlink XL Server Adapter + 9805 3c980-C 10/100baseTX NIC [Python-T] + 10b7 1201 EtherLink Server 10/100 Dual Port A + 10b7 1202 EtherLink Server 10/100 Dual Port B + 10b7 9805 3c980 10/100baseTX NIC [Python-T] + 10f1 2462 Thunder K7 S2462 + 9900 3C990-TX [Typhoon] + 9902 3CR990-TX-95 [Typhoon 56-bit] + 9903 3CR990-TX-97 [Typhoon 168-bit] + 9904 3C990B-TX-M/3C990BSVR [Typhoon2] + 10b7 1000 3CR990B-TX-M [Typhoon2] + 10b7 2000 3CR990BSVR [Typhoon2 Server] + 9905 3CR990-FX-95/97/95 [Typhon Fiber] + 10b7 1101 3CR990-FX-95 [Typhoon Fiber 56-bit] + 10b7 1102 3CR990-FX-97 [Typhoon Fiber 168-bit] + 10b7 2101 3CR990-FX-95 Server [Typhoon Fiber 56-bit] + 10b7 2102 3CR990-FX-97 Server [Typhoon Fiber 168-bit] + 9908 3CR990SVR95 [Typhoon Server 56-bit] + 9909 3CR990SVR97 [Typhoon Server 168-bit] + 990a 3C990SVR [Typhoon Server] + 990b 3C990SVR [Typhoon Server] +10b8 Standard Microsystems Corp [SMC] + 0005 83c170 EPIC/100 Fast Ethernet Adapter + 1055 e000 LANEPIC 10/100 [EVB171Q-PCI] + 1055 e002 LANEPIC 10/100 [EVB171G-PCI] + 10b8 a011 EtherPower II 10/100 + 10b8 a014 EtherPower II 10/100 + 10b8 a015 EtherPower II 10/100 + 10b8 a016 EtherPower II 10/100 + 10b8 a017 EtherPower II 10/100 + 0006 83c175 EPIC/100 Fast Ethernet Adapter + 1055 e100 LANEPIC Cardbus Fast Ethernet Adapter + 1055 e102 LANEPIC Cardbus Fast Ethernet Adapter + 1055 e300 LANEPIC Cardbus Fast Ethernet Adapter + 1055 e302 LANEPIC Cardbus Fast Ethernet Adapter + 10b8 a012 LANEPIC Cardbus Fast Ethernet Adapter + 13a2 8002 LANEPIC Cardbus Fast Ethernet Adapter + 13a2 8006 LANEPIC Cardbus Fast Ethernet Adapter + 1000 FDC 37c665 + 1001 FDC 37C922 + a011 83C170QF + b106 SMC34C90 +# Split off ALi Corporation in 2003 +10b9 ULi Electronics Inc. + 0101 CMI8338/C3DX PCI Audio Device + 0111 C-Media CMI8738/C3DX Audio Device (OEM) + 10b9 0111 C-Media CMI8738/C3DX Audio Device (OEM) + 0780 Multi-IO Card + 0782 Multi-IO Card + 1435 M1435 + 1445 M1445 + 1449 M1449 + 1451 M1451 + 1461 M1461 + 1489 M1489 Cache-Memory PCI Controller (CMP) [FinALi 486] CPU to PCI bridge + 1511 M1511 [Aladdin] + 1512 M1512 [Aladdin] + 1513 M1513 [Aladdin] + 1521 M1521 [Aladdin III] + 10b9 1521 ALI M1521 Aladdin III CPU Bridge + 1523 M1523 + 10b9 1523 ALI M1523 ISA Bridge + 1531 M1531 [Aladdin IV] + 1533 M1533/M1535/M1543 PCI to ISA Bridge [Aladdin IV/V/V+] + 1014 053b ThinkPad R40e + 10b9 1533 ALi M1533 Aladdin IV/V ISA Bridge + 1541 M1541 + 10b9 1541 ALI M1541 Aladdin V/V+ AGP System Controller + 1543 M1543 + 1563 M1563 HyperTransport South Bridge + 10b9 1563 ASRock 939Dual-SATA2 Motherboard + 1849 1563 ASRock 939Dual-SATA2 Motherboard + 1573 PCI to LPC Controller + 1575 M1575 South Bridge + 1621 M1621 + 1631 ALI M1631 PCI North Bridge Aladdin Pro III + 1632 M1632M Northbridge+Trident + 1641 ALI M1641 PCI North Bridge Aladdin Pro IV + 1644 M1644/M1644T Northbridge+Trident + 1646 M1646 Northbridge+Trident + 1647 M1647 Northbridge [MAGiK 1 / MobileMAGiK 1] + 1651 M1651/M1651T Northbridge [Aladdin-Pro 5/5M,Aladdin-Pro 5T/5TM] + 1671 M1671 Super P4 Northbridge [AGP4X,PCI and SDR/DDR] + 1672 M1672 Northbridge [CyberALADDiN-P4] + 1681 M1681 P4 Northbridge [AGP8X,HyperTransport and SDR/DDR] + 1687 M1687 K8 Northbridge [AGP8X and HyperTransport] + 1689 M1689 K8 Northbridge [Super K8 Single Chip] + 1695 M1695 Host Bridge + 1697 M1697 HTT Host Bridge + 3141 M3141 + 3143 M3143 + 3145 M3145 + 3147 M3147 + 3149 M3149 + 3151 M3151 + 3307 M3307 + 3309 M3309 + 3323 M3325 Video/Audio Decoder + 5212 M4803 + 5215 MS4803 + 5217 M5217H + 5219 M5219 + 5225 M5225 + 5228 M5228 ALi ATA/RAID Controller + 5229 M5229 IDE + 1014 050f ThinkPad R30 + 1014 053d ThinkPad R40e + 103c 0024 Pavilion ze4400 builtin IDE + 103c 0025 XE4500 Notebook + 1043 8053 A7A266 Motherboard IDE + 1849 5229 ASRock 939Dual-SATA2 Motherboard IDE (PATA) + 5235 M5225 + 5237 USB 1.1 Controller + 1014 0540 ThinkPad R40e + 103c 0024 Pavilion ze4400 builtin USB + 103c 0025 XE4500 Notebook + 104d 810f VAIO PCG-U1 USB/OHCI Revision 1.0 + 10b9 5237 ASRock 939Dual-SATA2 Motherboard + 1849 5237 ASRock 939Dual-SATA2 Motherboard + 5239 USB 2.0 Controller + 10b9 5239 ASRock 939Dual-SATA2 Motherboard + 1849 5239 ASRock 939Dual-SATA2 Motherboard + 5243 M1541 PCI to AGP Controller + 5246 AGP8X Controller + 5247 PCI to AGP Controller + 5249 M5249 HTT to PCI Bridge + 524b PCI Express Root Port + 524c PCI Express Root Port + 524d PCI Express Root Port + 524e PCI Express Root Port + 5251 M5251 P1394 OHCI 1.0 Controller + 5253 M5253 P1394 OHCI 1.1 Controller + 5261 M5261 Ethernet Controller + 5263 ULi 1689,1573 integrated ethernet. + 5281 ALi M5281 Serial ATA / RAID Host Controller + 5287 ULi 5287 SATA + 5288 ULi M5288 SATA + 1043 8056 A8R-MVP Mainboard + 5289 ULi 5289 SATA + 5450 Lucent Technologies Soft Modem AMR + 5451 M5451 PCI AC-Link Controller Audio Device + 1014 0506 ThinkPad R30 + 1014 053e ThinkPad R40e + 103c 0024 Pavilion ze4400 builtin Audio + 103c 0025 XE4500 Notebook + 5453 M5453 PCI AC-Link Controller Modem Device + 5455 M5455 PCI AC-Link Controller Audio Device + 10b9 5455 ASRock 939Dual-SATA2 Motherboard + 1849 0850 ASRock 939Dual-SATA2 Motherboard + 5457 M5457 AC'97 Modem Controller + 1014 0535 ThinkPad R40e + 103c 0024 Pavilion ze4400 builtin Modem Device + 103c 0025 XE4500 Notebook + 5459 SmartLink SmartPCI561 56K Modem + 545a SmartLink SmartPCI563 56K Modem + 5461 HD Audio Controller + 5471 M5471 Memory Stick Controller + 5473 M5473 SD-MMC Controller + 7101 M7101 Power Management Controller [PMU] + 1014 0510 ThinkPad R30 + 1014 053c ThinkPad R40e + 103c 0024 Pavilion ze4400 + 103c 0025 XE4500 Notebook + 1849 7101 ASRock 939Dual-SATA2 Motherboard +10ba Mitsubishi Electric Corp. + 0301 AccelGraphics AccelECLIPSE + 0304 AccelGALAXY A2100 [OEM Evans & Sutherland] + 0308 Tornado 3000 [OEM Evans & Sutherland] + 10dd 0024 Tornado 3000 + 1002 VG500 [VolumePro Volume Rendering Accelerator] +10bb Dapha Electronics Corporation +10bc Advanced Logic Research +10bd Surecom Technology + 0e34 NE-34 +10be Tseng Labs International Co. +10bf Most Inc +10c0 Boca Research Inc. +10c1 ICM Co., Ltd. +10c2 Auspex Systems Inc. +10c3 Samsung Semiconductors, Inc. +10c4 Award Software International Inc. +10c5 Xerox Corporation +10c6 Rambus Inc. +10c7 Media Vision +10c8 Neomagic Corporation + 0001 NM2070 [MagicGraph 128] + 0002 NM2090 [MagicGraph 128V] + 0003 NM2093 [MagicGraph 128ZV] + 0004 NM2160 [MagicGraph 128XD] + 1014 00ba MagicGraph 128XD + 1025 1007 MagicGraph 128XD + 1028 0074 MagicGraph 128XD + 1028 0075 MagicGraph 128XD + 1028 007d MagicGraph 128XD + 1028 007e MagicGraph 128XD + 1033 802f MagicGraph 128XD + 104d 801b MagicGraph 128XD + 104d 802f MagicGraph 128XD + 104d 830b MagicGraph 128XD + 10ba 0e00 MagicGraph 128XD + 10c8 0004 MagicGraph 128XD + 10cf 1029 MagicGraph 128XD + 10f7 8308 MagicGraph 128XD + 10f7 8309 MagicGraph 128XD + 10f7 830b MagicGraph 128XD + 10f7 830d MagicGraph 128XD + 10f7 8312 MagicGraph 128XD + 0005 NM2200 [MagicGraph 256AV] + 1014 00dd ThinkPad 570 + 1028 0088 Latitude CPi A + 0006 NM2360 [MagicMedia 256ZX] + 1014 0152 ThinkPad 600X + 0016 NM2380 [MagicMedia 256XL+] + 10c8 0016 MagicMedia 256XL+ + 0025 NM2230 [MagicGraph 256AV+] + 0083 NM2093 [MagicGraph 128ZV+] + 8005 NM2200 [MagicMedia 256AV Audio] + 0e11 b0d1 MagicMedia 256AV Audio Device on Discovery + 0e11 b126 MagicMedia 256AV Audio Device on Durango + 1014 00dd ThinkPad 390/i1720/i1721 + 1025 1003 MagicMedia 256AV Audio Device on TravelMate 720 + 1028 0088 Latitude CPi A + 1028 008f MagicMedia 256AV Audio Device on Colorado Inspiron + 103c 0007 MagicMedia 256AV Audio Device on Voyager II + 103c 0008 MagicMedia 256AV Audio Device on Voyager III + 103c 000d MagicMedia 256AV Audio Device on Omnibook 900 + 10c8 8005 MagicMedia 256AV Audio Device on FireAnt + 110a 8005 MagicMedia 256AV Audio Device + 14c0 0004 MagicMedia 256AV Audio Device + 8006 NM2360 [MagicMedia 256ZX Audio] + 8016 NM2380 [MagicMedia 256XL+ Audio] +10c9 Dataexpert Corporation +10ca Fujitsu Microelectr., Inc. +10cb Omron Corporation +# nee Mentor ARC Inc +10cc Mai Logic Incorporated + 0660 Articia S Host Bridge + 0661 Articia S PCI Bridge +10cd Advanced System Products, Inc + 1100 ASC1100 + 1200 ASC1200 [(abp940) Fast SCSI-II] + 1300 ASC1300 / ASC3030 [ABP940-U / ABP960-U / ABP3925] + 10cd 1310 ASC1300/3030 SCSI adapter + 1195 1320 Ultra-SCSI CardBus PC Card REX CB31 + 2300 ABP940-UW + 2500 ABP940-U2W + 2700 ABP3950-U3W +10ce Radius +# nee Citicorp TTI +10cf Fujitsu Limited. + 01ef PCEA4 PCI-Express Dual Port ESCON Adapter + 1414 On-board USB 1.1 companion controller + 1415 On-board USB 2.0 EHCI controller + 1422 E8410 nVidia graphics adapter + 142d HD audio (Realtek ALC262) + 1430 82566MM Intel 1Gb copper LAN interface + 1623 PCEA4 PCI-Express Dual Port ESCON Adapter + 2001 mb86605 + 200c MB86613L IEEE1394 OHCI 1.0 Controller + 2010 MB86613S IEEE1394 OHCI 1.1 Controller + 2019 MB86295S [CORAL P] + 201e MB86296S [CORAL PA] + 202b MB86297A [Carmine Graphics Controller] +10d1 FuturePlus Systems Corp. +10d2 Molex Incorporated +10d3 Jabil Circuit Inc +10d4 Hualon Microelectronics +10d5 Autologic Inc. +10d6 Cetia +10d7 BCM Advanced Research +10d8 Advanced Peripherals Labs +10d9 Macronix, Inc. [MXIC] + 0431 MX98715 + 0512 MX98713 + 0531 MX987x5 + 1186 1200 DFE-540TX ProFAST 10/100 Adapter + 8625 MX86250 + 8626 Macronix MX86251 + 3Dfx Voodoo Rush + 8888 MX86200 +10da Compaq IPG-Austin + 0508 TC4048 Token Ring 4/16 + 3390 Tl3c3x9 +10db Rohm LSI Systems, Inc. +10dc CERN/ECP/EDU + 0001 STAR/RD24 SCI-PCI (PMC) + 0002 TAR/RD24 SCI-PCI (PMC) + 0021 HIPPI destination + 0022 HIPPI source + 10dc ATT2C15-3 FPGA +10dd Evans & Sutherland + 0100 Lightning 1200 + 10dd 0023 Lightning 1200 15+16M +10de NVIDIA Corporation + 0008 NV1 [STG2000X-B Series] + 0009 NV1 [NV1 Series] + 0018 NV3 [Riva 128] + 0019 NV3 [Riva 128ZX] + 0020 NV4 [Riva TNT] + 1043 0200 V3400 TNT + 1048 0c18 Erazor II SGRAM + 1048 0c19 Erazor II + 1048 0c1b Erazor II + 1048 0c1c Erazor II + 1092 0550 Viper V550 + 1092 0552 Viper V550 + 1092 4804 Viper V550 + 1092 4808 Viper V550 + 1092 4810 Viper V550 + 1092 4812 Viper V550 + 1092 4815 Viper V550 + 1092 4820 Viper V550 with TV out + 1092 4822 Viper V550 + 1092 4904 Viper V550 + 1092 4914 Viper V550 + 1092 8225 Viper V550 + 10b4 273d Velocity 4400 + 10b4 273e Velocity 4400 + 10b4 2740 Velocity 4400 + 10de 0020 Riva TNT + 1102 1015 Graphics Blaster CT6710 + 1102 1016 Graphics Blaster RIVA TNT + 0028 NV5 [Riva TNT2 / TNT2 Pro] + 1043 0200 AGP-V3800 SGRAM + 1043 0201 AGP-V3800 SDRAM + 1043 0205 PCI-V3800 + 1043 4000 AGP-V3800PRO + 1048 0c21 Synergy II + 1048 0c28 Erazor III + 1048 0c29 Erazor III + 1048 0c2a Erazor III + 1048 0c2b Erazor III + 1048 0c31 Erazor III Pro + 1048 0c32 Erazor III Pro + 1048 0c33 Erazor III Pro + 1048 0c34 Erazor III Pro + 107d 2134 WinFast 3D S320 II + TV-Out + 1092 4804 Viper V770 + 1092 4a00 Viper V770 + 1092 4a02 Viper V770 Ultra + 1092 5a00 RIVA TNT2/TNT2 Pro + 1092 5a40 Viper V770D AGP + 1092 6a02 Viper V770 Ultra + 1092 7a02 Viper V770 Ultra + 10de 0005 RIVA TNT2 Pro + 10de 000f Compaq NVIDIA TNT2 Pro + 1102 1020 3D Blaster RIVA TNT2 + 1102 1026 3D Blaster RIVA TNT2 Digital + 1462 8806 MS-8806 AGPhantom Graphics Card + 14af 5810 Maxi Gamer Xentor + 0029 NV5 [Riva TNT2 Ultra] + 1043 0200 AGP-V3800 Deluxe + 1043 0201 AGP-V3800 Ultra SDRAM + 1043 0205 PCI-V3800 Ultra + 1048 0c2e Erazor III Ultra + 1048 0c2f Erazor III Ultra + 1048 0c30 Erazor III Ultra + 1102 1021 3D Blaster RIVA TNT2 Ultra + 1102 1029 3D Blaster RIVA TNT2 Ultra + 1102 102f 3D Blaster RIVA TNT2 Ultra + 14af 5820 Maxi Gamer Xentor 32 + 4843 4f34 Dynamite + 002a NV5 [Riva TNT2] + 002b NV5 [Riva TNT2] + 002c NV5 [Vanta / Vanta LT] + 1043 0200 AGP-V3800 Combat SDRAM + 1043 0201 AGP-V3800 Combat + 1048 0c20 TNT2 Vanta + 1048 0c21 TNT2 Vanta + 1048 0c25 TNT2 Vanta 16MB + 1092 6820 Viper V730 + 1102 1031 CT6938 VANTA 8MB + 1102 1034 CT6894 VANTA 16MB + 14af 5008 Maxi Gamer Phoenix 2 + 002d NV5 [Riva TNT2 Model 64 / Model 64 Pro] + 1043 0200 AGP-V3800M + 1043 0201 AGP-V3800M + 1048 0c3a Erazor III LT + 1048 0c3b Erazor III LT + 107d 2137 WinFast 3D S325 + 10de 0006 RIVA TNT2 Model 64/Model 64 Pro + 10de 001e M64 AGP4x + 1102 1023 CT6892 RIVA TNT2 Value + 1102 1024 CT6932 RIVA TNT2 Value 32Mb + 1102 102c CT6931 RIVA TNT2 Value [Jumper] + 1102 1030 CT6931 RIVA TNT2 Value +# S26361-D1243-V116 + 110a 006f GM1000-16 +# S26361-D1243-V216 + 110a 0081 GM1000-16 + 1462 8808 MSI-8808 + 14af 5620 Gamer Cougar Video Edition + 1554 1041 Pixelview RIVA TNT2 M64 + 1569 002d Palit Microsystems Daytona TNT2 M64 + 0034 MCP04 SMBus + 0035 MCP04 IDE + 0036 MCP04 Serial ATA Controller + 0037 MCP04 Ethernet Controller + 0038 MCP04 Ethernet Controller + 003a MCP04 AC'97 Audio Controller + 003b MCP04 USB Controller + 003c MCP04 USB Controller + 003d MCP04 PCI Bridge + 003e MCP04 Serial ATA Controller + 0040 NV40 [GeForce 6800 Ultra] + 0041 NV40 [GeForce 6800] + 1043 817b V9999 Gamer Edition + 107d 2992 WinFast A400 + 1458 310f Geforce 6800 GV-N6812 + 0042 NV40 [GeForce 6800 LE] + 107d 299b WinFast A400 LE + 0043 NV40 [GeForce 6800 XE] + 0044 NV40 [GeForce 6800 XT] + 0045 NV40 [GeForce 6800 GT] + 1043 817d V9999GT + 1458 3140 GV-N68T256D + 0047 NV40 [GeForce 6800 GS] + 1682 2109 GeForce 6800 GS + 0048 NV40 [GeForce 6800 XT] + 004e NV40GL [Quadro FX 4000] + 0050 CK804 ISA Bridge + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 0c11 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 0051 CK804 ISA Bridge + 1028 0225 PowerEdge T105 ISA Bridge + 0052 CK804 SMBus + 1028 0225 PowerEdge T105 SMBus + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 0c11 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 0053 CK804 IDE + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 5002 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 0054 CK804 Serial ATA Controller + 1028 0225 PowerEdge T105 Serial ATA + 1043 815a A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 b003 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 5401 NF4 AM2L Mainboard + 0055 CK804 Serial ATA Controller + 1028 0225 PowerEdge T105 Serial ATA + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 b003 GA-K8N Ultra-9 Mainboard + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 5401 NF4 AM2L Mainboard + 0056 CK804 Ethernet Controller + 0057 CK804 Ethernet Controller + 1043 8141 K8N4/A8N Series Mainboard + 10de cb84 NF4 Lanparty + 10f1 2865 Tomcat K8E (S2865) + 1458 e000 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 2501 NF4 AM2L Mainboard + 0058 CK804 AC'97 Modem + 0059 CK804 AC'97 Audio Controller + 1043 812a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1462 7585 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 8211 NF4 AM2L Mainboard + 005a CK804 USB Controller + 1028 0225 PowerEdge T105 onboard USB + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 5004 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 005b CK804 USB Controller + 1028 0225 PowerEdge T105 onboard USB + 1043 815a K8N4/A8N Series Mainboard + 10f1 2865 Tomcat K8E (S2865) + 1458 5004 GA-K8N Ultra-9 Mainboard + 1462 7100 MSI K8N Diamond + 1462 7125 K8N Neo4-F mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 005c CK804 PCI Bridge + 005d CK804 PCIE Bridge + 005e CK804 Memory Controller + 1028 0225 PowerEdge T105 Memory Controller + 1043 815a A8N Series Mainboard + 10de 005e ECS Elitegroup NFORCE3-A939 motherboard. + 10f1 2865 Tomcat K8E (S2865) + 10f1 2891 Thunder K8SRE Mainboard + 1458 5000 GA-K8N Ultra-9 Mainboard + 1462 7100 K8N Diamond Mainboard + 1462 7125 K8N Neo4-F Mainboard + 147b 1c1a KN8-Ultra Mainboard + 1565 3402 NF4 AM2L Mainboard + 005f CK804 Memory Controller + 0060 nForce2 ISA Bridge + 1043 80ad A7N8X Mainboard + 147b 1c02 NF7-S/NF7 (nVidia-nForce2) 2.X + a0a0 03ba UK79G-1394 motherboard + 0064 nForce2 SMBus (MCP) + 147b 1c02 NF7-S/NF7 (nVidia-nForce2) 2.X + a0a0 03bb UK79G-1394 motherboard + 0065 nForce2 IDE + 10de 0c11 nForce 2 EIDE Controller + a0a0 03b2 UK79G-1394 motherboard + 0066 nForce2 Ethernet Controller + 1043 80a7 A7N8X Mainboard onboard nForce2 Ethernet + 10de 0c11 nForce MCP-T Networking Adapter + a0a0 03b3 UK79G-1394 motherboard + 0067 nForce2 USB Controller + 1043 0c11 A7N8X Mainboard + a0a0 03b4 UK79G-1394 motherboard + 0068 nForce2 USB Controller + 1043 0c11 A7N8X Mainboard + a0a0 03b4 UK79G-1394 motherboard + 006a nForce2 AC97 Audio Controler (MCP) + 1043 8095 nForce2 AC97 Audio Controller (MCP) + a0a0 0304 UK79G-1394 motherboard + 006b nForce Audio Processing Unit + 10de 006b nForce2 MCP Audio Processing Unit + a0a0 0304 UK79G-1394 motherboard + 006c nForce2 External PCI Bridge + 006d nForce2 PCI Bridge + 006e nForce2 FireWire (IEEE 1394) Controller + a0a0 0306 UK79G-1394 motherboard + 0080 MCP2A ISA bridge + 147b 1c09 NV7 Motherboard + 0084 MCP2A SMBus + 147b 1c09 NV7 Motherboard + 0085 MCP2A IDE + 147b 1c09 NV7 Motherboard + 0086 MCP2A Ethernet Controller + 0087 MCP2A USB Controller + 147b 1c09 NV7 Motherboard + 0088 MCP2A USB Controller + 147b 1c09 NV7 Motherboard + 008a MCP2S AC'97 Audio Controller + 147b 1c09 NV7 Motherboard + 008b MCP2A PCI Bridge + 008c MCP2A Ethernet Controller + 008e nForce2 Serial ATA Controller + 0090 G70 [GeForce 7800 GTX] + 0091 G70 [GeForce 7800 GTX] + 0092 G70 [GeForce 7800 GT] + 0093 G70 [GeForce 7800 GS] + 0095 G70 [GeForce 7800 SLI] + 0097 G70 [GeForce GTS 250] + 0098 G70M [GeForce Go 7800] + 0099 G70M [GeForce Go 7800 GTX] + 009d G70GL [Quadro FX 4500] + 00a0 NV0A [Aladdin TNT2 IGP] + 14af 5810 Maxi Gamer Xentor + 00c0 NV41 [GeForce 6800 GS] + 00c1 NV41 [GeForce 6800] + 00c2 NV41 [GeForce 6800 LE] + 00c3 NV41 [GeForce 6800 XT] + 00c5 NV41 + 00c6 NV41 + 00c7 NV41 + 00c8 NV41M [GeForce Go 6800] + 00c9 NV41M [GeForce Go 6800 Ultra] + 00cc NV41GLM [Quadro FX Go1400] + 00cd NV42GL [Quadro FX 3450/4000 SDI] + 10de 029b Quadro FX 3450 + 00ce NV41GL [Quadro FX 1400] + 00cf NV41 + 00d0 nForce3 LPC Bridge + 00d1 nForce3 Host Bridge + 00d2 nForce3 AGP Bridge + 00d3 CK804 Memory Controller + 00d4 nForce3 SMBus + 00d5 nForce3 IDE + 00d6 nForce3 Ethernet + 00d7 nForce3 USB 1.1 + 00d8 nForce3 USB 2.0 + 00d9 nForce3 Audio + 00da nForce3 Audio + 00dd nForce3 PCI Bridge + 00df CK8S Ethernet Controller + 1043 80a7 K8N-E + 105b 0c43 Winfast NF3250K8AA + 147b 1c0b NF8 Mainboard + 00e0 nForce3 250Gb LPC Bridge + 1043 813f K8N-E + 10de 0c11 Winfast NF3250K8AA + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e0 Motherboard (one of many) + 00e1 nForce3 250Gb Host Bridge + 1043 813f K8N-E + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e1 Motherboard (one of many) + 00e2 nForce3 250Gb AGP Host to PCI Bridge + 00e3 nForce3 Serial ATA Controller + 1043 813f K8N-E + 105b 0c43 Winfast NF3250K8AA + 147b 1c0b NF8 Mainboard + 1849 00e3 Motherboard (one of many) + 00e4 nForce 250Gb PCI System Management + 1043 813f K8N-E + 105b 0c43 Winfast NF3250K8AA + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e4 Motherboard (one of many) + 00e5 CK8S Parallel ATA Controller (v2.5) + 1043 813f K8N-E + 105b 0c43 Winfast NF3250K8AA + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e5 Motherboard (one of many) + f849 00e5 Motherboard (one of many) + 00e6 CK8S Ethernet Controller + 00e7 CK8S USB Controller + 1043 813f K8N-E + 105b 0c43 Winfast NF3250K8AA + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e7 Motherboard (one of many) + 00e8 nForce3 EHCI USB 2.0 Controller + 1043 813f K8N-E + 105b 0c43 Winfast NF3250K8AA + 1462 7030 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 1849 00e8 Motherboard (one of many) + 00ea nForce3 250Gb AC'97 Audio Controller + 1043 819d K8N-E + 105b 0c43 Winfast NF3250K8AA + 1462 b010 K8N Neo-FSR v2.0 + 147b 1c0b NF8 Mainboard + 00ed nForce3 250Gb PCI-to-PCI Bridge + 00ee nForce3 Serial ATA Controller 2 + 00f1 NV43 [GeForce 6600 GT] + 1043 81a6 N6600GT TD 128M AGP + 1043 81c6 N6600GT TD 128M AGP + 1458 3150 GV-N66T128VP + 1554 1191 PixelView PV-N43UA (128KD) + 1682 2119 GeForce 6600 GT AGP + 00f2 NV43 [GeForce 6600] + 1554 1194 PixelView PV-N43AT (256KD) + 1682 211c GeForce 6600 256MB DDR DUAL DVI TV + 00f3 NV43 [GeForce 6200] + 00f4 NV43 [GeForce 6600 LE] + 00f5 G70/G71 [GeForce 7800 GS AGP] + 00f6 NV43 [GeForce 6800 GS/XT] + 1682 217e XFX GeForce 6800 XTreme 256MB DDR3 AGP + 00f8 NV45GL [Quadro FX 3400/4400] + 00f9 NV40 [GeForce 6800 GT/GTO/Ultra] + 10de 00f9 NV40 [GeForce 6800 GT] + 1682 2120 GEFORCE 6800 GT PCI-E + 00fa NV39 [GeForce PCX 5750] + 00fb NV35 [GeForce PCX 5900] + 00fc NV37GL [Quadro FX 330/GeForce PCX 5300] + 00fd NV37GL [Quadro PCI-E Series] + 00fe NV38GL [Quadro FX 1300] + 00ff NV19 [GeForce PCX 4300] + 0100 NV10 [GeForce 256 SDR] + 1043 0200 AGP-V6600 SGRAM + 1043 0201 AGP-V6600 SDRAM + 1043 4008 AGP-V6600 SGRAM + 1043 4009 AGP-V6600 SDRAM + 1048 0c41 Erazor X + 1048 0c43 ERAZOR X PCI + 1048 0c48 Synergy Force + 1102 102d CT6941 GeForce 256 + 14af 5022 3D Prophet SE + 0101 NV10 [GeForce 256 DDR] + 1043 0202 AGP-V6800 DDR + 1043 400a AGP-V6800 DDR SGRAM + 1043 400b AGP-V6800 DDR SDRAM + 1048 0c42 Erazor X + 107d 2822 WinFast GeForce 256 + 1102 102e CT6970/CT6971 + 14af 5021 3D Prophet DDR-DVI + 0103 NV10GL [Quadro] + 1048 0c40 GLoria II-64 + 1048 0c44 GLoria II + 1048 0c45 GLoria II + 1048 0c4a GLoria II-64 Pro + 1048 0c4b GLoria II-64 Pro DVII + 10a9 9002 VPro VR3 + 0110 NV11 [GeForce2 MX/MX 400] + 1043 4015 AGP-V7100 Pro + 1043 4021 V7100 Deluxe Combo + 1043 4031 V7100 Pro with TV output + 1048 0c60 Gladiac MX + 1048 0c61 Gladiac 511PCI + 1048 0c63 Gladiac 511TV-OUT 32MB + 1048 0c64 Gladiac 511TV-OUT 64MB + 1048 0c65 Gladiac 511TWIN + 1048 0c66 Gladiac 311 + 10b0 0001 GeForce2 MX Jumbo TV + 10de 0091 Dell OEM GeForce 2 MX 400 + 10de 00a1 Apple OEM GeForce2 MX + 1462 8523 MS-8852 + 1462 8817 MSI GeForce2 MX400 Pro32S [MS-8817] + 14af 7102 3D Prophet II MX + 14af 7103 3D Prophet II MX Dual-Display + 1545 0023 Xtasy Rev. B2 + 1554 1081 MVGA-NVG11AM(400) + 0111 NV11 [GeForce2 MX200] + 0112 NV11M [GeForce2 Go] + 0113 NV11GL [Quadro2 MXR/EX/Go] + 1028 00e5 Quadro2 Go + 0140 NV43 [GeForce 6600 GT] + 1458 3125 GV-NX66T128D + 1458 3126 GV-NX66T256DE + 1462 8939 MS-8983 + 0141 NV43 [GeForce 6600] + 1043 81b0 EN6600 Silencer + 107d 593a LR2A22 128MB TV OUT + 107d 597b WINFAST PX6600 + 1458 3124 GV-NX66128DP Turbo Force Edition + 0142 NV43 [GeForce 6600 LE] + 0143 NV43 [GeForce 6600 VE] + 0144 NV43M [GeForce Go 6600] + 0145 NV43 [GeForce 6610 XL] + 0146 NV43M [GeForce Go6200 TE / 6600 TE] + 0147 NV43 [GeForce 6700 XL] + 0148 NV43M [GeForce Go 6600] + 0149 NV43M [GeForce Go 6600 GT] + 014a NV43 [Quadro NVS 440] + 014b NV43 + 014d NV43GL [Quadro FX 550] + 014e NV43GL [Quadro FX 540] + 014f NV43 [GeForce 6200] + 0150 NV15 [GeForce2 GTS/Pro] + 1043 4016 V7700 AGP Video Card + 1043 402a AGP-V7700 + 1048 0c50 Gladiac + 1048 0c52 Gladiac-64 + 107d 2840 WinFast GeForce2 GTS with TV output + 107d 2842 WinFast GeForce 2 Pro + 10de 002e GeForce2 GTS + 1462 815a MS-8815 + 1462 8831 Creative GeForce2 Pro + 0151 NV15 [GeForce2 Ti] + 1043 405f V7700Ti + 1462 5506 Creative 3D Blaster GeForce2 Titanium + 1462 8364 MS-8836 + 0152 NV15 [GeForce2 Ultra] + 1048 0c56 GLADIAC Ultra + 0153 NV15GL [Quadro2 Pro] + 0160 NV44 [GeForce 6500] + 0161 NV44 [GeForce 6200 TurboCache] + 0162 NV44 [GeForce 6200 SE TurboCache] + 0163 NV44 [GeForce 6200 LE] + 0164 NV44M [GeForce Go 6200] + 0165 NV44 [Quadro NVS 285] + 0166 NV44M [GeForce Go 6400] + 0167 NV44M [GeForce Go 6200] + 0168 NV44M [GeForce Go 6400] + 0169 NV44 [GeForce 6250] + 016a NV44 [GeForce 7100 GS] + 016d NV44 + 016e NV44 + 016f NV44 + 0170 NV17 [GeForce4 MX 460] + 1462 8630 MS-8863 + 0171 NV17 [GeForce4 MX 440] + 10b0 0002 Gainward Pro/600 TV + 10de 0008 Apple OEM GeForce4 MX 440 + 1462 8661 G4MX440-VTP + 1462 8730 MX440SES-T (MS-8873) + 1462 8743 MS-8874 + 1462 8852 GeForce4 MX440 PCI + 147b 8f00 Abit Siluro GeForce4MX440 + 0172 NV17 [GeForce4 MX 420] + 1462 8730 MS-8873 + 1462 8784 MS-8878 + 0173 NV17 [GeForce4 MX 440-SE] + 0174 NV17M [GeForce4 440 Go] + 0175 NV17M [GeForce4 420 Go] + 0176 NV17M [GeForce4 420 Go 32M] + 103c 08b0 tc1100 tablet + 144d c005 X10 Laptop + 4c53 1090 Cx9 / Vx9 mainboard + 0177 NV17M [GeForce4 460 Go] + 0178 NV17GL [Quadro4 550 XGL] + 0179 NV17M [GeForce4 440 Go 64M] + 10de 0179 GeForce4 MX (Mac) + 017a NV17GL [Quadro NVS] + 017b NV17GL [Quadro4 550 XGL] + 017c NV17GL [Quadro4 500 GoGL] + 017f NV17 + 0181 NV18 [GeForce4 MX 440 AGP 8x] + 1043 8063 GeForce4 MX 440 AGP 8X + 1043 806f V9180 Magic + 1462 8880 MS-StarForce GeForce4 MX 440 with AGP8X + 1462 8900 MS-8890 GeForce 4 MX440 AGP8X + 1462 9350 MSI GeForce4 MX T8X with AGP8X + 147b 8f0d Siluro GF4 MX-8X + 1554 1111 PixelView MVGA-NVG18A + 0182 NV18 [GeForce4 MX 440SE AGP 8x] + 0183 NV18 [GeForce4 MX 420 AGP 8x] + 0184 NV18 [GeForce4 MX] + 0185 NV18 [GeForce4 MX 4000] + 0186 NV18M [GeForce4 448 Go] + 0187 NV18M [GeForce4 488 Go] + 0188 NV18GL [Quadro4 580 XGL] + 0189 NV18 [GeForce4 MX with AGP8X (Mac)] + 018a NV18GL [Quadro NVS 280 SD] + 018b NV18GL [Quadro4 380 XGL] + 018c NV18GL [Quadro NVS 50 PCI] + 018d NV18M [GeForce4 448 Go] + 0190 G80 [GeForce 8800 GTS / 8800 GTX] + 0191 G80 [GeForce 8800 GTX] + 0192 G80 [GeForce 8800 GTS] + 0193 G80 [GeForce 8800 GTS] + 107d 20bd WinFast PX 8800 GTS TDH + 0194 G80 [GeForce 8800 Ultra] + 0197 G80GL [Tesla C870] + 019d G80GL [Quadro FX 5600] + 019e G80GL [Quadro FX 4600] + 01a0 nForce 220/420 NV1A [GeForce2 MX] + 01a4 nForce CPU bridge + 01ab nForce 420 Memory Controller (DDR) + 01ac nForce 220/420 Memory Controller + 01ad nForce 220/420 Memory Controller + 01b0 nForce Audio Processing Unit + 01b1 nForce AC'97 Audio Controller + 01b2 nForce ISA Bridge + 01b4 nForce PCI System Management + 01b7 nForce AGP to PCI Bridge + 01b8 nForce PCI-to-PCI bridge + 01bc nForce IDE + 01c1 nForce AC'97 Modem Controller + 01c2 nForce USB Controller + 01c3 nForce Ethernet Controller + 01d0 G72 [GeForce 7350 LE] + 01d1 G72 [GeForce 7300 LE] + 107d 5efa WinFast PX7300LE-TD128 + 107d 5efb WinFast PX7300LE-TD256 + 1462 0345 7300LE PCI Express Graphics Adapter + 01d2 G72 [GeForce 7550 LE] + 01d3 G72 [GeForce 7200 GS / 7300 SE] + 1043 8203 EN7300SE + 1043 8250 EN7200GS + 01d5 G72 + 01d6 G72M [GeForce Go 7200] + 01d7 G72M [Quadro NVS 110M/GeForce Go 7300] + 01d8 G72M [GeForce Go 7400] + 1028 01d7 XPS M1210 + 01d9 G72M [GeForce Go 7450] + 01da G72M [Quadro NVS 110M] + 01db G72M [Quadro NVS 120M] + 01dc G72GLM [Quadro FX 350M] + 01dd G72 [GeForce 7500 LE] + 01de G72GL [Quadro FX 350] + 10de 01dc Quadro FX Go350M + 01df G72 [GeForce 7300 GS] + 01e0 nForce2 IGP2 + 147b 1c09 NV7 Motherboard + 01e8 nForce2 AGP + 01ea nForce2 Memory Controller 0 + a0a0 03b9 UK79G-1394 motherboard + 01eb nForce2 Memory Controller 1 + a0a0 03b9 UK79G-1394 motherboard + 01ec nForce2 Memory Controller 2 + a0a0 03b9 UK79G-1394 motherboard + 01ed nForce2 Memory Controller 3 + a0a0 03b9 UK79G-1394 motherboard + 01ee nForce2 Memory Controller 4 + 10de 01ee MSI Delta-L nForce2 memory controller + a0a0 03b9 UK79G-1394 motherboard + 01ef nForce2 Memory Controller 5 + a0a0 03b9 UK79G-1394 motherboard + 01f0 NV1F C17 [GeForce4 MX IGP] + a0a0 03b5 UK79G-1394 motherboard + 0200 NV20 [GeForce3] + 1043 402f AGP-V8200 DDR + 1048 0c70 GLADIAC 920 + 0201 NV20 [GeForce3 Ti 200] + 0202 NV20 [GeForce3 Ti 500] + 1043 405b V8200 T5 + 1545 002f Xtasy 6964 + 0203 NV20GL [Quadro DCC] + 0211 NV48 [GeForce 6800] + 0212 NV48 [GeForce 6800 LE] + 0215 NV48 [GeForce 6800 GT] + 0218 NV48 [GeForce 6800 XT] + 0221 NV44A [GeForce 6200] + 1043 81e1 N6200/TD/256M/A + 3842 a341 256A8N341DX + 0222 NV44 [GeForce 6200 A-LE] + 0224 NV44 + 0240 C51PV [GeForce 6150] + 1043 81cd A8N-VM CSM + 1462 7207 K8NGM2 series + 0241 C51 [GeForce 6150 LE] + 0242 C51G [GeForce 6100] + 105b 0cad Winfast 6100K8MB + 0243 C51 PCI Express Bridge + 0244 C51 [GeForce Go 6150] + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 10de 0244 GeForce Go 6150 + 0245 C51 [Quadro NVS 210S/GeForce 6150LE] + 0246 C51 PCI Express Bridge + 0247 C51 [GeForce Go 6100] + 1043 1382 MCP51 PCI-X GeForce Go 6100 + 0248 C51 PCI Express Bridge + 0249 C51 PCI Express Bridge + 024a C51 PCI Express Bridge + 024b C51 PCI Express Bridge + 024c C51 PCI Express Bridge + 024d C51 PCI Express Bridge + 024e C51 PCI Express Bridge + 024f C51 PCI Express Bridge + 0250 NV25 [GeForce4 Ti 4600] + 0251 NV25 [GeForce4 Ti 4400] + 1043 8023 v8440 GeForce 4 Ti4400 + 10de 0251 PNY GeForce4 Ti 4400 + 1462 8710 PNY GeForce4 Ti 4400 + 0252 NV25 [GeForce4 Ti] + 0253 NV25 [GeForce4 Ti 4200] + 107d 2896 WinFast A250 LE TD (Dual VGA/TV-out/DVI) + 147b 8f09 Siluro (Dual VGA/TV-out/DVI) + 0258 NV25GL [Quadro4 900 XGL] + 0259 NV25GL [Quadro4 750 XGL] + 025b NV25GL [Quadro4 700 XGL] + 0260 MCP51 LPC Bridge + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 1458 5001 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 0261 MCP51 LPC Bridge + 105b 0cad Winfast 6100K8MB + 0262 MCP51 LPC Bridge + 0263 MCP51 LPC Bridge + 0264 MCP51 SMBus + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 105b 0cad Winfast 6100K8MB + 1462 7207 K8NGM2 series + 0265 MCP51 IDE + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series +# Foxconn has used a wrong vendor ID for this one + f05b 0cad Winfast 6100K8MB + 0266 MCP51 Serial ATA Controller + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series + 0267 MCP51 Serial ATA Controller + 103c 2a34 Pavilion a1677c + 1043 81bc A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series + 0268 MCP51 Ethernet Controller + 0269 MCP51 Ethernet Controller + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 8141 A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series + 026a MCP51 MCI + 026b MCP51 AC97 Audio Controller + 105b 0cad Winfast 6100K8MB + 026c MCP51 High Definition Audio + 103c 2a34 Pavilion a1677c + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 10de cb84 ASUSTeK Computer Inc. A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series + 026d MCP51 USB Controller + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 105b 0cad Winfast 6100K8MB + 1462 7207 K8NGM2 series + 026e MCP51 USB Controller + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 105b 0cad Winfast 6100K8MB + 1462 7207 K8NGM2 series + 026f MCP51 PCI Bridge + 103c 30b7 Presario V6133CL + 0270 MCP51 Host Bridge + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81bc A8N-VM CSM Mainboard + 105b 0cad Winfast 6100K8MB + 1458 5001 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 0271 MCP51 PMU + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 0272 MCP51 Memory Controller 0 + 103c 2a34 Pavilion a1677c + 105b 0cad Winfast 6100K8MB + 027e C51 Memory Controller 2 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 027f C51 Memory Controller 3 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 0280 NV28 [GeForce4 Ti 4800] + 0281 NV28 [GeForce4 Ti 4200 AGP 8x] + 0282 NV28 [GeForce4 Ti 4800 SE] + 0286 NV28M [GeForce4 Ti 4200 Go AGP 8x] + 0288 NV28GL [Quadro4 980 XGL] + 0289 NV28GL [Quadro4 780 XGL] + 028c NV28GLM [Quadro4 Go700] + 0290 G71 [GeForce 7900 GTX] + 0291 G71 [GeForce 7900 GT/GTO] + 10de 042b NX7900GTO-T2D512E [7900 GTO] + 0292 G71 [GeForce 7900 GS] + 0293 G71 [GeForce 7900 GX2] + 0294 G71 [GeForce 7950 GX2] + 0295 G71 [GeForce 7950 GT] + 1043 8225 GeForce 7950 GT + 107d 2a68 WinFast PX7950GT TDH + 1462 0663 NX7950GT-VT2D512EZ-HD + 0297 G71M [GeForce Go 7950 GTX] + 0298 G71M [GeForce Go 7900 GS] + 0299 G71M [GeForce Go 7900 GTX] + 029a G71GLM [Quadro FX 2500M] + 029b G71GLM [Quadro FX 1500M] + 029c G71GL [Quadro FX 5500] + 029d G71GL [Quadro FX 3500] + 1028 019b G71GLM [Quadro FX 3500M] + 029e G71GL [Quadro FX 1500] + 029f G71GL [Quadro FX 4500 X2] +# Xbox Graphics Processing Unit (Integrated). GeForce3 derivative (NV20 < NV2A < NV25). + 02a0 NV2A [XGPU] + 02a5 MCPX CPU Bridge + 02a6 MCPX Memory Controller + 02e0 G73 [GeForce 7600 GT AGP] + 02e0 2249 GF 7600GT 560M 256MB DDR3 DUAL DVI TV + 02e1 G73 [GeForce 7600 GS AGP] + 1682 222b PV-T73K-UAL3 (256MB) + 1682 2247 GF 7600GS 512MB DDR2 + 02e2 G73 [GeForce 7300 GT AGP] + 02e3 G71 [GeForce 7900 GS AGP] + 02e4 G71 [GeForce 7950 GT AGP] + 1682 2271 PV-T71A-YDF7 (512MB) + 02e5 G71 [GeForce 7600 GS AGP] + 02f0 C51 Host Bridge + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1462 7207 K8NGM2 series + 02f1 C51 Host Bridge + 1458 5000 GA-M55plus-S3G + 02f2 C51 Host Bridge + 02f3 C51 Host Bridge + 02f4 C51 Host Bridge + 02f5 C51 Host Bridge + 02f6 C51 Host Bridge + 02f7 C51 Host Bridge + 02f8 C51 Memory Controller 5 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 02f9 C51 Memory Controller 4 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 02fa C51 Memory Controller 0 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 02fb C51 PCI Express Bridge + 02fc C51 PCI Express Bridge + 103c 30b7 Presario V6133CL + 02fd C51 PCI Express Bridge + 103c 30b7 Presario V6133CL + 02fe C51 Memory Controller 1 + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 02ff C51 Host Bridge + 103c 2a34 Pavilion a1677c + 103c 30b7 Presario V6133CL + 1043 81cd A8N-VM CSM Mainboard + 1458 5000 GA-M55plus-S3G + 1462 7207 K8NGM2 series + 0300 NV30 [GeForce FX] + 0301 NV30 [GeForce FX 5800 Ultra] + 0302 NV30 [GeForce FX 5800] + 0308 NV30GL [Quadro FX 2000] + 0309 NV30GL [Quadro FX 1000] + 0311 NV31 [GeForce FX 5600 Ultra] + 0312 NV31 [GeForce FX 5600] + 0314 NV31 [GeForce FX 5600XT] + 1043 814a V9560XT/TD + 0316 NV31M + 0318 NV31GL + 031a NV31M [GeForce FX Go5600] + 031b NV31M [GeForce FX Go5650] + 031c NV31GLM [Quadro FX Go700] + 0320 NV34 [GeForce FX 5200] + 0321 NV34 [GeForce FX 5200 Ultra] + 0322 NV34 [GeForce FX 5200] + 1043 02fb V9250 Magic + 1043 8180 V9520-X/TD/128M + 107d 2967 WinFast A340T 128MB + 1462 9110 MS-8911 (FX5200-TD128) + 1462 9171 MS-8917 (FX5200-T128) + 1462 9360 MS-8936 (FX5200-T128) + 1682 1351 GeForce FX 5200 + 0323 NV34 [GeForce FX 5200LE] + 0324 NV34M [GeForce FX Go5200 64M] + 1028 0196 Inspiron 5160 + 103c 006a Pavilion ZD7000 laptop + 1071 8160 MIM2000 + 0325 NV34M [GeForce FX Go5250] + 0326 NV34 [GeForce FX 5500] + 1458 310d GeForce FX 5500 128 MB + 1682 2034 GeForce 5500 256 MB + 0327 NV34 [GeForce FX 5100] + 0328 NV34M [GeForce FX Go5200 32M/64M] + 0329 NV34M [GeForce FX Go5200] + 10de 0010 Powerbook G4 + 032a NV34GL [Quadro NVS 280 PCI] + 032b NV34GL [Quadro FX 500/600 PCI] + 032c NV34M [GeForce FX Go5300 / Go5350] + 032d NV34M [GeForce FX Go5100] + 032e NV34 + 032f NV34 [GeForce FX 5200] + 0330 NV35 [GeForce FX 5900 Ultra] + 1043 8137 V9950 Ultra / 256 MB + 0331 NV35 [GeForce FX 5900] + 1043 8145 V9950GE + 0332 NV35 [GeForce FX 5900XT] + 0333 NV38 [GeForce FX 5950 Ultra] + 0334 NV35 [GeForce FX 5900ZT] + 1462 9373 FX5900ZT-VTD128 (MS-8937) + 0338 NV35GL [Quadro FX 3000] + 033f NV35GL [Quadro FX 700] + 0341 NV36 [GeForce FX 5700 Ultra] + 1462 9380 MS-8938 (FX5700U-TD128) + 0342 NV36 [GeForce FX 5700] + 0343 NV36 [GeForce FX 5700LE] + 0344 NV36 [GeForce FX 5700VE] + 0347 NV36M [GeForce FX Go5700] + 103c 006a NX9500 + 0348 NV36M [GeForce FX Go5700] + 034c NV36 [Quadro FX Go1000] + 034d NV36 + 034e NV36GL [Quadro FX 1100] + 0360 MCP55 LPC Bridge + 0361 MCP55 LPC Bridge + 1028 0221 PowerEdge R805 MCP55 LPC Bridge + 0362 MCP55 LPC Bridge + 147b 1c24 KN9 series mainboard + 0363 MCP55 LPC Bridge + 0364 MCP55 LPC Bridge + 1028 0221 PowerEdge R805 MCP55 LPC Bridge + 0365 MCP55 LPC Bridge + 0366 MCP55 LPC Bridge + 0367 MCP55 LPC Bridge + 0368 MCP55 SMBus Controller + 1028 020c PowerEdge M605 MCP55 SMBus + 1028 0221 PowerEdge R805 MCP55 SMBus + 147b 1c24 KN9 series mainboard + 0369 MCP55 Memory Controller + 147b 1c24 KN9 series mainboard + 036a MCP55 Memory Controller + 036b MCP55 SMU + 036c MCP55 USB Controller + 1028 020c PowerEdge M605 MCP55 USB Controller + 1028 0221 PowerEdge R805 MCP55 USB Controller + 147b 1c24 KN9 series mainboard + 036d MCP55 USB Controller + 1028 020c PowerEdge M605 MCP55 USB Controller + 1028 0221 PowerEdge R805 MCP55 USB Controller + 147b 1c24 KN9 series mainboard + 036e MCP55 IDE + 147b 1c24 KN9 series mainboard + 0370 MCP55 PCI bridge + 0371 MCP55 High Definition Audio + 147b 1c24 KN9 series mainboard + 0372 MCP55 Ethernet + 0373 MCP55 Ethernet + 147b 1c24 KN9 series mainboard + 0374 MCP55 PCI Express bridge + 0375 MCP55 PCI Express bridge + 0376 MCP55 PCI Express bridge + 0377 MCP55 PCI Express bridge + 0378 MCP55 PCI Express bridge + 037a MCP55 Memory Controller + 037e MCP55 SATA Controller + 037f MCP55 SATA Controller + 1028 0221 PowerEdge R805 MCP55 SATA Controller + 147b 1c24 KN9 series mainboard + 038b G73 [GeForce 7650 GS] + 0390 G73 [GeForce 7650 GS] + 0391 G73 [GeForce 7600 GT] + 1458 3427 GV-NX76T128D-RH + 1462 0452 NX7600GT-VT2D256E + 0392 G73 [GeForce 7600 GS] + 1462 0622 NX7600GS-T2D256EH + 0393 G73 [GeForce 7300 GT] + 10de 0412 NX7300GT-TD256EH + 1462 0412 NX7300GT-TD256EH + 0394 G73 [GeForce 7600 LE] + 0395 G73 [GeForce 7300 GT] + 0396 G73 + 0397 G73M [GeForce Go 7700] + 0398 G73M [GeForce Go 7600] + 1025 006c Aspire 9814WKMi + 0399 G73M [GeForce Go 7600 GT] + 039a G73M [Quadro NVS 300M] + 039b G73M [GeForce Go 7900 SE] + 039c G73GLM [Quadro FX 550M] + 10de 039c Quadro FX 560M + 039d G73 + 039e G73GL [Quadro FX 560] + 039f G73 + 03a0 C55 Host Bridge + 03a1 C55 Host Bridge + 03a2 C55 Host Bridge + 03a3 C55 Host Bridge + 03a4 C55 Host Bridge + 03a5 C55 Host Bridge + 03a6 C55 Host Bridge + 03a7 C55 Host Bridge + 03a8 C55 Memory Controller + 03a9 C55 Memory Controller + 03aa C55 Memory Controller + 03ab C55 Memory Controller + 03ac C55 Memory Controller + 03ad C55 Memory Controller + 03ae C55 Memory Controller + 03af C55 Memory Controller + 03b0 C55 Memory Controller + 03b1 C55 Memory Controller + 03b2 C55 Memory Controller + 03b3 C55 Memory Controller + 03b4 C55 Memory Controller + 03b5 C55 Memory Controller + 03b6 C55 Memory Controller + 03b7 C55 PCI Express bridge + 03b8 C55 PCI Express bridge + 03b9 C55 PCI Express bridge + 03ba C55 Memory Controller + 03bb C55 PCI Express bridge + 03bc C55 Memory Controller + 03d0 C61 [GeForce 6150SE nForce 430] + 1028 020e Inspiron 531 + 03d1 C61 [GeForce 6100 nForce 405] + 03d2 C61 [GeForce 6100 nForce 400] + 03d5 C61 [GeForce 6100 nForce 420] + 03d6 C61 [GeForce 7025 / nForce 630a] + 03e0 MCP61 LPC Bridge + 1028 020e Inspiron 531 + 1849 03e0 939NF6G-VSTA Board + 03e1 MCP61 LPC Bridge + 1043 83a4 M4N68T series motherboard + 03e2 MCP61 Host Bridge + 1043 83a4 M4N68T series motherboard + 03e3 MCP61 LPC Bridge + 03e4 MCP61 High Definition Audio + 03e5 MCP61 Ethernet + 03e6 MCP61 Ethernet + 03e7 MCP61 SATA Controller + 03e8 MCP61 PCI Express bridge + 1028 020e Inspiron 531 + 1849 03e8 939NF6G-VSTA Board + 03e9 MCP61 PCI Express bridge + 1028 020e Inspiron 531 + 1849 03e9 939NF6G-VSTA Board + 03ea MCP61 Memory Controller + 1028 020e Inspiron 531 + 1849 03ea 939NF6G-VSTA Board + 03eb MCP61 SMBus + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03eb 939NF6G-VSTA Board + 03ec MCP61 IDE + 1025 0392 ET1350 + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03ec 939NF6G-VSTA Board + 03ee MCP61 Ethernet + 03ef MCP61 Ethernet + 1025 8000 ET1350 + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03ef 939NF6G-VSTA Board + 03f0 MCP61 High Definition Audio + 1028 020e Inspiron 531 + 1043 8415 M4N68T series motherboard + 1849 0888 939NF6G-VSTA Board + 03f1 MCP61 USB 1.1 Controller + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03f1 939NF6G-VSTA Board + 03f2 MCP61 USB 2.0 Controller + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03f2 939NF6G-VSTA Board + 03f3 MCP61 PCI bridge + 1028 020e Inspiron 531 + 1849 03f3 939NF6G-VSTA Board + 03f4 MCP61 SMU + 03f5 MCP61 Memory Controller + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03eb 939NF6G-VSTA Board + 03f6 MCP61 SATA Controller + 1028 020e Inspiron 531 + 1043 83a4 M4N68T series motherboard + 1849 03f6 939NF6G-VSTA Board + 03f7 MCP61 SATA Controller + 0400 G84 [GeForce 8600 GTS] + 1043 8241 EN8600GTS + 0401 G84 [GeForce 8600 GT] + 0402 G84 [GeForce 8600 GT] + 1458 3455 GV-NX86T512H + 1462 0910 NX8600GT-T2D256EZ + 0403 G84 [GeForce 8600 GS] + 0404 G84 [GeForce 8400 GS] + 1462 1230 NX8400GS-TD256E + 0405 G84M [GeForce 9500M GS] + 0406 G84 [GeForce 8300 GS] + 0407 G84M [GeForce 8600M GT] + 0408 G84M [GeForce 9650M GS] + 0409 G84M [GeForce 8700M GT] + 040a G84GL [Quadro FX 370] + 040b G84GLM [Quadro NVS 320M] + 040c G84GLM [Quadro FX 570M] + 17aa 20d9 ThinkPad T61p + 040d G84GLM [Quadro FX 1600M] + 040e G84GL [Quadro FX 570] + 040f G84GL [Quadro FX 1700] + 0410 G92 [GeForce GT 330] + 0414 G92 [GeForce 9800 GT] + 0418 G92 [GeForce GT 330 OEM] + 0420 G86 [GeForce 8400 SE] + 0421 G86 [GeForce 8500 GT] + 1462 0960 NX8500GT-TD512EH/M2 + 0422 G86 [GeForce 8400 GS] + 0423 G86 [GeForce 8300 GS] + 0424 G86 [GeForce 8400 GS] + 0425 G86M [GeForce 8600M GS] + 1025 0121 Aspire 5920G + 1043 1514 F3SV + 0426 G86M [GeForce 8400M GT] + 0427 G86M [GeForce 8400M GS] + 103c 30cc Pavilion dv6700 + 103c 30cf Pavilion dv9668eg Laptop + 0428 G86M [GeForce 8400M G] + 0429 G86M [Quadro NVS 140M] + 17aa 20d8 ThinkPad T61 + 042a G86M [Quadro NVS 130M] + 042b G86M [Quadro NVS 135M] + 042c G86 [GeForce 9400 GT] + 042d G86GLM [Quadro FX 360M] + 042e G86M [GeForce 9300M G] + 042f G86 [Quadro NVS 290] + 0440 MCP65 LPC Bridge + 0441 MCP65 LPC Bridge + 0442 MCP65 LPC Bridge + 103c 30cf Pavilion dv9668eg Laptop + 0443 MCP65 LPC Bridge + 0444 MCP65 Memory Controller + 103c 30cf Pavilion dv9668eg Laptop + 0445 MCP65 Memory Controller + 0446 MCP65 SMBus + 103c 30cf Pavilion dv9668eg Laptop + 0447 MCP65 SMU + 103c 30cf Pavilion dv9500/9600/9700 series + 0448 MCP65 IDE + 103c 30cf Pavilion dv9668eg Laptop + 0449 MCP65 PCI bridge + 10de cb84 HP Pavilion dv9668eg Laptop + 044a MCP65 High Definition Audio + 103c 30cf Pavilion dv9668eg Laptop + 044b MCP65 High Definition Audio + 044c MCP65 AHCI Controller + 044d MCP65 AHCI Controller + 044e MCP65 AHCI Controller + 044f MCP65 AHCI Controller + 0450 MCP65 Ethernet + 103c 30cf Pavilion dv9668eg Laptop + 0451 MCP65 Ethernet + 0452 MCP65 Ethernet + 0453 MCP65 Ethernet + 0454 MCP65 USB 1.1 OHCI Controller + 103c 30cf Pavilion dv9668eg Laptop + 0455 MCP65 USB 2.0 EHCI Controller + 103c 30cf Pavilion dv9668eg Laptop + 0456 MCP65 USB Controller + 0457 MCP65 USB Controller + 0458 MCP65 PCI Express bridge + 10de 0000 MCP65 PCI Express bridge + 0459 MCP65 PCI Express bridge + 10de 0000 MCP65 PCI Express bridge + 045a MCP65 PCI Express bridge + 10de 0000 MCP65 PCI Express bridge + 045b MCP65 PCI Express bridge + 10de 0000 MCP65 PCI Express bridge + 045c MCP65 SATA Controller + 045d MCP65 SATA Controller + 103c 30cf Pavilion dv9668eg Laptop + 045e MCP65 SATA Controller + 045f MCP65 SATA Controller + 0531 C67 [GeForce 7150M / nForce 630M] + 0533 C67 [GeForce 7000M / nForce 610M] + 053a C68 [GeForce 7050 PV / nForce 630a] + 053b C68 [GeForce 7050 PV / nForce 630a] + 1043 8308 M2N68-AM Motherboard + 053e C68 [GeForce 7025 / nForce 630a] + 0541 MCP67 Memory Controller + 0542 MCP67 SMBus + 1043 8308 M2N68-AM Motherboard + 0543 MCP67 Co-processor + 0547 MCP67 Memory Controller + 1043 8308 M2N68-AM Motherboard + 1849 0547 ALiveNF7G-HDready + 0548 MCP67 ISA Bridge + 1043 8308 M2N68-AM Motherboard + 054c MCP67 Ethernet + 1043 8308 M2N68-AM Motherboard + 1849 054c ALiveNF7G-HDready, MCP67 Gigabit Ethernet + 054d MCP67 Ethernet + 054e MCP67 Ethernet + 054f MCP67 Ethernet + 0550 MCP67 AHCI Controller + 1043 8308 M2N68-AM Motherboard + 0554 MCP67 AHCI Controller + 1043 8308 M2N68-AM Motherboard + 0555 MCP67 SATA Controller + 1043 8308 M2N68-AM Motherboard + 055c MCP67 High Definition Audio + 1043 8290 M2N68-AM Motherboard + 055d MCP67 High Definition Audio + 055e MCP67 OHCI USB 1.1 Controller + 1043 8308 M2N68-AM Motherboard + 055f MCP67 EHCI USB 2.0 Controller + 1043 8308 M2N68-AM Motherboard + 0560 MCP67 IDE Controller + f043 8308 M2N68-AM Motherboard + 0561 MCP67 PCI Bridge + 0562 MCP67 PCI Express Bridge + 1849 0562 ALiveNF7G-HDready + 0563 MCP67 PCI Express Bridge + 0568 MCP78S [GeForce 8200] Memory Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0568 K10N78FullHD-hSLI R3.0 Memory Controller + 0569 MCP78S [GeForce 8200] PCI Express Bridge + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0569 K10N78FullHD-hSLI R3.0 PCI Express Bridge + 056a MCP73 [nForce 630i] USB 2.0 Controller (EHCI) + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 056c MCP73 IDE Controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 056d MCP73 PCI Express bridge + 1019 297a MCP73PVT-SM + 10de cb73 MCP73 PCI Bridge + 056e MCP73 PCI Express bridge + 1019 297a MCP73PVT-SM + 10de 0000 MCP73 PCIe x16 port + 056f MCP73 PCI Express bridge + 1019 297a MCP73PVT-SM + 10de 0000 MCP73 PCIe x1 port + 05b1 NF200 PCIe 2.0 switch + 05b8 NF200 PCIe 2.0 switch for GTX 295 + 05be NF200 PCIe 2.0 switch for Quadro Plex S4 / Tesla S870 / Tesla S1070 / Tesla S2050 + 05e0 GT200b [GeForce GTX 295] + 05e1 GT200 [GeForce GTX 280] + 05e2 GT200 [GeForce GTX 260] + 05e3 GT200b [GeForce GTX 285] + 1682 2490 GX-285N-ZDF + 05e6 GT200b [GeForce GTX 275] + 05e7 GT200GL [Tesla C1060 / M1060] + 10de 0595 Tesla T10 Processor + 10de 068f Tesla T10 Processor + 10de 0697 Tesla M1060 + 10de 0714 Tesla M1060 + 10de 0743 Tesla M1060 + 05ea GT200 [GeForce GTX 260] + 05eb GT200 [GeForce GTX 295] + 05ed GT200GL [Quadro Plex 2200 D2] + 05f1 GT200 [GeForce GTX 280] + 05f2 GT200 [GeForce GTX 260] + 05f8 GT200GL [Quadro Plex 2200 S4] + 05f9 GT200GL [Quadro CX] + 05fd GT200GL [Quadro FX 5800] + 05fe GT200GL [Quadro FX 4800] + 05ff GT200GL [Quadro FX 3800] + 0600 G92 [GeForce 8800 GTS 512] + 0601 G92 [GeForce 9800 GT] + 0602 G92 [GeForce 8800 GT] + 0603 G92 [GeForce GT 230 OEM] + 0604 G92 [GeForce 9800 GX2] + 0605 G92 [GeForce 9800 GT] + 0606 G92 [GeForce 8800 GS] + 0607 G92 [GeForce GTS 240] + 0608 G92M [GeForce 9800M GTX] + 0609 G92M [GeForce 8800M GTS] + 106b 00a7 GeForce 8800 GS + 060a G92M [GeForce GTX 280M] + 060b G92M [GeForce 9800M GT] + 060c G92M [GeForce 8800M GTX] + 060d G92 [GeForce 8800 GS] + 060f G92M [GeForce GTX 285M] + 0610 G92 [GeForce 9600 GSO] + 1682 2385 GeForce 9600 GSO 768mb + 0611 G92 [GeForce 8800 GT] + 107d 2ab0 Winfast PX8800 GT PCI-E + 1462 1170 NX8800GT series model V117 2xDVI+TV + 19da 1040 ZT-88TES2P-FSP + 0612 G92 [GeForce 9800 GTX / 9800 GTX+] + 0613 G92 [GeForce 9800 GTX+] + 0614 G92 [GeForce 9800 GT] + 107d 2ab3 WinFast PX9800 GT (S-Fanpipe) + 0615 G92 [GeForce GTS 250] + 3842 1150 GeForce GTS 250 P/N 512-P3-1150-TR +# Overclocked + 3842 1151 GeForce GTS 250 P/N 512-P3-1151-TR + 3842 1155 GeForce GTS 250 P/N 01G-P3-1155-TR +# Overclocked + 3842 1156 GeForce GTS 250 P/N 01G-P3-1156-TR + 0617 G92M [GeForce 9800M GTX] + 0618 G92M [GeForce GTX 260M] + 0619 G92GL [Quadro FX 4700 X2] + 061a G92GL [Quadro FX 3700] + 061b G92GL [Quadro VX 200] + 061c G92GLM [Quadro FX 3600M] + 061d G92GLM [Quadro FX 2800M] + 061e G92GLM [Quadro FX 3700M] + 061f G92GLM [Quadro FX 3800M] + 0620 G94 [GeForce 9800 GT] + 0621 G94 [GeForce GT 230] + 0622 G94 [GeForce 9600 GT] + 107d 2ac1 WinFast PX9600GT 1024MB + 1458 3481 GV-NX96T512HP + 0623 G94 [GeForce 9600 GS] + 0624 G94 [GeForce 9600 GT Green Edition] + 0625 G94 [GeForce 9600 GSO 512] + 0626 G94 [GeForce GT 130] + 0627 G94 [GeForce GT 140] + 0628 G94M [GeForce 9800M GTS] + 062a G94M [GeForce 9700M GTS] + 062b G94M [GeForce 9800M GS] + 062c G94M [GeForce 9800M GTS] + 062d G94 [GeForce 9600 GT] + 062e G94 [GeForce 9600 GT] + 106b 0605 GeForce GT 130 + 062f G94 [GeForce 9800 S] + 0630 G94 [GeForce 9600 GT] + 0631 G94M [GeForce GTS 160M] + 0632 G94M [GeForce GTS 150M] + 0633 G94 [GeForce GT 220] + 0635 G94 [GeForce 9600 GSO] + 0637 G94 [GeForce 9600 GT] + 0638 G94GL [Quadro FX 1800] + 063a G94GLM [Quadro FX 2700M] + 063f G94 [GeForce 9600 GE] + 0640 G96C [GeForce 9500 GT] + 0641 G96C [GeForce 9400 GT] + 1682 4009 PV-T94G-ZAFG + 0642 G96 [D9M-10] + 0643 G96 [GeForce 9500 GT] + 0644 G96 [GeForce 9500 GS] + 174b 9600 Geforce 9500GS 512M DDR2 V/D/HDMI + 0645 G96C [GeForce 9500 GS] + 0646 G96C [GeForce GT 120] + 0647 G96CM [GeForce 9600M GT] + 0648 G96CM [GeForce 9600M GS] + 0649 G96CM [GeForce 9600M GT] + 1043 202d GeForce GT 220M + 064a G96M [GeForce 9700M GT] + 064b G96M [GeForce 9500M G] + 064c G96CM [GeForce 9650M GT] + 064e G96C [GeForce 9600 GSO / 9800 GT] + 0651 G96CM [GeForce G 110M] + 0652 G96CM [GeForce GT 130M] + 152d 0850 GeForce GT 240M LE + 0653 G96CM [GeForce GT 120M] + 0654 G96CM [GeForce GT 220M] + 1043 14a2 GeForce GT 320M + 1043 14d2 GeForce GT 320M + 0655 G96 [GeForce GT 120 Mac Edition] + 0656 G96 [GeForce GT 120 Mac Edition] + 0658 G96GL [Quadro FX 380] + 0659 G96CGL [Quadro FX 580] + 065a G96GLM [Quadro FX 1700M] + 065b G96C [GeForce 9400 GT] + 065c G96GLM [Quadro FX 770M] + 065d G96 [GeForce 9500 GA / 9600 GT / GTS 250] + 065f G96C [GeForce G210] + 06c0 GF100 [GeForce GTX 480] + 06c4 GF100 [GeForce GTX 465] + 06ca GF100M [GeForce GTX 480M] + 06cb GF100 [GeForce GTX 480] + 06cd GF100 [GeForce GTX 470] + 06d0 GF100GL + 06d1 GF100GL [Tesla C2050 / C2070] + 10de 0771 Tesla C2050 + 10de 0772 Tesla C2070 + 06d2 GF100GL [Tesla M2070] + 10de 0774 Tesla M2070 + 10de 0830 Tesla M2070 + 10de 0842 Tesla M2070 + 10de 088f Tesla X2070 + 10de 0908 Tesla M2070 + 06d8 GF100GL [Quadro 6000] + 06d9 GF100GL [Quadro 5000] + 06da GF100GLM [Quadro 5000M] + 06dc GF100GL [Quadro 6000] + 06dd GF100GL [Quadro 4000] + 06de GF100GL [Tesla T20 Processor] + 10de 0773 Tesla S2050 + 10de 082f Tesla M2050 + 10de 0840 Tesla X2070 + 10de 0842 Tesla M2050 + 10de 0846 Tesla M2050 + 10de 0866 Tesla M2050 + 10de 0907 Tesla M2050 + 10de 091e Tesla M2050 + 06df GF100GL [Tesla M2070-Q] + 10de 084d Tesla M2070-Q + 10de 087f Tesla M2070-Q + 06e0 G98 [GeForce 9300 GE] + 107d 5a96 Geforce 9300GE + 06e1 G98 [GeForce 9300 GS] + 06e2 G98 [GeForce 8400] + 06e3 G98 [GeForce 8300 GS] + 06e4 G98 [GeForce 8400 GS Rev. 2] + 1458 3475 GV-NX84S256HE [GeForce 8400 GS] + 06e5 G98M [GeForce 9300M GS] + 06e6 G98 [GeForce G 100] + 06e7 G98 [GeForce 9300 SE] + 06e8 G98M [GeForce 9200M GS] + 103c 360b GeForce 9200M GE + 06e9 G98M [GeForce 9300M GS] + 1043 19b2 U6V laptop + 06ea G98M [Quadro NVS 150M] + 06eb G98M [Quadro NVS 160M] + 06ec G98M [GeForce G 105M] + 06ed G98 [GeForce 9600 GT / 9800 GT] + 06ee G98 [GeForce 9600 GT / 9800 GT / GT 240] + 06ef G98M [GeForce G 103M] + 06f1 G98M [GeForce G 105M] + 06f8 G98 [Quadro NVS 420] + 06f9 G98GL [Quadro FX 370 LP] + 06fa G98 [Quadro NVS 450] + 06fb G98GLM [Quadro FX 370M] + 06fd G98 [Quadro NVS 295] + 06ff G98 [HICx16 + Graphics] + 10de 0711 HICx8 + Graphics + 0751 MCP78S [GeForce 8200] Memory Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0751 K10N78FullHD-hSLI R3.0 Memory Controller + 0752 MCP78S [GeForce 8200] SMBus + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0752 K10N78FullHD-hSLI R3.0 SMBus + 0753 MCP78S [GeForce 8200] Co-Processor + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0753 K10N78FullHD-hSLI R3.0 Co-Processor + 0754 MCP78S [GeForce 8200] Memory Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0754 K10N78FullHD-hSLI R3.0 Memory Controller + 0759 MCP78S [GeForce 8200] IDE + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0759 K10N78FullHD-hSLI R3.0 IDE + 075a MCP78S [GeForce 8200] PCI Bridge + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1849 075a K10N78FullHD-hSLI R3.0 PCI Bridge + 075b MCP78S [GeForce 8200] PCI Express Bridge + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 075b K10N78FullHD-hSLI R3.0 PCI Express Bridge + 075c MCP78S [GeForce 8200] LPC Bridge + 103c 2a9e Pavilion p6310f + 1462 7508 K9N2GM-FIH + 1849 075c K10N78FullHD-hSLI R3.0 LPC Bridge + 075d MCP78S [GeForce 8200] LPC Bridge + 1043 82e8 M3N72-D + 0760 MCP77 Ethernet + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0760 K10N78FullHD-hSLI R3.0 Ethernet + 0761 MCP77 Ethernet + 0762 MCP77 Ethernet + 0763 MCP77 Ethernet + 0774 MCP72XE/MCP72P/MCP78U/MCP78S High Definition Audio + 103c 2a9e Pavilion p6310f +# has a Realtek ALC1200 HDAudio Codec + 1043 82fe M3N72-D + 1462 7508 K9N2GM-FIH + 1849 3662 K10N78FullHD-hSLI R3.0 High Definition Audio + 0778 MCP78S [GeForce 8200] PCI Express Bridge + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 0778 K10N78FullHD-hSLI R3.0 PCI Express Bridge + 077a MCP78S [GeForce 8200] PCI Bridge + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 077a K10N78FullHD-hSLI R3.0 PCI Bridge + 077b MCP78S [GeForce 8200] OHCI USB 1.1 Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 077b K10N78FullHD-hSLI R3.0 OHCI USB 1.1 Controller + 077c MCP78S [GeForce 8200] EHCI USB 2.0 Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 077c K10N78FullHD-hSLI R3.0 EHCI USB 2.0 Controller + 077d MCP78S [GeForce 8200] OHCI USB 1.1 Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 077d K10N78FullHD-hSLI R3.0 OHCI USB 1.1 Controller + 077e MCP78S [GeForce 8200] EHCI USB 2.0 Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1462 7508 K9N2GM-FIH + 1849 077e K10N78FullHD-hSLI R3.0 EHCI USB 2.0 Controller + 07c0 MCP73 Host Bridge + 1afa 7150 JW-IN7150-HD + 07c1 MCP73 Host Bridge + 1019 297a MCP73PVT-SM + 07c2 MCP73 Host Bridge + 07c3 MCP73 Host Bridge + 147b 1c3e I-N73V motherboard + 07c5 MCP73 Host Bridge + 07c8 MCP73 Memory Controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07cb nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07cd nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07ce nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07cf nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d0 nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d1 nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d2 nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d3 nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d6 nForce 610i/630i memory controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d7 MCP73 LPC Bridge + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d8 MCP73 SMBus + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07d9 MCP73 Memory Controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 07da MCP73 Co-processor + 1afa 7150 JW-IN7150-HD + 07dc MCP73 Ethernet + 147b 1c3e I-N73V motherboard + 07dd MCP73 Ethernet + 07de MCP73 Ethernet + 07df MCP73 Ethernet + 07e0 C73 [GeForce 7150 / nForce 630i] + 1afa 7150 JW-IN7150-HD + 07e1 C73 [GeForce 7100 / nForce 630i] + 1019 297a MCP73PVT-SM + 07e2 C73 [GeForce 7050 / nForce 630i] + 07e3 C73 [GeForce 7050 / nForce 610i] + 147b 1c3e I-N73V motherboard + 07e5 C73 [GeForce 7100 / nForce 620i] + 07f0 MCP73 SATA Controller (IDE mode) + 147b 1c3e I-N73V motherboard + 07f4 GeForce 7100/nForce 630i SATA + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 07f8 MCP73 SATA RAID Controller + 147b 1c3e I-N73V motherboard + 07fc MCP73 High Definition Audio + 1019 297a MCP73PVT-SM + 10de 07fc MCP73 High Definition Audio + 147b 1c3e I-N73V motherboard + 07fe MCP73 OHCI USB 1.1 Controller + 1019 297a MCP73PVT-SM + 147b 1c3e I-N73V motherboard + 1afa 7150 JW-IN7150-HD + 0840 C77 [GeForce 8200M] + 0844 C77 [GeForce 9100M G] + 0845 C77 [GeForce 8200M G] + 0846 C77 [GeForce 9200] + 0847 C78 [GeForce 9100] + 103c 2a9e Pavilion p6310f + 0848 C77 [GeForce 8300] + 0849 C77 [GeForce 8200] + 1462 7508 K9N2GM-FIH + 1849 0849 K10N78FullHD-hSLI R3.0 GeForce 8200 + 084a C77 [nForce 730a] + 084b C77 [GeForce 8200] + 084c C77 [nForce 780a/980a SLI] + 084d C77 [nForce 750a SLI] + 1043 82e8 M3N72-D mGPU + 084f C77 [GeForce 8100 / nForce 720a] + 0860 C79 [GeForce 9300] + 0861 C79 [GeForce 9400] + 0862 C79 [GeForce 9400M G] + 0863 C79 [GeForce 9400M] + 106b 00aa MacBook5,1 + 0864 C79 [GeForce 9300] + 0865 C79 [GeForce 9300 / ION] + 0866 C79 [GeForce 9400M G] + 106b 00b1 GeForce 9400M + 0867 C79 [GeForce 9400] + 106b 00ad iMac 9,1 + 0868 C79 [nForce 760i SLI] + 0869 MCP7A [GeForce 9400] + 086a C79 [GeForce 9400] + 086c C79 [GeForce 9300 / nForce 730i] + 086d C79 [GeForce 9200] + 086e C79 [GeForce 9100M G] + 086f MCP79 [GeForce 8200M G] + 0870 C79 [GeForce 9400M] + 0871 C79 [GeForce 9200] + 0872 C79 [GeForce G102M] + 1043 19b4 GeForce G102M + 1043 1aa2 GeForce G102M + 1043 1c02 GeForce G102M + 1043 1c42 GeForce G205M + 0873 C79 [GeForce G102M] + 1043 19b4 GeForce G102M + 1043 1c12 GeForce G102M + 1043 1c52 GeForce G205M + 0874 C79 [ION] + 0876 C79 [GeForce 9400M / ION] + 087a C79 [GeForce 9400] + 087d C79 [ION] + 19da a123 IONITX-F-E + 087e C79 [ION LE] + 087f C79 [ION LE] + 08a0 MCP89 [GeForce 320M] + 08a2 MCP89 [GeForce 320M] + 08a3 MCP89 [GeForce 320M] + 08a4 MCP89 [GeForce 320M] + 08a5 MCP89 [GeForce 320M] + 0a20 GT216 [GeForce GT 220] + 1043 8311 ENGT220/DI/1GD3(LP)/V2 + 0a21 GT216M [GeForce GT 330M] + 0a22 GT216 [GeForce 315] + 0a23 GT216 [GeForce 210] + 0a24 GT216 [GeForce 405] + 0a26 GT216 [GeForce 405] + 0a27 GT216 [GeForce 405] + 0a28 GT216M [GeForce GT 230M] + 0a29 GT216M [GeForce GT 330M] + 0a2a GT216M [GeForce GT 230M] + 0a2b GT216M [GeForce GT 330M] + 0a2c GT216M [NVS 5100M] + 0a2d GT216M [GeForce GT 320M] + 0a30 GT216 [GeForce 505] + 0a32 GT216 [GeForce GT 415] + 0a34 GT216M [GeForce GT 240M] + 0a35 GT216M [GeForce GT 325M] + 0a38 GT216GL [Quadro 400] + 0a3c GT216GLM [Quadro FX 880M] + 0a60 GT218 [GeForce G210] + 0a62 GT218 [GeForce 205] + 0a63 GT218 [GeForce 310] + 0a64 GT218 [ION] + 0a65 GT218 [GeForce 210] + 1043 8334 EN210 SILENT + 1458 36a9 GV-N210D3-1GI (rev. 6.0/6.1) + 1462 8094 N210 [Geforce 210] PCIe graphics adapter + 19da 7222 GeForce 210 1GB [Synergy Edition] + 0a66 GT218 [GeForce 310] + 0a67 GT218 [GeForce 315] + 0a68 GT218M [GeForce G 105M] + 0a69 GT218M [GeForce G 105M] + 0a6a GT218M [NVS 2100M] + 0a6c GT218M [NVS 3100M] + 1028 040b Latitude E6510 + 17aa 2142 ThinkPad T410 + 0a6e GT218M [GeForce 305M] + 0a6f GT218M [ION] + 0a70 GT218M [GeForce 310M] + 0a71 GT218M [GeForce 305M] + 0a72 GT218M [GeForce 310M] + 0a73 GT218M [GeForce 305M] + 0a74 GT218M [GeForce G210M] + 1b0a 903a GeForce G210 + 0a75 GT218M [GeForce 310M] + 0a76 GT218M [ION 2] + 0a78 GT218GL [Quadro FX 380 LP] + 0a7a GT218M [GeForce 315M] + 104d 907e GeForce 315M + 1179 fc50 GeForce 315M + 1179 fc61 GeForce 315M + 1179 fc71 GeForce 315M + 1179 fc90 GeForce 315M + 1179 fcc0 GeForce 315M + 1179 fcd0 GeForce 315M + 1179 fce2 GeForce 315M + 1179 fcf2 GeForce 315M + 1179 fd16 GeForce 315M + 1179 fd40 GeForce 315M + 1179 fd50 GeForce 315M + 1179 fd52 GeForce 315M + 1179 fd61 GeForce 315M + 1179 fd71 GeForce 315M + 1179 fd92 GeForce 315M + 1179 fd96 GeForce 315M + 1179 fdd0 GeForce 315M + 1179 fdd2 GeForce 315M + 1179 fdfe GeForce 315M + 144d c0a2 GeForce 315M + 144d c0b2 GeForce 315M + 144d c581 GeForce 315M + 144d c587 GeForce 315M + 144d c588 GeForce 315M + 144d c597 GeForce 315M + 144d c606 GeForce 315M + 1462 aa51 GeForce 405 + 1462 aa58 GeForce 405 + 1462 ac71 GeForce 405 + 1462 ac81 GeForce 315M + 1462 ac82 GeForce 405 + 1462 ae33 GeForce 405 + 1642 3980 GeForce 405 + 17aa 3950 GeForce 405M + 17aa 397d GeForce 405M + 1b0a 2091 GeForce 315M + 1b0a 90b4 GeForce 405 + 1bfd 0003 GeForce 405 + 1bfd 8006 GeForce 405 + 1bfd 8007 GeForce 315M + 0a7b GT218 [GeForce 505] + 0a7c GT218GLM [Quadro FX 380M] + 0a80 MCP79 Host Bridge + 0a81 MCP79 Host Bridge + 0a82 MCP79 Host Bridge + 0a83 MCP79 Host Bridge + 0a84 MCP79 Host Bridge + 0a85 MCP79 Host Bridge + 0a86 MCP79 Host Bridge + 0a87 MCP79 Host Bridge + 0a88 MCP79 Memory Controller + 0a89 MCP79 Memory Controller + 0a98 MCP79 Memory Controller + 10de cb79 iMac 9,1 + 0aa0 MCP79 PCI Express Bridge + 10de cb79 Apple iMac 9,1 + 0aa2 MCP79 SMBus + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aa3 MCP79 Co-processor + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aa4 MCP79 Memory Controller + 19da a123 IONITX-F-E + 0aa5 MCP79 OHCI USB 1.1 Controller + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aa6 MCP79 EHCI USB 2.0 Controller + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aa7 MCP79 OHCI USB 1.1 Controller + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aa8 MCP79 OHCI USB 1.1 Controller + 0aa9 MCP79 EHCI USB 2.0 Controller + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0aaa MCP79 EHCI USB 2.0 Controller + 0aab MCP79 PCI Bridge + 10de cb79 Apple iMac 9,1 + 0aac MCP79 LPC Bridge + 0aad MCP79 LPC Bridge + 19da a123 IONITX-F-E + 0aae MCP79 LPC Bridge + 10de cb79 Apple iMac 9,1 + 0aaf MCP79 LPC Bridge + 0ab0 MCP79 Ethernet + 10de cb79 Apple iMac 9,1 + 19da a123 IONITX-F-E + 0ab1 MCP79 Ethernet + 0ab2 MCP79 Ethernet + 0ab3 MCP79 Ethernet + 0ab4 MCP79 SATA Controller + 19da a123 IONITX-F-E + 0ab5 MCP79 SATA Controller + 0ab6 MCP79 SATA Controller + 0ab7 MCP79 SATA Controller + 0ab8 MCP79 AHCI Controller + 0ab9 MCP79 AHCI Controller + 10de cb79 Apple iMac 9,1 + 0aba MCP79 AHCI Controller + 0abb MCP79 AHCI Controller + 0abc MCP79 RAID Controller + 0abd MCP79 RAID Controller + 0abe MCP79 RAID Controller + 0abf MCP79 RAID Controller + 0ac0 MCP79 High Definition Audio + 10de cb79 Apple iMac 9,1 + 0ac1 MCP79 High Definition Audio + 0ac2 MCP79 High Definition Audio + 0ac3 MCP79 High Definition Audio + 0ac4 MCP79 PCI Express Bridge + 10de cb79 Apple iMac 9,1 + 0ac5 MCP79 PCI Express Bridge + 0ac6 MCP79 PCI Express Bridge + 10de cb79 Apple iMac 9,1 + 0ac7 MCP79 PCI Express Bridge + 10de cb79 Apple iMac 9,1 + 0ac8 MCP79 PCI Express Bridge + 0ad0 MCP78S [GeForce 8200] SATA Controller (non-AHCI mode) + 1462 7508 K9N2GM-FIH + 1849 0ad0 K10N78FullHD-hSLI R3.0 IDE + 0ad4 MCP78S [GeForce 8200] AHCI Controller + 103c 2a9e Pavilion p6310f + 1043 82e8 M3N72-D + 1849 0ad4 K10N78FullHD-hSLI R3.0 AHCI Controller + 0ad8 MCP78S [GeForce 8200] SATA Controller (RAID mode) + 0be2 GT216 HDMI Audio Controller + 1043 8311 ENGT220/DI/1GD3(LP)/V2 + 0be3 High Definition Audio Controller + 1028 040b Latitude E6510 + 10de 066d G98 [GeForce 8400GS] + 1462 8094 N210 [Geforce 210] PCIe graphics adapter + 0be4 High Definition Audio Controller + 0be5 GF100 High Definition Audio Controller + 0be9 GF106 High Definition Audio Controller + 1558 8687 CLEVO/KAPOK W860CU + 3842 1452 GeForce GTS 450 + 0bea GF108 High Definition Audio Controller + 3842 1430 GeForce GT 430 + 0beb GF104 High Definition Audio Controller + 1462 2322 N460GTX Cyclone 1GD5/OC + 0bee GF116 High Definition Audio Controller + 0bf0 Tegra2 PCIe x4 Bridge + 0bf1 Tegra2 PCIe x2 Bridge + 0ca0 GT215 [GeForce GT 330] + 0ca2 GT215 [GeForce GT 320] + 0ca3 GT215 [GeForce GT 240] + 0ca4 GT215 [GeForce GT 340] + 0ca5 GT215 [GeForce GT 220] + 0ca7 GT215 [GeForce GT 330] + 0ca8 GT215M [GeForce GTS 260M] + 0ca9 GT215M [GeForce GTS 250M] + 0cac GT215 [GeForce GT 220/315] + 0caf GT215M [GeForce GT 335M] + 0cb0 GT215M [GeForce GTS 350M] + 0cb1 GT215M [GeForce GTS 360M] + 0cbc GT215GLM [Quadro FX 1800M] + 0d60 MCP89 HOST Bridge + 0d68 MCP89 Memory Controller + 0d69 MCP89 Memory Controller + 0d76 MCP89 PCI Express Bridge + 0d79 MCP89 SMBus + 0d7a MCP89 Co-Processor + 0d7b MCP89 Memory Controller + 0d7d MCP89 Ethernet + 0d80 MCP89 LPC Bridge + 0d85 MCP89 SATA Controller + 0d88 MCP89 SATA Controller (AHCI mode) + 0d89 MCP89 SATA Controller (AHCI mode) + 0d8d MCP89 SATA Controller (RAID mode) + 0d94 MCP89 High Definition Audio + 0d9c MCP89 OHCI USB 1.1 Controller + 0d9d MCP89 EHCI USB 2.0 Controller + 0dc0 GF106 [GeForce GT 440] + 0dc4 GF106 [GeForce GTS 450] + 0dc5 GF106 [GeForce GTS 450 OEM] + 0dc6 GF106 [GeForce GTS 450 OEM] + 0dcd GF106M [GeForce GT 555M] + 0dce GF106M [GeForce GT 555M] + 0dd1 GF106M [GeForce GTX 460M] + 1558 8687 CLEVO/KAPOK W860CU + 0dd2 GF106M [GeForce GT 445M] + 0dd3 GF106M [GeForce GT 435M] + 0dd6 GF106M [GeForce GT 550M] + 0dd8 GF106GL [Quadro 2000] + 10de 0914 Quadro 2000D + 0dda GF106GLM [Quadro 2000M] + 0de0 GF108 [GeForce GT 440] + 0de1 GF108 [GeForce GT 430] + 3842 1430 GeForce GT 430 + 0de2 GF108 [GeForce GT 420] + 0de3 GF108M [GeForce GT 635M] + 0de4 GF108 [GeForce GT 520] + 0de5 GF108 [GeForce GT 530] + 0de7 GF108 [GeForce GT 610] + 0de8 GF108M [GeForce GT 620M] + 0de9 GF108M [GeForce GT 620M/630M/635M/640M LE] + 1025 0692 GeForce GT 620M + 1025 0725 GeForce GT 620M + 1025 0728 GeForce GT 620M + 1025 072b GeForce GT 620M + 1025 072e GeForce GT 620M + 1025 0753 GeForce GT 620M + 1025 0754 GeForce GT 620M + 17aa 3977 GeForce GT 640M LE + 1b0a 2210 GeForce GT 635M + 0dea GF108M [GeForce 610M] + 17aa 365a GeForce 615 + 17aa 365b GeForce 615 + 17aa 365e GeForce 615 + 17aa 3660 GeForce 615 + 17aa 366c GeForce 615 + 0deb GF108M [GeForce GT 555M] + 0dec GF108M [GeForce GT 525M] + 0ded GF108M [GeForce GT 520M] + 0dee GF108M [GeForce GT 415M] + 0def GF108M [NVS 5400M] + 0df0 GF108M [GeForce GT 425M] + 0df1 GF108M [GeForce GT 420M] + 0df2 GF108M [GeForce GT 435M] + 0df3 GF108M [GeForce GT 420M] + 0df4 GF108M [GeForce GT 540M] + 152d 0952 GeForce GT 630M + 152d 0953 GeForce GT 630M + 0df5 GF108M [GeForce GT 525M] + 0df6 GF108M [GeForce GT 550M] + 0df7 GF108M [GeForce GT 520M] + 0df8 GF108GL [Quadro 600] + 0df9 GF108GLM [Quadro 500M] + 0dfa GF108GLM [Quadro 1000M] + 0dfc GF108GLM [NVS 5200M] + 0e08 GF119 HDMI Audio Controller + 1043 83a0 ENGT520 SILENT +# 1024MB with passive cooling (heatsink) + 10b0 104a Gainward GeForce GT 610 + 0e09 GF110 High Definition Audio Controller + 0e0a GK104 HDMI Audio Controller + 0e0b GK106 HDMI Audio Controller + 0e0c GF114 HDMI Audio Controller + 0e0f GK208 HDMI/DP Audio Controller + 0e12 TegraK1 PCIe x4 Bridge + 0e13 TegraK1 PCIe x1 Bridge + 0e1a GK110 High Definition Audio Controller + 0e1b GK107 HDMI Audio Controller + 103c 197b ZBook 15 + 1043 8428 GTX650-DC-1GD5 + 0e1c Tegra3+ PCIe x4 Bridge + 0e1d Tegra3+ PCIe x2 Bridge + 0e22 GF104 [GeForce GTX 460] + 1462 2322 N460GTX Cyclone 1GD5/OC + 0e23 GF104 [GeForce GTX 460 SE] + 0e24 GF104 [GeForce GTX 460 OEM] + 0e30 GF104M [GeForce GTX 470M] + 0e31 GF104M [GeForce GTX 485M] + 0e3a GF104GLM [Quadro 3000M] + 0e3b GF104GLM [Quadro 4000M] + 0f00 GF108 [GeForce GT 630] + 0f01 GF108 [GeForce GT 620] + 0f02 GF108 [GeForce GT 730] + 0f03 GF108 [GeForce GT 610] + 0f06 GF108 [GeForce GT 730] + 0fb0 GM200 High Definition Audio + 0fb8 GP108 High Definition Audio Controller + 0fb9 GP107GL High Definition Audio Controller + 0fba GM206 High Definition Audio Controller + 0fbb GM204 High Definition Audio Controller + 0fbc GM107 High Definition Audio Controller [GeForce 940MX] + 0fc0 GK107 [GeForce GT 640 OEM] + 0fc1 GK107 [GeForce GT 640] + 0fc2 GK107 [GeForce GT 630 OEM] + 0fc5 GK107 [GeForce GT 1030] + 0fc6 GK107 [GeForce GTX 650] + 1043 8428 GTX650-DC-1GD5 + 0fc8 GK107 [GeForce GT 740] + 0fc9 GK107 [GeForce GT 730] + 0fcd GK107M [GeForce GT 755M] + 0fce GK107M [GeForce GT 640M LE] + 0fd1 GK107M [GeForce GT 650M] + 1043 1597 GeForce GT 650M + 1043 15a7 GeForce GT 650M + 1043 2103 N56VZ + 1043 2105 GeForce GT 650M + 1043 2141 GeForce GT 650M + 0fd2 GK107M [GeForce GT 640M] + 1028 054f GeForce GT 640M + 1028 055f GeForce GT 640M + 1028 0595 GeForce GT 640M LE + 1028 05b2 GeForce GT 640M LE + 0fd3 GK107M [GeForce GT 640M LE] + 0fd4 GK107M [GeForce GTX 660M] + 0fd5 GK107M [GeForce GT 650M Mac Edition] + 0fd6 GK107M + 0fd8 GK107M [GeForce GT 640M Mac Edition] + 0fd9 GK107M [GeForce GT 645M] + 0fdb GK107M + 0fdf GK107M [GeForce GT 740M] + 0fe0 GK107M [GeForce GTX 660M Mac Edition] + 0fe1 GK107M [GeForce GT 730M] + 0fe2 GK107M [GeForce GT 745M] + 0fe3 GK107M [GeForce GT 745M] + 103c 2b16 GeForce GT 745A + 17aa 3675 GeForce GT 745A + 0fe4 GK107M [GeForce GT 750M] + 0fe5 GK107 [GeForce K340 USM] + 0fe6 GK107 [GRID K1 NVS USM] +# GRID K1 USM + 0fe7 GK107GL [GRID K100 vGPU] + 10de 101e GRID K100 + 0fe8 GK107M + 0fe9 GK107M [GeForce GT 750M Mac Edition] + 0fea GK107M [GeForce GT 755M Mac Edition] + 0fec GK107M [GeForce 710A] + 0fed GK107M [GeForce 820M] + 0fee GK107M [GeForce 810M] + 0fef GK107GL [GRID K340] + 0ff1 GK107 [NVS 1000] + 0ff2 GK107GL [GRID K1] + 0ff3 GK107GL [Quadro K420] + 0ff5 GK107GL [GRID K1 Tesla USM] + 0ff6 GK107GLM [Quadro K1100M] + 103c 197b ZBook 15 +# GRID K1 Quadro USM + 0ff7 GK107GL [GRID K140Q vGPU] + 10de 1037 GRID K140Q + 0ff8 GK107GLM [Quadro K500M] + 0ff9 GK107GL [Quadro K2000D] + 0ffa GK107GL [Quadro K600] + 0ffb GK107GLM [Quadro K2000M] + 0ffc GK107GLM [Quadro K1000M] + 0ffd GK107 [NVS 510] + 0ffe GK107GL [Quadro K2000] + 0fff GK107GL [Quadro 410] + 1001 GK110B [GeForce GTX TITAN Z] + 1003 GK110 [GeForce GTX Titan LE] + 1004 GK110 [GeForce GTX 780] + 3842 0784 GK110B [GeForce GTX 780 SC w/ ACX Cooler] + 3842 1784 GK110B [GeForce GTX 780 Dual FTW w/ ACX Cooler] + 3842 1788 GK110B [GeForce GTX 780 Dual Classified w/ ACX Cooler] + 1005 GK110 [GeForce GTX TITAN] + 1043 8451 GTXTITAN-6GD5 +# Reference Model + 10de 1035 GeForce GTX Titan +# 06G-P4-2790-KR + 3842 2790 GeForce GTX Titan +# 06G-P4-2791-KR + 3842 2791 GeForce GTX Titan SC +# 06G-P4-2793-KR + 3842 2793 GeForce GTX Titan SC Signature +# 06G-P4-2794-KR + 3842 2794 GeForce GTX Titan SC Hydro Copper +# 06G-P4-2795-KR + 3842 2795 GeForce GTX Titan SC Hydro Copper Signature + 1007 GK110 [GeForce GTX 780 Rev. 2] + 1008 GK110 [GeForce GTX 780 Ti 6GB] + 100a GK110B [GeForce GTX 780 Ti] + 100c GK110B [GeForce GTX TITAN Black] + 101e GK110GL [Tesla K20X] + 101f GK110GL [Tesla K20] + 1020 GK110GL [Tesla K20X] + 1021 GK110GL [Tesla K20Xm] + 1022 GK110GL [Tesla K20c] + 1023 GK110BGL [Tesla K40m] + 10de 097e 12GB Computational Accelerator + 1024 GK180GL [Tesla K40c] + 1026 GK110GL [Tesla K20s] + 1027 GK110BGL [Tesla K40st] + 1028 GK110GL [Tesla K20m] + 1029 GK110BGL [Tesla K40s] + 102a GK110BGL [Tesla K40t] + 102d GK210GL [Tesla K80] + 102e GK110BGL [Tesla K40d] + 102f GK110BGL [Tesla Stella Solo] + 103a GK110GL [Quadro K6000] + 103c GK110GL [Quadro K5200] + 103f GK110BGL [Tesla Stella SXM] + 1040 GF119 [GeForce GT 520] + 1043 83a0 ENGT520 SILENT + 1042 GF119 [GeForce 510] + 1045 GF119 + 1048 GF119 [GeForce 605] + 1049 GF119 [GeForce GT 620 OEM] + 104a GF119 [GeForce GT 610] +# 1024MB with passive cooling (heatsink) + 10b0 104a Gainward GeForce GT 610 + 104b GF119 [GeForce GT 625 OEM] + 104c GF119 [GeForce GT 705] + 104d GF119 [GeForce GT 710] + 1050 GF119M [GeForce GT 520M] + 1051 GF119M [GeForce GT 520MX] + 1052 GF119M [GeForce GT 520M] + 1054 GF119M [GeForce 410M] + 1055 GF119M [GeForce 410M] + 1056 GF119M [NVS 4200M] + 1057 GF119M [Quadro NVS 4200M] + 1058 GF119M [GeForce 610M] + 103c 2aed GeForce 610 + 103c 2af1 GeForce 610 + 1043 10ac GeForce GT 610M + 1043 10bc GeForce GT 610M + 1043 1652 GeForce GT 610M + 17aa 367a GeForce 610M + 17aa 3682 GeForce 800A + 17aa 3687 GeForce 800A + 17aa 3692 GeForce 705A + 17aa 3695 GeForce 800A + 17aa a117 GeForce 610M + 1059 GF119M [GeForce 610M] + 105a GF119M [GeForce 610M] + 1043 2111 GeForce GT 610M + 1043 2112 GeForce GT 610M + 105b GF119M [GeForce 705M] + 103c 2afb GeForce 705A + 17aa 309d GeForce 705A + 17aa 30b1 GeForce 800A + 17aa 30f3 GeForce 705A + 17aa 36a1 GeForce 800A + 107c GF119 [NVS 315] + 107d GF119 [NVS 310] + 1080 GF110 [GeForce GTX 580] + 1081 GF110 [GeForce GTX 570] + 10de 087e Leadtek WinFast GTX 570 + 1082 GF110 [GeForce GTX 560 Ti OEM] + 1084 GF110 [GeForce GTX 560 OEM] + 1086 GF110 [GeForce GTX 570 Rev. 2] + 1087 GF110 [GeForce GTX 560 Ti 448 Cores] + 1088 GF110 [GeForce GTX 590] + 1089 GF110 [GeForce GTX 580 Rev. 2] + 108b GF110 [GeForce GTX 580] + 108e GF110GL [Tesla C2090] + 1091 GF110GL [Tesla M2090] + 10de 088e Tesla X2090 + 10de 0891 Tesla X2090 + 10de 0974 Tesla X2090 + 10de 098d Tesla X2090 + 1094 GF110GL [Tesla M2075] + 10de 0888 Tesla M2075 + 1096 GF110GL [Tesla C2050 / C2075] + 10de 0910 Tesla C2075 + 10de 0911 Tesla C2050 + 109a GF100GLM [Quadro 5010M] + 109b GF100GL [Quadro 7000] + 10de 0918 Quadro 7000 + 10c0 GT218 [GeForce 9300 GS Rev. 2] + 10c3 GT218 [GeForce 8400 GS Rev. 3] + 10c5 GT218 [GeForce 405] + 10d8 GT218 [NVS 300] + 10ef GP102 HDMI Audio Controller + 10f0 GP104 High Definition Audio Controller + 10f1 GP106 High Definition Audio Controller + 1043 85b6 DUAL-GTX1060-O6G [GeForce GTX 1060 6GB Dual] + 10f7 TU102 High Definition Audio Controller + 10f8 TU104 HD Audio Controller + 10f9 TU106 High Definition Audio Controller + 1043 8673 TURBO-RTX2070-8G + 1140 GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M] + 1019 0799 GeForce 820M + 1019 999f GeForce GT 720M + 1025 0600 GeForce GT 620M + 1025 0606 GeForce GT 620M + 1025 064a GeForce GT 620M + 1025 064c GeForce GT 620M + 1025 067a GeForce GT 620M + 1025 0680 GeForce GT 620M + 1025 0686 GeForce 710M + 1025 0689 GeForce 710M + 1025 068b GeForce 710M + 1025 068d GeForce 710M + 1025 068e GeForce 710M + 1025 0691 GeForce 710M + 1025 0692 GeForce GT 620M + 1025 0694 GeForce GT 620M + 1025 0702 GeForce GT 620M + 1025 0719 GeForce GT 620M + 1025 0725 GeForce GT 620M + 1025 0728 GeForce GT 620M + 1025 072b GeForce GT 620M + 1025 072e GeForce GT 620M + 1025 0732 GeForce GT 620M + 1025 0763 GeForce GT 720M + 1025 0773 GeForce 710M + 1025 0774 GeForce 710M + 1025 0776 GeForce GT 720M + 1025 077a GeForce 710M + 1025 077b GeForce 710M + 1025 077c GeForce 710M + 1025 077d GeForce 710M + 1025 077e GeForce 710M + 1025 077f GeForce 710M + 1025 0781 GeForce GT 720M + 1025 0798 GeForce GT 720M + 1025 0799 GeForce GT 720M + 1025 079b GeForce GT 720M + 1025 079c GeForce GT 720M + 1025 0807 GeForce GT 720M + 1025 0821 GeForce GT 720M + 1025 0823 GeForce GT 720M + 1025 0830 GeForce GT 720M + 1025 0833 GeForce GT 720M + 1025 0837 GeForce GT 720M + 1025 083e GeForce 820M + 1025 0841 GeForce 710M + 1025 0854 GeForce 820M + 1025 0855 GeForce 820M + 1025 0856 GeForce 820M + 1025 0857 GeForce 820M + 1025 0858 GeForce 820M + 1025 0863 GeForce 820M + 1025 0868 GeForce 820M + 1025 0869 GeForce 810M + 1025 0873 GeForce 820M + 1025 0878 GeForce 820M + 1025 087b GeForce 820M + 1025 087c GeForce 810M + 1025 0881 GeForce 820M + 1025 088a GeForce 820M + 1025 089b GeForce 820M + 1025 090f GeForce 820M + 1025 0921 GeForce 820M + 1025 092e GeForce 810M + 1025 092f GeForce 820M + 1025 0932 GeForce 820M + 1025 093a GeForce 820M + 1025 093c GeForce 820M + 1025 093f GeForce 820M + 1025 0941 GeForce 820M + 1025 0945 GeForce 820M + 1025 0954 GeForce 820M + 1025 0965 GeForce 820M + 1028 054d GeForce GT 630M + 1028 054e GeForce GT 630M + 1028 0554 GeForce GT 620M + 1028 0557 GeForce GT 620M + 1028 0562 GeForce GT 625M + 1028 0565 GeForce GT 630M + 1028 0568 GeForce GT 630M + 1028 0590 GeForce GT 630M + 1028 0592 GeForce GT 625M + 1028 0594 GeForce GT 625M + 1028 0595 GeForce GT 625M + 1028 05a2 GeForce GT 625M + 1028 05b1 GeForce GT 625M + 1028 05b3 GeForce GT 625M + 1028 05da GeForce GT 630M + 1028 05de GeForce GT 720M + 1028 05e0 GeForce GT 720M + 1028 05e8 GeForce GT 630M + 1028 05f4 GeForce GT 720M + 1028 060f GeForce GT 720M + 1028 064e GeForce 820M + 1028 0652 GeForce 820M + 1028 0653 GeForce 820M + 1028 0655 GeForce 820M + 1028 065e GeForce 820M + 1028 0662 GeForce 820M + 1028 068d GeForce 820M + 1028 06ad GeForce 820M + 1028 06ae GeForce 820M + 1028 06af GeForce 820M + 1028 06b0 GeForce 820M + 1028 06c0 GeForce 820M + 1028 06c1 GeForce 820M + 103c 18ef GeForce GT 630M + 103c 18f9 GeForce GT 630M + 103c 18fb GeForce GT 630M + 103c 18fd GeForce GT 630M + 103c 18ff GeForce GT 630M + 103c 218a GeForce 820M + 103c 21bb GeForce 820M + 103c 21bc GeForce 820M + 103c 220e GeForce 820M + 103c 2210 GeForce 820M + 103c 2212 GeForce 820M + 103c 2214 GeForce 820M + 103c 2218 GeForce 820M + 103c 225b GeForce 820M + 103c 225d GeForce 820M + 103c 226d GeForce 820M + 103c 226f GeForce 820M + 103c 22d2 GeForce 820M + 103c 22d9 GeForce 820M + 103c 2335 GeForce 820M + 103c 2337 GeForce 820M + 103c 2aef GeForce GT 720A + 103c 2af9 GeForce 710A + 1043 10dd NVS 5200M + 1043 10ed NVS 5200M + 1043 11fd GeForce GT 720M + 1043 124d GeForce GT 720M + 1043 126d GeForce GT 720M + 1043 131d GeForce GT 720M + 1043 13fd GeForce GT 720M + 1043 14c7 GeForce GT 720M + 1043 1507 GeForce GT 620M + 1043 15ad GeForce 820M + 1043 15ed GeForce 820M + 1043 160d GeForce 820M + 1043 163d GeForce 820M + 1043 166d GeForce 820M + 1043 16cd GeForce 820M + 1043 16dd GeForce 820M + 1043 170d GeForce 820M + 1043 176d GeForce 820M + 1043 178d GeForce 820M + 1043 179d GeForce 820M + 1043 17dd GeForce 820M + 1043 2132 GeForce GT 620M + 1043 2136 NVS 5200M + 1043 21ba GeForce GT 720M + 1043 21fa GeForce GT 720M + 1043 220a GeForce GT 720M + 1043 221a GeForce GT 720M + 1043 223a GeForce GT 710M + 1043 224a GeForce GT 710M + 1043 227a GeForce 820M + 1043 228a GeForce 820M + 1043 232a GeForce 820M + 1043 233a GeForce 820M + 1043 235a GeForce 820M + 1043 236a GeForce 820M + 1043 238a GeForce 820M + 1043 8595 GeForce GT 720M + 1043 85ea GeForce GT 720M + 1043 85eb GeForce 820M + 1043 85ec GeForce 820M + 1043 85ee GeForce GT 720M + 1043 85f3 GeForce 820M + 1043 860e GeForce 820M + 1043 861a GeForce 820M + 1043 861b GeForce 820M + 1043 8628 GeForce 820M + 1043 8643 GeForce 820M + 1043 864c GeForce 820M + 1043 8652 GeForce 820M + 1043 8660 GeForce 820M + 1043 8661 GeForce 820M + 105b 0dac GeForce GT 720M + 105b 0dad GeForce GT 720M + 105b 0ef3 GeForce GT 720M + 1072 152d GeForce GT 720M + 10cf 17f5 GeForce GT 720M + 1179 fa01 GeForce 710M + 1179 fa02 GeForce 710M + 1179 fa03 GeForce 710M + 1179 fa05 GeForce 710M + 1179 fa11 GeForce 710M + 1179 fa13 GeForce 710M + 1179 fa18 GeForce 710M + 1179 fa19 GeForce 710M + 1179 fa21 GeForce 710M + 1179 fa23 GeForce 710M + 1179 fa2a GeForce 710M + 1179 fa32 GeForce 710M + 1179 fa33 GeForce 710M + 1179 fa36 GeForce 710M + 1179 fa38 GeForce 710M + 1179 fa42 GeForce 710M + 1179 fa43 GeForce 710M + 1179 fa45 GeForce 710M + 1179 fa47 GeForce 710M + 1179 fa49 GeForce 710M + 1179 fa58 GeForce 710M + 1179 fa59 GeForce 710M + 1179 fa88 GeForce 710M + 1179 fa89 GeForce 710M + 144d b092 GeForce GT 620M + 144d c0d5 GeForce GT 630M + 144d c0d7 GeForce GT 620M + 144d c0e2 NVS 5200M + 144d c0e3 NVS 5200M + 144d c0e4 NVS 5200M + 144d c10d GeForce 820M + 144d c652 GeForce GT 620M on NP300E5C series laptop + 144d c709 GeForce 710M + 144d c711 GeForce 710M + 144d c736 GeForce 710M + 144d c737 GeForce 710M + 144d c745 GeForce 820M + 144d c750 GeForce 820M + 1462 10b8 GeForce GT 710M + 1462 10e9 GeForce GT 720M + 1462 1116 GeForce 820M + 1462 aa33 GeForce 720M + 1462 aaa2 GeForce GT 720M + 1462 aaa3 GeForce 820M + 1462 acb2 GeForce GT 720M + 1462 acc1 GeForce GT 720M + 1462 ae61 GeForce 720M + 1462 ae65 GeForce GT 720M + 1462 ae6a GeForce 820M + 1462 ae71 GeForce GT 720M + 14c0 0083 GeForce 820M + 152d 0926 GeForce 620M + 152d 0982 GeForce GT 630M + 152d 0983 GeForce GT 630M + 152d 1005 GeForce GT 820M + 152d 1012 GeForce 710M + 152d 1019 GeForce 820M + 152d 1030 GeForce GT 630M + 152d 1055 GeForce 710M + 152d 1067 GeForce GT 720M + 152d 1072 GeForce GT 720M + 152d 1086 GeForce 820M + 152d 1092 GeForce 820M + 17aa 2200 NVS 5200M + 17aa 2213 GeForce GT 720M + 17aa 2220 GeForce GT 720M + 17aa 309c GeForce GT 720A + 17aa 30b4 GeForce 820A + 17aa 30b7 GeForce 720A + 17aa 30e4 GeForce 820A + 17aa 361b GeForce 820A + 17aa 361c GeForce 820A + 17aa 361d GeForce 820A + 17aa 3656 GeForce GT 620M + 17aa 365a GeForce 705M + 17aa 365e GeForce 800M + 17aa 3661 GeForce 820A + 17aa 366c GeForce 800M + 17aa 3685 GeForce 800M + 17aa 3686 GeForce 800M + 17aa 3687 GeForce 705A + 17aa 3696 GeForce 820A + 17aa 369b GeForce 820A + 17aa 369c GeForce 820A + 17aa 369d GeForce 820A + 17aa 369e GeForce 820A + 17aa 36a9 GeForce 820A + 17aa 36af GeForce 820A + 17aa 36b0 GeForce 820A + 17aa 36b6 GeForce 820A + 17aa 3800 GeForce GT 720M + 17aa 3801 GeForce GT 720M + 17aa 3802 GeForce GT 720M + 17aa 3803 GeForce GT 720M + 17aa 3804 GeForce GT 720M + 17aa 3806 GeForce GT 720M + 17aa 3808 GeForce GT 720M + 17aa 380d GeForce 820M + 17aa 380e GeForce 820M + 17aa 380f GeForce 820M + 17aa 3811 GeForce 820M + 17aa 3812 GeForce 820M + 17aa 3813 GeForce 820M + 17aa 3816 GeForce 820M + 17aa 3818 GeForce 820M + 17aa 381a GeForce 820M + 17aa 381c GeForce 820M + 17aa 3901 GeForce 610M / GT 620M + 17aa 3902 GeForce 710M + 17aa 3903 GeForce 610M/710M + 17aa 3904 GeForce GT 620M/625M + 17aa 3905 GeForce GT 720M + 17aa 3907 GeForce 820M + 17aa 3910 GeForce 720M + 17aa 3912 GeForce 720M + 17aa 3913 GeForce 820M + 17aa 3915 GeForce 820M + 17aa 3977 GeForce GT 720M + 17aa 3983 GeForce 610M + 17aa 5001 GeForce 610M + 17aa 5003 GeForce GT 720M + 17aa 5005 GeForce 705M + 17aa 500d GeForce GT 620M + 17aa 5014 GeForce 710M + 17aa 5017 GeForce 710M + 17aa 5019 GeForce 710M + 17aa 501a GeForce 710M + 17aa 501f GeForce GT 720M + 17aa 5025 GeForce 710M + 17aa 5027 GeForce 710M + 17aa 502a GeForce 710M + 17aa 502b GeForce GT 720M + 17aa 502d GeForce 710M + 17aa 502e GeForce GT 720M + 17aa 502f GeForce GT 720M + 17aa 5030 GeForce 705M + 17aa 5031 GeForce 705M + 17aa 5032 GeForce 820M + 17aa 5033 GeForce 820M + 17aa 503e GeForce 710M + 17aa 503f GeForce 820M + 17aa 5040 GeForce 820M + 1854 0177 GeForce 710M + 1854 0180 GeForce 710M + 1854 0190 GeForce GT 720M + 1854 0192 GeForce GT 720M + 1854 0224 GeForce 820M + 1b0a 01c0 GeForce 820M + 1b0a 20dd GeForce GT 620M + 1b0a 20df GeForce GT 620M + 1b0a 210e GeForce 820M + 1b0a 2202 GeForce GT 720M + 1b0a 90d7 GeForce 820M + 1b0a 90dd GeForce 820M + 1b50 5530 GeForce 820M + 1b6c 5531 GeForce GT 720M + 1bab 0106 GeForce 820M + 1d05 1013 GeForce 810M + 1180 GK104 [GeForce GTX 680] + 1043 83f1 GTX680-DC2-2GD5 + 3842 3682 GeForce GTX 680 Mac Edition + 1182 GK104 [GeForce GTX 760 Ti] + 1183 GK104 [GeForce GTX 660 Ti] + 1184 GK104 [GeForce GTX 770] + 1185 GK104 [GeForce GTX 660 OEM] + 10de 106f GK104 [GeForce GTX 760 OEM] + 1186 GK104 [GeForce GTX 660 Ti] + 1187 GK104 [GeForce GTX 760] + 1188 GK104 [GeForce GTX 690] + 1189 GK104 [GeForce GTX 670] + 10de 1074 GK104 [GeForce GTX 760 Ti OEM] + 118a GK104GL [GRID K520] + 118b GK104GL [GRID K2 GeForce USM] + 118c GK104 [GRID K2 NVS USM] +# GRID K2 USM + 118d GK104GL [GRID K200 vGPU] + 10de 101d GRID K200 + 118e GK104 [GeForce GTX 760 OEM] + 118f GK104GL [Tesla K10] + 1191 GK104 [GeForce GTX 760 Rev. 2] + 1193 GK104 [GeForce GTX 760 Ti OEM] + 1194 GK104GL [Tesla K8] + 1195 GK104 [GeForce GTX 660 Rev. 2] + 1198 GK104M [GeForce GTX 880M] + 1199 GK104M [GeForce GTX 870M] + 119a GK104M [GeForce GTX 860M] + 119d GK104M [GeForce GTX 775M Mac Edition] + 119e GK104M [GeForce GTX 780M Mac Edition] + 119f GK104M [GeForce GTX 780M] + 11a0 GK104M [GeForce GTX 680M] + 11a1 GK104M [GeForce GTX 670MX] + 11a2 GK104M [GeForce GTX 675MX Mac Edition] + 11a3 GK104M [GeForce GTX 680MX] + 106b 010d iMac 13,2 + 11a7 GK104M [GeForce GTX 675MX] + 11a9 GK104M [GeForce GTX 870M] + 11af GK104GLM [GRID IceCube] + 11b0 GK104GL [GRID K240Q / K260Q vGPU] + 10de 101a GRID K240Q + 10de 101b GRID K260Q + 11b1 GK104GL [GRID K2 Tesla USM] + 11b4 GK104GL [Quadro K4200] + 11b6 GK104GLM [Quadro K3100M] + 11b7 GK104GLM [Quadro K4100M] + 11b8 GK104GLM [Quadro K5100M] + 11b9 GK104GLM + 11ba GK104GL [Quadro K5000] + 11bb GK104GL [Quadro 4100] + 11bc GK104GLM [Quadro K5000M] + 11bd GK104GLM [Quadro K4000M] + 11be GK104GLM [Quadro K3000M] + 11bf GK104GL [GRID K2] + 11c0 GK106 [GeForce GTX 660] + 11c2 GK106 [GeForce GTX 650 Ti Boost] + 1043 845b GeForce GTX 650 Ti Boost DirectCU II OC + 1462 2874 GeForce GTX 650 Ti Boost TwinFrozr II OC + 1569 11c2 GeForce GTX 650 Ti Boost OC + 19da 1281 GeForce GTX 650 Ti Boost OC + 3842 3657 GeForce GTX 650 Ti Boost + 3842 3658 GeForce GTX 650 Ti Boost Superclocked + 11c3 GK106 [GeForce GTX 650 Ti OEM] + 10de 1030 GeForce GTX 650 Ti OEM + 11c4 GK106 [GeForce GTX 645 OEM] + 11c5 GK106 [GeForce GT 740] + 11c6 GK106 [GeForce GTX 650 Ti] + 11c7 GK106 [GeForce GTX 750 Ti] + 11c8 GK106 [GeForce GTX 650 OEM] + 11cb GK106 [GeForce GT 740] + 11e0 GK106M [GeForce GTX 770M] + 11e1 GK106M [GeForce GTX 765M] + 11e2 GK106M [GeForce GTX 765M] + 11e3 GK106M [GeForce GTX 760M] + 17aa 3683 GeForce GTX 760A + 11e7 GK106M + 11fa GK106GL [Quadro K4000] + 11fc GK106GLM [Quadro K2100M] + 1200 GF114 [GeForce GTX 560 Ti] + 1201 GF114 [GeForce GTX 560] + 1202 GF114 [GeForce GTX 560 Ti OEM] + 1203 GF114 [GeForce GTX 460 SE v2] + 1205 GF114 [GeForce GTX 460 v2] + 1206 GF114 [GeForce GTX 555] + 1207 GF114 [GeForce GT 645 OEM] + 1208 GF114 [GeForce GTX 560 SE] + 1210 GF114M [GeForce GTX 570M] + 1211 GF114M [GeForce GTX 580M] + 1212 GF114M [GeForce GTX 675M] + 1213 GF114M [GeForce GTX 670M] + 1241 GF116 [GeForce GT 545 OEM] + 1243 GF116 [GeForce GT 545] + 1244 GF116 [GeForce GTX 550 Ti] + 1245 GF116 [GeForce GTS 450 Rev. 2] + 1246 GF116M [GeForce GT 550M] + 1247 GF116M [GeForce GT 555M/635M] + 1043 1752 GeForce GT 555M + 1043 2050 GeForce GT 555M + 1043 2051 GeForce GT 555M + 1043 212a GeForce GT 635M + 1043 212b GeForce GT 635M + 1043 212c GeForce GT 635M + 152d 0930 GeForce GT 635M + 1248 GF116M [GeForce GT 555M/635M] + 152d 0930 GeForce GT 635M + 17c0 10e7 GeForce GT 555M + 17c0 10e8 GeForce GT 555M + 17c0 10ea GeForce GT 555M + 1854 0890 GeForce GT 555M + 1854 0891 GeForce GT 555M + 1854 1795 GeForce GT 555M + 1854 1796 GeForce GT 555M + 1854 3005 GeForce GT 555M + 1249 GF116 [GeForce GTS 450 Rev. 3] + 124b GF116 [GeForce GT 640 OEM] + 124d GF116M [GeForce GT 555M/635M] + 1028 0491 GeForce GT 555M + 1028 0570 GeForce GT 555M + 1028 0571 GeForce GT 555M + 1462 108d GeForce GT 555M + 1462 10cc GeForce GT 635M + 1251 GF116M [GeForce GT 560M] + 1280 GK208 [GeForce GT 635] + 1281 GK208 [GeForce GT 710] + 1282 GK208 [GeForce GT 640 Rev. 2] + 1284 GK208 [GeForce GT 630 Rev. 2] + 1286 GK208 [GeForce GT 720] + 1287 GK208B [GeForce GT 730] + 1288 GK208B [GeForce GT 720] + 1289 GK208 [GeForce GT 710] + 128a GK208B + 128b GK208B [GeForce GT 710] + 1043 85f7 GT710-SL-1GD5 + 1043 8770 GT710-4H-SL-2GD5 + 128c GK208B + 1290 GK208M [GeForce GT 730M] + 103c 2afa GeForce GT 730A + 103c 2b04 GeForce GT 730A + 1043 13ad GeForce GT 730M + 1043 13cd GeForce GT 730M + 1291 GK208M [GeForce GT 735M] + 1292 GK208M [GeForce GT 740M] + 17aa 3675 GeForce GT 740A + 17aa 367c GeForce GT 740A + 17aa 3684 GeForce GT 740A + 1293 GK208M [GeForce GT 730M] + 1294 GK208M [GeForce GT 740M] + 1295 GK208M [GeForce 710M] + 103c 2b0d GeForce 710A + 103c 2b0f GeForce 710A + 103c 2b11 GeForce 710A + 103c 2b20 GeForce 810A + 103c 2b21 GeForce 810A + 103c 2b22 GeForce 810A + 17aa 367a GeForce 805A + 17aa 367c GeForce 710A + 1296 GK208M [GeForce 825M] + 1298 GK208M [GeForce GT 720M] + 1299 GK208BM [GeForce 920M] + 17aa 30bb GeForce 920A + 17aa 30df GeForce 920A + 17aa 36a7 GeForce 920A + 17aa 36af GeForce 920M + 129a GK208BM [GeForce 910M] + 12a0 GK208 + 12b9 GK208GLM [Quadro K610M] + 12ba GK208GLM [Quadro K510M] + 1340 GM108M [GeForce 830M] + 103c 2b2b GeForce 830A + 1341 GM108M [GeForce 840M] + 17aa 3697 GeForce 840A + 17aa 3699 GeForce 840A + 17aa 369c GeForce 840A + 1344 GM108M [GeForce 845M] + 1346 GM108M [GeForce 930M] + 1347 GM108M [GeForce 940M] + 1348 GM108M [GeForce 945M / 945A] + 1349 GM108M [GeForce 930M] + 134b GM108M [GeForce 940MX] + 134d GM108M [GeForce 940MX] + 17aa 2248 ThinkPad T570 + 134e GM108M [GeForce 930MX] + 134f GM108M [GeForce 920MX] + 137a GM108GLM [Quadro K620M / Quadro M500M] + 17aa 505a Quadro M500M + 137b GM108GLM [Quadro M520 Mobile] + 137d GM108M [GeForce 940A] + 1380 GM107 [GeForce GTX 750 Ti] + 1381 GM107 [GeForce GTX 750] + 1382 GM107 [GeForce GTX 745] + 1389 GM107GL [GRID M30] + 1390 GM107M [GeForce 845M] + 1391 GM107M [GeForce GTX 850M] + 17aa 3697 GeForce GTX 850A + 17aa a125 GeForce GTX 850A + 1392 GM107M [GeForce GTX 860M] + 1393 GM107M [GeForce 840M] + 1398 GM107M [GeForce 845M] + 1399 GM107M [GeForce 945M] + 139a GM107M [GeForce GTX 950M] + 17aa 362c GeForce GTX 950A + 17aa 362f GeForce GTX 950A + 17aa 363f GeForce GTX 950A + 17aa 3640 GeForce GTX 950A + 17aa 3647 GeForce GTX 950A + 17aa 36b9 GeForce GTX 950A + 139b GM107M [GeForce GTX 960M] + 1028 06e4 XPS 15 9550 + 103c 2b4c GeForce GTX 960A + 139c GM107M [GeForce 940M] + 139d GM107M [GeForce GTX 750 Ti] + 13b0 GM107GLM [Quadro M2000M] + 13b1 GM107GLM [Quadro M1000M] + 13b2 GM107GLM [Quadro M600M] + 13b3 GM107GLM [Quadro K2200M] + 13b4 GM107GLM [Quadro M620 Mobile] + 13b6 GM107GLM [Quadro M1200 Mobile] + 13b9 GM107GL [NVS 810] + 13ba GM107GL [Quadro K2200] + 13bb GM107GL [Quadro K620] + 13bc GM107GL [Quadro K1200] + 13bd GM107GL [Tesla M10] + 10de 110a GRID M40 + 10de 1160 Tesla M10 + 10de 11d2 GRID M10-8Q + 13c0 GM204 [GeForce GTX 980] + 1043 8504 GTX980-4GD5 + 13c1 GM204 + 13c2 GM204 [GeForce GTX 970] + 13c3 GM204 + 13d7 GM204M [GeForce GTX 980M] + 13d8 GM204M [GeForce GTX 970M] + 13d9 GM204M [GeForce GTX 965M] + 13da GM204M [GeForce GTX 980 Mobile] + 13e7 GM204GL [GeForce GTX 980 Engineering Sample] + 13f0 GM204GL [Quadro M5000] + 13f1 GM204GL [Quadro M4000] + 13f2 GM204GL [Tesla M60] + 10de 114d GRID M60-1Q + 10de 114e GRID M60-2Q + 10de 1150 GRID M60-8Q + 10de 11b0 GRID M60-4A + 13f3 GM204GL [Tesla M6] + 10de 1184 GRID M6-8Q + 13f8 GM204GLM [Quadro M5000M / M5000 SE] + 13f9 GM204GLM [Quadro M4000M] + 13fa GM204GLM [Quadro M3000M] + 10de 11c9 Quadro M3000 SE + 13fb GM204GLM [Quadro M5500] + 1401 GM206 [GeForce GTX 960] + 1402 GM206 [GeForce GTX 950] + 1404 GM206 [GeForce GTX 960 FAKE] + 1406 GM206 [GeForce GTX 960 OEM] + 1407 GM206 [GeForce GTX 750 v2] + 1427 GM206M [GeForce GTX 965M] + 103c 825b OMEN-17-w001nv + 1430 GM206GL [Quadro M2000] + 1431 GM206GL [Tesla M4] + 1436 GM206GLM [Quadro M2200 Mobile] + 15f0 GP100GL [Quadro GP100] + 15f1 GP100GL + 15f7 GP100GL [Tesla P100 PCIe 12GB] + 15f8 GP100GL [Tesla P100 PCIe 16GB] + 15f9 GP100GL [Tesla P100 SXM2 16GB] + 1617 GM204M [GeForce GTX 980M] + 1618 GM204M [GeForce GTX 970M] + 1619 GM204M [GeForce GTX 965M] + 161a GM204M [GeForce GTX 980 Mobile] + 1667 GM204M [GeForce GTX 965M] + 1725 GP100 + 172e GP100 + 172f GP100 + 174d GM108M [GeForce MX130] + 174e GM108M [GeForce MX110] + 1789 GM107GL [GRID M3-3020] + 179c GM107 [GeForce 940MX] + 1025 1094 Acer Aspire E5-575G + 17c2 GM200 [GeForce GTX TITAN X] + 17c8 GM200 [GeForce GTX 980 Ti] + 17f0 GM200GL [Quadro M6000] + 10de 1141 VCA 6000 + 17f1 GM200GL [Quadro M6000 24GB] + 17fd GM200GL [Tesla M40] + 1ad0 Tegra PCIe x8 Endpoint + 1ad1 Tegra PCIe x4/x8 Endpoint/Root Complex + 1ad2 Tegra PCIe x1 Root Complex + 1ad3 Xavier SATA Controller + 1ad6 TU102 USB 3.1 Host Controller + 1ad7 TU102 USB Type-C UCSI Controller + 1ad8 TU104 USB 3.1 Host Controller + 1ad9 TU104 USB Type-C UCSI Controller + 1ada TU106 USB 3.1 Host Controller + 1043 8673 TURBO-RTX2070-8G + 1adb TU106 USB Type-C UCSI Controller + 1043 8673 TURBO-RTX2070-8G + 1aeb TU116 High Definition Audio Controller + 1aec TU116 USB 3.1 Host Controller + 1aed TU116 USB Type-C UCSI Controller + 1aef GA102 High Definition Audio Controller + 1b00 GP102 [TITAN X] + 1b01 GP102 [GeForce GTX 1080 Ti 10GB] + 1b02 GP102 [TITAN Xp] + 1b04 GP102 + 1b06 GP102 [GeForce GTX 1080 Ti] + 1b07 GP102 [P102-100] + 1b30 GP102GL [Quadro P6000] + 1b38 GP102GL [Tesla P40] + 1b39 GP102GL [Tesla P10] + 1b70 GP102GL + 1b78 GP102GL + 1b80 GP104 [GeForce GTX 1080] + 1b81 GP104 [GeForce GTX 1070] + 1b82 GP104 [GeForce GTX 1070 Ti] + 1b83 GP104 [GeForce GTX 1060 6GB] + 1b84 GP104 [GeForce GTX 1060 3GB] + 1b87 GP104 [P104-100] + 1ba0 GP104M [GeForce GTX 1080 Mobile] + 1ba1 GP104M [GeForce GTX 1070 Mobile] + 1458 1651 GeForce GTX 1070 Max-Q + 1462 11e8 GeForce GTX 1070 Max-Q + 1462 11e9 GeForce GTX 1070 Max-Q + 1558 9501 GeForce GTX 1070 Max-Q + 1ba2 GP104M [GeForce GTX 1070 Mobile] + 1ba9 GP104M + 1baa GP104M + 1bad GP104 [GeForce GTX 1070 Engineering Sample] + 1bb0 GP104GL [Quadro P5000] + 1bb1 GP104GL [Quadro P4000] + 1bb3 GP104GL [Tesla P4] + 1bb4 GP104GL [Tesla P6] + 1bb5 GP104GLM [Quadro P5200 Mobile] + 103c 842f P5200 [Zbook 17 G5 mobile workstation] + 1bb6 GP104GLM [Quadro P5000 Mobile] + 1bb7 GP104GLM [Quadro P4000 Mobile] + 1462 11e9 Quadro P4000 Max-Q + 1bb8 GP104GLM [Quadro P3000 Mobile] + 1bb9 GP104GLM [Quadro P4200 Mobile] + 103c 842f P4200 [Zbook 17 G5 mobile workstation] + 1bbb GP104GLM [Quadro P3200 Mobile] + 103c 842f P3200 [Zbook 17 G5 moble workstation] + 1bc7 GP104 [P104-101] + 1be0 GP104BM [GeForce GTX 1080 Mobile] + 1028 07c0 GeForce GTX 1080 Max-Q + 1458 355b GeForce GTX 1080 Max-Q + 1be1 GP104BM [GeForce GTX 1070 Mobile] + 1c00 GP106 + 1c01 GP106 + 1c02 GP106 [GeForce GTX 1060 3GB] + 1c03 GP106 [GeForce GTX 1060 6GB] + 1043 85b6 DUAL-GTX1060-O6G [GeForce GTX 1060 6GB Dual] + 1c04 GP106 [GeForce GTX 1060 5GB] + 1c06 GP106 [GeForce GTX 1060 6GB Rev. 2] + 1c07 GP106 [P106-100] + 1c09 GP106 [P106-090] + 1c20 GP106M [GeForce GTX 1060 Mobile] + 17aa 39b9 GeForce GTX 1060 Max-Q 3GB + 1c21 GP106M [GeForce GTX 1050 Ti Mobile] + 1c22 GP106M [GeForce GTX 1050 Mobile] + 1c23 GP106M [GeForce GTX 1060 Mobile Rev. 2] + 1414 0020 GTX 1060 Mobile + 1c2d GP106M + 1c30 GP106GL [Quadro P2000] + 1c31 GP106GL [Quadro P2200] + 1c35 GP106M [Quadro P2000 Mobile] + 1c36 GP106 [P106M] + 1c60 GP106BM [GeForce GTX 1060 Mobile 6GB] + 103c 8390 GeForce GTX 1060 Max-Q 6GB + 1c61 GP106BM [GeForce GTX 1050 Ti Mobile] + 1c62 GP106BM [GeForce GTX 1050 Mobile] + 1c70 GP106GL + 1c81 GP107 [GeForce GTX 1050] + 1c82 GP107 [GeForce GTX 1050 Ti] + 1043 8613 PH-GTX1050TI-4G + 1458 3763 GV-N105TOC-4GD + 1c83 GP107 [GeForce GTX 1050 3GB] + 1c8c GP107M [GeForce GTX 1050 Ti Mobile] + 1c8d GP107M [GeForce GTX 1050 Mobile] + 1c8e GP107M + 1c8f GP107M [GeForce GTX 1050 Ti Max-Q] + 1c90 GP107M [GeForce MX150] + 1c91 GP107M [GeForce GTX 1050 3 GB Max-Q] + 1c92 GP107M [GeForce GTX 1050 Mobile] + 1c94 GP107M [GeForce MX350] + 1c96 GP107M [GeForce MX350] + 1ca7 GP107GL + 1ca8 GP107GL + 1caa GP107GL + 1cb1 GP107GL [Quadro P1000] + 1cb2 GP107GL [Quadro P600] + 1cb3 GP107GL [Quadro P400] + 1cb6 GP107GL [Quadro P620] + 1cba GP107GLM [Quadro P2000 Mobile] + 103c 842c P2000 [Zbook 15 G5 mobile workstation] + 103c 842f P2000 [Zbook 17 G5 mobile workstation] + 1cbb GP107GLM [Quadro P1000 Mobile] + 103c 8429 P1000 [Zbook Studio G5 mobile workstation] + 103c 842c P1000 [Zbook 15 G5 mobile workstation] + 103c 842f P1000 [Zbook 17 G5 mobile workstation] + 103c 8451 P1000 [Zbook Studio x360 G5 mobile workstation] + 1cbc GP107GLM [Quadro P600 Mobile] + 1cbd GP107GLM [Quadro P620] + 1ccc GP107BM [GeForce GTX 1050 Ti Mobile] + 1ccd GP107BM [GeForce GTX 1050 Mobile] + 1cfa GP107GL [Quadro P2000] + 1cfb GP107GL [Quadro P1000] + 1d01 GP108 [GeForce GT 1030] + 1d02 GP108 [GeForce GT 1010] + 1d10 GP108M [GeForce MX150] + 17aa 225e ThinkPad T480 + 1d11 GP108M [GeForce MX230] + 1d12 GP108M [GeForce MX150] + 1d72 1701 Mi Notebook Pro [GeForce MX150] + 1d13 GP108M [GeForce MX250] + 1d16 GP108M [GeForce MX330] + 1d33 GP108GLM [Quadro P500 Mobile] + 1d34 GP108GLM [Quadro P520] + 1d52 GP108BM [GeForce MX250] + 1d56 GP108BM [GeForce MX330] + 1d81 GV100 [TITAN V] + 1db1 GV100GL [Tesla V100 SXM2 16GB] + 1db2 GV100GL [Tesla V100 DGXS 16GB] + 1db3 GV100GL [Tesla V100 FHHL 16GB] + 1db4 GV100GL [Tesla V100 PCIe 16GB] + 1db5 GV100GL [Tesla V100 SXM2 32GB] + 1db6 GV100GL [Tesla V100 PCIe 32GB] + 1db7 GV100GL [Tesla V100 DGXS 32GB] + 1db8 GV100GL [Tesla V100 SXM3 32GB] + 10de 131d Tesla V100-SXM3-32GB-H + 1dba GV100GL [Quadro GV100] + 10de 12eb TITAN V CEO Edition + 1df0 GV100GL [Tesla PG500-216] + 1df2 GV100GL [Tesla PG503-216] + 1df5 GV100GL [Tesla V100 SXM2 16GB] + 1df6 GV100GL [Tesla V100S PCIe 32GB] + 1e02 TU102 [TITAN RTX] + 1e04 TU102 [GeForce RTX 2080 Ti] + 1e07 TU102 [GeForce RTX 2080 Ti Rev. A] + 1462 3715 RTX 2080 Ti GAMING X TRIO + 1e09 TU102 [CMP 50HX] + 1e2d TU102 [GeForce RTX 2080 Ti Engineering Sample] + 1e2e TU102 [GeForce RTX 2080 Ti 12GB Engineering Sample] + 1e30 TU102GL [Quadro RTX 6000/8000] + 10de 129e Quadro RTX 8000 + 10de 12ba Quadro RTX 6000 + 1e36 TU102GL [Quadro RTX 6000] + 1e37 TU102GL [GRID RTX T10-4/T10-8/T10-16] + 10de 1347 GRID RTX T10-8 + 10de 1348 GRID RTX T10-4 + 10de 1370 GRID RTX T10-16 + 1e38 TU102GL + 1e3c TU102GL + 1e3d TU102GL + 1e3e TU102GL + 1e78 TU102GL [Quadro RTX 6000/8000] + 10de 13d8 Quadro RTX 8000 + 10de 13d9 Quadro RTX 6000 + 1e81 TU104 [GeForce RTX 2080 SUPER] + 1e82 TU104 [GeForce RTX 2080] + 1e84 TU104 [GeForce RTX 2070 SUPER] + 1e87 TU104 [GeForce RTX 2080 Rev. A] + 1e89 TU104 [GeForce RTX 2060] + 1e90 TU104M [GeForce RTX 2080 Mobile] + 1e91 TU104M [GeForce RTX 2070 SUPER Mobile / Max-Q] + 1e93 TU104M [GeForce RTX 2080 SUPER Mobile / Max-Q] + 1eab TU104M + 1eae TU104M + 1eb0 TU104GL [Quadro RTX 5000] + 1eb1 TU104GL [Quadro RTX 4000] + 1eb4 TU104GL [T4G] + 1eb5 TU104GLM [Quadro RTX 5000 Mobile / Max-Q] + 1eb6 TU104GLM [Quadro RTX 4000 Mobile / Max-Q] + 1eb8 TU104GL [Tesla T4] + 1eb9 TU104GL + 1ebe TU104GL + 1ec2 TU104 [GeForce RTX 2070 SUPER] + 1ec7 TU104 [GeForce RTX 2070 SUPER] + 1ed0 TU104BM [GeForce RTX 2080 Mobile] + 1ed1 TU104BM [GeForce RTX 2070 SUPER Mobile / Max-Q] + 1ed3 TU104BM [GeForce RTX 2080 SUPER Mobile / Max-Q] + 1ef5 TU104GLM [Quadro RTX 5000 Mobile Refresh] + 1f02 TU106 [GeForce RTX 2070] + 1043 8673 TURBO RTX 2070 + 1f03 TU106 [GeForce RTX 2060 12GB] + 1f04 TU106 + 1f06 TU106 [GeForce RTX 2060 SUPER] + 1f07 TU106 [GeForce RTX 2070 Rev. A] + 1f08 TU106 [GeForce RTX 2060 Rev. A] + 1f09 TU106 [GeForce GTX 1660 SUPER] + 1f0a TU106 [GeForce GTX 1650] + 1f0b TU106 [CMP 40HX] + 1f10 TU106M [GeForce RTX 2070 Mobile] + 1f11 TU106M [GeForce RTX 2060 Mobile] + 1f12 TU106M [GeForce RTX 2060 Max-Q] + 1f14 TU106M [GeForce RTX 2070 Mobile / Max-Q Refresh] + 1f15 TU106M [GeForce RTX 2060 Mobile] + 1f2e TU106M + 1f36 TU106GLM [Quadro RTX 3000 Mobile / Max-Q] + 1f42 TU106 [GeForce RTX 2060 SUPER] + 1f47 TU106 [GeForce RTX 2060 SUPER] + 1f50 TU106BM [GeForce RTX 2070 Mobile / Max-Q] + 1f51 TU106BM [GeForce RTX 2060 Mobile] + 1f54 TU106BM [GeForce RTX 2070 Mobile] + 1f55 TU106BM [GeForce RTX 2060 Mobile] + 1f76 TU106GLM [Quadro RTX 3000 Mobile Refresh] + 1f81 TU117 + 1f82 TU117 [GeForce GTX 1650] + 1f91 TU117M [GeForce GTX 1650 Mobile / Max-Q] + 1f92 TU117M [GeForce GTX 1650 Mobile] + 1f94 TU117M [GeForce GTX 1650 Mobile] + 1f95 TU117M [GeForce GTX 1650 Ti Mobile] + 1f96 TU117M [GeForce GTX 1650 Mobile / Max-Q] + 1f97 TU117M [GeForce MX450] + 1f98 TU117M [GeForce MX450] + 1f99 TU117M + 1f9c TU117M [GeForce MX450] + 1f9d TU117M [GeForce GTX 1650 Mobile / Max-Q] +# via Lenovo 496.90 + 1f9f TU117M [GeForce MX550] + 1fa0 TU117M [GeForce MX550] + 1fae TU117GL + 1fb0 TU117GLM [Quadro T1000 Mobile] + 1fb1 TU117GL [T600] + 1fb2 TU117GLM [Quadro T400 Mobile] + 1fb6 TU117GLM [T600 Laptop GPU] + 1fb7 TU117GLM [T550 Laptop GPU] + 1fb8 TU117GLM [Quadro T2000 Mobile / Max-Q] + 1fb9 TU117GLM [Quadro T1000 Mobile] + 1fba TU117GLM [T600 Mobile] + 1fbb TU117GLM [Quadro T500 Mobile] + 1fbc TU117GLM [T1200 Laptop GPU] + 1fbf TU117GL + 1fd9 TU117BM [GeForce GTX 1650 Mobile Refresh] + 1fdd TU117BM [GeForce GTX 1650 Mobile Refresh] + 1ff0 TU117GL [T1000 8GB] + 1ff2 TU117GL [T400 4GB] + 1ff9 TU117GLM [Quadro T1000 Mobile] + 2082 GA100 [CMP 170HX] + 20b0 GA100 [A100 SXM4 40GB] + 20b1 GA100 [A100 PCIe 40GB] + 20b2 GA100 [A100 SXM4 80GB] +# 20B3 14A7 10DE PG506-242 / 20B3 14A8 10DE PG506-243 + 20b3 GA100 [PG506-242/243] + 20b5 GA100 [A100 PCIe 80GB] + 20b6 GA100GL [PG506-232] + 20b7 GA100GL [A30 PCIe] + 20b8 GA100 [A100X] + 20b9 GA100 [A30X] + 20bb GA100 [DRIVE A100 PROD] + 20be GA100 [GRID A100A] + 20bf GA100 [GRID A100B] + 20c2 GA100 [CMP 170HX] + 20f0 GA100 [A100-PG506-207] + 20f1 GA100 [A100 PCIe 40GB] + 20f2 GA100 [A100-PG506-217] + 2182 TU116 [GeForce GTX 1660 Ti] + 2183 TU116 + 2184 TU116 [GeForce GTX 1660] + 2187 TU116 [GeForce GTX 1650 SUPER] + 2188 TU116 [GeForce GTX 1650] + 2189 TU116 [CMP 30HX] + 2191 TU116M [GeForce GTX 1660 Ti Mobile] + 2192 TU116M [GeForce GTX 1650 Ti Mobile] + 21ae TU116GL + 21bf TU116GL + 21c2 TU116 + 21c4 TU116 [GeForce GTX 1660 SUPER] + 21d1 TU116BM [GeForce GTX 1660 Ti Mobile] + 2200 GA102 + 2203 GA102 [GeForce RTX 3090 Ti] + 2204 GA102 [GeForce RTX 3090] + 147d 10de NVIDIA Geforce RTX 3090 Founders Edition + 2205 GA102 [GeForce RTX 3080 Ti 20GB] + 2206 GA102 [GeForce RTX 3080] + 10de 1467 GA102 [GeForce RTX 3080] + 10de 146d GA102 [GeForce RTX 3080 20GB] + 1462 3892 RTX 3080 10GB GAMING X TRIO + 2208 GA102 [GeForce RTX 3080 Ti] + 220a GA102 [GeForce RTX 3080 12GB] + 220d GA102 [CMP 90HX] + 2216 GA102 [GeForce RTX 3080 Lite Hash Rate] + 222b GA102 [GeForce RTX 3090 Engineering Sample] + 222f GA102 [GeForce RTX 3080 11GB / 12GB Engineering Sample] + 2230 GA102GL [RTX A6000] + 2231 GA102GL [RTX A5000] + 2232 GA102GL [RTX A4500] + 2233 GA102GL [RTX A5500] + 2235 GA102GL [A40] + 2236 GA102GL [A10] + 2237 GA102GL [A10G] + 2238 GA102GL [A10M] + 223f GA102GL + 228b GA104 High Definition Audio Controller + 2296 Tegra PCIe Endpoint Virtual Network + 2302 GA103 + 2321 GA103 + 2414 GA103 [GeForce RTX 3060 Ti] + 2420 GA103M [GeForce RTX 3080 Ti Mobile] + 2438 GA103GLM [RTX A5500 Laptop GPU] + 2460 GA103M [GeForce RTX 3080 Ti Laptop GPU] + 2482 GA104 [GeForce RTX 3070 Ti] + 2483 GA104 + 2484 GA104 [GeForce RTX 3070] + 10de 146b GA104 [GeForce RTX 3070] + 10de 14ae GA104 [GeForce RTX 3070 16GB] + 2486 GA104 [GeForce RTX 3060 Ti] + 2487 GA104 [GeForce RTX 3060] + 2488 GA104 [GeForce RTX 3070 Lite Hash Rate] + 2489 GA104 [GeForce RTX 3060 Ti Lite Hash Rate] + 248a GA104 [CMP 70HX] + 249c GA104M [GeForce RTX 3080 Mobile / Max-Q 8GB/16GB] + 249d GA104M [GeForce RTX 3070 Mobile / Max-Q] + 249f GA104M + 24a0 GA104 [Geforce RTX 3070 Ti Laptop GPU] + 24ac GA104 [GeForce RTX 30x0 Engineering Sample] + 24ad GA104 [GeForce RTX 3060 Engineering Sample] + 24af GA104 [GeForce RTX 3070 Engineering Sample] + 24b0 GA104GL [RTX A4000] + 24b1 GA104GL [RTX A4000H] + 24b6 GA104GLM [RTX A5000 Mobile] + 24b7 GA104GLM [RTX A4000 Mobile] + 24b8 GA104GLM [RTX A3000 Mobile] + 24b9 GA104GLM [RTX A3000 12GB Laptop GPU] + 24ba GA104GLM [RTX A4500 Laptop GPU] + 24bb GA104GLM [RTX A3000 Laptop GPU] + 24bf GA104 [GeForce RTX 3070 Engineering Sample] + 24dc GA104M [GeForce RTX 3080 Mobile / Max-Q 8GB/16GB] + 24dd GA104M [GeForce RTX 3070 Mobile / Max-Q] + 24e0 GA104M [Geforce RTX 3070 Ti Laptop GPU] + 24fa GA104 [RTX A4500 Embedded GPU ] + 2501 GA106 [GeForce RTX 3060] + 2503 GA106 [GeForce RTX 3060] + 2504 GA106 [GeForce RTX 3060 Lite Hash Rate] + 2505 GA106 + 2507 GA106 [Geforce RTX 3050] + 2520 GA106M [GeForce RTX 3060 Mobile / Max-Q] + 2523 GA106M [GeForce RTX 3050 Ti Mobile / Max-Q] + 252f GA106 [GeForce RTX 3060 Engineering Sample] + 2531 GA106 [RTX A2000] + 2560 GA106M [GeForce RTX 3060 Mobile / Max-Q] + 2563 GA106M [GeForce RTX 3050 Ti Mobile / Max-Q] + 2571 GA106 [RTX A2000 12GB] + 2583 GA107 [GeForce RTX 3050] + 25a0 GA107M [GeForce RTX 3050 Ti Mobile] + 25a2 GA107M [GeForce RTX 3050 Mobile] + 25a3 GA107 + 25a4 GA107 + 25a5 GA107M [GeForce RTX 3050 Mobile] + 25a6 GA107M [GeForce MX570] + 25a7 GA107M [GeForce MX570] + 25a9 GA107M [GeForce RTX 2050] + 25aa GA107M [GeForce MX570 A] + 25af GA107 [GeForce RTX 3050 Engineering Sample] + 25b5 GA107GLM [RTX A4 Mobile] +# A16 - 25B6 10DE 14A9 / A2 - 25B6 10DE 157E + 25b6 GA107GL [A2 / A16] + 25b8 GA107GLM [RTX A2000 Mobile] + 25b9 GA107GLM [RTX A1000 Laptop GPU] + 25ba GA107GLM [RTX A2000 8GB Laptop GPU] + 25e0 GA107BM [GeForce RTX 3050 Ti Mobile] + 25e2 GA107BM [GeForce RTX 3050 Mobile] + 25e5 GA107BM [GeForce RTX 3050 Mobile] + 25f9 GA107 [RTX A1000 Embedded GPU ] + 25fa GA107 [RTX A2000 Embedded GPU] +10df Emulex Corporation + 0720 OneConnect NIC (Skyhawk) + 103c 1934 FlexFabric 20Gb 2-port 650M Adapter + 103c 1935 FlexFabric 20Gb 2-port 650FLB Adapter + 103c 21d4 StoreFabric CN1200E 10Gb Converged Network Adapter + 103c 220a FlexFabric 10Gb 2-port 556FLR-SFP+ Adapter + 103c 803f Ethernet 10Gb 2-port 557SFP+ Adapter + 103c 8144 FlexFabric 10GB 2-port 556FLR-T Adapter + 17aa 1056 ThinkServer OCm14102-UX-L AnyFabric + 17aa 1057 ThinkServer OCm14104-UX-L AnyFabric + 17aa 1059 ThinkServer OCm14104-UT-L AnyFabric + 17aa 4014 ThinkServer OCm14102-NX-L AnyFabric + 0722 OneConnect iSCSI Initiator (Skyhawk) + 0723 OneConnect iSCSI Initiator + Target (Skyhawk) + 0724 OneConnect FCoE Initiator (Skyhawk) + 0728 OneConnect NIC (Skyhawk-VF) + 072a OneConnect iSCSI Initiator (Skyhawk-VF) + 072b OneConnect iSCSI Initiator + Target (Skyhawk-VF) + 072c OneConnect FCoE Initiator (Skyhawk-VF) + 1ae5 LP6000 Fibre Channel Host Adapter + e100 Proteus-X: LightPulse IOV Fibre Channel Host Adapter + e131 LightPulse 8Gb/s PCIe Shared I/O Fibre Channel Adapter + e180 Proteus-X: LightPulse IOV Fibre Channel Host Adapter + e200 LPe15000/LPe16000 Series 8Gb/16Gb Fibre Channel Adapter + 1014 03f1 PCIe2 2-Port 16Gb Fibre Channel Adapter for POWER (FC EL5B; CCIN 577F) + 1014 04e3 PCIe3 4-Port 10GbE SR Adapter for POWER (FC EN15/EN16; CCIN 2CE3) + 1014 04e4 PCIe3 4-Port 10GbE SFP+ Adapter for POWER (FC EN18; CCIN 2CE4) + 10df e280 LPe16002B-M6 2-Port 16Gb Fibre Channel Adapter + 10df e281 LPe16000B-M6 1-Port 16Gb Fibre Channel Adapter + 10df e282 Flex System FC5054 4-port 16Gb FC Adapter + e208 LightPulse 16Gb Fibre Channel Host Adapter (Lancer-VF) + e220 OneConnect NIC (Lancer) + 17aa 1054 ThinkServer LPm16002B-M6-L AnyFabric + 17aa 1055 ThinkServer LPm16004B-M8-L AnyFabric + e240 OneConnect iSCSI Initiator (Lancer) + e260 OneConnect FCoE Initiator (Lancer) + e268 OneConnect 10Gb FCoE Converged Network Adapter (Lancer-VF) + e300 LPe31000/LPe32000 Series 16Gb/32Gb Fibre Channel Adapter + 1014 0614 PCIe3 4-Port 16Gb Fibre Channel Adapter for POWER (FC EN1C/EN1D; CCIN 578E) + 1014 0615 PCIe3 2-Port 32Gb Fibre Channel Adapter for POWER (FC EN1A/EN1B; CCIN 578F) + 1014 06a0 PCIe3 2-Port 16Gb Fibre Channel Adapter for POWER (FC EN1L/EN1M; CCIN 2CFC) + 10df e300 LPe32002-M2 2-Port 32Gb Fibre Channel Adapter + 10df e301 LPe32000-M2 1-Port 32Gb Fibre Channel Adapter + 10df e310 LPe31002-M6 2-Port 16Gb Fibre Channel Adapter + 10df e311 LPe31000-M6 1-Port 16Gb Fibre Channel Adapter + 10df e312 LPe31004-M6 4-Port 16Gb Fibre Channel Adapter + 10df e320 LPe32002-M2-D 2-Port 32Gb Fibre Channel Adapter + 10df e321 LPe32000-M2-D 1-Port 32Gb Fibre Channel Adapter + 10df e322 LPe31002-M6-D 2-Port 16Gb Fibre Channel Adapter + 10df e323 LPe31000-M6-D 1-Port 16Gb Fibre Channel Adapter + 10df e324 LPm32002-D 2-Port 32Gb Fibre Channel Mezz Card + 10df e325 LPm31002-D 2-Port 16Gb Fibre Channel Mezz Card + 10df e330 LPe32002-M2-L 2-Port 32Gb PCIe Fibre Channel Adapter + 10df e331 LPe32000-M2-L 1-Port 32Gb PCIe Fibre Channel Adapter + 10df e332 LPe31002-M6-L 2-Port 16Gb PCIe Fibre Channel Adapter + 10df e333 LPe31000-M6-L 1-Port 16Gb PCIe Fibre Channel Adapter + 1590 0201 StoreFabric SN1600E 1-Port 32Gb Fibre Channel Adapter + 1590 0202 StoreFabric SN1600E 2-Port 32Gb Fibre Channel Adapter + 1590 0213 StoreFabric SN1200E 1-Port 16Gb Fibre Channel Adapter + 1590 0214 StoreFabric SN1200E 2-Port 16Gb Fibre Channel Adapter + 1590 022e Synergy 5330C 2-Port 32Gb Fibre Channel Mezz Card + 193d 1060 NIC-FC730i-Mb-2P + f011 Saturn: LightPulse Fibre Channel Host Adapter + f015 Saturn: LightPulse Fibre Channel Host Adapter + f085 LP850 Fibre Channel Host Adapter + f095 LP952 Fibre Channel Host Adapter + f098 LP982 Fibre Channel Host Adapter + f0a1 Thor LightPulse Fibre Channel Host Adapter + f0a5 Thor LightPulse Fibre Channel Host Adapter + f0b5 Viper LightPulse Fibre Channel Host Adapter + f0d1 Helios LightPulse Fibre Channel Host Adapter + f0d5 Helios LightPulse Fibre Channel Host Adapter + f0e1 Zephyr LightPulse Fibre Channel Host Adapter + f0e5 Zephyr LightPulse Fibre Channel Host Adapter + f0f5 Neptune LightPulse Fibre Channel Host Adapter + f100 LPe12000 Series 8Gb Fibre Channel Adapter + 1014 038a 8Gb PCI Express Dual Port FC Adapter for POWER + 103c 3282 8Gb Dual-port PCI-e FC HBA + 10df f140 LPe12000-M8-L 1-Port 8Gb PCIe Fibre Channel Adapter + 10df f141 LPe12002-M8-L 2-Port 8Gb PCIe Fibre Channel Adapter + f111 Saturn-X LightPulse Fibre Channel Host Adapter + f112 Saturn-X LightPulse Fibre Channel Host Adapter + f180 LPSe12002 EmulexSecure Fibre Channel Adapter + f400 LPe35000/LPe36000 Series 32Gb/64Gb Fibre Channel Adapter + 10df f401 LPe35000-M2 1-Port 32Gb Fibre Channel Adapter + 10df f402 LPe35002-M2 2-Port 32Gb Fibre Channel Adapter + 10df f403 LPe36000-M64 1-Port 64Gb Fibre Channel Adapter + 10df f404 LPe36002-M64 2-Port 64Gb Fibre Channel Adapter + 10df f405 LPe35004-M2 4-Port 32Gb Fibre Channel Adapter + 10df f406 LPe35004-X6 4-Port Fibre Channel Adapter + 10df f410 LPe35002-M2-D 2-Port 32Gb Fibre Channel Adapter + 10df f411 LPe35000-M2-D 1-Port 32Gb Fibre Channel Adapter + 10df f418 LPe35000-M2-L 1-Port 32Gb PCIe Fibre Channel Adapter + 10df f419 LPe35002-M2-L 2-Port 32Gb PCIe Fibre Channel Adapter + 10df f421 LPe36002-M2-L 2-Port 64Gb PCIe Fibre Channel Adapter + 10df f422 LPe36002-M64-D 2-Port 64Gb Fibre Channel Adapter + 1590 02d5 StoreFabric SN1610E 1-Port 32Gb Fibre Channel Adapter + 1590 02d6 StoreFabric SN1610E 2-Port 32Gb Fibre Channel Adapter + f500 LPe37000/LPe38000 Series 32Gb/64Gb Fibre Channel Adapter + 1014 06c1 PCIe4 4-Port 32Gb Fibre Channel Adapter for POWER (FC EN1L/EN1M; CCIN 2CFC) + 1014 06c2 PCIe4 2-Port 64Gb Fibre Channel Adapter for POWER (FC EN1N/EN1P; CCIN 2CFD) + f700 LP7000 Fibre Channel Host Adapter + f701 LP7000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2) + f800 LP8000 Fibre Channel Host Adapter + f801 LP8000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2) + f900 LP9000 Fibre Channel Host Adapter + f901 LP9000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2) + f980 LP9802 Fibre Channel Host Adapter + f981 LP9802 Fibre Channel Host Adapter Alternate ID + f982 LP9802 Fibre Channel Host Adapter Alternate ID + fa00 Thor-X LightPulse Fibre Channel Host Adapter + fb00 Viper LightPulse Fibre Channel Host Adapter + fc00 Thor-X LightPulse Fibre Channel Host Adapter + 10df fc00 LP10000 LightPulse Fibre Channel Host Adapter + fc10 Helios-X LightPulse Fibre Channel Host Adapter + fc20 Zephyr-X LightPulse Fibre Channel Host Adapter + fc40 Saturn-X: LightPulse Fibre Channel Host Adapter + fc50 Proteus-X: LightPulse IOV Fibre Channel Host Adapter + fd00 Helios-X LightPulse Fibre Channel Host Adapter +# Also IBM FC 5759 / FC 1910 for POWER + 10df fd02 LightPulse LP11002 Dual-port 4Gigabit PCI Fibre Channel Adapter + fd11 Helios-X LightPulse Fibre Channel Host Adapter + fd12 Helios-X LightPulse Fibre Channel Host Adapter + fe00 Zephyr-X LightPulse Fibre Channel Host Adapter + fe05 Zephyr-X: LightPulse FCoE Adapter + fe11 Zephyr-X LightPulse Fibre Channel Host Adapter + fe12 Zephyr-X LightPulse FCoE Adapter + ff00 Neptune LightPulse Fibre Channel Host Adapter +10e0 Integrated Micro Solutions Inc. + 5026 IMS5026/27/28 + 5027 IMS5027 + 5028 IMS5028 + 8849 IMS8849 + 8853 IMS8853 + 9128 IMS9128 [Twin turbo 128] +10e1 Tekram Technology Co.,Ltd. + 0391 TRM-S1040 + 10e1 0391 DC-315U SCSI-3 Host Adapter + 690c DC-690c + dc29 DC-290 +10e2 Aptix Corporation +10e3 Tundra Semiconductor Corp. + 0000 CA91C042 [Universe] + 0108 Tsi108 Host Bridge for Single PowerPC + 0148 Tsi148 [Tempe] + 1775 1100 VR11 Single Board Computer + 0860 CA91C860 [QSpan] + 0862 CA91C862A [QSpan-II] + 8111 Tsi381 PCIe to PCI Bridge + 8260 CA91L8200B [Dual PCI PowerSpan II] + 8261 CA91L8260B [Single PCI PowerSpan II] + a108 Tsi109 Host Bridge for Dual PowerPC +10e4 Tandem Computers + 8029 Realtek 8029 Network Card +10e5 Micro Industries Corporation +10e6 Gainbery Computer Products Inc. +10e7 Vadem +10e8 Applied Micro Circuits Corp. + 1072 INES GPIB-PCI (AMCC5920 based) + 2011 Q-Motion Video Capture/Edit board + 4750 S5930 [Matchmaker] + 5920 S5920 + 8043 LANai4.x [Myrinet LANai interface chip] + 8062 S5933_PARASTATION + 807d S5933 [Matchmaker] + 8088 Kongsberg Spacetec Format Synchronizer + 8089 Kongsberg Spacetec Serial Output Board + 809c S5933_HEPC3 + 80b9 Harmonix Hi-Card P8 (4x active ISDN BRI) + 80d7 PCI-9112 + 80d8 PCI-7200 + 80d9 PCI-9118 + 80da PCI-9812 + 80fc APCI1500 Signal processing controller (16 dig. inputs + 16 dig. outputs) + 811a PCI-IEEE1355-DS-DE Interface + 814c Fastcom ESCC-PCI (Commtech, Inc.) + 8170 S5933 [Matchmaker] (Chipset Development Tool) + 81e6 Multimedia video controller + 828d APCI3001 Signal processing controller (up to 16 analog inputs) + 8291 Fastcom 232/8-PCI (Commtech, Inc.) + 82c4 Fastcom 422/4-PCI (Commtech, Inc.) + 82c5 Fastcom 422/2-PCI (Commtech, Inc.) + 82c6 Fastcom IG422/1-PCI (Commtech, Inc.) + 82c7 Fastcom IG232/2-PCI (Commtech, Inc.) + 82ca Fastcom 232/4-PCI (Commtech, Inc.) + 82db AJA HDNTV HD SDI Framestore + 82e2 Fastcom DIO24H-PCI (Commtech, Inc.) + 8406 PCIcanx/PCIcan CAN interface [Kvaser AB] + 8407 PCIcan II CAN interface (A1021, PCB-07, PCB-08) [Kvaser AB] + 8851 S5933 on Innes Corp FM Radio Capture card + e004 X-Gene PCIe bridge +10e9 Alps Electric Co., Ltd. +10ea Integraphics + 1680 IGA-1680 + 1682 IGA-1682 + 1683 IGA-1683 + 2000 CyberPro 2000 + 2010 CyberPro 2000A + 5000 CyberPro 5000 + 5050 CyberPro 5050 + 5202 CyberPro 5202 +# CyberPro5202 Audio Function + 5252 CyberPro5252 +10eb Artists Graphics + 0101 3GA + 8111 Twist3 Frame Grabber +10ec Realtek Semiconductor Co., Ltd. + 0139 RTL-8139/8139C/8139C+ Ethernet Controller + 3000 Killer E3000 2.5GbE Controller + 5208 RTS5208 PCI Express Card Reader + 5209 RTS5209 PCI Express Card Reader + 5227 RTS5227 PCI Express Card Reader + 17aa 220e ThinkPad T440p + 17aa 2214 ThinkPad X240 + 5229 RTS5229 PCI Express Card Reader + 1025 0813 Aspire R7-571 + 103c 194e ProBook 455 G1 Notebook + 103c 1985 Pavilion 17-e163sg Notebook PC + 17aa 3832 Yoga 520 + 522a RTS522A PCI Express Card Reader + 103c 8079 EliteBook 840 G3 + 103c 825b OMEN-17-w001nv + 17aa 5124 ThinkPad E595 + 5249 RTS5249 PCI Express Card Reader + 103c 1909 ZBook 15 + 524a RTS524A PCI Express Card Reader + 5250 RTS5250 PCI Express Card Reader + 525a RTS525A PCI Express Card Reader + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e4 XPS 15 9550 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 09be Latitude 7410 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 5260 RTS5260 PCI Express Card Reader + 5261 RTS5261 PCI Express Card Reader + 5286 RTS5286 PCI Express Card Reader + 5287 RTL8411B PCI Express Card Reader + 1025 1094 Acer Aspire E5-575G + 5288 RTS5288 PCI Express Card Reader + 5289 RTL8411 PCI Express Card Reader + 1043 1457 K55A Laptop + 5762 RTS5763DL NVMe SSD Controller + 8029 RTL-8029(AS) + 10b8 2011 EZ-Card (SMC1208) + 10ec 8029 RTL-8029(AS) + 1113 1208 EN1208 + 1186 0300 DE-528 + 1259 2400 AT-2400 + 1af4 1100 QEMU Virtual Machine + 8125 RTL8125 2.5GbE Controller + 8129 RTL-8129 + 10ec 8129 RT8129 Fast Ethernet Adapter + 11ec 8129 RTL8111/8168 PCIe Gigabit Ethernet (misconfigured) + 8136 RTL810xE PCI Express Fast Ethernet controller + 103c 1985 RTL8106E on Pavilion 17-e163sg Notebook PC + 103c 2a8c Compaq 500B Microtower + 103c 2ab1 Pavilion p6774 + 103c 30cc Pavilion dv6700 + 1179 ff64 RTL8102E PCI-E Fast Ethernet NIC + 17c0 1053 RTL8101e Medion WIM 2210 Notebook PC [MD96850] + 8137 RTL8104E PCIe Fast Ethernet Controller + 8138 RT8139 (B/C) Cardbus Fast Ethernet Adapter + 10ec 8138 RT8139 (B/C) Fast Ethernet Adapter + 8139 RTL-8100/8101L/8139 PCI Fast Ethernet Adapter + 0357 000a TTP-Monitoring Card V2.0 + 1025 005a TravelMate 290 + 1025 8920 ALN-325 + 1025 8921 ALN-325 + 103c 006a NX9500 + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 30d9 Presario C700 + 1043 1045 L8400B, L3C/S, X58LE notebook + 1043 8109 P5P800-MX Mainboard + 1071 8160 MIM2000 + 10bd 0320 EP-320X-R + 10ec 8139 RTL-8100/8101L/8139 PCI Fast Ethernet Adapter + 10f7 8338 Panasonic CF-Y5 laptop + 1113 ec01 LevelOne FNC-0107TX/FNC-0109TX + 1186 1104 DFE-520TX Fast Ethernet PCI Adapter (rev. D1) + 1186 1300 DFE-538TX + 1186 1320 SN5200 + 1186 8139 DRN-32TX + 11f6 8139 FN22-3(A) LinxPRO Ethernet Adapter + 1259 2500 AT-2500TX + 1259 2503 AT-2500TX/ACPI + 1385 f31d FA311 v2 + 1395 2100 AMB2100 + 1429 d010 ND010/ND012 + 1432 9130 EN-9130TX + 1436 8139 RT8139 + 144d c00c P30/P35 notebook + 1458 e000 GA-7VM400M/7VT600 Motherboard + 1462 0131 MS-1013 Notebook + 1462 217c Aspire L250 + 1462 788c 865PE Neo2-V Mainboard + 146c 1439 FE-1439TX + 1489 6001 GF100TXRII + 1489 6002 GF100TXRA + 149c 139a LFE-8139ATX + 149c 8139 LFE-8139TX + 14cb 0200 LNR-100 Family 10/100 Base-TX Ethernet + 1565 2300 P4TSV Onboard LAN (RTL8100B) + 1631 7003 Onboard RTL8111 on GA-8SIML Rev1.0 Mainboard + 1695 9001 Onboard RTL8101L 10/100 MBit + 16ec 00ff USR997900A + 1799 5000 F5D5000 PCI Card/Desktop Network PCI Card + 1799 5010 F5D5010 CardBus Notebook Network Card + 187e 3303 FN312 + 1904 8139 RTL8139D Fast Ethernet Adapter + 1af4 1100 QEMU Virtual Machine + 2646 0001 KNE120TX + 8e2e 7000 KF-230TX + 8e2e 7100 KF-230TX/2 + a0a0 0007 ALN-325C + 8161 RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller + 10ec 8168 TP-Link TG-3468 v4.0 Gigabit PCI Express Network Adapter + 8167 RTL-8110SC/8169SC Gigabit Ethernet + 105b 0e10 RTL-8110SC-GR on a N15235/A74MX mainboard + 1458 e000 GA-MA69G-S3H Motherboard + 1462 235c P965 Neo MS-7235 mainboard + 1462 236c 945P Neo3-F motherboard + 8168 RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller + 1019 8168 RTL8111/8168 PCI Express Gigabit Ethernet controller + 1025 1094 Acer Aspire E5-575G + 1028 0283 Vostro 220 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1028 05d7 Alienware X51 R2 + 1028 06f2 Latitude 3470 + 1028 06f3 Latitude 3570 + 1028 0869 Vostro 3470 + 103c 1611 Pavilion DM1Z-3000 + 103c 1950 ProBook 450/455 + 103c 2a6f Asus IPIBL-LB Motherboard + 103c 825b OMEN-17-w001nv + 103c 8615 Pavilion Laptop 15-cw1xxx +# Rev 29, uses r8169 Driver on Linux + 103c 8882 HP ProDesk 405 G8 Desktop Mini PC + 1043 11f5 Notebook motherboard (one of many models) + 1043 16d5 U6V/U31J laptop + 1043 81aa P5B + 1043 82c6 M3A78 Series Motherboard + 1043 83a3 M4A785/P7P55 Motherboard + 1043 8432 P8P67 and other motherboards + 1043 8505 P8 series motherboard + 1043 8554 H81M-C Motherboard + 1043 859e AM1I-A Motherboard + 1043 8677 PRIME B450M-A Motherboard + 105b 0d7c D270S/D250S Motherboard + 10ec 8168 RTL8111/8168 PCI Express Gigabit Ethernet controller + 144d c652 RTL8168 on a NP300E5C series laptop + 1458 e000 Onboard Ethernet + 1462 238c Onboard RTL8111b on MSI P965 Platinum Mainboard + 1462 345c RTL8111B on MS-7345 Motherboard + 1462 368c K9AG Neo2 + 1462 4180 Wind PC MS-7418 + 1462 7522 X58 Pro-E + 1462 7c37 X570-A PRO motherboard + 1775 11cc CC11/CL11 + 17aa 3098 ThinkCentre E73 + 17aa 3814 Z50-75 + 17aa 3823 Lenovo V130-15IGM Laptop - Type 81HL + 17aa 5124 ThinkPad E595 + 1849 8168 Motherboard (one of many) + 7470 3468 TG-3468 Gigabit PCI Express Network Adapter + 8086 2055 NUC Kit DN2820FYKH + 8086 d615 Desktop Board D510MO/D525MW + ea50 ce19 mCOM10-L1900 + 8169 RTL8169 PCI Gigabit Ethernet Controller + 1025 0079 Aspire 5024WLMi + 10bd 3202 EP-320G-TX1 32-bit PCI Gigabit Ethernet Adapter + 10ec 8169 RTL8169/8110 Family PCI Gigabit Ethernet NIC + 1259 c107 CG-LAPCIGT + 1371 434e ProG-2000L + 1385 311a GA311 + 1385 5200 GA511 Gigabit PC Card + 1458 e000 GA-8I915ME-G Mainboard + 1462 030c K8N Neo-FSR v2.0 mainboard + 1462 065c Hetis 865GV-E (MS-7065) + 1462 702c K8T NEO 2 motherboard + 1462 7094 K8T Neo2-F V2.0 + 16ec 011f USR997903 + 1734 1091 D2030-A1 + a0a0 0449 AK86-L motherboard + 816a RTL8111xP UART #1 + ea50 ce19 mCOM10-L1900 + 816b RTL8111xP UART #2 + ea50 ce19 mCOM10-L1900 + 816c RTL8111xP IPMI interface + ea50 ce19 mCOM10-L1900 + 816d RTL811x EHCI host controller + ea50 ce19 mCOM10-L1900 + 816e Realtek RealManage BMC + 8171 RTL8191SEvA Wireless LAN Controller + 8172 RTL8191SEvB Wireless LAN Controller + 8173 RTL8192SE Wireless LAN Controller + 8174 RTL8192SE Wireless LAN Controller + 8176 RTL8188CE 802.11b/g/n WiFi Adapter + 1043 84b5 PCE-N10 + 1a3b 1139 AW-NE139H Half-size Mini PCIe Card + 8177 RTL8191CE PCIe Wireless Network Adapter + 8178 RTL8192CE PCIe Wireless Network Adapter + 8179 RTL8188EE Wireless Network Adapter + 103c 197d RTL8188EE mini-PCIe card + 8180 RTL8180L 802.11b MAC + 1385 4700 MA521 802.11b Wireless PC Card + 1737 0019 WPC11v4 802.11b Wireless-B Notebook Adapter + 8185 RTL-8185 IEEE 802.11a/b/g Wireless LAN Controller + 818b RTL8192EE PCIe Wireless Network Adapter + 8190 RTL8190 802.11n PCI Wireless Network Adapter + 8191 RTL8192CE PCIe Wireless Network Adapter + 8192 RTL8192E/RTL8192SE Wireless LAN Controller + 8193 RTL8192DE Wireless LAN Controller + 8196 RTL8196 Integrated PCI-e Bridge + 8197 SmartLAN56 56K Modem + 8199 RTL8187SE Wireless LAN Controller + 1462 6894 MN54G2 / MS-6894 Wireless Mini PCIe Card + 8723 RTL8723AE PCIe Wireless Network Adapter + 8812 RTL8812AE 802.11ac PCIe Wireless Network Adapter + 8813 RTL8813AE 802.11ac PCIe Wireless Network Adapter + 8821 RTL8821AE 802.11ac PCIe Wireless Network Adapter + 8852 RTL8852AE 802.11ax PCIe Wireless Network Adapter + b723 RTL8723BE PCIe Wireless Network Adapter + 10ec 8739 Dell Wireless 1801 + 17aa b736 Z50-75 + b822 RTL8822BE 802.11a/b/g/n/ac WiFi adapter + 103c 831b Realtek RTL8822BE 802.11ac 2 × 2 Wi-Fi + Bluetooth 4.2 Combo Adapter (MU-MIMO supported) + 17aa 5124 ThinkPad E595 + 17aa b023 ThinkPad E595 + c821 RTL8821CE 802.11ac PCIe Wireless Network Adapter + c822 RTL8822CE 802.11ac PCIe Wireless Network Adapter + c82f RTL8822CE 802.11ac PCIe Wireless Network Adapter + d723 RTL8723DE 802.11b/g/n PCIe Adapter +10ed Ascii Corporation + 7310 V7310 +10ee Xilinx Corporation + 0001 EUROCOM for PCI (ECOMP) + 0002 Octal E1/T1 for PCI ETP Card + 0007 Default PCIe endpoint ID + 0205 Wildcard TE205P + 0210 Wildcard TE210P + 0300 Spartan 3 Designs (Xilinx IP) + 0314 Wildcard TE405P/TE410P (1st Gen) + 0405 Wildcard TE405P (2nd Gen) + 0410 Wildcard TE410P (2nd Gen) + 0600 Xilinx 6 Designs (Xilinx IP) + 3fc0 RME Digi96 + 3fc1 RME Digi96/8 + 3fc2 RME Digi96/8 Pro + 3fc3 RME Digi96/8 Pad + 3fc4 RME Digi9652 (Hammerfall) + 3fc5 RME Hammerfall DSP + 3fc6 RME Hammerfall DSP MADI + 5005 Alveo U250 + 7038 FPGA Card XC7VX690T + 17aa 402f FPGA XC7VX690T-3FFG1157E + 8019 Memory controller + 1eec 0201 VSEC10232X Dual-port 100Gb/s Etherent PCIe + 8380 Ellips ProfiXpress Profibus Master + 8381 Ellips Santos Frame Grabber + d154 Copley Controls CAN card (PCI-CAN-02) +# SED is assigned Xilinx PCI device IDs ebf0 through ebff + ebf0 SED Systems Modulator/Demodulator + ebf1 SED Systems Audio Interface Card + ebf2 SED Systems Common PCI Interface + ebf3 SED Systems PCIe-AXI Bridge +10ef Racore Computer Products, Inc. + 8154 M815x Token Ring Adapter +10f0 Peritek Corporation +10f1 Tyan Computer + 2865 Tyan Thunder K8E S2865 + 5300 Tyan S5380 Mainboard +10f2 Achme Computer, Inc. +10f3 Alaris, Inc. +10f4 S-MOS Systems, Inc. +10f5 NKK Corporation + a001 NDR4000 [NR4600 Bridge] +10f6 Creative Electronic Systems SA +10f7 Matsushita Electric Industrial Co., Ltd. +10f8 Altos India Ltd +10f9 PC Direct +10fa Truevision + 000c TARGA 1000 +10fb Thesys Gesellschaft fuer Mikroelektronik mbH + 186f TH 6255 +10fc I-O Data Device, Inc. +# What's in the cardbus end of a Sony ACR-A01 card, comes with newer Vaio CD-RW drives + 0003 Cardbus IDE Controller + 0005 Cardbus SCSI CBSC II +10fd Soyo Computer, Inc +10fe Fast Multimedia AG +10ff NCube +1100 Jazz Multimedia +1101 Initio Corporation + 0002 INI-920 Ultra SCSI Adapter + 1060 INI-A100U2W + 1622 INI-1623 PCI SATA-II Controller + 9100 INI-9100/9100W + 9400 INI-940 Fast Wide SCSI Adapter + 9401 INI-935 Fast Wide SCSI Adapter + 9500 INI-950 SCSI Adapter + 9502 INI-950P Ultra Wide SCSI Adapter +1102 Creative Labs + 0002 EMU10k1 [Sound Blaster Live! Series] + 100a 1102 SB Live! 5.1 Digital OEM SB0220 EMU10K1-JFF + 1102 0020 CT4670/4850 SBLive! Value + 1102 0021 CT4620 SBLive! + 1102 002f M002/M003 Integrated SBLive! + 1102 100a SB0220/0229 SBLive! 5.1 Digital OEM + 1102 4001 E-mu APS + 1102 8022 CT4780 SBLive! Value + 1102 8023 CT4790 SoundBlaster PCI512 + 1102 8024 CT4760 SBLive! + 1102 8025 CT1140/SB0040 Integrated SBLive! + 1102 8026 CT4830 SBLive! Value + 1102 8027 CT4832 SBLive! Value + 1102 8028 CT4870 SBLive! Value + 1102 8029 CT4872 SBLive! Value + 1102 802a CT4890 SoundBlaster PCI256 + 1102 802b CT4891 SoundBlaster PCI256 + 1102 8031 CT4831 SBLive! Value + 1102 8032 CT4871 SBLive! Value + 1102 8033 CT4893 SoundBlaster PCI256 + 1102 8035 CT0060 SBLive! + 1102 8040 CT4760 SBLive! + 1102 8050 CT4750 SoundBlaster PCI512 + 1102 8051 CT4850 SBLive! Value + 1102 8061 SB060 SBLive! Player 5.1 + 1102 8062 SB0100 SBLive! 5.1 + 1102 8063 DXW Integrated SBLive! 5.1 + 1102 8064 SB0100/SB0102 SBLive! 5.1 + 1102 8065 SB0220/0222 SBLive! 5.1 Digital + 1102 8066 SB0228 SBLive! 5.1 Digital + 1102 8067 SB0220 SBLive! 5.1 + 1102 8068 CT0061 SBLive! + 1102 8069 SB0101 SBLive! 5.1 Value + 1102 806a SB0103 SBLive! 5.1 + 1102 806b SB0105 SBLive! 5.1 + 1102 806c SB0221 SBLive! 5.1 + 1102 8071 SB0150 SoundBlaster PCI512 +# EMU8008 PCI version of emu8000 chip + 0003 SB AWE64(D) + 1102 0010 CT4600 AWE64D + 1102 0030 CT4650 AWE64D + 1102 0031 CT4655 AWE64D + 0004 EMU10k2/CA0100/CA0102/CA10200 [Sound Blaster Audigy Series] + 1102 0040 SB0090 Audigy Player +# Probably an early engineering sample + 1102 0041 CT4820 SBLive!2 + 1102 0042 CT0070 Audigy + 1102 0043 CT0072 Audigy + 1102 0051 SB0090 Audigy Player/Platinum (EX) + 1102 0052 SB0162 Audigy ES + 1102 0053 CT0090/SB0092 Audigy Player/OEM + 1102 0054 SB0161 Audigy ES + 1102 0055 SB0192 Audigy + 1102 0056 SB0191 Audigy + 1102 0057 SB0091 Audigy + 1102 0058 SB0095 Audigy Player/OEM + 1102 0059 SB0230 Audigy + 1102 005a SB0231 Audigy + 1102 005b SB0232 Audigy + 1102 005c SB0238 Audigy + 1102 1002 SB0240 Audigy 2 Platinum 6.1 + 1102 1003 SB0350 Audigy 2 / SB0243 Audigy 2 OEM + 1102 1004 SB0242 Audigy 2 + 1102 1005 SB0280 Audigy 2 Platinum Ex + 1102 1006 SB0245 Audigy 2 OEM + 1102 1007 SB0240/SB0244 Audigy 2 Platinum + 1102 1008 SB0320 Audigy 2 + 1102 1009 SB0249 Audigy 2 OEM + 1102 100a SB0246 Audigy 2 + 1102 2001 SB0360 Audigy 2 ZS Platinum Pro + 1102 2002 SB0350 Audigy 2 ZS + 1102 2003 SB0352 Audigy 2 ZS + 1102 2004 SB0355 Audigy 2 ZS + 1102 2005 SB0359 Audigy 2 ZS + 1102 2006 SB035x Audigy 2 OEM + 1102 2007 SB0380 Audigy 4 Pro + 1102 4001 E-MU 1010 [MAEM8810] + 1102 4002 E-MU 0404 + 1102 4003 E-MU 1010 + 0005 EMU20k1 [Sound Blaster X-Fi Series] + 1102 0021 X-Fi Platinum + 1102 002c X-Fi XtremeGamer FATAL1TY PRO + 1102 1003 X-Fi XtremeMusic +# This chip is also known as CA0103 on Sound Blaster 5.1 SB0680 card. + 0006 EMU10k1X / CA0103 [SB Live! OEM / SB 5.1 / Ectiva 5.1] + 1102 1001 SB0680 Sound Blaster 5.1 + 1102 1003 SB0203 SB Live! 5.1 (Dell) + 1102 1004 TP0033 Ectiva Audio 5.1 + 0007 CA0106/CA0111 [SB Live!/Audigy/X-Fi Series] + 1102 0007 SBLive! 24bit + 1102 1001 SB0310 Audigy LS + 1102 1002 SB0312 Audigy LS + 1102 1006 SB0410 SBLive! 24-bit + 1102 100a SB0570 [SB Audigy SE] + 1102 1012 SB0790 X-Fi XA + 1102 1013 Soundblaster X-Fi Xtreme Audio + 1462 1009 K8N Diamond + 0008 CA0108/CA10300 [Sound Blaster Audigy Series] + 1102 0008 EMU0404 Digital Audio System + 1102 1001 SB0400 Audigy 2 Value + 1102 1021 SB0610 Audigy 4 Value + 1102 1022 SBxxx Audigy 2/4 Value + 1102 1023 SB0612 Audigy 2 LS + 1102 1024 SB1550 Audigy 5/Rx + 1102 1101 SBxxxx Audigy 2 SA + 1102 2001 SB0530 Audigy 2 ZS Notebook + 1102 2021 SBxxxx Audigy 4 Notebook + 1102 4002 E-MU 0404 + 1102 4003 E-MU 1010 + 1102 4004 EMU1010 Digital Audio System [MAEM8960] + 1102 4005 E-MU 0404 [MAEM8984] + 1102 4007 E-MU 1010 [MAEM8982] + 1102 4201 E-MU 0202 [MAEM8950] + 0009 CA0110 [Sound Blaster X-Fi Xtreme Audio] + 1102 0010 MB0820 Integrated + 1102 0018 SB1040 PCI Express + 000b EMU20k2 [Sound Blaster X-Fi Titanium Series] + 1102 0041 SB0880 [SoundBlaster X-Fi Titanium PCI-e] + 1102 0062 SB1270 [SoundBlaster X-Fi Titanium HD] + 0012 Sound Core3D [Sound Blaster Recon3D / Z-Series] + 1102 0010 SB1570 SB Audigy Fx + 4001 SB Audigy FireWire Port + 1102 0010 SB Audigy FireWire Port + 7002 SB Live! Game Port + 1102 0020 Gameport Joystick + 7003 SB Audigy Game Port + 1102 0040 SB Audigy Game Port + 1102 0060 SB Audigy2 MIDI/Game Port + 7004 [SB Live! Value] Input device controller + 7005 SB Audigy LS Game Port + 1102 1001 SB0310 Audigy LS MIDI/Game port + 1102 1002 SB0312 Audigy LS MIDI/Game port + 7006 [SB X-Fi Xtreme Audio] CA0110-IBG PCIe to PCI Bridge + 8938 Ectiva EV1938 + 1033 80e5 SlimTower-Jim (NEC) + 1071 7150 Mitac 7150 + 110a 5938 Siemens Scenic Mobile 510PIII + 13bd 100c Ceres-C (Sharp, Intel BX) + 13bd 100d Sharp, Intel Banister + 13bd 100e TwinHead P09S/P09S3 (Sharp) + 13bd f6f1 Marlin (Sharp) + 14ff 0e70 P88TE (TWINHEAD INTERNATIONAL Corp) + 14ff c401 Notebook 9100/9200/2000 (TWINHEAD INTERNATIONAL Corp) + 156d b400 G400 - Geo (AlphaTop (Taiwan)) + 156d b550 G560 (AlphaTop (Taiwan)) + 156d b560 G560 (AlphaTop (Taiwan)) + 156d b700 G700/U700 (AlphaTop (Taiwan)) + 156d b795 G795 (AlphaTop (Taiwan)) + 156d b797 G797 (AlphaTop (Taiwan)) +# nee Triones Technologies, Inc. +1103 HighPoint Technologies, Inc. + 0003 HPT343/345/346/363 + 0004 HPT366/368/370/370A/372/372N + 1103 0001 HPT370A + 1103 0004 HPT366 UDMA66 (r1) / HPT368 UDMA66 (r2) / HPT370 UDMA100 (r3) / HPT370 UDMA100 RAID (r4) + 1103 0005 HPT370 UDMA100 + 1103 0006 HPT302/302N + 0005 HPT372A/372N + 0006 HPT302/302N + 0007 HPT371/371N + 0008 HPT374 + 0009 HPT372N + 0620 RocketRAID 620 2 Port SATA-III Controller + 0622 RocketRAID 622 2 Port SATA-III Controller + 0640 RocketRAID 640 4 Port SATA-III Controller + 0641 RocketRAID 640L 4 Port SATA-III Controller + 0642 RocketRAID 642L SATA-III Controller (2 eSATA ports + 2 internal SATA ports) + 0644 RocketRAID 644 4 Port SATA-III Controller (eSATA) + 0645 RocketRAID 644L 4 Port SATA-III Controller (eSATA) + 0646 RocketRAID 644LS SATA-III Controller (4 eSATA devices connected by 1 SAS cable) + 1720 RocketRAID 1720 (2x SATA II RAID Controller) + 1740 RocketRAID 1740 + 1742 RocketRAID 1742 + 2210 RocketRAID 2210 SATA-II Controller + 11ab 11ab 88SX6042 + 2300 RocketRAID 230x 4 Port SATA-II Controller + 2310 RocketRAID 2310 4 Port SATA-II Controller + 2320 RocketRAID 2320 SATA-II Controller + 2322 RocketRAID 2322 SATA-II Controller + 2340 RocketRAID 2340 16 Port SATA-II Controller + 2640 RocketRAID 2640 SAS/SATA Controller + 2722 RocketRAID 2722 +# SFF-8087 Mini-SAS 16 port internal + 2740 RocketRAID 2740 +# SFF-8088 Mini-SAS 16 port external + 2744 RocketRaid 2744 +# SFF-8088 8 port external / SFF-8087 24 port internal + 2782 RocketRAID 2782 + 3120 RocketRAID 3120 + 3220 RocketRAID 3220 + 3320 RocketRAID 3320 + 4310 RocketRaid 4310 + 7505 SSD7505 PCIe Gen4 x16 4-Port M.2 NVMe RAID Controller +1104 RasterOps Corp. +1105 Sigma Designs, Inc. + 1105 REALmagic Xcard MPEG 1/2/3/4 DVD Decoder + 8300 REALmagic Hollywood Plus DVD Decoder + 8400 EM840x REALmagic DVD/MPEG-2 Audio/Video Decoder + 8401 EM8401 REALmagic DVD/MPEG-2 A/V Decoder + 8470 EM8470 REALmagic DVD/MPEG-4 A/V Decoder + 8471 EM8471 REALmagic DVD/MPEG-4 A/V Decoder + 8475 EM8475 REALmagic DVD/MPEG-4 A/V Decoder + 1105 0001 REALmagic X-Card + 8476 EM8476 REALmagic DVD/MPEG-4 A/V Decoder + 127d 0000 CineView II + 8485 EM8485 REALmagic DVD/MPEG-4 A/V Decoder + 8486 EM8486 REALmagic DVD/MPEG-4 A/V Decoder +# Found in Cisco DMP-4305G + c621 EM8621L Digital Media Processor + c622 EM8622L MPEG-4.10 (H.264) and SMPTE 421M (VC-1) A/V Decoder +1106 VIA Technologies, Inc. + 0102 Embedded VIA Ethernet Controller + 0130 VT6305 1394.A Controller + 0198 P4X600 Host Bridge + 0204 K8M800 Host Bridge + 0208 PT890 Host Bridge + 0238 K8T890 Host Bridge + 0258 PT880 Host Bridge + 0259 CN333/CN400/PM880 Host Bridge + 0269 KT880 Host Bridge + 0282 K8T800Pro Host Bridge + 1043 80a3 A8V Deluxe + 0290 K8M890 Host Bridge + 0293 PM896 Host Bridge + 0296 P4M800 Host Bridge + 0305 VT8363/8365 [KT133/KM133] + 1019 0987 K7VZA Mainboard + 1043 8033 A7V Mainboard + 1043 803e A7V-E Mainboard + 1043 8042 A7V133/A7V133-C Mainboard + 147b a401 KT7/KT7-RAID/KT7A/KT7A-RAID Mainboard + 0308 PT880 Ultra/PT894 Host Bridge + 1043 8199 P4V800D-X Mainboard + 1849 0308 Motherboard + 0314 CN700/VN800/P4M800CE/Pro Host Bridge + 0324 CX700/VX700 Host Bridge + 0327 P4M890 Host Bridge + 0336 K8M890CE Host Bridge + 0340 PT900 Host Bridge + 0351 K8T890CF Host Bridge + 0353 VX800/820-Series Chipset Host-Bridge Controller + 0364 CN896/VN896/P4M900 Host Bridge + 1043 81ce P5VD2-VM mothervoard + 0391 VT8371 [KX133] + 0409 VX855/VX875 Host Bridge: Host Control + 0410 VX900 Series Host Bridge: Host Control + 0415 VT6415 PATA IDE Host Controller + 1043 838f Motherboard + 0501 VT8501 [Apollo MVP4] + 0505 VT82C505 +# Shares chip with :0576. The VT82C576M has :1571 instead of :0561. + 0561 VT82C576MV + 0571 VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE + 1019 0985 P6VXA Motherboard + 1019 0a81 L7VTA v1.0 Motherboard (KT400-8235) + 1043 8052 VT8233A Bus Master ATA100/66/33 IDE + 1043 808c A7V8X / A7V333 motherboard + 1043 80a1 A7V8X-X motherboard rev. 1.01 + 1043 80ed A7V600/K8V-X/A8V Deluxe motherboard + 1106 0571 VT82C586/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE + 1179 0001 Magnia Z310 + 1297 f641 FX41 motherboard + 1458 5002 GA-7VAX Mainboard + 1462 5901 KT6 Delta-FIS2R (MS-6590) + 1462 7020 K8T NEO 2 motherboard + 1462 7094 K8T Neo2-F V2.0 + 1462 7120 KT4AV motherboard + 1462 7181 K8MM3-V mainboard + 147b 1407 KV8-MAX3 motherboard +# probably all K7VT2/4*/6 + 1849 0571 K7VT series Motherboards + 0576 VT82C576 3V [Apollo Master] + 0581 CX700/VX700/VX800/820-Series Serial ATA RAID-Controller +# Upgrade bios to get correct ID: 5324 instead of 0581 + 1106 0581 Wrong IDE ID + 0585 VT82C585VP [Apollo VP1/VPX] + 0586 VT82C586/A/B PCI-to-ISA [Apollo VP] + 1106 0000 MVP3 ISA Bridge + 0591 VT8237A SATA 2-Port Controller + 0595 VT82C595 [Apollo VP2] + 0596 VT82C596 ISA [Mobile South] + 1106 0000 VT82C596/A/B PCI to ISA Bridge + 1458 0596 VT82C596/A/B PCI to ISA Bridge + 0597 VT82C597 [Apollo VP3] + 0598 VT82C598 [Apollo MVP3] + 0601 VT8601 [Apollo ProMedia] + 0605 VT8605 [ProSavage PM133] + 103c 1254 D9840-60001 [Brio BA410 Motherboard] + 1043 802c CUV4X mainboard + 0680 VT82C680 [Apollo P6] + 0686 VT82C686 [Apollo Super South] + 1019 0985 P6VXA Motherboard + 103c 1256 D9840-60001 [Brio BA410 Motherboard] + 1043 802c CUV4X mainboard + 1043 8033 A7V Mainboard + 1043 803e A7V-E Mainboard + 1043 8040 A7M266 Mainboard + 1043 8042 A7V133/A7V133-C Mainboard + 1106 0000 VT82C686/A PCI to ISA Bridge + 1106 0686 VT82C686/A PCI to ISA Bridge + 1179 0001 Magnia Z310 + 147b a702 KG7-Lite Mainboard + 0691 VT82C693A/694x [Apollo PRO133x] + 1019 0985 P6VXA Motherboard + 1179 0001 Magnia Z310 + 1458 0691 VT82C691 Apollo Pro System Controller + 0693 VT82C693 [Apollo Pro Plus] + 0698 VT82C693A [Apollo Pro133 AGP] + 0709 VX11 Standard Host Bridge + 070a VX11 PCI Express Root Port + 070b VX11 PCI Express Root Port + 070c VX11 PCI Express Root Port + 070d VX11 PCI Express Root Port + 070e VX11 PCI Express Root Port + 0926 VT82C926 [Amazon] + 1000 VT82C570MV + 1106 VT82C570MV + 1122 VX800/VX820 Chrome 9 HC3 Integrated Graphics + 1204 K8M800 Host Bridge + 1208 PT890 Host Bridge + 1238 K8T890 Host Bridge + 1258 PT880 Host Bridge + 1259 CN333/CN400/PM880 Host Bridge + 1269 KT880 Host Bridge + 1282 K8T800Pro Host Bridge + 1290 K8M890 Host Bridge + 1293 PM896 Host Bridge + 1296 P4M800 Host Bridge + 1308 PT894 Host Bridge + 1314 CN700/VN800/P4M800CE/Pro Host Bridge + 1324 CX700/VX700-Series Error Reporting + 1327 P4M890 Host Bridge + 1336 K8M890CE Host Bridge + 1340 PT900 Host Bridge + 1351 VT3351 Host Bridge + 1353 VX800/VX820 Error Reporting + 1364 CN896/VN896/P4M900 Host Bridge + 1409 VX855/VX875 Error Reporting + 1410 VX900 Series Error Reporting + 1571 VT82C576M/VT82C586 + 1595 VT82C595/97 [Apollo VP2/97] + 1732 VT1732 [Envy24 II] PCI Multi-Channel Audio Controller + 2106 VIA Rhine Family Fast Ethernet Adapter (VT6105) + 2204 K8M800 Host Bridge + 2208 PT890 Host Bridge + 2238 K8T890 Host Bridge + 2258 PT880 Host Bridge + 2259 CN333/CN400/PM880 CPU Host Bridge + 2269 KT880 Host Bridge + 2282 K8T800Pro Host Bridge + 2290 K8M890 Host Bridge + 2293 PM896 Host Bridge + 2296 P4M800 Host Bridge + 2308 PT894 Host Bridge + 2314 CN700/VN800/P4M800CE/Pro Host Bridge + 2324 CX700/VX700-Series Host Interface Control + 2327 P4M890 Host Bridge + 2336 K8M890CE Host Bridge + 2340 PT900 Host Bridge + 2351 VT3351 Host Bridge + 2353 VX800/VX820 Host Bus Control + 2364 CN896/VN896/P4M900 Host Bridge + 2409 VX855/VX875 Host Bus Control + 2410 VX900 Series CPU Bus Controller + 287a VT8251 PCI to PCI Bridge + 287b VT8251 Host Bridge + 287c VT8251 PCIE Root Port + 287d VT8251 PCIE Root Port + 287e VT8237/8251 Ultra VLINK Controller + 3022 CLE266 + 3038 VT82xx/62xx/VX700/8x0/900 UHCI USB 1.1 Controller + 0925 1234 onboard UHCI USB 1.1 Controller + 1019 0985 P6VXA Motherboard + 1019 0a81 L7VTA v1.0 Motherboard (KT400-8235) + 1043 8080 A7V333 motherboard + 1043 808c VT62xx USB1.1 4 port controller + 1043 80a1 A7V8X-X motherboard + 1043 80ed A7V600/K8V-X/A8V Deluxe motherboard + 1179 0001 Magnia Z310 + 1234 0925 MVP3 USB Controller + 1458 5004 GA-7VAX Mainboard + 1462 5901 KT6 Delta-FIS2R (MS-6590) + 1462 7020 K8T NEO 2 motherboard + 1462 7094 K8T Neo2-F V2.0 + 1462 7120 KT4AV motherboard + 1462 7181 K8MM3-V mainboard + 147b 1407 KV8-MAX3 motherboard + 182d 201d CN-029 USB2.0 4 port PCI Card +# probably all K7VT2/4*/6 + 1849 3038 K7VT series Motherboards + 19da a179 ZBOX nano VD01 + 1af4 1100 QEMU Virtual Machine + 3040 VT82C586B ACPI + 3043 VT86C100A [Rhine] + 10bd 0000 VT86C100A Fast Ethernet Adapter + 1106 0100 VT86C100A Fast Ethernet Adapter + 1186 1400 DFE-530TX PCI Fast Ethernet Adapter (rev. A) + 3044 VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller + 0010 0001 IEEE 1394 4port DCST 1394-3+1B + 1025 005a TravelMate 290 + 103c 2a20 Pavilion t3030.de Desktop PC + 103c 2a3b Media Center PC m7590n + 1043 808a A8V/A8N/P4P800/P5SD2 series motherboard + 1043 81fe Motherboard + 1458 1000 GA-7VT600-1394 Motherboard + 1462 207d K8NGM2 series motherboard + 1462 217d Aspire L250 + 1462 590d KT6 Delta-FIS2R (MS-6590) + 1462 702d K8T NEO 2 motherboard + 1462 971d MS-6917 + 3050 VT82C596 Power Management + 3051 VT82C596 Power Management + 3053 VT6105M [Rhine-III] + 1186 1404 DFE-530TX PCI Fast Ethernet Adapter (rev. D) + 3057 VT82C686 [Apollo Super ACPI] + 1019 0985 P6VXA Motherboard + 1019 0987 K7VZA Motherboard + 1043 8033 A7V Mainboard + 1043 803e A7V-E Mainboard + 1043 8040 A7M266 Mainboard + 1043 8042 A7V133/A7V133-C Mainboard + 1179 0001 Magnia Z310 + 3058 VT82C686 AC97 Audio Controller + 0e11 0097 SoundMax Digital Integrated Audio + 0e11 b194 Soundmax integrated digital audio + 1019 0985 P6VXA Motherboard + 1019 0987 K7VZA Motherboard + 103c 1251 D9840-60001 [Brio BA410 Motherboard] + 1043 1106 A7V133/A7V133-C Mainboard + 1106 4511 Onboard Audio on EP7KXA + 1106 aa03 VT1612A AC'97 Audio Controller + 11d4 5348 AD1881A audio + 1458 7600 Onboard Audio + 1462 3091 MS-6309 Onboard Audio + 1462 3092 MS-6309 v2.x Mainboard (VIA VT1611A codec) + 1462 3300 MS-6330 Onboard Audio + 1462 3400 MS-6340 (VT8363) motherboard + 15dd 7609 Onboard Audio + 3059 VT8233/A/8235/8237 AC97 Audio Controller + 1019 0a81 L7VTA v1.0 Motherboard (KT400-8235) + 1019 1841 M811 (VT8367/VT8235/VT6103) [KT333] motherboard + 1019 1877 K8M800-M2 (V2.0) onboard audio + 1043 8095 A7V8X Motherboard (Realtek ALC650 codec) + 1043 80a1 A7V8X-X Motherboard + 1043 80b0 A7V600/K8V-X/K8V Deluxe motherboard (ADI AD1980 codec [SoundMAX]) + 1043 80f3 SK8V motherboard + 1043 810d P5VD1-X (AD1888 codec [SoundMax]) + 1043 812a A8V Deluxe motherboard (Realtek ALC850 codec) + 10ec 8168 High Definition Audio + 1106 3059 L7VMM2 Motherboard + 1106 4161 K7VT2 motherboard + 1106 4170 PCPartner P4M800-8237R Motherboard + 1106 4552 Soyo KT-600 Dragon Plus (Realtek ALC 650) + 1297 c160 FX41 motherboard (Realtek ALC650 codec) + 1413 147b KV8 Pro motherboard onboard audio + 1458 a002 GA-7VAX Onboard Audio (Realtek ALC650) + 1462 0080 K8T NEO 2 motherboard + 1462 3800 KT266 onboard audio + 1462 5901 KT6 Delta-FIS2R (MS-6590) + 1462 7181 K8MM3-V mainboard + 147b 1407 KV8-MAX3 motherboard + 1695 300c Realtek ALC655 audio on EP-8KRA series mainboard + 1849 0850 ASRock 775Dual-880 Pro onboard audio (Realtek ALC850) + 1849 9739 P4VT8 Mainboard (C-Media CMI9739A codec) +# probably all K7VT2/4*/6 + 1849 9761 K7VT series Motherboards + 4005 4710 MSI K7T266 Pro2-RU (MSI-6380 v2) onboard audio (Realtek/ALC 200/200P) + a0a0 01b6 AK77-8XN onboard audio + a0a0 0342 AK86-L motherboard + 3065 VT6102/VT6103 [Rhine-II] + 1043 80a1 A7V8X-X Motherboard + 1043 80ed A7V600-X Motherboard + 1106 0102 VT6102/6103 [Rhine II] Ethernet Controller + 1186 1400 DFE-530TX PCI Fast Ethernet Adapter (rev. A) + 1186 1401 DFE-530TX PCI Fast Ethernet Adapter (rev. B) + 1186 1402 DFE-530TX PCI Fast Ethernet Adapter (rev. B) + 13b9 1421 LD-10/100AL PCI Fast Ethernet Adapter (rev.B) + 1462 7061 MS-7061 + 1462 7181 K8MM3-V mainboard + 147b 1c09 NV7 Motherboard + 1695 3005 VT6103 +# probably all K7VT2/4*/6 + 1849 3065 K7VT series Motherboards +# This hosts more than just the Intel 537 codec, it also hosts PCtel (SIL33) and SmartLink (SIL34) codecs + 3068 AC'97 Modem Controller + 1462 309e MS-6309 Saturn Motherboard + 3074 VT8233 PCI to ISA Bridge + 1043 8052 VT8233A + 3091 VT8633 [Apollo Pro266] + 3099 VT8366/A/7 [Apollo KT266/A/333] + 1019 1841 M811 (VT8367/VT8235/VT6103) [KT333] motherboard + 1043 8064 A7V266-E Mainboard + 1043 807f A7V333 Mainboard + 1849 3099 K7VT2 motherboard + 3101 VT8653 Host Bridge + 3102 VT8662 Host Bridge + 3103 VT8615 Host Bridge + 3104 USB 2.0 EHCI-Compliant Host-Controller + 0925 1234 onboard EHCI USB 2.0 Controller + 1019 0a81 L7VTA v1.0 Motherboard (KT400-8235) + 1043 808c A7V8X motherboard + 1043 80a1 A7V8X-X motherboard rev 1.01 + 1043 80ed A7V600/K8V-X/A8V Deluxe motherboard + 1106 3104 USB 2.0 Controller + 1297 f641 FX41 motherboard + 1458 5004 GA-7VAX Mainboard + 1462 5901 KT6 Delta-FIS2R (MS-6590) + 1462 7020 K8T NEO 2 motherboard + 1462 7094 K8T Neo2-F V2.0 + 1462 7120 KT4AV motherboard + 1462 7181 K8MM3-V mainboard + 147b 1407 KV8-MAX3 motherboard + 182d 201d CN-029 USB 2.0 4 port PCI Card +# probably all K7VT2/4*/6 + 1849 3104 K7VT series Motherboards + 19da a179 ZBOX nano VD01 + 3106 VT6105/VT6106S [Rhine-III] + 1106 0105 VT6106S [Rhine-III] + 1186 1403 DFE-530TX PCI Fast Ethernet Adapter (rev. C) + 1186 1405 DFE-520TX Fast Ethernet PCI Adapter + 1186 1406 DFE-530TX+ rev F2 + 1186 1407 DFE-538TX + 3108 K8M800/K8N800/K8N800A [S3 UniChrome Pro] + 3109 VT8233C PCI to ISA Bridge + 3112 VT8361 [KLE133] Host Bridge + 3113 VPX/VPX2 PCI to PCI Bridge Controller + 3116 VT8375 [KM266/KL266] Host Bridge + 1297 f641 FX41 motherboard + 3118 CN400/PM800/PM880/PN800/PN880 [S3 UniChrome Pro] + 3119 VT6120/VT6121/VT6122 Gigabit Ethernet Adapter + 3122 VT8623 [Apollo CLE266] integrated CastleRock graphics + 3123 VT8623 [Apollo CLE266] + 3128 VT8753 [P4X266 AGP] + 3133 VT3133 Host Bridge + 3142 VT6651 WiFi Adapter, 802.11b + 3147 VT8233A ISA Bridge + 1043 808c A7V333 motherboard + 3148 P4M266 Host Bridge + 3149 VIA VT6420 SATA RAID Controller + 1043 80ed A7V600/K8V Deluxe/K8V-X/A8V Deluxe motherboard + 1458 b003 GA-7VM400AM(F) Motherboard + 1462 5901 KT6 Delta-FIS2R (MS-6590) + 1462 7020 K8T Neo 2 Motherboard + 1462 7094 K8T Neo2-F V2.0 + 1462 7181 K8MM3-V mainboard + 147b 1407 KV8-MAX3 motherboard + 147b 1408 KV7 + 1849 3149 K7VT6 motherboard + a0a0 04ad AK86-L motherboard + 3156 P/KN266 Host Bridge + 3157 CX700/VX700 [S3 UniChrome Pro] + 3164 VT6410 ATA133 RAID controller + 1043 80f4 P4P800 Mainboard Deluxe ATX + 1462 7028 915P/G Neo2 + 3168 P4X333/P4X400/PT800 AGP Bridge + 1849 3168 P4VT8 Mainboard + 3177 VT8235 ISA Bridge + 1019 0a81 L7VTA v1.0 Motherboard (KT400-8235) + 1019 1841 M811 (VT8367/VT8235/VT6103) [KT333] motherboard + 1043 808c A7V8X motherboard + 1043 80a1 A7V8X-X motherboard + 1106 0000 KT4AV motherboard + 1297 f641 FX41 motherboard + 1458 5001 GA-7VAX Mainboard +# probably all K7VT2/4*/6 + 1849 3177 K7VT series Motherboards + 3178 ProSavageDDR P4N333 Host Bridge + 3188 VT8385 [K8T800 AGP] Host Bridge + 1043 80a3 K8V Deluxe/K8V-X motherboard + 147b 1407 KV8-MAX3 motherboard + 3189 VT8377 [KT400/KT600 AGP] Host Bridge + 1043 807f A7V8X motherboard + 1106 0000 KT4AV motherboard (KT400A) + 1458 5000 GA-7VAX Mainboard +# probably all K7VT2/4*/6 + 1849 3189 K7VT series Motherboards + 31b0 VX11 Standard Host Bridge + 31b1 VX11 Standard Host Bridge + 31b2 VX11 DRAM Controller + 31b3 VX11 Power Management Controller + 31b4 VX11 I/O APIC + 31b5 VX11 Scratch Device + 31b7 VX11 Standard Host Bridge + 31b8 VX11 PCI to PCI Bridge + 3204 K8M800 Host Bridge + 3205 VT8378 [KM400/A] Chipset Host Bridge + 1458 5000 GA-7VM400M Motherboard + 3208 PT890 Host Bridge + 3213 VPX/VPX2 PCI to PCI Bridge Controller + 3218 K8T800M Host Bridge + 3227 VT8237 ISA bridge [KT600/K8T800/K8T890 South] + 1043 80ed A7V600/K8V-X/A8V Deluxe motherboard + 1106 3227 DFI KT600-AL / Soltek SL-B9D-FGR Motherboard + 1458 5001 GA-7VT600 Motherboard + 147b 1407 KV8-MAX3 motherboard + 1849 3227 K7VT4 motherboard + 3230 K8M890CE/K8N890CE [Chrome 9] + 3238 K8T890 Host Bridge + 3249 VT6421 IDE/SATA Controller + 1106 3249 VT6421 IDE/SATA Controller + 324a CX700/VX700 PCI to PCI Bridge + 324b CX700/VX700 Host Bridge + 324e CX700/VX700 Internal Module Bus + 3253 VT6655 WiFi Adapter, 802.11a/b/g + 3258 PT880 Host Bridge + 3259 CN333/CN400/PM880 Host Bridge + 3260 VIA Chrome9 HC IGP + 3269 KT880 Host Bridge + 3282 K8T800Pro Host Bridge + 3287 VT8251 PCI to ISA Bridge + 3288 VX900/VT8xxx High Definition Audio Controller + 19da a179 ZBOX VD01 + 3290 K8M890 Host Bridge + 3296 P4M800 Host Bridge + 3324 CX700/VX700-Series DRAM Bus Control + 3327 P4M890 Host Bridge + 3336 K8M890CE Host Bridge + 3337 VT8237A PCI to ISA Bridge + 3340 PT900 Host Bridge + 3343 P4M890 [S3 UniChrome Pro] + 3344 CN700/P4M800 Pro/P4M800 CE/VN800 Graphics [S3 UniChrome Pro] + 3349 VT8251 AHCI/SATA 4-Port Controller + 3351 VT3351 Host Bridge + 3353 VX800/820 PCI to PCI Bridge + 3364 CN896/VN896/P4M900 Host Bridge + 3365 VT630x IEEE 1394 Host Controller [Fire II/M] + 3371 CN896/VN896/P4M900 [Chrome 9 HC] + 3372 VT8237S PCI to ISA Bridge + 337a VT8237A PCI to PCI Bridge + 337b VT8237A Host Bridge + 3403 VT6315 Series Firewire Controller + 1043 8374 M5A88-V EVO + 1043 8384 P8P67 Deluxe Motherboard + 3409 VX855/VX875 DRAM Bus Control + 3410 VX900 Series DRAM Bus Control + 19da a179 ZBOX nano VD01 + 3432 VL800/801 xHCI USB 3.0 Controller + 3456 VX11 Standard Host Bridge + 345b VX11 Miscellaneous Bus + 3483 VL805/806 xHCI USB 3.0 Controller + 3a01 VX11 Graphics [Chrome 645/640] + 4149 VIA VT6420 (ATA133) Controller + 4204 K8M800 Host Bridge + 4208 PT890 Host Bridge + 4238 K8T890 Host Bridge + 4258 PT880 Host Bridge + 4259 CN333/CN400/PM880 Host Bridge + 4269 KT880 Host Bridge + 4282 K8T800Pro Host Bridge + 4290 K8M890 Host Bridge + 4293 PM896 Host Bridge + 4296 P4M800 Host Bridge + 4308 PT894 Host Bridge + 4314 CN700/VN800/P4M800CE/Pro Host Bridge + 4324 CX700/VX700-Series Power Management and Testing Control + 4327 P4M890 Host Bridge + 4336 K8M890CE Host Bridge + 4340 PT900 Host Bridge + 4351 VT3351 Host Bridge + 4353 VX800/VX820 Power Management Control + 4364 CN896/VN896/P4M900 Host Bridge + 4409 VX855/VX875 Power Management Control + 4410 VX900 Series Power Management and Chip Testing Control + 19da a179 ZBOX nano VD01 + 5030 VT82C596 ACPI [Apollo PRO] + 5122 VX855/VX875 Chrome 9 HCM Integrated Graphics + 5208 PT890 I/O APIC Interrupt Controller + 5238 K8T890 I/O APIC Interrupt Controller + 5287 VT8251 Serial ATA Controller + 5290 K8M890 I/O APIC Interrupt Controller + 5308 PT894 I/O APIC Interrupt Controller + 5324 CX700M2/VX700/VX800/820-Series Serial ATA & EIDE-Controller + 5327 P4M890 I/O APIC Interrupt Controller + 5336 K8M890CE I/O APIC Interrupt Controller + 5340 PT900 I/O APIC Interrupt Controller + 5351 VT3351 I/O APIC Interrupt Controller + 5353 VX800/VX820 APIC and Central Traffic Control + 5364 CN896/VN896/P4M900 I/O APIC Interrupt Controller + 5372 VT8237/8251 Serial ATA Controller + 5409 VX855/VX875 APIC and Central Traffic Control + 5410 VX900 Series APIC and Central Traffic Control + 6100 VT85C100A [Rhine II] + 6287 SATA RAID Controller + 6290 K8M890CE Host Bridge + 6327 P4M890 Security Device + 6353 VX800/VX820 Scratch Registers + 6364 CN896/VN896/P4M900 Security Device + 6409 VX855/VX875 Scratch Registers + 6410 VX900 Series Scratch Registers + 19da a179 ZBOX nano VD01 + 7122 VX900 Graphics [Chrome9 HD] + 7204 K8M800 Host Bridge + 7205 KM400/KN400/P4M800 [S3 UniChrome] + 1458 d000 Gigabyte GA-7VM400(A)M(F) Motherboard + 1462 7061 MS-7061 + 7208 PT890 Host Bridge + 7238 K8T890 Host Bridge + 7258 PT880 Host Bridge + 7259 CN333/CN400/PM880 Host Bridge + 7269 KT880 Host Bridge + 7282 K8T800Pro Host Bridge + 7290 K8M890 Host Bridge + 7293 PM896 Host Bridge + 7296 P4M800 Host Bridge + 7308 PT894 Host Bridge + 7314 CN700/VN800/P4M800CE/Pro Host Bridge + 7324 CX700/VX700-Series North-South Module Interface Control + 7327 P4M890 Host Bridge + 7336 K8M890CE Host Bridge + 7340 PT900 Host Bridge + 7351 VT3351 Host Bridge + 7353 VX800/VX820 North-South Module Interface Control + 7364 CN896/VN896/P4M900 Host Bridge + 7409 VX855/VX875 North-South Module Interface Control + 7410 VX900 Series North-South Module Interface Control + 19da a179 ZBOX nano VD01 + 8231 VT8231 [PCI-to-ISA Bridge] + 8235 VT8235 ACPI + 8305 VT8363/8365 [KT133/KM133 AGP] + 8324 CX700/VX700-Series Bus Control and Power Management + 8353 VX800/VX820 Bus Control and Power Management + 8391 VT8371 [KX133 AGP] + 8400 MVP4 + 8409 VX855/VX875 Bus Control and Power Management + 8410 VX900 Series Bus Control and Power Management + 19da a179 ZBOX VD01 + 8500 KLE133/PLE133/PLE133T + 8501 VT8501 [Apollo MVP4 AGP] + 8596 VT82C596 [Apollo PRO AGP] + 8597 VT82C597 [Apollo VP3 AGP] + 8598 VT82C598/694x [Apollo MVP3/Pro133x AGP] + 1019 0985 P6VXA Motherboard + 8601 VT8601 [Apollo ProMedia AGP] + 8605 VT8605 [PM133 AGP] + 8691 VT82C691 [Apollo Pro] + 8693 VT82C693 [Apollo Pro Plus] PCI Bridge + 8a25 PL133/PL133T [S3 ProSavage] + 8a26 KL133/KL133A/KM133/KM133A [S3 ProSavage] + 8d01 PN133/PN133T [S3 Twister] + 8d04 KM266/P4M266/P4M266A/P4N266 [S3 ProSavageDDR] + 9001 VX900 Series Serial-ATA Controller + 9082 Standard AHCI 1.0 SATA Controller + 9140 HDMI Audio Device + 9201 USB3.0 Controller +# Centaur CNS Coprocessor + 9380 Ncore Coprocessor + 9530 VX800/820/900 Series Secure Digital Memory Card Controller + 95d0 VX800/820/900 Series SDIO Host Controller + a208 PT890 PCI to PCI Bridge Controller + a238 K8T890 PCI to PCI Bridge Controller + a327 P4M890 PCI to PCI Bridge Controller + a353 VX8xx/900 Series South-North Module Interface Control + a364 CN896/VN896/P4M900 PCI to PCI Bridge Controller + a409 VX855/VX875/VX900 Series USB Device Controller + a410 VX900 Series PCI Express Root Port 0 + b091 VT8633 [Apollo Pro266 AGP] + b099 VT8366/A/7 [Apollo KT266/A/333 AGP] + b101 VT8653 AGP Bridge + b102 VT8362 AGP Bridge + b103 VT8615 AGP Bridge + b112 VT8361 [KLE133] AGP Bridge + b113 VPX/VPX2 I/O APIC Interrupt Controller + b115 VT8363/8365 [KT133/KM133] PCI Bridge + b168 VT8235 PCI Bridge + b188 VT8237/8251 PCI bridge [K8M890/K8T800/K8T890 South] + 147b 1407 KV8-MAX3 motherboard + b198 VT8237/CX700/VX700-Series PCI to PCI Bridge + b213 VPX/VPX2 I/O APIC Interrupt Controller + b353 VX855/VX875/VX900 PCI to PCI Bridge + b410 VX900 Series PCI Express Root Port 1 + b999 [K8T890 North / VT8237 South] PCI Bridge + c208 PT890 PCI to PCI Bridge Controller + c238 K8T890 PCI to PCI Bridge Controller + c327 P4M890 PCI to PCI Bridge Controller + c340 PT900 PCI to PCI Bridge Controller + c353 VX800/820-Series PCI-Express Root (PCI-to-PCI Virtual Bridge) + c364 CN896/VN896/P4M900 PCI to PCI Bridge Controller + c409 VX855/VX875 EIDE Controller + c410 VX900 Series PCI Express Root Port 2 + d104 VT8237R USB UDCI Controller + d208 PT890 PCI to PCI Bridge Controller + d213 VPX/VPX2 PCI to PCI Bridge Controller + d238 K8T890 PCI to PCI Bridge Controller + d340 PT900 PCI to PCI Bridge Controller + d410 VX900 Series PCI Express Root Port 3 + e208 PT890 PCI to PCI Bridge Controller + e238 K8T890 PCI to PCI Bridge Controller + e340 PT900 PCI to PCI Bridge Controller + e353 VX800/820-Series PCI-Express Root Port 0 + e410 VX900 Series PCI Express Physical Layer Electrical Sub-block + f208 PT890 PCI to PCI Bridge Controller + f238 K8T890 PCI to PCI Bridge Controller + f340 PT900 PCI to PCI Bridge Controller + f353 VX800/820-Series PCI-Express Root Port 1 + f410 VX900 Series PCI UART Port 0-3 +1107 Stratus Computers + 0576 VIA VT82C570MV [Apollo] (Wrong vendor ID!) +1108 Proteon, Inc. + 0100 p1690plus_AA + 0101 p1690plus_AB + 0105 P1690Plus + 0108 P1690Plus + 0138 P1690Plus + 0139 P1690Plus + 013c P1690Plus + 013d P1690Plus +1109 Cogent Data Technologies, Inc. + 1400 EM110TX [EX110TX] +110a Siemens AG + 0002 Pirahna 2-port + 0005 Tulip controller, power management, switch extender + 0006 FSC PINC (I/O-APIC) + 0015 FSC Multiprocessor Interrupt Controller + 001d FSC Copernicus Management Controller + 007b FSC Remote Service Controller, mailbox device + 007c FSC Remote Service Controller, shared memory device + 007d FSC Remote Service Controller, SMIC device + 2101 HST SAPHIR V Primary PCI (ISDN/PMx) +# Superfastcom-PCI (Commtech, Inc.) or DSCC4 WAN Adapter + 2102 DSCC4 PEB/PEF 20534 DMA Supported Serial Communication Controller with 4 Channels + 2104 Eicon Diva 2.02 compatible passive ISDN card + 3141 SIMATIC NET CP 5611 / 5621 + 3142 SIMATIC NET CP 5613 / 5614 + 3143 SIMATIC NET CP 1613 + 4021 SIMATIC NET CP 5512 (Profibus and MPI Cardbus Adapter) + 4029 SIMATIC NET CP 5613 A2 + 110a 4029 SIMATIC NET CP 5613 A2 + 110a c029 SIMATIC NET CP 5614 A2 + 4035 SIMATIC NET CP 1613 A2 + 4036 SIMATIC NET CP 1616 + 4038 SIMATIC NET CP 1604 + 4069 SIMATIC NET CP 5623 + 110a 4069 SIMATIC NET CP 5623 + 110a c069 SIMATIC NET CP 5624 + 407c SIMATIC NET CP 5612 + 407d SIMATIC NET CP 5613 A3 + 407e SIMATIC NET CP 5622 + 4083 SIMATIC NET CP 5614 A3 + 4084 SIMATIC NET CP 1626 + 4942 FPGA I-Bus Tracer for MBD + 6120 SZB6120 +110b Chromatic Research Inc. + 0001 Mpact Media Processor + 0004 Mpact 2 +110c Mini-Max Technology, Inc. +110d Znyx Advanced Systems +110e CPU Technology +110f Ross Technology +1110 Powerhouse Systems + 6037 Firepower Powerized SMP I/O ASIC + 6073 Firepower Powerized SMP I/O ASIC +1111 Santa Cruz Operation +# Also claimed to be RNS or Rockwell International, current PCISIG records list Osicom +1112 Osicom Technologies Inc + 2200 FDDI Adapter + 2300 Fast Ethernet Adapter + 2340 4 Port Fast Ethernet Adapter + 2400 ATM Adapter +1113 Accton Technology Corporation + 1211 SMC2-1211TX + 103c 1207 EN-1207D Fast Ethernet Adapter + 1113 1211 EN-1207D Fast Ethernet Adapter + 1216 EN-1216 Ethernet Adapter + 1113 1216 EN1207F series PCI Fast Ethernet Adapter + 1113 2220 EN2220A Cardbus Fast Ethernet Adapter + 1113 2242 EN2242 10/100 Ethernet Mini-PCI Card + 111a 1020 SpeedStream 1020 PCI 10/100 Ethernet Adaptor [EN-1207F-TX ?] + 1217 EN-1217 Ethernet Adapter + 5105 10Mbps Network card + 9211 EN-1207D Fast Ethernet Adapter + 1113 9211 EN-1207D Fast Ethernet Adapter + 9511 21x4x DEC-Tulip compatible Fast Ethernet + d301 CPWNA100 (Philips wireless PCMCIA) + ec02 SMC 1244TX v3 + ee23 SMCWPCIT-G 108Mbps Wireless PCI adapter +1114 Atmel Corporation + 0506 at76c506 802.11b Wireless Network Adaptor +1115 3D Labs +1116 Data Translation + 0022 DT3001 + 0023 DT3002 + 0024 DT3003 + 0025 DT3004 + 0026 DT3005 + 0027 DT3001-PGL + 0028 DT3003-PGL + 0051 DT322 + 0060 DT340 + 0069 DT332 + 80c2 DT3162 +1117 Datacube, Inc + 9500 Max-1C SVGA card + 9501 Max-1C image processing +1118 Berg Electronics +1119 ICP Vortex Computersysteme GmbH + 0000 GDT 6000/6020/6050 + 0001 GDT 6000B/6010 + 0002 GDT 6110/6510 + 0003 GDT 6120/6520 + 0004 GDT 6530 + 0005 GDT 6550 + 0006 GDT 6117/6517 + 0007 GDT 6127/6527 + 0008 GDT 6537 + 0009 GDT 6557/6557-ECC + 000a GDT 6115/6515 + 000b GDT 6125/6525 + 000c GDT 6535 + 000d GDT 6555/6555-ECC + 0100 GDT 6117RP/6517RP + 0101 GDT 6127RP/6527RP + 0102 GDT 6537RP + 0103 GDT 6557RP + 0104 GDT 6111RP/6511RP + 0105 GDT 6121RP/6521RP + 0110 GDT 6117RD/6517RD + 0111 GDT 6127RD/6527RD + 0112 GDT 6537RD + 0113 GDT 6557RD + 0114 GDT 6111RD/6511RD + 0115 GDT 6121RD/6521RD + 0118 GDT 6118RD/6518RD/6618RD + 0119 GDT 6128RD/6528RD/6628RD + 011a GDT 6538RD/6638RD + 011b GDT 6558RD/6658RD + 0120 GDT 6117RP2/6517RP2 + 0121 GDT 6127RP2/6527RP2 + 0122 GDT 6537RP2 + 0123 GDT 6557RP2 + 0124 GDT 6111RP2/6511RP2 + 0125 GDT 6121RP2/6521RP2 + 0136 GDT 6113RS/6513RS + 0137 GDT 6123RS/6523RS + 0138 GDT 6118RS/6518RS/6618RS + 0139 GDT 6128RS/6528RS/6628RS + 013a GDT 6538RS/6638RS + 013b GDT 6558RS/6658RS + 013c GDT 6533RS/6633RS + 013d GDT 6543RS/6643RS + 013e GDT 6553RS/6653RS + 013f GDT 6563RS/6663RS + 0166 GDT 7113RN/7513RN/7613RN + 0167 GDT 7123RN/7523RN/7623RN + 0168 GDT 7118RN/7518RN/7518RN + 0169 GDT 7128RN/7528RN/7628RN + 016a GDT 7538RN/7638RN + 016b GDT 7558RN/7658RN + 016c GDT 7533RN/7633RN + 016d GDT 7543RN/7643RN + 016e GDT 7553RN/7653RN + 016f GDT 7563RN/7663RN + 01d6 GDT 4x13RZ + 01d7 GDT 4x23RZ + 01f6 GDT 8x13RZ + 01f7 GDT 8x23RZ + 01fc GDT 8x33RZ + 01fd GDT 8x43RZ + 01fe GDT 8x53RZ + 01ff GDT 8x63RZ + 0210 GDT 6519RD/6619RD + 0211 GDT 6529RD/6629RD + 0260 GDT 7519RN/7619RN + 0261 GDT 7529RN/7629RN + 02ff GDT MAXRP + 0300 GDT NEWRX + 0301 GDT NEWRX2 +111a Efficient Networks, Inc + 0000 155P-MF1 (FPGA) + 0002 155P-MF1 (ASIC) + 0003 ENI-25P ATM + 111a 0000 ENI-25p Miniport ATM Adapter + 0005 SpeedStream (LANAI) + 111a 0001 ENI-3010 ATM + 111a 0009 ENI-3060 ADSL (VPI=0) + 111a 0101 ENI-3010 ATM + 111a 0109 ENI-3060CO ADSL (VPI=0) + 111a 0809 ENI-3060 ADSL (VPI=0 or 8) + 111a 0909 ENI-3060CO ADSL (VPI=0 or 8) + 111a 0a09 ENI-3060 ADSL (VPI=<0..15>) + 0007 SpeedStream ADSL + 111a 1001 ENI-3061 ADSL [ASIC] + 1020 SpeedStream PCI 10/100 Network Card + 1203 SpeedStream 1023 Wireless PCI Adapter +111b Teledyne Electronic Systems +111c Tricord Systems Inc. + 0001 Powerbis Bridge +# now owned by Microchip Technology +111d Microsemi / PMC / IDT + 0001 IDT77201/77211 155Mbps ATM SAR Controller [NICStAR] + 0003 IDT77222/77252 155Mbps ATM MICRO ABR SAR Controller + 0004 IDT77V252 155Mbps ATM MICRO ABR SAR Controller + 0005 IDT77V222 155Mbps ATM MICRO ABR SAR Controller + 8018 PES12N3A 12-lane 3-Port PCI Express Switch + 801c PES24N3A PCI Express Switch + 8028 PES4T4 PCI Express Switch + 802b PES8T5A PCI Express Switch + 802c PES16T4 PCI Express Switch + 802d PES16T7 PCI Express Switch + 802e PES24T6 PCI Express Switch + 802f PES32T8 PCI Express Switch + 8032 PES48T12 PCI Express Switch + 8034 PES16/22/34H16 PCI Express Switch + 8035 PES32H8 PCI Express Switch + 8036 PES48H12 PCI Express Switch + 8037 PES64H16 PCI Express Switch + 8039 PES3T3 PCI Express Switch + 803a PES4T4 PCI Express Switch + 803c PES5T5 PCI Express Switch + 803d PES6T5 PCI Express Switch + 8048 PES8NT2 PCI Express Switch + 8049 PES8NT2 PCI Express Switch + 804a PES8NT2 PCI Express Internal NTB + 804b PES8NT2 PCI Express External NTB + 804c PES16NT2 PCI Express Switch + 804d PES16NT2 PCI Express Switch + 804e PES16NT2 PCI Express Internal NTB + 804f PES16NT2 PCI Express External NTB + 8058 PES12NT3 PCI Express Switch + 8059 PES12NT3 PCI Express Switch + 805a PES12NT3 PCI Express Internal NTB + 805b PES12NT3 PCI Express External NTB + 805c PES24NT3 PCI Express Switch + 805d PES24NT3 PCI Express Switch + 805e PES24NT3 PCI Express Internal NTB + 805f PES24NT3 PCI Express External NTB + 8060 PES16T4G2 PCI Express Gen2 Switch + 8061 PES12T3G2 PCI Express Gen2 Switch + 8068 PES6T6G2 PCI Express Gen2 Switch + 806a PES24T3G2 PCI Express Gen2 Switch + 14c1 000c 10G-PCIE2-8B2 + 806c PES16T4A/4T4G2 PCI Express Gen2 Switch + 806e PES24T6G2 PCI Express Gen2 Switch + 806f HIO524G2 PCI Express Gen2 Switch + 8077 89HPES64H16G2 64-Lane 16-Port PCIe Gen2 System Interconnect Switch + 8088 PES32NT8BG2 PCI Express Switch + 1093 752f PXIe-8383mc Device + 1093 7543 PXIe-8383mc System Host + 1093 755c PXIe-8364 + 1093 755d PXIe-8374 + 1093 75ff PXIe-8383mc DMA + 1093 7600 PXIe-8383mc DMA + 1093 7602 PXIe-8384 +# 32-lanes 24-ports Gen.2 + 808a 89HPES32NT24BG2 PCI Express Switch +# 32-lanes 24-ports Gen.2 + 808c 89HPES32NT24AG2 PCI Express Switch + 808e PES24NT24G2 PCI Express Switch + 808f 89HPES32NT8AG2 32-Lane 8-Port PCIe Gen2 System Interconnect Switch with Non-Transparent Bridging + 8090 89HPES16NT16G2 16-Lane 16-Port PCIe Gen2 System Interconnect Switch + 8092 89HPES12NT12G2 12-Lane 12-Port PCIe Gen2 System Interconnect Switch + 80cf F32P08xG3 [PCIe boot mode] + 80d2 F32P08xG3 NVMe controller +111e Eldec +111f Precision Digital Images + 4a47 Precision MX Video engine interface + 5243 Frame capture bus interface +# formerly EMC Corporation +1120 Dell EMC + 2306 Unity Fibre Channel Controller + 2501 Unity Ethernet Controller + 2505 Unity Fibre Channel Controller +1121 Zilog +1122 Multi-tech Systems, Inc. +1123 Excellent Design, Inc. +1124 Leutron Vision AG + 2581 Picport Monochrome +1125 Eurocore +1126 Vigra +1127 FORE Systems Inc + 0200 ForeRunner PCA-200 ATM + 0210 PCA-200PC + 0250 ATM + 0300 ForeRunner PCA-200EPC ATM + 0310 ATM + 0400 ForeRunnerHE ATM Adapter + 1127 0400 ForeRunnerHE ATM +1129 Firmworks +112a Hermes Electronics Company, Ltd. +# nee Linotype - Hell AG +112b Heidelberger Druckmaschinen AGHeidelberger Druckmaschinen AG +112c Zenith Data Systems +112d Ravicad +112e Infomedia Microelectronics Inc. +112f Dalsa Inc. + 0000 MVC IC-PCI + 0001 MVC IM-PCI Video frame grabber/processor + 0004 PCDig Digital Image Capture + 0008 PC-CamLink PCI framegrabber +1130 Computervision +1131 Philips Semiconductors + 1561 USB 1.1 Host Controller + 1775 c200 C2K onboard USB 1.1 host controller + 1562 USB 2.0 Host Controller + 1775 c200 C2K onboard USB 2.0 host controller + 3400 SmartPCI56(UCB1500) 56K Modem + 5400 TriMedia TM1000/1100 + 12ca 0000 BlueICE + 5402 TriMedia TM1300 + 1244 0f00 Fritz!Card DSL + 15eb 1300 DT1300 + 15eb 1302 DT1302 + 15eb 1304 DT1304 + 15eb 1305 DT1305 + 15eb 1306 PMCDT1306 + 15eb 1308 DT1308 + 15eb 1331 DT1301 with SAA7121 + 15eb 1337 DT1301 with SAA7127 + 15eb 2d3d X3D + 15eb 7022 PTM1300 + 5405 TriMedia TM1500 + 1136 0005 LCP-1500 + 5406 TriMedia TM1700 + 540b PNX1005 Media Processor + 1131 0020 PNXLite PCI Demo Board + 7130 SAA7130 Video Broadcast Decoder + 0000 4016 Behold TV 401 + 0000 4051 Behold TV 405 FM + 0000 5051 Behold TV 505 RDS + 0000 505b Behold TV 505 RDS + 102b 48d0 Matrox CronosPlus + 1048 226b ELSA EX-VISION 300TV + 107d 6655 WinFast DTV1000S + 1131 0000 SAA7130-based TV tuner card + 1131 2001 10MOONS PCI TV CAPTURE CARD + 1131 2005 Techcom (India) TV Tuner Card (SSD-TV-670) + 1458 9006 GT-PS700 DVB-S tuner + 1461 050c Nagase Sangyo TransGear 3000TV + 1461 10ff AVerMedia DVD EZMaker + 1461 2108 AverMedia AverTV/305 + 1461 2115 AverMedia AverTV Studio 305 + 153b 1152 Terratec Cinergy 200 TV + 185b c100 Compro VideoMate TV PVR/FM + 185b c901 Videomate DVB-T200 + 5168 0138 LifeView FlyVIDEO2000 + 5ace 5010 Behold TV 501 + 5ace 5050 Behold TV 505 FM + 7133 SAA7131/SAA7133/SAA7135 Video Broadcast Decoder + 0000 4091 Beholder BeholdTV 409 FM + 0000 5071 Behold TV 507 RDS + 0000 507b Behold TV 507 RDS + 0000 5201 Behold TV Columbus + 0070 6701 WinTV HVR-1110 + 1019 4cb5 Elitegroup ECS TVP3XP FM1236 Tuner Card (NTSC,FM) + 1043 0210 FlyTV mini Asus Digimatrix + 1043 4843 TV-FM 7133 + 1043 4845 TV-FM 7135 + 1043 4862 P7131 Dual + 1043 4876 My Cinema-P7131 Hybrid + 1131 0000 SAA713x-based TV tuner card + 1131 2001 Proteus Pro [philips reference design] + 1131 2018 Tiger reference design + 1131 4ee9 MonsterTV Mobile + 1131 7133 Pinnacle PCTV 301i + 11bd 002b PCTV Stereo + 11bd 002e PCTV 110i (saa7133) + 12ab 0800 PURPLE TV + 13c2 2804 Technotrend Budget T-3000 Hybrid + 1421 0335 Instant TV DVB-T Cardbus + 1421 1370 Instant TV (saa7135) + 1435 7330 VFG7330 + 1435 7350 VFG7350 + 1458 9001 GC-PTV-TAF Hybrid TV card + 1458 9002 GT-PTV-TAF-RH DVB-T/Analog TV/FM tuner + 1458 9003 GT-PTV-AF-RH Analog TV/FM tuner + 1458 9004 GT-P8000 DVB-T/Analog TV/FM tuner + 1458 9005 GT-P6000 Analog TV/FM tuner + 1458 9008 GT-P5100 Analog TV tuner + 1461 1044 AVerTVHD MCE A180 + 1461 4836 M10D Hybrid DVBT + 1461 861e M105 PAL/SECAM/NTSC/FM Tuner + 1461 a14b AVerTV Studio 509 + 1461 a836 M115 DVB-T, PAL/SECAM/NTSC Tuner + 1461 f01d DVB-T Super 007 + 1461 f31f Avermedia AVerTV GO 007 FM + 1461 f936 Hybrid+FM PCI (rev A16D) + 1462 6231 TV@nywhere Plus + 1489 0214 LifeView FlyTV Platinum FM + 14c0 1212 LifeView FlyTV Platinum Mini2 + 153b 1160 Cinergy 250 PCI TV + 153b 1162 Terratec Cinergy 400 mobile + 17de 7256 PlusTV All In One PI610 card + 17de 7350 ATSC 110 Digital / Analog HDTV Tuner + 17de 7352 ATSC 115 Digital / Analog HDTV Tuner + 185b c100 VideoMate TV + 185b c900 VideoMate T750 + 5168 0306 LifeView FlyDVB-T DUO + 5168 0319 LifeView FlyDVB Trio + 5168 0502 LifeView FlyDVB-T Duo CardBus + 5168 0520 LifeView FlyDVB Trio CardBus + 5168 1502 LifeView FlyTV CardBus + 5168 2502 LifeView FlyDVB-T CardBus + 5168 2520 LifeView FlyDVB-S Duo CardBus + 5168 3502 LifeView FlyDVB-T Hybrid CardBus + 5168 3520 LifeView FlyDVB Trio N CardBus + 5ace 5030 Behold TV 503 FM + 5ace 5090 Behold TV 509 FM + 5ace 6090 Behold TV 609 FM + 5ace 6091 Behold TV 609 FM + 5ace 6092 Behold TV 609 RDS + 5ace 6093 Behold TV 609 RDS + 5ace 6190 Behold TV M6 + 5ace 6191 Behold TV M63 + 5ace 6193 Behold TV M6 Extra + 5ace 6290 Behold TV H6 + 5ace 7090 Behold TV A7 + 5ace 7150 Behold TV H75 + 5ace 7151 Behold TV H75 + 5ace 7190 Behold TV H7 + 5ace 7191 Behold TV H7 + 5ace 7290 Behold TV T7 + 5ace 7591 Behold TV X7 + 5ace 7595 Behold TV X7 + 7134 SAA7134/SAA7135HL Video Broadcast Decoder + 0000 4036 Behold TV 403 + 0000 4037 Behold TV 403 FM + 0000 4071 Behold TV 407 FM + 1019 4cb4 Elitegroup ECS TVP3XP FM1216 Tuner Card(PAL-BG,FM) + 1043 0210 Digimatrix TV + 1043 4840 TV-FM 7134 + 1043 4842 TV-FM 7134 + 1131 0000 SAA713x-based TV tuner card + 1131 2004 EUROPA V3 reference design + 1131 4e85 SKNet Monster TV + 1131 6752 EMPRESS + 11bd 002b PCTV Stereo + 11bd 002d PCTV 300i DVB-T + PAL + 1461 2c00 AverTV Hybrid+FM PCI + 1461 9715 AVerTV Studio 307 + 1461 a70a Avermedia AVerTV 307 + 1461 a70b AverMedia M156 / Medion 2819 + 1461 d6ee Cardbus TV/Radio (E500) + 1471 b7e9 AVerTV Cardbus plus + 153b 1142 Terratec Cinergy 400 TV + 153b 1143 Terratec Cinergy 600 TV + 153b 1158 Terratec Cinergy 600 TV MK3 + 1540 9524 ProVideo PV952 + 16be 0003 Medion 7134 + 185b c200 Compro VideoMate Gold+ Pal + 185b c900 Videomate DVB-T300 + 1894 a006 KNC One TV-Station DVR + 1894 fe01 KNC One TV-Station RDS / Typhoon TV Tuner RDS + 5168 0138 FLY TV PRIME 34FM + 5168 0300 FlyDVB-S + 5ace 5070 Behold TV 507 FM + 5ace 6070 Behold TV 607 FM + 5ace 6071 Behold TV 607 FM + 5ace 6072 Behold TV 607 RDS + 5ace 6073 Behold TV 607 RDS + 7145 SAA7145 + 7146 SAA7146 + 110a 0000 Fujitsu/Siemens DVB-C card rev1.5 + 110a ffff Fujitsu/Siemens DVB-C card rev1.5 + 1124 2581 Leutron Vision PicPort + 1131 4f56 KNC1 DVB-S Budget + 1131 4f60 Fujitsu-Siemens Activy DVB-S Budget Rev AL + 1131 4f61 Activy DVB-S Budget Rev GR + 1131 5f61 Activy DVB-T Budget + 114b 2003 DVRaptor Video Edit/Capture Card + 1159 0040 MuTech M-Vision 500 (MV-500 rev. E) + 1159 0050 MuTech M-Vision 500 (MV-500 rev. F) + 11bd 0006 DV500 Overlay + 11bd 000a DV500 Overlay + 11bd 000f DV500 Overlay + 13c2 0000 Siemens/Technotrend/Hauppauge DVB card rev1.3 or rev1.5 + 13c2 0001 Technotrend/Hauppauge DVB card rev1.3 or rev1.6 + 13c2 0002 Technotrend/Hauppauge DVB card rev2.1 + 13c2 0003 Technotrend/Hauppauge DVB card rev2.1 + 13c2 0004 Technotrend/Hauppauge DVB card rev2.1 + 13c2 0006 Technotrend/Hauppauge DVB card rev1.3 or rev1.6 + 13c2 0008 Technotrend/Hauppauge DVB-T + 13c2 000a Octal/Technotrend DVB-C for iTV + 13c2 000e Technotrend/Hauppauge DVB card rev2.3 + 13c2 1003 Technotrend-Budget/Hauppauge WinTV-NOVA-S DVB card + 13c2 1004 Technotrend-Budget/Hauppauge WinTV-NOVA-C DVB card + 13c2 1005 Technotrend-Budget/Hauppauge WinTV-NOVA-T DVB card + 13c2 100c Technotrend-Budget/Hauppauge WinTV-NOVA-CI DVB card + 13c2 100f Technotrend-Budget/Hauppauge WinTV-NOVA-CI DVB card + 13c2 1010 DVB C-1500 + 13c2 1011 Technotrend-Budget/Hauppauge WinTV-NOVA-T DVB card + 13c2 1012 DVB T-1500 + 13c2 1013 SATELCO Multimedia DVB + 13c2 1016 WinTV-NOVA-SE DVB card + 13c2 1018 DVB S-1401 + 13c2 1019 S2-3200 + 13c2 1102 Technotrend/Hauppauge DVB card rev2.1 + 153b 1155 Cinergy 1200 DVB-S + 153b 1156 Cinergy 1200 DVB-C + 153b 1157 Cinergy 1200 DVB-T + 153b 1176 Cinergy 1200 DVB-C (MK3) + 1894 0020 KNC One DVB-C V1.0 + 1894 0023 TVStation DVB-C plus +# http://www.knc1.com/gb.htm + 1894 0054 TV-Station DVB-S + 7160 SAA7160 + 1458 9009 E8000 DVB-T/Analog TV/FM tuner + 1461 1455 AVerTV Hybrid Speedy PCI-E (H788) + 7162 SAA7162 + 11bd 0101 Pinnacle PCTV 7010iX TV Card + 7164 SAA7164 + 0070 8800 WinTV HVR-2250 + 0070 8810 WinTV HVR-2250 + 0070 8851 WinTV HVR-2250 + 0070 8853 WinTV HVR-2250 + 0070 8880 WinTV HVR-2250 + 0070 8891 WinTV HVR-2250 + 0070 88a0 WinTV HVR-2250 + 0070 88a1 WinTV HVR-2250 + 0070 8900 WinTV HVR-2200 + 0070 8901 WinTV HVR-2200 + 0070 8940 WinTV HVR-2200 (submodel 89619) + 0070 8951 WinTV HVR-2200 + 0070 8953 WinTV HVR-2200 + 0070 8980 WinTV HVR-2200 + 0070 8991 WinTV HVR-2200 + 0070 8993 WinTV HVR-2200 + 0070 89a0 WinTV HVR-2200 + 0070 89a1 WinTV HVR-2200 + 0070 f120 WinTV HVR-2205 + 0070 f123 WinTV HVR-2215 + 7231 SAA7231 + 5ace 8000 Behold TV H8 + 5ace 8001 Behold TV H8 + 5ace 8050 Behold TV H85 + 5ace 8051 Behold TV H85 + 5ace 8100 Behold TV A8 + 5ace 8101 Behold TV A8 + 5ace 8150 Behold TV A85 + 5ace 8151 Behold TV A85 + 5ace 8201 Behold TV T8 + 9730 SAA9730 Integrated Multimedia and Peripheral Controller + 1131 0000 Integrated Multimedia and Peripheral Controller +1132 Mitel Corp. +1133 Dialogic Corporation + 7701 Eiconcard C90 + 7711 Eiconcard C91 + 7901 EiconCard S90 + 7902 EiconCard S90 + 7911 EiconCard S91 + 7912 EiconCard S91 + 7921 Eiconcard S92 + 7941 EiconCard S94 + 7942 EiconCard S94 + 7943 EiconCard S94 + 7944 EiconCard S94 + 7945 Eiconcard S94 + 7948 Eiconcard S94 64bit/66MHz + 9711 Eiconcard S91 V2 + 9911 Eiconcard S91 V2 + 9941 Eiconcard S94 V2 + 9a41 Eiconcard S94 PCIe + b921 EiconCard P92 + b922 EiconCard P92 + b923 EiconCard P92 + e001 Diva Pro 2.0 S/T + e002 Diva 2.0 S/T PCI + e003 Diva Pro 2.0 U + e004 Diva 2.0 U PCI + e005 Diva 2.01 S/T PCI + e006 Diva CT S/T PCI + e007 Diva CT U PCI + e008 Diva CT Lite S/T PCI + e009 Diva CT Lite U PCI + e00a Diva ISDN+V.90 PCI + e00b Diva ISDN PCI 2.02 + e00c Diva 2.02 PCI U + e00d Diva Pro 3.0 PCI + e00e Diva ISDN+CT S/T PCI Rev 2 + e010 Diva Server BRI-2M PCI + 110a 0021 Fujitsu Siemens ISDN S0 + e011 Diva Server BRI S/T Rev 2 + e012 Diva Server 4BRI-8M PCI + e013 4BRI + 1133 1300 Diva V-4BRI-8 PCI v2 + 1133 e013 Diva 4BRI-8 PCI v2 + e014 Diva Server PRI-30M PCI + e015 Diva PRI PCI v2 + e016 Diva Server Voice 4BRI PCI + e017 Diva Server Voice 4BRI Rev 2 + 1133 e017 Diva Server Voice 4BRI-8M 2.0 PCI + e018 BRI + 1133 1800 Diva V-BRI-2 PCI v2 + 1133 e018 Diva BRI-2 PCI v2 + e019 Diva Server Voice PRI Rev 2 + 1133 e019 Diva Server Voice PRI 2.0 PCI + e01a Diva BRI-2FX PCI v2 + e01b Diva Server Voice BRI-2M 2.0 PCI + 1133 e01b Diva Server Voice BRI-2M 2.0 PCI + e01c PRI + 1133 1c01 Diva PRI/E1/T1-8 PCI v3 + 1133 1c02 Diva PRI/T1-24 PCI(e) v3 + 1133 1c03 Diva PRI/E1-30 PCI(e) v3 + 1133 1c04 Diva PRI/E1/T1-CTI PCI(e) v3 + 1133 1c05 Diva V-PRI/T1-24 PCI(e) v3 + 1133 1c06 Diva V-PRI/E1-30 PCI(e) v3 + 1133 1c07 Diva Server PRI/E1/T1-8 Cornet NQ + 1133 1c08 Diva Server PRI/T1-24 Cornet NQ + 1133 1c09 Diva Server PRI/E1-30 Cornet NQ + 1133 1c0a Diva Server PRI/E1/T1 Cornet NQ + 1133 1c0b Diva Server V-PRI/T1-24 Cornet NQ + 1133 1c0c Diva Server V-PRI/E1-30 Cornet NQ + e01e 2PRI + 1133 1e01 Diva 2PRI/E1/T1-60 PCI v1 + 1133 e01e Diva V-2PRI/E1/T1-60 PCI v1 + e020 4PRI + 1133 2001 Diva 4PRI/E1/T1-120 PCI v1 + 1133 e020 Diva V-4PRI/E1/T1-120 PCI v1 + e022 Analog-2 + 1133 2200 Diva V-Analog-2 PCI v1 + 1133 e022 Diva Analog-2 PCI v1 + e024 Analog-4 + 1133 2400 Diva V-Analog-4 PCI v1 + 1133 e024 Diva Analog-4 PCI v1 + e028 Analog-8 + 1133 2800 Diva V-Analog-8 PCI v1 + 1133 e028 Diva Analog-8 PCI v1 + e02a Diva IPM-300 PCI v1 + e02c Diva IPM-600 PCI v1 + e02e 4BRI + 1133 2e01 Diva V-4BRI-8 PCIe v2 + 1133 e02e Diva 4BRI-8 PCIe v2 + e032 BRI + 1133 3201 Diva V-BRI-2 PCIe v2 + 1133 e032 Diva BRI-2 PCIe v2 + e034 Diva BRI-CTI PCI v2 +1134 Mercury Computer Systems + 0001 Raceway Bridge + 0002 Dual PCI to RapidIO Bridge + 000b POET Serial RapidIO Bridge + 000d POET PSDMS Device +1135 FUJIFILM Business Innovation Corp. + 0001 Printer controller +1136 Momentum Data Systems + 0002 PCI-JTAG +1137 Cisco Systems Inc + 0023 VIC 81 PCIe Upstream Port + 0040 VIC PCIe Upstream Port + 1137 004f VIC 1280 Dual 40Gb Mezzanine + 1137 0084 VIC 1240 Dual 40Gb MLOM + 1137 0085 VIC 1225 Dual 10Gb SFP+ PCIe + 1137 00cd VIC 1285 Dual 40Gb QSFP+ PCIe + 1137 00ce VIC 1225T Dual 10GBaseT PCIe + 1137 012a VIC M4308 Dual 40Gb + 1137 012c VIC 1340 Dual 40Gb MLOM + 1137 012e VIC 1227 Dual 10Gb SFP+ PCIe + 1137 0137 VIC 1380 Dual 40Gb Mezzanine + 1137 014d VIC 1385 Dual 40Gb PCIe + 0041 VIC PCIe Downstream Port + 0042 VIC Management Controller + 1137 0047 VIC P81E PCIe Management Controller + 1137 0085 VIC 1225 PCIe Management Controller + 1137 00cd VIC 1285 PCIe Management Controller + 1137 00ce VIC 1225T PCIe Management Controller + 1137 012e VIC 1227 PCIe Management Controller + 1137 014d VIC 1385 PCIe Management Controller + 1137 0217 VIC 1455 PCIe Management Controller + 1137 0218 VIC 1457 PCIe Management Controller + 0043 VIC Ethernet NIC + 1137 0047 VIC P81E PCIe Ethernet NIC + 1137 0048 VIC M81KR Mezzanine Ethernet NIC + 1137 004f VIC 1280 Mezzanine Ethernet NIC + 1137 0084 VIC 1240 MLOM Ethernet NIC + 1137 0085 VIC 1225 PCIe Ethernet NIC + 1137 00cd VIC 1285 PCIe Ethernet NIC + 1137 00ce VIC 1225T PCIe Ethernet NIC + 1137 012a VIC M4308 Ethernet NIC + 1137 012c VIC 1340 MLOM Ethernet NIC + 1137 012e VIC 1227 PCIe Ethernet NIC + 1137 0137 VIC 1380 Mezzanine Ethernet NIC + 1137 014d VIC 1385 PCIe Ethernet NIC + 1137 015d VIC 1387 MLOM Ethernet NIC + 1137 0215 VIC 1440 Mezzanine Ethernet NIC + 1137 0216 VIC 1480 MLOM Ethernet NIC + 1137 0217 VIC 1455 PCIe Ethernet NIC + 1137 0218 VIC 1457 MLOM Ethernet NIC + 1137 0219 VIC 1485 PCIe Ethernet NIC + 1137 021a VIC 1487 MLOM Ethernet NIC + 1137 024a VIC 1495 PCIe Ethernet NIC + 1137 024b VIC 1497 MLOM Ethernet NIC + 0044 VIC Ethernet NIC Dynamic + 1137 0047 VIC P81E PCIe Ethernet NIC Dynamic + 1137 0048 VIC M81KR Mezzanine Ethernet NIC Dynamic + 1137 004f VIC 1280 Mezzanine Ethernet NIC Dynamic + 1137 0084 VIC 1240 MLOM Ethernet NIC Dynamic + 1137 0085 VIC 1225 PCIe Ethernet NIC Dynamic + 1137 00cd VIC 1285 PCIe Ethernet NIC Dynamic + 1137 00ce VIC 1225T PCIe Ethernet NIC Dynamic + 1137 012a VIC M4308 Ethernet NIC Dynamic + 1137 012c VIC 1340 MLOM Ethernet NIC Dynamic + 1137 012e VIC 1227 PCIe Ethernet NIC Dynamic + 1137 0137 VIC 1380 Mezzanine Ethernet NIC Dynamic + 1137 014d VIC 1385 PCIe Ethernet NIC Dynamic + 0045 VIC FCoE HBA + 1137 0047 VIC P81E PCIe FCoE HBA + 1137 0048 VIC M81KR Mezzanine FCoE HBA + 1137 004f VIC 1280 Mezzanine FCoE HBA + 1137 0084 VIC 1240 MLOM FCoE HBA + 1137 0085 VIC 1225 PCIe FCoE HBA + 1137 00cd VIC 1285 PCIe FCoE HBA + 1137 00ce VIC 1225T PCIe FCoE HBA + 1137 012a VIC M4308 FCoE HBA + 1137 012c VIC 1340 MLOM FCoE HBA + 1137 012e VIC 1227 PCIe FCoE HBA + 1137 0137 VIC 1380 Mezzanine FCoE HBA + 1137 014d VIC 1385 PCIe FCoE HBA + 0046 VIC SCSI Controller + 1137 012a VIC M4308 SCSI Controller + 004e VIC 82 PCIe Upstream Port + 0071 VIC SR-IOV VF + 007a VIC 1300 PCIe Upstream Port + 1137 012a VIC M4308 Dual 40Gb + 1137 012c VIC 1340 Dual 40Gb MLOM + 1137 0137 VIC 1380 Dual 40Gb Mezzanine + 1137 014d VIC 1385 Dual 40Gb PCIe + 00cf VIC Userspace NIC + 1137 004f VIC 1280 Mezzanine Userspace NIC + 1137 0084 VIC 1240 MLOM Userspace NIC + 1137 0085 VIC 1225 PCIe Userspace NIC + 1137 00cd VIC 1285 PCIe Userspace NIC + 1137 00ce VIC 1225T PCIe Userspace NIC + 1137 012a VIC M4308 Userspace NIC + 1137 012c VIC 1340 MLOM Userspace NIC + 1137 012e VIC 1227 PCIe Userspace NIC + 1137 0137 VIC 1380 Mezzanine Userspace NIC + 023e 1GigE I350 LOM +1138 Ziatech Corporation + 8905 8905 [STD 32 Bridge] +1139 Dynamic Pictures, Inc + 0001 VGA Compatible 3D Graphics +113a FWB Inc +113b Network Computing Devices +113c Cyclone Microsystems, Inc. + 0000 PCI-9060 i960 Bridge + 0001 PCI-SDK [PCI i960 Evaluation Platform] + 0911 PCI-911 [i960Jx-based Intelligent I/O Controller] + 0912 PCI-912 [i960CF-based Intelligent I/O Controller] + 0913 PCI-913 + 0914 PCI-914 [I/O Controller w/ secondary PCI bus] +113d Leading Edge Products Inc +113e Sanyo Electric Co - Computer Engineering Dept +113f Equinox Systems, Inc. + 0808 SST-64P Adapter + 1010 SST-128P Adapter + 80c0 SST-16P DB Adapter + 80c4 SST-16P RJ Adapter + 80c8 SST-16P Adapter + 8888 SST-4P Adapter + 9090 SST-8P Adapter +1140 Intervoice Inc +1141 Crest Microsystem Inc +1142 Alliance Semiconductor Corporation + 3210 AP6410 + 6422 ProVideo 6422 + 6424 ProVideo 6424 + 6425 ProMotion AT25 + 643d ProMotion AT3D +1143 NetPower, Inc +1144 Cincinnati Milacron + 0001 Noservo controller +1145 Workbit Corporation + 8007 NinjaSCSI-32 Workbit + f007 NinjaSCSI-32 KME + f010 NinjaSCSI-32 Workbit + f012 NinjaSCSI-32 Logitec + f013 NinjaSCSI-32 Logitec + f015 NinjaSCSI-32 Melco + f020 NinjaSCSI-32 Sony PCGA-DVD51 + f021 NinjaPATA-32 Delkin Cardbus UDMA + f024 NinjaPATA-32 Delkin Cardbus UDMA + f103 NinjaPATA-32 Delkin Cardbus UDMA +1146 Force Computers +1147 Interface Corp +# Nee Schneider & Koch +1148 SysKonnect + 4000 FDDI Adapter + 0e11 b03b Netelligent 100 FDDI DAS Fibre SC + 0e11 b03c Netelligent 100 FDDI SAS Fibre SC + 0e11 b03d Netelligent 100 FDDI DAS UTP + 0e11 b03e Netelligent 100 FDDI SAS UTP + 0e11 b03f Netelligent 100 FDDI SAS Fibre MIC + 1148 5521 FDDI SK-5521 (SK-NET FDDI-UP) + 1148 5522 FDDI SK-5522 (SK-NET FDDI-UP DAS) + 1148 5541 FDDI SK-5541 (SK-NET FDDI-FP) + 1148 5543 FDDI SK-5543 (SK-NET FDDI-LP) + 1148 5544 FDDI SK-5544 (SK-NET FDDI-LP DAS) + 1148 5821 FDDI SK-5821 (SK-NET FDDI-UP64) + 1148 5822 FDDI SK-5822 (SK-NET FDDI-UP64 DAS) + 1148 5841 FDDI SK-5841 (SK-NET FDDI-FP64) + 1148 5843 FDDI SK-5843 (SK-NET FDDI-LP64) + 1148 5844 FDDI SK-5844 (SK-NET FDDI-LP64 DAS) + 4200 Token Ring adapter + 4300 SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link) + 1148 9821 SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T) + 1148 9822 SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link) + 1148 9841 SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX) + 1148 9842 SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link) + 1148 9843 SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX) + 1148 9844 SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link) + 1148 9861 SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition) + 1148 9862 SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link) + 1148 9871 SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX) + 1148 9872 SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link) + 1259 2970 AT-2970SX Gigabit Ethernet Adapter + 1259 2971 AT-2970LX Gigabit Ethernet Adapter + 1259 2972 AT-2970TX Gigabit Ethernet Adapter + 1259 2973 AT-2971SX Gigabit Ethernet Adapter + 1259 2974 AT-2971T Gigabit Ethernet Adapter + 1259 2975 AT-2970SX/2SC Gigabit Ethernet Adapter + 1259 2976 AT-2970LX/2SC Gigabit Ethernet Adapter + 1259 2977 AT-2970TX/2TX Gigabit Ethernet Adapter + 4320 SK-98xx V2.0 Gigabit Ethernet Adapter [Marvell 88E8001] + 1148 0121 Marvell RDK-8001 Adapter + 1148 0221 Marvell RDK-8002 Adapter + 1148 0321 Marvell RDK-8003 Adapter + 1148 0421 Marvell RDK-8004 Adapter + 1148 0621 Marvell RDK-8006 Adapter + 1148 0721 Marvell RDK-8007 Adapter + 1148 0821 Marvell RDK-8008 Adapter + 1148 0921 Marvell RDK-8009 Adapter + 1148 1121 Marvell RDK-8011 Adapter + 1148 1221 Marvell RDK-8012 Adapter + 1148 3221 SK-9521 V2.0 10/100/1000Base-T Adapter + 1148 5021 SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter + 1148 5041 SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter + 1148 5043 SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter + 1148 5051 SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter + 1148 5061 SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter + 1148 5071 SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter + 1148 9521 SK-9521 10/100/1000Base-T Adapter + 1259 2916 AT-2916T + 4400 SK-9Dxx Gigabit Ethernet Adapter + 4500 SK-9Mxx Gigabit Ethernet Adapter + 9000 SK-9Sxx Gigabit Ethernet Server Adapter PCI-X [Marvell 88E8022] + 1148 2100 SK-9S21 10/100/1000Base-T Server Adapter, PCI-X, Copper RJ-45 + 1148 2200 SK-9S22 10/100/1000Base-T Dual Port Server Adapter, PCI-X, 2 Copper RJ-45 + 1148 2210 SK-9P22 10/100/1000 Base-T Dual Port PMC card + 1148 2220 TPMC-GBE-CO + 1148 8100 SK-9S81 1000Base-SX Server Adapter,PCI-X, Fiber SX/LC + 1148 8200 SK-9S82 1000Base-SX Dual Port Server Adapter, PCI-X, 2 Fiber SX/LC + 1148 8210 SK-9P82 1000 Base-SX Dual Port PMC card + 1148 8220 TPMC-GBE-FI + 1148 9100 SK-9S91 1000Base-LX Server Adapter,PCI-X, Fiber LX/LC + 1148 9200 SK-9S92 1000Base-LX Dual Port Server Adapter, PCI-X, 2 Fiber LX/LC + 1259 2973 AT-2971SX v2 Gigabit Adapter + 1259 2974 AT-2971T v2 Gigabit Adapter + 1259 2978 AT-2971LX Gigabit Adapter + 9843 [Fujitsu] Gigabit Ethernet + 9e00 SK-9E21D 10/100/1000Base-T Adapter, Copper RJ-45 + 1148 2100 SK-9E21 Server Adapter + 1148 21d0 SK-9E21D 10/100/1000Base-T Adapter + 1148 2200 SK-9E22 Server Adapter + 1148 8100 SK-9E81 Server Adapter + 1148 8200 SK-9E82 Server Adapter + 1148 9100 SK-9E91 Server Adapter + 1148 9200 SK-9E92 Server Adapter + 9e01 SK-9E21M 10/100/1000Base-T Adapter +1149 Win System Corporation +114a VMIC + 5565 GE-IP PCI5565,PMC5565 Reflective Memory Node + 5579 VMIPCI-5579 (Reflective Memory Card) + 5587 VMIPCI-5587 (Reflective Memory Card) + 6504 VMIC PCI 7755 FPGA + 7587 VMIVME-7587 +114b Canopus Co., Ltd +114c Annabooks +114d IC Corporation +114e Nikon Systems Inc +114f Digi International + 0002 AccelePort EPC + 0003 RightSwitch SE-6 + 0004 AccelePort Xem + 0005 AccelePort Xr + 0006 AccelePort Xr,C/X + 0009 AccelePort Xr/J + 000a AccelePort EPC/J + 000c DataFirePRIme T1 (1-port) + 000d SyncPort 2-Port (x.25/FR) + 0011 AccelePort 8r EIA-232 (IBM) + 0012 AccelePort 8r EIA-422 + 0013 AccelePort Xr + 0014 AccelePort 8r EIA-422 + 0015 AccelePort Xem + 0016 AccelePort EPC/X + 0017 AccelePort C/X + 001a DataFirePRIme E1 (1-port) + 001b AccelePort C/X (IBM) + 001c AccelePort Xr (SAIP) + 001d DataFire RAS T1/E1/PRI + 114f 0050 DataFire RAS E1 Adapter + 114f 0051 DataFire RAS Dual E1 Adapter + 114f 0052 DataFire RAS T1 Adapter + 114f 0053 DataFire RAS Dual T1 Adapter + 0023 AccelePort RAS + 0024 DataFire RAS B4 ST/U + 114f 0030 DataFire RAS BRI U Adapter + 114f 0031 DataFire RAS BRI S/T Adapter + 0026 AccelePort 4r 920 + 0027 AccelePort Xr 920 + 0028 ClassicBoard 4 + 0029 ClassicBoard 8 + 0034 AccelePort 2r 920 + 0035 DataFire DSP T1/E1/PRI cPCI + 0040 AccelePort Xp + 114f 0042 AccelePort 2p PCI + 114f 0043 AccelePort 4p PCI + 114f 0044 AccelePort 8p PCI + 114f 0045 AccelePort 16p PCI + 114f 004e AccelePort 32p PCI + 0042 AccelePort 2p + 0043 AccelePort 4p + 0044 AccelePort 8p + 0045 AccelePort 16p + 004e AccelePort 32p + 0070 Datafire Micro V IOM2 (Europe) + 0071 Datafire Micro V (Europe) + 0072 Datafire Micro V IOM2 (North America) + 0073 Datafire Micro V (North America) + 00b0 Digi Neo 4 + 00b1 Digi Neo 8 + 00c8 Digi Neo 2 DB9 + 00c9 Digi Neo 2 DB9 PRI + 00ca Digi Neo 2 RJ45 + 00cb Digi Neo 2 RJ45 PRI + 00cc Digi Neo 1 422 + 00cd Digi Neo 1 422 485 + 00ce Digi Neo 2 422 485 + 00d0 ClassicBoard 4 422 + 00d1 ClassicBoard 8 422 + 00f1 Digi Neo PCI-E 4 port + 00f4 Digi Neo 4 (IBM version) + 6001 Avanstar +1150 Thinking Machines Corp +1151 JAE Electronics Inc. +1152 Megatek +1153 Land Win Electronic Corp +1154 Melco Inc +1155 Pine Technology Ltd +1156 Periscope Engineering +1157 Avsys Corporation +1158 Voarx R & D Inc + 3011 Tokenet/vg 1001/10m anylan + 9050 Lanfleet/Truevalue + 9051 Lanfleet/Truevalue +1159 MuTech Corporation + 0001 MV-1000 + 0002 MV-1500 +115a Harlequin Ltd +115b Parallax Graphics +115c Photron Ltd. +115d Xircom + 0003 Cardbus Ethernet 10/100 + 1014 0181 10/100 EtherJet Cardbus Adapter + 1014 1181 10/100 EtherJet Cardbus Adapter + 1014 8181 10/100 EtherJet Cardbus Adapter + 1014 9181 10/100 EtherJet Cardbus Adapter + 115d 0181 Cardbus Ethernet 10/100 + 115d 0182 RealPort2 CardBus Ethernet 10/100 (R2BE-100) + 115d 1181 Cardbus Ethernet 10/100 + 1179 0181 Cardbus Ethernet 10/100 + 8086 8181 EtherExpress PRO/100 Mobile CardBus 32 Adapter + 8086 9181 EtherExpress PRO/100 Mobile CardBus 32 Adapter + 0005 Cardbus Ethernet 10/100 + 1014 0182 10/100 EtherJet Cardbus Adapter + 1014 1182 10/100 EtherJet Cardbus Adapter + 115d 0182 Cardbus Ethernet 10/100 + 115d 1182 Cardbus Ethernet 10/100 + 0007 Cardbus Ethernet 10/100 + 1014 0182 10/100 EtherJet Cardbus Adapter + 1014 1182 10/100 EtherJet Cardbus Adapter + 115d 0182 Cardbus Ethernet 10/100 + 115d 1182 Cardbus Ethernet 10/100 + 000b Cardbus Ethernet 10/100 + 1014 0183 10/100 EtherJet Cardbus Adapter + 115d 0183 Cardbus Ethernet 10/100 + 000c Mini-PCI V.90 56k Modem + 000f Cardbus Ethernet 10/100 + 1014 0183 10/100 EtherJet Cardbus Adapter + 115d 0183 Cardbus Ethernet 10/100 + 00d4 Mini-PCI K56Flex Modem + 0101 Cardbus 56k modem + 115d 1081 Cardbus 56k Modem + 0103 Cardbus Ethernet + 56k Modem + 1014 9181 Cardbus 56k Modem + 1115 1181 Cardbus Ethernet 100 + 56k Modem + 115d 1181 CBEM56G-100 Ethernet + 56k Modem + 8086 9181 PRO/100 LAN + Modem56 CardBus +115e Peer Protocols Inc +115f Maxtor Corporation +1160 Megasoft Inc +1161 PFU Limited +1162 OA Laboratory Co Ltd +1163 Rendition + 0001 Verite 1000 + 2000 Verite V2000/V2100/V2200 + 1092 2000 Stealth II S220 +1164 Advanced Peripherals Technologies +1165 Imagraph Corporation + 0001 Motion TPEG Recorder/Player with audio +# nee ServerWorks +1166 Broadcom + 0000 CMIC-LE + 0005 CNB20-LE Host Bridge + 0006 CNB20HE Host Bridge + 0007 CNB20-LE Host Bridge + 0008 CNB20HE Host Bridge + 0009 CNB20LE Host Bridge + 0010 CIOB30 + 0011 CMIC-HE + 0012 CMIC-WS Host Bridge (GC-LE chipset) + 0013 CNB20-HE Host Bridge + 0014 CMIC-LE Host Bridge (GC-LE chipset) + 0015 CMIC-GC Host Bridge + 0016 CMIC-GC Host Bridge + 0017 GCNB-LE Host Bridge + 0031 HT1100 HPX0 HT Host Bridge + 0036 BCM5785 [HT1000] PCI/PCI-X Bridge + 0101 CIOB-X2 PCI-X I/O Bridge + 0103 EPB PCI-Express to PCI-X Bridge + 0104 BCM5785 [HT1000] PCI/PCI-X Bridge + 0110 CIOB-E I/O Bridge with Gigabit Ethernet + 0130 BCM5780 [HT2000] PCI-X bridge + 0132 BCM5780 [HT2000] PCI-Express Bridge + 1166 0132 HT2000 PCI-Express bridge + 0140 HT2100 PCI-Express Bridge + 0141 HT2100 PCI-Express Bridge + 0142 HT2100 PCI-Express Bridge + 0144 HT2100 PCI-Express Bridge + 0200 OSB4 South Bridge + 0201 CSB5 South Bridge + 4c53 1080 CT8 mainboard + 0203 CSB6 South Bridge + 1734 1012 PRIMERGY RX/TX series + 0205 BCM5785 [HT1000] Legacy South Bridge + 0211 OSB4 IDE Controller + 0212 CSB5 IDE Controller + 1028 014a PowerEdge 1750 + 1028 810b PowerEdge 1650/2550 + 4c53 1080 CT8 mainboard + 0213 CSB6 RAID/IDE Controller + 1028 4134 PowerEdge 600SC + 1028 c134 Poweredge SC600 + 1734 1012 PRIMERGY RX/TX series onboard IDE + 0214 BCM5785 [HT1000] IDE + 1028 0205 PowerEdge 2970 HT1000 IDE + 0217 CSB6 IDE Controller + 1028 4134 Poweredge SC600 + 021b HT1100 HD Audio + 0220 OSB4/CSB5 OHCI USB Controller + 4c53 1080 CT8 mainboard + 0221 CSB6 OHCI USB Controller + 1734 1012 PRIMERGY RX/TX series onboard OHCI + 0223 BCM5785 [HT1000] USB + 1028 0205 PowerEdge 2970 HT1000 USB Controller + 1028 020b PowerEdge T605 HT1000 USB Controller + 0225 CSB5 LPC bridge + 0227 GCLE-2 Host Bridge + 1734 1012 PRIMERGY RX/TX series + 0230 CSB5 LPC bridge + 4c53 1080 CT8 mainboard + 0234 BCM5785 [HT1000] LPC + 1028 0205 PowerEdge 2970 HT1000 LPC + 1028 020b PowerEdge T605 HT1000 LPC + 0235 BCM5785 [HT1000] XIOAPIC0-2 + 0238 BCM5785 [HT1000] WDTimer + 0240 K2 SATA + 0241 RAIDCore RC4000 + 0242 RAIDCore BC4000 + 024a BCM5785 [HT1000] SATA (Native SATA Mode) + 1028 020b PowerEdge T605 onboard SATA Controller +# The device starts as 024A, and changes to 024B if set to PATA mode in BIOS + 024b BCM5785 [HT1000] SATA (PATA/IDE Mode) + 1028 0205 PowerEdge 2970 HT1000 SATA controller + 0406 HT1100 PCI-X Bridge + 0408 HT1100 Legacy Device + 040a HT1100 ISA-LPC Bridge + 1028 0223 PowerEdge R905 HT1100 ISA-LPC Bridge + 0410 HT1100 SATA Controller (Native SATA Mode) + 0411 HT1100 SATA Controller (PATA / IDE Mode) + 0412 HT1100 USB OHCI Controller + 0414 HT1100 USB EHCI Controller + 0416 HT1100 USB EHCI Controller (with Debug Port) + 0420 HT1100 PCI-Express Bridge + 0421 HT1100 SAS/SATA Controller + 0422 HT1100 PCI-Express Bridge +1167 Mutoh Industries Inc +1168 Thine Electronics Inc +1169 Centre for Development of Advanced Computing +# nee Polaris Communications +116a Luminex Software, Inc. + 6100 Bus/Tag Channel + 6800 Escon Channel + 7100 Bus/Tag Channel + 7800 Escon Channel +116b Connectware Inc +116c Intelligent Resources Integrated Systems +116d Martin-Marietta +116e Electronics for Imaging +116f Workstation Technology +1170 Inventec Corporation +1171 Loughborough Sound Images Plc +1172 Altera Corporation + 00a7 Stratix V + 0530 Stratix IV + 646c KT-500/KT-521 board +1173 Adobe Systems, Inc +1174 Bridgeport Machines +1175 Mitron Computer Inc. +1176 SBE Incorporated +1177 Silicon Engineering +1178 Alfa, Inc. + afa1 Fast Ethernet Adapter +1179 Toshiba Corporation + 0102 Extended IDE Controller + 0103 EX-IDE Type-B + 010e PXP04 NVMe SSD + 010f NVMe Controller + 0110 NVMe SSD Controller Cx5 + 1028 1ffb Express Flash NVMe 960G (RI) U.2 (CD5) + 1028 1ffc Express Flash NVMe 1.92T (RI) U.2 (CD5) + 1028 1ffd Express Flash NVMe 3.84T (RI) U.2 (CD5) + 1028 1ffe Express Flash NVMe 7.68T (RI) U.2 (CD5) + 1179 0001 KIOXIA CM5-R series SSD + 1179 0021 KIOXIA CD5 series SSD + 1d49 4039 Thinksystem U.2 CM5 NVMe SSD + 1d49 403a Thinksystem AIC CM5 NVMe SSD + 0113 BG3 NVMe SSD Controller + 1179 0001 Toshiba KBG30ZMS128G 128GB NVMe SSD + 0115 XG4 NVMe SSD Controller + 011a XG6 NVMe SSD Controller + 0404 DVD Decoder card + 0406 Tecra Video Capture device + 0407 DVD Decoder card (Version 2) + 0601 CPU to PCI bridge + 1179 0001 Satellite Pro + 0602 PCI to ISA bridge + 0603 ToPIC95 PCI to CardBus Bridge for Notebooks + 0604 PCI-Docking Host bridge + 060a ToPIC95 + 1179 0001 Satellite Pro + 060f ToPIC97 + 1179 0001 Satellite 4010 + 0617 ToPIC100 PCI to Cardbus Bridge with ZV Support + 0618 CPU to PCI and PCI to ISA bridge + 0701 FIR Port Type-O + 0803 TC6371AF SD Host Controller + 0804 TC6371AF SmartMedia Controller + 0805 SD TypA Controller + 0d01 FIR Port Type-DO + 1179 0001 FIR Port Type-DO +117a A-Trend Technology +117b L G Electronics, Inc. +117c ATTO Technology, Inc. + 002c ExpressSAS R380 + 002d ExpressSAS R348 + 0030 Ultra320 SCSI Host Adapter + 117c 8013 ExpressPCI UL4D + 117c 8014 ExpressPCI UL4S + 117c 8027 ExpressPCI UL5D + 117c 802f ExpressPCI UL5D Low Profile + 0033 SAS Adapter + 0041 ExpressSAS R30F + 0042 ExpressSAS 6Gb/s SAS/SATA HBA + 117c 0042 ExpressSAS H680 + 117c 0043 ExpressSAS H608 + 117c 0044 ExpressSAS H60F + 117c 0045 ExpressSAS H6F0 + 117c 0046 ExpressSAS H644 + 117c 004f ExpressSAS M608 + 117c 0057 ExpressSAS M680 + 117c 0058 ExpressSAS M644 + 117c 0059 ExpressSAS W608 + 117c 005a ExpressSAS W680 + 117c 005b ExpressSAS W644 + 0049 ExpressSAS 6Gb SAS/SATA RAID Adapter + 117c 0049 ExpressSAS R680 + 117c 004a ExpressSAS R608 + 117c 004b ExpressSAS R60F + 117c 004c ExpressSAS R6F0 + 117c 004d ExpressSAS R644 + 117c 004e ExpressSAS R648 + 0064 Celerity FC 16Gb/s Gen 5 Fibre Channel HBA + 117c 0063 Celerity FC-161E + 117c 0064 Celerity FC-162E + 117c 0065 Celerity FC-164E + 0094 Celerity FC 16/32Gb/s Gen 6 Fibre Channel HBA + 117c 0094 Celerity FC-162P + 117c 00a0 Celerity FC-161P + 117c 00a1 Celerity FC-164P + 117c 00a2 Celerity FC-321E + 117c 00a3 Celerity FC-322E + 117c 00ac Celerity FC-324E + 00bb Celerity FC 32/64Gb/s Gen 7 Fibre Channel HBA + 117c 00bc Celerity FC-321P + 117c 00bd Celerity FC-322P + 117c 00be Celerity FC-324P + 00c5 ExpressNVM PCIe Gen4 Switch + 117c 00c6 ExpressNVM S48F PCIe Gen4 + 117c 00c7 ExpressNVM S468 PCIe Gen4 + 00e6 ExpressSAS GT 12Gb/s SAS/SATA HBA + 117c 00c0 ExpressSAS H1280 GT + 117c 00c1 ExpressSAS H1208 GT + 117c 00c2 ExpressSAS H1244 GT + 117c 00c3 ExpressSAS H12F0 GT + 117c 00c4 ExpressSAS H120F GT + 8013 ExpressPCI UL4D + 8014 ExpressPCI UL4S + 8027 ExpressPCI UL5D + 8070 ExpressSAS 12Gb/s SAS/SATA HBA + 117c 0070 ExpressSAS H1280 + 117c 0071 ExpressSAS H1208 + 117c 0080 ExpressSAS H1244 + 8072 ExpressSAS 12Gb/s SAS/SATA HBA + 117c 0072 ExpressSAS H12F0 + 117c 0073 ExpressSAS H120F + 117c 0082 ExpressSAS H1288 +117d Becton & Dickinson +117e T/R Systems +117f Integrated Circuit Systems +1180 Ricoh Co Ltd + 0465 RL5c465 + 0466 RL5c466 + 0475 RL5c475 + 144d c006 vpr Matrix 170B4 CardBus bridge + 0476 RL5c476 II + 1014 0185 ThinkPad A/T/X Series + 1014 0555 ThinkPad X41 + 1014 056c ThinkPad Z60t + 1028 014f Latitude X300 laptop + 1028 0188 Inspiron 6000 laptop + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 1043 1017 X58LE + 1043 1237 A6J-Q008 + 1043 1967 V6800V + 1043 1987 A4K and Z81K notebooks, possibly others ( mid-2005 machines ) + 104d 80df Vaio PCG-FX403 + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 104d 814e VAIO GRZ390Z + 10f7 8338 Panasonic CF-Y5 laptop + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 14ef 0220 PCD-RP-220S + 17aa 201c ThinkPad X60/X60s + 17aa 20c4 ThinkPad T61/R61 + 17aa 20c6 ThinkPad R61/T400 + 0477 RL5c477 + 0478 RL5c478 + 1014 0184 ThinkPad A30p + 0511 R5C511 + 0522 R5C522 IEEE 1394 Controller + 1014 01cf ThinkPad A30p + 1043 1967 V6800V + 0551 R5C551 IEEE 1394 Controller + 144d c006 vpr Matrix 170B4 + 0552 R5C552 IEEE 1394 Controller + 1014 0511 ThinkPad A/T/X Series + 1028 014f Latitude X300 laptop + 1028 0188 Inspiron 6000 laptop + 1043 1237 A6J-Q008 + 1043 1757 M2400N laptop + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 17aa 201e ThinkPad X60/X60s + 0554 R5C554 + 0575 R5C575 SD Bus Host Adapter + 0576 R5C576 SD Bus Host Adapter + 0592 R5C592 Memory Stick Bus Host Adapter + 1025 0121 Aspire 5920G + 1028 01d7 XPS M1210 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 1521 HP EliteBook 8540w + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 103c 30cc Pavilion dv6700 + 103c 30cf Pavilion dv95xx/96xx/97xx/98xx series + 1043 1017 X58LE + 1043 1237 A6J-Q008 + 1043 1967 V6800V + 104d 9035 VAIO VGN-FW11ZRU + 144d c018 X20 IV + 17aa 20ca ThinkPad T61/T400 + 0811 R5C811 + 0822 R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter + 1014 0556 ThinkPad X40 / X41 / X60s / Z60t + 1014 0598 ThinkPad Z60m + 1025 0121 Aspire 5920G + 1028 0188 Inspiron 6000 laptop + 1028 01a2 Inspiron 9200 + 1028 01d7 XPS M1210 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 03b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30cf Pavilion dv9668eg Laptop + 1043 1017 X58LE + 1043 1237 A6J-Q008 + 1043 1967 V6800V + 10f7 8338 Panasonic CF-Y5 laptop + 144d c018 X20 IV + 17aa 201d ThinkPad X60/X60s + 17aa 20c7 ThinkPad T61 + 17aa 20c8 ThinkPad T400/W500 + 0832 R5C832 IEEE 1394 Controller + 1025 0121 Aspire 5920G + 1028 01d7 XPS M1210 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 1028 024d Latitude E4300 + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30cf Pavilion dv9668eg Laptop + 17aa 20c5 ThinkPad R61 + 17aa 20c7 ThinkPad R61 + 0841 R5C841 CardBus/SD/SDIO/MMC/MS/MSPro/xD/IEEE1394 + 0843 R5C843 MMC Host Controller + 1025 0121 Aspire 5920G + 1028 01d7 XPS M1210 + 1028 01f3 Inspiron 1420 + 1028 01f5 Inspiron 1501 + 1028 024f Latitude e6500 + 103c 03b5 Presario V3242AU + 103c 1521 HP EliteBook 8540w + 103c 30b7 Presario V6133CL + 103c 30cf Pavilion dv9500/9600/9700 series + 1043 1017 X58LE + 1183 0843 Alienware Aurora m9700 + 0852 xD-Picture Card Controller + 1025 0121 Aspire 5920G + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30b5 Presario V3242AU + 103c 30b7 Presario V6133CL + 103c 30cc Pavilion dv6700 + 103c 30cf Pavilion dv9668eg Laptop + 1043 1967 V6800V + 1180 0852 Pavilion 2410us + 1324 10cf P7120 + 17aa 20cb ThinkPad T400 + e230 R5U2xx (R5U230 / R5U231 / R5U241) [Memory Stick Host Controller] + e476 CardBus bridge + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + e822 MMC/SD Host Controller + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 17aa 21cf ThinkPad T520 + e823 PCIe SDXC/MMC Host Controller + 17aa 21cf ThinkPad T520 + e832 R5C832 PCIe IEEE 1394 Controller + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 17aa 21cf ThinkPad T520 + e852 PCIe xD-Picture Card Controller +1181 Telmatics International +1183 Fujikura Ltd +1184 Forks Inc +1185 Dataworld International Ltd +1186 D-Link System Inc + 1002 DL10050 Sundance Ethernet + 1186 1002 DFE-550TX/FX + 1186 1012 DFE-580TX + 1025 AirPlus Xtreme G DWL-G650 Adapter + 1026 AirXpert DWL-AG650 Wireless Cardbus Adapter + 1043 AirXpert DWL-AG650 Wireless Cardbus Adapter + 1300 RTL8139 Ethernet + 1186 1300 DFE-538TX 10/100 Ethernet Adapter + 1186 1301 DFE-530TX+ 10/100 Ethernet Adapter + 1186 1303 DFE-528TX 10/100 Fast Ethernet PCI Adapter + 1340 DFE-690TXD CardBus PC Card + 1540 DFE-680TX + 1541 DFE-680TXD CardBus PC Card + 1561 DRP-32TXD Cardbus PC Card + 3300 DWL-510 / DWL-610 802.11b [Realtek RTL8180L] + 1186 3300 DWL-610 Wireless Cardbus Adapter + 1186 3301 DWL-510 Wireless PCI Adapter + 3a10 AirXpert DWL-AG650 Wireless Cardbus Adapter(rev.B) + 3a11 AirXpert DWL-AG520 Wireless PCI Adapter(rev.B) + 4000 DL2000-based Gigabit Ethernet + 4001 DGE-550SX PCI-X Gigabit Ethernet Adapter + 4200 DFE-520TX Fast Ethernet PCI Adapter + 1186 1103 DFE-520TX Fast Ethernet PCI Adapter (rev. C1) + 4300 DGE-528T Gigabit Ethernet Adapter + 1186 4300 DGE-528T PCI Gigabit Ethernet Adapter +# rev. B1; RealTek RTL8168E. + 1186 4b10 DGE-560T PCI Express (x1) Gigabit Ethernet Adapter + 4302 DGE-530T Gigabit Ethernet Adapter (rev.C1) [Realtek RTL8169] + 4b00 DGE-560T PCI Express Gigabit Ethernet Adapter + 4b01 DGE-530T Gigabit Ethernet Adapter (rev 11) + 4b02 DGE-560SX PCI Express Gigabit Ethernet Adapter + 4b03 DGE-550T Gigabit Ethernet Adapter V.B1 + 4c00 Gigabit Ethernet Adapter + 1186 4c00 DGE-530T Gigabit Ethernet Adapter + 8400 D-Link DWL-650+ CardBus PC Card +1187 Advanced Technology Laboratories, Inc. +1188 Shima Seiki Manufacturing Ltd. +1189 Matsushita Electronics Co Ltd +118a Hilevel Technology +118b Hypertec Pty Limited +118c Corollary, Inc + 0014 PCIB [C-bus II to PCI bus host bridge chip] + 1117 Intel 8-way XEON Profusion Chipset [Cache Coherency Filter] +118d BitFlow Inc + 0001 Raptor-PCI framegrabber + 0012 Model 12 Road Runner Frame Grabber + 0014 Model 14 Road Runner Frame Grabber + 0024 Model 24 Road Runner Frame Grabber + 0044 Model 44 Road Runner Frame Grabber + 0112 Model 12 Road Runner Frame Grabber + 0114 Model 14 Road Runner Frame Grabber + 0124 Model 24 Road Runner Frame Grabber + 0144 Model 44 Road Runner Frame Grabber + 0212 Model 12 Road Runner Frame Grabber + 0214 Model 14 Road Runner Frame Grabber + 0224 Model 24 Road Runner Frame Grabber + 0244 Model 44 Road Runner Frame Grabber + 0312 Model 12 Road Runner Frame Grabber + 0314 Model 14 Road Runner Frame Grabber + 0324 Model 24 Road Runner Frame Grabber + 0344 Model 44 Road Runner Frame Grabber + b04e Claxon CXP4 CoaXPress frame grabber +118e Hermstedt GmbH +118f Green Logic +1190 Tripace + c731 TP-910/920/940 PCI Ultra(Wide) SCSI Adapter +1191 Artop Electronic Corp + 0003 SCSI Cache Host Adapter + 0004 ATP8400 + 0005 ATP850UF + 0006 ATP860 NO-BIOS + 0007 ATP860 + 0008 ATP865 NO-ROM + 0009 ATP865 + 000a ATP867-A + 000b ATP867-B + 000d ATP8620 + 000e ATP8620 + 8002 AEC6710 SCSI-2 Host Adapter + 8010 AEC6712UW SCSI + 8020 AEC6712U SCSI + 8030 AEC6712S SCSI + 8040 AEC6712D SCSI + 8050 AEC6712SUW SCSI + 8060 AEC6712 SCSI + 8080 AEC67160 SCSI + 8081 AEC67160S SCSI + 808a AEC67162 2-ch. LVD SCSI +1192 Densan Company Ltd +1193 Zeitnet Inc. + 0001 1221 + 0002 1225 +1194 Toucan Technology +1195 Ratoc System Inc +1196 Hytec Electronics Ltd +1197 Gage Applied Sciences, Inc. + 010c CompuScope 82G 8bit 2GS/s Analog Input Card +1198 Lambda Systems Inc +1199 Attachmate Corporation + 0101 Advanced ISCA/PCI Adapter +119a Mind Share, Inc. +119b Omega Micro Inc. + 1221 82C092G +119c Information Technology Inst. +119d Bug, Inc. Sapporo Japan +119e Fujitsu Microelectronics Ltd. + 0001 FireStream 155 + 0003 FireStream 50 +119f Bull HN Information Systems + 1081 BXI Host Channel Adapter +# BXI stands for Bull eXascale Interconnect + 1101 BXI Host Channel Adapter v1.2 +# BXI stands for Bull eXascale Interconnect + 1121 BXI Host Channel Adapter v1.3 +11a0 Convex Computer Corporation +11a1 Hamamatsu Photonics K.K. +11a2 Sierra Research and Technology +11a3 Deuretzbacher GmbH & Co. Eng. KG +11a4 Barco Graphics NV +11a5 Microunity Systems Eng. Inc +11a6 Pure Data Ltd. +11a7 Power Computing Corp. +11a8 Systech Corp. +11a9 InnoSys Inc. + 4240 AMCC S933Q Intelligent Serial Card +11aa Actel +# Nee Galileo Technology, Inc. +11ab Marvell Technology Group Ltd. + 0100 88F3700 [Armada 3700 Family] ARM SoC + 0110 88F60x0/88F70x0/88F80x0/CN913x ARM SoC + 0146 GT-64010/64010A System Controller + 0f53 88E6318 Link Street network controller + 11ab MV88SE614x SATA II PCI-E controller + 138f W8300 802.11 Adapter (rev 07) + 1fa6 Marvell W8300 802.11 Adapter + 1186 3b08 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.A1) + 1fa7 88W8310 and 88W8000G [Libertas] 802.11g client chipset + 1faa 88w8335 [Libertas] 802.11b/g Wireless + 1385 4e00 WG511v2 54 Mbps Wireless PC Card + 1385 6b00 WG311v3 802.11g Wireless PCI Adapter + 1737 0040 WPC54G v5 802.11g Wireless-G Notebook Adapter + 2211 88SB2211 PCI Express to PCI Bridge + 2a01 88W8335 [Libertas] 802.11b/g Wireless + 2a02 88W8361 [TopDog] 802.11n Wireless + 07d1 3b02 DIR-615 rev. A1 Mini PCI Wireless Module + 1385 7c00 WN511T RangeMax Next 300 Mbps Wireless PC Card + 1385 7c01 WN511T RangeMax Next 300 Mbps Wireless Notebook Adapter + 1385 7e00 WN311T RangeMax Next 300 Mbps Wireless PCI Adapter + 1799 801b F5D8011 v2 802.11n N1 Wireless Notebook Card + 2a08 88W8362e [TopDog] 802.11a/b/g/n Wireless + 2a0a 88W8363 [TopDog] 802.11n Wireless + 2a0c 88W8363 [TopDog] 802.11n Wireless + 2a24 88W8363 [TopDog] 802.11n Wireless + 2a2b 88W8687 [TopDog] 802.11b/g Wireless + 2a30 88W8687 [TopDog] 802.11b/g Wireless + 2a40 88W8366 [TopDog] 802.11n Wireless + 2a41 88W8366 [TopDog] 802.11n Wireless + 2a42 88W8366 [TopDog] 802.11n Wireless + 2a43 88W8366 [TopDog] 802.11n Wireless + 2a55 88W8864 [Avastar] 802.11ac Wireless + 2b36 88W8764 [Avastar] 802.11n Wireless + 2b38 88W8897 [AVASTAR] 802.11ac Wireless + 2b40 88W8964 [Avastar] 802.11ac Wireless + 4101 OLPC Cafe Controller Secure Digital Controller + 4146 GT-64111 System Controller + 4320 88E8001 Gigabit Ethernet Controller + 1019 0f38 Marvell 88E8001 Gigabit Ethernet Controller (ECS) + 1019 8001 Marvell 88E8001 Gigabit Ethernet Controller (ECS) + 1043 173c Marvell 88E8001 Gigabit Ethernet Controller (Asus) + 1043 811a Marvell 88E8001 Gigabit Ethernet Controller (Asus) + 105b 0c19 Marvell 88E8001 Gigabit Ethernet Controller (Foxconn) + 10b8 b452 EZ Card 1000 (SMC9452TXV.2) + 11ab 0121 Marvell RDK-8001 + 11ab 0321 Marvell RDK-8003 + 11ab 1021 Marvell RDK-8010 + 11ab 4320 Marvell Yukon Gigabit Ethernet 10/100/1000Baset-T Constroller (Asus) + 11ab 5021 Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Controller (64 bit) + 11ab 9521 Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Controller (32 bit) + 1458 e000 Marvell 88E8001 Gigabit Ethernet Controller (Gigabyte) + 147b 1406 Marvell 88E8001 Gigabit Ethernet Controller (Abit) + 15d4 0047 Marvell 88E8001 Gigabit Ethernet Controller (Iwill) + 1695 9025 Marvell 88E8001 Gigabit Ethernet Controller (Epox) + 17f2 1c03 Marvell 88E8001 Gigabit Ethernet Controller (Albatron) + 270f 2803 Marvell 88E8001 Gigabit Ethernet Controller (Chaintech) + 4340 88E8021 PCI-X IPMI Gigabit Ethernet Controller + 4341 88E8022 PCI-X IPMI Gigabit Ethernet Controller + 4342 88E8061 PCI-E IPMI Gigabit Ethernet Controller + 4343 88E8062 PCI-E IPMI Gigabit Ethernet Controller + 4344 88E8021 PCI-X IPMI Gigabit Ethernet Controller + 4345 88E8022 PCI-X IPMI Gigabit Ethernet Controller + 4346 88E8061 PCI-E IPMI Gigabit Ethernet Controller + 4347 88E8062 PCI-E IPMI Gigabit Ethernet Controller + 4c53 10d0 Telum ASLP10 PrAMC Gigabit Ethernet + 4350 88E8035 PCI-E Fast Ethernet Controller + 1179 0001 Marvell 88E8035 Fast Ethernet Controller (Toshiba) + 11ab 3521 Marvell RDK-8035 + 1854 000d Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 000e Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 000f Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0011 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0012 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0016 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0017 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0018 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0019 Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 001c Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 001e Marvell 88E8035 Fast Ethernet Controller (LGE) + 1854 0020 Marvell 88E8035 Fast Ethernet Controller (LGE) + 4351 88E8036 PCI-E Fast Ethernet Controller + 107b 4009 Marvell 88E8036 Fast Ethernet Controller (Wistron) + 10f7 8338 Marvell 88E8036 Fast Ethernet Controller (Panasonic) + 1179 0001 Marvell 88E8036 Fast Ethernet Controller (Toshiba) + 1179 ff00 Marvell 88E8036 Fast Ethernet Controller (Compal) + 1179 ff10 Marvell 88E8036 Fast Ethernet Controller (Inventec) + 11ab 3621 Marvell RDK-8036 + 13d1 ac12 Abocom EFE3K - 10/100 Ethernet Expresscard + 161f 203d Marvell 88E8036 Fast Ethernet Controller (Arima) + 1854 000d Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 000e Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 000f Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0011 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0012 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0016 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0017 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0018 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0019 Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 001c Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 001e Marvell 88E8036 Fast Ethernet Controller (LGE) + 1854 0020 Marvell 88E8036 Fast Ethernet Controller (LGE) + 4352 88E8038 PCI-E Fast Ethernet Controller + 4353 88E8039 PCI-E Fast Ethernet Controller + 104d 902d VAIO VGN-NR120E + 4354 88E8040 PCI-E Fast Ethernet Controller + 1028 022f Inspiron 1525 + 144d c06a R730 Laptop + 144d c072 Notebook N150P + 4355 88E8040T PCI-E Fast Ethernet Controller + 1179 ff50 Satellite P305D-S8995E + 4356 88EC033 PCI-E Fast Ethernet Controller + 4357 88E8042 PCI-E Fast Ethernet Controller + 435a 88E8048 PCI-E Fast Ethernet Controller + 4360 88E8052 PCI-E ASF Gigabit Ethernet Controller + 1043 8134 Marvell 88E8052 Gigabit Ethernet Controller (Asus) + 107b 4009 Marvell 88E8052 Gigabit Ethernet Controller (Wistron) + 11ab 5221 Marvell RDK-8052 + 1458 e000 Marvell 88E8052 Gigabit Ethernet Controller (Gigabyte) + 1462 052c Marvell 88E8052 Gigabit Ethernet Controller (MSI) + 1849 8052 Marvell 88E8052 Gigabit Ethernet Controller (ASRock) + a0a0 0509 Marvell 88E8052 Gigabit Ethernet Controller (Aopen) + 4361 88E8050 PCI-E ASF Gigabit Ethernet Controller + 107b 3015 Marvell 88E8050 Gigabit Ethernet Controller (Gateway) + 11ab 5021 Marvell 88E8050 Gigabit Ethernet Controller (Intel) + 8086 3063 D925XCVLK mainboard + 8086 3439 Marvell 88E8050 Gigabit Ethernet Controller (Intel) + 4362 88E8053 PCI-E Gigabit Ethernet Controller + 103c 2a0d Marvell 88E8053 Gigabit Ethernet Controller (Asus) + 1043 8142 Marvell 88E8053 Gigabit Ethernet controller PCIe (Asus) + 109f 3197 Marvell 88E8053 Gigabit Ethernet Controller (Trigem) + 10f7 8338 Marvell 88E8053 Gigabit Ethernet Controller (Panasonic) + 10fd a430 Marvell 88E8053 Gigabit Ethernet Controller (SOYO) + 1179 0001 Marvell 88E8053 Gigabit Ethernet Controller (Toshiba) + 1179 ff00 Marvell 88E8053 Gigabit Ethernet Controller (Compal) + 1179 ff10 Marvell 88E8053 Gigabit Ethernet Controller (Inventec) + 11ab 5321 Marvell RDK-8053 + 1297 c240 Marvell 88E8053 Gigabit Ethernet Controller (Shuttle) + 1297 c241 Marvell 88E8053 Gigabit Ethernet Controller (Shuttle) + 1297 c242 Marvell 88E8053 Gigabit Ethernet Controller (Shuttle) + 1297 c243 Marvell 88E8053 Gigabit Ethernet Controller (Shuttle) + 1297 c244 Marvell 88E8053 Gigabit Ethernet Controller (Shuttle) + 13d1 ac11 EGE5K - Giga Ethernet Expresscard + 1458 e000 Marvell 88E8053 Gigabit Ethernet Controller (Gigabyte) + 1462 058c Marvell 88E8053 Gigabit Ethernet Controller (MSI) + 14c0 0012 Marvell 88E8053 Gigabit Ethernet Controller (Compal) + 1558 04a0 Marvell 88E8053 Gigabit Ethernet Controller (Clevo) + 15bd 1003 Marvell 88E8053 Gigabit Ethernet Controller (DFI) + 161f 203c Marvell 88E8053 Gigabit Ethernet Controller (Arima) + 161f 203d Marvell 88E8053 Gigabit Ethernet Controller (Arima) + 1695 9029 Marvell 88E8053 Gigabit Ethernet Controller (Epox) + 17f2 2c08 Marvell 88E8053 Gigabit Ethernet Controller (Albatron) + 17ff 0585 Marvell 88E8053 Gigabit Ethernet Controller (Quanta) + 1849 8053 Marvell 88E8053 Gigabit Ethernet Controller (ASRock) + 1854 000b Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 000c Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0010 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0013 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0014 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0015 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 001a Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 001b Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 001d Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 001f Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0021 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 1854 0022 Marvell 88E8053 Gigabit Ethernet Controller (LGE) + 270f 2801 Marvell 88E8053 Gigabit Ethernet Controller (Chaintech) + a0a0 0506 Marvell 88E8053 Gigabit Ethernet Controller (Aopen) + 4363 88E8055 PCI-E Gigabit Ethernet Controller + 4364 88E8056 PCI-E Gigabit Ethernet Controller + 1043 81f8 Motherboard + 11ba 00ba 8056 Gigabit Ethernet Controller + 4365 88E8070 based Ethernet Controller + 4366 88EC036 PCI-E Gigabit Ethernet Controller + 4367 88EC032 Ethernet Controller + 4368 88EC034 Ethernet Controller + 4369 88EC042 Ethernet Controller + 436a 88E8058 PCI-E Gigabit Ethernet Controller + 11ab 00ba Imac 8,1 Wired Ethernet Adapter + 436b 88E8071 PCI-E Gigabit Ethernet Controller + 436c 88E8072 PCI-E Gigabit Ethernet Controller + 436d 88E8055 PCI-E Gigabit Ethernet Controller + 4370 88E8075 PCI-E Gigabit Ethernet Controller + 4380 88E8057 PCI-E Gigabit Ethernet Controller +# AVB = "Audio Video Bridging" + 4381 Yukon Optima 88E8059 [PCIe Gigabit Ethernet Controller with AVB] + 1259 2803 AT-2814FX + 1259 2804 AT-2874xx + 4611 GT-64115 System Controller + 4620 GT-64120/64120A/64121A System Controller + 4801 GT-48001 + 5005 Belkin F5D5005 Gigabit Desktop Network PCI Card + 5040 MV88SX5040 4-port SATA I PCI-X Controller + 5041 MV88SX5041 4-port SATA I PCI-X Controller + 5080 MV88SX5080 8-port SATA I PCI-X Controller + 5081 MV88SX5081 8-port SATA I PCI-X Controller + 5181 88f5181 [Orion-1] ARM SoC + 5182 88f5182 [Orion-NAS] ARM SoC + 5281 88f5281 [Orion-2] ARM SoC + 6041 MV88SX6041 4-port SATA II PCI-X Controller + 6042 88SX6042 PCI-X 4-Port SATA-II + 6081 MV88SX6081 8-port SATA II PCI-X Controller + 6101 88SE6101/6102 single-port PATA133 interface + 1043 82e0 P5K PRO Motherboard + 6121 88SE6111/6121 SATA II / PATA Controller +# 6111: 1 SATA port; 6121: 2 SATA ports + 11ab 6121 88SE6111/6121 1/2 port SATA II + 1 port PATA Controller + 6141 88SE614x SATA II PCI-E controller + 6145 88SE6145 SATA II PCI-E controller + 6180 88F6180 [Kirkwood] ARM SoC + 6192 88F6190/6192 [Kirkwood] ARM SoC + 6281 88F6281 [Kirkwood] ARM SoC +# This device ID was used for earlier chips. + 6381 MV78xx0 [Discovery Innovation] ARM SoC + 6440 88SE6440 SAS/SATA PCIe controller + 6450 64560 System Controller + 6460 MV64360/64361/64362 System Controller + 6480 MV64460/64461/64462 System Controller + 1775 c200 C2K CompactPCI single board computer + 6485 MV64460/64461/64462 System Controller, Revision B + 6560 88F6560 [Avanta] ARM SoC + 6710 88F6710 [Armada 370] ARM SoC + 6820 88F6820 [Armada 385] ARM SoC + 6828 88F6828 [Armada 388] ARM SoC + 6920 88F6920 [Armada 390] ARM SoC + 7042 88SX7042 PCI-e 4-port SATA-II + 16b8 434b Tempo SATA E4P + 7810 MV78100 [Discovery Innovation] ARM SoC + 7820 MV78200 [Discovery Innovation] ARM SoC + 7823 MV78230 [Armada XP] ARM SoC + 7846 MV78460 [Armada XP] ARM SoC + d40f Bobcat3 Ethernet Switch + f003 GT-64010 Primary Image Piranha Image Generator +11ac Canon Information Systems Research Aust. +11ad Lite-On Communications Inc + 0002 LNE100TX + 11ad 0002 LNE100TX + 11ad 0003 LNE100TX + 11ad f003 LNE100TX + 11ad ffff LNE100TX + 1385 f004 FA310/TX LAN 10/100 PCI Ethernet Adapter + 2646 f002 KNE110TX EtheRx Fast Ethernet + c115 LNE100TX [Linksys EtherFast 10/100] + 11ad c001 LNE100TX [ver 2.0] + 2646 000b KNE111TX +11ae Aztech System Ltd +11af Avid Technology Inc. + 0001 Cinema + ee40 Digidesign Audiomedia III +11b0 V3 Semiconductor Inc. + 0002 V300PSC + 0292 V292PBC [Am29030/40 Bridge] + 0960 V96xPBC + 880a Deltacast Delta-HD-22 + c960 V96DPC +11b1 Apricot Computers +11b2 Eastman Kodak +11b3 Barr Systems Inc. +11b4 Leitch Technology International +11b5 Radstone Technology Plc +11b6 United Video Corp +11b7 Motorola +11b8 XPoint Technologies, Inc + 0001 Quad PeerMaster +11b9 Pathlight Technology Inc. + c0ed SSA Controller +11ba Videotron Corp +11bb Pyramid Technology +11bc Network Peripherals Inc + 0001 NP-PCI +11bd Pinnacle Systems Inc. + 002e PCTV 40i + 0040 Royal TS Function 1 + 11bd 0044 PCTV 2000i Dual DVB-T Pro PCI Tuner 1 + 11bd 0045 PCTV Dual Sat Pro PCI 4000i Tuner 1 + 0041 RoyalTS Function 2 + 11bd 0044 PCTV 2000i Dual DVB-T Pro PCI Tuner 2 + 11bd 0045 PCTV Dual Sat Pro PCI 4000i Tuner 2 + 0042 Royal TS Function 3 + 11bd 0044 PCTV 2000i Dual DVB-T Pro PCI Common + 11bd 0045 PCTV Dual Sat Pro PCI 4000i Common + 0051 PCTV HD 800i + bede AV/DV Studio Capture Card +11be International Microcircuits Inc +11bf Astrodesign, Inc. +11c0 Hewlett Packard +# nee Agere Systems nee Lucent Microelectronics +11c1 LSI Corporation + 0440 56k WinModem + 1033 8015 LT WinModem 56k Data+Fax+Voice+Dsvd + 1033 8047 LT WinModem 56k Data+Fax+Voice+Dsvd + 1033 804f LT WinModem 56k Data+Fax+Voice+Dsvd + 10cf 102c LB LT Modem V.90 56k + 10cf 104a BIBLO LT Modem 56k + 10cf 105f LB2 LT Modem V.90 56k + 1179 0001 Internal V.90 Modem + 11c1 0440 LT WinModem 56k Data+Fax+Voice+Dsvd + 122d 4101 MDP7800-U Modem + 122d 4102 MDP7800SP-U Modem + 13e0 0040 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 0440 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 0441 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 0450 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 f100 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 f101 LT WinModem 56k Data+Fax+Voice+Dsvd + 144d 2101 LT56PV Modem + 149f 0440 LT WinModem 56k Data+Fax+Voice+Dsvd + 0441 56k WinModem + 1033 804d LT WinModem 56k Data+Fax + 1033 8065 LT WinModem 56k Data+Fax + 1092 0440 Supra 56i + 1179 0001 Internal V.90 Modem + 11c1 0440 LT WinModem 56k Data+Fax + 11c1 0441 LT WinModem 56k Data+Fax + 122d 4100 MDP7800-U Modem + 13e0 0040 LT WinModem 56k Data+Fax + 13e0 0100 LT WinModem 56k Data+Fax + 13e0 0410 LT WinModem 56k Data+Fax + 13e0 0420 TelePath Internet 56k WinModem + 13e0 0440 LT WinModem 56k Data+Fax + 13e0 0443 LT WinModem 56k Data+Fax + 13e0 f102 LT WinModem 56k Data+Fax + 1416 9804 CommWave 56k Modem + 141d 0440 LT WinModem 56k Data+Fax + 144f 0441 Lucent 56k V.90 DF Modem + 144f 0449 Lucent 56k V.90 DF Modem + 144f 110d Lucent Win Modem + 1468 0441 Presario 56k V.90 DF Modem + 1668 0440 Lucent Win Modem + 0442 56k WinModem + 11c1 0440 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 11c1 0442 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 13e0 0412 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 13e0 0442 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 13fc 2471 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 144d 2104 LT56PT Modem + 144f 1104 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 149f 0440 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 1668 0440 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 0443 LT WinModem + 0444 LT WinModem + 0445 LT WinModem + 8086 2203 PRO/100+ MiniPCI (probably an Ambit U98.003.C.00 combo card) + 8086 2204 PRO/100+ MiniPCI on Armada E500 + 0446 LT WinModem + 0447 LT WinModem + 0448 WinModem 56k + 1014 0131 Lucent Win Modem + 1033 8066 LT WinModem 56k Data+Fax+Voice+Dsvd + 13e0 0030 56k Voice Modem + 13e0 0040 LT WinModem 56k Data+Fax+Voice+Dsvd +# Actiontech eth+modem card as used by Dell &c. + 1668 2400 LT WinModem 56k (MiniPCI Ethernet+Modem) + 0449 L56xM+S [Mars-2] WinModem 56k + 0e11 b14d 56k V.90 Modem + 1014 018c ThinkPad 600X + 13e0 0020 LT WinModem 56k Data+Fax + 13e0 0041 TelePath Internet 56k WinModem + 1436 0440 Lucent Win Modem + 144f 0449 Lucent 56k V.90 DFi Modem + 1468 0410 IBM ThinkPad T23 + 1468 0440 Lucent Win Modem + 1468 0449 Presario 56k V.90 DFi Modem + 044a F-1156IV WinModem (V90, 56KFlex) + 10cf 1072 LB Global LT Modem + 13e0 0012 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 13e0 0042 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 144f 1005 LT WinModem 56k Data+Fax+Voice+VoiceView+Dsvd + 044b LT WinModem + 044c LT WinModem + 044d LT WinModem + 044e LT WinModem + 044f V90 WildWire Modem + 0450 LT WinModem + 1033 80a8 Versa Note Vxi + 144f 4005 Magnia SG20 + 1468 0450 Evo N600c + 0451 LT WinModem + 0452 LT WinModem + 0453 LT WinModem + 0454 LT WinModem + 0455 LT WinModem + 0456 LT WinModem + 0457 LT WinModem + 0458 LT WinModem + 0459 LT WinModem + 045a LT WinModem + 045c LT WinModem + 0461 V90 WildWire Modem + 0462 V90 WildWire Modem + 0480 Venus Modem (V90, 56KFlex) + 048c V.92 56K WinModem +# InPorte Home Internal 56k Modem/fax/answering machine/SMS Features + 048f V.92 56k WinModem + 0620 Lucent V.92 Data/Fax Modem + 2600 StarPro26XX family (SP2601, SP2603, SP2612) DSP + 5400 OR3TP12 FPSC + 5656 Venus Modem + 5801 USB + 5802 USS-312 USB Controller + 5803 USS-344S USB Controller + 5811 FW322/323 [TrueFire] 1394a Controller + 103c 2a34 Pavilion a1677c + 103c 2a6f Asus IPIBL-LB Motherboard + 103c 2a9e Pavilion p6310f + 1043 8294 LSI FW322/323 IEEE 1394a FireWire Controller + 11bd 000e LSI FW323 + 8086 524c D865PERL mainboard + 9005 0033 Adaptec AFW-2100 (HP) 2102900-R + dead 0800 FireWire Host Bus Adapter + 5901 FW643 [TrueFire] PCIe 1394b Controller + 11c1 5900 FW643 [TrueFire] PCIe 1394b Controller + 1443 0643 FireBoard800-e V.2 + 1546 0643 FWB-PCIE1X2x + 5903 FW533 [TrueFire] PCIe 1394a Controller + 8110 T8110 H.100/H.110 TDM switch + 12d9 000c E1/T1 PMXc cPCI carrier card + ab10 WL60010 Wireless LAN MAC + ab11 WL60040 Multimode Wireles LAN MAC + 11c1 ab12 WaveLAN 11abg Cardbus card (Model 1102) + 11c1 ab13 WaveLAN 11abg MiniPCI card (Model 0512) + 11c1 ab15 WaveLAN 11abg Cardbus card (Model 1106) + 11c1 ab16 WaveLAN 11abg MiniPCI card (Model 0516) + ab20 ORiNOCO PCI Adapter + ab21 Agere Wireless PCI Adapter + ab30 Hermes2 Mini-PCI WaveLAN a/b/g + 14cd 2012 Hermes2 Mini-PCI WaveLAN a/b/g + ed00 ET-131x PCI-E Ethernet Controller + ed01 ET-131x PCI-E Ethernet Controller +11c2 Sand Microelectronics +11c3 NEC Corporation +11c4 Document Technologies, Inc +11c5 Shiva Corporation +11c6 Dainippon Screen Mfg. Co. Ltd +11c7 D.C.M. Data Systems +11c8 Dolphin Interconnect Solutions AS + 0658 PSB32 SCI-Adapter D31x + d665 PSB64 SCI-Adapter D32x + d667 PSB66 SCI-Adapter D33x +11c9 Magma + 0010 16-line serial port w/- DMA + 0011 4-line serial port w/- DMA +11ca LSI Systems, Inc +11cb Specialix Research Ltd. + 2000 PCI_9050 + 11cb 0200 SX + 11cb b008 I/O8+ + 4000 SUPI_1 + 8000 T225 +11cc Michels & Kleberhoff Computer GmbH +11cd HAL Computer Systems, Inc. +11ce Netaccess +11cf Pioneer Electronic Corporation +11d0 Lockheed Martin Federal Systems-Manassas +11d1 Auravision + 01f7 VxP524 + 01f9 VxP951 +11d2 Intercom Inc. +11d3 Trancell Systems Inc +11d4 Analog Devices + 1535 Blackfin BF535 processor + 1805 SM56 PCI modem +11d5 Ikon Corporation + 0115 10115 + 0117 10117 +11d6 Tekelec Telecom +11d7 Trenton Technology, Inc. +11d8 Image Technologies Development +11d9 TEC Corporation +11da Novell +11db Sega Enterprises Ltd +11dc Questra Corporation +11dd Crosfield Electronics Limited +11de Zoran Corporation + 6017 miroVIDEO DC30 + 6057 ZR36057PQC Video cutting chipset + 1031 7efe DC10 Plus + 1031 fc00 MiroVIDEO DC50, Motion JPEG Capture/CODEC Board + 12f8 8a02 Tekram Video Kit + 13ca 4231 JPEG/TV Card + 6120 ZR36120 + 1328 f001 Cinemaster C DVD Decoder + 13c2 0000 MediaFocus Satellite TV Card + 1de1 9fff Video Kit C210 +11df New Wave PDG +11e0 Cray Communications A/S +11e1 GEC Plessey Semi Inc. +11e2 Samsung Information Systems America +11e3 Quicklogic Corporation + 0001 COM-ON-AIR Dosch&Amand DECT + 0560 QL5064 Companion Design Demo Board + 5030 PC Watchdog + 8417 QL5064 [QuickPCI] PCI v2.2 bridge for SMT417 Dual TMS320C6416T PMC Module +11e4 Second Wave Inc +11e5 IIX Consulting +11e6 Mitsui-Zosen System Research +11e7 Toshiba America, Elec. Company +11e8 Digital Processing Systems Inc. +11e9 Highwater Designs Ltd. +11ea Elsag Bailey +11eb Formation Inc. +11ec Coreco Inc + 000d Oculus-F/64P + 1800 Cobra/C6 +11ed Mediamatics +11ee Dome Imaging Systems Inc +11ef Nicolet Technologies B.V. +11f0 Compu-Shack + 4231 FDDI + 4232 FASTline UTP Quattro + 4233 FASTline FO + 4234 FASTline UTP + 4235 FASTline-II UTP + 4236 FASTline-II FO + 4731 GIGAline +11f1 Symbios Logic Inc +11f2 Picture Tel Japan K.K. +11f3 Keithley Metrabyte + 0011 KPCI-PIO24 +11f4 Kinetic Systems Corporation + 2915 CAMAC controller +11f5 Computing Devices International +11f6 Compex + 0112 ENet100VG4 + 0113 FreedomLine 100 + 1401 ReadyLink 2000 + 2011 RL100-ATX 10/100 + 11f6 2011 RL100-ATX + 2201 ReadyLink 100TX (Winbond W89C840) + 11f6 2011 ReadyLink 100TX + 9881 RL100TX Fast Ethernet +11f7 Scientific Atlanta +11f8 PMC-Sierra Inc. + 5220 BR522x [PMC-Sierra maxRAID SAS Controller] + 7364 PM7364 [FREEDM - 32 Frame Engine & Datalink Mgr] + 7375 PM7375 [LASAR-155 ATM SAR] + 7384 PM7384 [FREEDM - 84P672 Frm Engine & Datalink Mgr] + 8000 PM8000 [SPC - SAS Protocol Controller] + 8009 PM8009 SPCve 8x6G + 8018 PM8018 Adaptec SAS Adaptor ASA-70165H PCIe Gen3 x8 6 Gbps 16-lane 4x SFF-8644 + 8032 PM8032 Tachyon QE8 + 117c 003a Celerity FC-81EN Fibre Channel Adapter + 117c 003b Celerity FC-82EN Fibre Channel Adapter + 117c 003c Celerity FC-84EN Fibre Channel Adapter + 117c 403b ThunderLink FC 1082 Fibre Channel Adapter + 8053 PM8053 SXP 12G 24-port SAS/SATA expander + 8054 PM8054 SXP 12G 36-port SAS/SATA expander + 8055 PM8055 SXP 12G 48-port SAS/SATA expander + 8056 PM8056 SXP 12G 68-port SAS/SATA expander + 8060 PM8060 SRCv 12G eight-port SAS/SATA RoC + 8063 PM8063 SRCv 12G 16-port SAS/SATA RoC + 8070 PM8070 Tachyon SPCv 12G eight-port SAS/SATA controller + 8071 PM8071 Tachyon SPCve 12G eight-port SAS/SATA controller + 8072 PM8072 Tachyon SPCv 12G 16-port SAS/SATA controller + 8073 PM8073 Tachyon SPCve 12G 16-port SAS/SATA controller + 8531 PM8531 PFX 24xG3 PCIe Fanout Switch + 8532 PM8532 PFX 32xG3 PCIe Fanout Switch + 8533 PM8533 PFX 48xG3 PCIe Fanout Switch + 8534 PM8534 PFX 64xG3 PCIe Fanout Switch + 8535 PM8535 PFX 80xG3 PCIe Fanout Switch + 8536 PM8536 PFX 96xG3 PCIe Fanout Switch + 1bd4 0081 PM8536 PFX 96xG3 PCIe Fanout Switch + 8546 PM8546 B-FEIP PSX 96xG3 PCIe Storage Switch + 8562 PM8562 Switchtec PFX-L 32xG3 Fanout-Lite PCIe Gen3 Switch +11f9 I-Cube Inc +11fa Kasan Electronics Company, Ltd. +11fb Datel Inc +11fc Silicon Magic +11fd High Street Consultants +# nee Comtrol, Inc. +11fe Pepperl+Fuchs + 0001 RocketPort PCI 32-port w/external I/F + 0002 RocketPort PCI 8-port w/external I/F + 0003 RocketPort PCI 16-port w/external I/F + 0004 RocketPort PCI 4-port w/Quad Cable + 0005 RocketPort PCI 8-port w/Octa Cable + 0006 RocketPort PCI 8-port w/RJ11 connectors + 0007 RocketPort PCI 4-port w/RJ45 connectors + 0008 RocketPort PCI 8-port w/DB78 SNI connector (Siemens) + 0009 RocketPort PCI 16-port w/DB78 SNI connector (Siemens) + 000a RocketPort PCI Plus 4-port w/Quad Cable + 000b RocketPort PCI Plus 8-port w/Octa Cable + 000c RocketModem II 6-port + 000d RocketModem 4-port + 000e RocketPort PCI Plus 2-port RS-232 w/DB9 connectors + 000f RocketPort PCI Plus 2-port SMPTE w/DB9 connectors + 0040 RocketPort INFINITY 8-port w/Octa Cable RJ45 + 0041 RocketPort INFINITY 32-port w/external I/F + 0042 RocketPort INFINITY 8-port w/external I/F + 0043 RocketPort INFINITY 16-port w/external I/F + 0044 RocketPort INFINITY 4-port w/Quad Cable DB + 0045 RocketPort INFINITY 8-port w/Octa Cable DB + 0046 RocketPort INFINITY 4-port w/external I/F + 0047 RocketPort INFINITY 4J (4-port) w/RJ45 connectors + 0048 RocketPort INFINITY 4J (4-port) w/RJ45 connectors + 004a RocketPort INFINITY Plus 4-port + 004b RocketPort INFINITY Plus 8-port + 004c RocketModem INFINITY III 8-port + 004d RocketModem INFINITY III 4-port + 004e RocketPort INFINITY Plus 2-port + 004f RocketPort INFINITY 2-port SMPTE w/DB9 connectors + 0050 RocketPort INFINITY Plus 4-port RJ45 + 0051 RocketPort INFINITY Plus 8-port RJ11 + 0052 RocketPort INFINITY 8-port SMPTE w/DB9 Connectors + 0060 RocketPort EXPRESS 8-port w/Octa Cable + 0061 RocketPort EXPRESS 32-port w/external I/F + 0062 RocketPort EXPRESS 8-Port w/external I/F + 0063 RocketPort EXPRESS 16-port w/external I/F + 0064 RocketPort EXPRESS 4-port w/Quad Cable + 0065 RocketPort EXPRESS 8-port w/Octa Cable + 0066 RocketPort EXPRESS 4-port w/external I/F + 0067 RocketPort EXPRESS 4J (4-port) w/RJ45 connectors + 0068 RocketPort EXPRESS 8J (8-port) w/RJ11 connectors + 006f RocketPort EXPRESS SMPTE 2-port + 0072 RocketPort EXPRESS SMPTE 8-port w/external I/F + 0801 RocketPort uPCI 32-port w/external I/F + 0802 RocketPort uPCI 8-port w/external I/F + 0803 RocketPort uPCI 16-port w/external I/F + 0805 RocketPort uPCI 8-port w/Octa Cable + 080b RocketPort Plus uPCI 8-port w/Octa Cable + 080c RocketModem III 8-port + 080d RocketModem III 4-port + 080e RocketPort uPCI 2-port RS232 w/DB9 connectors + 080f RocketPort uPCI SMPTE 2-port + 0810 RocketPort Plus uPCI 4J (4-port) w/RJ45 connectors + 0811 RocketPort Plus uPCI 8J (8-port) w/RJ11 connectors + 0812 RocketPort Plus uPCI 422 8-port + 0813 RocketModem IV uPCI 8-port + 0814 RocketModem IV uPCI 4-port + 0903 RocketPort Compact PCI 16 port w/external I/F +# 16954 UART + 8015 RocketPort 550 4-port + 8805 RocketPort uPCI 4-port w/Quad Cable + 880b RocketPort Plus uPCI 4-port w/Quad Cable + 8812 RocketPort Plus uPCI 4-port RS422 w/Quad Cable +11ff Scion Corporation + 0003 AG-5 +1200 CSS Corporation +1201 Vista Controls Corp +1202 Network General Corp. + 4300 Gigabit Ethernet Adapter + 1202 9841 SK-9841 LX + 1202 9842 SK-9841 LX dual link + 1202 9843 SK-9843 SX + 1202 9844 SK-9843 SX dual link +1203 Bayer Corporation, Agfa Division +1204 Lattice Semiconductor Corporation + 1965 SB6501 802.11ad Wireless Network Adapter +1205 Array Corporation +1206 Amdahl Corporation +1208 Parsytec GmbH + 4853 HS-Link Device +1209 SCI Systems Inc +120a Synaptel +120b Adaptive Solutions +120c Technical Corp. +120d Compression Labs, Inc. +120e Cyclades Corporation + 0100 Cyclom-Y below first megabyte + 0101 Cyclom-Y above first megabyte + 0102 Cyclom-4Y below first megabyte + 0103 Cyclom-4Y above first megabyte + 0104 Cyclom-8Y below first megabyte + 0105 Cyclom-8Y above first megabyte + 0200 Cyclades-Z below first megabyte + 0201 Cyclades-Z above first megabyte + 0300 PC300/RSV or /X21 (2 ports) + 0301 PC300/RSV or /X21 (1 port) + 0310 PC300/TE (2 ports) + 0311 PC300/TE (1 port) + 0320 PC300/TE-M (2 ports) + 0321 PC300/TE-M (1 port) + 0400 PC400 +120f Essential Communications + 0001 Roadrunner serial HIPPI +1210 Hyperparallel Technologies +1211 Braintech Inc +1213 Applied Intelligent Systems, Inc. +1214 Performance Technologies, Inc. +1215 Interware Co., Ltd +1216 Purup Prepress A/S +1217 O2 Micro, Inc. + 00f7 Firewire (IEEE 1394) + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 1179 ff50 Satellite P305D-S8995E + 10f7 1394 OHCI Compliant Host Controller + 11f7 OZ600 1394a-2000 Controller + 1028 04a3 Precision M4600 + 13f7 1394 OHCI Compliant Host Controller + 6729 OZ6729 + 673a OZ6730 + 6832 OZ6832/6833 CardBus Controller + 6836 OZ6836/6860 CardBus Controller + 6872 OZ6812 CardBus Controller + 6925 OZ6922 CardBus Controller + 6933 OZ6933/711E1 CardBus/SmartCardBus Controller + 1025 1016 Travelmate 612 TX + 6972 OZ601/6912/711E0 CardBus/SmartCardBus Controller + 1014 020c ThinkPad R30 + 1028 0152 Latitude D500 + 1179 0001 Magnia Z310 + 7110 OZ711Mx 4-in-1 MemoryCardBus Accelerator + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 1734 106c Amilo A1645 + 7112 OZ711EC1/M1 SmartCardBus/MemoryCardBus Controller + 7113 OZ711EC1 SmartCardBus Controller + 1025 0035 TravelMate 660 + 7114 OZ711M1/MC1 4-in-1 MemoryCardBus Controller + 7120 Integrated MMC/SD Controller + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 1179 ff50 Satellite P305D-S8995E + 7130 Integrated MS/xD Controller + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 1179 ff50 Satellite P305D-S8995E + 7134 OZ711MP1/MS1 MemoryCardBus Controller + 7135 Cardbus bridge + 7136 OZ711SP1 Memory CardBus Controller + 71e2 OZ711E2 SmartCardBus Controller + 7212 OZ711M2 4-in-1 MemoryCardBus Controller + 7213 OZ6933E CardBus Controller + 7223 OZ711M3/MC3 4-in-1 MemoryCardBus Controller + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 10cf 11c4 Lifebook P5020D Laptop + 7233 OZ711MP3/MS3 4-in-1 MemoryCardBus Controller + 8120 Integrated MMC/SD Controller + 8130 Integrated MS/MSPRO/xD Controller + 8220 OZ600FJ1/OZ900FJ1 SD/MMC Card Reader Controller + 8221 OZ600FJ0/OZ900FJ0/OZ600FJS SD/MMC Card Reader Controller + 8320 OZ600RJ1/OZ900RJ1 SD/MMC Card Reader Controller + 1028 04a3 Precision M4600 + 8321 OZ600RJ0/OZ900RJ0/OZ600RJS SD/MMC Card Reader Controller + 8330 OZ600 MS/xD Controller + 1028 04a3 Precision M4600 + 8331 O2 Flash Memory Card + 8520 SD/MMC Card Reader Controller + 8621 SD/MMC Card Reader Controller +1218 Hybricon Corp. +1219 First Virtual Corporation +121a 3Dfx Interactive, Inc. + 0001 Voodoo + 0002 Voodoo 2 + 0003 Voodoo Banshee + 1092 0003 Monster Fusion + 1092 4000 Monster Fusion + 1092 4002 Monster Fusion + 1092 4801 Monster Fusion AGP + 1092 4803 Monster Fusion AGP + 1092 8030 Monster Fusion + 1092 8035 Monster Fusion AGP + 10b0 0001 Dragon 4000 + 1102 1017 3D Blaster Banshee PCI (CT6760) + 1102 1018 3D Blaster Banshee VE + 121a 0001 Voodoo Banshee AGP + 121a 0003 Voodoo Banshee AGP SGRAM + 121a 0004 Voodoo Banshee + 139c 0016 Raven + 139c 0017 Raven + 14af 0002 Maxi Gamer Phoenix + 0004 Voodoo Banshee [Velocity 100] + 0005 Voodoo 3 + 121a 0004 Voodoo3 AGP + 121a 0030 Voodoo3 AGP + 121a 0031 Voodoo3 AGP + 121a 0034 Voodoo3 AGP + 121a 0036 Voodoo3 2000 PCI + 121a 0037 Voodoo3 AGP + 121a 0038 Voodoo3 AGP + 121a 003a Voodoo3 AGP + 121a 0044 Voodoo3 + 121a 004b Velocity 100 + 121a 004c Velocity 200 + 121a 004d Voodoo3 AGP + 121a 004e Voodoo3 AGP + 121a 0051 Voodoo3 AGP + 121a 0052 Voodoo3 AGP + 121a 0057 Voodoo3 3000 PCI + 121a 0060 Voodoo3 3500 TV (NTSC) + 121a 0061 Voodoo3 3500 TV (PAL) + 121a 0062 Voodoo3 3500 TV (SECAM) + 0009 Voodoo 4 / Voodoo 5 + 121a 0003 Voodoo5 PCI 5500 + 121a 0009 Voodoo5 AGP 5500/6000 + 0057 Voodoo 3/3000 [Avenger] +121b Advanced Telecommunications Modules +121c Nippon Texaco., Ltd +121d LiPPERT ADLINK Technology GmbH +121e CSPI + 0201 Myrinet 2000 Scalable Cluster Interconnect +121f Arcus Technology, Inc. +1220 Ariel Corporation + 1220 AMCC 5933 TMS320C80 DSP/Imaging board +1221 Contec Co., Ltd + 9172 PO-64L(PCI)H [Isolated Digital Output Board for PCI] + 91a2 PO-32L(PCI)H [Isolated Digital Output Board for PCI] + 91c3 DA16-16(LPCI)L [Un-insulated highly precise analog output board for Low Profile PCI] + b152 DIO-96D2-LPCI + c103 ADA16-32/2(PCI)F [High-Speed Analog I/O Board for PCI] +1222 Ancor Communications, Inc. +1223 Artesyn Communication Products + 0003 PM/Link + 0004 PM/T1 + 0005 PM/E1 + 0008 PM/SLS + 0009 BajaSpan Resource Target + 000a BajaSpan Section 0 + 000b BajaSpan Section 1 + 000c BajaSpan Section 2 + 000d BajaSpan Section 3 + 000e PM/PPC +1224 Interactive Images +1225 Power I/O, Inc. +1227 EIZO Rugged Solutions + 0006 Raptor GFX 8P + 0023 Raptor GFX [1100T] + 0045 Raptor 4000-L [Linux version] + 004a Raptor 4000-LR-L [Linux version] +1228 Norsk Elektro Optikk A/S +1229 Data Kinesis Inc. +122a Integrated Telecom +122b LG Industrial Systems Co., Ltd +122c Sican GmbH +122d Aztech System Ltd + 1206 368DSP + 1400 Trident PCI288-Q3DII (NX) + 50dc 3328 Audio + 122d 0001 3328 Audio + 80da 3328 Audio + 122d 0001 3328 Audio +122e Xyratex + 7722 Napatech XL1 + 7724 Napatech XL2/XA + 7729 Napatech XD +122f Andrew Corporation +1230 Fishcamp Engineering +1231 Woodward McCoach, Inc. + 04e1 Desktop PCI Telephony 4 + 05e1 Desktop PCI Telephony 5/6 + 0d00 LightParser + 0d02 LightParser 2 + 0d13 Desktop PCI L1/L3 Telephony +1232 GPT Limited +1233 Bus-Tech, Inc. +# nee Risq Modular Systems, Inc. +1235 SMART Modular Technologies +1236 Sigma Designs Corporation + 0000 RealMagic64/GX + 6401 REALmagic 64/GX (SD 6425) +1237 Alta Technology Corporation +1238 Adtran +1239 3DO Company +123a Visicom Laboratories, Inc. +123b Seeq Technology, Inc. +123c Century Systems, Inc. +123d Engineering Design Team, Inc. + 0000 EasyConnect 8/32 + 0002 EasyConnect 8/64 + 0003 EasyIO +123e Simutech, Inc. +# nee C-Cube Microsystems / acquired by Magnum Semiconductor +123f LSI Logic + 00e4 MPEG + 8120 DVxplore Codec + 10de 01e1 NVTV PAL + 10de 01e2 NVTV NTSC + 10de 01e3 NVTV PAL + 10de 0248 NVTV NTSC + 10de 0249 NVTV PAL + 11bd 0006 DV500 E4 + 11bd 000a DV500 E4 + 11bd 000f DV500 E4 + 1809 0016 Emuzed MAUI-III PCI PVR FM TV + 8888 Cinemaster C 3.0 DVD Decoder + 1002 0001 Cinemaster C 3.0 DVD Decoder + 1002 0002 Cinemaster C 3.0 DVD Decoder + 1328 0001 Cinemaster C 3.0 DVD Decoder +1240 Marathon Technologies Corp. +1241 DSC Communications +# Formerly Jaycor Networks, Inc. +1242 JNI Corporation + 1560 JNIC-1560 PCI-X Fibre Channel Controller + 1242 6562 FCX2-6562 Dual Channel PCI-X Fibre Channel Adapter + 1242 656a FCX-6562 PCI-X Fibre Channel Adapter + 4643 FCI-1063 Fibre Channel Adapter + 6562 FCX2-6562 Dual Channel PCI-X Fibre Channel Adapter + 656a FCX-6562 PCI-X Fibre Channel Adapter +1243 Delphax +# Audio-Visuelles Marketing und Computersysteme +1244 AVM GmbH + 0700 B1 ISDN + 0800 C4 ISDN + 0a00 A1 ISDN [Fritz] + 1244 0a00 FRITZ!Card ISDN Controller + 0e00 Fritz!Card PCI v2.0 ISDN + 0e80 Fritz!Card PCI v2.1 ISDN + 1244 0e00 PSB 3100F (AVM KAFKA) [Fritz!Card PCI v2.1] + 1100 C2 ISDN + 1200 T1 ISDN + 2700 Fritz!Card DSL SL + 2900 Fritz!Card DSL v2.0 +1245 A.P.D., S.A. +1246 Dipix Technologies, Inc. +1247 Xylon Research, Inc. +1248 Central Data Corporation +1249 Samsung Electronics Co., Ltd. +124a AEG Electrocom GmbH +124b SBS/Greenspring Modular I/O + 0040 PCI-40A or cPCI-200 Quad IndustryPack carrier + 124b 9080 PCI9080 Bridge +124c Solitron Technologies, Inc. +124d Stallion Technologies, Inc. + 0000 EasyConnection 8/32 + 0002 EasyConnection 8/64 + 0003 EasyIO + 0004 EasyConnection/RA +124e Cylink +124f Infortrend Technology, Inc. + 0041 IFT-2000 Series RAID Controller +1250 Hitachi Microcomputer System Ltd +1251 VLSI Solutions Oy +1253 Guzik Technical Enterprises +1254 Linear Systems Ltd. + 0065 DVB Master FD + 007c DVB Master Quad/o +1255 Optibase Ltd + 1110 MPEG Forge + 1210 MPEG Fusion + 2110 VideoPlex + 2120 VideoPlex CC + 2130 VideoQuest +1256 Perceptive Solutions, Inc. + 4201 PCI-2220I + 4401 PCI-2240I + 5201 PCI-2000 +1257 Vertex Networks, Inc. +1258 Gilbarco, Inc. +# nee Allied Telesyn International +1259 Allied Telesis + 2560 AT-2560 Fast Ethernet Adapter (i82557B) + 2801 AT-2801FX (RTL-8139) + a117 RTL81xx Fast Ethernet + a11e RTL81xx Fast Ethernet + a120 21x4x DEC-Tulip compatible 10/100 Ethernet +125a ABB Power Systems +125b Asix Electronics Corporation + 1400 AX88141 Fast Ethernet Controller + 1186 1100 AX8814X Based PCI Fast Ethernet Adapter + 9100 AX99100 PCIe to Multi I/O Controller + a000 1000 Serial Port + a000 2000 Parallel Port + a000 6000 SPI + a000 7000 Local Bus + ea50 1c10 RXi2-BP +125c Aurora Technologies, Inc. + 0101 Saturn 4520P + 0640 Aries 16000P +125d ESS Technology + 0000 ES336H Fax Modem (Early Model) + 1948 ES1948 Maestro-1 + 1968 ES1968 Maestro 2 + 1028 0085 ES1968 Maestro-2 PCI + 1033 8051 ES1968 Maestro-2 Audiodrive + 1969 ES1938/ES1946/ES1969 Solo-1 Audiodrive + 1014 0166 ES1969 SOLO-1 AudioDrive on IBM Aptiva Mainboard + 125d 8888 Solo-1 Audio Adapter + 125d 8898 ES1938S TTSOLO1-SL [TerraTec 128i PCI] + 153b 111b Terratec 128i PCI + 1978 ES1978 Maestro 2E + 0e11 b112 Armada M700/E500 + 1033 803c ES1978 Maestro-2E Audiodrive + 1033 8058 ES1978 Maestro-2E Audiodrive + 1092 4000 Monster Sound MX400 + 1179 0001 ES1978 Maestro-2E Audiodrive + 1988 ES1988 Allegro-1 + 0e11 0098 Evo N600c + 1092 4100 Sonic Impact S100 + 125d 0431 Allegro AudioDrive + 125d 1988 ESS Allegro-1 Audiodrive + 125d 1998 Allegro AudioDrive + 125d 1999 Allegro-1 AudioDrive + 1989 ESS Modem + 125d 1989 ESS Modem + 1998 ES1983S Maestro-3i PCI Audio Accelerator + 1028 00b1 Latitude C600 + 1028 00e5 Latitude C810 + 1028 00e6 ES1983S Maestro-3i (Dell Inspiron 8100) + 1999 ES1983S Maestro-3i PCI Modem Accelerator + 199a ES1983S Maestro-3i PCI Audio Accelerator + 199b ES1983S Maestro-3i PCI Modem Accelerator + 2808 ES336H Fax Modem (Later Model) + 2838 ES2838/2839 SuperLink Modem + 2898 ES2898 Modem + 125d 0424 ES56-PI Data Fax Modem + 125d 0425 ES56T-PI Data Fax Modem + 125d 0426 ES56V-PI Data Fax Modem + 125d 0427 VW-PI Data Fax Modem + 125d 0428 ES56ST-PI Data Fax Modem + 125d 0429 ES56SV-PI Data Fax Modem + 147a c001 ES56-PI Data Fax Modem + 148d 1030 HCF WV-PI56 [ESS ES56-PI Data Fax Modem] + 14fe 0428 ES56-PI Data Fax Modem + 14fe 0429 ES56-PI Data Fax Modem +125e Specialvideo Engineering SRL +125f Concurrent Technologies, Inc. +# 4 x serial ports, 2 x printer ports + 2071 CC PMC/232 +# 4 x serial ports, 2 x printer ports + 2084 CC PMC/23P +# 4 x serial ports, RS422 + 2091 CC PMC/422 +1260 Intersil Corporation + 3872 ISL3872 [Prism 3] + 1468 0202 LAN-Express IEEE 802.11b Wireless LAN + 3873 ISL3874 [Prism 2.5]/ISL3872 [Prism 3] + 10cf 1169 MBH7WM01-8734 802.11b Wireless Mini PCI Card [ISL3874] + 1186 3501 DWL-520 Wireless PCI Adapter (rev A or B) [ISL3874] + 1186 3700 DWL-520 Wireless PCI Adapter (rev E1) [ISL3872] + 1385 4105 MA311 802.11b wireless adapter [ISL3874] + 1668 0414 HWP01170-01 802.11b PCI Wireless Adapter + 16a5 1601 AIR.mate PC-400 PCI Wireless LAN Adapter + 1737 3874 WMP11 v1 802.11b Wireless-B PCI Adapter [ISL3874] + 4033 7033 PCW200 802.11b Wireless PCI Adapter [ISL3874] + 8086 2510 M3AWEB Wireless 802.11b MiniPCI Adapter + 8086 2513 Wireless 802.11b MiniPCI Adapter + 3877 ISL3877 [Prism Indigo] + 3886 ISL3886 [Prism Javelin/Prism Xbow] + 17cf 0037 XG-901 and clones Wireless Adapter + 3890 ISL3890 [Prism GT/Prism Duette]/ISL3886 [Prism Javelin/Prism Xbow] + 10b8 2802 SMC2802W V1 Wireless PCI Adapter [ISL3890] + 10b8 2835 SMC2835W Wireless Cardbus Adapter + 10b8 a835 SMC2835W V2 Wireless Cardbus Adapter + 1113 4203 WN4201B + 1113 8201 T-Com T-Sinus 154pcicard Wireless PCI Adapter + 1113 b301 T-Sinus 154card Cardbus + 1113 ee03 SMC2802W V2 Wireless PCI Adapter [ISL3886] + 1113 ee08 SMC2835W V3 EU Wireless Cardbus Adapter + 1186 3202 DWL-G650 A1 Wireless Adapter + 1259 c104 CG-WLCB54GT Wireless Adapter + 1260 0000 WG511 v1 54 Mbps Wireless PC Card + 1385 4800 WG511 v2/v3 54 Mbps Wireless PC Card + 16a5 1605 ALLNET ALL0271 Wireless PCI Adapter + 17cf 0014 XG-600 and clones Wireless Adapter + 17cf 0020 XG-900 and clones Wireless Adapter + 187e 3403 G-110 802.11g Wireless Cardbus Adapter + 8130 HMP8130 NTSC/PAL Video Decoder + 8131 HMP8131 NTSC/PAL Video Decoder +# This is probably more likely a HW fault, but I am keeping it for now --mj + ffff ISL3886IK + 1260 0000 Senao 3054MP+ (J) mini-PCI WLAN 802.11g adapter +1261 Matsushita-Kotobuki Electronics Industries, Ltd. +1262 ES Computer Company, Ltd. +1263 Sonic Solutions +1264 Aval Nagasaki Corporation +1265 Casio Computer Co., Ltd. +1266 Microdyne Corporation + 0001 NE10/100 Adapter (i82557B) + 1910 NE2000Plus (RT8029) Ethernet Adapter + 1266 1910 NE2000Plus Ethernet Adapter +1267 S. A. Telecommunications + 5352 PCR2101 + 5a4b Telsat Turbo +1268 Tektronix +1269 Thomson-CSF/TTM +# MBIM on top of MHI + 00b3 5G Data Card [Cinterion MV31-W] +126a Lexmark International, Inc. +126b Adax, Inc. +126c Northern Telecom + 1211 10/100BaseTX [RTL81xx] + 126c 802.11b Wireless Ethernet Adapter +126d Splash Technology, Inc. +126e Sumitomo Metal Industries, Ltd. +126f Silicon Motion, Inc. + 0501 SM501 VoyagerGX Rev. AA + 0510 SM501 VoyagerGX Rev. B + 0710 SM710 LynxEM + 0712 SM712 LynxEM+ + 0718 SM718 LynxSE+ + 0720 SM720 Lynx3DM + 0730 SM731 Cougar3DR + 0750 SM750 + 0810 SM810 LynxE + 0811 SM811 LynxE + 0820 SM820 Lynx3D + 0910 SM910 + 2262 SM2262/SM2262EN SSD Controller + 2263 SM2263EN/SM2263XT SSD Controller +1270 Olympus Optical Co., Ltd. +1271 GW Instruments +1272 Telematics International +1273 Hughes Network Systems + 0002 DirecPC +1274 Ensoniq + 1171 ES1373 / Creative Labs CT5803 [AudioPCI] + 1371 ES1371/ES1373 / Creative Labs CT2518 + 0e11 0024 AudioPCI on Motherboard Compaq Deskpro + 0e11 b1a7 ES1371, ES1373 AudioPCI + 1033 80ac ES1371, ES1373 AudioPCI + 1042 1854 Tazer + 107b 8054 Tabor2 + 1274 1371 Audio PCI 64V/128/5200 / Creative CT4810/CT5803/CT5806 [Sound Blaster PCI] + 1274 8001 CT4751 board + 1462 6470 ES1371, ES1373 AudioPCI On Motherboard MS-6147 1.1A + 1462 6560 ES1371, ES1373 AudioPCI On Motherboard MS-6156 1.10 + 1462 6630 ES1371, ES1373 AudioPCI On Motherboard MS-6163BX 1.0A + 1462 6631 ES1371, ES1373 AudioPCI On Motherboard MS-6163VIA 1.0A + 1462 6632 ES1371, ES1373 AudioPCI On Motherboard MS-6163BX 2.0A + 1462 6633 ES1371, ES1373 AudioPCI On Motherboard MS-6163VIA 2.0A + 1462 6820 ES1371, ES1373 AudioPCI On Motherboard MS-6182 1.00 + 1462 6822 ES1371, ES1373 AudioPCI On Motherboard MS-6182 1.00A + 1462 6830 ES1371, ES1373 AudioPCI On Motherboard MS-6183 1.00 + 1462 6880 ES1371, ES1373 AudioPCI On Motherboard MS-6188 1.00 + 1462 6900 ES1371, ES1373 AudioPCI On Motherboard MS-6190 1.00 + 1462 6910 ES1371, ES1373 AudioPCI On Motherboard MS-6191 + 1462 6930 ES1371, ES1373 AudioPCI On Motherboard MS-6193 + 1462 6990 ES1371, ES1373 AudioPCI On Motherboard MS-6199BX 2.0A + 1462 6991 ES1371, ES1373 AudioPCI On Motherboard MS-6199VIA 2.0A + 14a4 2077 ES1371, ES1373 AudioPCI On Motherboard KR639 + 14a4 2105 ES1371, ES1373 AudioPCI On Motherboard MR800 + 14a4 2107 ES1371, ES1373 AudioPCI On Motherboard MR801 + 14a4 2172 ES1371, ES1373 AudioPCI On Motherboard DR739 + 1509 9902 ES1371, ES1373 AudioPCI On Motherboard KW11 + 1509 9903 ES1371, ES1373 AudioPCI On Motherboard KW31 + 1509 9904 ES1371, ES1373 AudioPCI On Motherboard KA11 + 1509 9905 ES1371, ES1373 AudioPCI On Motherboard KC13 + 152d 8801 ES1371, ES1373 AudioPCI On Motherboard CP810E + 152d 8802 ES1371, ES1373 AudioPCI On Motherboard CP810 + 152d 8803 ES1371, ES1373 AudioPCI On Motherboard P3810E + 152d 8804 ES1371, ES1373 AudioPCI On Motherboard P3810-S + 152d 8805 ES1371, ES1373 AudioPCI On Motherboard P3820-S + 270f 2001 ES1371, ES1373 AudioPCI On Motherboard 6CTR + 270f 2200 ES1371, ES1373 AudioPCI On Motherboard 6WTX + 270f 3000 ES1371, ES1373 AudioPCI On Motherboard 6WSV + 270f 3100 ES1371, ES1373 AudioPCI On Motherboard 6WIV2 + 270f 3102 ES1371, ES1373 AudioPCI On Motherboard 6WIV + 270f 7060 ES1371, ES1373 AudioPCI On Motherboard 6ASA2 + 8086 4249 ES1371, ES1373 AudioPCI On Motherboard BI440ZX + 8086 424c ES1371, ES1373 AudioPCI On Motherboard BL440ZX + 8086 425a ES1371, ES1373 AudioPCI On Motherboard BZ440ZX + 8086 4341 ES1371, ES1373 AudioPCI On Motherboard Cayman + 8086 4343 ES1371, ES1373 AudioPCI On Motherboard Cape Cod + 8086 4541 D815EEA Motherboard + 8086 4649 ES1371, ES1373 AudioPCI On Motherboard Fire Island + 8086 464a ES1371, ES1373 AudioPCI On Motherboard FJ440ZX + 8086 4d4f ES1371, ES1373 AudioPCI On Motherboard Montreal + 8086 4f43 ES1371, ES1373 AudioPCI On Motherboard OC440LX + 8086 5243 ES1371, ES1373 AudioPCI On Motherboard RC440BX + 8086 5352 ES1371, ES1373 AudioPCI On Motherboard SunRiver + 8086 5643 ES1371, ES1373 AudioPCI On Motherboard Vancouver + 8086 5753 ES1371, ES1373 AudioPCI On Motherboard WS440BX + 5000 ES1370 [AudioPCI] + 5880 5880B / Creative Labs CT5880 + 1274 2000 Creative CT4810 [Sound Blaster AudioPCI 128] + 1274 2003 Creative SoundBlaster AudioPCI 128 + 1274 5880 Creative CT4750 [Sound Blaster PCI 128] + 1274 8001 Sound Blaster 16PCI 4.1ch + 1458 a000 5880 AudioPCI On Motherboard 6OXET + 1462 6880 5880 AudioPCI On Motherboard MS-6188 1.00 + 270f 2001 5880 AudioPCI On Motherboard 6CTR + 270f 2200 5880 AudioPCI On Motherboard 6WTX + 270f 7040 5880 AudioPCI On Motherboard 6ATA4 + 8001 CT5880 [AudioPCI] + 8002 5880A [AudioPCI] +1275 Network Appliance Corporation +1276 Switched Network Technologies, Inc. +1277 Comstream +1278 Transtech Parallel Systems Ltd. + 0701 TPE3/TM3 PowerPC Node + 0710 TPE5 PowerPC PCI board + 1100 PMC-FPGA02 + 1101 TS-C43 card with 4 ADSP-TS101 processors +1279 Transmeta Corporation + 0060 TM8000 Northbridge + 0061 TM8000 AGP bridge + 0295 Northbridge + 0395 LongRun Northbridge + 0396 SDRAM controller + 0397 BIOS scratchpad +127a Rockwell International + 1002 HCF 56k Data/Fax Modem + 1092 094c SupraExpress 56i PRO [Diamond SUP2380] + 122d 4002 HPG / MDP3858-U + 122d 4005 MDP3858-E + 122d 4007 MDP3858-A/-NZ + 122d 4012 MDP3858-SA + 122d 4017 MDP3858-W + 122d 4018 MDP3858-W + 127a 1002 Rockwell 56K D/F HCF Modem + 1003 HCF 56k Data/Fax Modem + 0e11 b0bc 229-DF Zephyr + 0e11 b114 229-DF Cheetah + 1033 802b 229-DF + 13df 1003 PCI56RX Modem + 13e0 0117 IBM + 13e0 0147 IBM F-1156IV+/R3 Spain V.90 Modem + 13e0 0197 IBM + 13e0 01c7 IBM F-1156IV+/R3 WW V.90 Modem + 13e0 01f7 IBM + 1436 1003 IBM + 1436 1103 IBM 5614PM3G V.90 Modem + 1436 1602 Compaq 229-DF Ducati + 1004 HCF 56k Data/Fax/Voice Modem + 1048 1500 MicroLink 56k Modem + 10cf 1059 Fujitsu 229-DFRT + 1005 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 1005 127a AOpen FM56-P + 1033 8029 229-DFSV + 1033 8054 Modem + 10cf 103c Fujitsu + 10cf 1055 Fujitsu 229-DFSV + 10cf 1056 Fujitsu 229-DFSV + 122d 4003 MDP3858SP-U + 122d 4006 Packard Bell MDP3858V-E + 122d 4008 MDP3858SP-A/SP-NZ + 122d 4009 MDP3858SP-E + 122d 4010 MDP3858V-U + 122d 4011 MDP3858SP-SA + 122d 4013 MDP3858V-A/V-NZ + 122d 4015 MDP3858SP-W + 122d 4016 MDP3858V-W + 122d 4019 MDP3858V-SA + 13df 1005 PCI56RVP Modem + 13e0 0187 IBM + 13e0 01a7 IBM + 13e0 01b7 IBM DF-1156IV+/R3 Spain V.90 Modem + 13e0 01d7 IBM DF-1156IV+/R3 WW V.90 Modem + 1436 1005 IBM + 1436 1105 IBM + 1437 1105 IBM 5614PS3G V.90 Modem + 1022 HCF 56k Modem + 1436 1303 M3-5614PM3G V.90 Modem + 1023 HCF 56k Data/Fax Modem + 122d 4020 Packard Bell MDP3858-WE + 122d 4023 MDP3858-UE + 13e0 0247 IBM F-1156IV+/R6 Spain V.90 Modem + 13e0 0297 IBM + 13e0 02c7 IBM F-1156IV+/R6 WW V.90 Modem + 1436 1203 IBM + 1436 1303 IBM + 1024 HCF 56k Data/Fax/Voice Modem + 1025 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 10cf 106a Fujitsu 235-DFSV + 122d 4021 Packard Bell MDP3858V-WE + 122d 4022 MDP3858SP-WE + 122d 4024 MDP3858V-UE + 122d 4025 MDP3858SP-UE + 1026 HCF 56k PCI Speakerphone Modem + 1032 HCF 56k Modem + 1033 HCF 56k Modem + 1034 HCF 56k Modem + 1035 HCF 56k PCI Speakerphone Modem + 1036 HCF 56k Modem + 1085 HCF 56k Volcano PCI Modem + 2004 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 2005 HCF 56k Data/Fax Modem + 104d 8044 229-DFSV + 104d 8045 229-DFSV + 104d 8055 PBE/Aztech 235W-DFSV + 104d 8056 235-DFSV + 104d 805a Modem + 104d 805f Modem + 104d 8074 Modem + 2013 HSF 56k Data/Fax Modem + 1179 0001 Modem + 1179 ff00 Modem + 2014 HSF 56k Data/Fax/Voice Modem + 10cf 1057 Fujitsu Citicorp III + 122d 4050 MSP3880-U + 122d 4055 MSP3880-W + 2015 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 10cf 1063 Fujitsu + 10cf 1064 Fujitsu + 1468 2015 Fujitsu + 2016 HSF 56k Data/Fax/Voice/Spkp Modem + 122d 4051 MSP3880V-W + 122d 4052 MSP3880SP-W + 122d 4054 MSP3880V-U + 122d 4056 MSP3880SP-U + 122d 4057 MSP3880SP-A + 4311 Riptide HSF 56k PCI Modem + 127a 4311 Ring Modular? Riptide HSF RT HP Dom + 13e0 0210 HP-GVC + 4320 Riptide PCI Audio Controller + 1235 4320 Riptide PCI Audio Controller + 4321 Riptide HCF 56k PCI Modem + 1235 4321 Hewlett Packard DF + 1235 4324 Hewlett Packard DF + 13e0 0210 Hewlett Packard DF + 144d 2321 Riptide + 4322 Riptide PCI Game Controller + 1235 4322 Riptide PCI Game Controller + 8234 RapidFire 616X ATM155 Adapter + 108d 0022 RapidFire 616X ATM155 Adapter + 108d 0027 RapidFire 616X ATM155 Adapter +127b Pixera Corporation +127c Crosspoint Solutions, Inc. +127d Vela Research +127e Winnov, L.P. + 0010 Videum 1000 Plus +127f Fujifilm +1280 Photoscript Group Ltd. +1281 Yokogawa Electric Corporation +1282 Davicom Semiconductor, Inc. + 6585 DM562P V90 Modem + 9009 DM9009 Ethernet Controller + 9100 21x4x DEC-Tulip compatible 10/100 Ethernet + 9102 DM9102 Fast Ethernet Controller +# Subsystem ID is main ID reveresed. + 0291 8212 DM9102A (DM9102AE, SM9102AF) Ethernet 100/10 MBit + 9132 Ethernet 100/10 MBit +1283 Integrated Technology Express, Inc. + 673a IT8330G + 8152 IT8152F/G Advanced RISC-to-PCI Companion Chip + 8211 ITE 8211F Single Channel UDMA 133 + 1043 8138 P5GD1-VW Mainboard + 8212 IT8212 Dual channel ATA RAID controller + 1283 0001 IT/ITE8212 Dual channel ATA RAID controller + 8213 IT8213 IDE Controller + 1458 b000 GA-EG45M-DS2H Mainboard + 8330 IT8330G + 8872 IT887xF PCI to ISA I/O chip with SMB, GPIO, Serial or Parallel Port + 8888 IT8888F/G PCI to ISA Bridge with SMB [Golden Gate] + 8889 IT8889F PCI to ISA Bridge + 8892 IT8892E PCIe to PCI Bridge + 8086 200d DH61CR motherboard + 8893 IT8893E PCIe to PCI Bridge + e886 IT8330G +1284 Sahara Networks, Inc. +1285 Platform Technologies, Inc. + 0100 AGOGO sound chip (aka ESS Maestro 1) +1286 Mazet GmbH +1287 M-Pact, Inc. + 001e LS220D DVD Decoder + 001f LS220C DVD Decoder +1288 Timestep Corporation +1289 AVC Technology, Inc. +128a Asante Technologies, Inc. +128b Transwitch Corporation +128c Retix Corporation +128d G2 Networks, Inc. + 0021 ATM155 Adapter +128e Hoontech Corporation/Samho Multi Tech Ltd. + 0008 ST128 WSS/SB + 0009 ST128 SAM9407 + 000a ST128 Game Port + 000b ST128 MPU Port + 000c ST128 Ctrl Port +128f Tateno Dennou, Inc. +1290 Sord Computer Corporation +1291 NCS Computer Italia +1292 Tritech Microelectronics Inc + fc02 Pyramid3D TR25202 +1293 Media Reality Technology +1294 Rhetorex, Inc. +1295 Imagenation Corporation + 0800 PXR800 + 1000 PXD1000 +1296 Kofax Image Products +1297 Holco Enterprise Co, Ltd/Shuttle Computer +1298 Spellcaster Telecommunications Inc. +1299 Knowledge Technology Lab. +129a VMetro, inc. + 0615 PBT-615 PCI-X Bus Analyzer + 1100 PMC-FPGA05 + 1106 XMC-FPGA05F, PCI interface + 1107 XMC-FPGA05F, PCIe interface + 1108 XMC-FPGA05D, PCI interface + 1109 XMC-FPGA05D, PCIe interface +129b Image Access +129c Jaycor +129d Compcore Multimedia, Inc. +129e Victor Company of Japan, Ltd. +129f OEC Medical Systems, Inc. +12a0 Allen-Bradley Company +12a1 Simpact Associates, Inc. +12a2 Newgen Systems Corporation +12a3 Lucent Technologies + 8105 T8105 H100 Digital Switch +12a4 NTT Electronics Corporation +12a5 Vision Dynamics Ltd. +12a6 Scalable Networks, Inc. +12a7 AMO GmbH +12a8 News Datacom +12a9 Xiotech Corporation +12aa SDL Communications, Inc. +12ab YUAN High-Tech Development Co., Ltd. + 0000 MPG160/Kuroutoshikou ITVC15-STVLP + 0002 AU8830 [Vortex2] Based Sound Card With A3D Support + 0003 T507 (DVB-T) TV tuner/capture device + 2300 Club-3D Zap TV2100 + 3000 MPG-200C PCI DVD Decoder Card + 4789 MPC788 MiniPCI Hybrid TV Tuner + fff3 MPG600/Kuroutoshikou ITVC16-STVLP + ffff MPG600/Kuroutoshikou ITVC16-STVLP +12ac Measurex Corporation +12ad Multidata GmbH +12ae Alteon Networks Inc. + 0001 AceNIC Gigabit Ethernet + 1014 0104 Gigabit Ethernet-SX PCI Adapter + 12ae 0001 Gigabit Ethernet-SX (Universal) + 0002 AceNIC Gigabit Ethernet (Copper) + 10a9 8002 Acenic Gigabit Ethernet + 12ae 0002 Gigabit Ethernet-T (3C986-T) + 00fa Farallon PN9100-T Gigabit Ethernet +12af TDK USA Corp +12b0 Jorge Scientific Corp +12b1 GammaLink +12b2 General Signal Networks +12b3 Inter-Face Co Ltd +12b4 FutureTel Inc +12b5 Granite Systems Inc. +12b6 Natural Microsystems +12b7 Cognex Corporation +12b8 Korg +# Nee US Robotics +12b9 3Com Corp, Modem Division + 1006 WinModem + 12b9 005c USR 56k Internal Voice WinModem (Model 3472) + 12b9 005e USR 56k Internal WinModem (Models 662975) + 12b9 0062 USR 56k Internal Voice WinModem (Model 662978) + 12b9 0068 USR 56k Internal Voice WinModem (Model 5690) + 12b9 007a USR 56k Internal Voice WinModem (Model 662974) + 12b9 007f USR 56k Internal WinModem (Models 5698, 5699) + 12b9 0080 USR 56k Internal WinModem (Models 2975, 3528) + 12b9 0081 USR 56k Internal Voice WinModem (Models 2974, 3529) + 12b9 0091 USR 56k Internal Voice WinModem (Model 2978) + 1007 USR 56k Internal WinModem + 12b9 00a3 USR 56k Internal WinModem (Model 3595) + 12b9 00c4 U.S. Robotics V.92 Voice Faxmodem (2884A/B/C) + 1008 56K FaxModem Model 5610 + 12b9 00a2 USR 56k Internal FAX Modem (Model 2977) + 12b9 00aa USR 56k Internal Voice Modem (Model 2976) + 12b9 00ab USR 56k Internal Voice Modem (Model 5609) + 12b9 00ac USR 56k Internal Voice Modem (Model 3298) + 12b9 00ad USR 56k Internal FAX Modem (Model 5610) + 12b9 00d3 USR 56K Internal V92 FAX Modem (Model 5610) + 12b9 baba USR 56K Internal Voice Modem 3CP3298-DEL (Model 5601) [Hawk] +12ba BittWare, Inc. +12bb Nippon Unisoft Corporation +12bc Array Microsystems +12bd Computerm Corp. +12be Anchor Chips Inc. + 3041 AN3041Q CO-MEM + 3042 AN3042Q CO-MEM Lite + 12be 3042 Anchor Chips Lite Evaluation Board +12bf Fujifilm Microdevices +12c0 Infimed +12c1 GMM Research Corp +12c2 Mentec Limited +12c3 Holtek Microelectronics Inc + 0058 PCI NE2K Ethernet + 5598 PCI NE2K Ethernet +12c4 Connect Tech Inc + 0001 Blue HEAT/PCI 8 (RS232/CL/RJ11) + 0002 Blue HEAT/PCI 4 (RS232) + 0003 Blue HEAT/PCI 2 (RS232) + 0004 Blue HEAT/PCI 8 (UNIV, RS485) + 0005 Blue HEAT/PCI 4+4/6+2 (UNIV, RS232/485) + 0006 Blue HEAT/PCI 4 (OPTO, RS485) + 0007 Blue HEAT/PCI 2+2 (RS232/485) + 0008 Blue HEAT/PCI 2 (OPTO, Tx, RS485) + 0009 Blue HEAT/PCI 2+6 (RS232/485) + 000a Blue HEAT/PCI 8 (Tx, RS485) + 000b Blue HEAT/PCI 4 (Tx, RS485) + 000c Blue HEAT/PCI 2 (20 MHz, RS485) + 000d Blue HEAT/PCI 2 PTM + 0100 NT960/PCI + 0201 cPCI Titan - 2 Port + 0202 cPCI Titan - 4 Port + 0300 CTI PCI UART 2 (RS232) + 0301 CTI PCI UART 4 (RS232) + 0302 CTI PCI UART 8 (RS232) + 0310 CTI PCI UART 1+1 (RS232/485) + 0311 CTI PCI UART 2+2 (RS232/485) + 0312 CTI PCI UART 4+4 (RS232/485) + 0320 CTI PCI UART 2 + 0321 CTI PCI UART 4 + 0322 CTI PCI UART 8 + 0330 CTI PCI UART 2 (RS485) + 0331 CTI PCI UART 4 (RS485) + 0332 CTI PCI UART 8 (RS485) +12c5 Picture Elements Incorporated + 007e Imaging/Scanning Subsystem Engine + 007f Imaging/Scanning Subsystem Engine + 0081 PCIVST [Grayscale Thresholding Engine] + 0085 Video Simulator/Sender + 0086 THR2 Multi-scale Thresholder +12c6 Mitani Corporation +12c7 Dialogic Corp +# 12 Line, 6 port, CT-BUS/SC-BUS, loopstart FXO adaptor. + 0546 Springware D/120JCT-LS +# 24 Channel, 1 Port, CT-BUS/SC-BUS, T1/PRI adaptor. + 0647 Springware D/240JCT-T1 +# 4 Line, 4 port, CT-BUS/SC-BUS, loopstart FXO adaptor. Revision 01 + 0676 Springware D/41JCT-LS +# 48 Channel, 2 Port, CT-BUS/SC-BUS, T1/PRI adaptor. + 0685 Springware D/480JCT-2T1 +12c8 G Force Co, Ltd +12c9 Gigi Operations +12ca Integrated Computing Engines +12cb Antex Electronics Corporation + 0027 SC4 (StudioCard) + 002e StudioCard 2000 +12cc Pluto Technologies International +12cd Aims Lab +12ce Netspeed Inc. +12cf Prophet Systems, Inc. +12d0 GDE Systems, Inc. +12d1 PSITech +12d2 NVidia / SGS Thomson (Joint Venture) + 0008 NV1 + 0009 DAC64 + 0018 Riva128 + 1048 0c10 VICTORY Erazor + 107b 8030 STB Velocity 128 + 1092 0350 Viper V330 + 1092 1092 Viper V330 + 10b4 1b1b STB Velocity 128 + 10b4 1b1d STB Velocity 128 + 10b4 1b1e STB Velocity 128, PAL TV-Out + 10b4 1b20 STB Velocity 128 Sapphire + 10b4 1b21 STB Velocity 128 + 10b4 1b22 STB Velocity 128 AGP, NTSC TV-Out + 10b4 1b23 STB Velocity 128 AGP, PAL TV-Out + 10b4 1b27 STB Velocity 128 DVD + 10b4 1b88 MVP Pro 128 + 10b4 222a STB Velocity 128 AGP + 10b4 2230 STB Velocity 128 + 10b4 2232 STB Velocity 128 + 10b4 2235 STB Velocity 128 AGP + 2a15 54a3 3DVision-SAGP / 3DexPlorer 3000 + 0019 Riva128ZX + 0020 TNT + 0028 TNT2 + 0029 UTNT2 + 002c VTNT2 + 00a0 ITNT2 +12d3 Vingmed Sound A/S +12d4 Ulticom (Formerly DGM&S) + 0200 T1 Card +12d5 Equator Technologies Inc + 0003 BSP16 + 1000 BSP15 +12d6 Analogic Corp +12d7 Biotronic SRL +# acquired by Diodes Inc. +12d8 Pericom Semiconductor + 01a7 7C21P100 2-port PCI-X to PCI-X Bridge +# 3Port-3Lane PCI Express Switch GreenPacket Family + 0303 PCI Express Switch 3-3 +# PI7C9X20508GP 5Port-8Lane PCI Express Switch GreenPacket Family + 0508 PI7C9X20508GP PCI Express Switch 5Port-8Lane + 2304 PI7C9X2G304 EL/SL PCIe2 3-Port/4-Lane Packet Switch + 2308 PI7C9X2G308GP 8-lane PCI Express 2.0 Switch with 3 PCI Express ports + 2404 PI7C9X2G404 EL/SL PCIe2 4-Port/4-Lane Packet Switch + 2608 PI7C9X2G608GP PCIe2 6-Port/8-Lane Packet Switch + ea50 cc10 RXi2-BP + 400a PI7C9X442SL PCI Express Bridge Port + 400e PI7C9X442SL USB OHCI Controller + 400f PI7C9X442SL USB EHCI Controller + 71e2 PI7C7300A/PI7C7300D PCI-to-PCI Bridge + 71e3 PI7C7300A/PI7C7300D PCI-to-PCI Bridge (Secondary Bus 2) + 8140 PI7C8140A PCI-to-PCI Bridge + 8148 PI7C8148A/PI7C8148B PCI-to-PCI Bridge + 8150 PCI to PCI Bridge + 8152 PI7C8152A/PI7C8152B/PI7C8152BI PCI-to-PCI Bridge + 8154 PI7C8154A/PI7C8154B/PI7C8154BI PCI-to-PCI Bridge + 8619 PI7C9X2G1616PR PCIe2 16-Port/16-Lane Packet Switch + e110 PI7C9X110 PCI Express to PCI bridge + 1775 11cc CC11/CL11 CompactPCI Bridge + e111 PI7C9X111SL PCIe-to-PCI Reversible Bridge + e130 PCI Express to PCI-XPI7C9X130 PCI-X Bridge +12d9 Aculab PLC + 0002 PCI Prosody + 0004 cPCI Prosody + 0005 Aculab E1/T1 PCI card + 1078 Prosody X class e1000 device + 12d9 000d Prosody X PCI + 12d9 000e Prosody X cPCI +12da True Time Inc. +12db Annapolis Micro Systems, Inc +12dc Symicron Computer Communication Ltd. +12dd Management Graphics +12de Rainbow Technologies + 0200 CryptoSwift CS200 +12df SBS Technologies Inc +12e0 Chase Research + 0010 ST16C654 Quad UART + 0020 ST16C654 Quad UART + 0030 ST16C654 Quad UART +12e1 Nintendo Co, Ltd +12e2 Datum Inc. Bancomm-Timing Division +12e3 Imation Corp - Medical Imaging Systems +12e4 Brooktrout Technology Inc +12e5 Apex Semiconductor Inc +12e6 Cirel Systems +12e7 Sunsgroup Corporation +12e8 Crisc Corp +12e9 GE Spacenet +12ea Zuken +12eb Aureal Semiconductor + 0001 Vortex 1 + 0000 0300 Terasound A3D PCI + 104d 8036 AU8820 Vortex Digital Audio Processor + 1092 2000 Sonic Impact A3D + 1092 2100 Sonic Impact A3D + 1092 2110 Sonic Impact A3D + 1092 2200 Sonic Impact A3D + 122d 1002 SC 338-A3D + 12eb 0001 AU8820 Vortex Digital Audio Processor + 5053 3355 Montego + 50b2 1111 XLerate + 0002 Vortex 2 + 104d 8049 AU8830 Vortex 3D Digital Audio Processor + 104d 807b AU8830 Vortex 3D Digital Audio Processor + 1092 3000 Monster Sound II + 1092 3001 Monster Sound II + 1092 3002 Monster Sound II + 1092 3003 Monster Sound II + 1092 3004 Monster Sound II + 12eb 0002 AU8830 Vortex 3D Digital Audio Processor + 12eb 0088 AU8830 Vortex 3D Digital Audio Processor + 144d 3510 AU8830 Vortex 3D Digital Audio Processor + 5053 3356 Montego II + 0003 AU8810 Vortex Digital Audio Processor + 104d 8049 AU8810 Vortex Digital Audio Processor + 104d 8077 AU8810 Vortex Digital Audio Processor + 109f 1000 AU8810 Vortex Digital Audio Processor + 12eb 0003 AU8810 Vortex Digital Audio Processor + 1462 6780 AU8810 Vortex Digital Audio Processor + 14a4 2073 AU8810 Vortex Digital Audio Processor + 14a4 2091 AU8810 Vortex Digital Audio Processor + 14a4 2104 AU8810 Vortex Digital Audio Processor + 14a4 2106 AU8810 Vortex Digital Audio Processor + 8803 Vortex 56k Software Modem + 12eb 8803 Vortex 56k Software Modem +12ec 3A International, Inc. +12ed Optivision Inc. +12ee Orange Micro +12ef Vienna Systems +12f0 Pentek +12f1 Sorenson Vision Inc +12f2 Gammagraphx, Inc. +12f3 Radstone Technology +12f4 Megatel +12f5 Forks +12f6 Dawson France +12f7 Cognex +12f8 Electronic Design GmbH + 0002 VideoMaker +12f9 Four Fold Ltd +12fb Spectrum Signal Processing + 0001 PMC-MAI + 00f5 F5 Dakar + 02ad PMC-2MAI + 2adc ePMC-2ADC + 3100 PRO-3100 + 3500 PRO-3500 + 4d4f Modena + 8120 ePMC-8120 + da62 Daytona C6201 PCI (Hurricane) + db62 Ingliston XBIF + dc62 Ingliston PLX9054 + dd62 Ingliston JTAG/ISP + eddc ePMC-MSDDC + fa01 ePMC-FPGA +12fc Capital Equipment Corp +12fd I2S +12fe ESD Electronic System Design GmbH +12ff Lexicon +1300 Harman International Industries Inc +1302 Computer Sciences Corp +1303 Innovative Integration + 0030 X3-SDF 4-channel XMC acquisition board +1304 Juniper Networks +1305 Netphone, Inc +1306 Duet Technologies +# Nee ComputerBoards +1307 Measurement Computing + 0001 PCI-DAS1602/16 + 000b PCI-DIO48H + 000c PCI-PDISO8 + 000d PCI-PDISO16 + 000f PCI-DAS1200 + 0010 PCI-DAS1602/12 + 0014 PCI-DIO24H + 0015 PCI-DIO24H/CTR3 + 0016 PCI-DIO48H/CTR15 + 0017 PCI-DIO96H + 0018 PCI-CTR05 + 0019 PCI-DAS1200/JR + 001a PCI-DAS1001 + 001b PCI-DAS1002 + 001c PCI-DAS1602JR/16 + 001d PCI-DAS6402/16 + 001e PCI-DAS6402/12 + 001f PCI-DAS16/M1 + 0020 PCI-DDA02/12 + 0021 PCI-DDA04/12 + 0022 PCI-DDA08/12 + 0023 PCI-DDA02/16 + 0024 PCI-DDA04/16 + 0025 PCI-DDA08/16 + 0026 PCI-DAC04/12-HS + 0027 PCI-DAC04/16-HS + 0028 PCI-DIO24 + 0029 PCI-DAS08 + 002c PCI-INT32 + 0033 PCI-DUAL-AC5 + 0034 PCI-DAS-TC + 0035 PCI-DAS64/M1/16 + 0036 PCI-DAS64/M2/16 + 0037 PCI-DAS64/M3/16 + 004c PCI-DAS1000 + 004d PCI-QUAD04 + 0052 PCI-DAS4020/12 + 0053 PCIM-DDA06/16 + 0054 PCI-DIO96 + 005d PCI-DAS6023 + 005e PCI-DAS6025 + 005f PCI-DAS6030 + 0060 PCI-DAS6031 + 0061 PCI-DAS6032 + 0062 PCI-DAS6033 + 0063 PCI-DAS6034 + 0064 PCI-DAS6035 + 0065 PCI-DAS6040 + 0066 PCI-DAS6052 + 0067 PCI-DAS6070 + 0068 PCI-DAS6071 + 006f PCI-DAS6036 + 0070 PCI-DAC6702 + 0078 PCI-DAS6013 + 0079 PCI-DAS6014 + 0115 PCIe-DAS1602/16 +1308 Jato Technologies Inc. + 0001 NetCelerator Adapter + 1308 0001 NetCelerator Adapter +1309 AB Semiconductor Ltd +130a Mitsubishi Electric Microcomputer +130b Colorgraphic Communications Corp +130c Ambex Technologies, Inc +130d Accelerix Inc +130e Yamatake-Honeywell Co. Ltd +130f Advanet Inc +1310 Gespac +1311 Videoserver, Inc +1312 Acuity Imaging, Inc +1313 Yaskawa Electric Co. +1315 Wavesat +1316 Teradyne Inc +1317 ADMtek + 0981 21x4x DEC-Tulip compatible 10/100 Ethernet + 0985 NC100 Network Everywhere Fast Ethernet 10/100 + 1734 100c Scenic N300 ADMtek AN983 10/100 Mbps PCI Adapter + 1985 21x4x DEC-Tulip compatible 10/100 Ethernet + 1385 511a FA511 + 1395 2103 CB100-EZ (4-LED version) + 2850 HSP MicroModem 56 + 5120 ADM5120 OpenGate System-on-Chip + 8201 ADM8211 802.11b Wireless Interface + 10b8 2635 SMC2635W v1 802.11b Wireless Cardbus Adapter + 1317 8201 SMC2635W v2 802.11b Wireless Cardbus Adapter + 8211 ADM8211 802.11b Wireless Interface + 9511 21x4x DEC-Tulip compatible 10/100 Ethernet +1318 Packet Engines Inc. + 0911 GNIC-II PCI Gigabit Ethernet [Hamachi] +1319 Fortemedia, Inc + 0801 Xwave QS3000A [FM801] + 1319 1319 FM801 PCI Audio + 0802 Xwave QS3000A [FM801 game port] + 1319 1319 FM801 PCI Joystick + 1000 FM801 PCI Audio + 1001 FM801 PCI Joystick +131a Finisar Corp. +131c Nippon Electro-Sensory Devices Corp +131d Sysmic, Inc. +131e Xinex Networks Inc +131f Siig Inc + 1000 CyberSerial (1-port) 16550 + 1001 CyberSerial (1-port) 16650 + 1002 CyberSerial (1-port) 16850 + 1010 Duet 1S(16550)+1P + 1011 Duet 1S(16650)+1P + 1012 Duet 1S(16850)+1P + 1020 CyberParallel (1-port) + 1021 CyberParallel (2-port) + 1030 CyberSerial (2-port) 16550 + 1031 CyberSerial (2-port) 16650 + 1032 CyberSerial (2-port) 16850 + 1034 Trio 2S(16550)+1P + 1035 Trio 2S(16650)+1P + 1036 Trio 2S(16850)+1P + 1050 CyberSerial (4-port) 16550 + 1051 CyberSerial (4-port) 16650 + 1052 CyberSerial (4-port) 16850 + 2000 CyberSerial (1-port) 16550 + 2001 CyberSerial (1-port) 16650 + 2002 CyberSerial (1-port) 16850 + 2010 Duet 1S(16550)+1P + 2011 Duet 1S(16650)+1P + 2012 Duet 1S(16850)+1P + 2020 CyberParallel (1-port) + 2021 CyberParallel (2-port) + 2030 CyberSerial (2-port) 16550 + 131f 2030 PCI Serial Card + 2031 CyberSerial (2-port) 16650 + 2032 CyberSerial (2-port) 16850 + 2040 Trio 1S(16550)+2P + 2041 Trio 1S(16650)+2P + 2042 Trio 1S(16850)+2P + 2050 CyberSerial (4-port) 16550 + 2051 CyberSerial (4-port) 16650 + 2052 CyberSerial (4-port) 16850 + 2060 Trio 2S(16550)+1P + 2061 Trio 2S(16650)+1P + 2062 Trio 2S(16850)+1P + 2081 CyberSerial (8-port) ST16654 +1320 Crypto AG +1321 Arcobel Graphics BV +1322 MTT Co., Ltd +1323 Dome Inc +1324 Sphere Communications +1325 Salix Technologies, Inc +1326 Seachange international +1327 Voss scientific +1328 quadrant international +1329 Productivity Enhancement +132a Microcom Inc. +132b Broadband Technologies +132c Micrel Inc +132d Integrated Silicon Solution, Inc. +1330 MMC Networks +1331 RadiSys Corporation + 0030 ENP-2611 + 8200 82600 Host Bridge + 8201 82600 IDE + 8202 82600 USB + 8210 82600 PCI Bridge +1332 Micro Memory + 5415 MM-5415CN PCI Memory Module with Battery Backup + 5425 MM-5425CN PCI 64/66 Memory Module with Battery Backup + 6140 MM-6140D +1334 Redcreek Communications, Inc +1335 Videomail, Inc +1337 Third Planet Publishing +1338 BT Electronics +133a Vtel Corp +133b Softcom Microsystems +133c Holontech Corp +133d SS Technologies +133e Virtual Computer Corp +133f SCM Microsystems +1340 Atalla Corp +1341 Kyoto Microcomputer Co +1342 Promax Systems Inc +1343 Phylon Communications Inc +# nee Crucial Technology +1344 Micron Technology Inc + 5150 RealSSD P320h + 5151 RealSSD P320m + 5152 RealSSD P320s + 5153 RealSSD P325m + 5160 RealSSD P420h + 5161 RealSSD P420m + 5163 RealSSD P425m + 5180 9100 PRO NVMe SSD + 5181 9100 MAX NVMe SSD + 5190 9200 ECO NVMe SSD + 5191 9200 PRO NVMe SSD + 5192 9200 MAX NVMe SSD + 51a2 9300 PRO NVMe SSD + 51a3 9300 MAX NVMe SSD +1345 Arescom Inc +1347 Odetics +1349 Sumitomo Electric Industries, Ltd. +134a DTC Technology Corp. + 0001 Domex 536 + 0002 Domex DMX3194UP SCSI Adapter +134b ARK Research Corp. +134c Chori Joho System Co. Ltd +134d PCTel Inc + 2189 HSP56 MicroModem + 2486 2304WT V.92 MDC Modem + 7890 HSP MicroModem 56 + 134d 0001 PCT789 adapter + 7891 HSP MicroModem 56 + 134d 0001 HSP MicroModem 56 + 7892 HSP MicroModem 56 + 7893 HSP MicroModem 56 + 7894 HSP MicroModem 56 + 7895 HSP MicroModem 56 + 7896 HSP MicroModem 56 + 7897 HSP MicroModem 56 +134e CSTI +134f Algo System Co Ltd +1350 Systec Co. Ltd +1351 Sonix Inc +# nee Vierling Communication SAS, nee Thales Idatys +1353 dbeeSet Technology + 0002 Proserver + 0003 PCI-FUT + 0004 PCI-S0 + 0005 PCI-FUT-S0 + 0006 OTDU-1U (FPGA Zynq-7000) + 0007 OTDU-EX +1354 Dwave System Inc +1355 Kratos Analytical Ltd +1356 The Logical Co +1359 Prisa Networks +135a Brain Boxes + 0a61 UC-324 [VELOCITY RS422/485] +135b Giganet Inc +135c Quatech Inc + 0010 QSC-100 + 0020 DSC-100 + 0030 DSC-200/300 + 0040 QSC-200/300 + 0050 ESC-100D + 0060 ESC-100M + 00f0 MPAC-100 Synchronous Serial Card (Zilog 85230) + 0170 QSCLP-100 + 0180 DSCLP-100 + 0190 SSCLP-100 + 01a0 QSCLP-200/300 + 01b0 DSCLP-200/300 + 01c0 SSCLP-200/300 + 0258 DSPSX-200/300 +135d ABB Network Partner AB +135e Sealevel Systems Inc + 5101 Route 56.PCI - Multi-Protocol Serial Interface (Zilog Z16C32) + 7101 Single Port RS-232/422/485/530 + 7201 Dual Port RS-232/422/485 Interface + 7202 Dual Port RS-232 Interface + 7401 Four Port RS-232 Interface + 7402 Four Port RS-422/485 Interface + 7801 Eight Port RS-232 Interface + 7804 Eight Port RS-232/422/485 Interface + 8001 8001 Digital I/O Adapter +135f I-Data International A-S +1360 Meinberg Funkuhren + 0101 PCI32 DCF77 Radio Clock + 0102 PCI509 DCF77 Radio Clock + 0103 PCI510 DCF77 Radio Clock + 0104 PCI511 DCF77 Radio Clock + 0105 PEX511 DCF77 Radio Clock (PCI Express) + 0106 PZF180PEX High Precision DCF77 Radio Clock (PCI Express) + 0201 GPS167PCI GPS Receiver + 0202 GPS168PCI GPS Receiver + 0203 GPS169PCI GPS Receiver + 0204 GPS170PCI GPS Receiver + 0205 GPS170PEX GPS Receiver (PCI Express) + 0206 GPS180PEX GPS Receiver (PCI Express) + 0207 GLN180PEX GPS/GLONASS receiver (PCI Express) + 0208 GPS180AMC GPS Receiver (PCI Express / MicroTCA / AdvancedMC) + 0209 GNS181PEX GPS/Galileo/GLONASS/BEIDOU receiver (PCI Express) + 0301 TCR510PCI IRIG Timecode Reader + 0302 TCR167PCI IRIG Timecode Reader + 0303 TCR511PCI IRIG Timecode Reader + 0304 TCR511PEX IRIG Timecode Reader (PCI Express) + 0305 TCR170PEX IRIG Timecode Reader (PCI Express) + 0306 TCR180PEX IRIG Timecode Reader (PCI Express) + 0501 PTP270PEX PTP/IEEE1588 slave card (PCI Express) + 0601 FRC511PEX Free Running Clock (PCI Express) +1361 Soliton Systems K.K. +1362 Fujifacom Corporation +1363 Phoenix Technology Ltd +1364 ATM Communications Inc +1365 Hypercope GmbH +1366 Teijin Seiki Co. Ltd +1367 Hitachi Zosen Corporation +1368 Skyware Corporation +1369 Digigram +136a High Soft Tech + 0004 HST Saphir VII mini PCI + 0007 HST Saphir III E MultiLink 4 + 0008 HST Saphir III E MultiLink 8 + 000a HST Saphir III E MultiLink 2 +136b Kawasaki Steel Corporation + ff01 KL5A72002 Motion JPEG +136c Adtek System Science Co Ltd +136d Gigalabs Inc +136f Applied Magic Inc +1370 ATL Products +1371 CNet Technology Inc + 434e GigaCard Network Adapter + 1371 434e N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L) +1373 Silicon Vision Inc +1374 Silicom Ltd. + 0024 Silicom Dual port Giga Ethernet BGE Bypass Server Adapter + 0025 Silicom Quad port Giga Ethernet BGE Bypass Server Adapter + 0026 Silicom Dual port Fiber Giga Ethernet 546 Bypass Server Adapter + 0027 Silicom Dual port Fiber LX Giga Ethernet 546 Bypass Server Adapter + 0029 Silicom Dual port Copper Giga Ethernet 546GB Bypass Server Adapter + 002a Silicom Dual port Fiber Giga Ethernet 546 TAP/Bypass Server Adapter + 002b Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter (PXE2TBI) + 002c Silicom Quad port Copper Giga Ethernet 546GB Bypass Server Adapter (PXG4BPI) + 002d Silicom Quad port Fiber-SX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI) + 002e Silicom Quad port Fiber-LX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI-LX) + 002f Silicom Dual port Fiber-SX Giga Ethernet 546GB Low profile Bypass Server Adapter (PXG2BPFIL) + 0030 Silicom Dual port Fiber-LX Giga Ethernet 546GB Low profile Bypass Server Adapter + 0031 Silicom Quad port Copper Giga Ethernet PCI-E Bypass Server Adapter + 0032 Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter + 0034 Silicom Dual port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter + 0035 Silicom Quad port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter + 0036 Silicom Dual port Fiber Giga Ethernet PCI-E BGE Bypass Server Adapter + 0037 Silicom Dual port Copper Ethernet PCI-E Intel based Bypass Server Adapter + 0038 Silicom Quad port Copper Ethernet PCI-E Intel based Bypass Server Adapter + 0039 Silicom Dual port Fiber-SX Ethernet PCI-E Intel based Bypass Server Adapter + 003a Silicom Dual port Fiber-LX Ethernet PCI-E Intel based Bypass Server Adapter + 003b Silicom Dual port Fiber Ethernet PMC Intel based Bypass Server Adapter (PMCX2BPFI) + 003c Silicom Dual port Copper Ethernet PCI-X BGE based Bypass Server Adapter (PXG2BPRB) + 003d 2-port Copper GBE Bypass with Caviume 1010 PCI-X + 003e Silicom Dual port Fiber Giga Ethernet PCI-E 571 TAP/Bypass Server Adapter (PEG2TBFI) + 003f Silicom Dual port Copper Giga Ethernet PCI-X 546 TAP/Bypass Server Adapter (PXG2TBI) + 0040 Silicom Quad port Fiber-SX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI) + 0042 4-port Copper GBE PMC-X Bypass + 0043 Silicom Quad port Fiber-SX Giga Ethernet 546 Bypass Server Adapter (PXG4BPFID) + 0045 Silicom 6 port Copper Giga Ethernet 546 Bypass Server Adapter (PXG6BPI) + 0046 4-port bypass PCI-E w disconnect low profile + 0047 Silicom Dual port Fiber-SX Giga Ethernet 571 Bypass Disconnect Server Adapter (PEG2BPFID) + 004a Silicom Quad port Fiber-LX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI-LX) + 004d Dual port Copper Giga Ethernet PCI-E Bypass Server Adapter + 0401 Gigabit Ethernet ExpressModule Bypass Server Adapter + 0420 Gigabit Ethernet ExpressModule Bypass Server Adapter + 0460 Gigabit Ethernet Express Module Bypass Server Adapter + 0461 Gigabit Ethernet ExpressModule Bypass Server Adapter + 0462 Gigabit Ethernet ExpressModule Bypass Server Adapter + 0470 Octal-port Copper Gigabit Ethernet Express Module Bypass Server Adapter + 0482 Dual-port Fiber (SR) 10 Gigabit Ethernet ExpressModule Bypass Server Adapter + 0483 Dual-port Fiber (LR) 10 Gigabit Ethernet ExpressModule Bypass Server Adapter +1375 Argosystems Inc +1376 LMC +1377 Electronic Equipment Production & Distribution GmbH +1378 Telemann Co. Ltd +1379 Asahi Kasei Microsystems Co Ltd +137a Mark of the Unicorn Inc + 0001 PCI-324 Audiowire Interface +137b PPT Vision +137c Iwatsu Electric Co Ltd +137d Dynachip Corporation +137e Patriot Scientific Corporation +137f Japan Satellite Systems Inc +1380 Sanritz Automation Co Ltd +1381 Brains Co. Ltd +1382 Marian - Electronic & Software + 0001 ARC88 audio recording card + 2008 Prodif 96 Pro sound system + 2048 Prodif Plus sound system + 2088 Marc 8 Midi sound system + 20c8 Marc A sound system + 4008 Marc 2 sound system + 4010 Marc 2 Pro sound system + 4048 Marc 4 MIDI sound system + 4088 Marc 4 Digi sound system + 4248 Marc X sound system + 4424 TRACE D4 Sound System +1383 Controlnet Inc +1384 Reality Simulation Systems Inc +1385 Netgear + 006b WA301 802.11b Wireless PCI Adapter + 4100 MA301 802.11b Wireless PCI Adapter + 4601 WAG511 802.11a/b/g Dual Band Wireless PC Card + 620a GA620 Gigabit Ethernet + 630a GA630 Gigabit Ethernet +1386 Video Domain Technologies +1387 Systran Corp +1388 Hitachi Information Technology Co Ltd +1389 Applicom International + 0001 PCI1500PFB [Intelligent fieldbus adaptor] +138a Fusion Micromedia Corp + 003d VFS491 Validity Sensor +138b Tokimec Inc +138c Silicon Reality +138d Future Techno Designs pte Ltd +138e Basler GmbH +138f Patapsco Designs Inc +1390 Concept Development Inc +1391 Development Concepts Inc +1392 Medialight Inc +1393 Moxa Technologies Co Ltd + 0001 UC7000 Serial + 1020 CP-102 (2-port RS-232 PCI) + 1021 CP-102UL (2-port RS-232 Universal PCI) + 1022 CP-102U (2-port RS-232 Universal PCI) + 1023 CP-102UF + 1024 CP-102E (2-port RS-232 Smart PCI Express Serial Board) + 1025 CP-102EL (2-port RS-232 Smart PCI Express Serial Board) + 1040 Smartio C104H/PCI + 1041 CP104U (4-port RS-232 Universal PCI) + 1042 CP104JU (4-port RS-232 Universal PCI) + 1043 CP104EL (4-port RS-232 Smart PCI Express) + 1044 POS104UL (4-port RS-232 Universal PCI) + 1045 CP-104EL-A (4-port RS-232 PCI Express Serial Board) + 1080 CB108 (8-port RS-232 PC/104-plus Module) + 1140 CT-114 series + 1141 Industrio CP-114 + 1142 CB114 (4-port RS-232/422/485 PC/104-plus Module) + 1143 CP-114UL (4-port RS-232/422/485 Smart Universal PCI Serial Board) + 1144 CP-114EL (4-port RS-232/422/485 Smart PCI Express Serial Board) + 1180 CP118U (8-port RS-232/422/485 Smart Universal PCI) + 1181 CP118EL (8-port RS-232/422/485 Smart PCI Express) + 1182 CP-118EL-A (8-port RS-232/422/485 PCI Express Serial Board) + 1320 CP132 (2-port RS-422/485 PCI) + 1321 CP132U (2-Port RS-422/485 Universal PCI) + 1322 CP-132EL (2-port RS-422/485 Smart PCI Express Serial Board) + 1340 CP134U (4-Port RS-422/485 Universal PCI) + 1341 CB134I (4-port RS-422/485 PC/104-plus Module) + 1380 CP138U (8-port RS-232/422/485 Smart Universal PCI) + 1680 Smartio C168H/PCI + 1681 CP-168U V2 Smart Serial Board (8-port RS-232) + 1682 CP-168EL (8-port RS-232 Smart PCI Express) + 1683 CP-168EL-A (8-port RS-232 PCI Express Serial Board) + 2040 Intellio CP-204J + 2180 Intellio C218 Turbo PCI + 3200 Intellio C320 Turbo PCI +1394 Level One Communications + 0001 LXT1001 Gigabit Ethernet + 1186 4800 DGE-500SX + 1394 0001 NetCelerator Adapter +1395 Ambicom Inc +1396 Cipher Systems Inc +1397 Cologne Chip Designs GmbH + 08b4 ISDN network Controller [HFC-4S] + 1397 08b4 HFC-4S [Cologne Chip HFC-4S Eval. Board] + 1397 b51a HFC-4S [Allo.com BRI card] + 1397 b520 HFC-4S [IOB4ST] + 1397 b540 HFC-4S [Swyx SX2 QuadBri] + 1397 b550 HFC-4S [Junghanns.NET quadBRI] + 1397 b556 HFC-4S [Junghanns.NET duoBRI] + 1397 b559 HFC-4S [Junghanns.NET duoBRI miniPCI] + 1397 b560 HFC-4S [BeroNet BN4S0] + 1397 b566 HFC-4S [BeroNet BN2S0] + 1397 b567 HFC-4S [BeroNet BN1S0 miniPCI] + 1397 b568 HFC-4S [BeroNet BN4S0 miniPCI] + 1397 b569 HFC-4S [BeroNet BN2S0 miniPCI] + 1397 b620 HFC-4S + 1397 b752 HFC-4S [Junghanns.NET quadBRI PCIe] + 1397 b761 HFC-4S [BeroNet BN2S0 PCIe] + 1397 b762 HFC-4S [BeroNet BN4S0 PCIe] + 1397 e884 HFC-4S [OpenVox B200P] + 1397 e888 HFC-4S [OpenVox B200P / B400P] + 16b8 ISDN network Controller [HFC-8S] + 1397 16b8 HFC-8S [Cologne Chip HFC-8S Eval. Board] + 1397 b521 HFC-8S [IOB4ST Recording] + 1397 b522 HFC-8S [IOB8ST] + 1397 b552 HFC-8S [Junghanns.NET octoBRI] + 1397 b55b HFC-8S [Junghanns.NET octoBRI] + 1397 b562 HFC-8S [BeroNet BN8S0] + 1397 b56b HFC-8S [BeroNet BN8S0+] + 1397 b622 HFC-8S + 1397 e998 HFC-8S [OpenVox B800P] + 2bd0 ISDN network controller [HFC-PCI] + 0675 1704 ISDN Adapter (PCI Bus, D, C) + 0675 1708 ISDN Adapter (PCI Bus, D, C, ACPI) + 1397 2bd0 ISDN Board + e4bf 1000 CI1-1-Harp + 30b1 ISDN network Controller [HFC-E1] + 1397 30b1 HFC-E1 [Cologne Chip HFC-E1 Eval. Board] + 1397 b523 HFC-E1 [IOB1E1] + 1397 b543 HFC-E1 [Swyx SX2 SinglePRI V2] + 1397 b544 HFC-E1 [Swyx SX2 DualPRI V2] + 1397 b553 HFC-E1 [Junghanns.NET singleE1] + 1397 b554 HFC-E1 [Junghanns.NET doubleE1] + 1397 b555 HFC-E1 [Junghanns.NET doubleE1 2.0] + 1397 b55a HFC-E1 [Junghanns.NET singleE1 miniPCI] + 1397 b563 HFC-E1 [beroNet BN1E1] + 1397 b564 HFC-E1 [beroNet BN2E1] + 1397 b565 HFC-E1 [beroNet BN2E1+] + 1397 b56a HFC-E1 [beroNet BN1E1 miniPCI] + b700 ISDN network controller PrimuX S0 [HFC-PCI] + f001 GSM Network Controller [HFC-4GSM] +1398 Clarion co. Ltd +1399 Rios systems Co Ltd +139a Alacritech Inc + 0001 Quad Port 10/100 Server Accelerator + 0003 Single Port 10/100 Server Accelerator + 0005 Single Port Gigabit Server Accelerator +139b Mediasonic Multimedia Systems Ltd +139c Quantum 3d Inc +139d EPL limited +139e Media4 +139f Aethra s.r.l. +13a0 Crystal Group Inc +13a1 Kawasaki Heavy Industries Ltd +13a2 Ositech Communications Inc +13a3 Hifn Inc. + 0005 7751 Security Processor + 0006 6500 Public Key Processor + 0007 7811 Security Processor + 0012 7951 Security Processor + 0014 78XX Security Processor + 0016 8065 Security Processor + 0017 8165 Security Processor + 0018 8154 Security Processor + 001d 7956 Security Processor + 001f 7855 Security Processor + 0020 7955 Security Processor + 0026 8155 Security Processor + 002e 9630 Compression Processor + 002f 9725 Compression and Security Processor + 13a3 1600 DR1600 Acceleration Card + 13a3 1605 DR1605 Acceleration Card + 13a3 1610 DR1610 Acceleration Card + 13a3 1615 DR1615 Acceleration Card + 13a3 1620 DR1620 Acceleration Card + 13a3 1625 DR1625 Acceleration Card + 0033 8201 Acceleration Processor + 13a3 0036 DX1710 Acceleration Card + 0034 8202 Acceleration Processor + 13a3 0036 DX1720 Acceleration Card + 0035 8203 Acceleration Processor + 13a3 0036 DX1730 Acceleration Card + 0037 8204 Acceleration Processor + 13a3 0036 DX1740 Acceleration Card + 9240 XR9240 Compression and Security Coprocessor [Panther II] + 13a3 9200 DX2040 Compression and Security Acceleration Card [Panther II] +13a4 Rascom Inc +13a5 Audio Digital Imaging Inc +13a6 Videonics Inc +13a7 Teles AG +13a8 Exar Corp. + 0152 XR17C/D152 Dual PCI UART + 0154 XR17C154 Quad UART + 0158 XR17C158 Octal UART + 0252 XR17V252 Dual UART PCI controller + 0254 XR17V254 Quad UART PCI controller + 0258 XR17V258 Octal UART PCI controller + 0352 XR17V3521 Dual PCIe UART +13a9 Siemens Medical Systems, Ultrasound Group +13aa Broadband Networks Inc +13ab Arcom Control Systems Ltd +13ac Motion Media Technology Ltd +13ad Nexus Inc +13ae ALD Technology Ltd +13af T.Sqware +13b0 Maxspeed Corp +13b1 Tamura corporation +13b2 Techno Chips Co. Ltd +13b3 Lanart Corporation +13b4 Wellbean Co Inc +13b5 ARM +13b6 Dlog GmbH +13b7 Logic Devices Inc +13b8 Nokia Telecommunications oy +13b9 Elecom Co Ltd +13ba Oxford Instruments +13bb Sanyo Technosound Co Ltd +13bc Bitran Corporation +13bd Sharp corporation +13be Miroku Jyoho Service Co. Ltd +13bf Sharewave Inc +13c0 Microgate Corporation + 0010 SyncLink Adapter v1 + 0020 SyncLink SCC Adapter + 0030 SyncLink Multiport Adapter + 0070 SyncLink GT Adapter + 0080 SyncLink GT4 Adapter + 00a0 SyncLink GT2 Adapter + 0210 SyncLink Adapter v2 +13c1 3ware Inc + 1000 5xxx/6xxx-series PATA-RAID + 1001 7xxx/8xxx-series PATA/SATA-RAID + 13c1 1001 7xxx/8xxx-series PATA/SATA-RAID + 1002 9xxx-series SATA-RAID + 1003 9550SX SATA-II RAID PCI-X + 1004 9650SE SATA-II RAID PCIe + 1005 9690SA SAS/SATA-II RAID PCIe + 1010 9750 SAS2/SATA-II RAID PCIe +13c2 Technotrend Systemtechnik GmbH + 000e Technotrend/Hauppauge DVB card rev2.3 + 1019 TTechnoTrend-budget DVB S2-3200 +13c3 Janz Computer AG +13c4 Phase Metrics +13c5 Alphi Technology Corp +13c6 Condor Engineering Inc + 0520 CEI-520 A429 Card + 0620 CEI-620 A429 Card + 0820 CEI-820 A429 Card + 0830 CEI-830 A429 Card + 1004 P-SER Multi-channel PMC to RS-485/422/232 adapter +13c7 Blue Chip Technology Ltd + 0adc PCI-ADC + 0b10 PCI-PIO + 0d10 PCI-DIO + 524c PCI-RLY + 5744 PCI-WDT +13c8 Apptech Inc +13c9 Eaton Corporation +13ca Iomega Corporation +13cb Yano Electric Co Ltd +13cc BARCO +13cd Compatible Systems Corporation +13ce Cocom A/S +13cf Studio Audio & Video Ltd +13d0 Techsan Electronics Co Ltd + 2103 B2C2 FlexCopII DVB chip / Technisat SkyStar2 DVB card + 2104 B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card (rev 01) + 2200 B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card +13d1 Abocom Systems Inc + ab02 ADMtek Centaur-C rev 17 [D-Link DFE-680TX] CardBus Fast Ethernet Adapter + ab03 21x4x DEC-Tulip compatible 10/100 Ethernet + ab06 RTL8139 [FE2000VX] CardBus Fast Ethernet Attached Port Adapter + ab08 21x4x DEC-Tulip compatible 10/100 Ethernet +13d2 Shark Multimedia Inc +13d4 Graphics Microsystems Inc +13d5 Media 100 Inc +13d6 K.I. Technology Co Ltd +13d7 Toshiba Engineering Corporation +13d8 Phobos corporation +13d9 Apex PC Solutions Inc +13da Intresource Systems pte Ltd +13db Janich & Klass Computertechnik GmbH +13dc Netboost Corporation +13dd Multimedia Bundle Inc +13de ABB Robotics Products AB +13df E-Tech Inc + 0001 PCI56RVP Modem + 13df 0001 PCI56RVP Modem +13e0 GVC Corporation +13e1 Silicom Multimedia Systems Inc +13e2 Dynamics Research Corporation +13e3 Nest Inc +13e4 Calculex Inc +13e5 Telesoft Design Ltd +13e6 Argosy research Inc +13e7 NAC Incorporated +13e8 Chip Express Corporation +13e9 Intraserver Technology Inc +13ea Dallas Semiconductor +13eb Hauppauge Computer Works Inc +13ec Zydacron Inc + 000a NPC-RC01 Remote control receiver +13ed Raytheion E-Systems +13ee Hayes Microcomputer Products Inc +13ef Coppercom Inc +13f0 Sundance Technology Inc / IC Plus Corp + 0200 IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY + 1043 8213 NX1001 + 0201 ST201 Sundance Ethernet + 1021 TC902x Gigabit Ethernet + 1023 IP1000 Family Gigabit Ethernet + 1043 8180 NX1101 +13f1 Oce' - Technologies B.V. +13f2 Ford Microelectronics Inc +13f3 Mcdata Corporation +13f4 Troika Networks, Inc. + 1401 Zentai Fibre Channel Adapter +13f5 Kansai Electric Co. Ltd +13f6 C-Media Electronics Inc + 0011 CMI8738 + 0100 CM8338A + 13f6 ffff CMI8338/C3DX PCI Audio Device + 0101 CM8338B + 13f6 0101 CMI8338-031 PCI Audio Device + 0111 CMI8738/CMI8768 PCI Audio + 1019 0970 P6STP-FL motherboard + 1043 8035 CUSI-FX motherboard + 1043 8077 CMI8738 6-channel audio controller + 1043 80e2 CMI8738 6ch-MX + 13f6 0111 CMI8738/C3DX PCI Audio Device + 13f6 9761 Theatron Agrippa + 153b 1144 Aureon 5.1 + 153b 1170 Aureon 7.1 + 1681 a000 Gamesurround MUSE XL + 17ab 0604 PSC604 Dynamic Edge + 17ab 0605 PSC605 Sonic Edge + 17ab 7777 PSC605 Sonic Edge + 270f 1103 CT-7NJS Ultra motherboard + 270f f462 7NJL1 motherboard + 584d 3731 Digital X-Mystique + 584d 3741 X-Plosion 7.1 + 584d 3751 X-Raider 7.1 + 584d 3761 X-Mystique 7.1 LP + 584d 3771 X-Mystique 7.1 LP Value + 7284 8384 Striker 7.1 + 0211 CM8738 + 5011 CM8888 [Oxygen Express] + 13f6 5011 HDA Controller + 8788 CMI8788 [Oxygen HD Audio] + 1043 8269 Virtuoso 200 (Xonar D2) + 1043 8275 Virtuoso 100 (Xonar DX) + 1043 82b7 Virtuoso 200 (Xonar D2X) + 1043 8314 Virtuoso 200 (Xonar HDAV1.3) + 1043 8327 Virtuoso 100 (Xonar DX) + 1043 834f Virtuoso 100 (Xonar D1) + 1043 835c Virtuoso 100 (Xonar Essence STX) + 1043 835d Virtuoso 100 (Xonar ST) + 1043 835e Virtuoso 200 (Xonar HDAV1.3 Slim) + 1043 838e Virtuoso 66 (Xonar DS) + 1043 8428 Virtuoso 100 (Xonar Xense) + 1043 8467 CMI8786 (Xonar DG) + 1043 8521 CMI8786 (Xonar DGX) + 1043 8522 Xonar DSX + 1043 85f4 Virtuoso 100 (Xonar Essence STX II) + 13f6 8782 PCI 2.0 HD Audio + 13f6 ffff CMI8787-HG2PCI + 14c3 1710 HiFier Fantasia + 14c3 1711 HiFier Serenade + 14c3 1713 HiFier Serenade III + 1a58 0910 Barracuda AC-1 + 415a 5431 X-Meridian 7.1 + 5431 017a X-Meridian 7.1 2G + 584d 3781 HDA X-Purity 7.1 Platinum + 7284 9761 CLARO + 7284 9781 CLARO halo + 7284 9783 eCLARO + 7284 9787 CLARO II +13f7 Wildfire Communications +13f8 Ad Lib Multimedia Inc +13f9 NTT Advanced Technology Corp. +13fa Pentland Systems Ltd +13fb Aydin Corp +13fc Computer Peripherals International +13fd Micro Science Inc +13fe Advantech Co. Ltd + 1240 PCI-1240 4-channel stepper motor controller card + 1600 PCI-16xx series PCI multiport serial board (function 0) +# This board has two PCI functions, appears as two PCI devices + 1601 0002 PCI-1601 2-port unisolated RS-422/485 +# This board has two PCI functions, appears as two PCI devices + 1602 0002 PCI-1602 2-port isolated RS-422/485 + 1612 0004 PCI-1612 4-port RS-232/422/485 + 1603 PCI-1603 2-port isolated RS-232/current loop + 1604 PCI-1604 2-port RS-232 + 1680 PCI-1680 Rev.A1 2-port CAN-bus with isolation protection + 16ff PCI-16xx series PCI multiport serial board (function 1: RX/TX steering CPLD) + 1601 0000 PCI-1601 2-port unisolated RS-422/485 PCI communications card + 1602 0000 PCI-1602 2-port isolated RS-422/485 + 1612 0000 PCI-1612 4-port RS-232/422/485 + 1711 PCI-1711 16-channel data acquisition card 12-bit, 100kS/s + 1713 PCI-1713 32-channel isolated analog input card + 1733 PCI-1733 32-channel isolated digital input card + 1734 PCI-1734 32-channel isolated digital output card + 1752 PCI-1752 64-channel Isolated Digital Output Card + 1754 PCI-1754 64-channel Isolated Digital Input Card + 1756 PCI-1756 64-ch Isolated Digital I/O PCI Card + a004 PCI-1612 4-port RS-232/422/485 +# FPGA bridge to two SJA1000 + c302 MIOe-3680 2-Port CAN-Bus MIOe Module with Isolation Protection +13ff Silicon Spice Inc +1400 Artx Inc + 1401 9432 TX +1401 CR-Systems A/S +1402 Meilhaus Electronic GmbH + 0630 ME-630 + 0940 ME-94 + 0950 ME-95 + 0960 ME-96 + 1000 ME-1000 + 100a ME-1000 + 100b ME-1000 + 1400 ME-1400 + 140a ME-1400A + 140b ME-1400B + 140c ME-1400C + 140d ME-1400D + 140e ME-1400E + 14ea ME-1400EA + 14eb ME-1400EB + 1604 ME-1600/4U + 1608 ME-1600/8U + 160c ME-1600/12U + 160f ME-1600/16U + 168f ME-1600/16U8I + 4610 ME-4610 + 4650 ME-4650 + 4660 ME-4660 + 4661 ME-4660I + 4662 ME-4660 + 4663 ME-4660I + 4670 ME-4670 + 4671 ME-4670I + 4672 ME-4670S + 4673 ME-4670IS + 4680 ME-4680 + 4681 ME-4680I + 4682 ME-4680S + 4683 ME-4680IS + 6004 ME-6000/4 + 6008 ME-6000/8 + 600f ME-6000/16 + 6014 ME-6000I/4 + 6018 ME-6000I/8 + 601f ME-6000I/16 + 6034 ME-6000ISLE/4 + 6038 ME-6000ISLE/8 + 603f ME-6000ISLE/16 + 6044 ME-6000/4/DIO + 6048 ME-6000/8/DIO + 604f ME-6000/16/DIO + 6054 ME-6000I/4/DIO + 6058 ME-6000I/8/DIO + 605f ME-6000I/16/DIO + 6074 ME-6000ISLE/4/DIO + 6078 ME-6000ISLE/8/DIO + 607f ME-6000ISLE/16/DIO + 6104 ME-6100/4 + 6108 ME-6100/8 + 610f ME-6100/16 + 6114 ME-6100I/4 + 6118 ME-6100I/8 + 611f ME-6100I/16 + 6134 ME-6100ISLE/4 + 6138 ME-6100ISLE/8 + 613f ME-6100ISLE/16 + 6144 ME-6100/4/DIO + 6148 ME-6100/8/DIO + 614f ME-6100/16/DIO + 6154 ME-6100I/4/DIO + 6158 ME-6100I/8/DIO + 615f ME-6100I/16/DIO + 6174 ME-6100ISLE/4/DIO + 6178 ME-6100ISLE/8/DIO + 617f ME-6100ISLE/16/DIO + 6259 ME-6200I/9/DIO + 6359 ME-6300I/9/DIO + 810a ME-8100A + 810b ME-8100B + 820a ME-8200A + 820b ME-8200B +1403 Ascor Inc +1404 Fundamental Software Inc +1405 Excalibur Systems Inc +1406 Oce' Printing Systems GmbH +1407 Lava Computer mfg Inc + 0100 Lava Dual Serial + 0101 Lava Quatro A + 0102 Lava Quatro B + 0110 Lava DSerial-PCI Port A + 0111 Lava DSerial-PCI Port B + 0120 Quattro-PCI A + 0121 Quattro-PCI B + 0180 Lava Octo A + 0181 Lava Octo B + 0200 Lava Port Plus + 0201 Lava Quad A + 0202 Lava Quad B + 0220 Lava Quattro PCI Ports A/B + 0221 Lava Quattro PCI Ports C/D + 0400 Lava 8255-PIO-PCI + 0500 Lava Single Serial + 0520 Lava RS422-SS-PCI + 0600 Lava Port 650 + 8000 Lava Parallel + 8001 Dual parallel port controller A + 8002 Lava Dual Parallel port A + 8003 Lava Dual Parallel port B + 8800 BOCA Research IOPPAR +1408 Aloka Co. Ltd +1409 Timedia Technology Co Ltd + 7168 PCI2S550 (Dual 16550 UART) + 1409 0002 SER4036A3V (2x RS232 port) + 1409 4027 SER4027A (1x RS232 port) + 1409 4037 SER4037A(L) [SUNIX SUN1889] (2x RS232 port) +# Single DC-37 connector + 1409 4056 SER4056A (4x RS232) + 1409 5027 SER4027D + 1409 5037 SER4037D (2x RS232 port) +# Single DC-62 connector + 1409 5066 SER4066R (8x RS232) +# 4x 8p8c connectors + 1409 6056 SER4056D (4x RS232 port) + 7268 SUN1888 (Dual IEEE1284 parallel port) + 1409 0103 PAR4008A + 1409 0104 PAR4018A +140a DSP Research Inc +# Formerly RAMiX, GE Fanuc, GE Intelligent Platforms +140b Abaco Systems, Inc. +140c Elmic Systems Inc +140d Matsushita Electric Works Ltd +140e Goepel Electronic GmbH +140f Salient Systems Corp +1410 Midas lab Inc +1411 Ikos Systems Inc +# Nee IC Ensemble Inc. +1412 VIA Technologies Inc. + 1712 ICE1712 [Envy24] PCI Multi-Channel I/O Controller + 1412 1712 Hoontech ST Audio DSP 24 + 1412 d630 M-Audio Delta 1010 + 1412 d631 M-Audio Delta DiO + 1412 d632 M-Audio Delta 66 + 1412 d633 M-Audio Delta 44 + 1412 d634 M-Audio Delta Audiophile 2496 + 1412 d635 M-Audio Delta TDIF + 1412 d637 M-Audio Delta RBUS + 1412 d638 M-Audio Delta 410 + 1412 d63b M-Audio Delta 1010LT + 1412 d63c Digigram VX442 + 1416 1712 Hoontech ST Audio DSP 24 Media 7.1 + 153b 1115 EWS88 MT + 153b 1125 EWS88 MT (Master) + 153b 112b EWS88 D + 153b 112c EWS88 D (Master) + 153b 1130 EWX 24/96 + 153b 1138 DMX 6fire 24/96 + 153b 1151 PHASE88 + 16ce 1040 Edirol DA-2496 + 1724 VT1720/24 [Envy24PT/HT] PCI Multi-Channel Audio Controller + 10b0 0200 Hollywood@Home 7.1 + 1412 1724 Albatron PX865PE 7.1 + 1412 3630 M-Audio Revolution 7.1 + 1412 3631 M-Audio Revolution 5.1 + 1412 3632 M-Audio Audiophile 192 + 153b 1145 Aureon 7.1 Space + 153b 1147 Aureon 5.1 Sky + 153b 1150 PHASE 22 + 153b 1153 Aureon 7.1 Universe + 17ab 1906 PSC 724 [Ultimate Edge] + 270f f641 ZNF3-150 + 270f f645 ZNF3-250 + 3130 4154 MAYA 44 MKII +1413 Addonics +1414 Microsoft Corporation + 0001 MN-120 (ADMtek Centaur-C based) + 0002 MN-130 (ADMtek Centaur-P based) +# Virtual Video Card Device for Windows Remote Desktop (RDP) + 008c Basic Render Driver + 5353 Hyper-V virtual VGA + 5801 XMA Decoder (Xenon) + 5802 SATA Controller - CdRom (Xenon) + 5803 SATA Controller - Disk (Xenon) + 5804 OHCI Controller 0 (Xenon) + 5805 EHCI Controller 0 (Xenon) + 5806 OHCI Controller 1 (Xenon) + 5807 EHCI Controller 1 (Xenon) + 580a Fast Ethernet Adapter (Xenon) + 580b Secure Flash Controller (Xenon) + 580d System Management Controller (Xenon) + 5811 Xenos GPU (Xenon) +1415 Oxford Semiconductor Ltd + 8401 OX9162 Mode 1 (8-bit bus) + 8403 OX9162 Mode 0 (parallel port) + 9500 OX16PCI954 (Quad 16950 UART) function 0 (Disabled) + 9501 OX16PCI954 (Quad 16950 UART) function 0 (Uart) + 12c4 0201 Titan/cPCI (2 port) + 12c4 0202 Titan/cPCI (4 port) + 12c4 0203 Titan/cPCI (8 port) + 12c4 0210 Titan/104-Plus (8 port, p1-4) + 131f 2050 CyberPro (4-port) +# Model IO1085, Part No: JJ-P46012 + 131f 2051 CyberSerial 4S Plus + 15ed 2000 MCCR Serial p0-3 of 8 + 15ed 2001 MCCR Serial p0-3 of 16 + 9505 OXuPCI952 (Dual 16C950 UART) + 950a EXSYS EX-41092 Dual 16950 Serial adapter + 950b OXCB950 Cardbus 16950 UART + 9510 OX16PCI954 (Quad 16950 UART) function 1 (Disabled) + 12c4 0200 Titan/cPCI (Unused) + 9511 OX16PCI954 (Quad 16950 UART) function 1 (8bit bus) + 12c4 0211 Titan/104-Plus (8 port, p5-8) + 15ed 2000 MCCR Serial p4-7 of 8 + 15ed 2001 MCCR Serial p4-15 of 16 + 9512 OX16PCI954 (Quad 16950 UART) function 1 (32bit bus) + 9513 OX16PCI954 (Quad 16950 UART) function 1 (parallel port) + 9521 OX16PCI952 (Dual 16950 UART) + 9523 OX16PCI952 Integrated Parallel Port +# Multifunction device with 3 function bits in ID + c000 OXPCIe840 Parallel Port + c004 OXPCIe840 Parallel Port + c006 OXPCIe840 GPIO +# Multifunction device with reset straps and function bits in ID + c100 OXPCIe952 Parallel Port + c101 OXPCIe952 Legacy 950 UART + c104 OXPCIe952 Parallel Port + c105 OXPCIe952 Legacy 950 UART + c106 OXPCIe952 GPIO + c108 OXPCIe952 Parallel Port + c109 OXPCIe952 Legacy 950 UART + c10c OXPCIe952 Parallel Port + c10d OXPCIe952 Legacy 950 UART + c10e OXPCIe952 GPIO + c110 OXPCIe952 Parallel Port + c114 OXPCIe952 Parallel Port + c118 OXPCIe952 Parallel Port + c11b OXPCIe952 Native 950 UART + c11c OXPCIe952 Parallel Port + c11e OXPCIe952 GPIO + c11f OXPCIe952 Native 950 UART + c120 OXPCIe952 Legacy 950 UART + c124 OXPCIe952 Legacy 950 UART + c126 OXPCIe952 GPIO + c128 OXPCIe952 Legacy 950 UART + c12c OXPCIe952 Legacy 950 UART + c12e OXPCIe952 GPIO + c134 OXPCIe952 GPIO + c138 OXPCIe952 Native 950 UART + c13c OXPCIe952 GPIO + c13d OXPCIe952 Native 950 UART + c140 OXPCIe952 Legacy 950 UART #1 + c141 OXPCIe952 Legacy 950 UART #2 + c144 OXPCIe952 Legacy 950 UART #1 + c145 OXPCIe952 Legacy 950 UART #2 + c146 OXPCIe952 GPIO + c148 OXPCIe952 Legacy 950 UART #1 + c149 OXPCIe952 Legacy 950 UART #2 + c14c OXPCIe952 Legacy 950 UART #1 + c14d OXPCIe952 Legacy 950 UART #2 + c14e OXPCIe952 GPIO + c154 OXPCIe952 GPIO + c158 OXPCIe952 Dual Native 950 UART + e4bf c504 CP4-SCAT Wireless Technologies Carrier Board + e4bf d551 DU1-MUSTANG Dual-Port RS-485 Interface + c15c OXPCIe952 GPIO + c15d OXPCIe952 Dual Native 950 UART +# Multifunction device with 4 function bits in ID + c204 OXPCIe954 GPIO + c208 OXPCIe954 Quad Native 950 UART + c20c OXPCIe954 GPIO + c20d OXPCIe954 Quad Native 950 UART +# Multifunction device with 4 function bits in ID + c304 OXPCIe958 GPIO + c308 OXPCIe958 Quad Native 950 UART + c30c OXPCIe958 GPIO + c30d OXPCIe958 Quad Native 950 UART +# Multifunction device with 8 function bits in ID + c530 OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI) + c531 OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI) + c534 OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI) + c535 OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI) + c536 OXPCIe200 GPIO + c538 OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI) + c539 OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI) + c53b OXPCIe200 Native 950 UART + c53c OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI) + c53d OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI) + c53e OXPCIe200 GPIO + c53f OXPCIe200 Native 950 UART + c540 OXPCIe200 Dual OHCI USB Controller (R-ULPI) + c541 OXPCIe200 Dual EHCI USB Controller (R-ULPI) + c544 OXPCIe200 Dual OHCI USB Controller (R-ULPI) + c545 OXPCIe200 Dual EHCI USB Controller (R-ULPI) + c546 OXPCIe200 GPIO + c548 OXPCIe200 Dual OHCI USB Controller (R-ULPI) + c549 OXPCIe200 Dual EHCI USB Controller (R-ULPI) + c54b OXPCIe200 Native 950 UART + c54c OXPCIe200 Dual OHCI USB Controller (R-ULPI) + c54d OXPCIe200 Dual EHCI USB Controller (R-ULPI) + c54e OXPCIe200 Dual GPIO + c54f OXPCIe200 Native 950 UART + c560 OXPCIe200 Dual OHCI USB Controller (ULPI/analog) + c561 OXPCIe200 EHCI USB Controller (ULPI) + c564 OXPCIe200 Dual OHCI USB Controller (ULPI/analog) + c565 OXPCIe200 EHCI USB Controller (ULPI) + c566 OXPCIe200 GPIO + c568 OXPCIe200 Dual OHCI USB Controller (ULPI/analog) + c569 OXPCIe200 EHCI USB Controller (ULPI) + c56b OXPCIe200 Native 950 UART + c56c OXPCIe200 Dual OHCI USB Controller (ULPI/analog) + c56d OXPCIe200 EHCI USB Controller (ULPI) + c56e OXPCIe200 GPIO + c56f OXPCIe200 Native 950 UART + c570 OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog) + c571 OXPCIe200 EHCI USB Controller (R-ULPI) + c574 OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog) + c575 OXPCIe200 EHCI USB Controller (R-ULPI) + c576 OXPCIe200 GPIO + c578 OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog) + c579 OXPCIe200 EHCI USB Controller (R-ULPI) + c57b OXPCIe200 Native 950 UART + c57c OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog) + c57d OXPCIe200 EHCI USB Controller (R-ULPI) + c57e OXPCIe200 GPIO + c57f OXPCIe200 Native 950 UART + c5a0 OXPCIe200 OHCI USB Controller (ULPI) + c5a1 OXPCIe200 EHCI USB Controller (ULPI) + c5a2 OXPCIe200 Programmable Memory Interface + c5a4 OXPCIe200 OHCI USB Controller (ULPI) + c5a5 OXPCIe200 EHCI USB Controller (ULPI) + c5a6 OXPCIe200 Programmable Memory Interface & GPIO + c5a8 OXPCIe200 OHCI USB Controller (ULPI) + c5a9 OXPCIe200 EHCI USB Controller (ULPI) + c5aa OXPCIe200 Programmable Memory Interface + c5ab OXPCIe200 Native 950 UART + c5ac OXPCIe200 OHCI USB Controller (ULPI) + c5ad OXPCIe200 EHCI USB Controller (ULPI) + c5ae OXPCIe200 Programmable Memory Interface & GPIO + c5af OXPCIe200 Native 950 UART + c5b0 OXPCIe200 OHCI USB Controller (R-ULPI) + c5b1 OXPCIe200 EHCI USB Controller (R-ULPI) + c5b2 OXPCIe200 Programmable Memory Interface + c5b4 OXPCIe200 OHCI USB Controller (R-ULPI) + c5b5 OXPCIe200 EHCI USB Controller (R-ULPI) + c5b6 OXPCIe200 Programmable Memory Interface & GPIO + c5b8 OXPCIe200 OHCI USB Controller (R-ULPI) + c5b9 OXPCIe200 EHCI USB Controller (R-ULPI) + c5ba OXPCIe200 Programmable Memory Interface + c5bb OXPCIe200 Native 950 UART + c5bc OXPCIe200 OHCI USB Controller (R-ULPI) + c5bd OXPCIe200 EHCI USB Controller (R-ULPI) + c5be OXPCIe200 Programmable Memory Interface & GPIO + c5bf OXPCIe200 Native 950 UART + c5c0 OXPCIe200 OHCI USB Controller (analog) + c5c2 OXPCIe200 Programmable Memory Interface + c5c4 OXPCIe200 OHCI USB Controller (analog) + c5c6 OXPCIe200 Programmable Memory Interface & GPIO + c5c8 OXPCIe200 OHCI USB Controller (analog) + c5ca OXPCIe200 Programmable Memory Interface + c5cb OXPCIe200 Native 950 UART + c5cc OXPCIe200 OHCI USB Controller (analog) + c5ce OXPCIe200 Programmable Memory Interface & GPIO + c5cf OXPCIe200 Native 950 UART +1416 Multiwave Innovation pte Ltd +1417 Convergenet Technologies Inc +1418 Kyushu electronics systems Inc +1419 Excel Switching Corp +141a Apache Micro Peripherals Inc +141b Zoom Telephonics Inc +141d Digitan Systems Inc +141e Fanuc Ltd +141f Visiontech Ltd +1420 Psion Dacom plc + 8002 Gold Card NetGlobal 56k+10/100Mb CardBus (Ethernet part) + 8003 Gold Card NetGlobal 56k+10/100Mb CardBus (Modem part) +1421 Ads Technologies Inc +1422 Ygrec Systems Co Ltd +1423 Custom Technology Corp. +1424 Videoserver Connections +1425 Chelsio Communications Inc + 000b T210 Protocol Engine + 000c T204 Protocol Engine + 0022 10GbE Ethernet Adapter + 0030 T310 10GbE Single Port Adapter + 103c 705e PCIe 10GBase-SR [AD386A] + 0031 T320 10GbE Dual Port Adapter + 0032 T302 1GbE Dual Port Adapter + 0033 T304 1GbE Quad Port Adapter + 0034 B320 10GbE Dual Port Adapter + 0035 S310-CR 10GbE Single Port Adapter + 0036 S320-LP-CR 10GbE Dual Port Adapter + 0037 N320-G2-CR 10GbE Dual Port Adapter + 4001 T420-CR Unified Wire Ethernet Controller + 4002 T422-CR Unified Wire Ethernet Controller + 4003 T440-CR Unified Wire Ethernet Controller + 4004 T420-BCH Unified Wire Ethernet Controller + 4005 T440-BCH Unified Wire Ethernet Controller + 4006 T440-CH Unified Wire Ethernet Controller + 4007 T420-SO Unified Wire Ethernet Controller + 4008 T420-CX Unified Wire Ethernet Controller + 4009 T420-BT Unified Wire Ethernet Controller + 400a T404-BT Unified Wire Ethernet Controller + 400b B420-SR Unified Wire Ethernet Controller + 400c B404-BT Unified Wire Ethernet Controller + 400d T480 Unified Wire Ethernet Controller + 400e T440-LP-CR Unified Wire Ethernet Controller + 400f T440 [Amsterdam] Unified Wire Ethernet Controller + 4080 T480-4080 T480 Unified Wire Ethernet Controller + 4081 T440F-4081 T440-FCoE Unified Wire Ethernet Controller + 4082 T420-4082 Unified Wire Ethernet Controller + 4083 T420X-4083 Unified Wire Ethernet Controller + 4084 T440-4084 Unified Wire Ethernet Controller + 4085 T420-4085 SFP+ Unified Wire Ethernet Controller + 4086 T440-4086 10Gbase-T Unified Wire Ethernet Controller + 4087 T440T-4087 Unified Wire Ethernet Controller + 4088 T440-4088 Unified Wire Ethernet Controller + 4401 T420-CR Unified Wire Ethernet Controller + 4402 T422-CR Unified Wire Ethernet Controller + 4403 T440-CR Unified Wire Ethernet Controller + 4404 T420-BCH Unified Wire Ethernet Controller + 4405 T440-BCH Unified Wire Ethernet Controller + 4406 T440-CH Unified Wire Ethernet Controller + 4407 T420-SO Unified Wire Ethernet Controller + 4408 T420-CX Unified Wire Ethernet Controller + 4409 T420-BT Unified Wire Ethernet Controller + 440a T404-BT Unified Wire Ethernet Controller + 440b B420-SR Unified Wire Ethernet Controller + 440c B404-BT Unified Wire Ethernet Controller + 440d T480 Unified Wire Ethernet Controller + 440e T440-LP-CR Unified Wire Ethernet Controller + 440f T440 [Amsterdam] Unified Wire Ethernet Controller + 4480 T480-4080 T480 Unified Wire Ethernet Controller + 4481 T440F-4081 T440-FCoE Unified Wire Ethernet Controller + 4482 T420-4082 Unified Wire Ethernet Controller + 4483 T420X-4083 Unified Wire Ethernet Controller + 4484 T440-4084 Unified Wire Ethernet Controller + 4485 T420-4085 SFP+ Unified Wire Ethernet Controller + 4486 T440-4086 10Gbase-T Unified Wire Ethernet Controller + 4487 T440T-4087 Unified Wire Ethernet Controller + 4488 T440-4088 Unified Wire Ethernet Controller + 4501 T420-CR Unified Wire Storage Controller + 4502 T422-CR Unified Wire Storage Controller + 4503 T440-CR Unified Wire Storage Controller + 4504 T420-BCH Unified Wire Storage Controller + 4505 T440-BCH Unified Wire Storage Controller + 4506 T440-CH Unified Wire Storage Controller + 4507 T420-SO Unified Wire Storage Controller + 4508 T420-CX Unified Wire Storage Controller + 4509 T420-BT Unified Wire Storage Controller + 450a T404-BT Unified Wire Storage Controller + 450b B420-SR Unified Wire Storage Controller + 450c B404-BT Unified Wire Storage Controller + 450d T480 Unified Wire Storage Controller + 450e T440-LP-CR Unified Wire Storage Controller + 450f T440 [Amsterdam] Unified Wire Storage Controller + 4580 T480-4080 T480 Unified Wire Storage Controller + 4581 T440F-4081 T440-FCoE Unified Wire Storage Controller + 4582 T420-4082 Unified Wire Storage Controller + 4583 T420X-4083 Unified Wire Storage Controller + 4584 T440-4084 Unified Wire Storage Controller + 4585 T420-4085 SFP+ Unified Wire Storage Controller + 4586 T440-4086 10Gbase-T Unified Wire Storage Controller + 4587 T440T-4087 Unified Wire Storage Controller + 4588 T440-4088 Unified Wire Storage Controller + 4601 T420-CR Unified Wire Storage Controller + 4602 T422-CR Unified Wire Storage Controller + 4603 T440-CR Unified Wire Storage Controller + 4604 T420-BCH Unified Wire Storage Controller + 4605 T440-BCH Unified Wire Storage Controller + 4606 T440-CH Unified Wire Storage Controller + 4607 T420-SO Unified Wire Storage Controller + 4608 T420-CX Unified Wire Storage Controller + 4609 T420-BT Unified Wire Storage Controller + 460a T404-BT Unified Wire Storage Controller + 460b B420-SR Unified Wire Storage Controller + 460c B404-BT Unified Wire Storage Controller + 460d T480 Unified Wire Storage Controller + 460e T440-LP-CR Unified Wire Storage Controller + 460f T440 [Amsterdam] Unified Wire Storage Controller + 4680 T480-4080 T480 Unified Wire Storage Controller + 4681 T440F-4081 T440-FCoE Unified Wire Storage Controller + 4682 T420-4082 Unified Wire Storage Controller + 4683 T420X-4083 Unified Wire Storage Controller + 4684 T440-4084 Unified Wire Storage Controller + 4685 T420-4085 SFP+ Unified Wire Storage Controller + 4686 T440-4086 10Gbase-T Unified Wire Storage Controller + 4687 T440T-4087 Unified Wire Storage Controller + 4688 T440-4088 Unified Wire Storage Controller + 4701 T420-CR Unified Wire Ethernet Controller + 4702 T422-CR Unified Wire Ethernet Controller + 4703 T440-CR Unified Wire Ethernet Controller + 4704 T420-BCH Unified Wire Ethernet Controller + 4705 T440-BCH Unified Wire Ethernet Controller + 4706 T440-CH Unified Wire Ethernet Controller + 4707 T420-SO Unified Wire Ethernet Controller + 4708 T420-CX Unified Wire Ethernet Controller + 4709 T420-BT Unified Wire Ethernet Controller + 470a T404-BT Unified Wire Ethernet Controller + 470b B420-SR Unified Wire Ethernet Controller + 470c B404-BT Unified Wire Ethernet Controller + 470d T480 Unified Wire Ethernet Controller + 470e T440-LP-CR Unified Wire Ethernet Controller + 470f T440 [Amsterdam] Unified Wire Ethernet Controller + 4780 T480-4080 T480 Unified Wire Ethernet Controller + 4781 T440F-4081 T440-FCoE Unified Wire Ethernet Controller + 4782 T420-4082 Unified Wire Ethernet Controller + 4783 T420X-4083 Unified Wire Ethernet Controller + 4784 T440-4084 Unified Wire Ethernet Controller + 4785 T420-4085 SFP+ Unified Wire Ethernet Controller + 4786 T440-4086 10Gbase-T Unified Wire Ethernet Controller + 4787 T440T-4087 Unified Wire Ethernet Controller + 4788 T440-4088 Unified Wire Ethernet Controller + 4801 T420-CR Unified Wire Ethernet Controller [VF] + 4802 T422-CR Unified Wire Ethernet Controller [VF] + 4803 T440-CR Unified Wire Ethernet Controller [VF] + 4804 T420-BCH Unified Wire Ethernet Controller [VF] + 4805 T440-BCH Unified Wire Ethernet Controller [VF] + 4806 T440-CH Unified Wire Ethernet Controller [VF] + 4807 T420-SO Unified Wire Ethernet Controller [VF] + 4808 T420-CX Unified Wire Ethernet Controller [VF] + 4809 T420-BT Unified Wire Ethernet Controller [VF] + 480a T404-BT Unified Wire Ethernet Controller [VF] + 480b B420-SR Unified Wire Ethernet Controller [VF] + 480c B404-BT Unified Wire Ethernet Controller [VF] + 480d T480 Unified Wire Ethernet Controller [VF] + 480e T440-LP-CR Unified Wire Ethernet Controller [VF] + 480f T440 [Amsterdam] Unified Wire Ethernet Controller [VF] + 4880 T480-4080 T480 Unified Wire Ethernet Controller [VF] + 4881 T440F-4081 T440-FCoE Unified Wire Ethernet Controller [VF] + 4882 T420-4082 Unified Wire Ethernet Controller [VF] + 4883 T420X-4083 Unified Wire Ethernet Controller [VF] + 4884 T440-4084 Unified Wire Ethernet Controller [VF] + 4885 T420-4085 SFP+ Unified Wire Ethernet Controller [VF] + 4886 T440-4086 10Gbase-T Unified Wire Ethernet Controller [VF] + 4887 T440T-4087 Unified Wire Ethernet Controller [VF] + 4888 T440-4088 Unified Wire Ethernet Controller [VF] + 5001 T520-CR Unified Wire Ethernet Controller + 193d 1001 510F-B + 5002 T522-CR Unified Wire Ethernet Controller + 5003 T540-CR Unified Wire Ethernet Controller + 5004 T520-BCH Unified Wire Ethernet Controller + 5005 T540-BCH Unified Wire Ethernet Controller + 5006 T540-CH Unified Wire Ethernet Controller + 5007 T520-SO Unified Wire Ethernet Controller + 5008 T520-CX Unified Wire Ethernet Controller + 5009 T520-BT Unified Wire Ethernet Controller + 500a T504-BT Unified Wire Ethernet Controller + 500b B520-SR Unified Wire Ethernet Controller + 500c B504-BT Unified Wire Ethernet Controller + 500d T580-CR Unified Wire Ethernet Controller + 500e T540-LP-CR Unified Wire Ethernet Controller + 500f T540 [Amsterdam] Unified Wire Ethernet Controller + 5010 T580-LP-CR Unified Wire Ethernet Controller + 5011 T520-LL-CR Unified Wire Ethernet Controller + 5012 T560-CR Unified Wire Ethernet Controller + 5013 T580-CHR Unified Wire Ethernet Controller + 5014 T580-SO-CR Unified Wire Ethernet Controller + 5015 T502-BT Unified Wire Ethernet Controller + 5016 T580-OCP-SO Unified Wire Ethernet Controller + 5017 T520-OCP-SO Unified Wire Ethernet Controller + 5018 T540-BT Unified Wire Ethernet Controller + 5019 T540-LP-BT Unified Wire Ethernet Controller + 501a T540-SO-BT Unified Wire Ethernet Controller + 501b T540-SO-CR Unified Wire Ethernet Controller + 5080 T540-5080 Unified Wire Ethernet Controller + 5081 T540-5081 Unified Wire Ethernet Controller + 5082 T504-5082 Unified Wire Ethernet Controller + 5083 T540-5083 Unified Wire Ethernet Controller + 5084 T540-5084 Unified Wire Ethernet Controller + 5085 T580-5085 Unified Wire Ethernet Controller + 5086 T580-5086 Unified Wire Ethernet Controller + 5087 T580-5087 Unified Wire Ethernet Controller + 5088 T570-5088 Unified Wire Ethernet Controller + 5089 T520-5089 Unified Wire Ethernet Controller + 5090 T540-5090 Unified Wire Ethernet Controller + 5091 T522-5091 Unified Wire Ethernet Controller + 5092 T520-5092 Unified Wire Ethernet Controller + 5093 T580-5093 Unified Wire Ethernet Controller + 5094 T540-5094 Unified Wire Ethernet Controller + 5095 T540-5095 Unified Wire Ethernet Controller + 5096 T580-5096 Unified Wire Ethernet Controller + 5097 T520-5097 Unified Wire Ethernet Controller + 5098 T580-5098 Unified Wire Ethernet Controller + 5099 T580-5099 Unified Wire Ethernet Controller + 509a T520-509A Unified Wire Ethernet Controller + 509b T540-509B Unified Wire Ethernet Controller + 509c T520-509C Unified Wire Ethernet Controller + 509d T540-509D Unified Wire Ethernet Controller + 509e T520-509E Unified Wire Ethernet Controller + 509f T540-509F Unified Wire Ethernet Controller + 50a0 T540-50A0 Unified Wire Ethernet Controller + 50a1 T540-50A1 Unified Wire Ethernet Controller + 50a2 T580-50A2 Unified Wire Ethernet Controller + 50a3 T580-50A3 Unified Wire Ethernet Controller + 50a4 T540-50A4 Unified Wire Ethernet Controller + 50a5 T522-50A5 Unified Wire Ethernet Controller + 50a6 T522-50A6 Unified Wire Ethernet Controller + 50a7 T580-50A7 Unified Wire Ethernet Controller + 50a8 T580-50A8 Unified Wire Ethernet Controller + 50a9 T580-50A9 Unified Wire Ethernet Controller + 50aa T580-50AA Unified Wire Ethernet Controller + 50ab T520-50AB Unified Wire Ethernet Controller + 50ac T540-50AC Unified Wire Ethernet Controller + 50ad T520-50AD Unified Wire Ethernet Controller + 50ae T540-50AE Unified Wire Ethernet Controller + 50af T580-50AF Unified Wire Ethernet Controller + 50b0 T520-50B0 Unified Wire Ethernet Controller + 5401 T520-CR Unified Wire Ethernet Controller + 5402 T522-CR Unified Wire Ethernet Controller + 5403 T540-CR Unified Wire Ethernet Controller + 5404 T520-BCH Unified Wire Ethernet Controller + 5405 T540-BCH Unified Wire Ethernet Controller + 5406 T540-CH Unified Wire Ethernet Controller + 5407 T520-SO Unified Wire Ethernet Controller + 5408 T520-CX Unified Wire Ethernet Controller + 5409 T520-BT Unified Wire Ethernet Controller + 540a T504-BT Unified Wire Ethernet Controller + 540b B520-SR Unified Wire Ethernet Controller + 540c B504-BT Unified Wire Ethernet Controller + 540d T580-CR Unified Wire Ethernet Controller + 540e T540-LP-CR Unified Wire Ethernet Controller + 540f T540 [Amsterdam] Unified Wire Ethernet Controller + 5410 T580-LP-CR Unified Wire Ethernet Controller + 5411 T520-LL-CR Unified Wire Ethernet Controller + 5412 T560-CR Unified Wire Ethernet Controller + 5413 T580-CHR Unified Wire Ethernet Controller + 5414 T580-SO-CR Unified Wire Ethernet Controller + 5415 T502-BT Unified Wire Ethernet Controller + 5416 T580-OCP-SO Unified Wire Ethernet Controller + 5417 T520-OCP-SO Unified Wire Ethernet Controller + 5418 T540-BT Unified Wire Ethernet Controller + 5419 T540-LP-BT Unified Wire Ethernet Controller + 541a T540-SO-BT Unified Wire Ethernet Controller + 541b T540-SO-CR Unified Wire Ethernet Controller + 5480 T540-5080 Unified Wire Ethernet Controller + 5481 T540-5081 Unified Wire Ethernet Controller + 5482 T504-5082 Unified Wire Ethernet Controller + 5483 T540-5083 Unified Wire Ethernet Controller + 5484 T540-5084 Unified Wire Ethernet Controller + 5485 T580-5085 Unified Wire Ethernet Controller + 5486 T580-5086 Unified Wire Ethernet Controller + 5487 T580-5087 Unified Wire Ethernet Controller + 5488 T570-5088 Unified Wire Ethernet Controller + 5489 T520-5089 Unified Wire Ethernet Controller + 5490 T540-5090 Unified Wire Ethernet Controller + 5491 T522-5091 Unified Wire Ethernet Controller + 5492 T520-5092 Unified Wire Ethernet Controller + 5493 T580-5093 Unified Wire Ethernet Controller + 5494 T540-5094 Unified Wire Ethernet Controller + 5495 T540-5095 Unified Wire Ethernet Controller + 5496 T580-5096 Unified Wire Ethernet Controller + 5497 T520-5097 Unified Wire Ethernet Controller + 5498 T580-5098 Unified Wire Ethernet Controller + 5499 T580-5099 Unified Wire Ethernet Controller + 549a T520-509A Unified Wire Ethernet Controller + 549b T540-509B Unified Wire Ethernet Controller + 549c T520-509C Unified Wire Ethernet Controller + 549d T540-509D Unified Wire Ethernet Controller + 549e T520-509E Unified Wire Ethernet Controller + 549f T540-509F Unified Wire Ethernet Controller + 54a0 T540-50A0 Unified Wire Ethernet Controller + 54a1 T540-50A1 Unified Wire Ethernet Controller + 54a2 T580-50A2 Unified Wire Ethernet Controller + 54a3 T580-50A3 Unified Wire Ethernet Controller + 54a4 T540-50A4 Unified Wire Ethernet Controller + 54a5 T522-50A5 Unified Wire Ethernet Controller + 54a6 T522-50A6 Unified Wire Ethernet Controller + 54a7 T580-50A7 Unified Wire Ethernet Controller + 54a8 T580-50A8 Unified Wire Ethernet Controller + 54a9 T580-50A9 Unified Wire Ethernet Controller + 54aa T580-50AA Unified Wire Ethernet Controller + 54ab T520-50AB Unified Wire Ethernet Controller + 54ac T540-50AC Unified Wire Ethernet Controller + 54ad T520-50AD Unified Wire Ethernet Controller + 54ae T540-50AE Unified Wire Ethernet Controller + 54af T580-50AF Unified Wire Ethernet Controller + 54b0 T520-50B0 Unified Wire Ethernet Controller + 5501 T520-CR Unified Wire Storage Controller + 5502 T522-CR Unified Wire Storage Controller + 5503 T540-CR Unified Wire Storage Controller + 5504 T520-BCH Unified Wire Storage Controller + 5505 T540-BCH Unified Wire Storage Controller + 5506 T540-CH Unified Wire Storage Controller + 5507 T520-SO Unified Wire Storage Controller + 5508 T520-CX Unified Wire Storage Controller + 5509 T520-BT Unified Wire Storage Controller + 550a T504-BT Unified Wire Storage Controller + 550b B520-SR Unified Wire Storage Controller + 550c B504-BT Unified Wire Storage Controller + 550d T580-CR Unified Wire Storage Controller + 550e T540-LP-CR Unified Wire Storage Controller + 550f T540 [Amsterdam] Unified Wire Storage Controller + 5510 T580-LP-CR Unified Wire Storage Controller + 5511 T520-LL-CR Unified Wire Storage Controller + 5512 T560-CR Unified Wire Storage Controller + 5513 T580-CHR Unified Wire Storage Controller + 5514 T580-SO-CR Unified Wire Storage Controller + 5515 T502-BT Unified Wire Storage Controller + 5516 T580-OCP-SO Unified Wire Storage Controller + 5517 T520-OCP-SO Unified Wire Storage Controller + 5518 T540-BT Unified Wire Storage Controller + 5519 T540-LP-BT Unified Wire Storage Controller + 551a T540-SO-BT Unified Wire Storage Controller + 551b T540-SO-CR Unified Wire Storage Controller + 5580 T540-5080 Unified Wire Storage Controller + 5581 T540-5081 Unified Wire Storage Controller + 5582 T504-5082 Unified Wire Storage Controller + 5583 T540-5083 Unified Wire Storage Controller + 5584 T540-5084 Unified Wire Storage Controller + 5585 T580-5085 Unified Wire Storage Controller + 5586 T580-5086 Unified Wire Storage Controller + 5587 T580-5087 Unified Wire Storage Controller + 5588 T570-5088 Unified Wire Storage Controller + 5589 T520-5089 Unified Wire Storage Controller + 5590 T540-5090 Unified Wire Storage Controller + 5591 T522-5091 Unified Wire Storage Controller + 5592 T520-5092 Unified Wire Storage Controller + 5593 T580-5093 Unified Wire Storage Controller + 5594 T540-5094 Unified Wire Storage Controller + 5595 T540-5095 Unified Wire Storage Controller + 5596 T580-5096 Unified Wire Storage Controller + 5597 T520-5097 Unified Wire Storage Controller + 5598 T580-5098 Unified Wire Storage Controller + 5599 T580-5099 Unified Wire Storage Controller + 559a T520-509A Unified Wire Storage Controller + 559b T540-509B Unified Wire Storage Controller + 559c T520-509C Unified Wire Storage Controller + 559d T540-509D Unified Wire Storage Controller + 559e T520-509E Unified Wire Storage Controller + 559f T540-509F Unified Wire Storage Controller + 55a0 T540-50A0 Unified Wire Storage Controller + 55a1 T540-50A1 Unified Wire Storage Controller + 55a2 T580-50A2 Unified Wire Storage Controller + 55a3 T580-50A3 Unified Wire Storage Controller + 55a4 T540-50A4 Unified Wire Storage Controller + 55a5 T522-50A5 Unified Wire Storage Controller + 55a6 T522-50A6 Unified Wire Storage Controller + 55a7 T580-50A7 Unified Wire Storage Controller + 55a8 T580-50A8 Unified Wire Storage Controller + 55a9 T580-50A9 Unified Wire Storage Controller + 55aa T580-50AA Unified Wire Storage Controller + 55ab T520-50AB Unified Wire Storage Controller + 55ac T540-50AC Unified Wire Storage Controller + 55ad T520-50AD Unified Wire Storage Controller + 55ae T540-50AE Unified Wire Storage Controller + 55af T580-50AF Unified Wire Storage Controller + 55b0 T520-50B0 Unified Wire Storage Controller + 5601 T520-CR Unified Wire Storage Controller + 5602 T522-CR Unified Wire Storage Controller + 5603 T540-CR Unified Wire Storage Controller + 5604 T520-BCH Unified Wire Storage Controller + 5605 T540-BCH Unified Wire Storage Controller + 5606 T540-CH Unified Wire Storage Controller + 5607 T520-SO Unified Wire Storage Controller + 5608 T520-CX Unified Wire Storage Controller + 5609 T520-BT Unified Wire Storage Controller + 560a T504-BT Unified Wire Storage Controller + 560b B520-SR Unified Wire Storage Controller + 560c B504-BT Unified Wire Storage Controller + 560d T580-CR Unified Wire Storage Controller + 560e T540-LP-CR Unified Wire Storage Controller + 560f T540 [Amsterdam] Unified Wire Storage Controller + 5610 T580-LP-CR Unified Wire Storage Controller + 5611 T520-LL-CR Unified Wire Storage Controller + 5612 T560-CR Unified Wire Storage Controller + 5613 T580-CHR Unified Wire Storage Controller + 5614 T580-SO-CR Unified Wire Storage Controller + 5615 T502-BT Unified Wire Storage Controller + 5616 T580-OCP-SO Unified Wire Storage Controller + 5617 T520-OCP-SO Unified Wire Storage Controller + 5618 T540-BT Unified Wire Storage Controller + 5619 T540-LP-BT Unified Wire Storage Controller + 561a T540-SO-BT Unified Wire Storage Controller + 561b T540-SO-CR Unified Wire Storage Controller + 5680 T540-5080 Unified Wire Storage Controller + 5681 T540-5081 Unified Wire Storage Controller + 5682 T504-5082 Unified Wire Storage Controller + 5683 T540-5083 Unified Wire Storage Controller + 5684 T540-5084 Unified Wire Storage Controller + 5685 T580-5085 Unified Wire Storage Controller + 5686 T580-5086 Unified Wire Storage Controller + 5687 T580-5087 Unified Wire Storage Controller + 5688 T570-5088 Unified Wire Storage Controller + 5689 T520-5089 Unified Wire Storage Controller + 5690 T540-5090 Unified Wire Storage Controller + 5691 T522-5091 Unified Wire Storage Controller + 5692 T520-5092 Unified Wire Storage Controller + 5693 T580-5093 Unified Wire Storage Controller + 5694 T540-5094 Unified Wire Storage Controller + 5695 T540-5095 Unified Wire Storage Controller + 5696 T580-5096 Unified Wire Storage Controller + 5697 T520-5097 Unified Wire Storage Controller + 5698 T580-5098 Unified Wire Storage Controller + 5699 T580-5099 Unified Wire Storage Controller + 569a T520-509A Unified Wire Storage Controller + 569b T540-509B Unified Wire Storage Controller + 569c T520-509C Unified Wire Storage Controller + 569d T540-509D Unified Wire Storage Controller + 569e T520-509E Unified Wire Storage Controller + 569f T540-509F Unified Wire Storage Controller + 56a0 T540-50A0 Unified Wire Storage Controller + 56a1 T540-50A1 Unified Wire Storage Controller + 56a2 T580-50A2 Unified Wire Storage Controller + 56a3 T580-50A3 Unified Wire Storage Controller + 56a4 T540-50A4 Unified Wire Storage Controller + 56a5 T522-50A5 Unified Wire Storage Controller + 56a6 T522-50A6 Unified Wire Storage Controller + 56a7 T580-50A7 Unified Wire Storage Controller + 56a8 T580-50A8 Unified Wire Storage Controller + 56a9 T580-50A9 Unified Wire Storage Controller + 56aa T580-50AA Unified Wire Storage Controller + 56ab T520-50AB Unified Wire Storage Controller + 56ac T540-50AC Unified Wire Storage Controller + 56ad T520-50AD Unified Wire Storage Controller + 56ae T540-50AE Unified Wire Storage Controller + 56af T580-50AF Unified Wire Storage Controller + 56b0 T520-50B0 Unified Wire Storage Controller + 5701 T520-CR Unified Wire Ethernet Controller + 5702 T522-CR Unified Wire Ethernet Controller + 5703 T540-CR Unified Wire Ethernet Controller + 5704 T520-BCH Unified Wire Ethernet Controller + 5705 T540-BCH Unified Wire Ethernet Controller + 5706 T540-CH Unified Wire Ethernet Controller + 5707 T520-SO Unified Wire Ethernet Controller + 5708 T520-CX Unified Wire Ethernet Controller + 5709 T520-BT Unified Wire Ethernet Controller + 570a T504-BT Unified Wire Ethernet Controller + 570b B520-SR Unified Wire Ethernet Controller + 570c B504-BT Unified Wire Ethernet Controller + 570d T580-CR Unified Wire Ethernet Controller + 570e T540-LP-CR Unified Wire Ethernet Controller + 570f T540 [Amsterdam] Unified Wire Ethernet Controller + 5710 T580-LP-CR Unified Wire Ethernet Controller + 5711 T520-LL-CR Unified Wire Ethernet Controller + 5712 T560-CR Unified Wire Ethernet Controller + 5713 T580-CR Unified Wire Ethernet Controller + 5714 T580-SO-CR Unified Wire Ethernet Controller + 5715 T502-BT Unified Wire Ethernet Controller + 5780 T540-5080 Unified Wire Ethernet Controller + 5781 T540-5081 Unified Wire Ethernet Controller + 5782 T504-5082 Unified Wire Ethernet Controller + 5783 T540-5083 Unified Wire Ethernet Controller + 5784 T580-5084 Unified Wire Ethernet Controller + 5785 T580-5085 Unified Wire Ethernet Controller + 5786 T580-5086 Unified Wire Ethernet Controller + 5787 T580-5087 Unified Wire Ethernet Controller + 5788 T570-5088 Unified Wire Ethernet Controller + 5789 T520-5089 Unified Wire Ethernet Controller + 5790 T540-5090 Unified Wire Ethernet Controller + 5791 T522-5091 Unified Wire Ethernet Controller + 5792 T520-5092 Unified Wire Ethernet Controller + 5793 T580-5093 Unified Wire Ethernet Controller + 5794 T540-5094 Unified Wire Ethernet Controller + 5795 T540-5095 Unified Wire Ethernet Controller + 5796 T580-5096 Unified Wire Ethernet Controller + 5797 T520-5097 Unified Wire Ethernet Controller + 5801 T520-CR Unified Wire Ethernet Controller [VF] + 5802 T522-CR Unified Wire Ethernet Controller [VF] + 5803 T540-CR Unified Wire Ethernet Controller [VF] + 5804 T520-BCH Unified Wire Ethernet Controller [VF] + 5805 T540-BCH Unified Wire Ethernet Controller [VF] + 5806 T540-CH Unified Wire Ethernet Controller [VF] + 5807 T520-SO Unified Wire Ethernet Controller [VF] + 5808 T520-CX Unified Wire Ethernet Controller [VF] + 5809 T520-BT Unified Wire Ethernet Controller [VF] + 580a T504-BT Unified Wire Ethernet Controller [VF] + 580b B520-SR Unified Wire Ethernet Controller [VF] + 580c B504-BT Unified Wire Ethernet Controller [VF] + 580d T580-CR Unified Wire Ethernet Controller [VF] + 580e T540-LP-CR Unified Wire Ethernet Controller [VF] + 580f T540 [Amsterdam] Unified Wire Ethernet Controller [VF] + 5810 T580-LP-CR Unified Wire Ethernet Controller [VF] + 5811 T520-LL-CR Unified Wire Ethernet Controller [VF] + 5812 T560-CR Unified Wire Ethernet Controller [VF] + 5813 T580-CHR Unified Wire Ethernet Controller [VF] + 5814 T580-SO-CR Unified Wire Ethernet Controller [VF] + 5815 T502-BT Unified Wire Ethernet Controller [VF] + 5816 T580-OCP-SO Unified Wire Ethernet Controller [VF] + 5817 T520-OCP-SO Unified Wire Ethernet Controller [VF] + 5818 T540-BT Unified Wire Ethernet Controller [VF] + 5819 T540-LP-BT Unified Wire Ethernet Controller [VF] + 581a T540-SO-BT Unified Wire Ethernet Controller [VF] + 581b T540-SO-CR Unified Wire Ethernet Controller [VF] + 5880 T540-5080 Unified Wire Ethernet Controller [VF] + 5881 T540-5081 Unified Wire Ethernet Controller [VF] + 5882 T504-5082 Unified Wire Ethernet Controller [VF] + 5883 T540-5083 Unified Wire Ethernet Controller [VF] + 5884 T540-5084 Unified Wire Ethernet Controller [VF] + 5885 T580-5085 Unified Wire Ethernet Controller [VF] + 5886 T580-5086 Unified Wire Ethernet Controller [VF] + 5887 T580-5087 Unified Wire Ethernet Controller [VF] + 5888 T570-5088 Unified Wire Ethernet Controller [VF] + 5889 T520-5089 Unified Wire Ethernet Controller [VF] + 5890 T540-5090 Unified Wire Ethernet Controller [VF] + 5891 T522-5091 Unified Wire Ethernet Controller [VF] + 5892 T520-5092 Unified Wire Ethernet Controller [VF] + 5893 T580-5093 Unified Wire Ethernet Controller [VF] + 5894 T540-5094 Unified Wire Ethernet Controller [VF] + 5895 T540-5095 Unified Wire Ethernet Controller [VF] + 5896 T580-5096 Unified Wire Ethernet Controller [VF] + 5897 T520-5097 Unified Wire Ethernet Controller [VF] + 5898 T580-5098 Unified Wire Ethernet Controller [VF] + 5899 T580-5099 Unified Wire Ethernet Controller [VF] + 589a T520-509A Unified Wire Ethernet Controller [VF] + 589b T540-509B Unified Wire Ethernet Controller [VF] + 589c T520-509C Unified Wire Ethernet Controller [VF] + 589d T540-509D Unified Wire Ethernet Controller [VF] + 589e T520-509E Unified Wire Ethernet Controller [VF] + 589f T540-509F Unified Wire Ethernet Controller [VF] + 58a0 T540-50A0 Unified Wire Ethernet Controller [VF] + 58a1 T540-50A1 Unified Wire Ethernet Controller [VF] + 58a2 T580-50A2 Unified Wire Ethernet Controller [VF] + 58a3 T580-50A3 Unified Wire Ethernet Controller [VF] + 58a4 T540-50A4 Unified Wire Ethernet Controller [VF] + 58a5 T522-50A5 Unified Wire Ethernet Controller [VF] + 58a6 T522-50A6 Unified Wire Ethernet Controller [VF] + 58a7 T580-50A7 Unified Wire Ethernet Controller [VF] + 58a8 T580-50A8 Unified Wire Ethernet Controller [VF] + 58a9 T580-50A9 Unified Wire Ethernet Controller [VF] + 58aa T580-50AA Unified Wire Ethernet Controller [VF] + 58ab T520-50AB Unified Wire Ethernet Controller [VF] + 58ac T540-50AC Unified Wire Ethernet Controller [VF] + 58ad T520-50AD Unified Wire Ethernet Controller [VF] + 58ae T540-50AE Unified Wire Ethernet Controller [VF] + 58af T580-50AF Unified Wire Ethernet Controller [VF] + 58b0 T520-50B0 Unified Wire Ethernet Controller [VF] + 6001 T6225-CR Unified Wire Ethernet Controller + 6002 T6225-SO-CR Unified Wire Ethernet Controller + 6003 T6425-CR Unified Wire Ethernet Controller + 6004 T6425-SO-CR Unified Wire Ethernet Controller + 6005 T6225-OCP-SO Unified Wire Ethernet Controller + 6006 T62100-OCP-SO Unified Wire Ethernet Controller + 6007 T62100-LP-CR Unified Wire Ethernet Controller + 6008 T62100-SO-CR Unified Wire Ethernet Controller + 6009 T6210-BT Unified Wire Ethernet Controller + 600d T62100-CR Unified Wire Ethernet Controller + 6011 T6225-LL-CR Unified Wire Ethernet Controller + 6014 T61100-OCP-SO Unified Wire Ethernet Controller + 6015 T6201-BT Unified Wire Ethernet Controller + 6080 T6225-6080 Unified Wire Ethernet Controller + 6081 T62100-6081 Unified Wire Ethernet Controller + 6082 T6225-6082 Unified Wire Ethernet Controller + 6083 T62100-6083 Unified Wire Ethernet Controller + 6084 T64100-6084 Unified Wire Ethernet Controller + 6085 T6240-6085 Unified Wire Ethernet Controller + 6086 T6225-6086 Unified Wire Ethernet Controller + 6087 T6225-6087 Unified Wire Ethernet Controller + 6088 T62100-6088 Unified Wire Ethernet Controller + 6089 T62100-6089 Unified Wire Ethernet Controller + 608a T62100-608a Unified Wire Ethernet Controller + 6401 T6225-CR Unified Wire Ethernet Controller + 6402 T6225-SO-CR Unified Wire Ethernet Controller + 6403 T6425-CR Unified Wire Ethernet Controller + 6404 T6425-SO-CR Unified Wire Ethernet Controller + 6405 T6225-OCP-SO Unified Wire Ethernet Controller + 6406 T62100-OCP-SO Unified Wire Ethernet Controller + 6407 T62100-LP-CR Unified Wire Ethernet Controller + 6408 T62100-SO-CR Unified Wire Ethernet Controller + 6409 T6210-BT Unified Wire Ethernet Controller + 640d T62100-CR Unified Wire Ethernet Controller + 6411 T6225-LL-CR Unified Wire Ethernet Controller + 6414 T61100-OCP-SO Unified Wire Ethernet Controller + 6415 T6201-BT Unified Wire Ethernet Controller + 6480 T6225-6080 Unified Wire Ethernet Controller + 6481 T62100-6081 Unified Wire Ethernet Controller + 6482 T6225-6082 Unified Wire Ethernet Controller + 6483 T62100-6083 Unified Wire Ethernet Controller + 6484 T64100-6084 Unified Wire Ethernet Controller + 6485 T6240-6085 Unified Wire Ethernet Controller + 6486 T6225-6086 Unified Wire Ethernet Controller + 6487 T6225-6087 Unified Wire Ethernet Controller + 6488 T62100-6088 Unified Wire Ethernet Controller + 6489 T62100-6089 Unified Wire Ethernet Controller + 648a T62100-608a Unified Wire Ethernet Controller + 6501 T6225-CR Unified Wire Storage Controller + 6502 T6225-SO-CR Unified Wire Storage Controller + 6503 T6425-CR Unified Wire Storage Controller + 6504 T6425-SO-CR Unified Wire Storage Controller + 6505 T6225-OCP-SO Unified Wire Storage Controller + 6506 T62100-OCP-SO Unified Wire Storage Controller + 6507 T62100-LP-CR Unified Wire Storage Controller + 6508 T62100-SO-CR Unified Wire Storage Controller + 6509 T6210-BT Unified Wire Storage Controller + 650d T62100-CR Unified Wire Storage Controller + 6511 T6225-LL-CR Unified Wire Storage Controller + 6514 T61100-OCP-SO Unified Wire Storage Controller + 6515 T6201-BT Unified Wire Storage Controller + 6580 T6225-6080 Unified Wire Storage Controller + 6581 T62100-6081 Unified Wire Storage Controller + 6582 T6225-6082 Unified Wire Storage Controller + 6583 T62100-6083 Unified Wire Storage Controller + 6584 T64100-6084 Unified Wire Storage Controller + 6585 T6240-6085 Unified Wire Storage Controller + 6586 T6225-6086 Unified Wire Storage Controller + 6587 T6225-6087 Unified Wire Storage Controller + 6588 T62100-6088 Unified Wire Storage Controller + 6589 T62100-6089 Unified Wire Storage Controller + 658a T62100-608a Unified Wire Storage Controller + 6601 T6225-CR Unified Wire Storage Controller + 6602 T6225-SO-CR Unified Wire Storage Controller + 6603 T6425-CR Unified Wire Storage Controller + 6604 T6425-SO-CR Unified Wire Storage Controller + 6605 T6225-OCP-SO Unified Wire Storage Controller + 6606 T62100-OCP-SO Unified Wire Storage Controller + 6607 T62100-LP-CR Unified Wire Storage Controller + 6608 T62100-SO-CR Unified Wire Storage Controller + 6609 T6210-BT Unified Wire Storage Controller + 660d T62100-CR Unified Wire Storage Controller + 6611 T6225-LL-CR Unified Wire Storage Controller + 6614 T61100-OCP-SO Unified Wire Storage Controller + 6615 T6201-BT Unified Wire Storage Controller + 6680 T6225-6080 Unified Wire Storage Controller + 6681 T62100-6081 Unified Wire Storage Controller + 6682 T6225-6082 Unified Wire Storage Controller + 6683 T62100-6083 Unified Wire Storage Controller + 6684 T64100-6084 Unified Wire Storage Controller + 6685 T6240-6085 Unified Wire Storage Controller + 6686 T6225-6086 Unified Wire Storage Controller + 6687 T6225-6087 Unified Wire Storage Controller + 6688 T62100-6088 Unified Wire Storage Controller + 6689 T62100-6089 Unified Wire Storage Controller + 668a T62100-608a Unified Wire Storage Controller + 6801 T6225-CR Unified Wire Ethernet Controller [VF] + 6802 T6225-SO-CR Unified Wire Ethernet Controller [VF] + 6803 T6425-CR Unified Wire Ethernet Controller [VF] + 6804 T6425-SO-CR Unified Wire Ethernet Controller [VF] + 6805 T6225-OCP-SO Unified Wire Ethernet Controller [VF] + 6806 T62100-OCP-SO Unified Wire Ethernet Controller [VF] + 6807 T62100-LP-CR Unified Wire Ethernet Controller [VF] + 6808 T62100-SO-CR Unified Wire Ethernet Controller [VF] + 6809 T6210-BT Unified Wire Ethernet Controller [VF] + 680d T62100-CR Unified Wire Ethernet Controller [VF] + 6811 T6225-LL-CR Unified Wire Ethernet Controller [VF] + 6814 T61100-OCP-SO Unified Wire Ethernet Controller [VF] + 6815 T6201-BT Unified Wire Ethernet Controller [VF] + 6880 T6225-6080 Unified Wire Ethernet Controller [VF] + 6881 T62100-6081 Unified Wire Ethernet Controller [VF] + 6882 T6225-6082 Unified Wire Ethernet Controller [VF] + 6883 T62100-6083 Unified Wire Ethernet Controller [VF] + 6884 T64100-6084 Unified Wire Ethernet Controller [VF] + 6885 T6240-6085 Unified Wire Ethernet Controller [VF] + 6886 T6225-6086 Unified Wire Ethernet Controller [VF] + 6887 T6225-6087 Unified Wire Ethernet Controller [VF] + 6888 T62100-6088 Unified Wire Ethernet Controller [VF] + 6889 T62100-6089 Unified Wire Ethernet Controller [VF] + 688a T62100-608a Unified Wire Ethernet Controller [VF] + a000 PE10K Unified Wire Ethernet Controller +1426 Storage Technology Corp. +1427 Better On-Line Solutions +1428 Edec Co Ltd +1429 Unex Technology Corp. +142a Kingmax Technology Inc +142b Radiolan +142c Minton Optic Industry Co Ltd +142d Pix stream Inc +142e Vitec Multimedia + 4020 VM2-2 [Video Maker 2] MPEG1/2 Encoder + 4337 VM2-2-C7 [Video Maker 2 rev. C7] MPEG1/2 Encoder +142f Radicom Research Inc +1430 ITT Aerospace/Communications Division +1431 Gilat Satellite Networks +1432 Edimax Computer Co. + 9130 RTL81xx Fast Ethernet +1433 Eltec Elektronik GmbH +# Nee Real Time Devices US Inc. +1435 RTD Embedded Technologies, Inc. + 4520 PCI4520 + 6020 SPM6020 + 6030 SPM6030 + 6420 SPM186420 + 6430 SPM176430 + 6431 SPM176431 + 7520 DM7520 + 7540 SDM7540 + 7820 DM7820 +1436 CIS Technology Inc +1437 Nissin Inc Co +1438 Atmel-dream +1439 Outsource Engineering & Mfg. Inc +143a Stargate Solutions Inc +143b Canon Research Center, America +143c Amlogic Inc +143d Tamarack Microelectronics Inc +143e Jones Futurex Inc +143f Lightwell Co Ltd - Zax Division +1440 ALGOL Corp. +1441 AGIE Ltd +1442 Phoenix Contact GmbH & Co. +1443 Unibrain S.A. +1444 TRW +1445 Logical DO Ltd +1446 Graphin Co Ltd +1447 AIM GmBH +1448 Alesis Studio Electronics +1449 TUT Systems Inc +144a Adlink Technology + 6208 PCI-6208V + 7250 PCI-7250 + 7296 PCI-7296 + 7432 PCI-7432 + 7433 PCI-7433 + 7434 PCI-7434 + 7841 PCI-7841 + 8133 PCI-8133 + 8164 PCI-8164 + 8554 PCI-8554 + 9111 PCI-9111 + 9113 PCI-9113 + 9114 PCI-9114 +# 2-16 MB SRAM, 4x UART, I2C, misc I/O + a001 ADi-BSEC +# nee Loronix Information Systems Inc. +144b Verint Systems Inc. +144c Catalina Research Inc +144d Samsung Electronics Co Ltd + 1600 Apple PCIe SSD + a544 Exynos 8890 PCIe Root Complex + a800 XP941 PCIe SSD + a802 NVMe SSD Controller SM951/PM951 + 144d a801 PM963 2.5" NVMe PCIe SSD + a804 NVMe SSD Controller SM961/PM961/SM963 + 144d a801 SM963 2.5" NVMe PCIe SSD + a808 NVMe SSD Controller SM981/PM981/PM983 + 144d a801 SSD 970 EVO Plus 1TB + 1d49 403b Thinksystem U.2 PM983 NVMe SSD + a809 NVMe SSD Controller 980 + a80a NVMe SSD Controller PM9A1/PM9A3/980PRO + 0128 215a DC NVMe PM9A3 RI U.2 960GB + 0128 215b DC NVMe PM9A3 RI U.2 1.92TB + 0128 215c DC NVMe PM9A3 RI U.2 3.84TB + 0128 215d DC NVMe PM9A3 RI U.2 7.68TB + 0128 2166 DC NVMe PM9A3 RI 110M.2 960GB + 0128 2167 DC NVMe PM9A3 RI 110M.2 1.92TB + 0128 2168 DC NVMe PM9A3 RI 80M.2 480GB + 0128 2169 DC NVMe PM9A3 RI 80M.2 960GB + 144d a813 General DC NVMe PM9A3 + a820 NVMe SSD Controller 171X + 1028 1f95 Express Flash NVMe XS1715 SSD 400GB + 1028 1f96 Express Flash NVMe XS1715 SSD 800GB + 1028 1f97 Express Flash NVMe XS1715 SSD 1600GB + 1028 1fa4 Express Flash NVMe SM1715 3.2TB SFF + 1028 1fa6 Express Flash NVMe SM1715 3.2TB AIC + 1028 1fba Express Flash NVMe SM1715 800GB SFF + 1028 1fbb Express Flash NVMe SM1715 1.6TB SFF + 1028 1fbc Express Flash NVMe SM1715 1.6TB AIC + a821 NVMe SSD Controller 172X + 1028 1fb7 Express Flash NVMe PM1725 3.2TB SFF + 1028 1fb8 Express Flash NVMe PM1725 3.2TB AIC + 1028 1fb9 Express Flash NVMe PM1725 6.4TB AIC + 1028 1fc1 Express Flash NVMe PM1725 800GB SFF + 1028 1fc2 Express Flash NVMe PM1725 1.6TB SFF + 1028 1fc4 Express Flash NVMe PM1725 1.6TB AIC + a822 NVMe SSD Controller 172Xa/172Xb + 1014 0621 PCIe3 1.6TB NVMe Flash Adapter II x8 + 1014 0622 PCIe3 3.2TB NVMe Flash Adapter II x8 + 1014 0629 PCIe3 6.4TB NVMe Flash Adapter II x8 + 1014 064a PCIe3 1.6TB NVMe Flash Adapter III x8 + 1014 064b PCIe3 3.2TB NVMe Flash Adapter III x8 + 1014 064c PCIe3 6.4TB NVMe Flash Adapter III x8 + 1028 1fd9 Express Flash PM1725a 800GB SFF + 1028 1fda Express Flash PM1725a 1.6TB SFF + 1028 1fdb Express Flash PM1725a 3.2TB SFF + 1028 1fdc Express Flash PM1725a 6.4TB SFF + 1028 1fdd Express Flash PM1725a 1.6TB AIC + 1028 1fde Express Flash PM1725a 3.2TB AIC + 1028 1fdf Express Flash PM1725a 6.4TB AIC + 1028 1ff3 Express Flash PM1725b 1.6TB SFF + 1028 1ff4 Express Flash PM1725b 3.2TB SFF + 1028 1ff5 Express Flash PM1725b 6.4TB SFF + 1028 1ff6 Express Flash PM1725b 12.8TB SFF + 1028 1ff7 Express Flash PM1725b 1.6TB AIC + 1028 1ff8 Express Flash PM1725b 3.2TB AIC + 1028 1ff9 Express Flash PM1725b 6.4TB AIC + 1028 1ffa Express Flash PM1725b 12.8TB AIC + a824 NVMe SSD Controller PM173X + 1028 2040 EMC PowerEdge Express Flash Ent NVMe AGN MU U.2 Gen4 1.6TB + 1028 2041 EMC PowerEdge Express Flash Ent NVMe AGN MU U.2 Gen4 3.2TB + 1028 2042 EMC PowerEdge Express Flash Ent NVMe AGN MU U.2 Gen4 6.4TB + 1028 2043 EMC PowerEdge Express Flash Ent NVMe AGN MU U.2 Gen4 12.8TB + 1028 2044 EMC PowerEdge Express Flash Ent NVMe AGN MU AIC Gen4 1.6TB + 1028 2045 EMC PowerEdge Express Flash Ent NVMe AGN MU AIC Gen4 3.2TB + 1028 2046 EMC PowerEdge Express Flash Ent NVMe AGN MU AIC Gen4 6.4TB + 1028 2070 EMC PowerEdge Express Flash Ent NVMe AGN RI U.2 Gen4 1.92TB + 1028 2071 EMC PowerEdge Express Flash Ent NVMe AGN RI U.2 Gen4 3.84TB + 1028 2072 EMC PowerEdge Express Flash Ent NVMe AGN RI U.2 Gen4 7.68TB + 1028 2073 EMC PowerEdge Express Flash Ent NVMe AGN RI U.2 Gen4 15.36TB + 1028 2074 EMC PowerEdge Express Flash Ent NVMe AGN RI AIC Gen4 1.92TB + 1028 2075 EMC PowerEdge Express Flash Ent NVMe AGN RI AIC Gen4 3.84TB + 1028 2076 EMC PowerEdge Express Flash Ent NVMe AGN RI AIC Gen4 7.68TB + 1028 2090 EMC PowerEdge Express Flash Ent NVMe AGN SED MU U.2 Gen4 1.6TB + 1028 2091 EMC PowerEdge Express Flash Ent NVMe AGN SED MU U.2 Gen4 3.2TB + 1028 2092 EMC PowerEdge Express Flash Ent NVMe AGN SED MU U.2 Gen4 6.4TB + 1028 2093 EMC PowerEdge Express Flash Ent NVMe AGN SED MU U.2 Gen4 12.8TB + 1028 2094 EMC PowerEdge Express Flash Ent NVMe AGN SED MU AIC Gen4 1.6TB + 1028 2095 EMC PowerEdge Express Flash Ent NVMe AGN SED MU AIC Gen4 3.2TB + 1028 2096 EMC PowerEdge Express Flash Ent NVMe AGN SED MU AIC Gen4 6.4TB + 1028 2097 EMC PowerEdge Express Flash Ent NVMe AGN SED RI U.2 Gen4 1.92TB + 1028 2098 EMC PowerEdge Express Flash Ent NVMe AGN SED RI U.2 Gen4 3.84TB + 1028 2099 EMC PowerEdge Express Flash Ent NVMe AGN SED RI U.2 Gen4 7.68TB + 1028 2118 Ent NVMe v2 AGN FIPS MU U.2 1.6TB + 1028 2119 Ent NVMe v2 AGN MU U.2 1.6TB + 1028 2120 Ent NVMe v2 AGN FIPS MU U.2 3.2T + 1028 2121 Ent NVMe v2 AGN MU U.2 3.2TB + 1028 2122 Ent NVMe v2 AGN FIPS MU U.2 6.4TB + 1028 2123 Ent NVMe v2 AGN MU U.2 6.4TB + 1028 2124 Ent NVMe v2 AGN FIPS MU U.2 6.4TB + 1028 2125 Ent NVMe v2 AGN MU U.2 12.8TB + 1028 2126 Ent NVMe v2 AGN FIPS RI U.2 1.92TB + 1028 2127 Ent NVMe v2 AGN RI U.2 1.92TB + 1028 2128 Ent NVMe v2 AGN FIPS RI U.2 3.84TB + 1028 2129 Ent NVMe v2 AGN RI U.2 3.84TB + 1028 2130 Ent NVMe v2 AGN FIPS RI U.2 7.68TB + 1028 2131 Ent NVMe v2 AGN RI U.2 7.68TB + 1028 2132 Ent NVMe v2 AGN FIPS RI U.2 15.36TB + 1028 2133 Ent NVMe v2 AGN RI U.2 15.36TB + a825 NVMe SSD Controller PM173Xa + a826 NVMe SSD Controller PM174X + ecec Exynos 8895 PCIe Root Complex +144e OLITEC +144f Askey Computer Corp. +1450 Octave Communications Ind. +1451 SP3D Chip Design GmBH +1453 MYCOM Inc +1454 Altiga Networks +1455 Logic Plus Plus Inc +1456 Advanced Hardware Architectures +1457 Nuera Communications Inc +1458 Gigabyte Technology Co., Ltd + 22e8 Ellesmere [Radeon RX 480] + 3483 USB 3.0 Controller (VIA VL80x-based xHCI Controller) +1459 DOOIN Electronics +145a Escalate Networks Inc +145b PRAIM SRL +145c Cryptek +145d Gallant Computer Inc +145e Aashima Technology B.V. +145f Baldor Electric Company + 0001 NextMove PCI +1460 DYNARC INC +1461 Avermedia Technologies Inc + a3ce M179 + a3cf M179 + a836 M115 DVB-T, PAL/SECAM/NTSC Tuner + e836 M115S Hybrid Analog/DVB PAL/SECAM/NTSC Tuner + f436 AVerTV Hybrid+FM +1462 Micro-Star International Co., Ltd. [MSI] +# VIA Driver-inf + 3483 MSI USB 3.0 (VIA VL80x-based xHCI USB Controller) + 7c56 Realtek Ethernet controller RTL8111H + aaf0 Radeon RX 580 Gaming X 8G +1463 Fast Corporation +1464 Interactive Circuits & Systems Ltd +1465 GN NETTEST Telecom DIV. +1466 Designpro Inc. +1467 DIGICOM SPA +1468 AMBIT Microsystem Corp. +1469 Cleveland Motion Controls +# formerly IFR. +146a Aeroflex +# 1.5 GHz to 3.0 GHz x 1Hz + 3010 3010 RF Synthesizer + 3a11 3011A PXI RF Synthesizer +146b Parascan Technologies Ltd +146c Ruby Tech Corp. + 1430 FE-1430TX Fast Ethernet PCI Adapter +146d Tachyon, INC. +146e Williams Electronics Games, Inc. +146f Multi Dimensional Consulting Inc +1470 Bay Networks +1471 Integrated Telecom Express Inc +1472 DAIKIN Industries, Ltd +1473 ZAPEX Technologies Inc +1474 Doug Carson & Associates +1475 PICAZO Communications +1476 MORTARA Instrument Inc +1477 Net Insight +1478 DIATREND Corporation +1479 TORAY Industries Inc +147a FORMOSA Industrial Computing +147b ABIT Computer Corp. + 1084 IP35 [Dark Raider] +147c AWARE, Inc. +147d Interworks Computer Products +147e Matsushita Graphic Communication Systems, Inc. +147f NIHON UNISYS, Ltd. +1480 SCII Telecom +1481 BIOPAC Systems Inc +1482 ISYTEC - Integrierte Systemtechnik GmBH + 0001 PCI-16 Host Interface for ITC-16 +1483 LABWAY Corporation +1484 Logic Corporation +1485 ERMA - Electronic GmBH +1486 L3 Communications Telemetry & Instrumentation +1487 MARQUETTE Medical Systems +1489 KYE Systems Corporation +148a OPTO +148b INNOMEDIALOGIC Inc. +148c Tul Corporation / PowerColor + 2391 Radeon RX 590 [Red Devil] +148d DIGICOM Systems, Inc. + 1003 HCF 56k Data/Fax Modem +148e OSI Plus Corporation +148f Plant Equipment, Inc. +1490 Stone Microsystems PTY Ltd. +1491 ZEAL Corporation +1492 Time Logic Corporation +1493 MAKER Communications +1494 WINTOP Technology, Inc. +1495 TOKAI Communications Industry Co. Ltd +1496 JOYTECH Computer Co., Ltd. +1497 SMA Regelsysteme GmBH + 1497 SMA Technologie AG +1498 TEWS Technologies GmbH + 0330 TPMC816 2 Channel CAN bus controller. + 035d TPMC861 4-Channel Isolated Serial Interface RS422/RS485 + 0385 TPMC901 Extended CAN bus with 2/4/6 CAN controller + 21cc TCP460 CompactPCI 16 Channel Serial Interface RS232/RS422 + 21cd TCP461 CompactPCI 8 Channel Serial Interface RS232/RS422 + 3064 TPCI100 (2 Slot IndustryPack PCI Carrier) + 30c8 TPCI200 4 Slot IndustryPack PCI Carrier + 70c8 TPCE200 4 Slot IndustryPack PCIe Carrier + 9177 TXMC375 8 channel RS232/RS422/RS485 programmable serial interface +1499 EMTEC CO., Ltd +149a ANDOR Technology Ltd +149b SEIKO Instruments Inc +149c OVISLINK Corp. +149d NEWTEK Inc + 0001 Video Toaster for PC +149e Mapletree Networks Inc. +149f LECTRON Co Ltd +14a0 SOFTING GmBH +14a1 Systembase Co Ltd +14a2 Millennium Engineering Inc +14a3 Maverick Networks +14a4 Lite-On Technology Corporation + 22f1 M8Pe Series NVMe SSD +# Wrong vendor ID used + 4318 Broadcom BCM4318 [AirForce One 54g] 802.11g WLAN Controller +14a5 XIONICS Document Technologies Inc +14a6 INOVA Computers GmBH & Co KG +14a7 MYTHOS Systems Inc +14a8 FEATRON Technologies Corporation +14a9 HIVERTEC Inc +14aa Advanced MOS Technology Inc +# nee Mentor Graphics Corp. +14ab Siemens Industry Software Inc. +14ac Novaweb Technologies Inc +14ad Time Space Radio AB +14ae CTI, Inc +14af Guillemot Corporation + 7102 3D Prophet II MX +14b0 BST Communication Technology Ltd +14b1 Nextcom K.K. +14b2 ENNOVATE Networks Inc +14b3 XPEED Inc + 0000 DSL NIC +14b4 PHILIPS Business Electronics B.V. +14b5 Creamware GmBH + 0200 Scope + 0300 Pulsar + 0400 PulsarSRB + 0600 Pulsar2 + 0800 DSP-Board + 0900 DSP-Board + 0a00 DSP-Board + 0b00 DSP-Board +14b6 Quantum Data Corp. +14b7 PROXIM Inc + 0001 Symphony 4110 +14b8 Techsoft Technology Co Ltd +14b9 Cisco Aironet Wireless Communications + 0001 PC4800 + 0340 PC4800 + 0350 350 series 802.11b Wireless LAN Adapter + 4500 PC4500 + 4800 Cisco Aironet 340 802.11b Wireless LAN Adapter/Aironet PC4800 + a504 Cisco Aironet Wireless 802.11b + a505 Cisco Aironet CB20a 802.11a Wireless LAN Adapter + a506 Cisco Aironet Mini PCI b/g +14ba INTERNIX Inc. +# ARCNET interface card based on SMSC COM20022 chip and manufactured for SMSC Japan + 0600 ARC-PCI/22 +14bb SEMTECH Corporation +14bc Globespan Semiconductor Inc. + d002 Pulsar [PCI ADSL Card] + d00f Pulsar [PCI ADSL Card] +14bd CARDIO Control N.V. +14be L3 Communications +14bf SPIDER Communications Inc. +14c0 COMPAL Electronics Inc + 1201 X550 10Gb 2P RJ45 OCP Mezz +# now owned by CSP, Inc. +14c1 MYRICOM Inc. + 0008 Myri-10G Dual-Protocol NIC + 14c1 0008 10G-PCIE-8A + 14c1 0009 10G-PCIE-8A (MSI-X firmware) + 14c1 000a 10G-PCIE-8B + 8043 Myrinet 2000 Scalable Cluster Interconnect + 103c 1240 Myrinet M2L-PCI64/2-3.0 LANai 7.4 (HP OEM) +14c2 DTK Computer +14c3 MEDIATEK Corp. + 0608 RZ608 Wi-Fi 6E 80MHz + 0616 MT7922 802.11ax PCI Express Wireless Network Adapter + 7612 MT7612E 802.11acbgn PCI Express Wireless Network Adapter + 7615 MT7615E 802.11ac PCI Express Wireless Network Adapter + 7630 MT7630e 802.11bgn Wireless Network Adapter +# MT7612E too? + 7662 MT7662E 802.11ac PCI Express Wireless Network Adapter + 7915 MT7915E 802.11ax PCI Express Wireless Network Adapter + 7961 MT7921 802.11ax PCI Express Wireless Network Adapter +14c4 IWASAKI Information Systems Co Ltd +14c5 Automation Products AB +14c6 Data Race Inc +14c7 Modular Technology Holdings Ltd +14c8 Turbocomm Tech. Inc. +14c9 ODIN Telesystems Inc +14ca PE Logic Corp. +14cb Billionton Systems Inc +14cc NAKAYO Telecommunications Inc +14cd Universal Global Scientific Industrial Co.,Ltd + 0001 USI-1514-1GbaseT [OCP1] + 0002 USI-4227-SFP [OCP2] + 0003 USI-X557-10GbaseT [OCP3] +14ce Whistle Communications +14cf TEK Microsystems Inc. +14d0 Ericsson Axe R & D +14d1 Computer Hi-Tech Co Ltd +14d2 Titan Electronics Inc + 8001 VScom 010L 1 port parallel adaptor + 8002 VScom 020L 2 port parallel adaptor + 8010 VScom 100L 1 port serial adaptor + 8011 VScom 110L 1 port serial and 1 port parallel adaptor + 8020 VScom 200L 1 or 2 port serial adaptor + 8021 VScom 210L 2 port serial and 1 port parallel adaptor + 8028 VScom 200I/200I-SI 2-port serial adapter + 8040 VScom 400L 4 port serial adaptor + 8043 VScom 430L 4-port serial and 3-port parallel adapter + 8048 VScom 400I 4-port serial adapter + 8080 VScom 800L 8 port serial adaptor + 8088 VScom 800I 8-port serial adapter + a000 VScom 010H 1 port parallel adaptor + a001 VScom 100H 1 port serial adaptor + a003 VScom 400H 4 port serial adaptor + a004 VScom 400HF1 4 port serial adaptor + a005 VScom 200H 2 port serial adaptor + a007 VScom PCI800EH (PCIe) 8-port serial adapter Port 1-4 + a008 VScom PCI800EH (PCIe) 8-port serial adapter Port 5-8 + a009 VScom PCI400EH (PCIe) 4-port serial adapter + e001 VScom 010HV2 1 port parallel adaptor + e010 VScom 100HV2 1 port serial adaptor + e020 VScom 200HV2 2 port serial adaptor +14d3 CIRTECH (UK) Ltd + 0002 DTL-T14000 Rev. 1 [PS2 TOOL CD/DVD Emulator] + 0003 DTL-T14000 Rev. 2 [PS2 TOOL CD/DVD Emulator] + 0004 DTL-T14000 Rev. 3 [PS2 TOOL CD/DVD Emulator] +14d4 Panacom Technology Corp +14d5 Nitsuko Corporation +14d6 Accusys Inc + 6101 ACS-61xxx, PCIe to SAS/SATA RAID HBA + 6201 ACS-62xxx, External PCIe to SAS/SATA RAID controller +14d7 Hirakawa Hewtech Corp +14d8 HOPF Elektronik GmBH +# Formerly SiPackets, Inc., formerly API NetWorks, Inc., formerly Alpha Processor, Inc. +14d9 Alliance Semiconductor Corporation + 0010 AP1011/SP1011 HyperTransport-PCI Bridge [Sturgeon] + 9000 AS90L10204/10208 HyperTransport to PCI-X Bridge +14da National Aerospace Laboratories +14db AFAVLAB Technology Inc + 2120 TK9902 + 2182 AFAVLAB Technology Inc. 8-port serial card +14dc Amplicon Liveline Ltd + 0000 PCI230 + 0001 PCI242 + 0002 PCI244 + 0003 PCI247 + 0004 PCI248 + 0005 PCI249 + 0006 PCI260 + 0007 PCI224 + 0008 PCI234 + 0009 PCI236 + 000a PCI272 + 000b PCI215 +14dd Boulder Design Labs Inc +14de Applied Integration Corporation +14df ASIC Communications Corp +14e1 INVERTEX +14e2 INFOLIBRIA +14e3 AMTELCO +14e4 Broadcom Inc. and subsidiaries + 0576 BCM43224 802.11a/b/g/n + 0800 Sentry5 Chipcommon I/O Controller + 0804 Sentry5 PCI Bridge + 0805 Sentry5 MIPS32 CPU + 0806 Sentry5 Ethernet Controller + 080b Sentry5 Crypto Accelerator + 080f Sentry5 DDR/SDR RAM Controller + 0811 Sentry5 External Interface Core + 0816 BCM3302 Sentry5 MIPS32 CPU + 1570 720p FaceTime HD Camera + 1600 NetXtreme BCM5752 Gigabit Ethernet PCI Express + 1028 01c1 Precision 490 + 1028 01c2 Latitude D620 + 103c 3015 PCIe LAN on Motherboard + 107b 5048 E4500 Onboard + 1259 2705 AT-2711FX + 1601 NetXtreme BCM5752M Gigabit Ethernet PCI Express + 1604 BCM5745X NetXtreme-E Ethernet Partition + 1605 BCM5745X NetXtreme-E RDMA Partition + 1606 BCM5745X NetXtreme-E RDMA Virtual Function + 1609 BCM5745X NetXtreme-E Ethernet Virtual Function + 1612 BCM70012 Video Decoder [Crystal HD] + 1614 BCM57454 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet + 1615 BCM70015 Video Decoder [Crystal HD] + 1639 NetXtreme II BCM5709 Gigabit Ethernet + 1028 0235 PowerEdge R710 BCM5709 Gigabit Ethernet + 1028 0236 PowerEdge R610 BCM5709 Gigabit Ethernet + 1028 0237 PowerEdge T610 BCM5709 Gigabit Ethernet + 103c 7055 NC382i Integrated Multi-port PCI Express Gigabit Server Adapter + 103c 7059 NC382T PCIe Dual Port Multifunction Gigabit Server Adapter + 10a9 8027 Quad port Gigabit Ethernet Controller + 163a NetXtreme II BCM5709S Gigabit Ethernet + 1028 027b PowerEdge M805 Broadcom NetXtreme II BCM5709S + 1028 029c PowerEdge M710 BCM5709S Gigabit Ethernet + 103c 171d NC382m Dual Port 1GbE Multifunction BL-c Adapter + 103c 7056 NC382i Integrated Quad Port PCI Express Gigabit Server Adapter + 1259 2984 AT-2973SX + 163b NetXtreme II BCM5716 Gigabit Ethernet + 1028 028c PowerEdge R410 BCM5716 Gigabit Ethernet + 1028 028d PowerEdge T410 BCM5716 Gigabit Ethernet + 1028 02f1 PowerEdge R510 BCM5716 Gigabit Ethernet + 163c NetXtreme II BCM5716S Gigabit Ethernet + 163d NetXtreme II BCM57811 10-Gigabit Ethernet + 1043 858a PEB-10G/57811-1S + 163e NetXtreme II BCM57811 10 Gigabit Ethernet Multi Function + 163f NetXtreme II BCM57811 10-Gigabit Ethernet Virtual Function + 1641 NetXtreme BCM57787 Gigabit Ethernet PCIe + 1642 NetXtreme BCM57764 Gigabit Ethernet PCIe + 1643 NetXtreme BCM5725 Gigabit Ethernet PCIe + 1644 NetXtreme BCM5700 Gigabit Ethernet + 1014 0277 Broadcom Vigil B5700 1000Base-T + 1028 00d1 Broadcom BCM5700 + 1028 0106 Broadcom BCM5700 + 1028 0109 Broadcom BCM5700 1000Base-T + 1028 010a Broadcom BCM5700 1000BaseTX + 10b7 1000 3C996-T 1000Base-T + 10b7 1001 3C996B-T 1000Base-T + 10b7 1002 3C996C-T 1000Base-T + 10b7 1003 3C997-T 1000Base-T Dual Port + 10b7 1004 3C996-SX 1000Base-SX + 10b7 1005 3C997-SX 1000Base-SX Dual Port + 10b7 1008 3C942 Gigabit LOM (31X31) + 14e4 0002 NetXtreme 1000Base-SX + 14e4 0003 NetXtreme 1000Base-SX + 14e4 0004 NetXtreme 1000Base-T + 14e4 1028 NetXtreme 1000BaseTX + 14e4 1644 BCM5700 1000Base-T + 1645 NetXtreme BCM5701 Gigabit Ethernet + 0e11 007c NC7770 Gigabit Server Adapter (PCI-X, 10/100/1000-T) + 0e11 007d NC6770 Gigabit Server Adapter (PCI-X, 1000-SX) + 0e11 0085 NC7780 Gigabit Server Adapter (embedded, WOL) + 0e11 0099 NC7780 Gigabit Server Adapter (embedded, WOL) + 0e11 009a NC7770 Gigabit Server Adapter (PCI-X, 10/100/1000-T) + 0e11 00c1 NC6770 Gigabit Server Adapter (PCI-X, 1000-SX) + 1028 0121 Broadcom BCM5701 1000Base-T + 103c 128a BCM5701 1000Base-T (HP, OEM 3COM) + 103c 128b 1000Base-SX (PCI) [A7073A] + 103c 12a4 Core Lan 1000Base-T + 103c 12c1 IOX Core Lan 1000Base-T [A7109AX] + 103c 1300 Core LAN/SCSI Combo [A6794A] + 10a9 8010 IO9/IO10 Gigabit Ethernet (Copper) + 10a9 8011 Gigabit Ethernet (Copper) + 10a9 8012 Gigabit Ethernet (Fiber) + 10b7 1004 3C996-SX 1000Base-SX + 10b7 1006 3C996B-T 1000Base-T + 10b7 1007 3C1000-T 1000Base-T + 10b7 1008 3C940-BR01 1000Base-T + 14e4 0001 BCM5701 1000Base-T + 14e4 0005 BCM5701 1000Base-T + 14e4 0006 BCM5701 1000Base-T + 14e4 0007 BCM5701 1000Base-SX + 14e4 0008 BCM5701 1000Base-T + 14e4 1645 NetXtreme BCM5701 Gigabit Ethernet + 14e4 8008 BCM5701 1000Base-T + 1646 NetXtreme BCM5702 Gigabit Ethernet + 0e11 00bb NC7760 1000BaseTX + 1028 0126 Broadcom BCM5702 1000BaseTX + 14e4 8009 BCM5702 1000BaseTX + 1647 NetXtreme BCM5703 Gigabit Ethernet + 0e11 0099 NC7780 1000BaseTX + 0e11 009a NC7770 1000BaseTX + 10a9 8010 IO9 Gigabit Ethernet (Copper) + 14e4 0009 BCM5703 1000BaseTX + 14e4 000a BCM5703 1000BaseSX + 14e4 000b BCM5703 1000BaseTX + 14e4 8009 BCM5703 1000BaseTX + 14e4 800a BCM5703 1000BaseTX + 1648 NetXtreme BCM5704 Gigabit Ethernet + 0e11 00cf NC7772 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 0e11 00d0 NC7782 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 0e11 00d1 NC7783 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 1028 014a PowerEdge 1750 + 1028 0170 PowerEdge 6850 Broadcom NetXtreme BCM5704 + 103c 310f NC7782 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 10a9 8013 Dual Port Gigabit Ethernet (PCI-X,Copper) + 10a9 8018 Dual Port Gigabit Ethernet (A330) + 10a9 801a Dual Port Gigabit Ethernet (IA-blade) + 10a9 801b Quad Port Gigabit Ethernet (PCI-E,Copper) + 10b7 2000 3C998-T Dual Port 10/100/1000 PCI-X + 10b7 3000 3C999-T Quad Port 10/100/1000 PCI-X + 1166 1648 NetXtreme CIOB-E 1000Base-T + 1734 100b PRIMERGY RX/TX series onboard LAN + 1649 NetXtreme BCM5704S_2 Gigabit Ethernet + 164a NetXtreme II BCM5706 Gigabit Ethernet + 103c 1709 NC371i Integrated PCI-X Multifunction Gigabit Server Adapter + 103c 3070 NC380T PCI Express Dual Port Multifunction Gigabit Server Adapter + 103c 3101 NC370T MultifuNCtion Gigabit Server Adapter + 103c 3106 NC370i Multifunction Gigabit Server Adapter + 164c NetXtreme II BCM5708 Gigabit Ethernet + 1028 01f0 PowerEdge R900 Broadcom NetXtreme II BCM5708 + 1028 0205 PowerEdge 2970 Broadcom NetXtreme II BCM5708 + 1028 020b PowerEdge T605 Broadcom NetXtreme II BCM5708 + 1028 0221 PowerEdge R805 Broadcom NetXtreme II BCM5708 + 1028 0223 PowerEdge R905 Broadcom NetXtreme II BCM5708 + 1028 1f12 PowerEdge R805/R905 Broadcom NetXtreme II BCM5708 + 103c 7037 NC373T PCI Express Multifunction Gigabit Server Adapter + 103c 7038 NC373i Integrated Multifunction Gigabit Server Adapter + 103c 7045 NC374m PCI Express Dual Port Multifunction Gigabit Server Adapter + 164d NetXtreme BCM5702FE Gigabit Ethernet + 164e NetXtreme II BCM57710 10-Gigabit PCIe [Everest] + 103c 171c NC532m Dual Port 10GbE Multifunction BL-C Adapter + 103c 7058 NC532i Dual Port 10GbE Multifunction BL-C Adapter + 164f NetXtreme II BCM57711 10-Gigabit PCIe + 1650 NetXtreme II BCM57711E 10-Gigabit PCIe + 103c 171c NC532m Dual Port 10GbE Multifunction BL-C Adapter + 103c 7058 NC532i Dual Port 10GbE Multifunction BL-C Adapter + 1653 NetXtreme BCM5705 Gigabit Ethernet + 0e11 00e3 NC7761 Gigabit Server Adapter + 1734 1073 Primergy Econel 200 D2020 mainboard + 1654 NetXtreme BCM5705_2 Gigabit Ethernet + 0e11 00e3 NC7761 Gigabit Server Adapter + 103c 3100 NC1020 ProLiant Gigabit Server Adapter 32 PCI + 103c 3226 NC150T 4-port Gigabit Combo Switch & Adapter + 1655 NetXtreme BCM5717 Gigabit Ethernet PCIe + 1656 NetXtreme BCM5718 Gigabit Ethernet PCIe + 1657 NetXtreme BCM5719 Gigabit Ethernet PCIe + 1014 0420 FC 5260/5899 4-port 1 GbE Adapter for Power + 103c 169d Ethernet 1Gb 4-port 331FLR Adapter + 103c 22be Ethernet 1Gb 4-port 331i Adapter + 103c 3383 Ethernet 1Gb 4-port 331T Adapter + 14e4 1904 4-port 1Gb Ethernet Adapter + 1659 NetXtreme BCM5721 Gigabit Ethernet PCI Express + 1014 02c6 eServer xSeries server mainboard + 1028 01e6 PowerEdge 860 + 1028 023c PowerEdge R200 Broadcom NetXtreme BCM5721 + 103c 170b NC320m PCI Express Dual Port Gigabit Server Adapter + 103c 7031 NC320T PCIe Gigabit Server Adapter + 103c 7032 NC320i PCIe Gigabit Server Adapter + 1734 1061 PRIMERGY RX/TX S2 series onboard LAN + 165a NetXtreme BCM5722 Gigabit Ethernet PCI Express +# Dual NIC server + 1014 0378 System x3350 (Machine type 4192) + 1028 020f PowerEdge R300 Broadcom NetXtreme 5722 + 1028 0210 PowerEdge T300 Broadcom NetXtreme 5722 + 1028 0225 PowerEdge T105 Broadcom NetXtreme 5722 + 103c 7051 NC105i PCIe Gigabit Server Adapter + 103c 7052 NC105T PCIe Gigabit Server Adapter + 165b NetXtreme BCM5723 Gigabit Ethernet PCIe + 103c 705d NC107i Integrated PCI Express Gigabit Server Adapter + 165c NetXtreme BCM5724 Gigabit Ethernet PCIe + 165d NetXtreme BCM5705M Gigabit Ethernet + 1028 865d Latitude D400 + 14e4 165d Dell Latitude D600 + 165e NetXtreme BCM5705M_2 Gigabit Ethernet + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 099c NX6110/NC6120 + 10cf 1279 LifeBook E8010D + 165f NetXtreme BCM5720 Gigabit Ethernet PCIe + 1028 04f7 PowerEdge R320 server + 1028 08fd PowerEdge R6515/R7515 LOM + 1028 08ff PowerEdge Rx5xx LOM Board + 1028 0900 PowerEdge C6525 LOM +# Dell 5720 LOM + 1028 0917 PowerEdge C6520 LOM + 103c 1786 NC332T Adapter + 103c 193d NC332i Adapter + 103c 2133 NC332i Adapter + 103c 22e8 NC332i Adapter + 103c 22eb NC332i Adapter + 15d9 165f H12SSL-i + 1662 NetXtreme II BCM57712 10 Gigabit Ethernet + 1663 NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function + 1665 NetXtreme BCM5717 Gigabit Ethernet PCIe + 1668 NetXtreme BCM5714 Gigabit Ethernet + 103c 7039 NC324i PCIe Dual Port Gigabit Server Adapter + 1669 NetXtreme 5714S Gigabit Ethernet + 166a NetXtreme BCM5780 Gigabit Ethernet + 103c 7035 NC325i Integrated Dual port PCIe Express Gigabit Server Adapter + 166b NetXtreme BCM5780S Gigabit Ethernet + 166e 570x 10/100 Integrated Controller + 166f NetXtreme II BCM57712 10 Gigabit Ethernet Virtual Function + 1672 NetXtreme BCM5754M Gigabit Ethernet PCI Express + 1673 NetXtreme BCM5755M Gigabit Ethernet PCI Express + 1674 NetXtreme BCM5756ME Gigabit Ethernet PCI Express + 1677 NetXtreme BCM5751 Gigabit Ethernet PCI Express + 1028 0176 Dimension XPS Gen 4 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 1028 0182 Latitude D610 + 1028 0187 Precision M70 + 1028 01a3 Latitude X1 + 1028 01a8 Precision 380 + 1028 01ad OptiPlex GX620 + 103c 3006 DC7100 SFF(DX878AV) + 1462 028c 915P/G Neo2 + 1734 105d Scenic W620 + 1678 NetXtreme BCM5715 Gigabit Ethernet + 103c 703e NC326i PCIe Dual Port Gigabit Server Adapter + 1679 NetXtreme BCM5715S Gigabit Ethernet + 103c 1707 NC326m PCIe Dual Port Adapter + 103c 170c NC325m PCIe Quad Port Adapter + 103c 703c NC326i PCIe Dual Port Gigabit Server Adapter + 167a NetXtreme BCM5754 Gigabit Ethernet PCI Express + 1028 01da OptiPlex 745 + 1028 01de Precision 390 + 1028 01df PowerEdge SC440 + 1028 0214 Precision T3400 + 1028 021e Precision T5400 + 167b NetXtreme BCM5755 Gigabit Ethernet PCI Express + 103c 280a DC5750 Microtower + 167d NetXtreme BCM5751M Gigabit Ethernet PCI Express + 1014 0577 ThinkPad X41 / Z60t + 103c 0934 nx8220 + 103c 0940 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC + 17aa 2081 ThinkPad R60e + 167e NetXtreme BCM5751F Fast Ethernet PCI Express + 167f NetLink BCM5787F Fast Ethernet PCI Express + 1680 NetXtreme BCM5761e Gigabit Ethernet PCIe + 1681 NetXtreme BCM5761 Gigabit Ethernet PCIe + 1682 NetXtreme BCM57762 Gigabit Ethernet PCIe + 106b 00f6 Thunderbolt to Gigabit Ethernet Adapter + 1683 NetXtreme BCM57767 Gigabit Ethernet PCIe + 1684 NetXtreme BCM5764M Gigabit Ethernet PCIe + 1685 NetXtreme II BCM57500S Gigabit Ethernet + 1686 NetXtreme BCM57766 Gigabit Ethernet PCIe + 1687 NetXtreme BCM5762 Gigabit Ethernet PCIe + 1688 NetXtreme BCM5761 10/100/1000BASE-T Ethernet + 1259 2708 AT-2712 FX +# The Broadcom 57800 device has two 1Gig ports and two 10Gig ports. The subsystem information can be used to differentiate. + 168a NetXtreme II BCM57800 1/10 Gigabit Ethernet +# SFP+ ports + 1014 0493 PCIe2 LP 4-Port (10Gb+1GbE) SR+RJ45 Adapter (FC EN0T; CCIN 2CC3) +# RJ-45 ports + 1014 0494 PCIe2 LP 4-Port (10Gb+1GbE) SR+RJ45 Adapter (FC EN0T; CCIN 2CC3) + 1028 1f5c BCM57800 10-Gigabit Ethernet + 1028 1f5d BCM57800 10-Gigabit Ethernet + 1028 1f67 BCM57800 1-Gigabit Ethernet + 1028 1f68 BCM57800 1-Gigabit Ethernet + 168d NetXtreme II BCM57840 10/20 Gigabit Ethernet + 168e NetXtreme II BCM57810 10 Gigabit Ethernet + 1014 0492 PCIe2 2-port 10 GbE BaseT RJ45 Adapter (FC EN0W; CCIN 2CC4) + 103c 1798 Flex-10 10Gb 2-port 530FLB Adapter [Meru] + 103c 17a5 Flex-10 10Gb 2-port 530M Adapter + 103c 18d3 Ethernet 10Gb 2-port 530T Adapter + 103c 1930 FlexFabric 10Gb 2-port 534FLR-SFP+ Adapter + 103c 1931 StoreFabric CN1100R Dual Port Converged Network Adapter + 103c 1932 FlexFabric 10Gb 2-port 534FLB Adapter + 103c 1933 FlexFabric 10Gb 2-port 534M Adapter + 103c 193a FlexFabric 10Gb 2-port 533FLR-T Adapter + 103c 3382 Ethernet 10Gb 2-port 530FLR-SFP+ Adapter + 103c 339d Ethernet 10Gb 2-port 530SFP+ Adapter + 193d 1003 530F-B + 193d 1006 530F-L + 193d 100f NIC-ETH522i-Mb-2x10G + 1690 NetXtreme BCM57760 Gigabit Ethernet PCIe + 1691 NetLink BCM57788 Gigabit Ethernet PCIe + 1028 04aa XPS 8300 + 1692 NetLink BCM57780 Gigabit Ethernet PCIe + 1025 033d Aspire 7740G + 1693 NetLink BCM5787M Gigabit Ethernet PCI Express + 1025 0121 Aspire 5920G + 103c 30c0 6710b + 17aa 20d5 ThinkPad R61 + 1694 NetLink BCM57790 Gigabit Ethernet PCIe + 1696 NetXtreme BCM5782 Gigabit Ethernet + 103c 12bc d530 CMT (DG746A) + 14e4 000d NetXtreme BCM5782 1000Base-T + 1698 NetLink BCM5784M Gigabit Ethernet PCIe + 1699 NetLink BCM5785 Gigabit Ethernet + 169a NetLink BCM5786 Gigabit Ethernet PCI Express + 169b NetLink BCM5787 Gigabit Ethernet PCI Express + 169c NetXtreme BCM5788 Gigabit Ethernet + 103c 308b MX6125 + 103c 30a1 NC2400 + 144d c018 X20 + 1462 590c KT6 Delta-FIS2R (MS-6590) + 169d NetLink BCM5789 Gigabit Ethernet PCI Express + 16a0 NetLink BCM5785 Fast Ethernet + 16a1 BCM57840 NetXtreme II 10 Gigabit Ethernet + 1043 866e PEB-10G/57840-2T 10GBase-T Network Adapter + 193d 100b NIC-ETH521i-Mb-4x10G + 16a2 BCM57840 NetXtreme II 10/20-Gigabit Ethernet + 103c 1916 FlexFabric 20Gb 2-port 630FLB Adapter + 103c 1917 FlexFabric 20Gb 2-port 630M Adapter + 103c 2231 3820C 10/20Gb Converged Network Adapter + 103c 22fa FlexFabric 10Gb 2-port 536FLB Adapter + 16a3 NetXtreme BCM57786 Gigabit Ethernet PCIe + 16a4 BCM57840 NetXtreme II Ethernet Multi Function + 103c 1916 NPAR 20Gb 2-port 630FLB Adapter + 103c 1917 NPAR 20Gb 2-port 630M Adapter + 103c 2231 3820C 10/20Gb Converged Network Adapter (NPAR 1.5) + 103c 22fa FlexFabric 10Gb 2-port 536FLB Adapter (NPAR 1.5) +# The Broadcom 57800 device has two 1Gig ports and two 10Gig ports. The subsystem information can be used to differentiate. + 16a5 NetXtreme II BCM57800 1/10 Gigabit Ethernet Multi Function + 1028 1f5c NetXtreme II BCM57800 10-Gigabit Ethernet Multi Function + 1028 1f5d NetXtreme II BCM57800 10-Gigabit Ethernet Multi Function + 1028 1f67 NetXtreme II BCM57800 1-Gigabit Ethernet Multi Function + 1028 1f68 NetXtreme II BCM57800 1-Gigabit Ethernet Multi Function + 16a6 NetXtreme BCM5702X Gigabit Ethernet + 0e11 00bb NC7760 Gigabit Server Adapter (PCI-X, 10/100/1000-T) + 1028 0126 BCM5702 1000Base-T + 14e4 000c BCM5702 1000Base-T + 14e4 8009 BCM5702 1000Base-T + 16a7 NetXtreme BCM5703X Gigabit Ethernet + 0e11 00ca NC7771 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 0e11 00cb NC7781 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 1014 026f eServer xSeries server mainboard + 14e4 0009 NetXtreme BCM5703 1000Base-T + 14e4 000a NetXtreme BCM5703 1000Base-SX + 14e4 000b NetXtreme BCM5703 1000Base-T + 14e4 800a NetXtreme BCM5703 1000Base-T + 16a8 NetXtreme BCM5704S Gigabit Ethernet + 103c 132b PCI-X 1000Mbps Dual-port Built-in + 10a9 8014 Dual Port Gigabit Ethernet (PCI-X,Fiber) + 10a9 801c Quad Port Gigabit Ethernet (PCI-E,Fiber) + 10b7 2001 3C998-SX Dual Port 1000-SX PCI-X +# The Broadcom 57800 device has two 1Gig ports and two 10Gig ports. The subsystem information can be used to differentiate. + 16a9 NetXtreme II BCM57800 1/10 Gigabit Ethernet Virtual Function + 1028 1f5c NetXtreme II BCM57800 10-Gigabit Ethernet Virtual Function + 1028 1f5d NetXtreme II BCM57800 10-Gigabit Ethernet Virtual Function + 1028 1f67 NetXtreme II BCM57800 1-Gigabit Ethernet Virtual Function + 1028 1f68 NetXtreme II BCM57800 1-Gigabit Ethernet Virtual Function + 16aa NetXtreme II BCM5706S Gigabit Ethernet + 103c 3102 NC370F MultifuNCtion Gigabit Server Adapter + 103c 310c NC370i Multifunction Gigabit Server Adapter + 16ab NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function + 16ac NetXtreme II BCM5708S Gigabit Ethernet + 1014 0304 NetXtreme II BCM5708S Gigabit Ethernet + 1028 01bb PowerEdge 1955 Broadcom NetXtreme II BCM5708S + 1028 020c PowerEdge M605 Broadcom NetXtreme II BCM5708S + 103c 1706 NC373m Multifunction Gigabit Server Adapter + 103c 7038 NC373i PCI Express Multifunction Gigabit Server Adapter + 103c 703b NC373i Integrated Multifunction Gigabit Server Adapter + 103c 703d NC373F PCI Express Multifunction Gigabit Server Adapter + 16ad NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function + 103c 1916 FlexFabric 20Gb 2-port 630FLB Adapter + 103c 1917 FlexFabric 20Gb 2-port 630M Adapter + 103c 2231 3820C 10/20Gb Converged Network Adapter (SR-IOV VF) + 103c 22fa FlexFabric 10Gb 2-port 536FLB Adapter (SR-IOV VF) + 16ae NetXtreme II BCM57810 10 Gigabit Ethernet Multi Function + 103c 1798 NPAR 10Gb 2-port 530FLB Adapter + 103c 17a5 NPAR 10Gb 2-port 530M Adapter + 103c 18d3 NPAR 10Gb 2-port 530T Adapter + 103c 1930 NPAR 10Gb 2-port 534FLR-SFP+ Adapter + 103c 1931 NPAR CN1100R Dual Port Converged Network Adapter + 103c 1932 NPAR 10Gb 2-port 534FLB Adapter + 103c 1933 NPAR 10Gb 2-port 534M Adapter + 103c 193a NPAR 10Gb 2-port 533FLR-T Adapter + 103c 3382 NPAR 10Gb 2-port 530FLR-SFP+ Adapter + 103c 339d NPAR 10Gb 2-port 530SFP+ Adapter + 16af NetXtreme II BCM57810 10 Gigabit Ethernet Virtual Function + 103c 1798 Flex-10 10Gb 2-port 530FLB Adapter + 103c 17a5 Flex-10 10Gb 2-port 530M Adapter + 103c 18d3 Ethernet 10Gb 2-port 530T Adapter + 103c 1930 FlexFabric 10Gb 2-port 534FLR-SFP+ Adapter + 103c 1931 StoreFabric CN1100R Dual Port Converged Network Adapter + 103c 1932 FlexFabric 10Gb 2-port 534FLB Adapter + 103c 1933 FlexFabric 10Gb 2-port 534M Adapter + 103c 193a FlexFabric 10Gb 2-port 533FLR-T Adapter + 103c 3382 Ethernet 10Gb 2-port 530FLR-SFP+ Adapter + 103c 339d Ethernet 10Gb 2-port 530SFP+ Adapter + 16b0 NetXtreme BCM57761 Gigabit Ethernet PCIe + 16b1 NetLink BCM57781 Gigabit Ethernet PCIe + 1849 96b1 Z77 Extreme4 motherboard + 16b2 NetLink BCM57791 Gigabit Ethernet PCIe + 16b3 NetXtreme BCM57786 Gigabit Ethernet PCIe + 16b4 NetXtreme BCM57765 Gigabit Ethernet PCIe + 16b5 NetLink BCM57785 Gigabit Ethernet PCIe + 16b6 NetLink BCM57795 Gigabit Ethernet PCIe + 16b7 NetXtreme BCM57782 Gigabit Ethernet PCIe + 16bc BCM57765/57785 SDXC/MMC Card Reader + 16be BCM57765/57785 MS Card Reader + 16bf BCM57765/57785 xD-Picture Card Reader + 16c1 NetXtreme-E RDMA Virtual Function + 16c6 NetXtreme BCM5702A3 Gigabit Ethernet + 10b7 1100 3C1000B-T 10/100/1000 PCI + 14e4 000c BCM5702 1000Base-T + 14e4 8009 BCM5702 1000Base-T + 16c7 NetXtreme BCM5703 Gigabit Ethernet + 0e11 00ca NC7771 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 0e11 00cb NC7781 Gigabit Server Adapter (PCI-X, 10,100,1000-T) + 103c 12c3 Combo FC/GigE-SX [A9782A] + 103c 12ca Combo FC/GigE-T [A9784A] + 103c 1321 Core I/O LAN/SCSI Combo [AB314A] + 14e4 0009 NetXtreme BCM5703 1000Base-T + 14e4 000a NetXtreme BCM5703 1000Base-SX + 16c8 BCM57301 NetXtreme-C 10Gb Ethernet Controller + 16c9 BCM57302 NetXtreme-C 10Gb/25Gb Ethernet Controller + 16ca BCM57304 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet Controller + 16cb NetXtreme-C Ethernet Virtual Function + 16cc BCM57417 NetXtreme-E Ethernet Partition + 16ce BCM57311 NetXtreme-C 10Gb RDMA Ethernet Controller + 16cf BCM57312 NetXtreme-C 10Gb/25Gb RDMA Ethernet Controller + 16d0 BCM57402 NetXtreme-E 10Gb Ethernet Controller + 16d1 BCM57404 NetXtreme-E 10Gb/25Gb Ethernet Controller + 16d2 BCM57406 NetXtreme-E 10GBASE-T Ethernet Controller + 16d3 NetXtreme-E Ethernet Virtual Function + 16d4 BCM57402 NetXtreme-E Ethernet Partition + 16d5 BCM57407 NetXtreme-E 10GBase-T Ethernet Controller + 16d6 BCM57412 NetXtreme-E 10Gb RDMA Ethernet Controller + 14e4 1202 BCM957412M4122C OCP 1x25G Type1 wRoCE + 14e4 4120 NetXtreme E-Series Advanced Dual-port 10Gb SFP+ Ethernet Network Daughter Card + 14e4 4126 NetXtreme-E Dual-port 10G SFP+ Ethernet OCP 3.0 Adapter (BCM957412N4120C) + 152d 8b20 BCM57412 NetXtreme-E 10Gb RDMA Ethernet Controller + 152d 8b22 BCM57412 NetXtreme-E 25Gb RDMA Ethernet Controller +# NIC-ETH531F-LP-2P BCM57412 2 x 10G SFP+ Ethernet PCIe Card + 193d 1024 NIC-ETH531F-LP-2P + 16d7 BCM57414 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller + 14e4 1402 BCM957414A4142CC 10Gb/25Gb Ethernet PCIe + 14e4 1404 BCM957414M4142C OCP 2x25G Type1 wRoCE + 14e4 4140 NetXtreme E-Series Advanced Dual-port 25Gb SFP28 Network Daughter Card +# BCM957414M4143C + 14e4 4143 NetXtreme-E Single-port 40Gb/50Gb Ethernet OCP 2.0 Adapter (BCM957414M4143C) + 14e4 4146 NetXtreme-E Dual-port 25G SFP28 Ethernet OCP 3.0 Adapter (BCM957414N4140C) + 1590 020e Ethernet 25Gb 2-port 631SFP28 Adapter + 1590 0211 Ethernet 25Gb 2-port 631FLR-SFP28 Adapter + 1eec 0101 VSE250231S Dual-port 10Gb/25Gb Ethernet PCIe + 16d8 BCM57416 NetXtreme-E Dual-Media 10G RDMA Ethernet Controller + 1028 1feb NetXtreme-E 10Gb SFP+ Adapter + 14e4 4163 NetXtreme-E Dual-port 10GBASE-T Ethernet OCP 2.0 Adapter (BCM957416M4163C) + 14e4 4166 NetXtreme-E Dual-port 10GBASE-T Ethernet OCP 3.0 Adapter (BCM957416N4160C) + 1590 020c Ethernet 10Gb 2-port 535T Adapter + 1590 0212 Ethernet 10Gb 2-port 535FLR-T Adapter + 16d9 BCM57417 NetXtreme-E 10GBASE-T RDMA Ethernet Controller + 108e 4866 Dual Port 10GBase-T Ethernet Controller + 16dc NetXtreme-E Ethernet Virtual Function + 16dd NetLink BCM5781 Gigabit Ethernet PCI Express + 16de BCM57412 NetXtreme-E Ethernet Partition + 16df BCM57314 NetXtreme-C 10Gb/25Gb/40Gb/50Gb RDMA Ethernet Controller + 16e1 NetXtreme-C Ethernet Virtual Function + 16e2 BCM57417 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller + 108e 4866 Dual Port 10Gb/25Gb SFP28 Ethernet Controller + 16e3 BCM57416 NetXtreme-E 10Gb RDMA Ethernet Controller + 16e5 NetXtreme-C RDMA Virtual Function + 16e7 BCM57404 NetXtreme-E Ethernet Partition + 16e8 BCM57406 NetXtreme-E Ethernet Partition + 16e9 BCM57407 NetXtreme-E 25Gb Ethernet Controller + 16eb BCM57412 NetXtreme-E RDMA Partition + 16ec BCM57414 NetXtreme-E Ethernet Partition + 16ed BCM57414 NetXtreme-E RDMA Partition + 16ee BCM57416 NetXtreme-E Ethernet Partition + 16ef BCM57416 NetXtreme-E RDMA Partition + 16f1 BCM57452 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet + 16f3 NetXtreme BCM5727 Gigabit Ethernet PCIe + 16f7 NetXtreme BCM5753 Gigabit Ethernet PCI Express + 16fd NetXtreme BCM5753M Gigabit Ethernet PCI Express + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 16fe NetXtreme BCM5753F Fast Ethernet PCI Express + 170c BCM4401-B0 100Base-TX + 1028 0188 Inspiron 6000 laptop + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 1028 01af Inspiron 6400 + 1028 01cd Inspiron 9400 Laptop + 1028 01d7 XPS M1210 + 1028 01d8 Inspiron E1405 + 103c 099c NX6110/NC6120 + 103c 30a2 NX7300 laptop + 14e4 170c HP Compaq 6720t Mobile Thin Client + 170d NetXtreme BCM5901 100Base-TX + 1014 0545 ThinkPad R40e + 170e NetXtreme BCM5901 100Base-TX + 1712 NetLink BCM5906 Fast Ethernet PCI Express + 1713 NetLink BCM5906M Fast Ethernet PCI Express + 1028 01f3 Inspiron 1420 + 1028 0209 XPS M1330 + 103c 30c0 Compaq 6710b + 17aa 3a23 IdeaPad S10e + 1750 BCM57508 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb/200Gb Ethernet + 14e4 2100 NetXtreme-E Dual-port 100G QSFP56 Ethernet PCIe4.0 x16 Adapter (BCM957508-P2100G) + 14e4 5208 NetXtreme-E Dual-port 100G QSFP56 Ethernet OCP 3.0 Adapter (BCM957508-N2100G) + 14e4 d124 NetXtreme-E P2100D BCM57508 2x100G QSFP PCIE + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz Ethernet + 1751 BCM57504 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb/200Gb Ethernet + 1028 09d4 PowerEdge XR11/XR12 LOM + 14e4 5045 NetXtreme-E BCM57504 4x25G OCP3.0 + 14e4 5250 NetXtreme-E BCM57504 4x25G KR Mezz + 14e4 d142 NetXtreme-E P425D BCM57504 4x25G SFP28 PCIE + 1752 BCM57502 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet + 1800 BCM57502 NetXtreme-E Ethernet Partition + 1801 BCM57504 NetXtreme-E Ethernet Partition + 1802 BCM57508 NetXtreme-E Ethernet Partition + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz Ethernet Partition + 1803 BCM57502 NetXtreme-E RDMA Partition + 1804 BCM57504 NetXtreme-E RDMA Partition + 1805 BCM57508 NetXtreme-E RDMA Partition + 14e4 df24 NetXtreme-E NGM2100D BCM57508 2x100G KR Mezz RDMA Partition + 1806 BCM5750X NetXtreme-E Ethernet Virtual Function + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz Ethernet Virtual Function + 1807 BCM5750X NetXtreme-E RDMA Virtual Function + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz RDMA Virtual Function + 1808 BCM5750X NetXtreme-E Ethernet Virtual Function + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz Ethernet Virtual Function + 1809 BCM5750X NetXtreme-E RDMA Virtual Function + 14e4 df24 BCM57508 NetXtreme-E NGM2100D 2x100G KR Mezz RDMA Virtual Function + 2711 BCM2711 PCIe Bridge + 3352 BCM3352 + 3360 BCM3360 + 4210 BCM4210 iLine10 HomePNA 2.0 + 4211 BCM4211 iLine10 HomePNA 2.0 + V.90 56k modem + 4212 BCM4212 v.90 56k modem + 4220 802-11b/g Wireless PCI controller, packaged as a Linksys WPC54G ver 1.2 PCMCIA card + 4222 NetXtreme BCM5753M Gigabit Ethernet PCI Express + 4301 BCM4301 802.11b Wireless LAN Controller + 1028 0407 TrueMobile 1180 Onboard WLAN + 1043 0120 WL-103b Wireless LAN PC Card + 16a5 1602 B-300 802.11b Wireless CardBus Adapter + 1737 4301 WMP11 v2.7 802.11b Wireless-B PCI Adapter + 4305 BCM4307 V.90 56k Modem + 4306 BCM4306 802.11bg Wireless LAN controller + 4307 BCM4306 802.11bg Wireless LAN Controller + 4310 BCM4310 Chipcommon I/OController + 4311 BCM4311 802.11b/g WLAN + 1028 0007 Wireless 1390 WLAN Mini-Card + 1028 0008 Wireless 1390 WLAN ExpressCard + 103c 1363 BCM4311 802.11b/g Wireless LAN Controller + 103c 1364 BCM4311 802.11b/g Wireless LAN Controller + 103c 1365 BCM4311 802.11b/g Wireless LAN Controller + 103c 1374 BCM4311 802.11b/g Wireless LAN Controller + 103c 1375 BCM4311 802.11b/g Wireless LAN Controller + 103c 1376 BCM4311 802.11b/g Wireless LAN Controller + 103c 1377 BCM4311 802.11b/g Wireless LAN Controller + 103c 137f BCM4322 802.11a/b/g/n Wireless LAN Controller + 103c 1380 BCM4322 802.11a/b/g/n Wireless LAN Controller + 14e4 4311 BCM94311MCG + 4312 BCM4311 802.11a/b/g + 1028 0007 Wireless 1490 Dual Band WLAN Mini-Card + 1028 0008 Wireless 1490 Dual Band WLAN ExpressCard + 103c 135a Broadcom 802.11a/b/g WLAN + 103c 135f Broadcom 802.11a/b/g WLAN + 103c 1360 Broadcom 802.11a/b/g WLAN + 103c 1361 Broadcom 802.11a/b/g WLAN + 103c 1362 Broadcom 802.11a/b/g WLAN + 103c 1370 Broadcom 802.11a/b/g WLAN + 103c 1371 Broadcom 802.11a/b/g WLAN + 103c 1372 Broadcom 802.11a/b/g WLAN + 103c 1373 Broadcom 802.11a/b/g WLAN + 103c 30b5 Presario V3242AU + 106b 0089 AirPort Extreme + 1371 103c Broadcom 802.11 Multiband-netwerkadapter(6715s) + 4313 BCM4311 802.11a + 4315 BCM4312 802.11b/g LP-PHY + 1028 000b Wireless 1395 WLAN Mini-Card + 1028 000c Wireless 1397 WLAN Mini-Card + 103c 137c BCM4312 802.11b/g Wireless LAN Controller + 103c 137d BCM4312 802.11b/g Wireless LAN Controller + 103c 1507 U98Z049.00 Wireless Mini PCIe Card + 105b e003 T77H030.00 Wireless Mini PCIe Card + 105b e01b T77H106.00 Wireless Half-size Mini PCIe Card + 4318 BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller + 1028 0005 Wireless 1370 WLAN Mini-PCI Card + 1028 0006 Wireless 1370 WLAN PC Card + 103c 1355 Broadcom 802.11b/g WLAN + 103c 1356 Broadcom 802.11b/g WLAN + 103c 1357 Broadcom 802.11b/g WLAN + 1043 100f WL-138G v2 / WL-138gE / WL-100gE + 1043 120f A6U notebook embedded card + 1154 0355 Buffalo WLI2-PCI-G54S High Speed Mode Wireless Adapter + 1468 0311 Aspire 3022WLMi, 5024WLMi, 5020 + 1468 0312 TravelMate 2410 + 14e4 0449 Gateway 7510GX + 16ec 0119 U.S.Robotics Wireless MAXg PC Card + 1737 0042 WMP54GS v1.1 802.11g Wireless-G PCI Adapter with SpeedBooster + 1737 0048 WPC54G v3 802.11g Wireless-G Notebook Adapter + 1737 0049 WPC54GS v2 802.11g Wireless-G Notebook Adapter with SpeedBooster + 1799 7000 F5D7000 v4000 Wireless G Desktop Card + 1799 7001 F5D7001 v2000 Wireless G Plus Desktop Card + 1799 7010 F5D7010 v4000 Wireless G Notebook Card + 1799 7011 F5D7011 v2000 High-Speed Mode Wireless G Notebook Card + 4319 BCM4318 [AirForce 54g] 802.11a/b/g PCI Express Transceiver + 1028 0005 Wireless 1470 Dual Band WLAN Mini-PCI Card + 1028 0006 Wireless 1470 Dual Band WLAN PC Card + 103c 1358 Broadcom 802.11a/b/g WLAN + 103c 1359 Broadcom 802.11a/b/g WLAN + 103c 135a Broadcom 802.11a/b/g WLAN + 4320 BCM4306 802.11b/g Wireless LAN Controller + 1028 0001 TrueMobile 1300 WLAN Mini-PCI Card + 1028 0002 TrueMobile 1300 WLAN PC Card + 1028 0003 Wireless 1350 WLAN Mini-PCI Card + 1028 0004 Wireless 1350 WLAN PC Card + 103c 12f4 Broadcom 802.11b/g WLAN + 103c 12f8 Broadcom 802.11b/g WLAN + 103c 12fa Broadcom 802.11b/g WLAN + 103c 12fb Broadcom 802.11b/g WLAN + 1043 100f WL-100G + 1057 7025 WN825G + 106b 004e AirPort Extreme + 1154 0330 Buffalo WLI2-PCI-G54S High Speed Mode Wireless Desktop Adapter + 144f 7050 eMachines M6805 802.11g Built-in Wireless + 144f 7051 Sonnet Aria Extreme PCI + 1737 0013 WMP54G v1 802.11g PCI Adapter + 1737 0014 WMP54G v2 802.11g PCI Adapter + 1737 0015 WMP54GS v1.0 802.11g Wireless-G PCI Adapter with SpeedBooster + 1737 4320 WPC54G v1 / WPC54GS v1 802.11g Wireless-G Notebook Adapter + 1799 7000 F5D7000 v1000 Wireless G Desktop Card + 1799 7001 F5D7001 v1000 Wireless G Plus Desktop Card + 1799 7010 F5D7010 v1000 Wireless G Notebook Card + 1799 7011 F5D7011 v1000 High-Speed Mode Wireless G Notebook Card + 185f 1220 TravelMate 290E WLAN Mini-PCI Card + 4321 BCM4321 802.11a Wireless Network Controller + 4322 BCM4322 802.11bgn Wireless Network Controller + 4324 BCM4309 802.11abg Wireless Network Controller + 1028 0001 Truemobile 1400 + 1028 0002 TrueMobile 1400 Dual Band WLAN PC Card + 1028 0003 Truemobile 1450 MiniPCI + 1028 0004 Wireless 1450 Dual Band WLAN PC Card + 103c 12f9 Broadcom 802.11a/b/g WLAN + 103c 12fc Broadcom 802.11a/b/g WLAN + 4325 BCM4306 802.11bg Wireless Network Controller + 1414 0003 Wireless Notebook Adapter MN-720 + 1414 0004 Wireless PCI Adapter MN-730 + 4326 BCM4307 Chipcommon I/O Controller? + 4328 BCM4321 802.11a/b/g/n + 1028 0009 Wireless 1500 Draft 802.11n WLAN Mini-Card + 1028 000a Wireless 1500 Draft 802.11n WLAN Mini-card + 103c 1366 BCM4321 802.11a/b/g/n Wireless LAN Controller + 103c 1367 BCM4321 802.11a/b/g/n Wireless LAN Controller + 103c 1368 BCM4321 802.11a/b/g/n Wireless LAN Controller + 103c 1369 BCM4321 802.11a/b/g/n Wireless LAN Controller + 106b 0087 AirPort Extreme + 106b 0088 AirPort Extreme + 106b 008b AirPort Extreme + 106b 008c AirPort Extreme + 106b 0090 AirPort Extreme + 14e4 4328 BCM4328 802.11a/b/g/n + 1737 0066 WPC600N v1 802.11a/b/g/n Wireless-N CardBus Adapter + 1737 0068 WEC600N v1 802.11a/b/g/n Wireless-N ExpressCard + 4329 BCM4321 802.11b/g/n + 1385 7b00 WN511B RangeMax NEXT Wireless Notebook Adapter + 1385 7d00 WN311B RangeMax Next 270 Mbps Wireless PCI Adapter + 1737 0058 WPC300N v1 Wireless-N Notebook Adapter + 432a BCM4321 802.11an Wireless Network Controller + 432b BCM4322 802.11a/b/g/n Wireless LAN Controller + 1028 000d Wireless 1510 Wireless-N WLAN Mini-Card + 106b 008d AirPort Extreme + 106b 008e AirPort Extreme + 432c BCM4322 802.11b/g/n + 1799 d311 Dynex DX-NNBX 802.11n WLAN Cardbus Card + 432d BCM4322 802.11an Wireless Network Controller + 4331 BCM4331 802.11a/b/g/n + 106b 00d6 AirPort Extreme + 106b 00e4 AirPort Extreme + 106b 00ef AirPort Extreme + 106b 00f4 AirPort Extreme + 106b 00f5 AirPort Extreme + 106b 010e AirPort Extreme + 106b 010f AirPort Extreme + 4333 Serial (EDGE/GPRS modem part of Option GT Combo Edge) + 4344 EDGE/GPRS data and 802.11b/g combo cardbus [GC89] + 4350 BCM43222 Wireless Network Adapter + 4351 BCM43222 802.11abgn Wireless Network Adapter + 4353 BCM43224 802.11a/b/g/n + 1028 000e Wireless 1520 Half-size Mini PCIe Card + 103c 1509 WMIB-275N Half-size Mini PCIe Card + 106b 0093 AirPort Extreme + 106b 00d1 AirPort Extreme + 106b 00e9 AirPort Extreme + 14e4 04d8 Pegatron UPWL6024 + 4357 BCM43225 802.11b/g/n + 105b e021 T77H103.00 Wireless Half-size Mini PCIe Card + 4358 BCM43227 802.11b/g/n + 4359 BCM43228 802.11a/b/g/n + 1028 0011 Wireless 1530 Half-size Mini PCIe Card + 103c 182c BCM943228HM4L 802.11a/b/g/n 2x2 Wi-Fi Adapter + 4360 BCM4360 802.11ac Wireless Network Adapter + 4365 BCM43142 802.11b/g/n + 1028 0016 Wireless 1704 802.11n + BT 4.0 + 43a0 BCM4360 802.11ac Wireless Network Adapter + 43a1 BCM4360 802.11ac Wireless Network Adapter + 43a2 BCM4360 802.11ac Wireless Network Adapter + 43a3 BCM4350 802.11ac Wireless Network Adapter +# Manufactured by Foxconn for Lenovo + 17aa 075a 00JT494 + 43a9 BCM43217 802.11b/g/n + 43aa BCM43131 802.11b/g/n + 43ae BCM43162 802.11ac Wireless Network Adapter + 43b1 BCM4352 802.11ac Wireless Network Adapter + 43ba BCM43602 802.11ac Wireless LAN SoC + 43bb BCM43602 802.11ac Wireless LAN SoC + 43bc BCM43602 802.11ac Wireless LAN SoC + 43d3 BCM43567 802.11ac Wireless Network Adapter + 43d9 BCM43570 802.11ac Wireless Network Adapter + 43dc BCM4355 802.11ac Wireless LAN SoC + 43df BCM4354 802.11ac Wireless LAN SoC + 43e9 BCM4358 802.11ac Wireless LAN SoC + 43ec BCM4356 802.11ac Wireless Network Adapter + 4401 BCM4401 100Base-T + 1025 0035 TravelMate 660 + 1025 0064 Extensa 3000 series laptop + 1028 8127 Dimension 2400 + 103c 08b0 tc1100 tablet + 1043 80a8 A7V8X motherboard + 4402 BCM4402 Integrated 10/100BaseT + 4403 BCM4402 V.90 56k Modem + 4410 BCM4413 iLine32 HomePNA 2.0 + 4411 BCM4413 V.90 56k modem + 4412 BCM4412 10/100BaseT + 4415 BCM4359 802.11ac Dual-Band Wireless Network Controller + 441f BCM4361 802.11ac Dual-Band Wireless Network Controller + 4420 BCM4361 802.11ac 2.4 GHz Wireless Network Controller + 4421 BCM4361 802.11ac 5 GHz Wireless Network Controller + 4425 BRCM4378 Wireless Network Adapter + 4430 BCM44xx CardBus iLine32 HomePNA 2.0 + 4432 BCM4432 CardBus 10/100BaseT + 4464 BCM4364 802.11ac Wireless Network Adapter +# brcmfmac reports it as BCM4377/4 but macOS drivers call it BCM4377b + 4488 BCM4377b Wireless Network Adapter + 4610 BCM4610 Sentry5 PCI to SB Bridge + 4611 BCM4610 Sentry5 iLine32 HomePNA 1.0 + 4612 BCM4610 Sentry5 V.90 56k Modem + 4613 BCM4610 Sentry5 Ethernet Controller + 4614 BCM4610 Sentry5 External Interface + 4615 BCM4610 Sentry5 USB Controller + 4704 BCM4704 PCI to SB Bridge + 4705 BCM4704 Sentry5 802.11b Wireless LAN Controller + 4706 BCM4704 Sentry5 Ethernet Controller + 4707 BCM4704 Sentry5 USB Controller + 4708 BCM4704 Crypto Accelerator + 4710 BCM4710 Sentry5 PCI to SB Bridge + 4711 BCM47xx Sentry5 iLine32 HomePNA 2.0 + 4712 BCM47xx V.92 56k modem + 4713 Sentry5 Ethernet Controller + 4714 BCM47xx Sentry5 External Interface + 4715 BCM47xx Sentry5 USB / Ethernet Controller + 4716 BCM47xx Sentry5 USB Host Controller + 4717 BCM47xx Sentry5 USB Device Controller + 4718 Sentry5 Crypto Accelerator + 4719 BCM47xx/53xx RoboSwitch Core + 4720 BCM4712 MIPS CPU + 4727 BCM4313 802.11bgn Wireless Network Adapter + 1028 0010 Inspiron M5010 / XPS 8300 + 5365 BCM5365P Sentry5 Host Bridge + 5600 BCM5600 StrataSwitch 24+2 Ethernet Switch Controller + 5605 BCM5605 StrataSwitch 24+2 Ethernet Switch Controller + 5615 BCM5615 StrataSwitch 24+2 Ethernet Switch Controller + 5625 BCM5625 StrataSwitch 24+2 Ethernet Switch Controller + 5645 BCM5645 StrataSwitch 24+2 Ethernet Switch Controller + 5670 BCM5670 8-Port 10GE Ethernet Switch Fabric + 5680 BCM5680 G-Switch 8 Port Gigabit Ethernet Switch Controller + 5690 BCM5690 12-port Multi-Layer Gigabit Ethernet Switch + 5691 BCM5691 GE/10GE 8+2 Gigabit Ethernet Switch Controller + 5692 BCM5692 12-port Multi-Layer Gigabit Ethernet Switch + 5695 BCM5695 12-port + HiGig Multi-Layer Gigabit Ethernet Switch + 5698 BCM5698 12-port Multi-Layer Gigabit Ethernet Switch + 5820 BCM5820 Crypto Accelerator + 5821 BCM5821 Crypto Accelerator + 5822 BCM5822 Crypto Accelerator + 5823 BCM5823 Crypto Accelerator + 5824 BCM5824 Crypto Accelerator + 5840 BCM5840 Crypto Accelerator + 5841 BCM5841 Crypto Accelerator + 5850 BCM5850 Crypto Accelerator + 5e87 Valkyrie offload engine + 5e88 Viper Offload Engine + 8602 BCM7400/BCM7405 Serial ATA Controller + 9026 CN99xx [ThunderX2] Integrated USB 3.0 xHCI Host Controller + 9027 CN99xx [ThunderX2] Integrated AHCI/SATA 3 Host Controller + a8d8 BCM43224/5 Wireless Network Adapter + aa52 BCM43602 802.11ac Wireless LAN SoC + b080 BCM56080 Firelight2 Switch ASIC + b302 BCM56302 StrataXGS 24x1GE 2x10GE Switch Controller + b334 BCM56334 StrataXGS 24x1GE 4x10GE Switch Controller + b370 BCM56370 Switch ASIC + b371 BCM56371 Switch ASIC + b372 BCM56372 Switch ASIC + b375 BCM56375 Switch ASIC + b376 BCM56376 Switch ASIC + b377 BCM56377 Switch ASIC + b379 Broadcom BCM56379 Switch ASIC + b470 BCM56470 SWITCH ASIC + b471 BCM56471 SWITCH ASIC + b472 BCM56472 SWITCH ASIC + b800 BCM56800 StrataXGS 10GE Switch Controller + b842 BCM56842 Trident 10GE Switch Controller +# Trident2 + b850 Broadcom BCM56850 Switch ASIC + b880 BCM56880 Switch ASIC +# Tomahawk + b960 Broadcom BCM56960 Switch ASIC +# Tomahawk4 + b990 BCM56990 Switch ASIC +# Tomahawk4G + b996 BCM56996 Tomahawk4G 106G Switch ASIC +# Tomahawk4GT + b998 BCM56998 Tomahawk4GT 106G Switch ASIC +# Tomahawk4D + b999 BCM56999 Tomahawk4D 106G Switch ASIC + c909 BCM78909 Switch ASIC + d802 BCM58802 Stingray 50Gb Ethernet SoC + 14e4 8021 Stingray Dual-Port 25Gb Ethernet PCIe SmartNIC w16GB DRAM (Part No BCM958802A8046C) + 14e4 8023 PS410T-H04 NetXtreme-S 4x10G 10GBaseT PCIe SmartNIC + 14e4 8024 Stingray Dual-Port 25Gb Ethernet PCIe SmartNIC w4GB DRAM (Part No BCM958802A8044C) + 14e4 8028 Stingray Dual-Port 25Gb Ethernet PCIe SmartNIC w8GB DRAM (Part No BCM958802A8048C) + 1bb0 0021 HPE SimpliVity Accelerator + d804 BCM58804 Stingray 100Gb Ethernet SoC +14e5 Pixelfusion Ltd +14e6 SHINING Technology Inc +14e7 3CX +14e8 RAYCER Inc +14e9 GARNETS System CO Ltd +14ea Planex Communications, Inc + ab06 FNW-3603-TX CardBus Fast Ethernet + ab07 RTL81xx RealTek Ethernet + ab08 FNW-3602-TX CardBus Fast Ethernet +14eb SEIKO EPSON Corp +# nee ACQIRIS +14ec Agilent Technologies + 0000 Aciris Digitizer (malformed ID) +14ed DATAKINETICS Ltd +14ee MASPRO KENKOH Corp +14ef CARRY Computer ENG. CO Ltd +14f0 CANON RESEACH CENTRE FRANCE +14f1 Conexant Systems, Inc. + 1002 HCF 56k Modem + 1003 HCF 56k Modem + 1004 HCF 56k Modem + 1005 HCF 56k Modem + 1006 HCF 56k Modem + 1022 HCF 56k Modem + 1023 HCF 56k Modem + 1024 HCF 56k Modem + 1025 HCF 56k Modem + 1026 HCF 56k Modem + 1032 HCF 56k Modem + 1033 HCF 56k Data/Fax Modem + 1033 8077 NEC + 122d 4027 Dell Zeus - MDP3880-W(B) Data Fax Modem + 122d 4030 Dell Mercury - MDP3880-U(B) Data Fax Modem + 122d 4034 Dell Thor - MDP3880-W(U) Data Fax Modem + 13e0 020d Dell Copper + 13e0 020e Dell Silver + 13e0 0261 IBM + 13e0 0290 Compaq Goldwing + 13e0 02a0 IBM + 13e0 02b0 IBM + 13e0 02c0 Compaq Scooter + 13e0 02d0 IBM + 144f 1500 IBM P85-DF (1) + 144f 1501 IBM P85-DF (2) + 144f 150a IBM P85-DF (3) + 144f 150b IBM P85-DF Low Profile (1) + 144f 1510 IBM P85-DF Low Profile (2) + 1034 HCF 56k Data/Fax/Voice Modem + 1035 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 10cf 1098 Fujitsu P85-DFSV + 1036 HCF 56k Data/Fax/Voice/Spkp Modem + 104d 8067 HCF 56k Modem + 122d 4029 MDP3880SP-W + 122d 4031 MDP3880SP-U + 13e0 0209 Dell Titanium + 13e0 020a Dell Graphite + 13e0 0260 Gateway Red Owl + 13e0 0270 Gateway White Horse + 1052 HCF 56k Data/Fax Modem (Worldwide) + 1053 HCF 56k Data/Fax Modem (Worldwide) + 1054 HCF 56k Data/Fax/Voice Modem (Worldwide) + 1055 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (Worldwide) + 1056 HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide) + 122d 4035 MDP3900V-W + 1057 HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide) + 1059 HCF 56k Data/Fax/Voice Modem (Worldwide) + 1063 HCF 56k Data/Fax Modem + 1064 HCF 56k Data/Fax/Voice Modem + 1065 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 1066 HCF 56k Data/Fax/Voice/Spkp Modem + 122d 4033 Dell Athena - MDP3900V-U + 1085 HCF V90 56k Data/Fax/Voice/Spkp PCI Modem + 10b6 CX06834-11 HCF V.92 56k Data/Fax/Voice/Spkp Modem + 1433 HCF 56k Data/Fax Modem + 1434 HCF 56k Data/Fax/Voice Modem + 1435 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 1436 HCF 56k Data/Fax Modem + 1453 HCF 56k Data/Fax Modem + 13e0 0240 IBM + 13e0 0250 IBM + 144f 1502 IBM P95-DF (1) + 144f 1503 IBM P95-DF (2) + 1454 HCF 56k Data/Fax/Voice Modem + 1455 HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 1456 HCF 56k Data/Fax/Voice/Spkp Modem + 122d 4035 Dell Europa - MDP3900V-W + 122d 4302 Dell MP3930V-W(C) MiniPCI + 1610 ADSL AccessRunner PCI Arbitration Device + 1611 AccessRunner PCI ADSL Interface Device + 1620 AccessRunner V2 PCI ADSL Arbitration Device + 1621 AccessRunner V2 PCI ADSL Interface Device + 1622 AccessRunner V2 PCI ADSL Yukon WAN Adapter + 1803 HCF 56k Modem + 0e11 0023 623-LAN Grizzly + 0e11 0043 623-LAN Yogi + 1811 MiniPCI Network Adapter + 1815 HCF 56k Modem + 0e11 0022 Grizzly + 0e11 0042 Yogi +# Integrated in CX86111/CX86113 processors + 1830 CX861xx Integrated Host Bridge + 2003 HSF 56k Data/Fax Modem + 2004 HSF 56k Data/Fax/Voice Modem + 2005 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 2006 HSF 56k Data/Fax/Voice/Spkp Modem + 2013 HSF 56k Data/Fax Modem + 0e11 b195 Bear + 0e11 b196 Seminole 1 + 0e11 b1be Seminole 2 + 1025 8013 Acer + 1033 809d NEC + 1033 80bc NEC + 155d 6793 HP + 155d 8850 E Machines + 2014 HSF 56k Data/Fax/Voice Modem + 2015 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem + 2016 HSF 56k Data/Fax/Voice/Spkp Modem + 2043 HSF 56k Data/Fax Modem (WorldW SmartDAA) + 2044 HSF 56k Data/Fax/Voice Modem (WorldW SmartDAA) + 2045 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (WorldW SmartDAA) + 14f1 2045 Generic SoftK56 + 2046 HSF 56k Data/Fax/Voice/Spkp Modem (WorldW SmartDAA) + 2063 HSF 56k Data/Fax Modem (SmartDAA) + 2064 HSF 56k Data/Fax/Voice Modem (SmartDAA) + 2065 HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (SmartDAA) + 2066 HSF 56k Data/Fax/Voice/Spkp Modem (SmartDAA) + 2093 HSF 56k Modem + 155d 2f07 Legend + 2143 HSF 56k Data/Fax/Cell Modem (Mob WorldW SmartDAA) + 2144 HSF 56k Data/Fax/Voice/Cell Modem (Mob WorldW SmartDAA) + 2145 HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob WorldW SmartDAA) + 2146 HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob WorldW SmartDAA) + 2163 HSF 56k Data/Fax/Cell Modem (Mob SmartDAA) + 2164 HSF 56k Data/Fax/Voice/Cell Modem (Mob SmartDAA) + 2165 HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob SmartDAA) + 2166 HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob SmartDAA) + 2343 HSF 56k Data/Fax CardBus Modem (Mob WorldW SmartDAA) + 2344 HSF 56k Data/Fax/Voice CardBus Modem (Mob WorldW SmartDAA) + 2345 HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob WorldW SmartDAA) + 2346 HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob WorldW SmartDAA) + 2363 HSF 56k Data/Fax CardBus Modem (Mob SmartDAA) + 2364 HSF 56k Data/Fax/Voice CardBus Modem (Mob SmartDAA) + 2365 HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob SmartDAA) + 2366 HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob SmartDAA) + 2443 HSF 56k Data/Fax Modem (Mob WorldW SmartDAA) + 104d 8075 Modem + 104d 8083 Modem + 104d 8097 Modem + 2444 HSF 56k Data/Fax/Voice Modem (Mob WorldW SmartDAA) + 2445 HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob WorldW SmartDAA) + 2446 HSF 56k Data/Fax/Voice/Spkp Modem (Mob WorldW SmartDAA) + 2463 HSF 56k Data/Fax Modem (Mob SmartDAA) + 2464 HSF 56k Data/Fax/Voice Modem (Mob SmartDAA) + 2465 HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob SmartDAA) + 2466 HSF 56k Data/Fax/Voice/Spkp Modem (Mob SmartDAA) + 2702 HSFi modem RD01-D270 + 1028 8d88 SmartHSFi V92 56K PCI Modem + 2f00 HSF 56k HSFi Modem + 13e0 8d84 IBM HSFi V.90 + 13e0 8d85 Compaq Stinger + 14f1 2004 Dynalink 56PMi + 2f02 HSF 56k HSFi Data/Fax + 2f11 HSF 56k HSFi Modem + 2f20 HSF 56k Data/Fax Modem + 14f1 200c Soft Data Fax Modem with SmartCP + 14f1 200f Dimension 3000 + 2f30 SoftV92 SpeakerPhone SoftRing Modem with SmartSP + 14f1 2014 Devolo MikroLink 56K Modem PCI + 2f50 Conexant SoftK56 Data/Fax Modem + 510f Conexant CX 20751/20752 + 5b7a CX23418 Single-Chip MPEG-2 Encoder with Integrated Analog Video/Broadcast Audio Decoder + 0070 7444 WinTV HVR-1600 + 107d 6f34 WinFast DVR3100 H + 5854 3343 GoTView PCI DVD3 Hybrid + 8200 CX25850 + 8234 RS8234 ATM SAR Controller [ServiceSAR Plus] + 8800 CX23880/1/2/3 PCI Video and Audio Decoder + 0070 2801 Hauppauge WinTV 28xxx (Roslyn) models + 0070 3400 WinTV 34604 + 0070 3401 Hauppauge WinTV 34xxx models + 0070 6902 WinTV HVR-4000-HD + 0070 7801 WinTV HVR-1800 MCE + 0070 9001 Nova-T DVB-T + 0070 9002 Nova-T DVB-T Model 909 + 0070 9200 Nova-SE2 DVB-S + 0070 9202 Nova-S-Plus DVB-S + 0070 9402 WinTV-HVR1100 DVB-T/Hybrid + 0070 9600 WinTV 88x Video + 0070 9802 WinTV-HVR1100 DVB-T/Hybrid (Low Profile) + 1002 00f8 ATI TV Wonder Pro + 1002 00f9 ATI TV Wonder + 1002 a101 HDTV Wonder + 1043 4823 PVR-416 + 107d 6611 Winfast TV 2000XP Expert + 107d 6613 Leadtek Winfast 2000XP Expert + 107d 6620 Leadtek Winfast DV2000 + 107d 663c Leadtek PVR 2000 + 107d 665f WinFast DTV1000-T + 10fc d003 IODATA GV-VCP3/PCI + 10fc d035 IODATA GV/BCTV7E + 1421 0334 Instant TV DVB-T PCI + 1461 000a AVerTV 303 (M126) + 1461 000b AverTV Studio 303 (M126) + 1461 8011 UltraTV Media Center PCI 550 + 1462 8606 MSI TV-@nywhere Master + 14c7 0107 GDI Black Gold + 14f1 0187 Conexant DVB-T reference design + 14f1 0342 Digital-Logic MICROSPACE Entertainment Center (MEC) + 153b 1166 Cinergy 1400 DVB-T + 1540 2580 Provideo PV259 + 1554 4811 PixelView + 1554 4813 Club 3D ZAP1000 MCE Edition + 17de 08a1 KWorld/VStream XPert DVB-T with cx22702 + 17de 08a6 KWorld/VStream XPert DVB-T + 17de 08b2 KWorld DVB-S 100 + 17de a8a6 digitalnow DNTV Live! DVB-T + 1822 0025 digitalnow DNTV Live! DVB-T Pro + 185b e000 VideoMate X500 + 18ac d500 FusionHDTV 5 Gold + 18ac d810 FusionHDTV 3 Gold-Q + 18ac d820 FusionHDTV 3 Gold-T + 18ac db00 FusionHDTV DVB-T1 + 18ac db11 FusionHDTV DVB-T Plus + 18ac db50 FusionHDTV DVB-T Dual Digital + 5654 2388 GoTView PCI Hybrid TV Tuner Card + 7063 3000 pcHDTV HD3000 HDTV + 7063 5500 pcHDTV HD-5500 + 8801 CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] + 0070 2801 Hauppauge WinTV 28xxx (Roslyn) models + 185b e000 VideoMate X500 + 5654 2388 GoTView PCI Hybrid Audio AVStream Device + 7063 5500 pcHDTV HD-5500 + 8802 CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port] + 0070 2801 Hauppauge WinTV 28xxx (Roslyn) models + 0070 6902 WinTV HVR-4000-HD + 0070 9002 Nova-T DVB-T Model 909 + 0070 9402 WinTV-HVR1100 DVB-T/Hybrid + 0070 9600 WinTV 88x MPEG Encoder + 1043 4823 PVR-416 + 107d 663c Leadtek PVR 2000 + 107d 665f WinFast DTV1000-T + 14f1 0187 Conexant DVB-T reference design + 17de 08a1 XPert DVB-T PCI BDA DVBT 23880 Transport Stream Capture + 17de 08a6 KWorld/VStream XPert DVB-T + 18ac d500 DViCO FusionHDTV5 Gold + 18ac d810 DViCO FusionHDTV3 Gold-Q + 18ac d820 DViCO FusionHDTV3 Gold-T + 18ac db00 DVICO FusionHDTV DVB-T1 + 18ac db10 DVICO FusionHDTV DVB-T Plus + 5654 2388 GoTView PCI Hybrid TS Capture Device + 7063 3000 pcHDTV HD3000 HDTV + 7063 5500 pcHDTV HD-5500 + 8804 CX23880/1/2/3 PCI Video and Audio Decoder [IR Port] + 0070 6902 WinTV HVR-4000-HD + 0070 9002 Nova-T DVB-T Model 909 + 0070 9402 WinTV-HVR1100 DVB-T/Hybrid + 7063 5500 pcHDTV HD-5500 + 8811 CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] + 0070 3400 WinTV 34604 + 0070 3401 Hauppauge WinTV 34xxx models + 0070 6902 WinTV HVR-4000-HD + 0070 9402 WinTV-HVR1100 DVB-T/Hybrid + 0070 9600 WinTV 88x Audio + 1462 8606 MSI TV-@nywhere Master + 18ac d500 DViCO FusionHDTV5 Gold + 18ac d810 DViCO FusionHDTV3 Gold-Q + 18ac d820 DViCO FusionHDTV3 Gold-T + 18ac db00 DVICO FusionHDTV DVB-T1 + 5654 2388 GoTView PCI Hybrid Audio Capture Device + 8852 CX23885 PCI Video and Audio Decoder + 0070 8010 WinTV HVR-1400 ExpressCard + 0070 f038 WinTV HVR-5525 + 107d 6f22 WinFast PxTV1200 + 12ab d585 PE988J Hybrid ATSC/QAM PCI-E AVS Video Capture (SoftEncoder) + 13c2 3013 TT-budget CT2-4500 CI + 1461 c039 AVerTV Hybrid Express (A577) + 153b 117e Cinergy T PCIe Dual + 18ac db78 FusionHDTV DVB-T Dual Express + 4254 0950 S950 + 4254 0952 S952 + 4254 0982 T982 + 4254 9580 T9580 + 4254 980c T980C + 8880 CX23887/8 PCIe Broadcast Audio and Video Decoder with 3D Comb + 0070 2259 WinTV HVR-1250 + 0070 6a18 WinTV-quadHD + 0070 c108 WinTV-HVR-4400-HD model 1278 + 1461 3100 CE310B SD PCIe Video Capture Card + 5654 2389 GoTView X5 DVD Hybrid PCI-E + 5654 2390 GoTView X5 3D HYBRID PCI-E +14f2 MOBILITY Electronics + 0120 EV1000 bridge + 0121 EV1000 Parallel port + 0122 EV1000 Serial port + 0123 EV1000 Keyboard controller + 0124 EV1000 Mouse controller +14f3 BroadLogic + 2030 2030 DVB-S Satellite Receiver + 2035 2035 DVB-S Satellite Receiver + 2050 2050 DVB-T Terrestrial (Cable) Receiver + 2060 2060 ATSC Terrestrial (Cable) Receiver +14f4 TOKYO Electronic Industry CO Ltd +14f5 SOPAC Ltd +14f6 COYOTE Technologies LLC +14f7 WOLF Technology Inc +14f8 AUDIOCODES Inc + 2077 TP-240 dual span E1 VoIP PCI card +14f9 AG COMMUNICATIONS +14fa WANDEL & GOLTERMANN +14fb TRANSAS MARINE (UK) Ltd +14fc Quadrics Ltd + 0000 QsNet Elan3 Network Adapter + 0001 QsNetII Elan4 Network Adapter + 0002 QsNetIII Elan5 Network Adapter +14fd JAPAN Computer Industry Inc +14fe ARCHTEK TELECOM Corp +14ff TWINHEAD INTERNATIONAL Corp +1500 DELTA Electronics, Inc + 1360 RTL81xx RealTek Ethernet +1501 BANKSOFT CANADA Ltd +1502 MITSUBISHI ELECTRIC LOGISTICS SUPPORT Co Ltd +1503 KAWASAKI LSI USA Inc +1504 KAISER Electronics +1505 ITA INGENIEURBURO FUR TESTAUFGABEN GmbH +1506 CHAMELEON Systems Inc +# Should be HTEC Ltd, but there are no known HTEC chips and 1507 is already used by mistake by Motorola (see vendor ID 1057). +1507 Motorola ?? / HTEC + 0001 MPC105 [Eagle] + 0002 MPC106 [Grackle] + 0003 MPC8240 [Kahlua] + 0100 MC145575 [HFC-PCI] + 0431 KTI829c 100VG + 4801 Raven + 4802 Falcon + 4803 Hawk + 4806 CPX8216 +1508 HONDA CONNECTORS/MHOTRONICS Inc +1509 FIRST INTERNATIONAL Computer Inc +150a FORVUS RESEARCH Inc +150b YAMASHITA Systems Corp +150c KYOPAL CO Ltd +150d WARPSPPED Inc +150e C-PORT Corp +150f INTEC GmbH +1510 BEHAVIOR TECH Computer Corp +1511 CENTILLIUM Technology Corp +1512 ROSUN Technologies Inc +1513 Raychem +1514 TFL LAN Inc +1515 Advent design +1516 MYSON Technology Inc + 0800 MTD-8xx 100/10M Ethernet PCI Adapter + 0803 SURECOM EP-320X-S 100/10M Ethernet PCI Adapter + 1320 10bd SURECOM EP-320X-S 100/10M Ethernet PCI Adapter + 0891 MTD-8xx 100/10M Ethernet PCI Adapter +1517 ECHOTEK Corp +# old ID, now 1059 +1518 Kontron +1519 TELEFON AKTIEBOLAGET LM Ericsson +151a Globetek + 1002 PCI-1002 + 1004 PCI-1004 + 1008 PCI-1008 +151b COMBOX Ltd +151c DIGITAL AUDIO LABS Inc + 0003 Prodif T 2496 + 4000 Prodif 88 +151d Fujitsu Computer Products Of America +151e MATRIX Corp +151f TOPIC SEMICONDUCTOR Corp + 0000 TP560 Data/Fax/Voice 56k modem +1520 CHAPLET System Inc +1521 BELL Corp +1522 MainPine Ltd + 0100 PCI <-> IOBus Bridge + 1522 0200 RockForceDUO 2 Port V.92/V.44 Data/Fax/Voice Modem + 1522 0300 RockForceQUATRO 4 Port V.92/V.44 Data/Fax/Voice Modem + 1522 0400 RockForceDUO+ 2 Port V.92/V.44 Data/Fax/Voice Modem + 1522 0500 RockForceQUATRO+ 4 Port V.92/V.44 Data/Fax/Voice Modem + 1522 0600 RockForce+ 2 Port V.90 Data/Fax/Voice Modem + 1522 0700 RockForce+ 4 Port V.90 Data/Fax/Voice Modem + 1522 0800 RockForceOCTO+ 8 Port V.92/V.44 Data/Fax/Voice Modem + 1522 0c00 RockForceDUO+ 2 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem + 1522 0d00 RockForceQUATRO+ 4 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem + 1522 1d00 RockForceOCTO+ 8 Port V.92/V.44 Data, V.34 Super-G3 Fax, Voice Modem + 1522 2000 RockForceD1 1 Port V.90 Data Modem + 1522 2100 RockForceF1 1 Port V.34 Super-G3 Fax Modem + 1522 2200 RockForceD2 2 Port V.90 Data Modem + 1522 2300 RockForceF2 2 Port V.34 Super-G3 Fax Modem + 1522 2400 RockForceD4 4 Port V.90 Data Modem + 1522 2500 RockForceF4 4 Port V.34 Super-G3 Fax Modem + 1522 2600 RockForceD8 8 Port V.90 Data Modem + 1522 2700 RockForceF8 8 Port V.34 Super-G3 Fax Modem + 1522 3000 IQ Express D1 - 1 Port V.92 Data Modem + 1522 3100 IQ Express F1 - 1 Port V.34 Super-G3 Fax Modem + 1522 3200 IQ Express D2 - 2 Port V.92 Data Modem + 1522 3300 IQ Express F2 - 2 Port V.34 Super-G3 Fax Modem + 1522 3400 IQ Express D4 - 4 Port V.92 Data Modem + 1522 3500 IQ Express F4 - 4 Port V.34 Super-G3 Fax Modem + 1522 3c00 IQ Express D8 - 8 Port V.92 Data Modem + 1522 3d00 IQ Express F8 - 8 Port V.34 Super-G3 Fax Modem + 4000 PCI Express UART + 1522 4001 IQ Express 1-port V.34 Super-G3 Fax + 1522 4002 IQ Express 2-port V.34 Super-G3 Fax + 1522 4004 IQ Express 4-port V.34 Super-G3 Fax + 1522 4008 IQ Express 8-port V.34 Super-G3 Fax + 1522 4100 IQ Express SideBand +1523 MUSIC Semiconductors +1524 ENE Technology Inc + 0510 CB710 Memory Card Reader Controller + 103c 006a NX9500 + 0520 FLASH memory: ENE Technology Inc: + 0530 ENE PCI Memory Stick Card Reader Controller + 0550 ENE PCI Secure Digital Card Reader Controller + 0551 SD/MMC Card Reader Controller + 0610 PCI Smart Card Reader Controller + 0720 Memory Stick Card Reader Controller + 0730 ENE PCI Memory Stick Card Reader Controller + 0750 ENE PCI SmartMedia / xD Card Reader Controller + 0751 ENE PCI Secure Digital / MMC Card Reader Controller + 1211 CB1211 Cardbus Controller + 1225 CB1225 Cardbus Controller + 1410 CB1410 Cardbus Controller + 1025 003c CL50 motherboard + 1025 005a TravelMate 290 + 103c 30d5 530 Laptop + 1411 CB-710/2/4 Cardbus Controller + 103c 006a NX9500 + 1412 CB-712/4 Cardbus Controller + 1420 CB1420 Cardbus Controller + 1421 CB-720/2/4 Cardbus Controller + 1422 CB-722/4 Cardbus Controller +1525 IMPACT Technologies +1526 ISS, Inc +1527 SOLECTRON +1528 ACKSYS +# nee American Microsystems Inc +1529 ON Semiconductor +152a QUICKTURN DESIGN Systems +152b FLYTECH Technology CO Ltd +152c MACRAIGOR Systems LLC +152d QUANTA Computer Inc +152e MELEC Inc +152f PHILIPS - CRYPTO +1530 ACQIS Technology Inc +1531 CHRYON Corp +1532 ECHELON Corp + 0020 LonWorks PCLTA-20 PCI LonTalk Adapter +1533 BALTIMORE +1534 ROAD Corp +1535 EVERGREEN Technologies Inc +1536 ACTIS Computer +1537 DATALEX COMMUNCATIONS +1538 ARALION Inc + 0303 ARS106S Ultra ATA 133/100/66 Host Controller +1539 ATELIER INFORMATIQUES et ELECTRONIQUE ETUDES S.A. +153a ONO SOKKI +153b TERRATEC Electronic GmbH + 1144 Aureon 5.1 +# Terratec seems to use several IDs for the same card. + 1147 Aureon 5.1 Sky + 1158 Philips Semiconductors SAA7134 (rev 01) [Terratec Cinergy 600 TV] +153c ANTAL Electronic +153d FILANET Corp +153e TECHWELL Inc +153f MIPS Technologies, Inc. + 0001 SOC-it 101 System Controller +1540 PROVIDEO MULTIMEDIA Co Ltd +1541 MACHONE Communications +# nee VIVID Technology Inc. +1542 Concurrent Real-Time + 9260 RCIM-II Real-Time Clock & Interrupt Module + 9271 RCIM-III Real-Time Clock & Interrupt Module (PCIe) + 9272 Pulse Width Modulator Card + 9273 RCIM-IV Real-Time Clock & Interrupt Module (PCIe) + 9277 5 Volt Delta Sigma Converter Card + 9278 10 Volt Delta Sigma Converter Card + 9287 Analog Output Card + 9290 FPGA Card + 9300 Universal Exhaust Gas Oxygen Sensor Simulator + 9310 Digital Programmable Resistor + 9350 Analog Input Card +1543 SILICON Laboratories + 3052 Intel 537 [Winmodem] + 4c22 Si3036 MC'97 DAA +1544 DCM DATA Systems +1545 VISIONTEK +1546 IOI Technology Corp +1547 MITUTOYO Corp +1548 JET PROPULSION Laboratory +1549 INTERCONNECT Systems Solutions +154a MAX Technologies Inc +154b COMPUTEX Co Ltd +154c VISUAL Technology Inc +154d PAN INTERNATIONAL Industrial Corp +154e SERVOTEST Ltd +154f STRATABEAM Technology +1550 OPEN NETWORK Co Ltd +1551 SMART Electronic DEVELOPMENT GmBH +1552 RACAL AIRTECH Ltd +1553 CHICONY Electronics Co Ltd +1554 PROLINK Microsystems Corp +1555 GESYTEC GmBH +1556 PLDA + 1100 PCI Express Core Reference Design + 110f PCI Express Core Reference Design Virtual Function + 1110 XpressRich Reference Design + 1111 XpressRich-AXI Ref Design + 1112 QuickPCIe + 1113 XpressSwitch + 1114 Inspector + 1115 XpressLINK Ref Design + 1116 XpressLINK-SOC Ref Design + be00 PCI Express Bridge +1557 MEDIASTAR Co Ltd +1558 CLEVO/KAPOK Computer +1559 SI LOGIC Ltd +155a INNOMEDIA Inc +155b PROTAC INTERNATIONAL Corp +155c Cemax-Icon Inc +155d Mac System Co Ltd +155e LP Elektronik GmbH +155f Perle Systems Ltd +1560 Terayon Communications Systems +1561 Viewgraphics Inc +1562 Symbol Technologies +1563 A-Trend Technology Co Ltd +1564 Yamakatsu Electronics Industry Co Ltd +1565 Biostar Microtech Int'l Corp +1566 Ardent Technologies Inc +1567 Jungsoft +1568 DDK Electronics Inc +1569 Palit Microsystems Inc. +156a Avtec Systems +156b 2wire Inc +156c Vidac Electronics GmbH +156d Alpha-Top Corp +156e Alfa Inc +156f M-Systems Flash Disk Pioneers Ltd +1570 Lecroy Corp +1571 Contemporary Controls + a001 CCSI PCI20-485 ARCnet + a002 CCSI PCI20-485D ARCnet + a003 CCSI PCI20-485X ARCnet + a004 CCSI PCI20-CXB ARCnet + a005 CCSI PCI20-CXS ARCnet + a006 CCSI PCI20-FOG-SMA ARCnet + a007 CCSI PCI20-FOG-ST ARCnet + a008 CCSI PCI20-TB5 ARCnet + a009 CCSI PCI20-5-485 5Mbit ARCnet + a00a CCSI PCI20-5-485D 5Mbit ARCnet + a00b CCSI PCI20-5-485X 5Mbit ARCnet + a00c CCSI PCI20-5-FOG-ST 5Mbit ARCnet + a00d CCSI PCI20-5-FOG-SMA 5Mbit ARCnet + a201 CCSI PCI22-485 10Mbit ARCnet + a202 CCSI PCI22-485D 10Mbit ARCnet + a203 CCSI PCI22-485X 10Mbit ARCnet + a204 CCSI PCI22-CHB 10Mbit ARCnet + a205 CCSI PCI22-FOG_ST 10Mbit ARCnet + a206 CCSI PCI22-THB 10Mbit ARCnet +1572 Otis Elevator Company +1573 Lattice - Vantis +1574 Fairchild Semiconductor +1575 Voltaire Advanced Data Security Ltd +1576 Viewcast COM +1578 HITT + 4d34 VPMK4 [Video Processor Mk IV] + 5615 VPMK3 [Video Processor Mk III] +1579 Dual Technology Corp +157a Japan Elecronics Ind Inc +157b Star Multimedia Corp +157c Eurosoft (UK) + 8001 Fix2000 PCI Y2K Compliance Card +157d Gemflex Networks +157e Transition Networks +157f PX Instruments Technology Ltd +1580 Primex Aerospace Co +1581 SEH Computertechnik GmbH +1582 Cytec Corp +1583 Inet Technologies Inc +1584 Uniwill Computer Corp +1585 Logitron +1586 Lancast Inc +1587 Konica Corp +1588 Solidum Systems Corp +1589 Atlantek Microsystems Pty Ltd + 0008 Leutron Vision PicPortExpress CL + 0009 Leutron Vision PicPortExpress CL Stereo +158a Digalog Systems Inc +158b Allied Data Technologies +158c Hitachi Semiconductor & Devices Sales Co Ltd +158d Point Multimedia Systems +158e Lara Technology Inc +158f Ditect Coop +# formerly 3PAR Inc. +1590 Hewlett Packard Enterprise + 0001 Eagle Cluster Manager + 0002 Osprey Cluster Manager + 0003 Harrier Cluster Manager + a01d FC044X Fibre Channel HBA +1591 ARN +1592 Syba Tech Ltd + 0781 Multi-IO Card + 0782 Parallel Port Card 2xEPP + 0783 Multi-IO Card + 0785 Multi-IO Card + 0786 Multi-IO Card + 0787 Multi-IO Card + 0788 Multi-IO Card + 078a Multi-IO Card +1593 Bops Inc +1594 Netgame Ltd +1595 Diva Systems Corp +1596 Folsom Research Inc +1597 Memec Design Services +1598 Granite Microsystems +1599 Delta Electronics Inc +159a General Instrument +159b Faraday Technology Corp + 4321 StorLink SL3516 (Gemini) Host Bridge +159c Stratus Computer Systems +159d Ningbo Harrison Electronics Co Ltd +159e A-Max Technology Co Ltd +159f Galea Network Security +15a0 Compumaster SRL +15a1 Geocast Network Systems +15a2 Catalyst Enterprises Inc + 0001 TA700 PCI Bus Analyzer/Exerciser +15a3 Italtel +15a4 X-Net OY +15a5 Toyota Macs Inc +15a6 Sunlight Ultrasound Technologies Ltd +15a7 SSE Telecom Inc +15a8 Shanghai Communications Technologies Center +15aa Moreton Bay +15ab Bluesteel Networks Inc +15ac North Atlantic Instruments + 6893 3U OpenVPX Multi-function I/O Board [Model 68C3] +15ad VMware + 0405 SVGA II Adapter + 0710 SVGA Adapter + 0720 VMXNET Ethernet Controller + 0740 Virtual Machine Communication Interface + 0770 USB2 EHCI Controller + 0774 USB1.1 UHCI Controller + 0778 USB3 xHCI 0.96 Controller + 0779 USB3 xHCI 1.0 Controller + 0790 PCI bridge + 07a0 PCI Express Root Port + 07b0 VMXNET3 Ethernet Controller + 07c0 PVSCSI SCSI Controller + 07e0 SATA AHCI controller + 07f0 NVMe SSD Controller + 0801 Virtual Machine Interface + 15ad 0800 Hypervisor ROM Interface + 0820 Paravirtual RDMA controller + 1977 HD Audio Controller +15ae Amersham Pharmacia Biotech +15b0 Zoltrix International Ltd +15b1 Source Technology Inc +15b2 Mosaid Technologies Inc +15b3 Mellanox Technologies + 0191 MT25408 [ConnectX IB Flash Recovery] + 01f6 MT27500 Family [ConnectX-3 Flash Recovery] + 01f8 MT27520 Family [ConnectX-3 Pro Flash Recovery] + 01ff MT27600 Family [Connect-IB Flash Recovery] + 0209 MT27700 Family [ConnectX-4 Flash Recovery] + 020b MT27710 Family [ConnectX-4 Lx Flash Recovery] + 020d MT28800 Family [ConnectX-5 Flash Recovery] + 020f MT28908A0 Family [ConnectX-6 Flash Recovery] + 0210 MT28908A0 Family [ConnectX-6 Secure Flash Recovery] + 0211 MT416842 Family [BlueField SoC Flash Recovery] + 0212 MT2892 Family [ConnectX-6 Dx Flash Recovery] + 0213 MT2892 Family [ConnectX-6 Dx Secure Flash Recovery] + 0214 MT42822 Family [BlueField-2 SoC Flash Recovery] + 0215 MT42822 Family [BlueField-2 Secure Flash Recovery] + 0216 MT2894 Family [ConnectX-6 Lx Flash Recovery] + 0217 MT2894 Family [ConnectX-6 Lx Secure Flash Recovery] + 0218 MT2910 Family [ConnectX-7 Flash Recovery] + 0219 MT2910 Family [ConnectX-7 Secure Flash Recovery] + 021a MT43162 Family [BlueField-3 Lx SoC Flash Recovery] + 021b MT43162 Family [BlueField-3 Lx Secure Flash Recovery] + 021c MT43244 Family [BlueField-3 SoC Flash Recovery] + 021d MT43244 Family [BlueField-3 Secure Flash Recovery] + 021e CX8 Family [ConnectX-8 Flash Recovery] + 021f CX8 Family [ConnectX-8 Secure Flash Recovery] + 0220 BF4 Family Flash Recovery [BlueField-4 SoC Flash Recovery] + 0221 BF4 Family Secure Flash Recovery [BlueField-4 Secure Flash Recovery] + 024e MT53100 [Spectrum-2, Flash recovery mode] + 024f MT53100 [Spectrum-2, Secure Flash recovery mode] + 0250 Spectrum-3, Flash recovery mode + 0251 Spectrum-3, Secure Flash recovery mode + 0252 Amos chiplet + 0253 Amos GearBox Manager + 0254 Spectrum-4, Flash recovery mode + 0255 Spectrum-4 RMA + 0256 Abir GearBox + 0257 Quantum-2 in Flash Recovery Mode + 0258 Quantum-2 RMA + 0259 Abir Chiplet + 0262 MT27710 [ConnectX-4 Lx Programmable] EN + 0263 MT27710 [ConnectX-4 Lx Programmable Virtual Function] EN + 0264 Innova-2 Flex Burn image + 0270 Spectrum-4L, Flash recovery mode + 0271 Spectrum-4L, RMA + 0274 Spectrum-4C, Flash recovery mode + 0275 Spectrum-4C RMA + 0277 Spectrum-4TOR RMA + 0281 NPS-600 Flash Recovery + 1002 MT25400 Family [ConnectX-2 Virtual Function] + 1003 MT27500 Family [ConnectX-3] + 1014 04b5 PCIe3 40GbE RoCE Converged Host Bus Adapter for Power + 103c 1777 InfiniBand FDR/EN 10/40Gb Dual Port 544FLR-QSFP Adapter (Rev Cx) + 103c 17c9 Infiniband QDR/Ethernet 10Gb 2-port 544i Adapter + 103c 18ce InfiniBand QDR/EN 10Gb Dual Port 544M Adapter + 103c 18cf InfiniBand FDR/EN 10/40Gb Dual Port 544M Adapter + 103c 18d6 InfiniBand FDR/EN 10/40Gb Dual Port 544QSFP Adapter + 15b3 0025 ConnectX-3 IB QDR Dual Port Mezzanine Card + 15b3 0026 ConnectX-3 IB FDR Dual Port Mezzanine Card + 15b3 0028 ConnectX-3 VPI Dual QSFP+ Port QDR Infiniband 40Gb/s or 10Gb Ethernet + 15b3 0059 ConnectX-3 VPI IB FDR/40 GbE Single Port QSFP+ Mezzanine Card + 15b3 0064 ConnectX-3 EN 10/40 GbE Single Port QSFP+ Adapter (MCX313A-BCBT) + 15b3 0065 ConnectX-3 VPI IB FDR/40 GbE Dual Port QSFP+ Adapter + 15b3 0066 ConnectX-3 IB FDR10 Dual Port Mezzanine Card + 15b3 0067 ConnectX-3 VPI IB FDR/40 GbE Single Port QSFP+ Adapter + 15b3 0071 ConnectX-3 VPI IB FDR/40 GbE Dual Port QSFP+ Mezzanine Card +# SVID = 15B3 SSID = 0078 + 15b3 0078 ConnectX-3 10 GbE Dual Port KR Mezzanine Card + 15b3 0079 ConnectX-3 40 GbE Dual Port QSFP+ Adapter +# SVID = 15B3 SSID = 0080 + 15b3 0080 ConnectX-3 10 GbE Dual Port SFP+ Adapter + 1004 MT27500/MT27520 Family [ConnectX-3/ConnectX-3 Pro Virtual Function] + 1005 MT27510 Family + 1006 MT27511 Family + 1007 MT27520 Family [ConnectX-3 Pro] + 1014 04eb 2-Port 10GbE NIC and RoCE SR PCIe3 + 103c 22f3 InfiniBand FDR/Ethernet 10Gb/40Gb 2-port 544+QSFP Adapter + 103c 22f4 InfiniBand FDR/Ethernet 10Gb/40Gb 2-port 544+FLR-QSFP Adapter + 103c 801f Ethernet 10G 2-port 546SFP+ Adapter + 117c 0090 FastFrame NQ41 + 117c 0091 FastFrame NQ42 + 117c 0092 FastFrame NQ11 + 117c 0093 FastFrame NQ12 + 15b3 0006 Mellanox Technologies ConnectX-3 Pro Stand-up dual-port 40GbE MCX314A-BCCT + 15b3 0078 ConnectX-3 Pro 10 GbE Dual Port KR Mezzanine Card + 15b3 0079 ConnectX-3 Pro 40 GbE Dual Port QSFP+ Adapter + 15b3 0080 ConnectX-3 Pro 10 GbE Dual Port SFP+ Adapter + 193d 1002 520F-B + 1009 MT27530 Family + 100a MT27531 Family + 100b MT27540 Family + 100c MT27541 Family + 100d MT27550 Family + 100e MT27551 Family + 100f MT27560 Family + 1010 MT27561 Family + 1011 MT27600 [Connect-IB] + 1012 MT27600 Family [Connect-IB Virtual Function] + 1013 MT27700 Family [ConnectX-4] + 1014 04f7 PCIe3 2-port 100 GbE (NIC and RoCE) QSFP28 Adapter for Power + 15b3 0003 Mellanox Technologies ConnectX-4 Stand-up single-port 40GbE MCX413A-BCAT + 15b3 0005 Mellanox Technologies ConnectX-4 Stand-up single-port 40GbE MCX415A-BCAT + 15b3 0006 MCX416A-BCAT, ConnectX-4 EN, 40/56GbE 2P, PCIe3.0 x16 + 15b3 0007 ConnectX-4 EN network interface card, 40/56GbE dual-port QSFP28, PCIe3.0 x16, tall bracket + 15b3 0008 ConnectX-4 Stand-up dual-port 100GbE MCX416A-CCAT + 15b3 0033 ConnectX-4 VPI IB EDR/100 GbE Single Port QSFP28 Adapter + 15b3 0034 ConnectX-4 VPI IB EDR/100 GbE Dual Port QSFP28 Adapter + 15b3 0050 ConnectX-4 100 GbE Dual Port QSFP28 Adapter + 1014 MT27700 Family [ConnectX-4 Virtual Function] + 1015 MT27710 Family [ConnectX-4 Lx] + 15b3 0001 ConnectX-4 Lx EN network interface card, 25GbE single-port SFP28, PCIe3.0 x8, tall bracket, ROHS R6 + 15b3 0003 Stand-up ConnectX-4 Lx EN, 25GbE dual-port SFP28, PCIe3.0 x8, MCX4121A-ACAT + 15b3 0004 ConnectX-4 Lx Stand-up dual-port 10GbE MCX4121A-XCAT + 15b3 0005 Mellanox Technologies ConnectX-4 Lx Stand-up single-port 40GbE MCX4131A-BCAT + 15b3 0020 MCX4411A-ACQN, ConnectX-4 Lx EN OCP, 1x25Gb + 15b3 0021 MCX4421A-ACQN ConnectX-4 Lx EN OCP,2x25G + 15b3 0025 ConnectX-4 Lx 25 GbE Dual Port SFP28 rNDC + 193d 100a 620F-B +# NIC-ETH540F-LP-2P SFP+ Ethernet Card + 193d 1023 NIC-ETH540F-LP-2P + 193d 1031 NIC-ETH640i-Mb-2x25G +# NIC-ETH640F-3S-2P OCP3.0 Card + 193d 1083 NIC-ETH640F-3S-2P +# NIC-ETH540F-3S-2P OCP3.0 2x10G Card + 193d 1084 NIC-ETH540F-3S-2P + 1016 MT27710 Family [ConnectX-4 Lx Virtual Function] + 1017 MT27800 Family [ConnectX-5] + 15b3 0006 ConnectX®-5 EN network interface card, 100GbE single-port QSFP28, PCIe3.0 x16, tall bracket; MCX515A-CCAT + 15b3 0007 Mellanox ConnectX®-5 MCX516A-CCAT + 15b3 0020 ConnectX®-5 EN network interface card, 10/25GbE dual-port SFP28, PCIe3.0 x8, tall bracket ; MCX512A-ACAT + 15b3 0068 ConnectX®-5 EN network interface card for OCP2.0, Type 1, with host management, 25GbE dual-port SFP28, PCIe3.0 x8, no bracket Halogen free ; MCX542B-ACAN + 193d 1051 NIC-IB1040i-Mb-2P + 1018 MT27800 Family [ConnectX-5 Virtual Function] + 1019 MT28800 Family [ConnectX-5 Ex] + 15b3 0008 ConnectX-5 Ex EN network interface card, 100GbE dual-port QSFP28, PCIe4.0 x16, tall bracket; MCX516A-CDAT + 15b3 0125 Tencent ConnectX-5 EN Ex network interface card for OCP 3.0, with host management, 50GbE Dual-port QSFP28, PCIe4.0 x16, Thumbscrew (pull-tab) bracket + 101a MT28800 Family [ConnectX-5 Ex Virtual Function] + 101b MT28908 Family [ConnectX-6] + 101c MT28908 Family [ConnectX-6 Virtual Function] + 101d MT2892 Family [ConnectX-6 Dx] + 101e ConnectX Family mlx5Gen Virtual Function + 101f MT2894 Family [ConnectX-6 Lx] + 1020 MT28860 + 1021 MT2910 Family [ConnectX-7] + 1023 CX8 Family [ConnectX-8] + 1974 MT28800 Family [ConnectX-5 PCIe Bridge] + 1975 MT416842 Family [BlueField SoC PCIe Bridge] + 1976 MT28908 Family [ConnectX-6 PCIe Bridge] + 1977 MT2892 Family [ConnectX-6 Dx PCIe Bridge] + 1978 MT42822 Family [BlueField-2 SoC PCIe Bridge] + 1979 MT2910 Family [ConnectX-7 PCIe Bridge] + 197a MT43162 Family [BlueField-3 Lx SoC PCIe Bridge] + 197b MT43244 Family [BlueField-3 SoC PCIe Bridge] + 197c ConnectX/BlueField Family mlx5Gen PCIe Bridge [PCIe Bridge] + 2020 MT2892 Family [ConnectX-6 Dx Emulated PCIe Bridge] + 2021 MT42822 Family [BlueField-2 SoC Emulated PCIe Bridge] + 2023 MT2910 Family [ConnectX-7 Emulated PCIe Bridge] + 2024 MT43244 Family [BlueField-3 SoC Emulated PCIe Bridge] + 2025 ConnectX/BlueField Family mlx5Gen Emulated PCIe Bridge [Emulated PCIe Bridge] + 4117 MT27712A0-FDCF-AE + 1bd4 0039 SN10XMP2P25 + 1bd4 003a 25G SFP28 SP EO251FM9 Adapter + 1bd4 004d SN10XMP2P25,YZPC-01191-101 + 5274 MT21108 InfiniBridge + 5a44 MT23108 InfiniHost + 5a45 MT23108 [Infinihost HCA Flash Recovery] + 5a46 MT23108 PCI Bridge + 5e8c MT24204 [InfiniHost III Lx HCA] + 5e8d MT25204 [InfiniHost III Lx HCA Flash Recovery] + 6001 NVMe SNAP Controller + 6274 MT25204 [InfiniHost III Lx HCA] + 6278 MT25208 InfiniHost III Ex (Tavor compatibility mode) + 6279 MT25208 [InfiniHost III Ex HCA Flash Recovery] + 6282 MT25208 [InfiniHost III Ex] + 6340 MT25408A0-FCC-SI ConnectX, Dual Port 10Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 2.5GT/s Interface + 634a MT25408A0-FCC-DI ConnectX, Dual Port 20Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 2.5GT/s Interface + 1014 1014 4X InfiniBand DDR Expansion Card (CFFh) for IBM BladeCenter + 6368 MT25448 [ConnectX EN 10GigE, PCIe 2.0 2.5GT/s] + 6372 MT25458 ConnectX EN 10GBASE-T PCIe 2.5 GT/s + 6732 MT25408A0-FCC-GI ConnectX, Dual Port 20Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 5.0GT/s Interface + 673c MT25408A0-FCC-QI ConnectX, Dual Port 40Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 5.0GT/s Interface + 1014 0415 PCIe2 2-port 4X InfiniBand QDR Adapter for Power + 1014 0487 GX++ 1-port 4X IB QDR Adapter for Power 795 + 103c 1782 4X QDR InfiniBand Mezzanine HCA for c-Class BladeSystem + 15b3 0021 HP InfiniBand 4X QDR CX-2 PCI-e G2 Dual Port HCA + 6746 MT26438 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE Virtualization+] + 103c 1781 NC543i 1-port 4x QDR IB/Flex-10 10Gb Adapter + 103c 3349 NC543i 2-port 4xQDR IB/10Gb Adapter + 6750 MT26448 [ConnectX EN 10GigE, PCIe 2.0 5GT/s] + 1014 0416 PCIe2 2-Port 10GbE RoCE SFP+ Adapter + 1014 0461 PCIe2 2-Port 10GbE RoCE SR Adapter + 15b3 0018 HP 10 GbE PCI-e G2 Dual-Port NIC (rev C1) +# FC EC26 + 15b3 6572 IBM Flex System EN4132 2-port 10Gb RoCE Adapter + 675a MT26458 ConnectX EN 10GBASE-T PCIe Gen2 5.0 GT/s + 6764 MT26468 [ConnectX EN 10GigE, PCIe 2.0 5GT/s Virtualization+] + 103c 3313 NC542m Dual Port Flex-10 10GbE BLc Adapter + 676e MT26478 [ConnectX EN 40GigE, PCIe 2.0 5GT/s] + 6778 MT26488 [ConnectX VPI PCIe 2.0 5GT/s - IB DDR / 10GigE Virtualization+] + 7101 NPS-400 configuration and management interface + 7102 NPS-400 network interface PF + 7103 NPS-400 network interface VF + 7121 NPS-600 configuration and management interface + 7122 NPS-600 network interface PF + 7123 NPS-600 network interface VF + 8200 Innova-2 Flex Shell Logic + a2d0 MT416842 BlueField SoC Crypto enabled + a2d1 MT416842 BlueField SoC Crypto disabled + a2d2 MT416842 BlueField integrated ConnectX-5 network controller + a2d3 MT416842 BlueField multicore SoC family VF + a2d4 MT42822 BlueField-2 SoC Crypto enabled + a2d5 MT42822 BlueField-2 SoC Crypto disabled + a2d6 MT42822 BlueField-2 integrated ConnectX-6 Dx network controller + a2d7 MT43162 BlueField-3 Lx SoC Crypto enabled + a2d8 MT43162 BlueField-3 Lx SoC Crypto disabled + a2d9 MT43162 BlueField-3 Lx integrated ConnectX-7 network controller + a2da MT43244 BlueField-3 SoC Crypto enabled + a2db MT43244 BlueField-3 SoC Crypto disabled + a2dc MT43244 BlueField-3 integrated ConnectX-7 network controller + a2dd BF4 Family Crypto enabled [BlueField-4 SoC Crypto enabled] + a2de BF4 Family Crypto disabled [BlueField-4 SoC Crypto disabled] + a2df BF4 Family integrated network controller [BlueField-4 integrated network controller] + c2d2 MT416842 BlueField SoC management interfac + c2d3 MT42822 BlueField-2 SoC Management Interface + c2d4 MT43162 BlueField-3 Lx SoC Management Interface + c2d5 MT43244 BlueField-3 SoC Management Interface + c2d6 BF4 Family Management Interface [BlueField-4 SoC Management Interface] +# SwitchX-2, 40GbE switch + c738 MT51136 + c739 MT51136 GW + c838 MT52236 + c839 MT52236 router + caf1 ConnectX-4 CAPI Function +# Spectrum, 100GbE Switch + cb84 MT52100 + cf08 Switch-IB2 + cf6c MT53100 [Spectrum-2] + cf70 Spectrum-3 + cf80 Spectrum-4 + cf82 Spectrum-4L + cf84 Spectrum-4C + d2f0 Quantum HDR (200Gbps) switch + d2f2 Quantum-2 NDR (400Gbps) switch +15b4 CCI/TRIAD +15b5 Cimetrics Inc +15b6 Texas Memory Systems Inc + 0001 XP15 DSP Accelerator + 0002 XP30 DSP Accelerator + 0003 XP00 Data Acquisition Device + 0004 XP35 DSP Accelerator + 0007 XP100 DSP Accelerator [XP100-T0] + 0008 XP100 DSP Accelerator [XP100-T1] + 0009 XP100 DSP Accelerator [XP100-E0] + 000a XP100 DSP Accelerator [XP100-E1] + 000e XP100 DSP Accelerator [XP100-0] + 000f XP100 DSP Accelerator [XP100-1] + 0010 XP100 DSP Accelerator [XP100-P0] + 0011 XP100 DSP Accelerator [XP100-P1] + 0012 XP100 DSP Accelerator [XP100-P2] + 0013 XP100 DSP Accelerator [XP100-P3] + 0014 RamSan Flash SSD + 0015 ZBox +15b7 Sandisk Corp + 2001 Skyhawk Series NVME SSD + 5001 WD Black NVMe SSD + 5002 WD Black 2018/SN750 / PC SN720 NVMe SSD + 5003 WD Blue SN500 / PC SN520 NVMe SSD + 5004 PC SN520 NVMe SSD + 5005 PC SN520 NVMe SSD + 5006 WD Black SN750 / PC SN730 NVMe SSD + 5009 WD Blue SN550 NVMe SSD + 15b7 5009 WD Blue SN550 NVMe SSD + 500b PC SN530 NVMe SSD + 1414 500b Xbox Series X + 500d WD Ultrastar DC SN340 NVMe SSD + 5011 WD PC SN810 / Black SN850 NVMe SSD + 501a WD Blue SN570 NVMe SSD +15b8 ADDI-DATA GmbH + 1001 APCI1516 SP controller (16 digi outputs) + 1003 APCI1032 SP controller (32 digi inputs w/ opto coupler) + 1004 APCI2032 SP controller (32 digi outputs) + 1005 APCI2200 SP controller (8/16 digi outputs (relay)) + 1006 APCI1564 SP controller (32 digi ins, 32 digi outs) + 100a APCI1696 SP controller (96 TTL I/Os) + 3001 APCI3501 SP controller (analog output board) + 300f APCI3600 Noise and vibration measurement board + 7001 APCI7420 2-port Serial Controller + 7002 APCI7300 Serial Controller +15b9 Maestro Digital Communications +15ba Impacct Technology Corp +15bb Portwell Inc +15bc Agilent Technologies + 0100 HPFC-5600 Tachyon DX2+ FC + 0103 QX4 PCI Express quad 4-gigabit Fibre Channel controller + 0105 Celerity FC-44XS/FC-42XS/FC-41XS/FC-44ES/FC-42ES/FC-41ES + 117c 0022 Celerity FC-42XS Fibre Channel Adapter + 117c 0025 Celerity FC-44ES Fibre Channel Adapter + 117c 0026 Celerity FC-42ES Fibre Channel Adapter + 1100 E8001-66442 PCI Express CIC + 2922 64 Bit, 133MHz PCI-X Exerciser & Protocol Checker + 2928 64 Bit, 66MHz PCI Exerciser & Analyzer + 2929 64 Bit, 133MHz PCI-X Analyzer & Exerciser +15bd DFI Inc +15be Sola Electronics +15bf High Tech Computer Corp (HTC) +15c0 BVM Ltd +15c1 Quantel +15c2 Newer Technology Inc +15c3 Taiwan Mycomp Co Ltd +15c4 EVSX Inc +15c5 Procomp Informatics Ltd + 8010 1394b - 1394 Firewire 3-Port Host Adapter Card +15c6 Technical University of Budapest +15c7 Tateyama System Laboratory Co Ltd + 0349 Tateyama C-PCI PLC/NC card Rev.01A +15c8 Penta Media Co Ltd +15c9 Serome Technology Inc +15ca Bitboys OY +15cb AG Electronics Ltd +15cc Hotrail Inc +15cd Dreamtech Co Ltd +15ce Genrad Inc +# https://www.hilscher.com/imprint/ +15cf Hilscher Gesellschaft für Systemautomation mbH + 0000 CIFX PCI/PCIe +15d1 Infineon Technologies AG +15d2 FIC (First International Computer Inc) +15d3 NDS Technologies Israel Ltd +15d4 Iwill Corp +15d5 Tatung Co +15d6 Entridia Corp +15d7 Rockwell-Collins Inc +15d8 Cybernetics Technology Co Ltd +15d9 Super Micro Computer Inc +15da Cyberfirm Inc +15db Applied Computing Systems Inc +15dc Litronic Inc + 0001 Argus 300 PCI Cryptography Module +15dd Sigmatel Inc +15de Malleable Technologies Inc +15df Infinilink Corp +15e0 Cacheflow Inc +15e1 Voice Technologies Group Inc +15e2 Quicknet Technologies Inc + 0500 PhoneJack-PCI +15e3 Networth Technologies Inc +15e4 VSN Systemen BV +15e5 Valley technologies Inc +15e6 Agere Inc +15e7 Get Engineering Corp +15e8 National Datacomm Corp + 0130 Wireless PCI Card + 0131 NCP130A2 Wireless NIC +15e9 Pacific Digital Corp + 1841 ADMA-100 DiscStaQ ATA Controller +15ea Tokyo Denshi Sekei K.K. +15eb DResearch Digital Media Systems GmbH +15ec Beckhoff GmbH + 3101 FC3101 Profibus DP 1 Channel PCI + 5102 FC5102 +15ed Macrolink Inc +15ee In Win Development Inc +15ef Intelligent Paradigm Inc +15f0 B-Tree Systems Inc +15f1 Times N Systems Inc +15f2 Diagnostic Instruments Inc +15f3 Digitmedia Corp +15f4 Valuesoft +15f5 Power Micro Research +15f6 Extreme Packet Device Inc +15f7 Banctec +15f8 Koga Electronics Co +15f9 Zenith Electronics Corp +15fa J.P. Axzam Corp +15fb Zilog Inc +15fc Techsan Electronics Co Ltd +15fd N-CUBED.NET +15fe Kinpo Electronics Inc +15ff Fastpoint Technologies Inc +1600 Northrop Grumman - Canada Ltd +1601 Tenta Technology +1602 Prosys-tec Inc +1603 Nokia Wireless Communications +1604 Central System Research Co Ltd +1605 Pairgain Technologies +1606 Europop AG +1607 Lava Semiconductor Manufacturing Inc +1608 Automated Wagering International +1609 Scimetric Instruments Inc +1612 Telesynergy Research Inc. +1618 Stone Ridge Technology + 0001 RDX 11 + 0002 HFT-01 + 0400 FarSync T2P (2 port X.21/V.35/V.24) + 0440 FarSync T4P (4 port X.21/V.35/V.24) + 0610 FarSync T1U (1 port X.21/V.35/V.24) + 0620 FarSync T2U (2 port X.21/V.35/V.24) + 0640 FarSync T4U (4 port X.21/V.35/V.24) + 1610 FarSync TE1 (T1,E1) + 2610 FarSync DSL-S1 (SHDSL) + 3640 FarSync T4E (4-port X.21/V.35/V.24) + 4620 FarSync T2Ue PCI Express (2-port X.21/V.35/V.24) + 4640 FarSync T4Ue PCI Express (4-port X.21/V.35/V.24) +1619 FarSite Communications Ltd + 0400 FarSync T2P (2 port X.21/V.35/V.24) + 0440 FarSync T4P (4 port X.21/V.35/V.24) + 0610 FarSync T1U (1 port X.21/V.35/V.24) + 0620 FarSync T2U (2 port X.21/V.35/V.24) + 0640 FarSync T4U (4 port X.21/V.35/V.24) + 1610 FarSync TE1 (T1,E1) + 1612 FarSync TE1 PCI Express (T1,E1) + 2610 FarSync DSL-S1 (SHDSL) + 3640 FarSync T4E (4-port X.21/V.35/V.24) + 4620 FarSync T2Ue PCI Express (2-port X.21/V.35/V.24) + 4640 FarSync T4Ue PCI Express (4-port X.21/V.35/V.24) + 5621 FarSync T2Ee PCI Express (2 port X.21/V.35/V.24) + 5641 FarSync T4Ee PCI Express (4 port X.21/V.35/V.24) + 6620 FarSync T2U-PMC PCI Express (2 port X.21/V.35/V.24) +161f Rioworks +1621 Lynx Studio Technology, Inc. + 0020 LynxTWO-A + 0021 LynxTWO-B + 0022 LynxTWO-C + 0023 Lynx L22 + 0024 Lynx AES16 + 0025 Lynx AES16-SRC + 0028 Lynx AES16e +1626 TDK Semiconductor Corp. + 8410 RTL81xx Fast Ethernet +1629 Kongsberg Spacetec AS + 1003 Format synchronizer v3.0 + 1006 Format synchronizer, model 10500 + 1007 Format synchronizer, model 21000 + 2002 Fast Universal Data Output + 3100 IO31000 Frame Synchronizer and I/O + 3200 IO32000 Frame Synchronizer and I/O + 4002 High Rate Demodulator + 5001 High Rate FEC + 6001 High Rate Demodulator and FEC +1631 Packard Bell B.V. +1638 Standard Microsystems Corp [SMC] + 1100 SMC2602W EZConnect / Addtron AWA-100 / Eumitcom PCI WL11000 +163c Smart Link Ltd. + 3052 SmartLink SmartPCI562 56K Modem + 5449 SmartPCI561 Modem +1641 MKNet Corp. +1642 Bitland(ShenZhen) Information Technology Co., Ltd. +# nee Brocade Communications Systems, Inc. +1657 Cavium QLogic + 0013 425/825/42B/82B 4Gbps/8Gbps PCIe dual port FC HBA + 103c 1742 82B 8Gbps dual port FC HBA + 103c 1744 42B 4Gbps dual port FC HBA + 1657 0014 425/825 4Gbps/8Gbps PCIe dual port FC HBA + 0014 1010/1020/1007/1741 10Gbps CNA + 1657 0014 1010/1020/1007/1741 10Gbps CNA - FCOE + 1657 0015 1010/1020/1007/1741 10Gbps CNA - LL + 0017 415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA + 103c 1741 41B 4Gbps single port FC HBA + 103c 1743 81B 8Gbps single port FC HBA + 1657 0014 415/815 4Gbps/8Gbps single port PCIe FC HBA + 0021 804 8Gbps FC HBA for HP Bladesystem c-class + 0022 BR-1860 Fabric Adapter + 1657 0022 10Gbps CNA - FCOE + 1657 0023 10Gbps CNA - LL + 1657 0024 16Gbps FC HBA +# Mezz card for IBM + 0023 1867/1869 16Gbps FC HBA +# Same Device_ID used for 410 (1port) and 420 (2 port) HBAs. + 0646 400 4Gbps PCIe FC HBA +165a Epix Inc + c100 PIXCI(R) CL1 Camera Link Video Capture Board [custom QL5232] + d200 PIXCI(R) D2X Digital Video Capture Board [custom QL5232] + d300 PIXCI(R) D3X Digital Video Capture Board [custom QL5232] + eb01 PIXCI(R) EB1 PCI Camera Link Video Capture Board +# Gidel Reconfigurable Computing +165c Gidel Ltd. + 5361 PROCStarII60-1 + 5362 PROCStarII60-2 + 5364 PROCStarII60-4 + 5435 ProcSparkII + 5661 ProcE60 + 56e1 ProcE180 + 5911 ProcStarIII110-1 + 5912 ProcStarIII110-2 + 5913 ProcStarIII110-3 + 5914 ProcStarIII110-4 + 5921 ProcStarIII150-1 + 5922 ProcStarIII150-2 + 5923 ProcStarIII150-3 + 5924 ProcStarIII150-4 + 5931 ProcStarIII260-1 + 5932 ProcStarIII260-2 + 5933 ProcStarIII260-3 + 5934 ProcStarIII260-4 + 5941 ProcStarIII340-1 + 5942 ProcStarIII340-2 + 5943 ProcStarIII340-3 + 5944 ProcStarIII340-4 + 5a01 ProceIII80 + 5a11 ProceIII110 + 5a21 ProceIII150 + 5a31 ProceIII260 + 5a41 ProceIII340 + 5b51 ProceIV360 + 5b61 ProceIV530 + 5b71 ProceIV820 + 5c01 ProcStarIV80-1 + 5c02 ProcStarIV80-2 + 5c03 ProcStarIV80-3 + 5c04 ProcStarIV80-4 + 5c11 ProcStarIV110-1 + 5c12 ProcStarIV110-2 + 5c13 ProcStarIV110-3 + 5c14 ProcStarIV110-4 + 5c51 ProcStarIV360-1 + 5c52 ProcStarIV360-2 + 5c53 ProcStarIV360-3 + 5c54 ProcStarIV360-4 + 5c61 ProcStarIV530-1 + 5c62 ProcStarIV530-2 + 5c63 ProcStarIV530-3 + 5c64 ProcStarIV530-4 + 5c71 ProcStarIV820-1 + 5c72 ProcStarIV820-2 + 5c73 ProcStarIV820-3 + 5c74 ProcStarIV820-4 + 5d01 Proc10480 + 5d11 Proc104110 + 5f01 ProceV_A3 + 5f11 ProceV_A7 + 5f21 ProceV_AB + 5f31 ProceV_D5 + 5f41 ProceV_D8 + 6732 Proc6M + 6832 Proc12M + 7101 Proc10a_27 + 7111 Proc10a_48 + 7121 Proc10a_66 + 7141 Proc10a_115 + 7181 Proc10a_27S + 7191 Proc10a_48S + 71a1 Proc10a_66S + 71b1 Proc10A + 72b1 HawkEye + 73b1 Proc10s +165d Hsing Tech. Enterprise Co., Ltd. +165f Linux Media Labs, LLC + 1020 LMLM4 MPEG-4 encoder +1661 Worldspace Corp. +1668 Actiontec Electronics Inc + 0100 Mini-PCI bridge +# Formerly SiByte, Inc. +166d Broadcom Corporation + 0001 SiByte BCM1125/1125H/1250 System-on-a-Chip PCI + 0002 SiByte BCM1125H/1250 System-on-a-Chip HyperTransport + 0012 SiByte BCM1280/BCM1480 System-on-a-Chip PCI-X + 0014 Sibyte BCM1280/BCM1480 System-on-a-Chip HyperTransport +1677 B&R Industrial Automation GmbH + 104e 5LS172.6 B&R Dual CAN Interface Card + 12d7 5LS172.61 B&R Dual CAN Interface Card + 20ad 5ACPCI.MFIO-K01 Profibus DP / K-Feldbus / COM +1678 NetEffect + 0100 NE020 10Gb Accelerated Ethernet Adapter (iWARP RNIC) +1679 Tokyo Electron Device Ltd. + 3000 SD Standard host controller [Ellen] +167b ZyDAS Technology Corp. + 2102 ZyDAS ZD1202 + 187e 3406 ZyAIR B-122 CardBus 11Mbs Wireless LAN Card + 187e 3407 ZyAIR B-320 802.11b Wireless PCI Adapter + 2116 ZD1212B Wireless Adapter +167d Samsung Electro-Mechanics Co., Ltd. + a000 MagicLAN SWL-2210P 802.11b [Intersil ISL3874] +167e ONNTO Corp. +1681 Hercules +1682 XFX Pine Group Inc. + 5701 Radeon 5700 XT Thicc III Ultra + c580 Radeon RX 580 +1688 CastleNet Technology Inc. + 1170 WLAN 802.11b card +168a Utimaco IS GmbH + 2086 CryptoServer Se-Series Hardware Security Module + c040 CryptoServer CSe-Series Hardware Security Module + c051 CryptoServer Se-Series Gen2 Hardware Security Module + c070 u.trust Anchor Hardware Security Module cs7.2 Series + c071 u.trust Anchor Hardware Security Module cs7.3 Series + c072 u.trust Anchor Hardware Security Module cs7.3 Series Virtual Function +# nee Atheros Communications, Inc. +168c Qualcomm Atheros + 0007 AR5210 Wireless Network Adapter [AR5000 802.11a] + 1737 0007 WPC54A Wireless PC Card + 1b47 0100 Harmony 8450CN Wireless CardBus Module + 1b47 0110 Skyline 4030 / Harmony 8450 802.11a Wireless CardBus Adapter + 8086 2501 PRO/Wireless 5000 LAN PCI Adapter Module + 0011 AR5211 Wireless Network Adapter [AR5001A 802.11a] + 0012 AR5211 Wireless Network Adapter [AR5001X 802.11ab] + 1186 3a03 AirPro DWL-A650 Wireless Cardbus Adapter (rev.B) + 1186 3a04 AirPro DWL-AB650 Multimode Wireless Cardbus Adapter + 1186 3a05 AirPro DWL-AB520 Multimode Wireless PCI Adapter + 126c 8031 2201 Mobile Adapter + 1385 4400 WAB501 802.11ab Wireless CardBus Card + 1b47 aa00 8460 802.11ab Wireless CardBus Adapter + 0013 AR5212/5213/2414 Wireless Network Adapter + 0308 3402 AG-100 802.11ag Wireless Cardbus Adapter + 0308 3405 G-102 v2 802.11g Wireless Cardbus Adapter + 0308 3408 G-170S 802.11g Wireless CardBus Adapter + 0e11 00e5 NC6000/NC8000 laptop + 10b7 6002 3CRWE154A72 802.11abg Cardbus Adapter + 1113 d301 Philips CPWNA100 Wireless CardBus adapter + 1113 ee23 SMCWPCIT-G 108Mbps Wireless PCI adapter + 1154 033b Buffalo WLI-CB-AMG54 + 1154 034e Buffalo WLI-CB-AG108HP 802.11abg Cardbus Adapter + 1186 3202 DWL-G650 (Rev B3,B5) Wireless cardbus adapter + 1186 3203 AirPlus DWL-G520 Wireless PCI Adapter (rev. A) + 1186 3a07 AirXpert DWL-AG650 Wireless Cardbus Adapter + 1186 3a08 AirXpert DWL-AG520 Wireless PCI Adapter + 1186 3a12 D-Link AirPlus DWL-G650 Wireless Cardbus Adapter(rev.C) + 1186 3a13 AirPlus DWL-G520 Wireless PCI Adapter (rev. B) + 1186 3a14 AirPremier AG DWL-AG530 Wireless PCI Adapter (rev.A) + 1186 3a17 D-Link AirPremier DWL-G680 Wireless Cardbus Adapter + 1186 3a18 D-Link AirPremier DWL-G550 Wireless PCI Adapter + 1186 3a1a WNA-2330 802.11bg Wireless CardBus Adapter + 1186 3a63 D-Link AirPremier DWL-AG660 Wireless Cardbus Adapter + 1186 3a93 Conceptronic C54I Wireless 801.11g PCI card + 1186 3a94 Conceptronic C54C 802.11g Wireless Cardbus Adapter + 1186 3ab0 Allnet ALL0281 Wireless PCI Card + 1385 4600 WAG511 802.11a/b/g Dual Band Wireless PC Card + 1385 4610 WAG511 802.11a/b/g Dual Band Wireless PC Card + 1385 4900 WG311v1 802.11g Wireless PCI Adapter + 1385 4a00 WAG311 802.11a/g Wireless PCI Adapter + 1385 4b00 WG511T 108 Mbps Wireless PC Card (rev.A/B) + 1385 4d00 WG311T 108 Mbps Wireless PCI Adapter (rev.A2) + 1385 4f00 WG511U Double 108 Mbps Wireless PC Card + 1385 5a00 WG311T (rev.A3 v1h3/v1h4) 108 Mbps Wireless PCI Adapter [AR2412] + 1385 5b00 WG511T 108 Mbps Wireless PC Card (rev.C) + 1385 5d00 WPN511 RangeMax Wireless PC Card + 1458 e911 GN-WIAG02 + 1468 0403 U10H014 802.11g Cardbus Adapter + 1468 0408 ThinkPad 11b/g Wireless LAN Mini PCI Adapter + 14b7 0a10 8480-WD 802.11abg Cardbus Adapter + 14b7 0a60 8482-WD ORiNOCO 11a/b/g Wireless PCI Adapter + 14b7 aa30 8800-FC 802.11bg Cardbus Adapter + 14b7 aa40 8470-WD 802.11bg Cardbus Adapter + 14b9 cb21 CB21 802.11a/b/g Cardbus Adapter + 1668 1026 IBM HighRate 11 a/b/g Wireless CardBus Adapter + 168c 0013 AirPlus XtremeG DWL-G650 Wireless PCMCIA Adapter + 168c 1025 DWL-G650B2 Wireless CardBus Adapter + 168c 1027 Engenius NL-3054CB ARIES b/g CardBus Adapter + 168c 1042 Ubiquiti Networks SuperRange a/b/g Cardbus Adapter + 168c 1051 EZ Connect g 802.11g 108Mbps Wireless PCI Adapter + 168c 2026 Netgate 5354MP ARIES a(108Mb turbo)/b/g MiniPCI Adapter + 168c 2027 D-Link AirPlus DWL-G520 Wireless PCI Adapter (rev. A) + 168c 2041 Engenius 5354MP Plus ARIES2 b/g MiniPCI Adapter + 168c 2042 Engenius 5354MP Plus ARIES2 a/b/g MiniPCI Adapter + 168c 2051 TRENDnet TEW-443PI Wireless PCI Adapter + 16a5 160a BWP712 802.11bg Wireless CardBus Adapter + 16ab 7302 Trust Speedshare Turbo Pro Wireless PCI Adapter + 1737 0017 WPC55AG + 1737 0026 WMP55AG v1.1 + 1737 0035 WPC55AG v1.2 802.11abg Cardbus Adapter + 1737 0036 WMP55AG v1.2 802.11abg PCI Adapter + 1799 3000 F6D3000 Dual-Band Wireless A+G Desktop Card + 1799 3010 F6D3010 Dual-Band Wireless A+G Notebook Card + 17cf 0042 Z-COMAX Highpower XG-622H (400mw) 802.11b/g mini-PCI Adapter + 185f 1012 CM9 Wireless a/b/g MiniPCI Adapter + 185f 2012 Wistron NeWeb WLAN a+b+g model CB9 + a727 6801 3CRXJK10075 OfficeConnect Wireless 108Mbps 11g XJACK PC Card + 001a AR2413/AR2414 Wireless Network Adapter [AR5005G(S) 802.11bg] + 1052 168c Sweex Wireless Lan PC Card 54Mbps + 1113 ee20 SMC Wireless CardBus Adapter 802.11g (SMCWCB-G EU) + 1113 ee24 SMC Wireless PCI Card WPCI-G + 1186 3a15 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.D1) + 1186 3a16 AirPlus G DWL-G510 Wireless PCI Adapter(rev.B) + 1186 3a1c WNA-1330 Notebook Adapter + 1186 3a1d WDA-1320 Desktop Adapter + 1186 3a23 AirPlus G DWL-G520+A Wireless PCI Adapter + 1186 3a24 AirPlus G DWL-G650+A Wireless Cardbus Adapter + 1186 3b08 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.C1) + 168c 001a Belkin FD7000 + 168c 1052 TP-Link TL-WN510G Wireless CardBus Adapter + 168c 2052 Compex Wireless 802.11 b/g MiniPCI Adapter, Rev A1 [WLM54G] + 16ec 0122 Wireless PCI Adapter Model 5418 + 1737 0053 WPC54G v7 802.11g Wireless-G Notebook Adapter + 1799 700c F5D7000 v5000 Wireless G Desktop Card + 1799 701d F5D7010 v5000 Wireless G Notebook Card + 17f9 0008 DX-WGNBC 802.11bg Wireless CardBus Adapter + 17f9 0018 DX-WGDTC 802.11bg Wireless PCI Adapter + 001b AR5413/AR5414 Wireless Network Adapter [AR5006X(S) 802.11abg] +# Atheros AR5414 32-bit mini-PCI type IIIB + 0777 1107 UB5 802.11a Wireless Mini PCI Adapter + 0777 3002 XR2 802.11g Wireless Mini PCI Adapter + 0777 3005 XR5 802.11a Wireless Mini PCI Adapter + 0777 3009 XR9 900MHz Wireless Mini PCI Adapter + 1154 034e WLI-CB-AG108HP 802.11abg Wireless CardBus Adapter + 1186 3a19 D-Link AirPremier AG DWL-AG660 Wireless Cardbus Adapter + 1186 3a22 AirPremier AG DWL-AG530 Wireless PCI Adapter (rev.B) + 11ad 5001 WN5301A 802.11bg Wireless PCI Adapter + 1458 e901 GN-WI01HT Wireless a/b/g MiniPCI Adapter + 168c 001b Wireless LAN PCI LiteOn + 168c 1062 IPN-W100CB 802.11abg Wireless CardBus Adapter + 168c 2062 EnGenius EMP-8602 (400mw) or Compex WLM54AG (SuperAG) + 168c 2063 EnGenius EMP-8602 (400mw) or Compex WLM54AG + 17f9 000b WL-711A 802.11abg Wireless CardBus Adapter + 17f9 000c WPIA-112AG 802.11abg Wireless PCI Adapter + 17f9 000d PC-686X 802.11abg Wireless Mini PCI Adapter + 185f 1600 DCMA-82 High Power WLAN 802.11a/b/g mini-PCI Module (Super A/G, eXtended Range, 400mW) + 1948 3aba RBTBJ-AW 802.11abg Wireless Cardbus Adapter + a727 6804 Wireless 11a/b/g PC Card with XJACK(r) Antenna + 001c AR242x / AR542x Wireless Network Adapter (PCI-Express) + 0777 3006 SRX 802.11abg Wireless ExpressCard Adapter + 103c 137a AR5BXB63 (Foxconn) 802.11bg Mini PCIe NIC + 106b 0086 AirPort Extreme + 144f 7106 WLL3140 (Toshiba PA3501U-1MPC) 802.11bg Wireless Mini PCIe Card + 144f 7128 WLL3141 (Toshiba PA3613U-1MPC) 802.11bg Wireless Mini PCIe Card + 1468 0428 AR5BXB63 802.11bg NIC + 1468 042a AR5007EG 802.11bg NIC + 147b 1033 AirPace Wi-Fi + 168c 001c AR242x 802.11abg NIC (PCI Express) + 168c 3061 AR5006EGS 802.11bg NIC (2.4GHz, PCI Express) + 168c 3062 AR5006EXS 802.11abg NIC (2.4/5.0GHz, PCI Express) + 168c 3063 AR5006EX 802.11abg NIC (2.4/5.0GHz, PCI Express) + 168c 3065 AR5006EG 802.11bg NIC (2.4GHz, PCI Express) + 168c 3067 AR242x 802.11abg Wireless PCI Express Adapter (rev 01) + 1a3b 1026 AW-GE780 802.11bg Wireless Mini PCIe Card + 001d AR2417 Wireless Network Adapter [AR5007G 802.11bg] + 1799 720b F5D7000 v8000 Wireless G Desktop Card + 1799 721b F5D7010 v8000 Wireless G Notebook Card +# the name AR5005VL is used for some AR5513 based designs + 0020 AR5513 802.11abg Wireless NIC + 0308 3407 M-102 802.11g Wireless Cardbus Adapter + 1186 3a67 DWL-G650M Super G MIMO Wireless Notebook Adapter + 1186 3a68 DWL-G520M Wireless 108G MIMO Desktop Adapter + 187e 340e M-302 802.11g Wireless PCI Adapter + 1976 2003 TEW-601PC 802.11g Wireless CardBus Adapter + 0023 AR5416 Wireless Network Adapter [AR5008 802.11(a)bgn] + 0308 340b NWD-170N 802.11bgn Wireless CardBus Adapter + 1154 0365 Buffalo WLP-CB-AG300 802.11abgn Cardbus Adapter + 1154 0367 WLI-CB-AG301N 802.11abgn Wireless CardBus Adapter + 1186 3a6a DWA-642 802.11n RangeBooster N CardBus Adapter + 1186 3a6b DWA-547 802.11n RangeBooster N 650 DeskTop Adapter + 1186 3a6d DWA-552 802.11n Xtreme N Desktop Adapter (rev A1) + 1186 3a76 DWA-645 802.11n RangeBooster N 650 Notebook Adapter (rev A1) + 1737 0059 WPC300N v2 Wireless-N Notebook Adapter + 1737 0069 WPC100 v1 802.11n RangePlus Wireless Notebook Adapter + 1737 0072 WMP110 v1 802.11n RangePlus Wireless PCI Adapter + 1799 8011 F5D8011 v1 802.11n N1 Wireless Notebook Card + 187e 3411 NWD-370N 802.11n Wireless PCI Adapter + 1976 2008 TEW-621PC 802.11bgn Wireless CardBus Adapter + 0024 AR5418 Wireless Network Adapter [AR5008E 802.11(a)bgn] (PCI-Express) + 106b 0087 AirPort Extreme + 1186 3a70 DWA-556 Xtreme N PCI Express Desktop Adapter + 0027 AR9160 Wireless Network Adapter [AR9001 802.11(a)bgn] + 0777 4082 SR71-A 802.11abgn Wireless Mini PCI Adapter + 0029 AR922X Wireless Network Adapter + 0777 4005 SR71-15 802.11an Mini PCI Adapter + 1186 3a7a DWA-552 802.11n Xtreme N Desktop Adapter (rev A2) + 1186 3a7d DWA-552 802.11n Xtreme N Desktop Adapter (rev A3) + 168c 0029 AR922X Wireless Network Adapter + 168c 2096 Compex WLM200NX / Wistron DNMA-92 + 002a AR928X Wireless Network Adapter (PCI-Express) + 0777 4f05 SR71-X 802.11abgn Wireless ExpressCard Adapter [AR9280] + 103c 3041 AR5BHB92-H 802.11abgn Wireless Half-size Mini PCIe Card [AR9280] + 103c 3042 AzureWave AW-NE773 802.11abgn Wireless Half-size Mini PCIe Card [AR9280] + 105b e006 T77H053.00 802.11bgn Wireless Mini PCIe Card [AR9281] + 105b e01f T77H047.31 802.11bgn Wireless Half-size Mini PCIe Card [AR9283] + 106b 008f AirPort Extreme + 11ad 6600 WN6600A 802.11bgn Wireless Mini PCIe Card [AR9281] + 144f 7141 WLL6080 802.11bgn Wireless Mini PCIe Card [AR9281] + 168c 0203 DW1525 802.11abgn WLAN PCIe Card [AR9280] + 1a32 0303 EM303 802.11bgn Wireless Mini PCIe Card [AR9281] + 1a32 0306 EM306 802.11bgn Wireless Half-size Mini PCIe Card [AR9283] + 1a3b 1067 AW-NE771 802.11bgn Wireless Mini PCIe Card [AR9281] + 1a3b 1071 AW-NE772 802.11abgn Wireless Mini PCIe Card [AR9280] + 1a3b 1081 AW-NE773 802.11abgn Wireless Half-size Mini PCIe Card [AR9280] + 002b AR9285 Wireless Network Adapter (PCI-Express) + 1028 0204 Wireless 1502 802.11bgn Half-size Mini PCIe Card + 1028 0205 Wireless 1702 802.11bgn Half-size Mini PCIe Card [AR9002WB-1NGCD] + 103c 303f U98Z062.10 802.11bgn Wireless Half-size Mini PCIe Card + 103c 3040 U98Z062.12 802.11bgn Wireless Half-size Mini PCIe Card + 105b e017 T77H126.00 802.11bgn Wireless Half-size Mini PCIe Card + 105b e023 T77H121.04 802.11bgn Wireless Half-size Mini PCIe Card + 105b e025 T77H121.05 802.11bgn Wireless Half-size Mini PCIe Card + 1113 e811 WN7811A (Toshiba PA3722U-1MPC) 802.11bgn Wireless Half-size Mini PCIe Card + 185f 30af DNXA-95 802.11bgn Wireless Half-size Mini PCIe Card + 1931 0023 Option GTM67x PCIe WiFi Adapter + 1a3b 1089 AW-NE785 / AW-NE785H 802.11bgn Wireless Full or Half-size Mini PCIe Card + 1a3b 2c37 AW-NB037H 802.11bgn Wireless Half-size Mini PCIe Card [AR9002WB-1NGCD] + 1b9a 0401 XW204E 802.11bgn Wireless Half-size Mini PCIe Card + 1b9a 0c03 WB214E 802.11bgn Wireless Half-size Mini PCIe Card [AR9002WB-1NGCD] + 002c AR2427 802.11bg Wireless Network Adapter (PCI-Express) + 002d AR9227 Wireless Network Adapter + 002e AR9287 Wireless Network Adapter (PCI-Express) + 105b e034 T77H167.00 + 0030 AR93xx Wireless Network Adapter + 103c 1627 AR9380/HB112 802.11abgn 3×3 Wi-Fi Adapter + 106b 009a AirPort Extreme + 1186 3a7e DWA-566 Wireless N 300 Dual Band PCIe Desktop Adapter + 1a56 2000 Killer Wireless-N 1102 Half-size Mini PCIe Card [AR9382] + 1a56 2001 Killer Wireless-N 1103 Half-size Mini PCIe Card [AR9380] + 0032 AR9485 Wireless Network Adapter + 1028 0208 Wireless 1506 WLAN Half Mini-Card + 103c 1838 AR9485/HB125 802.11bgn 1×1 Wi-Fi Adapter + 105b e044 Unex DHXA-225 + 144d 410e AR9485WB-EG 802.11b/g/n mini-PCIe card on a series 3 laptop + 1a3b 1186 AW-NE186H + 0033 AR958x 802.11abgn Wireless Network Adapter + 168c a120 AR9582 802.11a/n WLAN Mini-PCIe Adapter + 0034 AR9462 Wireless Network Adapter + 1028 020b Wireless 1601 802.11abgn Adapter + 1028 0300 Wireless 1802 802.11abgn Adapter + 1a56 2003 Killer Wireless-N 1202 Half-size Mini PCIe Card + 0036 QCA9565 / AR9565 Wireless Network Adapter + 1028 020e Vostro 3470 + 0037 AR9485 Wireless Network Adapter +# Also used as Gigabyte GC-WB150 on a PCIe-to-mini-PCIe converter + 1a3b 2100 AW-NB100H 802.11n Wireless Mini PCIe Card + 003c QCA986x/988x 802.11ac Wireless Network Adapter + 003e QCA6174 802.11ac Wireless Network Adapter + 1a56 143a Killer 1435 Wireless-AC + 1a56 1525 Killer N1525 Wireless-AC + 1a56 1535 Killer Wireless-n/a/ac 1535 Wireless Network Adapter + 0040 QCA9980/9990 802.11ac Wireless Network Adapter + 0041 QCA6164 802.11ac Wireless Network Adapter + 0042 QCA9377 802.11ac Wireless Network Adapter + 11ad 08a6 Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter +# compatible with Lenovo's BIOS lock + 17aa 0901 Qualcomm Atheros QCA9377 Wireless Network Adapter + 0046 QCA9984 802.11ac Wave 2 Wireless Network Adapter + 0050 QCA9887 802.11ac Wireless Network Adapter + 0207 AR5210 Wireless Network Adapter [AR5000 802.11a] + 1014 AR5212 802.11abg NIC + 1014 058a ThinkPad 11a/b/g Wireless LAN Mini Express Adapter (AR5BXB6) + 9013 AR5002X Wireless Network Adapter + ff19 AR5006X Wireless Network Adapter + ff1b AR2425 Wireless Network Adapter [AR5007EG 802.11bg] + ff1c AR5008 Wireless Network Adapter + ff1d AR922x Wireless Network Adapter +# Found in "AVM Fritz!Box FON WLAN 7270v3" + 168c ee1c AR9220-AC1A [AVM Fritz!Box FON WLAN 7270 v3] +1695 EPoX Computer Co., Ltd. +169c Netcell Corporation + 0044 Revolution Storage Processing Card +# The right ID is 196d, but they got it nibble-swapped in 2202. +169d Club-3D VB (Wrong ID) +16a5 Tekram Technology Co.,Ltd. +16ab Global Sun Technology Inc + 1100 GL24110P + 1101 PLX9052 PCMCIA-to-PCI Wireless LAN + 1102 PCMCIA-to-PCI Wireless Network Bridge + 8501 WL-8305 Wireless LAN PCI Adapter +16ae SafeNet Inc + 0001 SafeXcel 1140 + 000a SafeXcel 1841 + 1141 SafeXcel 1141 +# misused vendor ID 0001 + 0001 0001 SafeXcel 1141 v. 1.1 + 1841 SafeXcel 1842 +16af SparkLAN Communications, Inc. +16b4 Aspex Semiconductor Ltd +16b8 Sonnet Technologies, Inc. +16be Creatix Polymedia GmbH +16c3 Synopsys, Inc. + abcd DWC_usb3 / PCIe bridge + abce DWC_usb3 + abcf DWC_usb31 + edda EPMockUp +16c6 Micrel-Kendin + 8695 Centaur KS8695 ARM processor + 8842 KSZ8842-PMQL 2-Port Ethernet Switch +16c8 Octasic Inc. +16c9 EONIC B.V. The Netherlands +16ca CENATEK Inc + 0001 Rocket Drive DL +# nee Innocore Gaming Ltd., nee Densitron Gaming Ltd., a division of Densitron Technologies +16cd Advantech Co. Ltd + 0101 DirectPCI SRAM for DPX-11x series + 0102 DirectPCI SRAM for DPX-S/C/E-series + 0103 DirectPCI ROM for DPX-11x series + 0104 DirectPCI ROM for DPX-S/C/E-series + 0105 DirectPCI I/O for DPX-114/DPX-115 + 0106 DirectPCI I/O for DPX-116 + 0107 DirectPCI I/O for DPX-116U + 0108 DirectPCI I/O for DPX-117 + 0109 DirectPCI I/O for DPX-112 + 010a DirectPCI I/O for DPX-C/E-series + 010b DirectPCI I/O for DPX-S series +16ce Roland Corp. +16d5 Acromag, Inc. + 0504 PMC-DX504 Reconfigurable FPGA with LVDS I/O + 0520 PMC520 Serial Communication, 232 Octal + 0521 PMC521 Serial Communication, 422/485 Octal + 1020 PMC-AX1020 Reconfigurable FPGA with A/D & D/A + 1065 PMC-AX1065 Reconfigurable FPGA with A/D & D/A + 2004 PMC-DX2004 Reconfigurable FPGA with LVDS I/O + 2020 PMC-AX2020 Reconfigurable FPGA with A/D & D/A + 2065 PMC-AX2065 Reconfigurable FPGA with A/D & D/A + 3020 PMC-AX3020 Reconfigurable FPGA with A/D & D/A + 3065 PMC-AX3065 Reconfigurable FPGA with A/D & D/A + 4243 PMC424, APC424, AcPC424 Digital I/O and Counter Timer Module + 4248 PMC464, APC464, AcPC464 Digital I/O and Counter Timer Module + 424b PMC-DX2002 Reconfigurable FPGA with Differential I/O + 4253 PMC-DX503 Reconfigurable FPGA with TTL and Differential I/O + 4312 PMC-CX1002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O + 4313 PMC-CX1003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O + 4322 PMC-CX2002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O + 4323 PMC-CX2003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O + 4350 PMC-DX501 Reconfigurable Digital I/O Module + 4353 PMC-DX2003 Reconfigurable FPGA with TTL and Differential I/O + 4357 PMC-DX502 Reconfigurable Differential I/O Module + 4457 PMC730, APC730, AcPC730 Multifunction Module + 4471 XMC730 Multi-function I/O module with front I/O + 4473 XMC730CC Multi-function I/O module with rear I/O Conduction-cooled + 464d PMC408 32-Channel Digital Input/Output Module + 4850 PMC220-16 12-Bit Analog Output Module + 4a42 PMC483, APC483, AcPC483 Counter Timer Module + 4a50 PMC484, APC484, AcPC484 Counter Timer Module + 4a56 PMC230 16-Bit Analog Output Module + 4b47 PMC330, APC330, AcPC330 Analog Input Module, 16-bit A/D + 4c40 PMC-LX40 Reconfigurable Virtex-4 FPGA with plug-in I/O + 4c60 PMC-LX60 Reconfigurable Virtex-4 FPGA with plug-in I/O + 4d4d PMC341, APC341, AcPC341 Analog Input Module, Simultaneous Sample & Hold + 4d4e PMC482, APC482, AcPC482 Counter Timer Board + 524d PMC-DX2001 Reconfigurable FPGA with TTL I/O + 5335 PMC-SX35 Reconfigurable Virtex-4 FPGA with plug-in I/O + 5456 PMC470 48-Channel Digital Input/Output Module + 5601 PMC-VLX85 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5602 PMC-VLX110 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5603 PMC-VSX95 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5604 PMC-VLX155 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5605 PMC-VFX70 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5606 PMC-VLX155-1M Reconfigurable Virtex-5 FPGA with plug-in I/O + 5701 PMC-SLX150: Reconfigurable Spartan-6 FPGA with plug-in I/O + 5702 PMC-SLX150-1M: Reconfigurable Spartan-6 FPGA with plug-in I/O + 5801 XMC-VLX85 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5802 XMC-VLX110 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5803 XMC-VSX95 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5804 XMC-VLX155 Reconfigurable Virtex-5 FPGA with plug-in I/O + 5807 XMC-SLX150: Reconfigurable Spartan-6 FPGA with plug-in I/O + 5808 XMC-SLX150-1M: Reconfigurable Spartan-6 FPGA with plug-in I/O + 5901 APCe8650 PCI Express IndustryPack Carrier Card + 6301 XMC Module with user-configurable Virtex-6 FPGA, 240k logic cells, SFP front I/O + 6302 XMC Module with user-configurable Virtex-6 FPGA, 365k logic cells, SFP front I/O + 6303 XMC Module with user-configurable Virtex-6 FPGA, 240k logic cells, no front I/O + 6304 XMC Module with user-configurable Virtex-6 FPGA, 365k logic cells, no front I/O + 7000 XMC-7K325F: User-configurable Kintex-7 FPGA, 325k logic cells plus SFP front I/O + 7001 XMC-7K410F: User-configurable Kintex-7 FPGA, 410k logic cells plus SFP front I/O + 7002 XMC-7K325AX: User-Configurable Kintex-7 FPGA, 325k logic cells with AXM Plug-In I/O + 7003 XMC-7K410AX: User-Configurable Kintex-7 FPGA, 410k logic cells with AXM Plug-In I/O + 7004 XMC-7K325CC: User-Configurable Kintex-7 FPGA, 325k logic cells, conduction-cooled + 7005 XMC-7K410CC: User-Configurable Kintex-7 FPGA, 410k logic cells, conduction-cooled + 7006 XMC-7A200: User-Configurable Artix-7 FPGA, 200k logic cells with Plug-In I/O + 7007 XMC-7A200CC: User-Configurable Conduction-Cooled Artix-7 FPGA, with 200k logic cells + 7011 AP440-1: 32-Channel Isolated Digital Input Module + 7012 AP440-2: 32-Channel Isolated Digital Input Module + 7013 AP440-3: 32-Channel Isolated Digital Input Module + 7014 AP445: 32-Channel Isolated Digital Output Module + 7015 AP471 48-Channel TTL Level Digital Input/Output Module + 7016 AP470 48-Channel TTL Level Digital Input/Output Module + 7017 AP323 16-bit, 20 or 40 Channel Analog Input Module + 7018 AP408: 32-Channel Digital I/O Module + 7019 AP341 14-bit, 16-Channel Simultaneous Conversion Analog Input Module + 701a AP220-16 12-Bit, 16-Channel Analog Output Module + 701b AP231-16 16-Bit, 16-Channel Analog Output Module + 701c AP225 12-Bit, 16-Channel Analog Output Module with Waveform Memory + 701d AP235 16-Bit, 16-Channel Analog Output Module with Waveform Memory + 7021 APA7-201 Reconfigurable Artix-7 FPGA module 48 TTL channels + 7022 APA7-202 Reconfigurable Artix-7 FPGA module 24 RS485 channels + 7023 APA7-203 Reconfigurable Artix-7 FPGA module 24 TTL & 12 RS485 channels + 7024 APA7-204 Reconfigurable Artix-7 FPGA module 24 LVDS channels + 7027 AP418 16-Channel High Voltage Digital Input/Output Module + 7029 AP342 14-bit, 12-Channel Isolated Simultaneous Conversion Analog Input Module + 702a AP226 12-Bit, 8-Channel Isolated Analog Output Module + 702b AP236 16-Bit, 8-Channel Isolated Analog Output Module + 702c AP560A Module 4 Independent isolated CAN bus channels + 7031 AP441-1: 32-Channel Isolated Digital Input Module + 7032 AP441-2: 32-Channel Isolated Digital Input Module + 7033 AP441-3: 32-Channel Isolated Digital Input Module + 7042 AP482 Counter Timer Module with TTL Level Input/Output + 7043 AP483 Counter Timer Module with TTL Level and RS422 Input/Output + 7044 AP484 Counter Timer Module with RS422 Input/Output + 7051 APA7-501 Reconfigurable Artix-7 52,160 Cell FPGA module 48 TTL channels + 7052 APA7-502 Reconfigurable Artix-7 52,160 Cell FPGA module 24 RS485 channels + 7053 APA7-503 Reconfigurable Artix-7 52,160 Cell FPGA module 24 TTL & 12 RS485 channels + 7054 APA7-504 Reconfigurable Artix-7 52,160 Cell FPGA module 24 LVDS channels + 7073 AP730 Multi-function I/O Module 16 Digital I/O 8 Differential Analog In 4 Analog Out +16da Advantech Co., Ltd. + 0011 INES GPIB-PCI +16df PIKA Technologies Inc. +16e2 Geotest-MTS +16e3 European Space Agency + 1e0f LEON2FT Processor +16e5 Intellon Corp. + 6000 INT6000 Ethernet-to-Powerline Bridge [HomePlug AV] + 6300 INT6300 Ethernet-to-Powerline Bridge [HomePlug AV] +16ec U.S. Robotics + 00ed USR997900 + 0116 USR997902 10/100/1000 Mbps PCI Network Card + 2f00 USR5660A (USR265660A, USR5660A-BP) 56K PCI Faxmodem + 3685 Wireless Access PCI Adapter Model 022415 + 4320 USR997904 10/100/1000 64-bit NIC (Marvell Yukon) + ab06 USR997901A 10/100 Cardbus NIC +16ed Sycron N. V. + 1001 UMIO communication card +16f2 ETAS GmbH + 0200 I/O board + 16f2 0010 ES53xx I/O board +16f3 Jetway Information Co., Ltd. +16f4 Vweb Corp + 8000 VW2010 +16f6 VideoTele.com, Inc. +1702 Internet Machines Corporation (IMC) +1705 Digital First, Inc. +170b NetOctave + 0100 NSP2000-SSL crypto accelerator +170c YottaYotta Inc. +1719 EZChip Technologies + 1000 NPA Access Network Processor Family +# Seems to be a 2nd ID for Vitesse Semiconductor +1725 Vitesse Semiconductor + 7174 VSC7174 PCI/PCI-X Serial ATA Host Bus Controller +172a Accelerated Encryption + 13c8 AEP SureWare Runner 1000V3 +# nee Fujitsu Siemens Computers GmbH +1734 Fujitsu Technology Solutions +1735 Aten International Co. Ltd. +1737 Linksys + 0029 WPG54G ver. 4 PCI Card + 1032 Gigabit Network Adapter + 1737 0015 EG1032 v2 Instant Gigabit Network Adapter + 1737 0024 EG1032 v3 Instant Gigabit Network Adapter + 1064 Gigabit Network Adapter + 1737 0016 EG1064 v2 Instant Gigabit Network Adapter + ab08 21x4x DEC-Tulip compatible 10/100 Ethernet + ab09 21x4x DEC-Tulip compatible 10/100 Ethernet +173b Altima (nee Broadcom) + 0001 AC1002 PCI Gigabit Ethernet controller + 03e8 AC1000 Gigabit Ethernet + 03e9 AC1001 Gigabit Ethernet + 03ea AC9100 Gigabit Ethernet + 173b 0001 AC1002 + 03eb AC1003 Gigabit Ethernet +1743 Peppercon AG + 8139 ROL/F-100 Fast Ethernet Adapter with ROL +1745 ViXS Systems, Inc. + 2020 XCode II Series + 2100 XCode 2100 Series +1749 RLX Technologies +174b PC Partner Limited / Sapphire Technology +174d WellX Telecom SA +175c AudioScience Inc +175e Sanera Systems, Inc. +1760 TEDIA spol. s r. o. + 0101 PCD-7004 Digital Bi-Directional Ports PCI Card + 0102 PCD-7104 Digital Input & Output PCI Card + 0121 PCT-7303A PC card with IRC counters + 0122 PCT-7408A PC card with counters and timers + 0123 PCT-7424 PCI card with standard counters + 0141 PCA7208AL - Analog Inputs/Outputs + 0142 PCA7208AS - Analog inputs/Outputs + 0143 PCA7408AL - Analog Inputs/Outputs + 0144 PCA7408AS - Analog Inputs/Outputs + 0145 PCA-7228AL Multifunction PCI IO card + 0146 PCA-7228AS Multifunction PCI IO card + 0147 PCA7428AL Multifunction PCI IO card + 0148 PCA7428AS Multifunction PCI IO card + 0149 PCA7228EL Multifunction PCI IO card with isolated analog inputs + 0150 PCA7428EL Multifunction PCI IO card with isolated analog inputs + 0151 PCA7628AL - PCI card with analog inputs, counters and DIO + 0152 PCA7628AS PCI card with analog inputs, outputs, counters and DIO + 0161 PCA7288A PCI card with analog outputs, counters and DIO + 0180 PCI1052 Communication card for MicroUnit network + 0214 PCT-7424C (F0) PC card with standard counters + 0215 PCT-7424C (F1) PC card with standard counters + 0216 PCT-7424E (F0) PC card with standard counters + 0217 PCT-7424E (F1) PC card with standard counters + 0240 PCA7428CL_F0 - analog Inputs + 0241 PCA7428CL_F1 - analog Inputs + 0242 PCA7428CS_F0 - Analog Inputs/Outputs non isolated + 0243 PCA7428CS_F1 - Analog Inputs/Outputs non isolated + 0244 PCA7428CE_F0 - Analog Inputs isolated + 0245 PCA7428CE_F1 - Analog Inputs isolated + 0303 PCD-7006C Digital Input & Output PCI Card + 0800 PCD8006 - PCIe digital Inputs/Outputs + 0840 PCA-8428 General-purpose multifunctional PCIe card with 8 analog inputs and 2 analog outputs + 0841 PCA-8429 General-purpose multifunctional PCIe card with 8 analog inputs + 0842 PCA-8438 General-purpose multifunctional PCIe card with 16 analog inputs and 2 analog outputs + 0843 PCA-8439 General-purpose multifunctional PCIe card with 16 analog inputs + ff00 CTU CAN FD PCIe Card +1761 Pickering Interfaces Ltd +1771 InnoVISION Multimedia Ltd. +1775 General Electric +177d Cavium, Inc. + 0001 Nitrox XL N1 + 0003 Nitrox XL N1 Lite + 0004 Octeon (and older) FIPS + 0005 Octeon CN38XX Network Processor Pass 3.x + 0006 RoHS + 0010 CN15XX/CN16XX [Nitrox PX] + 0011 CNN35XX [Nitrox III] + 0012 CNN55XX [Nitrox V] + 0020 Octeon CN31XX Network Processor + 0030 Octeon CN30XX Network Processor + 0040 Octeon CN58XX Network Processor + 0050 Octeon CN57XX Network Processor (CN54XX/CN55XX/CN56XX) + 0070 Octeon CN50XX Network Processor + 0080 Octeon CN52XX Network Processor + 0090 Octeon II CN63XX Network Processor + 0091 Octeon II CN68XX Network Processor + 0092 Octeon II CN65XX Network Processor + 0093 Octeon II CN61XX Network Processor + 0094 Octeon Fusion CNF71XX Cell processor + 0095 Octeon III CN78XX Network Processor + 0096 Octeon III CN70XX Network Processor + 9700 Octeon III CN73XX Network Processor + 9702 CN23XX [LiquidIO II] Intelligent Adapter + 177d 0003 CN2350 [LiquidIO II] 2-port 10GbE Intelligent adapter +# This was changed during the production phase to 10GbE adapter. + 177d 0004 CN2350 [LiquidIO II] 2-port 10GbE Intelligent adapter + 177d 0005 CN2360 [LiquidIO II] 2-port 10GbE Intelligent adapter + 177d 0006 CN2360 [LiquidIO II] 2-port 25GbE Intelligent adapter + 177d 0007 CN2350 [LiquidIO II] 2-port 25GbE Intelligent adapter + 177d 0008 CN2350 [LiquidIO II] 2-port 10GbE SFP+ Intelligent adapter + 177d 0009 CN2360 [LiquidIO II] 2-port 10GbE SFP+ Intelligent adapter + 177d 000a CN2350 [LiquidIO II] 2-port 10GBASE-T Intelligent adapter + 177d 000b CN2360 [LiquidIO II] 2-port 10GBASE-T Intelligent adapter + 9703 CN23XX [LiquidIO II] NVMe Controller + 9712 CN23XX [LiquidIO II] SRIOV Virtual Function + 177d 0003 CN2350 [LiquidIO II] 2-port 10GbE SRIOV Virtual Function + 177d 0004 CN2350 [LiquidIO II] 2-port 10GbE SRIOV Virtual Function + 177d 0005 CN2360 [LiquidIO II] 2-port 10GbE SRIOV Virtual Function + 177d 0006 CN2360 [LiquidIO II] 2-port 25GbE SRIOV Virtual Function + 177d 0007 CN2350 [LiquidIO II] 2-port 25GbE SRIOV Virtual Function + 9713 CN23XX [LiquidIO II] NVMe SRIOV Virtual Function + 9800 Octeon Fusion CNF75XX Processor + a001 ThunderX MRML(Master RML Bridge to RSL devices) + a002 THUNDERX PCC Bridge + 177d a102 CN88XX PCC Bridge + a008 THUNDERX SMMU + 177d a108 CN88XX SMMU + a009 THUNDERX Generic Interrupt Controller + a00a THUNDERX GPIO Controller + a00b THUNDERX MPI / SPI Controller + a00c THUNDERX MIO-PTP Controller + a00d THUNDERX MIX Network Controller + a00e THUNDERX Reset Controller + a00f THUNDERX UART Controller + a010 THUNDERX eMMC/SD Controller + a011 THUNDERX MIO-BOOT Controller + a012 THUNDERX TWSI / I2C Controller + a013 THUNDERX CCPI (Multi-node connect) + a014 THUNDERX Voltage Regulator Module + a015 THUNDERX PCIe Switch Logic Interface + a016 THUNDERX Key Memory + a017 THUNDERX GTI (Global System Timers) + a018 THUNDERX Random Number Generator + a019 THUNDERX DFA + a01a THUNDERX Zip Coprocessor + a01b THUNDERX xHCI USB Controller + a01c THUNDERX AHCI SATA Controller + 177d a11c CN88XX AHCI SATA Controller + a01d THUNDERX RAID Coprocessor + a01e THUNDERX Network Interface Controller + a01f THUNDERX Traffic Network Switch + a020 THUNDERX PEM (PCI Express Interface) + a021 THUNDERX L2C (Level-2 Cache Controller) + a022 THUNDERX LMC (DRAM Controller) + a023 THUNDERX OCLA (On-Chip Logic Analyzer) + a024 THUNDERX OSM + a025 THUNDERX GSER (General Serializer/Deserializer) + a026 THUNDERX BGX (Common Ethernet Interface) + a027 THUNDERX IOBN + a029 THUNDERX NCSI (Network Controller Sideband Interface) + a02a ThunderX SGPIO (Serial GPIO controller for SATA disk lights) + a02b THUNDERX SMI / MDIO Controller + a02c THUNDERX DAP (Debug Access Port) + a02d THUNDERX PCIERC (PCIe Root Complex) + a02e ThunderX L2C-TAD (Level 2 cache tag and data) + a02f THUNDERX L2C-CBC + a030 THUNDERX L2C-MCI + a031 THUNDERX MIO-FUS (Fuse Access Controller) + a032 THUNDERX FUSF (Fuse Controller) + a033 THUNDERX Random Number Generator virtual function + a034 THUNDERX Network Interface Controller virtual function + a035 THUNDERX Parallel Bus + a036 ThunderX RAD (RAID acceleration engine) virtual function + a037 THUNDERX ZIP virtual function + a040 THUNDERX CPT Cryptographic Accelerator +# MAC found on OcteonTx2 series of silicons + a059 Octeon TX2 CGX (MAC) +# MAC found on Octeon 10 series of silicons + a060 Octeon 10 RPM (MAC) +# Octeon Tx2 Loopback Interface block + a061 Octeon Tx2 Loopback Interface (LBK) +# Octeon Tx2 Resource Virtualization Unit Physical Function + a063 Octeon Tx2 RVU Physical Function +# Octeon Tx2 Resource Virtualization Unit Virtual Function + a064 Octeon Tx2 RVU Virtual Function +# Octeon Tx2 Resource Virtualization Unit Admin Function + a065 Octeon Tx2 RVU Admin Function +# PTP Timestamping unit on Octeon 10 silicon series + a09e Octeon 10 PTP controller +# Cryptographic Accelerator found on Octeon 10 series of silicons + a0f2 Octeon 10 CPT Cryptographic Accelerator, Physical function + a0f3 Octeon 10 CPT Cryptographic Accelerator, Virtual function +# Octeon Tx2 System DPI Interface (SDP) Physical Function + a0f6 Octeon Tx2 SDP Physical Function +# Octeon Tx2 System DPI Interface (SDP) Virtual Function + a0f7 Octeon Tx2 SDP Virtual Function + a0f8 Octeon Tx2 Loopback Interface Virtual Function (LBKVF) +# Cryptographic Accelerator found on OcteonTx2 series of silicons + a0fd Octeon Tx2 CPT Cryptographic Accelerator, Physical function +# Cryptographic Accelerator found on OcteonTx2 series of silicons + a0fe Octeon Tx2 CPT Cryptographic Accelerator, Virtual function + a100 THUNDERX CN88XX 48 core SoC + a200 OCTEON TX CN81XX/CN80XX + a300 OCTEON TX CN83XX + af00 CN99xx [ThunderX2] Integrated PCI Host bridge + af84 CN99xx [ThunderX2] Integrated PCI Express RP Bridge +1787 Hightech Information System Ltd. +1789 Ennyah Technologies Corp. +# also used by Struck Innovative Systeme for joint developments +1796 Research Centre Juelich + 0001 SIS1100 [Gigabit link] + 0002 HOTlink + 0003 Counter Timer + 0004 CAMAC Controller + 0005 PROFIBUS + 0006 AMCC HOTlink + 0007 LVD Cable Bus + 0008 100MHz, 64bit Sequence Generator based on VirtexII + 0009 double 14bit-ADC + 000a SIS1100 with N110 TDC + 000b double 14bit-ADC with memory + 000d Synchronisation Slave + 000e SIS1100-eCMC + 000f TDC (GPX) + 0010 PCIe Counter Timer + 0011 SIS1100-e single link + 0012 SIS1100-e quad link + 0013 4x2.5GHz SFP to 4 lane PCIe bridge + 0014 SIS1100 with GPX piggy back + 0015 SIS8100 [Gigabit link, MicroTCA] + 0016 SIS1100e with 4 lanes + 0017 Quad 14bit, 50MHz ADC with 2.5GHz SFP + 0018 SIS8300 4-lane PCI Express, Micro TCA for Physics ADC + 0019 SIS SIS8300-Lx MTCA.4 Digitizer + 001a 100MHz, 64bit Sequence Generator based on VirtexII + 001c Quad 16bit, 150MHz ADC with 2.5GHz SFP + 0030 100MHz, 64bit Sequence Generator based on Spartan6 + 0031 200MHz 64bit Sequence Generator based on Spartan7 +# nee Techwell, Inc. +1797 Intersil Techwell + 5864 TW5864 multimedia video controller + 6801 TW6802 multimedia video card + 6802 TW6802 multimedia other device + 6810 TW6816 multimedia video controller + 6811 TW6816 multimedia video controller + 6812 TW6816 multimedia video controller + 6813 TW6816 multimedia video controller +# port 5 of 8 + 6814 TW6816 multimedia video controller +# port 6 of 8 + 6815 TW6816 multimedia video controller +# port 7 of 8 + 6816 TW6816 multimedia video controller +# channel 8 of 8 + 6817 TW6816 multimedia video controller +# Example MuniPCI-E card: http://www.commell.com.tw/product/surveillance/MPX-6864.htm + 6864 TW6864 multimedia video controller +1799 Belkin + 6001 F5D6001 Wireless PCI Card [Realtek RTL8180] + 6020 F5D6020 v3000 Wireless PCMCIA Card [Realtek RTL8180] + 6060 F5D6060 Wireless PDA Card + 700f F5D7000 v7000 Wireless G Desktop Card [Realtek RTL8185] + 701f F5D7010 v7000 Wireless G Notebook Card [Realtek RTL8185] +179a id Quantique + 0001 Quantis PCI 16Mbps +179c Data Patterns + 0557 DP-PCI-557 [PCI 1553B] + 0566 DP-PCI-566 [Intelligent PCI 1553B] + 1152 DP-cPCI-1152 (8-channel Isolated ADC Module) + 5031 DP-CPCI-5031-Synchro Module +# cPCI Carrier for Mezzanine Modules + 5112 DP-cPCI-5112 [MM-Carrier] + 5121 DP-CPCI-5121-IP Carrier + 5211 DP-CPCI-5211-IP Carrier + 5679 AGE Display Module +17a0 Genesys Logic, Inc + 7163 GL9701 PCIe to PCI Bridge + 8083 GL880 USB 1.1 UHCI controller + 8084 GL880 USB 2.0 EHCI controller + 9750 GL9750 SD Host Controller + 9755 GL9755 SD Host Controller + e763 GL9763E eMMC Controller +17aa Lenovo + 3181 ThinkCentre M75n IoT + 402b Intel 82599ES 10Gb 2-port Server Adapter X520-2 +17ab Phillips Components +17af Hightech Information System Ltd. +17b3 Hawking Technologies + ab08 PN672TX 10/100 Ethernet +17b4 Indra Networks, Inc. + 0011 WebEnhance 100 GZIP Compression Card + 0012 WebEnhance 200 GZIP Compression Card + 0015 WebEnhance 300 GZIP Compression Card + 0016 StorCompress 300 GZIP Compression Card + 0017 StorSecure 300 GZIP Compression and AES Encryption Card +17c0 Wistron Corp. +17c2 Newisys, Inc. +# nee Airgo Networks, Inc. +17cb Qualcomm + 0001 AGN100 802.11 a/b/g True MIMO Wireless Card + 1385 5c00 WGM511 Pre-N 802.11g Wireless CardBus Adapter + 1737 0045 WMP54GX v1 802.11g Wireless-G PCI Adapter with SRX + 0002 AGN300 802.11 a/b/g True MIMO Wireless Card + 1385 6d00 WPNT511 RangeMax 240 Mbps Wireless CardBus Adapter + 1737 0054 WPC54GX4 v1 802.11g Wireless-G Notebook Adapter with SRX400 + 0105 MSM8998 PCIe Root Complex + 0108 SM8150 PCIe Root Complex + 0109 SA8195P PCIe Root Complex + 0300 MDM9x35 LTE Modem [Snapdragon X7] + 0301 MDM9x45 LTE Modem [Snapdragon X12] + 0302 MDM9x55 LTE Modem [Snapdragon X16] + 0400 Datacenter Technologies QDF2432 PCI Express Root Port + 0401 Datacenter Technologies QDF2400 PCI Express Root Port + 1000 QCS405 PCIe Root Complex + 1101 QCA6390 Wireless Network Adapter + 1103 QCNFA765 Wireless Network Adapter + 1104 QCN6024/9024/9074 Wireless Network Adapter +17cc NetChip Technology, Inc + 2280 USB 2.0 +17cd Cadence Design Systems, Inc. +17cf Z-Com, Inc. +17d3 Areca Technology Corp. + 1110 ARC-1110 4-Port PCI-X to SATA RAID Controller + 1120 ARC-1120 8-Port PCI-X to SATA RAID Controller + 1130 ARC-1130 12-Port PCI-X to SATA RAID Controller + 1160 ARC-1160 16-Port PCI-X to SATA RAID Controller + 1170 ARC-1170 24-Port PCI-X to SATA RAID Controller + 1201 ARC-1200 2-Port PCI-Express to SATA II RAID Controller + 1203 ARC-1203 2/4/8 Port PCIe 2.0 to SATA 6Gb RAID Controller + 1210 ARC-1210 4-Port PCI-Express to SATA RAID Controller + 1214 ARC-12x4 PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1214 ARC-1214 4-Port PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1224 ARC-1224 8-Port PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1264 ARC-1264 12/16 Port PCIe 2.0 to SATA 6Gb RAID Controller + 17d3 1284 ARC-1284 24 Port PCIe 2.0 to SATA 6Gb RAID Controller + 1220 ARC-1220 8-Port PCI-Express to SATA RAID Controller + 1222 ARC-1222 8-Port PCI-Express to SAS/SATA II RAID Controller + 1230 ARC-1230 12-Port PCI-Express to SATA RAID Controller + 1260 ARC-1260 16-Port PCI-Express to SATA RAID Controller + 1280 ARC-1280/1280ML 24-Port PCI-Express to SATA II RAID Controller + 17d3 1221 ARC-1221 8-Port PCI-Express to SATA RAID Controller + 1300 ARC-1300ix-16 16-Port PCI-Express to SAS Non-RAID Host Adapter + 1320 ARC-1320 8/16 Port PCIe 2.0 to SAS/SATA 6Gb Non-RAID Host Adapter + 1330 ARC-1330 16 Port PCIe 3.0 to SAS/SATA 12Gb Non-RAID Host Adapter + 1680 ARC-1680 series PCIe to SAS/SATA 3Gb RAID Controller + 17d3 1212 ARC-1212 4-Port PCIe to SAS/SATA II RAID Controller + 17d3 1222 ARC-1222 8-Port PCIe to SAS/SATA 3Gb RAID Controller + 17d3 1680 ARC-1680 8/12/16/24 Port PCIe to SAS/SATA 3Gb RAID Controller + 1880 ARC-188x series PCIe 2.0/3.0 to SAS/SATA 6/12Gb RAID Controller + 17d3 1213 ARC-1213 4-Port PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1215 ARC-1215 4-Port PCIe 3.0 to SAS/SATA 6Gb RAID Controller + 17d3 1216 ARC-1216 4-Port PCIe 3.0 to SAS/SATA 12Gb RAID Controller + 17d3 1223 ARC-1223 8-Port PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1225 ARC-1225 8-Port PCIe 3.0 to SAS/SATA 6Gb RAID Controller + 17d3 1226 ARC-1226 8-Port PCIe 3.0 to SAS/SATA 12Gb RAID Controller + 17d3 1880 ARC-1880 8/12/16/24 Port PCIe 2.0 to SAS/SATA 6Gb RAID Controller + 17d3 1882 ARC-1882 8/12/16/24 Port PCIe 3.0 to SAS/SATA 6Gb RAID Controller + 17d3 1883 ARC-1883 8/12/16/24 Port PCIe 3.0 to SAS/SATA 12Gb RAID Controller + 1884 ARC-1884 series PCIe 3.0 to SAS/SATA 12/6Gb RAID Controller + 188a ARC-1886 series PCIe 4.0 to NVMe/SAS/SATA 16/12/6Gb RAID Controller +# nee Neterion Inc., previously S2io Inc. +17d5 Exar Corp. + 5731 Xframe 10-Gigabit Ethernet PCI-X + 5732 Xframe II 10-Gigabit Ethernet PCI-X 2.0 + 5831 Xframe 10-Gigabit Ethernet PCI-X + 103c 12d5 PCI-X 133MHz 10GbE SR Fiber + 10a9 8020 Single Port 10-Gigabit Ethernet (PCI-X, Fiber) + 10a9 8024 Single Port 10-Gigabit Ethernet (PCI-X, Fiber) + 5832 Xframe II 10-Gigabit Ethernet PCI-X 2.0 + 103c 1337 PCI-X 266MHz 10GigE SR [AD385A] + 10a9 8021 Single Port 10-Gigabit Ethernet II (PCI-X, Fiber) + 17d5 6020 Xframe II SR + 17d5 6021 Xframe II SR, Low Profile + 17d5 6022 Xframe E SR + 17d5 6420 Xframe II LR + 17d5 6421 Xframe II LR, Low Profile + 17d5 6422 Xframe E LR + 17d5 6c20 Xframe II CX4 + 17d5 6c21 Xframe II CX4, Low Profile + 17d5 6c22 Xframe E CX4 + 5833 X3100 Series 10 Gigabit Ethernet PCIe + 17d5 6030 X3110 Single Port SR + 17d5 6031 X3120 Dual Port SR + 17d5 6430 X3110 Single Port LR + 17d5 6431 X3120 Dual Port LR + 17d5 7030 X3110 Single Port LRM + 17d5 7031 X3120 Dual Port LRM + 17d5 7430 X3110 Single Port 10GBase-T + 17d5 7431 X3120 Dual Port 10GBase-T + 17d5 7830 X3110 Single Port 10GBase-CR + 17d5 7831 X3120 Dual Port 10GBase-CR +17db Cray Inc + 0101 XT Series [Seastar] 3D Toroidal Router +17de KWorld Computer Co. Ltd. +17df Dini Group + 1864 Virtex4 PCI Board w/ QL5064 Bridge [DN7000K10PCI/DN8000K10PCI/DN8000K10PSX/NOTUS] + 1865 Virtex4 ASIC Emulator [DN8000K10PCIe] + 1866 Virtex4 ASIC Emulator Cable Connection [DN8000K10PCI] + 1867 Virtex4 ASIC Emulator Cable Connection [DN8000K10PCIe] + 1868 Virtex4 ASIC Emulator [DN8000K10PCIe-8] + 1900 Virtex5 PCIe ASIC Emulator [DN9000K10PCIe8T/DN9002K10PCIe8T/DN9200K10PCIe8T/DN7006K10PCIe8T/DN7406K10PCIe8T] + 1901 Virtex5 PCIe ASIC Emulator Large BARs [DN9000K10PCIe8T/DN9002K10PCIe8T/DN9200K10PCIe8T/DN7006K10PCIe8T/DN7406K10PCIe8T] + 1902 Virtex5 PCIe ASIC Emulator Low Power [Interceptor] + 1903 Spartan6 PCIe FPGA Accelerator Board [DNBFCS12PCIe] + 1904 Virtex6 PCIe ASIC Emulation Board [DNDUALV6_PCIe4] + 1905 Virtex6 PCIe ASIC Emulation Board [DNV6F6PCIe] + 1906 Virtex6 PCIe ASIC Emulation Board [DN2076K10] + 1907 Virtex6 PCIe ASIC Emulation Board [DNV6F2PCIe] + 1908 Virtex6 PCIe ASIC Emulation Board Large BARs[DNV6F2PCIe] + 1909 Kintex7 PCIe FPGA Accelerator Board [DNK7F5PCIe] + 190a Virtex7 PCIe ASIC Emulation Board [DNV7F1A] + 190b Stratix5 PCIe ASIC Emulation Board [DNS5GXF2] + 190c Virtex7 PCIe ASIC Emulation Board [DNV7F2A] + 190d Virtex7 PCIe ASIC Emulation Board [DNV7F4A] + 190e Virtex7 PCIe ASIC Emulation Board [DNV7F2B] + 190f KintexUS PCIe MainRef Design [DNPCIE_40G_KU_LL] + 1910 VirtexUS ASIC Emulation Board [DNVUF4A] + 1911 VirtexUS PCIe ASIC Emulation Board [DNVU_F2PCIe] + 1912 KintexUS PCIe MainRef Design [DNPCIe_40G_KU_LL_QSFP] + 1913 VirtexUS ASIC Emulation Board [DNVUF1A] + 1914 VirtexUS ASIC Emulation Board [DNVUF2A] + 1915 Arria10 PCIe MainRef Design [DNPCIe_80G_A10_LL] + 1916 VirtexUS PCIe Accelerator Board [DNVUF2_HPC_PCIe] + 1917 UltrascalePlus PCIe Accelerator Board [DNPCIe_400G_VU_LL] + 1918 VirtexUS+ ASIC Emulation Board [DNVUPF4A] + 1919 UltrascalePlus PCIe Accelerator Board [DNPCIe_400G_VUP_HBM_LL] + 1a00 Virtex6 PCIe DMA Netlist Design + 1a01 Virtex6 PCIe Darklite Design [DNPCIe_HXT_10G_LL] + 1a02 Virtex7 PCIe DMA Netlist Design + 1a03 Kintex7 PCIe Darklite Design [DNPCIe_K7_10G_LL] + 1a05 Stratix5 PCIe Darklite Design [DNS5GX_F2] + 1a06 VirtexUS PCIe DMA Netlist Design + 1a07 KintexUS PCIe Darklite Design [DNPCIe_40G_KU_LL] + 1a08 KintexUS PCIe Darklite Design [DNPCIe_40G_KU_LL_QSFP] + 1a09 Arria10 PCIe Darklite Design [DNPCIe_80G_A10_LL] + 1a0a VirtexUS PCIe Darklite Design [DNVUF2_HPC_PCIe] + 1a0b UltrascalePlus PCIe Darklite Design [DNPCIe_400G_VU_LL] + 1a0c KintexUS PCIe DRAM Packet Capture Design [DNPCIe_40G_KU_LL] + 1a0d KintexUS PCIe DRAM Packet Capture Design [DNPCIe_40G_KU_LL_2QSFP] + 1a0e UltrascalePlus PCIe Darklite Design [DNPCIe_400G_VUP_HBM_LL] +17e4 Sectra AB + 0001 KK671 Cardbus encryption board + 0002 KK672 Cardbus encryption board +# nee Entropic Communications Inc. +17e6 MaxLinear + 0010 EN2010 [c.Link] MoCA Network Controller (Coax, PCI interface) + 0011 EN2010 [c.Link] MoCA Network Controller (Coax, MPEG interface) + 0021 EN2210 [c.Link] MoCA Network Controller (Coax) + 0025 EN2510 [c.Link] MoCA Network Controller (Coax, PCIe interface) + 0027 EN2710 [c.Link] MoCA 2.0 Network Controller (Coax, PCIe interface) + 3700 MoCA 2.0 Network Controller (Coax, PCIe interface) + 3710 MoCA 2.5 Network Controller (Coax, PCIe interface) +17ee Connect Components Ltd +17f2 Albatron Corp. +17f3 RDC Semiconductor, Inc. + 1010 R1010 IDE Controller + 1011 R1011 IDE Controller + 1012 R1012 IDE Controller + 1031 PCI/PCI-X to PCI-E Bridge +# Integrated in Vortex86EX, Vortex86EX2 SoC + 1070 CAN Bus Controller +# Integrated in Vortex86EX, Vortex86EX2 SoCs + 1331 Motion Control Interface +# Found in the Vortex86EX2 SoC + 1930 Hybrid Function Control Register +# IGP = on-chip integrated in the MSTI-PMX-1000 (Vortex86MX). + 2010 RDC M2010 VGA-compatible graphics adapter + 2012 M2012/R3308 VGA-compatible graphics adapter +# IGP = on-chip integrated in the Vortex86DX3. Basic 2D accel. UMA architecture. + 2015 RDC M2015 VGA-compatible graphics adapter +# Found in the Vortex86EX SoC + 6011 R6011 ISA Bridge +# Found in the Vortex86EX2 SoC + 6013 R6013 ISA Bridge + 6020 R6020 North Bridge + 6021 R6021 Host Bridge +# Integrated in the Vortex86DX2 SoC + 6022 R6022 Host Bridge +# Found in the Vortex86DX3 SoC + 6023 R6023 Host Bridge +# Found in the Vortex86EX SoC + 6025 R6025 Host Bridge +# Found in the Vortex86EX2 SoC + 6026 R6026 Host Bridge + 6030 R6030 ISA Bridge + 6031 R6031 ISA Bridge +# Found in the Vortex86DX3 SoC + 6035 R6035 ISA Bridge +# Found in MSTI-PMX-1000 (Vortex86MX) SoC. + 6036 R6036 ISA Bridge + 6040 R6040 MAC Controller + 6060 R6060 USB 1.1 Controller + 6061 R6061 USB 2.0 Controller +17f7 Topdek Semiconductor Inc. +17f9 Gemtek Technology Co., Ltd +17fc IOGEAR, Inc. +17fe InProComm Inc. + 2120 IPN 2120 802.11b + 1737 0020 WMP11 v4 802.11b Wireless-B PCI Adapter + 2220 IPN 2220 802.11g + 1468 0305 T60N871 802.11g Mini PCI Wireless Adapter + 1737 0029 WPC54G v4 802.11g Wireless-G Notebook Adapter +17ff Benq Corporation +1800 Qualcore Logic Inc. + 1100 Nanospeed Trading Gateway +1803 ProdaSafe GmbH +1804 Ralink corp. (wrong ID) + 3060 RT3060 Wireless 802.11n 1T/1R +1805 Euresys S.A. +1809 Lumanate, Inc. +180c IEI Integration Corp +1813 Ambient Technologies Inc + 4000 HaM controllerless modem + 16be 0001 V9x HAM Data Fax Modem + 4100 HaM plus Data Fax Modem + 16be 0002 V9x HAM 1394 +1814 Ralink corp. + 0101 Wireless PCI Adapter RT2400 / RT2460 + 1043 0127 WiFi-b add-on Card + 1371 0010 Minitar MNW2BPCI Wireless PCI Card + 1462 6828 PC11B2 (MS-6828) Wireless 11b PCI Card + 0200 RT2500 802.11g PCI [PC54G2] + 0201 RT2500 Wireless 802.11bg + 1043 130f WL-130g + 1186 3c00 DWL-G650X Wireless 11g CardBus Adapter + 1371 001e CWC-854 Wireless-G CardBus Adapter + 1371 001f CWM-854 Wireless-G Mini PCI Adapter + 1371 0020 CWP-854 Wireless-G PCI Adapter + 1458 e381 GN-WMKG 802.11b/g Wireless CardBus Adapter + 1458 e931 GN-WIKG 802.11b/g mini-PCI Adapter + 1462 6833 Unknown 802.11g mini-PCI Adapter + 1462 6835 Wireless 11G CardBus CB54G2 + 1737 0032 WMP54G v4.0 PCI Adapter + 1799 700a F5D7000 v2000/v3000 Wireless G Desktop Card + 1799 701a F5D7010 v2000/v3000 Wireless G Notebook Card + 1814 2560 RT2500 Wireless 802.11bg + 182d 9073 WL-115 Wireless Network PCI Adapter + 185f 22a0 CN-WF513 Wireless Cardbus Adapter + 18eb 5312 WL531P IEEE 802.11g PCI Card-EU + 1948 3c00 C54RC v1 Wireless 11g CardBus Adapter + 1948 3c01 C54Ri v1 Wireless 11g PCI Adapter + 0300 Wireless Adapter Canyon CN-WF511 + 0301 RT2561/RT61 802.11g PCI + 1186 3c08 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.E1) + 1186 3c09 DWL-G510 Rev C + 13d1 abe3 miniPCI Pluscom 802.11 a/b/g + 1458 e933 GN-WI01GS + 1458 e934 GN-WP01GS + 1462 b833 MP54G5 (MS-6833B) + 1737 0055 WMP54G v4.1 + 1799 700e F5D7000 v6000 Wireless G Desktop Card + 1799 701e F5D7010 v6000 Wireless G Notebook Card + 17f9 0012 AWLC3026T 802.11g Wireless CardBus Adapter + 1814 2561 EW-7108PCg/EW-7128g + 0302 RT2561/RT61 rev B 802.11g + 1186 3a71 DWA-510 Wireless G Desktop Adapter + 1186 3c08 AirPlus G DWL-G630 Wireless Cardbus Adapter (rev.E2) + 1186 3c09 AirPlus G DWL-G510 Wireless Network Adapter (Rev.C) + 1462 b834 PC54G3 Wireless 11g PCI Card + 1948 3c23 C54RC v2 Wireless 11g CardBus Adapter + 1948 3c24 C54Ri v2 Wireless 11g PCI Adapter + 0401 RT2600 802.11 MIMO + 1737 0052 WPC54GR v1 802.11g Wireless-G Notebook Adapter with RangeBooster + 17f9 0011 WPCR-137G 802.11bg Wireless CardBus Adapter + 17f9 0016 WPIR-119GH 802.11bg Wireless Desktop Adapter + 0601 RT2800 802.11n PCI + 1799 801c F5D8011 v3 802.11n N1 Wireless Notebook Card + 187e 3412 NWD-310N 802.11n Wireless PCI Adapter + 0681 RT2890 Wireless 802.11n PCIe + 1458 e939 GN-WS30N-RH 802.11bgn Mini PCIe Card + 0701 RT2760 Wireless 802.11n 1T/2R + 1737 0074 WMP110 v2 802.11n RangePlus Wireless PCI Adapter + 0781 RT2790 Wireless 802.11n 1T/2R PCIe + 1814 2790 RT2790 Wireless 802.11n 1T/2R PCIe + 3060 RT3060 Wireless 802.11n 1T/1R + 1186 3c04 DWA-525 Wireless N 150 Desktop Adapter (rev.A1) + 3062 RT3062 Wireless 802.11n 2T/2R + 3090 RT3090 Wireless 802.11n 1T/1R PCIe + 13bd 1057 GN-WS32L-RH Half-size Mini PCIe Card + 3091 RT3091 Wireless 802.11n 1T/2R PCIe + 3092 RT3092 Wireless 802.11n 2T/2R PCIe + 3290 RT3290 Wireless 802.11n 1T/1R PCIe + 103c 18ec Ralink RT3290LE 802.11bgn 1x1 Wi-Fi and Bluetooth 4.0 Combo Adapter + 3298 RT3290 Bluetooth + 103c 18ec Ralink RT3290LE 802.11bgn 1x1 Wi-Fi and Bluetooth 4.0 Combo Adapter + 3592 RT3592 Wireless 802.11abgn 2T/2R PCIe + 359f RT3592 PCIe Wireless Network Adapter + 5360 RT5360 Wireless 802.11n 1T/1R + 1186 3c05 DWA-525 Wireless N 150 Desktop Adapter (rev.A2) + 20f4 703a TEW-703PI N150 Wireless PCI Adapter + 5362 RT5362 PCI 802.11n Wireless Network Adapter + 5390 RT5390 Wireless 802.11n 1T/1R PCIe + 103c 1636 U98Z077.00 Half-size Mini PCIe Card + 5392 RT5392 PCIe Wireless Network Adapter + 539b RT5390R 802.11bgn PCIe Wireless Network Adapter + 539f RT5390 [802.11 b/g/n 1T1R G-band PCI Express Single Chip] + 103c 1637 Pavilion DM1Z-3000 PCIe wireless card + 5592 RT5592 PCIe Wireless Network Adapter + e932 RT2560F 802.11 b/g PCI +1815 Devolo AG +1820 InfiniCon Systems Inc. +1822 Twinhan Technology Co. Ltd + 4e35 Mantis DTV PCI Bridge Controller [Ver 1.0] +182d SiteCom Europe BV +# HFC-based ISDN card + 3069 ISDN PCI DC-105V2 + 9790 WL-121 Wireless Network Adapter 100g+ [Ver.3] +182e Raza Microelectronics, Inc. + 0008 XLR516 Processor +# Strange vendor ID used by BCM5785 when in RAID mode +182f Broadcom +# HT1000 uses 3 IDs 1166:024a (Native SATA Mode), 1166:024b (PATA/IDE Mode), 182f:000b (RAID Mode) depends on SATA BIOS setting + 000b BCM5785 [HT1000] SATA (RAID Mode) +1830 Credence Systems Corporation + 8000 CPIn + 8001 CPId + 8002 CPIx + 8003 CPIq +183b MikroM GmbH + 08a7 MVC100 DVI + 08a8 MVC101 SDI + 08a9 MVC102 DVI+Audio + 08b0 MVC200-DC +1846 Alcatel-Lucent +1849 ASRock Incorporation +184a Thales Computers + 1100 MAX II cPLD +1850 Advantest Corporation + 0048 EK220-66401 Computer Interface Card +1851 Microtune, Inc. +1852 Anritsu Corp. +1853 SMSC Automotive Infotainment System Group +1854 LG Electronics, Inc. +185b Compro Technology, Inc. + 1489 VideoMate Vista T100 +185f Wistron NeWeb Corp. +1864 SilverBack + 2110 ISNAP 2110 +1867 Topspin Communications + 5a44 MT23108 InfiniHost HCA + 5a45 MT23108 InfiniHost HCA flash recovery + 5a46 MT23108 InfiniHost HCA bridge + 6278 MT25208 InfiniHost III Ex (Tavor compatibility mode) + 6282 MT25208 InfiniHost III Ex +186c Humusoft, s.r.o. + 0612 AD612 Data Acquisition Device + 0614 MF614 Multifunction I/O Card + 0622 AD622 Data Acquisition Device + 0624 MF624 Multifunction I/O PCI Card + 0625 MF625 3-phase Motor Driver + 0634 MF634 Multifunction I/O PCIe Card + 0644 MF644 Multifunction I/O Thb Card +186f WiNRADiO Communications +1876 L-3 Communications + a101 VigraWATCH PCI + a102 VigraWATCH PMC + a103 Vigra I/O +187e ZyXEL Communications Corporation + 3403 ZyAir G-110 802.11g + 340e M-302 802.11g XtremeMIMO +1885 Avvida Systems Inc. +1888 Varisys Ltd + 0301 VMFX1 FPGA PMC module + 0601 VSM2 dual PMC carrier + 0710 VS14x series PowerPC PCI board + 0720 VS24x series PowerPC PCI board +188a Ample Communications, Inc +1890 Egenera, Inc. +1894 KNC One +1896 B&B Electronics Manufacturing Company, Inc. + 4202 MIport 3PCIU2 2-port Serial + 4204 MIport 3PCIU4 4-port Serial + 4208 MIport 3PCIU8 8-port Serial + 4211 MIport 3PCIOU1 1-port Isolated Serial + 4212 MIport 3PCIOU2 2-port Isolated Serial + 4214 MIport 3PCIOU4 4-port Isolated Serial + bb10 3PCI2 2-Port Serial + bb11 3PCIO1 1-Port Isolated Serial +1897 AMtek +18a1 Astute Networks Inc. +18a2 Stretch Inc. + 0002 VRC6016 16-Channel PCIe DVR Card +18a3 AT&T +18ac DViCO Corporation + d500 FusionHDTV 5 + d800 FusionHDTV 3 Gold + d810 FusionHDTV 3 Gold-Q + d820 FusionHDTV 3 Gold-T + db30 FusionHDTV DVB-T Pro + db40 FusionHDTV DVB-T Hybrid + db78 FusionHDTV DVB-T Dual Express +18b8 Ammasso + b001 AMSO 1100 iWARP/RDMA Gigabit Ethernet Coprocessor +# formally Info-Tek Corp. +18bc GeCube Technologies, Inc. +18c3 Micronas Semiconductor Holding AG + 0720 nGene PCI-Express Multimedia Controller + 1461 032e Hybrid M779 PCI-E +# Nee Octigabay System +18c8 Cray Inc +18c9 ARVOO Engineering BV +18ca XGI Technology Inc. (eXtreme Graphics Innovation) + 0020 Z7/Z9 (XG20 core) + 0021 Z9s/Z9m (XG21 core) + 0027 Z11/Z11M + 0040 Volari V3XT/V5/V8 + 0047 Volari 8300 (chip: XP10, codename: XG47) +# should be 182d +18d2 Sitecom Europe BV (Wrong ID) +# Sitecom HFC-S based ISDN controller card DC-105v2 + 3069 DC-105v2 ISDN controller +18d4 Celestica +18d8 Dialogue Technology Corp. +18dd Artimi Inc + 4c6f Artimi RTMI-100 UWB adapter +18df LeWiz Communications +18e6 MPL AG + 0001 OSCI [Octal Serial Communication Interface] +18eb Advance Multimedia Internet Technology, Inc. +18ec Cesnet, z.s.p.o. + 6d05 ML555 + 18ec 0100 NIC (ethernet interfaces) + 18ec 0200 NIC (szedata2) 4x1G + 18ec 0201 NIC (szedata2) 2x10G + 18ec 0300 NIFIC (szedata2) 4x1G + 18ec 0302 NIFIC (szedata2) 2x10G + 18ec 4200 Flexible FlowMon (szedata2) 1x10G + 18ec ff00 Testing design + 18ec ff01 Boot design + c006 COMBO6 + 18ec d001 COMBO-4MTX + 18ec d002 COMBO-4SFP + 18ec d003 COMBO-4SFPRO + 18ec d004 COMBO-2XFP + c032 COMBO-LXT110 + 18ec 0100 NIC (ethernet interfaces) + 18ec 0200 NIC (szedata2) 4x1G + 18ec 0201 NIC (szedata2) 2x10G + 18ec 0300 NIFIC (szedata2) 4x1G + 18ec 0302 NIFIC (szedata2) 2x10G + 18ec 4200 Flexible FlowMon (szedata2) 1x10G + 18ec ff00 Testing design + 18ec ff01 Boot design + c045 COMBO6E + c050 COMBO-PTM + c058 COMBO6X + 18ec d001 COMBO-4MTX + 18ec d002 COMBO-4SFP + 18ec d003 COMBO-4SFPRO + 18ec d004 COMBO-2XFP + c132 COMBO-LXT155 + 18ec 0100 NIC (ethernet interfaces) + 18ec 0200 NIC (szedata2) 4x1G + 18ec 0201 NIC (szedata2) 2x10G + 18ec 0300 NIFIC (szedata2) 4x1G + 18ec 0302 NIFIC (szedata2) 2x10G + 18ec 4200 Flexible FlowMon (szedata2) 1x10G + 18ec ff00 Testing design + 18ec ff01 Boot design + c232 COMBO-FXT100 + 18ec 0100 NIC (ethernet interfaces) + 18ec 0200 NIC (szedata2) 4x1G + 18ec 0201 NIC (szedata2) 2x10G + 18ec 0300 NIFIC (szedata2) 4x1G + 18ec 0302 NIFIC (szedata2) 2x10G + 18ec 4200 Flexible FlowMon (szedata2) 1x10G + 18ec ff00 Testing design + 18ec ff01 Boot design + c400 COMBO-400G1 +18ee Chenming Mold Ind. Corp. +18f1 Spectrum GmbH +18f4 Napatech A/S + 0031 NT20X Network Adapter + 0051 NT20X Capture Card + 0061 NT20E Capture Card + 0064 NT20E Inline Card + 0071 NT4E Capture Card + 0074 NT4E Inline Card + 0081 NT4E 4-port Expansion Card + 0091 NT20X Capture Card [New Rev] + 00a1 NT4E-STD Capture Card + 00a4 NT4E-STD Inline Card +# 8 x 1 Gbps / 10 Gbps PCIe Optical Bypass Adapter + 00b1 NTBPE Optical Bypass Adapter + 00c5 NT20E2 Network Adapter 2x10Gb + 00d5 NT40E2-4 Network Adapter 4x10Gb + 00e5 NT40E2-1 Network Adapter 1x40Gb +# 4-Port Adapter for 1 GbE In-Line Bypass Applications + 00f5 NT4E2-4T-BP Network Adapter 4x1Gb with Electrical Bypass + 0105 NT4E2-4-PTP Network Adapter 4x1Gb + 0115 NT20E2-PTP Network Adapter 2x10Gb + 0125 NT4E2-4-PTP Network Adapter 4x1Gb + 0135 NT20E2-PTP Network Adapter 2x10Gb + 0145 NT40E3-4-PTP Network Adapter 4x10Gb + 0155 NT100E3-1-PTP Network Adapter 1x100Gb + 0165 NT80E3-2-PTP Network Adapter 2x40Gb + 0175 NT20E3-2-PTP Network Adapter 2x10Gb + 0185 NT40A01 Network Adapter + 01a5 NT200A01 Network Adapter + 01c5 NT200A02 Network Adapter + 01d5 NT50B01 Network Adapter + 01e5 NT100A01 Network Adapter +18f6 NextIO + 1000 [Nexsis] Switch Virtual P2P PCIe Bridge + 1001 [Texsis] Switch Virtual P2P PCIe Bridge + 1050 [Nexsis] Switch Virtual P2P PCI Bridge + 1051 [Texsis] Switch Virtual P2P PCI Bridge + 2000 [Nexsis] Switch Integrated Mgmt. Endpoint + 2001 [Texsis] Switch Integrated Mgmt. Endpoint +18f7 Commtech, Inc. + 0001 ESCC-PCI-335 Serial PCI Adapter [Fastcom] + 0002 422/4-PCI-335 Serial PCI Adapter [Fastcom] + 0003 232/4-1M-PCI Serial PCI Adapter [Fastcom] + 0004 422/2-PCI-335 Serial PCI Adapter [Fastcom] + 0005 IGESCC-PCI-ISO/1 Serial PCI Adapter [Fastcom] + 000a 232/4-PCI-335 Serial PCI Adapter [Fastcom] + 000b 232/8-PCI-335 Serial PCI Adapter [Fastcom] + 000f FSCC Serial PCI Adapter [Fastcom] + 0010 GSCC Serial PCI Adapter [Fastcom] + 0011 QSSB Serial PCI Adapter [Fastcom] + 0014 SuperFSCC Serial PCI Adapter [Fastcom] + 0015 SuperFSCC-104-LVDS Serial PC/104+ Adapter [Fastcom] + 0016 FSCC-232 RS-232 Serial PCI Adapter [Fastcom] +# Software UARTs + 0017 SuperFSCC-104 Serial PC/104+ Adapter [Fastcom] +# Software UARTs + 0018 SuperFSCC/4 Serial PCI Adapter [Fastcom] +# Software UARTs + 0019 SuperFSCC Serial PCI Adapter [Fastcom] + 001a SuperFSCC-LVDS Serial PCI Adapter [Fastcom] +# Software UARTs + 001b FSCC/4 Serial PCI Adapter [Fastcom] +# RS-644 Only + 001c SuperFSCC/4-LVDS Serial PCI Adapter [Fastcom] +# Software UARTs + 001d FSCC Serial PCI Adapter [Fastcom] + 001e SuperFSCC/4 Serial PCIe Adapter [Fastcom] + 001f SuperFSCC/4 Serial cPCI Adapter [Fastcom] + 0020 422/4-PCIe Serial PCIe Adapter [Fastcom] + 0021 422/8-PCIe Serial PCIe Adapter [Fastcom] +# RS-644 Only + 0022 SuperFSCC/4-LVDS Serial PCIe Adapter [Fastcom] +# Software UARTs + 0023 SuperFSCC/4 Serial cPCI Adapter [Fastcom] +# RS-644 Only, Software UARTs + 0025 SuperFSCC/4-LVDS Serial PCI Adapter [Fastcom] +# RS-644 Only, Software UARTs + 0026 SuperFSCC-LVDS Serial PCI Adapter [Fastcom] +# Software UARTs + 0027 FSCC/4 Serial PCIe Adapter [Fastcom] +18fb Resilience Corporation +1904 Hangzhou Silan Microelectronics Co., Ltd. + 2031 SC92031 PCI Fast Ethernet Adapter + 8139 RTL8139D [Realtek] PCI 10/100BaseTX ethernet adaptor +1905 Micronas USA, Inc. +1912 Renesas Technology Corp. + 0002 SH7780 PCI Controller (PCIC) + 0011 SH7757 PCIe End-Point [PBI] + 0012 SH7757 PCIe-PCI Bridge [PPB] + 0013 SH7757 PCIe Switch [PS] + 0014 uPD720201 USB 3.0 Host Controller + 0015 uPD720202 USB 3.0 Host Controller + 001a SH7758 PCIe-PCI Bridge [PPB] + 001b SH7758 PCIe End-Point [PBI] + 001d SH7758 PCIe Switch [PS] +1919 Soltek Computer Inc. +1923 Sangoma Technologies Corp. + 0040 A200/Remora FXO/FXS Analog AFT card + 0100 A104d QUAD T1/E1 AFT card + 0300 A101 single-port T1/E1 + 0400 A104u Quad T1/E1 AFT +1924 Solarflare Communications + 0703 SFC4000 rev A net [Solarstorm] + 10b8 0102 SMC10GPCIe-10BT (A2) [TigerCard] + 10b8 0103 SMC10GPCIe-10BT (A3) [TigerCard] + 10b8 0201 SMC10GPCIe-XFP (A1) [TigerCard] + 1924 0101 SFE4001-A1 + 1924 0102 SFE4001-A2 + 1924 0103 SFE4001-A3 + 1924 0201 SFE4002-A1 + 1924 0301 SFE4003-A1 + 1924 0302 SFE4003-A2 + 1924 0303 SFE4003-A3 + 1924 0304 SFE4003-A4 + 1924 0500 SFE4005-A0 + 0710 SFC4000 rev B [Solarstorm] + 10b8 0103 SMC10GPCIe-10BT (A3) [TigerCard] + 10b8 0201 SMC10GPCIe-XFP (A1) [TigerCard] + 1924 0102 SFE4001-A2 + 1924 0103 SFE4001-A3 + 1924 0201 SFE4002-A1 + 1924 0302 SFE4003-A2 + 1924 0303 SFE4003-A3 + 1924 0304 SFE4003-A4 + 1924 0500 SFE4005-A0 + 1924 5102 SFN4111T-A2 + 1924 5103 SFN4111T-R3 + 1924 5104 SFN4111T-R4 + 1924 5105 SFN4111T-R5 + 1924 5201 SFN4112F-R1 + 1924 5202 SFN4112F-R2 + 0803 SFC9020 10G Ethernet Controller + 1014 0478 2-port 10GbE Low-Latency (R7) + 1014 0479 2-port 10GbE OpenOnload (R7) + 1014 04a7 Solarflare 10Gb Low-latency Dual-port HBA (R7) + 1014 04a8 Solarflare 10Gb Dual-port HBA (R7) + 103c 2132 Ethernet 10Gb 2-port 570FLR-SFP+ Adapter (R1) + 103c 2136 Ethernet 10Gb 2-port 570SFP+ Adapter (R7) + 1924 1201 SFA6902F-R1 SFP+ AOE Adapter + 1924 6200 SFN5122F-R0 SFP+ Server Adapter + 1924 6201 SFN5122F-R1 SFP+ Server Adapter + 1924 6202 SFN5122F-R2 SFP+ Server Adapter + 1924 6204 SFN5122F-R4 SFP+ Server Adapter + 1924 6205 SFN5122F-R5 SFP+ Server Adapter + 1924 6206 SFN5122F-R6 SFP+ Server Adapter + 1924 6207 SFN5122F-R7 SFP+ Server Adapter + 1924 6210 SFN5322F-R0 SFP+ Precision Time Synchronization Server Adapter + 1924 6211 SFN5322F-R1 SFP+ Precision Time Synchronization Server Adapter + 1924 6217 SFN5322F-R7 SFP+ Precision Time Synchronization Server Adapter + 1924 6227 SFN6122F-R7 SFP+ Server Adapter + 1924 6237 SFN6322F-R7 SFP+ Precision Time Synchronization Server Adapter + 1924 6501 SFN5802K-R1 Mezzanine Adapter + 1924 6511 SFN5814H-R1 Mezzanine Adapter + 1924 6521 SFN5812H-R1 Mezzanine Adapter + 1924 6562 SFN6832F-R2 SFP+ Mezzanine Adapter + 1924 6a05 SFN5112F-R5 SFP+ Server Adapter + 1924 6a06 SFN5112F-R6 SFP+ Server Adapter + 1924 7206 SFN5162F-R6 SFP+ Server Adapter + 1924 7207 SFN5162F-R7 SFP+ Server Adapter + 1924 7a06 SFN5152F-R6 SFP+ Server Adapter + 1924 7a07 SFN5152F-R7 SFP+ Server Adapter + 0813 SFL9021 10GBASE-T Ethernet Controller + 1924 6100 SFN5121T-R0 10GBASE-T Server Adapter + 1924 6102 SFN5121T-R2 10GBASE-T Server Adapter + 1924 6103 SFN5121T-R3 10GBASE-T Server Adapter + 1924 6104 SFN5121T-R4 10GBASE-T Server Adapter + 1924 6902 SFN5111T-R2 10GBASE-T Server Adapter + 1924 6904 SFN5111T-R4 10GBASE-T Server Adapter + 1924 7104 SFN5161T-R4 10GBASE-T Server Adapter + 1924 7904 SFN5151T-R4 10GBASE-T Server Adapter + 0903 SFC9120 10G Ethernet Controller + 1014 04cc SFN7122F-R2 2x10GbE SFP+ Flareon Ultra + 1924 8002 SFN7122F-R1 SFP+ Server Adapter + 1924 8003 SFN7x41Q-R1 Flareon Ultra 7000 Series 10/40G Adapter + 1924 8006 SFN7022F-R1 SFP+ Server Adapter + 1924 8007 SFN7322F-R2 Precision Time SFP+ Server Adapter + 1924 8009 SFN7x22F-R2 Flareon Ultra 7000 Series 10G Adapter + 1924 800a SFN7x02F-R2 Flareon 7000 Series 10G Adapter + 1924 800c SFN7x22F-R3 Flareon Ultra 7000 Series 10G Adapter + 1924 800d SFN7x02F-R3 Flareon 7000 Series 10G Adapter + 1924 8010 SFA7942Q-R1 QSFP+ AOE Adapter + 1924 8015 SFA7942Q-A5-0-R1 QSFP+ AOE Adapter + 0923 SFC9140 10/40G Ethernet Controller + 1924 800b SFN7x42Q-R1 Flareon Ultra 7000 Series 10/40G Adapter + 1924 800e SFN7x42Q-R2 Flareon Ultra 7000 Series 10/40G Adapter + 1924 800f SFN7xx4F-R1 Flareon Ultra 7000 Series 10G Adapter + 0a03 SFC9220 10/40G Ethernet Controller + 1924 8011 SFN8022-R1 8000 Series 10G Adapter + 1924 8012 SFN8522-R1 8000 Series 10G Adapter + 1924 8013 SFN8042-R1 8000 Series 10/40G Adapter + 1924 8014 SFN8542-R1 8000 Series 10/40G Adapter + 1924 8016 SFN8022-R2 8000 Series 10G Adapter + 1924 8017 SFN8522-R2 8000 Series 10G Adapter + 1924 8018 SFN8042-R2 8000 Series 10/40G Adapter + 1924 8019 SFN8542-R2 8000 Series 10/40G Adapter + 1924 801a SFN8722-R1 8000 Series OCP 10G Adapter + 1924 801b SFN8522-R3 8000 Series 10G Adapter + 1924 801c SFN8042-R3 8000 Series 10/40G Adapter + 1924 8021 SFN8041-R1 8000 Series 10/40G Adapter + 0b03 XtremeScale SFC9250 10/25/40/50/100G Ethernet Controller + 1924 801d x2522-R1 2000 Series 10/25G Adapter + 1924 801e x2542-R1 2000 Series 40/100G Adapter + 1924 8022 XtremeScale X2522 10G Network Adapter + 1924 8024 XtremeScale X2562 OCP 3.0 Dual Port SFP28 + 1924 8027 XtremeScale X2541 PCIe Single Port QSFP28 + 1924 8028 XtremeScale X2522-25G Network Adapter + 1924 802a XtremeScale X2542 PCIe Dual Port QSFP28 + 1924 802b XtremeScale X2552 OCP 2.0 Dual Port SFP28 + 1924 802c XtremeScale X2522-25G PCIe Dual Port SFP28 + 1924 802d XtremeScale X2562 OCP 3.0 Dual Port SFP28 + 1803 SFC9020 10G Ethernet Controller (Virtual Function) + 1813 SFL9021 10GBASE-T Ethernet Controller (Virtual Function) + 1903 SFC9120 10G Ethernet Controller (Virtual Function) + 1923 SFC9140 10/40G Ethernet Controller (Virtual Function) + 1a03 SFC9220 10/40G Ethernet Controller (Virtual Function) + 1b03 XtremeScale SFC9250 10/25/40/50/100G Ethernet Controller (Virtual Function) + 6703 SFC4000 rev A iSCSI/Onload [Solarstorm] + 10b8 0102 SMC10GPCIe-10BT (A2) [TigerCard] + 10b8 0103 SMC10GPCIe-10BT (A3) [TigerCard] + 10b8 0201 SMC10GPCIe-XFP (A1) [TigerCard] + 1924 0101 SFE4001-A1 + 1924 0102 SFE4001-A2 + 1924 0103 SFE4001-A3 + 1924 0201 SFE4002-A1 + 1924 0301 SFE4003-A1 + 1924 0302 SFE4003-A2 + 1924 0303 SFE4003-A3 + 1924 0304 SFE4003-A4 + 1924 0500 SFE4005-A0 + c101 EF1-21022T [EtherFabric] +192a BiTMICRO Networks Inc. + 0008 RAMPART +192e TransDimension +1931 Option N.V. + 000c Qualcomm MSM6275 UMTS chip +1932 DiBcom +193c MAXIM Integrated Products +193d Hangzhou H3C Technologies Co., Ltd. +193f AHA Products Group + 0001 AHA36x-PCIX + 0360 AHA360-PCIe + 0363 AHA363-PCIe + 0364 AHA364-PCIe + 0367 AHA367-PCIe + 0370 AHA370-PCIe + 0604 AHA604 + 0605 AHA605 + 3641 AHA3641 + 3642 AHA3642 + 6101 AHA6101 + 6102 AHA6102 +1942 ClearSpeed Technology plc + e511 Advance X620 accelerator card + e521 Advance e620 accelerator card +1947 C-guys, Inc. + 4743 CG200 Dual SD/SDIO Host controller device +1948 Alpha Networks Inc. +194a DapTechnology B.V. + 1111 FireSpy3850 + 1112 FireSpy450b + 1113 FireSpy450bT + 1114 FireSpy850 + 1115 FireSpy850bT + 1200 FireTrac 3460bT + 1201 FireTrac 3460bT (fallback firmware) + 1202 FireTrac 3460bT + 1203 FireTrac 3460bT (fallback firmware) +# nee Curtis, Inc. +1954 One Stop Systems, Inc. +1957 Freescale Semiconductor Inc + 0012 MPC8548E + 0013 MPC8548 + 0014 MPC8543E + 0015 MPC8543 + 0018 MPC8547E + 0019 MPC8545E + 001a MPC8545 + 0020 MPC8568E + 0021 MPC8568 + 0022 MPC8567E + 0023 MPC8567 + 0030 MPC8533E + 0031 MPC8533 + 0032 MPC8544E + 0033 MPC8544 + 0040 MPC8572E + 0041 MPC8572 + 0050 MPC8536E + 0051 MPC8536 + 0052 MPC8535E + 0053 MPC8535 + 0060 MPC8569 + 0061 MPC8569E + 0070 P2020E + 0071 P2020 + 0078 P2010E + 0079 P2010 + 0080 MPC8349E + 0081 MPC8349 + 0082 MPC8347E TBGA + 0083 MPC8347 TBGA + 0084 MPC8347E PBGA + 110a 4074 SIMATIC NET CP 1628 + 0085 MPC8347 PBGA + 110a 4046 SIMATIC NET CP 1623 + 0086 MPC8343E + 0087 MPC8343 + 00b4 MPC8315E + 00b6 MPC8314E + 1a56 1101 Bigfoot Killer Xeno Pro Gigabit Ethernet Controller + 00c2 MPC8379E + 00c3 MPC8379 + 00c4 MPC8378E + 00c5 MPC8378 + 00c6 MPC8377E + 00c7 MPC8377 + 0100 P1020E + 0101 P1020 + 0102 P1021E + 0103 P1021 + 0108 P1011E + 0109 P1011 + 010a P1012E + 010b P1012 + 0110 P1022E + 0111 P1022 + 1c7f 5200 EB5200 + 0118 P1013E + 0119 P1013 + 0128 P1010 + 0400 P4080E + 0401 P4080 + 0408 P4040E + 0409 P4040 + 041f P3041 + 0440 T4240 with security + 0441 T4240 without security + 0446 T4160 with security + 0447 T4160 without security + 0830 T2080 with security + 0831 T2080 without security + 0838 T2081 with security + 0839 T2081 without security + 580c MPC5121e + 7010 MPC8641 PCI Host Bridge + 7011 MPC8641D PCI Host Bridge + 7018 MPC8610 + c006 MPC8308 + 1a56 1201 Bigfoot Killer E2100 Gigabit Ethernet Controller +# PCIe interface for emulator + fc02 RedStone +# CFI device over PCIe + fc03 CFI +1958 Faster Technology, LLC. +1959 PA Semi, Inc + a000 PA6T Core + a001 PWRficient Host Bridge + a002 PWRficient PCI-Express Port + a003 PWRficient SMBus Controller + a004 PWRficient 16550 UART + a005 PWRficient Gigabit Ethernet + a006 PWRficient 10-Gigabit Ethernet + a007 PWRficient DMA Controller + a008 PWRficient LPC/Localbus Interface + a009 PWRficient L2 Cache + a00a PWRficient DDR2 Memory Controller + a00b PWRficient SERDES + a00c PWRficient System/Debug Controller + a00d PWRficient PCI-Express Internal Endpoint +1966 Orad Hi-Tec Systems + 1975 DVG64 family + 1977 DVG128 family + 1979 3DVG/UHD3 + 1980 HDV2/UHD2 + 1234 3160 UHD2LC + 1234 3300 Legacy UHD2 + 1234 3410 UHD2 +# nee Atheros Communications, Inc. nee Attansic Technology Corp. +1969 Qualcomm Atheros + 1026 AR8121/AR8113/AR8114 Gigabit or Fast Ethernet + 1043 8304 P5KPL-CM Motherboard + 1048 Attansic L1 Gigabit Ethernet + 1043 8226 P5B-MX/WiFi-AP, P5KPL-VM Motherboard + 1062 AR8132 Fast Ethernet + 1063 AR8131 Gigabit Ethernet + 1458 e000 GA-G31M-ES2L Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 1066 Attansic L2c Gigabit Ethernet + 1067 Attansic L1c Gigabit Ethernet + 1073 AR8151 v1.0 Gigabit Ethernet + 1083 AR8151 v2.0 Gigabit Ethernet + 1090 AR8162 Fast Ethernet + 1043 108d VivoBook X202E, X202EV + 1091 AR8161 Gigabit Ethernet + 1043 1477 N56VZ + 10a0 QCA8172 Fast Ethernet + 10a1 QCA8171 Gigabit Ethernet + 2048 Attansic L2 Fast Ethernet + 2060 AR8152 v1.1 Fast Ethernet + 2062 AR8152 v2.0 Fast Ethernet + 1043 8468 Eee PC 1015PX +# E2200, E2201, E2205 + e091 Killer E220x Gigabit Ethernet Controller + e0a1 Killer E2400 Gigabit Ethernet Controller + e0b1 Killer E2500 Gigabit Ethernet Controller +196a Sensory Networks Inc. + 0101 NodalCore C-1000 Content Classification Accelerator + 0102 NodalCore C-2000 Content Classification Accelerator + 0105 NodalCore C-3000 Content Classification Accelerator +196d Club-3D BV +196e PNY +1971 AGEIA Technologies, Inc. + 1011 Physics Processing Unit [PhysX] + 1043 0001 PhysX P1 +# nee Eberspaecher Electronics +1974 Star Electronics GmbH & Co. KG + 0009 FlexCard PMC-II + 0011 FlexCard PMC-II Ethernet + 0018 FlexCard PXIe3 + 0019 FlexCard PCIe3 +# IO card for std ethernet and automotive ethernet (ieee 1000Base-T1) + 001a FlexCard PXIe Ethernet +# IO card for std ethernet and automotive ethernet (ieee 1000Base-T1) + 001b FlexCard PCIe Ethernet +1976 TRENDnet +1977 Parsec +197b JMicron Technology Corp. + 0250 JMC250 PCI Express Gigabit Ethernet Controller + 0260 JMC260 PCI Express Fast Ethernet Controller + 0368 JMB368 IDE controller + 0585 JMB58x AHCI SATA controller + 2360 JMB360 AHCI Controller + 2361 JMB361 AHCI/IDE + 1462 7235 P965 Neo MS-7235 mainboard + 2362 JMB362 SATA Controller + 1043 8460 P8P67 Deluxe Motherboard + 2363 JMB363 SATA/IDE Controller + 1043 81e4 P5B [JMB363] + 1458 b000 Motherboard + 1849 2363 Motherboard (one of many) + 2364 JMB364 AHCI Controller + 2365 JMB365 AHCI/IDE + 2366 JMB366 AHCI/IDE + 2368 JMB368 IDE controller + 2369 JMB369 Serial ATA Controller + 2380 IEEE 1394 Host Controller + 2381 Standard SD Host Controller + 2382 SD/MMC Host Controller + 2383 MS Host Controller + 2384 xD Host Controller + 2386 Standard SD Host Controller + 2387 SD/MMC Host Controller + 2388 MS Host Controller + 2389 xD Host Controller + 2391 Standard SD Host Controller + 2392 SD/MMC Host Controller + 2393 MS Host Controller + 2394 xD Host Controller +1982 Distant Early Warning Communications Inc + 1600 OX16C954 HOST-A + 16ff OX16C954 HOST-B +1987 Phison Electronics Corporation + 5007 E7 NVMe Controller + 5012 E12 NVMe Controller + 5013 PS5013 E13 NVMe Controller + 5016 E16 PCIe4 NVMe Controller + 5018 E18 PCIe4 NVMe Controller +1989 Montilio Inc. + 0001 RapidFile Bridge + 8001 RapidFile +198a Nallatech Ltd. +1993 Innominate Security Technologies AG +1999 A-Logics + a900 AM-7209 Video Processor +199a Pulse-LINK, Inc. +199d Xsigo Systems + 8209 Virtual NIC Device + 890a Virtual HBA Device +199f Auvitek + 8501 AU85X1 PCI REV1.1 + 8521 AU8521 TV card +# nee ServerEngines Corp. +19a2 Emulex Corporation + 0120 x1 PCIe Gen2 Bridge[Pilot4] + 0200 BladeEngine 10Gb PCI-E iSCSI adapter + 0201 BladeEngine 10Gb PCIe Network Adapter + 0211 BladeEngine2 10Gb Gen2 PCIe Network Adapter + 0212 BladeEngine2 10Gb Gen2 PCIe iSCSI Adapter + 0221 BladeEngine3 10Gb Gen2 PCIe Network Adapter + 0222 BladeEngine3 10Gb Gen2 PCIe iSCSI Adapter + 0700 OneConnect OCe10100/OCe10102 Series 10 GbE + 103c 1747 NC550SFP DualPort 10GbE Server Adapter + 103c 1749 NC550SFP Dual Port Server Adapter + 103c 174a NC551m Dual Port FlexFabric 10Gb Adapter + 103c 174b StorageWorks NC550 DualPort Converged Network Adapter + 103c 3314 NC551i Dual Port FlexFabric 10Gb Adapter + 0702 OneConnect 10Gb iSCSI Initiator + 0704 OneConnect OCe10100/OCe10102 Series 10 GbE CNA + 10df e602 OneConnect OCe10100 10Gb CNA + 10df e630 OneConnect OCe10102-FM-E / OCe10102-FX-E for EMC VNX Symmetrix + 0710 OneConnect 10Gb NIC (be3) +# FC 5287 / FC 5284; CCIN 5287 + 1014 03d0 PCIe2 2-port 10GbE SR Adapter for POWER +# FC 5288 / FC 5286; CCIN 5288 + 1014 03d1 PCIe2 2-port 10GbE SFP+ Copper Adapter for POWER + 1014 0409 Integrated Multifunction Card with Dual 10GbE SR Optical + Dual 1GbE for Power 750/760 + 1014 040a Integrated Multifunction Card with Dual 10GbE SR Copper + Dual 1GbE for Power 750/760 + 103c 3315 NC553i 10Gb 2-port FlexFabric Converged Network Adapter + 103c 3340 NC552SFP 2-port 10Gb Server Adapter + 103c 3341 NC552m 10Gb 2-port FlexFabric Converged Network Adapter + 103c 3345 NC553m 10Gb 2-port FlexFabric Converged Network Adapter + 103c 337b NC554FLB 10Gb 2-port FlexFabric Converged Network Adapter + 10df e733 Flex System EN4054 4-port 10Gb Ethernet Mezzanine Adapter + 0712 OneConnect 10Gb iSCSI Initiator (be3) + 0714 OneConnect 10Gb FCoE Initiator (be3) + 103c 3315 NC553i 10Gb 2-port FlexFabric Converged Network Adapter + 103c 337b NC554FLB 10Gb 2-port FlexFabric Converged Network Adapter + 0800 ServerView iRMC HTI +19a8 DAQDATA GmbH +19ac Kasten Chase Applied Research + 0001 ACA2400 Crypto Accelerator +19ae Progeny Systems Corporation + 0520 4135 HFT Interface Controller + 0521 Decimator +19ba ZyXEL Communications Corp. + 2330 ZyWALL Turbo Card +19c1 Exegy Inc. +# nee NextNet Wireless +19d1 Motorola Expedience +19d4 Quixant Limited +19da ZOTAC International (MCO) Ltd. +19de Pico Computing +19e2 Vector Informatik GmbH +19e3 DDRdrive LLC + 5801 DDRdrive X1 + 5808 DDRdrive X8 + dd52 DDRdrive X1-30 +19e5 Huawei Technologies Co., Ltd. +# subvendor + 0123 ES3000 V3 NVMe PCIe SSD + 19e5 3022 NVMe SSD ES3600P V3 800GB 2.5" U.2 + 19e5 3023 NVMe SSD ES3600P V3 1200GB 2.5" U.2 + 19e5 3024 NVMe SSD ES3600P V3 1600GB 2.5" U.2 + 19e5 3025 NVMe SSD ES3600P V3 2000GB 2.5" U.2 + 19e5 3026 NVMe SSD ES3600P V3 3200GB 2.5" U.2 + 19e5 3033 NVMe SSD ES3600C V3 1200GB HHHL AIC + 19e5 3034 NVMe SSD ES3600C V3 1600GB HHHL AIC + 19e5 3036 NVMe SSD ES3600C V3 3200GB HHHL AIC + 0200 Hi1822 Family (2*100GE) + 19e5 d139 Hi1822 SP572 (2*100GE) + 19e5 d13d Hi1822 SC371 (2*100GE) + 19e5 d147 Hi1822 SP573 (2*100GE) + 0202 Hi1822 Family (2*32G FC) + 19e5 d149 Hi1822 SP528 (2*32G FC) + 19e5 d302 Hi1822 SP521 (2*32G FC) + 19e5 d304 Hi1822 SP526 (2*32G FC) + 0203 Hi1822 Family (2*16G FC) + 19e5 d148 Hi1822 SP527 (2*16G FC) + 19e5 d301 Hi1822 SP520 (2*16G FC) + 19e5 d305 Hi1822 SP525 (2*16G FC) + 0205 Hi1822 Family (2*100GE) + 19e5 df27 Hi1822 MZ731 MEZZ (2*100GE) + 0206 Hi1822 Family (2*25GE) + 19e5 d138 Hi1822 SP582 (2*25GE) + 19e5 d13a Hi1822 SC381 (2*25GE) + 19e5 d145 Hi1822 SP586 (2*25GE) + 0210 Hi1822 Family (4*25GE) + 19e5 df2e Hi1822 MZ532 MEZZ (4*25GE) + 0211 Hi1822 Family (4*25GE) + 19e5 d12f Hi1822 SP571 (4*25GE) + 19e5 d137 Hi1822 SP581 (4*25GE) + 19e5 d142 Hi1822 SP583 (4*25GE) + 0212 Hi1822 Family (2*8G FC) + 19e5 d303 Hi1822 SP522 (2*8G FC) + 19e5 d306 Hi1822 SP523 (2*8G FC) + 1710 iBMA Virtual Network Adapter + 1711 Hi171x Series [iBMC Intelligent Management system chip w/VGA support] + 1822 Hi1822 Family (4*25GE) + 19e5 d129 Hi1822 SP570 (4*25GE) + 19e5 d136 Hi1822 SP580 (4*25GE) + 19e5 d141 Hi1822 SP583 (4*25GE) + 19e5 d146 Hi1822 SP585 (4*25GE) + 3714 ES3000 V5 NVMe PCIe SSD + 19e5 5312 NVMe SSD ES3500P V5 2000GB 2.5" U.2 + 371e Hi1822 Family Virtual Bridge + 3754 ES3000 V6 NVMe PCIe SSD + 19e5 6122 NVMe SSD ES3600P V6 1600GB 2.5" U.2 + 19e5 6123 NVMe SSD ES3600P V6 3200GB 2.5" U.2 + 19e5 6124 NVMe SSD ES3600P V6 6400GB 2.5" U.2 + 19e5 6141 NVMe SSD ES3800P V6 800GB 2.5" U.2 + 19e5 6142 NVMe SSD ES3800P V6 1600GB 2.5" U.2 + 19e5 6212 NVMe SSD ES3500P V6 1920GB 2.5" U.2 + 19e5 6213 NVMe SSD ES3500P V6 3840GB 2.5" U.2 + 19e5 6214 NVMe SSD ES3500P V6 7680GB 2.5" U.2 + 19e5 6215 NVMe SSD ES3500P V6 15360GB 2.5" U.2 + 375e Hi1822 Family Virtual Function + 379e Hi1822 Family Virtual Function + a120 HiSilicon PCIe Root Port with Gen4 + a121 HiSilicon PCI-PCI Bridge + a122 HiSilicon Embedded DMA Engine + a124 HiSilicon Internal SDI Function Engine + a125 HiSilicon SDI Network Controller + a126 HiSilicon SDI NVMe Storage Controller + a127 HiSilicon SDI Accelerator + a12a HiSilicon Add-on PCI-PCI Bridge + a220 HNS GE Network Controller + a221 HNS GE/10GE/25GE Network Controller + 19e5 0454 TM280 + 19e5 04cc TM210 + 19e5 d14a TM280 4*25G + 19e5 d14b TM210 4*GE + a222 HNS GE/10GE/25GE RDMA Network Controller + a224 HNS GE/10GE/25GE/50GE RDMA Network Controller + a226 HNS GE/10GE/25GE/50GE/100GE RDMA Network Controller + a22a HiSilicon Network For SDI + a22e HNS Network Controller (Virtual Function) + a22f HNS RDMA Network Controller (Virtual Function) + a230 HiSilicon SAS 3.0 HBA + a235 HiSilicon AHCI HBA + a238 HiSilicon USB 3.0 Host Controller + a239 HiSilicon USB 2.0 2-port Host Controller + a23a HiSilicon USB 2.0 Host Controller + a23b HiSilicon USB 1.1 Host Controller + a250 HiSilicon ZIP Engine + a251 HiSilicon ZIP Engine(Virtual Function) + a255 HiSilicon SEC Engine + a256 HiSilicon SEC Engine(Virtual Function) + a258 HiSilicon HPRE Engine + a259 HiSilicon HPRE Engine(Virtual Function) + a25a HiSilicon RDE Engine + a25b HiSilicon RDE Engine(Virtual Function) +19e7 NET (Network Equipment Technologies) + 1001 STIX DSP Card + 1002 STIX - 1 Port T1/E1 Card + 1003 STIX - 2 Port T1/E1 Card + 1004 STIX - 4 Port T1/E1 Card + 1005 STIX - 4 Port FXS Card +19ee Netronome Systems, Inc. +19f1 BFG Tech +19ff Eclipse Electronic Systems, Inc. +1a03 ASPEED Technology, Inc. + 1150 AST1150 PCI-to-PCI Bridge + 2000 ASPEED Graphics Family + 15d9 0832 X10SRL-F + 15d9 1b95 H12SSL-i +1a05 deltaww +1a07 Kvaser AB + 0006 CAN interface PC104+ HS/HS + 0007 CAN interface PCIcanx II HS or HS/HS + 0008 CAN interface PCIEcan HS or HS/HS + 0009 CAN interface PCI104 HS/HS +1a08 Sierra semiconductor + 0000 SC15064 +1a0d SEAKR Engineering +1a0e DekTec Digital Video B.V. + 083f DTA-2111 VHF/UHF Modulator +1a17 Force10 Networks, Inc. + 8002 PB-10GE-2P 10GbE Security Card +1a1d GFaI e.V. + 1a17 Meta Networks MTP-1G IDPS NIC +1a1e 3Leaf Systems, Inc. +1a22 Ambric Inc. +1a29 Fortinet, Inc. + 4338 CP8 Content Processor ASIC + 43a0 CP9 Content Processor ASIC + 4e36 NP6 Network Processor + 4e37 NP7 Network Processor +1a2b Ascom AG + 0000 GESP v1.2 + 0001 GESP v1.3 + 0002 ECOMP v1.3 + 0005 ETP v1.4 + 000a ETP-104 v1.1 + 000e DSLP-104 v1.1 +# nee Metalink Ltd. +1a30 Lantiq + 0680 MtW8171 [Hyperion II] + 0700 Wave300 PSB8224 [Hyperion III] + 0710 Wave300 PSB8231 [Hyperion III] +1a32 Quanta Microsystems, Inc +1a3b AzureWave + 1112 AR9285 Wireless Network Adapter (PCI-Express) +1a41 Tilera Corp. + 0001 TILE64 processor + 0002 TILEPro processor + 0200 TILE-Gx processor + 0201 TILE-Gx Processor Virtual Function + 2000 TILE-Gx PCI Express Root Port +1a4a SLAC National Accelerator Lab TID-AIR + 1000 MCOR Power Supply Controller + 1010 AMC EVR - Stockholm Timing Board + 1020 PGPCard - Gen3 Cameralink Interface + 1030 PGPCard - Gen3 GIGe Interface + 2000 PGPCard - 4 Lane + 2001 PGPCard - 8 Lane Plus EVR + 2010 PCI-Express EVR + 2011 PCI-Express EVR - TPR Version + 2020 PGP-GEN3 PCIe - 8 Lane Plus EVR + 2030 AXI Stream DAQ PCIe card + 2040 EXO PCIe TEM + 3000 COB DTM V1 + 3001 COB DTM V2 +1a51 Hectronic AB +1a55 Rohde & Schwarz DVS GmbH + 0010 SDStationOEM + 0011 SDStationOEM II + 0020 Centaurus + 0021 Centaurus II + 0022 Centaurus II LT + 0030 CLIPSTER-VPU 1.x (Hugo) + 0040 Hydra Cinema (JPEG) + 0050 CLIPSTER-VPU 2.x (DigiLab) + 0060 CLIPSTER-DCI 2.x (HydraX) + 0061 Atomix + 0062 Atomix LT + 0063 Atomix HDMI + 0064 Atomix STAN + 0065 Atomix HDMI STAN + 0070 RED Rocket + 0090 CinePlay +# nee Bigfoot Networks, now owned by Intel +1a56 Rivet Networks +1a57 Highly Reliable Systems +1a58 Razer USA Ltd. +1a5d Celoxica +1a5e Aprius Inc. +1a5f System TALKS Inc. +1a68 VirtenSys Limited +1a71 XenSource, Inc. +1a73 Violin Memory, Inc + 0001 Mozart [Memory Appliance 1010] +1a76 Wavesat +1a77 Lightfleet Corporation +1a78 Virident Systems Inc. + 0031 FlashMAX Drive + 1a78 0034 FlashMAX PCIe SSD [rev 3] + 1a78 0037 FlashMAX PCIe SSD [rev 3D] + 1a78 0038 FlashMAX PCIe SSD [rev 4] + 1a78 0039 FlashMAX PCIe SSD [rev 4D] + 0040 FlashMAX II + 0041 FlashMAX II + 0042 FlashMAX II + 0050 FlashMAX III +1a84 Commex Technologies + 0001 Vulcan SP HT6210 10-Gigabit Ethernet (rev 02) +1a88 MEN Mikro Elektronik + 4d45 Multifunction IP core +1a8a StarBridge, Inc. +1a8c Verigy Pte. Ltd. + 1100 E8001-66443 PCI Express CIC +1a8e DRS Technologies + 2090 Model 2090 PCI Express +1aa8 Ciprico, Inc. + 0009 RAIDCore Controller + 000a RAIDCore Controller +1aa9 Schweitzer Engineering Laboratories + 000d SEL-3390S8 Serial Adapter + 000e SEL-3390E4 Ethernet Adapter + 0014 SEL-3390T Time and Ethernet Adapter + 0018 SEL-3390E4 Ethernet Adapter +1aae Global Velocity, Inc. +1ab4 Distributed Management Task Force, Inc. (DMTF) +1ab6 CalDigit, Inc. + 6201 RAID Card +# Parallels VM virtual devices +1ab8 Parallels, Inc. + 4000 Virtual Machine Communication Interface + 4005 Accelerated Virtual Video Adapter + 4006 Memory Ballooning Controller +1ab9 Espia Srl +1ac1 Global Unichip Corp. + 089a Coral Edge TPU +1ac8 Aeroflex Gaisler +1acc Point of View BV +1ad7 Spectracom Corporation + 8000 TSync-PCIe Time Code Processor + 9100 TPRO-PCI-66U Timecode Reader/Generator +1ade Spin Master Ltd. + 1501 Swipetech barcode scanner + 3038 PCIe Video Bridge + 13c2 3016 TT-budget S2-4200 Twin + 4254 0552 S952 v3 +1ae0 Google, Inc. + 0042 Compute Engine Virtual Ethernet [gVNIC] + abcd Airbrush Combined Paintbox IPU/Oscar Edge TPU [Pixel Neural Core] +1ae3 SANBlaze Technology, Inc. +1ae7 First Wise Media GmbH + 0520 HFC-S PCI A [X-TENSIONS XC-520] +# nee Silicon Software GmbH +1ae8 Basler AG +# CameraLink frame grabber for Visual Applets + 0751 mE5 marathon VCL +# CameraLink HS frame grabber + 0752 mE5 marathon AF2 +# CoaXpress frame grabber + 0753 mE5 marathon ACX QP +# CameraLink frame grabber + 0754 mE5 marathon ACL +# CoaXpress frame grabber + 0755 mE5 marathon ACX SP +# CoaXpress frame grabber + 0756 mE5 marathon ACX DP +# CoaXpress frame grabber for Visual Applets + 0757 mE5 marathon VCX QP +# CameraLink HS frame grabber for Visual Applets + 0758 mE5 marathon VF2 +# CameraLink frame grabber for Visual Applets / AI applications + 0759 mE5 marathon VCLx +# CameraLink frame grabber + 0a40 microEnable IV AD1-CL +# CameraLink frame grabber for Visual Applets + 0a41 microEnable IV VD1-CL +# CameraLink frame grabber + 0a42 microEnable IV AD4-CL +# CameraLink frame grabber for Visual Applets + 0a44 microEnable IV VD4-CL +# CameraLink frame grabber + 0a45 microEnable IV AS1-CL +# CoaXpress frame grabber + 0a53 microEnable 5 AQ8-CXP6B +# CoaXpress frame grabber for Visual Applets + 0a54 microEnable 5 VQ8-CXP6B +# CoaXpress frame grabber for Visual Applets + 0a56 microEnable 5 VQ8-CXP6D +# CoaXpress frame grabber + 0a57 microEnable 5 AQ8-CXP6D +# CameraLink frame grabber for Visual Applets + 0a58 microEnable 5 VD8-CL +# CameraLink frame grabber + 0a5a microEnable 5 AD8-CL +# CoaXpress frame grabber + 0a64 imaWorx CXP-12 Quad +# OEM product + 0b52 mE5 Abacus 4G Base +# OEM product + 0b53 mE5 Abacus 4G Base II +# OEM product + 0b61 mE6 Abacus 4TG +# CoaXpress frame grabber + 0b63 CXP-12 Interface Card 1C +# CoaXpress frame grabber + 0b64 CXP-12 Interface Card 4C +# CoaXpress frame grabber + 0b65 CXP-12 Interface Card 2C +# CoaXpress Thunderbolt frame grabber + 0b66 CXP-12 LightBridge 2C +# GigE Vision frame grabber + 0e42 microEnable IV AQ4-GE +# GigE Vision frame grabber for Visual Applets + 0e44 microEnable IV VQ4-GE +1ae9 Wilocity Ltd. + 0101 Wil6200 PCI Express Upstream Port + 0200 Wil6200 PCI Express Port + 0201 Wil6200 Wireless PCI Express Port + 0301 Wil6200 802.11ad Wireless Network Adapter + 0302 Wil6200 802.11ad Wireless Network Adapter + 0310 Wil6200 802.11ad Wireless Network Adapter +1aea Alcor Micro + 6601 AU6601 PCI-E Flash card reader controller + 6621 AU6621 PCI-E Flash card reader controller + 6625 AU6625 PCI-E Flash card reader controller +1aec Wolfson Microelectronics +# nee Fusion-io +1aed SanDisk + 1003 ioDimm3 (v1.2) + 1005 ioDimm3 + 1014 03c3 High IOPS SSD PCIe Adapter + 103c 176f 1.28TB MLC PCIe ioDrive Duo + 103c 1770 5.2TB MLC PCIe ioDrive Octal + 103c 178b 160GB SLC PCIe ioDrive + 103c 178c 320GB MLC PCIe ioDrive + 103c 178d 320GB SLC PCIe ioDrive Duo + 103c 178e 640GB MLC PCIe ioDrive Duo + 1006 ioXtreme + 1007 ioXtreme Pro + 1008 ioXtreme-2 + 2001 ioDrive2 + 3001 ioMemory FHHL + 3002 ioMemory HHHL + 3003 ioMemory Mezzanine +1aee Caustic Graphics Inc. +# nee Qumranet, Inc. +1af4 Red Hat, Inc. + 1000 Virtio network device + 1001 Virtio block device + 1002 Virtio memory balloon + 1003 Virtio console + 1004 Virtio SCSI + 1005 Virtio RNG + 1009 Virtio filesystem +# virtio 1.0 + 1041 Virtio network device +# virtio 1.0 + 1042 Virtio block device +# virtio 1.0 + 1043 Virtio console +# virtio 1.0 + 1044 Virtio RNG +# virtio 1.0 + 1045 Virtio memory balloon +# virtio 1.0 + 1048 Virtio SCSI +# virtio 1.0 + 1049 Virtio filesystem +# virtio 1.0 + 1050 Virtio GPU +# virtio 1.0 + 1052 Virtio input +# virtio 1.0 + 1053 Virtio socket + 105a Virtio file system + 1110 Inter-VM shared memory + 1af4 1100 QEMU Virtual Machine +1af5 Netezza Corp. +1afa J & W Electronics Co., Ltd. +1b03 Magnum Semiconductor, Inc, + 6100 DXT/DXTPro Multiformat Broadcast HD/SD Encoder/Decoder/Transcoder + 7000 D7 Multiformat Broadcast HD/SD Encoder/Decoder/Transcoder +1b08 MSC Technologies GmbH +1b0a Pegatron +1b13 Jaton Corp +1b1a K&F Computing Research Co. + 0e70 GRAPE +1b1c Corsair +1b21 ASMedia Technology Inc. + 0611 ASM1061 SATA IDE Controller + 0612 ASM1062 Serial ATA Controller + 1849 0612 Motherboard + 1040 ASM1040 XHCI Controller + 1042 ASM1042 SuperSpeed USB Host Controller + 1043 1059 K53SM motherboard + 1043 8488 P8B WS Motherboard + 1849 1042 Motherboard + 1080 ASM1083/1085 PCIe to PCI Bridge + 1849 1080 Motherboard + 1142 ASM1042A USB 3.0 Host Controller + 1166 ASM1166 Serial ATA Controller + 1182 ASM1182e 2-Port PCIe x1 Gen2 Packet Switch + 1b21 118f ASM1182e 2-Port PCIe x1 Gen2 Packet Switch + 1184 ASM1184e 4-Port PCIe x1 Gen2 Packet Switch + 1849 1184 ASM1184e 4-Port PCIe x1 Gen2 Packet Switch + 1187 ASM1187e 7-Port PCIe x1 Gen2 Packet Switch + 1242 ASM1142 USB 3.1 Host Controller + 1343 ASM1143 USB 3.1 Host Controller + 1812 ASM1812 6-Port PCIe x4 Gen2 Packet Switch + 2142 ASM2142 USB 3.1 Host Controller + 1462 7a72 H270 PC MATE + 2824 ASM2824 PCIe Gen3 Packet Switch + 3242 ASM3242 USB 3.2 Host Controller +1b26 Netcope Technologies, a.s. + c132 COMBO-LXT155 + c1c0 NFB-100G1-e0 + c1c1 NFB-100G1-e1 + c250 NFB-200G2-master + c251 NFB-200G2-slave + c2c0 NFB-100G2-e0 + c2c1 NFB-100G2-e1 + cb20 COMBO-20G + cb40 COMBO-40G + cb80 NFB-40G2 +1b2c Opal-RT Technologies Inc. +1b36 Red Hat, Inc. + 0001 QEMU PCI-PCI bridge + 0002 QEMU PCI 16550A Adapter + 1af4 1100 QEMU Virtual Machine + 0003 QEMU PCI Dual-port 16550A Adapter + 1af4 1100 QEMU Virtual Machine + 0004 QEMU PCI Quad-port 16550A Adapter + 1af4 1100 QEMU Virtual Machine + 0005 QEMU PCI Test Device + 1af4 1100 QEMU Virtual Machine + 0006 PCI Rocker Ethernet switch device + 0007 PCI SD Card Host Controller Interface + 0008 QEMU PCIe Host bridge + 0009 QEMU PCI Expander bridge + 000a PCI-PCI bridge (multiseat) + 000b QEMU PCIe Expander bridge + 000c QEMU PCIe Root port + 000d QEMU XHCI Host Controller + 0010 QEMU NVM Express Controller + 0100 QXL paravirtual graphic card + 1af4 1100 QEMU Virtual Machine +1b37 Signal Processing Devices Sweden AB + 0001 ADQ214 + 0003 ADQ114 + 0005 ADQ112 + 000e ADQ108 + 000f ADQDSP + 0014 ADQ412 + 0015 ADQ212 + 001b SDR14 + 001c ADQ1600 + 001e ADQ208 + 001f DSU + 0020 ADQ14 + 0023 ADQ7 + 0026 ADQ8 + 2014 TX320 + 2019 S6000 +# now owned by HGST (a Western Digital subsidiary) +1b39 sTec, Inc. + 0001 S1120 PCIe Accelerator SSD +1b3a Westar Display Technologies + 7589 HRED J2000 - JPEG 2000 Video Codec Device +1b3e Teradata Corp. + 1fa8 BYNET BIC2SE/X + 1b3e 00a3 BYNET BIC2SX + 1b3e 00c3 BYNET BIC2SE +1b40 Schooner Information Technology, Inc. +# also used by some PROXIM (14b7) devices erroneously +1b47 Numascale AS + 0601 NumaChip N601 + 0602 NumaChip N602 +1b4b Marvell Technology Group Ltd. +# device 1b4b:0100 reports incorrect vendor id due to hw erratum (correct is 11ab) + 0100 88F3700 [Armada 3700 Family] ARM SoC + 0640 88SE9128 SATA III 6Gb/s RAID Controller + 2241 88NR2241 Non-Volatile memory controller + 1028 2112 BOSS-N1 Monolithic + 1028 2113 BOSS-N1 Modular + 1028 2151 BOSS-N1 Modular ET + 1028 2196 ROR-N100 + 1d49 0306 ThinkSystem M.2 NVMe 2-Bay RAID Enablement Kit + 1d49 0307 ThinkSystem 7mm NVMe 2-Bay Rear RAID Enablement Kit + 9120 88SE9120 SATA 6Gb/s Controller + 9123 88SE9123 PCIe SATA 6.0 Gb/s controller + dc93 600e DC-6xxe series SATA 6G controller + 9125 88SE9125 PCIe SATA 6.0 Gb/s controller + 9128 88SE9128 PCIe SATA 6 Gb/s RAID controller + 9130 88SE9128 PCIe SATA 6 Gb/s RAID controller with HyperDuo + 1043 8438 P8P67 Deluxe Motherboard + 9170 88SE9170 PCIe 2.0 x1 2-port SATA 6 Gb/s Controller + 9172 88SE9172 SATA 6Gb/s Controller + 9178 88SE9170 PCIe SATA 6Gb/s Controller + 917a 88SE9172 SATA III 6Gb/s RAID Controller + 9182 88SE9182 PCIe 2.0 x2 2-port SATA 6 Gb/s Controller + 9183 88SS9183 PCIe SSD Controller + 9192 88SE9172 SATA III 6Gb/s RAID Controller + 91a0 88SE912x SATA 6Gb/s Controller [IDE mode] + 91a4 88SE912x IDE Controller + 9215 88SE9215 PCIe 2.0 x1 4-port SATA 6 Gb/s Controller + 9220 88SE9220 PCIe 2.0 x2 2-port SATA 6 Gb/s RAID Controller + 9230 88SE9230 PCIe 2.0 x2 4-port SATA 6 Gb/s RAID Controller + 1028 1fd6 BOSS-S1 Adapter + 1028 1fdf BOSS-S1 Modular + 1028 1fe2 BOSS-S1 Adapter + 1028 2010 BOSS-S2 Adapter +# RS0200L6R2iM2 + 1bd4 0073 RS0200L6R2iM2 + 1d49 0300 ThinkSystem M.2 with Mirroring Enablement Kit + 1d49 0301 ThinkSystem SR630 x16 PCIE with 4 SATA ports Riser + 1d49 0302 ThinkSystem SE350 M.2 SATA 4-Bay Data RAID Mirroring Enablement Kit + 1d49 0303 ThinkSystem SE350 M.2 SATA 4-Bay Data RAID Mirroring Enablement Kit + 1d49 0304 ThinkSystem M.2 SATA 2-Bay RAID Enablement Kit + 1d49 0305 ThinkSystem 7mm SATA 2-Bay Rear RAID Enablement Kit + 9235 88SE9235 PCIe 2.0 x2 4-port SATA 6 Gb/s Controller + 9445 88SE9445 PCIe 2.0 x4 4-Port SAS/SATA 6 Gbps RAID Controller + 9480 88SE9480 SAS/SATA 6Gb/s RAID controller + 9485 88SE9485 SAS/SATA 6Gb/s controller +1b4c GALAX +1b55 NetUP Inc. + 18f6 Dual DVB Universal CI card + 18f7 Dual DVB Universal CI card rev 1.4 + 2a2c Dual DVB-S2-CI card + e2e4 Dual DVB-T/C-CI RF card +# 2xHDMI and 2xHD-SDI inputs + e5f4 MPEG2 and H264 Encoder-Transcoder + f1c4 Dual ASI-RX/TX-CI card +1b66 DELTACAST + 0007 DELTA-3G-elp-d +1b6f Etron Technology, Inc. + 7023 EJ168 USB 3.0 Host Controller + 1458 5007 GA-880GMA-USB3 + 7052 EJ188/EJ198 USB 3.0 Host Controller + 1849 7052 QC5000-ITX/PH +1b73 Fresco Logic + 1000 FL1000G USB 3.0 Host Controller + 1d5c 1000 Anker USB 3.0 Express Card + 1009 FL1009 USB 3.0 Host Controller + 1100 FL1100 USB 3.0 Host Controller + 16b8 6e31 Allegro Pro USB 3.0 PCIe +1b74 OpenVox Communication Co. Ltd. + 0115 D115P/D115E Single-port E1/T1 card + d130 D130P/D130E Single-port E1/T1 card (3rd GEN) + d210 D210P/D210E Dual-port E1/T1 card(2nd generation) + d230 D230 Dual-port E1/T1 card (2nd generation) + d410 D410/430 Quad-port E1/T1 card + d430 D410/430 Quad-port E1/T1 card +1b79 Absolute Analysis +1b85 OCZ Technology Group, Inc. + 1041 RevoDrive 3 X2 PCI-Express SSD 240 GB (Marvell Controller) + 6018 RD400/400A SSD + 8788 RevoDrive Hybrid +1b94 Signatec / Dynamic Signals Corp + e400 PX14400 Dual Xilinx Virtex5 based Digitizer +1b96 Western Digital + 2200 Ultrastar DC SN630 NVMe SSD + 2201 Ultrastar DC SN630 NVMe SSD + 2300 Ultrastar DC SN840 NVMe SSD + 2400 Ultrastar DC SN640 NVMe SSD + 2401 Ultrastar DC SN640 NVMe SSD + 2402 Ultrastar DC SN640 NVMe SSD + 2404 Ultrastar DC SN640 NVMe SSD + 2500 Ultrastar DC SN840 NVMe SSD + 2600 Ultrastar DC ZN540 ZNS NVMe SSD + 3714 PC SN730 NVMe SSD + 3734 PC SN730 NVMe SSD +1b9a XAVi Technologies Corp. +1baa QNAP Systems, Inc. +1bad ReFLEX CES + c001 XpressGXA10-LP1150 + c002 XpressGXA10-LP1151 +1bb0 SimpliVity Corporation + 0002 OmniCube Accelerator OA-3000 + 0010 OmniCube Accelerator OA-3000-2 +1bb1 Seagate Technology PLC + 005d Nytro PCIe Flash Storage + 1bb1 6501 Nytro XP6500-8A1536 1.5TB +# 2TB Nytro PCIe controller + 1bb1 6502 Nytro XP6500-8A2048 +# 4TB Nytro PCIe controller + 1bb1 6503 Nytro XP6500-8A4096 +# 2GB DRAM variant of Nytro card + 1bb1 6511 Nytro XH6550-2GB DRAM +# 8GB variant of Nytro PCIe controller + 1bb1 6512 Nytro XH6550-8GB DRAM +# 1.5 TB Nytro PCIe controller + 1bb1 6521 Nytro XP6500-8A1536 1.5TB +# 2TB Nytro PCIe controller + 1bb1 6522 Nytro XP6500-8A2048 +# 4TB Nytro PCIe controller + 1bb1 6523 Nytro XP6500-8A4096 + 0100 Nytro Flash Storage + 1bb1 0101 Nytro XF1440 + 1bb1 0103 Nytro 5000 + 1bb1 0105 Nytro 5020 + 1bb1 0106 Nytro 5020 TCG +# Larkspur 2.5" + 1bb1 0107 Nytro 5320 +# Larkspur 2.5" TCG + 1bb1 0108 Nytro 5320 TCG + 1bb1 0121 Nytro XM1440 + 1bb1 0123 Nytro 5000 +# Kiowa M.2 + 1bb1 0125 Nytro 5020 +# Kiowa M.2 TCG + 1bb1 0126 Nytro 5020 +# Larkspur M.2 22110mm + 1bb1 0127 Nytro 5320 M.2 +# Larkspur M.2 22110mm TCG + 1bb1 0128 Nytro 5320 M.2 TCG +# Larkspur M.2 2280mm + 1bb1 0131 Nytro 5320 M.2 +# Larkspur M.2 2280mm TCG + 1bb1 0132 Nytro 5320 M.2 TCG +# Larkspur E1.S + 1bb1 0141 Nytro 5320 E1.S +# Larkspur E1.S TCG + 1bb1 0142 Nytro 5320 E1.S TCG +# Kersey 2.5" + 1bb1 0151 Nytro 5520 +# Kersey 2.5" TCG + 1bb1 0152 Nytro 5520 TCG +# Nytro 5050H (Ebonhawk - High Performance) + 1bb1 0153 Nytro 5050H +# Nytro 5050H TCG (Ebonhawk High Performance) + 1bb1 0154 Nytro 5050H TCG +# Nytro 5050M (Ebonhawk Mainstream Performance) + 1bb1 0155 Nytro 5050M +# Nytro 5050M TCG (Ebonhawk Mainstream Performance) + 1bb1 0156 Nytro 5050M TCG +# Nytro 5050M (Ebonhawk Mainstream Performance) - 7mm + 1bb1 0157 Nytro 5050M 7mm +# Nytro 5050M (Ebonhawk Mainstream Performance) TCG - 7mm + 1bb1 0158 Nytro 5050M TCG 7mm +# Nytro 5060M (Rocinante Mainstream Performance) - 15mm + 1bb1 0159 Nytro 5060M +# Nytro 5050M TCG (Rocinante Mainstream Performance) - 15mm + 1bb1 0160 Nytro 5060M TCG +# Nytro 5060M 7mm (Rocinante Mainstream Performance) + 1bb1 0161 Nytro 5060M 7mm +# Nytro 5060M TCG (Rocinante Mainstream Performance) - 7mm + 1bb1 0162 Nytro 5060M TCG 7mm +# Nytro 5060H (Rocinante High Performance) + 1bb1 0163 Nytro 5060H +# Nytro 5060H TCG (Rocinante High Performance) + 1bb1 0164 Nytro 5060H TCG +# Nytro 5060H (Rocinante - High Performance) - E3.S 1T + 1bb1 0165 Nytro 5060H E3.S 1T +# Nytro 5060H (Rocinante - High Performance) - E3.S 1T TCG + 1bb1 0166 Nytro 5060H E3.S 1T TCG +# Nytro 5060H (Rocinante - High Performance) - E3.L 1T + 1bb1 0167 Nytro 5060H E3.L 1T +# Nytro 5060H (Rocinante - High Performance) - E3.L 1T TCG + 1bb1 0168 Nytro 5060H E3.L 1T TCG +# Nytro 5060M (Rocinante Mainstream Performance) - E3.S 1T + 1bb1 0169 Nytro 5060M E3.S 1T +# Nytro 5060M (Rocinante Mainstream Performance) - E3.S 1T TCG + 1bb1 0170 Nytro 5060M E3.S 1T TCG +# Nytro 5060M (Rocinante Mainstream Performance) - E3.L 1T + 1bb1 0171 Nytro 5060M E3.L 1T +# Nytro 5060M (Rocinante Mainstream Performance) - E3.L 1T TCG + 1bb1 0172 Nytro 5060M E3.L 1T TCG +# Nytro 5060M (Rocinante Mainstream Performance) - E1.S + 1bb1 0173 Nytro 5060M E1.S +# Nytro 5060M (Rocinante Mainstream Performance) - E1.S TCG + 1bb1 0174 Nytro 5060M E1.S TCG + 1bb1 01a1 Nytro XP7102 + 5012 FireCuda 510 SSD + 5016 FireCuda 520 SSD + 5018 FireCuda 530 SSD +1bb3 Bluecherry + 4304 BC-04120A MPEG4 4 port video encoder / decoder + 4309 BC-08240A MPEG4 4 port video encoder / decoder + 4310 BC-16480A MPEG4 16 port video encoder / decoder + 4e04 BC-04120A 4 port MPEG4 video encoder / decoder + 4e09 BC-08240A 8 port MPEG4 video encoder / decoder + 4e10 BC-16480A 16 port MPEG4 video encoder / decoder + 5304 BC-H04120A 4 port H.264 video and audio encoder / decoder + 5308 BC-H08240A 8 port H.264 video and audio encoder / decoder + 5310 BC-H16480A 16 port H.264 video and audio encoder / decoder +1bb5 Quantenna Communications, Inc. +1bbf Maxeler Technologies Ltd. + 0003 MAX3 + 0004 MAX4 +1bc0 Innodisk Corporation + 1001 PCIe 3TG6-P Controller + 1002 PCIe 3TE6 Controller + 1160 PCIe 3TE2 Controller + 1321 PCIe 4TG-P Controller + 1322 PCIe 4TE Controller + 2262 PCIe 3TG3-P Controller + 5208 PCIe 3TE7 Controller + 5216 PCIe 3TE8 Controller + 5236 PCIe 4TG2-P Controller +1bcf NEC Corporation + 001c Vector Engine 1.0 +1bd0 Astronics Corporation + 1001 Mx5 PMC/XMC Databus Interface Card + 1002 PM1553-5 (PC/104+ MIL-STD-1553 Interface Card) + 1004 AB3000 Series Rugged Computer + 1005 PE1000 (Multi-Protocol PCIe/104 Interface Card) + 1006 webCS Wireless Aircraft Communications Server + 1007 AB3000 Series Rugged Computer (Series N) + 1008 ME1000 mPCIe Avionics Interface Card + 100a NG1 Series Avionics Converter + 1101 OmniBus II PCIe Multi-Protocol Interface Card + 1102 OmniBusBox II Multi-Protocol Interface Core + 1103 OmniBus II cPCIe/PXIe Multi-Protocol Interface Card + 1200 NG3 Series Mil-Std-1553 Interface + 1201 NG3 Series ARINC 429 Interface + 1202 NG3 Series Avionics Discrete & Serial Interface + 1203 NG3 Series Avionics Discrete Interface +1bd4 Inspur Electronic Information Industry Co., Ltd. + 0911 Arria10_PCIe_F10A1150 +1bee IXXAT Automation GmbH + 0003 CAN-IB200/PCIe +1bef Lantiq + 0011 MIPS SoC PCI Express Port +1bf4 VTI Instruments Corporation + 0001 SentinelEX + 7011 RX0xxx +1bfd EeeTOP +1c09 CSP, Inc. + 4254 10G-PCIE3-8D-2S + 4255 10G-PCIE3-8D-Q + 4256 10G-PCIE3-8D-2S + 4258 10G-PCIE3-8E-2S Network Adapter + 4260 10G-PCIE3-8E-4S Network Adapter + 4261 10G-PCIE3-8E-4S Network Adapter + 4262 10G-PCIE3-8E-4S Network Adapter + 4263 10G-PCIE3-8E-4S Network Adapter + 4264 10G-PCIE3-8E-2S Network Adapter + 4265 10G-PCIE3-8E-2S Network Adapter + 5000 25G-PCIE3-8A-2S Security Intelligent Adapter + 5001 25G-PCIE3-8B-2S Security Intelligent Adapter +1c1c Symphony + 0001 82C101 +1c1f SoftLab-NSK + 0015 FD842 + 0019 FD722 + 001a FD788 + 001b FD720 + 001c FD922 + 001d Vega + 001f FD940 +1c28 Lite-On IT Corp. / Plextor + 0122 M6e PCI Express SSD [Marvell 88SS9183] +# previously Fiberblaze +1c2c Silicom Denmark + 000a Capture + 000f SmartNIC + 00a0 FBC4G Capture 4x1Gb [Herculaneum] + 00a1 FBC4XG Capture 4x10Gb [Ancona] + 00a2 FBC8XG Capture 8x10Gb [Livorno] + 00a3 FBC2XG Capture 2x10Gb [Genoa] + 00a4 FBC4XGG3 Capture 4x10Gb [Livigno] + 00a5 FBC2XLG Capture 2x40Gb [Livorno] + 00a6 FBC1CG Capture 1x100Gb + 00a9 FBC2XGHH Capture 2x10Gb [Latina] + 00ad FBC2CGG3HL Capture 2x100Gb [Padua] + 00af Capture slave device + 00e0 PacketMover 2x100Gb [Savona] + 00e1 PacketMover 2x100Gb [Tivoli] + 00e3 PacketMover 2x10Gb [Tivoli] + 00e5 PacketMover 2x10Gb [Corfu] + 1000 SmartNIC N5010 4x100Gb + 1001 SmartNIC N5011 w/2xE810 4x100Gb + a000 FBC2CGG3 Capture 2x40Gb [Mango_02] + a001 FBC2CGG3 Capture 2x100Gb [Mango_02] + a003 FBC2CGG3 Capture 16x10Gb [Mango] + a007 FBC2CGG3 Capture 2x40Gb [Mango] + a008 FBC2CGG3 Capture 2x25Gb [Mango] + a009 FBC2CGG3 Capture 16x10Gb [Mango] + a00a FBC2CGG3 Capture 8x10Gb [Mango] + a00e FB2CG Capture 2x100Gb [Savona] + a00f FB2CG Capture 2x40Gb [Savona] + a010 FB2CGHH Capture 2x40Gb [Tivoli] + a011 FB2CG Capture 2x25Gb [Savona] + a012 FB2CG Capture 8x10Gb [Savona] + a013 FB2CGHH Capture 2x25Gb [Tivoli] + a014 FB2CGHH Capture 8x10Gb [Tivoli] + a015 FB2CGHH Capture 2x100Gb [Tivoli] +# Used on V120 VME Crate Controller +1c32 Highland Technology, Inc. +1c33 Daktronics, Inc +1c36 Annapurna Labs Ltd. + 0001 Gigabit Ethernet Adapter + 0002 SFP+ 10G Ethernet Adapter +1c3b Accensus, LLC + 0200 Telas2 +# http://www.accensusllc.com/accensustelas2.html + 0300 Telas 2.V +1c44 Enmotus Inc + 8000 8000 Storage IO Controller +# A Western Digital Subsidiary +1c58 HGST, Inc. + 0003 Ultrastar SN100 Series NVMe SSD + 1014 04f5 PCIe3 1.6TB NVMe Flash Adapter + 1014 04f6 PCIe3 3.2TB NVMe Flash Adapter + 1c58 0003 Ultrastar SN100/SN150 NVMe SSD + 0023 Ultrastar SN200 Series NVMe SSD + 1c58 8823 Ultrastar Memory (ME200) +1c5c SK hynix + 1283 PC300 NVMe Solid State Drive 256GB + 1284 PC300 NVMe Solid State Drive 512GB + 1285 PC300 NVMe Solid State Drive 1TB + 1327 BC501 NVMe Solid State Drive + 1339 BC511 + 1504 SC300 512GB M.2 2280 SATA Solid State Drive + 1527 PC401 NVMe Solid State Drive 256GB + 174a Gold P31 SSD + 243b PE6110 NVMe Solid State Drive + 1c5c 0100 PE6110 NVMe Solid State Drive + 2839 PE8000 Series NVMe Solid State Drive + 1028 2143 DC NVMe SED PE8010 RI U.2 960GB + 1028 2144 DC NVMe PE8010 RI U.2 960GB + 1028 2145 DC NVMe SED PE8010 RI U.2 1.92TB + 1028 2146 DC NVMe PE8010 RI U.2 1.92TB + 1028 2147 DC NVMe SED PE8010 RI U.2 3.84TB + 1028 2148 DC NVMe PE8010 RI U.2 3.84TB + 1028 2149 DC NVMe SED PE8010 RI U.2 7.68TB + 1028 214a DC NVMe PE8010 RI U.2 7.68TB + 1c5c 0100 PE8000 Series NVMe Solid State Drive + 2849 PE81x0 U.2/3 NVMe Solid State Drive +1c5f Beijing Memblaze Technology Co. Ltd. + 000d PBlaze5 520/526 + 000e PBlaze6 6530 + 1c5f 0b20 NVMe SSD PBlaze6 6530 1920G AIC + 1c5f 0b21 NVMe SSD PBlaze6 6530 1920G 2.5" U.2 + 1c5f 0b30 NVMe SSD PBlaze6 6530 3840G AIC + 1c5f 0b31 NVMe SSD PBlaze6 6530 3840G 2.5" U.2 + 1c5f 0b40 NVMe SSD PBlaze6 6530 7680G AIC + 1c5f 0b41 NVMe SSD PBlaze6 6530 7680G 2.5" U.2 + 1c5f 4b20 NVMe SSD PBlaze6 6530 1600G AIC + 1c5f 4b21 NVMe SSD PBlaze6 6530 1600G 2.5" U.2 + 1c5f 4b30 NVMe SSD PBlaze6 6530 3200G AIC + 1c5f 4b31 NVMe SSD PBlaze6 6530 3200G 2.5" U.2 + 1c5f 4b40 NVMe SSD PBlaze6 6530 6400G AIC + 1c5f 4b41 NVMe SSD PBlaze6 6530 6400G 2.5" U.2 + 003d PBlaze5 920/926 + 003e PBlaze6 6920 + 1c5f 0a31 NVMe SSD PBlaze6 6920 3840GB 2.5" U.2 + 1c5f 0a41 NVMe SSD PBlaze6 6920 7680GB 2.5" U.2 + 1c5f 4a31 NVMe SSD PBlaze6 6920 3200GB 2.5" U.2 + 1c5f 4a41 NVMe SSD PBlaze6 6920 6400GB 2.5" U.2 + 0540 PBlaze4 NVMe SSD + 0550 PBlaze5 700/900 + 0555 PBlaze5 510/516 + 0557 PBlaze5 910/916 +# http://www.nicevt.ru/ (in Russian) +1c63 Science and Research Centre of Computer Technology (JSC "NICEVT") +# http://www.radiotec.ru/catalog.php?cat=jr8&art=14109 + 0008 K1927BB1Ya [EC8430] Angara Interconnection Network Adapter +1c7e TTTech Computertechnik AG + 0200 zFAS Debug Port +1c7f Elektrobit Austria GmbH + 5100 EB5100 +1c8a TSF5 Corporation + 0001 Hunter PCI Express +1c8c Mobiveil, Inc. +1cb0 Shannon Systems + 8266 SP4 Series SSD + 1cb0 2021 SP4 Series OCS U.2 SSD + 1cb0 2121 SP4 Series ZNS U.2 SSD + 1cb0 2f21 SP4E Series NVMe U.2 SSD(1920/3840/7680GB) + 1cb0 2f22 SP4X Series NVMe U.2 SSD(1600/3200/6400GB) + d000 Venice NVMe SSD + 1cb0 2010 Venice-E Series OCS U.2 + 1cb0 2011 Venice Series OCS U.2 + 1cb0 2012 Venice-X Series OCS U.2 +# Venice-E Series NVMe U.2 SSD(1.92T/3.84T/7.68T) + 1cb0 2f10 Venice-E Series NVMe U.2 +# Venice Series NVMe U.2 SSD(2T/4T/8T) + 1cb0 2f11 Venice Series NVMe U.2 +# Venice-X Series NVMe U.2 SSD(1.6T/3.2T/6.4T) + 1cb0 2f12 Venice-X Series NVMe U.2 + 1cb0 a010 Venice-E Series OCS AIC + 1cb0 a012 Venice-X Series OCS AIC +# Venice-E Series NVMe AIC SSD(1.92T/3.84T/7.68T) + 1cb0 af10 Venice-E Series NVMe AIC +# Venice-X Series NVMe AIC SSD(1.6T/3.2T/6.4T) + 1cb0 af12 Venice-X Series NVMe AIC +1cb1 Collion UG & Co.KG +1cb5 Focusrite Audio Engineering Ltd + 0002 Clarett +1cb8 Dawning Information Industry Co., Ltd. +1cc1 ADATA Technology Co., Ltd. +# 256GB NVMe SSD + 5766 ADATA XPG GAMMIXS1 1L Media + 8201 XPG SX8200 Pro PCIe Gen3x4 M.2 2280 Solid State Drive +1cc4 Union Memory (Shenzhen) + 1203 NVMe SSD Controller UHXXXa series + 1cc4 a121 NVMe SSD UHXXXa series U.2 960GB + 1cc4 a122 NVMe SSD UHXXXa series U.2 1920GB + 1cc4 a123 NVMe SSD UHXXXa series U.2 3840GB + 1cc4 a124 NVMe SSD UHXXXa series U.2 7680GB + 1cc4 a125 NVMe SSD UHXXXa series U.2 15360GB + 1cc4 a211 NVMe SSD UHXXXa series U.2 800GB + 1cc4 a212 NVMe SSD UHXXXa series U.2 1600GB + 1cc4 a213 NVMe SSD UHXXXa series U.2 3200GB + 1cc4 a214 NVMe SSD UHXXXa series U.2 6400GB + 17ab NVMe 256G SSD device + 6303 AM630 PCIe 4.0 x4 NVMe SSD Controller +1cc5 Embedded Intelligence, Inc. + 0100 CAN-PCIe-02 +1cc7 Radian Memory Systems Inc. + 0200 RMS-200 + 0250 RMS-250 +1ccf Zoom Corporation + 0001 TAC-2 Thunderbolt Audio Converter +1cd2 SesKion GmbH + 0301 Simulyzer-RT CompactPCI Serial DIO-1 card + 0302 Simulyzer-RT CompactPCI Serial PSI5-ECU-1 card + 0303 Simulyzer-RT CompactPCI Serial PSI5-SIM-1 card + 0304 Simulyzer-RT CompactPCI Serial PWR-ANA-1 card + 0305 Simulyzer-RT CompactPCI Serial CAN-1 card +# supports 8x CAN (-FD) interfaces + 0306 Simulyzer-RT CompactPCI Serial CAN-2 card (CAN-FD) + 0307 Simulyzer-RT CompactPCI Serial DIO-2 card [Xilinx Zynq UltraScale+] +1cd7 Nanjing Magewell Electronics Co., Ltd. + 0010 Pro Capture Endpoint + 0014 PRO CAPTURE AIO 4K PLUS + 0017 PRO CAPTURE AIO 4K + 0051 Eco Capture Dual HDMI M.2 + 0052 Eco Capture HDMI 4K M.2 + 0053 Eco Capture Dual SDI M.2 + 0054 Eco Capture Quad SDI M.2 +1cdd secunet Security Networks AG +1ce4 Exablaze + 0001 ExaNIC X4 + 0002 ExaNIC X2 + 0003 ExaNIC X10 + 0004 ExaNIC X10-GM + 0005 ExaNIC X40 + 0006 ExaNIC X10-HPT + 0007 ExaNIC X40 + 0008 ExaNIC V5P + 0009 ExaNIC X25 + 000a ExaNIC X100 + 000b ExaNIC V9P + 000c ExaNIC V9P-3 + 0100 ExaDISK FX1 +1cf0 Akitio +1cf7 Subspace Dynamics +1cfa Corsair Memory, Inc +1d00 Pure Storage +1d05 Tongfang Hongkong Limited +1d0f Amazon.com, Inc. + 8061 NVMe EBS Controller + cd01 NVMe SSD Controller + ec20 Elastic Network Adapter (ENA) + efa0 Elastic Fabric Adapter (EFA) + efa1 Elastic Fabric Adapter (EFA) +1d17 Zhaoxin + 070f ZX-100 PCI Express Root Port + 0710 ZX-100/ZX-200 PCI Express Root Port + 0711 ZX-100/ZX-200 PCI Express Root Port + 0712 ZX-100/ZX-200 PCI Express Root Port + 0713 ZX-100/ZX-200 PCI Express Root Port + 0714 ZX-100/ZX-200 PCI Express Root Port + 0715 ZX-100/ZX-200 PCI Express Root Port + 0716 ZX-D PCI Express Root Port + 0717 ZX-D/ZX-E PCI Express Root Port + 0718 ZX-D/ZX-E PCI Express Root Port + 0719 ZX-D/ZX-E PCI Express Root Port + 071a ZX-D/ZX-E PCI Express Root Port + 071b ZX-D/ZX-E PCI Express Root Port + 071c ZX-D/ZX-E PCI Express Root Port + 071d ZX-D/ZX-E PCI Express Root Port + 071e ZX-D/ZX-E PCI Express Root Port + 071f ZX-200 Upstream Port of PCI Express Switch + 0720 ZX-200 PCIE RC6 controller + 0721 ZX-200 Downstream Port of PCI Express Switch + 0722 ZX-200 PCIE P2C bridge + 1000 ZX-D Standard Host Bridge + 1001 ZX-D/ZX-E Miscellaneous Bus + 1003 ZX-E Standard Host Bridge + 3001 ZX-100 Standard Host Bridge + 300a ZX-100 Miscellaneous Bus + 3038 ZX-100/ZX-200/ZX-E Standard Universal PCI to USB Host Controller + 3104 ZX-100/ZX-200/ZX-E Standard Enhanced PCI to USB Host Controller + 31b0 ZX-100/ZX-D Standard Host Bridge + 31b1 ZX-100/ZX-D Standard Host Bridge + 31b2 ZX-100/ZX-D DRAM Controller + 31b3 ZX-100/ZX-D Power Management Controller + 31b4 ZX-100/ZX-D I/O APIC + 31b5 ZX-100/ZX-D Scratch Device + 31b7 ZX-100/ZX-D/ZX-E Standard Host Bridge + 31b8 ZX-100/ZX-D PCI to PCI Bridge + 3288 ZX-100/ZX-D/ZX-E High Definition Audio Controller + 345b ZX-100/ZX-D/ZX-E Miscellaneous Bus + 3a02 ZX-100 C-320 GPU + 3a03 ZX-D C-860 GPU + 3a04 ZX-E C-960 GPU + 9002 ZX-100/ZX-200 EIDE Controller + 9003 ZX-100/ZX-E EIDE Controller + 9045 ZX-100/ZX-D/ZX-E RAID Accelerator 0 + 9046 ZX-D/ZX-E RAID Accelerator 1 + 9083 ZX-100/ZX-200/ZX-E StorX AHCI Controller + 9084 ZX-100 StorX AHCI Controller + 9100 ZX-200 Cross bus + 9101 ZX-200 Traffic Controller + 9141 ZX-100 High Definition Audio Controller + 9142 ZX-D High Definition Audio Controller + 9144 ZX-E High Definition Audio Controller + 9180 ZX-200 Networking Gigabit Ethernet Adapter + 9202 ZX-100 USB eXtensible Host Controller + 9203 ZX-200 USB eXtensible Host Controller + 9204 ZX-E USB eXtensible Host Controller + 9286 ZX-D eMMC Host Controller + 9300 ZX-D/ZX-E eSPI Host Controller + 95d0 ZX-100 Universal SD Host Controller + f410 ZX-100/ZX-D/ZX-E PCI Com Port +1d18 RME + 0001 Fireface UFX+ +# acquired by Intel +1d1c Barefoot Networks, Inc. + 0001 Tofino 1 + 0010 Tofino 1 + 0100 Tofino 2 + 0110 Tofino 2 +1d1d CNEX Labs + 1f1f QEMU NVM Express LightNVM Controller + 2807 8800 series NVMe SSD +# CEM Solutions Pvt. Ltd. +1d21 Allo +1d22 Baidu Technology + 1380 Cloud Storage Device + 3684 Kunlun AI Accelerator + 3685 Kunlun2 AI Accelerator [VF] +1d26 Kalray Inc. + 0040 Turbocard2 Accelerator + 0080 Open Network Interface Card 80G + 00c0 Turbocard3 Accelerator + 0140 Open Network Interface Card 40G + e004 AB01/EMB01 Development Board +1d37 NovaSparks + 0013 PM3 + 0014 PM4 + 0015 PM4edge + 0016 PM4edge User Device +1d40 Techman Electronics (Changshu) Co., Ltd. +1d44 DPT + a400 PM2x24/PM3224 +1d49 Lenovo +1d4c Diamanti, Inc. +1d5c Fantasia Trading LLC +1d61 Technobox, Inc. +1d62 Nebbiolo Technologies +1d65 Imagine Communications Corp. + 04de Taurus/McKinley +1d69 Celeno Communications + 2432 CL2432 + 2440 CL2440 +1d6a Aquantia Corp. + 0001 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 00b1 AQC100 10G Ethernet MAC controller [AQtion] + 07b1 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] +# Older revision of QNAP QM2 M.2 2280 PCIe SSD & 10GbE Expansion Card + 1baa 07b1 QM2-2P10G1TA [QXG 10GbE Network Adapter] +# Newer revision of QNAP QM2 M.2 2280 PCIe SSD & 10GbE Expansion Card + 1baa 07b2 QM2-2P10G1TA [QM2 Expansion Adapter] + 08b1 AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 11b1 AQC111 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 12b1 AQC112 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 87b1 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 94c0 AQC113CS NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 1043 87f5 ProArt X570-CREATOR WIFI + d107 AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] + 1043 8741 XG-C100C + d108 AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion] +1d6c Atomic Rules LLC + 1001 A5PL-E1 + 1002 A5PL-E7 + 1003 S5PEDS-AB + 1004 KC705-K325 + 1005 ZC706-Z045 + 1006 KCU105-KU040 + 1007 XUSP3S-VU095 [Jasper] + 1008 XUSPL4-VU065 [Mustang UltraScale] + 1009 XUSPL4-VU3P [Mustang UltraScale+] + 100a A10PL4-A10GX115 + 100b K35-2SFP + 100c K35-4SFP + 100d AR-ARKA-FX0 [Arkville 32B DPDK Data Mover] + 1d6c 2001 DPDK-Aware Virtual Function [Arkville VF] + 100e AR-ARKA-FX1 [Arkville 64B DPDK Data Mover] + 1d6c 2001 DPDK-Aware Virtual Function [Arkville VF] + 100f AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Versal] + 1010 AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex] + 1011 AR-MAN-U50 [Manitou Class Accelerator for U50] + 1012 AR-MAN-U200 [Manitou Class Accelerator for U200] + 1013 AR-MAN-U250 [Manitou Class Accelerator for U250] + 1014 AR-MAN-U280 [Manitou Class Accelerator for U280] + 1015 AR-ARK-BBDEV-FX0 [Arkville 32B DPDK Baseband Device] + 1016 AR-ARK-BBDEV-FX1 [Arkville 64B DPDK Baseband Device] + 1017 AR-ARK-FX1 [Arkville 64B Multi-Homed Primary Endpoint] + 1018 AR-ARK-FX1 [Arkville 64B Multi-Homed Secondary Endpoint] + 1019 AR-ARK-FX1 [Arkville 64B Multi-Homed Tertiary Endpoint] + 101a AR-ARK-SRIOV-FX0 [Arkville 32B Primary Physical Function] + 101b AR-ARK-SRIOV-FX1 [Arkville 64B Primary Physical Function] + 101c AR-ARK-SRIOV-VF [Arkville Virtual Function] + 101d AR-ARK-NIC [Arkville ArkNIC Kernel Path Device] + 101e AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex R-Tile] + 101f AR-TK242 [2x100GbE Packet Capture Device] + 4200 A5PL-E1-10GETI [10 GbE Ethernet Traffic Instrument] +1d72 Xiaomi +1d78 DERA Storage + 1512 TAI NVMe Controller + 1d78 2004 D5437 HHHL 2TB NVMe SSD + 1d78 2006 D5437 HHHL 4TB NVMe SSD + 1d78 2008 D5437 HHHL 8TB NVMe SSD + 1d78 2104 D5437 U.2 2TB NVMe SSD + 1d78 2106 D5437 U.2 4TB NVMe SSD + 1d78 2108 D5437 U.2 8TB NVMe SSD + 1d78 3003 D5457 HHHL 1.6TB NVMe SSD + 1d78 3005 D5457 HHHL 3.2TB NVMe SSD + 1d78 3007 D5457 HHHL 6.4TB NVMe SSD + 1d78 3103 D5457 U.2 1.6TB NVMe SSD + 1d78 3105 D5457 U.2 3.2TB NVMe SSD + 1d78 3107 D5457 U.2 6.4TB NVMe SSD +1d7c Aerotech, Inc. +# Fiber-optic HyperWire motion control bus from Aerotech. + 0001 HyperWire Adapter +1d82 NETINT Technologies Inc. + 0101 Codensity D400 SSD + 0102 Codensity D408 PCIe Gen4 NVMe SSD + 0202 Codensity T408 Video Encoding-Decoding Accelerator +# nee Fuzhou Rockchip Electronics Co., Ltd +1d87 Rockchip Electronics Co., Ltd + 0100 RK3399 PCI Express Root Port + 1808 RK1808 Neural Network Processor Card + 3566 RK3568 Remote Signal Processor +1d89 YEESTOR Microelectronics Co., Ltd + 0280 PCIe NVMe SSD +1d8f Enyx +1d92 Abaco Systems Inc. +1d93 YADRO +1d94 Chengdu Haiguang IC Design Co., Ltd. + 1450 Root Complex + 1451 I/O Memory Management Unit + 1452 PCIe Dummy Host Bridge + 1453 PCIE GPP Bridge + 1454 Internal PCIe GPP Bridge 0 to Bus B + 1455 PCIe Dummy Function + 1456 PSPCCP Command DMA Processor + 1458 10 Gb Ethernet Controller Port 0/Port1 + 1459 10 Gb Ethernet Controller Port 2/Port3 + 145a PCIe Dummy Function + 145b PCIE Non-Transparent Bridge + 145c USB3 XHCI + 145d Switch upstream in PCIe + 145e Switch downstream in PCIe + 145f USB 3.0 Host controller + 1460 Data Fabric: Device 18h; Function 0 + 1461 Data Fabric: Device 18h; Function 1 + 1462 Data Fabric: Device 18h; Function 2 + 1463 Data Fabric: Device 18h; Function 3 + 1464 Data Fabric: Device 18h; Function 4 + 1465 Data Fabric: Device 18h; Function 5 + 1466 Data Fabric: Device 18h; Function 6 + 1467 Data Fabric: Device 18h; Function 7 + 1468 NTBCCP + 7901 FCH SATA Controller [AHCI mode] + 7904 FCH SATA Controller [AHCI mode] + 7906 FCH SD Flash Controller + 790b FCH SMBus Controller + 790e FCH LPC Bridge +1d95 Graphcore Ltd + 0001 Colossus GC2 [C2] + 0002 Colossus GC1 [S1] +1d97 Shenzhen Longsys Electronics Co., Ltd. + 2263 SM2263EN/SM2263XT-based OEM SSD +1d9b Facebook, Inc. + 0010 Networking DOM Engine + 0011 IO Bridge +1da1 Teko Telecom S.r.l. +1da2 Sapphire Technology Limited + e26a Radeon R7 250 +1da3 Habana Labs Ltd. + 0001 HL-1000 AI Inference Accelerator [Goya] +# PCIe accelerator card for Deep Learning training tasks + 1000 HL-2000 AI Training Accelerator [Gaudi] +# PCIe accelerator card for Deep Learning training tasks with secured firmware + 1010 HL-2000 AI Training Accelerator [Gaudi secured] +1dad Fungible +1db2 ATP ELECTRONICS INC +1db7 Phytium Technology Co., Ltd. + dc20 [X100 Series] + dc21 VPU Controller [X100 Series] + dc22 DC Controller [X100 Series] + dc23 I2S/DMA Controller [X100 Series] + dc26 SATA Controller [X100 Series] + dc27 USB Controller [X100 Series] + dc29 NANDFLASH Controller [X100 Series] + dc2b I2S Controller [X100 Series] + dc2c SPIM Controller [X100 Series] + dc2d CAN Controller [X100 Series] + dc2e UART Controller [X100 Series] + dc2f PWM Controller [X100 Series] + dc30 MIO Controller [X100 Series] + dc31 GPIO Controller [X100 Series] + dc32 SMBUS Controller [X100 Series] + dc34 PS2 Controller [X100 Series] + dc35 LPC Controller [X100 Series] + dc36 LDMA Controller [X100 Series] + dc38 LSD_CFG Controller [X100 Series] + dc3a SWITCH Controller [X100 Series] + dc3c GPU_DMA Controller [X100 Series] +1dbb NGD Systems, Inc. +1dbf Guizhou Huaxintong Semiconductor Technology Co., Ltd + 0401 StarDragon4800 PCI Express Root Port +1dc5 FADU Inc. +1dcd Liqid Inc. +1dcf Beijing Sinead Technology Co., Ltd. +1dd3 Sage Microelectronics Corp. +1dd8 Pensando Systems + 0002 DSC2 Elba Upstream Port + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1000 DSC Capri Upstream Port + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1001 DSC Virtual Downstream Port + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1002 DSC Ethernet Controller + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1003 DSC Ethernet Controller VF + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1004 DSC Management Controller + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1005 DSC NVMe Controller + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1006 DSC NVMe Controller VF + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1007 DSC Storage Accelerator + 1dd8 4000 Naples 100Gb 2-port QSFP28 x16 8GB + 1dd8 4001 Naples 100Gb 2-port QSFP28 x16 4GB + 1dd8 4002 Naples 25Gb 2-port SFP28 x8 4GB + 1dd8 4007 DSP DSC-25 Ent 10/25G OCP3 Card + 1dd8 4008 DSP DSC-25 10/25G 2p SFP28 Card + 1dd8 400a DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 400c DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 400d DSP DSC-100 Ent 100Gb Card + 1dd8 400e DSC-25 10/25G 2-port 4G RAM 8G eMMC G1 Services Card + 1dd8 4014 DSC-100 40/100G 2-port 8G RAM 16G eMMC G1 Services Card + 1dd8 5001 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card + 1dd8 5003 DSC2-200 50/100/200G 2-port 32G RAM 64G eMMC G2 Services Card +1ddd Thorlabs +1de0 Groq +# rename due to conflict with a term in use by another company for an entirely different product. + 0000 TSP100 Tensor Streaming Processor +1de1 Tekram Technology Co.,Ltd. + 0391 TRM-S1040 [DC-315 / DC-395 series] + 2020 DC-390 Series SCSI Adapter [AMD Am53C974] + 690c 690c + dc29 DC290 +1de5 Eideticom, Inc + 1000 IO Memory Controller + 2000 NoLoad Hardware Development Kit + 3000 eBPF-based PCIe Accelerator +1ded Alibaba (China) Co., Ltd. +# A RDMA (iWarp) device provided by Alibaba Cloud used in ECS environment + 107f Elastic RDMA Adapter + 5007 Elastic RDMA Adapter + 8000 M1 Root Port + 8001 ACC-RCiEP + 8002 RCiEP VF + 8003 RCEC PF + 8004 RCEC VF +1dee Biwin Storage Technology Co., Ltd. +1def Ampere Computing, LLC + e005 eMAG PCI Express Root Port 0 + e006 eMAG PCI Express Root Port 1 + e007 eMAG PCI Express Root Port 2 + e008 eMAG PCI Express Root Port 3 + e009 eMAG PCI Express Root Port 4 + e00a eMAG PCI Express Root Port 5 + e00b eMAG PCI Express Root Port 6 + e00c eMAG PCI Express Root Port 7 +# Root Complex A (RCA) + e100 Altra PCI Express Root Complex A +# RCA port 0 + e101 Altra PCI Express Root Port a0 +# RCA port 1 + e102 Altra PCI Express Root Port a1 +# RCA port 2 + e103 Altra PCI Express Root Port a2 +# RAC port 3 + e104 Altra PCI Express Root Port a3 +# RCA port 4 + e105 Altra PCI Express Root Port a4 +# RCA port 5 + e106 Altra PCI Express Root Port a5 +# RCA port 6 + e107 Altra PCI Express Root Port a6 +# RCA port 7 + e108 Altra PCI Express Root Port a7 +# Root Complex B (RCB) + e110 Altra PCI Express Root Complex B +# RCB port 0 + e111 Altra PCI Express Root Port b0 +# RCB port 1 + e112 Altra PCI Express Root Port b1 +# RCB port 2 + e113 Altra PCI Express Root Port b2 +# RCB port 3 + e114 Altra PCI Express Root Port b3 +# RCB port 4 + e115 Altra PCI Express Root Port b4 +# RCB port 5 + e116 Altra PCI Express Root Port b5 +# RCB port 6 + e117 Altra PCI Express Root Port b6 +# RCB port 7 + e118 Altra PCI Express Root Port b7 +1df3 Ethernity Networks + 0201 ACE-NIC40 Programmable Network Accelerator + 1df3 0001 ENA1040 + 1df3 0002 ENA1044 + 1df3 0003 ENA1044S + 0202 ACE-NIC50 Programmable Network Accelerator + 1df3 0001 ENA2050F + 1df3 0002 ENA2050FS + 0203 ACE-NIC100 Programmable Network Accelerator + 1df3 0000 Maintenance Mode + 1df3 0001 ENA2080F + 1df3 0002 ENA2080FS + 1df3 0003 ENA2100F + 1df3 0004 ENA2040F + 0204 ACE-NIC-NID Programmable Network Accelerator + 1df3 0001 ENA1020Z + 1df3 0002 ENA1020ZS + 0205 ACE-NIC250 Programmable Network Accelerator + 1df3 0000 Maintenance Mode + 1df3 0001 ENA2250F + 0206 ACE-NIC200 Programmable Network Accelerator + 1df3 0000 Maintenance Mode + 1df3 0001 ENA2200F + 0207 ACE-NIC50RN Programmable Network Accelerator + 1df3 0000 Maintenance Mode + 1df3 0001 ENA2050RN + 0208 ACE-NIC100RN Programmable Network Accelerator + 1df3 0000 Maintenance Mode + 1df3 0001 ENA2100RN +1df7 opencpi.org + 0001 ml605 + 0002 alst4 + 0003 alst4x +1dfc JSC NT-COM + 1181 TDM 8 Port E1/T1/J1 Adapter +1e0f KIOXIA Corporation + 0007 NVMe SSD Controller Cx6 + 1028 2078 DC NVMe CD6 RI 960GB + 1028 2079 DC NVMe CD6 RI 1.92TB + 1028 207a DC NVMe CD6 RI 3.84TB + 1028 207b DC NVMe CD6 RI 7.68TB + 1028 207c DC NVMe CD6 RI 15.36TB + 1028 207e Dell Ent NVMe CM6 RI 1.92TB + 1028 207f Dell Ent NVMe CM6 RI 3.84TB + 1028 2080 Dell Ent NVMe CM6 RI 7.68TB + 1028 2081 Dell Ent NVMe CM6 RI 15.36TB + 1028 2084 Dell Ent NVMe CM6 MU 1.6TB + 1028 2085 Dell Ent NVMe CM6 MU 3.2TB + 1028 2086 Dell Ent NVMe CM6 MU 6.4TB + 1028 210a Dell Ent NVMe FIPS CM6 RI 1.92TB + 1028 210b Dell Ent NVMe FIPS CM6 RI 3.84TB + 1028 210c Dell Ent NVMe FIPS CM6 RI 7.68TB + 1028 210d Dell Ent NVMe FIPS CM6 RI15.36TB + 1028 210e Dell Ent NVMe FIPS CM6 MU 1.6TB + 1028 210f Dell Ent NVMe FIPS CM6 MU 3.2TB + 1028 2110 Dell Ent NVMe FIPS CM6 MU 6.4TB + 1e0f 0001 Generic NVMe CM6 + 0009 NVMe SSD + 1e0f 0001 Toshiba RC500 NVMe SSD 500GB + 0011 NVMe SSD Controller CD7 + 1028 2189 DC NVMe SED CD7 RI 960GB + 1028 218a DC NVMe CD7 RI 960GB + 1028 218b DC NVMe SED CD7 RI 1.92TB + 1028 218c DC NVMe CD7 RI 1.92TB + 1028 218d DC NVMe SED CD7 RI 3.84TB + 1028 218e DC NVMe CD7 RI 3.84TB + 1028 218f DC NVMe SED CD7 RI 7.68TB + 1028 2190 DC NVMe CD7 RI 7.68TB + 1028 2191 DC NVMe SED CD7 RI 15.36TB + 1028 2192 DC NVMe CD7 RI 15.36TB +1e17 Arnold & Richter Cine Technik GmbH & Co. Betriebs KG +1e24 Squirrels Research Labs + 0101 Acorn CLE-101 + 0215 Acorn CLE-215 + 021f Acorn CLE-215+ + 1525 Xilinx BCU-1525 +# VU33P FPGA Accelerator + 1533 ForestKitten 33 +# JungleCat VU33P Module + 1633 JCM33 +# JungleCat VU35P Module + 1635 JCM35 +1e26 Fujitsu Client Computing Limited +1e36 Shanghai Enflame Technology Co. Ltd + 0001 T10 [CloudBlazer] + 0002 T11 [CloudBlazer] + 0003 T10(QSFP-DD) [CloudBlazer] + 0021 T20(32GB) [CloudBlazer] + 0022 T20(64GB) [CloudBlazer] + 0023 T21(32GB) [CloudBlazer] + 0024 T21(64GB) [CloudBlazer] + 8001 I20 [CloudBlazer] + 8011 I10 [CloudBlazer] + 8012 I10L [CloudBlazer] +# nee Thinci, Inc +1e38 Blaize, Inc + 0102 Xplorer X1600 +# https://www.medion.com/ +1e39 MEDION AG +1e3b DapuStor Corporation + 0600 NVMe SSD Controller DPU600 + 1e3b 0030 Enterprise NVMe SSD U.2 3.84TB (J5100) + 1e3b 0031 Enterprise NVMe SSD U.2 7.68TB (J5100) + 1e3b 0032 Enterprise NVMe SSD U.2 15.36TB (J5100) + 1e3b 0033 Enterprise NVMe SSD U.2 3.20TB (J5300) + 1e3b 0034 Enterprise NVMe SSD U.2 6.40TB (J5300) + 1e3b 0035 Enterprise NVMe SSD U.2 12.80TB (J5300) + 1e3b 0036 Enterprise NVMe SSD AIC 7.68TB (J5110) + 1e3b 0037 Enterprise NVMe SSD AIC 6.40TB (J5310) + 1e3b 003e Enterprise NVMe SSD AIC 3.84TB (J5110) + 1e3b 003f Enterprise NVMe SSD AIC 3.20TB (J5310) + 1e3b 0050 Enterprise NVMe SSD U.2 3.84TB (R5100) + 1e3b 0051 Enterprise NVMe SSD U.2 7.68TB (R5100) + 1e3b 0052 Enterprise NVMe SSD U.2 15.36TB (R5100) + 1e3b 0053 Enterprise NVMe SSD U.2 3.20TB (R5300) + 1e3b 0054 Enterprise NVMe SSD U.2 6.40TB (R5300) + 1e3b 0055 Enterprise NVMe SSD U.2 12.80TB (R5300) + 1e3b 0056 Enterprise NVMe SSD U.2 3.84TB (R5101) + 1e3b 0059 Enterprise NVMe SSD U.2 3.20TB (R5301) + 1e3b 0060 Enterprise NVMe SSD U.2 3.84TB (R5100D) + 1e3b 0061 Enterprise NVMe SSD U.2 7.68TB (R5100D) + 1e3b 0063 Enterprise NVMe SSD U.2 3.20TB (R5300D) + 1e3b 0064 Enterprise NVMe SSD U.2 6.40TB (R5300D) + 1e3b 00f0 Enterprise NVMe SSD U.2 0.40TB (X2900) + 1e3b 00f1 Enterprise NVMe SSD U.2 0.80TB (X2900) + 1e3b 00f2 Enterprise NVMe SSD U.2 1.60TB (X2900) + 1e3b 00f3 Enterprise NVMe SSD U.2 3.20TB (X2900) + 1e3b 00f5 Enterprise NVMe SSD U.2 0.40TB (X2900P) + 1e3b 00f6 Enterprise NVMe SSD U.2 0.80TB (X2900P) + 1098 Haishen NVMe SSD + 1e3b 0001 Enterprise NVMe SSD U.2 0.8TB (H2100) + 1e3b 0002 Enterprise NVMe SSD U.2 0.96TB (H2200) + 1e3b 0004 Enterprise NVMe SSD U.2 1.6TB (H2100) + 1e3b 0005 Enterprise NVMe SSD U.2 1.92TB (H2200) + 1e3b 0009 Enterprise NVMe SSD U.2 0.8TB (H3100) + 1e3b 000a Enterprise NVMe SSD U.2 0.96TB (H3200) + 1e3b 000c Enterprise NVMe SSD U.2 1.6TB (H3100) + 1e3b 000d Enterprise NVMe SSD U.2 1.92TB (H3200) + 1e3b 0014 Enterprise NVMe SSD U.2 3.2TB (H3100) + 1e3b 0015 Enterprise NVMe SSD U.2 3.84TB (H3200) + 1e3b 0021 Enterprise NVMe SSD U.2 6.4TB (H3100) + 1e3b 0022 Enterprise NVMe SSD U.2 7.68TB (H3200) + 1e3b 0052 Enterprise NVMe SSD U.2 0.8TB (H3900) + 1e3b 0053 Enterprise NVMe SSD U.2 1.6TB (H3900) + 1e3b 0059 Enterprise NVMe SSD U.2 0.75TB (H3900) + 1e3b 0061 Enterprise NVMe SSD HHHL 0.8TB (H2100) + 1e3b 0062 Enterprise NVMe SSD HHHL 0.96TB (H2200) + 1e3b 0064 Enterprise NVMe SSD HHHL 1.6TB (H2100) + 1e3b 0065 Enterprise NVMe SSD HHHL 1.92TB (H2200) + 1e3b 006c Enterprise NVMe SSD HHHL 0.8TB (H3100) + 1e3b 006d Enterprise NVMe SSD HHHL 0.96TB (H3200) + 1e3b 006f Enterprise NVMe SSD HHHL 1.6TB (H3100) + 1e3b 0070 Enterprise NVMe SSD HHHL 1.92TB (H3200) + 1e3b 007c Enterprise NVMe SSD HHHL 3.2TB (H3100) + 1e3b 007d Enterprise NVMe SSD HHHL 3.84TB (H3200) + 1e3b 007f Enterprise NVMe SSD HHHL 6.4TB (H3100) + 1e3b 0080 Enterprise NVMe SSD HHHL 7.68TB (H3200) + 1e3b 008a Enterprise NVMe SSD HHHL 0.8TB (H3900) + 1e3b 008b Enterprise NVMe SSD HHHL 1.6TB (H3900) + 1e3b 0091 Enterprise NVMe SSD HHHL 0.75TB (H3900) +1e3d Burlywood, Inc +1e49 Yangtze Memory Technologies Co.,Ltd + 0041 ZHITAI TiPro7000 +# YMTC PCIe/NVMe SSD + 1013 PC210 +1e4b MAXIO Technology (Hangzhou) Ltd. + 1001 NVMe SSD Controller MAP1001 + 1002 NVMe SSD Controller MAP1002 + 1003 NVMe SSD Controller MAP1003 + 1201 NVMe SSD Controller MAP1201 + 1202 NVMe SSD Controller MAP1202 + 1601 NVMe SSD Controller MAP1601 +1e4c GSI Technology +# Associative Processing Unit (APU) + 0010 APU [Leda] + 1e4c 0120 SE120 +1e57 Beijing Panyi Technology Co., Ltd + 0100 The device has already been deleted. + 0000 0100 PY8800 64GB Accelerator +1e59 Oxford Nanopore Technologies + 0001 MinION Mk1C +1e5d ASR Microelectronics + 7000 AI controller A7000 + 7010 AI controller A7010 +1e60 Hailo Technologies Ltd. + 2864 Hailo-8 AI Processor +1e68 Jiangsu Xinsheng Intelligent Technology Co., Ltd +1e6b Axiado Corp. +1e7b Dataland +1e7c Brainchip Inc + bca1 AKD1000 Neural Network Coprocessor [Akida] +1e81 Ramaxel Technology(Shenzhen) Limited + 1203 NVMe SSD Controller UHXXXa series + 1e81 a121 NVMe SSD UHXXXa series U.2 960GB + 1e81 a122 NVMe SSD UHXXXa series U.2 1920GB + 1e81 a123 NVMe SSD UHXXXa series U.2 3840GB  + 1e81 a124 NVMe SSD UHXXXa series U.2 7680GB  + 1e81 a125 NVMe SSD UHXXXa series U.2 15360GB + 1e81 a211 NVMe SSD UHXXXa series U.2 800GB  + 1e81 a212 NVMe SSD UHXXXa series U.2 1600GB  + 1e81 a213 NVMe SSD UHXXXa series U.2 3200GB  + 1e81 a214 NVMe SSD UHXXXa series U.2 6400GB  +1e85 Heitec AG +1e89 ID Quantique SA + 0002 Quantis-PCIe-40M + 0003 Quantis-PCIe-240M +# aka SED Systems +1e94 Calian SED +1e95 Solid State Storage Technology Corporation + 1002 NVMe Datacenter LJ1 SSD [3DNAND, Rainier Controller] + 1ea0 5636 TP1500 Series U.2 NVMe Datacenter SSD +1e9f Lynxi Technologies Co., Ltd. +1ea0 Tencent Technology (Shenzhen) Company Limited + 2a16 Cloud Intelligent Inference Controller + 2a18 Video Transcode Controller +1ea7 Intelliprop, Inc + 223a Typhon+ PCIe to Gen-Z Bridge + 224a IPA-PE224A CXL to Gen-Z Bridge [Sphinx] +1eab Hefei DATANG Storage Technology Co.,LTD. + 300a NVMe SSD Controller 300A + 300b NVMe SSD Controller 300B +1eac Quectel Wireless Solutions Co., Ltd. + 1001 EM120R-GL LTE Modem + 1002 EM160R-GL LTE Modem +1eae XFX Limited +1eb1 VeriSilicon Inc + 1001 Video Accelerator +1eb4 Quantum Nebula Microelectronics Technology Co.,Ltd. + 3401 SSD Contoller +1ebd EMERGETECH Company Ltd. + 0101 Seirios 2063 Video Codec +1ed2 FuriosaAI, Inc. + 0000 Warboy +1ed3 Yeston +1ed5 Moore Threads Technology Co.,Ltd + 0100 MTT S10 + 0101 MTT S10 + 0102 MTT S30 + 0105 MTT S50 + 0106 MTT S60 + 0111 MTT S100 + 0121 MTT S1000M + 0122 MTT S1000 + 0123 MTT S2000 +1ed8 Digiteq Automotive + 0101 FG4 PCIe Frame Grabber +1ed9 Myrtle.ai +1ee9 SUSE LLC +1eec Viscore Technologies Ltd + 0102 VSE250231S Dual-port 10Gb/25Gb Ethernet PCIe + 1eec VSE250231S Dual-port 10Gb/25Gb Ethernet PCIe +1eed Xiangdixian Computing Technology (Chongqing) Ltd. + 0100 XDX P100 VGA controller + 0101 XDX P101 High Definition Audio Controller +1efb Flexxon Pte Ltd +1f02 Beijing Dayu Technology +1f03 Shenzhen Shichuangyi Electronics Co., Ltd + 1202 MAP1202-Based NVMe SSD + 2262 SM2262EN-based OEM SSD + 2263 SM2263XT-Base NVMe SSD + 5216 IG5216-based NVMe SSD + 5220 IG5220-Based NVMe SSD + 5236 IG5236-Based NVMe SSD + 5636 IG5636-Based NVMe SSD +1f2f China Mobile (Hangzhou) Information Technology Co.Ltd. + 1513 DERA MENG NVMe Controller + 1f2f 6113 KM660 U.2 1.6TB NVMe SSD + 1f2f 6114 KM560 U.2 1.92TB NVMe SSD + 1f2f 6115 KM660 U.2 3.2TB NVMe SSD + 1f2f 6116 KM560 U.2 3.84TB NVMe SSD + 1f2f 6118 KM560 U.2 7.68TB NVMe SSD +1fab Unifabrix Ltd. + 0000 Nexus Alpha IVPU +# nee Tumsan Oy +1fc0 Ascom (Finland) Oy + 0300 E2200 Dual E1/Rawpipe Card + 0301 C5400 SHDSL/E1 Card +# nee PathScale, Inc +1fc1 QLogic, Corp. + 000d IBA6110 InfiniBand HCA + 0010 IBA6120 InfiniBand HCA +1fc9 Tehuti Networks Ltd. + 3009 10-Giga TOE SmartNIC + 3010 10-Giga TOE SmartNIC + 0000 3002 10-Giga TOE Single Port XFP SmartNIC + 0000 3004 10-Giga TOE Single Port SFP+ SmartNIC + 0000 3008 10-Giga TOE Single Port CX4 SmartNIC + 3014 10-Giga TOE SmartNIC 2-Port + 0000 3003 10-Giga TOE Dual Port XFP Low Profile SmartNIC + 0000 3005 10-Giga TOE Dual Port SFP+ Low Profile SmartNIC + 0000 3014 10-Giga TOE Dual Port CX4 Low Profile SmartNIC + 3110 10-Giga TOE Single Port SmartNIC + 0000 3004 10-Giga TOE Single Port SFP+ SmartNIC + 3114 10-Giga TOE Dual Port Low Profile SmartNIC + 0000 3005 10-Giga TOE Dual Port SFP+ Low Profile SmartNIC + 0000 3011 10-Giga TOE Dual Port SFP+/CX4 Low Profile SmartNIC + 0000 3012 10-Giga TOE Dual Port CX4/SFP+ Low Profile SmartNIC + 0000 3014 10-Giga TOE Dual Port CX4 Low Profile SmartNIC + 3310 10-Giga TOE SFP+ Single Port SmartNIC + 0000 3004 10-Giga TOE Single Port SFP+ SmartNIC + 3314 10-Giga TOE Dual Port Low Profile SmartNIC + 0000 3005 10-Giga TOE Dual Port SFP+ Low Profile SmartNIC + 0000 3011 10-Giga TOE Dual Port SFP+/CX4 Low Profile SmartNIC + 0000 3012 10-Giga TOE Dual Port CX4/SFP+ Low Profile SmartNIC + 0000 3014 10-Giga TOE Dual Port CX4 Low Profile SmartNIC + 4010 TN4010 Clean SROM + 4020 TN9030 10GbE CX4 Ethernet Adapter + 180c 2040 Mustang-200 10GbE Ethernet Adapter + 4022 TN9310 10GbE SFP+ Ethernet Adapter + 1043 8709 XG-C100F 10GbE SFP+ Ethernet Adapter + 1186 4d00 DXE-810S 10GbE SFP+ Ethernet Adapter + 1432 8103 10 Gigabit Ethernet SFP+ PCI Express Adapter + 1fc9 3015 Ethernet Adapter + 4024 TN9210 10GBase-T Ethernet Adapter + 4025 TN9510 10GBase-T/NBASE-T Ethernet Adapter + 105a 7203 SANLink3 NBase-T1 + 1186 2900 DXE-810T 10GBase-T Ethernet Adapter + 1432 8102 10 Gigabit Ethernet PCI Express Adapter + 1fc9 3015 Ethernet Adapter + 4026 TN9610 10GbE SFP+ Ethernet Adapter + 4c52 1000 LREC6860AF 10 Gigabit Ethernet Adapter + 4027 TN9710P 10GBase-T/NBASE-T Ethernet Adapter + 1154 0368 LGY-PCIE-MG + 1432 8104 10 Gigabit Ethernet PCI Express Adapter + 1546 4027 GE10-PCIE4XG202P 10Gbase-T/NBASE-T Ethernet Adapter + 1baa 3310 PCIe Expansion Card + 1fc9 3015 Ethernet Adapter + 4c52 1001 LREC6860BT 10 Gigabit Ethernet Adapter + 4527 TN9710Q 5GBase-T/NBASE-T Ethernet Adapter +1fcc StreamLabs + f416 MS416 + fb01 MH4LM +1fce Cognio Inc. + 0001 Spectrum Analyzer PC Card (SAgE) +1fd4 SUNIX Co., Ltd. + 0001 Matrix multiport serial adapter + 1999 Multiport serial controller +2000 Smart Link Ltd. + 2800 SmartPCI2800 V.92 PCI Soft DFT +2001 Temporal Research Ltd +2003 Smart Link Ltd. + 8800 LM-I56N +2004 Smart Link Ltd. +2048 Beijing SpaceControl Technology Co.Ltd +20f4 TRENDnet +2116 ZyDAS Technology Corp. +21b4 Hunan Goke Microelectronics Co., Ltd +21c3 21st Century Computer Corp. +22b8 Flex-Logix Technologies + 22a0 Flex Logix InferX X1 Inference Accelerator +22db Missing Link Electronics, Inc. +2304 Colorgraphic Communications Corp. +2348 Racore + 2010 8142 100VG/AnyLAN +2646 Kingston Technology Company, Inc. + 0010 HyperX Predator PCIe AHCI SSD + 2262 KC2000 NVMe SSD + 2263 A2000 NVMe SSD + 5008 U-SNS8154P3 NVMe SSD + 500d OM3PDP3 NVMe SSD + 500e SNVS2000G [NV1 NVMe PCIe SSD 2TB] +270b Xantel Corporation +270f Chaintech Computer Co. Ltd +2711 AVID Technology Inc. +2955 Connectix Virtual PC + 6e61 OHCI USB 1.1 controller +2a15 3D Vision(???) +2a18 Video Transcode Controller +2bd8 ROPEX Industrie-Elektronik GmbH +3000 Hansol Electronics Inc. +3112 Satelco Ingenieria S.A. +3130 AUDIOTRAK +3142 Post Impression Systems. +31ab Zonet + 1faa ZEW1602 802.11b/g Wireless Adapter +3388 Hint Corp + 0013 HiNT HC4 PCI to ISDN bridge, Multimedia audio controller + 0014 HiNT HC4 PCI to ISDN bridge, Network controller + 0020 HB6 Universal PCI-PCI bridge (transparent mode) + 0021 HB6 Universal PCI-PCI bridge (non-transparent mode) + 1775 c200 C2K CompactPCI interface bridge + 1775 ce90 CE9 + 4c53 1050 CT7 mainboard + 4c53 1080 CT8 mainboard + 4c53 1090 Cx9 mainboard + 4c53 10a0 CA3/CR3 mainboard + 4c53 3010 PPCI mezzanine (32-bit PMC) + 4c53 3011 PPCI mezzanine (64-bit PMC) + 4c53 4000 PMCCARR1 carrier board + 0022 HiNT HB4 PCI-PCI Bridge (PCI6150) + 0026 HB2 PCI-PCI Bridge + 1014 AudioTrak Maya + 1018 Audiotrak INCA88 + 1019 Miditrak 2120 + 101a E.Band [AudioTrak Inca88] + 101b E.Band [AudioTrak Inca88] + 8011 VXPro II Chipset + 3388 8011 VXPro II Chipset CPU to PCI Bridge + 8012 VXPro II Chipset + 3388 8012 VXPro II Chipset PCI to ISA Bridge + 8013 VXPro II IDE + 3388 8013 VXPro II Chipset EIDE Controller + a103 Blackmagic Design DeckLink HD Pro +3411 Quantum Designs (H.K.) Inc +3442 Bihl+Wiedemann GmbH + 1783 AS-i 3.0 cPCI Master + 1922 AS-i 3.0 PCI Master +3475 Arista Networks, Inc. +34ba Ice Lake-LP PCI Express Root Port #3 +3513 ARCOM Control Systems Ltd +37d9 ITD Firm ltd. + 1138 SCHD-PH-8 Phase detector +# 12-ch Relay Actuator Card + 1140 VR-12-PCI +# multiport serial board + 1141 PCI-485(422) + 1142 PCI-CAN2 +3842 eVga.com. Corp. +38ef 4Links +3d3d 3DLabs + 0001 GLINT 300SX + 0002 GLINT 500TX + 0000 0000 GLoria L + 0003 GLINT Delta + 0000 0000 GLoria XL + 0004 Permedia + 0005 Permedia + 0006 GLINT MX + 0000 0000 GLoria XL + 1048 0a42 GLoria XXL + 0007 3D Extreme + 0008 GLINT Gamma G1 + 1048 0a42 GLoria XXL + 0009 Permedia II 2D+3D + 1040 0011 AccelStar II + 1048 0a42 GLoria XXL + 13e9 1000 6221L-4U + 3d3d 0100 AccelStar II 3D Accelerator + 3d3d 0111 Permedia 3:16 + 3d3d 0114 Santa Ana + 3d3d 0116 Oxygen GVX1 + 3d3d 0119 Scirocco + 3d3d 0120 Santa Ana PCL + 3d3d 0125 Oxygen VX1 + 3d3d 0127 Permedia3 Create! + 000a GLINT R3 + 3d3d 0121 Oxygen VX1 + 000c GLINT R3 [Oxygen VX1] + 3d3d 0144 Oxygen VX1-4X AGP [Permedia 4] + 000d GLint R4 rev A + 000e GLINT Gamma G2 + 0011 GLint R4 rev B + 0012 GLint R5 rev A + 0013 GLint R5 rev B + 0020 VP10 visual processor + 0022 VP10 visual processor + 0024 VP9 visual processor + 002c Wildcat Realizm 100/200 + 0030 Wildcat Realizm 800 + 0032 Wildcat Realizm 500 + 0100 Permedia II 2D+3D + 07a1 Wildcat III 6210 + 07a2 Sun XVR-500 Graphics Accelerator + 3d3d 1047 Sun XVR-600 Graphics Accelerator + 07a3 Wildcat IV 7210 + 1004 Permedia + 3d04 Permedia + ffff Glint VGA +4005 Avance Logic Inc. + 0300 ALS300 PCI Audio Device + 0308 ALS300+ PCI Audio Device + 0309 PCI Input Controller + 1064 ALG-2064 + 2064 ALG-2064i + 2128 ALG-2364A GUI Accelerator + 2301 ALG-2301 + 2302 ALG-2302 + 2303 AVG-2302 GUI Accelerator + 2364 ALG-2364A + 2464 ALG-2464 + 2501 ALG-2564A/25128A + 4000 ALS4000 Audio Chipset + 4005 4000 ALS4000 Audio Chipset + 4710 ALC200/200P +4033 Addtron Technology Co, Inc. + 1360 RTL8139 Ethernet +4040 NetXen Incorporated + 0001 NXB-10GXSR 10-Gigabit Ethernet PCIe Adapter with SR-XFP optical interface + 103c 7047 NC510F PCIe 10-Gigabit Server Adapter + 0002 NXB-10GCX4 10-Gigabit Ethernet PCIe Adapter with CX4 copper interface + 103c 7048 NC510c PCIe 10-Gigabit Server Adapter + 0003 NXB-4GCU Quad Gigabit Ethernet PCIe Adapter with 1000-BASE-T interface + 0004 BladeCenter-H 10-Gigabit Ethernet High Speed Daughter Card + 0005 NetXen Dual Port 10GbE Multifunction Adapter for c-Class + 103c 170e NC512m Dual Port 10GbE Multifunction BL-C Adapter + 0024 XG Mgmt + 0025 XG Mgmt + 0100 NX3031 Multifunction 1/10-Gigabit Server Adapter + 103c 171b NC522m Dual Port 10GbE Multifunction BL-c Adapter + 103c 1740 NC375T PCI Express Quad Port Gigabit Server Adapter + 103c 3251 NC375i 1G w/NC524SFP 10G Module + 103c 705a NC375i Integrated Quad Port Multifunction Gigabit Server Adapter + 103c 705b NC522SFP Dual Port 10GbE Server Adapter + 152d 896b TG20 Dual Port 10GbE Server/Storage Adapter + 4040 0124 NX3031 Quad Port Gigabit Server Adapter + 4040 0126 Dual Port SFP+ 10GbE Server Adapter +4143 Digital Equipment Corp +4144 Alpha Data + 0044 ADM-XRCIIPro +4150 ONA Electroerosion + 0001 PCI32TLITE FILSTRUP1 PCI to VME Bridge Controller + 0006 PCI32TLITE UART 16550 Opencores + 0007 PCI32TLITE CAN Controller Opencores +415a Auzentech, Inc. +416c Aladdin Knowledge Systems + 0100 AladdinCARD + 0200 CPC +4242 Universall Answer Generators +4254 DVBSky +4321 Tata Power Strategic Electronics Division +4348 WCH.CN + 2273 CH351 PCI Dual Serial Port Controller + 3253 CH352 PCI Dual Serial Port Controller + 3453 CH353 PCI Quad Serial Port Controller + 5053 CH352 PCI Serial and Parallel Port Controller + 7053 CH353 PCI Dual Serial and Parallel Ports Controller + 7073 CH356 PCI Quad Serial and Parallel Ports Controller + 7173 CH355 PCI Quad Serial Port Controller +434e Cornelis Networks +4444 Internext Compression Inc + 0016 iTVC16 (CX23416) Video Decoder + 0070 0003 WinTV PVR 250 + 0070 0009 WinTV PVR 150 + 0070 0801 WinTV PVR 150 + 0070 0807 WinTV PVR 150 + 0070 4001 WinTV PVR 250 + 0070 4009 WinTV PVR 250 + 0070 4801 WinTV PVR 250 + 0070 4803 WinTV PVR 250 + 0070 8003 WinTV PVR 150 + 0070 8801 WinTV PVR 150 + 0070 c801 WinTV PVR 150 + 0070 e807 WinTV PVR 500 (1st unit) + 0070 e817 WinTV PVR 500 (2nd unit) + 0070 ff92 WiNTV PVR-550 + 0270 0801 WinTV PVR 150 + 104d 013d ENX-26 TV Encoder + 10fc d038 GV-MVP/RX2W (1st unit) + 10fc d039 GV-MVP/RX2W (2nd unit) + 12ab fff3 MPG600 + 12ab ffff MPG600 + 1461 c00a M113 PCI Analog TV (PAL/SECAM, Philips FQ1216MK3 tuner) + 1461 c00b M113 PCI Analog TV (PAL/SECAM+FM, Philips FM1216MK3 tuner) + 1461 c00c M113 PCI Analog TV (NTSC, JAPAN version, Philips FI1286MK2 tuner) + 1461 c010 M113 PCI Analog TV (NTSC, Philips FI1236MK3 tuner) + 1461 c011 M113 PCI Analog TV (NTSC+FM, Philips FM1236MK3 tuner) + 1461 c018 M113 PCI Analog TV (NTSC, Philips FQ1236MK5 tuner) + 1461 c019 UltraTV 1500 MCE, a.k.a. M113 PCI Analog TV (NTSC+FM, Philips FQ1236MK5 tuner) + 1461 c01a M113 PCI Analog TV (PAL/SECAM, Philips FQ1216MK5 tuner) + 1461 c01b M113 PCI Analog TV (PAL/SECAM+FM, Philips FM1216MK5 tuner) + 1461 c030 M113 PCI Analog TV (NTSC-J, Partsnic tuner) + 1461 c031 M113 PCI Analog TV (NTSC-J+FM, Partsnic tuner) + 1461 c032 M113 PCI Analog TV (PAL/SECAM, Partsnic tuner) + 1461 c033 M113 PCI Analog TV (PAL/SECAM+FM, Partsnic tuner) + 1461 c034 M113 PCI Analog TV (NTSC, Partsnic tuner) + 1461 c035 M113 PCI Analog TV (NTSC+FM, Partsnic tuner) + 1461 c03f C115 PCI video capture card (no tuner) + 1461 c136 M104 mini-PCI Analog TV + 1461 c20a M755 AVerTV Video Capture (PAL/SECAM, Philips FQ1216MK3 tuner) + 1461 c218 M755 AVerTV Video Capture (NTSC, Philips FQ1236MK5 tuner) + 1461 c219 M755 AVerTV Video Capture (NTSC+FM, Philips FQ1236MK5 tuner) + 1461 c21a M755 AVerTV Video Capture (PAL/SECAM, Philips FQ1216MK5 tuner) + 1461 c21b M755 AVerTV Video Capture (PAL/SECAM+FM, Philips FM1216MK5 tuner) + 1461 c230 M755 AVerTV Video Capture (NTSC-J, Partsnic tuner) + 1461 c231 M755 AVerTV Video Capture (NTSC-J+FM, Partsnic tuner) + 1461 c232 M755 AVerTV Video Capture (PAL/SECAM, Partsnic tuner) + 1461 c233 M755 AVerTV Video Capture (PAL/SECAM+FM, Partsnic tuner) + 1461 c234 M755 AVerTV Video Capture (NTSC, Partsnic tuner) + 1461 c235 M755 AVerTV Video Capture (NTSC+FM, Partsnic tuner) + 1461 c337 E106 AVerMedia AVerTV Video Capture + 1461 c439 M116 AVerMedia AVerTV MCE 116 Plus (NTSC/PAL/SECAM+FM+REMOTE, Xceive 2028 tuner) + 1461 c5ff C755 AVerTV Video Capture card (no tuner) + 1461 c6ff C115 PCI video capture card (no tuner) + 1461 c739 M785 AVerMedia PCI Analog TV (NTSC/PAL/SECAM+FM, Xceive 2028 tuner) + 9005 0092 VideOh! AVC-2010 + 9005 0093 VideOh! AVC-2410 + 0803 iTVC15 (CX23415) Video Decoder + 0070 4000 WinTV PVR-350 + 0070 4001 WinTV PVR-250 + 0070 4800 WinTV PVR-350 (V1) + 12ab 0000 MPG160 + 1461 a3ce M179 + 1461 a3cf M179 +4468 Bridgeport machines +4594 Cogetec Informatique Inc +45fb Baldor Electric Company +4624 Budker Institute of Nuclear Physics + adc1 ADC200ME High speed ADC + de01 DL200ME High resolution delay line PCI based card + de02 DL200ME Middle resolution delay line PCI based card +# Can't find any information on this company +4651 TXIC +4680 Umax Computer Corp +4843 Hercules Computer Technology Inc +4916 RedCreek Communications Inc + 1960 RedCreek PCI adapter +4943 Growth Networks +494f ACCES I/O Products, Inc. + 0508 PCI-IDO-16A FET Output Card + 0518 PCI-IDO-32A FET Output Card + 0520 PCI-IDO-48 FET Output Card + 0521 PCI-IDO-48A FET Output Card + 0703 PCIe-RO-4 Electromechanical Relay Output Card + 07d0 PCIe-IDO-24 FET Output Card + 0920 PCI-IDI-48 Isolated Digital Input Card + 0bd0 PCIe-IDI-24 Isolated Digital Input Card + 0c50 PCI-DIO-24H 1x 8255 Digital Input / Output Card + 0c51 PCI-DIO-24D 1x 8255 Digital Input / Output Card + 0c52 PCIe-DIO-24 1x 8255 Digital Input / Output Card + 0c53 PCIe-DIO-24H 8255 Digital Input / Output Card + 0c57 mPCIe-DIO-24 8255 Digital Input / Output Card + 0c60 PCI-DIO-48H 8255 Digital Input / Output Card + 0c61 PCIe-DIO-48 8255 Digital Input / Output Card + 0c62 P104-DIO-48 8255 Digital Input / Output Card + 0c68 PCI-DIO-72 8255 Digital Input / Output Card + 0c69 P104-DIO-96 8255 Digital Input / Output Card + 0c70 PCI-DIO-96 8255 Digital Input / Output Card + 0c78 PCI-DIO-120 8255 Digital Input / Output Card + 0dc8 PCI-IDIO-16 Isolated Digital Input / FET Output Card + 0e50 PCI-DIO-24S 8255 Digital Input / Output Card + 0e51 PCI-DIO-24H(C) 8255 Digital Input / Output Card + 0e52 PCI-DIO-24D(C) 8255 Digital Input / Output Card + 0e53 PCIe-DIO-24S 8255 Digital Input / Output Card + 0e54 PCIe-DIO-24HS 8255 Digital Input / Output Card + 0e55 PCIe-DIO-24DC 8255 Digital Input / Output Card + 0e56 PCIe-DIO-24DCS 8255 Digital Input / Output Card + 0e57 mPCIe-DIO-24S 8255 Digital Input / Output Card + 0e60 PCI-DIO-48S 2x 8255 Digital Input / Output Card + 0e61 PCIe-DIO-48S 2x 8255 Digital Input / Output Card + 0e62 P104-DIO-48S 2x 8255 Digital Input / Output Card + 0f00 PCI-IIRO-8 Isolated Digital / Relay Output Card + 0f01 LPCI-IIRO-8 Isolated Digital / Relay Output Card + 0f02 PCIe-IIRO-8 Isolated Digital / Relay Output Card + 0f08 PCI-IIRO-16 Isolated Digital / Relay Output Card + 0f09 PCIe-IIRO-16 Isolated Digital / Relay Output Card + 0fc0 PCIe-IDIO-12 Isolated Digital Input / FET Output Card + 0fc1 PCIe-IDI-12 Isolated Digital Input Card + 0fc2 PCIe-IDO-12 FET Output Card + 0fd0 PCIe-IDIO-24 Isolated Digital Input / FET Output Card + 1050 PCI-422/485-2 2x RS422/RS484 Card + 1051 PCIe-COM-2SRJ 2x RS422/RS484 Card w/RJ45 Connectors + 1052 104I-COM-2S 2x RS422/RS484 PCI/104 Board + 1053 mPCIe-COM-2S 2x RS422/RS484 PCI Express Mini Card + 1058 PCI-COM422/4 4x RS422 Card + 1059 PCI-COM485/4 4x RS485 Card + 105a PCIe-COM422-4 4x RS422 Card + 105b PCIe-COM485-4 4x RS485 Card + 105c PCIe-COM-4SRJ 4x RS422/RS485 Card w/RJ45 Connectors + 105d 104I-COM-4S 4x RS422/RS484 PCI/104 Board + 105e mPCIe-COM-4S 4x RS422/RS484 PCI Express Mini Card + 1068 PCI-COM422/8 8x RS422 Card + 1069 PCI-COM485/8 8x RS485 Card + 106a PCIe-COM422-8 8x RS422 Card + 106b PCIe-COM485-8 8x RS485 Card + 106c 104I-COM-8S 8x RS422/RS485 PCI/104 Board + 1088 PCI-COM232/1 1x RS232 Card + 1090 PCI-COM232/2 2x RS232 Card + 1091 PCIe-COM232-2RJ 2x RS232 Card w/RJ45 Connectors + 1093 mPCIe-COM232-2 2x RS232 PCI Express Mini Card + 1098 PCIe-COM232-4 4x RS232 Card + 1099 PCIe-COM232-4RJ 4x RS232 Card w/RJ45 Connectors + 109b mPCIe-COM232-4 4x RS232 PCI Express Mini Card + 10a8 P104-COM232-8 8x RS232 PC-104+ Board + 10a9 PCIe-COM232-8 8x RS232 Card + 10c9 PCI-COM-1S 1x RS422/RS485 Card + 10d0 PCI-COM2S 2x RS422/RS485 Card + 10d1 PCIe-COM-2SMRJ 2x RS232/RS422/RS485 Card w/RJ45 Connectors + 10d2 104I-COM-2SM 2x RS232/RS422/RS485 PCI/104 Board + 10d3 mPCIe-COM-2SM 2x RS232/RS422/RS485 PCI Express Mini Card + 10d8 PCI-COM-4SM 4x RS232/RS422/RS485 Card + 10d9 PCIe-COM-4SM 4x RS232/RS422/RS485 Card + 10da PCIe-COM-4SMRJ 4x RS232/RS422/RS485 Card w/RJ45 Connectors + 10db 104I-COM-4SM 4x RS232/RS422/RS485 PCI/104 Board + 10dc mPCIe-COM-4SM 4x RS232/RS422/RS485 PCI Express Mini Card + 10e8 PCI-COM-8SM 8x RS232/RS422/RS485 Card + 10e9 PCIe-COM-8SM 8x RS232/RS422/RS485 Card + 10ea 104I-COM-8SM 8x RS232/RS422/RS485 PCI-104 Board + 1108 mPCIe-ICM485-1 1x Isolated RS485 PCI Express Mini Card + 1110 mPCIe-ICM422-2 2x Isolated RS422 PCI Express Mini Card + 1111 mPCIe-ICM485-2 2x Isolated RS485 PCI Express Mini Card + 1118 mPCIe-ICM422-4 4x Isolated RS422 PCI Express Mini Card + 1119 mPCIe-ICM485-4 4x Isolated RS485 PCI Express Mini Card + 1148 PCI-ICM-1S 1x Isolated RS422/RS485 Card + 1150 PCI-ICM-2S 2x Isolated RS422/RS485 Card + 1152 PCIe-ICM-2S 2x Isolated RS422/RS485 Card + 1158 PCI-ICM422/4 4x Isolated RS422 Card + 1159 PCI-ICM485/4 4x Isolated RS485 Card + 115a PCIe-ICM-4S 4x Isolated RS422/RS485 Card + 1190 PCIe-ICM232-2 2x Isolated RS232 Card + 1191 mPCIe-ICM232-2 2x Isolated RS232 PCI Express Mini Card + 1198 PCIe-ICM232-4 4x Isolated RS232 Card + 1199 mPCIe-ICM232-4 4x Isolated RS422 PCI Express Mini Card + 11d0 PCIe-ICM-2SM 2x Isolated RS232/RS422/RS485 Card + 11d8 PCIe-ICM-4SM 4x Isolated RS232/RS422/RS485 Card + 1250 PCI-WDG-2S Watchdog and 2x Serial Card + 12d0 PCI-WDG-IMPAC + 2230 PCI-QUAD-8 8x Quadrature Input Card + 2231 PCI-QUAD-4 4x Quadrature Input Card + 22c0 PCI-WDG-CSM Watchdog Card + 25c0 P104-WDG-E Watchdog PC/104+ Board + 2c50 PCI-DIO-96CT 96x Digital Input / Output Card + 2c58 PCI-DIO-96C3 96x Digital Input / Output Card w/3x 8254 Counter Card + 2ee0 PCIe-DIO24S-CTR12 24x Digital Input / Output Card w/4x 8254 Counter Card + 2fc0 P104-WDG-CSM Watchdog PC/104+ Board + 2fc1 P104-WDG-CSMA Advanced Watchdog PC/104+ Board + 5ed0 PCI-DAC + 6c90 PCI-DA12-2 2x 12-bit Analog Output Card + 6c98 PCI-DA12-4 4x 12-bit Analog Output Card + 6ca0 PCI-DA12-6 6x 12-bit Analog Output Card + 6ca8 PCI-DA12-8 8x 12-bit Analog Output Card + 6ca9 PCI-DA12-8V + 6cb0 PCI-DA12-16 16x 12-bit Analog Output Card + 6cb1 PCI-DA12-16V + 8ef0 P104-FAS16-16 + aca8 PCI-AI12-16 12-bit 100kHz Analog Input Card + aca9 PCI-AI12-16A 12-bit 100kHz Analog Input w/FIFO Card + eca8 PCI-AIO12-16 12-bit 100kHz Analog Input w/2x Analog Output and FIFO Card + ecaa PCI-A12-16A 12-bit 100kHz Analog Input w/2x Analog Output and FIFO Card + ece8 LPCI-A16-16A 16-bit 500kHz Analog Input low-profile Card + ece9 LPCI-AIO16A 16-bit 500kHz Analog Input low-profile Card +4978 Axil Computer Inc +4a14 NetVin + 5000 NV5000SC + 4a14 5000 RT8029-Based Ethernet Adapter +4b10 Buslogic Inc. +4c48 LUNG HWA Electronics +4c52 LR-Link +4c53 SBS Technologies + 0000 PLUSTEST device + 4c53 3000 PLUSTEST card (PC104+) + 4c53 3001 PLUSTEST card (PMC) + 0001 PLUSTEST-MM device + 4c53 3002 PLUSTEST-MM card (PMC) +4ca1 Seanix Technology Inc +4d51 MediaQ Inc. + 0200 MQ-200 +4d54 Microtechnica Co Ltd +4d56 MATRIX VISION GmbH + 0000 [mvHYPERION-CLe/CLb] CameraLink PCI Express x1 Frame Grabber + 0001 [mvHYPERION-CLf/CLm] CameraLink PCI Express x4 Frame Grabber + 0010 [mvHYPERION-16R16/-32R16] 16 Video Channel PCI Express x4 Frame Grabber + 0020 [mvHYPERION-HD-SDI] HD-SDI PCI Express x4 Frame Grabber + 0030 [mvHYPERION-HD-SDI-Merger] HD-SDI PCI Express x4 Frame Grabber + 7012 [mvBlueNAOS BVS CA-BN] PCIe Gen1 x2 Camera + 7014 [mvBlueNAOS BVS CA-BN] PCIe Gen1 x4 Camera + 7022 [mvBlueNAOS BVS CA-BN] PCIe Gen2 x2 Camera + 7024 [mvBlueNAOS BVS CA-BN] PCIe Gen2 x4 Camera +4ddc ILC Data Device Corp + 0100 DD-42924I5-300 (ARINC 429 Data Bus) + 0300 SB-3620 Motion Feedback Device + 0340 SB-3623 Motion Feedback Device + 0400 SB-3622 Motion Feedback Device + 0500 SB-3621 Motion Feedback Device + 0510 SB-3624 Motion Feedback Device + 0801 BU-65570I1 MIL-STD-1553 Test and Simulation + 0802 BU-65570I2 MIL-STD-1553 Test and Simulation + 0811 BU-65572I1 MIL-STD-1553 Test and Simulation + 0812 BU-65572I2 MIL-STD-1553 Test and Simulation + 0881 BU-65570T1 MIL-STD-1553 Test and Simulation + 0882 BU-65570T2 MIL-STD-1553 Test and Simulation + 0891 BU-65572T1 MIL-STD-1553 Test and Simulation + 0892 BU-65572T2 MIL-STD-1553 Test and Simulation + 0901 BU-65565C1 MIL-STD-1553 Data Bus + 0902 BU-65565C2 MIL-STD-1553 Data Bus + 0903 BU-65565C3 MIL-STD-1553 Data Bus + 0904 BU-65565C4 MIL-STD-1553 Data Bus + 0b01 BU-65569I1 MIL-STD-1553 Data Bus + 0b02 BU-65569I2 MIL-STD-1553 Data Bus + 0b03 BU-65569I3 MIL-STD-1553 Data Bus + 0b04 BU-65569I4 MIL-STD-1553 Data Bus + 0d01 SB-3641 Motion Feedback Device + 0d10 SB-365x Motion Feedback Device + 2f00 SB-3642 Motion Feedback Device + 3000 SB-3644 Motion Feedback Device +4e58 Nutanix, Inc. + 0001 Virtual NVMe Controller +5045 University of Toronto + 4243 BLASTbus PCI Interface Card v1 +5046 GemTek Technology Corporation + 1001 PCI Radio +5053 Voyetra Technologies + 2010 Daytona Audio Adapter +50b2 TerraTec Electronic GmbH +5136 S S Technologies +5143 Qualcomm Inc +5145 Ensoniq (Old) + 3031 Concert AudioPCI +5168 Animation Technologies Inc. + 0300 FlyDVB-S + 0301 FlyDVB-T +5301 Alliance Semiconductor Corp. + 0001 ProMotion aT3D +5333 S3 Graphics Ltd. + 0551 Plato/PX (system) + 5631 86c325 [ViRGE] + 8800 86c866 [Vision 866] + 8801 86c964 [Vision 964] + 8810 86c764_0 [Trio 32 vers 0] + 8811 86c764/765 [Trio32/64/64V+] + 8812 86cM65 [Aurora64V+] + 8813 86c764_3 [Trio 32/64 vers 3] + 8814 86c767 [Trio 64UV+] + 8815 86cM65 [Aurora 128] + 883d 86c988 [ViRGE/VX] + 8870 FireGL + 8880 86c868 [Vision 868 VRAM] vers 0 + 8881 86c868 [Vision 868 VRAM] vers 1 + 8882 86c868 [Vision 868 VRAM] vers 2 + 8883 86c868 [Vision 868 VRAM] vers 3 + 88b0 86c928 [Vision 928 VRAM] vers 0 + 88b1 86c928 [Vision 928 VRAM] vers 1 + 88b2 86c928 [Vision 928 VRAM] vers 2 + 88b3 86c928 [Vision 928 VRAM] vers 3 + 88c0 86c864 [Vision 864 DRAM] vers 0 + 88c1 86c864 [Vision 864 DRAM] vers 1 + 88c2 86c864 [Vision 864-P DRAM] vers 2 + 88c3 86c864 [Vision 864-P DRAM] vers 3 + 88d0 86c964 [Vision 964 VRAM] vers 0 + 88d1 86c964 [Vision 964 VRAM] vers 1 + 88d2 86c964 [Vision 964-P VRAM] vers 2 + 88d3 86c964 [Vision 964-P VRAM] vers 3 + 88f0 86c968 [Vision 968 VRAM] rev 0 + 88f1 86c968 [Vision 968 VRAM] rev 1 + 88f2 86c968 [Vision 968 VRAM] rev 2 + 88f3 86c968 [Vision 968 VRAM] rev 3 + 8900 86c755 [Trio 64V2/DX] + 5333 8900 86C775 Trio64V2/DX + 8901 86c775/86c785 [Trio 64V2/DX or /GX] + 5333 8901 86C775 Trio64V2/DX, 86C785 Trio64V2/GX + 8902 Plato/PX + 8903 Trio 3D business multimedia + 8904 86c365, 86c366 [Trio 3D] + 1014 00db Integrated Trio3D + 4843 314a Terminator 128/3D GLH + 5333 8904 86C365 Trio3D AGP + 8905 Trio 64V+ family + 8906 Trio 64V+ family + 8907 Trio 64V+ family + 8908 Trio 64V+ family + 8909 Trio 64V+ family + 890a Trio 64V+ family + 890b Trio 64V+ family + 890c Trio 64V+ family + 890d Trio 64V+ family + 890e Trio 64V+ family + 890f Trio 64V+ family + 8a01 86c375 [ViRGE/DX] or 86c385 [ViRGE/GX] + 0e11 b032 ViRGE/GX + 10b4 1617 Nitro 3D + 10b4 1717 Nitro 3D + 5333 8a01 ViRGE/DX + 8a10 ViRGE/GX2 + 1092 8a10 Stealth 3D 4000 + 8a13 86c360 [Trio 3D/1X], 86c362, 86c368 [Trio 3D/2X] + 5333 8a13 Trio3D/2X + 8a20 86c794 [Savage 3D] + 5333 8a20 86C391 Savage3D + 8a21 86c390 [Savage 3D/MV] + 5333 8a21 86C390 Savage3D/MV + 8a22 Savage 4 + 1033 8068 Savage 4 + 1033 8069 Savage 4 + 1033 8110 Savage 4 LT + 105d 0018 SR9 8Mb SDRAM + 105d 002a SR9 Pro 16Mb SDRAM + 105d 003a SR9 Pro 32Mb SDRAM + 105d 092f SR9 Pro+ 16Mb SGRAM + 1092 4207 Stealth III S540 + 1092 4800 Stealth III S540 + 1092 4807 SpeedStar A90 + 1092 4808 Stealth III S540 + 1092 4809 Stealth III S540 + 1092 480e Stealth III S540 + 1092 4904 Stealth III S520 + 1092 4905 SpeedStar A200 + 1092 4a09 Stealth III S540 + 1092 4a0b Stealth III S540 Xtreme + 1092 4a0f Stealth III S540 + 1092 4e01 Stealth III S540 + 1102 101d 3d Blaster Savage 4 + 1102 101e 3d Blaster Savage 4 + 5333 8100 86C394-397 Savage4 SDRAM 100 + 5333 8110 86C394-397 Savage4 SDRAM 110 + 5333 8125 86C394-397 Savage4 SDRAM 125 + 5333 8143 86C394-397 Savage4 SDRAM 143 + 5333 8a22 86C394-397 Savage4 + 5333 8a2e 86C394-397 Savage4 32bit + 5333 9125 86C394-397 Savage4 SGRAM 125 + 5333 9143 86C394-397 Savage4 SGRAM 143 + 8a23 Savage 4 + 8a25 ProSavage PM133 + 0303 0303 D9840-60001 [Brio BA410 Motherboard] + 8a26 ProSavage KM133 + 8c00 ViRGE/M3 + 8c01 ViRGE/MX + 1179 0001 ViRGE/MX + 8c02 ViRGE/MX+ + 8c03 ViRGE/MX+MV + 8c10 86C270-294 [SavageMX-MV] + 8c11 82C270-294 [SavageMX] + 8c12 86C270-294 [SavageIX-MV] + 1014 017f ThinkPad T20/T22 + 1179 0001 86C584 SuperSavage/IXC Toshiba + 8c13 86C270-294 [SavageIX] + 1179 0001 Magnia Z310 + 8c22 SuperSavage MX/128 + 8c24 SuperSavage MX/64 + 8c26 SuperSavage MX/64C + 8c2a SuperSavage IX/128 SDR + 8c2b SuperSavage IX/128 DDR + 8c2c SuperSavage IX/64 SDR + 8c2d SuperSavage IX/64 DDR + 8c2e SuperSavage IX/C SDR + 1014 01fc ThinkPad T23 + 8c2f SuperSavage IX/C DDR + 8d01 86C380 [ProSavageDDR K4M266] + 8d02 VT8636A [ProSavage KN133] AGP4X VGA Controller (TwisterK) + 8d03 VT8751 [ProSavageDDR P4M266] + 8d04 VT8375 [ProSavage8 KM266/KL266] + 8e00 DeltaChrome + 8e26 ProSavage + 8e40 2300E Graphics Processor + 8e48 Matrix [Chrome S25 / S27] + 5333 0130 Chrome S27 256M DDR2 + 9043 Chrome 430 GT + 9045 Chrome 430 ULP / 435 ULP / 440 GTX + 9060 Chrome 530 GT + 9102 86C410 [Savage 2000] + 1092 5932 Viper II Z200 + 1092 5934 Viper II Z200 + 1092 5952 Viper II Z200 + 1092 5954 Viper II Z200 + 1092 5a35 Viper II Z200 + 1092 5a37 Viper II Z200 + 1092 5a55 Viper II Z200 + 1092 5a57 Viper II Z200 + ca00 SonicVibes +5431 AuzenTech, Inc. +544c Teralogic Inc + 0350 TL880-based HDTV/ATSC tuner +544d TBS Technologies + 6178 DVB Tuner PCIe Card + 544d 6904 TBS6904 DVB-S2 Quad Tuner PCIe Card + 544d 6905 TBS6905 DVB-S2 Quad Tuner PCIe Card + 6205 0001 TBS6205 DVB-T2/T/C Quad TV Tuner PCIe Card + 6209 0001 TBS6209 DVB-T2/C2/T/C/ISDB-T OctaTV Tuner +5452 SCANLAB AG + 3443 RTC4 +5455 Technische Universitaet Berlin + 4458 S5933 +5456 GoTView +5519 Cnet Technologies, Inc. +5544 Dunord Technologies + 0001 I-30xx Scanner Interface +5555 Genroco, Inc + 0003 TURBOstor HFP-832 [HiPPI NIC] + 3b00 Epiphan DVI2PCIe video capture card +5646 Vector Fabrics BV +5654 VoiceTronix Pty Ltd +5678 Dawicontrol Computersysteme GmbH +5700 Netpower +# alternately Extreme Engineering Solutions, Inc. +5845 X-ES, Inc. +584d AuzenTech Co., Ltd. +5851 Exacq Technologies + 8008 tDVR8008 8-port video capture card + 8016 tDVR8016 16-chan video capture card + 8032 tDVR8032 32-chan video capture card +5853 XenSource, Inc. + 0001 Xen Platform Device + c000 Citrix XenServer PCI Device for Windows Update +# Virtual device surfaced in guests to provide HID events. + c110 Virtualized HID +# Device surfaced in guests to provide 2d graphics capabilities + c147 Virtualized Graphics Device + c200 XCP-ng Project PCI Device for Windows Update +5854 GoTView +5ace Beholder International Ltd. +6205 TBS Technologies (wrong ID) +6209 TBS Technologies (wrong ID) +631c SmartInfra Ltd + 1652 PXI-1652 Signal Generator + 2504 PXI-2504 Signal Interrogator +6356 UltraStor +6374 c't Magazin fuer Computertechnik + 6773 GPPCI +6409 Logitec Corp. +6549 Teradici Corp. + 1200 TERA1200 PC-over-IP Host +6666 Decision Computer International Co. + 0001 PCCOM4 + 0002 PCCOM8 + 0004 PCCOM2 + 0101 PCI 8255/8254 I/O Card + 0200 12-bit AD/DA Card + 0201 14-bit AD/DA Card + 1011 Industrial Card + 1021 8 photo couple 8 relay Card + 1022 4 photo couple 4 relay Card + 1025 16 photo couple 16 relay Card + 4000 WatchDog Card +6688 Zycoo Co., Ltd + 1200 CooVox TDM Analog Module + 1400 CooVOX TDM GSM Module + 1600 CooVOX TDM E1/T1 Module + 1800 CooVOX TDM BRI Module +6766 Glenfly Tech Co., Ltd. + 3d00 Arise-GT-10C0 + 3d02 Arise 1020 + 3d40 Arise-GT-10C0 High Definition Audio Controller + 3d41 Arise 1020 High Definition Audio Controller +6899 ZT Systems +# nee Qumranet +6900 Red Hat, Inc. +7063 pcHDTV + 2000 HD-2000 + 3000 HD-3000 + 5500 HD5500 HDTV +7284 HT OMEGA Inc. +7357 IOxOS Technologies SA + 7910 7910 [Althea] +7401 EndRun Technologies + e100 PTP3100 PCIe PTP Slave Clock +7470 TP-LINK Technologies Co., Ltd. +7526 HongQin (Beijing) Technology Co., Ltd. + 0082 HQ SSD 1TB + 0083 HQ SSD 2TB M.2 NVMe +7604 O.N. Electronic Co Ltd. +7bde MIDAC Corporation +7fed PowerTV +8008 Quancom Electronic GmbH + 0010 WDOG1 [PCI-Watchdog 1] + 0011 PWDOG2 [PCI-Watchdog 2] + 0015 Clock77/PCI & Clock77/PCIe (DCF-77 receiver) +# Wrong ID used in subsystem ID of AsusTek PCI-USB2 PCI card. +807d Asustek Computer, Inc. +8086 Intel Corporation + 0007 82379AB + 0008 Extended Express System Support Controller + 0039 21145 Fast Ethernet + 0040 Core Processor DRAM Controller + 0041 Core Processor PCI Express x16 Root Port + 0042 Core Processor Integrated Graphics Controller + 0043 Core Processor Secondary PCI Express Root Port + 0044 Core Processor DRAM Controller + 1025 0347 Aspire 7740G + 1025 0487 TravelMate 5742 + 1028 040a Latitude E6410 + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 0045 Core Processor PCI Express x16 Root Port + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 0046 Core Processor Integrated Graphics Controller + 1028 040a Latitude E6410 + 144d c06a R730 Laptop + 17c0 10d9 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 0047 Core Processor Secondary PCI Express Root Port + 0048 Core Processor DRAM Controller + 0049 Core Processor PCI Express x16 Root Port + 004a Core Processor Integrated Graphics Controller + 004b Core Processor Secondary PCI Express Root Port + 0050 Core Processor Thermal Management Controller + 0069 Core Processor DRAM Controller + 0082 Centrino Advanced-N 6205 [Taylor Peak] + 8086 1301 Centrino Advanced-N 6205 AGN + 8086 1306 Centrino Advanced-N 6205 ABG + 8086 1307 Centrino Advanced-N 6205 BG + 8086 1321 Centrino Advanced-N 6205 AGN + 8086 1326 Centrino Advanced-N 6205 ABG + 0083 Centrino Wireless-N 1000 [Condor Peak] + 8086 1205 Centrino Wireless-N 1000 BGN + 8086 1206 Centrino Wireless-N 1000 BG + 8086 1225 Centrino Wireless-N 1000 BGN + 8086 1226 Centrino Wireless-N 1000 BG + 8086 1305 Centrino Wireless-N 1000 BGN + 8086 1306 Centrino Wireless-N 1000 BG + 8086 1325 Centrino Wireless-N 1000 BGN + 8086 1326 Centrino Wireless-N 1000 BG + 0084 Centrino Wireless-N 1000 [Condor Peak] + 8086 1215 Centrino Wireless-N 1000 BGN + 8086 1216 Centrino Wireless-N 1000 BG + 8086 1315 Centrino Wireless-N 1000 BGN + 8086 1316 Centrino Wireless-N 1000 BG + 0085 Centrino Advanced-N 6205 [Taylor Peak] + 8086 1311 Centrino Advanced-N 6205 (802.11a/b/g/n) + 8086 1316 Centrino Advanced-N 6205 ABG + 0087 Centrino Advanced-N + WiMAX 6250 [Kilmer Peak] + 8086 1301 Centrino Advanced-N + WiMAX 6250 2x2 AGN + 8086 1306 Centrino Advanced-N + WiMAX 6250 2x2 ABG + 8086 1321 Centrino Advanced-N + WiMAX 6250 2x2 AGN + 8086 1326 Centrino Advanced-N + WiMAX 6250 2x2 ABG + 0089 Centrino Advanced-N + WiMAX 6250 [Kilmer Peak] + 8086 1311 Centrino Advanced-N + WiMAX 6250 2x2 AGN + 8086 1316 Centrino Advanced-N + WiMAX 6250 2x2 ABG + 008a Centrino Wireless-N 1030 [Rainbow Peak] + 8086 5305 Centrino Wireless-N 1030 BGN + 8086 5307 Centrino Wireless-N 1030 BG + 8086 5325 Centrino Wireless-N 1030 BGN + 8086 5327 Centrino Wireless-N 1030 BG + 008b Centrino Wireless-N 1030 [Rainbow Peak] + 8086 5315 Centrino Wireless-N 1030 BGN + 8086 5317 Centrino Wireless-N 1030 BG + 0090 Centrino Advanced-N 6230 [Rainbow Peak] + 8086 5211 Centrino Advanced-N 6230 AGN + 8086 5215 Centrino Advanced-N 6230 BGN + 8086 5216 Centrino Advanced-N 6230 ABG + 0091 Centrino Advanced-N 6230 [Rainbow Peak] + 8086 5201 Centrino Advanced-N 6230 AGN + 8086 5205 Centrino Advanced-N 6230 BGN + 8086 5206 Centrino Advanced-N 6230 ABG + 8086 5207 Centrino Advanced-N 6230 BG + 8086 5221 Centrino Advanced-N 6230 AGN + 8086 5225 Centrino Advanced-N 6230 BGN + 8086 5226 Centrino Advanced-N 6230 ABG + 0100 2nd Generation Core Processor Family DRAM Controller + 1028 04aa XPS 8300 + 1043 844d P8P67/P8H67 Series Motherboard + 8086 200d DH61CR motherboard + 0101 Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port + 1028 04b2 Vostro 3350 + 106b 00dc MacBookPro8,2 [Core i7, 15", 2011] + 144d c652 NP300E5C series laptop + 0102 2nd Generation Core Processor Family Integrated Graphics Controller + 1028 04aa XPS 8300 + 1043 0102 P8H67 Series Motherboard + 0104 2nd Generation Core Processor Family DRAM Controller + 1028 04a3 Precision M4600 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 106b 00dc MacBookPro8,2 [Core i7, 15", 2011] + 144d c652 NP300E5C series laptop + 17aa 21cf ThinkPad T520 + 0105 Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port + 106b 00dc MacBookPro8,2 [Core i7, 15", 2011] + 0106 2nd Generation Core Processor Family Integrated Graphics Controller + 0108 Xeon E3-1200 Processor Family DRAM Controller + 0109 Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port + 010a Xeon E3-1200 Processor Family Integrated Graphics Controller + 010b Xeon E3-1200/2nd Generation Core Processor Family Integrated Graphics Controller + 010c Xeon E3-1200/2nd Generation Core Processor Family DRAM Controller + 010d Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port + 010e Xeon E3-1200/2nd Generation Core Processor Family Integrated Graphics Controller + 0112 2nd Generation Core Processor Family Integrated Graphics Controller + 0116 2nd Generation Core Processor Family Integrated Graphics Controller + 1028 04da Vostro 3750 + 144d c652 integrated HD 3000 graphics controller on NP300E5C series laptop + 0122 2nd Generation Core Processor Family Integrated Graphics Controller + 0126 2nd Generation Core Processor Family Integrated Graphics Controller + 1028 04cc Vostro 3350 + 17aa 21ce ThinkPad T420 + 17aa 21cf ThinkPad T520 + 0150 Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller + 1043 84ca P8 series motherboard + 1458 d000 Ivy Bridge GT1 [HD Graphics] + 15d9 0624 X9SCM-F Motherboard + 1849 0150 Motherboard + 0151 Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port + 1043 1477 N56VZ + 1043 844d P8 series motherboard + 1043 84ca P8H77-I Motherboard + 8086 2010 Server Board S1200BTS + 0152 Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller + 1043 84ca P8H77-I Motherboard + 0153 3rd Gen Core Processor Thermal Subsystem + 1043 1517 Zenbook Prime UX31A + 0154 3rd Gen Core processor DRAM Controller + 1025 0806 Aspire E1-470G + 1025 0813 Aspire R7-571 + 103c 17f6 ProBook 4540s + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 10cf 16bf LIFEBOOK E752 + 0155 Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port + 8086 2010 Server Board S1200BTS + 0156 3rd Gen Core processor Graphics Controller + 1043 108d VivoBook X202EV + 0158 Xeon E3-1200 v2/Ivy Bridge DRAM Controller + 1043 844d P8 series motherboard + 8086 2010 Server Board S1200BT Family + 0159 Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port + 015a Xeon E3-1200 v2/Ivy Bridge Graphics Controller + 015c Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller + 015d Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port + 1043 844d P8 series motherboard + 015e Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller + 0162 IvyBridge GT2 [HD Graphics 4000] + 1043 84ca P8 series motherboard + 1849 0162 Motherboard + 0166 3rd Gen Core processor Graphics Controller + 1043 1517 Zenbook Prime UX31A + 1043 2103 N56VZ + 10cf 16c1 LIFEBOOK E752 + 016a Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller + 1043 844d P8B WS Motherboard + 0172 Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller + 0176 3rd Gen Core processor Graphics Controller + 0201 Arctic Sound + 0284 Comet Lake PCH-LP LPC Premium Controller/eSPI Controller + 1028 09be Latitude 7410 + 02a3 Comet Lake PCH-LP SMBus Host Controller + 1028 09be Latitude 7410 + 02a4 Comet Lake SPI (flash) Controller + 1028 09be Latitude 7410 + 02a6 Comet Lake North Peak + 02b0 Comet Lake PCI Express Root Port #9 + 02b1 Comet Lake PCI Express Root Port #10 + 02b3 Comet Lake PCI Express Root Port #12 + 02b4 Comet Lake PCI Express Root Port #13 + 02b8 Comet Lake PCI Express Root Port #1 + 02bc Comet Lake PCI Express Root Port #5 + 02c5 Comet Lake Serial IO I2C Host Controller + 1028 09be Latitude 7410 + 02c8 Comet Lake PCH-LP cAVS + 1028 09be Latitude 7410 + 02d3 Comet Lake SATA AHCI Controller + 02e0 Comet Lake Management Engine Interface + 1028 09be Latitude 7410 + 02e8 Serial IO I2C Host Controller + 1028 09be Latitude 7410 + 02e9 Comet Lake Serial IO I2C Host Controller + 1028 09be Latitude 7410 + 02ea Comet Lake PCH-LP LPSS: I2C Controller #2 + 02ed Comet Lake PCH-LP USB 3.1 xHCI Host Controller + 1028 09be Latitude 7410 + 02ef Comet Lake PCH-LP Shared SRAM + 1028 09be Latitude 7410 + 02f0 Comet Lake PCH-LP CNVi WiFi + 8086 0034 Wireless-AC 9560 160MHz + 8086 0070 Wi-Fi 6 AX201 160MHz + 8086 0074 Wi-Fi 6 AX201 160MHz + 8086 4070 Wi-Fi 6 AX201 160MHz + 02f5 Comet Lake PCH-LP SCS3 + 02f9 Comet Lake Thermal Subsytem + 1028 09be Latitude 7410 + 02fc Comet Lake Integrated Sensor Solution + 1028 09be Latitude 7410 + 0309 80303 I/O Processor PCI-to-PCI Bridge + 030d 80312 I/O Companion Chip PCI-to-PCI Bridge + 0326 6700/6702PXH I/OxAPIC Interrupt Controller A + 103c 3208 ProLiant DL140 G2 + 1775 1100 CR11/VR11 Single Board Computer + 0327 6700PXH I/OxAPIC Interrupt Controller B + 103c 3208 ProLiant DL140 G2 + 1775 1100 CR11/VR11 Single Board Computer + 0329 6700PXH PCI Express-to-PCI Bridge A + 032a 6700PXH PCI Express-to-PCI Bridge B + 032c 6702PXH PCI Express-to-PCI Bridge A + 0330 80332 [Dobson] I/O processor (A-Segment Bridge) + 0331 80332 [Dobson] I/O processor (A-Segment IOAPIC) + 0332 80332 [Dobson] I/O processor (B-Segment Bridge) + 0333 80332 [Dobson] I/O processor (B-Segment IOAPIC) + 0334 80332 [Dobson] I/O processor (ATU) + 0335 80331 [Lindsay] I/O processor (PCI-X Bridge) + 0336 80331 [Lindsay] I/O processor (ATU) + 0340 41210 [Lanai] Serial to Parallel PCI Bridge (A-Segment Bridge) + 0341 41210 [Lanai] Serial to Parallel PCI Bridge (B-Segment Bridge) + 0370 80333 Segment-A PCIe Express to PCI-X bridge + 0371 80333 A-Bus IOAPIC + 0372 80333 Segment-B PCIe Express to PCI-X bridge + 0373 80333 B-Bus IOAPIC + 0374 80333 Address Translation Unit + 0402 Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller + 0406 Haswell Integrated Graphics Controller + 040a Xeon E3-1200 v3 Processor Integrated Graphics Controller + 0412 Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller + 1028 05d7 Alienware X51 R2 + 103c 1998 EliteDesk 800 G1 + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 0416 4th Gen Core Processor Integrated Graphics Controller + 17aa 220e ThinkPad T440p + 041a Xeon E3-1200 v3 Processor Integrated Graphics Controller + 041e 4th Generation Core Processor Family Integrated Graphics Controller + 0434 DH89XXCC Series QAT + 0435 DH895XCC Series QAT + 0436 DH8900CC Null Device + 0438 DH8900CC Series Gigabit Network Connection + 043a DH8900CC Series Gigabit Fiber Network Connection + 043c DH8900CC Series Gigabit Backplane Network Connection + 0440 DH8900CC Series Gigabit SFP Network Connection + 0442 DH89XXCC Series QAT Virtual Function + 0443 DH895XCC Series QAT Virtual Function + 0482 82375EB/SB PCI to EISA Bridge + 0483 82424TX/ZX [Saturn] CPU to PCI bridge + 0484 82378ZB/IB, 82379AB (SIO, SIO.A) PCI to ISA Bridge + 0486 82425EX/ZX [Aries] PCIset with ISA bridge + 04a3 82434LX/NX [Mercury/Neptune] Processor to PCI bridge + 04d0 82437FX [Triton FX] + 0500 E8870 Processor bus control + 0501 E8870 Memory controller +# and registers common to both SPs + 0502 E8870 Scalability Port 0 +# and global performance monitoring + 0503 E8870 Scalability Port 1 + 0510 E8870IO Hub Interface Port 0 registers (8-bit compatibility port) + 0511 E8870IO Hub Interface Port 1 registers + 0512 E8870IO Hub Interface Port 2 registers + 0513 E8870IO Hub Interface Port 3 registers + 0514 E8870IO Hub Interface Port 4 registers + 0515 E8870IO General SIOH registers + 0516 E8870IO RAS registers + 0530 E8870SP Scalability Port 0 registers + 0531 E8870SP Scalability Port 1 registers + 0532 E8870SP Scalability Port 2 registers + 0533 E8870SP Scalability Port 3 registers + 0534 E8870SP Scalability Port 4 registers + 0535 E8870SP Scalability Port 5 registers +# (bi-interleave 0) and global registers that are neither per-port nor per-interleave + 0536 E8870SP Interleave registers 0 and 1 +# (bi-interleave 1) + 0537 E8870SP Interleave registers 2 and 3 + 0600 RAID Controller + 8086 0136 SRCU31L + 8086 01af SRCZCR + 8086 01c1 ICP Vortex GDT8546RZ + 8086 01f7 SCRU32 +# uninitialized SRCU32 RAID Controller + 061f 80303 I/O Processor + 0684 H470 Chipset LPC/eSPI Controller + 0687 Q470 Chipset LPC/eSPI Controller + 068d Comet Lake LPC Controller + 06a3 Comet Lake PCH SMBus Controller + 06a4 Comet Lake PCH SPI Controller + 06a8 Comet Lake PCH Serial IO UART Host Controller #0 + 06a9 Comet Lake PCH Serial IO UART Host Controller #1 + 06aa Comet Lake PCH Serial IO SPI Controller #0 + 06ab Comet Lake PCH Serial IO SPI Controller #1 + 06ac Comet Lake PCI Express Root Port #21 + 06b0 Comet Lake PCI Express Root Port #9 + 06bd Comet Lake PCIe Port #6 + 06c0 Comet Lake PCI Express Root Port #17 + 06c8 Comet Lake PCH cAVS + 06d2 Comet Lake SATA AHCI Controller + 06d6 Comet Lake PCH-H RAID + 06d7 Comet Lake PCH-H RAID + 06e0 Comet Lake HECI Controller + 06e3 Comet Lake Keyboard and Text (KT) Redirection + 06e8 Comet Lake PCH Serial IO I2C Controller #0 + 06e9 Comet Lake PCH Serial IO I2C Controller #1 + 06ea Comet Lake PCH Serial IO I2C Controller #2 + 06eb Comet Lake PCH Serial IO I2C Controller #3 + 06ed Comet Lake USB 3.1 xHCI Host Controller + 06ef Comet Lake PCH Shared SRAM + 06f0 Comet Lake PCH CNVi WiFi + 8086 0034 Wireless-AC 9560 + 8086 0074 Wi-Fi 6 AX201 160MHz + 8086 02a4 Wireless-AC 9462 + 06f9 Comet Lake PCH Thermal Controller + 06fb Comet Lake PCH Serial IO SPI Controller #2 + 0700 CE Media Processor A/V Bridge + 0701 CE Media Processor NAND Flash Controller + 0703 CE Media Processor Media Control Unit 1 + 0704 CE Media Processor Video Capture Interface + 0707 CE Media Processor SPI Slave + 0708 Atom Processor CE 4100 + 0709 Atom Processor CE 4200 + 0800 Moorestown SPI Ctrl 0 + 0801 Moorestown SPI Ctrl 1 + 0802 Moorestown I2C 0 + 0803 Moorestown I2C 1 + 0804 Moorestown I2C 2 + 0805 Moorestown Keyboard Ctrl + 0806 Moorestown USB Ctrl + 0807 Moorestown SD Host Ctrl 0 + 0808 Moorestown SD Host Ctrl 1 + 0809 Moorestown NAND Ctrl + 080a Moorestown Audio Ctrl + 080b Moorestown ISP + 080c Moorestown Security Controller + 080d Moorestown External Displays + 080e Moorestown SCU IPC + 080f Moorestown GPIO Controller + 0810 Moorestown Power Management Unit + 0811 Moorestown OTG Ctrl + 0812 Moorestown SPI Ctrl 2 + 0813 Moorestown SC DMA + 0814 Moorestown LPE DMA + 0815 Moorestown SSP0 + 0817 Medfield Serial IO I2C Controller #3 + 0818 Medfield Serial IO I2C Controller #4 + 0819 Medfield Serial IO I2C Controller #5 + 081a Medfield GPIO Controller [Core] + 081b Medfield Serial IO HSUART Controller #1 + 081c Medfield Serial IO HSUART Controller #2 + 081d Medfield Serial IO HSUART Controller #3 + 081e Medfield Serial IO HSUART DMA Controller + 081f Medfield GPIO Controller [AON] + 0820 Medfield SD Host Controller + 0821 Medfield SDIO Controller #1 + 0822 Medfield SDIO Controller #2 + 0823 Medfield eMMC Controller #0 + 0824 Medfield eMMC Controller #1 + 0827 Medfield Serial IO DMA Controller + 0828 Medfield Power Management Unit + 0829 Medfield USB Device Controller (OTG) + 082a Medfield SCU IPC + 082c Medfield Serial IO I2C Controller #0 + 082d Medfield Serial IO I2C Controller #1 + 082e Medfield Serial IO I2C Controller #2 + 0885 Centrino Wireless-N + WiMAX 6150 + 8086 1305 Centrino Wireless-N + WiMAX 6150 BGN + 8086 1307 Centrino Wireless-N + WiMAX 6150 BG + 8086 1325 Centrino Wireless-N + WiMAX 6150 BGN + 8086 1327 Centrino Wireless-N + WiMAX 6150 BG + 0886 Centrino Wireless-N + WiMAX 6150 + 8086 1315 Centrino Wireless-N + WiMAX 6150 BGN + 8086 1317 Centrino Wireless-N + WiMAX 6150 BG + 0887 Centrino Wireless-N 2230 + 8086 4062 Centrino Wireless-N 2230 BGN + 8086 4462 Centrino Wireless-N 2230 BGN + 0888 Centrino Wireless-N 2230 + 8086 4262 Centrino Wireless-N 2230 BGN + 088e Centrino Advanced-N 6235 + 8086 4060 Centrino Advanced-N 6235 AGN + 8086 4460 Centrino Advanced-N 6235 AGN + 088f Centrino Advanced-N 6235 + 8086 4260 Centrino Advanced-N 6235 AGN + 0890 Centrino Wireless-N 2200 + 8086 4022 Centrino Wireless-N 2200 BGN + 8086 4422 Centrino Wireless-N 2200 BGN + 8086 4822 Centrino Wireless-N 2200 BGN + 0891 Centrino Wireless-N 2200 + 8086 4222 Centrino Wireless-N 2200 BGN + 0892 Centrino Wireless-N 135 + 8086 0062 Centrino Wireless-N 135 BGN + 8086 0462 Centrino Wireless-N 135 BGN + 0893 Centrino Wireless-N 135 + 8086 0262 Centrino Wireless-N 135 BGN + 0894 Centrino Wireless-N 105 + 8086 0022 Centrino Wireless-N 105 BGN + 8086 0422 Centrino Wireless-N 105 BGN + 8086 0822 Centrino Wireless-N 105 BGN + 0895 Centrino Wireless-N 105 + 8086 0222 Centrino Wireless-N 105 BGN + 0896 Centrino Wireless-N 130 + 8086 5005 Centrino Wireless-N 130 BGN + 8086 5007 Centrino Wireless-N 130 BG + 8086 5025 Centrino Wireless-N 130 BGN + 8086 5027 Centrino Wireless-N 130 BG + 0897 Centrino Wireless-N 130 + 8086 5015 Centrino Wireless-N 130 BGN + 8086 5017 Centrino Wireless-N 130 BG + 08a7 Quark SoC X1000 SDIO / eMMC Controller + 08ae Centrino Wireless-N 100 + 8086 1005 Centrino Wireless-N 100 BGN + 8086 1007 Centrino Wireless-N 100 BG + 8086 1025 Centrino Wireless-N 100 BGN + 8086 1027 Centrino Wireless-N 100 BG + 08af Centrino Wireless-N 100 + 8086 1015 Centrino Wireless-N 100 BGN + 8086 1017 Centrino Wireless-N 100 BG + 08b1 Wireless 7260 +# Wilkins Peak 2 + 8086 4020 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 402a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4060 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4062 Wireless-N 7260 +# Wilkins Peak 2 + 8086 406a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4070 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4072 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4160 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4162 Wireless-N 7260 +# Wilkins Peak 2 + 8086 4170 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4420 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4460 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4462 Wireless-N 7260 +# Wilkins Peak 2 + 8086 446a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4470 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4472 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4560 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4570 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 486e Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4870 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4a6c Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4a6e Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4a70 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4c60 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4c70 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 5070 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 5072 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 5170 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 5770 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c020 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c02a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c060 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c062 Wireless-N 7260 +# Wilkins Peak 2 + 8086 c06a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c070 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c072 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c160 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c162 Wireless-N 7260 +# Wilkins Peak 2 + 8086 c170 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c360 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c420 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c460 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c462 Wireless-N 7260 +# Wilkins Peak 2 + 8086 c470 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c472 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c560 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c570 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c760 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c770 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 cc60 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 cc70 Dual Band Wireless-AC 7260 + 08b2 Wireless 7260 +# Wilkins Peak 2 + 8086 4220 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4260 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4262 Wireless-N 7260 +# Wilkins Peak 2 + 8086 426a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4270 Wireless-N 7260 +# Wilkins Peak 2 + 8086 4272 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 4360 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 4370 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c220 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c260 Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c262 Wireless-N 7260 +# Wilkins Peak 2 + 8086 c26a Dual Band Wireless-N 7260 +# Wilkins Peak 2 + 8086 c270 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c272 Dual Band Wireless-AC 7260 +# Wilkins Peak 2 + 8086 c370 Dual Band Wireless-AC 7260 + 08b3 Wireless 3160 +# Wilkins Peak 1 + 8086 0060 Dual Band Wireless-N 3160 +# Wilkins Peak 1 + 8086 0062 Wireless-N 3160 +# Wilkins Peak 1 + 8086 0070 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0072 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0170 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0172 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0260 Dual Band Wireless-N 3160 +# Wilkins Peak 1 + 8086 0470 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0472 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 1070 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 1170 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 8060 Dual Band Wireless N-3160 +# Wilkins Peak 1 + 8086 8062 Wireless N-3160 +# Wilkins Peak 1 + 8086 8070 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8072 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8170 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8172 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8470 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8570 Dual Band Wireless AC 3160 + 08b4 Wireless 3160 +# Wilkins Peak 1 + 8086 0270 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0272 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 0370 Dual Band Wireless-AC 3160 +# Wilkins Peak 1 + 8086 8260 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8270 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8272 Dual Band Wireless AC 3160 +# Wilkins Peak 1 + 8086 8370 Dual Band Wireless AC 3160 +# PowerVR SGX 545 + 08cf Atom Processor Z2760 Integrated Graphics Controller + 0931 Atom Processor CE 2600 [Puma 6] + 0934 Quark SoC X1000 I2C Controller and GPIO Controller + 0935 Quark SoC X1000 SPI Controller + 0936 Quark SoC X1000 HS-UART + 0937 Quark SoC X1000 10/100 Ethernet MAC + 0939 Quark SoC X1000 USB EHCI Host Controller / USB 2.0 Device + 093a Quark SoC X1000 USB OHCI Host Controller + 0953 PCIe Data Center SSD + 8086 3702 DC P3700 SSD + 8086 3703 DC P3700 SSD [2.5" SFF] + 8086 3704 DC P3500 SSD [Add-in Card] + 8086 3705 DC P3500 SSD [2.5" SFF] + 8086 3709 DC P3600 SSD [Add-in Card] + 8086 370a DC P3600 SSD [2.5" SFF] + 8086 370d SSD 750 Series [Add-in Card] + 8086 370e SSD 750 Series [2.5" SFF] + 0958 Quark SoC X1000 Host Bridge + 095a Wireless 7265 +# Stone Peak 2 AC + 8086 1010 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 5000 Dual Band Wireless-N 7265 +# Stone Peak 2 BGN + 8086 5002 Wireless-N 7265 +# Stone Peak 2 AGN + 8086 500a Dual Band Wireless-N 7265 +# Stone Peak 2 AC + 8086 5010 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5012 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 5020 Dual Band Wireless-N 7265 +# Stone Peak 2 AGN + 8086 502a Dual Band Wireless-N 7265 +# Maple Peak AC + 8086 5090 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 5100 Dual Band Wireless-AC 7265 +# Stone Peak 2 BGN + 8086 5102 Wireless-N 7265 +# Stone Peak 2 AGN + 8086 510a Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5110 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5112 Dual Band Wireless-AC 7265 +# Maple Peak AC + 8086 5190 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 5400 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5410 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5412 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 5420 Dual Band Wireless-N 7265 +# Maple Peak AC + 8086 5490 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5510 Dual Band Wireless-AC 7265 +# Maple Peak AC + 8086 5590 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 9000 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 900a Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9010 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9012 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9110 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9112 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9210 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9310 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 9400 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9410 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 9510 Dual Band Wireless-AC 7265 + 095b Wireless 7265 +# Stone Peak 2 AGN + 8086 5200 Dual Band Wireless-N 7265 +# Stone Peak 2 BGN + 8086 5202 Wireless-N 7265 +# Stone Peak 2 AGN + 8086 520a Dual Band Wireless-N 7265 +# Stone Peak 2 AC + 8086 5210 Dual Band Wireless-AC 7265 +# Stone Peak 2 AC + 8086 5212 Dual Band Wireless-AC 7265 +# Maple Peak AC + 8086 5290 Dual Band Wireless-AC 7265 +# Stone Peak 2 BGN + 8086 5302 Wireless-N 7265 +# Stone Peak 2 AC + 8086 5310 Dual Band Wireless-AC 7265 +# Stone Peak 2 AGN + 8086 9200 Dual Band Wireless-AC 7265 + 095e Quark SoC X1000 Legacy Bridge + 0960 80960RP (i960RP) Microprocessor/Bridge + 0962 80960RM (i960RM) Bridge + 0964 80960RP (i960RP) Microprocessor/Bridge + 0a03 Haswell-ULT Thermal Subsystem + 0a04 Haswell-ULT DRAM Controller + 17aa 2214 ThinkPad X240 + 0a06 Haswell-ULT Integrated Graphics Controller + 0a0c Haswell-ULT HD Audio Controller + 17aa 2214 ThinkPad X240 + 0a16 Haswell-ULT Integrated Graphics Controller + 17aa 2214 ThinkPad X240 + 0a22 Haswell-ULT Integrated Graphics Controller + 0a26 Haswell-ULT Integrated Graphics Controller + 0a2a Haswell-ULT Integrated Graphics Controller + 0a2e Haswell-ULT Integrated Graphics Controller + 0a53 DC P3520 SSD + 0a54 NVMe Datacenter SSD [3DNAND, Beta Rock Controller] + 1028 1fe1 Express Flash NVMe 1TB 2.5" U.2 (P4500) + 1028 1fe2 Express Flash NVMe 2TB 2.5" U.2 (P4500) + 1028 1fe3 Express Flash NVMe 4TB 2.5" U.2 (P4500) + 1028 1fe4 Express Flash NVMe 4TB HHHL AIC (P4500) + 1028 1fee Express Flash NVMe 1.6TB 2.5" U.2 (P4610) + 1028 1fef Express Flash NVMe 3.2TB 2.5" U.2 (P4610) + 1028 1ff0 Express Flash NVMe 6.4TB 2.5" U.2 (P4610) + 1028 1fff Express Flash NVMe 8.0TB 2.5" U.2 (P4510) + 1028 2003 Express Flash NVMe 1.0 TB 2.5" U.2 (P4510) + 1028 2004 Express Flash NVMe 2.0TB 2.5" U.2 (P4510) + 1028 2005 Express Flash NVMe 4.0TB 2.5" U.2 (P4510) + 108e 4870 NVMe PCIe 3.0 SSD 6.4TB AIC (P4608) + 108e 4871 NVMe PCIe 3.0 SSD 6.4TB 2.5-inch (P4600) + 108e 4879 NVMe PCIe 3.0 SSD v2 6.4TB AIC (P4618) + 108e 487a NVMe PCIe 3.0 SSD v2 6.4TB 2.5-inch (P4610) + 1137 0227 NVMe Datacenter SSD [3DNAND] 1.6TB 2.5" U.2 (P4600) + 1137 0228 NVMe Datacenter SSD [3DNAND] 2.0TB 2.5" U.2 (P4600) + 1137 0229 NVMe Datacenter SSD [3DNAND] 3.2TB 2.5" U.2 (P4600) + 1137 022b NVMe Datacenter SSD [3DNAND] 1.0TB 2.5" U.2 (P4500) + 1137 022c NVMe Datacenter SSD [3DNAND] 2.0TB 2.5" U.2 (P4500) + 1137 022d NVMe Datacenter SSD [3DNAND] 4.0TB 2.5" U.2 (P4500) + 1137 0231 NVMe Datacenter SSD [3DNAND] 0.5TB 2.5" U.2 (P4501) + 1137 0232 NVMe Datacenter SSD [3DNAND] 1.0TB 2.5" U.2 (P4501) + 1137 0233 NVMe Datacenter SSD [3DNAND] 2.0TB 2.5" U.2 (P4501) + 1137 0258 NVMe Datacenter SSD [3DNAND] 1.6TB 2.5" U.2 (P4610) + 1137 025a NVMe Datacenter SSD [3DNAND] 3.2TB 2.5" U.2 (P4610) + 1137 025b NVMe Datacenter SSD [3DNAND] 1.0TB 2.5" U.2 (P4510) + 1137 025c NVMe Datacenter SSD [3DNAND] 2.0TB 2.5" U.2 (P4510) + 1137 025d NVMe Datacenter SSD [3DNAND] 4.0TB 2.5" U.2 (P4510) + 1137 025e NVMe Datacenter SSD [3DNAND] 8.0TB 2.5" U.2 (P4510) + 1590 025d NVMe Datacenter SSD [3DNAND] 1.0TB 2.5" U.2 (P4500) + 1590 025e NVMe Datacenter SSD [3DNAND] 2.0TB 2.5" U.2 (P4500) + 1590 025f NVMe Datacenter SSD [3DNAND] 4.0TB 2.5" U.2 (P4500) + 1590 0262 NVMe Datacenter SSD [3DNAND] 1.6TB 2.5" U.2 (P4600) + 1590 0264 NVMe Datacenter SSD [3DNAND] 3.2TB 2.5" U.2 (P4600) + 1590 0265 NVMe Datacenter SSD [3DNAND] 6.4TB 2.5" U.2 (P4600) + 1590 026c NVMe Datacenter SSD [3DNAND] 4.0TB AIC (P4500) + 1d49 4702 Thinksystem Intel P4500 NVMe U.2 + 1d49 4704 Thinksystem Intel P4500 NVMe AIC + 1d49 4712 Thinksystem Intel P4600 NVMe U.2 + 1d49 4714 Thinksystem Intel P4600 NVMe AIC + 1d49 4802 Thinksystem U.2 P4510 NVMe SSD + 1d49 4812 Thinksystem U.2 P4610 NVMe SSD + 8086 4308 SSD D5-P4320 and D5-P4326 + 8086 4702 NVMe Datacenter SSD [3DNAND] SE 2.5" U.2 (P4500) + 8086 4704 NVMe Datacenter SSD [3DNAND] SE AIC (P4500) + 8086 4712 NVMe Datacenter SSD [3DNAND] ME 2.5" U.2 (P4600) + 8086 4714 NVMe Datacenter SSD [3DNAND] ME AIC (P4600) + 8086 4802 NVMe Datacenter SSD [3DNAND] SE 2.5" U.2 (P4510) + 8086 4804 NVMe Datacenter SSD [3DNAND] SE AIC (P4510) + 8086 4805 NVMe Datacenter SSD [3DNAND] SE M.2 (P4511) + 8086 4812 NVMe Datacenter SSD [3DNAND] ME 2.5" U.2 (P4610) + 8086 4814 NVMe Datacenter SSD [3DNAND] ME AIC (P4610) + 0a55 NVMe DC SSD [3DNAND, Beta Rock Controller] + 1028 1fe5 Express Flash NVMe 1.6TB 2.5" U.2 (P4600) + 1028 1fe6 Express Flash NVMe 2TB 2.5" U.2 (P4600) + 1028 1fe7 Express Flash NVMe 3.2TB 2.5" U.2 (P4600) + 1028 1fe8 Express Flash NVMe 2.0TB HHHL AIC (P4600) + 1028 1fe9 Express Flash NVMe 4.0TB HHHL AIC (P4600) + 0b26 Thunderbolt 4 Bridge [Goshen Ridge 2020] + 0b27 Thunderbolt 4 USB Controller [Goshen Ridge 2020] + 0b60 NVMe DC SSD [3DNAND, Sentinel Rock Controller] + 1028 2060 NVMe SED MU U.2 1.6TB (P5600) + 1028 2061 NVMe SED MU U.2 3.2TB (P5600) + 1028 2062 NVMe SED MU U.2 6.4TB (P5600) + 1028 2064 NVMe SED RI U.2 1.92TB (P5500) + 1028 2065 NVMe SED RI U.2 3.84TB (P5500) + 1028 2066 NVMe SED RI U.2 7.68TB (P5500) + 1028 209e NVMe MU U.2 1.6TB (P5600) + 1028 209f NVMe MU U.2 3.2TB (P5600) + 1028 2100 NVMe MU U.2 6.4TB (P5600) + 1028 2102 NVMe RI U.2 1.92TB (P5500) + 1028 2103 NVMe RI U.2 3.84TB (P5500) + 1028 2104 NVMe RI U.2 7.68TB (P5500) + 1028 219a NVMe P5316 RI 15.36TB + 1028 219b NVMe P5316 RI 30.72TB + 1028 219c NVMe SED P5316 RI 15.36 + 1028 219d NVMe SED P5316 RI 30.72 + 1028 219e NVMe FIPS P5316 RI 15.36TB + 1028 219f NVMe FIPS P5316 RI 30.72 + 8086 8008 NVMe Datacenter SSD [3DNAND] SE 2.5" U.2 (P5510) + 8086 8d08 NVMe Datacenter SSD [3DNAND] VE 2.5" U.2 (P5316) + 8086 8d1d NVMe Datacenter SSD [3DNAND] VE E1.L 9.5/18mm (P5316) + 8086 c008 NVMe Datacenter SSD [3DNAND] SE U.2 15mm (P5530) + 0bd0 Ponte Vecchio 2T + 0bd5 Ponte Vecchio 1T + 0be0 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be1 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 105b 0d7c D270S/D250S Motherboard + 0be2 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be3 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be4 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be5 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be6 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be7 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be8 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0be9 Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bea Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0beb Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bec Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bed Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bee Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bef Atom Processor D2xxx/N2xxx Integrated Graphics Controller + 0bf0 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf1 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf2 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf3 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf4 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf5 Atom Processor D2xxx/N2xxx DRAM Controller + 105b 0d7c D270S/D250S Motherboard + 0bf6 Atom Processor D2xxx/N2xxx DRAM Controller + 0bf7 Atom Processor D2xxx/N2xxx DRAM Controller + 0c00 4th Gen Core Processor DRAM Controller + 1028 05d7 Alienware X51 R2 + 103c 1998 EliteDesk 800 G1 + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 0c01 Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller + 0c04 Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller + 103c 1909 ZBook 15 + 17aa 220e ThinkPad T440p + 0c05 Xeon E3-1200 v3/4th Gen Core Processor PCI Express x8 Controller + 0c08 Xeon E3-1200 v3 Processor DRAM Controller + 0c09 Xeon E3-1200 v3/4th Gen Core Processor PCI Express x4 Controller + 0c0c Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 309f ThinkCentre M83 + 0c40 Atom Processor CE 5300 + 0c46 Atom Processor S1200 PCI Express Root Port 1 + 0c47 Atom Processor S1200 PCI Express Root Port 2 + 0c48 Atom Processor S1200 PCI Express Root Port 3 + 0c49 Atom Processor S1200 PCI Express Root Port 4 + 0c4e Atom Processor S1200 NTB Primary + 0c50 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device + 0c51 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device + 0c52 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device + 0c53 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device + 0c54 Atom Processor S1200 Internal + 0c55 Atom Processor S1200 DFX 1 + 0c56 Atom Processor S1200 DFX 2 + 0c59 Atom Processor S1200 SMBus 2.0 Controller 0 + 0c5a Atom Processor S1200 SMBus 2.0 Controller 1 + 0c5b Atom Processor S1200 SMBus Controller 2 + 0c5c Atom Processor S1200 SMBus Controller 3 + 0c5d Atom Processor S1200 SMBus Controller 4 + 0c5e Atom Processor S1200 SMBus Controller 5 + 0c5f Atom Processor S1200 UART + 0c60 Atom Processor S1200 Integrated Legacy Bus + 0c70 Atom Processor S1200 Internal + 0c71 Atom Processor S1200 Internal + 0c72 Atom Processor S1200 Internal + 0c73 Atom Processor S1200 Internal + 0c74 Atom Processor S1200 Internal + 0c75 Atom Processor S1200 Internal + 0c76 Atom Processor S1200 Internal + 0c77 Atom Processor S1200 Internal + 0c78 Atom Processor S1200 Internal + 0c79 Atom Processor S1200 Internal + 0c7a Atom Processor S1200 Internal + 0c7b Atom Processor S1200 Internal + 0c7c Atom Processor S1200 Internal + 0c7d Atom Processor S1200 Internal + 0c7e Atom Processor S1200 Internal + 0c7f Atom Processor S1200 Internal + 0cf8 Ethernet Controller X710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 8086 0000 Ethernet Controller X710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 8086 0001 Ethernet Controller X710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 0d00 Crystal Well DRAM Controller + 0d01 Crystal Well PCI Express x16 Controller + 0d04 Crystal Well DRAM Controller + 0d05 Crystal Well PCI Express x8 Controller + 0d09 Crystal Well PCI Express x4 Controller + 0d0c Crystal Well HD Audio Controller + 0d16 Crystal Well Integrated Graphics Controller + 0d26 Crystal Well Integrated Graphics Controller + 0d36 Crystal Well Integrated Graphics Controller + 0d4c Ethernet Connection (11) I219-LM + 0d4d Ethernet Connection (11) I219-V + 0d4e Ethernet Connection (10) I219-LM + 0d4f Ethernet Connection (10) I219-V + 0d53 Ethernet Connection (12) I219-LM + 0d55 Ethernet Connection (12) I219-V + 0d58 Ethernet Controller XXV710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 8086 0000 Ethernet Controller XXV710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 8086 0001 Ethernet Controller XXV710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking + 0d9f Ethernet Controller (2) I225-IT + 0dd2 Ethernet Network Adapter I710 + 1137 0000 I710T4LG 4x1 GbE RJ45 PCIe NIC + 1137 02e3 I710T4LG 4x1 GbE RJ45 PCIe NIC + 8086 0000 Ethernet Network Adapter I710-T4L + 8086 000d Ethernet Network Adapter I710-T4L + 8086 0010 Ethernet Network Adapter I710-T4L for OCP 3.0 + 8086 401a Ethernet Network Adapter I710-T4L + 8086 401b Ethernet Network Adapter I710-T4L for OCP 3.0 + 0dd5 Ethernet Adaptive Virtual Function + 0dda Ethernet Connection X722 for 10GbE SFP+ + 1bd4 0076 Ethernet Connection F102IX722 for 10GbE SFP + 0e00 Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e01 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port in DMI2 Mode + 0e02 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e03 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1b + 0e04 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a + 0e05 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2b + 0e06 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c + 0e07 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2d + 0e08 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e09 Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3b + 0e0a Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3c + 0e0b Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3d + 0e10 Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers + 0e13 Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers + 0e17 Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers + 0e18 Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers + 0e1c Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers + 0e1d Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe + 0e1e Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers + 0e1f Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers + 0e20 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e21 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e22 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e23 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e24 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e25 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e26 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e27 Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e28 Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e29 Xeon E7 v2/Xeon E5 v2/Core i7 Memory Hotplug + 0e2a Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 15d9 066b X9SRL-F + 0e2c Xeon E7 v2/Xeon E5 v2/Core i7 IOAPIC + 15d9 066b X9SRL-F + 0e2e Xeon E7 v2/Xeon E5 v2/Core i7 CBDMA + 0e2f Xeon E7 v2/Xeon E5 v2/Core i7 CBDMA + 0e30 Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e32 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 + 0e33 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 + 0e34 Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e36 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e37 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring + 0e38 Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 + 0e3a Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 + 0e3e Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring + 0e3f Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring + 0e40 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2 + 0e41 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers + 0e43 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 2 + 0e44 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 2 + 0e45 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register + 0e47 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register + 0e60 Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1 + 0e68 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers + 0e6a Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers + 0e6b Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers + 0e6c Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers + 0e6d Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers + 0e71 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers + 0e74 Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe + 0e75 Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe + 0e77 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers + 0e79 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers + 0e7d Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers + 0e7f Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers + 0e80 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 + 0e81 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0e83 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 0 + 0e84 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 0 + 0e85 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register + 0e87 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Registers + 0e90 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 + 0e93 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 + 0e94 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 1 + 0e95 Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register + 0ea0 Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 + 1028 04f7 Xeon E5 v2 on PowerEdge R320 server + 0ea8 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers + 0eaa Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers + 0eab Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers + 0eac Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers + 0ead Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers + 0eae Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers + 0eaf Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers + 0eb0 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 + 0eb1 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 + 0eb2 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 + 0eb3 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 + 0eb4 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 + 0eb5 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 + 0eb6 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2 + 0eb7 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 + 0ebc Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers + 0ebe Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers + 0ebf Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers + 0ec0 Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 + 0ec1 Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 + 0ec2 Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 + 0ec3 Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 + 0ec4 Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 4 + 0ec8 Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder + 0ec9 Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers + 0eca Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers + 0ed8 Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0ed9 Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0edc Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0edd Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0ede Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0edf Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0ee0 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee1 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee2 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee3 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee4 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee5 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee6 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee7 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee8 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ee9 Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0eea Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0eeb Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0eec Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0eed Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0eee Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers + 0ef0 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0 + 0ef1 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1 + 0ef2 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0 + 0ef3 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1 + 0ef4 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2 + 0ef5 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3 + 0ef6 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2 + 0ef7 Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3 + 0ef8 Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0ef9 Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0efa Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0efb Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0efc Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0efd Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO + 0f00 Atom Processor Z36xxx/Z37xxx Series SoC Transaction Register + 0f04 Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller + 0f06 Atom Processor Z36xxx/Z37xxx Series LPIO1 DMA Controller + 0f08 Atom Processor Z36xxx/Z37xxx Series LPIO1 PWM Controller + 0f09 Atom Processor Z36xxx/Z37xxx Series LPIO1 PWM Controller + 0f0a Atom Processor Z36xxx/Z37xxx Series LPIO1 HSUART Controller #1 + 0f0c Atom Processor Z36xxx/Z37xxx Series LPIO1 HSUART Controller #2 + 0f0e Atom Processor Z36xxx/Z37xxx Series LPIO1 SPI Controller + 0f12 Atom Processor E3800/CE2700 Series SMBus Controller + 0f14 Atom Processor Z36xxx/Z37xxx Series SDIO Controller + 0f15 Atom Processor Z36xxx/Z37xxx Series SDIO Controller + 0f16 Atom Processor Z36xxx/Z37xxx Series SDIO Controller + 0f18 Atom Processor Z36xxx/Z37xxx Series Trusted Execution Engine + 0f1c Atom Processor Z36xxx/Z37xxx Series Power Control Unit + 0f20 Atom Processor E3800 Series SATA IDE Controller + 0f21 Atom Processor E3800 Series SATA IDE Controller + 0f22 Atom Processor E3800 Series SATA AHCI Controller + 0f23 Atom Processor E3800 Series SATA AHCI Controller + 0f28 Atom Processor Z36xxx/Z37xxx Series LPE Audio Controller + 0f31 Atom Processor Z36xxx/Z37xxx Series Graphics & Display + 0f34 Atom Processor Z36xxx/Z37xxx Series USB EHCI + 0f35 Atom Processor Z36xxx/Z37xxx, Celeron N2000 Series USB xHCI + 1025 0936 Aspire ES1 + 0f37 Atom Processor Z36xxx/Z37xxx Series OTG USB Device + 0f38 Atom Processor Z36xxx/Z37xxx Series Camera ISP + 0f40 Atom Processor Z36xxx/Z37xxx Series LPIO2 DMA Controller + 0f41 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #1 + 0f42 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #2 + 0f43 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #3 + 0f44 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #4 + 0f45 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #5 + 0f46 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #6 + 0f47 Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #7 + 0f48 Atom Processor E3800 Series PCI Express Root Port 1 + 0f4a Atom Processor E3800 Series PCI Express Root Port 2 + 0f4c Atom Processor E3800 Series PCI Express Root Port 3 + 0f4e Atom Processor E3800 Series PCI Express Root Port 4 + 0f50 Atom Processor E3800 Series eMMC 4.5 Controller + 1000 82542 Gigabit Ethernet Controller (Fiber) + 0e11 b0df NC6132 Gigabit Ethernet Adapter (1000-SX) + 0e11 b0e0 NC6133 Gigabit Ethernet Adapter (1000-LX) + 0e11 b123 NC6134 Gigabit Ethernet Adapter (1000-LX) + 1014 0119 Netfinity Gigabit Ethernet SX Adapter + 8086 1000 PRO/1000 Gigabit Server Adapter + 1001 82543GC Gigabit Ethernet Controller (Fiber) + 0e11 004a NC6136 Gigabit Server Adapter + 1014 01ea Netfinity Gigabit Ethernet SX Adapter + 8086 1002 PRO/1000 F Server Adapter + 8086 1003 PRO/1000 F Server Adapter + 1002 Pro 100 LAN+Modem 56 Cardbus II + 8086 200e Pro 100 LAN+Modem 56 Cardbus II + 8086 2013 Pro 100 SR Mobile Combo Adapter + 8086 2017 Pro 100 S Combo Mobile Adapter + 1004 82543GC Gigabit Ethernet Controller (Copper) + 0e11 0049 NC7132 Gigabit Upgrade Module + 0e11 b1a4 NC7131 Gigabit Server Adapter + 1014 10f2 Gigabit Ethernet Server Adapter + 8086 1004 PRO/1000 T Server Adapter + 8086 2004 PRO/1000 T Server Adapter + 1008 82544EI Gigabit Ethernet Controller (Copper) + 1014 0269 iSeries 1000/100/10 Ethernet Adapter + 1028 011b PowerEdge 1650/2550 + 1028 011c PRO/1000 XT Network Connection + 8086 1107 PRO/1000 XT Server Adapter + 8086 2107 PRO/1000 XT Server Adapter + 8086 2110 PRO/1000 XT Desktop Adapter + 8086 3108 PRO/1000 XT Network Connection + 1009 82544EI Gigabit Ethernet Controller (Fiber) + 1014 0268 iSeries Gigabit Ethernet Adapter + 8086 1109 PRO/1000 XF Server Adapter + 8086 2109 PRO/1000 XF Server Adapter + 100a 82540EM Gigabit Ethernet Controller + 100c 82544GC Gigabit Ethernet Controller (Copper) + 8086 1112 PRO/1000 T Desktop Adapter + 8086 2112 PRO/1000 T Desktop Adapter + 100d 82544GC Gigabit Ethernet Controller (LOM) + 1028 0123 PRO/1000 XT Network Connection + 1079 891f 82544GC Based Network Connection + 4c53 1080 CT8 mainboard + 8086 110d 82544GC Based Network Connection + 100e 82540EM Gigabit Ethernet Controller + 1014 0265 PRO/1000 MT Network Connection + 1014 0267 PRO/1000 MT Network Connection + 1014 026a PRO/1000 MT Network Connection + 1028 002e Optiplex GX260 + 1028 0134 PowerEdge 600SC + 1028 0151 Optiplex GX270 + 107b 8920 PRO/1000 MT Desktop Adapter + 1af4 1100 QEMU Virtual Machine + 8086 001e PRO/1000 MT Desktop Adapter + 8086 002e PRO/1000 MT Desktop Adapter + 8086 1376 PRO/1000 GT Desktop Adapter + 8086 1476 PRO/1000 GT Desktop Adapter + 100f 82545EM Gigabit Ethernet Controller (Copper) + 1014 0269 iSeries 1000/100/10 Ethernet Adapter + 1014 028e PRO/1000 MT Network Connection + 15ad 0750 PRO/1000 MT Single Port Adapter + 8086 1000 PRO/1000 MT Network Connection + 8086 1001 PRO/1000 MT Server Adapter + 1010 82546EB Gigabit Ethernet Controller (Copper) + 0e11 00db NC7170 Gigabit Server Adapter + 1014 027c PRO/1000 MT Dual Port Network Adapter + 15ad 0760 PRO/1000 MT Dual Port Adapter + 18fb 7872 RESlink-X + 1fc1 0026 Niagara 2260 Bypass Card + 4c53 1080 CT8 mainboard + 4c53 10a0 CA3/CR3 mainboard + 8086 1011 PRO/1000 MT Dual Port Server Adapter + 8086 1012 PRO/1000 MT Dual Port Server Adapter + 8086 101a PRO/1000 MT Dual Port Network Connection + 8086 3424 SE7501HG2 Mainboard + 1011 82545EM Gigabit Ethernet Controller (Fiber) + 1014 0268 iSeries Gigabit Ethernet Adapter + 8086 1002 PRO/1000 MF Server Adapter + 8086 1003 PRO/1000 MF Server Adapter (LX) + 1012 82546EB Gigabit Ethernet Controller (Fiber) + 0e11 00dc NC6170 Gigabit Server Adapter + 8086 1012 PRO/1000 MF Dual Port Server Adapter + 1013 82541EI Gigabit Ethernet Controller + 8086 0013 PRO/1000 MT Network Connection + 8086 1013 PRO/1000 MT Network Connection + 8086 1113 PRO/1000 MT Desktop Adapter + 1014 82541ER Gigabit Ethernet Controller + 8086 0014 PRO/1000 MT Desktop Connection + 8086 1014 PRO/1000 MT Network Connection + 1015 82540EM Gigabit Ethernet Controller (LOM) + 8086 1015 PRO/1000 MT Mobile Connection + 1016 82540EP Gigabit Ethernet Controller (Mobile) + 1014 052c PRO/1000 MT Mobile Connection + 1179 0001 PRO/1000 MT Mobile Connection + 8086 1016 PRO/1000 MT Mobile Connection + 1017 82540EP Gigabit Ethernet Controller + 8086 1017 PR0/1000 MT Desktop Connection + 1018 82541EI Gigabit Ethernet Controller + 8086 1018 PRO/1000 MT Mobile Connection + 1019 82547EI Gigabit Ethernet Controller + 1458 1019 GA-8IPE1000 Pro2 motherboard (865PE) + 1458 e000 Intel Gigabit Ethernet (Kenai II) + 8086 1019 PRO/1000 CT Desktop Connection + 8086 301f D865PERL mainboard + 8086 3025 D875PBZ motherboard + 8086 302c D865GBF Mainboard + 8086 3427 S875WP1-E mainboard + 101a 82547EI Gigabit Ethernet Controller (Mobile) + 8086 101a PRO/1000 CT Mobile Connection + 101d 82546EB Gigabit Ethernet Controller + 8086 1000 PRO/1000 MT Quad Port Server Adapter + 101e 82540EP Gigabit Ethernet Controller (Mobile) + 1014 0549 Thinkpad + 1179 0001 PRO/1000 MT Mobile Connection + 8086 101e PRO/1000 MT Mobile Connection + 101f Ethernet Controller V710 for 5GBASE-T + 1026 82545GM Gigabit Ethernet Controller + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 8086 1000 PRO/1000 MT Server Connection + 8086 1001 PRO/1000 MT Server Adapter + 8086 1002 PRO/1000 MT Server Adapter + 8086 1003 PRO/1000 GT Server Adapter + 8086 1026 PRO/1000 MT Server Connection + 1027 82545GM Gigabit Ethernet Controller + 103c 3103 NC310F PCI-X Gigabit Server Adapter + 8086 1001 PRO/1000 MF Server Adapter(LX) + 8086 1002 PRO/1000 MF Server Adapter(LX) + 8086 1003 PRO/1000 MF Server Adapter(LX) + 8086 1027 PRO/1000 MF Server Adapter + 1028 82545GM Gigabit Ethernet Controller + 8086 1028 PRO/1000 MB Server Connection + 1029 82559 Ethernet Controller + 1030 82559 InBusiness 10/100 + 1031 82801CAM (ICH3) PRO/100 VE (LOM) Ethernet Controller + 1014 0209 ThinkPad A/T/X Series + 104d 80e7 Vaio PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 104d 813c Vaio PCG-GRV616G + 107b 5350 EtherExpress PRO/100 VE + 1179 0001 EtherExpress PRO/100 VE + 144d c000 EtherExpress PRO/100 VE + 144d c001 EtherExpress PRO/100 VE + 144d c003 EtherExpress PRO/100 VE + 144d c006 vpr Matrix 170B4 + 1032 82801CAM (ICH3) PRO/100 VE Ethernet Controller + 1033 82801CAM (ICH3) PRO/100 VM (LOM) Ethernet Controller + 1034 82801CAM (ICH3) PRO/100 VM Ethernet Controller + 1035 82801CAM (ICH3)/82562EH (LOM) Ethernet Controller + 1036 82801CAM (ICH3) 82562EH Ethernet Controller + 1037 82801CAM (ICH3) Chipset Ethernet Controller + 1038 82801CAM (ICH3) PRO/100 VM (KM) Ethernet Controller + 0e11 0098 Evo N600c + 1039 82801DB PRO/100 VE (LOM) Ethernet Controller + 1014 0267 NetVista A30p + 114a 0582 PC8 onboard ethernet ETH1 + 103a 82801DB PRO/100 VE (CNR) Ethernet Controller + 103b 82801DB PRO/100 VM (LOM) Ethernet Controller + 103c 82801DB PRO/100 VM (CNR) Ethernet Controller + 103d 82801DB PRO/100 VE (MOB) Ethernet Controller + 1014 0522 ThinkPad R40 + 1028 2002 Latitude D500 + 8086 103d 82562EZ 10/100 Ethernet Controller + 103e 82801DB PRO/100 VM (MOB) Ethernet Controller + 1040 536EP Data Fax Modem + 16be 1040 V.9X DSP Data Fax Modem + 1043 PRO/Wireless LAN 2100 3B Mini PCI Adapter + 103c 08b0 tc1100 tablet + 8086 2522 Samsung X10/P30 integrated WLAN + 8086 2527 MIM2000/Centrino + 8086 2561 Dell Latitude D800 + 8086 2581 Toshiba Satellite M10 + 1048 82597EX 10GbE Ethernet Controller + 8086 a01f PRO/10GbE LR Server Adapter + 8086 a11f PRO/10GbE LR Server Adapter + 1049 82566MM Gigabit Network Connection + 103c 30c1 Compaq 6910p + 17aa 20b9 ThinkPad T61/R61 + 104a 82566DM Gigabit Network Connection + 104b 82566DC Gigabit Network Connection + 104c 82562V 10/100 Network Connection + 104d 82566MC Gigabit Network Connection + 104e Ethernet Controller X710 for 10 Gigabit SFP+ + 104f Ethernet Controller X710 for 10 Gigabit backplane + 1050 82562EZ 10/100 Ethernet Controller + 1014 0287 ThinkCentre S50 + 1028 019d Dimension 3000 + 1462 728c 865PE Neo2 (MS-6728) + 1462 758c MS-6758 (875P Neo) + 8086 3020 D865PERL mainboard + 8086 302f Desktop Board D865GBF + 8086 3427 S875WP1-E mainboard + 1051 82801EB/ER (ICH5/ICH5R) integrated LAN Controller + 1052 PRO/100 VM Network Connection + 1053 PRO/100 VM Network Connection + 1054 PRO/100 VE Network Connection + 1055 PRO/100 VM Network Connection + 1056 PRO/100 VE Network Connection + 1057 PRO/100 VE Network Connection + 1059 82551QM Ethernet Controller + 105b 82546GB Gigabit Ethernet Controller (Copper) + 105e 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) + 103c 7044 NC360T PCI Express Dual Port Gigabit Server Adapter + 103c 704e Dual Port 1000Base-T (PCIe) [AD337A] + 1775 1100 CR11/VR11 Single Board Computer + 1775 6003 Telum GE-QT + 18df 1214 2x 1GbE, PCIe x1, dual Intel 82571EB chips + 8086 005e PRO/1000 PT Dual Port Server Connection + 8086 105e PRO/1000 PT Dual Port Network Connection + 8086 10d5 82571PT Gigabit PT Quad Port Server ExpressModule + 8086 115e PRO/1000 PT Dual Port Server Adapter + 8086 125e PRO/1000 PT Dual Port Server Adapter + 8086 135e PRO/1000 PT Dual Port Server Adapter + 105f 82571EB Gigabit Ethernet Controller + 103c 704f Dual Port 1000Base-SX (PCIe) [AD338A] + 8086 005a PRO/1000 PF Dual Port Server Adapter + 8086 115f PRO/1000 PF Dual Port Server Adapter + 8086 125f PRO/1000 PF Dual Port Server Adapter + 8086 135f PRO/1000 PF Dual Port Server Adapter + 1060 82571EB Gigabit Ethernet Controller + 8086 0060 PRO/1000 PB Dual Port Server Connection + 8086 1060 PRO/1000 PB Dual Port Server Connection + 1064 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller + 1043 80f8 P5GD1-VW Mainboard + 1065 82562ET/EZ/GT/GZ - PRO/100 VE Ethernet Controller + 1066 82562 EM/EX/GX - PRO/100 VM (LOM) Ethernet Controller + 1067 82562 EM/EX/GX - PRO/100 VM Ethernet Controller + 1068 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller Mobile + 103c 30d5 530 Laptop + 1069 82562EM/EX/GX - PRO/100 VM (LOM) Ethernet Controller Mobile + 106a 82562G - PRO/100 VE (LOM) Ethernet Controller + 106b 82562G - PRO/100 VE Ethernet Controller Mobile + 1075 82547GI Gigabit Ethernet Controller + 1028 0165 PowerEdge 750 + 8086 0075 PRO/1000 CT Network Connection + 8086 1075 PRO/1000 CT Network Connection + 1076 82541GI Gigabit Ethernet Controller + 1028 0165 PRO/1000 MT Network Connection + 1028 016d PRO/1000 MT Network Connection + 1028 019a PRO/1000 MT Network Connection + 1028 106d PRO/1000 MT Network Connection + 8086 0076 PRO/1000 MT Network Connection + 8086 1076 PRO/1000 MT Network Connection + 8086 1176 PRO/1000 MT Desktop Adapter + 8086 1276 PRO/1000 MT Network Adapter + 1077 82541GI Gigabit Ethernet Controller + 1179 0001 PRO/1000 MT Mobile Connection + 8086 0077 PRO/1000 MT Mobile Connection + 8086 1077 PRO/1000 MT Mobile Connection + 1078 82541ER Gigabit Ethernet Controller + 8086 1078 82541ER-based Network Connection + 1079 82546GB Gigabit Ethernet Controller + 103c 12a6 Dual Port 1000Base-T [A9900A] + 103c 12cf Core Dual Port 1000Base-T [AB352A] + 1775 10d0 V5D Single Board Computer Gigabit Ethernet + 1775 ce90 CE9 + 1fc1 0027 Niagara 2261 Failover NIC + 4c53 1090 Cx9 / Vx9 mainboard + 4c53 10b0 CL9 mainboard + 8086 0079 PRO/1000 MT Dual Port Network Connection + 8086 1079 PRO/1000 MT Dual Port Network Connection + 8086 1179 PRO/1000 MT Dual Port Server Adapter + 8086 117a PRO/1000 MT Dual Port Server Adapter + 107a 82546GB Gigabit Ethernet Controller + 103c 12a8 Dual Port 1000base-SX [A9899A] + 8086 107a PRO/1000 MF Dual Port Server Adapter + 8086 127a PRO/1000 MF Dual Port Server Adapter + 107b 82546GB Gigabit Ethernet Controller + 8086 007b PRO/1000 MB Dual Port Server Connection + 8086 107b PRO/1000 MB Dual Port Server Connection + 107c 82541PI Gigabit Ethernet Controller + 8086 1376 PRO/1000 GT Desktop Adapter + 8086 1476 PRO/1000 GT Desktop Adapter + 107d 82572EI Gigabit Ethernet Controller (Copper) + 8086 1082 PRO/1000 PT Server Adapter + 8086 1084 PRO/1000 PT Server Adapter + 8086 1092 PRO/1000 PT Server Adapter + 107e 82572EI Gigabit Ethernet Controller (Fiber) + 8086 1084 PRO/1000 PF Server Adapter + 8086 1085 PRO/1000 PF Server Adapter + 8086 1094 PRO/1000 PF Server Adapter + 107f 82572EI Gigabit Ethernet Controller + 1080 FA82537EP 56K V.92 Data/Fax Modem PCI + 1081 631xESB/632xESB LAN Controller Copper + 1082 631xESB/632xESB LAN Controller fiber + 1083 631xESB/632xESB LAN Controller SERDES + 1084 631xESB/632xESB IDE Redirection + 1085 631xESB/632xESB Serial Port Redirection + 1086 631xESB/632xESB IPMI/KCS0 + 1087 631xESB/632xESB UHCI Redirection + 1089 631xESB/632xESB BT + 108a 82546GB Gigabit Ethernet Controller + 8086 108a PRO/1000 P Dual Port Server Adapter + 8086 118a PRO/1000 P Dual Port Server Adapter + 108b 82573V Gigabit Ethernet Controller (Copper) + 1462 176c on board on MSI 945P - NEO (MS-7176) + 108c 82573E Gigabit Ethernet Controller (Copper) + 108e 82573E KCS (Active Management) + 108f Active Management Technology - SOL + 1091 PRO/100 VM Network Connection + 1092 PRO/100 VE Network Connection + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 1093 PRO/100 VM Network Connection + 1094 PRO/100 VE Network Connection + 1095 PRO/100 VE Network Connection + 1096 80003ES2LAN Gigabit Ethernet Controller (Copper) + 15d9 1096 Motherboard + 15d9 8680 X7DVL-E-O motherboard + 8086 3476 S5000PSLSATA Server Board + 1097 631xESB/632xESB DPT LAN Controller (Fiber) + 1098 80003ES2LAN Gigabit Ethernet Controller (Serdes) + 1099 82546GB Gigabit Ethernet Controller (Copper) + 8086 1099 PRO/1000 GT Quad Port Server Adapter + 109a 82573L Gigabit Ethernet Controller + 1179 ff10 PRO/1000 PL + 17aa 2001 ThinkPad T60 + 17aa 207e ThinkPad X60/X60s + 8086 109a PRO/1000 PL Network Connection + 8086 309c Desktop Board D945GTP + 8086 30a5 Desktop Board D975XBX + 109b 82546GB PRO/1000 GF Quad Port Server Adapter + 109e 82597EX 10GbE Ethernet Controller + 8086 a01f PRO/10GbE CX4 Server Adapter + 8086 a11f PRO/10GbE CX4 Server Adapter + 10a0 82571EB PRO/1000 AT Quad Port Bypass Adapter + 10a1 82571EB PRO/1000 AF Quad Port Bypass Adapter + 10a4 82571EB Gigabit Ethernet Controller + 8086 10a4 PRO/1000 PT Quad Port Server Adapter + 8086 11a4 PRO/1000 PT Quad Port Server Adapter + 10a5 82571EB Gigabit Ethernet Controller (Fiber) + 8086 10a5 PRO/1000 PF Quad Port Server Adapter + 8086 10a6 PRO/1000 PF Quad Port Server Adapter + 10a6 82599EB 10-Gigabit Dummy Function + 10a7 82575EB Gigabit Network Connection + 8086 10a8 82575EB Gigabit Riser Card + 10a9 82575EB Gigabit Backplane Connection + 10b0 82573L PRO/1000 PL Network Connection + 10b2 82573V PRO/1000 PM Network Connection + 10b3 82573E PRO/1000 PM Network Connection + 10b4 82573L PRO/1000 PL Network Connection + 10b5 82546GB Gigabit Ethernet Controller (Copper) + 103c 3109 NC340T PCI-X Quad-port Gigabit Server Adapter + 8086 1099 PRO/1000 GT Quad Port Server Adapter + 8086 1199 PRO/1000 GT Quad Port Server Adapter + 10b6 82598 10GbE PCI-Express Ethernet Controller + 10b9 82572EI Gigabit Ethernet Controller (Copper) + 103c 704a 110T PCIe Gigabit Server Adapter + 8086 1083 PRO/1000 PT Desktop Adapter + 8086 1093 PRO/1000 PT Desktop Adapter + 10ba 80003ES2LAN Gigabit Ethernet Controller (Copper) + 10bb 80003ES2LAN Gigabit Ethernet Controller (Serdes) + 10bc 82571EB/82571GB Gigabit Ethernet Controller (Copper) + 1014 0368 4-Port 10/100/1000 Base-TX PCI Express Adapter for POWER + 103c 704b NC364T PCI Express Quad Port Gigabit Server Adapter +# 375-3481-01 REV:50 + 108e 11bc Quad Port Adapter + 8086 10bc PRO/1000 PT Quad Port LP Server Adapter + 8086 11bc PRO/1000 PT Quad Port LP Server Adapter (Kirkwood Low Profile) + 10bd 82566DM-2 Gigabit Network Connection + 1028 0211 OptiPlex 755 + 10bf 82567LF Gigabit Network Connection + 10c0 82562V-2 10/100 Network Connection + 1028 020d Inspiron 530 + 10c2 82562G-2 10/100 Network Connection + 10c3 82562GT-2 10/100 Network Connection + 10c4 82562GT 10/100 Network Connection + 10c5 82562G 10/100 Network Connection + 10c6 82598EB 10-Gigabit AF Dual Port Network Connection + 8086 a05f 10-Gigabit XF SR Dual Port Server Adapter + 8086 a15f 10-Gigabit XF SR Dual Port Server Adapter + 10c7 82598EB 10-Gigabit AF Network Connection + 1014 037f 10-Gigabit XF SR Server Adapter + 1014 0380 10-Gigabit XF LR Server Adapter + 8086 a05f 10-Gigabit XF SR Server Adapter + 8086 a15f 10-Gigabit XF SR Server Adapter + 8086 a16f 10-Gigabit XF SR Server Adapter + 10c8 82598EB 10-Gigabit AT Network Connection + 8086 a10c 10-Gigabit AT Server Adapter + 8086 a11c 10-Gigabit AT Server Adapter + 8086 a12c 10-Gigabit AT Server Adapter + 10c9 82576 Gigabit Network Connection + 103c 31ef NC362i Integrated Dual port Gigabit Server Adapter + 103c 323f NC362i Integrated Dual port Gigabit Server Adapter + 10a9 8028 UV-BaseIO dual-port GbE + 13a3 0037 DS4100 Secure Multi-Gigabit Server Adapter with Compression + 15d9 a811 H8DGU + 8086 a01c Gigabit ET Dual Port Server Adapter + 8086 a03c Gigabit ET Dual Port Server Adapter + 8086 a04c Gigabit ET Dual Port Server Adapter + 10ca 82576 Virtual Function + 10cb 82567V Gigabit Network Connection + 10cc 82567LM-2 Gigabit Network Connection + 10cd 82567LF-2 Gigabit Network Connection + 10ce 82567V-2 Gigabit Network Connection + 10d3 82574L Gigabit Network Connection + 103c 1785 NC112i 1-port Ethernet Server Adapter + 103c 3250 NC112T PCI Express single Port Gigabit Server Adapter + 1043 8369 Motherboard + 1093 76e9 PCIe-8233 Ethernet Adapter + 10a9 8029 Prism XL Single Port Gigabit Ethernet + 15d9 0605 X8SIL + 15d9 060a X7SPA-H/X7SPA-HF Motherboard + 15d9 060d C7SIM-Q Motherboard + 8086 0001 Gigabit CT2 Desktop Adapter + 8086 3578 Server Board S1200BTLR + 8086 357a Server Board S1200BTS + 8086 a01f Gigabit CT Desktop Adapter + e4bf 50c1 PC1-GROOVE + e4bf 50c2 PC2-LIMBO + 10d4 Matrox Concord GE (customized Intel 82574) + 10d5 82571PT Gigabit PT Quad Port Server ExpressModule + 10d6 82575GB Gigabit Network Connection + 8086 10d6 Gigabit VT Quad Port Server Adapter + 8086 145a Gigabit VT Quad Port Server Adapter + 8086 147a Gigabit VT Quad Port Server Adapter + 10d8 82599EB 10 Gigabit Unprogrammed + 10d9 82571EB Dual Port Gigabit Mezzanine Adapter + 103c 1716 NC360m Dual Port 1GbE BL-c Adapter + 10da 82571EB Quad Port Gigabit Mezzanine Adapter + 103c 1717 NC364m Quad Port 1GbE BL-c Adapter + 10db 82598EB 10-Gigabit Dual Port Network Connection + 10dd 82598EB 10-Gigabit AT CX4 Network Connection + 10de 82567LM-3 Gigabit Network Connection + 10df 82567LF-3 Gigabit Network Connection + 10e1 82598EB 10-Gigabit AF Dual Port Network Connection + 8086 a15f 10-Gigabit SR Dual Port Express Module + 10e2 82575GB Gigabit Network Connection + 8086 10e2 Gigabit VT Quad Port Server Adapter + 10e5 82567LM-4 Gigabit Network Connection + 10e6 82576 Gigabit Network Connection + 8086 a01f Gigabit EF Dual Port Server Adapter + 8086 a02f Gigabit EF Dual Port Server Adapter + 10e7 82576 Gigabit Network Connection + 103c 31ff NC362i Integrated Dual Port BL-c Gigabit Server Adapter + 10e8 82576 Gigabit Network Connection + 8086 a02b Gigabit ET Quad Port Server Adapter + 8086 a02c Gigabit ET Quad Port Server Adapter + 10ea 82577LM Gigabit Network Connection + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + e4bf 50c1 PC1-GROOVE + 10eb 82577LC Gigabit Network Connection + 10ec 82598EB 10-Gigabit AT CX4 Network Connection + 8086 a01f 10-Gigabit CX4 Dual Port Server Adapter + 8086 a11f 10-Gigabit CX4 Dual Port Server Adapter + 10ed 82599 Ethernet Controller Virtual Function + 10ef 82578DM Gigabit Network Connection + 1028 02da OptiPlex 980 + 15d9 060d C7SIM-Q Motherboard + 10f0 82578DC Gigabit Network Connection + 10f1 82598EB 10-Gigabit AF Dual Port Network Connection + 8086 a20f 10-Gigabit AF DA Dual Port Server Adapter + 8086 a21f 10-Gigabit AF DA Dual Port Server Adapter + 10f4 82598EB 10-Gigabit AF Network Connection + 8086 106f 10-Gigabit XF LR Server Adapter + 8086 a06f 10-Gigabit XF LR Server Adapter + 10f5 82567LM Gigabit Network Connection + 17aa 20ee ThinkPad T400 + 10f6 82574L Gigabit Network Connection + 10f7 10 Gigabit BR KX4 Dual Port Network Connection + 108e 7b12 Sun Dual 10GbE PCIe 2.0 FEM + 8086 000d Ethernet Mezzanine Adapter X520-KX4-2 + 10f8 82599 10 Gigabit Dual Port Backplane Connection + 1028 1f63 10GbE 2P X520k bNDC + 103c 17d2 Ethernet 10Gb 2-port 560M Adapter + 103c 18d0 Ethernet 10Gb 2-port 560FLB Adapter + 1059 0111 T4007 10GbE interface + 1059 0130 T4009 10GbE interface + 8086 000c Ethernet X520 10GbE Dual Port KX4-KR Mezz + 10f9 82599 10 Gigabit Dual Port Network Connection + 10fb 82599ES 10-Gigabit SFI/SFP+ Network Connection + 1028 1f72 Ethernet 10G 4P X520/I350 rNDC + 103c 17d0 Ethernet 10Gb 2-port 560FLR-SFP+ Adapter + 103c 17d2 Ethernet 10Gb 2-port 560M Adapter + 103c 17d3 Ethernet 10Gb 2-port 560SFP+ Adapter + 103c 211b Ethernet 10Gb 1-port P560FLR-SFP+ Adapter + 103c 2147 Ethernet 10Gb 1-port 561i Adapter + 103c 2159 Ethernet 10Gb 2-port 562i Adapter + 108e 7b11 Ethernet Server Adapter X520-2 + 1170 004c 82599 DP 10G Mezzanine Adapter + 1374 1a08 PE310G4SPI9/PE310G4SPI9L/PE310G4SPI9LA Quad Port Fiber 10 Gigabit Ethernet PCI Express Server Adapter + 15d9 0611 AOC-STGN-i2S + 1734 11a9 10 Gigabit Dual Port Network Connection + 17aa 1071 ThinkServer X520-2 AnyFabric + 17aa 4007 82599ES 10-Gigabit SFI/SFP+ Network Connection + 17aa 402b 82599ES 10Gb 2-port Server Adapter X520-DA2 + 17aa 402f FPGA Card XC7VX690T-3FFG1157E + 18d4 0c09 82599ES 10Gb 2-port SFP+ OCP Mezz Card MOP81-I-10GS2 + 193d 1004 560F-B + 1bd4 001b 10G SFP+ DP ER102Fi4 Rack Adapter + 1bd4 002f 10G SFP+ DP EP102Fi4A Adapter + 1bd4 0032 10G SFP+ DP EP102Fi4 Adapter + 1bd4 0067 F102I82599 + 8086 0002 Ethernet Server Adapter X520-DA2 + 8086 0003 Ethernet Server Adapter X520-2 + 8086 0006 Ethernet Server Adapter X520-1 + 8086 0008 Ethernet OCP Server Adapter X520-2 + 8086 000a Ethernet Server Adapter X520-1 + 8086 000c Ethernet Server Adapter X520-2 + 8086 10a6 82599ES 10Gb 2 port Server Adapter X520-DA2 + 8086 7a11 Ethernet Server Adapter X520-2 + 8086 7a12 Ethernet Server Adapter X520-2 + 10fc 82599 10 Gigabit Dual Port Network Connection + 10fe 82552 10/100 Network Connection + 1107 PRO/1000 MF Server Adapter (LX) + 1130 82815 815 Chipset Host Bridge and Memory Controller Hub + 1025 1016 Travelmate 612 TX + 1043 8027 TUSL2-C Mainboard + 104d 80df Vaio PCG-FX403 + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 4557 D815EGEW Mainboard + 1131 82815 815 Chipset AGP Bridge + 1132 82815 Chipset Graphics Controller (CGC) + 1025 1016 Travelmate 612 TX + 103c 2001 e-pc 40 + 104d 80df Vaio PCG-FX403 + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 4541 D815EEA Motherboard + 8086 4557 D815EGEW Mainboard + 1136 Thunderbolt 4 Bridge [Maple Ridge 4C 2020] + 1137 Thunderbolt 4 NHI [Maple Ridge 4C 2020] + 1138 Thunderbolt 4 USB Controller [Maple Ridge 4C 2020] + 1161 82806AA PCI64 Hub Advanced Programmable Interrupt Controller + 8086 1161 82806AA PCI64 Hub APIC + 1162 Xscale 80200 Big Endian Companion Chip + 1190 Merrifield SD/SDIO/eMMC Controller + 1191 Merrifield Serial IO HSUART Controller + 1192 Merrifield Serial IO HSUART DMA Controller + 1194 Merrifield Serial IO SPI Controller + 1195 Merrifield Serial IO I2C Controller + 1196 Merrifield Serial IO I2C Controller + 1199 Merrifield GPIO Controller + 119e Merrifield USB Device Controller (OTG) + 11a0 Merrifield SCU IPC + 11a1 Merrifield Power Management Unit + 11a2 Merrifield Serial IO DMA Controller + 11a5 Merrifield Serial IO PWM Controller + 11c3 Quark SoC X1000 PCIe Root Port 0 + 11c4 Quark SoC X1000 PCIe Root Port 1 + 1200 IXP1200 Network Processor + 172a 0000 AEP SSL Accelerator + 1209 8255xER/82551IT Fast Ethernet Controller + 140b 0610 PMC610 quad Ethernet board + 1af4 1100 QEMU Virtual Machine + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 4c53 1070 PC6 mainboard + 1221 82092AA PCI to PCMCIA Bridge + 1222 82092AA IDE Controller + 1223 SAA7116 + 1225 82452KX/GX [Orion] + 1226 82596 PRO/10 PCI + 1227 82865 EtherExpress PRO/100A + 1228 82556 EtherExpress PRO/100 Smart + 1229 82557/8/9/0/1 Ethernet Pro 100 + 0e11 3001 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3002 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3003 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3004 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3005 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3006 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 3007 82559 Fast Ethernet LOM with Alert on LAN* + 0e11 b01e NC3120 Fast Ethernet NIC + 0e11 b01f NC3122 Fast Ethernet NIC (dual port) + 0e11 b02f NC1120 Ethernet NIC + 0e11 b04a Netelligent 10/100TX NIC with Wake on LAN + 0e11 b0c6 NC3161 Fast Ethernet NIC (embedded, WOL) + 0e11 b0c7 NC3160 Fast Ethernet NIC (embedded) + 0e11 b0d7 NC3121 Fast Ethernet NIC (WOL) + 0e11 b0dd NC3131 Fast Ethernet NIC (dual port) + 0e11 b0de NC3132 Fast Ethernet Module (dual port) + 0e11 b0e1 NC3133 Fast Ethernet Module (100-FX) + 0e11 b134 NC3163 Fast Ethernet NIC (embedded, WOL) + 0e11 b13c NC3162 Fast Ethernet NIC (embedded) + 0e11 b144 NC3123 Fast Ethernet NIC (WOL) + 0e11 b163 NC3134 Fast Ethernet NIC (dual port) + 0e11 b164 NC3135 Fast Ethernet Upgrade Module (dual port) + 0e11 b1a4 NC7131 Gigabit Server Adapter + 1014 005c 82558B Ethernet Pro 10/100 + 1014 01bc 82559 Fast Ethernet LAN On Motherboard + 1014 01f1 10/100 Ethernet Server Adapter + 1014 01f2 10/100 Ethernet Server Adapter + 1014 0207 Ethernet Pro/100 S + 1014 0232 10/100 Dual Port Server Adapter + 1014 023a ThinkPad R30 + 1014 105c Netfinity 10/100 + 1014 2205 ThinkPad A22p + 1014 305c 10/100 EtherJet Management Adapter + 1014 405c 10/100 EtherJet Adapter with Alert on LAN + 1014 505c 10/100 EtherJet Secure Management Adapter + 1014 605c 10/100 EtherJet Secure Management Adapter + 1014 705c 10/100 Netfinity 10/100 Ethernet Security Adapter + 1014 805c 10/100 Netfinity 10/100 Ethernet Security Adapter + 1028 009b 10/100 Ethernet Server Adapter + 1028 00ce 10/100 Ethernet Server Adapter + 1033 8000 PC-9821X-B06 + 1033 8016 PK-UG-X006 + 1033 801f PK-UG-X006 + 1033 8026 PK-UG-X006 + 1033 8063 82559-based Fast Ethernet Adapter + 1033 8064 82559-based Fast Ethernet Adapter + 103c 10c0 NetServer 10/100TX + 103c 10c3 NetServer 10/100TX + 103c 10ca NetServer 10/100TX + 103c 10cb NetServer 10/100TX + 103c 10e3 NetServer 10/100TX + 103c 10e4 NetServer 10/100TX + 103c 1200 NetServer 10/100TX + 108e 10cf EtherExpress PRO/100(B) + 10c3 1100 SmartEther100 SC1100 + 10cf 1115 8255x-based Ethernet Adapter (10/100) + 10cf 1143 8255x-based Ethernet Adapter (10/100) + 110a 008b 82551QM Fast Ethernet Multifuction PCI/CardBus Controller + 114a 0582 PC8 onboard ethernet ETH2 + 1179 0001 8255x-based Ethernet Adapter (10/100) + 1179 0002 PCI FastEther LAN on Docker + 1179 0003 8255x-based Fast Ethernet + 1259 2560 AT-2560 100 + 1259 2561 AT-2560 100 FX Ethernet Adapter + 1266 0001 NE10/100 Adapter + 13e9 1000 6221L-4U + 144d 2501 SEM-2000 MiniPCI LAN Adapter + 144d 2502 SEM-2100IL MiniPCI LAN Adapter + 1668 1100 EtherExpress PRO/100B (TX) (MiniPCI Ethernet+Modem) + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 1af4 1100 QEMU Virtual Machine + 4c53 1080 CT8 mainboard + 4c53 10e0 PSL09 PrPMC + 8086 0001 EtherExpress PRO/100B (TX) + 8086 0002 EtherExpress PRO/100B (T4) + 8086 0003 EtherExpress PRO/10+ + 8086 0004 EtherExpress PRO/100 WfM + 8086 0005 82557 10/100 + 8086 0006 82557 10/100 with Wake on LAN + 8086 0007 82558 10/100 Adapter + 8086 0008 82558 10/100 with Wake on LAN + 8086 0009 82558B PRO/100+ PCI (TP) + 8086 000a EtherExpress PRO/100+ Management Adapter + 8086 000b EtherExpress PRO/100+ + 8086 000c EtherExpress PRO/100+ Management Adapter + 8086 000d EtherExpress PRO/100+ Alert On LAN II* Adapter + 8086 000e EtherExpress PRO/100+ Management Adapter with Alert On LAN* + 8086 000f EtherExpress PRO/100 Desktop Adapter + 8086 0010 EtherExpress PRO/100 S Management Adapter + 8086 0011 EtherExpress PRO/100 S Management Adapter + 8086 0012 EtherExpress PRO/100 S Advanced Management Adapter (D) + 8086 0013 EtherExpress PRO/100 S Advanced Management Adapter (E) + 8086 0030 EtherExpress PRO/100 Management Adapter with Alert On LAN* GC + 8086 0031 EtherExpress PRO/100 Desktop Adapter + 8086 0040 EtherExpress PRO/100 S Desktop Adapter + 8086 0041 EtherExpress PRO/100 S Desktop Adapter + 8086 0042 EtherExpress PRO/100 Desktop Adapter + 8086 0050 EtherExpress PRO/100 S Desktop Adapter + 8086 1009 EtherExpress PRO/100+ Server Adapter + 8086 100c EtherExpress PRO/100+ Server Adapter (PILA8470B) + 8086 1012 EtherExpress PRO/100 S Server Adapter (D) + 8086 1013 EtherExpress PRO/100 S Server Adapter (E) + 8086 1015 EtherExpress PRO/100 S Dual Port Server Adapter + 8086 1017 EtherExpress PRO/100+ Dual Port Server Adapter + 8086 1030 EtherExpress PRO/100+ Management Adapter with Alert On LAN* G Server + 8086 1040 EtherExpress PRO/100 S Server Adapter + 8086 1041 EtherExpress PRO/100 S Server Adapter + 8086 1042 EtherExpress PRO/100 Server Adapter + 8086 1050 EtherExpress PRO/100 S Server Adapter + 8086 1051 EtherExpress PRO/100 Server Adapter + 8086 1052 EtherExpress PRO/100 Server Adapter + 8086 10f0 EtherExpress PRO/100+ Dual Port Adapter + 8086 1229 82557/8/9 [Ethernet Pro 100] + 8086 2009 EtherExpress PRO/100 S Mobile Adapter + 8086 200d EtherExpress PRO/100 Cardbus + 8086 200e EtherExpress PRO/100 LAN+V90 Cardbus Modem + 8086 200f EtherExpress PRO/100 SR Mobile Adapter + 8086 2010 EtherExpress PRO/100 S Mobile Combo Adapter + 8086 2013 EtherExpress PRO/100 SR Mobile Combo Adapter + 8086 2016 EtherExpress PRO/100 S Mobile Adapter + 8086 2017 EtherExpress PRO/100 S Combo Mobile Adapter + 8086 2018 EtherExpress PRO/100 SR Mobile Adapter + 8086 2019 EtherExpress PRO/100 SR Combo Mobile Adapter + 8086 2101 EtherExpress PRO/100 P Mobile Adapter + 8086 2102 EtherExpress PRO/100 SP Mobile Adapter + 8086 2103 EtherExpress PRO/100 SP Mobile Adapter + 8086 2104 EtherExpress PRO/100 SP Mobile Adapter + 8086 2105 EtherExpress PRO/100 SP Mobile Adapter + 8086 2106 EtherExpress PRO/100 P Mobile Adapter + 8086 2107 EtherExpress PRO/100 Network Connection + 8086 2108 EtherExpress PRO/100 Network Connection + 8086 2200 EtherExpress PRO/100 P Mobile Combo Adapter + 8086 2201 EtherExpress PRO/100 P Mobile Combo Adapter + 8086 2202 EtherExpress PRO/100 SP Mobile Combo Adapter + 8086 2203 EtherExpress PRO/100+ MiniPCI + 8086 2204 EtherExpress PRO/100+ MiniPCI + 8086 2205 EtherExpress PRO/100 SP Mobile Combo Adapter + 8086 2206 EtherExpress PRO/100 SP Mobile Combo Adapter + 8086 2207 EtherExpress PRO/100 SP Mobile Combo Adapter + 8086 2208 EtherExpress PRO/100 P Mobile Combo Adapter + 8086 2402 EtherExpress PRO/100+ MiniPCI + 8086 2407 EtherExpress PRO/100+ MiniPCI + 8086 2408 EtherExpress PRO/100+ MiniPCI + 8086 2409 EtherExpress PRO/100+ MiniPCI + 8086 240f EtherExpress PRO/100+ MiniPCI + 8086 2410 EtherExpress PRO/100+ MiniPCI + 8086 2411 EtherExpress PRO/100+ MiniPCI + 8086 2412 EtherExpress PRO/100+ MiniPCI + 8086 2413 EtherExpress PRO/100+ MiniPCI + 8086 3000 82559 Fast Ethernet LAN on Motherboard + 8086 3001 82559 Fast Ethernet LOM with Basic Alert on LAN* + 8086 3002 82559 Fast Ethernet LOM with Alert on LAN II* + 8086 3006 EtherExpress PRO/100 S Network Connection + 8086 3007 EtherExpress PRO/100 S Network Connection + 8086 3008 EtherExpress PRO/100 Network Connection + 8086 3010 EtherExpress PRO/100 S Network Connection + 8086 3011 EtherExpress PRO/100 S Network Connection + 8086 3012 EtherExpress PRO/100 Network Connection + 8086 301a S845WD1-E mainboard + 8086 3411 SDS2 Mainboard + 122d 430FX - 82437FX TSC [Triton I] + 122e 82371FB PIIX ISA [Triton I] + 1230 82371FB PIIX IDE [Triton I] + 1231 DSVD Modem + 1234 430MX - 82371MX Mobile PCI I/O IDE Xcelerator (MPIIX) + 1235 430MX - 82437MX Mob. System Ctrlr (MTSC) & 82438MX Data Path (MTDP) + 1237 440FX - 82441FX PMC [Natoma] + 1af4 1100 Qemu virtual machine + 1239 82371FB PIIX IDE Interface + 123b 82380PB PCI to PCI Docking Bridge + 123c 82380AB (MISA) Mobile PCI-to-ISA Bridge + 123d 683053 Programmable Interrupt Device + 123e 82466GX (IHPC) Integrated Hot-Plug Controller (hidden mode) + 123f 82466GX Integrated Hot-Plug Controller (IHPC) + 1240 82752 (752) AGP Graphics Accelerator + 124b 82380FB (MPCI2) Mobile Docking Controller + 124c Ethernet Connection E823-L for backplane + 124d Ethernet Connection E823-L for SFP + 124e Ethernet Connection E823-L/X557-AT 10GBASE-T + 124f Ethernet Connection E823-L 1GbE + 1250 430HX - 82439HX TXC [Triton II] + 1360 82806AA PCI64 Hub PCI Bridge + 1361 82806AA PCI64 Hub Controller (HRes) + 8086 1361 82806AA PCI64 Hub Controller (HRes) + 8086 8000 82806AA PCI64 Hub Controller (HRes) + 1460 82870P2 P64H2 Hub PCI Bridge + 1461 82870P2 P64H2 I/OxAPIC + 15d9 3480 P4DP6 + 4c53 1090 Cx9/Vx9 mainboard + 1462 82870P2 P64H2 Hot Plug Controller + 1501 82567V-3 Gigabit Network Connection + 1502 82579LM Gigabit Network Connection (Lewisville) + 1028 04a3 Precision M4600 + 17aa 21ce ThinkPad T520 + 8086 3578 Server Board S1200BTLR + 8086 357a Server Board S1200BTS + 1503 82579V Gigabit Network Connection + 1043 849c P8P67 Deluxe Motherboard + 10cf 161c LIFEBOOK E752 + 8086 200d DH61CR motherboard + 1507 Ethernet Express Module X520-P2 + 1508 82598EB Gigabit BX Network Connection + 1509 82580 Gigabit Network Connection + 150a 82576NS Gigabit Network Connection + 150b 82598EB 10-Gigabit AT2 Server Adapter + 8086 a10c 82598EB 10-Gigabit AT2 Server Adapter + 8086 a11c 82598EB 10-Gigabit AT2 Server Adapter + 8086 a12c 82598EB 10-Gigabit AT2 Server Adapter + 150c 82583V Gigabit Network Connection + 150d 82576 Gigabit Backplane Connection + 8086 a10c Gigabit ET Quad Port Mezzanine Card + 150e 82580 Gigabit Network Connection + 103c 1780 NC365T 4-port Ethernet Server Adapter + 8086 12a1 Ethernet Server Adapter I340-T4 + 8086 12a2 Ethernet Server Adapter I340-T4 + 150f 82580 Gigabit Fiber Network Connection + 1510 82580 Gigabit Backplane Connection + 1511 82580 Gigabit SFP Connection + 1513 CV82524 Thunderbolt Controller [Light Ridge 4C 2010] + 1514 Ethernet X520 10GbE Dual Port KX4 Mezz + 8086 000b Ethernet X520 10GbE Dual Port KX4 Mezz + 1515 X540 Ethernet Controller Virtual Function + 1516 82580 Gigabit Network Connection + 8086 12b1 Ethernet Server Adapter I340-T2 + 8086 12b2 Ethernet Server Adapter I340-T2 + 1517 82599ES 10 Gigabit Network Connection + 1137 006a UCS CNA M61KR-I Intel Converged Network Adapter + 1518 82576NS SerDes Gigabit Network Connection + 151a DSL2310 Thunderbolt Controller [Eagle Ridge 2C 2011] + 151b CVL2510 Thunderbolt Controller [Light Peak 2C 2010] + 151c 82599 10 Gigabit TN Network Connection + 108e 7b13 Dual 10GBASE-T LP + 151d Ethernet Connection E823-L for QSFP + 1520 I350 Ethernet Controller Virtual Function + 1521 I350 Gigabit Network Connection + 1028 0602 Gigabit 2P I350-t LOM + 1028 0693 Gigabit 2P I350-t LOM + 1028 06e2 Gigabit 2P I350-t LOM + 1028 0757 Gigabit I350-t LOM + 1028 075a Gigabit I350-t LOM + 1028 1f60 Gigabit 4P I350-t rNDC + 1028 1f62 Gigabit 4P X540/I350 rNDC + 1028 1fa8 Ethernet 10G 4P X550/I350 rNDC + 1028 1fa9 Ethernet 10G 4P X550 rNDC + 1028 1faa Gigabit 4P X550/I350 rNDC + 1028 ff9a Gigabit 4P X710/I350 rNDC + 103c 17d1 Ethernet 1Gb 4-port 366FLR Adapter + 103c 2003 Ethernet 1Gb 2-port 367i Adapter + 103c 2226 Ethernet 1Gb 1-port 364i Adapter + 103c 337f Ethernet 1Gb 2-port 361i Adapter + 103c 3380 Ethernet 1Gb 4-port 366i Adapter + 103c 339e Ethernet 1Gb 2-port 361T Adapter + 103c 8157 Ethernet 1Gb 4-port 366T Adapter + 108e 7b16 Quad Port GbE PCIe 2.0 ExpressModule, UTP + 108e 7b18 Quad Port GbE PCIe 2.0 Low Profile Adapter, UTP + 1093 7648 PCIe-8237R Ethernet Adapter + 1093 7649 PCIe-8236 Ethernet Adapter + 1093 76b1 PCIe-8237R-S Ethernet Adapter + 1093 775b PCIe-8237 Ethernet Adapter + 10a9 802a UV2-BaseIO dual-port GbE + 1137 023e 1GigE I350 LOM + 15d9 0000 AOC-SGP-i4 + 15d9 0652 Dual Port i350 GbE MicroLP [AOC-CGP-i2] + 17aa 1074 ThinkServer I350-T4 AnyFabric + 17aa 4005 I350 Gigabit Network Connection + 18d4 0c07 I350 1Gb 2-port RJ45 OCP Mezz Card MOP41-I-1GT2 + 193d 1005 360T-B + 193d 1007 360T-L +# NIC-ETH360T-3S-4P OCP3.0 4x1G Base-T Card + 193d 1080 NIC-ETH360T-3S-4P + 1bd4 001d 1G base-T QP EP014Ti1 Adapter + 1bd4 0035 1G base-T QP EP014Ti1 Adapter + 1bd4 0066 F014I350 + 8086 0001 Ethernet Server Adapter I350-T4 + 8086 0002 Ethernet Server Adapter I350-T2 + 8086 0003 Ethernet Network Adapter I350-T4 for OCP NIC 3.0 + 8086 00a1 Ethernet Server Adapter I350-T4 + 8086 00a2 Ethernet Server Adapter I350-T2 + 8086 00a3 Ethernet Network Adapter I350-T4 for OCP NIC 3.0 + 8086 00aa Ethernet Network Adapter I350-T4 for OCP NIC 3.0 + 8086 4017 Ethernet Network Adapter I350-T4 for OCP NIC 3.0 + 8086 5001 Ethernet Server Adapter I350-T4 + 8086 5002 Ethernet Server Adapter I350-T2 + 8086 5003 Ethernet 1G 4P I350-t OCP + 1522 I350 Gigabit Fiber Network Connection + 108e 7b17 Quad Port GbE PCIe 2.0 ExpressModule, MMF + 108e 7b19 Dual Port GbE PCIe 2.0 Low Profile Adapter, MMF + 8086 0002 Ethernet Server Adapter I350-T2 + 8086 0003 Ethernet Server Adapter I350-F4 + 8086 0004 Ethernet Server Adapter I350-F2 + 8086 0005 Ethernet Server Adapter I350-F1 + 8086 00a2 Ethernet Server Adapter I350-T2 + 8086 00a3 Ethernet Server Adapter I350-F4 + 8086 00a4 Ethernet Server Adapter I350-F2 + 1523 I350 Gigabit Backplane Connection + 1028 0060 Gigabit 2P I350 LOM + 1028 1f9b Gigabit 4P I350-t bNDC + 103c 1784 Ethernet 1Gb 2-port 361FLB Adapter + 103c 18d1 Ethernet 1Gb 2-port 361FLB Adapter + 103c 1989 Ethernet 1Gb 2-port 363i Adapter + 103c 339f Ethernet 1Gb 4-port 366M Adapter + 8086 1f52 1GbE 4P I350 Mezz + 1524 I350 Gigabit Connection + 1525 82567V-4 Gigabit Network Connection + 1526 82576 Gigabit Network Connection + 8086 a05c Gigabit ET2 Quad Port Server Adapter + 8086 a06c Gigabit ET2 Quad Port Server Adapter + 1527 82580 Gigabit Fiber Network Connection + 8086 0001 Ethernet Server Adapter I340-F4 + 8086 0002 Ethernet Server Adapter I340-F4 + 1528 Ethernet Controller 10-Gigabit X540-AT2 + 1028 1f61 Ethernet 10G 4P X540/I350 rNDC + 103c 192d 561FLR-T 2-port 10Gb Ethernet Adapter + 103c 2004 Ethernet 10Gb 2-port 561i Adapter + 103c 211a Ethernet 10Gb 2-port 561T Adapter + 108e 4853 Ethernet Controller 10-Gigabit X540-AT2 + 108e 7b14 Sun Dual Port 10 GbE PCIe 2.0 ExpressModule, Base-T + 108e 7b15 Sun Dual Port 10 GbE PCIe 2.0 Low Profile Adapter, Base-T + 1137 00bf Ethernet Converged Network Adapter X540-T2 + 1170 0052 Ethernet Controller 10-Gigabit X540-AT2 + 15d9 0734 AOC-STG-I2T + 17aa 1073 ThinkServer X540-T2 AnyFabric + 17aa 4006 Ethernet Controller 10-Gigabit X540-AT2 + 1bd4 001a 10G base-T DP ER102Ti3 Rack Adapter + 1bd4 0033 10G base-T DP EP102Ti3 Adapter + 1bd4 0034 10G base-T DP EP102Ti3A Adapter + 8086 0001 Ethernet Converged Network Adapter X540-T2 + 8086 0002 Ethernet Converged Network Adapter X540-T1 + 8086 001a Ethernet Converged Network Adapter X540-T2 + 8086 00a2 Ethernet Converged Network Adapter X540-T1 + 8086 1f61 Ethernet 10G 4P X540/I350 rNDC + 8086 5003 Ethernet 10G 2P X540-t Adapter + 8086 5004 Ethernet 10G 2P X540-t Adapter + 1529 82599 10 Gigabit Dual Port Network Connection with FCoE + 152a 82599 10 Gigabit Dual Port Backplane Connection with FCoE + 152e 82599 Virtual Function + 152f I350 Virtual Function + 1530 X540 Virtual Function + 1531 I210 Gigabit Unprogrammed + 1533 I210 Gigabit Network Connection + 1028 0b35 I210 Gigabit Network Connection + 103c 0003 Ethernet I210-T1 GbE NIC + 1059 0180 RD10019 1GbE interface + 1093 7706 Compact Vision System Ethernet Adapter + 10a9 802c UV300 BaseIO single-port GbE + 10a9 802d UV3000 BaseIO GbE Network + 17aa 1100 ThinkServer Ethernet Server Adapter + 8086 0001 Ethernet Server Adapter I210-T1 + 8086 0002 Ethernet Server Adapter I210-T1 + 1536 I210 Gigabit Fiber Network Connection + 1537 I210 Gigabit Backplane Connection + 1059 0110 T4005 1GbE interface + 1059 0111 T4007 1GbE interface + 1059 0120 T4008 1GbE interface + 1059 0130 T4009 1GbE interface + 1059 0140 T2035 1GbE interface + 1059 0150 RD-01068 1GbE interface + 1059 0170 RD-01213 10GbE interface + 1538 I210 Gigabit Network Connection + 1539 I211 Gigabit Network Connection + 153a Ethernet Connection I217-LM + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 309f ThinkCentre M83 + 153b Ethernet Connection I217-V + 1547 DSL3510 Thunderbolt Controller [Cactus Ridge 4C 2012] + 1548 DSL3310 Thunderbolt Controller [Cactus Ridge 2C 2012] + 1549 DSL2210 Thunderbolt Controller [Port Ridge 1C 2011] + 154a Ethernet Server Adapter X520-4 + 8086 011a Ethernet Converged Network Adapter X520-4 + 8086 011b Ethernet Converged Network Adapter X520-4 + 8086 011c Ethernet Converged Network Adapter X520-4 + 154c Ethernet Virtual Function 700 Series + 154d Ethernet 10G 2P X520 Adapter + 8086 7b11 10GbE 2P X520 Adapter + 1557 82599 10 Gigabit Network Connection + 17aa 4008 82599EN 10 Gigabit Network Connection + 1bd4 001c 10G SFP+ SP ER101Fi4 Rack Adapter + 1bd4 0030 10G SFP+ SP EP101Fi4A Adapter + 8086 0001 Ethernet OCP Server Adapter X520-1 + 1558 Ethernet Converged Network Adapter X520-Q1 + 8086 011a Ethernet Converged Network Adapter X520-Q1 + 8086 011b Ethernet Converged Network Adapter X520-Q1 + 1559 Ethernet Connection I218-V + 155a Ethernet Connection I218-LM + 17aa 2214 ThinkPad X240 + 155c Ethernet Server Bypass Adapter + 8086 0001 Ethernet Server Bypass Adapter X540-T2 + 155d Ethernet Server Bypass Adapter + 8086 0001 Ethernet Server Bypass Adapter X520-SR2 + 8086 0002 Ethernet Server Bypass Adapter X520-LR2 + 1560 Ethernet Controller X540 + 1563 Ethernet Controller 10G X550T + 1028 1fa8 Ethernet 10G 4P X550/I350 rNDC + 1028 1fa9 Ethernet 10G 4P X550 rNDC + 1137 02b2 X550-TX 10 Gig LOM + 1137 02b3 X550-TX 10 Gig LOM + 1170 0001 Intel Ethernet Controller X550-T2 OCP card + 14c0 1201 X550 10Gb 2P RJ45 OCP Mezz + 1590 00d1 Ethernet 10Gb 2-port 562T Adapter + 1590 00d2 Ethernet 10Gb 2-port 562FLR-T Adapter + 16b8 7217 Twin10G Thunderbolt 3 Edition + 18d4 0c08 X550 10Gb 2-port RJ45 OCP Mezz Card MOP81-I-10GT2 + 193d 1008 560T-B + 193d 1009 560T-L + 193d 1011 UN-NIC-ETH563T-sL-2P + 8086 0001 Ethernet Converged Network Adapter X550-T2 + 8086 001a Ethernet Converged Network Adapter X550-T2 + 8086 001b Ethernet Server Adapter X550-T2 for OCP + 8086 001d Ethernet 10G 2P X550-t Adapter + 8086 0022 Ethernet Converged Network Adapter X550-T2 + 1564 X550 Virtual Function + 1565 X550 Virtual Function + 1566 DSL4410 Thunderbolt NHI [Redwood Ridge 2C 2013] + 1567 DSL4410 Thunderbolt Bridge [Redwood Ridge 2C 2013] + 1568 DSL4510 Thunderbolt NHI [Redwood Ridge 4C 2013] + 1569 DSL4510 Thunderbolt Bridge [Redwood Ridge 4C 2013] + 156a DSL5320 Thunderbolt 2 NHI [Falcon Ridge 2C 2013] + 156b DSL5320 Thunderbolt 2 Bridge [Falcon Ridge 2C 2013] + 156c DSL5520 Thunderbolt 2 NHI [Falcon Ridge 4C 2013] + 156d DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013] + 156f Ethernet Connection I219-LM + 1028 06dc Latitude E7470 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 1570 Ethernet Connection I219-V + 1571 Ethernet Virtual Function 700 Series + 1572 Ethernet Controller X710 for 10GbE SFP+ + 1028 0000 Ethernet 10G X710 rNDC + 1028 1f99 Ethernet 10G 4P X710/I350 rNDC + 1028 1f9c Ethernet 10G 4P X710 SFP+ rNDC + 103c 0000 Ethernet 10Gb 562SFP+ Adapter + 103c 22fc Ethernet 10Gb 2-port 562FLR-SFP+ Adapter + 103c 22fd Ethernet 10Gb 2-port 562SFP+ Adapter + 1137 0000 Ethernet Converged NIC X710-DA + 1137 013b Ethernet Converged NIC X710-DA4 + 1137 020a Ethernet Converged NIC X710-DA2 + 1590 0000 Ethernet Controller X710 for 10GbE SFP+ + 1590 0225 Ethernet 10GbE 4P 563SFP+ Adapter + 1590 022f Ethernet 10Gb 2-port 564i Communication Board + 17aa 0000 ThinkServer X710 AnyFabric for 10GbE SFP+ + 17aa 4001 ThinkServer X710-4 AnyFabric for 10GbE SFP+ + 17aa 4002 ThinkServer X710-2 AnyFabric for 10GbE SFP+ + 193d 1020 NIC-ETH561F-sL-4x10G + 193d 1021 NIC-ETH561F-sL-2x10G +# NIC-ETH561F-3S-2P OCP3.0 2x10G SFP+ Card + 193d 1081 NIC-ETH561F-3S-2P + 19e5 d11c Ethernet 2-port X710 10Gb SFP+ Adapter SP330 + 1bd4 0042 10G SFP+ DP EP102Fi4 Adapter + 1bd4 0056 Ethernet Network Adapter X710-BM2 for OCP NIC 3.0 + 1bd4 0065 F102IX710 + 1bd4 0074 Ethernet Network Adapter X710-BM2 for lldp + 8086 0000 Ethernet Converged Network Adapter X710 + 8086 0001 Ethernet Converged Network Adapter X710-4 + 8086 0002 Ethernet Converged Network Adapter X710-4 + 8086 0004 Ethernet Converged Network Adapter X710-4 + 8086 0005 Ethernet 10G 4P X710 Adapter + 8086 0006 Ethernet 10G 2P X710 Adapter + 8086 0007 Ethernet Converged Network Adapter X710-2 + 8086 0008 Ethernet Converged Network Adapter X710-2 + 8086 0009 Ethernet Controller X710 for 10GbE SFP+ + 8086 000a Ethernet Controller X710 for 10GbE SFP+ + 8086 000b Ethernet Server Adapter X710-DA2 for OCP + 8086 000d Ethernet Controller X710 for 10GbE SFP+ + 8086 000e Ethernet Server Adapter OCP X710-2 + 8086 000f Ethernet Server Adapter OCP X710-2 + 8086 0010 Ethernet Converged Network Adapter X710 + 8086 0011 Ethernet Network Adapter X710-2 for OCP NIC 3.0 + 8086 0012 Ethernet Network Adapter X710-4 for OCP NIC 3.0 + 8086 0013 Ethernet 10G 2P X710 OCP + 8086 0014 Ethernet 10G 4P X710 OCP + 8086 0015 Ethernet Server Adapter X710-DA2 for OCP + 8086 00a1 Ethernet Network Adapter X710-2 for OCP NIC 3.0 + 8086 00a2 Ethernet Network Adapter X710-4 for OCP NIC 3.0 + 8086 4005 Ethernet Controller X710 for 10GbE SFP+ + 8086 4006 Ethernet Controller X710 for 10GbE SFP+ + 8086 4007 Ethernet Controller X710 for 10GbE SFP+ + 1574 Ethernet Controller XL710 Emulation + 1575 DSL6340 Thunderbolt 3 NHI [Alpine Ridge 2C 2015] + 1576 DSL6340 Thunderbolt 3 Bridge [Alpine Ridge 2C 2015] + 1577 DSL6540 Thunderbolt 3 NHI [Alpine Ridge 4C 2015] + 1578 DSL6540 Thunderbolt 3 Bridge [Alpine Ridge 4C 2015] + 157b I210 Gigabit Network Connection + ea50 cc10 RXi2-BP + 157c I210 Gigabit Backplane Connection + 157d DSL5110 Thunderbolt 2 NHI (Low Power) [Win Ridge 2C 2014] + 157e DSL5110 Thunderbolt 2 Bridge (Low Power) [Win Ridge 2C 2014] + 1580 Ethernet Controller XL710 for 40GbE backplane + 1581 Ethernet Controller X710 for 10GbE backplane + 1028 0000 Ethernet 10G X710-k bNDC + 1028 1f98 Ethernet 10G 4P X710-k bNDC + 1028 1f9e Ethernet 10G 2P X710-k bNDC + 1059 0150 RD-01068 10GbE-KR interface + 1059 0170 RD-01213 10GbE interface + 1590 0000 Ethernet 2-port 563i Adapter + 1590 00f8 Ethernet 2-port 563i Adapter + 193d 100e NIC-ETH561i-Mb-4x10G + 8086 0000 Ethernet Converged Network Adapter XL710-Q2 + 1583 Ethernet Controller XL710 for 40GbE QSFP+ + 1028 0000 Ethernet 40G 2P XL710 QSFP+ rNDC + 1028 1f9f Ethernet 40G 2P XL710 QSFP+ rNDC + 108e 0000 10 Gb/40 Gb Ethernet Adapter + 108e 7b1b 10 Gb/40 Gb Ethernet Adapter + 108e 7b1d 10Gb/40Gb Ethernet Adapter + 1137 0000 Ethernet Converged NIC XL710-QDA2 + 1137 013c Ethernet Converged NIC XL710-QDA2 + 8086 0000 Ethernet Converged Network Adapter XL710-Q2 + 8086 0001 Ethernet Converged Network Adapter XL710-Q2 + 8086 0002 Ethernet Converged Network Adapter XL710-Q2 + 8086 0003 Ethernet I/O Module XL710-Q2 + 8086 0004 Ethernet Server Adapter XL710-Q2OCP + 8086 0006 Ethernet Converged Network Adapter XL710-Q2 + 1584 Ethernet Controller XL710 for 40GbE QSFP+ + 8086 0000 Ethernet Converged Network Adapter XL710-Q1 + 8086 0001 Ethernet Converged Network Adapter XL710-Q1 + 8086 0002 Ethernet Converged Network Adapter XL710-Q1 + 8086 0003 Ethernet I/O Module XL710-Q1 + 8086 0004 Ethernet Server Adapter XL710-Q1OCP + 1585 Ethernet Controller X710 for 10GbE QSFP+ + 1586 Ethernet Controller X710 for 10GBASE-T + 108e 0000 Ethernet Controller X710 for 10GBASE-T + 108e 4857 Ethernet Controller X710 for 10GBASE-T + 1587 Ethernet Controller XL710 for 20GbE backplane + 103c 0000 Ethernet 10/20Gb 2-port 660FLB Adapter + 103c 22fe Ethernet 10/20Gb 2-port 660FLB Adapter + 1588 Ethernet Controller XL710 for 20GbE backplane + 103c 0000 Ethernet 10/20Gb 2-port 660M Adapter + 103c 22ff Ethernet 10/20Gb 2-port 660M Adapter + 1137 0000 Ethernet Network Adapter XXV710 + 1137 02b4 Ethernet Network Adapter XXV710 OCP 2.0 + 1589 Ethernet Controller X710/X557-AT 10GBASE-T + 108e 0000 Quad Port 10GBase-T Adapter + 108e 7b1c Quad Port 10GBase-T Adapter + 8086 0000 Ethernet Converged Network Adapter X710-T + 8086 0001 Ethernet Converged Network Adapter X710-T4 + 8086 0002 Ethernet Converged Network Adapter X710-T4 + 8086 0003 Ethernet Converged Network Adapter X710-T + 8086 00a0 Ethernet Converged Network Adapter X710-T4 + 8086 1003 Ethernet Converged Network Adapter X710-T + 158a Ethernet Controller XXV710 for 25GbE backplane + 1590 0000 10/25Gb Ethernet Adapter + 1590 0286 Synergy 4610C 10/25Gb Ethernet Adapter + 8086 0000 Ethernet Controller XXV710 for 25GbE backplane + 8086 000a Ethernet 25G 2P XXV710 Mezz + 158b Ethernet Controller XXV710 for 25GbE SFP28 + 1137 0000 Ethernet Network Adapter XXV710 + 1137 0225 Ethernet Network Adapter XXV710 + 1137 02b4 Ethernet Network Adapter XXV710 OCP 2.0 +# UEFI PXE Disabled + 1374 0230 Single Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G1I71) +# With UEFI PXE Enabled + 1374 0231 Single Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G1I71EU) +# UEFI PXE Disabled + 1374 0234 Dual Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G2I71) +# With UEFI PXE Enabled + 1374 0235 Dual Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G2I71EU) +# PCIe x8 Bifurcated as x4x4, UEFI PXE Disabled, low profile + 1374 0238 Quad Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G4I71L) +# PCIe x8 Bifurcated as x4x4, UEFI PXE Enabled, low profile + 1374 0239 Quad Port 25 Gigabit Ethernet PCI Express Server Adapter (PE325G4I71LEU) +# PCIe x16 Bifurcated as x8x8, UEFI PXE Disabled, low profile + 1374 023a Quad Port 25 Gigabit Ethernet PCI Express Server Adapter (PE31625G4I71L) +# PCIe x16 Bifurcated as x8x8, UEFI PXE Enabled, low profile + 1374 023b Quad Port 25 Gigabit Ethernet PCI Express Server Adapter (PE31625G4I71LEU) + 1590 0000 Ethernet Network Adapter XXV710-2 + 1590 0253 Ethernet 10/25/Gb 2-port 661SFP28 Adapter + 8086 0000 Ethernet Network Adapter XXV710 + 8086 0001 Ethernet Network Adapter XXV710-2 + 8086 0002 Ethernet Network Adapter XXV710-2 + 8086 0003 Ethernet Network Adapter XXV710-1 + 8086 0004 Ethernet Network Adapter XXV710-1 + 8086 0005 Ethernet Network Adapter OCP XXV710-2 + 8086 0006 Ethernet Network Adapter OCP XXV710-2 + 8086 0007 Ethernet Network Adapter OCP XXV710-1 + 8086 0008 Ethernet Network Adapter OCP XXV710-1 + 8086 0009 Ethernet 25G 2P XXV710 Adapter + 8086 000a Ethernet 25G 2P XXV710 OCP + 8086 4001 Ethernet Network Adapter XXV710-2 + 1591 Ethernet Controller E810-C for backplane + 1592 Ethernet Controller E810-C for QSFP + 1137 02bf E810CQDA2 2x100 GbE QSFP28 PCIe NIC + 193d 1050 NIC-ETH1060F-LP-2P 2x100GbE Ethernet PCIe Card + 8086 0001 Ethernet Network Adapter E810-C-Q1 + 8086 0002 Ethernet Network Adapter E810-C-Q2 + 8086 0004 Ethernet Network Adapter E810-C-Q2 + 8086 0005 Ethernet Network Adapter E810-C-Q1 for OCP3.0 + 8086 0006 Ethernet Network Adapter E810-C-Q2 for OCP3.0 + 8086 0009 Ethernet Network Adapter E810-C-Q1 + 8086 000a Ethernet Network Adapter E810-C-Q1 for OCP + 8086 000b Ethernet 100G 2P E810-C Adapter + 8086 000c Ethernet 100G 2P E810-C OCP + 8086 000d Ethernet Network Adapter E810-L-Q2 for OCP 3.0 + 8086 000e Ethernet Network Adapter E810-2C-Q2 + 8086 000f Ethernet Network Adapter E810-C-Q2T + 8086 0010 Ethernet 100G 2P E810-C-stg Adapter + 8086 0011 Ethernet Network Adapter E810-C-Q1 for OCP3.0 + 1593 Ethernet Controller E810-C for SFP + 1137 02c3 E810XXVDA4 4x25/10 GbE SFP28 PCIe NIC + 1137 02e9 E810XXVDA4TG 4x25/10 GbE SFP28 PCIe NIC + 1137 02ea E810XXVDA4T 4x25/10 GbE SFP28 PCIe NIC + 8086 0002 Ethernet Network Adapter E810-L-2 + 8086 0005 Ethernet Network Adapter E810-XXV-4 + 8086 0006 Ethernet Network Adapter E810-XXV-4 + 8086 0007 Ethernet Network Adapter E810-XXV-4 + 8086 0008 Ethernet Network Adapter E810-XXV-2 + 8086 0009 Ethernet Network Adapter E810-XXV-2 for OCP 2.0 + 8086 000a Ethernet 25G 4P E810-XXV Adapter + 8086 000c Ethernet Network Adapter E810-XXV-4 for OCP 3.0 + 8086 000d Ethernet 25G 4P E810-XXV OCP + 8086 000e Ethernet Network Adapter E810-XXV-4T + 8086 000f Ethernet 25G 4P E810-XXV-stg Adapter + 8086 0010 Ethernet 25G 4P E810-XXV-st Adapter + 8086 4010 Ethernet Network Adapter E810-XXV-4 + 8086 4013 Ethernet Network Adapter E810-XXV-4 for OCP 3.0 + 1599 Ethernet Controller E810-XXV for backplane + 8086 0001 Ethernet 25G 2P E810-XXV-k Mezz + 159a Ethernet Controller E810-XXV for QSFP + 159b Ethernet Controller E810-XXV for SFP + 1137 02be E810XXVDA2 2x25/10 GbE SFP28 PCIe NIC + 1bd4 0057 Ethernet Network Adapter E810-XXVAM2 + 1bd4 0058 Ethernet Network Adapter E810-XXVAM2 for OCP 3.0 + 1bd4 006e Ethernet Network Adapter E810-XXVAM2 for BD + 1eec 0102 VSE250241E Dual-port 10Gb/25Gb Ethernet PCIe + 8086 0001 Ethernet 25G 2P E810-XXV OCP + 8086 0002 Ethernet 25G 2P E810-XXV Adapter + 8086 0003 Ethernet Network Adapter E810-XXV-2 + 8086 0005 Ethernet Network Adapter E810-XXV-2 for OCP 3.0 + 8086 4001 Ethernet Network Adapter E810-XXV-2 + 8086 4002 Ethernet Network Adapter E810-XXV-2 for OCP 3.0 + 8086 4003 Ethernet Network Adapter E810-XXV-2 + 8086 4015 Ethernet Network Adapter E810-XXV-2 for OCP 3.0 + 15a0 Ethernet Connection (2) I218-LM + 15a1 Ethernet Connection (2) I218-V + 15a2 Ethernet Connection (3) I218-LM + 15a3 Ethernet Connection (3) I218-V + 15a4 Ethernet Switch FM10000 Host Interface + 15a5 Ethernet Switch FM10000 Host Virtual Interface + 15a8 Ethernet Connection X552 Virtual Function + 15a9 X552 Virtual Function + 15aa Ethernet Connection X552 10 GbE Backplane + 1059 0120 T4008 10GbE interface + 15ab Ethernet Connection X552 10 GbE Backplane + 1059 0150 RD-01068 10GbE interface + 1059 0170 RD-01213 10GbE interface + 15ac Ethernet Connection X552 10 GbE SFP+ + 1059 0160 RD-01167 10GbE interface + 15ad Ethernet Connection X552/X557-AT 10GBASE-T + 15ae Ethernet Connection X552 1000BASE-T + 15b0 Ethernet Connection X552 Backplane + 15b4 X553 Virtual Function + 15b5 DSL6340 USB 3.1 Controller [Alpine Ridge] + 15b6 DSL6540 USB 3.1 Controller [Alpine Ridge] + 15b7 Ethernet Connection (2) I219-LM + 15b8 Ethernet Connection (2) I219-V + 1462 7a72 H270 PC MATE + 15b9 Ethernet Connection (3) I219-LM + 15bb Ethernet Connection (7) I219-LM + 15bc Ethernet Connection (7) I219-V + 15bd Ethernet Connection (6) I219-LM + 15be Ethernet Connection (6) I219-V + 15bf JHL6240 Thunderbolt 3 NHI (Low Power) [Alpine Ridge LP 2016] + 15c0 JHL6240 Thunderbolt 3 Bridge (Low Power) [Alpine Ridge LP 2016] + 15c1 JHL6240 Thunderbolt 3 USB 3.1 Controller (Low Power) [Alpine Ridge LP 2016] + 15c2 Ethernet Connection X553 Backplane + 15c3 Ethernet Connection X553 Backplane + 15c4 Ethernet Connection X553 10 GbE SFP+ + 15c5 X553 Virtual Function + 15c6 Ethernet Connection X553 1GbE + 15c7 Ethernet Connection X553 1GbE + 15c8 Ethernet Connection X553/X557-AT 10GBASE-T + 15ce Ethernet Connection X553 10 GbE SFP+ + 15d0 Ethernet SDI Adapter + 8086 0001 Ethernet SDI Adapter FM10420-100GbE-QDA2 + 8086 0002 Ethernet SDI Adapter FM10840-MTP2 + 15d1 Ethernet Controller 10G X550T + 8086 0002 Ethernet Converged Network Adapter X550-T1 + 8086 001b Ethernet Server Adapter X550-T1 for OCP + 8086 0021 Ethernet Converged Network Adapter X550-T1 + 8086 00a2 Ethernet Converged Network Adapter X550-T1 + 15d2 JHL6540 Thunderbolt 3 NHI (C step) [Alpine Ridge 4C 2016] + 15d3 JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016] + 15d4 JHL6540 Thunderbolt 3 USB Controller (C step) [Alpine Ridge 4C 2016] + 15d5 Ethernet SDI Adapter FM10420-25GbE-DA2 + 8086 0001 Ethernet SDI Adapter FM10420-25GbE-DA2 + 15d6 Ethernet Connection (5) I219-V + 15d7 Ethernet Connection (4) I219-LM + 15d8 Ethernet Connection (4) I219-V + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 15d9 JHL6340 Thunderbolt 3 NHI (C step) [Alpine Ridge 2C 2016] + 15da JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016] + 15db JHL6340 Thunderbolt 3 USB 3.1 Controller (C step) [Alpine Ridge 2C 2016] + 15df Ethernet Connection (8) I219-LM + 15e0 Ethernet Connection (8) I219-V + 15e1 Ethernet Connection (9) I219-LM + 15e2 Ethernet Connection (9) I219-V + 15e3 Ethernet Connection (5) I219-LM + 15e4 Ethernet Connection X553 1GbE + 15e5 Ethernet Connection X553 1GbE + 15e7 JHL7540 Thunderbolt 3 Bridge [Titan Ridge 2C 2018] + 15e8 JHL7540 Thunderbolt 3 NHI [Titan Ridge 2C 2018] + 15e9 JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 2C 2018] + 15ea JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018] + 15eb JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018] + 1028 09be Latitude 7410 + 15ec JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018] + 1028 09be Latitude 7410 + 15ef JHL7540 Thunderbolt 3 Bridge [Titan Ridge DD 2018] + 15f0 JHL7540 Thunderbolt 3 USB Controller [Titan Ridge DD 2018] + 15f2 Ethernet Controller I225-LM + 8086 0001 Ethernet Network Adapter I225-T1 + 8086 0002 Ethernet Network Adapter I225-T1 + 15f3 Ethernet Controller I225-V + 8086 0003 Intel(R) Ethernet Controller (3) I225-V + 15f4 Ethernet Connection (15) I219-LM + 15f5 Ethernet Connection (15) I219-V + 15f6 I210 Gigabit Ethernet Connection + 15f9 Ethernet Connection (14) I219-LM + 15fa Ethernet Connection (14) I219-V + 15fb Ethernet Connection (13) I219-LM + 15fc Ethernet Connection (13) I219-V + 15ff Ethernet Controller X710 for 10GBASE-T + 1137 0000 X710TLG GbE RJ45 PCIe NIC + 1137 02c1 X710T2LG 2x10 GbE RJ45 PCIe NIC + 1137 02c2 X710T4LG 4x10 GbE RJ45 PCIe NIC + 1137 02d9 Ethernet Network Adapter X710-T2L OCP 3.0 + 1137 02da Ethernet Network Adapter X710-T4L OCP 3.0 +# NIC-ETH565T-3S-2P OCP3.0 2x10G Base-T Card + 193d 1082 NIC-ETH565T-3S-2P + 8086 0000 Ethernet Network Adapter X710-TL + 8086 0001 Ethernet Network Adapter X710-T4L + 8086 0002 Ethernet Network Adapter X710-T4L + 8086 0003 Ethernet Network Adapter X710-T2L + 8086 0004 Ethernet Network Adapter X710-T2L + 8086 0005 Ethernet 10G 2P X710-T2L-t Adapter + 8086 0006 Ethernet 10G 4P X710-T4L-t Adapter + 8086 0007 Ethernet 10G 2P X710-T2L-t OCP + 8086 0008 Ethernet 10G 4P X710-T4L-t OCP + 8086 0009 Ethernet Network Adapter X710-T4L for OCP 3.0 + 8086 000a Ethernet Network Adapter X710-T4L for OCP 3.0 + 8086 000b Ethernet Network Adapter X710-T2L for OCP 3.0 + 8086 000c Ethernet Network Adapter X710-T2L for OCP 3.0 + 8086 000f Ethernet Network Adapter X710-T2L for OCP 3.0 + 8086 4009 Ethernet Network Adapter X710-T2L + 8086 4012 Ethernet Network Adapter X710-T4L for OCP 3.0 + 8086 4018 Ethernet Network Adapter X710-T2L for OCP 3.0 + 8086 4019 Ethernet Network Adapter X710-T4L + 1600 Broadwell-U Host Bridge -OPI + 1601 Broadwell-U PCI Express x16 Controller + 1602 Broadwell-U Integrated Graphics + 1603 Broadwell-U Processor Thermal Subsystem + 1604 Broadwell-U Host Bridge -OPI + 1605 Broadwell-U PCI Express x8 Controller + 1606 HD Graphics + 1607 Broadwell-U CHAPS Device + 1608 Broadwell-U Host Bridge -OPI + 1609 Broadwell-U x4 PCIe + 160a Broadwell-U Integrated Graphics + 160b Broadwell-U Integrated Graphics + 160c Broadwell-U Audio Controller + 160d Broadwell-U Integrated Graphics + 160e Broadwell-U Integrated Graphics + 160f Broadwell-U SoftSKU + 1610 Broadwell-U Host Bridge - DMI + 1612 HD Graphics 5600 + 1614 Broadwell-U Host Bridge - DMI + 1616 HD Graphics 5500 + 103c 2216 ZBook 15u G2 Mobile Workstation + 1618 Broadwell-U Host Bridge - DMI + 161a Broadwell-U Integrated Graphics + 161b Broadwell-U Integrated Graphics + 161d Broadwell-U Integrated Graphics + 161e HD Graphics 5300 + 1622 Iris Pro Graphics 6200 + 1626 HD Graphics 6000 + 162a Iris Pro Graphics P6300 + 162b Iris Graphics 6100 + 162d Broadwell-U Integrated Graphics + 162e Broadwell-U Integrated Graphics + 1632 Broadwell-U Integrated Graphics + 1636 Broadwell-U Integrated Graphics + 163a Broadwell-U Integrated Graphics + 163b Broadwell-U Integrated Graphics + 163d Broadwell-U Integrated Graphics + 163e Broadwell-U Integrated Graphics + 1889 Ethernet Adaptive Virtual Function + 1890 Ethernet Connection E822-C for backplane + 1891 Ethernet Connection E822-C for QSFP + 1892 Ethernet Connection E822-C for SFP + 1893 Ethernet Connection E822-C/X557-AT 10GBASE-T + 1894 Ethernet Connection E822-C 1GbE + 1897 Ethernet Connection E822-L for backplane + 1898 Ethernet Connection E822-L for SFP + 1899 Ethernet Connection E822-L/X557-AT 10GBASE-T + 189a Ethernet Connection E822-L 1GbE + 18a0 C4xxx Series QAT + 18a1 C4XXX Series QAT Virtual Function + 18ee 200xx Series QAT + 18ef 200xx Series QAT Virtual Function + 1900 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1901 6th-10th Gen Core Processor PCIe Controller (x16) + 1902 HD Graphics 510 + 1903 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e4 XPS 15 9550 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 09be Latitude 7410 + 103c 825b OMEN-17-w001nv + 17aa 225d ThinkPad T480 + 1904 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1028 06dc Latitude E7470 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 382a B51-80 Laptop + 1905 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x8) + 1906 HD Graphics 510 + 17aa 382a B51-80 Laptop + 1908 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1909 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x4) + 190c Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 190f Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1910 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + 1911 Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model + 1028 0869 Vostro 3470 + 1028 09be Latitude 7410 + 1462 7a72 H270 PC MATE + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 1912 HD Graphics 530 + 1916 Skylake GT2 [HD Graphics 520] + 1028 06dc Latitude E7470 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 1918 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1919 Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Imaging Unit + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 191b HD Graphics 530 + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + 191d HD Graphics P530 + 191e HD Graphics 515 + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 191f Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers + 1921 HD Graphics 520 + 1926 Iris Graphics 540 + 1927 Iris Graphics 550 + 192b Iris Graphics 555 + 192d Iris Graphics P555 + 1932 Iris Pro Graphics 580 + 193a Iris Pro Graphics P580 + 193b Iris Pro Graphics 580 + 193d Iris Pro Graphics P580 + 1960 80960RP (i960RP) Microprocessor + 101e 0431 MegaRAID 431 RAID Controller + 101e 0438 MegaRAID 438 Ultra2 LVD RAID Controller + 101e 0466 MegaRAID 466 Express Plus RAID Controller + 101e 0467 MegaRAID 467 Enterprise 1500 RAID Controller + 101e 0490 MegaRAID 490 Express 300 RAID Controller + 101e 0762 MegaRAID 762 Express RAID Controller + 101e 09a0 PowerEdge Expandable RAID Controller 2/SC + 1028 0467 PowerEdge Expandable RAID Controller 2/DC + 1028 1111 PowerEdge Expandable RAID Controller 2/SC + 103c 03a2 MegaRAID + 103c 10c6 MegaRAID 438, NetRAID-3Si + 103c 10c7 MegaRAID T5, Integrated NetRAID + 103c 10cc MegaRAID, Integrated NetRAID + 103c 10cd NetRAID-1Si + 105a 0000 SuperTrak + 105a 2168 SuperTrak Pro + 105a 5168 SuperTrak66/100 + 1111 1111 MegaRAID 466, PowerEdge Expandable RAID Controller 2/SC + 1111 1112 PowerEdge Expandable RAID Controller 2/SC + 113c 03a2 MegaRAID + e4bf 1010 CG1-RADIO + e4bf 1020 CU2-QUARTET + e4bf 1040 CU1-CHORUS + e4bf 3100 CX1-BAND + 1962 80960RM (i960RM) Microprocessor + 105a 0000 SuperTrak SX6000 I2O CPU + 1964 80960RN (i960RN) Microprocessor + 1980 Atom Processor C3000 Series System Agent + 19a1 Atom Processor C3000 Series Error Registers + 19a2 Atom Processor C3000 Series Root Complex Event Collector + 19a3 Atom Processor C3000 Series Integrated QAT Root Port + 19a4 Atom Processor C3000 Series PCI Express Root Port #0 + 19a5 Atom Processor C3000 Series PCI Express Root Port #1 + 19a6 Atom Processor C3000 Series PCI Express Root Port #2 + 19a7 Atom Processor C3000 Series PCI Express Root Port #3 + 19a8 Atom Processor C3000 Series PCI Express Root Port #4 + 19a9 Atom Processor C3000 Series PCI Express Root Port #5 + 19aa Atom Processor C3000 Series PCI Express Root Port #6 + 19ab Atom Processor C3000 Series PCI Express Root Port #7 + 19ac Atom Processor C3000 Series SMBus Contoller - Host + 19b0 Atom Processor C3000 Series SATA Controller 0 + 19b1 Atom Processor C3000 Series SATA Controller 0 + 19b2 Atom Processor C3000 Series SATA Controller 0 + 19b3 Atom Processor C3000 Series SATA Controller 0 + 19b4 Atom Processor C3000 Series SATA Controller 0 + 19b5 Atom Processor C3000 Series SATA Controller 0 + 19b6 Atom Processor C3000 Series SATA Controller 0 + 19b7 Atom Processor C3000 Series SATA Controller 0 + 19be Atom Processor C3000 Series SATA Controller 0 + 19bf Atom Processor C3000 Series SATA Controller 0 + 19c0 Atom Processor C3000 Series SATA Controller 1 + 19c1 Atom Processor C3000 Series SATA Controller 1 + 19c2 Atom Processor C3000 Series SATA Controller 1 + 19c3 Atom Processor C3000 Series SATA Controller 1 + 19c4 Atom Processor C3000 Series SATA Controller 1 + 19c5 Atom Processor C3000 Series SATA Controller 1 + 19c6 Atom Processor C3000 Series SATA Controller 1 + 19c7 Atom Processor C3000 Series SATA Controller 1 + 19ce Atom Processor C3000 Series SATA Controller 1 + 19cf Atom Processor C3000 Series SATA Controller 1 + 19d0 Atom Processor C3000 Series USB 3.0 xHCI Controller + 19d1 Atom Processor C3000 Series Integrated LAN Root Port #0 + 19d2 Atom Processor C3000 Series Integrated LAN Root Port #1 + 19d3 Atom Processor C3000 Series ME HECI 1 + 19d4 Atom Processor C3000 Series ME HECI 2 + 19d5 Atom Processor C3000 Series ME KT Controller + 19d6 Atom Processor C3000 Series ME HECI 3 + 19d8 Atom Processor C3000 Series HSUART Controller + 19dc Atom Processor C3000 Series LPC or eSPI + 19dd Atom Processor C3000 Series Primary to Side Band (P2SB) Bridge + 19de Atom Processor C3000 Series Power Management Controller + 19df Atom Processor C3000 Series SMBus controller + 19e0 Atom Processor C3000 Series SPI Controller + 19e2 Atom Processor C3000 Series QuickAssist Technology + 19e3 Atom Processor C3000 Series QuickAssist Technology Virtual Function + 1a1c Ethernet Connection (17) I219-LM + 1a1d Ethernet Connection (17) I219-V + 1a1e Ethernet Connection (16) I219-LM + 1a1f Ethernet Connection (16) I219-V + 1a21 82840 840 [Carmel] Chipset Host Bridge (Hub A) + 1a23 82840 840 [Carmel] Chipset AGP Bridge + 1a24 82840 840 [Carmel] Chipset PCI Bridge (Hub B) + 1a30 82845 845 [Brookdale] Chipset Host Bridge + 1028 010e Optiplex GX240 + 147b 0505 BL7 motherboard + 15d9 3280 Supermicro P4SBE Mainboard + 1a31 82845 845 [Brookdale] Chipset AGP Bridge + 1a38 5000 Series Chipset DMA Engine + 15d9 8680 X7DVL-E-O motherboard + 8086 3476 S5000PSLSATA Server Board + 1a48 82597EX 10GbE Ethernet Controller + 8086 a01f PRO/10GbE SR Server Adapter + 8086 a11f PRO/10GbE SR Server Adapter + 1b48 82597EX 10GbE Ethernet Controller + 8086 a01f PRO/10GbE LR Server Adapter + 8086 a11f PRO/10GbE LR Server Adapter + 1c00 6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 0-3) + 1c01 6 Series/C200 Series Chipset Family Mobile SATA Controller (IDE mode, ports 0-3) + 1c02 6 Series/C200 Series Chipset Family 6 port Desktop SATA AHCI Controller + 1028 04aa XPS 8300 + 1043 844d P8 series motherboard + 8086 200d DH61CR motherboard + 8086 7270 Server Board S1200BT Family + 1c03 6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller + 1028 04a3 Precision M4600 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 17aa 21cf ThinkPad T520 + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c04 6 Series/C200 Series Desktop SATA RAID Controller + 103c 3118 Smart Array B110i SATA RAID Controller + 1c05 6 Series/C200 Series Mobile SATA RAID Controller + 1c06 Z68 Express Chipset SATA RAID Controller + 1c08 6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 4-5) + 1c09 6 Series/C200 Series Chipset Family Mobile SATA Controller (IDE mode, ports 4-5) + 1c10 6 Series/C200 Series Chipset Family PCI Express Root Port 1 + 1028 04aa XPS 8300 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 17aa 21cf ThinkPad T520 + 8086 7270 Server Board S1200BTS / Apple MacBook Pro 8,1/8,2 + 1c12 6 Series/C200 Series Chipset Family PCI Express Root Port 2 + 1028 04aa XPS 8300 + 17aa 21cf ThinkPad T520 + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c14 6 Series/C200 Series Chipset Family PCI Express Root Port 3 + 1028 04da Vostro 3750 + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c16 6 Series/C200 Series Chipset Family PCI Express Root Port 4 + 1028 04aa XPS 8300 + 17aa 21cf ThinkPad T520 + 1c18 6 Series/C200 Series Chipset Family PCI Express Root Port 5 + 1028 04da Vostro 3750 + 17aa 21cf ThinkPad T520 + 8086 7270 Server Board S1200BTS + 1c1a 6 Series/C200 Series Chipset Family PCI Express Root Port 6 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 1c1c 6 Series/C200 Series Chipset Family PCI Express Root Port 7 + 1c1e 6 Series/C200 Series Chipset Family PCI Express Root Port 8 + 1043 844d P8 series motherboard + 1c20 6 Series/C200 Series Chipset Family High Definition Audio Controller + 1028 0490 Alienware M17x R3 + 1028 04a3 Precision M4600 + 1028 04aa XPS 8300 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 +# Realtek ALC656 + 103c 2abf HP Pavilion p6-2100 Desktop PC Series + 1043 8418 P8P67 Deluxe Motherboard + 1043 841b P8H67 Series Motherboard + 17aa 21cf ThinkPad T520 +# Realtek ALC888 audio codec + 8086 2008 DQ67SW board + 8086 200d DH61CR motherboard + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c22 6 Series/C200 Series Chipset Family SMBus Controller + 1028 04a3 Precision M4600 + 1028 04aa XPS 8300 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 17aa 21cf ThinkPad T520 + 8086 200d DH61CR motherboard + 8086 7270 Server Board S1200BT Family / Apple MacBook Pro 8,1/8,2 + 1c24 6 Series/C200 Series Chipset Family Thermal Management Controller + 1c25 6 Series/C200 Series Chipset Family DMI to PCI Bridge + 1c26 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 + 1028 04a3 Precision M4600 + 1028 04aa XPS 8300 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 17aa 21cf ThinkPad T520 + 8086 200d DH61CR motherboard + 8086 7270 Server Board S1200BT Family / Apple MacBook Pro 8,1/8,2 + 1c27 6 Series/C200 Series Chipset Family USB Universal Host Controller #1 + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c2c 6 Series/C200 Series Chipset Family USB Universal Host Controller #5 + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c2d 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 + 1028 04a3 Precision M4600 + 1028 04aa XPS 8300 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 17aa 21cf ThinkPad T520 + 8086 200d DH61CR motherboard + 8086 7270 Server Board S1200BT Family / Apple MacBook Pro 8,1/8,2 + 1c33 6 Series/C200 Series Chipset Family LAN Controller + 1c35 6 Series/C200 Series Chipset Family VECI Controller + 1c3a 6 Series/C200 Series Chipset Family MEI Controller #1 + 1028 04a3 Precision M4600 + 1028 04aa XPS 8300 + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1043 844d P8 series motherboard + 17aa 21cf ThinkPad T520 + 8086 200d DH61CR motherboard + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c3b 6 Series/C200 Series Chipset Family MEI Controller #2 + 1c3c 6 Series/C200 Series Chipset Family IDE-r Controller + 1c3d 6 Series/C200 Series Chipset Family KT Controller + 1c40 6 Series/C200 Series Chipset Family LPC Controller + 1c41 Mobile SFF 6 Series Chipset Family LPC Controller + 1c42 6 Series/C200 Series Chipset Family LPC Controller + 1c43 Mobile 6 Series Chipset Family LPC Controller + 1c44 Z68 Express Chipset LPC Controller + 1c45 6 Series/C200 Series Chipset Family LPC Controller + 1c46 P67 Express Chipset LPC Controller + 1043 844d P8P67 Deluxe Motherboard + 1c47 UM67 Express Chipset LPC Controller + 1c48 6 Series/C200 Series Chipset Family LPC Controller + 1c49 HM65 Express Chipset LPC Controller + 8086 7270 Apple MacBookPro8,2 [Core i7, 15", 2011] + 1c4a H67 Express Chipset LPC Controller + 1028 04aa XPS 8300 + 1043 844d P8H67 Series Motherboard + 1c4b HM67 Express Chipset LPC Controller + 1028 04b2 Vostro 3350 + 1028 04da Vostro 3750 + 1c4c Q65 Express Chipset LPC Controller + 1c4d QS67 Express Chipset LPC Controller + 1c4e Q67 Express Chipset LPC Controller + 1c4f QM67 Express Chipset LPC Controller + 1028 04a3 Precision M4600 + 17aa 21cf ThinkPad T520 + 1c50 B65 Express Chipset LPC Controller + 1c51 6 Series/C200 Series Chipset Family LPC Controller + 1c52 C202 Chipset LPC Controller + 8086 7270 Server Board S1200BTS + 1c53 6 Series/C200 Series Chipset Family LPC Controller + 1c54 C204 Chipset LPC Controller + 1c55 6 Series/C200 Series Chipset Family LPC Controller + 1c56 C206 Chipset LPC Controller + 1043 844d P8B WS Motherboard + 1c57 6 Series/C200 Series Chipset Family LPC Controller + 1c58 Upgraded B65 Express Chipset LPC Controller + 1c59 Upgraded HM67 Express Chipset LPC Controller + 1c5a Upgraded Q67 Express Chipset LPC Controller + 1c5b 6 Series/C200 Series Chipset Family LPC Controller + 1c5c H61 Express Chipset LPC Controller + 8086 200d DH61CR motherboard + 1c5d 6 Series/C200 Series Chipset Family LPC Controller + 1c5e 6 Series/C200 Series Chipset Family LPC Controller + 1c5f 6 Series/C200 Series Chipset Family LPC Controller + 1d00 C600/X79 series chipset 4-Port SATA IDE Controller + 1d02 C600/X79 series chipset 6-Port SATA AHCI Controller + 1028 04f7 C602J on PowerEdge R320 server + 1d04 C600/X79 series chipset SATA RAID Controller + 1d06 C600/X79 series chipset SATA Premium RAID Controller + 1d08 C600/X79 series chipset 2-Port SATA IDE Controller + 1d10 C600/X79 series chipset PCI Express Root Port 1 + 1028 04f7 C602J on PowerEdge R320 server + 1d11 C600/X79 series chipset PCI Express Root Port 1 + 1d12 C600/X79 series chipset PCI Express Root Port 2 + 1d13 C600/X79 series chipset PCI Express Root Port 2 + 1d14 C600/X79 series chipset PCI Express Root Port 3 + 1d15 C600/X79 series chipset PCI Express Root Port 3 + 1d16 C600/X79 series chipset PCI Express Root Port 4 + 1d17 C600/X79 series chipset PCI Express Root Port 4 + 1d18 C600/X79 series chipset PCI Express Root Port 5 + 1028 04f7 C602J on PowerEdge R320 server + 1d19 C600/X79 series chipset PCI Express Root Port 5 + 1d1a C600/X79 series chipset PCI Express Root Port 6 + 1d1b C600/X79 series chipset PCI Express Root Port 6 + 1d1c C600/X79 series chipset PCI Express Root Port 7 + 1d1d C600/X79 series chipset PCI Express Root Port 7 + 1d1e C600/X79 series chipset PCI Express Root Port 8 + 1028 04f7 C602J on PowerEdge R320 server + 1d1f C600/X79 series chipset PCI Express Root Port 8 + 1d20 C600/X79 series chipset High Definition Audio Controller + 1d22 C600/X79 series chipset SMBus Host Controller + 15d9 066b X9SRL-F + 1d24 C600/X79 series chipset Thermal Management Controller + 15d9 066b X9SRL-F + 1d25 C600/X79 series chipset DMI to PCI Bridge + 1d26 C600/X79 series chipset USB2 Enhanced Host Controller #1 + 1028 04f7 C602J on PowerEdge R320 server + 15d9 066b X9SRL-F + 1d2d C600/X79 series chipset USB2 Enhanced Host Controller #2 + 1028 04f7 C602J on PowerEdge R320 server + 103c 18a9 HP DL360e G8 + 15d9 066b X9SRL-F + 1d33 C600/X79 series chipset LAN Controller + 1d35 C600/X79 series chipset VECI Controller + 1d3a C600/X79 series chipset MEI Controller #1 + 1028 04f7 C602J on PowerEdge R320 server + 15d9 066b X9SRL-F + 1d3b C600/X79 series chipset MEI Controller #2 + 1028 04f7 C602J on PowerEdge R320 server + 15d9 066b X9SRL-F + 1d3c C600/X79 series chipset IDE-r Controller + 1d3d C600/X79 series chipset KT Controller + 1d3e C600/X79 series chipset PCI Express Virtual Root Port + 1028 04f7 C602J on PowerEdge R320 server + 1d3f C608/C606/X79 series chipset PCI Express Virtual Switch Port + 1d40 C600/X79 series chipset LPC Controller + 1d41 C600/X79 series chipset LPC Controller + 1028 04f7 C602J on PowerEdge R320 server + 15d9 066b X9SRL-F + 1d50 C608 chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d54 C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d55 C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d58 C606 chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d59 C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d5a C600/X79 series chipset Dual 4-Port SATA Storage Control Unit + 1d5b C602 chipset 4-Port SATA Storage Control Unit + 1d5c C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d5d C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d5e C600/X79 series chipset Dual 4-Port SATA Storage Control Unit + 1d5f C600/X79 series chipset 4-Port SATA Storage Control Unit + 1d60 C608 chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d64 C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d65 C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d68 C606 chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d69 C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d6a C600/X79 series chipset Dual 4-Port SATA Storage Control Unit + 1d6b C602 chipset 4-Port SATA Storage Control Unit + 0497 1028 Dell Precision T3600 + 1d6c C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit + 1d6d C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit + 1d6e C600/X79 series chipset Dual 4-Port SATA Storage Control Unit + 1d6f C600/X79 series chipset 4-Port SATA Storage Control Unit + 1d70 C600/X79 series chipset SMBus Controller 0 + 1d71 C608/C606/X79 series chipset SMBus Controller 1 + 1d72 C608 chipset SMBus Controller 2 + 1d74 C608/C606/X79 series chipset PCI Express Upstream Port + 1d76 C600/X79 series chipset Multi-Function Glue + 1e00 7 Series/C210 Series Chipset Family 4-port SATA Controller [IDE mode] + 1e01 7 Series Chipset Family 4-port SATA Controller [IDE mode] + 144d c652 NP300E5C series laptop + 1e02 7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode] + 1043 84ca P8 series motherboard + 1849 1e02 Motherboard + 1e03 7 Series Chipset Family 6-port SATA Controller [AHCI mode] + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 10cf 16e2 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1e04 7 Series/C210 Series Chipset Family SATA Controller [RAID mode] + 1e05 7 Series Chipset SATA Controller [RAID mode] + 1e06 7 Series/C210 Series Chipset Family SATA Controller [RAID mode] + 1e07 7 Series Chipset Family SATA Controller [RAID mode] + 1e08 7 Series/C210 Series Chipset Family 2-port SATA Controller [IDE mode] + 1e09 7 Series Chipset Family 2-port SATA Controller [IDE mode] + 144d c652 NP300E5C series laptop + 1e0e 7 Series/C210 Series Chipset Family SATA Controller [RAID mode] + 1e10 7 Series/C216 Chipset Family PCI Express Root Port 1 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8H77-I Motherboard + 10cf 16e9 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1e10 Motherboard + 1e12 7 Series/C210 Series Chipset Family PCI Express Root Port 2 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1e14 7 Series/C210 Series Chipset Family PCI Express Root Port 3 + 10cf 16e9 LIFEBOOK E752 + 1e16 7 Series/C216 Chipset Family PCI Express Root Port 4 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 144d c652 NP300E5C series laptop + 1849 1618 Z77 Extreme4 motherboard + 1e18 7 Series/C210 Series Chipset Family PCI Express Root Port 5 + 1043 84ca P8H77-I Motherboard + 1849 1e18 Motherboard + 1e1a 7 Series/C210 Series Chipset Family PCI Express Root Port 6 + 1849 1e1a Motherboard + 1e1c 7 Series/C210 Series Chipset Family PCI Express Root Port 7 + 1e1e 7 Series/C210 Series Chipset Family PCI Express Root Port 8 + 10cf 16e9 LIFEBOOK E752 + 1849 1e1e Motherboard + 1e20 7 Series/C216 Chipset Family High Definition Audio Controller + 1028 054b XPS One 2710 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 8415 P8H77-I Motherboard + 1043 8445 P8Z77-V LX Motherboard + 10cf 1757 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1898 Z77 Extreme4 motherboard + 1e22 7 Series/C216 Chipset Family SMBus Controller + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8 series motherboard + 10cf 16e6 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1e22 Motherboard + 1e24 7 Series/C210 Series Chipset Family Thermal Management Controller + 1043 1517 Zenbook Prime UX31A + 1e25 7 Series/C210 Series Chipset Family DMI to PCI Bridge + 1e26 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8 series motherboard + 10cf 16e8 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1e26 Motherboard + 1e2d 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8 series motherboard + 10cf 16e8 LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1e2d Motherboard + 1e31 7 Series/C210 Series Chipset Family USB xHCI Host Controller + 103c 179b Elitebook 8470p + 103c 17ab ProBook 6570b + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8 series motherboard + 10cf 16ee LIFEBOOK E752 + 17aa 21f3 ThinkPad T430 + 1849 1e31 Motherboard + 1e33 7 Series/C210 Series Chipset Family LAN Controller + 1e3a 7 Series/C216 Chipset Family MEI Controller #1 + 1043 108d VivoBook X202EV + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 1043 84ca P8 series motherboard + 10cf 16ea LIFEBOOK E752 + 144d c652 NP300E5C series laptop + 1849 1e3a Motherboard + 1e3b 7 Series/C210 Series Chipset Family MEI Controller #2 + 1e3c 7 Series/C210 Series Chipset Family IDE-r Controller + 1e3d 7 Series/C210 Series Chipset Family KT Controller + 1e41 7 Series Chipset Family LPC Controller + 1e42 7 Series Chipset Family LPC Controller + 1e43 7 Series Chipset Family LPC Controller + 1e44 Z77 Express Chipset LPC Controller + 1043 84ca P8 series motherboard + 1849 1e44 Motherboard + 1e45 7 Series Chipset Family LPC Controller + 1e46 Z75 Express Chipset LPC Controller + 1e47 Q77 Express Chipset LPC Controller + 1e48 Q75 Express Chipset LPC Controller + 1e49 B75 Express Chipset LPC Controller + 1e4a H77 Express Chipset LPC Controller + 1043 84ca P8H77-I Motherboard + 1e4b 7 Series Chipset Family LPC Controller + 1e4c 7 Series Chipset Family LPC Controller + 1e4d 7 Series Chipset Family LPC Controller + 1e4e 7 Series Chipset Family LPC Controller + 1e4f 7 Series Chipset Family LPC Controller + 1e50 7 Series Chipset Family LPC Controller + 1e51 7 Series Chipset Family LPC Controller + 1e52 7 Series Chipset Family LPC Controller + 1e53 C216 Series Chipset LPC Controller + 1e54 7 Series Chipset Family LPC Controller + 1e55 QM77 Express Chipset LPC Controller + 1e56 QS77 Express Chipset LPC Controller + 1e57 HM77 Express Chipset LPC Controller + 1e58 UM77 Express Chipset LPC Controller + 1e59 HM76 Express Chipset LPC Controller + 1043 1477 N56VZ + 1043 1517 Zenbook Prime UX31A + 10cf 16e0 LIFEBOOK E752 + 1e5a 7 Series Chipset Family LPC Controller + 1e5b UM77 Express Chipset LPC Controller + 1e5c 7 Series Chipset Family LPC Controller + 1e5d HM75 Express Chipset LPC Controller + 144d c652 NP300E5C series laptop + 1e5e HM70 Express Chipset LPC Controller + 1043 108d VivoBook X202EV + 1e5f NM70 Express Chipset LPC Controller + 1f00 Atom processor C2000 SoC Transaction Router + 1f01 Atom processor C2000 SoC Transaction Router + 1f02 Atom processor C2000 SoC Transaction Router + 1f03 Atom processor C2000 SoC Transaction Router + 1f04 Atom processor C2000 SoC Transaction Router + 1f05 Atom processor C2000 SoC Transaction Router + 1f06 Atom processor C2000 SoC Transaction Router + 1f07 Atom processor C2000 SoC Transaction Router + 1f08 Atom processor C2000 SoC Transaction Router + 1f09 Atom processor C2000 SoC Transaction Router + 1f0a Atom processor C2000 SoC Transaction Router + 1f0b Atom processor C2000 SoC Transaction Router + 1f0c Atom processor C2000 SoC Transaction Router + 1f0d Atom processor C2000 SoC Transaction Router + 1f0e Atom processor C2000 SoC Transaction Router + 1f0f Atom processor C2000 SoC Transaction Router + 1f10 Atom processor C2000 PCIe Root Port 1 + 1f11 Atom processor C2000 PCIe Root Port 2 + 1f12 Atom processor C2000 PCIe Root Port 3 + 1f13 Atom processor C2000 PCIe Root Port 4 + 1f14 Atom processor C2000 RAS + 1f15 Atom processor C2000 SMBus 2.0 + 1f16 Atom processor C2000 RCEC + 1f18 Atom processor C2000 QAT + 1f19 Atom processor C2000 QAT + 1f20 Atom processor C2000 4-Port IDE SATA2 Controller + 1f21 Atom processor C2000 4-Port IDE SATA2 Controller + 1f22 Atom processor C2000 AHCI SATA2 Controller + 1f23 Atom processor C2000 AHCI SATA2 Controller + 1f24 Atom processor C2000 RAID SATA2 Controller + 1f25 Atom processor C2000 RAID SATA2 Controller + 1f26 Atom processor C2000 RAID SATA2 Controller + 1f27 Atom processor C2000 RAID SATA2 Controller + 1f2c Atom processor C2000 USB Enhanced Host Controller + 0200 1028 Atom C2338 on Dell 0K8Y0N motherboard + 1f2e Atom processor C2000 RAID SATA2 Controller + 1f2f Atom processor C2000 RAID SATA2 Controller + 1f30 Atom processor C2000 2-Port IDE SATA3 Controller + 1f31 Atom processor C2000 2-Port IDE SATA3 Controller + 1f32 Atom processor C2000 AHCI SATA3 Controller + 1f33 Atom processor C2000 AHCI SATA3 Controller + 1f34 Atom processor C2000 RAID SATA3 Controller + 1f35 Atom processor C2000 RAID SATA3 Controller + 1f36 Atom processor C2000 RAID SATA3 Controller + 1f37 Atom processor C2000 RAID SATA3 Controller + 1f38 Atom processor C2000 PCU + 1f39 Atom processor C2000 PCU + 1f3a Atom processor C2000 PCU + 1f3b Atom processor C2000 PCU + 1f3c Atom processor C2000 PCU SMBus + 1f3d Atom Processor C2000 PECI SMBus + 1f3e Atom processor C2000 RAID SATA3 Controller + 1f3f Atom processor C2000 RAID SATA3 Controller + 1f40 Ethernet Connection I354 1.0 GbE Backplane + 1028 05f1 Ethernet Connection I354 1.0 GbE Backplane + 1f41 Ethernet Connection I354 + 1f42 Atom processor C2000 GbE + 1f44 Atom processor C2000 GbE Virtual Function + 1f45 Ethernet Connection I354 2.5 GbE Backplane + 2014 Sky Lake-E Ubox Registers + 2015 Sky Lake-E Ubox Registers + 2016 Sky Lake-E Ubox Registers + 2018 Sky Lake-E M2PCI Registers + 201a Sky Lake-E Non-Transparent Bridge Registers + 201c Sky Lake-E Non-Transparent Bridge Registers + 201d Volume Management Device NVMe RAID Controller + 2020 Sky Lake-E DMI3 Registers + 15d9 095d X11SPM-TF + 2021 Sky Lake-E CBDMA Registers + 2024 Sky Lake-E MM/Vt-d Configuration Registers + 2025 Sky Lake-E RAS + 2026 Sky Lake-E IOAPIC + 2030 Sky Lake-E PCI Express Root Port A + 2031 Sky Lake-E PCI Express Root Port B + 2032 Sky Lake-E PCI Express Root Port C + 2033 Sky Lake-E PCI Express Root Port D + 2034 Sky Lake-E VT-d + 2035 Sky Lake-E RAS Configuration Registers + 2036 Sky Lake-E IOxAPIC Configuration Registers + 2040 Sky Lake-E Integrated Memory Controller + 2041 Sky Lake-E Integrated Memory Controller + 2042 Sky Lake-E Integrated Memory Controller + 2043 Sky Lake-E Integrated Memory Controller + 2044 Sky Lake-E Integrated Memory Controller + 2045 Sky Lake-E LM Channel 1 + 2046 Sky Lake-E LMS Channel 1 + 2047 Sky Lake-E LMDP Channel 1 + 2048 Sky Lake-E DECS Channel 2 + 2049 Sky Lake-E LM Channel 2 + 204a Sky Lake-E LMS Channel 2 + 204b Sky Lake-E LMDP Channel 2 + 204c Sky Lake-E M3KTI Registers + 204d Sky Lake-E M3KTI Registers + 204e Sky Lake-E M3KTI Registers + 2054 Sky Lake-E CHA Registers + 2055 Sky Lake-E CHA Registers + 2056 Sky Lake-E CHA Registers + 2057 Sky Lake-E CHA Registers + 2058 Sky Lake-E KTI 0 + 2059 Sky Lake-E UPI Registers + 2066 Sky Lake-E Integrated Memory Controller + 2068 Sky Lake-E DDRIO Registers + 2069 Sky Lake-E DDRIO Registers + 206a Sky Lake-E IOxAPIC Configuration Registers + 206e Sky Lake-E DDRIO Registers + 206f Sky Lake-E DDRIO Registers + 2078 Sky Lake-E PCU Registers + 207a Sky Lake-E PCU Registers + 2080 Sky Lake-E PCU Registers + 2081 Sky Lake-E PCU Registers + 2082 Sky Lake-E PCU Registers + 2083 Sky Lake-E PCU Registers + 2084 Sky Lake-E PCU Registers + 2085 Sky Lake-E PCU Registers + 2086 Sky Lake-E PCU Registers + 2088 Sky Lake-E DDRIO Registers + 208d Sky Lake-E CHA Registers + 208e Sky Lake-E CHA Registers + 2241 Larrabee + 2250 Xeon Phi coprocessor 5100 series + 225c Xeon Phi coprocessor SE10/7120 series + 225d Xeon Phi coprocessor 3120 series + 225e Xeon Phi coprocessor 31S1 + 2262 Xeon Phi coprocessor 7220 + 2280 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SoC Transaction Register + 2284 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series High Definition Audio Controller + 2286 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 DMA Controller + 228a Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 HSUART Controller #1 + 228c Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 HSUART Controller #2 + 2292 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx SMBus Controller + 2294 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series MMC Controller + 2295 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SDIO Controller + 2296 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SD Controller + 2298 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Trusted Execution Engine + 229c Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCU + 22a3 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SATA Controller + 22a4 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SATA AHCI Controller + 22a8 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Low Power Engine Audio + 22b0 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller + 22b1 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller + 22b5 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series USB xHCI Controller + 22b8 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Imaging Unit + 22c0 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 DMA Controller + 22c1 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #1 + 22c2 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #2 + 22c3 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #3 + 22c4 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #4 + 22c5 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #5 + 22c6 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #6 + 22c7 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #7 + 22c8 Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #1 + 22ca Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #2 + 22cc Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #3 + 22ce Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #4 + 22dc Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Power Management Controller + 2310 DH89xxCC LPC Controller + 2323 DH89xxCC 4 Port SATA AHCI Controller + 2330 DH89xxCC SMBus Controller + 2331 DH89xxCC Chap Counter + 2332 DH89xxCC Thermal Subsystem + 2334 DH89xxCC USB2 Enhanced Host Controller #1 + 2335 DH89xxCC USB2 Enhanced Host Controller #1 + 2342 DH89xxCC PCI Express Root Port #1 + 2343 DH89xxCC PCI Express Root Port #1 + 2344 DH89xxCC PCI Express Root Port #2 + 2345 DH89xxCC PCI Express Root Port #2 + 2346 DH89xxCC PCI Express Root Port #3 + 2347 DH89xxCC PCI Express Root Port #3 + 2348 DH89xxCC PCI Express Root Port #4 + 2349 DH89xxCC PCI Express Root Port #4 + 2360 DH89xxCC Watchdog Timer + 2364 DH89xxCC MEI 0 + 2365 DH89xxCC MEI 1 + 2390 DH895XCC Series LPC Controller + 23a1 DH895XCC Series 2-Port SATA Controller [IDE Mode] + 23a3 DH895XCC Series 4-Port SATA Controller [AHCI Mode] + 23a6 DH895XCC Series 2-Port SATA Controller [IDE Mode] + 23b0 DH895XCC Series SMBus Controller + 23b1 DH895XCC Series CHAP Counter + 23b2 DH895XCC Series Thermal Management Controller + 23b4 DH895XCC Series USB2 Enhanced Host Controller #1 + 23b5 DH895XCC Series USB2 Enhanced Host Controller #1 + 23c2 DH895XCC Series PCI Express Root Port #1 + 23c3 DH895XCC Series PCI Express Root Port #1 + 23c4 DH895XCC Series PCI Express Root Port #2 + 23c5 DH895XCC Series PCI Express Root Port #2 + 23c6 CDH895XCC Series PCI Express Root Port #3 + 23c7 DH895XCC Series PCI Express Root Port #3 + 23c8 DH895XCC Series PCI Express Root Port #4 + 23c9 DH895XCC Series PCI Express Root Port #4 + 23e0 DH895XCC Series Watchdog Timer + 23e4 DH895XCC Series MEI Controller #1 + 23e5 DH895XCC Series MEI Controller #2 + 2410 82801AA ISA Bridge (LPC) + 2411 82801AA IDE Controller + 2412 82801AA USB Controller + 2413 82801AA SMBus Controller + 2415 82801AA AC'97 Audio Controller + 1028 0095 Precision Workstation 220 Integrated Digital Audio + 1028 00b4 OptiPlex GX110 + 110a 0051 Activy 2xx + 11d4 0040 SoundMAX Integrated Digital Audio + 11d4 0048 SoundMAX Integrated Digital Audio + 11d4 5340 SoundMAX Integrated Digital Audio + 1734 1025 Activy 3xx + 1af4 1100 QEMU Virtual Machine + 2416 82801AA AC'97 Modem Controller + 2418 82801AA PCI Bridge + 2420 82801AB ISA Bridge (LPC) + 2421 82801AB IDE Controller + 2422 82801AB USB Controller + 2423 82801AB SMBus Controller + 2425 82801AB AC'97 Audio Controller + 11d4 0040 SoundMAX Integrated Digital Audio + 11d4 0048 SoundMAX Integrated Digital Audio + 2426 82801AB AC'97 Modem Controller + 2428 82801AB PCI Bridge + 2440 82801BA ISA Bridge (LPC) + 8086 5744 S845WD1-E + 2442 82801BA/BAM UHCI USB 1.1 Controller #1 + 1014 01c6 Netvista A40/A40p + 1025 1016 Travelmate 612 TX + 1028 00c7 Dimension 8100 + 1028 00d8 Precision 530 + 1028 010e Optiplex GX240 + 103c 126f e-pc 40 + 1043 8027 TUSL2-C Mainboard + 104d 80df Vaio PCG-FX403 + 147b 0505 BL7 motherboard + 147b 0507 TH7II-RAID + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 4557 D815EGEW Mainboard + 8086 4d44 D850EMV2 motherboard + 8086 5744 S845WD1-E mainboard + 2443 82801BA/BAM SMBus Controller + 1014 01c6 Netvista A40/A40p + 1025 1016 Travelmate 612 TX + 1028 00c7 Dimension 8100 + 1028 00d8 Precision 530 + 1028 010e Optiplex GX240 + 103c 126f e-pc 40 + 1043 8027 TUSL2-C Mainboard + 104d 80df Vaio PCG-FX403 + 147b 0505 BL7 motherboard + 147b 0507 TH7II-RAID + 15d9 3280 Supermicro P4SBE Mainboard + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 4557 D815EGEW Mainboard + 8086 5744 S845WD1-E mainboard + 2444 82801BA/BAM UHCI USB 1.1 Controller #2 + 1025 1016 Travelmate 612 TX + 1028 00c7 Dimension 8100 + 1028 00d8 Precision 530 + 1028 010e Optiplex GX240 + 103c 126f e-pc 40 + 1043 8027 TUSL2-C Mainboard + 104d 80df Vaio PCG-FX403 + 147b 0505 BL7 motherboard + 147b 0507 TH7II-RAID + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 5744 S845WD1-E mainboard + 2445 82801BA/BAM AC'97 Audio Controller + 0e11 000b Compaq Deskpro EN Audio + 0e11 0088 Evo D500 + 1014 01c6 Netvista A40/A40p + 1025 1016 Travelmate 612 TX + 1028 00d8 Precision 530 + 103c 126f e-pc 40 + 104d 80df Vaio PCG-FX403 + 1462 3370 STAC9721 AC + 147b 0505 BL7 motherboard + 147b 0507 TH7II-RAID + 8086 4557 D815EGEW Mainboard + 8086 4656 Desktop Board D815EFV + 8086 4d44 D850EMV2 motherboard + 2446 82801BA/BAM AC'97 Modem Controller + 1025 1016 Travelmate 612 TX + 104d 80df Vaio PCG-FX403 + 2448 82801 Mobile PCI Bridge + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 103c 30c1 Compaq 6910p + 1043 1017 X58LE + 104d 902d VAIO VGN-NR120E + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c00c P30 notebook + 144d c06a R730 Laptop + 144d c072 Notebook N150P + 1458 5000 GA-D525TUD + 1734 1055 Amilo M1420 + 17aa 2013 ThinkPad R60e + 17aa 20ae ThinkPad T61/R61 + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 8086 544b Desktop Board D425KT + e4bf cc47 CCG-RUMBA + 2449 82801BA/BAM/CA/CAM Ethernet Controller + 0e11 0012 EtherExpress PRO/100 VM + 0e11 0091 EtherExpress PRO/100 VE + 1014 01ce EtherExpress PRO/100 VE + 1014 01dc EtherExpress PRO/100 VE + 1014 01eb EtherExpress PRO/100 VE + 1014 01ec EtherExpress PRO/100 VE + 1014 0202 EtherExpress PRO/100 VE + 1014 0205 EtherExpress PRO/100 VE + 1014 0217 EtherExpress PRO/100 VE + 1014 0234 EtherExpress PRO/100 VE + 1014 023d EtherExpress PRO/100 VE + 1014 0244 EtherExpress PRO/100 VE + 1014 0245 EtherExpress PRO/100 VE + 1014 0265 PRO/100 VE Desktop Connection + 1014 0267 PRO/100 VE Desktop Connection + 1014 026a PRO/100 VE Desktop Connection + 109f 315d EtherExpress PRO/100 VE + 109f 3181 EtherExpress PRO/100 VE + 1179 ff01 PRO/100 VE Network Connection + 1186 7801 EtherExpress PRO/100 VE + 144d 2602 HomePNA 1M CNR + 1af4 1100 QEMU Virtual Machine + 8086 3010 EtherExpress PRO/100 VE + 8086 3011 EtherExpress PRO/100 VM + 8086 3012 82562EH based Phoneline + 8086 3013 EtherExpress PRO/100 VE + 8086 3014 EtherExpress PRO/100 VM + 8086 3015 82562EH based Phoneline + 8086 3016 EtherExpress PRO/100 P Mobile Combo + 8086 3017 EtherExpress PRO/100 P Mobile + 8086 3018 EtherExpress PRO/100 + 244a 82801BAM IDE U100 Controller + 1025 1016 Travelmate 612TX + 104d 80df Vaio PCG-FX403 + 244b 82801BA IDE U100 Controller + 1014 01c6 Netvista A40/A40p + 1028 00c7 Dimension 8100 + 1028 00d8 Precision 530 + 1028 010e Optiplex GX240 + 103c 126f e-pc 40 + 1043 8027 TUSL2-C Mainboard + 147b 0505 BL7 motherboard + 147b 0507 TH7II-RAID + 15d9 3280 Supermicro P4SBE Mainboard + 8086 4532 Desktop Board D815EEA2/D815EFV + 8086 4557 D815EGEW Mainboard + 8086 4d44 D850EMV2 motherboard + 8086 5744 S845WD1-E mainboard + 244c 82801BAM ISA Bridge (LPC) + 244e 82801 PCI Bridge + 1014 0267 NetVista A30p + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 1028 02da OptiPlex 980 + 1028 04f7 PowerEdge R320 server + 103c 2a3b Pavilion A1512X + 103c 2a6f Asus IPIBL-LB Motherboard + 103c 31fe ProLiant DL140 G3 + 103c 330b ProLiant ML150 G6 Server +# same ID possibly also on other ASUS boards + 1043 8277 P5K PRO Motherboard + 1043 844d P8 series motherboard + 1043 8534 ASUS B85-PLUS + 1458 5000 Motherboard + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7418 Wind PC MS-7418 + 15d9 060d C7SIM-Q Motherboard + 15d9 9680 X7DBN Motherboard + 1775 11cc CC11/CL11 + 8086 7270 Server Board S1200BTS + 2450 82801E ISA Bridge (LPC) + 2452 82801E USB Controller + 2453 82801E SMBus Controller + 2459 82801E Ethernet Controller 0 + 245b 82801E IDE U100 Controller + 245d 82801E Ethernet Controller 1 + 245e 82801E PCI Bridge + 2480 82801CA LPC Interface Controller + 2482 82801CA/CAM USB Controller #1 + 0e11 0030 Evo N600c + 1014 0220 ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 15d9 3480 P4DP6 + 8086 1958 vpr Matrix 170B4 + 8086 3424 SE7501HG2 Mainboard + 8086 4541 Latitude C640 + 2483 82801CA/CAM SMBus Controller + 1014 0220 ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 15d9 3480 P4DP6 + 8086 1958 vpr Matrix 170B4 + 2484 82801CA/CAM USB Controller #2 + 0e11 0030 Evo N600c + 1014 0220 ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 15d9 3480 P4DP6 + 8086 1958 vpr Matrix 170B4 + 2485 82801CA/CAM AC'97 Audio Controller + 1013 5959 Crystal WMD Audio Codec + 1014 0222 ThinkPad A30/A30p/T23 + 1014 0508 ThinkPad T30 + 1014 051c ThinkPad A/T/X Series + 1043 1583 L3C (SPDIF) + 1043 1623 L2B (no SPDIF) + 1043 1643 L3F + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 144d c006 vpr Matrix 170B4 + 2486 82801CA/CAM AC'97 Modem Controller + 1014 0223 ThinkPad A/T/X Series + 1014 0503 ThinkPad R31 + 1014 051a ThinkPad A/T/X Series + 101f 1025 620 Series + 1043 1496 PCtel HSP56 MR + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 134d 4c21 Dell Inspiron 2100 internal modem + 144d 2115 vpr Matrix 170B4 internal modem + 14f1 5421 MD56ORD V.92 MDC Modem + 2487 82801CA/CAM USB Controller #3 + 0e11 0030 Evo N600c + 1014 0220 ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 15d9 3480 P4DP6 + 8086 1958 vpr Matrix 170B4 + 248a 82801CAM IDE U100 Controller + 0e11 0030 Evo N600c + 1014 0220 ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 8086 1958 vpr Matrix 170B4 + 8086 4541 Latitude C640 + 248b 82801CA Ultra ATA Storage Controller + 15d9 3480 P4DP6 + 248c 82801CAM ISA Bridge (LPC) + 24c0 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge + 1014 0267 NetVista A30p + 1462 5800 845PE Max (MS-6580) + 24c1 82801DBL (ICH4-L) IDE Controller + 24c2 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 + 1014 0267 NetVista A30p + 1014 052d ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0126 Optiplex GX260 + 1028 0160 Dimension 2400 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 8089 P4B533 + 1071 8160 MIM2000 + 114a 0582 PC8 onboard USB 1.x + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 1462 5800 845PE Max (MS-6580) + 1509 2990 Averatec 5110H laptop + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 1734 1055 Amilo M1420 + 4c53 1090 Cx9 / Vx9 mainboard + 8086 24c2 Latitude X300 + 8086 4541 Latitude D400/D500 + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24c3 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller + 1014 0267 NetVista A30p + 1014 052d ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0126 Optiplex GX260 + 1028 014f Latitude X300 + 1028 0160 Dimension 2400 + 1028 018d Inspiron 700m/710m + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1071 8160 MIM2000 + 114a 0582 PC8 onboard SMbus + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 1458 24c2 GA-8PE667 Ultra + 1462 5800 845PE Max (MS-6580) + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 1734 1055 Amilo M1420 + 4c53 1090 Cx9 / Vx9 mainboard + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24c4 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 + 1014 0267 NetVista A30p + 1014 052d ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0126 Optiplex GX260 + 1028 0160 Dimension 2400 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 8089 P4B533 + 1071 8160 MIM2000 + 144d c00c P30/P35 notebook + 1462 5800 845PE Max (MS-6580) + 1509 2990 Averatec 5110H + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 4c53 1090 Cx9 / Vx9 mainboard + 8086 24c2 Latitude X300 + 8086 4541 Latitude D400/D500 + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24c5 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller + 0e11 00b8 Analog Devices Inc. codec [SoundMAX] + 1014 0267 NetVista A30p + 1014 0537 ThinkPad T4x Series + 1014 055f Thinkpad R50e model 1634 + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0139 Latitude D400 + 1028 014f Latitude X300 + 1028 0152 Latitude D500 + 1028 0160 Dimension 2400 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m [SigmaTel STAC9750,51] + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 1713 M2400N/M6800N laptop + 1043 80b0 P4B533 + 1071 8160 MIM2000 + 1179 0201 Toshiba Tecra M1 + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 1458 a002 GA-8PE667 Ultra + 1462 5800 845PE Max (MS-6580) + 1734 1005 D1451 (SCENIC N300, i845GV) Sigmatel STAC9750T + 1734 1055 Amilo M1420 + 24c6 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller + 1014 0524 ThinkPad T4x Series + 1014 0525 ThinkPad + 1014 0559 ThinkPad R50e + 1025 003c Aspire 2001WLCi (Compal CL50 motherboard) implementation + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 1716 M2400N laptop + 1043 1826 M6800N + 1071 8160 MIM2000 + 134d 4c21 Latitude D500 + 144d 2115 X10 Laptop + 144d c00c P30/P35 notebook +# Conexant HSF Softmodem (CXT22) + 14f1 5422 D480 MDC V.9x Modem + 24c7 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 + 1014 0267 NetVista A30p + 1014 052d ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 0126 Optiplex GX260 + 1028 0160 Dimension 2400 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 8089 P4B533 + 1071 8160 MIM2000 + 144d c00c P30/P35 notebook + 1462 5800 845PE Max (MS-6580) + 1509 2990 Averatec 5110H + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 4c53 1090 Cx9 / Vx9 mainboard + 8086 24c2 Latitude X300 + 8086 4541 Latitude D400/D500 + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24ca 82801DBM (ICH4-M) IDE Controller + 1014 052d ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 014f Latitude X300 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1071 8160 MIM2000 + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 1734 1055 Amilo M1420 + 8086 4541 Latitude D400/D500 + 24cb 82801DB (ICH4) IDE Controller + 1014 0267 NetVista A30p + 1028 0126 Optiplex GX260 + 1028 0160 Dimension 2400 + 1043 8089 P4B533 + 114a 0582 PC8 onboard IDE + 1458 24c2 GA-8PE667 Ultra + 1462 5800 845PE Max (MS-6580) + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 4c53 1090 Cx9 / Vx9 mainboard + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24cc 82801DBM (ICH4-M) LPC Interface Bridge + 144d c00c P30 notebook + 1734 1055 Amilo M1420 + 24cd 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller + 1014 0267 NetVista A30p + 1014 052e ThinkPad + 1025 005a TravelMate 290 + 1025 0064 Extensa 3000 series laptop: Intel 82801DBM (ICH4-M) + 1028 011d Latitude D600 + 1028 0126 Optiplex GX260 + 1028 0139 Latitude D400 + 1028 0152 Latitude D500 + 1028 0160 Dimension 2400 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 1043 8089 P4B533 + 1071 8160 MIM2000 + 114a 0582 PC8 onboard USB 2.0 + 1179 ff00 Satellite 2430 + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 1462 3981 845PE Max (MS-6580) + 1509 1968 Averatec 5110H + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 1734 1055 Amilo M1420 + 1af4 1100 QEMU Virtual Machine + 4c53 1090 Cx9 / Vx9 mainboard + 8086 24c2 Latitude X300 + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 24d0 82801EB/ER (ICH5/ICH5R) LPC Interface Bridge + 24d1 82801EB (ICH5) SATA Controller + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 019a PowerEdge SC1425 + 103c 12bc d530 CMT (DG746A) + 103c 3208 ProLiant DL140 G2 + 1043 80a6 P4P800 series motherboard + 1458 24d1 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 5200 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24d2 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #1 + 1014 0287 ThinkCentre S50 + 1014 02dd eServer xSeries server mainboard + 1014 02ed eServer xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 016c PowerEdge 1850 onboard UHCI + 1028 016d PowerEdge 2850 onboard UHCI + 1028 0170 PowerEdge 6850 onboard UHCI + 1028 0183 PowerEdge 1800 + 1028 019a PowerEdge SC1425 + 103c 006a NX9500 + 103c 12bc d530 CMT (DG746A) + 103c 3208 ProLiant DL140 G2 + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000/8KNXP motherboard + 1462 7280 865PE Neo2 (MS-6728) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX series onboard UHCI + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24d3 82801EB/ER (ICH5/ICH5R) SMBus Controller + 1014 0287 ThinkCentre S50 + 1014 02dd eServer xSeries server mainboard + 1014 02ed eServer xSeries server mainboard + 1028 0156 Precision 360 + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 103c 12bc d330 uT + 103c 3208 ProLiant DL140 G2 + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX S2 series SMBus + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24d4 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #2 + 1014 0287 ThinkCentre S50 + 1014 02dd eServer xSeries server mainboard + 1014 02ed eServer xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 016c PowerEdge 1850 onboard UHCI + 1028 016d PowerEdge 2850 onboard UHCI + 1028 0170 PowerEdge 6850 onboard UHCI + 1028 0183 PowerEdge 1800 + 1028 019a PowerEdge SC1425 + 103c 006a NX9500 + 103c 12bc d530 CMT (DG746A) + 103c 3208 ProLiant DL140 G2 + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX S2 series onboard UHCI + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24d5 82801EB/ER (ICH5/ICH5R) AC'97 Audio Controller + 100a 147b Abit IS7-E motherboard + 1014 0287 ThinkCentre S50 + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 103c 006a NX9500 + 103c 12bc d330 uT + 1043 80f3 P4P800 series motherboard + 1043 810f P5P800-MX Mainboard + 1458 a002 GA-8IPE1000/8KNXP motherboard + 1462 0080 865PE Neo2-V (MS-6788) Mainboard + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 8086 a000 D865PERL mainboard + 8086 e000 D865PERL mainboard + 8086 e001 Desktop Board D865GBF + 8086 e002 SoundMax Integrated Digital Audio + 24d6 82801EB/ER (ICH5/ICH5R) AC'97 Modem Controller + 103c 006a NX9500 + 24d7 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #3 + 1014 0287 ThinkCentre S50 + 1014 02ed xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 016c PowerEdge 1850 onboard UHCI + 1028 016d PowerEdge 2850 onboard UHCI + 1028 0170 PowerEdge 6850 onboard UHCI + 1028 0183 PowerEdge 1800 + 103c 006a NX9500 + 103c 12bc d530 CMT (DG746A) + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX S2 series onboard UHCI + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24db 82801EB/ER (ICH5/ICH5R) IDE Controller + 1014 0287 ThinkCentre S50 + 1014 02dd eServer xSeries server mainboard + 1014 02ed eServer xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 016c PowerEdge 1850 IDE Controller + 1028 016d PowerEdge 2850 IDE Controller + 1028 0170 PowerEdge 6850 IDE Controller + 1028 019a PowerEdge SC1425 + 103c 006a NX9500 + 103c 12bc d530 CMT (DG746A) + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7580 MSI 875P + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX S2 series onboard IDE + 8086 24db P4C800 Mainboard + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24dc 82801EB (ICH5) LPC Interface Bridge + 24dd 82801EB/ER (ICH5/ICH5R) USB2 EHCI Controller + 1014 0287 ThinkCentre S50 + 1014 02dd eServer xSeries server mainboard + 1014 02ed eServer xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1028 016c PowerEdge 1850 onboard EHCI + 1028 016d PowerEdge 2850 onboard EHCI + 1028 0170 PowerEdge 6850 onboard EHCI + 1028 0183 PowerEdge 1800 + 1028 019a PowerEdge SC1425 + 103c 006a NX9500 + 103c 12bc d530 CMT (DG746A) + 103c 3208 ProLiant DL140 G2 + 1043 80a6 P4P800/P5P800 series motherboard + 1458 5006 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24de 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #4 + 1014 0287 ThinkCentre S50 + 1014 02ed xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 1043 80a6 P4P800/P5P800 series motherboard + 1458 24d2 GA-8IPE1000 Pro2 motherboard (865PE) + 1462 7280 865PE Neo2 (MS-6728) + 1462 7650 Hetis 865GV-E (MS-7065) + 1565 3101 P4TSV Motherboard (865G) + 15d9 4580 P4SCE Mainboard + 1734 101c PRIMERGY RX/TX S2 series onboard UHCI + 8086 3427 S875WP1-E mainboard + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 8086 524c D865PERL mainboard + 24df 82801ER (ICH5R) SATA Controller + 1028 0168 Precision Workstation 670 Mainboard + 24f0 Omni-Path HFI Silicon 100 Series [discrete] + 10a9 802e Omni-path HFI 100 Series, 1-port A-board + 10a9 802f Omni-path HFI 100 Series, 2-port A-board + 10a9 8030 Omni-path HFI 100 Series, 1-port B-board + 10a9 8031 Omni-path HFI 100 Series, 2-port B-board + 1590 00e7 100Gb 1-port OP101 QSFP28 x8 PCIe Gen3 with Intel Omni-Path Adapter + 1590 00e8 100Gb 1-port OP101 QSFP28 x16 PCIe Gen3 with Intel Omni-Path Adapter + 1590 021c Apollo 100Gb 1-port Intel Omni-Path Architecture 860z Mezzanine FIO Adapter + 15d9 0934 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16, SIOM Module + 15d9 099b Omni-path HFI Mezz AOC, 1 Port, PCIe x16. + 1cb8 0001 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16, TC4600 QSFP28 + 1cb8 0002 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16, TC6600 Fixed Port + 1cb8 0003 Omni-Path HFI Adapter 100 Series, 2 Port, 2 PCIe x16, Earth Simulation QSFP28 + 1cb8 0004 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16, TC4600E QSFP28 + 434e 0001 Omni-Path HFI Adapter 100 Series, 1 Port, OCP 3.0 + 434e 2628 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16 + 8086 2628 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16 + 8086 2629 Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x8 + 8086 262a Omni-Path HFI Adapter 100 Series, 2 Ports, Split PCIe x16 + 8086 262d Omni-Path HFI Adapter 100 Series, 1 Port, PCIe x16, IO Module AHWKPTP100HF + 24f1 Omni-Path HFI Silicon 100 Series [integrated] + 24f3 Wireless 8260 +# Snow Field Peak AC + 8086 0010 Dual Band Wireless-AC 8260 + 8086 1010 Dual Band Wireless-AC 8260 + 24f4 Wireless 8260 +# Snow Field Peak AC + 8086 0030 Dual Band Wireless-AC 8260 + 24fb Dual Band Wireless-AC 3168NGW [Stone Peak] + 24fd Wireless 8265 / 8275 +# Windstorm Peak + 8086 0010 Dual Band Wireless-AC 8265 + 8086 0150 Dual Band Wireless-AC 8265 + 8086 1010 Dual Band Wireless-AC 8265 + 8086 1130 Dual Band Wireless-AC 8265 + 2500 82820 820 (Camino) Chipset Host Bridge (MCH) + 1028 0095 Precision Workstation 220 Chipset + 1043 801c P3C-2000 system chipset + 2501 82820 820 (Camino) Chipset Host Bridge (MCH) + 1043 801c P3C-2000 system chipset + 250b 82820 820 (Camino) Chipset Host Bridge + 250f 82820 820 (Camino) Chipset AGP Bridge + 2520 82805AA MTH Memory Translator Hub + 2521 82804AA MRH-S Memory Repeater Hub for SDRAM + 2522 NVMe Optane Memory Series + 8086 3806 Optane Memory 16GB + 8086 3810 Optane Memory M10 16GB + 2526 Wireless-AC 9260 + 2530 82850 850 (Tehama) Chipset Host Bridge (MCH) + 1028 00c7 Dimension 8100 + 147b 0507 TH7II-RAID + 2531 82860 860 (Wombat) Chipset Host Bridge (MCH) + 1028 00d8 Precision 530 + 2532 82850 850 (Tehama) Chipset AGP Bridge + 2533 82860 860 (Wombat) Chipset AGP Bridge + 2534 82860 860 (Wombat) Chipset PCI Bridge + 2540 E7500 Memory Controller Hub + 15d9 3480 P4DP6 + 2541 E7500/E7501 Host RASUM Controller + 15d9 3480 P4DP6 + 4c53 1090 Cx9 / Vx9 mainboard + 8086 3424 SE7501HG2 Mainboard + 2543 E7500/E7501 Hub Interface B PCI-to-PCI Bridge + 2544 E7500/E7501 Hub Interface B RASUM Controller + 4c53 1090 Cx9 / Vx9 mainboard + 2545 E7500/E7501 Hub Interface C PCI-to-PCI Bridge + 2546 E7500/E7501 Hub Interface C RASUM Controller + 2547 E7500/E7501 Hub Interface D PCI-to-PCI Bridge + 2548 E7500/E7501 Hub Interface D RASUM Controller + 254c E7501 Memory Controller Hub + 4c53 1090 Cx9 / Vx9 mainboard + 8086 3424 SE7501HG2 Mainboard + 2550 E7505 Memory Controller Hub + 2551 E7505/E7205 Series RAS Controller + 2552 E7505/E7205 PCI-to-AGP Bridge + 2553 E7505 Hub Interface B PCI-to-PCI Bridge + 2554 E7505 Hub Interface B PCI-to-PCI Bridge RAS Controller + 255d E7205 Memory Controller Hub + 2560 82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface + 1028 0126 Optiplex GX260 + 1458 2560 GA-8PE667 Ultra + 1462 5800 845PE Max (MS-6580) + 2561 82845G/GL[Brookdale-G]/GE/PE Host-to-AGP Bridge + 2562 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device + 0e11 00b9 Evo D510 SFF + 1014 0267 NetVista A30p + 1028 0160 Dimension 2400 + 1734 1003 D1521 Mainboard (Fujitsu-Siemens) + 1734 1004 D1451 Mainboard (SCENIC N300, i845GV) + 2570 82865G/PE/P DRAM Controller/Host-Hub Interface + 103c 006a NX9500 + 103c 12bc d330 uT + 1043 80f2 P4P800/P5P800 series motherboard + 1458 2570 GA-8IPE1000 Pro2 motherboard (865PE) + 2571 82865G/PE/P AGP Bridge + 2572 82865G Integrated Graphics Controller + 1014 0287 ThinkCentre S50 + 1028 019d Dimension 3000 + 103c 12bc D530 sff(dc578av) + 1043 80a5 P5P800-MX Mainboard + 1462 7650 Hetis 865GV-E (MS-7065) + 1734 101b Fujitsu-Siemens Scenic E300 i865GV + 8086 4246 Desktop Board D865GBF + 8086 4c43 Desktop Board D865GLC + 2573 82865G/PE/P PCI to CSA Bridge + 2576 82865G/PE/P Processor to I/O Memory Interface + 2578 82875P/E7210 Memory Controller Hub + 1458 2578 GA-8KNXP motherboard (875P) + 1462 7580 MS-6758 (875P Neo) + 15d9 4580 P4SCE Motherboard + 2579 82875P Processor to AGP Controller + 257b 82875P/E7210 Processor to PCI to CSA Bridge + 257e 82875P/E7210 Processor to I/O Memory Interface + 2580 82915G/P/GV/GL/PL/910GL Memory Controller Hub + 1458 2580 GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105b Scenic W620 + 2581 82915G/P/GV/GL/PL/910GL PCI Express Root Port + 2582 82915G/GV/910GL Integrated Graphics Controller + 1028 1079 Optiplex GX280 + 103c 3006 DC7100 SFF(DX878AV) + 1043 2582 P5GD1-VW Mainboard + 1458 2582 GA-8I915ME-G Mainboard + 1734 105b Scenic W620 + 1849 2582 ASRock P4Dual-915GL + 2584 82925X/XE Memory Controller Hub + 1028 0177 Dimension 8400 + 2585 82925X/XE PCI Express Root Port + 2588 E7220/E7221 Memory Controller Hub + 2589 E7220/E7221 PCI Express Root Port + 258a E7221 Integrated Graphics Controller + 2590 Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller + 1014 0575 ThinkPad X41 / Z60t + 1028 0182 Latitude C610 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 82d9 Asus Eee PC 900 + 104d 81b7 Vaio VGN-S3XP + a304 81b7 Vaio VGN-S3XP + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2591 Mobile 915GM/PM Express PCI Express Root Port + 103c 0934 Compaq nw8240 Mobile Workstation + 2592 Mobile 915GM/GMS/910GML Express Graphics Controller + 1014 0582 ThinkPad X41 + 103c 099c NX6110/NC6120 + 103c 308a NC6220 + 1043 1881 GMA 900 915GM Integrated Graphics + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 25a1 6300ESB LPC Interface Controller + 25a2 6300ESB PATA Storage Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer IDE + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10e0 PSL09 PrPMC + 25a3 6300ESB SATA Storage Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25a4 6300ESB SMBus Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25a6 6300ESB AC'97 Audio Controller + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 25a7 6300ESB AC'97 Modem Controller + 25a9 6300ESB USB Universal Host Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer USB + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25aa 6300ESB USB Universal Host Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25ab 6300ESB Watchdog Timer + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 1af4 1100 QEMU Virtual Machine + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25ac 6300ESB I/O Advanced Programmable Interrupt Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25ad 6300ESB USB2 Enhanced Host Controller + 1734 1073 Primergy Econel 200 D2020 mainboard + 1775 10d0 V5D Single Board Computer USB 2.0 + 1775 1100 CR11/VR11 Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25ae 6300ESB 64-bit PCI-X Bridge + 25b0 6300ESB SATA RAID Controller + 1775 1100 CR11/VR11 Single Board Computer + 4c53 10d0 Telum ASLP10 Processor AMC + 4c53 10e0 PSL09 PrPMC + 25c0 5000X Chipset Memory Controller Hub + 25d0 5000Z Chipset Memory Controller Hub + 25d4 5000V Chipset Memory Controller Hub + 15d9 8680 X7DVL-E-O motherboard + 25d8 5000P Chipset Memory Controller Hub + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25e2 5000 Series Chipset PCI Express x4 Port 2 + 25e3 5000 Series Chipset PCI Express x4 Port 3 + 25e4 5000 Series Chipset PCI Express x4 Port 4 + 25e5 5000 Series Chipset PCI Express x4 Port 5 + 25e6 5000 Series Chipset PCI Express x4 Port 6 + 25e7 5000 Series Chipset PCI Express x4 Port 7 + 25f0 5000 Series Chipset FSB Registers + 1028 01bb PowerEdge 1955 FSB Registers + 103c 31fd ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25f1 5000 Series Chipset Reserved Registers + 103c 31fd ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25f3 5000 Series Chipset Reserved Registers + 103c 31fd ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25f5 5000 Series Chipset FBD Registers + 103c 31fd ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25f6 5000 Series Chipset FBD Registers + 103c 31fd ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 25f7 5000 Series Chipset PCI Express x8 Port 2-3 + 25f8 5000 Series Chipset PCI Express x8 Port 4-5 + 25f9 5000 Series Chipset PCI Express x8 Port 6-7 + 25fa 5000X Chipset PCI Express x16 Port 4-7 + 2600 E8500/E8501 Hub Interface 1.5 + 1028 0170 PowerEdge 6850 Hub Interface + 2601 E8500/E8501 PCI Express x4 Port D + 2602 E8500/E8501 PCI Express x4 Port C0 + 2603 E8500/E8501 PCI Express x4 Port C1 + 2604 E8500/E8501 PCI Express x4 Port B0 + 2605 E8500/E8501 PCI Express x4 Port B1 + 2606 E8500/E8501 PCI Express x4 Port A0 + 2607 E8500/E8501 PCI Express x4 Port A1 + 2608 E8500/E8501 PCI Express x8 Port C + 2609 E8500/E8501 PCI Express x8 Port B + 260a E8500/E8501 PCI Express x8 Port A + 260c E8500/E8501 IMI Registers + 2610 E8500/E8501 FSB Registers + 2611 E8500/E8501 Address Mapping Registers + 2612 E8500/E8501 RAS Registers + 2613 E8500/E8501 Reserved Registers + 2614 E8500/E8501 Reserved Registers + 2615 E8500/E8501 Miscellaneous Registers + 2617 E8500/E8501 Reserved Registers + 2618 E8500/E8501 Reserved Registers + 2619 E8500/E8501 Reserved Registers + 261a E8500/E8501 Reserved Registers + 261b E8500/E8501 Reserved Registers + 261c E8500/E8501 Reserved Registers + 261d E8500/E8501 Reserved Registers + 261e E8500/E8501 Reserved Registers + 2620 E8500/E8501 eXternal Memory Bridge + 1028 0170 PowerEdge 6850 Memory Bridge + 2621 E8500/E8501 XMB Miscellaneous Registers + 1028 0170 PowerEdge 6850 XMB Registers + 2622 E8500/E8501 XMB Memory Interleaving Registers + 1028 0170 PowerEdge 6850 Memory Interleaving Registers + 2623 E8500/E8501 XMB DDR Initialization and Calibration + 1028 0170 PowerEdge 6850 DDR Initialization and Calibration + 2624 E8500/E8501 XMB Reserved Registers + 1028 0170 PowerEdge 6850 Reserved Registers + 2625 E8500/E8501 XMB Reserved Registers + 1028 0170 PowerEdge 6850 Reserved Registers + 2626 E8500/E8501 XMB Reserved Registers + 1028 0170 PowerEdge 6850 Reserved Registers + 2627 E8500/E8501 XMB Reserved Registers + 1028 0170 PowerEdge 6850 Reserved Registers + 2640 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2641 82801FBM (ICH6M) LPC Interface Bridge + 1014 0568 ThinkPad X41 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 2642 82801FW/FRW (ICH6W/ICH6RW) LPC Interface Bridge + 2651 82801FB/FW (ICH6/ICH6W) SATA Controller + 1028 0179 Optiplex GX280 + 1043 2601 P5GD1-VW Mainboard + 1734 105c Scenic W620 + 8086 4147 D915GAG Motherboard + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2652 82801FR/FRW (ICH6R/ICH6RW) SATA Controller + 1028 0177 Dimension 8400 + 1462 7028 915P/G Neo2 + 2653 82801FBM (ICH6M) SATA Controller + 1014 056a ThinkPad X41 + 2658 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 + 1014 0565 ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 2558 GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2659 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 + 1014 0565 ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 2659 GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 265a 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 + 1014 0565 ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 265a GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 265b 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 + 1014 0565 ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 265a GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 265c 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller + 1014 0566 ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 5006 GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + 8086 265c Dimension 3100 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2660 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 + 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2662 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 + 103c 0934 Compaq nw8240 Mobile Workstation + 103c 0944 Compaq nc6220 Notebook PC + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2664 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 3 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2666 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 4 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2668 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller + 1014 05b7 ThinkPad Z60t +# based on the PTGD1-LA motherboard + 103c 2a09 PufferM-UL8E + 1043 1173 A6VC + 1043 814e P5GD1-VW Mainboard + 1462 7028 915P/G Neo2 + 1af4 1100 QEMU Virtual Machine + 266a 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller + 1014 056b ThinkPad X41 + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 1043 80a6 P5GD1-VW Mainboard + 1458 266a GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 266c 82801FB/FBM/FR/FW/FRW (ICH6 Family) LAN Controller + 266d 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller + 1025 006a Conexant AC'97 CoDec (in Acer TravelMate 2410 serie laptop) + 103c 0934 Compaq nw8240/nx8220 + 103c 099c NX6110/NC6120 + 266e 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller + 1014 0581 ThinkPad X41 (Analog Devices AD1981B codec) + 1025 006a Realtek ALC 655 codec (in Acer TravelMate 2410 serie laptop) + 1028 0177 Dimension 8400 + 1028 0179 Optiplex GX280 + 1028 0182 Latitude D610 Laptop + 1028 0187 Precision M70 Laptop + 1028 0188 Inspiron 6000 laptop + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq NC6220 + 103c 099c NX6110/NC6120 + 103c 3006 DC7100 SFF(DX878AV) + 1458 a002 GA-8I915ME-G Mainboard + 152d 0745 Packard Bell A8550 Laptop + 1734 105a Scenic W620 + 266f 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller + 1028 0177 Dimension 8400 + 103c 0934 Compaq nw8240/nx8220 + 103c 0944 Compaq nc6220 Notebook PC + 103c 099c NX6110/NC6120 + 1043 80a6 P5GD1-VW Mainboard + 1458 266f GA-8I915ME-G Mainboard + 1462 7028 915P/G Neo2 + 1734 105c Scenic W620 + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 2670 631xESB/632xESB/3100 Chipset LPC Interface Controller + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 2680 631xESB/632xESB/3100 Chipset SATA IDE Controller + 2681 631xESB/632xESB SATA AHCI Controller + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 2682 631xESB/632xESB SATA RAID Controller + 103c 31fe Adaptec Serial ATA HostRAID + 2683 631xESB/632xESB SATA RAID Controller + 2688 631xESB/632xESB/3100 Chipset UHCI USB Controller #1 + 1028 01bb PowerEdge 1955 onboard USB + 1028 01f0 PowerEdge R900 onboard USB + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 2689 631xESB/632xESB/3100 Chipset UHCI USB Controller #2 + 1028 01bb PowerEdge 1955 onboard USB + 1028 01f0 PowerEdge R900 onboard USB + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 268a 631xESB/632xESB/3100 Chipset UHCI USB Controller #3 + 1028 01f0 PowerEdge R900 onboard USB + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 268b 631xESB/632xESB/3100 Chipset UHCI USB Controller #4 + 1028 01f0 PowerEdge R900 onboard USB + 15d9 8680 X7DVL-E-O motherboard + 8086 3476 S5000PSLSATA Server Board + 268c 631xESB/632xESB/3100 Chipset EHCI USB2 Controller + 1028 01bb PowerEdge 1955 onboard USB + 1028 01f0 PowerEdge R900 onboard USB + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 2690 631xESB/632xESB/3100 Chipset PCI Express Root Port 1 + 103c 31fe ProLiant DL140 G3 + 15d9 9680 X7DBN Motherboard + 2692 631xESB/632xESB/3100 Chipset PCI Express Root Port 2 + 103c 31fe ProLiant DL140 G3 + 2694 631xESB/632xESB/3100 Chipset PCI Express Root Port 3 + 2696 631xESB/632xESB/3100 Chipset PCI Express Root Port 4 + 2698 631xESB/632xESB AC '97 Audio Controller + 2699 631xESB/632xESB AC '97 Modem Controller + 269a 631xESB/632xESB High Definition Audio Controller + 269b 631xESB/632xESB/3100 Chipset SMBus Controller + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 8086 3476 S5000PSLSATA Server Board + 269e 631xESB/632xESB IDE Controller + 103c 31fe ProLiant DL140 G3 + 15d9 8680 X7DVL-E-O motherboard + 15d9 9680 X7DBN Motherboard + 2700 Optane SSD 900P Series + 8086 3900 900P Series [Add-in Card] + 8086 3901 900P Series [2.5" SFF] + 2701 NVMe Datacenter SSD [Optane] + 1028 2000 Express Flash NVMe [Optane] 375GB 2.5" U.2 (P4800X) + 1028 2001 Express Flash NVMe [Optane] 750GB 2.5" U.2 (P4800X) + 1028 2002 Express Flash NVMe [Optane] 750GB AIC (P4800X) + 1028 200a Express Flash NVMe [Optane] 375GB AIC (P4800X) + 8086 3904 NVMe Datacenter SSD [Optane] x4 AIC (P4800X) + 8086 3905 NVMe Datacenter SSD [Optane] 15mm 2.5" U.2 (P4800X) + 2723 Wi-Fi 6 AX200 + 1a56 1654 Killer™ Wi-Fi 6 AX1650x (AX200NGW) + 8086 0084 Wi-Fi 6 AX200NGW + 2725 Wi-Fi 6 AX210/AX211/AX411 160MHz + 8086 0020 Wi-Fi 6 AX210 160MHz + 8086 0024 Wi-Fi 6 AX210 160MHz + 8086 0090 Wi-Fi 6 AX211 160MHz + 8086 00b0 Wi-Fi 6 AX411 160MHz + 8086 0310 Wi-Fi 6 AX210 160MHz + 8086 0510 Wi-Fi 6 AX210 160MHz + 8086 0a10 Wi-Fi 6 AX210 160MHz + 8086 2020 Wi-Fi 6 AX210 160MHz + 8086 4020 Wi-Fi 6 AX210 160MHz + 8086 6020 Wi-Fi 6 AX210 160MHz + 8086 6024 Wi-Fi 6 AX210 160MHz + 8086 e020 Wi-Fi 6 AX210 160MHz + 8086 e024 Wi-Fi 6 AX210 160MHz + 2770 82945G/GZ/P/PL Memory Controller Hub + 1028 01ad OptiPlex GX620 + 103c 2a3b Pavilion A1512X + 1043 817a P5LD2-VM Mainboard + 107b 5048 E4500 + 1462 7418 Wind PC MS-7418 + 1849 2770 ConRoe1333-D667 + 8086 544e DeskTop Board D945GTP + 2771 82945G/GZ/P/PL PCI Express Root Port + 2772 82945G/GZ Integrated Graphics Controller + 103c 2a3b Pavilion A1512X + 1462 7418 Wind PC MS-7418 + 1849 2772 ConRoe1333-D667 + 8086 544e DeskTop Board D945GTP + 8086 d605 Desktop Board D945GCCR + 2774 82955X Memory Controller Hub + 2775 82955X PCI Express Root Port + 2776 82945G/GZ Integrated Graphics Controller + 2778 E7230/3000/3010 Memory Controller Hub + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 2779 E7230/3000/3010 PCI Express Root Port + 277a 82975X/3010 PCI Express Root Port + 277c 82975X Memory Controller Hub + 1043 8178 P5WDG2 WS Professional motherboard + 277d 82975X PCI Express Root Port + 2780 82915G/GV/GL/910GL [Grantsdale] Graphics Device + 2782 82915G Integrated Graphics Controller + 1043 2582 P5GD1-VW Mainboard + 1734 105b Scenic W620 + 2792 Mobile 915GM/GMS/910GML Express Graphics Controller + 1014 0582 ThinkPad X41 + 103c 099c NX6110/NC6120 + 103c 308a Compaq nc6220 Notebook PC + 1043 1881 GMA 900 915GM Integrated Graphics + e4bf 0ccd CCD-CALYPSO + e4bf 0cd3 CD3-JIVE + e4bf 58b1 XB1 + 27a0 Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub + 1025 006c 9814 WKMI + 1028 01d7 XPS M1210 + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1043 1237 A6J-Q008 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 17aa 2015 ThinkPad T60 + 17aa 2017 ThinkPad R60/T60/X60 series + 27a1 Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 27a2 Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller + 103c 30a1 NC2400 + 103c 30d5 530 Laptop + 17aa 201a ThinkPad R60/T60/X60 series + 9902 1584 CCE MPL-D10H120F + 27a6 Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller + 103c 30a1 NC2400 + 103c 30d5 530 Laptop + 1775 11cc CC11/CL11 integrated graphics (secondary) + 17aa 201a ThinkPad R60/T60/X60 series + 27ac Mobile 945GSE Express Memory Controller Hub + 1775 11cc CC11/CL11 + 27ad Mobile 945GSE Express PCI Express Root Port + 27ae Mobile 945GSE Express Integrated Graphics Controller + 1775 11cc CC11/CL11 integrated graphics (primary) + 27b0 82801GH (ICH7DH) LPC Interface Bridge + 103c 2a3b Pavilion A1512X + 8086 544e DeskTop Board D945GTP + 27b8 82801GB/GR (ICH7 Family) LPC Interface Bridge + 1028 01e6 PowerEdge 860 + 103c 2a8c Compaq 500B Microtower + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM Motherboard + 107b 5048 E4500 + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 8086 544e DeskTop Board D945GTP + 27b9 82801GBM (ICH7-M) LPC Interface Bridge + 1028 01d7 XPS M1210 + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 10f7 8338 Panasonic CF-Y5 laptop + 17aa 2009 ThinkPad R60/T60/X60 series + 27bc NM10 Family LPC Controller + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 144d c072 Notebook N150P + 1458 5001 GA-D525TUD + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + 27bd 82801GHM (ICH7-M DH) LPC Interface Bridge + 1025 006c 9814 WKMI + 27c0 NM10/ICH7 Family SATA Controller [IDE mode] + 1028 01ad OptiPlex GX620 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a8c Compaq 500B Microtower + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM Motherboard + 107b 5048 E4500 + 1462 2310 MSI Hetis 945 + 1462 7236 945P Neo3-F Rev. 2.2 motherboard + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 8086 544b Desktop Board D425KT + 8086 544e DeskTop Board D945GTP + 27c1 NM10/ICH7 Family SATA Controller [AHCI mode] + 1028 01df PowerEdge SC440 + 103c 2a3b Pavilion A1512X + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 144d c072 Notebook N150P + 1458 b005 GA-D525TUD + 1775 11cc CC11/CL11 + 8086 4f4d DeskTop Board D510MO + 8086 5842 DeskTop Board D975XBX + 27c3 82801GR/GDH (ICH7R/ICH7DH) SATA Controller [RAID mode] + 1775 11cc CC11/CL11 + 8086 544e DeskTop Board D945GTP + 27c4 82801GBM/GHM (ICH7-M Family) SATA Controller [IDE mode] + 1025 006c 9814 WKMI + 1028 01d7 XPS M1210 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 17aa 200e ThinkPad T60 + 27c5 82801GBM/GHM (ICH7-M Family) SATA Controller [AHCI mode] + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 17aa 200d ThinkPad R60/T60/X60 series + 27c6 82801GHM (ICH7-M DH) SATA Controller [RAID mode] + 27c8 NM10/ICH7 Family USB UHCI Controller #1 + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM, P5LD2-VM Mainboard + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 107b 5048 E4500 + 144d c072 Notebook N150P + 1458 5004 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200a ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + 8086 544e DeskTop Board D945GTP + 27c9 NM10/ICH7 Family USB UHCI Controller #2 + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM, P5LD2-VM Mainboard + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 107b 5048 E4500 + 144d c072 Notebook N150P + 1458 5004 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200a ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + 8086 544e DeskTop Board D945GTP + 27ca NM10/ICH7 Family USB UHCI Controller #3 + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM, P5LD2-VM Mainboard + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 107b 5048 E4500 + 144d c072 Notebook N150P + 1458 5004 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200a ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544e DeskTop Board D945GTP + 27cb NM10/ICH7 Family USB UHCI Controller #4 + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM, P5LD2-VM Mainboard + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 107b 5048 E4500 + 144d c072 Notebook N150P + 1458 5004 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200a ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544e DeskTop Board D945GTP + 27cc NM10/ICH7 Family USB2 EHCI Controller + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM, P5LD2-VM Mainboard + 1043 83ad Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c072 Notebook N150P + 1458 5006 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200b ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + 8086 544e DeskTop Board D945GTP + 27d0 NM10/ICH7 Family PCI Express Port 1 + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c072 Notebook N150P + 1458 5001 GA-D525TUD + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 2011 ThinkPad R60e + 8086 544b Desktop Board D425KT + 27d2 NM10/ICH7 Family PCI Express Port 2 + 103c 309f Compaq nx9420 Notebook + 103c 30a3 Compaq nw8440 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c072 Notebook N150P + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 2011 ThinkPad R60e + 8086 544b Desktop Board D425KT + 27d4 NM10/ICH7 Family PCI Express Port 3 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c072 Notebook N150P + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 2011 ThinkPad R60e + 8086 544b Desktop Board D425KT + 27d6 NM10/ICH7 Family PCI Express Port 4 + 103c 30a3 Compaq nw8440 + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 144d c072 Notebook N150P + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 2011 ThinkPad R60e + 8086 544b Desktop Board D425KT + 27d8 NM10/ICH7 Family High Definition Audio Controller + 1025 006c 9814 WKMI + 1028 01d7 XPS M1210 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1043 1123 A6J-Q008 + 1043 13c4 G2P + 1043 817f P5LD2-VM Mainboard (Realtek ALC 882 codec) + 1043 8249 P5B-MX/WiFi-AP + 1043 8290 P5KPL-VM Motherboard + 1043 82ea P5KPL-CM Motherboard + 1043 8437 Eee PC 1015PX + 105b 0d7c D270S/D250S Motherboard + 1071 8207 Medion MIM 2240 Notebook PC [MD98100] + 107b 5048 E4500 + 10f7 8338 Panasonic CF-Y5 laptop + 1179 ff10 Toshiba Satellite A100-796 audio (Realtek ALC861) + 1179 ff31 AC97 Data Fax SoftModem with SmartCP + 1447 1043 Asus A8JP (Analog Devices AD1986A) + 144d c072 Notebook N150P + 1458 a002 GA-D525TUD (Realtek ALC887) + 1458 a102 GA-8I945PG-RH Mainboard + 1462 7418 Wind PC MS-7418 + 152d 0753 Softmodem + 1734 10ad Conexant softmodem SmartCP + 17aa 2010 ThinkPad R60/T60/X60 series + 17aa 3802 3000 C200 audio [Realtek ALC861VD] + 8086 1112 DeskTop Board D945GTP + 8086 27d8 DeskTop Board D945GTP + 8086 d618 DeskTop Board D510MO + 8384 7680 STAC9221 HD Audio Codec + 27da NM10/ICH7 Family SMBus Controller + 1025 006c 9814 WKMI + 1028 01ad OptiPlex GX620 + 1028 01d7 XPS M1210 + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM Motherboard + 105b 0d7c D270S/D250S Motherboard + 1071 8209 Medion MIM 2240 Notebook PC [MD98100] + 10f7 8338 Panasonic CF-Y5 laptop + 144d c072 Notebook N150P + 1458 5001 GA-8I945PG-RH/GA-D525TUD Mainboard + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200f ThinkPad R60/T60/X60 series + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + 8086 544e DeskTop Board D945GTP + 8086 5842 DeskTop Board D975XBX + 27dc NM10/ICH7 Family LAN Controller + 103c 2a3b Pavilion A1512X + 8086 308d DeskTop Board D945GTP + 27dd 82801G (ICH7 Family) AC'97 Modem Controller + 27de 82801G (ICH7 Family) AC'97 Audio Controller + 1028 01ad OptiPlex GX620 + 1462 7267 Realtek ALC883 Audio Controller + 1775 11cc CC11 integrated audio (AD1981BL codec) + 27df 82801G (ICH7 Family) IDE Controller + 1028 01df PowerEdge SC440 + 1028 01e6 PowerEdge 860 + 103c 2a3b Pavilion A1512X + 103c 2a8c Compaq 500B Microtower + 103c 309f Compaq nx9420 Notebook + 103c 30a1 NC2400 + 103c 30a3 Compaq nw8440 + 103c 30d5 530 Laptop + 1043 1237 A6J-Q008 + 1043 8179 P5B-MX/WiFi-AP, P5KPL-VM Motherboard + 107b 5048 E4500 + 10f7 8338 Panasonic CF-Y5 laptop + 1462 7418 Wind PC MS-7418 + 1775 11cc CC11/CL11 + 17aa 200c ThinkPad R60/T60/X60 series + 8086 544e DeskTop Board D945GTP + 27e0 82801GR/GH/GHM (ICH7 Family) PCI Express Port 5 + 1775 11cc CC11/CL11 + 27e2 82801GR/GH/GHM (ICH7 Family) PCI Express Port 6 + 1775 11cc CC11/CL11 + 2810 82801HB/HR (ICH8/R) LPC Interface Controller + 1043 81ec P5B + 2811 82801HEM (ICH8M-E) LPC Interface Controller + 103c 30c1 Compaq 6910p + 17aa 20b6 ThinkPad T61/R61 + e4bf cc47 CCG-RUMBA + 2812 82801HH (ICH8DH) LPC Interface Controller + 2814 82801HO (ICH8DO) LPC Interface Controller + 2815 82801HM (ICH8M) LPC Interface Controller + 1025 0121 Aspire 5920G + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20a5 ThinkPad R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2820 82801H (ICH8 Family) 4 port SATA Controller [IDE mode] + 1028 01da OptiPlex 745 + 1462 7235 P965 Neo MS-7235 mainboard + 2821 82801HR/HO/HH (ICH8R/DO/DH) 6 port SATA Controller [AHCI mode] + 2822 SATA Controller [RAID mode] + 1028 020d Inspiron 530 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 2823 C610/X99 series chipset sSATA Controller [RAID mode] + 2824 82801HB (ICH8) 4 port SATA Controller [AHCI mode] + 1043 81ec P5B + 2825 82801HR/HO/HH (ICH8R/DO/DH) 2 port SATA Controller [IDE mode] + 1028 01da OptiPlex 745 + 1462 7235 P965 Neo MS-7235 mainboard + 2826 C600/X79 series chipset SATA RAID Controller + 1d49 0100 Intel RSTe SATA Software RAID + 1d49 0101 Intel RSTe SATA Software RAID + 1d49 0102 Intel RSTe SATA Software RAID + 1d49 0103 Intel RSTe SATA Software RAID + 1d49 0104 Intel RSTe SATA Software RAID + 1d49 0105 Intel RSTe SATA Software RAID + 2827 C610/X99 series chipset sSATA Controller [RAID mode] + 2828 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [IDE mode] + 1028 01f3 Inspiron 1420 + 103c 30c0 Compaq 6710b + 17aa 20a8 ThinkPad R61 + e4bf cc47 CCG-RUMBA + 2829 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] + 1025 0121 Aspire 5920G + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20a7 ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 282a 82801 Mobile SATA Controller [RAID mode] + 1028 040b Latitude E6510 + e4bf 50c1 PC1-GROOVE + 2830 82801H (ICH8 Family) USB UHCI Controller #1 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 1462 7235 P965 Neo MS-7235 mainboard + 17aa 20aa ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2831 82801H (ICH8 Family) USB UHCI Controller #2 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 1462 7235 P965 Neo MS-7235 mainboard + 17aa 20aa ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2832 82801H (ICH8 Family) USB UHCI Controller #3 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20aa ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2833 82801H (ICH8 Family) USB UHCI Controller #4 + 1043 81ec P5B + 2834 82801H (ICH8 Family) USB UHCI Controller #4 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 1462 7235 P965 Neo MS-7235 mainboard + 17aa 20aa ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2835 82801H (ICH8 Family) USB UHCI Controller #5 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20aa Thinkpad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2836 82801H (ICH8 Family) USB2 EHCI Controller #1 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 1462 7235 P965 Neo MS-7235 mainboard + 17aa 20ab ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 283a 82801H (ICH8 Family) USB2 EHCI Controller #2 + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20ab ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 283e 82801H (ICH8 Family) SMBus Controller + 1025 0121 Aspire 5920G + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 9008 Vaio VGN-SZ79SN_C + 104d 902d VAIO VGN-NR120E + 1462 7235 P965 Neo MS-7235 mainboard + 17aa 20a9 ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 283f 82801H (ICH8 Family) PCI Express Port 1 + 1028 01da OptiPlex 745 + 103c 30c1 Compaq 6910p + 1043 1017 X58LE + 104d 902d VAIO VGN-NR120E + 17aa 20ad ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2841 82801H (ICH8 Family) PCI Express Port 2 + 103c 30c1 Compaq 6910p + 1043 1017 X58LE + 104d 902d VAIO VGN-NR120E + 17aa 20ad ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2843 82801H (ICH8 Family) PCI Express Port 3 + 1043 1017 X58LE + 104d 902d VAIO VGN-NR120E + 17aa 20ad ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2845 82801H (ICH8 Family) PCI Express Port 4 + 1043 1017 X58LE + 17aa 20ad ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2847 82801H (ICH8 Family) PCI Express Port 5 + 1028 01da OptiPlex 745 + 103c 30c1 Compaq 6910p + 17aa 20ad ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + 2849 82801H (ICH8 Family) PCI Express Port 6 + 284b 82801H (ICH8 Family) HD Audio Controller + 1025 011f Realtek ALC268 audio codec + 1025 0121 Aspire 5920G + 1025 0145 Realtek ALC889 (Aspire 8920G w. Dolby Theater) + 1028 01da OptiPlex 745 + 1028 01f3 Inspiron 1420 + 1028 01f9 Latitude D630 + 1028 01ff Precision M4300 + 1028 022f Inspiron 1525 + 1028 0256 Studio 1735 + 103c 2802 Compaq dc7700p + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 1043 1339 M51S series + 1043 17f3 X58LE + 1043 81ec P5B + 104d 9005 Vaio VGN-FZ260E + 104d 9008 Vaio VGN-SZ79SN_C + 104d 9016 Sony VAIO VGN-AR51M + 104d 902d VAIO VGN-NR120E + 14f1 5051 Presario C700 + 17aa 20ac ThinkPad T61/R61 + 17c0 4088 Medion WIM 2210 Notebook PC [MD96850] + 8384 7616 Dell Vostro 1400 + e4bf cc47 CCG-RUMBA + 284f 82801H (ICH8 Family) Thermal Reporting Device + 2850 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller + 1025 0121 Aspire 5920G + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20a6 ThinkPad T61/R61 + 17c0 4083 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 28c0 Volume Management Device NVMe RAID Controller + 2912 82801IH (ICH9DH) LPC Interface Controller + 2914 82801IO (ICH9DO) LPC Interface Controller + 1028 0211 Optiplex 755 + 2916 82801IR (ICH9R) LPC Interface Controller + 1028 020d Inspiron 530 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard + 1462 7345 MS-7345 Motherboard + 8086 5044 Desktop Board DP35DP + 2917 ICH9M-E LPC Interface Controller + 17aa 20f5 ThinkPad T400 + e4bf cc4d CCM-BOOGIE + 2918 82801IB (ICH9) LPC Interface Controller + 1028 0236 PowerEdge R610 82801IB (ICH9) LPC Interface Controller + 1462 7360 G33/P35 Neo + 1af4 1100 QEMU Virtual Machine + 2919 ICH9M LPC Interface Controller + 2920 82801IR/IO/IH (ICH9R/DO/DH) 4 port SATA Controller [IDE mode] + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard SATA Controller + 1028 0210 PowerEdge T300 onboard SATA Controller + 1028 0211 Optiplex 755 + 1028 023c PowerEdge R200 onboard SATA Controller + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801IR [ICH9R] + 2921 82801IB (ICH9) 2 port SATA Controller [IDE mode] + 1028 0235 PowerEdge R710 SATA IDE Controller + 1028 0236 PowerEdge R610 SATA IDE Controller + 1028 0237 PowerEdge T610 SATA IDE Controller + 1462 7360 G33/P35 Neo + 2922 82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode] + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801IR [ICH9R] + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + 2923 82801IB (ICH9) 4 port SATA Controller [AHCI mode] + 2925 82801IR/IO (ICH9R/DO) SATA Controller [RAID mode] + 1734 10e0 System Board D2542 + 8086 2925 System Board D2542 + 2926 82801I (ICH9 Family) 2 port SATA Controller [IDE mode] + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard SATA Controller + 1028 0210 PowerEdge T300 onboard SATA Controller + 1028 0211 Optiplex 755 + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801IR [ICH9R] + 1462 7360 G33/P35 Neo + 2928 82801IBM/IEM (ICH9M/ICH9M-E) 2 port SATA Controller [IDE mode] + 2929 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] + 103c 3628 dv6-1190en + 17aa 20f8 ThinkPad T400 + e4bf cc4d CCM-BOOGIE + 292c 82801IEM (ICH9M-E) SATA Controller [RAID mode] + 292d 82801IBM/IEM (ICH9M/ICH9M-E) 2 port SATA Controller [IDE mode] + e4bf cc4d CCM-BOOGIE + 2930 82801I (ICH9 Family) SMBus Controller + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 103c 2a6f Asus IPIBL-LB Motherboard + 103c 3628 dv6-1190en + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f9 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2932 82801I (ICH9 Family) Thermal Subsystem + 103c 3628 dv6-1190en + 2934 82801I (ICH9 Family) USB UHCI Controller #1 + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard UHCI + 1028 0210 PowerEdge T300 onboard UHCI + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB UHCI Controller + 1028 0236 PowerEdge R610 USB UHCI Controller + 1028 0237 PowerEdge T610 USB UHCI Controller + 1028 023c PowerEdge R200 onboard UHCI + 1028 0287 PowerEdge M610 onboard UHCI + 1028 029c PowerEdge M710 USB UHCI Controller + 1028 2011 Optiplex 755 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2935 82801I (ICH9 Family) USB UHCI Controller #2 + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard UHCI + 1028 0210 PowerEdge T300 onboard UHCI + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB UHCI Controller + 1028 0236 PowerEdge R610 USB UHCI Controller + 1028 0237 PowerEdge T610 USB UHCI Controller + 1028 023c PowerEdge R200 onboard UHCI + 1028 0287 PowerEdge M610 onboard UHCI + 1028 029c PowerEdge M710 USB UHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2936 82801I (ICH9 Family) USB UHCI Controller #3 + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard UHCI + 1028 0210 PowerEdge T300 onboard UHCI + 1028 0211 Optiplex 755 + 1028 0237 PowerEdge T610 USB UHCI Controller + 1028 023c PowerEdge R200 onboard UHCI + 1028 0287 PowerEdge M610 onboard UHCI + 1028 029c PowerEdge M710 USB UHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2937 82801I (ICH9 Family) USB UHCI Controller #4 + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB UHCI Controller + 1028 0236 PowerEdge R610 USB UHCI Controller + 1028 0237 PowerEdge T610 USB UHCI Controller + 1028 0287 PowerEdge M610 onboard UHCI + 1028 029c PowerEdge M710 USB UHCI Controller + 1028 2011 Optiplex 755 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 2937 Optiplex 755 + 8086 2942 828011 (ICH9 Family ) USB UHCI Controller + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2938 82801I (ICH9 Family) USB UHCI Controller #5 + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB UHCI Controller + 1028 0236 PowerEdge R610 USB UHCI Controller + 1028 0237 PowerEdge T610 USB UHCI Controller + 1028 0287 PowerEdge M610 onboard UHCI + 1028 029c PowerEdge M710 USB UHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 2938 Optiplex 755 + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 2939 82801I (ICH9 Family) USB UHCI Controller #6 + 1028 020d Inspiron 530 + 1028 0210 PowerEdge T300 onboard UHCI + 1028 0237 PowerEdge T610 USB UHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f0 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 293a 82801I (ICH9 Family) USB2 EHCI Controller #1 + 1028 020d Inspiron 530 + 1028 020f PowerEdge R300 onboard EHCI + 1028 0210 PowerEdge T300 onboard EHCI + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB EHCI Controller + 1028 0236 PowerEdge R610 USB EHCI Controller + 1028 0237 PowerEdge T610 USB EHCI Controller + 1028 023c PowerEdge R200 onboard EHCI + 1028 0287 PowerEdge M610 onboard EHCI + 1028 029c PowerEdge M710 USB EHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f1 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 293c 82801I (ICH9 Family) USB2 EHCI Controller #2 + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 1028 0235 PowerEdge R710 USB EHCI Controller + 1028 0236 PowerEdge R610 USB EHCI Controller + 1028 0237 PowerEdge T610 USB EHCI Controller + 1028 0287 PowerEdge M610 onboard EHCI + 1028 029c PowerEdge M710 USB EHCI Controller + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f1 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 293c Optiplex 755 + 8086 5044 Desktop Board DP35DP + e4bf cc4d CCM-BOOGIE + 293e 82801I (ICH9 Family) HD Audio Controller + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 103c 2a6f Asus IPIBL-LB Motherboard + 103c 3628 dv6-1190en + 1043 829f P5K PRO Motherboard: 82801IR [ICH9R] + 1462 735a MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 1462 7360 G33/P35 Neo + 17aa 20f2 ThinkPad T400 + 1af4 1100 QEMU Virtual Machine + 8086 293e Optiplex 755 + 8086 2940 Optiplex 755 + e4bf cc4d CCM-BOOGIE + 2940 82801I (ICH9 Family) PCI Express Port 1 + 1028 020d Inspiron 530 + 1028 0211 Optiplex 755 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 8086 2940 Optiplex 755 + 2942 82801I (ICH9 Family) PCI Express Port 2 + 1028 020d Inspiron 530 + 2944 82801I (ICH9 Family) PCI Express Port 3 + 1028 020d Inspiron 530 + 103c 2a6f Asus IPIBL-LB Motherboard + 2946 82801I (ICH9 Family) PCI Express Port 4 + 1028 020d Inspiron 530 + 2948 82801I (ICH9 Family) PCI Express Port 5 + 1028 020d Inspiron 530 + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 294a 82801I (ICH9 Family) PCI Express Port 6 + 1028 020d Inspiron 530 + 1043 8277 P5K PRO Motherboard: 82801IR [ICH9R] + 1462 7345 MS-7345 Motherboard: Intel 82801I/IR [ICH9/ICH9R] + 294c 82566DC-2 Gigabit Network Connection + 17aa 302e 82566DM-2 Gigabit Network Connection + 2970 82946GZ/PL/GL Memory Controller Hub + 1043 823b P5B-MX/WiFi-AP + 2971 82946GZ/PL/GL PCI Express Root Port + 2972 82946GZ/GL Integrated Graphics Controller + 1043 823b P5B-MX/WiFi-AP + 2973 82946GZ/GL Integrated Graphics Controller + 2974 82946GZ/GL HECI Controller + 2975 82946GZ/GL HECI Controller + 2976 82946GZ/GL PT IDER Controller + 2977 82946GZ/GL KT Controller + 2980 82G35 Express DRAM Controller + 2981 82G35 Express PCI Express Root Port + 2982 82G35 Express Integrated Graphics Controller + 2983 82G35 Express Integrated Graphics Controller + 2984 82G35 Express HECI Controller + 2990 82Q963/Q965 Memory Controller Hub + 1028 01da OptiPlex 745 + 2991 82Q963/Q965 PCI Express Root Port + 2992 82Q963/Q965 Integrated Graphics Controller + 2993 82Q963/Q965 Integrated Graphics Controller + 2994 82Q963/Q965 HECI Controller + 2995 82Q963/Q965 HECI Controller + 2996 82Q963/Q965 PT IDER Controller + 2997 82Q963/Q965 KT Controller + 29a0 82P965/G965 Memory Controller Hub + 1043 81ea P5B + 1462 7276 MS-7276 [G965MDH] + 29a1 82P965/G965 PCI Express Root Port + 29a2 82G965 Integrated Graphics Controller + 1462 7276 MS-7276 [G965MDH] + 29a3 82G965 Integrated Graphics Controller + 29a4 82P965/G965 HECI Controller + 29a5 82P965/G965 HECI Controller + 29a6 82P965/G965 PT IDER Controller + 29a7 82P965/G965 KT Controller + 29b0 82Q35 Express DRAM Controller + 1028 0211 OptiPlex 755 + 29b1 82Q35 Express PCI Express Root Port + 1028 0211 OptiPlex 755 + 29b2 82Q35 Express Integrated Graphics Controller + 1028 0211 OptiPlex 755 + 29b3 82Q35 Express Integrated Graphics Controller + 1028 0211 OptiPlex 755 + 29b4 82Q35 Express MEI Controller + 1028 0211 OptiPlex 755 + 29b5 82Q35 Express MEI Controller + 29b6 82Q35 Express PT IDER Controller + 1028 0211 OptiPlex 755 + 29b7 82Q35 Express Serial KT Controller + 1028 0211 OptiPlex 755 + 29c0 82G33/G31/P35/P31 Express DRAM Controller + 1028 020d Inspiron 530 + 103c 2a6f Asus IPIBL-LB Motherboard + 1043 8276 P5K PRO Motherboard: Intel 82P35 Northbridge + 1043 82b0 P5KPL-VM Motherboard + 1462 7345 MS-7345 Motherboard: Intel 82G33/P35 Northbridge + 1462 7360 G33/P35 Neo + 1af4 1100 QEMU Virtual Machine + 8086 5044 Desktop Board DP35DP + 29c1 82G33/G31/P35/P31 Express PCI Express Root Port + 1028 020d Inspiron 530 + 1043 8276 P5K PRO Motherboard: Intel 82P35 Northbridge + 29c2 82G33/G31 Express Integrated Graphics Controller + 1028 020d Inspiron 530 + 1043 82b0 P5KPL-VM Motherboard + 29c3 82G33/G31 Express Integrated Graphics Controller + 1028 020d Inspiron 530 + 1043 82b0 P5KPL-VM Motherboard + 29c4 82G33/G31/P35/P31 Express MEI Controller + 8086 5044 Desktop Board DP35DP + 29c5 82G33/G31/P35/P31 Express MEI Controller + 29c6 82G33/G31/P35/P31 Express PT IDER Controller + 29c7 82G33/G31/P35/P31 Express Serial KT Controller + 29cf Virtual HECI Controller + 29d0 82Q33 Express DRAM Controller + 29d1 82Q33 Express PCI Express Root Port + 29d2 82Q33 Express Integrated Graphics Controller + 29d3 82Q33 Express Integrated Graphics Controller + 29d4 82Q33 Express MEI Controller + 29d5 82Q33 Express MEI Controller + 29d6 82Q33 Express PT IDER Controller + 29d7 82Q33 Express Serial KT Controller + 29e0 82X38/X48 Express DRAM Controller + 29e1 82X38/X48 Express Host-Primary PCI Express Bridge + 29e4 82X38/X48 Express MEI Controller + 29e5 82X38/X48 Express MEI Controller + 29e6 82X38/X48 Express PT IDER Controller + 29e7 82X38/X48 Express Serial KT Controller + 29e9 82X38/X48 Express Host-Secondary PCI Express Bridge + 29f0 3200/3210 Chipset DRAM Controller + 29f1 3200/3210 Chipset Host-Primary PCI Express Bridge + 29f4 3200/3210 Chipset MEI Controller + 29f5 3200/3210 Chipset MEI Controller + 29f6 3200/3210 Chipset PT IDER Controller + 29f7 3200/3210 Chipset Serial KT Controller + 29f9 3210 Chipset Host-Secondary PCI Express Bridge + 2a00 Mobile PM965/GM965/GL960 Memory Controller Hub + 1025 0121 Aspire 5920G + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30c1 Compaq 6910p + 103c 30c5 Compaq 8510p + 103c 30cc Pavilion dv6700 + 103c 30d9 Presario C700 + 1043 1017 X58LE + 104d 9005 Vaio VGN-FZ260E + 104d 902d VAIO VGN-NR120E + 17aa 20b1 ThinkPad T61 + 17aa 20b3 ThinkPad T61/R61 + 17c0 4082 Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2a01 Mobile PM965/GM965/GL960 PCI Express Root Port + 2a02 Mobile GM965/GL960 Integrated Graphics Controller (primary) + 1028 01f3 Inspiron 1420 + 1028 01f9 Latitude D630 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30d9 Presario C700 + 1043 14e2 X58LE + 104d 902d VAIO VGN-NR120E + 17aa 20b5 GM965 [X3100] on ThinkPad T61/R61 + 17c0 4082 GM965 on Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2a03 Mobile GM965/GL960 Integrated Graphics Controller (secondary) + 1028 01f3 Inspiron 1420 + 1028 022f Inspiron 1525 + 103c 30c0 Compaq 6710b + 103c 30d9 Presario C700 + 1043 14e2 X58LE + 104d 902d VAIO VGN-NR120E + 17aa 20b5 GM965 [X3100] on ThinkPad T61/R61 + 17c0 4082 GM965 on Medion WIM 2210 Notebook PC [MD96850] + e4bf cc47 CCG-RUMBA + 2a04 Mobile PM965/GM965 MEI Controller + 103c 30c1 Compaq 6910p + 2a05 Mobile PM965/GM965 MEI Controller + 2a06 Mobile PM965/GM965 PT IDER Controller + 103c 30c1 Compaq 6910p + 2a07 Mobile PM965/GM965 KT Controller + 103c 30c1 Compaq 6910p + 2a10 Mobile GME965/GLE960 Memory Controller Hub + e4bf cc47 CCG-RUMBA + 2a11 Mobile GME965/GLE960 PCI Express Root Port + 2a12 Mobile GME965/GLE960 Integrated Graphics Controller + e4bf cc47 CCG-RUMBA + 2a13 Mobile GME965/GLE960 Integrated Graphics Controller + e4bf cc47 CCG-RUMBA + 2a14 Mobile GME965/GLE960 MEI Controller + 2a15 Mobile GME965/GLE960 MEI Controller + 2a16 Mobile GME965/GLE960 PT IDER Controller + 2a17 Mobile GME965/GLE960 KT Controller + 2a40 Mobile 4 Series Chipset Memory Controller Hub + 17aa 20e0 ThinkPad T400 + e4bf cc4d CCM-BOOGIE + 2a41 Mobile 4 Series Chipset PCI Express Graphics Port + e4bf cc4d CCM-BOOGIE + 2a42 Mobile 4 Series Chipset Integrated Graphics Controller + 1028 02aa Dell Inspiron 1545 + 17aa 2112 ThinkPad T400 + e4bf cc4d CCM-BOOGIE + 2a43 Mobile 4 Series Chipset Integrated Graphics Controller + 17aa 2112 ThinkPad T400 + e4bf cc4d CCM-BOOGIE + 2a44 Mobile 4 Series Chipset MEI Controller + 17aa 20e6 ThinkPad T400 + 2a45 Mobile 4 Series Chipset MEI Controller + 2a46 Mobile 4 Series Chipset PT IDER Controller + 2a47 Mobile 4 Series Chipset AMT SOL Redirection + 2a50 Cantiga MEI Controller + 2a51 Cantiga MEI Controller + 2a52 Cantiga PT IDER Controller + 2a53 Cantiga AMT SOL Redirection + 2b00 Xeon Processor E7 Product Family System Configuration Controller 1 + 2b02 Xeon Processor E7 Product Family System Configuration Controller 2 + 2b04 Xeon Processor E7 Product Family Power Controller + 2b08 Xeon Processor E7 Product Family Caching Agent 0 + 2b0c Xeon Processor E7 Product Family Caching Agent 1 + 2b10 Xeon Processor E7 Product Family QPI Home Agent 0 + 2b13 Xeon Processor E7 Product Family Memory Controller 0c + 2b14 Xeon Processor E7 Product Family Memory Controller 0a + 2b16 Xeon Processor E7 Product Family Memory Controller 0b + 2b18 Xeon Processor E7 Product Family QPI Home Agent 1 + 2b1b Xeon Processor E7 Product Family Memory Controller 1c + 2b1c Xeon Processor E7 Product Family Memory Controller 1a + 2b1e Xeon Processor E7 Product Family Memory Controller 1b + 2b20 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 0 + 2b22 Xeon Processor E7 Product Family System Configuration Controller 3 + 2b24 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 1 + 2b28 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 2 + 2b2a Xeon Processor E7 Product Family System Configuration Controller 4 + 2b2c Xeon Processor E7 Product Family Last Level Cache Coherence Engine 3 + 2b30 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 4 + 2b34 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 5 + 2b38 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 6 + 2b3c Xeon Processor E7 Product Family Last Level Cache Coherence Engine 7 + 2b40 Xeon Processor E7 Product Family QPI Router Port 0-1 + 2b42 Xeon Processor E7 Product Family QPI Router Port 2-3 + 2b44 Xeon Processor E7 Product Family QPI Router Port 4-5 + 2b46 Xeon Processor E7 Product Family QPI Router Port 6-7 + 2b48 Xeon Processor E7 Product Family Test and Debug 0 + 2b4c Xeon Processor E7 Product Family Test and Debug 1 + 2b50 Xeon Processor E7 Product Family QPI Physical Port 0: REUT control/status + 2b52 Xeon Processor E7 Product Family QPI Physical Port 0: Misc. control/status + 2b54 Xeon Processor E7 Product Family QPI Physical Port 1: REUT control/status + 2b56 Xeon Processor E7 Product Family QPI Physical Port 1: Misc. control/status + 2b58 Xeon Processor E7 Product Family QPI Physical Port 2: REUT control/status + 2b5a Xeon Processor E7 Product Family QPI Physical Port 2: Misc. control/status + 2b5c Xeon Processor E7 Product Family QPI Physical Port 3: REUT control/status + 2b5e Xeon Processor E7 Product Family QPI Physical Port 3: Misc. control/status + 2b60 Xeon Processor E7 Product Family SMI Physical Port 0: REUT control/status + 2b62 Xeon Processor E7 Product Family SMI Physical Port 0: Misc control/status + 2b64 Xeon Processor E7 Product Family SMI Physical Port 1: REUT control/status + 2b66 Xeon Processor E7 Product Family SMI Physical Port 1: Misc control/status + 2b68 Xeon Processor E7 Product Family Last Level Cache Coherence Engine 8 + 2b6c Xeon Processor E7 Product Family Last Level Cache Coherence Engine 9 + 2b80 Atom CE2700 Series [Puma 7] + 2b98 Puma 7 Trusted Execution Engine + 2bb5 Puma 7 xHCI Controller +# Synopsys DesignWare Core SuperSpeed USB 3.0 Controller + 2bb7 Puma 7 USB Device Controller (OTG) + 2bdc Puma 7 Thermal + 2be2 Puma 7 Security Processor + 2c01 Xeon 5500/Core i7 QuickPath Architecture System Address Decoder + 2c10 Xeon 5500/Core i7 QPI Link 0 + 2c11 Xeon 5500/Core i7 QPI Physical 0 + 2c14 Xeon 5500/Core i7 QPI Link 1 + 2c15 Xeon 5500/Core i7 QPI Physical 1 + 2c18 Xeon 5500/Core i7 Integrated Memory Controller + 2c19 Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder + 2c1a Xeon 5500/Core i7 Integrated Memory Controller RAS Registers + 2c1c Xeon 5500/Core i7 Integrated Memory Controller Test Registers + 2c20 Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers + 2c21 Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers + 2c22 Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers + 2c23 Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers + 2c28 Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers + 2c29 Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers + 2c2a Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers + 2c2b Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers + 2c30 Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers + 2c31 Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers + 2c32 Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers + 2c33 Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers + 2c40 Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers + 2c41 Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers + 2c50 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c51 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c52 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c53 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c54 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c55 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c56 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c57 Core Processor QuickPath Architecture Generic Non-Core Registers + 2c58 Xeon C5500/C3500 QPI Generic Non-core Registers + 2c59 Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5a Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5b Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5c Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5d Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5e Xeon C5500/C3500 QPI Generic Non-core Registers + 2c5f Xeon C5500/C3500 QPI Generic Non-core Registers + 2c61 Core Processor QuickPath Architecture Generic Non-core Registers + 2c62 Core Processor QuickPath Architecture Generic Non-core Registers + 2c70 Xeon 5600 Series QuickPath Architecture Generic Non-core Registers + 2c81 Core Processor QuickPath Architecture System Address Decoder + 2c90 Core Processor QPI Link 0 + 2c91 Core Processor QPI Physical 0 + 2c98 Core Processor Integrated Memory Controller + 2c99 Core Processor Integrated Memory Controller Target Address Decoder + 2c9a Core Processor Integrated Memory Controller Test Registers + 2c9c Core Processor Integrated Memory Controller Test Registers + 2ca0 Core Processor Integrated Memory Controller Channel 0 Control Registers + 2ca1 Core Processor Integrated Memory Controller Channel 0 Address Registers + 2ca2 Core Processor Integrated Memory Controller Channel 0 Rank Registers + 2ca3 Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers + 2ca8 Core Processor Integrated Memory Controller Channel 1 Control Registers + 2ca9 Core Processor Integrated Memory Controller Channel 1 Address Registers + 2caa Core Processor Integrated Memory Controller Channel 1 Rank Registers + 2cab Core Processor Integrated Memory Controller Channel 1 Thermal Control Registers + 2cc1 Xeon C5500/C3500 QPI System Address Decoder + 2cd0 Xeon C5500/C3500 QPI Link 0 + 2cd1 Xeon C5500/C3500 QPI Physical 0 + 2cd4 Xeon C5500/C3500 QPI Link 1 + 2cd5 Xeon C5500/C3500 QPI Physical 1 + 2cd8 Xeon C5500/C3500 Integrated Memory Controller Registers + 2cd9 Xeon C5500/C3500 Integrated Memory Controller Target Address Decoder + 2cda Xeon C5500/C3500 Integrated Memory Controller RAS Registers + 2cdc Xeon C5500/C3500 Integrated Memory Controller Test Registers + 2ce0 Xeon C5500/C3500 Integrated Memory Controller Channel 0 Control + 2ce1 Xeon C5500/C3500 Integrated Memory Controller Channel 0 Address + 2ce2 Xeon C5500/C3500 Integrated Memory Controller Channel 0 Rank + 2ce3 Xeon C5500/C3500 Integrated Memory Controller Channel 0 Thermal Control + 2ce8 Xeon C5500/C3500 Integrated Memory Controller Channel 1 Control + 2ce9 Xeon C5500/C3500 Integrated Memory Controller Channel 1 Address + 2cea Xeon C5500/C3500 Integrated Memory Controller Channel 1 Rank + 2ceb Xeon C5500/C3500 Integrated Memory Controller Channel 1 Thermal Control + 2cf0 Xeon C5500/C3500 Integrated Memory Controller Channel 2 Control + 2cf1 Xeon C5500/C3500 Integrated Memory Controller Channel 2 Address + 2cf2 Xeon C5500/C3500 Integrated Memory Controller Channel 2 Rank + 2cf3 Xeon C5500/C3500 Integrated Memory Controller Channel 2 Thermal Control + 2d01 Core Processor QuickPath Architecture System Address Decoder + 2d10 Core Processor QPI Link 0 + 2d11 1st Generation Core i3/5/7 Processor QPI Physical 0 + 2d12 1st Generation Core i3/5/7 Processor Reserved + 2d13 1st Generation Core i3/5/7 Processor Reserved + 2d81 Xeon 5600 Series QuickPath Architecture System Address Decoder + 2d90 Xeon 5600 Series QPI Link 0 + 2d91 Xeon 5600 Series QPI Physical 0 + 2d92 Xeon 5600 Series Mirror Port Link 0 + 2d93 Xeon 5600 Series Mirror Port Link 1 + 2d94 Xeon 5600 Series QPI Link 1 + 2d95 Xeon 5600 Series QPI Physical 1 + 2d98 Xeon 5600 Series Integrated Memory Controller Registers + 2d99 Xeon 5600 Series Integrated Memory Controller Target Address Decoder + 2d9a Xeon 5600 Series Integrated Memory Controller RAS Registers + 2d9c Xeon 5600 Series Integrated Memory Controller Test Registers + 2da0 Xeon 5600 Series Integrated Memory Controller Channel 0 Control + 2da1 Xeon 5600 Series Integrated Memory Controller Channel 0 Address + 2da2 Xeon 5600 Series Integrated Memory Controller Channel 0 Rank + 2da3 Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control + 2da8 Xeon 5600 Series Integrated Memory Controller Channel 1 Control + 2da9 Xeon 5600 Series Integrated Memory Controller Channel 1 Address + 2daa Xeon 5600 Series Integrated Memory Controller Channel 1 Rank + 2dab Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control + 2db0 Xeon 5600 Series Integrated Memory Controller Channel 2 Control + 2db1 Xeon 5600 Series Integrated Memory Controller Channel 2 Address + 2db2 Xeon 5600 Series Integrated Memory Controller Channel 2 Rank + 2db3 Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control + 2e00 4 Series Chipset DRAM Controller + 2e01 4 Series Chipset PCI Express Root Port + 2e02 4 Series Chipset Integrated Graphics Controller + 2e03 4 Series Chipset Integrated Graphics Controller + 2e04 4 Series Chipset HECI Controller + 2e05 4 Series Chipset HECI Controller + 2e06 4 Series Chipset PT IDER Controller + 2e07 4 Series Chipset Serial KT Controller + 2e10 4 Series Chipset DRAM Controller + 2e11 4 Series Chipset PCI Express Root Port + 2e12 4 Series Chipset Integrated Graphics Controller + 17aa 3048 ThinkCentre M6258 + 2e13 4 Series Chipset Integrated Graphics Controller + 2e14 4 Series Chipset HECI Controller + 2e15 4 Series Chipset HECI Controller + 2e16 4 Series Chipset PT IDER Controller + 2e17 4 Series Chipset Serial KT Controller + 2e20 4 Series Chipset DRAM Controller + 1028 0283 Vostro 220 + 1043 82d3 P5Q Deluxe Motherboard + 1458 5000 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 2e21 4 Series Chipset PCI Express Root Port + 1043 82d3 P5Q Deluxe Motherboard + 1458 5000 GA-EP45-DS5 Motherboard + 2e22 4 Series Chipset Integrated Graphics Controller + 1458 d000 GA-EG45M-DS2H Mainboard + 2e23 4 Series Chipset Integrated Graphics Controller + 1458 d000 GA-EG45M-DS2H Mainboard + 2e24 4 Series Chipset HECI Controller + 2e25 4 Series Chipset HECI Controller + 2e26 4 Series Chipset PT IDER Controller + 2e27 4 Series Chipset Serial KT Controller + 2e29 4 Series Chipset PCI Express Root Port + 2e30 4 Series Chipset DRAM Controller + 103c 2a8c Compaq 500B Microtower + 2e31 4 Series Chipset PCI Express Root Port + 2e32 4 Series Chipset Integrated Graphics Controller + 103c 2a8c Compaq 500B Microtower + 2e33 4 Series Chipset Integrated Graphics Controller + 2e34 4 Series Chipset HECI Controller + 2e35 4 Series Chipset HECI Controller + 2e36 4 Series Chipset PT IDER Controller + 2e37 4 Series Chipset Serial KT Controller + 2e40 4 Series Chipset DRAM Controller + 2e41 4 Series Chipset PCI Express Root Port + 2e42 4 Series Chipset Integrated Graphics Controller + 2e43 4 Series Chipset Integrated Graphics Controller + 2e44 4 Series Chipset HECI Controller + 2e45 4 Series Chipset HECI Controller + 2e46 4 Series Chipset PT IDER Controller + 2e47 4 Series Chipset Serial KT Controller + 2e50 CE Media Processor CE3100 + 2e52 CE Media Processor Clock and Reset Controller + 2e58 CE Media Processor Interrupt Controller + 2e5a CE Media Processor CE3100 A/V Bridge + 2e5b Graphics Media Accelerator 500 Graphics + 2e5c CE Media Processor Video Decoder + 2e5d CE Media Processor Transport Stream Interface + 2e5e CE Media Processor Transport Stream Processor 0 + 2e5f CE Media Processor Audio DSP + 2e60 CE Media Processor Audio Interfaces + 2e61 CE Media Processor Video Display Controller + 2e62 CE Media Processor Video Processing Unit + 2e63 CE Media Processor HDMI Tx Interface + 2e64 Atom CE2600/3100/4100/4200/5300 Security Processor + 2e65 CE Media Processor Expansion Bus Interface + 2e66 CE Media Processor UART + 2e67 CE Media Processor General Purpose I/Os + 2e68 CE Media Processor I2C Interface + 2e69 CE Media Processor Smart Card Interface + 2e6a CE Media Processor SPI Master Interface + 2e6e CE Media Processor Gigabit Ethernet Controller + 2e6f CE Media Processor Media Timing Unit + 2e70 CE Media Processor USB + 2e71 CE Media Processor SATA + 2e73 CE Media Processor CE3100 PCI Express + 2e90 4 Series Chipset DRAM Controller + 2e91 4 Series Chipset PCI Express Root Port + 2e92 4 Series Chipset Integrated Graphics Controller + 2e93 4 Series Chipset Integrated Graphics Controller + 2e94 4 Series Chipset HECI Controller + 2e95 4 Series Chipset HECI Controller + 2e96 4 Series Chipset PT IDER Controller + 2f00 Xeon E7 v3/Xeon E5 v3/Core i7 DMI2 + 2f01 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 0 + 2f02 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1 + 2f03 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1 + 2f04 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2 + 2f05 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2 + 2f06 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2 + 2f07 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2 + 2f08 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3 + 2f09 Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3 + 2f0a Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3 + 2f0b Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3 + 2f0d Haswell Xeon Non-Transparent Bridge (Back-to-back) + 2f0e Haswell Xeon Non-Transparent Bridge (Primary Side) + 2f0f Haswell Xeon Non-Transparent Bridge (Secondary Side) + 2f10 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f11 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f12 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f13 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f14 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f15 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f16 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f17 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f18 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f19 Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f1a Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f1b Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f1c Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug + 2f1d Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface + 2f1e Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers + 2f1f Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers + 2f20 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 0 + 2f21 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 1 + 2f22 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 2 + 2f23 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 3 + 2f24 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 4 + 2f25 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 5 + 2f26 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 6 + 2f27 Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 7 + 2f28 Xeon E7 v3/Xeon E5 v3/Core i7 Address Map, VTd_Misc, System Management + 2f29 Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug + 2f2a Xeon E7 v3/Xeon E5 v3/Core i7 RAS, Control Status and Global Errors + 2f2c Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC + 2f2e Xeon E7 v3/Xeon E5 v3/Core i7 RAID 5/6 + 2f2f Xeon E7 v3/Xeon E5 v3/Core i7 RAID 5/6 + 2f30 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 + 2f32 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 + 2f33 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 + 2f34 Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface + 2f36 Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring + 2f37 Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring + 2f38 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 + 2f39 Xeon E7 v3/Xeon E5 v3/Core i7 I/O Performance Monitoring + 2f3a Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 + 2f3e Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring + 2f3f Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring + 2f40 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 + 2f41 Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring + 2f43 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 + 2f45 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug + 2f46 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug + 2f47 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug + 2f60 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 + 2f68 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers + 2f6a Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder + 2f6b Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder + 2f6c Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder + 2f6d Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder + 2f6e Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 2/3 Broadcast + 2f6f Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast + 2f70 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 Debug + 2f71 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers + 2f76 Xeon E7 v3/Xeon E5 v3/Core i7 E3 QPI Link Debug + 2f78 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 Debug + 2f79 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers + 2f7d Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers + 2f7e Xeon E7 v3/Xeon E5 v3/Core i7 E3 QPI Link Debug + 2f80 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 + 2f81 Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring + 2f83 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 + 2f85 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug + 2f86 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug + 2f87 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug + 2f88 Xeon E7 v3/Xeon E5 v3/Core i7 VCU + 2f8a Xeon E7 v3/Xeon E5 v3/Core i7 VCU + 2f90 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 + 2f93 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 + 2f95 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 Debug + 2f96 Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 Debug + 2f98 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2f99 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2f9a Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2f9c Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fa0 Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 + 2fa8 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers + 2faa Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder + 2fab Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder + 2fac Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder + 2fad Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder + 2fae Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 0/1 Broadcast + 2faf Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast + 2fb0 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 Thermal Control + 2fb1 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control + 2fb2 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers + 2fb3 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers + 2fb4 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 Thermal Control + 2fb5 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 3 Thermal Control + 2fb6 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 ERROR Registers + 2fb7 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 3 ERROR Registers + 2fb8 Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3 + 2fb9 Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3 + 2fba Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3 + 2fbb Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3 + 2fbc Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1 + 2fbd Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1 + 2fbe Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1 + 2fbf Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1 + 2fc0 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fc1 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fc2 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fc3 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fc4 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fc5 Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit + 2fd0 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 Thermal Control + 2fd1 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 Thermal Control + 2fd2 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 ERROR Registers + 2fd3 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 ERROR Registers + 2fd4 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 2 Thermal Control + 2fd5 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 3 Thermal Control + 2fd6 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 2 ERROR Registers + 2fd7 Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 3 ERROR Registers + 2fe0 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe1 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe2 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe3 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe4 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe5 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe6 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe7 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe8 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fe9 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fea Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2feb Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fec Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fed Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fee Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2fef Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff0 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff1 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff2 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff3 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff4 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff5 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff6 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff7 Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers + 2ff8 Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent + 2ff9 Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent + 2ffa Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent + 2ffb Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent + 2ffc Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers + 2ffd Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers + 2ffe Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers + 3140 Easel/Monette Hill Image Processor [Pixel Visual Core] + 3165 Wireless 3165 +# Stone Peak 1x1 + 8086 4010 Dual Band Wireless AC 3165 +# Stone Peak 1x1 + 8086 4210 Dual Band Wireless AC 3165 + 3166 Dual Band Wireless-AC 3165 Plus Bluetooth + 8086 4210 Dual Band Wireless-AC 3165 + 3184 GeminiLake [UHD Graphics 605] + 3185 GeminiLake [UHD Graphics 600] + 318c Celeron/Pentium Silver Processor Dynamic Platform and Thermal Framework Processor Participant + 318e Celeron/Pentium Silver Processor NorthPeak + 3190 Celeron/Pentium Silver Processor Gaussian Mixture Model + 3192 Gemini Lake P2SB + 3197 Celeron/Pentium Silver Processor PCI-default ISA-bridge + 3198 Celeron/Pentium Silver Processor High Definition Audio + 17aa 380b V130-15IGM Laptop (Lenovo) - Type 81HL + 319a Celeron/Pentium Silver Processor Trusted Execution Engine Interface + 31a2 Celeron/Pentium Silver Processor Integrated Sensor Solution + 31a8 Celeron/Pentium Silver Processor USB 3.0 xHCI Controller + 1849 31a8 Celeron/Pentium Silver Processor USB 3.0 xHCI Controller + 31ac Celeron/Pentium Silver Processor Serial IO I2C Host Controller + 31ae Celeron/Pentium Silver Processor Serial IO I2C Host Controller + 31bc Celeron/Pentium Silver Processor Serial IO UART Host Controller + 31be Celeron/Pentium Silver Processor Serial IO UART Host Controller + 31c0 Celeron/Pentium Silver Processor Serial IO UART Host Controller + 31c2 Celeron/Pentium Silver Processor Serial IO SPI Host Controller + 31c4 Celeron/Pentium Silver Processor Serial IO SPI Host Controller + 31c6 Celeron/Pentium Silver Processor Serial IO SPI Host Controller + 31cc Celeron/Pentium Silver Processor SDA Standard Compliant SD Host Controller + 31d4 Celeron/Pentium Silver Processor Gaussian Mixture Model + 31d6 Gemini Lake PCI Express Root Port + 31d7 Gemini Lake PCI Express Root Port + 31d8 Gemini Lake PCI Express Root Port + 31d9 Gemini Lake PCI Express Root Port + 31da Gemini Lake PCI Express Root Port + 31db Gemini Lake PCI Express Root Port + 31dc Gemini Lake PCH CNVi WiFi + 1a56 1552 Killer(R) Wireless-AC 1550i Wireless Network Adapter (9560NGW) + 8086 0034 Wireless-AC 9560 + 31e3 Celeron/Pentium Silver Processor SATA Controller + 31e8 Celeron/Pentium Silver Processor LPC Controller + 31ee Celeron/Pentium Silver Processor Serial IO UART Host Controller + 31f0 Gemini Lake Host Bridge + 3200 GD31244 PCI-X SATA HBA + 1775 c200 C2K onboard SATA host bus adapter + 3310 IOP348 I/O Processor + 1054 3030 HRA380 Hitachi RAID Adapter to PCIe + 1054 3034 HRA381 Hitachi RAID Adapter to PCIe + 3313 IOP348 I/O Processor (SL8e) in IOC Mode SAS/SATA + 331b IOP348 I/O Processor (SL8x) in IOC Mode SAS/SATA + 3331 IOC340 I/O Controller (VV8e) SAS/SATA + 3339 IOC340 I/O Controller (VV8x) SAS/SATA + 3340 82855PM Processor to I/O Controller + 1014 0529 Thinkpad T40 series + 1025 005a TravelMate 290 + 103c 088c NC8000 laptop + 103c 0890 NC6000 laptop + 103c 08b0 tc1100 tablet + 144d c005 X10 Laptop + 144d c00c P30/P35 notebook + 3341 82855PM Processor to AGP Controller + 144d c00c P30 notebook + 3363 IOC340 I/O Controller in IOC Mode SAS/SATA + 3382 81342 [Chevelon] I/O Processor (ATUe) + 33c3 IOP348 I/O Processor (SL8De) in IOC Mode SAS/SATA + 33cb IOP348 I/O Processor (SL8Dx) in IOC Mode SAS/SATA + 3400 5520/5500/X58 I/O Hub to ESI Port + 3401 5520/5500/X58 I/O Hub to ESI Port + 3402 5520/5500/X58 I/O Hub to ESI Port + 3403 5500 I/O Hub to ESI Port + 1028 0236 PowerEdge R610 I/O Hub to ESI Port + 1028 0287 PowerEdge M610 I/O Hub to ESI Port + 1028 028c PowerEdge R410 I/O Hub to ESI Port + 1028 028d PowerEdge T410 I/O Hub to ESI Port + 103c 330b ProLiant ML150 G6 Server + 3404 5520/5500/X58 I/O Hub to ESI Port + 3405 5520/5500/X58 I/O Hub to ESI Port + 3406 5520 I/O Hub to ESI Port + 103c 330b ProLiant G6 series + 3407 5520/5500/X58 I/O Hub to ESI Port + 3408 5520/5500/X58 I/O Hub PCI Express Root Port 1 + 103c 330b ProLiant G6 series + 3409 5520/5500/X58 I/O Hub PCI Express Root Port 2 + 340a 5520/5500/X58 I/O Hub PCI Express Root Port 3 + 103c 330b ProLiant ML150 G6 Server + 340b 5520/X58 I/O Hub PCI Express Root Port 4 + 340c 5520/X58 I/O Hub PCI Express Root Port 5 + 340d 5520/X58 I/O Hub PCI Express Root Port 6 + 340e 5520/5500/X58 I/O Hub PCI Express Root Port 7 + 103c 330b ProLiant ML150 G6 Server + 340f 5520/5500/X58 I/O Hub PCI Express Root Port 8 + 3410 7500/5520/5500/X58 I/O Hub PCI Express Root Port 9 + 3411 7500/5520/5500/X58 I/O Hub PCI Express Root Port 10 + 3418 7500/5520/5500/X58 Physical Layer Port 0 + 3419 7500/5520/5500 Physical Layer Port 1 + 3420 7500/5520/5500/X58 I/O Hub PCI Express Root Port 0 + 3421 7500/5520/5500/X58 I/O Hub PCI Express Root Port 0 + 3422 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers + 103c 330b ProLiant G6 series + 3423 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers + 103c 330b ProLiant G6 series + 3425 7500/5520/5500/X58 Physical and Link Layer Registers Port 0 + 3426 7500/5520/5500/X58 Routing and Protocol Layer Registers Port 0 + 3427 7500/5520/5500 Physical and Link Layer Registers Port 1 + 3428 7500/5520/5500 Routing & Protocol Layer Register Port 1 + 3429 5520/5500/X58 Chipset QuickData Technology Device + 342a 5520/5500/X58 Chipset QuickData Technology Device + 342b 5520/5500/X58 Chipset QuickData Technology Device + 342c 5520/5500/X58 Chipset QuickData Technology Device + 342d 7500/5520/5500/X58 I/O Hub I/OxAPIC Interrupt Controller + 342e 7500/5520/5500/X58 I/O Hub System Management Registers + 103c 330b ProLiant G6 series + 342f 7500/5520/5500/X58 Trusted Execution Technology Registers + 3430 5520/5500/X58 Chipset QuickData Technology Device + 3431 5520/5500/X58 Chipset QuickData Technology Device + 3432 5520/5500/X58 Chipset QuickData Technology Device + 3433 5520/5500/X58 Chipset QuickData Technology Device + 3438 7500/5520/5500/X58 I/O Hub Throttle Registers + 347e Ice Lake Xeon Non-Transparent Bridge + 3482 Ice Lake-LP LPC Controller + 34a3 Ice Lake-LP SMBus Controller + 34a4 Ice Lake-LP SPI Controller + 34a8 Ice Lake-LP Serial IO UART Controller #0 + 34a9 Ice Lake-LP Serial IO UART Controller #1 + 34aa Ice Lake-LP Serial IO SPI Controller #0 + 34ab Ice Lake-LP Serial IO SPI Controller #1 + 34b0 Ice Lake-LP PCI Express Root Port #9 + 34b7 Ice Lake-LP PCI Express Root Port #16 + 34ba Ice Lake-LP PCI Express Root Port #3 + 34bc Ice Lake-LP PCI Express Root Port #5 + 34c4 Ice Lake-LP SD Host Controller + 34c5 Ice Lake-LP Serial IO I2c Controller #4 + 34c6 Ice Lake-LP Serial IO I2c Controller #5 + 34c8 Ice Lake-LP Smart Sound Technology Audio Controller + 34d3 Ice Lake-LP SATA Controller [AHCI mode] + 34e0 Ice Lake-LP Management Engine + 34e8 Ice Lake-LP Serial IO I2C Controller #0 + 34e9 Ice Lake-LP Serial IO I2C Controller #1 + 34ea Ice Lake-LP Serial IO I2C Controller #2 + 34eb Ice Lake-LP Serial IO I2C Controller #3 + 34ed Ice Lake-LP USB 3.1 xHCI Host Controller + 34ef Ice Lake-LP DRAM Controller + 34f0 Ice Lake-LP PCH CNVi WiFi + 1a56 1552 Killer(R) Wireless-AC 1550i Wireless Network Adapter (9560NGW) + 8086 0074 Wi-Fi 6 AX201 + 8086 0264 Wireless-AC 9461 + 34f8 Ice Lake-LP SD Controller + 34fc Ice Lake-LP Integrated Sensor Solution + 3500 6311ESB/6321ESB PCI Express Upstream Port + 103c 31fe ProLiant DL140 G3 + 15d9 9680 X7DBN Motherboard + 3501 6310ESB PCI Express Upstream Port + 3504 6311ESB/6321ESB I/OxAPIC Interrupt Controller + 3505 6310ESB I/OxAPIC Interrupt Controller + 350c 6311ESB/6321ESB PCI Express to PCI-X Bridge + 103c 31fe ProLiant DL140 G3 + 15d9 9680 X7DBN Motherboard + 350d 6310ESB PCI Express to PCI-X Bridge + 3510 6311ESB/6321ESB PCI Express Downstream Port E1 + 103c 31fe ProLiant DL140 G3 + 15d9 9680 X7DBN Motherboard + 3511 6310ESB PCI Express Downstream Port E1 + 3514 6311ESB/6321ESB PCI Express Downstream Port E2 + 3515 6310ESB PCI Express Downstream Port E2 + 3518 6311ESB/6321ESB PCI Express Downstream Port E3 + 15d9 9680 X7DBN Motherboard + 3519 6310ESB PCI Express Downstream Port E3 + 3575 82830M/MG/MP Host Bridge + 0e11 0030 Evo N600c + 1014 021d ThinkPad A/T/X Series + 104d 80e7 VAIO PCG-GR214EP/GR214MP/GR215MP/GR314MP/GR315MP + 3576 82830M/MP AGP Bridge + 3577 82830M/MG Integrated Graphics Controller + 1014 0513 ThinkPad A/T/X Series + 3578 82830M/MG/MP Host Bridge + 3580 82852/82855 GM/GME/PM/GMV Processor to I/O Controller + 1014 055c ThinkPad R50e + 1025 0064 Extensa 3000 series laptop + 1028 0139 Latitude D400 + 1028 014f Latitude X300 + 1028 0152 Latitude D500 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 114a 0582 PC8 + 1734 1055 Amilo M1420 + 1775 10d0 V5D Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10e0 PSL09 PrPMC + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 3581 82852/82855 GM/GME/PM/GMV Processor to AGP Controller + 1734 1055 Amilo M1420 + 3582 82852/855GM Integrated Graphics Device + 1014 0562 ThinkPad R50e + 1028 0139 Latitude D400 + 1028 014f Latitude X300 + 1028 0152 Latitude D500 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 114a 0582 PC8 integrated graphics + 1775 10d0 V5D Single Board Computer VGA + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10e0 PSL09 PrPMC + e4bf 0cc9 CC9-SAMBA + e4bf 0cd2 CD2-BEBOP + 3584 82852/82855 GM/GME/PM/GMV Processor to I/O Controller + 1014 055d ThinkPad R50e + 1025 0064 Extensa 3000 series laptop + 1028 0139 Latitude D400 + 1028 014f Latitude X300 + 1028 0152 Latitude D500 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 114a 0582 PC8 + 1734 1055 Amilo M1420 + 1775 10d0 V5D Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10e0 PSL09 PrPMC + 3585 82852/82855 GM/GME/PM/GMV Processor to I/O Controller + 1014 055e ThinkPad R50e + 1025 0064 Extensa 3000 series laptop + 1028 0139 Latitude D400 + 1028 014f Latitude X300 + 1028 0152 Latitude D500 + 1028 0163 Latitude D505 + 1028 018d Inspiron 700m/710m + 1028 0196 Inspiron 5160 + 114a 0582 PC8 + 1734 1055 Amilo M1420 + 1775 10d0 V5D Single Board Computer + 1775 ce90 CE9 + 4c53 10b0 CL9 mainboard + 4c53 10e0 PSL09 PrPMC + 358c 82854 GMCH + 358e 82854 GMCH Integrated Graphics Device + 3590 E7520 Memory Controller Hub + 1014 02dd eServer xSeries server mainboard + 1028 016c PowerEdge 1850 Memory Controller Hub + 1028 016d PowerEdge 2850 Memory Controller Hub + 1028 019a PowerEdge SC1425 + 1734 103e PRIMERGY RX/TX S2 series + 1775 1100 CR11/VR11 Single Board Computer + 4c53 10d0 Telum ASLP10 Processor AMC + 3591 E7525/E7520 Error Reporting Registers + 1014 02dd eServer xSeries server mainboard + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 103c 3208 ProLiant DL140 G2 + 4c53 10d0 Telum ASLP10 Processor AMC + 3592 E7320 Memory Controller Hub + 1734 1073 Primergy Econel 200 D2020 mainboard + 3593 E7320 Error Reporting Registers + 1734 1073 Primergy Econel 200 D2020 mainboard + 3594 E7520 DMA Controller + 1775 1100 CR11/VR11 Single Board Computer + 4c53 10d0 Telum ASLP10 Processor AMC + 3595 E7525/E7520/E7320 PCI Express Port A + 1775 1100 CR11/VR11 Single Board Computer + 3596 E7525/E7520/E7320 PCI Express Port A1 + 3597 E7525/E7520 PCI Express Port B + 1775 1100 CR11/VR11 Single Board Computer + 3598 E7520 PCI Express Port B1 + 1775 1100 CR11/VR11 Single Board Computer + 3599 E7520 PCI Express Port C + 1775 1100 CR11/VR11 Single Board Computer + 359a E7520 PCI Express Port C1 + 359b E7525/E7520/E7320 Extended Configuration Registers + 1014 02dd eServer xSeries server mainboard + 359e E7525 Memory Controller Hub + 1028 0168 Precision Workstation 670 Mainboard + 1028 0169 Precision 470 + 35b0 3100 Chipset Memory I/O Controller Hub + 35b1 3100 DRAM Controller Error Reporting Registers + 35b5 3100 Chipset Enhanced DMA Controller + 35b6 3100 Chipset PCI Express Port A + 35b7 3100 Chipset PCI Express Port A1 + 35c8 3100 Extended Configuration Test Overflow Registers + 3600 7300 Chipset Memory Controller Hub + 3604 7300 Chipset PCI Express Port 1 + 3605 7300 Chipset PCI Express Port 2 + 3606 7300 Chipset PCI Express Port 3 + 3607 7300 Chipset PCI Express Port 4 + 3608 7300 Chipset PCI Express Port 5 + 3609 7300 Chipset PCI Express Port 6 + 360a 7300 Chipset PCI Express Port 7 + 360b 7300 Chipset QuickData Technology Device + 360c 7300 Chipset FSB Registers + 1028 01f0 PowerEdge R900 7300 Chipset FSB Registers + 360d 7300 Chipset Snoop Filter Registers + 360e 7300 Chipset Debug and Miscellaneous Registers + 360f 7300 Chipset FBD Branch 0 Registers + 3610 7300 Chipset FBD Branch 1 Registers + 3700 Xeon C5500/C3500 DMI + 3701 Xeon C5500/C3500 DMI + 3702 Xeon C5500/C3500 DMI + 3703 Xeon C5500/C3500 DMI + 3704 Xeon C5500/C3500 DMI + 3705 Xeon C5500/C3500 DMI + 3706 Xeon C5500/C3500 DMI + 3707 Xeon C5500/C3500 DMI + 3708 Xeon C5500/C3500 DMI + 3709 Xeon C5500/C3500 DMI + 370a Xeon C5500/C3500 DMI + 370b Xeon C5500/C3500 DMI + 370c Xeon C5500/C3500 DMI + 370d Xeon C5500/C3500 DMI + 370e Xeon C5500/C3500 DMI + 370f Xeon C5500/C3500 DMI + 3710 Xeon C5500/C3500 CB3 DMA + 3711 Xeon C5500/C3500 CB3 DMA + 3712 Xeon C5500/C3500 CB3 DMA + 3713 Xeon C5500/C3500 CB3 DMA + 3714 Xeon C5500/C3500 CB3 DMA + 3715 Xeon C5500/C3500 CB3 DMA + 3716 Xeon C5500/C3500 CB3 DMA + 3717 Xeon C5500/C3500 CB3 DMA + 3718 Xeon C5500/C3500 CB3 DMA + 3719 Xeon C5500/C3500 CB3 DMA + 371a Xeon C5500/C3500 QPI Link + 371b Xeon C5500/C3500 QPI Routing and Protocol + 371d Xeon C5500/C3500 QPI Routing and Protocol + 3720 Xeon C5500/C3500 PCI Express Root Port 0 + 3721 Xeon C5500/C3500 PCI Express Root Port 1 + 3722 Xeon C5500/C3500 PCI Express Root Port 2 + 3723 Xeon C5500/C3500 PCI Express Root Port 3 + 3724 Xeon C5500/C3500 PCI Express Root Port 4 + 3725 Xeon C5500/C3500 NTB Primary + 3726 Xeon C5500/C3500 NTB Primary + 3727 Xeon C5500/C3500 NTB Secondary + 3728 Xeon C5500/C3500 Core + 3729 Xeon C5500/C3500 Core + 372a Xeon C5500/C3500 Core + 372b Xeon C5500/C3500 Core + 372c Xeon C5500/C3500 Reserved + 373f Xeon C5500/C3500 IOxAPIC + 37c8 C62x Chipset QuickAssist Technology + 8086 0001 QuickAssist Adapter 8960 + 8086 0002 QuickAssist Adapter 8970 + 37c9 C62x Chipset QuickAssist Technology Virtual Function + 37cc Ethernet Connection X722 + 37cd Ethernet Virtual Function 700 Series + 37ce Ethernet Connection X722 for 10GbE backplane + 1590 0215 Ethernet 10Gb 2-port 568i Adapter + 17aa 4023 Intel Ethernet Connection X722 for 10GbE backplane + 17aa 4025 Ethernet Connection X722 for 10GbE backplane + 37cf Ethernet Connection X722 for 10GbE QSFP+ + 37d0 Ethernet Connection X722 for 10GbE SFP+ + 17aa 4020 Intel Ethernet Connection X722 for 10G SFP+ + 17aa 4021 Intel Ethernet Connection X722 for 10G SFP+ + 17aa 4022 Ethernet Connection X722 for 10GbE SFP+ + 8086 0001 Ethernet Network Adapter X722-2 + 8086 0002 Ethernet Network Adapter X722-2 + 8086 0003 Ethernet Network Adapter X722-4 + 8086 0004 Ethernet Network Adapter X722-4 + 37d1 Ethernet Connection X722 for 1GbE + 14cd 0010 88E1514 Ethernet OCP 2x1G RJ45 Phy Card [USI-1514-1GbaseT] + 1590 0216 Ethernet 1Gb 2-port 368i Adapter + 1590 0217 Ethernet 1Gb 2-port 368FLR-MMT Adapter + 1590 0247 Ethernet 1Gb 4-port 369i Adapter + 17aa 4020 Ethernet Connection X722 for 1GbE + 17aa 4021 Ethernet Connection X722 for 1GbE + 17aa 4022 Ethernet Connection X722 for 1GbE + 17aa 4024 Ethernet Connection X722 for 1GbE + 37d2 Ethernet Connection X722 for 10GBASE-T + 1059 0180 RD10019 10GbE interface + 1170 37d2 Ethernet Connection X722 for 10GBASE-T + 14cd 0030 Ethernet OCP 2x10G RJ45 Phy Card [USI-X557-10GbaseT] + 1590 0218 Ethernet 10Gb 2-port 568FLR-MMT Adapter + 17aa 4020 Ethernet Connection X722 for 10GBASE-T + 17aa 4021 Ethernet Connection X722 for 10GBASE-T + 17aa 4022 Ethernet Connection X722 for 10GBASE-T + 17aa 4024 Ethernet Connection X722 for 10GBASE-T + 17aa 4025 Ethernet Connection X722 for 10GBASE-T + 37d3 Ethernet Connection X722 for 10GbE SFP+ + 1590 0219 Ethernet 10Gb 2-port 568FLR-MMSFP+ Adapter + 17aa 4020 Ethernet Connection X722 for 10GbE SFP+ + 17aa 4021 Ethernet Connection X722 for 10GbE SFP+ + 17aa 4025 Ethernet Connection X722 for 10GbE SFP+ + 37d4 Ethernet Connection X722 for 10GbE QSFP+ + 37d9 X722 Hyper-V Virtual Function + 3882 Ice Lake LPC Controller + 38a4 Ice Lake SPI Controller + 38e0 Ice Lake Management Engine Interface + 3a00 82801JD/DO (ICH10 Family) 4-port SATA IDE Controller + 3a02 82801JD/DO (ICH10 Family) SATA AHCI Controller + 3a05 82801JD/DO (ICH10 Family) SATA RAID Controller + 3a06 82801JD/DO (ICH10 Family) 2-port SATA IDE Controller + 3a14 82801JDO (ICH10DO) LPC Interface Controller + 3a16 82801JIR (ICH10R) LPC Interface Controller + 1028 028c PowerEdge R410 LPC Interface Controller + 1028 028d PowerEdge T410 LPC Interface Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5001 GA-EP45-DS5 Motherboard + 3a18 82801JIB (ICH10) LPC Interface Controller + 3a1a 82801JD (ICH10D) LPC Interface Controller + 3a20 82801JI (ICH10 Family) 4 port SATA IDE Controller #1 + 1028 028c PowerEdge R410 SATA IDE Controller + 1028 028d PowerEdge T410 SATA IDE Controller + 3a22 82801JI (ICH10 Family) SATA AHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 b005 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 3a25 82801JIR (ICH10R) SATA RAID Controller + 1028 028c PERC S100 Controller (PE R410) + 1028 028d PERC S100 Controller (PE T410) + 1028 02f1 PERC S100 Controller (PE R510) + 3a26 82801JI (ICH10 Family) 2 port SATA IDE Controller #2 + 1028 028c PowerEdge R410 SATA IDE Controller + 1028 028d PowerEdge T410 SATA IDE Controller + 3a30 82801JI (ICH10 Family) SMBus Controller + 1043 82d4 P5Q Deluxe Motherboard + 1458 5001 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 3a32 82801JI (ICH10 Family) Thermal Subsystem + 3a34 82801JI (ICH10 Family) USB UHCI Controller #1 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 GA-EP45-DS5 Motherboard + 3a35 82801JI (ICH10 Family) USB UHCI Controller #2 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 GA-EP45-DS5 Motherboard + 3a36 82801JI (ICH10 Family) USB UHCI Controller #3 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 GA-EP45-DS5 Motherboard + 3a37 82801JI (ICH10 Family) USB UHCI Controller #4 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 Motherboard + 3a38 82801JI (ICH10 Family) USB UHCI Controller #5 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant ML150 G6 Server + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 Motherboard + 3a39 82801JI (ICH10 Family) USB UHCI Controller #6 + 1028 028c PowerEdge R410 USB UHCI Controller + 1028 028d PowerEdge T410 USB UHCI Controller + 103c 330b ProLiant ML150 G6 Server + 1043 82d4 P5Q Deluxe Motherboard + 1458 5004 Motherboard + 3a3a 82801JI (ICH10 Family) USB2 EHCI Controller #1 + 1028 028c PowerEdge R410 USB EHCI Controller + 1028 028d PowerEdge T410 USB EHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5006 GA-EP45-DS5 Motherboard + 3a3c 82801JI (ICH10 Family) USB2 EHCI Controller #2 + 1028 028c PowerEdge R410 USB EHCI Controller + 1028 028d PowerEdge T410 USB EHCI Controller + 103c 330b ProLiant G6 series + 1043 82d4 P5Q Deluxe Motherboard + 1458 5006 Motherboard + 3a3e 82801JI (ICH10 Family) HD Audio Controller + 1043 8311 P5Q Deluxe Motherboard + 1458 a002 GA-EP45-UD3R Motherboard + 1458 a102 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 3a40 82801JI (ICH10 Family) PCI Express Root Port 1 + 1028 028c PowerEdge R410 PCI Express Port 1 + 1028 028d PowerEdge T410 PCI Express Port 1 + 103c 330b ProLiant ML150 G6 Server + 1043 82d4 P5Q Deluxe Motherboard + 1043 82ea P6T DeLuxe Motherboard + 1458 5001 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 3a42 82801JI (ICH10 Family) PCI Express Port 2 + 3a44 82801JI (ICH10 Family) PCI Express Root Port 3 + 1043 82ea P6T DeLuxe Motherboard + 3a46 82801JI (ICH10 Family) PCI Express Root Port 4 + 1043 82ea P6T DeLuxe Motherboard + 1458 5001 GA-EP45-DS5 Motherboard + 3a48 82801JI (ICH10 Family) PCI Express Root Port 5 + 103c 330b ProLiant ML150 G6 Server + 1043 82ea P6T Deluxe Motherboard + 1458 5001 GA-EP45-DS5 Motherboard + 3a4a 82801JI (ICH10 Family) PCI Express Root Port 6 + 103c 330b ProLiant ML150 G6 Server + 1043 82d4 P5Q Deluxe Motherboard + 1043 82ea P6T DeLuxe Motherboard + 1458 5001 GA-EP45-DS5/GA-EG45M-DS2H Motherboard + 3a4c 82801JI (ICH10 Family) Gigabit Ethernet Controller + 3a51 82801JDO (ICH10DO) VECI Controller + 3a55 82801JD/DO (ICH10 Family) Virtual SATA Controller + 3a60 82801JD/DO (ICH10 Family) SMBus Controller + 3a62 82801JD/DO (ICH10 Family) Thermal Subsystem + 3a64 82801JD/DO (ICH10 Family) USB UHCI Controller #1 + 3a65 82801JD/DO (ICH10 Family) USB UHCI Controller #2 + 3a66 82801JD/DO (ICH10 Family) USB UHCI Controller #3 + 3a67 82801JD/DO (ICH10 Family) USB UHCI Controller #4 + 3a68 82801JD/DO (ICH10 Family) USB UHCI Controller #5 + 3a69 82801JD/DO (ICH10 Family) USB UHCI Controller #6 + 3a6a 82801JD/DO (ICH10 Family) USB2 EHCI Controller #1 + 3a6c 82801JD/DO (ICH10 Family) USB2 EHCI Controller #2 + 3a6e 82801JD/DO (ICH10 Family) HD Audio Controller + 3a70 82801JD/DO (ICH10 Family) PCI Express Port 1 + 3a72 82801JD/DO (ICH10 Family) PCI Express Port 2 + 3a74 82801JD/DO (ICH10 Family) PCI Express Port 3 + 3a76 82801JD/DO (ICH10 Family) PCI Express Port 4 + 3a78 82801JD/DO (ICH10 Family) PCI Express Port 5 + 3a7a 82801JD/DO (ICH10 Family) PCI Express Port 6 + 3a7c 82801JD/DO (ICH10 Family) Gigabit Ethernet Controller + 3b00 5 Series/3400 Series Chipset LPC Interface Controller + 3b01 Mobile 5 Series Chipset LPC Interface Controller + 3b02 P55 Chipset LPC Interface Controller + 3b03 PM55 Chipset LPC Interface Controller + 3b04 5 Series Chipset LPC Interface Controller + 3b05 Mobile 5 Series Chipset LPC Interface Controller + 3b06 H55 Chipset LPC Interface Controller + 3b07 QM57 Chipset LPC Interface Controller + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + e4bf 50c1 PC1-GROOVE + 3b08 H57 Chipset LPC Interface Controller + 3b09 HM55 Chipset LPC Interface Controller + 1025 0347 Aspire 7740G + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b0a Q57 Chipset LPC Interface Controller + 1028 02da OptiPlex 980 + 15d9 060d C7SIM-Q Motherboard + 3b0b HM57 Chipset LPC Interface Controller + 3b0c 5 Series Chipset LPC Interface Controller + 3b0d 5 Series/3400 Series Chipset LPC Interface Controller + 3b0e 5 Series/3400 Series Chipset LPC Interface Controller + 3b0f QS57 Chipset LPC Interface Controller + 3b10 5 Series/3400 Series Chipset LPC Interface Controller + 3b11 5 Series/3400 Series Chipset LPC Interface Controller + 3b12 3400 Series Chipset LPC Interface Controller + 3b13 5 Series/3400 Series Chipset LPC Interface Controller + 3b14 3420 Chipset LPC Interface Controller + 15d9 0605 X8SIL + 3b15 5 Series/3400 Series Chipset LPC Interface Controller + 3b16 3450 Chipset LPC Interface Controller + 3b17 5 Series/3400 Series Chipset LPC Interface Controller + 3b18 5 Series/3400 Series Chipset LPC Interface Controller + 3b19 5 Series/3400 Series Chipset LPC Interface Controller + 3b1a 5 Series/3400 Series Chipset LPC Interface Controller + 3b1b 5 Series/3400 Series Chipset LPC Interface Controller + 3b1c 5 Series/3400 Series Chipset LPC Interface Controller + 3b1d 5 Series/3400 Series Chipset LPC Interface Controller + 3b1e 5 Series/3400 Series Chipset LPC Interface Controller + 3b1f 5 Series/3400 Series Chipset LPC Interface Controller + 3b20 5 Series/3400 Series Chipset 4 port SATA IDE Controller + 3b21 5 Series/3400 Series Chipset 2 port SATA IDE Controller + 3b22 5 Series/3400 Series Chipset 6 port SATA AHCI Controller + 1028 02da OptiPlex 980 + 15d9 0605 X8SIL + 15d9 060d C7SIM-Q Motherboard + 3b23 5 Series/3400 Series Chipset 4 port SATA AHCI Controller + 3b25 5 Series/3400 Series Chipset SATA RAID Controller + 103c 3118 Smart Array B110i SATA RAID Controller + 3b26 5 Series/3400 Series Chipset 2 port SATA IDE Controller + 3b28 5 Series/3400 Series Chipset 4 port SATA IDE Controller + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b29 5 Series/3400 Series Chipset 4 port SATA AHCI Controller + 1025 0347 Aspire 7740G + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b2c 5 Series/3400 Series Chipset SATA RAID Controller + 3b2d 5 Series/3400 Series Chipset 2 port SATA IDE Controller + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b2e 5 Series/3400 Series Chipset 4 port SATA IDE Controller + e4bf 50c1 PC1-GROOVE + 3b2f 5 Series/3400 Series Chipset 6 port SATA AHCI Controller + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + e4bf 50c1 PC1-GROOVE + 3b30 5 Series/3400 Series Chipset SMBus Controller + 1025 0347 Aspire 7740G + 1028 02da OptiPlex 980 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 1043 3838 P7P55-M Motherboard + 1043 8383 P7P55-M Motherboard + 144d c06a R730 Laptop + 15d9 0605 X8SIL + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b32 5 Series/3400 Series Chipset Thermal Subsystem + 1025 0347 Aspire 7740G + 1028 040a Latitude E6410 + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b34 5 Series/3400 Series Chipset USB2 Enhanced Host Controller + 1025 0347 Aspire 7740G + 1028 02da OptiPlex 980 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 144d c06a R730 Laptop + 15d9 0605 X8SIL + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b36 5 Series/3400 Series Chipset USB Universal Host Controller + 3b37 5 Series/3400 Series Chipset USB Universal Host Controller + 3b38 5 Series/3400 Series Chipset USB Universal Host Controller + 3b39 5 Series/3400 Series Chipset USB Universal Host Controller + 3b3a 5 Series/3400 Series Chipset USB Universal Host Controller + 3b3b 5 Series/3400 Series Chipset USB Universal Host Controller + 3b3c 5 Series/3400 Series Chipset USB2 Enhanced Host Controller + 1025 0347 Aspire 7740G + 1028 02da OptiPlex 980 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 144d c06a R730 Laptop + 15d9 0605 X8SIL + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b3e 5 Series/3400 Series Chipset USB Universal Host Controller + 3b3f 5 Series/3400 Series Chipset USB Universal Host Controller + 3b40 5 Series/3400 Series Chipset USB Universal Host Controller + 3b41 5 Series/3400 Series Chipset LAN Controller + 3b42 5 Series/3400 Series Chipset PCI Express Root Port 1 + 1028 02da OptiPlex 980 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 103c 1521 EliteBook 8540p + 144d c06a R730 Laptop + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b44 5 Series/3400 Series Chipset PCI Express Root Port 2 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b46 5 Series/3400 Series Chipset PCI Express Root Port 3 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 144d c06a R730 Laptop + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b48 5 Series/3400 Series Chipset PCI Express Root Port 4 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 144d c06a R730 Laptop + 3b4a 5 Series/3400 Series Chipset PCI Express Root Port 5 + 1028 02da OptiPlex 980 + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + 3b4c 5 Series/3400 Series Chipset PCI Express Root Port 6 + 3b4e 5 Series/3400 Series Chipset PCI Express Root Port 7 + 3b50 5 Series/3400 Series Chipset PCI Express Root Port 8 + 3b53 5 Series/3400 Series Chipset VECI Controller + 3b56 5 Series/3400 Series Chipset High Definition Audio + 1025 0347 Aspire 7740G + 1028 02da OptiPlex 980 + 1028 040a Latitude E6410 + 1028 040b Latitude E6510 + 1043 1373 G73-series gaming laptop + 144d c06a R730 Laptop + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b57 5 Series/3400 Series Chipset High Definition Audio + 3b64 5 Series/3400 Series Chipset HECI Controller + 1025 0347 Aspire 7740G + 15d9 060d C7SIM-Q Motherboard + 17c0 10d2 Medion Akoya E7214 Notebook PC [MD98410] + e4bf 50c1 PC1-GROOVE + 3b65 5 Series/3400 Series Chipset HECI Controller + 3b66 5 Series/3400 Series Chipset PT IDER Controller + 3b67 5 Series/3400 Series Chipset KT Controller + e4bf 50c1 PC1-GROOVE + 3c00 Xeon E5/Core i7 DMI2 + 3c01 Xeon E5/Core i7 DMI2 in PCI Express Mode + 3c02 Xeon E5/Core i7 IIO PCI Express Root Port 1a + 3c03 Xeon E5/Core i7 IIO PCI Express Root Port 1b + 3c04 Xeon E5/Core i7 IIO PCI Express Root Port 2a + 3c05 Xeon E5/Core i7 IIO PCI Express Root Port 2b + 3c06 Xeon E5/Core i7 IIO PCI Express Root Port 2c + 3c07 Xeon E5/Core i7 IIO PCI Express Root Port 2d + 3c08 Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode + 3c09 Xeon E5/Core i7 IIO PCI Express Root Port 3b + 3c0a Xeon E5/Core i7 IIO PCI Express Root Port 3c + 3c0b Xeon E5/Core i7 IIO PCI Express Root Port 3d + 3c0d Xeon E5/Core i7 Non-Transparent Bridge + 3c0e Xeon E5/Core i7 Non-Transparent Bridge + 3c0f Xeon E5/Core i7 Non-Transparent Bridge + 3c20 Xeon E5/Core i7 DMA Channel 0 + 3c21 Xeon E5/Core i7 DMA Channel 1 + 3c22 Xeon E5/Core i7 DMA Channel 2 + 3c23 Xeon E5/Core i7 DMA Channel 3 + 3c24 Xeon E5/Core i7 DMA Channel 4 + 3c25 Xeon E5/Core i7 DMA Channel 5 + 3c26 Xeon E5/Core i7 DMA Channel 6 + 3c27 Xeon E5/Core i7 DMA Channel 7 + 3c28 Xeon E5/Core i7 Address Map, VTd_Misc, System Management + 3c2a Xeon E5/Core i7 Control Status and Global Errors + 3c2c Xeon E5/Core i7 I/O APIC + 3c2e Xeon E5/Core i7 DMA + 3c2f Xeon E5/Core i7 DMA + 3c40 Xeon E5/Core i7 IIO Switch and IRP Performance Monitor + 3c43 Xeon E5/Core i7 Ring to PCI Express Performance Monitor + 3c44 Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor + 3c45 Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor + 3c46 Xeon E5/Core i7 Processor Home Agent Performance Monitoring + 3c71 Xeon E5/Core i7 Integrated Memory Controller RAS Registers + 3c80 Xeon E5/Core i7 QPI Link 0 + 3c83 Xeon E5/Core i7 QPI Link Reut 0 + 3c84 Xeon E5/Core i7 QPI Link Reut 0 + 3c90 Xeon E5/Core i7 QPI Link 1 + 3c93 Xeon E5/Core i7 QPI Link Reut 1 + 3c94 Xeon E5/Core i7 QPI Link Reut 1 + 3ca0 Xeon E5/Core i7 Processor Home Agent + 3ca8 Xeon E5/Core i7 Integrated Memory Controller Registers + 3caa Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 + 3cab Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 + 3cac Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 + 3cad Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 + 3cae Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 + 3cb0 Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 + 3cb1 Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 + 3cb2 Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 + 3cb3 Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 + 3cb4 Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 + 3cb5 Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 + 3cb6 Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 + 3cb7 Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 + 3cb8 Xeon E5/Core i7 DDRIO + 3cc0 Xeon E5/Core i7 Power Control Unit 0 + 3cc1 Xeon E5/Core i7 Power Control Unit 1 + 3cc2 Xeon E5/Core i7 Power Control Unit 2 + 3cd0 Xeon E5/Core i7 Power Control Unit 3 + 3ce0 Xeon E5/Core i7 Interrupt Control Registers + 3ce3 Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers + 3ce4 Xeon E5/Core i7 R2PCIe + 3ce6 Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers + 3ce8 Xeon E5/Core i7 Unicast Register 0 + 3ce9 Xeon E5/Core i7 Unicast Register 5 + 3cea Xeon E5/Core i7 Unicast Register 1 + 3ceb Xeon E5/Core i7 Unicast Register 6 + 3cec Xeon E5/Core i7 Unicast Register 3 + 3ced Xeon E5/Core i7 Unicast Register 7 + 3cee Xeon E5/Core i7 Unicast Register 4 + 3cef Xeon E5/Core i7 Unicast Register 8 + 3cf4 Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 + 3cf5 Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 + 3cf6 Xeon E5/Core i7 System Address Decoder + 3e10 8th Gen Core 4-core Processor Host Bridge/DRAM Registers [Coffee Lake H] + 3e18 8th Gen Core 4-core Workstation Processor Host Bridge/DRAM Registers [Coffee Lake S] + 3e1f 8th Gen Core 4-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S] + 1458 5000 Z370 AORUS Gaming K3-CF + 3e30 8th/9th Gen Core 8-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S] + 3e33 8th/9th Gen Core Processor Host Bridge/DRAM Registers [Coffee Lake] + 3e34 Coffee Lake HOST and DRAM Controller + 3e35 Coffee Lake Host Bridge/DRAM Registers + 3e81 8th Gen Core Processor PCIe Controller (x16) + 3e85 8th Gen Core Processor PCIe Controller (x8) + 3e89 8th Gen Core Processor PCIe Controller (x4) + 3e90 CoffeeLake-S GT1 [UHD Graphics 610] + 3e91 CoffeeLake-S GT2 [UHD Graphics 630] + 3e92 CoffeeLake-S GT2 [UHD Graphics 630] + 1028 0869 Vostro 3470 + 3e93 CoffeeLake-S GT1 [UHD Graphics 610] + 3e96 CoffeeLake-S GT2 [UHD Graphics P630] + 3e98 CoffeeLake-S GT2 [UHD Graphics 630] + 3e9b CoffeeLake-H GT2 [UHD Graphics 630] + 3ea0 WhiskeyLake-U GT2 [UHD Graphics 620] + 1028 089e Inspiron 5482 + 3ea5 CoffeeLake-U GT3e [Iris Plus Graphics 655] + 3ec2 8th Gen Core Processor Host Bridge/DRAM Registers + 1028 0869 Vostro 3470 + 1043 8694 PRIME H310M-D + 3ec4 8th Gen Core Processor Host Bridge/DRAM Registers + 3ec6 8th Gen Core Processor Host Bridge/DRAM Registers + 3eca 8th Gen Core Processor Host Bridge/DRAM Registers + 3ed0 8th Gen Core Processor Host Bridge/DRAM Registers + 4000 5400 Chipset Memory Controller Hub + 4001 5400 Chipset Memory Controller Hub + 4003 5400 Chipset Memory Controller Hub + 4021 5400 Chipset PCI Express Port 1 + 4022 5400 Chipset PCI Express Port 2 + 4023 5400 Chipset PCI Express Port 3 + 4024 5400 Chipset PCI Express Port 4 + 4025 5400 Chipset PCI Express Port 5 + 4026 5400 Chipset PCI Express Port 6 + 4027 5400 Chipset PCI Express Port 7 + 4028 5400 Chipset PCI Express Port 8 + 4029 5400 Chipset PCI Express Port 9 + 402d 5400 Chipset IBIST Registers + 402e 5400 Chipset IBIST Registers + 402f 5400 Chipset QuickData Technology Device + 4030 5400 Chipset FSB Registers + 4031 5400 Chipset CE/SF Registers + 4032 5400 Chipset IOxAPIC + 4035 5400 Chipset FBD Registers + 4036 5400 Chipset FBD Registers + 4041 NVMe Datacenter SSD [Optane] + 4100 Moorestown Graphics and Video + 4108 Atom Processor E6xx Integrated Graphics Controller + 4109 Atom Processor E6xx Integrated Graphics Controller + 410a Atom Processor E6xx Integrated Graphics Controller + 410b Atom Processor E6xx Integrated Graphics Controller + 410c Atom Processor E6xx Integrated Graphics Controller + 410d Atom Processor E6xx Integrated Graphics Controller + 410e Atom Processor E6xx Integrated Graphics Controller + 410f Atom Processor E6xx Integrated Graphics Controller + 4114 Atom Processor E6xx PCI Host Bridge #1 + 4115 Atom Processor E6xx PCI Host Bridge #2 + 4116 Atom Processor E6xx PCI Host Bridge #3 + 4117 Atom Processor E6xx PCI Host Bridge #4 + 4140 NVMe Datacenter SSD [Optane] + 1028 2134 NVMe Datacenter SSD [Optane] SED 400GB 2.5" U.2 (P5800X) + 1028 2135 NVMe Datacenter SSD [Optane] SED 800GB 2.5" U.2 (P5800X) + 1028 2136 NVMe Datacenter SSD [Optane] SED 1.6TB 2.5" U.2 (P5800X) + 1028 2137 NVMe Datacenter SSD [Optane] 400GB 2.5" U.2 (P5800X) + 1028 2138 NVMe Datacenter SSD [Optane] 800GB 2.5" U.2 (P5800X) + 1028 2139 NVMe Datacenter SSD [Optane] 1.6TB 2.5" U.2 (P5800X) + 4220 PRO/Wireless 2200BG [Calexico2] Network Connection + 103c 0934 Compaq nw8240/nx8220 + 103c 12f6 nc6120/nc6220/nw8240/nx8220 + 8086 2701 WM3B2200BG Mini-PCI Card + 8086 2712 IBM ThinkPad R50e + 8086 2721 Dell B130 laptop integrated WLAN + 8086 2722 Dell Latitude D600 + 8086 2731 Samsung P35 integrated WLAN + 4222 PRO/Wireless 3945ABG [Golan] Network Connection + 103c 135c PRO/Wireless 3945ABG [Golan] Network Connection + 8086 1000 PRO/Wireless 3945ABG Network Connection + 8086 1001 WM3945ABG MOW2 + 8086 1005 PRO/Wireless 3945BG Network Connection + 8086 1034 PRO/Wireless 3945BG Network Connection + 8086 1044 PRO/Wireless 3945BG Network Connection + 8086 1c00 PRO/Wireless 3945ABG Network Connection + 4223 PRO/Wireless 2915ABG [Calexico2] Network Connection + 1000 8086 mPCI 3B Americas/Europe ZZA + 1001 8086 mPCI 3B Europe ZZE + 1002 8086 mPCI 3B Japan ZZJ + 1003 8086 mPCI 3B High-Band ZZH + 103c 1351 Compaq nc6220 + 4224 PRO/Wireless 2915ABG [Calexico2] Network Connection + 4227 PRO/Wireless 3945ABG [Golan] Network Connection + 8086 1010 ThinkPad R60e + 8086 1011 ThinkPad T60/R60e/X60s/R61 + 8086 1014 PRO/Wireless 3945BG Network Connection + 4229 PRO/Wireless 4965 AG or AGN [Kedron] Network Connection + 8086 1100 Vaio VGN-SZ79SN_C + 8086 1101 PRO/Wireless 4965 AG or AGN + 422b Centrino Ultimate-N 6300 + 8086 1101 Centrino Ultimate-N 6300 3x3 AGN + 8086 1121 Centrino Ultimate-N 6300 3x3 AGN + 422c Centrino Advanced-N 6200 + 8086 1301 Centrino Advanced-N 6200 2x2 AGN + 8086 1306 Centrino Advanced-N 6200 2x2 ABG + 8086 1307 Centrino Advanced-N 6200 2x2 BG + 8086 1321 Centrino Advanced-N 6200 2x2 AGN + 8086 1326 Centrino Advanced-N 6200 2x2 ABG + 4230 PRO/Wireless 4965 AG or AGN [Kedron] Network Connection + 8086 1110 Lenovo ThinkPad T51 + 8086 1111 Lenovo ThinkPad T61 + 4232 WiFi Link 5100 + 8086 1201 WiFi Link 5100 AGN + 8086 1204 WiFi Link 5100 AGN + 8086 1205 WiFi Link 5100 BGN + 8086 1206 WiFi Link 5100 ABG + 8086 1221 WiFi Link 5100 AGN + 8086 1224 WiFi Link 5100 AGN + 8086 1225 WiFi Link 5100 BGN + 8086 1226 WiFi Link 5100 ABG + 8086 1301 WiFi Link 5100 AGN + 8086 1304 WiFi Link 5100 AGN + 8086 1305 WiFi Link 5100 BGN + 8086 1306 WiFi Link 5100 ABG + 8086 1321 WiFi Link 5100 AGN + 8086 1324 WiFi Link 5100 AGN + 8086 1325 WiFi Link 5100 BGN + 8086 1326 WiFi Link 5100 ABG + 4235 Ultimate N WiFi Link 5300 + 4236 Ultimate N WiFi Link 5300 + 4237 PRO/Wireless 5100 AGN [Shiloh] Network Connection + 8086 1211 WiFi Link 5100 AGN + 8086 1214 WiFi Link 5100 AGN + 8086 1215 WiFi Link 5100 BGN + 8086 1216 WiFi Link 5100 ABG + 8086 1311 WiFi Link 5100 AGN + 8086 1314 WiFi Link 5100 AGN + 8086 1315 WiFi Link 5100 BGN + 8086 1316 WiFi Link 5100 ABG + 4238 Centrino Ultimate-N 6300 + 8086 1111 Centrino Ultimate-N 6300 3x3 AGN + 4239 Centrino Advanced-N 6200 + 8086 1311 Centrino Advanced-N 6200 2x2 AGN + 8086 1316 Centrino Advanced-N 6200 2x2 ABG + 423a PRO/Wireless 5350 AGN [Echo Peak] Network Connection + 423b PRO/Wireless 5350 AGN [Echo Peak] Network Connection + 423c WiMAX/WiFi Link 5150 + 8086 1201 WiMAX/WiFi Link 5150 AGN + 8086 1206 WiMAX/WiFi Link 5150 ABG + 8086 1221 WiMAX/WiFi Link 5150 AGN + 8086 1301 WiMAX/WiFi Link 5150 AGN + 8086 1306 WiMAX/WiFi Link 5150 ABG + 8086 1321 WiMAX/WiFi Link 5150 AGN + 423d WiMAX/WiFi Link 5150 + 8086 1211 WiMAX/WiFi Link 5150 AGN + 8086 1216 WiMAX/WiFi Link 5150 ABG + 8086 1311 WiMAX/WiFi Link 5150 AGN + 8086 1316 WiMAX/WiFi Link 5150 ABG + 438b Tiger Lake-H LPC/eSPI Controller + 43a3 Tiger Lake-H SMBus Controller + 43a4 Tiger Lake-H SPI Controller + 43b0 Tiger Lake-H PCI Express Root Port #9 + 43bc Tiger Lake-H PCI Express Root Port #5 + 43c8 Tiger Lake-H HD Audio Controller + 43e0 Tiger Lake-H Management Engine Interface + 43e8 Tiger Lake-H Serial IO I2C Controller #0 + 43ed Tiger Lake-H USB 3.2 Gen 2x1 xHCI Host Controller + 43ef Tiger Lake-H Shared SRAM + 43f0 Tiger Lake PCH CNVi WiFi + 8086 0034 Wireless-AC 9560 + 8086 0074 Wi-Fi 6 AX201 160MHz + 8086 0264 Wireless-AC 9461 + 8086 02a4 Wireless-AC 9462 + 444e Turbo Memory Controller + 460d 12th Gen Core Processor PCI Express x16 Controller #1 + 461d Alder Lake Innovation Platform Framework Processor Participant + 461e Alder Lake-P Thunderbolt 4 USB Controller + 461f Alder Lake-P Thunderbolt 4 PCI Express Root Port #3 + 4626 Alder Lake-P Integrated Graphics Controller + 4629 12th Gen Core Processor Host Bridge/DRAM Registers + 462f Alder Lake-P Thunderbolt 4 PCI Express Root Port #2 + 463d 12th Gen Core Processor PCI Express x4 Controller #2 + 463e Alder Lake-P Thunderbolt 4 NHI #0 + 463f Alder Lake-P Thunderbolt 4 PCI Express Root Port #1 + 4641 12th Gen Core Processor Host Bridge/DRAM Registers + 464d 12th Gen Core Processor PCI Express x4 Controller #0 + 464f 12th Gen Core Processor Gaussian & Neural Accelerator + 4660 12th Gen Core Processor Host Bridge/DRAM Registers + 466d Alder Lake-P Thunderbolt 4 NHI #1 + 466e Alder Lake-P Thunderbolt 4 PCI Express Root Port #0 + 467d Platform Monitoring Technology + 467f Volume Management Device NVMe RAID Controller + 4680 AlderLake-S GT1 + 46a0 AlderLake-P GT2 + 46a1 UHD Graphics + 46a3 Alder Lake-P GT1 [UHD Graphics] + 46a6 Alder Lake-P Integrated Graphics Controller + 46c0 AlderLake-M GT1 + 4905 DG1 [Iris Xe MAX Graphics] + 4906 DG1 [Iris Xe Pod] + 4907 SG1 [Server GPU SG-18M] + 193d 4000 UN-GPU-XG310-32GB-FHFL + 4908 DG1 [Iris Xe Graphics] + 4c3d Volume Management Device NVMe RAID Controller + 4c8a RocketLake-S GT1 [UHD Graphics 750] + 4c8b RocketLake-S GT1 [UHD Graphics 730] + 4c90 RocketLake-S GT1 [UHD Graphics P750] + 4c9a RocketLake-S [UHD Graphics] + 4da3 Jasper Lake SMBus + 4da4 Jasper Lake SPI Controller + 4dc8 Jasper Lake HD Audio + 4de0 Management Engine Interface + 4de8 Serial IO I2C Host Controller + 4de9 Serial IO I2C Host Controller + 4df0 Wi-Fi 6 AX201 160MHz + 4e03 Dynamic Tuning service + 4e19 JasperLake IPU + 4e55 JasperLake [UHD Graphics] + 4e61 JasperLake [UHD Graphics] + 4e71 JasperLake [UHD Graphics] + 4f80 DG2 + 4f81 DG2 + 4f82 DG2 + 5001 LE80578 + 5002 LE80578 Graphics Processor Unit + 5009 LE80578 Video Display Controller + 500d LE80578 Expansion Bus + 500e LE80578 UART Controller + 500f LE80578 General Purpose IO + 5010 LE80578 I2C Controller + 5012 LE80578 Serial Peripheral Interface Bus + 5020 EP80579 Memory Controller Hub + 5021 EP80579 DRAM Error Reporting Registers + 5023 EP80579 EDMA Controller + 5024 EP80579 PCI Express Port PEA0 + 5025 EP80579 PCI Express Port PEA1 + 5028 EP80579 S-ATA IDE + 5029 EP80579 S-ATA AHCI + 502a EP80579 S-ATA Reserved + 502b EP80579 S-ATA Reserved + 502c EP80579 Integrated Processor ASU + 502d EP80579 Integrated Processor with QuickAssist ASU + 502e EP80579 Reserved + 502f EP80579 Reserved + 5030 EP80579 Reserved + 5031 EP80579 LPC Bus + 5032 EP80579 SMBus Controller + 5033 EP80579 USB 1.1 Controller + 5035 EP80579 USB 2.0 Controller + 5037 EP80579 PCI-PCI Bridge (transparent mode) + 5039 EP80579 Controller Area Network (CAN) interface #1 + 503a EP80579 Controller Area Network (CAN) interface #2 + 503b EP80579 Synchronous Serial Port (SPP) + 503c EP80579 IEEE 1588 Hardware Assist + 503d EP80579 Local Expansion Bus + 503e EP80579 Global Control Unit (GCU) + 503f EP80579 Reserved + 5040 EP80579 Integrated Processor Gigabit Ethernet MAC + 5041 EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC + 5042 EP80579 Reserved + 5043 EP80579 Reserved + 5044 EP80579 Integrated Processor Gigabit Ethernet MAC + 5045 EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC + 5046 EP80579 Reserved + 5047 EP80579 Reserved + 5048 EP80579 Integrated Processor Gigabit Ethernet MAC + 5049 EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC + 504a EP80579 Reserved + 504b EP80579 Reserved + 504c EP80579 Integrated Processor with QuickAssist TDM + 5181 Alder Lake PCH-P LPC/eSPI Controller + 5182 Alder Lake PCH eSPI Controller + 51a3 Alder Lake PCH-P SMBus Host Controller + 51a4 Alder Lake-P PCH SPI Controller + 51a8 Alder Lake PCH UART #0 + 51a9 Alder Lake PCH UART #1 + 51bf Alder Lake PCH-P PCI Express Root Port #9 + 51c5 Alder Lake-P Serial IO I2C Controller #0 + 51c6 Alder Lake-P Serial IO I2C Controller #1 + 51c8 Alder Lake PCH-P High Definition Audio Controller + 51d3 Alder Lake-P SATA AHCI Controller + 51e0 Alder Lake PCH HECI Controller + 51e8 Alder Lake PCH Serial IO I2C Controller #0 + 51e9 Alder Lake PCH Serial IO I2C Controller #1 + 51ea Alder Lake PCH Serial IO I2C Controller #2 + 51eb Alder Lake PCH Serial IO I2C Controller #3 + 51ed Alder Lake PCH USB 3.2 xHCI Host Controller + 51ef Alder Lake PCH Shared SRAM + 51f0 Alder Lake-P PCH CNVi WiFi + 8086 0034 Wireless-AC 9560 160MHz + 8086 0070 Wi-Fi 6 AX201 160MHz + 8086 0074 Wi-Fi 6 AX201 160MHz + 8086 4070 Wi-Fi 6 AX201 160MHz + 5200 EtherExpress PRO/100 Intelligent Server PCI Bridge + 5201 EtherExpress PRO/100 Intelligent Server Fast Ethernet Controller + 8086 0001 EtherExpress PRO/100 Server Ethernet Adapter + 530d 80310 (IOP) IO Processor + 5502 Ethernet Controller (2) I225-LMvP + 5504 Ethernet Controller I226-K + 5845 QEMU NVM Express Controller + 1af4 1100 QEMU Virtual Machine + 5900 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 5901 Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x16) + 5902 HD Graphics 610 + 5904 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 1025 115f Aspire E5-575G + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 5905 Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x8) + 5909 Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x4) + 590c Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 590f Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 1462 7a68 B250 KRAIT GAMING (MS-7A68) + 1462 7a72 H270 PC MATE + 5910 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 5911 Xeon E3-1200 v6/7th Gen Core Processor Gaussian Mixture Model + 5912 HD Graphics 630 + 1462 7a72 H270 PC MATE + 5914 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 17aa 225d ThinkPad T480 + 5916 HD Graphics 620 + 1025 1094 Aspire E5-575G + 17aa 2248 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 5917 UHD Graphics 620 + 17aa 225e ThinkPad T480 + 5918 Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 591b HD Graphics 630 + 591c UHD Graphics 615 + 591d HD Graphics P630 + 591e HD Graphics 615 + 591f Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers + 5923 HD Graphics 635 + 5926 Iris Plus Graphics 640 + 5927 Iris Plus Graphics 650 + 5a84 Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Graphics Controller + 5a85 HD Graphics 500 + 5a88 Celeron N3350/Pentium N4200/Atom E3900 Series Imaging Unit + 5a98 Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster + 5a9a Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine + 5aa2 Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Sensor Hub + 5aa8 Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI + 5aac Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1 + 5aae Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #2 + 5ab0 Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #3 + 5ab2 Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #4 + 5ab4 Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #5 + 5ab6 Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #6 + 5ab8 Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #7 + 5aba Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #8 + 5abc Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1 + 5abe Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #2 + 5ac0 Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #3 + 5ac2 Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #1 + 5ac4 Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #2 + 5ac6 Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #3 + 5ac8 Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller + 5aca Celeron N3350/Pentium N4200/Atom E3900 Series SDXC/MMC Host Controller + 5acc Celeron N3350/Pentium N4200/Atom E3900 Series eMMC Controller + 5ad0 Celeron N3350/Pentium N4200/Atom E3900 Series SDIO Controller + 5ad4 Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller + 5ad6 Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port B #1 + 5ad7 Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port B #2 + 5ad8 Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #1 + 5ad9 Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2 + 5ada Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3 + 5adb Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #4 + 5ae3 Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller + 5ae8 Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface + 5aee Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #4 + 5af0 Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge + 65c0 5100 Chipset Memory Controller Hub + 65e2 5100 Chipset PCI Express x4 Port 2 + 65e3 5100 Chipset PCI Express x4 Port 3 + 65e4 5100 Chipset PCI Express x4 Port 4 + 65e5 5100 Chipset PCI Express x4 Port 5 + 65e6 5100 Chipset PCI Express x4 Port 6 + 65e7 5100 Chipset PCI Express x4 Port 7 + 65f0 5100 Chipset FSB Registers + 1028 020f PowerEdge R300 + 1028 0210 PowerEdge T300 + 65f1 5100 Chipset Reserved Registers + 1028 0210 PowerEdge T300 + 65f3 5100 Chipset Reserved Registers + 65f5 5100 Chipset DDR Channel 0 Registers + 65f6 5100 Chipset DDR Channel 1 Registers + 65f7 5100 Chipset PCI Express x8 Port 2-3 + 65f8 5100 Chipset PCI Express x8 Port 4-5 + 65f9 5100 Chipset PCI Express x8 Port 6-7 + 65fa 5100 Chipset PCI Express x16 Port 4-7 + 65ff 5100 Chipset DMA Engine + 6f00 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2 + 15d9 0832 X10SRL-F + 6f01 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 0 + 6f02 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 + 6f03 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 + 6f04 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 + 6f05 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 + 6f06 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 + 6f07 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 + 6f08 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 + 6f09 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 + 6f0a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 + 6f0b Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 + 6f10 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f11 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f12 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f13 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f14 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f15 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f16 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f17 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f18 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f19 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f1a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f1b Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f1c Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug + 6f1d Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent + 6f1e Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox + 6f1f Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox + 6f20 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 0 + 15d9 0832 X10SRL-F + 6f21 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 1 + 15d9 0832 X10SRL-F + 6f22 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 2 + 15d9 0832 X10SRL-F + 6f23 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 3 + 15d9 0832 X10SRL-F + 6f24 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 4 + 15d9 0832 X10SRL-F + 6f25 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 5 + 15d9 0832 X10SRL-F + 6f26 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 6 + 15d9 0832 X10SRL-F + 6f27 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 7 + 15d9 0832 X10SRL-F + 6f28 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management + 15d9 0832 X10SRL-F + 6f29 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug + 15d9 0832 X10SRL-F + 6f2a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors + 15d9 0832 X10SRL-F + 6f2c Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC + 15d9 0832 X10SRL-F + 6f30 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 + 6f32 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 + 6f33 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 + 6f34 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent + 6f36 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 + 6f37 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 + 6f38 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 + 6f39 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IO Performance Monitoring + 6f3a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 + 6f3e Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2 + 6f3f Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2 + 6f40 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 + 6f41 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2 + 6f43 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 + 6f45 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug + 6f46 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug + 6f47 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug + 6f50 Xeon Processor D Family QuickData Technology Register DMA Channel 0 + 6f51 Xeon Processor D Family QuickData Technology Register DMA Channel 1 + 6f52 Xeon Processor D Family QuickData Technology Register DMA Channel 2 + 6f53 Xeon Processor D Family QuickData Technology Register DMA Channel 3 + 6f54 Xeon Processor D Family QuickAssist Technology + 6f55 Xeon Processor D Family QuickAssist Technology Virtual Fuction + 6f60 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 + 6f68 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS + 6f6a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder + 6f6b Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder + 6f6c Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder + 6f6d Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder + 6f6e Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Broadcast + 6f6f Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast + 6f70 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 Debug + 6f71 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS + 6f76 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug + 6f78 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 Debug + 6f79 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS + 6f7d Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox + 6f7e Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug + 6f80 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 + 6f81 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 + 6f83 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 + 6f85 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug + 6f86 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug + 6f87 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug + 6f88 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6f8a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6f90 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 + 6f93 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 + 6f95 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 Debug + 6f96 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 Debug + 6f98 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6f99 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6f9a Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6f9c Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fa0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 + 6fa8 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS + 6faa Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder + 6fab Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder + 6fac Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder + 6fad Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder + 6fae Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast + 6faf Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast + 6fb0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control + 6fb1 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control + 6fb2 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error + 6fb3 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error + 6fb4 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Thermal Control + 6fb5 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Thermal Control + 6fb6 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Error + 6fb7 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Error + 6fb8 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface + 6fb9 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface + 6fba Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface + 6fbb Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface + 6fbc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface + 6fbd Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface + 6fbe Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface + 6fbf Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface + 6fc0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc1 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc2 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc3 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc4 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc5 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc6 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc7 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc8 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fc9 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fca Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fcb Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fcc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fcd Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fce Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fcf Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit + 6fd0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Thermal Control + 6fd1 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Thermal Control + 6fd2 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Error + 6fd3 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Error + 6fd4 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 2 Thermal Control + 6fd5 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 3 Thermal Control + 6fd6 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 2 Error + 6fd7 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 3 Error + 6fe0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe1 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe2 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe3 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe4 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe5 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe6 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe7 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe8 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fe9 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fea Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6feb Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fec Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fed Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fee Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6fef Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ff0 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ff1 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ff8 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ff9 Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ffa Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ffb Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ffc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ffd Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 6ffe Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent + 7000 82371SB PIIX3 ISA [Natoma/Triton II] + 1af4 1100 Qemu virtual machine + 7010 82371SB PIIX3 IDE [Natoma/Triton II] + 1af4 1100 Qemu virtual machine + 7020 82371SB PIIX3 USB [Natoma/Triton II] + 1af4 1100 QEMU Virtual Machine + 7030 430VX - 82437VX TVX [Triton VX] + 7050 Intercast Video Capture Card + 7051 PB 642365-003 (Business Video Conferencing Card) + 7100 430TX - 82439TX MTXC + 7110 82371AB/EB/MB PIIX4 ISA + 15ad 1976 Virtual Machine Chipset + 7111 82371AB/EB/MB PIIX4 IDE + 15ad 1976 Virtual Machine Chipset + 7112 82371AB/EB/MB PIIX4 USB + 15ad 1976 Virtual Machine Chipset + 1af4 1100 QEMU Virtual Machine + 7113 82371AB/EB/MB PIIX4 ACPI + 15ad 1976 Virtual Machine Chipset + 1af4 1100 Qemu virtual machine + 7120 82810 GMCH (Graphics Memory Controller Hub) + 4c53 1040 CL7 mainboard + 4c53 1060 PC7 mainboard + 7121 82810 (CGC) Chipset Graphics Controller + 4c53 1040 CL7 mainboard + 4c53 1060 PC7 mainboard + 8086 4341 Cayman (CA810) Mainboard + 7122 82810 DC-100 (GMCH) Graphics Memory Controller Hub + 7123 82810 DC-100 (CGC) Chipset Graphics Controller + 7124 82810E DC-133 (GMCH) Graphics Memory Controller Hub + 1028 00b4 OptiPlex GX110 + 7125 82810E DC-133 (CGC) Chipset Graphics Controller + 1028 00b4 OptiPlex GX110 + 7126 82810 DC-133 System and Graphics Controller + 7128 82810-M DC-100 System and Graphics Controller + 712a 82810-M DC-133 System and Graphics Controller + 7180 440LX/EX - 82443LX/EX Host bridge + 7181 440LX/EX - 82443LX/EX AGP bridge + 7190 440BX/ZX/DX - 82443BX/ZX/DX Host bridge + 0e11 0500 Armada 1750 Laptop System Chipset + 0e11 b110 Armada M700/E500 + 1028 008e PowerEdge 1300 mainboard + 1043 803b CUBX-L/E Mainboard + 1179 0001 Toshiba Tecra 8100 Laptop System Chipset + 15ad 1976 Virtual Machine Chipset + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 7191 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge + 1028 008e PowerEdge 1300 mainboard + 7192 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (AGP disabled) + 0e11 0460 Armada 1700 Laptop System Chipset + 1179 0001 Satellite 4010 + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 8086 7190 Dell PowerEdge 350 + 7194 82440MX Host Bridge + 1033 0000 Versa Note Vxi + 4c53 10a0 CA3/CR3 mainboard + 7195 82440MX AC'97 Audio Controller + 1033 80cc Versa Note VXi + 10cf 1099 QSound_SigmaTel Stac97 PCI Audio + 11d4 0040 SoundMAX Integrated Digital Audio + 11d4 0048 SoundMAX Integrated Digital Audio + 7196 82440MX AC'97 Modem Controller + 7198 82440MX ISA Bridge + 7199 82440MX EIDE Controller + 719a 82440MX USB Universal Host Controller + 719b 82440MX Power Management Controller + 71a0 440GX - 82443GX Host bridge + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + 71a1 440GX - 82443GX AGP bridge + 71a2 440GX - 82443GX Host bridge (AGP disabled) + 4c53 1000 CC7/CR7/CP7/VC7/VP7/VR7 mainboard + 7360 XMM7360 LTE Advanced Modem + 7600 82372FB PIIX5 ISA + 7601 82372FB PIIX5 IDE + 7602 82372FB PIIX5 USB + 7603 82372FB PIIX5 SMBus + 7800 82740 (i740) AGP Graphics Accelerator + 003d 0008 Starfighter AGP + 003d 000b Starfighter AGP + 1092 0100 Stealth II G460 + 10b4 201a Lightspeed 740 + 10b4 202f Lightspeed 740 + 8086 0000 Terminator 2x/i + 8086 0100 Intel740 Graphics Accelerator +# Unlike other PCH components. The eSPI controller is specific to each chipset model + 7a84 Z690 Chipset LPC/eSPI Controller + 7aa3 Alder Lake-S PCH SMBus Controller + 7aa4 Alder Lake-S PCH SPI Controller + 7aa7 Alder Lake-S PCH Shared SRAM + 7ab4 Alder Lake-S PCH PCI Express Root Port #13 + 7abd Alder Lake-S PCH PCI Express Root Port #6 + 7acc Alder Lake-S PCH I2C Controller #0 + 7ad0 Alder Lake-S HD Audio Controller + 7ae0 Alder Lake-S PCH USB 3.2 Gen 2x2 XHCI Controller + 7ae2 Alder Lake-S PCH SATA Controller [AHCI Mode] + 7ae8 Alder Lake-S PCH HECI Controller #1 + 7af0 Alder Lake-S PCH CNVi WiFi + 8086 0094 Wi-Fi 6 AX201 160MHz + 8002 Trusted Execution Technology Registers + 8003 Trusted Execution Technology Registers + 8100 US15W/US15X SCH [Poulsbo] Host Bridge + 8101 US15L/UL11L SCH [Poulsbo] Host Bridge + 8108 US15W/US15X SCH [Poulsbo] Graphics Controller + 8109 US15L/UL11L SCH [Poulsbo] Graphics Controller + 8110 US15W/US15X/US15L/UL11L SCH [Poulsbo] PCI Express Port 1 + 8112 US15W/US15X/US15L/UL11L SCH [Poulsbo] PCI Express Port 2 + 8114 US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #1 + 8115 US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #2 + 8116 US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #3 + 8117 US15W/US15X/US15L/UL11L SCH [Poulsbo] USB EHCI Controller + 8118 US15W/US15X/US15L/UL11L SCH [Poulsbo] USB Client Controller + 8119 US15W/US15X/US15L/UL11L SCH [Poulsbo] LPC Bridge + 811a US15W/US15X/US15L/UL11L SCH [Poulsbo] IDE Controller + 811b US15W/US15X/US15L/UL11L SCH [Poulsbo] HD Audio Controller + 811c US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #1 + 811d US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #2 + 811e US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #3 + 8180 Atom Processor E6xx PCI Express Port 3 + 8181 Atom Processor E6xx PCI Express Port 4 + 8182 Atom Processor E6xx Integrated Graphics Controller + 8183 Atom Processor E6xx Configuration Unit + 8184 Atom Processor E6xx PCI Express Port 1 + 8185 Atom Processor E6xx PCI Express Port 2 + 8186 Atom Processor E6xx LPC Bridge + 84c4 450KX/GX [Orion] - 82454KX/GX PCI bridge + 84c5 450KX/GX [Orion] - 82453KX/GX Memory controller + 84ca 450NX - 82451NX Memory & I/O Controller + 84cb 450NX - 82454NX/84460GX PCI Expander Bridge + 84e0 460GX - 84460GX System Address Controller (SAC) + 84e1 460GX - 84460GX System Data Controller (SDC) + 84e2 460GX - 84460GX AGP Bridge (GXB function 2) + 84e3 460GX - 84460GX Memory Address Controller (MAC) + 84e4 460GX - 84460GX Memory Data Controller (MDC) + 84e6 460GX - 82466GX Wide and fast PCI eXpander Bridge (WXB) + 84ea 460GX - 84460GX AGP Bridge (GXB function 1) + 8500 IXP4XX Network Processor (IXP420/421/422/425/IXC1100) + 1993 0ded mGuard-PCI AV#2 + 1993 0dee mGuard-PCI AV#1 + 1993 0def mGuard-PCI AV#0 + 8603 Ice Lake-LP Dynamic Tuning Processor Participant + 87c0 UHD Graphics 617 + 8800 Platform Controller Hub EG20T PCI Express Port + 8801 Platform Controller Hub EG20T Packet Hub + 8802 Platform Controller Hub EG20T Gigabit Ethernet Controller + 8803 Platform Controller Hub EG20T General Purpose IO Controller + 8804 Platform Controller Hub EG20T USB OHCI Controller #4 + 8805 Platform Controller Hub EG20T USB OHCI Controller #5 + 8806 Platform Controller Hub EG20T USB OHCI Controller #6 + 8807 Platform Controller Hub EG20T USB2 EHCI Controller #2 + 8808 Platform Controller Hub EG20T USB Client Controller + 8809 Platform Controller Hub EG20T SDIO Controller #1 + 880a Platform Controller Hub EG20T SDIO Controller #2 + 880b Platform Controller Hub EG20T SATA AHCI Controller + 880c Platform Controller Hub EG20T USB OHCI Controller #1 + 880d Platform Controller Hub EG20T USB OHCI Controller #2 + 880e Platform Controller Hub EG20T USB OHCI Controller #3 + 880f Platform Controller Hub EG20T USB2 EHCI Controller #1 + 8810 Platform Controller Hub EG20T DMA Controller #1 + 8811 Platform Controller Hub EG20T UART Controller 0 + 8812 Platform Controller Hub EG20T UART Controller 1 + 8813 Platform Controller Hub EG20T UART Controller 2 + 8814 Platform Controller Hub EG20T UART Controller 3 + 8815 Platform Controller Hub EG20T DMA Controller #2 + 8816 Platform Controller Hub EG20T Serial Peripheral Interface Bus + 8817 Platform Controller Hub EG20T I2C Controller + 8818 Platform Controller Hub EG20T Controller Area Network (CAN) Controller + 8819 Platform Controller Hub EG20T IEEE 1588 Hardware Assist + 8a0d Ice Lake Thunderbolt 3 NHI #1 + 8a12 Ice Lake-LP Processor Host Bridge/DRAM Registers + 8a13 Ice Lake Thunderbolt 3 USB Controller + 8a14 Ice Lake Processor Host Bridge/DRAM Registers + 8a17 Ice Lake Thunderbolt 3 NHI #0 + 8a19 Image Signal Processor + 8a1d Ice Lake Thunderbolt 3 PCI Express Root Port #0 + 8a1f Ice Lake Thunderbolt 3 PCI Express Root Port #1 + 8a21 Ice Lake Thunderbolt 3 PCI Express Root Port #2 + 8a23 Ice Lake Thunderbolt 3 PCI Express Root Port #3 + 8a51 Iris Plus Graphics G7 (Ice Lake) + 8a52 Iris Plus Graphics G7 + 8a53 Iris Plus Graphics G7 + 8a56 Iris Plus Graphics G1 (Ice Lake) + 8a5a Iris Plus Graphics G4 (Ice Lake) + 8a5c Iris Plus Graphics G4 (Ice Lake) + 8c00 8 Series/C220 Series Chipset Family 4-port SATA Controller 1 [IDE mode] + 8c01 8 Series Chipset Family 4-port SATA Controller 1 [IDE mode] - Mobile + 8c02 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] + 1028 05d7 Alienware X51 R2 + 103c 1998 EliteDesk 800 G1 + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 8c03 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] + 103c 1909 ZBook 15 + 17aa 220e ThinkPad T440p + 8c04 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c05 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c06 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c07 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c08 8 Series/C220 Series Chipset Family 2-port SATA Controller 2 [IDE mode] + 8c09 8 Series/C220 Series Chipset Family 2-port SATA Controller 2 [IDE mode] + 8c0e 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c0f 8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode] + 8c10 8 Series/C220 Series Chipset Family PCI Express Root Port #1 + 103c 1998 EliteDesk 800 G1 + 1043 8534 ASUS H81I-PLUS + 17aa 220e ThinkPad T440p + 17aa 3098 ThinkCentre E73 + 8c11 8 Series/C220 Series Chipset Family PCI Express Root Port #1 + 8c12 8 Series/C220 Series Chipset Family PCI Express Root Port #2 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 8c13 8 Series/C220 Series Chipset Family PCI Express Root Port #2 + 8c14 8 Series/C220 Series Chipset Family PCI Express Root Port #3 + 8c15 8 Series/C220 Series Chipset Family PCI Express Root Port #3 + 8c16 8 Series/C220 Series Chipset Family PCI Express Root Port #4 + 8c17 8 Series/C220 Series Chipset Family PCI Express Root Port #4 + 8c18 8 Series/C220 Series Chipset Family PCI Express Root Port #5 + 8c19 8 Series/C220 Series Chipset Family PCI Express Root Port #5 + 8c1a 8 Series/C220 Series Chipset Family PCI Express Root Port #6 + 17aa 3098 ThinkCentre E73 + 8c1b 8 Series/C220 Series Chipset Family PCI Express Root Port #6 + 8c1c 8 Series/C220 Series Chipset Family PCI Express Root Port #7 + 8c1d 8 Series/C220 Series Chipset Family PCI Express Root Port #7 + 8c1e 8 Series/C220 Series Chipset Family PCI Express Root Port #8 + 8c1f 8 Series/C220 Series Chipset Family PCI Express Root Port #8 + 8c20 8 Series/C220 Series Chipset High Definition Audio Controller + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 309f ThinkCentre M83 + 8c21 8 Series/C220 Series Chipset High Definition Audio Controller + 8c22 8 Series/C220 Series Chipset Family SMBus Controller + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 8c23 8 Series Chipset Family CHAP Counters + 8c24 8 Series Chipset Family Thermal Management Controller + 8c26 8 Series/C220 Series Chipset Family USB EHCI #1 + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 2210 ThinkPad T540p + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 2210 17aa ThinkPad T540p + 8c2d 8 Series/C220 Series Chipset Family USB EHCI #2 + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 8c31 8 Series/C220 Series Chipset Family USB xHCI + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 8c33 8 Series/C220 Series Chipset Family LAN Controller + 8c34 8 Series/C220 Series Chipset Family NAND Controller + 8c3a 8 Series/C220 Series Chipset Family MEI Controller #1 + 1028 05d7 Alienware X51 R2 + 103c 1909 ZBook 15 + 103c 1998 EliteDesk 800 G1 + 17aa 220e ThinkPad T440p + 17aa 3098 ThinkCentre E73 + 17aa 309f ThinkCentre M83 + 8c3b 8 Series/C220 Series Chipset Family MEI Controller #2 + 8c3c 8 Series/C220 Series Chipset Family IDE-r Controller + 8c3d 8 Series/C220 Series Chipset Family KT Controller + 103c 1998 EliteDesk 800 G1 + 8c40 8 Series/C220 Series Chipset Family LPC Controller + 8c41 8 Series Chipset Family Mobile Super SKU LPC Controller + 8c42 8 Series/C220 Series Chipset Family Desktop Super SKU LPC Controller + 8c43 8 Series/C220 Series Chipset Family LPC Controller + 8c44 Z87 Express LPC Controller + 8c45 8 Series/C220 Series Chipset Family LPC Controller + 8c46 Z85 Express LPC Controller + 8c47 8 Series/C220 Series Chipset Family LPC Controller + 8c48 8 Series/C220 Series Chipset Family LPC Controller + 8c49 HM86 Express LPC Controller + 8c4a H87 Express LPC Controller + 1028 05d7 Alienware X51 R2 + 8c4b HM87 Express LPC Controller + 8c4c Q85 Express LPC Controller + 17aa 309f ThinkCentre M83 + 8c4d 8 Series/C220 Series Chipset Family LPC Controller + 8c4e Q87 Express LPC Controller + 103c 1998 EliteDesk 800 G1 + 8c4f QM87 Express LPC Controller + 103c 1909 ZBook 15 + 17aa 220e ThinkPad T440p + 8c50 B85 Express LPC Controller + 8c51 8 Series/C220 Series Chipset Family LPC Controller + 8c52 C222 Series Chipset Family Server Essential SKU LPC Controller + 8c53 8 Series/C220 Series Chipset Family LPC Controller + 8c54 C224 Series Chipset Family Server Standard SKU LPC Controller + 8c55 8 Series/C220 Series Chipset Family LPC Controller + 8c56 C226 Series Chipset Family Server Advanced SKU LPC Controller + 8c57 8 Series/C220 Series Chipset Family LPC Controller + 8c58 8 Series/C220 Series Chipset Family WS SKU LPC Controller + 8c59 8 Series/C220 Series Chipset Family LPC Controller + 8c5a 8 Series/C220 Series Chipset Family LPC Controller + 8c5b 8 Series/C220 Series Chipset Family LPC Controller + 8c5c H81 Express LPC Controller + 17aa 3098 ThinkCentre E73 + 8c5d 8 Series/C220 Series Chipset Family LPC Controller + 8c5e 8 Series/C220 Series Chipset Family LPC Controller + 8c5f 8 Series/C220 Series Chipset Family LPC Controller + 8c80 9 Series Chipset Family SATA Controller [IDE Mode] + 8c81 9 Series Chipset Family SATA Controller [IDE Mode] + 8c82 9 Series Chipset Family SATA Controller [AHCI Mode] + 8c83 9 Series Chipset Family SATA Controller [AHCI Mode] + 8c84 9 Series Chipset Family SATA Controller [RAID Mode] + 8c85 9 Series Chipset Family SATA Controller [RAID Mode] + 8c86 9 Series Chipset Family SATA Controller [RAID Mode] + 8c87 9 Series Chipset Family SATA Controller [RAID Mode] + 8c88 9 Series Chipset Family SATA Controller [IDE Mode] + 8c89 9 Series Chipset Family SATA Controller [IDE Mode] + 8c8e 9 Series Chipset Family SATA Controller [RAID Mode] + 8c8f 9 Series Chipset Family SATA Controller [RAID Mode] + 8c90 9 Series Chipset Family PCI Express Root Port 1 + 8c92 9 Series Chipset Family PCI Express Root Port 2 + 8c94 9 Series Chipset Family PCI Express Root Port 3 + 8c96 9 Series Chipset Family PCI Express Root Port 4 + 8c98 9 Series Chipset Family PCI Express Root Port 5 + 8c9a 9 Series Chipset Family PCI Express Root Port 6 + 8c9c 9 Series Chipset Family PCI Express Root Port 7 + 8c9e 9 Series Chipset Family PCI Express Root Port 8 + 8ca0 9 Series Chipset Family HD Audio Controller + 8ca2 9 Series Chipset Family SMBus Controller + 8ca4 9 Series Chipset Family Thermal Controller + 8ca6 9 Series Chipset Family USB EHCI Controller #1 + 8cad 9 Series Chipset Family USB EHCI Controller #2 + 8cb1 9 Series Chipset Family USB xHCI Controller + 8cb3 9 Series Chipset Family LAN Controller + 8cba 9 Series Chipset Family ME Interface #1 + 8cbb 9 Series Chipset Family ME Interface #2 + 8cbc 9 Series Chipset Family IDE-R Controller + 8cbd 9 Series Chipset Family KT Controller + 8cc1 9 Series Chipset Family LPC Controller + 8cc2 9 Series Chipset Family LPC Controller + 8cc3 HM97 Chipset LPC Controller + 8cc4 Z97 Chipset LPC Controller + 8cc5 QM97 Chipset LPC Controller + 8cc6 H97 Chipset LPC Controller + 8d00 C610/X99 series chipset 4-port SATA Controller [IDE mode] + 8d02 C610/X99 series chipset 6-Port SATA Controller [AHCI mode] + 8d04 C610/X99 series chipset SATA Controller [RAID mode] + 8d06 C610/X99 series chipset SATA Controller [RAID mode] + 17aa 1031 ThinkServer RAID 110i + 8d08 C610/X99 series chipset 2-port SATA Controller [IDE mode] + 8d0e C610/X99 series chipset SATA Controller [RAID mode] + 8d10 C610/X99 series chipset PCI Express Root Port #1 + 8d11 C610/X99 series chipset PCI Express Root Port #1 + 8d12 C610/X99 series chipset PCI Express Root Port #2 + 8d13 C610/X99 series chipset PCI Express Root Port #2 + 8d14 C610/X99 series chipset PCI Express Root Port #3 + 8d15 C610/X99 series chipset PCI Express Root Port #3 + 8d16 C610/X99 series chipset PCI Express Root Port #4 + 8d17 C610/X99 series chipset PCI Express Root Port #4 + 8d18 C610/X99 series chipset PCI Express Root Port #5 + 8d19 C610/X99 series chipset PCI Express Root Port #5 + 8d1a C610/X99 series chipset PCI Express Root Port #6 + 8d1b C610/X99 series chipset PCI Express Root Port #6 + 8d1c C610/X99 series chipset PCI Express Root Port #7 + 8d1d C610/X99 series chipset PCI Express Root Port #7 + 8d1e C610/X99 series chipset PCI Express Root Port #8 + 8d1f C610/X99 series chipset PCI Express Root Port #8 + 8d20 C610/X99 series chipset HD Audio Controller + 8d21 C610/X99 series chipset HD Audio Controller + 8d22 C610/X99 series chipset SMBus Controller + 15d9 0832 X10SRL-F + 8d24 C610/X99 series chipset Thermal Subsystem + 8d26 C610/X99 series chipset USB Enhanced Host Controller #1 + 15d9 0832 X10SRL-F + 8d2d C610/X99 series chipset USB Enhanced Host Controller #2 + 15d9 0832 X10SRL-F + 8d31 C610/X99 series chipset USB xHCI Host Controller + 15d9 0832 X10SRL-F + 8d33 C610/X99 series chipset LAN Controller + 8d34 C610/X99 series chipset NAND Controller + 8d3a C610/X99 series chipset MEI Controller #1 + 15d9 0832 X10SRL-F + 8d3b C610/X99 series chipset MEI Controller #2 + 15d9 0832 X10SRL-F + 8d3c C610/X99 series chipset IDE-r Controller + 8d3d C610/X99 series chipset KT Controller + 8d40 C610/X99 series chipset LPC Controller + 8d41 C610/X99 series chipset LPC Controller + 8d42 C610/X99 series chipset LPC Controller + 8d43 C610/X99 series chipset LPC Controller + 8d44 C610/X99 series chipset LPC Controller + 15d9 0832 X10SRL-F + 8d45 C610/X99 series chipset LPC Controller + 8d46 C610/X99 series chipset LPC Controller + 8d47 C610/X99 series chipset LPC Controller + 8d48 C610/X99 series chipset LPC Controller + 8d49 C610/X99 series chipset LPC Controller + 8d4a C610/X99 series chipset LPC Controller + 8d4b C610/X99 series chipset LPC Controller + 8d4c C610/X99 series chipset LPC Controller + 8d4d C610/X99 series chipset LPC Controller + 8d4e C610/X99 series chipset LPC Controller + 8d4f C610/X99 series chipset LPC Controller + 8d60 C610/X99 series chipset sSATA Controller [IDE mode] + 8d62 C610/X99 series chipset sSATA Controller [AHCI mode] + 8d64 C610/X99 series chipset sSATA Controller [RAID mode] + 8d66 C610/X99 series chipset sSATA Controller [RAID mode] + 8d68 C610/X99 series chipset sSATA Controller [IDE mode] + 8d6e C610/X99 series chipset sSATA Controller [RAID mode] + 8d7c C610/X99 series chipset SPSR + 15d9 0832 X10SRL-F + 8d7d C610/X99 series chipset MS SMBus 0 + 8d7e C610/X99 series chipset MS SMBus 1 + 8d7f C610/X99 series chipset MS SMBus 2 + 9000 IXP2000 Family Network Processor + 9001 IXP2400 Network Processor + 9002 IXP2300 Network Processor + 9004 IXP2800 Network Processor + 9621 Integrated RAID + 9622 Integrated RAID + 9641 Integrated RAID + 96a1 Integrated RAID + 9a01 11th Gen Core Processor PCIe Controller #1 + 9a03 TigerLake-LP Dynamic Tuning Processor Participant + 9a09 11th Gen Core Processor PCIe Controller + 9a0b Volume Management Device NVMe RAID Controller + 9a0d Tigerlake Telemetry Aggregator Driver + 9a0f 11th Gen Core Processor PCIe Controller #0 + 9a11 GNA Scoring Accelerator module + 9a13 Tiger Lake-LP Thunderbolt 4 USB Controller + 9a14 11th Gen Core Processor Host Bridge/DRAM Registers + 9a17 Tiger Lake-H Thunderbolt 4 USB Controller + 9a1b Tiger Lake-LP Thunderbolt 4 NHI #0 + 9a1d Tiger Lake-LP Thunderbolt 4 NHI #1 + 9a1f Tiger Lake-H Thunderbolt 4 NHI #0 + 9a21 Tiger Lake-H Thunderbolt 4 NHI #1 + 9a23 Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0 + 9a25 Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1 + 9a26 11th Gen Core Processor Host Bridge/DRAM Registers + 9a27 Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2 + 9a29 Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3 + 9a2b Tiger Lake-H Thunderbolt 4 PCI Express Root Port #0 + 9a2d Tiger Lake-H Thunderbolt 4 PCI Express Root Port #1 + 9a2f Tiger Lake-H Thunderbolt 4 PCI Express Root Port #2 + 9a31 Tiger Lake-H Thunderbolt 4 PCI Express Root Port #3 + 9a33 Tiger Lake Trace Hub + 9a36 11th Gen Core Processor Host Bridge/DRAM Registers + 9a49 TigerLake-LP GT2 [Iris Xe Graphics] + 9a60 TigerLake-H GT1 [UHD Graphics] + 9a68 TigerLake-H GT1 [UHD Graphics] + 9b33 Comet Lake-S 6c Host Bridge/DRAM Controller + 9b41 CometLake-U GT2 [UHD Graphics] + 1028 09bd Latitude 7310 + 1028 09be Latitude 7410 + 9b44 10th Gen Core Processor Host Bridge/DRAM Registers + 9b53 Comet Lake-S 6c Host Bridge/DRAM Controller + 9b54 10th Gen Core Processor Host Bridge/DRAM Registers + 9b61 Comet Lake-U v1 4c Host Bridge/DRAM Controller + 1028 09be Latitude 7410 + 9b63 10th Gen Core Processor Host Bridge/DRAM Registers + 9b64 10th Gen Core Processor Host Bridge/DRAM Registers + 9ba8 CometLake-S GT1 [UHD Graphics 610] + 9bc4 CometLake-H GT2 [UHD Graphics] + 9bc5 CometLake-S GT2 [UHD Graphics 630] + 9bc8 CometLake-S GT2 [UHD Graphics 630] + 9bca Comet Lake UHD Graphics + 9c00 8 Series SATA Controller 1 [IDE mode] + 9c01 8 Series SATA Controller 1 [IDE mode] + 9c02 8 Series SATA Controller 1 [AHCI mode] + 9c03 8 Series SATA Controller 1 [AHCI mode] + 17aa 2214 ThinkPad X240 + 9c04 8 Series SATA Controller 1 [RAID mode] + 9c05 8 Series SATA Controller 1 [RAID mode] + 9c06 8 Series SATA Controller 1 [RAID mode] + 9c07 8 Series SATA Controller 1 [RAID mode] + 9c08 8 Series SATA Controller 2 [IDE mode] + 9c09 8 Series SATA Controller 2 [IDE mode] + 9c0a 8 Series SATA Controller [Reserved] + 9c0b 8 Series SATA Controller [Reserved] + 9c0c 8 Series SATA Controller [Reserved] + 9c0d 8 Series SATA Controller [Reserved] + 9c0e 8 Series SATA Controller 1 [RAID mode] + 9c0f 8 Series SATA Controller 1 [RAID mode] + 9c10 8 Series PCI Express Root Port 1 + 9c11 8 Series PCI Express Root Port 1 + 9c12 8 Series PCI Express Root Port 2 + 9c13 8 Series PCI Express Root Port 2 + 9c14 8 Series PCI Express Root Port 3 + 9c15 8 Series PCI Express Root Port 3 + 9c16 8 Series PCI Express Root Port 4 + 9c17 8 Series PCI Express Root Port 4 + 9c18 8 Series PCI Express Root Port 5 + 9c19 8 Series PCI Express Root Port 5 + 9c1a 8 Series PCI Express Root Port 6 + 9c1b 8 Series PCI Express Root Port 6 + 9c1c 8 Series PCI Express Root Port 7 + 9c1d 8 Series PCI Express Root Port 7 + 9c1e 8 Series PCI Express Root Port 8 + 9c1f 8 Series PCI Express Root Port 8 + 9c20 8 Series HD Audio Controller + 17aa 2214 ThinkPad X240 + 9c21 8 Series HD Audio Controller + 9c22 8 Series SMBus Controller + 17aa 2214 ThinkPad X240 + 9c23 8 Series CHAP Counters + 9c24 8 Series Thermal + 9c26 8 Series USB EHCI #1 + 17aa 220c T440s + 17aa 2214 ThinkPad X240 + 9c2d 8 Series USB EHCI #2 + 9c31 8 Series USB xHCI HC + 17aa 2214 ThinkPad X240 + 8086 7270 Apple MacBookAir6,2 / MacBookPro11,1 + 9c35 8 Series SDIO Controller + 9c36 8 Series Audio DSP Controller + 9c3a 8 Series HECI #0 + 17aa 2214 ThinkPad X240 + 9c3b 8 Series HECI #1 + 9c3c 8 Series HECI IDER + 9c3d 8 Series HECI KT + 9c40 8 Series LPC Controller + 9c41 8 Series LPC Controller + 9c42 8 Series LPC Controller + 9c43 8 Series LPC Controller + 17aa 2214 ThinkPad X240 + 9c44 8 Series LPC Controller + 9c45 8 Series LPC Controller + 9c46 8 Series LPC Controller + 9c47 8 Series LPC Controller + 9c60 8 Series Low Power Sub-System DMA + 9c61 8 Series I2C Controller #0 + 9c62 8 Series I2C Controller #1 + 9c63 8 Series UART Controller #0 + 9c64 8 Series UART Controller #1 + 9c65 8 Series SPI Controller #0 + 9c66 8 Series SPI Controller #1 + 9c83 Wildcat Point-LP SATA Controller [AHCI Mode] + 9c85 Wildcat Point-LP SATA Controller [RAID Mode] + 9c87 Wildcat Point-LP SATA Controller [RAID Mode] + 9c8f Wildcat Point-LP SATA Controller [RAID Mode] + 9c90 Wildcat Point-LP PCI Express Root Port #1 + 9c92 Wildcat Point-LP PCI Express Root Port #2 + 9c94 Wildcat Point-LP PCI Express Root Port #3 + 9c96 Wildcat Point-LP PCI Express Root Port #4 + 9c98 Wildcat Point-LP PCI Express Root Port #5 + 9c9a Wildcat Point-LP PCI Express Root Port #6 + 9ca0 Wildcat Point-LP High Definition Audio Controller + 9ca2 Wildcat Point-LP SMBus Controller + 9ca4 Wildcat Point-LP Thermal Management Controller + 9ca6 Wildcat Point-LP USB EHCI Controller + 9cb1 Wildcat Point-LP USB xHCI Controller + 9cb5 Wildcat Point-LP Secure Digital IO Controller + 9cb6 Wildcat Point-LP Smart Sound Technology Controller + 9cba Wildcat Point-LP MEI Controller #1 + 9cbb Wildcat Point-LP MEI Controller #2 + 9cbc Wildcat Point-LP IDE-r Controller + 9cbd Wildcat Point-LP KT Controller + 9cc1 Wildcat Point-LP LPC Controller + 9cc2 Wildcat Point-LP LPC Controller + 9cc3 Wildcat Point-LP LPC Controller + 9cc5 Wildcat Point-LP LPC Controller + 9cc6 Wildcat Point-LP LPC Controller + 9cc7 Wildcat Point-LP LPC Controller + 9cc9 Wildcat Point-LP LPC Controller + 9ce0 Wildcat Point-LP Serial IO DMA Controller + 9ce1 Wildcat Point-LP Serial IO I2C Controller #0 + 9ce2 Wildcat Point-LP Serial IO I2C Controller #1 + 9ce3 Wildcat Point-LP Serial IO UART Controller #0 + 9ce4 Wildcat Point-LP Serial IO UART Controller #1 + 9ce5 Wildcat Point-LP Serial IO GSPI Controller #0 + 9ce6 Wildcat Point-LP Serial IO GSPI Controller #1 + 9d03 Sunrise Point-LP SATA Controller [AHCI mode] + 1025 115f Acer Aspire E5-575G + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d10 Sunrise Point-LP PCI Express Root Port #1 + 9d11 Sunrise Point-LP PCI Express Root Port #2 + 9d12 Sunrise Point-LP PCI Express Root Port #3 + 9d13 Sunrise Point-LP PCI Express Root Port #4 + 9d14 Sunrise Point-LP PCI Express Root Port #5 + 17aa 382a B51-80 Laptop + 9d15 Sunrise Point-LP PCI Express Root Port #6 + 17aa 382a B51-80 Laptop + 9d16 Sunrise Point-LP PCI Express Root Port #7 + 9d17 Sunrise Point-LP PCI Express Root Port #8 + 9d18 Sunrise Point-LP PCI Express Root Port #9 + 17aa 2247 ThinkPad T570 + 17aa 382a B51-80 Laptop + 9d19 Sunrise Point-LP PCI Express Root Port #10 + 9d1a Sunrise Point-LP PCI Express Root Port #11 + 9d21 Sunrise Point-LP PMC + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d23 Sunrise Point-LP SMBus + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d27 Sunrise Point-LP Serial IO UART Controller #0 + 9d28 Sunrise Point-LP Serial IO UART Controller #1 + 9d29 Sunrise Point-LP Serial IO SPI Controller #0 + 9d2a Sunrise Point-LP Serial IO SPI Controller #1 + 9d2d Sunrise Point-LP Secure Digital IO Controller + 9d2f Sunrise Point-LP USB 3.0 xHCI Controller + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d31 Sunrise Point-LP Thermal subsystem + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d32 CSI-2 Host Controller + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 9d35 Sunrise Point-LP Integrated Sensor Hub + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 9d3a Sunrise Point-LP CSME HECI #1 + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 17aa 382a B51-80 Laptop + 9d3d Sunrise Point-LP Active Management Technology - SOL + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 9d3e iTouch Controller + 9d43 Sunrise Point-LP LPC Controller + 17aa 382a B51-80 Laptop + 9d46 LPC/eSPI Controller + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 9d48 Sunrise Point-LP LPC Controller + 1028 06dc Latitude E7470 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 9d4e Sunrise Point LPC Controller/eSPI Controller + 17aa 225d ThinkPad T480 + 9d50 Sunrise Point LPC Controller + 9d56 Sunrise Point-LP LPC Controller + 9d58 Sunrise Point-LP LPC Controller + 1025 115f Acer Aspire E5-575G + 17aa 2247 ThinkPad T570 + 17aa 224f ThinkPad X1 Carbon 5th Gen + 9d60 Sunrise Point-LP Serial IO I2C Controller #0 + 1025 115f Acer Aspire E5-575G + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 225d ThinkPad T480 + 8086 9d60 100 Series PCH/Sunrise Point PCH I2C0 [Skylake/Kaby Lake LPSS I2C] + 9d61 Sunrise Point-LP Serial IO I2C Controller #1 + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 9d62 Sunrise Point-LP Serial IO I2C Controller #2 + 1028 06d6 Latitude 7275 tablet + 1028 06e6 Latitude 11 5175 2-in-1 + 9d63 Sunrise Point-LP Serial IO I2C Controller #3 + 9d64 Sunrise Point-LP Serial IO I2C Controller #4 + 9d65 Sunrise Point-LP Serial IO I2C Controller #5 + 9d66 Sunrise Point-LP Serial IO UART Controller #2 + 9d70 Sunrise Point-LP HD Audio + 1028 06d6 Latitude 7275 tablet + 1028 06dc Latitude E7470 + 1028 06e6 Latitude 11 5175 2-in-1 + 1028 06f3 Latitude 3570 + 103c 8079 EliteBook 840 G3 + 17aa 2247 ThinkPad T570 + 17aa 382a B51-80 Laptop + 9d71 Sunrise Point-LP HD Audio + 1025 1094 Acer Aspire E5-575G + 17aa 224f ThinkPad X1 Carbon 5th Gen + 17aa 225d ThinkPad T480 + 9d84 Cannon Point-LP LPC Controller + 1028 089e Inspiron 5482 + 9da3 Cannon Point-LP SMBus Controller + 9da4 Cannon Point-LP SPI Controller + 9da8 Cannon Point-LP Serial IO UART Controller #2 + 9daa Cannon Point-LP Serial IO SPI Controller + 9dab Cannon Point-LP Serial IO SPI Controller + 9db0 Cannon Point-LP PCI Express Root Port #9 + 9db1 Cannon Point-LP PCI Express Root Port #10 + 9db2 Cannon Point-LP PCI Express Root Port #1 + 9db4 Cannon Point-LP PCI Express Root Port #13 + 1028 089e Inspiron 5482 + 9db6 Cannon Point-LP PCI Express Root Port #15 + 9db8 Cannon Point-LP PCI Express Root Port #1 + 9dbc Cannon Point-LP PCI Express Root Port #5 + 9dbe Cannon Point-LP PCI Express Root Port #7 + 9dbf Cannon Point PCI Express Root Port #8 + 9dc4 Cannon Point-LP SD Host Controller + 9dc5 Cannon Point-LP Serial IO I2C Host Controller + 9dc8 Cannon Point-LP High Definition Audio Controller + 1028 089e Inspiron 5482 + 9dd3 Cannon Point-LP SATA Controller [AHCI Mode] + 9de0 Cannon Point-LP MEI Controller #1 + 9de3 Cannon Point-LP Keyboard and Text (KT) Redirection + 9de8 Cannon Point-LP Serial IO I2C Controller #0 + 1028 089e Inspiron 5482 + 9de9 Cannon Point-LP Serial IO I2C Controller #1 + 1028 089e Inspiron 5482 + 9ded Cannon Point-LP USB 3.1 xHCI Controller + 9def Cannon Point-LP Shared SRAM + 9df0 Cannon Point-LP CNVi [Wireless-AC] + 9df5 BayHubTech Integrated SD controller + 9df9 Cannon Point-LP Thermal Controller + 9dfc Cannon Point-LP Integrated Sensor Hub + a000 Atom Processor D4xx/D5xx/N4xx/N5xx DMI Bridge + 1458 5000 GA-D525TUD + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + a001 Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller + 1458 d000 GA-D525TUD + 8086 4f4d DeskTop Board D510MO + 8086 544b Desktop Board D425KT + a002 Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller + a003 Atom Processor D4xx/D5xx/N4xx/N5xx CHAPS counter + a010 Atom Processor D4xx/D5xx/N4xx/N5xx DMI Bridge + 1043 83ac Eee PC 1015PX + 144d c072 Notebook N150P + a011 Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller + 1043 83ac Eee PC 1015PX + 144d c072 Notebook N150P + a012 Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller + 1043 83ac Eee PC 1015PX + 144d c072 Notebook N150P + a013 Atom Processor D4xx/D5xx/N4xx/N5xx CHAPS counter + a082 Tiger Lake-LP LPC Controller + a0a3 Tiger Lake-LP SMBus Controller + a0a4 Tiger Lake-LP SPI Controller + a0a6 Tiger Lake-LP Trace Hub + a0a8 Tiger Lake-LP Serial IO UART Controller #0 + a0a9 Tiger Lake-LP Serial IO UART Controller #1 + a0ab Tiger Lake-LP Serial IO SPI Controller #1 + a0b0 Tiger Lake-LP PCI Express Root Port #9 + a0bd Tigerlake PCH-LP PCI Express Root Port #6 + a0bf Tiger Lake-LP PCI Express Root Port #8 + a0c5 Tiger Lake-LP Serial IO I2C Controller #4 + a0c6 Tiger Lake-LP Serial IO I2C Controller #5 + a0c8 Tiger Lake-LP Smart Sound Technology Audio Controller + a0e0 Tiger Lake-LP Management Engine Interface + a0e3 Tiger Lake-LP Active Management Technology - SOL + a0e8 Tiger Lake-LP Serial IO I2C Controller #0 + a0e9 Tiger Lake-LP Serial IO I2C Controller #1 + a0ea Tiger Lake-LP Serial IO I2C Controller #2 + a0eb Tiger Lake-LP Serial IO I2C Controller #3 + a0ed Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller + a0ef Tiger Lake-LP Shared SRAM + a0f0 Wi-Fi 6 AX201 + a0fc Tiger Lake-LP Integrated Sensor Hub + a102 Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode] + a103 HM170/QM170 Chipset SATA Controller [AHCI Mode] + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a105 Sunrise Point-H SATA Controller [RAID mode] + a106 Q170/H170/Z170/CM236 Chipset SATA Controller [RAID Mode] + a107 HM170/QM170 Chipset SATA Controller [RAID Mode] + a10f Sunrise Point-H SATA Controller [RAID mode] + a110 100 Series/C230 Series Chipset Family PCI Express Root Port #1 + a111 100 Series/C230 Series Chipset Family PCI Express Root Port #2 + a112 100 Series/C230 Series Chipset Family PCI Express Root Port #3 + a113 100 Series/C230 Series Chipset Family PCI Express Root Port #4 + a114 100 Series/C230 Series Chipset Family PCI Express Root Port #5 + a115 100 Series/C230 Series Chipset Family PCI Express Root Port #6 + a116 100 Series/C230 Series Chipset Family PCI Express Root Port #7 + a117 100 Series/C230 Series Chipset Family PCI Express Root Port #8 + a118 100 Series/C230 Series Chipset Family PCI Express Root Port #9 + a119 100 Series/C230 Series Chipset Family PCI Express Root Port #10 + a11a 100 Series/C230 Series Chipset Family PCI Express Root Port #11 + a11b 100 Series/C230 Series Chipset Family PCI Express Root Port #12 + a11c 100 Series/C230 Series Chipset Family PCI Express Root Port #13 + a11d 100 Series/C230 Series Chipset Family PCI Express Root Port #14 + a11e 100 Series/C230 Series Chipset Family PCI Express Root Port #15 + a11f 100 Series/C230 Series Chipset Family PCI Express Root Port #16 + a120 100 Series/C230 Series Chipset Family P2SB + a121 100 Series/C230 Series Chipset Family Power Management Controller + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a122 Sunrise Point-H cAVS + a123 100 Series/C230 Series Chipset Family SMBus + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a124 100 Series/C230 Series Chipset Family SPI Controller + a125 100 Series/C230 Series Chipset Family Gigabit Ethernet Controller + a126 100 Series/C230 Series Chipset Family Trace Hub + a127 100 Series/C230 Series Chipset Family Serial IO UART #0 + a128 100 Series/C230 Series Chipset Family Serial IO UART #1 + a129 100 Series/C230 Series Chipset Family Serial IO GSPI #0 + a12a 100 Series/C230 Series Chipset Family Serial IO GSPI #1 + a12f 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a130 100 Series/C230 Series Chipset Family USB Device Controller (OTG) + a131 100 Series/C230 Series Chipset Family Thermal Subsystem + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a133 Sunrise Point-H Northpeak ACPI Function + a135 100 Series/C230 Series Chipset Family Integrated Sensor Hub + a13a 100 Series/C230 Series Chipset Family MEI Controller #1 + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a13b 100 Series/C230 Series Chipset Family MEI Controller #2 + a13c 100 Series/C230 Series Chipset Family IDE Redirection + a13d 100 Series/C230 Series Chipset Family KT Redirection + a13e 100 Series/C230 Series Chipset Family MEI Controller #3 + a140 Sunrise Point-H LPC Controller + a141 Sunrise Point-H LPC Controller + a142 Sunrise Point-H LPC Controller + a143 H110 Chipset LPC/eSPI Controller + a144 H170 Chipset LPC/eSPI Controller + a145 Z170 Chipset LPC/eSPI Controller + a146 Q170 Chipset LPC/eSPI Controller + a147 Q150 Chipset LPC/eSPI Controller + a148 B150 Chipset LPC/eSPI Controller + a149 C236 Chipset LPC/eSPI Controller + a14a C232 Chipset LPC/eSPI Controller + a14b Sunrise Point-H LPC Controller + a14c Sunrise Point-H LPC Controller + a14d QM170 Chipset LPC/eSPI Controller + a14e HM170 Chipset LPC/eSPI Controller + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a14f Sunrise Point-H LPC Controller + a150 CM236 Chipset LPC/eSPI Controller + a151 Sunrise Point-H LPC Controller + a152 HM175 Chipset LPC/eSPI Controller + a153 QM175 Chipset LPC/eSPI Controller + a154 CM238 Chipset LPC/eSPI Controller + a155 Sunrise Point-H LPC Controller + a156 Sunrise Point-H LPC Controller + a157 Sunrise Point-H LPC Controller + a158 Sunrise Point-H LPC Controller + a159 Sunrise Point-H LPC Controller + a15a Sunrise Point-H LPC Controller + a15b Sunrise Point-H LPC Controller + a15c Sunrise Point-H LPC Controller + a15d Sunrise Point-H LPC Controller + a15e Sunrise Point-H LPC Controller + a15f Sunrise Point-H LPC Controller + a160 100 Series/C230 Series Chipset Family Serial IO I2C Controller #0 + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a161 100 Series/C230 Series Chipset Family Serial IO I2C Controller #1 + 1028 06e4 XPS 15 9550 + a162 100 Series/C230 Series Chipset Family Serial IO I2C Controller #2 + a163 100 Series/C230 Series Chipset Family Serial IO I2C Controller #3 + a166 100 Series/C230 Series Chipset Family Serial IO UART Controller #2 + a167 100 Series/C230 Series Chipset Family PCI Express Root Port #17 + a168 100 Series/C230 Series Chipset Family PCI Express Root Port #18 + a169 100 Series/C230 Series Chipset Family PCI Express Root Port #19 + a16a 100 Series/C230 Series Chipset Family PCI Express Root Port #20 + a170 100 Series/C230 Series Chipset Family HD Audio Controller + 1028 06e4 XPS 15 9550 + 103c 825b OMEN-17-w001nv + a171 CM238 HD Audio Controller + a182 C620 Series Chipset Family SATA Controller [AHCI mode] + a186 C620 Series Chipset Family SATA Controller [RAID mode] + a190 C620 Series Chipset Family PCI Express Root Port #1 + a191 C620 Series Chipset Family PCI Express Root Port #2 + a192 C620 Series Chipset Family PCI Express Root Port #3 + a193 C620 Series Chipset Family PCI Express Root Port #4 + a194 C620 Series Chipset Family PCI Express Root Port #5 + a195 C620 Series Chipset Family PCI Express Root Port #6 + a196 C620 Series Chipset Family PCI Express Root Port #7 + a197 C620 Series Chipset Family PCI Express Root Port #8 + a198 C620 Series Chipset Family PCI Express Root Port #9 + a199 C620 Series Chipset Family PCI Express Root Port #10 + a19a C620 Series Chipset Family PCI Express Root Port #11 + a19b C620 Series Chipset Family PCI Express Root Port #12 + a19c C620 Series Chipset Family PCI Express Root Port #13 + a19d C620 Series Chipset Family PCI Express Root Port #14 + a19e C620 Series Chipset Family PCI Express Root Port #15 + a19f C620 Series Chipset Family PCI Express Root Port #16 + a1a0 C620 Series Chipset Family P2SB + a1a1 C620 Series Chipset Family Power Management Controller + 15d9 095d X11SPM-TF + a1a2 C620 Series Chipset Family cAVS + a1a3 C620 Series Chipset Family SMBus + 15d9 095d X11SPM-TF + a1a4 C620 Series Chipset Family SPI Controller + 15d9 095d X11SPM-TF + a1a6 C620 Series Chipset Family Trace Hub + a1af C620 Series Chipset Family USB 3.0 xHCI Controller + 15d9 095d X11SPM-TF + a1b1 C620 Series Chipset Family Thermal Subsystem + 15d9 095d X11SPM-TF + a1ba C620 Series Chipset Family MEI Controller #1 + 15d9 095d X11SPM-TF + a1bb C620 Series Chipset Family MEI Controller #2 + 15d9 095d X11SPM-TF + a1bc C620 Series Chipset Family IDE Redirection + a1bd C620 Series Chipset Family KT Redirection + a1be C620 Series Chipset Family MEI Controller #3 + 15d9 095d X11SPM-TF + a1c1 C621 Series Chipset LPC/eSPI Controller + a1c2 C622 Series Chipset LPC/eSPI Controller + 15d9 095d X11SPM-TF + a1c3 C624 Series Chipset LPC/eSPI Controller + a1c4 C625 Series Chipset LPC/eSPI Controller + a1c5 C626 Series Chipset LPC/eSPI Controller + a1c6 C627 Series Chipset LPC/eSPI Controller + a1c7 C628 Series Chipset LPC/eSPI Controller + a1d2 C620 Series Chipset Family SSATA Controller [AHCI mode] + a1d6 C620 Series Chipset Family SSATA Controller [RAID mode] + a1e7 C620 Series Chipset Family PCI Express Root Port #17 + a1e8 C620 Series Chipset Family PCI Express Root Port #18 + a1e9 C620 Series Chipset Family PCI Express Root Port #19 + a1ea C620 Series Chipset Family PCI Express Root Port #20 + a1ec C620 Series Chipset Family MROM 0 + a1ed C620 Series Chipset Family MROM 1 + a1f8 Lewisburg IE: HECI #1 + a1f9 Lewisburg IE: HECI #2 + a1fa Lewisburg IE: IDE-r + a1fb Lewisburg IE: KT Controller + a1fc Lewisburg IE: HECI #3 + a202 Lewisburg SATA Controller [AHCI mode] + a206 Lewisburg SATA Controller [RAID mode] + a223 Lewisburg SMBus + a224 Lewisburg SPI Controller + a242 Lewisburg LPC or eSPI Controller + a243 Lewisburg LPC or eSPI Controller + a252 Lewisburg SSATA Controller [AHCI mode] + a256 Lewisburg SSATA Controller [RAID mode] + a282 200 Series PCH SATA controller [AHCI mode] + 1462 7a72 H270 PC MATE + a286 200 Series PCH SATA controller [RAID mode] + a290 200 Series PCH PCI Express Root Port #1 + a291 200 Series PCH PCI Express Root Port #2 + a292 200 Series PCH PCI Express Root Port #3 + a293 200 Series PCH PCI Express Root Port #4 + a294 200 Series PCH PCI Express Root Port #5 + 1462 7a72 H270 PC MATE + a295 200 Series PCH PCI Express Root Port #6 + a296 200 Series PCH PCI Express Root Port #7 + 1462 7a72 H270 PC MATE + a297 200 Series PCH PCI Express Root Port #8 + a298 200 Series PCH PCI Express Root Port #9 + 1462 7a72 H270 PC MATE + a299 200 Series PCH PCI Express Root Port #10 + a29a 200 Series PCH PCI Express Root Port #11 + a29b 200 Series PCH PCI Express Root Port #12 + a29c 200 Series PCH PCI Express Root Port #13 + a29d 200 Series PCH PCI Express Root Port #14 + a29e 200 Series PCH PCI Express Root Port #15 + a29f 200 Series PCH PCI Express Root Port #16 + a2a0 200 Series/Z370 Chipset Family P2SB + a2a1 200 Series/Z370 Chipset Family Power Management Controller + 1462 7a72 H270 PC MATE + a2a3 200 Series/Z370 Chipset Family SMBus Controller + 1462 7a72 H270 PC MATE + a2a4 200 Series/Z370 Chipset Family SPI Controller + a2a5 200 Series/Z370 Chipset Family Gigabit Ethernet Controller + a2a6 200 Series/Z370 Chipset Family Trace Hub + a2a7 200 Series/Z370 Chipset Family Serial IO UART Controller #0 + a2a8 200 Series/Z370 Chipset Family Serial IO UART Controller #1 + a2a9 200 Series/Z370 Chipset Family Serial IO SPI Controller #0 + a2aa 200 Series/Z370 Chipset Family Serial IO SPI Controller #1 + a2af 200 Series/Z370 Chipset Family USB 3.0 xHCI Controller + 1462 7a72 H270 PC MATE + a2b1 200 Series PCH Thermal Subsystem + 1462 7a72 H270 PC MATE + a2ba 200 Series PCH CSME HECI #1 + 1462 7a72 H270 PC MATE + a2bb 200 Series PCH CSME HECI #2 + a2c4 200 Series PCH LPC Controller (H270) + 1462 7a72 H270 PC MATE + a2c5 200 Series PCH LPC Controller (Z270) + a2c6 200 Series PCH LPC Controller (Q270) + a2c7 200 Series PCH LPC Controller (Q250) + a2c8 200 Series PCH LPC Controller (B250) + a2c9 Z370 Chipset LPC/eSPI Controller + a2d2 X299 Chipset LPC/eSPI Controller + a2d3 C422 Chipset LPC/eSPI Controller + a2e0 200 Series PCH Serial IO I2C Controller #0 + a2e1 200 Series PCH Serial IO I2C Controller #1 + a2e2 200 Series PCH Serial IO I2C Controller #2 + a2e3 200 Series PCH Serial IO I2C Controller #3 + a2e6 200 Series PCH Serial IO UART Controller #2 + a2e7 200 Series PCH PCI Express Root Port #17 + a2e8 200 Series PCH PCI Express Root Port #18 + a2e9 200 Series PCH PCI Express Root Port #19 + a2ea 200 Series PCH PCI Express Root Port #20 + a2eb 200 Series PCH PCI Express Root Port #21 + a2ec 200 Series PCH PCI Express Root Port #22 + a2ed 200 Series PCH PCI Express Root Port #23 + a2ee 200 Series PCH PCI Express Root Port #24 + a2f0 200 Series PCH HD Audio + 1462 7a72 H270 PC MATE + 1462 fa72 H270 PC MATE + a303 H310 Chipset LPC/eSPI Controller + a304 H370 Chipset LPC/eSPI Controller + 1028 0869 Vostro 3470 + a305 Z390 Chipset LPC/eSPI Controller + a306 Q370 Chipset LPC/eSPI Controller + a309 Cannon Point-LP LPC Controller + a30c QM370 Chipset LPC/eSPI Controller + a30d HM470 Chipset LPC/eSPI Controller + a30e Cannon Lake LPC Controller + a323 Cannon Lake PCH SMBus Controller + 1028 0869 Vostro 3470 + a324 Cannon Lake PCH SPI Controller + 1028 0869 Vostro 3470 + a328 Cannon Lake PCH Serial IO UART Host Controller + a32b Cannon Lake PCH SPI Host Controller + a32c Cannon Lake PCH PCI Express Root Port #21 + a32d Cannon Lake PCH PCI Express Root Port #22 + a32e Cannon Lake PCH PCI Express Root Port #23 + a32f Cannon Lake PCH PCI Express Root Port #24 + a330 Cannon Lake PCH PCI Express Root Port #9 + a331 Cannon Lake PCH PCI Express Root Port #10 + a332 Cannon Lake PCH PCI Express Root Port #11 + a333 Cannon Lake PCH PCI Express Root Port #12 + a334 Cannon Lake PCH PCI Express Root Port #13 + a335 Cannon Lake PCH PCI Express Root Port #14 + a336 Cannon Lake PCH PCI Express Root Port #15 + a337 Cannon Lake PCH PCI Express Root Port #16 + a338 Cannon Lake PCH PCI Express Root Port #1 + a339 Cannon Lake PCH PCI Express Root Port #2 + a33a Cannon Lake PCH PCI Express Root Port #3 + a33b Cannon Lake PCH PCI Express Root Port #4 + a33c Cannon Lake PCH PCI Express Root Port #5 + a33d Cannon Lake PCH PCI Express Root Port #6 + a33e Cannon Lake PCH PCI Express Root Port #7 + a33f Cannon Lake PCH PCI Express Root Port #8 + a340 Cannon Lake PCH PCI Express Root Port #17 + a341 Cannon Lake PCH PCI Express Root Port #18 + a342 Cannon Lake PCH PCI Express Root Port #19 + a343 Cannon Lake PCH PCI Express Root Port #20 + a348 Cannon Lake PCH cAVS + 1028 0869 Vostro 3470 + a352 Cannon Lake PCH SATA AHCI Controller + 1028 0869 Vostro 3470 + a353 Cannon Lake Mobile PCH SATA AHCI Controller + a360 Cannon Lake PCH HECI Controller + 1028 0869 Vostro 3470 + a363 Cannon Lake PCH Active Management Technology - SOL + a364 Cannon Lake PCH HECI Controller #2 + a368 Cannon Lake PCH Serial IO I2C Controller #0 + a369 Cannon Lake PCH Serial IO I2C Controller #1 + a36a Cannon Lake PCH Serial IO I2C Controller #2 + a36b Cannon Lake PCH Serial IO I2C Controller #3 + a36d Cannon Lake PCH USB 3.1 xHCI Host Controller + 1028 0869 Vostro 3470 + a36f Cannon Lake PCH Shared SRAM + a370 Cannon Lake PCH CNVi WiFi + 1a56 1552 Killer(R) Wireless-AC 1550i Wireless Network Adapter (9560NGW) + 8086 0034 Wireless-AC 9560 + a379 Cannon Lake PCH Thermal Controller + 1028 0869 Vostro 3470 + a382 400 Series Chipset Family SATA AHCI Controller + a394 Comet Lake PCI Express Root Port #05 + a397 Comet Lake PCI Express Root Port #08 + a398 Comet Lake PCI Express Root Port 9 + a39a Comet Lake PCI Express Root Port 11 + a3a1 Cannon Lake PCH Power Management Controller + a3a3 Comet Lake PCH-V SMBus Host Controller + a3af Comet Lake PCH-V USB Controller + a3b1 Comet Lake PCH-V Thermal Subsystem + a3ba Comet Lake PCH-V HECI Controller + a3c8 B460 Chipset LPC/eSPI Controller + a3da H410 Chipset LPC/eSPI Controller + a3eb Comet Lake PCI Express Root Port #21 + a3f0 Comet Lake PCH-V cAVS + a620 6400/6402 Advanced Memory Buffer (AMB) + abc0 Omni-Path Fabric Switch Silicon 100 Series + b152 21152 PCI-to-PCI Bridge + 8086 b152 21152 PCI-to-PCI Bridge +# observed, and documented in Intel revision note; new mask of 1011:0026 + b154 21154 PCI-to-PCI Bridge + b555 21555 Non transparent PCI-to-PCI Bridge + 12c7 5005 SS7HD PCI Adaptor Card + 12c7 5006 SS7HDC cPCI Adaptor Card + 12d9 000a PCI VoIP Gateway + 4c53 1050 CT7 mainboard + 4c53 1051 CE7 mainboard + e4bf 1000 CC8-1-BLUES + d130 Core Processor DMI + 15d9 0605 X8SIL + d131 Core Processor DMI + 1028 02da OptiPlex 980 + 15d9 060d C7SIM-Q Motherboard + d132 Core Processor DMI + 1028 040b Latitude E6510 + d133 Core Processor DMI + d134 Core Processor DMI + d135 Core Processor DMI + d136 Core Processor DMI + d137 Core Processor DMI + d138 Core Processor PCI Express Root Port 1 + 1028 02da OptiPlex 980 + 1028 040b Latitude E6510 + 15d9 060d C7SIM-Q Motherboard + d139 Core Processor PCI Express Root Port 2 + d13a Core Processor PCI Express Root Port 3 + d13b Core Processor PCI Express Root Port 4 + d150 Core Processor QPI Link + d151 Core Processor QPI Routing and Protocol Registers + d155 Core Processor System Management Registers + d156 Core Processor Semaphore and Scratchpad Registers + d157 Core Processor System Control and Status Registers + d158 Core Processor Miscellaneous Registers + f1a5 SSD 600P Series +# M.2 22 x 80mm, NVMe + 8086 390a SSDPEKKW256G7 256GB + f1a6 SSD Pro 7600p/760p/E 6100p Series + 8086 390b SSD Pro 7600p/760p/E 6100p Series [NVM Express] + f1a8 SSD 660P Series +8088 Beijing Wangxun Technology Co., Ltd. + 0100 WX1860AL-W Gigabit Ethernet Controller + 0101 WX1860A2 Gigabit Ethernet Controller + 8088 0201 Dual-Port Ethernet Network Adaptor SF200T + 8088 4201 Dual-Port Ethernet Network Adaptor SF200T (WOL) + 8088 8201 Dual-Port Ethernet Network Adaptor SF200T (NCSI) + 8088 c201 Dual-Port Ethernet Network Adaptor SF200T (WOL, NCSI) + 0102 WX1860A2S Gigabit Ethernet Controller + 8088 0210 Dual-Port Ethernet Network Adaptor SF200T-S + 0103 WX1860A4 Gigabit Ethernet Controller + 8088 0401 Qual-Port Ethernet Network Adaptor SF400T + 8088 0440 Qual-Port Ethernet Network Adaptor SF400-OCP + 8088 4103 Quad-Port Ethernet Network Adaptor SF400T (WOL) + 8088 8103 Quad-Port Ethernet Network Adaptor SF400T (NCSI) + 8088 c103 Quad-Port Ethernet Network Adaptor SF400T (WOL, NCSI) + 0104 WX1860A4S Gigabit Ethernet Controller + 8088 0410 Qual-Port Ethernet Network Adaptor SF400T-S + 0105 WX1860AL2 Gigabit Ethernet Controller + 8088 0202 Dual-Port Ethernet Network Adaptor SF200HT + 8088 4202 Dual-Port Ethernet Network Adaptor SF200HT (WOL) + 8088 8202 Dual-Port Ethernet Network Adaptor SF200HT (NCSI) + 8088 c202 Dual-Port Ethernet Network Adaptor SF200HT (WOL, NCSI) + 0106 WX1860AL2S Gigabit Ethernet Controller + 8088 0220 Dual-Port Ethernet Network Adaptor SF200HT-S + 0107 WX1860AL4 Gigabit Ethernet Controller + 8088 0402 Qual-Port Ethernet Network Adaptor SF400HT + 8088 4402 Quad-Port Ethernet Network Adaptor SF400HT (WOL) + 8088 8402 Quad-Port Ethernet Network Adaptor SF400HT (NCSI) + 8088 c402 Quad-Port Ethernet Network Adaptor SF400HT (WOL, NCSI) + 0108 WX1860AL4S Gigabit Ethernet Controller + 8088 0420 Qual-Port Ethernet Network Adaptor SF400HT-S + 0109 WX1860-LC Gigabit Ethernet Controller + 010a WX1860A1 Gigabit Ethernet Controller +# add new device ID + 010b WX1860AL1 Gigabit Ethernet Controller + 8088 0102 Single-Port Ethernet Network Adaptor SF100HT + 8088 4102 Single-Port Ethernet Network Adaptor SF100HT (WOL) + 8088 8102 Single-Port Ethernet Network Adaptor SF100HT (NCSI) + 8088 c102 Single-Port Ethernet Network Adaptor SF100HT (WOL, NCSI) + 0111 WX1860A2 Ethernet Controller Virtual Function + 0113 WX1860A4 Ethernet Controller Virtual Function + 0115 WX1860AL2 Ethernet Controller Virtual Function + 0117 WX1860AL4 Ethernet Controller Virtual Function + 0119 WX1860-LC Gigabit Ethernet Controller Virtual Function + 011a WX1860A1 Gigabit Ethernet Controller Virtual Function + 011b WX1860AL1 Gigabit Ethernet Controller Virtual Function + 1000 Ethernet Controller RP1000 Virtual Function for 10GbE SFP+ + 1001 Ethernet Controller RP1000 for 10GbE SFP+ + 8088 0000 Ethernet Network Adaptor RP1000 for 10GbE SFP+ + 2000 Ethernet Controller RP2000 Virtual Function for 10GbE SFP+ + 2001 Ethernet Controller RP2000 for 10GbE SFP+ + 8088 2000 Ethernet Network Adaptor RP2000 for 10GbE SFP+ +80ee InnoTek Systemberatung GmbH + beef VirtualBox Graphics Adapter + cafe VirtualBox Guest Service +8322 Sodick America Corp. +8384 SigmaTel +8401 TRENDware International Inc. +# nee ScaleMP +8686 SAP + 1010 vSMP Foundation controller [vSMP CTL] + 1011 vSMP Foundation MEX/FLX controller [vSMP CTL] +8800 Trigem Computer Inc. + 2008 Video assistant component +8820 Stryker Corporation + 2724 Mako Front Side Motor Controller [cPCI] +8848 Wuxi Micro Innovation Integrated Circuit Design Co.,Ltd +8866 T-Square Design Inc. +8888 Silicon Magic +8912 TRX +# 8c4a is not Winbond but there is a board misprogrammed +8c4a Winbond + 1980 W89C940 misprogrammed [ne2k] +8e0e Computone Corporation +8e2e KTI + 3000 ET32P2 +9004 Adaptec + 0078 AHA-2940U_CN + 1078 AIC-7810 + 1160 AIC-1160 [Family Fibre Channel Adapter] + 2178 AIC-7821 + 3860 AHA-2930CU + 3b78 AHA-4844W/4844UW + 5075 AIC-755x + 5078 AIC-7850T/7856T [AVA-2902/4/6 / AHA-2910] + 9004 7850 AIC-7850T/7856T [AVA-290x / AHA-2910] + 5175 AIC-755x + 5178 AIC-7851 + 5275 AIC-755x + 5278 AIC-7852 + 5375 AIC-755x + 5378 AIC-7850 + 5475 AIC-755x + 5478 AIC-7850 + 5575 AVA-2930 + 5578 AIC-7855 + 5647 ANA-7711 TCP Offload Engine + 9004 7710 ANA-7711F TCP Offload Engine - Optical + 9004 7711 ANA-7711LP TCP Offload Engine - Copper + 5675 AIC-755x + 5678 AIC-7856 + 5775 AIC-755x + 5778 AIC-7850 + 5800 AIC-5800 + 5900 ANA-5910/5930/5940 ATM155 & 25 LAN Adapter + 5905 ANA-5910A/5930A/5940A ATM Adapter + 6038 AIC-3860 + 6075 AIC-1480 / APA-1480 + 9004 7560 AIC-1480 / APA-1480 Cardbus + 6078 AIC-7860 + 6178 AIC-7861 + 9004 7861 AHA-2940AU Single + 6278 AIC-7860 + 6378 AIC-7860 + 6478 AIC-786x + 6578 AIC-786x + 6678 AIC-786x + 6778 AIC-786x + 6915 ANA620xx/ANA69011A + 9004 0008 ANA69011A/TX 10/100 + 9004 0009 ANA69011A/TX 10/100 + 9004 0010 ANA62022 2-port 10/100 + 9004 0018 ANA62044 4-port 10/100 + 9004 0019 ANA62044 4-port 10/100 + 9004 0020 ANA62022 2-port 10/100 + 9004 0028 ANA69011A/TX 10/100 + 9004 8008 ANA69011A/TX 64 bit 10/100 + 9004 8009 ANA69011A/TX 64 bit 10/100 + 9004 8010 ANA62022 2-port 64 bit 10/100 + 9004 8018 ANA62044 4-port 64 bit 10/100 + 9004 8019 ANA62044 4-port 64 bit 10/100 + 9004 8020 ANA62022 2-port 64 bit 10/100 + 9004 8028 ANA69011A/TX 64 bit 10/100 + 7078 AHA-294x / AIC-7870 + 7178 AIC-7870P/7871 [AHA-2940/W/S76] + 7278 AHA-3940/3940W / AIC-7872 + 7378 AHA-3985 / AIC-7873 + 7478 AHA-2944/2944W / AIC-7874 + 7578 AHA-3944/3944W / AIC-7875 + 7678 AHA-4944W/UW / AIC-7876 + 7710 ANA-7711F Network Accelerator Card (NAC) - Optical + 7711 ANA-7711C Network Accelerator Card (NAC) - Copper + 7778 AIC-787x + 7810 AIC-7810 + 7815 AIC-7815 RAID+Memory Controller IC + 9004 7815 ARO-1130U2 RAID Controller + 9004 7840 AIC-7815 RAID+Memory Controller IC + 7850 AIC-7850 + 7855 AHA-2930 + 7860 AIC-7860 + 7870 AIC-7870 + 7871 AHA-2940 + 7872 AHA-3940 + 7873 AHA-3980 + 7874 AHA-2944 + 7880 AIC-7880P + 7890 AIC-7890 + 7891 AIC-789x + 7892 AIC-789x + 7893 AIC-789x + 7894 AIC-789x + 7895 AHA-2940U/UW / AHA-39xx / AIC-7895 + 9004 7890 AHA-2940U/2940UW Dual AHA-394xAU/AUW/AUWD AIC-7895B + 9004 7891 AHA-2940U/2940UW Dual + 9004 7892 AHA-3940AU/AUW/AUWD/UWD + 9004 7894 AHA-3944AUWD + 9004 7895 AHA-2940U/2940UW Dual AHA-394xAU/AUW/AUWD AIC-7895B + 9004 7896 AHA-2940U/2940UW Dual AHA-394xAU/AUW/AUWD AIC-7895B + 9004 7897 AHA-2940U/2940UW Dual AHA-394xAU/AUW/AUWD AIC-7895B + 7896 AIC-789x + 7897 AIC-789x + 8078 AIC-7880U + 9004 7880 AIC-7880P Ultra/Ultra Wide SCSI Chipset + 8178 AIC-7870P/7881U [AHA-2940U/UW/D/S76] + 9004 7881 AHA-2940UW SCSI Host Adapter + 8278 AHA-3940U/UW/UWD / AIC-7882U + 8378 AHA-3940U/UW / AIC-7883U + 8478 AHA-2944UW / AIC-7884U + 8578 AHA-3944U/UWD / AIC-7885 + 8678 AHA-4944UW / AIC-7886 + 8778 AHA-2940UW Pro / AIC-788x + 9004 7887 2940UW Pro Ultra-Wide SCSI Controller + 8878 AHA-2930UW / AIC-7888 + 9004 7888 AHA-2930UW SCSI Controller + 8b78 ABA-1030 + ec78 AHA-4944W/UW +# Acquired by Microchip Technology +9005 Adaptec + 0010 AHA-2940U2/U2W + 9005 2180 AHA-2940U2 SCSI Controller + 9005 8100 AHA-2940U2B SCSI Controller + 9005 a100 AHA-2940U2B SCSI Controller + 9005 a180 AIC-3860Q [AHA-2940U2W/GE] SCSI Controller + 9005 e100 AHA-2950U2B SCSI Controller + 0011 AHA-2930U2 + 0013 78902 + 9005 0003 AAA-131U2 Array1000 1 Channel RAID Controller + 9005 000f AIC7890_ARO + 001f AHA-2940U2/U2W / 7890/7891 + 9005 000f 2940U2W SCSI Controller + 9005 a180 2940U2W SCSI Controller + 0020 AIC-7890 + 002f AIC-7890 + 0030 AIC-7890 + 003f AIC-7890 + 0050 AHA-3940U2x/395U2x + 9005 f500 AHA-3950U2B + 9005 ffff AHA-3950U2B + 0051 AHA-3950U2D + 9005 b500 AHA-3950U2D + 0053 AIC-7896 SCSI Controller + 9005 ffff AIC-7896 SCSI Controller mainboard implementation + 005f AIC-7896U2/7897U2 + 0080 AIC-7892A U160/m + 0e11 e2a0 Compaq 64-Bit/66MHz Wide Ultra3 SCSI Adapter + 9005 6220 AHA-29160C + 9005 62a0 29160N Ultra160 SCSI Controller + 9005 e220 29160LP Low Profile Ultra160 SCSI Controller + 9005 e2a0 29160 Ultra160 SCSI Controller + 0081 AIC-7892B U160/m + 9005 62a1 19160 Ultra160 SCSI Controller + 0083 AIC-7892D U160/m + 008f AIC-7892P U160/m + 1179 0001 Magnia Z310 + 15d9 9005 Onboard SCSI Host Adapter + 0092 AVC-2010 [VideoH!] + 0093 AVC-2410 [VideoH!] + 00c0 AHA-3960D / AIC-7899A U160/m + 0e11 f620 Compaq 64-Bit/66MHz Dual Channel Wide Ultra3 SCSI Adapter + 9005 f620 AHA-3960D U160/m + 00c1 AIC-7899B U160/m + 00c3 AIC-7899D U160/m + 00c5 RAID subsystem HBA + 1028 00c5 PowerEdge 2400,2500,2550,4400 + 00cf AIC-7899P U160/m + 1028 00ce PowerEdge 1400 + 1028 00d1 PowerEdge 2550 + 1028 00d9 PowerEdge 2500 + 10f1 2462 Thunder K7 S2462 + 15d9 9005 Onboard SCSI Host Adapter + 8086 3411 SDS2 Mainboard + 0241 Serial ATA II RAID 1420SA + 0242 Serial ATA II RAID 1220SA + 0243 Serial ATA II RAID 1430SA + 0244 eSATA II RAID 1225SA + 0250 ServeRAID Controller + 1014 0279 ServeRAID 6M + 1014 028c ServeRAID 6i/6i+ + 1014 028e ServeRAID 7k + 0279 ServeRAID 6M + 0283 AAC-RAID + 9005 0283 Catapult + 0284 AAC-RAID + 9005 0284 Tomcat + 0285 AAC-RAID + 0e11 0295 SATA 6Ch (Bearcat) + 1014 02f2 ServeRAID 8i + 1028 0287 PowerEdge Expandable RAID Controller 320/DC + 1028 0291 CERC SATA RAID 2 PCI SATA 6ch (DellCorsair) + 103c 3227 AAR-2610SA + 108e 0286 Sun StorageTek SAS RAID HBA, Internal + 108e 0287 STK RAID EXT + 108e 7aac STK RAID REM + 108e 7aae STK RAID EX + 15d9 02b5 SMC AOC-USAS-S4i + 15d9 02b6 SMC AOC-USAS-S8i + 15d9 02c9 SMC AOC-USAS-S4iR + 15d9 02ca SMC AOC-USAS-S8iR + 15d9 02d2 SMC AOC-USAS-S8i-LP + 15d9 02d3 SMC AOC-USAS-S8iR-LP + 17aa 0286 Legend S220 (Legend Crusader) + 17aa 0287 Legend S230 (Legend Vulcan) + 9005 0285 2200S (Vulcan) + 9005 0286 2120S (Crusader) + 9005 0287 2200S (Vulcan-2m) + 9005 0288 3230S (Harrier) + 9005 0289 3240S (Tornado) +# Some early versions reported 2020S + 9005 028a ASR-2020ZCR +# Some early versions reported 2025S + 9005 028b ASR-2025ZCR (Terminator) + 9005 028e ASR-2020SA (Skyhawk) + 9005 028f ASR-2025SA + 9005 0290 AAR-2410SA PCI SATA 4ch (Jaguar II) + 9005 0292 AAR-2810SA PCI SATA 8ch (Corsair-8) + 9005 0293 AAR-21610SA PCI SATA 16ch (Corsair-16) + 9005 0294 ESD SO-DIMM PCI-X SATA ZCR (Prowler) + 9005 0296 ASR-2240S + 9005 0297 ASR-4005SAS + 9005 0298 ASR-4000 + 9005 0299 ASR-4800SAS + 9005 029a 4805SAS + 9005 02a4 ICP ICP9085LI + 9005 02a5 ICP ICP5085BR + 9005 02b5 ASR5800 + 9005 02b6 ASR5805 + 9005 02b7 ASR5808 + 9005 02b8 ICP5445SL + 9005 02b9 ICP5085SL + 9005 02ba ICP5805SL + 9005 02bb 3405 + 9005 02bc 3805 + 9005 02bd 31205 + 9005 02be 31605 + 9005 02bf ICP ICP5045BL + 9005 02c0 ICP ICP5085BL + 9005 02c1 ICP ICP5125BR + 9005 02c2 ICP ICP5165BR + 9005 02c3 51205 + 9005 02c4 51605 + 9005 02c5 ICP ICP5125SL + 9005 02c6 ICP ICP5165SL + 9005 02c7 3085 + 9005 02c8 ICP5805BL + 9005 02ce 51245 + 9005 02cf 51645 + 9005 02d0 52445 + 9005 02d1 5405 + 9005 02d4 ASR-2045 + 9005 02d5 ASR-2405 + 9005 02d6 ASR-2445 + 9005 02d7 ASR-2805 + 9005 02d8 5405G + 9005 02d9 5445G + 9005 02da 5805G + 9005 02db 5085G + 9005 02dc 51245G + 9005 02dd 51645G + 9005 02de 52445G + 9005 02df ASR-2045G + 9005 02e0 ASR-2405G + 9005 02e1 ASR-2445G + 9005 02e2 ASR-2805G + 0286 AAC-RAID (Rocket) + 1014 034d 8s + 1014 9540 ServeRAID 8k/8k-l4 + 1014 9580 ServeRAID 8k/8k-l8 + 9005 028c ASR-2230S + ASR-2230SLP PCI-X (Lancer) + 9005 028d ASR-2130S + 9005 029b ASR-2820SA + 9005 029c ASR-2620SA + 9005 029d ASR-2420SA + 9005 029e ICP ICP9024R0 + 9005 029f ICP ICP9014R0 + 9005 02a0 ICP ICP9047MA + 9005 02a1 ICP ICP9087MA + 9005 02a2 3800 + 9005 02a3 ICP ICP5445AU + 9005 02a4 ICP ICP9085LI + 9005 02a5 ICP ICP5085BR + 9005 02a6 ICP9067MA + 9005 02a7 3805 + 9005 02a8 3400 + 9005 02a9 ICP ICP5085AU + 9005 02aa ICP ICP5045AU + 9005 02ac 1800 + 9005 02b3 2400 + 9005 02b4 ICP ICP5045AL + 9005 0800 Callisto + 028b Series 6 - 6G SAS/PCIe 2 + 9005 0200 Series 6 Entry Level - ASR-6405E - 4 internal 6G SAS ports + 9005 0201 Series 6 Entry Level - ASR-6805E - 8 internal 6G SAS ports + 9005 0300 Series 6 - ASR-6405 - 4 internal 6G SAS ports + 9005 0301 Series 6 - ASR-6805 - 8 internal 6G SAS ports + 9005 0302 Series 6 - ASR-6445 - 4 internal and 4 external 6G SAS ports + 9005 0310 Series 6 Connectors on Top - ASR-6405T - 4 internal 6G SAS ports + 9005 0311 Series 6 Connectors on Top - ASR-6805T - 8 internal 6G SAS + 9005 0400 Series 6 - ASR-61205 - 12 internal 6G SAS ports + 9005 0401 Series 6 - ASR-61605 - 16 internal 6G SAS ports + 9005 0403 Series 6 - ASR-62405 - 24 internal 6G SAS ports + 028c Series 7 6G SAS/PCIe 3 + 9005 0500 Series 7 - ASR-7805 - 8 internal 6G SAS Port/PCIe 3.0 + 9005 0501 Series 7 - ASR-71605 - 16 internal 6G SAS Port/PCIe 3.0 + 9005 0502 Series 7 - ASR-71685 - 16 internal 8 external 6G SAS Port/PCIe 3.0 + 9005 0503 Series 7 - ASR-72405 - 24 internal 0 external 6G SAS Port/PCIe 3.0 + 9005 0504 Series 7 - ASR-7885 - 8 internal 8 external 6G SAS Port/PCIe 3.0 + 9005 0505 Series 7 Entry Level - ASR-71685E - 16 internal 8 external 6G SAS Port/PCIe 3.0 + 9005 0506 Series 7 Entry Level - ASR-72405E - 24 internal 0 external 6G SAS Port/PCIe 3.0 + 028d Series 8 12G SAS/PCIe 3 + 9005 0550 Series 8 - ASR-82405 - 24 internal 0 external 12G SAS Port/PCIe 3.0 + 9005 0551 Series 8 - ASR-81605 - 16 internal 0 external 12G SAS Port/PCIe 3.0 + 9005 0552 Series 8 - ASR-8805 - 8 internal 0 external 12G SAS Port/PCIe 3.0 + 9005 0553 Series 8 - ASR-8085 - 0 internal 8 external 12G SAS Port/PCIe 3.0 + 9005 0554 Series 8 - ASR-8885 - 8 internal 8 external 12G SAS Port/PCIe 3.0 + 028f Smart Storage PQI SAS + 103c 0600 Smart Array P408i-p SR Gen10 + 103c 0601 Smart Array P408e-p SR Gen10 + 103c 0602 Smart Array P408i-a SR Gen10 + 103c 0603 Smart Array P408i-c SR Gen10 + 103c 0650 Smart Array E208i-p SR Gen10 + 103c 0651 Smart Array E208e-p SR Gen10 + 103c 0652 Smart Array E208i-c SR Gen10 + 103c 0654 Smart Array E208i-a SR Gen10 + 103c 0655 Smart Array P408e-m SR Gen10 + 103c 0700 Smart Array P204i-c SR Gen10 + 103c 0701 Smart Array P204i-b SR Gen10 + 103c 1100 Smart Array P816i-a SR Gen10 + 103c 1101 Smart Array P416ie-m SR G10 + 105b 1211 HBA 8238-16i + 105b 1321 HBA 8242-24i + 13fe 8312 SKY-9200 MIC-8312BridgeB + 152d 8a22 QS-8204-8i + 152d 8a23 QS-8238-16i + 152d 8a24 QS-8236-16i + 152d 8a36 QS-8240-24i + 152d 8a37 QS-8242-24i + 1590 0294 SR932i-p Gen10+ + 1590 02dc SR416i-a Gen10+ + 193d 1104 RAID P2404-Mf-4i-2GB + 193d 1105 RAID P4408-Mf-8i-2GB + 193d 1106 RAID P2404-Mf-4i-1GB + 193d 1107 RAID P4408-Mf-8i-4GB + 193d 8460 HBA H460-M1 + 193d 8461 HBA H460-B1 + 193d c460 RAID P460-M2 + 193d c461 RAID P460-B2 + 193d f460 RAID P460-M4 + 193d f461 RAID P460-B4 + 19e5 d227 SmartROC-HD SR465C-M 4G + 19e5 d228 SmartROC SR455C-M 2G + 19e5 d229 SmartIOC SR155-M + 19e5 d22a SmartIOC-HD SR765-M + 19e5 d22b SmartROC-e SR455C-ME 4G + 19e5 d22c SmartROC SR455C-M 4G + 1bd4 0045 SMART-HBA 8242-24i + 1bd4 0046 RAID 8236-16i + 1bd4 0047 RAID 8240-24i + 1bd4 0048 SMART-HBA 8238-16i + 1bd4 004a PM8222-SHBA + 1bd4 004b RAID PM8204-2GB + 1bd4 004c RAID PM8204-4GB + 1bd4 004f PM8222-HBA + 1bd4 006b RS0800M5H24I + 1bd4 006c RS0800M5E8i + 1bd4 006d RS0800M5H8i + 1bd4 006f RS0804M5R16i + 1bd4 0070 RS0800M5E24i + 1bd4 0071 RS0800M5H16i + 1bd4 0072 RS0800M5E16i + 1bd4 0077 RS0800M5E16iM + 1bd4 0078 RS0800M5E24iM + 1bd4 0079 RS0800M5H24iM + 1bd4 0080 RS0804M5R16iM + 1cc4 0101 Ramaxel FBGF-RAD PM8204 + 1cc4 0201 Ramaxel FBGF-RAD PM8222 + 1d49 0220 ThinkSystem 4350-8i SAS/SATA 12Gb HBA + 1d49 0221 ThinkSystem 4350-16i SAS/SATA 12Gb HBA + 1d49 0520 ThinkSystem RAID 5350-8i PCIe 12Gb Adapter + 1d49 0620 ThinkSystem RAID 9350-8i 2GB Flash PCIe 12Gb Adapter + 1d49 0621 ThinkSystem RAID 9350-8i 2GB Flash PCIe 12Gb Internal Adapter + 1d49 0622 ThinkSystem RAID 9350-16i 4GB Flash PCIe 12Gb Adapter + 1d49 0623 ThinkSystem RAID 9350-16i 4GB Flash PCIe 12Gb Internal Adapter + 9005 0608 SmartRAID 3162-8i /e + 9005 0800 SmartRAID 3154-8i + 9005 0801 SmartRAID 3152-8i + 9005 0802 SmartRAID 3151-4i + 9005 0803 SmartRAID 3101-4i + 9005 0804 SmartRAID 3154-8e + 9005 0805 SmartRAID 3102-8i + 9005 0806 SmartRAID 3100 + 9005 0807 SmartRAID 3162-8i + 9005 0808 SmartRAID 3101E-4i + 9005 0809 SmartRAID 3102E-8i + 9005 0900 SmartHBA 2100-8i + 9005 0901 SmartHBA 2100-4i + 9005 0902 HBA 1100-8i + 9005 0903 HBA 1100-4i + 9005 0904 SmartHBA 2100-8e + 9005 0905 HBA 1100-8e + 9005 0906 SmartHBA 2100-4i4e + 9005 0907 HBA 1100 + 9005 0908 SmartHBA 2100 + 9005 090a SmartHBA 2100A-8i + 9005 1200 SmartRAID 3154-24i + 9005 1201 SmartRAID 3154-8i16e + 9005 1202 SmartRAID 3154-8i8e + 9005 1280 HBA 1100-16i + 9005 1281 HBA 1100-16e + 9005 1282 SmartHBA 2100-16i + 9005 1300 HBA 1100-8i8e + 9005 1301 HBA 1100-24i + 9005 1302 SmartHBA 2100-8i8e + 9005 1303 SmartHBA 2100-24i + 9005 1380 SmartRAID 3154-16i + 9005 1400 SmartRAID Ultra 3258p-16i /e + 9005 1402 HBA Ultra 1200p-16i + 9005 1410 HBA Ultra 1200-16e + 9005 1430 SmartRAID Ultra 3254-16e /e + 9005 1441 HBA Ultra 1200p-32i + 9005 1450 SmartRAID Ultra 3258p-32i /e + 9005 1462 HBA 1200-8i + 9005 1471 SmartRAID 3254-16i /e + 9005 1472 SmartRAID 3258-16i /e + 9005 14a0 SmartRAID 3254-8i + 9005 14a1 SmartRAID 3204-8i + 9005 14a2 SmartRAID 3252-8i + 9005 14c0 SmartHBA 2200-16i + 9005 14c1 HBA 1200-16i + 0410 AIC-9410W SAS (Razor HBA RAID) + 9005 0410 ASC-48300(Spirit RAID) + 9005 0411 ASC-58300 (Oakmont RAID) + 0412 AIC-9410W SAS (Razor HBA non-RAID) + 9005 0412 ASC-48300 (Spirit non-RAID) + 9005 0413 ASC-58300 (Oakmont non-RAID) + 0415 ASC-58300 SAS (Razor-External HBA RAID) + 0416 ASC-58300 SAS (Razor-External HBA non-RAID) + 041e AIC-9410W SAS (Razor ASIC non-RAID) + 041f AIC-9410W SAS (Razor ASIC RAID) + 9005 041f AIC-9410W SAS (Razor ASIC RAID) + 042f VSC7250/7251 SAS (Aurora ASIC non-RAID) + 0430 AIC-9405W SAS (Razor-Lite HBA RAID) + 9005 0430 ASC-44300 (Spirit-Lite RAID) + 0432 AIC-9405W SAS (Razor-Lite HBA non-RAID) + 9005 0432 ASC-44300 (Spirit-Lite non-RAID) + 043e AIC-9405W SAS (Razor-Lite ASIC non-RAID) + 043f AIC-9405W SAS (Razor-Lite ASIC RAID) + 0450 ASC-1405 Unified Serial HBA + 0500 Obsidian chipset SCSI controller + 1014 02c1 PCI-X DDR 3Gb SAS Adapter (572A/572C) + 1014 02c2 PCI-X DDR 3Gb SAS RAID Adapter (572B/572D) + 0503 Scamp chipset SCSI controller + 1014 02bf Quad Channel PCI-X DDR U320 SCSI RAID Adapter (571E) + 1014 02c3 PCI-X DDR 3Gb SAS RAID Adapter (572F) + 1014 02d5 Quad Channel PCI-X DDR U320 SCSI RAID Adapter (571F) + 0910 AUA-3100B + 091e AUA-3100B + 8000 ASC-29320A U320 + 800f AIC-7901 U320 + 8010 ASC-39320 U320 + 8011 ASC-39320D + 0e11 00ac ASC-39320D U320 + 9005 0041 ASC-39320D U320 + 8012 ASC-29320 U320 + 8013 ASC-29320B U320 + 8014 ASC-29320LP U320 + 8015 ASC-39320B U320 + 8016 ASC-39320A U320 + 8017 ASC-29320ALP U320 + 9005 0044 ASC-29320ALP PCIx U320 + 9005 0045 ASC-29320LPE PCIe U320 + 801c ASC-39320D U320 + 801d AIC-7902B U320 + 1014 02cc ServeRAID 7e + 801e AIC-7901A U320 + 801f AIC-7902 U320 + 1734 1011 PRIMERGY RX300 onboard SCSI + 8080 ASC-29320A U320 w/HostRAID + 8081 PMC-Sierra PM8001 SAS HBA [Series 6H] + 8088 PMC-Sierra PM8018 SAS HBA [Series 7H] + 8089 PMC-Sierra PM8019 SAS encryption HBA [Series 7He] + 808f AIC-7901 U320 w/HostRAID + 1028 0168 Precision Workstation 670 Mainboard + 8090 ASC-39320 U320 w/HostRAID + 8091 ASC-39320D U320 w/HostRAID + 8092 ASC-29320 U320 w/HostRAID + 8093 ASC-29320B U320 w/HostRAID + 8094 ASC-29320LP U320 w/HostRAID + 8095 ASC-39320(B) U320 w/HostRAID + 8096 ASC-39320A U320 w/HostRAID + 8097 ASC-29320ALP U320 w/HostRAID + 809c ASC-39320D(B) U320 w/HostRAID + 809d AIC-7902(B) U320 w/HostRAID + 1014 02cc ServeRAID 7e + 809e AIC-7901A U320 w/HostRAID + 809f AIC-7902 U320 w/HostRAID +907f Atronics + 2015 IDE-2015PL +919a Gigapixel Corp +9412 Holtek + 6565 6565 +9413 Softlogic Co., Ltd. + 6010 SOLO6010 MPEG-4 Video encoder/decoder + 6110 SOLO6110 H.264 Video encoder/decoder +9618 JusonTech Corporation + 0001 JusonTech Gigabit Ethernet Controller +9699 Omni Media Technology Inc + 6565 6565 +# nee Netmos Technology +9710 MosChip Semiconductor Technology Ltd. + 9250 PCI-to-PCI bridge [MCS9250] + 9805 PCI 1 port parallel adapter + 9815 PCI 9815 Multi-I/O Controller + 1000 0020 2P0S (2 port parallel adaptor) + 9820 PCI 9820 Multi-I/O Controller + 9835 PCI 9835 Multi-I/O Controller + 1000 0002 2S (16C550 UART) + 1000 0012 1P2S + 9845 PCI 9845 Multi-I/O Controller +# Serial ports at BAR0-3 + 1000 0004 0P4S (4 port 16550A serial card) + 1000 0006 0P6S (6 port 16550a serial card) +# Serial ports at BAR0-3, Parallel port at BAR4 + 1000 0014 1P4S (1 Parallel / 4 16550A Serial Port Adapter) + 9855 PCI 9855 Multi-I/O Controller +# Parallel port at BAR0. Serial ports at BAR2-5 + 1000 0014 1P4S +# Parallel ports at BAR0,BAR2. Serial ports at BAR4-5 + 1000 0022 2P2S (2 Parallel / 2 16550A Serial Port Adapter) + 9865 PCI 9865 Multi-I/O Controller + 9900 MCS9900 Multi-I/O Controller + 9901 PCIe 9901 Multi-I/O Controller + 9904 4-Port PCIe Serial Adapter +# 2-port Serial 1-port Parallel Adaptor + 9912 PCIe 9912 Multi-I/O Controller + 9922 MCS9922 PCIe Multi-I/O Controller + 9990 MCS9990 PCIe to 4‐Port USB 2.0 Host Controller +# Subsystem ID on a 3c985B-SX network card +9850 3Com (wrong ID) +9902 Stargen Inc. + 0001 SG2010 PCI over Starfabric Bridge + 0002 SG2010 PCI to Starfabric Gateway + 0003 SG1010 Starfabric Switch and PCI Bridge +9a11 Tiger Lake-H Gaussian & Neural Accelerator +9d32 Beijing Starblaze Technology Co. Ltd. + 0000 STAR1000 PCIe NVMe SSD Controller + 1001 STAR1000P PCIe NVMe SSD Controller + 1201 STAR1200C NVMe SSD + 1202 STAR1200I NVMe SSD + 1203 STAR1200L NVMe SSD + 1204 STAR1200E NVMe SSD +a000 Asix Electronics Corporation (Wrong ID) +a0a0 AOPEN Inc. +a0f1 UNISYS Corporation +a200 NEC Corporation +a259 Hewlett Packard +a25b Hewlett Packard GmbH PL24-MKT +a304 Sony +a727 3Com Corporation + 0013 3CRPAG175 Wireless PC Card + 6803 3CRDAG675B Wireless 11a/b/g Adapter +aa00 iTuner +aa01 iTuner +aa02 iTuner +aa03 iTuner +aa04 iTuner +aa05 iTuner +aa06 iTuner +aa07 iTuner +aa08 iTuner +aa09 iTuner +aa0a iTuner +aa0b iTuner +aa0c iTuner +aa0d iTuner +aa0e iTuner +aa0f iTuner +aa42 Scitex Digital Video +aa55 Ncomputing X300 PCI-Engine +aaaa Adnaco Technology Inc. + 0001 H1 PCIe over fiber optic host controller + 0002 R1BP1 PCIe over fiber optic expansion chassis +abcd Vadatech Inc. +ac1e Digital Receiver Technology Inc +ac3d Actuality Systems +ad00 Alta Data Technologies LLC +aecb Adrienne Electronics Corporation + 6250 VITC/LTC Timecode Reader card [PCI-VLTC/RDR] +affe Sirrix AG security technologies + 01e1 PCI1E1 1-port ISDN E1 interface + 02e1 PCI2E1 2-port ISDN E1 interface + 450e PCI4S0EC 4-port ISDN S0 interface + dead Sirrix.PCI4S0 4-port ISDN S0 interface +b100 OpenVox Communication Co. Ltd. +# Not registered officially +b10b Uakron PCI Project +b1b3 Shiva Europe Limited +b1d9 ATCOM Technology co., LTD. +# Pinnacle should be 11bd, but they got it wrong several times --mj +bd11 Pinnacle Systems, Inc. (Wrong ID) +bdbd Blackmagic Design + a106 Multibridge Extreme + a117 Intensity Pro + a11a DeckLink HD Extreme 2 + a11b DeckLink SDI/Duo/Quad + a11c DeckLink HD Extreme 3 + a11d DeckLink Studio + a11e DeckLink Optical Fibre + a120 Decklink Studio 2 + a121 DeckLink HD Extreme 3D/3D+ + a124 Intensity Extreme + a126 Intensity Shuttle + a127 UltraStudio Express + a129 UltraStudio Mini Recorder + a12a UltraStudio Mini Monitor + a12d UltraStudio 4K + a12e DeckLink 4K Extreme + a12f DeckLink Mini Monitor + a130 DeckLink Mini Recorder + a132 UltraStudio 4K + a136 DeckLink 4K Extreme 12G + a137 DeckLink Studio 4K + a138 Decklink SDI 4K + a139 Intensity Pro 4K + a13b DeckLink Micro Recorder + a13d DeckLink 4K Pro + a13e UltraStudio 4K Extreme + a13f DeckLink Quad 2 + a140 DeckLink Duo 2 + a141 UltraStudio 4K Extreme 3 + a142 UltraStudio HD Mini + a143 DeckLink Mini Recorder 4K + a144 DeckLink Mini Monitor 4K + a148 DeckLink SDI Micro + a14b DeckLink 8K Pro + a14e DeckLink Quad HDMI Recorder + a1ff eGPU RX580 +c001 TSI Telsys +c0a9 Micron/Crucial Technology + 2263 P1 NVMe PCIe SSD + 540a P2 NVMe PCIe SSD +c0de Motorola +c0fe Motion Engineering, Inc. +ca3b Cambrionix Ltd. +ca50 Varian Australia Pty Ltd +cace CACE Technologies, Inc. + 0001 TurboCap Port A + 0002 TurboCap Port B + 0023 AirPcap N +caed Canny Edge +cafe Chrysalis-ITS + 0003 Luna K3 Hardware Security Module + 0006 Luna PCI-e 3000 Hardware Security Module + 0007 Luna K6 Hardware Security Module + 0008 Luna K7 Hardware Security Module +cc53 ScaleFlux Inc. +cccc Catapult Communications +ccec Curtiss-Wright Controls Embedded Computing +cddd Tyzx, Inc. + 0101 DeepSea 1 High Speed Stereo Vision Frame Grabber + 0200 DeepSea 2 High Speed Stereo Vision Frame Grabber +ceba KEBA AG +cf86 Spectrum-4TOR + 0276 Spectrum-4TOR in Flash Recovery Mode +d161 Digium, Inc. + 0120 Wildcard TE120P single-span T1/E1/J1 card + 0205 Wildcard TE205P/TE207P dual-span T1/E1/J1 card 5.0V + 0210 Wildcard TE210P/TE212P dual-span T1/E1/J1 card 3.3V + 0220 Wildcard TE220 dual-span T1/E1/J1 card 3.3V (PCI-Express) + 0405 Wildcard TE405P/TE407P quad-span T1/E1/J1 card 5.0V + 0410 Wildcard TE410P/TE412P quad-span T1/E1/J1 card 3.3V + 0420 Wildcard TE420P quad-span T1/E1/J1 card 3.3V (PCI-Express) + 0800 Wildcard TDM800P 8-port analog card + 1205 Wildcard TE205P/TE207P dual-span T1/E1/J1 card 5.0V (u1) + 1220 Wildcard TE220 dual-span T1/E1/J1 card 3.3V (PCI-Express) (5th gen) + 1405 Wildcard TE405P/TE407P quad-span T1/E1/J1 card 5.0V (u1) + 1410 Wildcard TE410P quad-span T1/E1/J1 card 3.3V (5th Gen) + 1420 Wildcard TE420 quad-span T1/E1/J1 card 3.3V (PCI-Express) (5th gen) + 1820 Wildcard TE820 octal-span T1/E1/J1 card 3.3V (PCI-Express) + 2400 Wildcard TDM2400P 24-port analog card + 3400 Wildcard TC400P transcoder base card + 8000 Wildcard TE121 single-span T1/E1/J1 card (PCI-Express) + 8001 Wildcard TE122 single-span T1/E1/J1 card + 8002 Wildcard AEX800 8-port analog card (PCI-Express) + 8003 Wildcard AEX2400 24-port analog card (PCI-Express) + 8004 Wildcard TCE400P transcoder base card + 8005 Wildcard TDM410 4-port analog card + 8006 Wildcard AEX410 4-port analog card (PCI-Express) + 8007 Hx8 Series 8-port Base Card + 8008 Hx8 Series 8-port Base Card (PCI-Express) + 800a Wildcard TE133 single-span T1/E1/J1 card (PCI Express) + 800b Wildcard TE134 single-span T1/E1/J1 card + 800c Wildcard A8A 8-port analog card + 800d Wildcard A8B 8-port analog card (PCI-Express) + 800e Wildcard TE235/TE435 quad-span T1/E1/J1 card (PCI-Express) + 800f Wildcard A4A 4-port analog card + 8010 Wildcard A4B 4-port analog card (PCI-Express) + 8013 Wildcard TE236/TE436 quad-span T1/E1/J1 card + b410 Wildcard B410 quad-BRI card +d209 Ultimarc + 1500 PAC Drive + 15a2 SpinTrak + 1601 AimTrak +d4d4 Dy4 Systems Inc + 0601 PCI Mezzanine Card +d531 I+ME ACTIA GmbH +d84d Exsys +dada Datapath Limited + 0133 VisionRGB-X2 + 0139 VisionRGB-E1 + 0144 VisionSD8 + 0150 VisionRGB-E2 + 0151 VisionSD4+1 + 0159 VisionAV + 0161 DGC161 + 0165 DGC165 + 0167 DGC167 + 0168 DGC168 + 1139 VisionRGB-E1S + 1150 VisionRGB-E2S + 1151 VisionSD4+1S + 1153 VisionDVI-DL + 1154 VisionSDI2 +db10 Diablo Technologies +dc93 Dawicontrol GmbH +dcba Dynamic Engineering + 0046 PCIe Altera Cyclone IV +# VPX format Receiver Controller Board + 0047 VPX-RCB +# PMC Format FPGA design with 8 high speed UART channels + 0048 PMC-Biserial-III-BAE9 + 004e PC104p-Biserial-III-NVY5 + 004f PC104p-Biserial-III-NVY6 + 0052 PCIeBiSerialDb37 BA22 LVDS IO +# 8 port 16550 compatible UART, PMC format, RS-232 IO, RTS, CTS, DTR, DSR supported + 0066 PMC-OctalUART-232 +dd01 Digital Devices GmbH + 0003 Octopus DVB Adapter + dd01 0001 Octopus DVB adapter + dd01 0002 Octopus LE DVB adapter + dd01 0003 Octopus OEM + dd01 0004 Octopus V3 DVB adapter + dd01 0010 Octopus Mini + dd01 0020 Cine S2 V6 DVB adapter + dd01 0021 Cine S2 V6.5 DVB adapter + dd01 0030 Cine CT V6.1 DVB adapter + dd01 db03 Mystique SaTiX-S2 V3 DVB adapter + 0006 Cine V7 + 0007 Max + dd01 0023 Max S8 4/8 + 0011 Octopus CI DVB Adapter + dd01 0040 Octopus CI + dd01 0041 Octopus CI Single + 0201 Resi DVB-C Modulator + dd01 0001 Resi DVB-C Modulator +dead Indigita Corporation +deaf Middle Digital Inc. + 9050 PC Weasel Virtual VGA + 9051 PC Weasel Serial Port + 9052 PC Weasel Watchdog Timer +# formerly SoftHard Technology Ltd. +deda XIMEA + 4001 CB or MX camera + 4021 MT camera +e000 Winbond + e000 W89C940 +e159 Tiger Jet Network Inc. / ICP DAS + 0001 Tiger3XX Modem/ISDN interface + 0059 0001 128k ISDN-S/T Adapter + 0059 0003 128k ISDN-U Adapter + 00a7 0001 TELES.S0/PCI 2.x ISDN Adapter + 8086 0003 Digium X100P/X101P analogue PSTN FXO interface + b100 0003 OpenVox A400P 4-port analog card + b1d9 0003 AX400P 4-port analog card + 0002 Tiger100APC ISDN chipset +e1c5 Elcus +e4bf EKF Elektronik GmbH + 0ccd CCD-CALYPSO + 0cd1 CD1-OPERA + 0cd2 CD2-BEBOP + 0cd3 CD3-JIVE + 50c1 PC1-GROOVE + 50c2 PC2-LIMBO + 53c1 SC1-ALLEGRO + cc47 CCG-RUMBA + cc4d CCM-BOOGIE +e4e4 Xorcom +e55e Essence Technology, Inc. +ea01 Eagle Technology + 000a PCI-773 Temperature Card + 0032 PCI-730 & PC104P-30 Card + 003e PCI-762 Opto-Isolator Card + 0041 PCI-763 Reed Relay Card + 0043 PCI-769 Opto-Isolator Reed Relay Combo Card + 0046 PCI-766 Analog Output Card + 0052 PCI-703 Analog I/O Card + 0800 PCI-800 Digital I/O Card +ea50 Emerson Automation Solutions +# The main chip of all these devices is by Xilinx -> It could also be a Xilinx ID. +ea60 RME + 9896 Digi32 + 9897 Digi32 Pro + 9898 Digi32/8 +eabb Aashima Technology B.V. +eace Endace Measurement Systems, Ltd + 3100 DAG 3.10 OC-3/OC-12 + 3200 DAG 3.2x OC-3/OC-12 + 320e DAG 3.2E Fast Ethernet + 340e DAG 3.4E Fast Ethernet + 341e DAG 3.41E Fast Ethernet + 3500 DAG 3.5 OC-3/OC-12 + 351c DAG 3.5ECM Fast Ethernet + 360d DAG 3.6D DS3 + 360e DAG 3.6E Fast Ethernet + 368e DAG 3.6E Gig Ethernet + 3707 DAG 3.7T T1/E1/J1 + 370d DAG 3.7D DS3/E3 + 378e DAG 3.7G Gig Ethernet + 3800 DAG 3.8S OC-3/OC-12 + 4100 DAG 4.10 OC-48 + 4110 DAG 4.11 OC-48 + 4220 DAG 4.2 OC-48 + 422e DAG 4.2GE Gig Ethernet + 4230 DAG 4.2S OC-48 + 423e DAG 4.2GE Gig Ethernet + 4300 DAG 4.3S OC-48 + 430e DAG 4.3GE Gig Ethernet + 452e DAG 4.5G2 Gig Ethernet + 454e DAG 4.5G4 Gig Ethernet + 45b8 DAG 4.5Z8 Gig Ethernet + 45be DAG 4.5Z2 Gig Ethernet + 520e DAG 5.2X 10G Ethernet + 521a DAG 5.2SXA 10G Ethernet/OC-192 + 5400 DAG 5.4S-12 OC-3/OC-12 + 5401 DAG 5.4SG-48 Gig Ethernet/OC-3/OC-12/OC-48 + 540a DAG 5.4GA Gig Ethernet + 541a DAG 5.4SA-12 OC-3/OC-12 + 542a DAG 5.4SGA-48 Gig Ethernet/OC-3/OC-12/OC-48 + 6000 DAG 6.0SE 10G Ethernet/OC-192 + 6100 DAG 6.1SE 10G Ethernet/OC-192 + 6200 DAG 6.2SE 10G Ethernet/OC-192 + 7100 DAG 7.1S OC-3/OC-12 + 7400 DAG 7.4S OC-3/OC-12 + 7401 DAG 7.4S48 OC-48 + 752e DAG 7.5G2 Gig Ethernet + 754e DAG 7.5G4 Gig Ethernet + 8100 DAG 8.1X 10G Ethernet + 8101 DAG 8.1SX 10G Ethernet/OC-192 + 8102 DAG 8.1X 10G Ethernet + 820e DAG 8.2X 10G Ethernet + 820f DAG 8.2X 10G Ethernet (2nd bus) + 8400 DAG 8.4I Infiniband x4 SDR + 8500 DAG 8.5I Infiniband x4 DDR + 9200 DAG 9.2SX2 10G Ethernet + 920e DAG 9.2X2 10G Ethernet + 9540 DAG 9.5G4 Gig Ethernet + 954f DAG 9.5G4F Gig Ethernet + a120 DAG 10X2-P 10G Ethernet + a12e DAG 10X2-S 10G Ethernet + a140 DAG 10X4-P 10/40G Ethernet + a14e DAG 10X4-S 10/40G Ethernet + eace vDAG virtual device +ec80 Belkin Corporation + ec00 F5D6000 +ecc0 Echo Digital Audio Corporation +edd8 ARK Logic Inc + a091 1000PV [Stingray] + a099 2000PV [Stingray] + a0a1 2000MT + a0a9 2000MI +# Found on M2N68-AM Motherboard +f043 ASUSTeK Computer Inc. (Wrong ID) +f05b Foxconn International, Inc. (Wrong ID) +f15e SiFive, Inc. + 0000 FU740-C000 RISC-V SoC PCI Express x8 to AXI4 Bridge +f1d0 AJA Video + c0fe Xena HS/HD-R + c0ff Kona/Xena 2 + cafe Kona SD + cfee Xena LS/SD-22-DA/SD-DA + dafe Corvid 1 + daff KONA LHi + db00 IoExpress + db01 Corvid22 + db02 Kona 3G + db03 Corvid 3G + db04 Kona 3G QUAD + db05 Kona LHe+ + db06 IoXT + db07 Kona 3G P2P + db08 Kona 3G QUAD P2P + db09 Corvid 24 + db11 T-Tap + dcaf Kona HD + dfee Xena HD-DA + eb07 Io4K + eb0a Io4K UFC + eb0b Kona 4 + eb0c Kona 4 UFC + eb0d Corvid 88 + eb0e Corvid 44 + eb16 Corvid HEVC + 10cf 1049 Corvid HEVC M31 + eb18 Corvid HB-R + eb1a Kona IP 1SFP + eb1c Kona IP 2SFP + eb1d Io4KPlus + eb1e IoIP + eb1f Kona 5 + eb23 Kona 1 + eb24 Kona HDMI + eb25 Corvid 44 12g + eb26 T-Tap Pro + efac Xena SD-MM/SD-22-MM + facd Xena HD-MM +f5f5 F5 Networks, Inc. +# Subsystem ID for PATA controller on nForce motherboard +f849 ASRock Incorporation (Wrong ID) +fa57 Interagon AS + 0001 PMC [Pattern Matching Chip] +fab7 Fabric7 Systems, Inc. +febd Ultraview Corp. +# Nee Epigram +feda Broadcom Inc + a0fa BCM4210 iLine10 HomePNA 2.0 + a10e BCM4230 iLine10 HomePNA 2.0 +fede Fedetec Inc. + 0003 TABIC PCI v3 +fffd XenSource, Inc. + 0101 PCI Event Channel Controller +# Used in some old VMWare products before they got a real ID assigned +fffe VMWare Inc (temporary ID) + 0710 Virtual SVGA +ffff Illegal Vendor ID + + +# List of known device classes, subclasses and programming interfaces + +# Syntax: +# C class class_name +# subclass subclass_name <-- single tab +# prog-if prog-if_name <-- two tabs + +C 00 Unclassified device + 00 Non-VGA unclassified device + 01 VGA compatible unclassified device + 05 Image coprocessor +C 01 Mass storage controller + 00 SCSI storage controller + 01 IDE interface + 00 ISA Compatibility mode-only controller + 05 PCI native mode-only controller + 0a ISA Compatibility mode controller, supports both channels switched to PCI native mode + 0f PCI native mode controller, supports both channels switched to ISA compatibility mode + 80 ISA Compatibility mode-only controller, supports bus mastering + 85 PCI native mode-only controller, supports bus mastering + 8a ISA Compatibility mode controller, supports both channels switched to PCI native mode, supports bus mastering + 8f PCI native mode controller, supports both channels switched to ISA compatibility mode, supports bus mastering + 02 Floppy disk controller + 03 IPI bus controller + 04 RAID bus controller + 05 ATA controller + 20 ADMA single stepping + 30 ADMA continuous operation + 06 SATA controller + 00 Vendor specific + 01 AHCI 1.0 + 02 Serial Storage Bus + 07 Serial Attached SCSI controller + 01 Serial Storage Bus + 08 Non-Volatile memory controller + 01 NVMHCI + 02 NVM Express + 80 Mass storage controller +C 02 Network controller + 00 Ethernet controller + 01 Token ring network controller + 02 FDDI network controller + 03 ATM network controller + 04 ISDN controller + 05 WorldFip controller + 06 PICMG controller + 07 Infiniband controller + 08 Fabric controller + 80 Network controller +C 03 Display controller + 00 VGA compatible controller + 00 VGA controller + 01 8514 controller + 01 XGA compatible controller + 02 3D controller + 80 Display controller +C 04 Multimedia controller + 00 Multimedia video controller + 01 Multimedia audio controller + 02 Computer telephony device + 03 Audio device + 80 Multimedia controller +C 05 Memory controller + 00 RAM memory + 01 FLASH memory + 02 CXL + 00 CXL Memory Device - vendor specific + 10 CXL Memory Device (CXL 2.x) + 80 Memory controller +C 06 Bridge + 00 Host bridge + 01 ISA bridge + 02 EISA bridge + 03 MicroChannel bridge + 04 PCI bridge + 00 Normal decode + 01 Subtractive decode + 05 PCMCIA bridge + 06 NuBus bridge + 07 CardBus bridge + 08 RACEway bridge + 00 Transparent mode + 01 Endpoint mode + 09 Semi-transparent PCI-to-PCI bridge + 40 Primary bus towards host CPU + 80 Secondary bus towards host CPU + 0a InfiniBand to PCI host bridge + 80 Bridge +C 07 Communication controller + 00 Serial controller + 00 8250 + 01 16450 + 02 16550 + 03 16650 + 04 16750 + 05 16850 + 06 16950 + 01 Parallel controller + 00 SPP + 01 BiDir + 02 ECP + 03 IEEE1284 + fe IEEE1284 Target + 02 Multiport serial controller + 03 Modem + 00 Generic + 01 Hayes/16450 + 02 Hayes/16550 + 03 Hayes/16650 + 04 Hayes/16750 + 04 GPIB controller + 05 Smard Card controller + 80 Communication controller +C 08 Generic system peripheral + 00 PIC + 00 8259 + 01 ISA PIC + 02 EISA PIC + 10 IO-APIC + 20 IO(X)-APIC + 01 DMA controller + 00 8237 + 01 ISA DMA + 02 EISA DMA + 02 Timer + 00 8254 + 01 ISA Timer + 02 EISA Timers + 03 HPET + 03 RTC + 00 Generic + 01 ISA RTC + 04 PCI Hot-plug controller + 05 SD Host controller + 06 IOMMU + 80 System peripheral + 99 Timing Card +# PTP Grandmaster Source Clock + 01 TAP Timing Card +C 09 Input device controller + 00 Keyboard controller + 01 Digitizer Pen + 02 Mouse controller + 03 Scanner controller + 04 Gameport controller + 00 Generic + 10 Extended + 80 Input device controller +C 0a Docking station + 00 Generic Docking Station + 80 Docking Station +C 0b Processor + 00 386 + 01 486 + 02 Pentium + 10 Alpha + 20 Power PC + 30 MIPS + 40 Co-processor +C 0c Serial bus controller + 00 FireWire (IEEE 1394) + 00 Generic + 10 OHCI + 01 ACCESS Bus + 02 SSA + 03 USB controller + 00 UHCI + 10 OHCI + 20 EHCI + 30 XHCI + 40 USB4 Host Interface + 80 Unspecified + fe USB Device + 04 Fibre Channel + 05 SMBus + 06 InfiniBand + 07 IPMI Interface + 00 SMIC + 01 KCS + 02 BT (Block Transfer) + 08 SERCOS interface + 09 CANBUS + 80 Serial bus controller +C 0d Wireless controller + 00 IRDA controller + 01 Consumer IR controller + 10 RF controller + 11 Bluetooth + 12 Broadband + 20 802.1a controller + 21 802.1b controller + 80 Wireless controller +C 0e Intelligent controller + 00 I2O +C 0f Satellite communications controller + 01 Satellite TV controller + 02 Satellite audio communication controller + 03 Satellite voice communication controller + 04 Satellite data communication controller +C 10 Encryption controller + 00 Network and computing encryption device + 10 Entertainment encryption device + 80 Encryption controller +C 11 Signal processing controller + 00 DPIO module + 01 Performance counters + 10 Communication synchronizer + 20 Signal processing management + 80 Signal processing controller +C 12 Processing accelerators + 00 Processing accelerators + 01 SNIA Smart Data Accelerator Interface (SDXI) controller +C 13 Non-Essential Instrumentation +C 40 Coprocessor +C ff Unassigned class diff --git a/kdecore/regen.sh b/kdecore/regen.sh new file mode 100755 index 00000000..ecdded59 --- /dev/null +++ b/kdecore/regen.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +# a little helper script to fetch PCI and USB IDs databases + +rm -vf pci.ids usb.ids + +wget https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids +wget http://www.linux-usb.org/usb.ids diff --git a/kdecore/services/regen.sh b/kdecore/services/regen.sh index c2af52b9..8823712f 100755 --- a/kdecore/services/regen.sh +++ b/kdecore/services/regen.sh @@ -1,5 +1,7 @@ #!/bin/sh +set -e + # a little helper script to regenerate yacc.[c,h] and lex.c YACC="bison" diff --git a/kdecore/tests/CMakeLists.txt b/kdecore/tests/CMakeLists.txt index 67cd44d5..fe174a95 100644 --- a/kdecore/tests/CMakeLists.txt +++ b/kdecore/tests/CMakeLists.txt @@ -63,6 +63,7 @@ KDECORE_UNIT_TESTS( kdebug_qcoreapptest kmimetype_nomimetypes kunitconversiontest + kdevicedatabasetest ) KDECORE_EXECUTABLE_TESTS( diff --git a/kdecore/tests/kdevicedatabasetest.cpp b/kdecore/tests/kdevicedatabasetest.cpp new file mode 100644 index 00000000..40e0140b --- /dev/null +++ b/kdecore/tests/kdevicedatabasetest.cpp @@ -0,0 +1,57 @@ +/* This file is part of the KDE libraries + Copyright (C) 2022 Ivailo Monev + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2, as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "kdevicedatabasetest.h" +#include "qtest_kde.h" + +QTEST_KDEMAIN_CORE(KDeviceDatabaseTest) + +void KDeviceDatabaseTest::initTestCase() +{ + const QString pcivendor = m_devicedb.lookupPCIVendor("0001"); + const QString usbvendor = m_devicedb.lookupUSBVendor("0001"); + m_iskdelibsinstalled = (!pcivendor.isEmpty() && !usbvendor.isEmpty()); +} + +void KDeviceDatabaseTest::testPCI() +{ + if (!m_iskdelibsinstalled) { + QSKIP("kdelibs not installed", SkipAll); + } + + QCOMPARE(m_devicedb.lookupPCIVendor("0001"), QLatin1String("SafeNet (wrong ID)")); + QCOMPARE(m_devicedb.lookupPCIDevice("0010", "8139"), QLatin1String("AT-2500TX V3 Ethernet")); + QCOMPARE(m_devicedb.lookupPCIClass("00"), QLatin1String("Unclassified device")); + QCOMPARE(m_devicedb.lookupPCISubClass("00", "00"), QLatin1String("Non-VGA unclassified device")); + QCOMPARE(m_devicedb.lookupPCIProtocol("01", "01", "00"), QLatin1String("ISA Compatibility mode-only controller")); +} + +void KDeviceDatabaseTest::testUSB() +{ + if (!m_iskdelibsinstalled) { + QSKIP("kdelibs not installed", SkipAll); + } + + QCOMPARE(m_devicedb.lookupUSBVendor("0001"), QLatin1String("Fry's Electronics")); + QCOMPARE(m_devicedb.lookupUSBDevice("0001", "7778"), QLatin1String("Counterfeit flash drive [Kingston]")); + QCOMPARE(m_devicedb.lookupUSBClass("00"), QLatin1String("(Defined at Interface level)")); + QCOMPARE(m_devicedb.lookupUSBSubClass("01", "01"), QLatin1String("Control Device")); + QCOMPARE(m_devicedb.lookupUSBProtocol("02", "02", "00"), QLatin1String("None")); +} + +#include "moc_kdevicedatabasetest.cpp" diff --git a/kdecore/tests/kdevicedatabasetest.h b/kdecore/tests/kdevicedatabasetest.h new file mode 100644 index 00000000..439ace8f --- /dev/null +++ b/kdecore/tests/kdevicedatabasetest.h @@ -0,0 +1,40 @@ +/* This file is part of the KDE libraries + Copyright (C) 2022 Ivailo Monev + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2, as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef KDEVICEDATABASETEST_H +#define KDEVICEDATABASETEST_H + +#include "kdevicedatabase.h" + +#include + +class KDeviceDatabaseTest : public QObject +{ + Q_OBJECT +private Q_SLOTS: + void initTestCase(); + + void testPCI(); + void testUSB(); + +private: + bool m_iskdelibsinstalled; + KDeviceDatabase m_devicedb; +}; + +#endif // KDEVICEDATABASETEST_H diff --git a/kdecore/usb.ids b/kdecore/usb.ids new file mode 100644 index 00000000..8e19afff --- /dev/null +++ b/kdecore/usb.ids @@ -0,0 +1,25236 @@ +# +# List of USB ID's +# +# Maintained by Stephen J. Gowdy +# If you have any new entries, please submit them via +# http://www.linux-usb.org/usb-ids.html +# or send entries as patches (diff -u old new) in the +# body of your email (a bot will attempt to deal with it). +# The latest version can be obtained from +# http://www.linux-usb.org/usb.ids +# +# Version: 2022.04.13 +# Date: 2022-04-13 20:34:10 +# + +# Vendors, devices and interfaces. Please keep sorted. + +# Syntax: +# vendor vendor_name +# device device_name <-- single tab +# interface interface_name <-- two tabs + +0001 Fry's Electronics + 7778 Counterfeit flash drive [Kingston] +0002 Ingram + 0002 passport00 +0003 Club Mac +0004 Nebraska Furniture Mart +0011 Unknown + 7788 counterfeit flash drive +0053 Planex + 5301 GW-US54ZGL 802.11bg +0078 Microntek + 0006 Joystick +0079 DragonRise Inc. + 0006 PC TWIN SHOCK Gamepad + 0011 Gamepad + 1800 Mayflash Wii U Pro Game Controller Adapter [DirectInput] + 181b Venom Arcade Joystick + 1843 Mayflash GameCube Controller Adapter + 1844 Mayflash GameCube Controller +0080 Unknown + a001 JMS578 based SATA bridge +0085 Boeye Technology Co., Ltd. + 0600 eBook Reader +0102 miniSTREAK +0105 Trust International B.V. + 145f NW-3100 802.11b/g 54Mbps Wireless Network Adapter [zd1211] +0127 IBP + 0002 HDM Interface + 0127 ibp +0145 Unknown + 0112 Card Reader +017c MLK + 145f Trust Deskset +0200 TP-Link + 0201 MA180 UMTS Modem +0204 Chipsbank Microelectronics Co., Ltd + 6025 CBM2080 / CBM2090 Flash drive controller + 6026 CBM1180 Flash drive controller +0218 Hangzhou Worlde + 0301 MIDI Port +02ad HUMAX Co., Ltd. + 138c PVR Mass Storage +0303 Mini Automation Controller +0324 OCZ Technology Inc + bc06 OCZ ATV USB 2.0 Flash Drive + bc08 OCZ Rally2/ATV USB 2.0 Flash Drive +0325 OCZ Technology Inc + ac02 ATV Turbo / Rally2 Dual Channel USB 2.0 Flash Drive +0386 LTS + 0001 PSX for USB Converter +03c3 ZWO + 120e ASI120MC-S Planetary Camera +03d9 Shenzhen Sinote Tech-Electron Co., Ltd + 0499 SE340D PC Remote Control +03da Bernd Walter Computer Technology + 0002 HD44780 LCD interface +03e7 Intel + 2150 Myriad VPU [Movidius Neural Compute Stick] + 2485 Movidius MyriadX + f63b Myriad VPU [Movidius Neural Compute Stick] +03e8 EndPoints, Inc. + 0004 SE401 Webcam + 0008 101 Ethernet [klsi] + 0015 ATAPI Enclosure + 2123 SiPix StyleCam Deluxe + 8004 Aox 99001 +03e9 Thesys Microelectronics +03ea Data Broadcasting Corp. +03eb Atmel Corp. + 0902 4-Port Hub + 2002 Mass Storage Device + 2015 at90usbkey sample firmware (HID keyboard) + 2018 at90usbkey sample firmware (CDC ACM) + 2019 stk525 sample firmware (microphone) + 201c at90usbkey sample firmware (HID mouse) + 201d at90usbkey sample firmware (HID generic) + 2022 at90usbkey sample firmware (composite device) + 2040 LUFA Test PID + 2041 LUFA Mouse Demo Application + 2042 LUFA Keyboard Demo Application + 2043 LUFA Joystick Demo Application + 2044 LUFA CDC Demo Application + 2045 LUFA Mass Storage Demo Application + 2046 LUFA Audio Output Demo Application + 2047 LUFA Audio Input Demo Application + 2048 LUFA MIDI Demo Application + 2049 Stripe Snoop Magnetic Stripe Reader + 204a LUFA CDC Class Bootloader + 204b LUFA USB to Serial Adapter Project + 204c LUFA RNDIS Demo Application + 204d LUFA Combined Mouse and Keyboard Demo Application + 204e LUFA Dual CDC Demo Application + 204f LUFA Generic HID Demo Application + 2060 Benito Programmer Project + 2061 LUFA Combined Mass Storage and Keyboard Demo Application + 2062 LUFA Combined CDC and Mouse Demo Application + 2063 LUFA Datalogger Device + 2064 Interfaceless Control-Only LUFA Devices + 2065 LUFA Test and Measurement Demo Application + 2066 LUFA Multiple Report HID Demo + 2067 LUFA HID Class Bootloader + 2068 LUFA Virtual Serial/Mass Storage Demo + 2069 LUFA Webserver Project + 2103 JTAG ICE mkII + 2104 AVR ISP mkII + 2105 AVRONE! + 2106 STK600 development board + 2107 AVR Dragon + 2109 STK541 ZigBee Development Board + 210a AT86RF230 [RZUSBSTICK] transceiver + 210d XPLAIN evaluation kit (CDC ACM) + 2110 AVR JTAGICE3 Debugger and Programmer + 2111 Xplained Pro board debugger and programmer + 2122 XMEGA-A1 Explained evaluation kit + 2140 AVR JTAGICE3 (v3.x) Debugger and Programmer + 2141 ICE debugger + 2145 ATMEGA328P-XMINI (CDC ACM) + 2310 EVK11xx evaluation board + 2404 The Micro + 2fe4 ATxmega32A4U DFU bootloader + 2fe6 Cactus V6 (DFU) + 2fea Cactus RF60 (DFU) + 2fee atmega8u2 DFU bootloader + 2fef atmega16u2 DFU bootloader + 2ff0 atmega32u2 DFU bootloader + 2ff1 at32uc3a3 DFU bootloader + 2ff3 atmega16u4 DFU bootloader + 2ff4 atmega32u4 DFU bootloader + 2ff6 at32uc3b0/1 DFU bootloader + 2ff7 at90usb82 DFU bootloader + 2ff8 at32uc3a0/1 DFU bootloader + 2ff9 at90usb646/647 DFU bootloader + 2ffa at90usb162 DFU bootloader + 2ffb at90usb AVR DFU bootloader + 2ffd at89c5130/c5131 DFU bootloader + 2fff at89c5132/c51snd1c DFU bootloader + 3301 at43301 4-Port Hub + 3312 4-Port Hub + 4102 AirVast W-Buddie WN210 + 5601 at76c510 Prism-II 802.11b Access Point + 5603 Cisco 7920 WiFi IP Phone + 6119 AT91SAM CDC Demo Application + 6124 at91sam SAMBA bootloader + 6127 AT91SAM HID Keyboard Demo Application + 6129 AT91SAM Mass Storage Demo Application + 6200 AT91SAM HID Mouse Demo Application + 7603 D-Link DWL-120 802.11b Wireless Adapter [Atmel at76c503a] + 7604 at76c503a 802.11b Adapter + 7605 at76c503a 802.11b Adapter + 7606 at76c505 802.11b Adapter + 7611 at76c510 rfmd2948 802.11b Access Point + 7613 WL-1130 USB + 7614 AT76c505a Wireless Adapter + 7615 AT76C505AMX Wireless Adapter + 7617 AT76C505AS Wireless Adapter + 7800 Mini Album + 800c Airspy HF+ + ff01 WootingOne + ff02 WootingTwo + ff07 Tux Droid fish dongle +03ec Iwatsu America, Inc. +03ed Mitel Corp. +03ee Mitsumi + 0000 CD-R/RW Drive + 2501 eHome Infrared Receiver + 2502 eHome Infrared Receiver + 5609 Japanese Keyboard + 641f WIF-0402C Bluetooth Adapter + 6438 Bluetooth Device + 6440 WML-C52APR Bluetooth Adapter + 6901 SmartDisk FDD + 6902 Floppy Disk Drive + 7500 CD-R/RW + ffff Dongle with BlueCore in DFU mode +03f0 HP, Inc + 0004 DeskJet 895c + 0011 OfficeJet G55 + 0012 DeskJet 1125C Printer Port + 0024 KU-0316 Keyboard + 002a LaserJet P1102 + 0053 DeskJet 2620 All-in-One Printer + 0101 ScanJet 4100c + 0102 PhotoSmart S20 + 0104 DeskJet 880c/970c + 0105 ScanJet 4200c + 0107 CD-Writer Plus + 010c Multimedia Keyboard Hub + 0111 G55xi Printer/Scanner/Copier + 0117 LaserJet 3200 + 011c hn210w 802.11b Adapter + 011d Bluetooth 1.2 Interface [Broadcom BCM2035] + 0121 HP 39g+ [F2224A], 39gs [F2223A], 40gs [F2225A], 48gII [F2226A], 49g+ [F2228A], 50g [F2229A, NW240AA] + 0122 HID Internet Keyboard + 0125 DAT72 Tape + 0139 Barcode Scanner 4430 + 0201 ScanJet 6200c + 0202 PhotoSmart S20 + 0204 DeskJet 815c + 0205 ScanJet 3300c + 0207 CD-Writer Plus 8200e + 020c Multimedia Keyboard + 0211 OfficeJet G85 + 0212 DeskJet 1220C + 0217 LaserJet 2200 + 0218 APOLLO P2500/2600 + 0221 StreamSmart 400 [F2235AA] + 0223 Digital Drive Flash Reader + 022a Laserjet CP1525nw + 0241 Link-5 micro dongle + 0304 DeskJet 810c/812c + 0305 ScanJet 4300c + 0307 CD-Writer+ CD-4e + 0311 OfficeJet G85xi + 0312 Color Inkjet CP1700 + 0314 designjet 30/130 series + 0317 LaserJet 1200 + 0324 SK-2885 keyboard + 034a Elite Keyboard + 0401 ScanJet 5200c + 0404 DeskJet 830c/832c + 0405 ScanJet 3400cse + 0411 OfficeJet G95 + 0412 Printing Support + 0417 LaserJet 1200 series + 0423 HS-COMBO Cardreader + 042a LaserJet M1132 MFP + 0441 Prime [NW280AA, G8X92AA] + 0504 DeskJet 885c + 0505 ScanJet 2100c + 0507 DVD+RW + 050c 5219 Wireless Keyboard + 0511 OfficeJet K60 + 0512 DeckJet 450 + 0517 LaserJet 1000 + 051d Bluetooth Interface + 052a LaserJet M1212nf MFP + 0601 ScanJet 6300c + 0604 DeskJet 840c + 0605 ScanJet 2200c + 0610 Z24i Monitor Hub + 0611 OfficeJet K60xi + 0612 business inkjet 3000 + 0624 Bluetooth Dongle + 0641 X1200 Optical Mouse + 0701 ScanJet 5300c/5370c + 0704 DeskJet 825c + 0705 ScanJet 4400c + 070c Personal Media Drive + 0711 OfficeJet K80 + 0712 DeskJet 1180c + 0714 Printing Support + 0741 Prime Wireless Kit [FOK65AA] + 0801 ScanJet 7400c + 0804 DeskJet 816c + 0805 HP4470C + 0811 OfficeJet K80xi + 0817 LaserJet 3300 + 0901 ScanJet 2300c + 0904 DeskJet 845c + 0912 Printing Support + 0917 LaserJet 3330 + 0924 Modular Smartcard Keyboard + 0941 X500 Optical Mouse + 094a Optical Mouse [672662-001] + 0a01 ScanJet 2400c + 0a17 color LaserJet 3700 + 0b01 ScanJet 82x0C + 0b0c Wireless Keyboard and Optical Mouse receiver + 0b17 LaserJet 2300d + 0c17 LaserJet 1010 + 0c24 Bluetooth Dongle + 0d12 OfficeJet 9100 series + 0d17 LaserJet 1012 + 0d4a SK-2025 Keyboard + 0e17 LaserJet 1015 + 0f0c Wireless Keyboard and Optical Mouse receiver + 0f11 OfficeJet V40 + 0f12 Printing Support + 0f17 LaserJet 1150 + 0f2a LaserJet 400 color M451dn + 1001 Photo Scanner 1000 + 1002 PhotoSmart 140 series + 1004 DeskJet 970c/970cse + 1005 ScanJet 5400c + 1011 OfficeJet V40xi + 1016 Jornada 548 / iPAQ HW6515 Pocket PC + 1017 LaserJet 1300 + 1024 Smart Card Keyboard + 1027 Virtual keyboard and mouse + 102a LaserJet Professional P 1102w + 1102 PhotoSmart 240 series + 1104 DeskJet 959c + 1105 ScanJet 5470c/5490c + 1111 OfficeJet v60 + 1116 Jornada 568 Pocket PC + 1117 LaserJet 1300n + 1151 PSC-750xi Printer/Scanner/Copier + 1198 HID-compliant mouse + 1202 PhotoSmart 320 series + 1204 DeskJet 930c + 1205 ScanJet 4500C/5550C + 1211 OfficeJet v60xi + 1217 LaserJet 2300L + 1227 Virtual CD-ROM + 1302 PhotoSmart 370 series + 1305 ScanJet 4570c + 1311 OfficeJet V30 + 1312 DeskJet 460 + 1317 LaserJet 1005 + 1327 iLO Virtual Hub + 134a Optical Mouse + 1405 ScanJet 3670 + 1411 PSC 750 + 1424 f2105 Monitor Hub + 1502 PhotoSmart 420 series + 1504 DeskJet 920c + 150c Mood Lighting (Microchip Technology Inc.) + 1511 PSC 750xi + 1512 Printing Support + 1517 color LaserJet 3500 + 1524 Smart Card Keyboard - KR + 1539 Mini Magnetic Stripe Reader + 1541 Prime [G8X92AA] + 154a Laser Mouse + 1602 PhotoSmart 330 series + 1604 DeskJet 940c + 1605 ScanJet 5530C PhotoSmart + 1611 psc 780 + 1617 LaserJet 3015 + 161d Wireless Rechargeable Optical Mouse (HID) + 1624 Smart Card Keyboard - JP + 1647 Z27n G2 Monitor Hub + 1702 PhotoSmart 380 series + 1704 DeskJet 948C + 1705 ScanJet 5590 + 1711 psc 780xi + 1712 Printing Support + 1717 LaserJet 3020 + 171d Bluetooth 2.0 Interface [Broadcom BCM2045] + 1801 Inkjet P-2000U + 1802 PhotoSmart 470 series + 1804 DeskJet 916C + 1805 ScanJet 7650 + 1811 PSC 720 + 1812 OfficeJet Pro K550 + 1817 LaserJet 3030 + 181d Bluetooth 2.0 Interface + 1902 PhotoSmart A430 series + 1904 DeskJet 3820 + 1911 OfficeJet V45 + 1917 LaserJet 3380 + 1a02 PhotoSmart A510 series + 1a11 OfficeJet 5100 series + 1a17 color LaserJet 4650 + 1b02 PhotoSmart A610 series + 1b04 DeskJet 3810 + 1b05 ScanJet 4850C/4890C + 1b07 Premium Starter Webcam + 1c02 PhotoSmart A710 series + 1c17 Color LaserJet 2550l + 1d02 PhotoSmart A310 series + 1d17 LaserJet 1320 + 1d24 Barcode scanner + 1e02 PhotoSmart A320 Printer series + 1e11 PSC-950 + 1e17 LaserJet 1160 series + 1f02 PhotoSmart A440 Printer series + 1f11 PSC 920 + 1f12 OfficeJet Pro K5300 + 1f17 color LaserJet 5550 + 1f1d un2400 Gobi Wireless Modem + 2001 Floppy + 2002 Hub + 2004 DeskJet 640c + 2005 ScanJet 3570c + 2012 OfficeJet Pro K5400 + 201d un2400 Gobi Wireless Modem (QDL mode) + 2039 Cashdrawer + 2102 PhotoSmart 7345 + 2104 DeskJet 630c + 2112 OfficeJet Pro L7500 + 211d Sierra MC5725 [ev2210] + 2202 PhotoSmart 7600 series + 2205 ScanJet 3500c + 2212 OfficeJet Pro L7600 + 2217 color LaserJet 9500 MFP + 222a LaserJet Pro MFP M125nw + 2302 PhotoSmart 7600 series + 2304 DeskJet 656c + 2305 ScanJet 3970c + 2311 OfficeJet d series + 2312 OfficeJet Pro L7700 + 2317 LaserJet 4350 + 231d Broadcom 2070 Bluetooth Combo + 2402 PhotoSmart 7700 series + 2404 Deskjet F2280 series + 2405 ScanJet 4070 PhotoSmart + 2417 LaserJet 4250 + 241d Gobi 2000 Wireless Modem (QDL mode) + 2424 LP1965 19" Monitor Hub + 2441 Prime G2 [2AP18AA] + 2502 PhotoSmart 7700 series + 2504 DeskJet F4200 series + 2505 ScanJet 3770 + 2512 OfficeJet Pro L7300 / Compaq LA2405 series monitor + 2514 4-port hub + 2517 LaserJet 2410 + 251d Gobi 2000 Wireless Modem + 2524 LP3065 30" Monitor Hub + 2602 PhotoSmart A520 series + 2605 ScanJet 3800c + 2611 OfficeJet 7100 series + 2617 Color LaserJet 2820 series + 2624 Pole Display (HP522 2 x 20 Line Display) + 2702 PhotoSmart A620 series + 2704 DeskJet 915 + 2717 Color LaserJet 2830 + 2724 Magnetic Stripe Reader IDRA-334133-HP + 2805 Scanjet G2710 + 2811 PSC-2100 + 2817 Color LaserJet 2840 + 2841 OMEN MINDFRAME [3XT27AA] + 2902 PhotoSmart A820 series + 2911 PSC 2200 + 2917 LaserJet 2420 + 2a11 PSC 2150 series + 2a17 LaserJet 2430 + 2a1d Integrated Module with Bluetooth 2.1 Wireless technology + 2b11 PSC 2170 series + 2b17 LaserJet 1020 + 2b4a Business Slim Keyboard + 2c12 Officejet J4680 + 2c17 LaserJet 1022 + 2c24 Logitech M-UAL-96 Mouse + 2d05 Scanjet 7000 + 2d11 OfficeJet 6110 + 2d17 Printing Support + 2e11 PSC 1000 + 2e17 LaserJet 2600n + 2e24 LP2275w Monitor Hub + 2f11 PSC 1200 + 2f17 Color LaserJet 2605dn + 2f24 LP2475w Monitor Hub + 3002 PhotoSmart P1000 + 3004 DeskJet 980c + 3005 ScanJet 4670v + 3011 PSC 1100 series + 3017 Printing Support + 304a Slim Keyboard + 3102 PhotoSmart P1100 Printer w/ Card Reader + 3104 DeskJet 960c + 3111 OfficeJet 4100 series + 3117 EWS 2605dtn + 311d Atheros AR9285 Malbec Bluetooth Adapter + 312a LaserJet Pro M701n + 3202 PhotoSmart 1215 + 3207 4 GB flash drive + 3211 OfficeJet 4105 series + 3217 LaserJet 3050 + 3302 PhotoSmart 1218 + 3304 DeskJet 990c + 3307 v125w Stick + 3312 OfficeJet J6410 + 3317 LaserJet 3052 + 3402 PhotoSmart 1115 + 3404 DeskJet 6122 + 3417 LaserJet 3055 + 3502 PhotoSmart 230 + 3504 DeskJet 6127c + 3511 PSC 2300 + 3517 LaserJet 3390 + 354a Slim Keyboard + 3602 PhotoSmart 1315 + 3611 PSC 2410 PhotoSmart + 3612 Officejet Pro 8000 A809 + 3617 Color LaserJet 2605 + 3711 PSC 2500 + 3717 EWS UPD + 3724 Webcam + 3802 PhotoSmart 100 + 3807 c485w Flash Drive + 3817 LaserJet P2015 series + 3902 PhotoSmart 130 + 3912 Officejet Pro 8500 + 3917 LaserJet P2014 + 3a02 PhotoSmart 7150 + 3a11 OfficeJet 5500 series + 3a17 Printing Support + 3a1d hs2340 HSPA+ mobile broadband + 3b02 PhotoSmart 7150~ + 3b05 Scanjet N8460 + 3b11 PSC 1300 series + 3b17 LaserJet M1005 MFP + 3b2a Color LaserJet MFP M277dw + 3c02 PhotoSmart 7350 + 3c05 Scanjet Professional 1000 Mobile Scanner + 3c11 PSC 1358 + 3c17 EWS UPD + 3d02 PhotoSmart 7350~ + 3d11 OfficeJet 4215 + 3d17 LaserJet P1005 + 3e02 PhotoSmart 7550 + 3e17 LaserJet P1006 + 3f02 PhotoSmart 7550~ + 3f11 PSC-1315/PSC-1317 + 3f17 Laserjet P1505 + 4002 PhotoSmart 635/715/720/735/935/E337 (storage) + 4004 CP1160 + 4102 PhotoSmart 618 + 4105 ScanJet 4370 + 4111 OfficeJet 7200 series + 4117 LaserJet 1018 + 4202 PhotoSmart 812 + 4205 ScanJet G3010 + 4211 OfficeJet 7300 series + 4217 EWS CM1015 + 4302 PhotoSmart 850 (ptp) + 4305 ScanJet G3110 + 4311 OfficeJet 7400 series + 4317 Color LaserJet CM1017 + 4402 PhotoSmart 935 (ptp) + 4417 EWS UPD + 4502 PhotoSmart 945 (PTP mode) + 4505 ScanJet G4010 + 4507 External HDD + 4511 PhotoSmart 2600 + 4512 E709n [Officejet 6500 Wireless] + 4517 EWS UPD + 4605 ScanJet G4050 + 4611 PhotoSmart 2700 + 4717 Color LaserJet CP1215 + 4811 PSC 1600 + 4911 PSC 2350 + 4b11 OfficeJet 6200 + 4c11 PSC 1500 series + 4c17 EWS UPD + 4d11 PSC 1400 + 4d17 EWS UPD + 4e11 PhotoSmart 2570 series + 4f11 OfficeJet 5600 (USBHUB) + 4f17 Color LaserJet CM1312 MFP + 5004 DeskJet 995c + 5011 PhotoSmart 3100 series + 5017 EWS UPD + 5111 PhotoSmart 3200 series + 5211 PhotoSmart 3300 series + 5307 v165w Stick + 5311 OfficeJet 6300 + 5312 Officejet Pro 8500A + 5317 Color LaserJet CP2025 series + 5411 OfficeJet 4300 + 5511 DeskJet F300 series + 5611 PhotoSmart C3180 + 5617 LaserJet M1120 MFP + 5711 PhotoSmart C4100 series + 5717 LaserJet M1120n MFP + 5811 PhotoSmart C5100 series + 5817 LaserJet M1319f MFP + 581d lt4112 Gobi 4G Module Network Device + 5911 PhotoSmart C6180 + 5912 Officejet Pro 8600 + 5a11 PhotoSmart C7100 series + 5b11 OfficeJet J2100 series + 5b12 Officejet Pro 8100 + 5c11 PhotoSmart C4200 Printer series + 5c12 OfficeJet 6700 + 5c17 LaserJet P2055 series + 5d11 PhotoSmart C5200 series + 5e11 PhotoSmart D7400 series + 6004 DeskJet 5550 + 6102 Hewlett Packard Digital Camera + 6104 DeskJet 5650c + 6117 color LaserJet 3550 + 6202 PhotoSmart 215 + 6204 DeskJet 5150c + 6217 Color LaserJet 4700 + 6302 PhotoSmart 318/612 + 6317 Color LaserJet 4730mfp + 632a LaserJet M203-M206 + 6402 PhotoSmart 715 (ptp) + 6411 PhotoSmart C8100 series + 6417 LaserJet 5200 + 6502 PhotoSmart 120 (ptp) + 6511 PhotoSmart C7200 series + 6602 PhotoSmart 320 + 6611 PhotoSmart C4380 series + 6617 LaserJet 5200L + 6702 PhotoSmart 720 (ptp) + 6717 Color LaserJet 3000 + 6802 PhotoSmart 620 (ptp) + 6811 PhotoSmart D5300 series + 6817 Color LaserJet 3800 + 6911 PhotoSmart D7200 series + 6917 Color LaserJet 3600 + 6a02 PhotoSmart 735 (ptp) + 6a11 PhotoSmart C6200 series + 6a17 LaserJet 4240 + 6b02 PhotoSmart R707 (PTP mode) + 6b11 Photosmart C4500 series + 6c11 Photosmart C4480 + 6c17 Color LaserJet 4610 + 6f17 Color LaserJet CP6015 series + 7004 DeskJet 3320c + 7102 PhotoSmart 635 (PTP mode) + 7104 DeskJet 3420c + 7117 CM8060 Color MFP with Edgeline Technology + 7202 PhotoSmart 43x (ptp) + 7204 DeskJet 36xx + 7217 LaserJet M5035 MFP + 7302 PhotoSmart M307 (PTP mode) + 7304 DeskJet 35xx + 7311 Photosmart Premium C309 + 7317 LaserJet P3005 + 7404 Printing Support + 7417 LaserJet M4345 MFP + 7504 Printing Support + 7517 LaserJet M3035 MFP + 7604 DeskJet 3940 + 7611 DeskJet F2492 All-in-One + 7617 LaserJet P3004 + 7702 PhotoSmart R817 (PTP mode) + 7704 DeskJet D4100 + 7717 CM8050 Color MFP with Edgeline Technology + 7804 DeskJet D1360 + 7817 Color LaserJet CP3505 + 7917 LaserJet M5025 MFP + 7a02 PhotoSmart M415 (PTP mode) + 7a04 DeskJet D2460 + 7a11 Photosmart B109 + 7a17 LaserJet M3027 MFP + 7b02 PhotoSmart M23 (PTP mode) + 7b17 Color LaserJet CP4005 + 7c17 Color LaserJet CM6040 series + 7d04 DeskJet F2100 Printer series + 7d17 Color LaserJet CM4730 MFP + 7e04 DeskJet F4100 Printer series + 8017 LaserJet P4515 + 8104 Printing Support + 8117 LaserJet P4015 + 811c Ethernet HN210E + 8204 Printing Support + 8207 FHA-3510 2.4GHz Wireless Optical Mobile Mouse + 8217 LaserJet P4014 + 8317 LaserJet M9050 MFP + 8404 DeskJet 6800 series + 8417 LaserJet M9040 MFP + 8504 DeskJet 6600 series + 8604 DeskJet 5440 + 8607 Optical Mobile Mouse + 8704 DeskJet 5940 + 8711 Deskjet 2050 J510 + 8804 DeskJet 6980 series + 8904 DeskJet 6940 series + 8911 Deskjet 1050 J410 + 8c07 Digital Stereo Headset + 8c11 Deskjet F4500 series + 9002 PhotoSmart M437 + 9102 PhotoSmart M537 + 9207 HD-4110 Webcam + 9302 PhotoSmart R930 series + 9402 PhotoSmart R837 + 942a LaserJet Pro M12a + 9502 PhotoSmart R840 series + 952a LaserJet Pro M12w + 9602 PhotoSmart M730 series + 9702 PhotoSmart R740 series + 9802 PhotoSmart Mz60 series + 9902 PhotoSmart M630 series + 9a02 PhotoSmart E330 series + 9b02 PhotoSmart M540 series + 9b07 Portable Drive + 9c02 PhotoSmart M440 series + a004 DeskJet 5850c + a011 Deskjet 3050A + a407 Wireless Optical Comfort Mouse + b002 PhotoSmart 7200 series + b102 PhotoSmart 7200 series + b107 v255w/c310w Flash Drive + b116 Webcam + b202 PhotoSmart 7600 series + b302 PhotoSmart 7600 series + b402 PhotoSmart 7700 series + b502 PhotoSmart 7700 series + b602 PhotoSmart 7900 series + b702 PhotoSmart 7900 series + b802 PhotoSmart 7400 series + b902 PhotoSmart 7800 series + ba02 PhotoSmart 8100 series + bb02 PhotoSmart 8400 series + bc02 PhotoSmart 8700 series + bc11 Photosmart 7520 series + bd02 PhotoSmart Pro B9100 series + bef4 NEC Picty760 + c002 PhotoSmart 7800 series + c102 PhotoSmart 8000 series + c111 Deskjet 1510 + c202 PhotoSmart 8200 series + c211 Deskjet 2540 series + c302 DeskJet D2300 + c402 PhotoSmart D5100 series + c502 PhotoSmart D6100 series + c602 PhotoSmart D7100 series + c702 PhotoSmart D7300 series + c802 PhotoSmart D5060 Printer + d104 Bluetooth Dongle + d507 39gII [NW249AA] + efbe NEC Picty900 + f0be NEC Picty920 + f1be NEC Picty800 +03f1 Genoa Technology +03f2 Oak Technology, Inc. +03f3 Adaptec, Inc. + 0020 AWN-8020 WLAN [Intersil PRISM 2.5] + 0080 AVC-1100 Audio Capture + 0083 AVC-2200 Device + 0087 AVC-2210 Loader + 0088 AVC-2210 Device + 008b AVC-2310 Loader + 008c AVC-2310 Device + 0094 eHome Infrared Receiver + 009b AVC-1410 GameBridge TV NTSC + 2000 USBXchange + 2001 USBXchange Adapter + 2002 USB2-Xchange + 2003 USB2-Xchange Adapter + 4000 4-port hub + adcc Composite Device Support +03f4 Diebold, Inc. +03f5 Siemens Electromechanical +03f8 Epson Imaging Technology Center +03f9 KeyTronic Corp. + 0100 KT-2001 Keyboard + 0101 Keyboard + 0102 Keyboard Mouse +03fb OPTi, Inc. +03fc Elitegroup Computer Systems +03fd Xilinx, Inc. + 0008 Platform Cable USB II + 0050 dfu downloader +03fe Farallon Comunications +0400 National Semiconductor Corp. + 05dc Rigol Technologies DS1000USB Oscilloscope + 0807 Bluetooth Dongle + 080a Bluetooth Device + 09c4 Rigol Technologies DG1022 Arbitrary Waveform Generator + 1000 Mustek BearPaw 1200 Scanner + 1001 Mustek BearPaw 2400 Scanner + 1237 Hub + a000 Smart Display Reference Device + c359 Logitech Harmony + c35b Printing Support + c55d Rigol Technologies DS5000USB Oscilloscope +0401 National Registry, Inc. +0402 ALi Corp. + 5462 M5462 IDE Controller + 5602 M5602 Video Camera Controller + 5603 M5603 Video Camera Controller + 5606 M5606 Video Camera Controller [UVC] + 5621 M5621 High-Speed IDE Controller + 5623 M5623 Scanner Controller + 5627 Welland ME-740PS USB2 3.5" Power Saving Enclosure + 5632 M5632 Host-to-Host Link + 5635 M5635 Flash Card Reader + 5636 USB 2.0 Storage Device + 5637 M5637 IDE Controller + 5642 Storage Device + 5661 M5661 MP3 player + 5667 M5667 MP3 player + 8841 Newmine Camera + 9665 Gateway Webcam +0403 Future Technology Devices International, Ltd + 0000 H4SMK 7 Port Hub / Bricked Counterfeit FT232 Serial (UART) IC + 0232 Serial Converter + 1060 JTAG adapter + 1234 IronLogic RFID Adapter [Z-2 USB] + 1235 Iron Logic Z-397 RS-485/422 converter + 6001 FT232 Serial (UART) IC + 6002 Lumel PD12 + 6007 Serial Converter + 6008 Serial Converter + 6009 Serial Converter + 6010 FT2232C/D/H Dual UART/FIFO IC + 6011 FT4232H Quad HS USB-UART/FIFO IC + 6014 FT232H Single HS USB-UART/FIFO IC + 6015 Bridge(I2C/SPI/UART/FIFO) + 601f Myriad-RF LimeSDR-Mini + 6ee0 EZO Carrier Board + 6f70 HB-RF-USB + 7be8 FT232R + 8028 Dev board JTAG (FT232H based) + 8040 4 Port Hub + 8070 7 Port Hub + 8140 Vehicle Explorer Interface + 8210 MGTimer - MGCC (Vic) Timing System + 8348 FT232BM [SIENNA Serial Interface] + 8370 7 Port Hub + 8371 PS/2 Keyboard And Mouse + 8372 FT8U100AX Serial Port + 8508 Selectronic SP PRO + 87d0 Cressi Dive Computer Interface + 8a28 Rainforest Automation ZigBee Controller + 8a98 TIAO Multi-Protocol Adapter + 8b28 Alpermann+Velte TCI70 + 8b29 Alpermann+Velte TC60 CLS + 8b2a Alpermann+Velte Rubidium Q1 + 8b2b Alpermann+Velte TCD + 8b2c Alpermann+Velte TCC70 + 9090 SNAP Stick 200 + 9132 LCD and Temperature Interface + 9133 CallerID + 9134 Virtual keyboard + 9135 Rotary Pub alarm + 9136 Pulsecounter + 9137 Ledbutton interface + 9e90 Marvell OpenRD Base/Client + 9f08 CIB-1894 Conclusion SmartLink Box: + 9f80 Ewert Energy Systems CANdapter + a6d0 Texas Instruments XDS100v2 JTAG / BeagleBone A3 + a951 HCP HIT GSM/GPRS modem [Cinterion MC55i] + a9a0 FT2232D - Dual UART/FIFO IC - FTDI + abb8 Lego Mindstorms NXTCam + b0c0 microSensys RFID device + b0c1 microSensys RFID device + b0c2 iID contactless RFID device + b0c3 iID contactless RFID device + b0c4 RFID device + b0c5 RFID device + b810 US Interface Navigator (CAT and 2nd PTT lines) + b811 US Interface Navigator (WKEY and FSK lines) + b812 US Interface Navigator (RS232 and CONFIG lines) + b9b0 Fujitsu SK-16FX-100PMC V1.1 + baf8 Amontec JTAGkey + bcd8 Stellaris Development Board + bcd9 Stellaris Evaluation Board + bcda Stellaris ICDI Board + bd90 PICAXE Download Cable [AXE027] + bdc8 Egnite GmbH - JTAG/RS-232 adapter + bfd8 OpenDCC + bfd9 OpenDCC (Sniffer) + bfda OpenDCC (Throttle) + bfdb OpenDCC (Gateway) + bfdc OpenDCC (GBM) + c580 HID UNIKEY dongle [F-Response] + c630 lcd2usb interface + c631 i2c-tiny-usb interface + c632 xu1541 c64 floppy drive interface + c633 TinyCrypt dongle + c634 glcd2usb interface + c7d0 RR-CirKits LocoBuffer-USB + c8b8 Alpermann+Velte MTD TCU + c8b9 Alpermann+Velte MTD TCU 1HE + c8ba Alpermann+Velte Rubidium H1 + c8bb Alpermann+Velte Rubidium H3 + c8bc Alpermann+Velte Rubidium S1 + c8bd Alpermann+Velte Rubidium T1 + c8be Alpermann+Velte Rubidium D1 + c8bf Alpermann+Velte TC60 RLV + cc48 Tactrix OpenPort 1.3 Mitsubishi + cc49 Tactrix OpenPort 1.3 Subaru + cc4a Tactrix OpenPort 1.3 Universal + cff8 Amontec JTAGkey + d010 SCS PTC-IIusb + d011 SCS Position-Tracker/TNC + d012 SCS DRAGON 1 + d013 SCS DRAGON 1 + d388 Xsens converter + d389 Xsens Wireless Receiver + d38a Xsens serial converter + d38b Xsens serial converter + d38c Xsens Wireless Receiver + d38d Xsens Awinda Station + d38e Xsens serial converter + d38f Xsens serial converter + d491 Zolix Omni 1509 monochromator + d578 Accesio USB-COM-4SM + d6f8 UNI Black BOX + d738 Propox JTAGcable II + d739 Propox ISPcable III + d9a9 Actisense USG-1 NMEA Serial Gateway + d9aa Actisense NGT-1 NMEA2000 PC Interface + d9ab Actisense NGT-1 NMEA2000 Gateway + daf4 Qundis Serial Infrared Head + e0d0 Total Phase Aardvark I2C/SPI Host Adapter + e518 IBR IMB-usb + e521 EVER Sinline XL Series UPS + e6c8 PYRAMID Computer GmbH LCD + e700 Elster Unicom III Optical Probe + e729 Segway Robotic Mobility Platforms 200 + e888 Expert ISDN Control USB + e889 USB-RS232 OptoBridge + e88a Expert mouseCLOCK USB II + e88b Precision Clock MSF USB + e88c Expert mouseCLOCK USB II HBG + e8d8 Aaronia AG Spectran Spectrum Analyzer + e8dc Aaronia AG UBBV Preamplifier + ea90 Eclo 1-Wire Adapter + ecd9 miControl miCan-Stick + ed71 HAMEG HO870 Serial Port + ed72 HAMEG HO720 Serial Port + ed73 HAMEG HO730 Serial Port + ed74 HAMEG HO820 Serial Port + eea2 PCStage Lite 32 channel DMX512 Interface + ef10 FT1245BL + f070 Serial Converter 422/485 [Vardaan VEUSB422R3] + f0c8 SPROG Decoder Programmer + f0c9 SPROG-DCC CAN-USB + f0e9 Tagsys L-P101 + f0ee Tagsys Medio P200x + f1a0 Asix PRESTO Programmer + f208 Papenmeier Braille-Display + f3c0 4N-GALAXY Serial Converter + f458 ABACUS ELECTRICS Optical Probe + f608 CTI USB-485-Mini + f60b CTI USB-Nano-485 + f680 Suunto Sports Instrument + f758 GW Instek GDS-8x0 Oscilloscope + f7c0 ZeitControl Cardsystems TagTracer MIFARE + f850 USB-UIRT (Universal Infrared Receiver+Transmitter) + f918 Ant8 Logic Probe + f9d9 Wetterempfanger 147.3kHz + fa00 Matrix Orbital USB Serial + fa01 Matrix Orbital MX2 or MX3 + fa02 Matrix Orbital MX4 or MX5 + fa03 Matrix Orbital VK/LK202 Family + fa04 Matrix Orbital VK/LK204 Family + fa20 Ross-Tech HEX-USB + fc08 Crystalfontz CFA-632 USB LCD + fc09 Crystalfontz CFA-634 USB LCD + fc0b Crystalfontz CFA-633 USB LCD + fc0c Crystalfontz CFA-631 USB LCD + fc0d Crystalfontz CFA-635 USB LCD + fc82 SEMC DSS-20/DSS-25 SyncStation + fd48 ShipModul MiniPlex-4xUSB NMEA Multiplexer + fd49 ShipModul MiniPlex-4xUSB-AIS NMEA Multiplexer + fd4b ShipModul MiniPlex NMEA Multiplexer + ff08 ToolHouse LoopBack Adapter + ff18 ScienceScope Logbook ML + ff19 Logbook Bus + ff1a Logbook Bus + ff1b Logbook Bus + ff1c ScienceScope Logbook LS + ff1d ScienceScope Logbook HS + ff1e Logbook Bus + ff1f Logbook Bus +0404 NCR Corp. + 0202 78XX Scanner + 0203 78XX Scanner - Embedded System + 0310 K590 Printer, Self-Service + 0311 7167 Printer, Receipt/Slip + 0312 7197 Printer Receipt + 0320 5932-USB Keyboard + 0321 5953-USB Dynakey + 0322 5932-USB Enhanced Keyboard + 0323 5932-USB Enhanced Keyboard, Flash-Recovery/Download + 0324 5953-USB Enhanced Dynakey + 0325 5953-USB Enhanced Dynakey Flash-Recovery/Download + 0328 K016: USB-MSR ISO 3-track MSR: POS Standard (See HID pages) + 0329 K018: USB-MSR JIS 2-Track MSR: POS Standard + 032a K016: USB-MSR ISO 3-Track MSR: HID Keyboard Mode + 032b K016/K018: USB-MSR Flash-Recovery/Download +0405 Synopsys, Inc. +0406 Fujitsu-ICL Computers +0407 Fujitsu Personal Systems, Inc. +0408 Quanta Computer, Inc. + 0103 FV TouchCam N1 (Audio) + 030c HP Webcam + 03b2 HP Webcam + 03f4 HP Webcam + 1030 FV TouchCam N1 (Video) + 3000 Optical dual-touch panel + 3001 Optical Touch Screen + 3008 Optical Touch Screen + a060 HD Webcam +0409 NEC Corp. + 0011 PC98 Series Layout Keyboard Mouse + 0012 ATerm IT75DSU ISDN TA + 0014 Japanese Keyboard + 0019 109 Japanese Keyboard with Bus-Powered Hub + 001a PC98 Series Layout Keyboard with Bus-Powered Hub + 0025 Mini Keyboard with Bus-Powered Hub + 0027 MultiSync Monitor + 002c Clik!-USB Drive + 0034 109 Japanese Keyboard with One-touch start buttons + 003f Wireless Keyboard with One-touch start buttons + 0040 Floppy + 004e SuperScript 1400 Series + 004f Wireless Keyboard with One-touch start buttons + 0050 7-port hub + 0058 HighSpeed Hub + 0059 HighSpeed Hub + 005a HighSpeed Hub + 006a Conceptronic USB Harddisk Box + 007d MINICUBE2 + 007e PG-FP5 Flash Memory Programmer + 0081 SuperScript 1400 Series + 0082 SuperScript 1400 Series + 0094 Japanese Keyboard with One-touch start buttons + 0095 Japanese Keyboard + 00a9 AtermIT21L 128K Support Standard + 00aa AtermITX72 128K Support Standard + 00ab AtermITX62 128K Support Standard + 00ac AtermIT42 128K Support Standard + 00ae INSMATEV70G-MAX Standard + 00af AtermITX70 128K Support Standard + 00b0 AtermITX80 128K Support Standard + 00b2 AtermITX80D 128K Support Standard + 00c0 Wireless Remocon + 00f7 Smart Display PK-SD10 + 011d e228 Mobile Phone + 0193 RVT-R Writer + 0203 HID Audio Controls + 021d Aterm WL54SU2 802.11g Wireless Adapter [Atheros AR5523] + 0248 Aterm PA-WL54GU + 0249 Aterm WL300NU-G + 02b4 Aterm WL300NU-AG + 02b6 Aterm WL300NU-GS 802.11n Wireless Adapter + 02bc Computer Monitor + 0300 LifeTouch Note + 0301 LifeTouch Note (debug mode) + 55aa Hub + 55ab Hub [iMac/iTouch kbd] + 8010 Intellibase Hub + 8011 Intellibase Hub + efbe P!cty 900 [HP DJ] + f0be P!cty 920 [HP DJ 812c] +040a Kodak Co. + 0001 DVC-323 + 0002 DVC-325 + 0100 DC-220 + 0110 DC-260 + 0111 DC-265 + 0112 DC-290 + 0120 DC-240 + 0121 DC-240 (PTP firmware) + 0130 DC-280 + 0131 DC-5000 + 0132 DC-3400 + 0140 DC-4800 + 0160 DC4800 + 0170 DX3900 + 0200 Digital Camera + 0300 EZ-200 + 0400 MC3 + 0402 Digital Camera + 0403 Z7590 + 0500 DX3500 + 0510 DX3600 + 0525 DX3215 + 0530 DX3700 + 0535 EasyShare CX4230 Camera + 0540 LS420 + 0550 DX4900 + 0555 DX4330 + 0560 CX4200 + 0565 CX4210 + 0566 CX4300 + 0567 LS753 + 0568 LS443 + 0569 LS663 + 0570 DX6340 + 0571 CX6330 + 0572 DX6440 + 0573 CX6230 + 0574 CX6200 + 0575 DX6490 + 0576 DX4530 + 0577 DX7630 + 0578 CX7300/CX7310 + 0579 CX7220 + 057a CX7330 + 057b CX7430 + 057c CX7530 + 057d DX7440 + 057e C300 + 057f DX7590 + 0580 Z730 + 0581 Digital Camera + 0582 Digital Camera + 0583 Digital Camera + 0584 CX6445 + 0585 Digital Camera + 0586 CX7525 + 0587 Digital Camera + 0588 Digital Camera + 0589 EasyShare C360 + 058a C310 + 058b Digital Camera + 058c C330 + 058d C340 + 058e V530 + 058f V550 + 0590 Digital Camera + 0591 Digital Camera + 0592 Digital Camera + 0593 Digital Camera + 0594 Digital Camera + 0595 Digital Camera + 0596 Digital Camera + 0597 Digital Camera + 0598 EASYSHARE M1033 digital camera + 0599 Digital Camera + 059a Digital Camera + 059b Digital Camera + 059c Digital Camera + 059d Digital Camera + 059e Digital Camera + 059f Digital Camera + 05a0 Digital Camera + 05a1 Digital Camera + 05a2 Digital Camera + 05a3 Digital Camera + 05a4 Digital Camera + 05a5 Digital Camera + 05a6 Digital Camera + 05a7 Digital Camera + 05a8 Digital Camera + 05a9 Digital Camera + 05aa Digital Camera + 05ab Digital Camera + 05ac Digital Camera + 05ad Digital Camera + 05ae Digital Camera + 05af Digital Camera + 05b0 Digital Camera + 05b1 Digital Camera + 05b2 Digital Camera + 05b3 EasyShare Z710 Camera + 05b4 Digital Camera + 05b5 Digital Camera + 05b6 Digital Camera + 05b7 Digital Camera + 05b8 Digital Camera + 05b9 Digital Camera + 05ba Digital Camera + 05bb Digital Camera + 05bc Digital Camera + 05bd Digital Camera + 05be Digital Camera + 05bf Digital Camera + 05c0 Digital Camera + 05c1 Digital Camera + 05c2 Digital Camera + 05c3 Digital Camera + 05c4 Digital Camera + 05c5 Digital Camera + 05c8 EASYSHARE Z1485 IS Digital Camera + 05d3 EasyShare M320 Camera + 05d4 EasyShare C180 Digital Camera + 1001 EasyShare SV811 Digital Picture Frame + 4000 InkJet Color Printer + 4021 Photo Printer 6800 + 4022 1400 Digital Photo Printer + 4023 Photo Printer 8800 / 9810 + 402b Photo Printer 6850 + 402e 605 Photo Printer + 4034 805 Photo Printer + 4035 7000 Photo Printer + 4037 7010 Photo Printer + 4038 7015 Photo Printer + 404d 8810 Photo Printer + 404f 305 Photo Printer + 4056 ESP 7200 Series AiO + 4109 EasyShare Printer Dock Series 3 + 410d EasyShare G600 Printer Dock + 5010 Wireless Adapter + 5012 DBT-220 Bluetooth Adapter + 6001 i30 + 6002 i40 + 6003 i50 + 6004 i60 + 6005 i80 + 6029 i900 + 602a i900 +040b Weltrend Semiconductor + 0a68 Func MS-3 gaming mouse [WT6573F MCU] + 2000 wired Keyboard [Dynex DX-WRK1401] + 2367 Human Interface Device [HP CalcPad 200 Calculator and Numeric Keypad] + 6510 Weltrend Bar Code Reader + 6520 Xploder Xbox Memory Unit (8MB) + 6533 Speed-Link Competition Pro + 6543 Manhattan Magnetic Card Strip Reader +040c VTech Computers, Ltd +040d VIA Technologies, Inc. + 3184 VNT VT6656 USB-802.11 Wireless LAN Adapter + 340f Audinst HUD-mx2 + 6205 USB 2.0 Card Reader +040e MCCI +040f Echo Speech Corp. +0411 BUFFALO INC. (formerly MelCo., Inc.) + 0001 LUA-TX Ethernet [pegasus] + 0005 LUA-TX Ethernet + 0006 WLI-USB-L11 Wireless LAN Adapter + 0009 LUA2-TX Ethernet + 000b WLI-USB-L11G-WR Wireless LAN Adapter + 000d WLI-USB-L11G Wireless LAN Adapter + 0012 LUA-KTX Ethernet + 0013 USB2-IDE Adapter + 0016 WLI-USB-S11 802.11b Adapter + 0018 USB2-IDE Adapter + 001c USB-IDE Bridge: DUB-PxxG + 0027 WLI-USB-KS11G 802.11b Adapter + 002a SMSC USB97C202 "HD-HB300V2-EU" + 003d LUA-U2-KTX Ethernet + 0044 WLI-USB-KB11 Wireless LAN Adapter + 004b WLI-USB-G54 802.11g Adapter [Broadcom 4320 USB] + 004d WLI-USB-B11 Wireless LAN Adapter + 0050 WLI2-USB2-G54 Wireless LAN Adapter + 005e WLI-U2-KG54-YB WLAN + 0065 Python2 WDM Encoder + 0066 WLI-U2-KG54 WLAN + 0067 WLI-U2-KG54-AI WLAN + 006e LUA-U2-GT 10/100/1000 Ethernet Adapter + 0089 RUF-C/U2 Flash Drive + 008b Nintendo Wi-Fi + 0091 WLI-U2-KAMG54 Wireless LAN Adapter + 0092 WLI-U2-KAMG54 Bootloader + 0097 WLI-U2-KG54-BB + 00a9 WLI-U2-AMG54HP Wireless LAN Adapter + 00aa WLI-U2-AMG54HP Bootloader + 00b3 PC-OP-RS1 RemoteStation + 00bc WLI-U2-KG125S 802.11g Adapter [Broadcom 4320 USB] + 00ca 802.11n Network Adapter + 00cb WLI-U2-G300N 802.11n Adapter + 00d8 WLI-U2-SG54HP + 00d9 WLI-U2-G54HP + 00da WLI-U2-KG54L 802.11bg [ZyDAS ZD1211B] + 00db External Hard Drive HD-PF32OU2 [Buffalo Ministation] + 00e8 WLI-UC-G300N Wireless LAN Adapter [Ralink RT2870] + 00f9 Portable DVD Writer (DVSM-PL58U2) + 0105 External Hard Drive HD-CEU2 [Drive Station] + 012c SATA Bridge + 012e WLI-UC-AG300N Wireless LAN Adapter + 0148 WLI-UC-G300HP Wireless LAN Adapter + 0150 WLP-UC-AG300 Wireless LAN Adapter + 0157 External Hard Drive HD-PEU2 + 0158 WLI-UC-GNHP Wireless LAN Adapter + 015d WLI-UC-GN Wireless LAN Adapter [Ralink RT3070] + 016f WLI-UC-G301N Wireless LAN Adapter [Ralink RT3072] + 017f Sony UWA-BR100 802.11abgn Wireless Adapter [Atheros AR7010+AR9280] + 019e WLI-UC-GNP Wireless LAN Adapter + 01a1 MiniStation Metro + 01a2 WLI-UC-GNM Wireless LAN Adapter [Ralink RT8070] + 01ba SATA Bridge + 01dc Ultra-Slim Portable DVD Writer (DVSM-PC58U2V) + 01de External Hard Drive HD-PCTU3 [Buffalo MiniStation] + 01ea SATA Bridge + 01ee WLI-UC-GNM2 Wireless LAN Adapter [Ralink RT3070] + 01f1 SATA Adapter [HD-LBU3] + 01fd WLI-UC-G450 Wireless LAN Adapter + 027e HD-LCU3 +0412 Award Software International +0413 Leadtek Research, Inc. + 1310 WinFast TV - NTSC + FM + 1311 WinFast TV - NTSC + MTS + FM + 1312 WinFast TV - PAL BG + FM + 1313 WinFast TV - PAL BG+TXT + FM + 1314 WinFast TV Audio - PHP PAL I + 1315 WinFast TV Audio - PHP PAL I+TXT + 1316 WinFast TV Audio - PHP PAL DK + 1317 WinFast TV Audio - PHP PAL DK+TXT + 1318 WinFast TV - PAL I/DK + FM + 1319 WinFast TV - PAL N + FM + 131a WinFast TV Audio - PHP SECAM LL + 131b WinFast TV Audio - PHP SECAM LL+TXT + 131c WinFast TV Audio - PHP SECAM DK + 131d WinFast TV - SECAM DK + TXT + FM + 131e WinFast TV - NTSC Japan + FM + 1320 WinFast TV - NTSC + 1321 WinFast TV - NTSC + MTS + 1322 WinFast TV - PAL BG + 1323 WinFast TV - PAL BG+TXT + 1324 WinFast TV Audio - PHP PAL I + 1325 WinFast TV Audio - PHP PAL I+TXT + 1326 WinFast TV Audio - PHP PAL DK + 1327 WinFast TV Audio - PHP PAL DK+TXT + 1328 WinFast TV - PAL I/DK + 1329 WinFast TV - PAL N + 132a WinFast TV Audio - PHP SECAM LL + 132b WinFast TV Audio - PHP SECAM LL+TXT + 132c WinFast TV Audio - PHP SECAM DK + 132d WinFast TV - SECAM DK + TXT + 132e WinFast TV - NTSC Japan + 6023 EMP Audio Device + 6024 WinFast PalmTop/Novo TV Video + 6025 WinFast DTV Dongle (cold state) + 6026 WinFast DTV Dongle (warm state) + 6029 WinFast DTV Dongle Gold + 6125 WinFast DTV Dongle + 6126 WinFast DTV Dongle BDA Driver + 6a03 RTL2832 [WinFast DTV Dongle Mini] + 6f00 WinFast DTV Dongle (STK7700P based) +0414 Giga-Byte Technology Co., Ltd +0416 Winbond Electronics Corp. + 0035 W89C35 802.11bg WLAN Adapter + 0101 Hub + 0961 AVL Flash Card Reader + 3810 Smart Card Controller + 3811 Generic Controller - Single interface + 3812 Smart Card Controller_2Interface + 3813 Panel Display + 5011 Virtual Com Port + 511b Nuvoton Nu-Link1 ICE + 511c Nuvoton Nu-Link1 ICE + 511d Nuvoton Nu-Link1 ICE/VCOM + 511e Nuvoton Nu-Link1 MSC/VCOM + 5200 Nuvoton Nu-Link2-ME ICE/MSC/VCOM + 5201 Nuvoton Nu-Link2-Pro ICE/MSC/VCOM + 5210 Nuvoton Nu-Link2 MSC FW UPGRADE + 5211 Nuvoton Nu-Link2 HID FW UPGRADE + 5518 4-Port Hub + 551a PC Sync Keypad + 551b PC Async Keypad + 551c Sync Tenkey + 551d Async Tenkey + 551e Keyboard + 551f Keyboard w/ Sys and Media + 5521 Keyboard + 6481 16-bit Scanner + 7721 Memory Stick Reader/Writer + 7722 Memory Stick Reader/Writer + 7723 SD Card Reader + b23c KT108 keyboard + c141 Barcode Scanner +0417 Symbios Logic +0418 AST Research +0419 Samsung Info. Systems America, Inc. + 0001 IrDA Remote Controller / Creative Cordless Mouse + 0600 Desktop Wireless 6000 + 2694 Laila + 3001 Xerox P1202 Laser Printer + 3003 Olivetti PG L12L + 3201 Docuprint P8ex + 3404 SCX-5x12 series + 3406 MFP 830 series + 3407 ML-912 + 3601 InkJet Color Printer + 3602 InkJet Color Printer + 4602 Remote NDIS Network Device + 8001 Hub + 8002 SyncMaster HID Monitor Control + aa03 SDAS-3 MP3 Player +041a Phoenix Technologies, Ltd +041b d'TV +041d S3, Inc. +041e Creative Technology, Ltd + 0414 HS-720 Headset + 1002 Nomad II + 1003 Blaster GamePad Cobra + 1050 GamePad Cobra + 1053 Mouse Gamer HD7600L + 200c MuVo V100 + 2020 Zen X-Fi 2 + 2029 ZiiO + 2801 Prodikeys PC-MIDI multifunction keyboard + 3000 SoundBlaster Extigy + 3002 SB External Composite Device + 3010 SoundBlaster MP3+ + 3014 SB External Composite Device + 3015 Sound Blaster Digital Music LX + 3020 SoundBlaster Audigy 2 NX + 3030 SB External Composite Device + 3040 SoundBlaster Live! 24-bit External SB0490 + 3060 Sound Blaster Audigy 2 ZS External + 3061 SoundBlaster Audigy 2 ZS Video Editor + 3090 Sound Blaster Digital Music SX + 30d0 Xmod + 30d3 Sound Blaster Play! + 3100 IR Receiver (SB0540) + 3121 WoW tap chat + 3220 Sound Blaster Tactic(3D) Sigma sound card + 3232 Sound Blaster Premium HD [SBX] + 3237 SB X-Fi Surround 5.1 Pro + 3241 Sound Blaster JAM + 3263 SB X-Fi Surround 5.1 Pro + 3f00 E-Mu Xboard 25 MIDI Controller + 3f02 E-Mu 0202 + 3f04 E-Mu 0404 + 3f07 E-Mu Xmidi 1x1 + 3f0e Xmidi 1x1 Tab + 4003 VideoBlaster Webcam Go Plus [W9967CF] + 4004 Nomad II MG + 4005 Webcam Blaster Go ES + 4007 Go Mini + 400a PC-Cam 300 + 400b PC-Cam 600 + 400c Webcam 5 [pwc] + 400d Webcam PD1001 + 400f PC-CAM 550 (Composite) + 4011 Webcam PRO eX + 4012 PC-CAM350 + 4013 PC-Cam 750 + 4015 CardCam Value + 4016 CardCam + 4017 Webcam Mobile [PD1090] + 4018 Webcam Vista [PD1100] + 4019 Audio Device + 401a Webcam Vista [PD1100] + 401c Webcam NX [PD1110] + 401d Webcam NX Ultra + 401e Webcam NX Pro + 401f Webcam Notebook [PD1171] + 4020 Webcam NX + 4021 Webcam NX Ultra + 4022 Webcam NX Pro + 4028 Vista Plus cam [VF0090] + 4029 Webcam Live! + 402f DC-CAM 3000Z + 4034 Webcam Instant + 4035 Webcam Instant + 4036 Webcam Live!/Live! Pro + 4037 Webcam Live! + 4038 ORITE CCD Webcam [PC370R] + 4039 Webcam Live! Effects + 403a Webcam NX Pro 2 + 403b Creative Webcam Vista [VF0010] + 403c Webcam Live! Ultra + 403d Webcam Notebook Ultra + 403e Webcam Vista Plus + 4041 Webcam Live! Motion + 4043 Vibra Plus Webcam + 4045 Live! Cam Voice + 4049 Live! Cam Voice + 4051 Live! Cam Notebook Pro [VF0250] + 4052 Live! Cam Vista IM + 4053 Live! Cam Video IM + 4054 Live! Cam Video IM + 4055 Live! Cam Video IM Pro + 4056 Live! Cam Video IM Pro + 4057 Live! Cam Optia + 4058 Live! Cam Optia AF + 405f WebCam Vista (VF0330) + 4061 Live! Cam Notebook Pro [VF0400] + 4063 Live! Cam Video IM Pro + 4068 Live! Cam Notebook [VF0470] + 406c Live! Cam Sync [VF0520] + 4083 Live! Cam Socialize [VF0640] + 4087 Live! Cam Socialize HD 1080 [VF0680] + 4088 Live! Cam Chat HD [VF0700] + 4095 Live! Cam Sync HD [VF0770] + 4097 Live! Cam Chat HD [VF0700] + 4099 Creative VF0800 [RealSense Camera SR300] + 4100 Nomad Jukebox 2 + 4101 Nomad Jukebox 3 + 4102 NOMAD MuVo^2 + 4106 Nomad MuVo + 4107 NOMAD MuVo + 4108 Nomad Jukebox Zen + 4109 Nomad Jukebox Zen NX + 410b Nomad Jukebox Zen USB 2.0 + 410c Nomad MuVo NX + 410f NOMAD MuVo^2 (Flash) + 4110 Nomad Jukebox Zen Xtra + 4111 Dell Digital Jukebox + 4116 MuVo^2 + 4117 Nomad MuVo TX + 411b Zen Touch + 411c Nomad MuVo USB 2.0 + 411d Zen + 411e Zen Micro + 4120 Nomad MuVo TX FM + 4123 Zen Portable Media Center + 4124 MuVo^2 FM (uHDD) + 4126 Dell DJ (2nd gen) + 4127 Dell DJ + 4128 NOMAD Jukebox Zen Xtra (mtp) + 412b MuVo N200 with FM radio + 412f Dell Digital Jukebox 2.Gen + 4130 Zen Micro (mtp) + 4131 DAP-HD0014 [Zen Touch] (MTP) + 4133 Mass Storage Device + 4134 Zen Neeon + 4136 Zen Sleek + 4137 Zen Sleek (mtp) + 4139 Zen Nano Plus + 413c Zen MicroPhoto + 4150 Zen V (MTP) + 4151 Zen Vision:M (mtp) + 4152 Zen V Plus + 4153 Zen Vision W + 4154 Zen Stone + 4155 Zen Stone plus + 4157 Zen (MTP) + 500f Broadband Blaster 8012U-V + 5015 TECOM Bluetooth Device + ffff Webcam Live! Ultra +041f LCS Telegraphics +0420 Chips and Technologies + 1307 Celly SIM Card Reader +0421 Nokia Mobile Phones + 0001 E61i (PC Suite mode) + 0018 6288 GSM Smartphone + 0019 6288 GSM Smartphone (imaging mode) + 001a 6288 GSM Smartphone (file transfer mode) + 0024 5610 XpressMusic (Storage mode) + 0025 5610 XpressMusic (PC Suite mode) + 0028 5610 XpressMusic (Imaging mode) + 002d 6120 Phone (Mass storage mode) + 002e 6120 Phone (Media-Player mode) + 002f 6120 Phone (PC-Suite mode) + 0042 E51 (PC Suite mode) + 0064 3109c GSM Phone + 006b 5310 Xpress Music (PC Suite mode) + 006c 5310 Xpress music (Storage mode) + 006d N95 (Storage mode) + 006e N95 (Multimedia mode) + 006f N95 (Printing mode) + 0070 N95 (PC Suite mode) + 0096 N810 Internet Tablet + 00aa E71 (Mass storage mode) + 00ab E71 (PC Suite mode) + 00e4 E71 (Media transfer mode) + 0103 ADL Flashing Engine AVALON Parent + 0104 ADL Re-Flashing Engine Parent + 0105 Nokia Firmware Upgrade Mode + 0106 ROM Parent + 010d E75 (Storage Mode) + 010e E75 (PC Suite mode) + 010f E75 (Media transfer mode) + 0110 E75 (Imaging Mode) + 0154 5800 XpressMusic (PC Suite mode) + 0155 5800 XpressMusic (Multimedia mode) + 0156 5800 XpressMusic (Storage mode) + 0157 5800 XpressMusic (Imaging mode) + 0189 N810 Internet Tablet WiMAX + 0199 6700 Classic (msc) + 019a 6700 Classic (PC Suite) + 019b 6700 Classic (mtp) + 01b0 6303 classic Phone (PC Suite mode) + 01b1 6303 classic Phone (Mass storage mode) + 01b2 6303 classic Phone (Printing and media mode) + 01c7 N900 (Storage Mode) + 01c8 N900/N950 (PC-Suite Mode) + 0228 5530 XpressMusic + 023a 6730 Classic + 026a N97 (mass storage) + 026b N97 (Multimedia) + 026c N97 (PC Suite) + 026d N97 (Pictures) + 0295 660i/6600i Slide Phone (Mass Storage) + 0297 660i/6600i Slide Phone (Still Image) + 02e1 5230 (Storage mode) + 02e2 5230 (Multimedia mode) + 02e3 5230 (PC-Suite mode) + 02e4 5230 (Imaging mode) + 0360 C1-01 Ovi Suite Mode + 0396 C7-00 (Modem mode) + 03a4 C5 (Storage mode) + 03c0 C7-00 (Mass storage mode) + 03c1 C7-00 (Media transfer mode) + 03c2 Sim + 03cd C7-00 (Nokia Suite mode) + 03d1 N950 (Storage Mode) + 03d2 N950 (PC Suite mode) + 0400 7600 Phone Parent + 0401 6650 GSM Phone + 0402 6255 Phone Parent + 0404 5510 + 0405 9500 GSM Communicator + 0407 Music Player HDR-1(tm) + 040b N-Gage GSM Phone + 040d 6620 Phone Parent + 040e 6651 Phone Parent + 040f 6230 GSM Phone + 0410 6630 Imaging Smartphone + 0411 7610 Phone Parent + 0413 6260 Phone Parent + 0414 7370 + 0415 9300 GSM Smartphone + 0416 6170 Phone Parent + 0417 7270 Phone Parent + 0418 E70 (PC Suite mode) + 0419 E60 (PC Suite mode) + 041a 9500 GSM Communicator (RNDIS) + 041b 9300 GSM Smartphone (RNDIS) + 041c 7710 Phone Parent + 041d 6670 Phone Parent + 041e 6680 + 041f 6235 Phone Parent + 0421 3230 Phone Parent + 0422 6681 Phone Parent + 0423 6682 Phone Parent + 0428 6230i Modem + 0429 6230i MultiMedia Card + 0431 770/N800 Internet Tablet + 0432 N90 Phone Parent + 0435 E70 (IP Passthrough/RNDIS mode) + 0436 E60 (IP Passthrough/RNDIS mode) + 0437 6265 Phone Parent + 043a N70 USB Phone Parent + 043b 3155 Phone Parent + 043c 6155 Phone Parent + 043d 6270 Phone Parent + 0443 N70 Phone Parent + 0444 N91 + 044c NM850iG Phone Parent + 044d E61 (PC Suite mode) + 044e E61 (Data Exchange mode) + 044f E61 (IP Passthrough/RNDIS mode) + 0453 9300 Phone Parent + 0456 6111 Phone Parent + 0457 6111 Phone (Printing mode) + 045a 6280 Phone Parent + 045d 6282 Phone Parent + 046e 6110 Navigator + 0471 6110 Navigator + 0485 MTP Device + 04b9 5300 + 04bc 5200 (Nokia mode) + 04bd 5200 (Storage mode) + 04be 5200 (MTP mode) + 04c3 N800 Internet Tablet + 04ce E90 Communicator (PC Suite mode) + 04cf E90 Communicator (Storage mode) + 04f0 Nokia N95 (PC Suite mode) + 04f9 6300 (PC Suite mode) + 0508 E65 (PC Suite mode) + 0509 E65 (Storage mode) + 0518 N9 (Storage mode) + 0519 N9 (RNDIS/Ethernet mode) + 051a N9 (PC Suite mode) + 054d C2-01 + 0600 Digital Pen SU-1B + 0610 CS-15 (Internet Stick 3G modem) + 0661 Lumia 620/920 + 0662 301 Dual SIM (Mass Storage) + 0663 301 Dual SIM + 069a 130 [RM-1035] (Charging only) + 06fc Lumia 640 Phone + 0720 X (RM-980) + 0800 Connectivity Cable DKU-5 + 0801 Data Cable DKU-6 + 0802 CA-42 Phone Parent +0422 ADI Systems, Inc. +0423 Computer Access Technology Corp. + 000a NetMate Ethernet + 000c NetMate2 Ethernet + 000d USB Chief Analyzer + 0100 Generic Universal Protocol Analyzer + 0101 UPA USBTracer + 0200 Generic 10K Universal Protocol Analyzer + 020a PETracer ML + 0300 Generic Universal Protocol Analyzer + 0301 2500H Tracer Trainer + 030a PETracer x1 + 1237 Andromeda Hub +0424 Microchip Technology, Inc. (formerly SMSC) + 0001 Integrated Hub + 0140 LPC47M14x hub + 0acd Sitecom Internal Multi Memory reader/writer MD-005 + 0fdc Floppy + 10cd Sitecom Internal Multi Memory reader/writer MD-005 + 2020 USB Hub + 20cd Sitecom Internal Multi Memory reader/writer MD-005 + 20fc 6-in-1 Card Reader + 2134 Hub + 2228 9-in-2 Card Reader + 223a 8-in-1 Card Reader + 2412 Hub + 2503 USB 2.0 Hub + 2504 Hub + 2507 hub + 2512 USB 2.0 Hub + 2513 2.0 Hub + 2514 USB 2.0 Hub + 2517 Hub + 2524 USB MultiSwitch Hub + 2602 USB 2.0 Hub + 2640 USB 2.0 Hub + 2660 Hub + 2744 Hub + 274d HTC Hub Controller + 2807 Hub + 3fc7 RME Babyface audio system + 3fcc RME MADIface + 4041 Hub and media card controller + 4060 Ultra Fast Media Reader + 4064 Ultra Fast Media Reader + 4712 USB4712 high-speed hub + 4713 USB4715 high-speed hub (2 ports disabled) + 4714 USB4715 high-speed hub (1 port disabled) + 4715 USB4715 high-speed hub + 4910 USB491x hub integrated functions (primary) + 4912 USB4912 high-speed hub (1 port disabled) + 4914 USB4914 high-speed hub + 4916 USB4916 high-speed hub + 4920 USB491x hub integrated functions (secondary) + 4925 USB4925 high-speed hub (primary upstream) + 4927 USB4927 high-speed hub (primary upstream) + 4931 USB4925/4927 high-speed hub (secondary upstream) + 4940 USB47xx/49xx hub integrated WinUSB + 4942 USB47xx/49xx hub integrated I2S audio port + 4943 USB47xx/49xx hub integrated I2S audio + HID port + 4944 USB47xx/49xx hub integrated serial port + 4946 USB47xx/49xx hub integrated serial + I2S audio port + 4947 USB47xx/49xx hub integrated serial + I2S audio + HID port + 494a USB47xx/49xx hub integrated WinUSB + I2S audio port + 494b USB47xx/49xx hub integrated WinUSB + I2S audio + HID port + 494c USB47xx/49xx hub integrated WinUSB + serial port + 494e USB47xx/49xx hub integrated WinUSB + serial + I2S audio port + 494f USB47xx/49xx hub integrated WinUSB + serial + I2S audio + HID port + 5434 Hub + 5534 Hub + 5744 Hub + 5807 Hub + 7500 LAN7500 Ethernet 10/100/1000 Adapter + 9500 LAN9500/LAN9500i + 9512 SMC9512/9514 USB Hub + 9514 SMC9514 Hub + 9904 LAN9512/LAN9514 Ethernet 10/100 Adapter (SAL10) + 9e00 LAN9500A/LAN9500Ai + a700 2 Port Hub + ec00 SMSC9512/9514 Fast Ethernet Adapter +0425 Motorola Semiconductors HK, Ltd + 0101 G-Tech Wireless Mouse & Keyboard + f102 G-Tech U+P Wireless Mouse +0426 Integrated Device Technology, Inc. + 0426 WDM Driver +0427 Motorola Electronics Taiwan, Ltd +0428 Advanced Gravis Computer Tech, Ltd + 4001 GamePad Pro +0429 Cirrus Logic +042a Ericsson Austrian, AG +042b Intel Corp. + 9316 8x931Hx Customer Hub +042c Innovative Semiconductors, Inc. +042d Micronics +042e Acer, Inc. + 0380 MP3 Player +042f Molex, Inc. +0430 Fujitsu Component Limited + 0002 109 Keyboard + 0005 Type 6 Keyboard + 000a 109 Japanese Keyboard + 000b 109 Japanese Keyboard + 0082 109 Japanese Keyboard + 0083 109 Japanese Keyboard + 00a2 Type 7 Keyboard + 0100 3-button Mouse + 0502 Panasonic CF-19 HID Touch Panel + 100e 24.1" LCD Monitor v4 / FID-638 Mouse + 36ba Bus Powered Hub + a101 remote key/mouse for P3 chip + a102 remote key/mouse/storage for P3 chip + a103 remote storage for P3 chip + a111 remote keyboard for P4 chip + a112 remote mouse for P4 chip + a113 remote storage for P4 chip + a4a2 Ethernet (RNDIS and CDC ethernet) + cdab Raritan KVM dongle +0431 Itac Systems, Inc. + 0100 Mouse-Trak 3-button Track Ball +0432 Unisys Corp. + 0031 Document Processor +0433 Alps Electric, Inc. + 1101 IBM Game Controller + abab Keyboard +0434 Samsung Info. Systems America, Inc. +0435 Hyundai Electronics America +0436 Taugagreining HF + 0005 CameraMate (DPCM_USB) +0437 Framatome Connectors USA +0438 Advanced Micro Devices, Inc. + 7900 Root Hub +0439 Voice Technologies Group +043d Lexmark International, Inc. + 0001 Laser Printer + 0002 Optra E310 Printer + 0003 Laser Printer + 0004 Laser Printer + 0005 Laser Printer + 0006 Laser Printer + 0007 Laser Printer + 0008 Inkjet Color Printer + 0009 Optra S2450 Printer + 000a Laser Printer + 000b Inkjet Color Printer + 000c Optra E312 Printer + 000d Laser Printer + 000e Laser Printer + 000f Laser Printer + 0010 Laser Printer + 0011 Laser Printer + 0012 Inkjet Color Printer + 0013 Inkjet Color Printer + 0014 InkJet Color Printer + 0015 InkJet Color Printer + 0016 Z12 Color Jetprinter + 0017 Z32 printer + 0018 Z52 Printer + 0019 Forms Printer + 001a Z65 Printer + 001b InkJet Photo Printer + 001c Kodak Personal Picture Maker 200 Printer + 001d InkJet Color Printer + 001e InkJet Photo Printer + 001f Kodak Personal Picture Maker 200 Card Reader + 0020 Z51 Printer + 0021 Z33 Printer + 0022 InkJet Color Printer + 0023 Laser Printer + 0024 Laser Printer + 0025 InkJet Color Printer + 0026 InkJet Color Printer + 0027 InkJet Color Printer + 0028 InkJet Color Printer + 0029 Scan Print Copy + 002a Scan Print Copy + 002b Scan Print Copy + 002c Scan Print Copy + 002d X70/X73 Scan/Print/Copy + 002e Scan Print Copy + 002f Scan Print Copy + 0030 Scan Print Copy + 0031 Scan Print Copy + 0032 Scan Print Copy + 0033 Scan Print Copy + 0034 Scan Print Copy + 0035 Scan Print Copy + 0036 Scan Print Copy + 0037 Scan Print Copy + 0038 Scan Print Copy + 0039 Scan Print Copy + 003a Scan Print Copy + 003b Scan Print Copy + 003c Scan Print Copy + 003d X83 Scan/Print/Copy + 003e Scan Print Copy + 003f Scan Print Copy + 0040 Scan Print Copy + 0041 Scan Print Copy + 0042 Scan Print Copy + 0043 Scan Print Copy + 0044 Scan Print Copy + 0045 Scan Print Copy + 0046 Scan Print Copy + 0047 Scan Print Copy + 0048 Scan Print Copy + 0049 Scan Print Copy + 004a Scan Print Copy + 004b Scan Print Copy + 004c Scan Print Copy + 004d Laser Printer + 004e Laser Printer + 004f InkJet Color Printer + 0050 InkJet Color Printer + 0051 Laser Printer + 0052 Laser Printer + 0053 InkJet Color Printer + 0054 InkJet Color Printer + 0057 Z35 Printer + 0058 Laser Printer + 005a X63 + 005c InkJet Color Printer + 0060 X74/X75 Scanner + 0061 X74 Hub + 0065 X5130 + 0069 X74/X75 Printer + 006d X125 + 006e C510 + 0072 X6170 Printer + 0073 InkJet Color Printer + 0078 InkJet Color Printer + 0079 InkJet Color Printer + 007a Generic Hub + 007b InkJet Color Printer + 007c X1110/X1130/X1140/X1150/X1170/X1180/X1185 + 007d Photo 3150 + 008a 4200 series + 008b InkJet Color Printer + 008c to CF/SM/SD/MS Card Reader + 008e InkJet Color Printer + 008f X422 + 0091 Laser Printer E232 + 0093 X5250 + 0095 E220 Printer + 0096 2200 series + 0097 P6250 + 0098 7100 series + 009e P910 series Human Interface Device + 009f InkJet Color Printer + 00a9 IBM Infoprint 1410 MFP + 00ab InkJet Color Printer + 00b2 3300 series + 00b8 7300 series + 00b9 8300 series + 00ba InkJet Color Printer + 00bb 2300 series + 00bd Printing Support + 00be Printing Support + 00bf Printing Support + 00c0 6300 series + 00c1 4300 series + 00c7 Printing Support + 00c8 Printing Support + 00c9 Printing Support + 00cb Printing Support + 00cc E120(n) + 00d0 9300 series + 00d3 X340 Scanner + 00d4 X342n Scanner + 00d5 Printing Support + 00d6 X340 Scanner + 00e8 X642e + 00e9 2400 series + 00f6 3400 series + 00f7 InkJet Color Printer + 00ff InkJet Color Printer + 010b 2500 series + 010d 3500-4500 series + 010f 6500 series + 0142 X3650 (Printer, Scanner, Copier) + 01fa S310 series + 4303 Xerox WorkCentre Pro 412 +043e LG Electronics USA, Inc. + 3001 AN-WF100 802.11abgn Wireless Adapter [Broadcom BCM4323] + 3004 TWFM-B003D 802.11abgn Wireless Module [Broadcom BCM43236B] + 3009 VC400 + 3101 AN-WF500 802.11abgn + BT Wireless Adapter [Broadcom BCM43242] + 42bd Flatron 795FT Plus Monitor + 4a4d Flatron 915FT Plus Monitor + 7001 MF-PD100 Soul Digital MP3 Player + 7013 MP3 Player + 70d7 Mouse Scanner LSM-150 [LG Smart Scan Mouse] + 70f5 External HDD + 8484 LPC-U30 Webcam II + 8585 LPC-UC35 Webcam + 8888 Electronics VCS Camera II(LPC-U20) + 9800 Remote Control Receiver_iMON + 9803 eHome Infrared Receiver + 9804 DMB Receiver Control + 9c01 LGE Sync +043f RadiSys Corp. +0440 Eizo Nanao Corp. +0441 Winbond Systems Lab. + 1456 Hub +0442 Ericsson, Inc. + abba Bluetooth Device +0443 Gateway, Inc. + 000e Multimedia Keyboard + 002e Millennium Keyboard +0445 Lucent Technologies, Inc. +0446 NMB Technologies Corp. + 6781 Keyboard with PS/2 Mouse Port + 6782 Keyboard +0447 Momentum Microsystems +0449 Duta Multi Robotik + 0128 Menengah + 0210 Dasar + 0612 Lanjutan +044a Shamrock Tech. Co., Ltd +044b WSI +044c CCL/ITRI +044d Siemens Nixdorf AG +044e Alps Electric Co., Ltd + 1104 Japanese Keyboard + 2002 MD-5500 Printer + 2014 Bluetooth Device + 3001 UGTZ4 Bluetooth + 3002 Bluetooth Device + 3003 Bluetooth Device + 3004 Bluetooth Adapter + 3005 Integrated Bluetooth Device + 3006 Bluetooth Adapter + 3007 Bluetooth Controller (ALPS/UGX) + 300c Bluetooth Controller (ALPS/UGPZ6) + 300d Bluetooth Controller (ALPS/UGPZ6) + 3010 Bluetooth Adapter + 3017 BCM2046 Bluetooth Device + ffff Compaq Bluetooth Multiport Module +044f ThrustMaster, Inc. + 0400 HOTAS Cougar + 0402 HOTAS Warthog Joystick + 0404 HOTAS Warthog Throttle + 044f GP XID + 0f00 Steering Wheel for Xbox + 0f03 Steering Wheel for Xbox + 0f07 Controller for Xbox + 0f0c Xbox Memory Unit (8MB) + 0f10 Modena GT Wheel + a003 Rage 3D Game Pad + a01b PK-GP301 Driving Wheel + a0a0 Top Gun Joystick + a0a1 Top Gun Joystick (rev2) + a0a3 Fusion Digital GamePad + a201 PK-GP201 PlayStick + b108 T-Flight Hotas X Flight Stick + b10a T.16000M Joystick + b203 360 Modena Pro Wheel + b300 Firestorm Dual Power + b303 FireStorm Dual Analog 2 + b304 Firestorm Dual Power + b307 vibrating Upad + b30b Wireless VibrationPad + b315 Firestorm Dual Analog 3 + b320 Dual Trigger gamepad PC/PS2 2.0 + b323 Dual Trigger 3-in-1 (PC Mode) + b324 Dual Trigger 3-in-1 (PS3 Mode) + b326 Gamepad GP XID + b351 F16 MFD 1 + b352 F16 MFD 2 + b365 UbiSoft UbiConnect + b603 force feedback Wheel + b605 force feedback Racing Wheel + b651 Ferrari GT Rumble Force Wheel + b653 RGT Force Feedback Clutch Racing Wheel + b654 Ferrari GT Force Feedback Wheel + b677 T150 Racing Wheel + b678 T.Flight Rudder Pedals + b679 T-Rudder + b687 TWCS Throttle + b700 Tacticalboard +0450 DFI, Inc. +0451 Texas Instruments, Inc. + 0422 TUSB422 Port Controller with Power Delivery + 1234 Bluetooth Device + 1428 Hub + 1446 TUSB2040/2070 Hub + 16a2 CC Debugger + 16a6 BM-USBD1 BlueRobin RF heart rate sensor receiver + 16a8 CC2531 ZigBee + 16ae CC2531 Dongle + 2036 TUSB2036 Hub + 2046 TUSB2046 Hub + 2077 TUSB2077 Hub + 2f90 SM-USB-DIG + 3200 TUSB3200 Boot Loader + 3410 TUSB3410 Microcontroller + 3f00 OMAP1610 + 3f02 SMC WSKP100 Wi-Fi Phone + 505f TUSB5052 Serial + 5153 TUSB5052 Hub + 5409 Frontier Labs NEX IA+ Digital Audio Player + 6000 AU5 ADSL Modem (pre-reenum) + 6001 AU5 ADSL Modem + 6060 RNDIS/BeWAN ADSL2+ + 6070 RNDIS/BeWAN ADSL2+ + 625f TUSB6250 ATA Bridge + 8041 Hub + 8042 Hub + 8043 Hub + 8140 TUSB8041 4-Port Hub + 8142 TUSB8041 4-Port Hub + 9261 TUSB9261 SerialATA-Bridge + 926b TUSB9260 Boot Loader + bef3 CC1352R1 Launchpad + dbc0 Device Bay Controller + e001 GraphLink [SilverLink] + e003 TI-84 Plus Calculator + e004 TI-89 Titanium Calculator + e008 TI-84 Plus Silver Calculator + e00e TI-89 Titanium Presentation Link + e00f TI-84 Plus Presentation Link + e010 TI SmartPad Keyboard + e011 Nspire CAS+ prototype + e012 TI-Nspire Calculator + e013 Network Bridge + e01c Data Collection Sled [Nspire Lab Cradle, Nspire Datatracker Cradle] + e01e Nspire CX Navigator Access Point + e01f Python Adapter (firmware install mode) + e020 Python Adapter + e022 Nspire CX II + f430 MSP-FET430UIF JTAG Tool + f432 eZ430 Development Tool + ffff Bluetooth Device +0452 Mitsubishi Electronics America, Inc. + 0021 HID Monitor Controls + 0050 Diamond Pro 900u CRT Monitor + 0051 Integrated Hub + 0100 Control Panel for Leica TCS SP5 +0453 CMD Technology + 6781 NMB Keyboard + 6783 Chicony Composite Keyboard +0454 Vobis Microcomputer AG +0455 Telematics International, Inc. +0456 Analog Devices, Inc. + f000 FT2232 JTAG ICE [gnICE] + f001 FT2232H Hi-Speed JTAG ICE [gnICE+] +0457 Silicon Integrated Systems Corp. + 0150 Super Talent 1GB Flash Drive + 0151 Super Flash 1GB / GXT 64MB Flash Drive + 0162 SiS162 usb Wireless LAN Adapter + 0163 SiS163U 802.11 Wireless LAN Adapter + 0817 SiS-184-ASUS-4352.17 touch panel + 10e1 HID Touch Controller + 5401 Wireless Adapter RO80211GS-USB +0458 KYE Systems Corp. (Mouse Systems) + 0001 Mouse + 0002 Genius NetMouse Pro + 0003 Genius NetScroll+ + 0006 Easy Mouse+ + 0007 Trackbar Emotion + 000b NetMouse Wheel(P+U) + 000c TACOMA Fingerprint V1.06.01 + 000e Genius NetScroll Optical + 0013 TACOMA Fingerprint Mouse V1.06.01 + 001a Genius WebScroll+ + 002e NetScroll + Traveler / NetScroll 110 + 0036 Pocket Mouse LE + 0039 NetScroll+ Superior + 003a NetScroll+ Mini Traveler / Genius NetScroll 120 + 004c Slimstar Pro Keyboard + 0056 Ergo 300 Mouse + 0057 Enhanced Gaming Device + 0059 Enhanced Laser Device + 005a Enhanced Device + 005b Enhanced Device + 005c Enhanced Laser Gaming Device + 005d Enhanced Device + 0061 Bluetooth Dongle + 0066 Genius Traveler 1000 Wireless Mouse + 0072 Navigator 335 + 0083 Bluetooth Dongle + 0087 Ergo 525V Laser Mouse + 0088 Genius Traveler 515 Laser + 0089 Genius Traveler 350 + 00ca Pen Mouse + 0100 EasyPen Tablet + 0101 CueCat + 011b NetScroll T220 + 0186 Genius DX-120 Mouse + 1001 Joystick + 1002 Game Pad + 1003 Genius VideoCam + 1004 Flight2000 F-23 Joystick + 100a Aashima Technology Trust Sight Fighter Vibration Feedback Joystick + 2001 ColorPage-Vivid Pro Scanner + 2004 ColorPage-HR6 V1 Scanner + 2005 ColorPage-HR6/Vivid3 + 2007 ColorPage-HR6 V2 Scanner + 2008 ColorPage-HR6 V2 Scanner + 2009 ColorPage-HR6A Scanner + 2011 ColorPage-Vivid3x Scanner + 2012 Plustek Scanner + 2013 ColorPage-HR7 Scanner + 2014 ColorPage-Vivid4 + 2015 ColorPage-HR7LE Scanner + 2016 ColorPage-HR6X Scanner + 2017 ColorPage-Vivid3xe + 2018 ColorPage-HR7X + 2019 ColorPage-HR6X Slim + 201a ColorPage-Vivid4xe + 201b ColorPage-Vivid4x + 201c ColorPage-HR8 + 201d ColorPage-Vivid 1200 X + 201e ColorPage-Slim 1200 + 201f ColorPage-Vivid 1200 XE + 2020 ColorPage-Slim 1200 USB2 + 2021 ColorPage-SF600 + 3017 SPEED WHEEL 3 Vibration + 3018 Wireless 2.4Ghz Game Pad + 3019 10-Button USB Joystick with Vibration + 301a MaxFire G-12U Vibration + 301c Genius MaxFighter F-16U + 301d Genius MaxFire MiniPad + 400f Genius TVGo DVB-T02Q MCE + 4012 TVGo DVB-T03 [AF9015] + 5003 G-pen 560 Tablet + 5004 G-pen Tablet + 5005 Genius EasyPen M406 + 5012 Genius EasyPen M406W + 5014 Genius EasyPen 340 + 505e Genius iSlim 330 + 6001 GF3000F Ethernet Adapter + 7004 VideoCAM Express V2 + 7006 Dsc 1.3 Smart Camera Device + 7007 VideoCAM Web + 7009 G-Shot G312 Still Camera Device + 700c VideoCAM Web V3 + 700d G-Shot G511 Composite Device + 700f VideoCAM Web + 7012 WebCAM USB2.0 + 7014 VideoCAM Live V3 + 701c G-Shot G512 Still Camera + 7020 Sim 321C + 7025 Eye 311Q Camera + 7029 Genius Look 320s (SN9C201 + HV7131R) + 702f Genius Slim 322 + 7035 i-Look 325T Camera + 7045 Genius Look 1320 V2 + 704c Genius i-Look 1321 + 704d Slim 1322AF + 7055 Slim 2020AF camera + 705a Asus USB2.0 Webcam + 705c Genius iSlim 1300AF + 7061 Genius iLook 1321 V2 + 7066 Acer Crystal Eye Webcam + 7067 Genius iSlim 1300AF V2 + 7068 Genius eFace 1325R + 706d Genius iSlim 2000AF V2 + 7076 Genius FaceCam 312 + 7079 FaceCam 2025R + 707f TVGo DVB-T03 [RTL2832] + 7088 WideCam 1050 + 7089 Genius FaceCam 320 + 708c Genius WideCam F100 +0459 Adobe Systems, Inc. +045a SONICblue, Inc. + 07da Supra Express 56K modem + 0b4a SupraMax 2890 56K Modem [Lucent Atlas] + 0b68 SupraMax 56K Modem + 5001 Rio 600 MP3 Player + 5002 Rio 800 MP3 Player + 5003 Nike Psa/Play MP3 Player + 5005 Rio S10 MP3 Player + 5006 Rio S50 MP3 Player + 5007 Rio S35 MP3 Player + 5008 Rio 900 MP3 Player + 5009 Rio S30 MP3 Player + 500d Fuse MP3 Player + 500e Chiba MP3 Player + 500f Cali MP3 Player + 5010 Rio S11 MP3 Player + 501c Virgin MPF-1000 + 501d Rio Fuse + 501e Rio Chiba + 501f Rio Cali + 503f Cali256 MP3 Player + 5042 Rio Forge + 5202 Rio Riot MP3 Player + 5210 Rio Karma Music Player + 5220 Rio Nitrus MP3 Player + 5221 Rio Eigen +045b Hitachi, Ltd + 0053 RX610 RX-Stick + 0229 mSATA Adapter [renkforce Pi-102] +045d Nortel Networks, Ltd +045e Microsoft Corp. + 0007 SideWinder Game Pad + 0008 SideWinder Precision Pro + 0009 IntelliMouse + 000b Natural Keyboard Elite + 000e SideWinder® Freestyle Pro + 0014 Digital Sound System 80 + 001a SideWinder Precision Racing Wheel + 001b SideWinder Force Feedback 2 Joystick + 001c Internet Keyboard Pro + 001d Natural Keyboard Pro + 001e IntelliMouse Explorer + 0023 Trackball Optical + 0024 Trackball Explorer + 0025 IntelliEye Mouse + 0026 SideWinder GamePad Pro + 0027 SideWinder PnP GamePad + 0028 SideWinder Dual Strike + 0029 IntelliMouse Optical + 002b Internet Keyboard Pro + 002d Internet Keyboard + 002f Integrated Hub + 0033 Sidewinder Strategic Commander + 0034 SideWinder Force Feedback Wheel + 0038 SideWinder Precision 2 + 0039 IntelliMouse Optical + 003b SideWinder Game Voice + 003c SideWinder Joystick + 0040 Wheel Mouse Optical + 0047 IntelliMouse Explorer 3.0 + 0048 Office Keyboard 1.0A + 0053 Optical Mouse + 0059 Wireless IntelliMouse Explorer + 005c Office Keyboard (106/109) + 005f Wireless MultiMedia Keyboard + 0061 Wireless MultiMedia Keyboard (106/109) + 0063 Wireless Natural MultiMedia Keyboard + 0065 Wireless Natural MultiMedia Keyboard (106/109) + 006a Wireless Optical Mouse (IntelliPoint) + 006d eHome Remote Control Keyboard keys + 006e MN-510 802.11b Wireless Adapter [Intersil ISL3873B] + 006f Smart Display Reference Device + 0070 Wireless MultiMedia Keyboard + 0071 Wireless MultiMedia Keyboard (106/109) + 0072 Wireless Natural MultiMedia Keyboard + 0073 Wireless Natural MultiMedia Keyboard (106/109) + 0079 IXI Ogo CT-17 handheld device + 007a 10/100 USB NIC + 007d Notebook Optical Mouse + 007e Wireless Transceiver for Bluetooth + 0080 Digital Media Pro Keyboard + 0083 Basic Optical Mouse + 0084 Basic Optical Mouse + 008a Wireless Optical Desktop Receiver 2.0A + 008b Dual Receiver Wireless Mouse (IntelliPoint) + 008c Wireless Intellimouse Explorer 2.0 + 0095 IntelliMouse Explorer 4.0 (IntelliPoint) + 009c Wireless Transceiver for Bluetooth 2.0 + 009d Wireless Optical Desktop 3.0 + 00a0 eHome Infrared Receiver + 00a4 Compact Optical Mouse, model 1016 + 00b0 Digital Media Pro Keyboard + 00b4 Digital Media Keyboard 1.0A + 00b9 Wireless Optical Mouse 3.0 + 00bb Fingerprint Reader + 00bc Fingerprint Reader + 00bd Fingerprint Reader + 00c2 MN-710 802.11g Wireless Adapter [Intersil ISL3886] + 00c9 MTP Device + 00ca Fingerprint Reader + 00cb Basic Optical Mouse v2.0 + 00ce Generic PPC Flash device + 00d1 Optical Mouse with Tilt Wheel + 00d2 Notebook Optical Mouse with Tilt Wheel + 00da eHome Infrared Receiver + 00db Natural Ergonomic Keyboard 4000 V1.0 + 00dd Comfort Curve Keyboard 2000 V1.0 + 00e1 Wireless Laser Mouse 6000 Receiver + 00f4 LifeCam VX-6000 (SN9C20x + OV9650) + 00f5 LifeCam VX-3000 + 00f6 Comfort Optical Mouse 1000 + 00f7 LifeCam VX-1000 + 00f8 LifeCam NX-6000 + 00f9 Wireless Desktop Receiver 3.1 + 0202 Xbox Controller + 0280 Xbox Memory Unit (8MB) + 0283 Xbox Communicator + 0284 Xbox DVD Playback Kit + 0285 Xbox Controller S + 0288 Xbox Controller S Hub + 0289 Xbox Controller S + 028b Xbox360 DVD Emulator + 028d Xbox360 Memory Unit 64MB + 028e Xbox360 Controller + 028f Xbox360 Wireless Controller + 0290 Xbox360 Performance Pipe (PIX) + 0291 Xbox 360 Wireless Receiver for Windows + 0292 Xbox360 Wireless Networking Adapter + 029c Xbox360 HD-DVD Drive + 029d Xbox360 HD-DVD Drive + 029e Xbox360 HD-DVD Memory Unit + 02a0 Xbox360 Big Button IR + 02a1 Xbox 360 Wireless Receiver for Windows + 02a8 Xbox360 Wireless N Networking Adapter [Atheros AR7010+AR9280] + 02ad Xbox NUI Audio + 02ae Xbox NUI Camera + 02b0 Xbox NUI Motor + 02b6 Xbox360 Bluetooth Wireless Headset + 02bb Kinect Audio + 02be Kinect for Windows NUI Audio + 02bf Kinect for Windows NUI Camera + 02c2 Kinect for Windows NUI Motor + 02d1 Xbox One Controller + 02d5 Xbox One Digital TV Tuner + 02dd Xbox One Controller (Firmware 2015) + 02e3 Xbox One Elite Controller + 02e6 Wireless XBox Controller Dongle + 02ea Xbox One S Controller + 02fd Xbox One S Controller [Bluetooth] + 0400 Windows Powered Pocket PC 2002 + 0401 Windows Powered Pocket PC 2002 + 0402 Windows Powered Pocket PC 2002 + 0403 Windows Powered Pocket PC 2002 + 0404 Windows Powered Pocket PC 2002 + 0405 Windows Powered Pocket PC 2002 + 0406 Windows Powered Pocket PC 2002 + 0407 Windows Powered Pocket PC 2002 + 0408 Windows Powered Pocket PC 2002 + 0409 Windows Powered Pocket PC 2002 + 040a Windows Powered Pocket PC 2002 + 040b Windows Powered Pocket PC 2002 + 040c Windows Powered Pocket PC 2002 + 040d Windows Powered Pocket PC 2002 + 040e Windows Powered Pocket PC 2002 + 040f Windows Powered Pocket PC 2002 + 0410 Windows Powered Pocket PC 2002 + 0411 Windows Powered Pocket PC 2002 + 0412 Windows Powered Pocket PC 2002 + 0413 Windows Powered Pocket PC 2002 + 0414 Windows Powered Pocket PC 2002 + 0415 Windows Powered Pocket PC 2002 + 0416 Windows Powered Pocket PC 2002 + 0417 Windows Powered Pocket PC 2002 + 0432 Windows Powered Pocket PC 2003 + 0433 Windows Powered Pocket PC 2003 + 0434 Windows Powered Pocket PC 2003 + 0435 Windows Powered Pocket PC 2003 + 0436 Windows Powered Pocket PC 2003 + 0437 Windows Powered Pocket PC 2003 + 0438 Windows Powered Pocket PC 2003 + 0439 Windows Powered Pocket PC 2003 + 043a Windows Powered Pocket PC 2003 + 043b Windows Powered Pocket PC 2003 + 043c Windows Powered Pocket PC 2003 + 043d Becker Traffic Assist Highspeed 7934 + 043e Windows Powered Pocket PC 2003 + 043f Windows Powered Pocket PC 2003 + 0440 Windows Powered Pocket PC 2003 + 0441 Windows Powered Pocket PC 2003 + 0442 Windows Powered Pocket PC 2003 + 0443 Windows Powered Pocket PC 2003 + 0444 Windows Powered Pocket PC 2003 + 0445 Windows Powered Pocket PC 2003 + 0446 Windows Powered Pocket PC 2003 + 0447 Windows Powered Pocket PC 2003 + 0448 Windows Powered Pocket PC 2003 + 0449 Windows Powered Pocket PC 2003 + 044a Windows Powered Pocket PC 2003 + 044b Windows Powered Pocket PC 2003 + 044c Windows Powered Pocket PC 2003 + 044d Windows Powered Pocket PC 2003 + 044e Windows Powered Pocket PC 2003 + 044f Windows Powered Pocket PC 2003 + 0450 Windows Powered Pocket PC 2003 + 0451 Windows Powered Pocket PC 2003 + 0452 Windows Powered Pocket PC 2003 + 0453 Windows Powered Pocket PC 2003 + 0454 Windows Powered Pocket PC 2003 + 0455 Windows Powered Pocket PC 2003 + 0456 Windows Powered Pocket PC 2003 + 0457 Windows Powered Pocket PC 2003 + 0458 Windows Powered Pocket PC 2003 + 0459 Windows Powered Pocket PC 2003 + 045a Windows Powered Pocket PC 2003 + 045b Windows Powered Pocket PC 2003 + 045c Windows Powered Pocket PC 2003 + 045d Windows Powered Pocket PC 2003 + 045e Windows Powered Pocket PC 2003 + 045f Windows Powered Pocket PC 2003 + 0460 Windows Powered Pocket PC 2003 + 0461 Windows Powered Pocket PC 2003 + 0462 Windows Powered Pocket PC 2003 + 0463 Windows Powered Pocket PC 2003 + 0464 Windows Powered Pocket PC 2003 + 0465 Windows Powered Pocket PC 2003 + 0466 Windows Powered Pocket PC 2003 + 0467 Windows Powered Pocket PC 2003 + 0468 Windows Powered Pocket PC 2003 + 0469 Windows Powered Pocket PC 2003 + 046a Windows Powered Pocket PC 2003 + 046b Windows Powered Pocket PC 2003 + 046c Windows Powered Pocket PC 2003 + 046d Windows Powered Pocket PC 2003 + 046e Windows Powered Pocket PC 2003 + 046f Windows Powered Pocket PC 2003 + 0470 Windows Powered Pocket PC 2003 + 0471 Windows Powered Pocket PC 2003 + 0472 Windows Powered Pocket PC 2003 + 0473 Windows Powered Pocket PC 2003 + 0474 Windows Powered Pocket PC 2003 + 0475 Windows Powered Pocket PC 2003 + 0476 Windows Powered Pocket PC 2003 + 0477 Windows Powered Pocket PC 2003 + 0478 Windows Powered Pocket PC 2003 + 0479 Windows Powered Pocket PC 2003 + 047a Windows Powered Pocket PC 2003 + 047b Windows Powered Pocket PC 2003 + 04c8 Windows Powered Smartphone 2002 + 04c9 Windows Powered Smartphone 2002 + 04ca Windows Powered Smartphone 2002 + 04cb Windows Powered Smartphone 2002 + 04cc Windows Powered Smartphone 2002 + 04cd Windows Powered Smartphone 2002 + 04ce Windows Powered Smartphone 2002 + 04d7 Windows Powered Smartphone 2003 + 04d8 Windows Powered Smartphone 2003 + 04d9 Windows Powered Smartphone 2003 + 04da Windows Powered Smartphone 2003 + 04db Windows Powered Smartphone 2003 + 04dc Windows Powered Smartphone 2003 + 04dd Windows Powered Smartphone 2003 + 04de Windows Powered Smartphone 2003 + 04df Windows Powered Smartphone 2003 + 04e0 Windows Powered Smartphone 2003 + 04e1 Windows Powered Smartphone 2003 + 04e2 Windows Powered Smartphone 2003 + 04e3 Windows Powered Smartphone 2003 + 04e4 Windows Powered Smartphone 2003 + 04e5 Windows Powered Smartphone 2003 + 04e6 Windows Powered Smartphone 2003 + 04e7 Windows Powered Smartphone 2003 + 04e8 Windows Powered Smartphone 2003 + 04e9 Windows Powered Smartphone 2003 + 04ea Windows Powered Smartphone 2003 + 04ec Windows Phone (Zune) + 063e Zune HD Media Player + 0640 KIN Phone + 0641 KIN Phone + 0642 KIN Phone + 0707 Wireless Laser Mouse 8000 + 0708 Transceiver v 3.0 for Bluetooth + 070a Charon Bluetooth Dongle (DFU) + 070f LifeChat LX-3000 Headset + 0710 Zune Media Player + 0713 Wireless Presenter Mouse 8000 + 0719 Xbox 360 Wireless Adapter + 071f Mouse/Keyboard 2.4GHz Transceiver V2.0 + 0721 LifeCam NX-3000 (UVC-compliant) + 0723 LifeCam VX-7000 (UVC-compliant) + 0724 SideWinder Mouse + 0728 LifeCam VX-5000 + 0730 Digital Media Keyboard 3000 + 0734 Wireless Optical Desktop 700 + 0736 Sidewinder X5 Mouse + 0737 Compact Optical Mouse 500 + 0745 Nano Transceiver v1.0 for Bluetooth + 074a LifeCam VX-500 [1357] + 0750 Wired Keyboard 600 + 0752 Wired Keyboard 400 + 075d LifeCam Cinema + 0761 LifeCam VX-2000 + 0765 Xbox360 Slim Internal Wireless Module (1400) [Marvell 88W8786U] + 0766 LifeCam VX-800 + 0768 Sidewinder X4 + 076c Comfort Mouse 4500 + 076d LifeCam HD-5000 + 0770 LifeCam VX-700 + 0772 LifeCam Studio + 0779 LifeCam HD-3000 + 077f LifeChat LX-6000 Headset + 0780 Comfort Curve Keyboard 3000 + 0797 Optical Mouse 200 + 0799 Surface Pro embedded keyboard + 07a5 Wireless Receiver 1461C + 07b2 2.4GHz Transceiver v8.0 used by mouse Wireless Desktop 900 + 07b6 Comfort Curve Keyboard 3000 + 07b9 Wired Keyboard 200 + 07c6 RTL8153 GigE [Surface Ethernet Adapter] + 07ca Surface Pro 3 Docking Station Audio Device + 07cd Surface Keyboard + 07f8 Wired Keyboard 600 (model 1576) + 07fd Nano Transceiver 1.1 + 0800 Wireless keyboard (All-in-One-Media) + 0810 LifeCam HD-3000 + 0823 Classic IntelliMouse + 0900 Surface Dock Hub + 0901 Surface Dock Hub + 0902 Surface Dock Hub + 0903 Surface Dock Hub + 0904 Surface Dock Extender + 0905 Surface Dock Audio + 090b Hub + 090c SD Card + 091a Hub + 0927 RTL8153B GigE [Surface Ethernet Adapter] + 0955 Hub + 0957 Hub + 09a0 RTL8153B GigE [Surface Ethernet Adapter] + 09c0 Surface Type Cover + 0a00 Lumia 950 Dual SIM (RM-1118) + 0b12 Xbox Wireless Controller (model 1914) + 930a ISOUSB.SYS Intel 82930 Isochronous IO Test Board + ffca Catalina + fff8 Keyboard + ffff Windows CE Mass Storage +0460 Ace Cad Enterprise Co., Ltd + 0004 Tablet (5x3.75) + 0006 LCD Tablet (12x9) + 0008 Tablet (3x2.25) +0461 Primax Electronics, Ltd + 0010 HP PR1101U / Primax PMX-KPR1101U Keyboard + 0300 G2-300 Scanner + 0301 G2E-300 Scanner + 0302 G2-300 #2 Scanner + 0303 G2E-300 #2 Scanner + 0340 Colorado 9600 Scanner + 0341 Colorado 600u Scanner + 0345 Visioneer 6200 Scanner + 0346 Memorex Maxx 6136u Scanner + 0347 Primascan Colorado 2600u/Visioneer 4400 Scanner + 0360 Colorado 19200 Scanner + 0361 Colorado 1200u Scanner + 0363 VistaScan Astra 3600(ENG) + 0364 LG Electronics Scanworks 600U Scanner + 0365 VistaScan Astra 3600(ENG) + 0366 6400 + 0367 VistaScan Astra 3600(ENG) + 0371 Visioneer Onetouch 8920 Scanner + 0374 UMAX Astra 2500 + 0375 VistaScan Astra 3600(ENG) + 0377 Medion MD 5345 Scanner + 0378 VistaScan Astra 3600(ENG) + 037b Medion MD 6190 Scanner + 037c VistaScan Astra 3600(ENG) + 0380 G2-600 Scanner + 0381 ReadyScan 636i Scanner + 0382 G2-600 #2 Scanner + 0383 G2E-600 Scanner + 038a UMAX Astra 3000/3600 + 038b Xerox 2400 Onetouch + 038c UMAX Astra 4100 + 0392 Medion/Lifetec/Tevion/Cytron MD 6190 + 03a8 9420M + 0813 IBM UltraPort Camera + 0815 Micro Innovations IC200 Webcam + 0819 Fujifilm IX-30 Camera [webcam mode] + 081a Fujifilm IX-30 Camera [storage mode] + 081c Elitegroup ECS-C11 Camera + 081d Elitegroup ECS-C11 Storage + 0a00 Micro Innovations Web Cam 320 + 4d01 Comfort Keyboard / Kensington Orbit Elite + 4d02 Mouse-in-a-Box + 4d03 Kensington Mouse-in-a-box + 4d04 Mouse + 4d06 Balless Mouse (HID) + 4d0f HP Optical Mouse + 4d15 Dell Optical Mouse + 4d17 Optical Mouse + 4d20 HP Optical Mouse + 4d2a PoPo Elixir Mouse (HID) + 4d2b Wireless Laser Mini Mouse (HID) + 4d2c PoPo Mini Pointer Mouse (HID) + 4d2e Optical Mobile Mouse (HID) + 4d51 0Y357C PMX-MMOCZUL (B) [Dell Laser Mouse] + 4d62 HP Laser Mobile Mini Mouse + 4d75 Rocketfish RF-FLBTAD Bluetooth Adapter + 4d81 Dell N889 Optical Mouse + 4d8a HP Multimedia Keyboard + 4d91 Laser mouse M-D16DL + 4d92 Optical mouse M-D17DR + 4db1 Dell Laptop Integrated Webcam 2Mpix + 4de3 HP 5-Button Optical Comfort Mouse + 4de7 webcam + 4e04 Lenovo Keyboard KB1021 + 4e22 Dell Mouse, 2 Buttons, Modell: MS111-P + 4e6f Acer Wired Keyboard Model KBAY211 + 4e72 Acer Wired Keyboard Model KBAY211 +0463 MGE UPS Systems + 0001 UPS + ffff UPS +0464 AMP/Tycoelectronics Corp. +0467 AT&T Paradyne +0468 Wieson Technologies Co., Ltd +046a Cherry GmbH + 0001 Keyboard + 0003 My3000 Hub + 0004 CyBoard Keyboard + 0005 XX33 SmartCard Reader Keyboard + 0008 Wireless Keyboard and Mouse + 0010 SmartBoard XX44 + 0011 G83 (RS 6000) Keyboard + 0021 CyMotion Expert Combo + 0023 Keyboard + 0027 CyMotion Master Solar Keyboard + 002a Wireless Mouse & Keyboard + 002d SmartTerminal XX44 + 003c Raptor Gaming Keyboard + 003d Raptor Gaming Keyboard Integrated Hub + 003e SmartTerminal ST-2xxx + 0041 G86 6240 Keyboard + 0080 eHealth Terminal ST 1503 + 0081 eHealth Keyboard G87 1504 + 00a1 SmartCard Reader Keyboard KC 1000 SC + 0106 R-300 Wireless Mouse Receiver + 010d MX-Board 3.0 Keyboard + 0180 Strait 3.0 + b090 Keyboard + b091 Mouse +046b American Megatrends, Inc. + 0001 Keyboard + 0101 PS/2 Keyboard, Mouse & Joystick Ports + 0301 USB 1.0 Hub + 0500 Serial & Parallel Ports + ff10 Virtual Keyboard and Mouse +046c Toshiba Corp., Digital Media Equipment +046d Logitech, Inc. + 0082 Acer Aspire 5672 Webcam + 0200 WingMan Extreme Joystick + 0203 M2452 Keyboard + 0242 Chillstream for Xbox 360 + 0301 M4848 Mouse + 0401 HP PageScan + 0402 NEC PageScan + 040f Logitech/Storm PageScan + 0430 Mic (Cordless) + 0801 QuickCam Home + 0802 Webcam C200 + 0804 Webcam C250 + 0805 Webcam C300 + 0807 Webcam B500 + 0808 Webcam C600 + 0809 Webcam Pro 9000 + 080a Portable Webcam C905 + 080f Webcam C120 + 0810 QuickCam Pro + 0819 Webcam C210 + 081a Webcam C260 + 081b Webcam C310 + 081d HD Webcam C510 + 0820 QuickCam VC + 0821 HD Webcam C910 + 0823 HD Webcam B910 + 0825 Webcam C270 + 0826 HD Webcam C525 + 0828 HD Webcam B990 + 082b Webcam C170 + 082c HD Webcam C615 + 082d HD Pro Webcam C920 + 0830 QuickClip + 0836 B525 HD Webcam + 0837 BCC950 ConferenceCam + 0840 QuickCam Express + 0843 Webcam C930e + 0845 ConferenceCam CC3000e Camera + 0846 ConferenceCam CC3000e Speakerphone + 084b ConferenceCam Connect Video + 084c ConferenceCam Connect Audio + 084e ConferenceCam Connect + 0850 QuickCam Web + 0857 Logi Group Speakerphone + 085c C922 Pro Stream Webcam + 085e BRIO Ultra HD Webcam + 0870 QuickCam Express + 0882 Logi Group Speakerphone + 0890 QuickCam Traveler + 0892 C920 HD Pro Webcam + 0893 StreamCam + 0894 CrystalCam + 0895 QuickCam for Dell Notebooks + 0896 OrbiCam + 0897 QuickCam for Dell Notebooks + 0899 QuickCam for Dell Notebooks + 089d QuickCam E2500 series + 08a0 QuickCam IM + 08a1 QuickCam IM with sound + 08a2 Labtec Webcam Pro + 08a3 QuickCam QuickCam Chat + 08a6 QuickCam IM + 08a7 QuickCam Image + 08a9 Notebook Deluxe + 08aa Labtec Notebooks + 08ac QuickCam Cool + 08ad QuickCam Communicate STX + 08ae QuickCam for Notebooks + 08af QuickCam Easy/Cool + 08b0 QuickCam 3000 Pro [pwc] + 08b1 QuickCam Notebook Pro + 08b2 QuickCam Pro 4000 + 08b3 QuickCam Zoom + 08b4 QuickCam Zoom + 08b5 QuickCam Sphere + 08b9 QuickCam IM + 08bd Microphone (Pro 4000) + 08c0 QuickCam Pro 3000 + 08c1 QuickCam Fusion + 08c2 QuickCam PTZ + 08c3 Camera (Notebooks Pro) + 08c5 QuickCam Pro 5000 + 08c6 QuickCam for DELL Notebooks + 08c7 QuickCam OEM Cisco VT Camera II + 08c9 QuickCam Ultra Vision + 08ca Mic (Fusion) + 08cb Mic (Notebooks Pro) + 08cc Mic (PTZ) + 08ce QuickCam Pro 5000 + 08cf QuickCam UpdateMe + 08d0 QuickCam Express + 08d7 QuickCam Communicate STX + 08d8 QuickCam for Notebook Deluxe + 08d9 QuickCam IM/Connect + 08da QuickCam Messenger + 08dd QuickCam for Notebooks + 08e0 QuickCam Express + 08e1 Labtec Webcam + 08e5 C920 PRO HD Webcam + 08f0 QuickCam Messenger + 08f1 QuickCam Express + 08f2 Microphone (Messenger) + 08f3 QuickCam Express + 08f4 Labtec Webcam + 08f5 QuickCam Messenger Communicate + 08f6 QuickCam Messenger Plus + 0900 ClickSmart 310 + 0901 ClickSmart 510 + 0903 ClickSmart 820 + 0905 ClickSmart 820 + 0910 QuickCam Cordless + 0920 QuickCam Express + 0921 Labtec Webcam + 0922 QuickCam Live + 0928 QuickCam Express + 0929 Labtec Webcam Pro + 092a QuickCam for Notebooks + 092b Labtec Webcam Plus + 092c QuickCam Chat + 092d QuickCam Express / Go + 092e QuickCam Chat + 092f QuickCam Express Plus + 0950 Pocket Camera + 0960 ClickSmart 420 + 0970 Pocket750 + 0990 QuickCam Pro 9000 + 0991 QuickCam Pro for Notebooks + 0992 QuickCam Communicate Deluxe + 0994 QuickCam Orbit/Sphere AF + 09a1 QuickCam Communicate MP/S5500 + 09a2 QuickCam Communicate Deluxe/S7500 + 09a4 QuickCam E 3500 + 09a5 Quickcam 3000 For Business + 09a6 QuickCam Vision Pro + 09b0 Acer OrbiCam + 09b2 Fujitsu Webcam + 09c0 QuickCam for Dell Notebooks Mic + 09c1 QuickCam Deluxe for Notebooks + 0a01 USB Headset + 0a02 Premium Stereo USB Headset 350 + 0a03 Logitech USB Microphone + 0a04 V20 portable speakers (USB powered) + 0a07 Z-10 Speakers + 0a0b ClearChat Pro USB + 0a0c Clear Chat Comfort USB Headset + 0a10 V10 Notebook Speakers + 0a13 Z-5 Speakers + 0a14 USB Headset + 0a15 G35 Headset + 0a17 G330 Headset + 0a1f G930 + 0a29 H600 [Wireless Headset] + 0a37 USB Headset H540 + 0a38 Headset H340 + 0a44 Headset H390 + 0a45 960 Headset + 0a4d G430 Surround Sound Gaming Headset + 0a5b G933 Wireless Headset Dongle + 0a5d G933 Headset Battery Charger + 0a66 [G533 Wireless Headset Dongle] + 0a8f H390 headset with microphone + 0aaa Logitech G PRO X Gaming Headset + 0b02 C-UV35 [Bluetooth Mini-Receiver] (HID proxy mode) + 8801 Video Camera + b014 Bluetooth Mouse M336/M337/M535 + b305 BT Mini-Receiver + bfe4 Premium Optical Wheel Mouse + c000 N43 [Pilot Mouse] + c001 N48/M-BB48/M-UK96A [FirstMouse Plus] + c002 M-BA47 [MouseMan Plus] + c003 MouseMan + c004 WingMan Gaming Mouse + c005 WingMan Gaming Wheel Mouse + c00b MouseMan Wheel + c00c Optical Wheel Mouse + c00d MouseMan Wheel+ + c00e M-BJ58/M-BJ69 Optical Wheel Mouse + c00f MouseMan Traveler/Mobile + c011 Optical MouseMan + c012 Mouseman Dual Optical + c014 Corded Workstation Mouse + c015 Corded Workstation Mouse + c016 Optical Wheel Mouse + c018 Optical Wheel Mouse + c019 Optical Tilt Wheel Mouse + c01a M-BQ85 Optical Wheel Mouse + c01b MX310 Optical Mouse + c01c Optical Mouse + c01d MX510 Optical Mouse + c01e MX518 Optical Mouse + c024 MX300 Optical Mouse + c025 MX500 Optical Mouse + c030 iFeel Mouse + c031 iFeel Mouse+ + c032 MouseMan iFeel + c033 iFeel MouseMan+ + c034 MouseMan Optical + c035 Mouse + c036 Mouse + c037 Mouse + c038 Mouse + c03d M-BT96a Pilot Optical Mouse + c03e Premium Optical Wheel Mouse (M-BT58) + c03f M-BT85 [UltraX Optical Mouse] + c040 Corded Tilt-Wheel Mouse + c041 G5 Laser Mouse + c042 G3 Laser Mouse + c043 MX320/MX400 Laser Mouse + c044 LX3 Optical Mouse + c045 Optical Mouse + c046 RX1000 Laser Mouse + c047 Laser Mouse M-UAL120 + c048 G9 Laser Mouse + c049 G5 Laser Mouse + c050 RX 250 Optical Mouse + c051 G3 (MX518) Optical Mouse + c053 Laser Mouse + c054 Bluetooth mini-receiver + c058 M115 Mouse + c05a M90/M100 Optical Mouse + c05b M-U0004 810-001317 [B110 Optical USB Mouse] + c05d Optical Mouse + c05f M115 Optical Mouse + c061 RX1500 Laser Mouse + c062 M-UAS144 [LS1 Laser Mouse] + c063 DELL Laser Mouse + c064 M110 corded optical mouse (M-B0001) + c066 G9x Laser Mouse + c068 G500 Laser Mouse + c069 M-U0007 [Corded Mouse M500] + c06a USB Optical Mouse + c06b G700 Wireless Gaming Mouse + c06c Optical Mouse + c077 Mouse + c07c M-R0017 [G700s Rechargeable Gaming Mouse] + c07d G502 Mouse + c07e G402 Gaming Mouse + c080 G303 Gaming Mouse + c083 G403 Prodigy Gaming Mouse + c084 G203 Gaming Mouse + c08b G502 SE HERO Gaming Mouse + c092 G102/G203 LIGHTSYNC Gaming Mouse + c101 UltraX Media Remote + c110 Harmony 785/880/885 Remote + c111 Harmony 525 Remote + c112 Harmony 890 Remote + c11f Harmony 900/1100 Remote + c121 Harmony One Remote + c122 Harmony 650/700 Remote + c124 Harmony 300/350 Remote + c125 Harmony 200 Remote + c126 Harmony Link + c129 Harmony Hub + c12b Harmony Touch/Ultimate Remote + c201 WingMan Extreme Joystick with Throttle + c202 WingMan Formula + c207 WingMan Extreme Digital 3D + c208 WingMan Gamepad Extreme + c209 WingMan Gamepad + c20a WingMan RumblePad + c20b WingMan Action Pad + c20c WingMan Precision + c20d WingMan Attack 2 + c20e WingMan Formula GP + c211 iTouch Cordless Receiver + c212 WingMan Extreme Digital 3D + c213 J-UH16 (Freedom 2.4 Cordless Joystick) + c214 ATK3 (Attack III Joystick) + c215 Extreme 3D Pro + c216 F310 Gamepad [DirectInput Mode] + c218 F510 Gamepad [DirectInput Mode] + c219 F710 Gamepad [DirectInput Mode] + c21a Precision Gamepad + c21c G13 Advanced Gameboard + c21d F310 Gamepad [XInput Mode] + c21e F510 Gamepad [XInput Mode] + c21f F710 Wireless Gamepad [XInput Mode] + c221 G11/G15 Keyboard / Keyboard + c222 G15 Keyboard / LCD + c223 G11/G15 Keyboard / USB Hub + c225 G11/G15 Keyboard / G keys + c226 G15 Refresh Keyboard + c227 G15 Refresh Keyboard + c228 G19 Gaming Keyboard + c229 G19 Gaming Keyboard Macro Interface + c22a Gaming Keyboard G110 + c22b Gaming Keyboard G110 G-keys + c22d G510 Gaming Keyboard + c22e G510 Gaming Keyboard onboard audio + c231 G13 Virtual Mouse + c232 Gaming Virtual Keyboard + c245 G400 Optical Mouse + c246 Gaming Mouse G300 + c247 G100S Optical Gaming Mouse + c248 G105 Gaming Keyboard + c24a G600 Gaming Mouse + c24c G400s Optical Mouse + c24d G710 Gaming Keyboard + c24e G500s Laser Gaming Mouse + c24f G29 Driving Force Racing Wheel [PS3] + c260 G29 Driving Force Racing Wheel [PS4] + c262 G920 Driving Force Racing Wheel + c281 WingMan Force + c283 WingMan Force 3D + c285 WingMan Strike Force 3D + c286 Force 3D Pro + c287 Flight System G940 + c291 WingMan Formula Force + c293 WingMan Formula Force GP + c294 Driving Force + c295 Momo Force Steering Wheel + c298 Driving Force Pro + c299 G25 Racing Wheel + c29b G27 Racing Wheel + c29c Speed Force Wireless Wheel for Wii + c2a0 Wingman Force Feedback Mouse + c2a1 WingMan Force Feedback Mouse + c2ab G13 Joystick + c301 iTouch Keyboard + c302 iTouch Pro Keyboard + c303 iTouch Keyboard + c305 Internet Keyboard + c307 Internet Keyboard + c308 Internet Navigator Keyboard + c309 Y-BF37 [Internet Navigator Keyboard] + c30a iTouch Composite + c30b NetPlay Keyboard + c30c Internet Keys (X) + c30d Internet Keys + c30e UltraX Keyboard (Y-BL49) + c30f Logicool HID-Compliant Keyboard (106 key) + c311 Y-UF49 [Internet Pro Keyboard] + c312 DeLuxe 250 Keyboard + c313 Internet 350 Keyboard + c315 Classic Keyboard 200 + c316 HID-Compliant Keyboard + c317 Wave Corded Keyboard + c318 Illuminated Keyboard + c31a Comfort Wave 450 + c31b Compact Keyboard K300 + c31c Keyboard K120 + c31d Media Keyboard K200 + c31f Comfort Keyboard K290 + c326 Washable Keyboard K310 + c328 Corded Keyboard K280e + c32b G910 Orion Spark Mechanical Keyboard + c332 G502 Proteus Spectrum Optical Mouse + c335 G910 Orion Spectrum Mechanical Keyboard + c336 G213 Prodigy Gaming Keyboard + c33a G413 Gaming Keyboard + c33f G815 Mechanical Keyboard + c401 TrackMan Marble Wheel + c402 Marble Mouse (2-button) + c403 Turbo TrackMan Marble FX + c404 TrackMan Wheel + c408 Marble Mouse (4-button) + c501 Cordless Mouse Receiver + c502 Cordless Mouse & iTouch Keys + c503 Cordless Mouse+Keyboard Receiver + c504 Cordless Mouse+Keyboard Receiver + c505 Cordless Mouse+Keyboard Receiver + c506 MX700 Cordless Mouse Receiver + c508 Cordless Trackball + c509 Cordless Keyboard & Mouse + c50a Cordless Mouse + c50b Cordless Desktop Optical + c50c Cordless Desktop S510 + c50d Cordless Mouse + c50e Cordless Mouse Receiver + c510 Cordless Mouse + c512 LX-700 Cordless Desktop Receiver + c513 MX3000 Cordless Desktop Receiver + c514 Cordless Mouse + c515 Cordless 2.4 GHz Presenter Presentation remote control + c517 LX710 Cordless Desktop Laser + c518 MX610 Laser Cordless Mouse + c51a MX Revolution/G7 Cordless Mouse + c51b V220 Cordless Optical Mouse for Notebooks + c521 Cordless Mouse Receiver + c525 MX Revolution Cordless Mouse + c526 Nano Receiver + c529 Logitech Keyboard + Mice + c52b Unifying Receiver + c52d R700 Remote Presenter receiver + c52e MK260 Wireless Combo Receiver + c52f Unifying Receiver + c531 C-U0007 [Unifying Receiver] + c532 Unifying Receiver + c534 Unifying Receiver + c537 Cordless Mouse Receiver + c539 Cordless Mouse Receiver + c53a PowerPlay Wireless Charging System + c53d G631 Keyboard + c603 3Dconnexion Spacemouse Plus XT + c605 3Dconnexion CADman + c606 3Dconnexion Spacemouse Classic + c621 3Dconnexion Spaceball 5000 + c623 3Dconnexion Space Traveller 3D Mouse + c625 3Dconnexion Space Pilot 3D Mouse + c626 3Dconnexion Space Navigator 3D Mouse + c627 3Dconnexion Space Explorer 3D Mouse + c628 3Dconnexion Space Navigator for Notebooks + c629 3Dconnexion SpacePilot Pro 3D Mouse + c62b 3Dconnexion Space Mouse Pro + c640 NuLOOQ navigator + c702 Cordless Presenter + c703 Elite Keyboard Y-RP20 + Mouse MX900 (Bluetooth) + c704 diNovo Wireless Desktop + c705 MX900 Bluetooth Wireless Hub (C-UJ16A) + c707 Bluetooth wireless hub + c708 Bluetooth wireless hub + c709 BT Mini-Receiver (HCI mode) + c70a MX5000 Cordless Desktop + c70b BT Mini-Receiver (HID proxy mode) + c70c BT Mini-Receiver (HID proxy mode) + c70d Bluetooth wireless hub + c70e MX1000 Bluetooth Laser Mouse + c70f Bluetooth wireless hub + c712 Bluetooth wireless hub + c714 diNovo Edge Keyboard + c715 Bluetooth wireless hub + c71a Bluetooth wireless hub + c71d Bluetooth wireless hub + c71f diNovo Mini Wireless Keyboard + c720 Bluetooth wireless hub + ca03 MOMO Racing + ca04 Formula Vibration Feedback Wheel + ca84 Cordless Controller for Xbox + ca88 Thunderpad for Xbox + ca8a Precision Vibration Feedback Wheel for Xbox + caa3 DriveFX Racing Wheel + cab1 Cordless Keyboard for Wii HID Receiver + d001 QuickCam Pro + f301 Controller +046e Behavior Tech. Computer Corp. + 0100 Keyboard + 3001 Mass Storage Device + 3002 Mass Storage Device + 3003 Mass Storage Device + 3005 Mass Storage Device + 3008 Mass Storage Device + 5250 KeyMaestro Multimedia Keyboard + 5273 KeyMaestro Multimedia Keyboard + 52e6 Cordless Mouse + 5308 KeyMaestro Keyboard + 5408 KeyMaestro Multimedia Keyboard/Hub + 5500 Portable Keyboard 86+9 keys (Model 6100C US) + 5550 5 button optical mouse model M873U + 5720 Smart Card Reader + 6782 BTC 7932 mouse+keyboard +046f Crystal Semiconductor +0471 Philips (or NXP) + 0101 DSS350 Digital Speaker System + 0104 DSS330 Digital Speaker System [uda1321] + 0105 UDA1321 + 014f GoGear SA9200 + 0160 MP3 Player + 0161 MP3 Player + 0163 GoGear SA1100 + 0164 GoGear SA1110/02 + 0165 GoGear SA1330 + 0201 Hub + 0222 Creative Nomad Jukebox + 0302 PCA645VC Webcam [pwc] + 0303 PCA646VC Webcam [pwc] + 0304 Askey VC010 Webcam [pwc] + 0307 PCVC675K Webcam [pwc] + 0308 PCVC680K Webcam [pwc] + 030b PC VGA Camera (Vesta Fun) + 030c PCVC690K Webcam [pwc] + 0310 PCVC730K Webcam [pwc] + 0311 PCVC740K ToUcam Pro [pwc] + 0312 PCVC750K Webcam [pwc] + 0314 DMVC 1000K + 0316 DMVC 2000K Video Capture + 0321 FunCam + 0322 DMVC1300K PC Camera + 0325 SPC 200NC PC Camera + 0326 SPC 300NC PC Camera + 0327 Webcam SPC 6000 NC (Webcam w/ mic) + 0328 SPC 700NC PC Camera + 0329 SPC 900NC PC Camera / ORITE CCD Webcam(PC370R) + 032d SPC 210NC PC Camera + 032e SPC 315NC PC Camera + 0330 SPC 710NC PC Camera + 0331 SPC 1300NC PC Camera + 0332 SPC 1000NC PC Camera + 0333 SPC 620NC PC Camera + 0334 SPC 520/525NC PC Camera + 0401 Semiconductors CICT Keyboard + 0402 PS/2 Mouse on Semiconductors CICT Keyboard + 0406 15 inch Detachable Monitor + 0407 10 inch Mobile Monitor + 0408 SG3WA1/74 802.11b WLAN Adapter [Atmel AT76C503A] + 0471 Digital Speaker System + 0601 OVU1020 IR Dongle (Kbd+Mouse) + 0602 ATI Remote Wonder II Input Device + 0603 ATI Remote Wonder II Controller + 0608 eHome Infrared Receiver + 060a TSU9600 Remote Control + 060c Consumer Infrared Transceiver (HP) + 060d Consumer Infrared Transceiver (SRM5100) + 060e RF Dongle + 060f Consumer Infrared Transceiver + 0613 Infrared Transceiver + 0617 IEEE802.15.4 RF Dongle + 0619 TSU9400 Remote Control + 0666 Hantek DDS-3005 Arbitrary Waveform Generator + 0700 Semiconductors CICT Hub + 0701 150P1 TFT Display + 0809 AVNET Bluetooth Device + 0811 JR24 CDRW + 0814 DCCX38/P data cable + 0815 eHome Infrared Receiver + 0844 SA2111/02 1GB Flash Audio Player + 084a GoGear SA3125 + 084e GoGear SA60xx (mtp) + 0888 Hantek DDS-3005 Arbitrary Waveform Generator + 1103 Digital Speaker System + 1120 Creative Rhomba MP3 player + 1125 Nike psa[128max Player + 1137 HDD065 MP3 player + 1201 Arima Bluetooth Device + 1230 Wireless Adapter 11g + 1232 SNU6500 Wireless Adapter + 1233 Wireless Adapter Bootloader Download + 1236 SNU5600 802.11bg + 1237 TalkTalk SNU5630NS/05 802.11bg + 1552 ISP 1581 Hi-Speed USB MPEG2 Encoder Reference Kit + 1801 Diva MP3 player + 200a Wireless Network Adapter + 200f 802.11n Wireless Adapter + 2021 SDE3273FC/97 2.5" SATA HDD Enclosure [INIC-1608L] + 2022 GoGear SA52XX + 2034 Webcam SPC530NC + 2036 Webcam SPC1030NC + 203f TSU9200 Remote Control + 2046 TSU9800 Remote Control + 204e GoGear RaGa (SA1942/02) + 205e TSU9300 Remote Control + 206c MCE IR Receiver - Spinel plusf0r ASUS + 2070 GoGear Mix + 2076 GoGear Aria + 2079 GoGear Opus + 2088 MCE IR Receiver with ALS- Spinel plus for ASUS + 209e PTA01 Wireless Adapter + 20b6 GoGear Vibe + 20d0 SPZ2000 Webcam [PixArt PAC7332] + 20e3 GoGear Raga + 20e4 GoGear ViBE 8GB + 2160 Mio LINK Heart Rate Monitor + 21e0 GoGEAR Raga + 262c SPC230NC Webcam + 2721 PTA 317 TV Camera + 485d Senselock SenseIV v2.x + df55 LPCXpresso LPC-Link +0472 Chicony Electronics Co., Ltd + 0065 PFU-65 Keyboard [Chicony] + b086 Asus USB2.0 Webcam + b091 Webcam +0473 Sanyo Information Business Co., Ltd +0474 Sanyo Electric Co., Ltd + 0110 Digital Voice Recorder R200 + 0217 Xacti J2 + 022f C5 Digital Media Camera (mass storage mode) + 0230 C5 Digital Media Camera (PictBridge mode) + 0231 C5 Digital Media Camera (PC control mode) + 0401 Optical Drive + 0701 SCP-4900 Cellphone + 071f Usb Com Port Enumerator + 0722 W33SA Camera +0475 Relisys/Teco Information System + 0100 NEC Petiscan + 0103 Eclipse 1200U/Episode + 0210 Scorpio Ultra 3 +0476 AESP +0477 Seagate Technology, Inc. +0478 Connectix Corp. + 0001 QuickCam + 0002 QuickClip + 0003 QuickCam Pro +0479 Advanced Peripheral Laboratories +047a Semtech Corp. + 0004 ScreenCoder UR7HCTS2-USB +047b Silitek Corp. + 0001 Keyboard + 0002 Keyboard and Mouse + 0011 SK-1688U Keyboard + 00f9 SK-1789u Keyboard + 0101 BlueTooth Keyboard and Mouse + 020b SK-3105 SmartCard Reader + 050e Internet Compact Keyboard + 1000 Trust Office Scan USB 19200 + 1002 HP ScanJet 4300c Parallel Port +047c Dell Computer Corp. + ffff UPS Tower 500W LV +047d Kensington + 1001 Mouse*in*a*Box + 1002 Expert Mouse Pro + 1003 Orbit TrackBall + 1004 MouseWorks + 1005 TurboBall + 1006 TurboRing + 1009 Orbit TrackBall for Mac + 1012 PocketMouse + 1013 Mouse*in*a*Box Optical Pro + 1014 Expert Mouse Pro Wireless + 1015 Expert Mouse + 1016 ADB/USB Orbit + 1018 Studio Mouse + 101d Mouse*in*a*Box Optical Pro + 101e Studio Mouse Wireless + 101f PocketMouse Pro + 1020 Expert Mouse Trackball + 1021 Expert Mouse Wireless + 1022 Orbit Optical + 1023 Pocket Mouse Pro Wireless + 1024 PocketMouse + 1025 Mouse*in*a*Box Optical Elite Wireless + 1026 Pocket Mouse Pro + 1027 StudioMouse + 1028 StudioMouse Wireless + 1029 Mouse*in*a*Box Optical Elite + 102a Mouse*in*a*Box Optical + 102b PocketMouse + 102c Iridio + 102d Pilot Optical + 102e Pilot Optical Pro + 102f Pilot Optical Pro Wireless + 1042 Ci25m Notebook Optical Mouse [Diamond Eye Precision] + 1043 Ci65m Wireless Notebook Optical Mouse + 104a PilotMouse Mini Retractable + 105d PocketMouse Bluetooth + 105e Bluetooth EDR Dongle + 1061 PocketMouse Grip + 1062 PocketMouse Max + 1063 PocketMouse Max Wireless + 1064 PocketMouse 2.0 Wireless + 1065 PocketMouse 2.0 + 1066 PocketMouse Max Glow + 1067 ValueMouse + 1068 ValueOpt White + 1069 ValueOpt Black + 106a PilotMouse Laser Wireless Mini + 106b PilotMouse Laser - 3 Button + 106c PilotMouse Laser - Gaming + 106d PilotMouse Laser - Wired + 106e PilotMouse Micro Laser + 1070 ValueOpt Travel + 1071 ValueOpt RF TX + 1072 PocketMouse Colour + 1073 PilotMouse Laser - 6 Button + 1074 PilotMouse Laser Wireless Mini + 1075 SlimBlade Presenter Media Mouse + 1076 SlimBlade Media Mouse + 1077 SlimBlade Presenter Mouse + 1152 Bluetooth EDR Dongle + 2002 Optical Elite Wireless + 2010 Wireless Presentation Remote + 2012 Wireless Presenter with Laser Pointer + 2021 PilotBoard Wireless + 2030 PilotBoard Wireless + 2034 SlimBlade Media Notebook Set + 2041 SlimBlade Trackball + 2048 Orbit Trackball with Scroll Ring + 4003 Gravis Xterminator Digital Gamepad + 4005 Gravis Eliminator GamePad Pro + 4006 Gravis Eliminator AfterShock + 4007 Gravis Xterminator Force + 4008 Gravis Destroyer TiltPad + 5001 Cabo I Camera + 5002 VideoCam CABO II + 5003 VideoCam + 8018 Expert Wireless Trackball Mouse (K72359WW) + 8068 Pro Fit Ergo Vertical Wireless Trackball +047e Agere Systems, Inc. (Lucent) + 0300 ORiNOCO Card + 1001 USS720 Parallel Port + 2892 Systems Soft Modem + bad1 Lucent 56k Modem + f101 Atlas Modem +047f Plantronics, Inc. + 0101 Bulk Driver + 02ee BT600 + 0301 Bulk Driver + 0411 Savi Office Base Station + 0ca1 USB DSP v4 Audio Interface + 4254 BUA-100 Bluetooth Adapter + aa05 DA45 + ac01 Savi 7xx + ad01 GameCom 777 5.1 Headset + af01 DA80 + c008 Audio 655 DSP + c00e Blackwire C310 headset + c03b HD1 + ca01 Calisto 800 Series + da60 DA60 +0480 Toshiba America Inc + 0001 InTouch Module + 0004 InTouch Module + 0011 InTouch Module + 0014 InTouch Module + 0100 Stor.E Slim USB 3.0 + 0200 External Disk + 0212 Toshiba Canvio Connect II 500GB Portable Hard Drive + 0820 Canvio Advance Disk + 0821 Canvio Advance 2TB model DTC920 + 0900 MQ04UBF100 + a006 External Disk 1.5TB + a007 External Disk USB 3.0 + a009 Stor.E Basics + a00d STOR.E BASICS 500GB + a100 Canvio Alu 2TB 2.5" Black External Disk Model HDTH320EK3CA + a102 Canvio Alu 2TB 2.5" Black External Disk Model HDTH320EK3CA + a202 Canvio Basics HDD + a208 Canvio Basics 2TB USB 3.0 Portable Hard Drive + b001 Stor.E Partner + b207 Canvio Ready + d000 External Disk 2TB Model DT01ABA200 + d010 External Disk 3TB + d011 Canvio Desk +0481 Zenith Data Systems +0482 Kyocera Corp. + 000e FS-1020D Printer + 000f FS-1920 Mono Printer + 0015 FS-1030D printer + 0100 Finecam S3x + 0101 Finecam S4 + 0103 Finecam S5 + 0105 Finecam L3 + 0106 Finecam + 0107 Digital Camera Device + 0108 Digital Camera Device + 0203 AH-K3001V + 0204 iBurst Terminal + 0408 FS-1320D Printer + 0640 ECOSYS M6026cdn + 069b ECOSYS M2635dn + 06b4 ECOSYS M5526cdw +0483 STMicroelectronics + 0102 Remote NDIS Network device with Android debug (ADB) + 0103 Remote NDIS Network device + 0104 MTP device with Android debug (ADB) + 0105 MTP device + 0106 PTP device with Android debug (ADB) + 0107 PTP device + 0137 BeWAN ADSL USB ST (blue or green) + 0138 Unicorn II (ST70138B + MTC-20174TQ chipset) + 0adb Android Debug Bridge (ADB) device + 0afb Android Fastboot device + 1307 Cytronix 6in1 Card Reader + 163d Cool Icam Digi-MP3 + 2015 TouchChip® Fingerprint Reader + 2016 Fingerprint Reader + 2017 Biometric Smart Card Reader + 2018 BioSimKey + 2302 Portable Flash Device (PFD) + 3744 ST-LINK/V1 + 3747 ST Micro Connect Lite + 3748 ST-LINK/V2 + 374b ST-LINK/V2.1 + 374d STLINK-V3 Loader + 374e STLINK-V3 + 374f STLINK-V3 + 3752 ST-LINK/V2.1 + 3753 STLINK-V3 + 4810 ISDN adapter + 481d BT Digital Access adapter + 5000 ST Micro/Ergenic ERG BT-002 Bluetooth Adapter + 5001 ST Micro Bluetooth Device + 5710 Joystick in FS Mode + 5720 Mass Storage Device + 5721 Interrupt Demo + 5722 Bulk Demo + 5730 Audio Speaker + 5731 Microphone + 5740 Virtual COM Port + 5750 LED badge -- mini LED display -- 11x44 + 7270 ST Micro Serial Bridge + 7554 56k SoftModem + 8213 ThermaData Logger Cradle + 8259 Probe + 91d1 Sensor Hub + a171 ThermaData WiFi + a2e0 BMeasure instrument + df11 STM Device in DFU Mode + ff10 Swann ST56 Modem +0484 Specialix +0485 Nokia Monitors +0486 ASUS Computers, Inc. + 0185 EeePC T91MT HID Touch Panel +0487 Stewart Connector +0488 Cirque Corp. +0489 Foxconn / Hon Hai + 0502 SmartMedia Card Reader Firmware Loader + 0503 SmartMedia Card Reader + d00c Rollei Compactline (Storage Mode) + d00e Rollei Compactline (Video Mode) + e000 T-Com TC 300 + e003 Pirelli DP-L10 + e00d Broadcom Bluetooth 2.1 Device + e00f Foxconn T77H114 BCM2070 [Single-Chip Bluetooth 2.1 + EDR Adapter] + e011 Acer Bluetooth module + e016 Ubee PXU1900 WiMAX Adapter [Beceem BCSM250] + e02c Atheros AR5BBU12 Bluetooth Device + e032 Broadcom BCM20702 Bluetooth + e042 Broadcom BCM20702 Bluetooth + e04d Atheros AR3012 Bluetooth + e055 BCM43142A0 broadcom bluetooth +048a S-MOS Systems, Inc. +048c Alps Electric Ireland, Ltd +048d Integrated Technology Express, Inc. + 1165 IT1165 Flash Controller + 1172 Flash Drive + 1234 Chipsbank CBM2199 Flash Drive + 1336 SD/MMC Cardreader + 1345 Multi Cardreader + 8297 IT8297 RGB LED Controller + 9006 IT9135 BDA Afatech DVB-T HDTV Dongle + 9009 Zolid HD DVD Maker + 9135 Zolid Mini DVB-T Stick + 9306 IT930x DVB stick + 9503 ITE it9503 feature-limited DVB-T transmission chip [ccHDtv] + 9507 ITE it9507 full featured DVB-T transmission chip [ccHDtv] + 9910 IT9910 chipset based grabber + ff59 Hdmi-CEC Bridge +048f Eicon Tech. +0490 United Microelectronics Corp. +0491 Capetronic + 0003 Taxan Monitor Control +0492 Samsung SemiConductor, Inc. + 0140 MP3 player + 0141 MP3 Player +0493 MAG Technology Co., Ltd +0495 ESS Technology, Inc. +0496 Micron Electronics +0497 Smile International + c001 Camera Device +0498 Capetronic (Kaohsiung) Corp. +0499 Yamaha Corp. + 1000 UX256 MIDI I/F + 1001 MU1000 + 1002 MU2000 + 1003 MU500 + 1004 UW500 + 1005 MOTIF6 + 1006 MOTIF7 + 1007 MOTIF8 + 1008 UX96 MIDI I/F + 1009 UX16 MIDI I/F + 100a EOS BX + 100c UC-MX + 100d UC-KX + 100e S08 + 100f CLP-150 + 1010 CLP-170 + 1011 P-250 + 1012 TYROS + 1013 PF-500 + 1014 S90 + 1015 MOTIF-R + 1016 MDP-5 + 1017 CVP-204 + 1018 CVP-206 + 1019 CVP-208 + 101a CVP-210 + 101b PSR-1100 + 101c PSR-2100 + 101d CLP-175 + 101e PSR-K1 + 101f EZ-J24 + 1020 EZ-250i + 1021 MOTIF ES 6 + 1022 MOTIF ES 7 + 1023 MOTIF ES 8 + 1024 CVP-301 + 1025 CVP-303 + 1026 CVP-305 + 1027 CVP-307 + 1028 CVP-309 + 1029 CVP-309GP + 102a PSR-1500 + 102b PSR-3000 + 102e ELS-01/01C + 1030 PSR-295/293 + 1031 DGX-205/203 + 1032 DGX-305 + 1033 DGX-505 + 1037 PSR-E403 + 103c MOTIF-RACK ES + 1054 S90XS Keyboard/Music Synthesizer + 160f P-105 + 1613 Clavinova CLP535 + 1617 PSR-E353 digital keyboard + 1704 Steinberg UR44 + 2000 DGP-7 + 2001 DGP-5 + 3001 YST-MS55D USB Speaker + 3003 YST-M45D USB Speaker + 4000 NetVolante RTA54i Broadband&ISDN Router + 4001 NetVolante RTW65b Broadband Wireless Router + 4002 NetVolante RTW65i Broadband&ISDN Wireless Router + 4004 NetVolante RTA55i Broadband VoIP Router + 5000 CS1D + 5001 DSP1D + 5002 DME32 + 5003 DM2000 + 5004 02R96 + 5005 ACU16-C + 5006 NHB32-C + 5007 DM1000 + 5008 01V96 + 5009 SPX2000 + 500a PM5D + 500b DME64N + 500c DME24N + 6001 CRW2200UX Lightspeed 2 External CD-RW Drive + 7000 DTX + 7010 UB99 +049a Gandalf Technologies, Ltd +049b Curtis Computer Products +049c Acer Advanced Labs, Inc. + 0002 Keyboard (???) +049d VLSI Technology +049f Compaq Computer Corp. + 0002 InkJet Color Printer + 0003 iPAQ PocketPC + 000e Internet Keyboard + 0012 InkJet Color Printer + 0018 PA-1/PA-2 MP3 Player + 0019 InkJet Color Printer + 001a S4 100 Scanner + 001e IJ650 Inkjet Printer + 001f WL215 Adapter + 0021 S200 Scanner + 0027 Bluetooth Multiport Module by Compaq + 002a 1400P Inkjet Printer + 002b A3000 + 002c Lexmark X125 + 0032 802.11b Adapter [ipaq h5400] + 0033 Wireless LAN MultiPort W100 [Intersil PRISM 2.5] + 0036 Bluetooth Multiport Module + 0051 KU-0133 Easy Access Interner Keyboard + 0076 Wireless LAN MultiPort W200 + 0080 GPRS Multiport + 0086 Bluetooth Device + 504a Personal Jukebox PJB100 + 505a Linux-USB "CDC Subset" Device, or Itsy (experimental) + 8511 iPAQ Networking 10/100 Ethernet [pegasus2] +04a0 Digital Equipment Corp. +04a1 SystemSoft Corp. + fff0 Telex Composite Device +04a2 FirePower Systems +04a3 Trident Microsystems, Inc. +04a4 Hitachi, Ltd + 0004 DVD-CAM DZ-MV100A Camcorder + 001e DVDCAM USB HS Interface +04a5 Acer Peripherals Inc. (now BenQ Corp.) + 0001 Keyboard + 0002 API Ergo K/B + 0003 API Generic K/B Mouse + 12a6 AcerScan C310U + 1a20 Prisa 310U + 1a2a Prisa 620U + 2022 Prisa 320U/340U + 2040 Prisa 620UT + 205e ScanPrisa 640BU + 2060 Prisa 620U+/640U + 207e Prisa 640BU + 209e ScanPrisa 640BT + 20ae S2W 3000U + 20b0 S2W 3300U/4300U + 20be Prisa 640BT + 20c0 Prisa 1240UT + 20de S2W 4300U+ + 20f8 Benq 5000 + 20fc Benq 5000 + 20fe SW2 5300U + 2137 Benq 5150/5250 + 2202 Benq 7400UT + 2311 Benq 5560 + 3003 Benq Webcam + 3008 Benq 1500 + 300a Benq 3410 + 300c Benq 1016 + 3019 Benq DC C40 + 4000 P30 Composite Device + 4013 BenQ-Siemens EF82/SL91 + 4044 BenQ-Siemens SF71 + 4045 BenQ-Siemens E81 + 4048 BenQ M7 + 6001 Mass Storage Device + 6002 Mass Storage Device + 6003 ATA/ATAPI Adapter + 6004 Mass Storage Device + 6005 Mass Storage Device + 6006 Mass Storage Device + 6007 Mass Storage Device + 6008 Mass Storage Device + 6009 Mass Storage Device + 600a Mass Storage Device + 600b Mass Storage Device + 600c Mass Storage Device + 600d Mass Storage Device + 600e Mass Storage Device + 600f Mass Storage Device + 6010 Mass Storage Device + 6011 Mass Storage Device + 6012 Mass Storage Device + 6013 Mass Storage Device + 6014 Mass Storage Device + 6015 Mass Storage Device + 6125 MP3 Player + 6180 MP3 Player + 6200 MP3 Player + 7500 Hi-Speed Mass Storage Device + 8001 BenQ ZOWIE Gaming Mouse + 9000 AWL300 Wireless Adapter + 9001 AWL400 Wireless Adapter + 9213 Kbd Hub +04a6 Nokia Display Products + 00b9 Audio + 0180 Hub Type P + 0181 HID Monitor Controls +04a7 Visioneer + 0100 StrobePro + 0101 Strobe Pro Scanner (1.01) + 0102 StrobePro Scanner + 0211 OneTouch 7600 Scanner + 0221 OneTouch 5300 Scanner + 0223 OneTouch 8200 + 0224 OneTouch 4800 USB/Microtek Scanport 3000 + 0225 VistaScan Astra 3600(ENG) + 0226 OneTouch 5300 USB + 0229 OneTouch 7100 + 022a OneTouch 6600 + 022c OneTouch 9000/9020 + 0231 6100 Scanner + 0311 6200 EPP/USB Scanner + 0321 OneTouch 8100 EPP/USB Scanner + 0331 OneTouch 8600 EPP/USB Scanner + 0341 6400 + 0361 VistaScan Astra 3600(ENG) + 0362 OneTouch 9320 + 0371 OneTouch 8700/8920 + 0380 OneTouch 7700 + 0382 Photo Port 7700 + 0390 9650 + 03a0 Xerox 4800 One Touch + 0410 OneTouch Pro 8800/8820 + 0421 9450 USB + 0423 9750 Scanner + 0424 Strobe XP 450 + 0425 Strobe XP 100 + 0426 Strobe XP 200 + 0427 Strobe XP 100 + 0444 OneTouch 7300 + 0445 CardReader 100 + 0446 Xerox DocuMate 510 + 0447 XEROX DocuMate 520 + 0448 XEROX DocuMate 250 + 0449 Xerox DocuMate 252 + 044a Xerox 6400 + 044c Xerox DocuMate 262 + 0474 Strobe XP 300 + 0475 Xerox DocuMate 272 + 0478 Strobe XP 220 + 0479 Strobe XP 470 + 047a 9450 + 047b 9650 + 047d 9420 + 0480 9520 + 048f Strobe XP 470 + 0491 Strobe XP 450 + 0493 9750 + 0494 Strobe XP 120 + 0497 Patriot 430 + 0498 Patriot 680 + 0499 Patriot 780 + 049b Strobe XP 100 + 04a0 7400 + 04ac Xerox Travel Scanner 100 + 04bb strobe 400 scanner + 04cd Xerox Travel Scanner 150 + 04ee Duplex Combo Scanner +04a8 Multivideo Labs, Inc. + 0101 Hub + 0303 Peripheral Switch + 0404 Peripheral Switch +04a9 Canon, Inc. + 1005 BJ Printer Hub + 1035 PD Printer Storage + 1050 BJC-8200 + 1051 BJC-3000 Color Printer + 1052 BJC-6100 + 1053 BJC-6200 + 1054 BJC-6500 + 1055 BJC-85 + 1056 BJC-2110 Color Printer + 1057 LR1 + 105a BJC-55 + 105b S600 Printer + 105c S400 + 105d S450 Printer + 105e S800 + 1062 S500 Printer + 1063 S4500 + 1064 S300 Printer + 1065 S100 + 1066 S630 + 1067 S900 + 1068 S9000 + 1069 S820 + 106a S200 Printer + 106b S520 Printer + 106d S750 Printer + 106e S820D + 1070 S530D + 1072 I850 Printer + 1073 I550 Printer + 1074 S330 Printer + 1076 i70 + 1077 i950 + 107a S830D + 107b i320 + 107c i470D + 107d i9100 + 107e i450 + 107f i860 + 1082 i350 + 1084 i250 + 1085 i255 + 1086 i560 + 1088 i965 + 108a i455 + 108b i900D + 108c i475D + 108d PIXMA iP2000 + 108f i80 + 1090 i9900 Photo Printer + 1091 PIXMA iP1500 + 1093 PIXMA iP4000 + 1094 PIXMA iP3000x Printer + 1095 PIXMA iP6000D + 1097 PIXMA iP5000 + 1098 PIXMA iP1000 + 1099 PIXMA iP8500 + 109c PIXMA iP4000R + 109d iP90 + 10a0 PIXMA iP1600 Printer + 10a2 iP4200 + 10a4 iP5200R + 10a5 iP5200 + 10a7 iP6210D + 10a8 iP6220D + 10a9 iP6600D + 10b6 PIXMA iP4300 Printer + 10b7 PIXMA iP5300 Printer + 10c2 PIXMA iP1800 Printer + 10c4 Pixma iP4500 Printer + 10c9 PIXMA iP4600 Printer + 10ca PIXMA iP3600 Printer + 10e3 PIXMA iX6850 Printer + 12fe Printer in service mode + 1404 W6400PG + 1405 W8400PG + 150f BIJ2350 PCL + 1510 BIJ1350 PCL + 1512 BIJ1350D PCL + 1601 DR-2080C Scanner + 1607 DR-6080 Scanner + 1608 DR-2580C Scanner + 1609 DR-3080CII + 160a DR-2050C Scanner + 1700 PIXMA MP110 Scanner + 1701 PIXMA MP130 Scanner + 1702 MP410 Composite + 1703 MP430 Composite + 1704 MP330 Composite + 1706 PIXMA MP750 Scanner + 1707 PIXMA MP780/MP790 + 1708 PIXMA MP760/MP770 + 1709 PIXMA MP150 Scanner + 170a PIXMA MP170 Scanner + 170b PIXMA MP450 Scanner + 170c PIXMA MP500 Scanner + 170d PIXMA MP800 Scanner + 170e PIXMA MP800R + 1710 MP950 + 1712 PIXMA MP530 + 1713 PIXMA MP830 Scanner + 1714 MP160 + 1715 PIXMA MP180 + 1716 PIXMA MP460 + 1717 PIXMA MP510 + 1718 PIXMA MP600 + 1719 PIXMA MP600R + 171a PIXMA MP810 + 171b PIXMA MP960 + 171c PIXMA MX7600 + 1721 PIXMA MP210 + 1722 PIXMA MP220 + 1723 PIXMA MP470 + 1724 PIXMA MP520 series + 1725 PIXMA MP610 + 1726 PIXMA MP970 + 1727 PIXMA MX300 + 1728 PIXMA MX310 series + 1729 PIXMA MX700 + 172b MP140 ser + 172c PIXMA MX850 + 172d PIXMA MP980 + 172e PIXMA MP630 + 172f PIXMA MP620 + 1730 PIXMA MP540 + 1731 PIXMA MP480 + 1732 PIXMA MP240 + 1733 PIXMA MP260 + 1734 PIXMA MP190 + 1735 PIXMA MX860 + 1736 PIXMA MX320 series + 1737 PIXMA MX330 + 173a PIXMA MP250 + 173b PIXMA MP270 All-In-One Printer + 173c PIXMA MP490 + 173d PIXMA MP550 + 173e PIXMA MP560 + 173f PIXMA MP640 + 1740 PIXMA MP990 + 1741 PIXMA MX340 + 1742 PIXMA MX350 + 1743 PIXMA MX870 + 1746 PIXMA MP280 + 1747 PIXMA MP495 + 1748 PIXMA MG5100 Series + 1749 PIXMA MG5200 Series + 174a PIXMA MG6100 Series + 174b PIXMA MG8100 Series + 174d PIXMA MX360 + 174e PIXMA MX410 + 174f PIXMA MX420 + 1750 PIXMA MX880 Series + 1752 PIXMA MG3100 Series + 1753 PIXMA MG4100 Series + 1754 PIXMA MG5300 Series + 1755 PIXMA MG6200 Series + 1756 PIXMA MG8200 Series + 1757 PIXMA MP493 + 1759 PIXMA MX370 Series + 175b PIXMA MX430 Series + 175c PIXMA MX510 Series + 175d PIXMA MX710 Series + 175e PIXMA MX890 Series + 175f PIXMA MP230 + 1762 PIXMA MG3200 Series + 1763 PIXMA MG4200 Series + 1764 PIXMA MG5400 Series + 1765 PIXMA MG6300 Series + 1766 PIXMA MX390 Series + 1768 PIXMA MX450 Series + 1769 PIXMA MX520 Series + 176a PIXMA MX720 Series + 176b PIXMA MX920 Series + 176d PIXMA MG2500 Series + 176e PIXMA MG3500 Series + 176f PIXMA MG6500 Series + 1770 PIXMA MG6400 Series + 1771 PIXMA MG5500 Series + 1772 PIXMA MG7100 Series + 1774 PIXMA MX470 Series + 1775 PIXMA MX530 Series + 177c PIXMA MG7500 Series + 177e PIXMA MG6600 Series + 177f PIXMA MG5600 Series + 1780 PIXMA MG2900 Series + 1787 PIXMA MX490 Series + 178a PIXMA MG3600 Series + 178d PIXMA MG6853 + 180b PIXMA MG3000 series + 1856 PIXMA TS6250 + 1900 CanoScan LiDE 90 + 1901 CanoScan 8800F + 1904 CanoScan LiDE 100 + 1905 CanoScan LiDE 200 + 1906 CanoScan 5600F + 1907 CanoScan LiDE 700F + 1909 CanoScan LiDE 110 + 190a CanoScan LiDE 210 + 190d CanoScan 9000F Mark II + 190e CanoScan LiDE 120 + 190f CanoScan LiDE 220 + 1913 CanoScan LiDE 300 + 2200 CanoScan LiDE 25 + 2201 CanoScan FB320U + 2202 CanoScan FB620U + 2204 CanoScan FB630U + 2205 CanoScan FB1210U + 2206 CanoScan N650U/N656U + 2207 CanoScan 1220U + 2208 CanoScan D660U + 220a CanoScan D2400UF + 220b CanoScan D646U + 220c CanoScan D1250U2 + 220d CanoScan N670U/N676U/LiDE 20 + 220e CanoScan N1240U/LiDE 30 + 220f CanoScan 8000F + 2210 CanoScan 9900F + 2212 CanoScan 5000F + 2213 CanoScan LiDE 50/LiDE 35/LiDE 40 + 2214 CanoScan LiDE 80 + 2215 CanoScan 3000/3000F/3000ex + 2216 CanoScan 3200F + 2217 CanoScan 5200F + 2219 CanoScan 9950F + 221b CanoScan 4200F + 221c CanoScan LiDE 60 + 221e CanoScan 8400F + 221f CanoScan LiDE 500F + 2220 CanoScan LIDE 25 + 2224 CanoScan LiDE 600F + 2225 CanoScan LiDE 70 + 2228 CanoScan 4400F + 2229 CanoScan 8600F + 2602 MultiPASS C555 + 2603 MultiPASS C755 + 260a LBP810 + 260e LBP-2000 + 2610 MPC600F + 2611 SmartBase MPC400 + 2612 MultiPASS C855 + 2617 LBP1210 + 261a iR1600 + 261b iR1610 + 261c iC2300 + 261f MPC200 Printer + 2621 iR2000 + 2622 iR2010 + 2623 FAX-B180C + 2629 FAXPHONE L75 + 262b LaserShot LBP-1120 Printer + 262c imageCLASS D300 + 262d iR C3200 + 262f PIXMA MP730 + 2630 PIXMA MP700 + 2631 LASER CLASS 700 + 2632 FAX-L2000 + 2633 LASERCLASS 500 + 2634 PC-D300/FAX-L400/ICD300 + 2635 MPC190 + 2636 LBP3200 + 2637 iR C6800 + 2638 iR C3100 + 263c PIXMA MP360 + 263d PIXMA MP370 + 263e PIXMA MP390 + 263f PIXMA MP375R + 2646 MF5530 Scanner Device V1.9.1 + 2647 MF5550 Composite + 264c PIXMA MP740 + 264d PIXMA MP710 + 264e MF5630 + 264f MF5650 (FAX) + 2650 iR 6800C EUR + 2651 iR 3100C EUR + 2654 LBP3600 + 2655 FP-L170/MF350/L380/L398 + 2656 iR1510-1670 CAPT Printer + 2657 LBP3210 + 2659 MF8100 + 265b CAPT Printer + 265c iR C3220 + 265d MF5730 + 265e MF5750 + 265f MF5770 + 2660 MF3110 + 2663 iR3570/iR4570 + 2664 iR2270/iR2870 + 2665 iR C2620 + 2666 iR C5800 + 2667 iR85PLUS + 2669 iR105PLUS + 266a LBP3000 + 266b iR8070 + 266c iR9070 + 266d iR 5800C EUR + 266e CAPT Device + 266f iR2230 + 2670 iR3530 + 2671 iR5570/iR6570 + 2672 iR C3170 + 2673 iR 3170C EUR + 2674 FAX-L120 + 2675 iR2830 + 2676 LBP2900 + 2677 iR C2570 + 2678 iR 2570C EUR + 2679 LBP5000 + 267a iR2016 + 267b iR2020 + 267d MF7100 series + 267e LBP3300 + 2684 MF3200 series + 2686 MF6500 series + 2687 iR4530 + 2688 LBP3460 + 2689 FAX-L180/L380S/L398S + 268a LC310/L390/L408S + 268b LBP3500 + 268c iR C6870 + 268d iR 6870C EUR + 268e iR C5870 + 268f iR 5870C EUR + 2691 iR7105 + 26a1 LBP5300 + 26a3 MF4100 series + 26a4 LBP5100 + 26b0 MF4600 series + 26b4 MF4010 series + 26b5 MF4200 series + 26b6 FAX-L140/L130 + 26b9 LBP3310 + 26ba LBP5050 + 26da LBP3010/LBP3018/LBP3050 + 26db LBP3100/LBP3108/LBP3150 + 26e6 iR1024 + 26ea LBP9100C + 26ee MF4320-4350 + 26f1 LBP7200C + 26ff LBP6300 + 271a LBP6000 + 271b LBP6200 + 271c LBP7010C/7018C + 2736 I-SENSYS MF4550d + 2737 MF4410 + 2742 imageRUNNER1133 series + 2771 LBP6020 + 2796 LBP6230/6240 + 3041 PowerShot S10 + 3042 CanoScan FS4000US Film Scanner + 3043 PowerShot S20 + 3044 EOS D30 + 3045 PowerShot S100 + 3046 IXY Digital + 3047 Digital IXUS + 3048 PowerShot G1 + 3049 PowerShot Pro90 IS + 304a CP-10 + 304b IXY Digital 300 + 304c PowerShot S300 + 304d Digital IXUS 300 + 304e PowerShot A20 + 304f PowerShot A10 + 3050 PowerShot unknown 1 + 3051 PowerShot S110 + 3052 Digital IXUS V + 3055 PowerShot G2 + 3056 PowerShot S40 + 3057 PowerShot S30 + 3058 PowerShot A40 + 3059 PowerShot A30 + 305b ZR45MC Digital Camcorder + 305c PowerShot unknown 2 + 3060 EOS D60 + 3061 PowerShot A100 + 3062 PowerShot A200 + 3063 CP-100 + 3065 PowerShot S200 + 3066 Digital IXUS 330 + 3067 MV550i Digital Video Camera + 3069 PowerShot G3 + 306a Digital unknown 3 + 306b MVX2i Digital Video Camera + 306c PowerShot S45 + 306d PowerShot S45 PtP Mode + 306e PowerShot G3 (normal mode) + 306f PowerShot G3 (ptp) + 3070 PowerShot S230 + 3071 PowerShot S230 (ptp) + 3072 PowerShot SD100 / Digital IXUS II (ptp) + 3073 PowerShot A70 (ptp) + 3074 PowerShot A60 (ptp) + 3075 IXUS 400 Camera + 3076 PowerShot A300 + 3077 PowerShot S50 + 3078 ZR70MC Digital Camcorder + 307a MV650i (normal mode) + 307b MV630i Digital Video Camera + 307c CP-200 + 307d CP-300 + 307f Optura 20 + 3080 MVX150i (normal mode) / Optura 20 (normal mode) + 3081 Optura 10 + 3082 MVX100i / Optura 10 + 3083 EOS 10D + 3084 EOS 300D / EOS Digital Rebel + 3085 PowerShot G5 + 3087 Elura 50 (PTP mode) + 3088 Elura 50 (normal mode) + 308d MVX3i + 308e FV M1 (normal mode) / MVX 3i (normal mode) / Optura Xi (normal mode) + 3093 Optura 300 + 3096 IXY DV M2 (normal mode) / MVX 10i (normal mode) + 3099 EOS 300D (ptp) + 309a PowerShot A80 + 309b Digital IXUS (ptp) + 309c PowerShot S1 IS + 309d Powershot Pro 1 + 309f Camera + 30a0 Camera + 30a1 Camera + 30a2 Camera + 30a8 Elura 60E/Optura 40 (ptp) + 30a9 MVX25i (normal mode) / Optura 40 (normal mode) + 30b1 PowerShot S70 (normal mode) / PowerShot S70 (PTP mode) + 30b2 PowerShot S60 (normal mode) / PowerShot S60 (PTP mode) + 30b3 PowerShot G6 (normal mode) / PowerShot G6 (PTP mode) + 30b4 PowerShot S500 + 30b5 PowerShot A75 + 30b6 Digital IXUS II2 / Digital IXUS II2 (PTP mode) / PowerShot SD110 (PTP mode) / PowerShot SD110 Digital ELPH + 30b7 PowerShot A400 / PowerShot A400 (PTP mode) + 30b8 PowerShot A310 / PowerShot A310 (PTP mode) + 30b9 Powershot A85 + 30ba PowerShot S410 Digital Elph + 30bb PowerShot A95 + 30bd CP-220 + 30be CP-330 + 30bf Digital IXUS 40 + 30c0 Digital IXUS 30 (PTP mode) / PowerShot SD200 (PTP mode) + 30c1 Digital IXUS 50 (normal mode) / IXY Digital 55 (normal mode) / PowerShot A520 (PTP mode) / PowerShot SD400 (normal mode) + 30c2 PowerShot A510 (normal mode) / PowerShot A510 (PTP mode) + 30c4 Digital IXUS i5 (normal mode) / IXY Digital L2 (normal mode) / PowerShot SD20 (normal mode) + 30ea EOS 1D Mark II (PTP mode) + 30eb EOS 20D + 30ec EOS 20D (ptp) + 30ee EOS 350D + 30ef EOS 350D (ptp) + 30f0 PowerShot S2 IS (PTP mode) + 30f2 Digital IXUS 700 (normal mode) / Digital IXUS 700 (PTP mode) / IXY Digital 600 (normal mode) / PowerShot SD500 (normal mode) / PowerShot SD500 (PTP mode) + 30f4 PowerShot SD30 / Ixus iZoom / IXY DIGITAL L3 + 30f5 SELPHY CP500 + 30f6 SELPHY CP400 + 30f8 Powershot A430 + 30f9 PowerShot A410 (PTP mode) + 30fa PowerShot S80 + 30fc PowerShot A620 (PTP mode) + 30fd PowerShot A610 (normal mode)/PowerShot A610 (PTP mode) + 30fe Digital IXUS 65 (PTP mode)/PowerShot SD630 (PTP mode) + 30ff Digital IXUS 55 (PTP mode)/PowerShot SD450 (PTP mode) + 3100 PowerShot TX1 + 310b SELPHY CP600 + 310e Digital IXUS 50 (PTP mode) + 310f PowerShot A420 + 3110 EOS Digital Rebel XTi + 3115 PowerShot SD900 / Digital IXUS 900 Ti / IXY DIGITAL 1000 + 3116 Digital IXUS 750 / PowerShot SD550 (PTP mode) + 3117 PowerShot A700 + 3119 PowerShot SD700 IS / Digital IXUS 800 IS / IXY Digital 800 IS + 311a PowerShot S3 IS + 311b PowerShot A540 + 311c PowerShot SD600 DIGITAL ELPH / DIGITAL IXUS 60 / IXY DIGITAL 70 + 3125 PowerShot G7 + 3126 PowerShot A530 + 3127 SELPHY CP710 + 3128 SELPHY CP510 + 312d Elura 100 + 3136 PowerShot SD800 IS / Digital IXUS 850 IS / IXY DIGITAL 900 IS + 3137 PowerShot SD40 / Digital IXUS i7 IXY / DIGITAL L4 + 3138 PowerShot A710 IS + 3139 PowerShot A640 + 313a PowerShot A630 + 3141 SELPHY ES1 + 3142 SELPHY CP730 + 3143 SELPHY CP720 + 3145 EOS 450D + 3146 EOS 40D + 3147 EOS 1Ds Mark III + 3148 PowerShot S5 IS + 3149 PowerShot A460 + 314b PowerShot SD850 IS DIGITAL ELPH / Digital IXUS 950 IS / IXY DIGITAL 810 IS + 314c PowerShot A570 IS + 314d PowerShot A560 + 314e PowerShot SD750 DIGITAL ELPH / DIGITAL IXUS 75 / IXY DIGITAL 90 + 314f PowerShot SD1000 DIGITAL ELPH / DIGITAL IXUS 70 / IXY DIGITAL 10 + 3150 PowerShot A550 + 3155 PowerShot A450 + 315a PowerShot G9 + 315b PowerShot A650 IS + 315d PowerShot A720 + 315e PowerShot SX100 IS + 315f PowerShot SD950 IS DIGITAL ELPH / DIGITAL IXUS 960 IS / IXY DIGITAL 2000 IS + 3160 Digital IXUS 860 IS + 3170 SELPHY CP750 + 3171 SELPHY CP740 + 3172 SELPHY CP520 + 3173 PowerShot SD890 IS DIGITAL ELPH / Digital IXUS 970 IS / IXY DIGITAL 820 IS + 3174 PowerShot SD790 IS DIGITAL ELPH / Digital IXUS 90 IS / IXY DIGITAL 95 IS + 3175 IXY Digital 25 IS + 3176 PowerShot A590 + 3177 PowerShot A580 + 317a PC1267 [Powershot A470] + 3184 Digital IXUS 80 IS (PTP mode) + 3185 SELPHY ES2 + 3186 SELPHY ES20 + 318d PowerShot SX100 IS + 318e PowerShot A1000 IS + 318f PowerShot G10 + 3191 PowerShot A2000 IS + 3192 PowerShot SX110 IS + 3193 PowerShot SD990 IS DIGITAL ELPH / Digital IXUS 980 IS / IXY DIGITAL 3000 IS + 3195 PowerShot SX1 IS + 3196 PowerShot SD880 IS DIGITAL ELPH / Digital IXUS 870 IS / IXY DIGITAL 920 IS + 3199 EOS 5D Mark II + 319a EOS 7D + 319b EOS 50D + 31aa SELPHY CP770 + 31ab SELPHY CP760 + 31ad PowerShot E1 + 31af SELPHY ES3 + 31b0 SELPHY ES30 + 31b1 SELPHY CP530 + 31bc PowerShot D10 + 31bd PowerShot SD960 IS DIGITAL ELPH / Digital IXUS 110 IS / IXY DIGITAL 510 IS + 31be PowerShot A2100 IS + 31bf PowerShot A480 + 31c0 PowerShot SX200 IS + 31c1 PowerShot SD970 IS DIGITAL ELPH / Digital IXUS 990 IS / IXY DIGITAL 830 IS + 31c2 PowerShot SD780 IS DIGITAL ELPH / Digital IXUS 100 IS / IXY DIGITAL 210 IS + 31c3 PowerShot A1100 IS + 31c4 PowerShot SD1200 IS DIGITAL ELPH / Digital IXUS 95 IS / IXY DIGITAL 110 IS + 31cf EOS Rebel T1i / EOS 500D / EOS Kiss X3 + 31dd SELPHY CP780 + 31df PowerShot G11 + 31e0 PowerShot SX120 IS + 31e1 PowerShot S90 + 31e4 PowerShot SX20 IS + 31e5 Digital IXUS 200 IS + 31e6 PowerShot SD940 IS DIGITAL ELPH / Digital IXUS 120 IS / IXY DIGITAL 220 IS + 31e7 SELPHY CP790 + 31ea EOS Rebel T2i / EOS 550D / EOS Kiss X4 + 31ee SELPHY ES40 + 31ef PowerShot A495 + 31f0 PowerShot A490 + 31f1 PowerShot A3100 IS / PowerShot A3150 IS + 31f2 PowerShot A3000 IS + 31f3 PowerShot Digital ELPH SD1400 IS + 31f4 PowerShot SD1300 IS / IXUS 105 + 31f5 Powershot SD3500 IS / IXUS 210 IS + 31f6 PowerShot SX210 IS + 31f7 Powershot SD4000 IS / IXUS 300 HS / IXY 30S + 31f8 Powershot SD4500 IS / IXUS 1000 HS / IXY 50S + 31ff Digital IXUS 55 + 3209 Vixia HF S21 A + 320f PowerShot G12 + 3210 Powershot SX30 IS + 3211 PowerShot SX130 IS + 3212 Powershot S95 + 3214 SELPHY CP800 + 3215 EOS 60D + 3218 EOS 600D / Rebel T3i (ptp) + 3219 EOS 1D X + 3223 PowerShot A3300 IS + 3224 PowerShot A3200 IS + 3225 PowerShot ELPH 500 HS / IXUS 310 HS + 3226 PowerShow A800 + 3227 PowerShot ELPH 100 HS / IXUS 115 HS + 3228 PowerShot SX230 HS + 3229 PowerShot ELPH 300 HS / IXUS 220 HS + 322a PowerShot A2200 + 322b Powershot A1200 + 322c PowerShot SX220 HS + 3233 PowerShot G1 X + 3234 PowerShot SX150 IS + 3235 PowerShot ELPH 510 HS / IXUS 1100 HS + 3236 PowerShot S100 + 3237 PowerShot ELPH 310 HS / IXUS 230 HS + 3238 PowerShot SX40 HS + 323a EOS 5D Mark III + 323b EOS Rebel T4i + 323d EOS M + 323e PowerShot A1300 + 323f PowerShot A810 + 3240 PowerShot ELPH 320 HS / IXUS 240 HS + 3241 PowerShot ELPH 110 HS / IXUS 125 HS + 3242 PowerShot D20 + 3243 PowerShot A4000 IS + 3244 PowerShot SX260 HS + 3245 PowerShot SX240 HS + 3246 PowerShot ELPH 530 HS / IXUS 510 HS + 3247 PowerShot ELPH 520 HS / IXUS 500 HS + 3248 PowerShot A3400 IS + 3249 PowerShot A2400 IS + 324a PowerShot A2300 + 3250 EOS 6D + 3252 EOS 1D C + 3253 EOS 70D + 3255 SELPHY CP900 + 3256 SELPHY CP810 + 3258 PowerShot G15 + 3259 PowerShot SX50 HS + 325a PowerShot SX160 IS + 325b PowerShot S110 + 325c PowerShot SX500 IS + 325e PowerShot N + 325f PowerShot SX280 HS + 3260 PowerShot SX270 HS + 3261 PowerShot A3500 IS + 3262 PowerShot A2600 + 3263 PowerShot SX275 HS + 3264 PowerShot A1400 + 3265 Powershot ELPH 130 IS / IXUS 140 + 3266 Powershot ELPH 120 IS / IXUS 135 + 3268 PowerShot ELPH 330 HS / IXUS 255 HS + 326f EOS 7D Mark II + 3270 EOS 100D + 3271 PowerShot A2500 + 3272 EOS 700D + 3274 PowerShot G16 + 3275 PowerShot S120 + 3276 PowerShot SX170 IS + 3277 PowerShot SX510 HS + 3278 PowerShot S200 + 327a SELPHY CP910 + 327b SELPHY CP820 + 327d Powershot ELPH 115 IS / IXUS 132 + 327f EOS Rebel T5 / EOS 1200D / EOS Kiss X70 + 3284 PowerShot D30 + 3285 PowerShot SX700 HS + 3286 PowerShot SX600 HS + 3287 PowerShot ELPH 140 IS / IXUS 150 + 3288 Powershot ELPH 135 / IXUS 145 + 3289 PowerShot ELPH 340 HS / IXUS 265 HS + 328a PowerShot ELPH 150 IS / IXUS 155 + 328b PowerShot N Facebook(R) Ready + 3299 EOS M3 + 329a PowerShot SX60 HS + 329b PowerShot SX520 HS + 329c PowerShot SX400 IS + 329d PowerShot G7 X + 329f PowerShot SX530 HS + 32a0 EOS M10 + 32a6 PowerShot SX710 HS + 32a7 PowerShot SX610 HS + 32a8 PowerShot G3 X + 32aa Powershot ELPH 160 / IXUS 160 + 32ab PowerShot ELPH 350HS / IXUS 275 HS + 32ac PowerShot ELPH 170 IS / IXUS 170 + 32ad PowerShot SX410 IS + 32b1 SELPHY CP1200 + 32b2 PowerShot G9 X + 32b3 PowerShot G5 X + 32b4 EOS Rebel T6 + 32bb EOS M5 + 32bf PowerShot SX420 IS + 32c0 PowerShot ELPH 190IS + 32c1 PowerShot ELPH 180 / IXUS 175 + 32c2 PowerShot SX720 HS + 32c5 EOS M6 + 32cc EOS 200D + 32d1 EOS M100 + 32d2 EOS M50 + 32d4 Powershot ELPH 185 / IXUS 185 / IXY 200 + 32d5 PowerShot SX430 IS + 32db SELPHY CP1300 +04aa DaeWoo Telecom, Ltd +04ab Chromatic Research +04ac Micro Audiometrics Corp. +04ad Dooin Electronics + 2501 Bluetooth Device +04af Winnov L.P. +04b0 Nikon Corp. + 0102 Coolpix 990 + 0103 Coolpix 880 + 0104 Coolpix 995 + 0106 Coolpix 775 + 0107 Coolpix 5000 + 0108 Coolpix 2500 + 0109 Coolpix 2500 (ptp) + 010a Coolpix 4500 + 010b Coolpix 4500 (ptp) + 010d Coolpix 5700 (ptp) + 010e Coolpix 4300 (storage) + 010f Coolpix 4300 (ptp) + 0110 Coolpix 3500 (Sierra Mode) + 0111 Coolpix 3500 (ptp) + 0112 Coolpix 885 (ptp) + 0113 Coolpix 5000 (ptp) + 0114 Coolpix 3100 (storage) + 0115 Coolpix 3100 (ptp) + 0117 Coolpix 2100 (ptp) + 0119 Coolpix 5400 (ptp) + 011d Coolpix 3700 (ptp) + 0121 Coolpix 3200 (ptp) + 0122 Coolpix 2200 (ptp) + 0124 Coolpix 8400 (mass storage mode) + 0125 Coolpix 8400 (ptp) + 0126 Coolpix 8800 + 0129 Coolpix 4800 (ptp) + 012c Coolpix 4100 (storage) + 012d Coolpix 4100 (ptp) + 012e Coolpix 5600 (ptp) + 0130 Coolpix 4600 (ptp) + 0135 Coolpix 5900 (ptp) + 0136 Coolpix 7900 (storage) + 0137 Coolpix 7900 (ptp) + 013a Coolpix 100 (storage) + 013b Coolpix 100 (ptp) + 0141 Coolpix P2 (storage) + 0142 Coolpix P2 (ptp) + 0163 Coolpix P5100 (ptp) + 0169 Coolpix P50 (ptp) + 0202 Coolpix SQ (ptp) + 0203 Coolpix 4200 (mass storage mode) + 0204 Coolpix 4200 (ptp) + 0205 Coolpix 5200 (storage) + 0206 Coolpix 5200 (ptp) + 0301 Coolpix 2000 (storage) + 0302 Coolpix 2000 (ptp) + 0317 Coolpix L20 (ptp) + 0402 DSC D100 (ptp) + 0403 D2H (mass storage mode) + 0404 D2H SLR (ptp) + 0405 D70 (mass storage mode) + 0406 DSC D70 (ptp) + 0408 D2X SLR (ptp) + 0409 D50 digital camera + 040a D50 (ptp) + 040c D2Hs + 040e DSC D70s (ptp) + 040f D200 (mass storage mode) + 0410 D200 (ptp) + 0411 D80 (mass storage mode) + 0412 D80 (MTP/PTP mode) + 0413 D40 (mass storage mode) + 041e D60 digital camera (mass storage mode) + 0422 D700 (ptp) + 0423 D5000 + 0424 D3000 + 0425 D300S + 0428 D7000 + 0429 D5100 + 042a D800 (ptp) + 0430 D7100 + 0436 D810 + 043f D5600 + 0f03 PD-10 Wireless Printer Adapter + 4000 Coolscan LS 40 ED + 4001 LS 50 ED/Coolscan V ED + 4002 Super Coolscan LS-5000 ED +04b1 Pan International +04b3 IBM Corp. + 3003 Rapid Access III Keyboard + 3004 Media Access Pro Keyboard + 300a Rapid Access IIIe Keyboard + 3016 UltraNav Keyboard Hub + 3018 UltraNav Keyboard + 301a 2-port low-power hub + 301b SK-8815 Keyboard + 301c Enhanced Performance Keyboard + 3020 Enhanced Performance Keyboard + 3025 NetVista Full Width Keyboard + 3100 NetVista Mouse + 3103 ScrollPoint Pro Mouse + 3104 ScrollPoint Wireless Mouse + 3105 ScrollPoint Optical (HID) + 3107 ThinkPad 800dpi Optical Travel Mouse + 3108 800dpi Optical Mouse w/ Scroll Point + 3109 Optical ScrollPoint Pro Mouse + 310b Red Wheel Mouse + 310c Wheel Mouse + 4427 Portable CD ROM + 4482 Serial Converter + 4484 SMSC USB20H04 3-Port Hub [ThinkPad X4 UltraBase, Wistron S Note-3 Media Slice] + 4485 ThinkPad Dock Hub + 4524 40 Character Vacuum Fluorescent Display + 4525 Double sided CRT + 4535 4610 Suremark Printer + 4550 NVRAM (128 KB) + 4554 Cash Drawer + 4580 Hub w/ NVRAM + 4581 4800-2xx Hub w/ Cash Drawer + 4604 Keyboard w/ Card Reader + 4671 4820 LCD w/ MSR/KB +04b4 Cypress Semiconductor Corp. + 0001 Mouse + 0002 CY7C63x0x Thermometer + 0008 CDC ACM serial port + 0033 Mouse + 0060 Wireless optical mouse + 00f3 FX3 micro-controller (DFU mode) + 0100 Cino FuzzyScan F760-B + 0101 Keyboard/Hub + 0102 Keyboard with APM + 0130 MyIRC Remote Receiver + 0306 Telephone Receiver + 0407 Optical Skype Mouse + 0818 AE-SMKD92-* [Thumb Keyboard] + 0bad MetaGeek Wi-Spy + 1002 CY7C63001 R100 FM Radio + 1006 Human Interface Device + 2050 hub + 2830 Opera1 DVB-S (cold state) + 3813 NANO BIOS Programmer + 4235 Monitor 02 Driver + 4381 SCAPS USC-1 Scanner Controller + 4611 Storage Adapter FX2 (CY) + 4616 Flash Disk (TPP) + 4624 DS-Xtreme Flash Card + 4717 West Bridge + 5201 Combi Keyboard-Hub (Hub) + 5202 Combi Keyboard-Hub (Keyboard) + 5500 HID->COM RS232 Adapter + 5a9b Dacal CD/DVD Library D-101/DC-300/DC-016RW + 6022 Hantek DSO-6022BE + 602a Hantek DSO-6022BL + 6370 ViewMate Desktop Mouse CC2201 + 6502 CY4609 + 6506 CY4603 + 650a CY4613 + 6560 CY7C65640 USB-2.0 "TetraHub" + 6570 Unprogrammed CY7C65632/34 hub HX2VL + 6572 Unprogrammed CY7C65642 hub + 6830 CY7C68300A EZ-USB AT2 USB 2.0 to ATA/ATAPI + 6831 Storage Adapter ISD-300LP (CY) + 7417 Wireless PC Lock/Ultra Mouse + 8329 USB To keyboard/Mouse Converter + 8613 CY7C68013 EZ-USB FX2 USB 2.0 Development Kit + 8614 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 861f Anysee E30 USB 2.0 DVB-T Receiver + bca1 Barcode Reader + cc04 Centor USB RACIA-ALVAR USB PORT + cc06 Centor-P RACIA-ALVAR USB PORT + d5d5 CY7C63x0x Zoltrix Z-Boxer GamePad + de61 Barcode Reader + de64 Barcode Reader + f000 CY30700 Licorice evaluation board + f111 CY8CKIT-002 PSoC MiniProg3 Rev A Program and debug kit + f115 PSoC FirstTouch Programmer + f139 KitProg + f231 DELLY Changer 4in1 universal IR remote + f232 Mono embedded computer + fd10 Gembird MSIS-PM + fd13 Energenie EG-PMS + fd15 Energenie EG-PMS2 +04b5 ROHM LSI Systems USA, LLC + 3064 Hantek DSO-3064 + 6022 Hantek DSO-6022BE + 602a Hantek DSO-6022BL +04b6 Hint Corp. +04b7 Compal Electronics, Inc. +04b8 Seiko Epson Corp. + 0001 Stylus Color 740 / Photo 750 + 0002 ISD Smart Cable for Mac + 0003 ISD Smart Cable + 0004 Printer + 0005 Printer + 0006 Printer + 0007 Printer + 0015 Stylus Photo R3000 + 0080 SC-P400 Series + 0101 GT-7000U [Perfection 636] + 0102 GT-2200 + 0103 GT-6600U [Perfection 610] + 0104 GT-7600UF [Perfection 1200U/1200U Photo] + 0105 Stylus Scan 2000 + 0106 Stylus Scan 2500 + 0107 ES-2000 [Expression 1600U] + 0108 CC-700 + 0109 ES-8500 [Expression 1640 XL] + 010a GT-8700/GT-8700F [Perfection 1640SU/1640SU PHOTO] + 010b GT-7700U [Perfection 1240U] + 010c GT-6700U [Perfection 640] + 010d CC-500L + 010e ES-2200 [Perfection 1680] + 010f GT-7200U [Perfection 1250/1250 PHOTO] + 0110 GT-8200U/GT-8200UF [Perfection 1650/1650 PHOTO] + 0112 GT-9700F [Perfection 2450 PHOTO] + 0114 Perfection 660 + 0116 GT-9400UF [Perfection 3170] + 0118 GT-F600 [Perfection 4180] + 0119 GT-X750 [Perfection 4490 Photo] + 011a CC-550L [1000 ICS] + 011b GT-9300UF [Perfection 2400 PHOTO] + 011c GT-9800F [Perfection 3200] + 011d GT-7300U [Perfection 1260/1260 PHOTO] + 011e GT-8300UF [Perfection 1660 PHOTO] + 011f GT-8400UF [Perfection 1670/1670 PHOTO] + 0120 GT-7400U [Perfection 1270] + 0121 GT-F500/GT-F550 [Perfection 2480/2580 PHOTO] + 0122 GT-F520/GT-F570 [Perfection 3590 PHOTO] + 0126 ES-7000H [GT-15000] + 0128 GT-X700 [Perfection 4870] + 0129 ES-10000G [Expression 10000XL] + 012a GT-X800 [Perfection 4990 PHOTO] + 012b ES-H300 [GT-2500] + 012c GT-X900 [Perfection V700/V750 Photo] + 012d GT-F650 [GT-S600/Perfection V10/V100] + 012e GT-F670 [Perfection V200 Photo] + 012f GT-F700 [Perfection V350] + 0130 GT-X770 [Perfection V500] + 0131 GT-F720 [GT-S620/Perfection V30/V300 Photo] + 0133 GT-1500 [GT-D1000] + 0135 GT-X970 + 0136 ES-D400 [GT-S80] + 0137 ES-D200 [GT-S50] + 0138 ES-H7200 [GT-20000] + 013a GT-X820 [Perfection V600 Photo] + 0142 GT-F730 [GT-S630/Perfection V33/V330 Photo] + 0143 GT-S55 + 0144 GT-S85 + 0151 Perfection V800 Photo + 0202 Interface Card UB-U05 for Thermal Receipt Printers [M129C/TM-T70/TM-T88IV] + 0401 CP 800 Digital Camera + 0402 PhotoPC 850z + 0403 PhotoPC 3000z + 0509 JVC PIX-MC10 + 0601 Stylus Photo 875DC Card Reader + 0602 Stylus Photo 895 Card Reader + 0801 CC-600PX [Stylus CX5200/CX5400/CX6600] + 0802 CC-570L [Stylus CX3100/CX3200] + 0803 Printer (Composite Device) + 0804 Storage Device + 0805 Stylus CX6300/CX6400 + 0806 PM-A850 [Stylus Photo RX600/610] + 0807 Stylus Photo RX500/510 + 0808 Stylus CX5200/CX5300/CX5400 + 0809 Storage Device + 080a F-3200 + 080c ME100 [Stylus CX1500] + 080d Stylus CX4500/4600 + 080e PX-A550 [CX-3500/3600/3650 MFP] + 080f Stylus Photo RX420/RX425/RX430 + 0810 PM-A900 [Stylus Photo RX700] + 0811 PM-A870 [Stylus Photo RX620/RX630] + 0812 MFP Composite Device + 0813 Stylus CX6500/6600 + 0814 PM-A700 + 0815 LP-A500 [AcuLaser CX1] + 0816 Printer (Composite Device) + 0817 LP-M5500/LP-M5500F + 0818 Stylus CX3700/CX3800/DX3800 + 0819 PX-A650 [Stylus CX4700/CX4800/DX4800/DX4850] + 081a PM-A750 [Stylus Photo RX520/RX530] + 081b MFP Composite Device + 081c PM-A890 [Stylus Photo RX640/RX650] + 081d PM-A950 + 081e MFP Composite Device + 081f Stylus CX7700/7800 + 0820 Stylus CX4100/CX4200/DX4200 + 0821 Stylus CX5700F/CX5800F + 0822 Storage Device + 0823 MFP Composite Device + 0824 Storage Device + 0825 MFP Composite Device + 0826 Storage Device + 0827 PM-A820 [Stylus Photo RX560/RX580/RX585/RX590] + 0828 PM-A970 + 0829 PM-T990 + 082a PM-A920 + 082b Stylus CX5900/CX5000/DX5000/DX5050 + 082c Storage Device + 082d Storage Device + 082e PX-A720 [Stylus CX5900/CX6000/DX6000] + 082f PX-A620 [Stylus CX3900/DX4000/DX4050] + 0830 ME 200 [Stylus CX2800/CX2900] + 0831 Stylus CX6900F/CX7000F/DX7000F + 0832 MFP Composite Device + 0833 LP-M5600 + 0834 LP-M6000 + 0835 AcuLaser CX21 + 0836 PM-T960 + 0837 PM-A940 [Stylus Photo RX680/RX685/RX690] + 0838 PX-A640 [CX7300/CX7400/DX7400] + 0839 PX-A740 [CX8300/CX8400/DX8400] + 083a PX-FA700 [CX9300F/CX9400Fax/DX9400F] + 083b MFP Composite Device + 083c PM-A840S [Stylus Photo RX595/RX610] + 083d MFP Composite Device + 083e MFP Composite Device + 083f Stylus CX4300/CX4400/CX5500/CX5600/DX4400/DX4450 + 0841 PX-401A [ME 300/Stylus NX100] + 0843 LP-M5000 + 0844 EP-901A/EP-901F [Artisan 800/Stylus Photo PX800FW] + 0846 EP-801A [Artisan 700/Stylus Photo PX700W/TX700W] + 0847 PX-601F [ME Office 700FW/Stylus Office BX600FW/TX600FW] + 0848 ME Office 600F/Stylus Office BX300F/TX300F + 0849 Stylus SX205 + 084a PX-501A [Stylus NX400] + 084d PX-402A [Stylus SX115/Stylus NX110 Series] + 084f Multifunctional Printer Scanner [ME Office 510 / Epson Stylus SX215] + 0850 EP-702A [Stylus Photo PX650/TX650 Series] + 0851 Stylus SX410 + 0852 EP-802A [Artisan 710 Series/Stylus Photo PX710W/TX720W Series] + 0853 EP-902A [Artisan 810 Series/Stylus Photo PX810FW Series] + 0854 ME OFFICE 650FN Series/Stylus Office BX310FN/TX520FN Series + 0855 PX-602F [Stylus Office BX610FW/TX620FW Series] + 0856 PX-502A [Stylus SX515W] + 085c ME 320/330 Series [Stylus SX125] + 085d PX-603F [ME OFFICE 960FWD Series/Stylus Office BX625FWD/TX620FWD Series] + 085e PX-503A [ME OFFICE 900WD Series/Stylus Office BX525WD] + 085f Stylus Office BX320FW/TX525FW Series + 0860 EP-903A/EP-903F [Artisan 835/Stylus Photo PX820FWD Series] + 0861 EP-803A/EP-803AW [Artisan 725/Stylus Photo PX720WD/TX720WD Series] + 0862 EP-703A [Stylus Photo PX660 Series] + 0863 ME OFFICE 620F Series/Stylus Office BX305F/BX305FW/TX320F + 0864 ME OFFICE 560W Series + 0865 ME OFFICE 520 Series + 0866 AcuLaser MX20DN/MX20DNF/MX21DNF + 0869 PX-1600F + 086a PX-673F [Stylus Office BX925FWD] + 0870 Stylus Office BX305FW Plus + 0871 K200 Series + 0872 K300 Series + 0873 L200 Series + 0878 EP-704A + 0879 EP-904A/EP-904F [Artisan 837/Stylus Photo PX830FWD Series] + 087b EP-804A/EP-804AR/EP-804AW [Stylus Photo PX730WD/Artisan 730 Series] + 087c PX-1700F + 087d PX-B750F/WP-4525 Series + 087f PX-403A + 0880 PX-434A [Stylus NX330 Series] + 0881 PX-404A [ME OFFICE 535] + 0883 ME 340 Series/Stylus NX130 Series + 0884 Stylus NX430W Series + 0885 Stylus NX230/SX235W Series + 088f Stylus Office BX635FWD + 0890 ME OFFICE 940FW Series/Stylus Office BX630FW Series + 0891 Stylus Office BX535WD + 0892 Stylus Office BX935FWD + 0893 EP-774A + 0e03 Thermal Receipt Printer [TM-T20] + 1114 XP-440 [Expression Home Small-in-One Printer] + 1129 ET-4750 [WorkForce ET-4750 EcoTank All-in-One] + 1168 Workforce WF-7820/7840 Series +04b9 Rainbow Technologies, Inc. + 0300 SafeNet USB SuperPro/UltraPro + 1000 iKey 1000 Token + 1001 iKey 1200 Token + 1002 iKey Token + 1003 iKey Token + 1004 iKey Token + 1005 iKey Token + 1006 iKey Token + 1200 iKey 2000 Token + 1201 iKey Token + 1202 iKey 2032 Token + 1203 iKey Token + 1204 iKey Token + 1205 iKey Token + 1206 iKey 4000 Token + 1300 iKey 3000 Token + 1301 iKey 3000 + 1302 iKey Token + 1303 iKey Token + 1304 iKey Token + 1305 iKey Token + 1306 iKey Token + 8000 SafeNet Sentinel Hardware Key +04ba Toucan Systems, Ltd +04bb I-O Data Device, Inc. + 0101 USB2-IDE/ATAPI Bridge Adapter + 014a HDCL-UT + 0201 USB2-IDE/ATAPI Bridge Adapter + 0204 DVD Multi-plus unit iU-CD2 + 0206 DVD Multi-plus unit DVR-UEH8 + 0301 Storage Device + 0314 USB-SSMRW SD-card + 0319 USB2-IDE/ATAPI Bridge Adapter + 031a USB2-IDE/ATAPI Bridge Adapter + 031b USB2-IDE/ATAPI Bridge Adapter + 031e USB-SDRW SD-card + 0502 Nogatech Live! (BT) + 0528 GV-USB Video Capture + 0901 USB ETT + 0904 ET/TX Ethernet [pegasus] + 0913 ET/TX-S Ethernet [pegasus2] + 0919 USB WN-B11 + 0922 IOData AirPort WN-B11/USBS 802.11b + 0930 ETG-US2 + 0937 WN-WAG/USL Wireless LAN Adapter + 0938 WN-G54/USL Wireless LAN Adapter + 093b WN-GDN/USB + 093f WNGDNUS2 802.11n + 0944 WHG-AGDN/US Wireless LAN Adapter + 0945 WN-GDN/US3 Wireless LAN Adapter + 0947 WN-G150U Wireless LAN Adapter + 0948 WN-G300U Wireless LAN Adapter + 0a03 Serial USB-RSAQ1 + 0a07 USB2-iCN Adapter + 0a08 USB2-iCN Adapter + 0c01 FM-10 Pro Disk +04bd Toshiba Electronics Taiwan Corp. +04be Telia Research AB +04bf TDK Corp. + 0100 MediaReader CF + 0115 USB-PDC Adapter UPA9664 + 0116 USB-cdmaOne Adapter UCA1464 + 0117 USB-PHS Adapter UHA6400 + 0118 USB-PHS Adapter UPA6400 + 0135 MediaReader Dual + 0202 73S1121F Smart Card Reader- + 0309 Bluetooth USB dongle + 030a IBM Bluetooth Ultraport Module + 030b Bluetooth Device + 030c Ultraport Bluetooth Device + 0310 Integrated Bluetooth + 0311 Integrated Bluetooth Device + 0317 Bluetooth UltraPort Module from IBM + 0318 IBM Integrated Bluetooth + 0319 Bluetooth Adapter + 0320 Bluetooth Adapter + 0321 Bluetooth Device + 0a28 INDI AV-IN Device +04c1 U.S. Robotics (3Com) + 0020 56K Voice Pro + 0022 56K Voice Pro + 007e ISDN TA + 0082 OfficeConnect Analog Modem + 008f Pro ISDN TA + 0097 OfficeConnect Analog + 009d HomeConnect Webcam [vicam] + 00a9 ISDN Pro TA-U + 00b9 HomeConnect IDSL Modem + 3021 56k Voice FaxModem Pro +04c2 Methode Electronics Far East PTE, Ltd +04c3 Maxi Switch, Inc. + 1102 Mouse + 2102 Mouse +04c4 Lockheed Martin Energy Research +04c5 Fujitsu, Ltd + 1029 fi-4010c Scanner + 1033 fi-4110CU + 1041 fi-4120c Scanner + 1042 fi-4220c Scanner + 105b AH-F401U Air H device + 1084 PalmSecure Sensor V2 + 1096 fi-5110EOX + 1097 fi-5110C + 10ae fi-4120C2 + 10af fi-4220C2 + 10c7 fi-60f scanner + 10e0 fi-5120c Scanner + 10e1 fi-5220C + 10e7 fi-5900C + 10fe S500 + 1104 KD02906 Line Thermal Printer + 114f fi-6130 + 1150 fi-6230 + 11f3 fi-6130Z + 125a PalmSecure Sensor Device - MP + 132e fi-7160 + 159f ScanSnap iX1500 + 200f Sigma DP2 (Mass Storage) + 2010 Sigma DP2 (PictBridge) + 201d SATA 3.0 6Gbit/s Adaptor [GROOVY] +04c6 Toshiba America Electronic Components +04c7 Micro Macro Technologies +04c8 Konica Corp. + 0720 Digital Color Camera + 0721 e-miniD Camera + 0722 e-mini + 0723 KD-200Z Camera + 0726 KD-310Z Camera + 0728 Revio C2 Mass Storage Device + 0729 Revio C2 Digital Camera + 072c Revio KD20M + 072d Revio KD410Z +04ca Lite-On Technology Corp. + 0020 USB Keyboard + 004b Keyboard + 004f SK-9020 keyboard + 008a Acer Wired Mouse Model SM-9023 + 1766 HID Monitor Controls + 2004 Bluetooth 4.0 [Broadcom BCM20702A0] + 2006 Broadcom BCM43142A0 Bluetooth Device + 2007 Broadcom BCM43142A0 Bluetooth Device + 3005 Atheros Bluetooth + 300b Atheros AR3012 Bluetooth + 300d Atheros AR3012 Bluetooth + 300f Atheros AR3012 Bluetooth + 3014 Qualcomm Atheros Bluetooth + 3015 Qualcomm Atheros QCA9377 Bluetooth + 7022 HP HD Webcam + 7025 HP HD Webcam + 7046 TOSHIBA Web Camera - HD + 7054 HP HD Webcam + 9304 Hub + f01c TT1280DA DVB-T TV Tuner +04cb Fuji Photo Film Co., Ltd + 0100 FinePix 30i/40i/50i, A101/201, 1300/2200, 1400/2400/2600/2800/4500/4700/4800/4900/6800/6900 Zoom + 0103 FinePix NX-500/NX-700 printer + 0104 FinePix A101, 2600/2800/4800/6800 Zoom (PC CAM) + 0108 FinePix F601 Zoom (DSC) + 0109 FinePix F601 Zoom (PC CAM) + 010a FinePix S602 (Pro) Zoom (DSC) + 010b FinePix S602 (Pro) Zoom (PC CAM) + 010d FinePix S2 pro + 010e FinePix F402 Zoom (DSC) + 010f FinePix F402 Zoom (PC CAM) + 0110 FinePix M603 Zoom (DSC) + 0111 FinePix M603 Zoom (PC CAM) + 0112 FinePix A202, A200 Zoom (DSC) + 0113 FinePix A202, A200 Zoom (PC CAM) + 0114 FinePix F401 Zoom (DSC) + 0115 FinePix F401 Zoom (PC CAM) + 0116 FinePix A203 Zoom (DSC) + 0117 FinePix A203 Zoom (PC CAM) + 0118 FinePix A303 Zoom (DSC) + 0119 FinePix A303 Zoom (PC CAM) + 011a FinePix S304/3800 Zoom (DSC) + 011b FinePix S304/3800 Zoom (PC CAM) + 011c FinePix A204/2650 Zoom (DSC) + 011d FinePix A204/2650 Zoom (PC CAM) + 0120 FinePix F700 Zoom (DSC) + 0121 FinePix F700 Zoom (PC CAM) + 0122 FinePix F410 Zoom (DSC) + 0123 FinePix F410 Zoom (PC CAM) + 0124 FinePix A310 Zoom (DSC) + 0125 FinePix A310 Zoom (PC CAM) + 0126 FinePix A210 Zoom (DSC) + 0127 FinePix A210 Zoom (PC CAM) + 0128 FinePix A205(S) Zoom (DSC) + 0129 FinePix A205(S) Zoom (PC CAM) + 012a FinePix F610 Zoom (DSC) + 012b FinePix Digital Camera 030513 + 012c FinePix S7000 Zoom (DSC) + 012d FinePix S7000 Zoom (PC CAM) + 012f FinePix Digital Camera 030731 + 0130 FinePix S5000 Zoom (DSC) + 0131 FinePix S5000 Zoom (PC CAM) + 013b FinePix Digital Camera 030722 + 013c FinePix S3000 Zoom (DSC) + 013d FinePix S3000 Zoom (PC CAM) + 013e FinePix F420 Zoom (DSC) + 013f FinePix F420 Zoom (PC CAM) + 0142 FinePix S7000 Zoom (PTP) + 0148 FinePix A330 Zoom (DSC) + 0149 FinePix A330 Zoom (UVC) + 014a FinePix A330 Zoom (PTP) + 014b FinePix A340 Zoom (DSC) + 014c FinePix A340 Zoom (UVC) + 0159 FinePix F710 Zoom (DSC) + 0165 FinePix S3500 Zoom (DSC) + 0168 FinePix E500 Zoom (DSC) + 0169 FinePix E500 Zoom (UVC) + 016b FinePix E510 Zoom (DSC) + 016c FinePix E510 Zoom (PC CAM) + 016e FinePix S5500 Zoom (DSC) + 016f FinePix S5500 Zoom (UVC) + 0171 FinePix E550 Zoom (DSC) + 0172 FinePix E550 Zoom (UVC) + 0177 FinePix F10 (DSC) + 0179 Finepix F10 (PTP) + 0186 FinePix S5200/S5600 Zoom (DSC) + 0188 FinePix S5200/S5600 Zoom (PTP) + 018e FinePix S9500 Zoom (DSC) + 018f FinePix S9500 Zoom (PTP) + 0192 FinePix E900 Zoom (DSC) + 0193 FinePix E900 Zoom (PTP) + 019b FinePix F30 (PTP) + 01af FinePix A700 (PTP) + 01bf FinePix F6000fd/S6500fd Zoom (PTP) + 01c0 FinePix F20 (PTP) + 01c1 FinePix F31fd (PTP) + 01c3 FinePix S5 Pro + 01c4 FinePix S5700 Zoom (PTP) + 01c5 FinePix F40fd (PTP) + 01c6 FinePix A820 Zoom (PTP) + 01d2 FinePix A800 Zoom (PTP) + 01d3 FinePix A920 (PTP) + 01d4 FinePix F50fd (PTP) + 01d5 FinePix F47 (PTP) + 01e7 Fujifilm A850 Digital Camera + 01f7 FinePix J250 (PTP) + 01fd A160 + 023e FinePix AX300 + 0240 FinePix S2950 Digital Camera + 0241 FinePix S3200 Digital Camera + 0278 FinePix JV300 + 02c5 FinePix S9900W Digital Camera (PTP) + 02e0 X-T200 Digital Camera + 5006 ASK-300 + 5007 DX100 +04cc ST-Ericsson + 1122 Hub + 1520 USB 2.0 Hub (Avocent KVM) + 1521 USB 2.0 Hub + 1a62 GW Instek GSP-830 Spectrum Analyzer (HID) + 2323 Ux500 serial debug port + 2533 NFC device (PN533) + 8116 Camera +04cd Tatung Co. Of America +04ce ScanLogic Corp. + 0002 SL11R-IDE IDE Bridge + 0100 USB2PRN Printer Class + 0300 Phantom 336CX - C3 scanner + 04ce SL11DEMO, VID: 0x4ce, PID: 0x4ce + 07d1 SL11R, VID: 0x4ce, PID: 0x07D1 +04cf Myson Century, Inc. + 0022 OCZ Alchemy Series Elixir II Keyboard + 0800 MTP800 Mass Storage Device + 8810 CS8810 Mass Storage Device + 8811 CS8811 Mass Storage Device + 8813 CS8813 Mass Storage Device + 8818 USB2.0 to ATAPI Bridge Controller + 8819 USB 2.0 SD/MMC Reader + 9920 CS8819A2-114 Mass Storage Device +04d0 Digi International +04d1 ITT Canon +04d2 Altec Lansing Technologies + 0070 ADA70 Speakers + 0305 Non-Compliant Audio Device + 0311 ADA-310 Speakers + 2060 Claritel-i750 - vp + ff05 ADA-305 Speakers + ff47 Lansing HID Audio Controls + ff49 Lansing HID Audio Controls +04d3 VidUS, Inc. +04d4 LSI Logic, Inc. +04d5 Forte Technologies, Inc. +04d6 Mentor Graphics +04d7 Oki Semiconductor + 1be4 Bluetooth Device +04d8 Microchip Technology, Inc. + 0002 PicoLCD 20x2 + 0003 PICkit 2 Microcontroller Programmer + 000a CDC RS-232 Emulation Demo + 000b PIC18F2550 (32K Flashable 10 Channel, 10 Bit A/D USB Microcontroller) + 0032 PICkit1 + 0033 PICkit2 + 0036 PICkit Serial Analyzer + 00e0 PIC32 Starter Board + 04cd 28Cxxx EEPROM Programmer + 0a04 AGP LIN Serial Analyzer + 8000 In-Circuit Debugger + 8001 ICD2 in-circuit debugger + 8101 PIC24F Starter Kit + 8107 Microstick II + 8108 ChipKit Pro MX7 (PIC32MX) + 9004 Microchip REAL ICE + 9009 ICD3 + 900a PICkit3 + 9012 PICkit4 + 9015 ICD 4 In-Circuit Debugger + c001 PicoLCD 20x4 + e11c TL866CS EEPROM Programmer [MiniPRO] + ed16 BeamiRC 2.0 CNC remote controller analoge + edb4 micro PLC (ATSAMD51G19A) [Black Brix ECU II] + edb5 ATMEGA32U4 [Black Brix ECU] + f2c4 Macareux-labs Hygrometry Temperature Sensor + f2f7 Yepkit YKUSH + f3aa Macareux-labs Usbce Bootloader mode + f437 SBE Tech Ultrasonic Anemometer + f4b5 SmartScope + f5fe TrueRNG + f8da Hughski Ltd. ColorHug + f8e8 Harmony 300/350 Remote + f91c SPROG IIv3 + faff Dangerous Prototypes BusPirate v4 Bootloader mode + fb00 Dangerous Prototypes BusPirate v4 + fbb2 GCUSB-nStep stepper motor controller + fbba DiscFerret Magnetic Disc Analyser (bootloader mode) + fbbb DiscFerret Magnetic Disc Analyser (active mode) + fc1e Bachrus Speedometer Interface + fc92 Open Bench Logic Sniffer + ffee Devantech USB-ISS + ffef PICoPLC [APStech] +04d9 Holtek Semiconductor, Inc. + 0006 Wired Keyboard (78/79 key) [RPI Wired Keyboard 5] + 0022 Portable Keyboard + 0129 Keyboard [KBPV8000] + 0348 Keyboard + 0407 Keyboard [TEX Shinobi] + 048e Optical Mouse + 0499 Optical Mouse + 1135 Mouse [MGK-15BU/MLK-15BU] + 1203 Keyboard + 1400 PS/2 keyboard + mouse controller + 1503 Keyboard + 1603 Keyboard + 1702 Keyboard LKS02 + 1818 Keyboard [Diatec Filco Majestouch 2] + 2011 Keyboard [Diatec Filco Majestouch 1] + 2013 Keyboard [Das Keyboard] + 2206 Fujitsu Siemens Mouse Esprimo Q + 2221 Keyboard + 2323 Keyboard + 2519 Shenzhen LogoTech 2.4GHz receiver + 2832 HT82A832R Audio MCU + 2834 HT82A834R Audio MCU + 4545 Keyboard [Diatec Majestouch 2 Tenkeyless] + a01c wireless multimedia keyboard with trackball [Trust ADURA 17911] + a050 Chatman V1 + a052 USB-zyTemp + a055 Keyboard + a075 Optical Gaming Mouse + a096 Keyboard + a09f E-Signal LUOM G10 Mechanical Gaming Mouse + a100 Mouse [HV-MS735] + a11b Mouse [MX-3200] + a153 Optical Gaming Mouse + a29f Microarray fingerprint reader + b534 LGT8F328P Microprocessor + e002 MCU + fc2a Gaming Mouse [Redragon M709] + fc30 Gaming Mouse [Redragon M711] + fc38 Gaming Mouse [Redragon M602-RGB] + fc4d Gaming Mouse [Redragon M908] + fc55 Venus MMO Gaming Mouse +04da Panasonic (Matsushita) + 0901 LS-120 Camera + 0912 SDR-S10 + 0b01 CD-R/RW Drive + 0b03 SuperDisk 240MB + 0d01 CD-R Drive KXL-840AN + 0d09 CD-R Drive KXL-RW32AN + 0d0a CD-R Drive KXL-CB20AN + 0d0d CDRCB03 + 0d0e DVD-ROM & CD-R/RW + 0d14 DVD-RAM MLT08 + 0f07 KX-MB2030 Multifunction Laser Printer + 0f40 Printer + 104d Elite Panaboard UB-T880 (HID) + 104e Elite Panaboard Pen Adaptor (HID) + 1500 MFSUSB Driver + 1800 DY-WL10 802.11abgn Adapter [Broadcom BCM4323] + 1b00 MultiMediaCard + 2121 EB-VS6 + 2316 DVC Mass Storage Device + 2317 DVC USB-SERIAL Driver for WinXP + 2318 NV-GS11/230/250 (webcam mode) + 2319 NV-GS15 (webcam mode) + 231a NV-GS11/230/250 (DV mode) + 231d DVC Web Camera Device + 231e DVC DV Stream Device + 2372 Lumix Camera (Storage mode) + 2374 Lumix Camera (PTP mode) + 2451 HDC-SD9 + 245b HC-X920K (3MOS Full HD video camcorder) + 2477 SDR-H85 Camcorder (PC mode) + 2478 SDR-H85 Camcorder (recorder mode - SD card) + 2479 SDR-H85 Camcorder (recorder mode - HDD) + 2497 HDC-TM700 + 250c Gobi Wireless Modem (QDL mode) + 250d Gobi Wireless Modem + 3904 N5HBZ0000055 802.11abgn Wireless Adapter [Atheros AR7010+AR9280] + 3908 N5HBZ0000062 802.11abgn Wireless Adapter [Atheros AR9374v1.1] + 3c04 JT-P100MR-20 [ePassport Reader] +04db Hypertec Pty, Ltd +04dc Huan Hsin Holdings, Ltd +04dd Sharp Corp. + 13a6 MFC2000 + 6006 AL-1216 + 6007 AL-1045 + 6008 AL-1255 + 6009 AL-1530CS + 600a AL-1540CS + 600b AL-1456 + 600c AL-1555 + 600d AL-1225 + 600e AL-1551CS + 600f AR-122E + 6010 AR-152E + 6011 AR-157E + 6012 SN-1045 + 6013 SN-1255 + 6014 SN-1456 + 6015 SN-1555 + 6016 AR-153E + 6017 AR-122E N + 6018 AR-153E N + 6019 AR-152E N + 601a AR-157E N + 601b AL-1217 + 601c AL-1226 + 601d AR-123E + 6021 IS01 + 7002 DVC Ver.1.0 + 7004 VE-CG40U Digital Still Camera + 7005 VE-CG30 Digital Still Camera + 7007 VL-Z7S Digital Camcorder + 8004 Zaurus SL-5000D/SL-5500 PDA + 8005 Zaurus A-300 + 8006 Zaurus SL-B500/SL-5600 PDA + 8007 Zaurus C-700 PDA + 9009 AR-M160 + 9014 IM-DR80 Portable NetMD Player + 9031 Zaurus C-750/C-760/C-860/SL-C3000 PDA + 9032 Zaurus SL-6000 + 903a GSM GPRS + 9050 Zaurus C-860 PDA + 9056 Viewcam Z + 9073 AM-900 + 9074 GSM GPRS + 90a9 Sharp Composite + 90d0 USB-to-Serial Comm. Port + 90f2 Sharp 3G GSM USB Control + 9120 WS004SH + 9122 WS007SH + 9123 W-ZERO3 ES Smartphone + 91a3 922SH Internet Machine + 939a IS03 +04de MindShare, Inc. +04df Interlink Electronics +04e1 Iiyama North America, Inc. + 0201 Monitor Hub +04e2 Exar Corp. + 1410 XR21V1410 USB-UART IC +04e3 Zilog, Inc. +04e4 ACC Microelectronics +04e5 Promise Technology +04e6 SCM Microsystems, Inc. + 0001 E-USB ATA Bridge + 0002 eUSCSI SCSI Bridge + 0003 eUSB SmartMedia Card Reader + 0005 eUSB SmartMedia/CompactFlash Card Reader + 0006 eUSB SmartMedia Card Reader + 0007 Hifd + 0009 eUSB ATA/ATAPI Adapter + 000a eUSB CompactFlash Adapter + 000b eUSCSI Bridge + 000c eUSCSI Bridge + 000d Dazzle MS + 0012 Dazzle SD/MMC + 0101 eUSB ATA Bridge (Sony Spressa USB CDRW) + 0311 Dazzle DM-CF + 0312 Dazzle DM-SD/MMC + 0313 Dazzle SM + 0314 Dazzle MS + 0322 e-Film Reader-5 + 0325 eUSB ORCA Quad Reader + 0327 Digital Media Reader + 03fe DMHS2 DFU Adapter + 0406 eUSB SmartDM Reader + 04e6 eUSB DFU Adapter + 04e7 STCII DFU Adapter + 04e8 eUSBDM DFU Adapter + 04e9 DM-E DFU Adapter + 0500 Veridicom 5thSense Fingerprint Sensor and eUSB SmartCard + 0701 DCS200 Loader Device + 0702 DVD Creation Station 200 + 0703 DVC100 Loader Device + 0704 Digital Video Creator 100 + 1001 SCR300 Smart Card Reader + 1010 USBAT-2 CompactFlash Card Reader + 1014 e-Film Reader-3 + 1020 USBAT ATA/ATAPI Adapter + 2007 RSA SecurID ComboReader + 2009 Citibank Smart Card Reader + 200a Reflex v.2 Smart Card Reader + 200d STR391 Reader + 5111 SCR331-DI SmartCard Reader + 5113 SCR333 SmartCard Reader + 5114 SCR331-DI SmartCard Reader + 5115 SCR335 SmartCard Reader + 5116 SCR331-LC1 / SCR3310 SmartCard Reader + 5117 SCR3320 - Smart Card Reader + 5118 Expresscard SIM Card Reader + 5119 SCR3340 - ExpressCard54 Smart Card Reader + 511b SmartCard Reader + 511d SCR3311 Smart Card Reader + 5120 SCR331-DI SmartCard Reader + 5121 SDI010 Smart Card Reader + 5151 SCR338 Keyboard Smart Card Reader + 5292 SCL011 RFID reader + 5410 SCR35xx Smart Card Reader + 5591 SCL3711-NFC&RW + 5810 uTrust 2700 R Smart Card Reader + e000 SCRx31 Reader + e001 SCR331 SmartCard Reader + e003 SPR532 PinPad SmartCard Reader +04e7 Elo TouchSystems + 0001 TouchScreen + 0002 Touchmonitor Interface 2600 Rev 2 + 0004 4000U CarrollTouch® Touchmonitor Interface + 0007 2500U IntelliTouch® Touchmonitor Interface + 0008 3000U AccuTouch® Touchmonitor Interface + 0009 4000U CarrollTouch® Touchmonitor Interface + 0020 Touchscreen Interface (2700) + 0021 Touchmonitor Interface + 0030 4500U CarrollTouch® Touchmonitor Interface + 0032 Touchmonitor Interface + 0033 Touchmonitor Interface + 0041 5010 Surface Capacitive Touchmonitor Interface + 0042 Touchmonitor Interface + 0050 2216 AccuTouch® Touchmonitor Interface + 0071 Touchmonitor Interface + 0072 Touchmonitor Interface + 0081 Touchmonitor Interface + 0082 Touchmonitor Interface + 00ff Touchmonitor Interface +04e8 Samsung Electronics Co., Ltd + 0001 Printer Bootloader + 0100 Kingston Flash Drive (128MB) + 0110 Connect3D Flash Drive + 0111 Connect3D Flash Drive + 0300 E2530 / GT-C3350 Phones (Mass storage mode) + 04e8 Galaxy (MIDI mode) + 1003 MP3 Player and Recorder + 1006 SDC-200Z + 130c NX100 + 1323 WB700 Camera + 1f05 S2 Portable [JMicron] (500GB) + 1f06 HX-MU064DA portable harddisk + 2018 WIS09ABGN LinkStick Wireless LAN Adapter + 2035 Digital Photo Frame Mass Storage + 2036 Digital Photo Frame Mini Monitor + 3004 ML-4600 + 3005 Docuprint P1210 + 3008 ML-6060 laser printer + 300c ML-1210 Printer + 300e Laser Printer + 3104 ML-3550N + 3210 ML-5200A Laser Printer + 3226 Laser Printer + 3228 Laser Printer + 322a Laser Printer + 322c Laser Printer + 3230 ML-1440 + 3232 Laser Printer + 3236 ML-1450 + 3238 ML-1430 + 323a ML-1710 Printer + 323b Phaser 3130 + 323c Laser Printer + 323d Phaser 3120 + 323e Laser Printer + 3240 Laser Printer + 3242 ML-1510 Laser Printer + 3248 Color Laser Printer + 324a Laser Printer + 324c ML-1740 Printer + 324d Phaser 3121 + 3256 ML-1520 Laser Printer + 325b Xerox Phaser 3117 Laser Printer + 325f Phaser 3425 Laser Printer + 3260 CLP-510 Color Laser Printer + 3268 ML-1610 Mono Laser Printer + 326c ML-2010P Mono Laser Printer + 3276 ML-3050/ML-3051 Laser Printer + 327e ML-2510 Series + 328e CLP-310 Color Laser Printer + 3292 ML-1640 Series Laser Printer + 3296 ML-2580N Mono Laser Printer + 3297 ML-191x/ML-252x Laser Printer + 329f CLP-325 Color Laser Printer + 3301 ML-1660 Series + 330c ML-1865 + 330f ML-216x Series Laser Printer + 3310 ML-331x Series Laser Printer + 3315 ML-2540 Series Laser Printer + 331e M262x/M282x Xpress Series Laser Printer + 3409 SCX-4216F Scanner + 340c SCX-5x15 series + 340d SCX-6x20 series + 340e MFP 560 series + 340f Printing Support + 3412 SCX-4x20 series + 3413 SCX-4100 Scanner + 3415 Composite Device + 3419 Composite Device + 341a Printing Support + 341b SCX-4200 series + 341c Composite Device + 341d Composite Device + 341f Composite Device + 3420 Composite Device + 3426 SCX-4500 Laser Printer + 342d SCX-4x28 Series + 344f SCX-3400 Series + 347e C48x Series Color Laser Multifunction Printer + 3605 InkJet Color Printer + 3606 InkJet Color Printer + 3609 InkJet Color Printer + 3902 InkJet Color Printer + 3903 Xerox WorkCentre XK50cx + 390f InkJet Color Printer + 3911 SCX-1020 series + 4001 PSSD T7 + 4005 GT-S8000 Jet (msc) + 4f1f GT-S8000 Jet (mtp) + 5000 YP-MF series + 5001 YP-100 + 5002 YP-30 + 5003 YP-700 + 5004 YP-30 + 5005 YP-300 + 5006 YP-750 + 500d MP3 Player + 5010 Yepp YP-35 + 5011 YP-780 + 5013 YP-60 + 5015 yepp upgrade + 501b MP3 Player + 5021 Yepp YP-ST5 + 5026 YP-MT6V + 5027 YP-T7 + 502b YP-F1 + 5032 YP-J70 + 503b YP-U1 MP3 Player + 503d YP-T7F + 5041 YP-Z5 + 5050 YP-U2 MP3 Player + 5051 YP-F2R + 5055 YP-T9 + 507d YP-U3 (mtp) + 507f YP-T9J + 5080 Yepp YP-K3 (msc) + 5081 Yepp YP-K3 (mtp) + 5082 YP-P2 (msc) + 5083 YP-P2 (mtp) + 508a YP-T10 + 508b YP-S5 MP3 Player + 508c YP-S5 + 5090 YP-S3 (msc) + 5091 YP-S3 (mtp) + 5092 YP-U4 (msc) + 5093 YP-U4 (mtp) + 5095 YP-S2 + 510f YP-R1 + 5119 Yepp YP-P3 + 511c YP-Q2 + 5121 YP-U5 + 5123 Yepp YP-M1 + 5a00 YP-NEU + 5a01 YP-NDU + 5a03 Yepp MP3 Player + 5a04 YP-800 + 5a08 YP-90 + 5a0f Meizu M6 MiniPlayer + 5b01 Memory Stick Reader/Writer + 5b02 Memory Stick Reader/Writer + 5b03 Memory Stick Reader/Writer + 5b04 Memory Stick Reader/Writer + 5b05 Memory Stick Reader/Writer + 5b11 SEW-2001u Card + 5f00 NEXiO Sync + 5f01 NEXiO Sync + 5f02 NEXiO Sync + 5f03 NEXiO Sync + 5f04 NEXiO Sync + 5f05 STORY Station 1TB + 6032 G2 Portable hard drive + 6033 G2 Portable device + 6034 G2 Portable hard drive + 60b3 M2 Portable Hard Drive + 60c4 M2 Portable Hard Drive USB 3.0 + 6124 D3 Station External Hard Drive + 6125 D3 Station External Hard Drive + 61b5 M3 Portable Hard Drive 2TB + 61b6 M3 Portable Hard Drive 1TB + 61b7 M3 Portable Hard Drive 4TB + 61f3 Portable SSD T3 (MU-PT250B, MU-PT500B) + 61f5 Portable SSD T5 + 6601 Mobile Phone + 6602 Galaxy + 6603 Galaxy + 6611 MITs Sync + 6613 MITs Sync + 6615 MITs Sync + 6617 MITs Sync + 6619 MITs Sync + 661b MITs Sync + 661e Handheld + 6620 Handheld + 6622 Handheld + 6624 Handheld + 662e MITs Sync + 6630 MITs Sync + 6632 MITs Sync + 663e D900e/B2100 Phone + 663f SGH-E720/SGH-E840 + 6640 Usb Modem Enumerator + 6651 i8510 Innov8 + 6702 X830 + 6708 U600 Phone + 6709 U600 + 6734 Juke + 6759 D900e/B2100 Media Player + 675a D900e/B2100 Mass Storage + 675b D900e Camera + 6772 Standalone LTE device (Trial) + 6795 S5230 + 6802 Standalone HSPA device + 6806 Composite LTE device (Trial) + 6807 Composite HSPA device + 681c Galaxy Portal/Spica/S + 681d Galaxy Portal/Spica Android Phone + 6843 E2530 Phone (Samsung Kies mode) + 684e Wave (GT-S8500) + 685b GT-I9100 Phone [Galaxy S II] (mass storage mode) + 685c GT-I9250 Phone [Galaxy Nexus] (Mass storage mode) + 685d GT-I9100 Phone [Galaxy S II] (Download mode) + 685e GT-I9100 / GT-C3350 Phones (USB Debugging mode) + 6860 Galaxy A5 (MTP) + 6863 Galaxy series, misc. (tethering mode) + 6864 GT-I9070 (network tethering, USB debugging enabled) + 6865 Galaxy (PTP mode) + 6866 Galaxy (debugging mode) + 6868 Escape Composite driver for Android Phones: Modem+Diagnostic+ADB + 6875 GT-B3710 Standalone LTE device (Commercial) + 6876 GT-B3710 LTE Modem + 6877 Galaxy S + 687a GT-E2370 mobile phone + 6888 GT-B3730 Composite LTE device (Commercial) + 6889 GT-B3730 Composite LTE device (Commercial) + 689a LTE Storage Driver [CMC2xx] + 689e GT-S5670 [Galaxy Fit] + 68aa Reality + 7011 SEW-2003U Card + 7021 Bluetooth Device + 7061 eHome Infrared Receiver + 7080 Anycall SCH-W580 + 7081 Human Interface Device + 7301 Fingerprint Device + 8001 Handheld + 8002 Portable SSD 500GB Model Number: MU - P8500B + 8003 Portable SSD T1 + d003 GT-I9003 + e020 SERI E02 SCOM 6200 UMTS Phone + e021 SERI E02 SCOM 6200 Virtual UARTs + e022 SERI E02 SCOM 6200 Flash Load Disk + f000 Intensity 3 (Mass Storage Mode) + ff30 SG_iMON +04e9 PC-Tel, Inc. +04ea Brooktree Corp. +04eb Northstar Systems, Inc. + e004 eHome Infrared Transceiver +04ec Tokyo Electron Device, Ltd +04ed Annabooks +04ef Pacific Electronic International, Inc. +04f0 Daewoo Electronics Co., Ltd +04f1 Victor Company of Japan, Ltd + 0001 GC-QX3 Digital Still Camera + 0004 GR-DVL815U Digital Video Camera + 0006 DV Camera Storage + 0008 GZ-MG30AA/MC500E Digital Video Camera + 0009 GR-DX25EK Digital Video Camera + 000a GR-D72 Digital Video Camera + 1001 GC-A50 Camera Device + 3008 MP-PRX1 Ethernet + 3009 MP-XP7250 WLAN Adapter +04f2 Chicony Electronics Co., Ltd + 0001 KU-8933 Keyboard + 0002 NT68P81 Keyboard + 0110 KU-2971 Keyboard + 0111 KU-9908 Keyboard + 0112 KU-8933 Keyboard with PS/2 Mouse port + 0116 KU-2971/KU-0325 Keyboard + 0200 KBR-0108 + 0201 Gaming Keyboard KPD0250 + 0220 Wireless HID Receiver + 0402 Genius LuxeMate i200 Keyboard + 0403 KU-0420 keyboard + 0418 KU-0418 Tactical Pad + 0618 RG-0618U Wireless HID Receiver & KG-0609 Wireless Keyboard with Touchpad + 0718 wired mouse + 0760 Acer KU-0760 Keyboard + 0833 KU-0833 Keyboard + 0841 HP Multimedia Keyboard + 0860 2.4G Multimedia Wireless Kit + 0939 Amazon Basics mouse + 1061 HP KG-1061 Wireless Keyboard+Mouse + 1121 Periboard 717 Mini Wireless Keyboard + a001 E-Video DC-100 Camera + a120 ORITE CCD Webcam(PC370R) + a121 ORITE CCD Webcam(PC370R) + a122 ORITE CCD Webcam(PC370R) + a123 ORITE CCD Webcam(PC370R) + a124 ORITE CCD Webcam(PC370R) + a128 PC Camera (SN9C202 + OV7663 + EEPROM) + a133 Gateway Webcam + a136 LabTec Webcam 5500 + a147 Medion Webcam + a204 DSC WIA Device (1300) + a208 DSC WIA Device (2320) + a209 Labtec DC-2320 + a20a DSC WIA Device (3310) + a20c DSC WIA Device (3320) + a210 Audio Device + b008 USB 2.0 Camera + b009 Integrated Camera + b010 Integrated Camera + b012 1.3 MPixel UVC Webcam + b013 USB 2.0 Camera + b015 VGA 24fps UVC Webcam + b016 VGA 30fps UVC Webcam + b018 2M UVC Webcam + b021 ViewSonic 1.3M, USB2.0 Webcam + b022 Gateway USB 2.0 Webcam + b023 Gateway USB 2.0 Webcam + b024 USB 2.0 Webcam + b025 Camera + b027 Gateway USB 2.0 Webcam + b028 VGA UVC Webcam + b029 1.3M UVC Webcam + b036 Asus Integrated 0.3M UVC Webcam + b044 Acer CrystalEye Webcam + b057 integrated USB webcam + b059 CKF7037 HP webcam + b064 CNA7137 Integrated Webcam + b070 Camera + b071 2.0M UVC Webcam / CNF7129 + b083 CKF7063 Webcam (HP) + b091 Webcam + b104 CNF7069 Webcam + b107 CNF7070 Webcam + b14c CNF8050 Webcam + b159 CNF8243 Webcam + b15c Sony Vaio Integrated Camera + b175 4-Port Hub + b1aa Webcam-101 + b1ac HP Laptop Integrated Webcam [2 MP Fixed] + b1b4 Lenovo Integrated Camera + b1b9 Asus Integrated Webcam + b1bb 2.0M UVC WebCam + b1cf Lenovo Integrated Camera + b1d6 CNF9055 Toshiba Webcam + b1d8 1.3M Webcam + b1e4 Toshiba Integrated Webcam + b213 Fujitsu Integrated Camera + b217 Lenovo Integrated Camera (0.3MP) + b221 integrated camera + b230 Integrated HP HD Webcam + b249 HP Integrated Webcam + b257 Lenovo Integrated Camera + b26b Sony Visual Communication Camera + b272 Lenovo EasyCamera + b2b0 Camera + b2b9 Lenovo Integrated Camera UVC + b2da thinkpad t430s camera + b2db Thinkpad T430 camera + b2ea Integrated Camera [ThinkPad] + b2f4 HP Webcam-50 + b330 Asus 720p CMOS webcam + b354 UVC 1.00 device HD UVC WebCam + b394 Integrated Camera + b3eb HP 720p HD Monitor Webcam + b3f6 HD WebCam (Acer) + b3fd HD WebCam (Asus N-series) + b40e HP Truevision HD camera + b420 Lenovo EasyCamera + b444 Lenovo Integrated Webcam + b49f Bluetooth (RTL8723BE) + b563 Integrated Camera + b5ab Integrated Camera + b5ac Integrated IR Camera + b5ce Integrated Camera + b5cf Integrated IR Camera + b5db HP Webcam + b604 Integrated Camera (1280x720@30) + b681 ThinkPad T490 Webcam +04f3 Elan Microelectronics Corp. + 000a Touchscreen + 0103 ActiveJet K-2024 Multimedia Keyboard + 016f Touchscreen + 01a4 Wireless Keyboard + 0201 Touchscreen + 0210 Optical Mouse + 0212 Laser Mouse + 0214 Lynx M9 Optical Mouse + 0230 3D Optical Mouse + 0232 Mouse + 0234 Optical Mouse + 0235 Optical Mouse + 02f4 2.4G Cordless Mouse + 0381 Touchscreen + 04a0 Dream Cheeky Stress/Panic Button + 0c28 fingerprint sensor [FeinTech FPS00200] + 2234 Touchscreen +04f4 Harting Elektronik, Inc. +04f5 Fujitsu-ICL Systems, Inc. +04f6 Norand Corp. +04f7 Newnex Technology Corp. +04f8 FuturePlus Systems +04f9 Brother Industries, Ltd + 0002 HL-1050 Laser Printer + 0005 Printer + 0006 HL-1240 Laser Printer + 0007 HL-1250 Laser Printer + 0008 HL-1270 Laser Printer + 0009 Printer + 000a P2500 series + 000b Printer + 000c Printer + 000d HL-1440 Laser Printer + 000e HL-1450 series + 000f HL-1470N series + 0010 Printer + 0011 Printer + 0012 Printer + 0013 Printer + 0014 Printer + 0015 Printer + 0016 Printer + 0017 Printer + 0018 Printer + 001a HL-1430 Laser Printer + 001c Printer + 001e Printer + 0020 HL-5130 series + 0021 HL-5140 series + 0022 HL-5150D series + 0023 HL-5170DN series + 0024 Printer + 0025 Printer + 0027 HL-2030 Laser Printer + 0028 Printer + 0029 Printer + 002a HL-52x0 series + 002b HL-5250DN Printer + 002c Printer + 002d Printer + 0037 HL-3040CN series + 0038 HL-3070CW series + 0039 HL-5340 series + 0041 HL-2250DN Laser Printer + 0042 HL-2270DW Laser Printer + 004d HL-6180DW series + 0080 HL-L6250DN series + 0100 MFC8600/9650 series + 0101 MFC9600/9870 series + 0102 MFC9750/1200 series + 0104 MFC-8300J + 0105 MFC-9600J + 0106 MFC-7300C + 0107 MFC-7400C + 0108 MFC-9200C + 0109 MFC-830 + 010a MFC-840 + 010b MFC-860 + 010c MFC-7400J + 010d MFC-9200J + 010e MFC-3100C Scanner + 010f MFC-5100C + 0110 MFC-4800 Scanner + 0111 MFC-6800 + 0112 DCP1000 Port(FaxModem) + 0113 MFC-8500 + 0114 MFC9700 Port(FaxModem) + 0115 MFC-9800 Scanner + 0116 DCP1400 Scanner + 0119 MFC-9660 + 011a MFC-9860 + 011b MFC-9880 + 011c MFC-9760 + 011d MFC-9070 + 011e MFC-9180 + 011f MFC-9160 + 0120 MFC580 Port(FaxModem) + 0121 MFC-590 + 0122 MFC-5100J + 0124 MFC-4800J + 0125 MFC-6800J + 0127 MFC-9800J + 0128 MFC-8500J + 0129 Imagistics 2500 (MFC-8640D clone) + 012b MFC-9030 + 012e FAX4100e IntelliFax 4100e + 012f FAX-4750e + 0130 FAX-5750e + 0132 MFC-5200C RemovableDisk + 0135 MFC-100 Scanner + 0136 MFC-150CL Scanner + 013c MFC-890 Port + 013d MFC-5200J + 013e MFC-4420C RemovableDisk + 013f MFC-4820C RemovableDisk + 0140 DCP-8020 + 0141 DCP-8025D + 0142 MFC-8420 + 0143 MFC-8820D + 0144 DCP-4020C RemovableDisk + 0146 MFC-3220C + 0147 FAX-1820C Printer + 0148 MFC-3320CN + 0149 FAX-1920CN Printer + 014a MFC-3420C + 014b MFC-3820CN + 014c DCP-3020C + 014d FAX-1815C Printer + 014e MFC-8820J + 014f DCP-8025J + 0150 MFC-8220 Port(FaxModem) + 0151 MFC-8210J + 0153 DCP-1000J + 0157 MFC-3420J Printer + 0158 MFC-3820JN Port(FaxModem) + 015d MFC Composite Device + 015e DCP-8045D + 015f MFC-8440 + 0160 MFC-8840D + 0161 MFC-210C + 0162 MFC-420CN Remote Setup Port + 0163 MFC-410CN RemovableDisk + 0165 MFC-620CN + 0166 MFC-610CLN RemovableDisk + 0168 MFC-620CLN + 0169 DCP-110C RemovableDisk + 016b DCP-310CN RemovableDisk + 016c FAX-2440C Printer + 016d MFC-5440CN + 016e MFC-5840CN Remote Setup Port + 0170 FAX-1840C Printer + 0171 FAX-1835C Printer + 0172 FAX-1940CN Printer + 0173 MFC-3240C Remote Setup Port + 0174 MFC-3340CN RemovableDisk + 017b Imagistics sx2100 + 0180 MFC-7420 + 0181 MFC-7820N Port(FaxModem) + 0182 DCP-7010 + 0183 DCP-7020 + 0184 DCP-7025 Printer + 0185 MFC-7220 Printer + 0186 Composite Device + 0187 FAX-2820 Printer + 0188 FAX-2920 Printer + 018a MFC-9420CN + 018c DCP-115C + 018d DCP-116C + 018e DCP-117C + 018f DCP-118C + 0190 DCP-120C + 0191 DCP-315CN + 0192 DCP-340CW + 0193 MFC-215C + 0194 MFC-425CN + 0195 MFC-820CW Remote Setup Port + 0196 MFC-820CN Remote Setup Port + 0197 MFC-640CW + 019a MFC-840CLN Remote Setup Port + 01a2 MFC-8640D + 01a3 Composite Device + 01a4 DCP-8065DN Printer + 01a5 MFC-8460N Port(FaxModem) + 01a6 MFC-8860DN Port(FaxModem) + 01a7 MFC-8870DW Printer + 01a8 DCP-130C + 01a9 DCP-330C + 01aa DCP-540CN + 01ab MFC-240C + 01ae DCP-750CW RemovableDisk + 01af MFC-440CN + 01b0 MFC-660CN + 01b1 MFC-665CW + 01b2 MFC-845CW + 01b4 MFC-460CN + 01b5 MFC-630CD + 01b6 MFC-850CDN + 01b7 MFC-5460CN + 01b8 MFC-5860CN + 01ba MFC-3360C + 01bd MFC-8660DN + 01be DCP-750CN RemovableDisk + 01bf MFC-860CDN + 01c0 DCP-128C + 01c1 DCP-129C + 01c2 DCP-131C + 01c3 DCP-329C + 01c4 DCP-331C + 01c5 MFC-239C + 01c9 DCP-9040CN + 01ca MFC-9440CN + 01cb DCP-9045CDN + 01cc MFC-9840CDW + 01ce DCP-135C + 01cf DCP-150C + 01d0 DCP-350C + 01d1 DCP-560CN + 01d2 DCP-770CW + 01d3 DCP-770CN + 01d4 MFC-230C + 01d5 MFC-235C + 01d6 MFC-260C + 01d7 MFC-465CN + 01d8 MFC-680CN + 01d9 MFC-685CW + 01da MFC-885CW + 01db MFC-480CN + 01dc MFC-650CD + 01dd MFC-870CDN + 01de MFC-880CDN + 01df DCP-155C + 01e0 MFC-265C + 01e1 DCP-153C + 01e2 DCP-157C + 01e3 DCP-353C + 01e4 DCP-357C + 01e7 MFC-7340 + 01e9 DCP-7040 + 01ea DCP-7030 + 01eb MFC-7320 + 01ec MFC-9640CW + 01f4 MFC-5890CN + 0204 DCP-165C + 020a MFC-8670DN + 020c DCP-9042CDN + 020d MFC-9450CDN + 0216 MFC-8880DN + 0217 MFC-8480DN + 0219 MFC-8380DN + 021a MFC-8370DN + 021b DCP-8070D + 021c MFC-9320CW + 021d MFC-9120CN + 021e DCP-9010CN + 021f DCP-8085DN + 0220 MFC-9010CN + 0222 DCP-195C + 0223 DCP-365CN + 0224 DCP-375CW + 0225 DCP-395CN + 0227 DCP-595CN + 0228 MFC-255CW + 0229 MFC-295CN + 022a MFC-495CW + 022b MFC-495CN + 022c MFC-795CW + 022d MFC-675CD + 022e MFC-695CDN + 022f MFC-735CD + 0230 MFC-935CDN + 0234 DCP-373CW + 0235 DCP-377CW + 0236 DCP-390CN + 0239 MFC-253CW + 023a MFC-257CW + 023e DCP-197C + 023f MFC-8680DN + 0240 MFC-J950DN + 0245 MFC-9560CDW + 0248 DCP-7055 scanner/printer + 024e MFC-7460DN + 0253 DCP-J125 + 0254 DCP-J315W + 0255 DCP-J515W + 0256 DCP-J515N + 0257 DCP-J715W + 0258 DCP-J715N + 0259 MFC-J220 + 025a MFC-J410 + 025b MFC-J265W + 025c MFC-J415W + 025d MFC-J615W + 025e MFC-J615N + 025f MFC-J700D + 0260 MFC-J800D + 0261 MFC-J850DN + 026b MFC-J630W + 026d MFC-J805D + 026e MFC-J855DN + 026f MFC-J270W + 0270 MFC-7360N + 0273 DCP-7057 scanner/printer + 0276 MFC-5895CW + 0278 MFC-J410W + 0279 DCP-J525W + 027a DCP-J525N + 027b DCP-J725DW + 027c DCP-J725N + 027d DCP-J925DW + 027e MFC-J955DN + 027f MFC-J280W + 0280 MFC-J435W + 0281 MFC-J430W + 0282 MFC-J625DW + 0283 MFC-J825DW + 0284 MFC-J825N + 0285 MFC-J705D + 0287 MFC-J860DN + 0288 MFC-J5910DW + 0289 MFC-J5910CDW + 028a DCP-J925N + 028d MFC-J835DW + 028f MFC-J425W + 0290 MFC-J432W + 0291 DCP-8110DN + 0292 DCP-8150DN + 0293 DCP-8155DN + 0294 DCP-8250DN + 0295 MFC-8510DN + 0296 MFC-8520DN + 0298 MFC-8910DW + 0299 MFC-8950DW + 029a MFC-8690DW + 029c MFC-8515DN + 029e MFC-9125CN + 029f MFC-9325CW + 02a0 DCP-J140W + 02a5 MFC-7240 + 02a6 FAX-2940 + 02a7 FAX-2950 + 02a8 MFC-7290 + 02ab FAX-2990 + 02ac DCP-8110D + 02ad MFC-9130CW + 02ae MFC-9140CDN + 02af MFC-9330CDW + 02b0 MFC-9340CDW + 02b1 DCP-9020CDN + 02b2 MFC-J810DN + 02b3 MFC-J4510DW + 02b4 MFC-J4710DW + 02b5 DCP-8112DN + 02b6 DCP-8152DN + 02b7 DCP-8157DN + 02b8 MFC-8512DN + 02ba MFC-8912DW + 02bb MFC-8952DW + 02bc DCP-J540N + 02bd DCP-J740N + 02be MFC-J710D + 02bf MFC-J840N + 02c0 DCP-J940N + 02c1 MFC-J960DN + 02c2 DCP-J4110DW + 02c3 MFC-J4310DW + 02c4 MFC-J4410DW + 02c5 MFC-J4610DW + 02c6 DCP-J4210N + 02c7 MFC-J4510N + 02c8 MFC-J4910CDW + 02c9 MFC-J4810DN + 02ca MFC-8712DW + 02cb MFC-8710DW + 02cc MFC-J2310 + 02cd MFC-J2510 + 02ce DCP-7055W + 02cf DCP-7057W + 02d0 DCP-1510 + 02d1 MFC-1810 + 02d3 DCP-9020CDW + 02d4 MFC-8810DW + 02dd DCP-J4215N + 02de DCP-J132W + 02df DCP-J152W + 02e0 DCP-J152N + 02e1 DCP-J172W + 02e2 DCP-J552DW + 02e3 DCP-J552N + 02e4 DCP-J752DW + 02e5 DCP-J752N + 02e6 DCP-J952N + 02e7 MFC-J245 + 02e8 MFC-J470DW + 02e9 MFC-J475DW + 02ea MFC-J285DW + 02eb MFC-J650DW + 02ec MFC-J870DW + 02ed MFC-J870N + 02ee MFC-J720D + 02ef MFC-J820DN + 02f0 MFC-J980DN + 02f1 MFC-J890DN + 02f2 MFC-J6520DW + 02f3 MFC-J6570CDW + 02f4 MFC-J6720DW + 02f5 MFC-J6920DW + 02f6 MFC-J6970CDW + 02f7 MFC-J6975CDW + 02f8 MFC-J6770CDW + 02f9 DCP-J132N + 02fa MFC-J450DW + 02fb MFC-J875DW + 02fc DCP-J100 + 02fd DCP-J105 + 02fe MFC-J200 + 02ff MFC-J3520 + 0300 MFC-J3720 + 030f DCP-L8400CDN + 0310 DCP-L8450CDW + 0311 MFC-L8600CDW + 0312 MFC-L8650CDW + 0313 MFC-L8850CDW + 0314 MFC-L9550CDW + 0318 MFC-7365DN + 0320 MFC-L2740DW + 0321 DCP-L2500D + 0322 DCP-L2520DW + 0324 DCP-L2520D + 0326 DCP-L2540DN + 0328 DCP-L2540DW + 0329 DCP-L2560DW + 0330 HL-L2380DW + 0331 MFC-L2700DW + 0335 FAX-L2700DN + 0337 MFC-L2720DW + 0338 MFC-L2720DN + 0339 DCP-J4120DW + 033a MFC-J4320DW + 033c MFC-J2320 + 033d MFC-J4420DW + 0340 MFC-J4620DW + 0341 MFC-J2720 + 0342 MFC-J4625DW + 0343 MFC-J5320DW + 0346 MFC-J5620DW + 0347 MFC-J5720DW + 0349 DCP-J4220N + 034b MFC-J4720N + 034e MFC-J5720CDW + 034f MFC-J5820DN + 0350 MFC-J5620CDW + 0351 DCP-J137N + 0353 DCP-J557N + 0354 DCP-J757N + 0355 DCP-J957N + 0356 MFC-J877N + 0357 MFC-J727D + 0358 MFC-J987DN + 0359 MFC-J827DN + 035a MFC-J897DN + 035b DCP-1610W + 035c DCP-1610NW + 035d MFC-1910W + 035e MFC-1910NW + 0360 DCP-1618W + 0361 MFC-1919NW + 0364 MFC-J5625DW + 0365 MFC-J4520DW + 0366 MFC-J5520DW + 0367 DCP-7080D + 0368 DCP-7080 + 0369 DCP-7180DN + 036a DCP-7189DW + 036b MFC-7380 + 036c MFC-7480D + 036d MFC-7880DN + 036e MFC-7889DW + 036f DCP-9022CDW + 0370 MFC-9142CDN + 0371 MFC-9332CDW + 0372 MFC-9342CDW + 0373 MFC-L2700D + 0376 DCP-1600 + 0377 MFC-1900 + 0378 DCP-1608 + 0379 DCP-1619 + 037a MFC-1906 + 037b MFC-1908 + 037c ADS-2000e + 037d ADS-2100e + 037e ADS-2500We + 037f ADS-2600We + 0380 DCP-J562DW + 0381 DCP-J562N + 0383 DCP-J962N + 0384 MFC-J480DW + 0385 MFC-J485DW + 0386 MFC-J460DW + 0388 MFC-J680DW + 0389 MFC-J880DW + 038a MFC-J885DW + 038b MFC-J880N + 038c MFC-J730DN + 038d MFC-J990DN + 038e MFC-J830DN + 038f MFC-J900DN + 0390 MFC-J5920DW + 0392 MFC-L2705DW + 0393 DCP-T300 + 0394 DCP-T500W + 0395 DCP-T700W + 0396 MFC-T800W + 0397 DCP-J963N + 03b3 MFC-J6925DW + 03b4 MFC-J6573CDW + 03b5 MFC-J6973CDW + 03b6 MFC-J6990CDW + 03bb MFC-L2680W + 03bc MFC-L2700DN + 03bd DCP-J762N + 03fd ADS-2700W + 043f MFC-L3770CDW + 0440 MFC-9350CDW + 0441 MFC-L3750CDW + 0442 MFC-L3745CDW + 0443 MFC-L3735CDN + 0444 MFC-9150CDN + 0445 MFC-L3730CDN + 0446 MFC-L3710CW + 0447 DCP-9030CDN + 0448 DCP-L3550CDW + 044a HL-L3290CDW + 044b DCP-L3510CDW + 044c DCP-L3551CDW + 1000 Printer + 1002 Printer + 2002 PTUSB Printing + 2004 PT-2300/2310 p-Touch Laber Printer + 2007 PT-2420PC P-touch Label Printer + 2015 QL-500 label printer + 2016 QL-550 printer + 201a PT-18R P-touch label printer + 201b QL-650TD Label Printer + 2020 QL-1050 Label Printer + 2027 QL-560 Label Printer + 2028 QL-570 Label Printer + 202a QL-1060N Label Printer + 202b PT-7600 P-touch Label Printer + 202c PT-1230PC P-touch Label Printer E mode + 202d PT-2430PC P-touch Label Printer + 2030 PT-1230PC P-touch Label Printer EL mode + 2041 PT-2730 P-touch Label Printer + 2042 QL-700 Label Printer + 2043 QL-710W Label Printer + 2044 QL-720NW Label Printer + 204d QL-720NW Label Printer (mass storage mode) + 2061 PT-P700 P-touch Label Printer + 2064 PT-P700 P-touch Label Printer RemovableDisk + 2074 PT-D600 P-touch Label Printer + 209b QL-800 Label Printer + 209c QL-810W Label Printer + 209d QL-820NWB Label Printer + 20a7 QL-1100 Label Printer + 20a8 QL-1110NWB Label Printer + 20a9 QL-1100 Label Printer (mass storage) + 20aa QL-1110NWB Label Printer (mass storage) + 20ab QL-1115NWB Label Printer + 20ac QL-1115NWB Label Printer (mass storage) + 20c0 QL-600 Label Printer + 2100 Card Reader Writer + 2102 Sewing machine + 60a0 ADS-2000 + 60a1 ADS-2100 + 60a4 ADS-2500W + 60a5 ADS-2600W + 60a6 ADS-1000W + 60a7 ADS-1100W + 60a8 ADS-1500W + 60a9 ADS-1600W +04fa Dallas Semiconductor + 2490 DS1490F 2-in-1 Fob, 1-Wire adapter + 4201 DS4201 Audio DAC +04fb Biostar Microtech International Corp. +04fc Sunplus Technology Co., Ltd + 0003 CM1092 / Wintech CM-5098 Optical Mouse + 0005 USB OpticalWheel Mouse + 0013 ViewMate Desktop Mouse CC2201 + 0015 ViewMate Desktop Mouse CC2201 + 00d3 00052486 / Laser Mouse M1052 [hama] + 0171 SPCA1527A/SPCA1528 SD card camera (Mass Storage mode) + 0201 SPCP825 RS232C Adapter + 0232 Fingerprint + 0538 Wireless Optical Mouse 2.4G [Bright] + 0561 Flexcam 100 + 05d8 Wireless keyboard/mouse + 05da SPEEDLINK SNAPPY Wireless Mouse Nano + 0c15 SPIF215A SATA bridge + 0c25 SATALink SPIF225A + 1528 SPCA1527A/SPCA1528 SD card camera (webcam mode) + 1533 Mass Storage + 2080 ASUS Webcam + 500c CA500C Digital Camera + 504a Aiptek Mini PenCam 1.3 + 504b Aiptek Mega PockerCam 1.3/Maxell MaxPocket LE 1.3 + 5330 Digitrex 2110 + 5331 Vivitar Vivicam 10 + 5360 Sunplus Generic Digital Camera + 5563 Digital Media Player MP3/WMA [The Sharper Image] + 5720 Card Reader Driver + 6333 Siri A9 UVC chipset + 7333 Finet Technology Palmpix DC-85 + 757a Aiptek, MP315 MP3 Player + ffff PureDigital Ritz Disposable +04fd Soliton Systems, K.K. + 0003 Smart Card Reader II +04fe PFU, Ltd + 0006 Happy Hacking Keyboard Lite2 +04ff E-CMOS Corp. +0500 Siam United Hi-Tech + 0001 DART Keyboard Mouse + 0002 DART-2 Keyboard +0501 Fujikura DDK, Ltd +0502 Acer, Inc. + 0001 Handheld + 0736 Handheld + 15b1 PDA n311 + 1631 c10 Series + 1632 c20 Series + 16e1 n10 Handheld Sync + 16e2 n20 Pocket PC Sync + 16e3 n30 Handheld Sync + 2008 Liquid Gallant Duo E350 (preloader) + 3202 Liquid + 3203 Liquid (Debug mode) + 3230 BeTouch E120 + 3317 Liquid + 3325 Iconia tablet A500 + 3341 Iconia tablet A500 + 33c3 Liquid Gallant Duo E350 + 33c4 Liquid Gallant Duo E350 (debug mode) + 33c7 Liquid Gallant Duo E350 (USB tethering) + 33c8 Liquid Gallant Duo E350 (debug mode, USB tethering) + d001 Divio NW801/DVC-V6+ Digital Camera +0503 Hitachi America, Ltd +0504 Hayes Microcomputer Products +0506 3Com Corp. + 009d HomeConnect Camera + 00a0 3CREB96 Bluetooth Adapter + 00a1 Bluetooth Device + 00a2 Bluetooth Device + 00df 3Com Home Connect lite + 0100 HomeConnect ADSL Modem Driver + 03e8 3C19250 Ethernet [klsi] + 0a01 3CRSHEW696 Wireless Adapter + 0a11 3CRWE254G72 802.11g Adapter + 11f8 HomeConnect 3C460 + 2922 HomeConnect Cable Modem External with + 3021 U.S.Robotics 56000 Voice FaxModem Pro + 4601 3C460B 10/100 Ethernet Adapter + f002 3CP4218 ADSL Modem (pre-init) + f003 3CP4218 ADSL Modem + f100 3CP4218 ADSL Modem (pre-init) +0507 Hosiden Corp. + 0011 Konami ParaParaParadise Controller +0508 Clarion Co., Ltd +0509 Aztech Systems, Ltd + 0801 ADSL Modem + 0802 ADSL Modem (RFC1483) + 0806 DSL Modem + 080f Binatone ADSL500 Modem Network Interface + 0812 Pirelli ADSL Modem Network Interface +050a Cinch Connectors +050b Cable System International +050c InnoMedia, Inc. +050d Belkin Components + 0004 Direct Connect + 0012 F8T012 Bluetooth Adapter + 0013 F8T013 Bluetooth Adapter + 0017 B8T017 Bluetooth+EDR 2.1 / F4U017 USB 2.0 7-port Hub + 003a Universal Media Reader + 0050 F5D6050 802.11b Wireless Adapter v2000 [Atmel at76c503a] + 0081 F8T001v2 Bluetooth + 0083 Bluetooth Device + 0084 F8T003v2 Bluetooth + 0102 Flip KVM + 0103 F5U103 Serial Adapter [etek] + 0106 VideoBus II Adapter, Video + 0108 F1DE108B KVM + 0109 F5U109/F5U409 PDA Adapter + 0115 SCSI Adapter + 0119 F5U120-PC Dual PS/2 Ports / F5U118-UNV ADB Adapter + 0121 F5D5050 100Mbps Ethernet + 0122 Ethernet Adapter + 0131 Bluetooth Device with trace filter + 016a Bluetooth Mini Dongle + 0200 Nostromo SpeedPad n52te Gaming Keyboard + 0201 Peripheral Switch + 0208 USBView II Video Adapter [nt1004] + 0210 F5U228 Hi-Speed USB 2.0 DVD Creator + 0211 F5U211 USB 2.0 15-in-1 Media Reader & Writer + 0224 F5U224 USB 2.0 4-Port Hub + 0234 F5U234 USB 2.0 4-Port Hub + 0237 F5U237 USB 2.0 7-Port Hub + 0240 F5U240 USB 2.0 CF Card Reader + 0249 USB 2 Flash Media Device + 0257 F5U257 Serial + 0304 FSU304 USB 2.0 - 4 Ports Hub + 0307 USB 2.0 - 7 ports Hub [FSU307] + 038c F2CU038 HDMI Adapter + 0409 F5U409 Serial + 0416 Staples 12416 7 port desktop hub + 0551 F6C550-AVR UPS + 065a F8T065BF Mini Bluetooth 4.0 Adapter + 0706 2-N-1 7-Port Hub (Lower half) + 0802 Nostromo n40 Gamepad + 0803 Nostromo 1745 GamePad + 0805 Nostromo N50 GamePad + 0815 Nostromo n52 HID SpeedPad Mouse Wheel + 0826 ErgoFit Wireless Optical Mouse (HID) + 0980 HID UPS Battery + 1004 F9L1004 802.11n Surf N300 XR Wireless Adapter [Realtek RTL8192CU] + 1102 F7D1102 N150/Surf Micro Wireless Adapter v1000 [Realtek RTL8188CUS] + 1103 F9L1103 N750 DB 802.11abgn 2x3:3 [Ralink RT3573] + 1106 F9L1106v1 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526] + 1109 F9L1109v1 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU] + 110a F9L1101v2 802.11abgn Wireless Adapter [Realtek RTL8192DU] + 11f2 ISY Wireless Micro Adapter IWL 2000 [RTL8188CUS] + 1202 F5U120-PC Parallel Printer Port + 1203 F5U120-PC Serial Port + 2103 F7D2102 802.11n N300 Micro Wireless Adapter v3000 [Realtek RTL8192CU] + 21f1 N300 WLAN N Adapter [ISY] + 21f2 RTL8192CU 802.11n WLAN Adapter [ISY IWL 4000] + 258a F5U258 Host to Host cable + 3101 F1DF102U/F1DG102U Flip Hub + 3201 F1DF102U/F1DG102U Flip KVM + 4050 ZD1211B + 5055 F5D5055 Gigabit Network Adapter [AX88xxx] + 6050 F6D6050 802.11abgn Wireless Adapter [Broadcom BCM4323] + 6051 F5D6051 802.11b Wireless Network Adapter [ZyDAS ZD1201] + 615a F7D4101 / F9L1101v1 802.11abgn Wireless Adapter [Broadcom BCM4323] + 7050 F5D7050 Wireless G Adapter v1000/v2000 [Intersil ISL3887] + 7051 F5D7051 802.11g Adapter v1000 [Broadcom 4320 USB] + 705a F5D7050 Wireless G Adapter v3000 [Ralink RT2571W] + 705b Wireless G Adapter + 705c F5D7050 Wireless G Adapter v4000 [Zydas ZD1211B] + 705e F5D7050 Wireless G Adapter v5000 [Realtek RTL8187B] + 706a 2-N-1 7-Port Hub (Upper half) + 8053 F5D8053 N Wireless USB Adapter v1000/v4000 [Ralink RT2870] + 805c F5D8053 N Wireless Adapter v3000 [Ralink RT2870] + 805e F5D8053 N Wireless USB Adapter v5000 [Realtek RTL8192U] + 815c F5D8053 N Wireless USB Adapter v3000 [Ralink RT2870] + 815f F5D8053 N Wireless USB Adapter v6000 [Realtek RTL8192SU] + 825a F5D8055 N+ Wireless Adapter v1000 [Ralink RT2870] + 825b F5D8055 N+ Wireless Adapter v2000 [Ralink RT3072] + 845a F7D2101 802.11n Surf & Share Wireless Adapter v1000 [Realtek RTL8192SU] + 905b F5D9050 Wireless G+ MIMO Network Adapter v3000 [Ralink RT2573] + 905c F5D9050 Wireless G+ MIMO Network Adapter v4000 [Ralink RT2573] + 935a F6D4050 N150 Enhanced Wireless Network Adapter v1000 [Ralink RT3070] + 935b F6D4050 N150 Enhanced Wireless Network Adapter v2000 [Ralink RT3070] + 945a F7D1101 v1 Basic Wireless Adapter [Realtek RTL8188SU] + 945b F7D1101 v2 Basic Wireless Adapter [Ralink RT3370] + d321 Dynex DX-NUSB 802.11bgn Wireless Adapter [Broadcom BCM43231] +050e Neon Technology, Inc. +050f KC Technology, Inc. + 0001 Hub + 0003 KC82C160S Hub + 0180 KC-180 IrDA Dongle + 0190 KC2190 USB Host-to-Host cable +0510 Sejin Electron, Inc. + 0001 Keyboard + 1000 Keyboard with PS/2 Mouse Port + e001 Mouse +0511 N'Able (DataBook) Technologies, Inc. + 002b AOC DVB +0512 Hualon Microelectronics Corp. +0513 digital-X, Inc. +0514 FCI Electronics +0515 ACTC +0516 Longwell Electronics +0517 Butterfly Communications +0518 EzKEY Corp. + 0001 USB to PS2 Adaptor v1.09 + 0002 EZ-9900C Keyboard +0519 Star Micronics Co., Ltd + 0003 TSP100ECO/TSP100II + c002 Xlive Bluetooth XBM-100S MP3 Player +051a WYSE Technology + a005 Smart Display Version 9973 +051b Silicon Graphics +051c Shuttle, Inc. + 0005 VFD Module + c001 eHome Infrared Receiver + c002 eHome Infrared Receiver +051d American Power Conversion + 0001 UPS + 0002 Uninterruptible Power Supply + 0003 UPS +051e Scientific Atlanta, Inc. +051f IO Systems (Elite Electronics), Inc. +0520 Taiwan Semiconductor Manufacturing Co. +0521 Airborn Connectors +0522 Advanced Connectek, Inc. +0523 ATEN GmbH +0524 Sola Electronics +0525 Netchip Technology, Inc. + 100d RFMD Bluetooth Device + 1080 NET1080 USB-USB Bridge + 1200 SSDC Adapter II + 1265 File-backed Storage Gadget + 3424 V30x/V4xx fingerprint sensor [Lumidigm] + a0f0 Cambridge Electronic Devices Power1401 mk 2 + a140 USB Clik! 40 + a141 (OME) PocketZip 40 MP3 Player Driver + a220 GVC Bluetooth Wireless Adapter + a4a0 Linux-USB "Gadget Zero" + a4a1 Linux-USB Ethernet Gadget + a4a2 Linux-USB Ethernet/RNDIS Gadget + a4a3 Linux-USB user-mode isochronous source/sink + a4a4 Linux-USB user-mode bulk source/sink + a4a5 Linux-USB File-backed Storage Gadget + a4a6 Linux-USB Serial Gadget + a4a7 Linux-USB Serial Gadget (CDC ACM mode) + a4a8 Linux-USB Printer Gadget + a4a9 Linux-USB OBEX Gadget + a4aa Linux-USB CDC Composite Gadge (Ethernet and ACM) + a4ab Linux-USB Multifunction Composite Gadget + a4ac Linux-USB HID Gadget +0526 Temic MHS S.A. +0527 ALTRA +0528 ATI Technologies, Inc. + 7561 TV Wonder + 7562 TV Wonder, Edition (FN5) + 7563 TV Wonder, Edition (FI) + 7564 TV Wonder, Edition (FQ) + 7565 TV Wonder, Edition (NTSC+) + 7566 TV Wonder, Edition (FN5) + 7567 TV Wonder, Edition (FI) + 7568 TV Wonder, Edition (FQ) + 7569 Live! Pro (A) + 756a Live! Pro Audio (O) +0529 Aladdin Knowledge Systems + 0001 HASP copy protection dongle + 030b eToken R1 v3.1.3.x + 0313 eToken R1 v3.2.3.x + 031b eToken R1 v3.3.3.x + 0323 eToken R1 v3.4.3.x + 0412 eToken R2 v2.2.4.x + 041a eToken R2 v2.2.4.x + 0422 eToken R2 v2.4.4.x + 042a eToken R2 v2.5.4.x + 050c eToken Pro v4.1.5.x + 0514 eToken Pro v4.2.5.4 + 0600 eToken Pro 64k (4.2) + 0620 Token JC +052a Crescent Heart Software +052b Tekom Technologies, Inc. + 0102 Ca508A HP1020 Camera v.1.3.1.6 + 0801 Yakumo MegaImage 37 + 1512 Yakumo MegaImage IV + 1513 Aosta CX100 Webcam + 1514 Aosta CX100 Webcam Storage + 1905 Yakumo MegaImage 47 + 1911 Yakumo MegaImage 47 SL + 2202 WDM Still Image Capture + 2203 Sound Vision Stream Driver + 3a06 DigiLife DDV-5120A + d001 P35U Camera Capture +052c Canon Information Systems, Inc. +052d Avid Electronics Corp. +052e Standard Microsystems Corp. +052f Unicore Software, Inc. +0530 American Microsystems, Inc. +0531 Wacom Technology Corp. +0532 Systech Corp. +0533 Alcatel Mobile Phones +0534 Motorola, Inc. +0535 LIH TZU Electric Co., Ltd +0536 Hand Held Products (Welch Allyn, Inc.) + 01a0 PDT +0537 Inventec Corp. +0538 Caldera International, Inc. (SCO) +0539 Shyh Shiun Terminals Co., Ltd +053a PrehKeyTec GmbH + 0b00 Hub + 0b01 Preh MCI 3100 +053b Global Village Communication +053c Institut of Microelectronic & Mechatronic Systems +053d Silicon Architect +053e Mobility Electronics +053f Synopsys, Inc. +0540 UniAccess AB + 0101 Panache Surf ISDN TA +0541 Sirf Technology, Inc. +0543 ViewSonic Corp. + 00fe G773 Monitor Hub + 00ff P815 Monitor Hub + 0bf2 airpanel V150 Wireless Smart Display + 0bf3 airpanel V110 Wireless Smart Display + 0ed9 Color Pocket PC V35 + 0f01 airsync Wi-Fi Wireless Adapter + 1527 Color Pocket PC V36 + 1529 Color Pocket PC V37 + 152b Color Pocket PC V38 + 152e Pocket PC + 1921 Communicator Pocket PC + 1922 Smartphone + 1923 Pocket PC V30 + 1a11 Wireless 802.11g Adapter + 1e60 TA310 - ATSC/NTSC/PAL Driver(PCM4) + 4153 ViewSonic G773 Control (?) +0544 Cristie Electronics, Ltd +0545 Xirlink, Inc. + 7333 Trution Web Camera + 8002 IBM NetCamera + 8009 Veo PC Camera + 800c Veo Stingray + 800d Veo PC Camera + 8080 IBM C-It Webcam + 808a Veo PC Camera + 808b Veo Stingray + 808d Veo PC Camera + 810a Veo Advanced Connect Webcam + 810b Veo PC Camera + 810c Veo PC Camera + 8135 Veo Mobile/Advanced Web Camera + 813a Veo PC Camera + 813b Veo PC Camera + 813c Veo Mobile/Advanced Web Camera + 8333 Veo Stingray/Connect Web Camera + 888c eVision 123 digital camera + 888d eVision 123 digital camera +0546 Polaroid Corp. + 0daf PDC 2300Z + 1bed PDC 1320 Camera + 3097 PDC 310 + 3155 PDC 3070 Camera + 3187 Digital Camera + 3191 Ion 80 Camera + 3273 PDC 2030 Camera + 3304 a500 Digital Camera + dccf Sound Vision Stream Driver +0547 Anchor Chips, Inc. + 0001 ICSI Bluetooth Device + 0080 I3SYSTEM HYUNY + 1002 Python2 WDM Encoder + 1006 Hantek DSO-2100 UF + 2131 AN2131 EZUSB Microcontroller + 2235 AN2235 EZUSB-FX Microcontroller + 2710 EZ-Link Loader (EZLNKLDR.SYS) + 2720 AN2720 USB-USB Bridge + 2727 Xircom PGUNET USB-USB Bridge + 2750 EZ-Link (EZLNKUSB.SYS) + 2810 Cypress ATAPI Bridge + 4018 AmScope MU1803 + 4d90 AmScope MD1900 camera + 6010 AmScope MU1000 camera + 6510 Touptek UCMOS05100KPA + 7000 PowerSpec MCE460 Front Panel LED Display + 7777 Bluetooth Device + 9999 AN2131 uninitialized (?) +0548 Tyan Computer Corp. + 1005 EZ Cart II GameBoy Flash Programmer +0549 Pixera Corp. +054a Fujitsu Microelectronics, Inc. +054b New Media Corp. +054c Sony Corp. + 0001 HUB + 0002 Standard HUB + 0010 Cyber-shot, Mavica (msc) + 0014 Nogatech USBVision (SY) + 0022 Storage Adapter V2 (TPP) + 0023 CD Writer + 0024 Mavica CD-1000 Camera + 0025 NW-MS7 Walkman MemoryStick Reader + 002b Portable USB Harddrive V2 + 002c USB Floppy Disk Drive + 002d MSAC-US1 MemoryStick Reader + 002e HandyCam MemoryStick Reader + 0030 Storage Adapter V2 (TPP) + 0032 MemoryStick MSC-U01 Reader + 0035 Network Walkman (E) + 0036 Net MD + 0037 MG Memory Stick Reader/Writer + 0038 Clie PEG-S300/D PalmOS PDA + 0039 Network Walkman (MS) + 003c VAIO-MX LCD Control + 0045 Digital Imaging Video + 0046 Network Walkman + 0049 UP-D895 + 004a Memory Stick Hi-Fi System + 004b Memory Stick Reader/Writer + 004e DSC-xxx (ptp) + 0056 MG Memory Stick Reader/Writer + 0058 Clie PEG-N7x0C PalmOS PDA Mass Storage + 0066 Clie PEG-N7x0C/PEG-T425 PalmOS PDA Serial + 0067 CMR-PC3 Webcam + 0069 Memorystick MSC-U03 Reader + 006c FeliCa S310 [PaSoRi] + 006d Clie PEG-T425 PDA Mass Storage + 006f Network Walkman (EV) + 0073 Storage CRX1750U + 0075 Net MD + 0076 Storage Adapter ACR-U20 + 007c Net MD + 007f IC Recorder (MS) + 0080 Net MD + 0081 Net MD + 0084 Net MD + 0085 Net MD + 0086 Net MD + 008b Micro Vault 64M Mass Storage + 0095 Clie s360 + 0099 Clie NR70 PDA Mass Storage + 009a Clie NR70 PDA Serial + 00ab Visual Communication Camera (PCGA-UVC10) + 00af DPP-EX Series Digital Photo Printer + 00bf IC Recorder (S) + 00c0 Handycam DCR-30 + 00c6 Net MD + 00c7 Net MD + 00c8 MZ-N710 Minidisc Walkman + 00c9 Net MD + 00ca MZ-DN430 Minidisc Walkman + 00cb MSAC-US20 Memory Stick Reader + 00da Clie nx60 + 00e8 Network Walkman (MS) + 00e9 Handheld + 00eb Net MD + 0101 Net MD + 0103 IC Recorder (ST) + 0105 Micro Vault Hub + 0107 VCC-U01 Visual Communication Camera + 0110 Digital Imaging Video + 0113 Net MD + 0116 IC Recorder (P) + 0144 Clie PEG-TH55 PDA + 0147 Visual Communication Camera (PCGA-UVC11) + 014c Aiwa AM-NX9 Net MD Music Recorder MDLP + 014d Memory Stick Reader/Writer + 0154 Eyetoy Audio Device + 0155 Eyetoy Video Device + 015f IC Recorder (BM) + 0169 Clie PEG-TJ35 PDA Serial + 016a Clie PEG-TJ35 PDA Mass Storage + 016b Mobile HDD + 016d IC Recorder (SX) + 016e DPP-EX50 Digital Photo Printer + 0171 Fingerprint Sensor 3500 + 017e Net MD + 017f Hi-MD WALKMAN + 0180 Net MD + 0181 Hi-MD WALKMAN + 0182 Net MD + 0183 Hi-MD WALKMAN + 0184 Net MD + 0185 Hi-MD WALKMAN + 0186 Net MD + 0187 Hi-MD MZ-NH600 WALKMAN + 0188 Net MD + 018a Net MD + 018b Hi-MD SOUND GATE + 019e Micro Vault 1.0G Mass Storage + 01ad ATRAC HDD PA + 01bb FeliCa S320 [PaSoRi] + 01bd MRW62E Multi-Card Reader/Writer + 01c3 NW-E55 Network Walkman + 01c6 MEMORY P-AUDIO + 01c7 Printing Support + 01c8 PSP Type A + 01c9 PSP Type B + 01d0 DVD+RW External Drive DRU-700A + 01d5 IC RECORDER + 01de VRD-VC10 [Video Capture] + 01e7 UP-D897 + 01e8 UP-DR150 Photo Printer + 01e9 Net MD + 01ea Hi-MD WALKMAN + 01ee IC RECORDER + 01fa IC Recorder (P) + 01fb NW-E405 Network Walkman + 020f Device + 0210 ATRAC HDD PA + 0219 Net MD + 021a Hi-MD WALKMAN + 021b Net MD + 021c Hi-MD WALKMAN + 021d Net MD + 0226 UP-CR10L + 0227 Printing Support + 022c Net MD + 022d Hi-MD AUDIO + 0233 ATRAC HDD PA + 0236 Mobile HDD + 023b DVD+RW External Drive DRU-800UL + 023c Net MD + 023d Hi-MD WALKMAN + 0243 MicroVault Flash Drive + 024b Vaio VGX Mouse + 0257 IFU-WLM2 USB Wireless LAN Module (Wireless Mode) + 0258 IFU-WLM2 USB Wireless LAN Module (Memory Mode) + 0259 IC RECORDER + 0267 Tachikoma Device + 0268 Batoh Device / PlayStation 3 Controller + 0269 HDD WALKMAN + 026a HDD WALKMAN + 0271 IC Recorder (P) + 027c NETWORK WALKMAN + 027e SONY Communicator + 027f IC RECORDER + 0286 Net MD + 0287 Hi-MD WALKMAN + 0290 VGP-UVC100 Visual Communication Camera + 029b PRS-500 eBook reader + 02a5 MicroVault Flash Drive + 02af Handycam DCR-DVD306E + 02c4 Device + 02d1 DVD RW + 02d2 PSP Slim + 02d4 UP-CX1 + 02d8 SBAC-US10 SxS PRO memory card reader/writer + 02e1 FeliCa S330 [PaSoRi] + 02ea PlayStation 3 Memory Card Adaptor + 02f9 DSC-H9 + 0317 WALKMAN + 031a Walkman NWD-B103F + 031e PRS-300/PRS-505 eBook reader + 0325 NWZ-A818 + 033e DSC-W120/W290 + 0346 Handycam DCR-SR55E + 0348 HandyCam HDR-TG3E + 035b Walkman NWZ-A828 + 035c NWZ-A726/A728/A729 + 035f UP-DR200 Photo Printer + 0360 M2 Card Reader + 0382 Memory Stick PRO-HG Duo Adaptor (MSAC-UAH1) + 0385 Walkman NWZ-E436F + 0387 IC Recorder (P) + 03bc Webbie HD - MHS-CM1 + 03c3 UP-DR80MD + 03c4 Stryker SDP1000 + 03c5 UP-DR80 + 03cc SD Card Reader + 03d1 DPF-X95 + 03d3 DR-BT100CX + 03d5 PlayStation Move motion controller + 03fc WALKMAN [NWZ-E345] + 03fd Walkman NWZ-E443 + 042f PlayStation Move navigation controller + 0440 DSC-H55 + 0485 MHS-PM5 HD camcorder + 04cb WALKMAN NWZ-E354 + 0541 DSC-HX100V [Cybershot Digital Still Camera] + 05c4 DualShock 4 [CUH-ZCT1x] + 0689 Walkman NWZ-B173F + 06bb WALKMAN NWZ-F805 + 06c3 RC-S380 + 07c3 ILCE-6000 (aka Alpha-6000) in Mass Storage mode + 07c4 ILCE-6000 (aka Alpha-6000) in Mass Storage mode + 082f Walkman NWZW Series + 0847 WG-C10 Portable Wireless Server + 0873 UP-971AD + 0877 UP-D898/X898 series + 0884 MDR-ZX770BN [Wireless Noise Canceling Stereo Headset] + 088c Portable Headphone Amplifier + 08b7 ILCE-6000 (aka Alpha-6000) in MTP mode + 094e ILCE-6000 (aka Alpha-6000) in PC Remote mode + 0994 ILCE-6000 (aka Alpha-6000) in charging mode + 09cc DualShock 4 [CUH-ZCT2x] + 0ba0 Dualshock4 Wireless Adaptor + 0bb5 Headset MDR-1000X + 0c02 ILCE-7M3 [A7III] in Mass Storage mode + 0c03 ILCE-7M3 [A7III] in MTP mode + 0c34 ILCE-7M3 [A7III] in PC Remote mode + 0c7f WH-CH700N [Wireless Noise-Canceling Headphones] + 0cd3 WH-1000XM3 [Wireless Noise-Canceling Headphones] + 0cda PlayStation Classic controller + 0ce0 WF-1000XM3 [Wireless Noise-Canceling Headphones] + 0ce6 DualSense wireless controller (PS5) + 0cf0 MRW-G1 + 0d58 WH-1000XM4 [Wireless Noise-Canceling Headphones] + 1000 Wireless Buzz! Receiver +054d Try Corp. +054e Proside Corp. +054f WYSE Technology Taiwan +0550 Fuji Xerox Co., Ltd + 0002 InkJet Color Printer + 0004 InkJet Color Printer + 0005 InkJet Color Printer + 000b Workcentre 24 + 014e CM215b Printer + 0165 DocuPrint M215b +0551 CompuTrend Systems, Inc. +0552 Philips Monitors +0553 STMicroelectronics Imaging Division (VLSI Vision) + 0001 TerraCAM + 0002 CPiA Webcam + 0100 STV0672 Camera + 0140 Video Camera + 0150 CDE CAM 100 + 0151 Digital Blue QX5 Microscope + 0200 Dual-mode Camera0 + 0201 Dual-mode Camera1 + 0202 STV0680 Camera + 0674 Multi-mode Camera + 0679 NMS Video Camera (Webcam) + 1002 Che-ez! Splash +0554 Dictaphone Corp. +0555 ANAM S&T Co., Ltd +0556 Asahi Kasei Microsystems Co., Ltd + 0001 AK5370 I/F A/D Converter +0557 ATEN International Co., Ltd + 2001 UC-1284 Printer Port + 2002 10Mbps Ethernet [klsi] + 2004 UC-100KM PS/2 Mouse and Keyboard adapter + 2006 UC-1284B Printer Port + 2007 UC-110T 100Mbps Ethernet [pegasus] + 2008 UC-232A Serial Port [pl2303] + 2009 UC-210T Ethernet + 2011 UC-2324 4xSerial Ports [mos7840] + 2202 CS124U Miniview II KVM Switch + 2212 Keyboard/Mouse + 2213 CS682 2-Port USB 2.0 DVI KVM Switch + 2221 Winbond Hermon + 2404 4-port switch + 2419 Virtual mouse/keyboard device + 2600 IDE Bridge + 2701 CE700A KVM Extender + 4000 DSB-650 10Mbps Ethernet [klsi] + 7000 Hub + 7820 UC-2322 2xSerial Ports [mos7820] + 8021 Hub +0558 Truevision, Inc. + 1009 GW Instek GDS-1000 Oscilloscope + 100a GW Instek GDS-1000A Oscilloscope + 2009 GW Instek GDS-2000 Oscilloscope +0559 Cadence Design Systems, Inc. +055a Kenwood USA +055b KnowledgeTek, Inc. +055c Proton Electronic Ind. +055d Samsung Electro-Mechanics Co. + 0001 Keyboard + 0bb1 Bluetooth Device + 1030 Optical Wheel Mouse (OMS3CB/OMGB30) + 1031 Optical Wheel Mouse (OMA3CB/OMGI30) + 1040 Mouse HID Device + 1050 E-Mail Optical Wheel Mouse (OMS3CE) + 1080 Optical Wheel Mouse (OMS3CH) + 2020 Floppy Disk Drive + 6780 Keyboard V1 + 6781 Keyboard Mouse + 8001 E.M. Hub + 9000 AnyCam [pwc] + 9001 MPC-C30 AnyCam Premium for Notebooks [pwc] + a000 SWL-2100U + a010 WLAN Adapter(SWL-2300) + a011 Boot Device + a012 WLAN Adapter(SWL-2300) + a013 WLAN Adapter(SWL-2350) + a230 Boot Device + b000 11Mbps WLAN Mini Adapter + b230 Netopia 802.11b WLAN Adapter + b231 LG Wireless LAN 11b Adapter +055e CTX Opto-Electronics Corp. +055f Mustek Systems, Inc. + 0001 ScanExpress 1200 CU + 0002 ScanExpress 600 CU + 0003 ScanExpress 1200 USB + 0006 ScanExpress 1200 UB + 0007 ScanExpress 1200 USB Plus + 0008 ScanExpress 1200 CU Plus + 0010 BearPaw 1200F + 0210 ScanExpress A3 USB + 0218 BearPaw 2400 TA + 0219 BearPaw 2400 TA Plus + 021a BearPaw 2448 TA Plus + 021b BearPaw 1200 CU Plus + 021c BearPaw 1200 CU Plus + 021d BearPaw 2400 CU Plus + 021e BearPaw 1200 TA/CS + 021f SNAPSCAN e22 + 0400 BearPaw 2400 TA Pro + 0401 P 3600 A3 Pro + 0408 BearPaw 2448 CU Pro + 0409 BearPaw 2448 TA Pro + 040b ScanExpress A3 USB 1200 PRO + 0501 ScanExpress A3 2400 Pro + 0873 ScanExpress 600 USB + 1000 BearPaw 4800 TA Pro + a350 gSmart 350 Camera + a800 MDC 800 Camera + b500 MDC 3000 Camera + c005 PC CAM 300A + c200 gSmart 300 + c211 Kowa Bs888e Microcamera + c220 gSmart mini + c230 Digicam 330K + c232 MDC3500 Camera + c360 DV 4000 Camera + c420 gSmart mini 2 Camera + c430 gSmart LCD 2 Camera + c440 DV 3000 Camera + c520 gSmart mini 3 Camera + c530 gSmart LCD 2 Camera + c540 gSmart D30 Camera + c630 MDC 4000 Camera + c631 MDC 4000 Camera + c650 MDC 5500Z Camera + d001 WCam 300 + d003 WCam 300A + d004 WCam 300AN +0560 Interface Corp. +0561 Oasis Design, Inc. +0562 Telex Communications, Inc. + 0001 Enhanced Microphone + 0002 Telex Microphone +0563 Immersion Corp. +0564 Kodak Digital Product Center, Japan Ltd. (formerly Chinon Industries Inc.) +0565 Peracom Networks, Inc. + 0001 Serial Port [etek] + 0002 Enet Ethernet [klsi] + 0003 @Home Networks Ethernet [klsi] + 0005 Enet2 Ethernet [klsi] + 0041 Peracom Remote NDIS Ethernet Adapter +0566 Monterey International Corp. + 0110 ViewMate Desktop Mouse CC2201 + 1001 ViewMate Desktop Mouse CC2201 + 1002 ViewMate Desktop Mouse CC2201 + 1003 ViewMate Desktop Mouse CC2201 + 1004 ViewMate Desktop Mouse CC2201 + 1005 ViewMate Desktop Mouse CC2201 + 1006 ViewMate Desktop Mouse CC2201 + 1007 ViewMate Desktop Mouse CC2201 + 2800 MIC K/B + 2801 MIC K/B Mouse + 2802 Kbd Hub + 3002 Keyboard + 3004 Genius KB-29E + 3013 BakkerElkhuizen Wired Keyboard S-board 840 Design + 3020 BakkerElkhuizen Wired Keyboard S-board 840 Design USB-Hub + 3027 Sun-Flex ProTouch + 3107 Keyboard + 3132 Optical mouse M-DY4DR / M-DY6DR + 4006 FID 638 Mouse (Sun Microsystems) +0567 Xyratex International, Ltd +0568 Quartz Ingenierie +0569 SegaSoft +056a Wacom Co., Ltd + 0000 PenPartner + 0001 PenPartner 4x5 + 0002 PenPartner 6x8 + 0003 PTU-600 [Cintiq Partner] + 0010 ET-0405 [Graphire] + 0011 ET-0405A [Graphire2 (4x5)] + 0012 ET-0507A [Graphire2 (5x7)] + 0013 CTE-430 [Graphire3 (4x5)] + 0014 CTE-630 [Graphire3 (6x8)] + 0015 CTE-440 [Graphire4 (4x5)] + 0016 CTE-640 [Graphire4 (6x8)] + 0017 CTE-450 [Bamboo Fun (small)] + 0018 CTE-650 [Bamboo Fun (medium)] + 0019 CTE-631 [Bamboo One] + 0020 GD-0405 [Intuos (4x5)] + 0021 GD-0608 [Intuos (6x8)] + 0022 GD-0912 [Intuos (9x12)] + 0023 GD-1212 [Intuos (12x12)] + 0024 GD-1218 [Intuos (12x18)] + 0026 PTH-450 [Intuos5 touch (S)] + 0027 PTH-650 [Intuos5 touch (M)] + 0028 PTH-850 [Intuos5 touch (L)] + 0029 PTK-450 [Intuos5 (S)] + 002a PTK-650 [Intuos5 (M)] + 0030 PL400 + 0031 PL500 + 0032 PL600 + 0033 PL600SX + 0034 PL550 + 0035 PL800 + 0037 PL700 + 0038 PL510 + 0039 DTU-710 + 003a DTI-520 + 003b Integrated Hub + 003f DTZ-2100 [Cintiq 21UX] + 0041 XD-0405-U [Intuos2 (4x5)] + 0042 XD-0608-U [Intuos2 (6x8)] + 0043 XD-0912-U [Intuos2 (9x12)] + 0044 XD-1212-U [Intuos2 (12x12)] + 0045 XD-1218-U [Intuos2 (12x18)] + 0047 Intuos2 6x8 + 0057 DTK-2241 + 0059 DTH-2242 tablet + 005b DTH-2200 [Cintiq 22HD Touch] tablet + 005d DTH-2242 touchscreen + 005e DTH-2200 [Cintiq 22HD Touch] touchscreen + 0060 FT-0405 [Volito, PenPartner, PenStation (4x5)] + 0061 FT-0203 [Volito, PenPartner, PenStation (2x3)] + 0062 CTF-420 [Volito2] + 0063 CTF-220 [BizTablet] + 0064 CTF-221 [PenPartner2] + 0065 MTE-450 [Bamboo] + 0069 CTF-430 [Bamboo One] + 006a CTE-460 [Bamboo One Pen (S)] + 006b CTE-660 [Bamboo One Pen (M)] + 0081 CTE-630BT [Graphire Wireless (6x8)] + 0084 ACK-40401 [Wireless Accessory Kit] + 0090 TPC90 + 0093 TPC93 + 0097 TPC97 + 009a TPC9A + 00a2 STU-300B [LCD signature pad] + 00b0 PTZ-430 [Intuos3 (4x5)] + 00b1 PTZ-630 [Intuos3 (6x8)] + 00b2 PTZ-930 [Intuos3 (9x12)] + 00b3 PTZ-1230 [Intuos3 (12x12)] + 00b4 PTZ-1231W [Intuos3 (12x19)] + 00b5 PTZ-631W [Intuos3 (6x11)] + 00b7 PTZ-431W [Intuos3 (4x6)] + 00b8 PTK-440 [Intuos4 (4x6)] + 00b9 PTK-640 [Intuos4 (6x9)] + 00ba PTK-840 [Intuos4 (8x13)] + 00bb PTK-1240 [Intuos4 (12x19)] + 00c0 DTF-521 + 00c4 DTF-720 + 00c5 DTZ-2000W [Cintiq 20WSX] + 00c6 DTZ-1200W [Cintiq 12WX] + 00c7 DTU-1931 + 00cc DTK-2100 [Cintiq 21UX] + 00ce DTU-2231 + 00d0 CTT-460 [Bamboo Touch] + 00d1 CTH-460 [Bamboo Pen & Touch] + 00d2 CTH-461 [Bamboo Fun/Craft/Comic Pen & Touch (S)] + 00d3 CTH-661 [Bamboo Fun/Comic Pen & Touch (M)] + 00d4 CTL-460 [Bamboo Pen (S)] + 00d5 CTL-660 [Bamboo Pen (M)] + 00d6 CTH-460 [Bamboo Pen & Touch] + 00d7 CTH-461 [Bamboo Fun/Craft/Comic Pen & Touch (S)] + 00d8 CTH-661 [Bamboo Fun/Comic Pen & Touch (M)] + 00d9 CTT-460 [Bamboo Touch] + 00da CTH-461SE [Bamboo Pen & Touch Special Edition (S)] + 00db CTH-661SE [Bamboo Pen & Touch Special Edition (M)] + 00dc CTT-470 [Bamboo Touch] + 00dd CTL-470 [Bamboo Connect] + 00de CTH-470 [Bamboo Fun Pen & Touch] + 00df CTH-670 [Bamboo Create/Fun] + 00e2 TPCE2 + 00e3 TPCE3 + 00e5 TPCE5 + 00e6 TPCE6 + 00ec TPCEC + 00ed TPCED + 00ef TPCEF + 00f0 DTU-1631 + 00f4 DTK-2400 [Cintiq 24HD] tablet + 00f6 DTH-2400 [Cintiq 24HD touch] touchscreen + 00f8 DTH-2400 [Cintiq 24HD touch] tablet + 00f9 DTK-2200 [Cintiq 22HD] hub + 00fa DTK-2200 [Cintiq 22HD] tablet + 00fb DTU-1031 + 0100 TPC100 + 0101 TPC101 + 010d TPC10D + 010e TPC10E + 010f TPC10F + 0116 TPC116 + 012c TPC12C + 0221 MDP-123 [Inkling] + 0300 CTL-471 [Bamboo Splash, One by Wacom (S)] + 0301 CTL-671 [One by Wacom (M)] + 0302 CTH-480 [Intuos Pen & Touch (S)] + 0303 CTH-680 [Intuos Pen & Touch (M)] + 0304 DTK-1300 [Cintiq 13HD] + 0307 DTH-A1300 [Cintiq Companion Hybrid] tablet + 0309 DTH-A1300 [Cintiq Companion Hybrid] touchscreen + 030e CTL-480 [Intuos Pen (S)] + 0314 PTH-451 [Intuos pro (S)] + 0315 PTH-651 [Intuos pro (M)] + 0317 PTH-851 [Intuos pro (L)] + 0318 CTH-301 [Bamboo] + 0319 CTH-300 [Bamboo Pad wireless] + 0323 CTL-680 [Intuos Pen (M)] + 032a DTK-2700 [Cintiq 27QHD] + 032b DTH-2700 [Cintiq 27QHD touch] tablet + 032c DTH-2700 [Cintiq 27QHD touch] touchscreen + 032f DTU-1031X + 0331 ACK-411050 [ExpressKey Remote] + 0333 DTH-1300 [Cintiq 13HD Touch] tablet + 0335 DTH-1300 [Cintiq 13HD Touch] touchscreen + 0336 DTU-1141 + 033b CTL-490 [Intuos Draw (S)] + 033c CTH-490 [Intuos Art/Photo/Comic (S)] + 033d CTL-690 [Intuos Draw (M)] + 033e CTH-690 [Intuos Art (M)] + 0343 DTK-1651 + 0347 DTH-W1620 [MobileStudio Pro 16] internal hub + 0348 DTH-W1620 [MobileStudio Pro 16] external hub + 034a DTH-W1320 [MobileStudio Pro 13] touchscreen + 034b DTH-W1620 [MobileStudio Pro 16] touchscreen + 034d DTH-W1320 [MobileStudio Pro 13] tablet + 034e DTH-W1620 [MobileStudio Pro 16] tablet + 034f DTH-1320 [Cintiq Pro 13] tablet + 0350 DTH-1620 [Cintiq Pro 16] tablet + 0351 DTH-2420 [Cintiq Pro 24 PT] tablet + 0352 DTH-3220 [Cintiq Pro 32] tablet + 0353 DTH-1320 [Cintiq Pro 13] touchscreen + 0354 DTH-1620 [Cintiq Pro 16] touchscreen + 0355 DTH-2420 [Cintiq Pro 24 PT] touchscreen + 0356 DTH-3220 [Cintiq Pro 32] touchscreen + 0357 PTH-660 [Intuos Pro (M)] + 0358 PTH-860 [Intuos Pro (L)] + 0359 DTU-1141B + 035a DTH-1152 tablet + 0368 DTH-1152 touchscreen + 0374 CTL-4100 [Intuos (S)] + 0375 CTL-6100 [Intuos (M)] + 0376 CTL-4100WL [Intuos BT (S)] + 0378 CTL-6100WL [Intuos BT (M)] + 037a CTL-472 [One by Wacom (S)] + 037b CTL-672 [One by Wacom (M)] + 037c DTK-2420 [Cintiq Pro 24 P] + 037d DTH-2452 tablet + 037e DTH-2452 touchscreen + 0382 DTK-2451 tablet + 038a DTH-3220 [Cintiq Pro 32] internal hub + 038d DTH-3220 [Cintiq Pro 32] internal hub + 038e DTH-3220 [Cintiq Pro 32] external hub + 038f DTH-3220 [Cintiq Pro 32] internal hub + 0390 DTK-1660 [Cintiq 16] + 0392 PTH-460 [Intuos Pro (S)] + 0396 DTK-1660E + 0398 DTH-W1320 [MobileStudio Pro 13] tablet + 0399 DTH-W1620 [MobileStudio Pro 16] tablet + 039a DTH-W1320 [MobileStudio Pro 13] touchscreen + 039b DTH-W1620 [MobileStudio Pro 16] touchscreen + 039c DTH-W1320 [MobileStudio Pro 16] external hub + 039d DTH-W1320 [MobileStudio Pro 16] internal hub + 03aa DTH-W1620 [MobileStudio Pro 16] tablet + 03ac DTH-W1620 [MobileStudio Pro 16] touchscreen + 03c5 CTL-4100WL [Intuos BT (S)] + 03c7 CTL-6100WL [Intuos BT (M)] + 0400 PenPartner 4x5 + 4001 TPC4001 + 4004 TPC4004 + 4850 PenPartner 6x8 + 5000 TPC5000 + 5002 TPC5002 + 5010 TPC5010 +056b Decicon, Inc. +056c eTEK Labs + 0006 KwikLink Host-Host Connector + 8007 Kwik232 Serial Port + 8100 KwikLink Host-Host Connector + 8101 KwikLink USB-USB Bridge +056d EIZO Corp. + 0000 Hub + 0001 Monitor + 0002 HID Monitor Controls + 0003 Device Bay Controller + 4000 FlexScan EV3237 + 4001 Monitor + 4002 USB HID Monitor + 4014 FlexScan EV2750 + 4026 FlexScan EV2451 + 4027 FlexScan EV2456 + 4036 FlexScan EV2785 + 4037 FlexScan EV3285 + 4044 FlexScan EV2457 + 4059 FlexScan EV2760 + 405b FlexScan EV2460 + 405f FlexScan EV2795 + 4065 FlexScan EV3895 +056e Elecom Co., Ltd + 0002 29UO Mouse + 0057 Micro Grast Pop M-PGDL + 005c Micro Grast Pop M-PG2DL + 005d Micro Grast Fit M-FGDL + 005e Micro Grast Fit M-FG2DL + 0062 Optical mouse M-D18DR + 0063 Laser mouse M-SODL + 0069 Laser mouse M-GE1UL + 0071 Laser mouse M-GE3DL + 0072 Laser mouse M-LS6UL + 0073 Laser mouse M-LS7UL + 0074 Optical mouse M-FW1UL + 0075 Laser mouse M-FW2DL + 0077 Laser mouse M-LY2UL + 0079 Laser mouse M-D21DL + 007b Laser mouse M-D20DR + 007c Laser Bluetooth mouse M-BT5BL + 007e Option mouse M-M8UR + 007f Option mouse M-M9UR + 0081 Option mouse M-DY6DR + 0082 Laser mouse M-D22DR + 0088 Micro Grast2 Bit M-BG3DL + 0089 Micro Grast2 Pop M-PG3DL + 008c M-NE3DL Mouse + 008d ORIME M-NE4DR + 008f M-BT8BL Bluetooth Mouse + 0092 Wireless BlueLED Mouse (M-BL2DB) + 009c IR Mouse M-IR02DR + 009d IR Mouse M-IR03DR + 009f BlueLED Mouse M-HS1DB + 00a1 IR Mouse M-IR05DR + 00a4 Blue LED Mouse M-BL06DB + 00a5 M-NV1BR Bluetooth Mouse + 00a7 Blue LED Mouse M-BL08DB + 00a8 M-BL09DB Mouse + 00a9 M-BL10UB Mouse + 00aa M-BL11DB Mouse + 00ac M-A-BL01UL / M-BL15DB Mouse + 00b4 Track on Glass Mouse M-TG02DL + 00b5 Track on Glass Mouse M-TG03UL + 00b6 Track on Glass Mouse M-TG04DL + 00b8 M-A-BL01UL or M-ASKL2 Mouse + 00b9 M-A-BL02DB or M-ASKL Mouse + 00cb M-BL21DB Mouse + 00cd M-XG1UB Mouse + 00ce M-XG1DB Mouse + 00cf M-XG1BB Bluetooth Mouse + 00d0 M-XG2UB Mouse + 00d1 M-XG2DB Mouse + 00d2 M-XG2BB Bluetooth Mouse + 00d3 M-XG3DL Mouse + 00d4 M-LS11DL Mouse + 00da M-XG4UB Mouse + 00db M-XG4DB Mouse + 00dc M-XG4BB Bluetooth Mouse + 00dd M-LS12UL Mouse + 00de M-LS13UL Mouse + 00df M-BL22DB Mouse + 00e1 M-WK01DB or M-A-BL04DB + 00e2 M-A-BL03DB + 00e3 M-XGx10UB + 00e4 M-XGx10DB + 00e5 M-XGx10BB + 00e6 M-XGx20DL or M-XGx20DB UltimateLaser Mouse + 00f1 M-XT1DRBK USB EX-G Wireless Optical TrackBall + 00f2 M-XT1URBK EX-G Optical Trackball + 00f3 M-BL23DB + 00f4 M-BT13BL LBT-UAN05C2 + 00f7 M-KN1DB + 00f8 M-BL22DB Mouse (other version) + 00f9 M-XT2URBK EX-G Optical TrackBall + 00fa M-XT2DRBK EX-G Wireless Optical TrackBall + 00fb M-XT3URBK EX-G Optical TrackBall + 00fc M-XT3DRBK EX-G Wireless Optical TrackBall + 00fd M-XT4DRBK EX-G Wireless Optical TrackBall + 00fe M-DT1URBK or M-DT2URBK DEFT Optical TrackBall + 00ff M-DT1DRBK or M-DT2DRBK DEFT Wireless Optical Mouse + 0101 M-BL25UBS + 0103 M-BT16BBS + 0104 M-BL26UBC + 0105 M-BL26DBC + 0107 M-LS15UL + 0108 M-LS15DL + 0109 M-LS16UL Mouse + 010a M-LS16DL / M-KN2DLS + 010b M-BL21DB Mouse + 010c M-HT1URBK HUGE Optical TrackBall + 010d M-HT1DRBK HUGE Wireless Optical TrackBall + 010e M-KS1DBS / M-FPG3DBS + 010f M-FBG3DB + 0115 M-BT13BL + 0121 M-ED01DB + 0122 M-NK01DB + 0124 Dual connect Mouse M-DC01MB Bluetooth + 0128 TrackBall Mouse M-XPT1MR Wired + 0129 TrackBall Mouse M-XPT1MR Wireless + 0130 TrackBall Mouse M-XPT1MR Bluetooth + 0131 TrackBall Mouse M-DPT1MR Wired + 0132 TrackBall Mouse M-DPT1MR Wireless + 0133 TrackBall Mouse M-DPT1MR Bluetooth + 0136 M-BT20BB + 0137 BlueTooth 4.0 Mouse M-BT21BB + 0138 M-A-BL07DB + 0140 M-G01UR + 0141 M-Y9UB + 0142 M-DY13DB + 0144 M-FBL01DB + 1055 TK-DCP03 WIRED + 1057 TK-DCP03 BT + 2003 JC-U3613M + 2004 JC-U3613M + 200c LD-USB/TX + 200f JC-U4013S Gamepad + 2012 JC-U4013S Gamepad + 4002 Laneed 100Mbps Ethernet LD-USB/TX [pegasus] + 4005 LD-USBL/TX + 400b LD-USB/TX + 4010 LD-USB20 + 5003 UC-SGT + 5004 UC-SGT + 6008 Flash Disk + abc1 LD-USB/TX +056f Korea Data Systems Co., Ltd + cd00 CDM-751 CD organizer +0570 Epson America +0571 Interex, Inc. + 0002 echoFX InterView Lite +0572 Conexant Systems (Rockwell), Inc. + 0001 Ezcam II Webcam + 0002 Ezcam II Webcam + 0040 Wondereye CP-115 Webcam + 0041 Webcam Notebook + 0042 Webcam Notebook + 0320 DVBSky T330 DVB-T2/C tuner + 1232 V.90 modem + 1234 Typhoon Redfun Modem V90 56k + 1252 HCF V90 Data Fax Voice Modem + 1253 Zoom V.92 Faxmodem + 1300 SoftK56 Data Fax Voice CARP + 1301 Modem Enumerator + 1328 TrendNet TFM-561 modem + 1804 HP Dock Audio + 2000 SoftGate 802.11 Adapter + 2002 SoftGate 802.11 Adapter + 262a tm5600 Video & Audio Grabber Capture + 680c DVBSky T680C DVB-T2/C tuner + 6831 DVBSky S960 DVB-S2 tuner + 8390 WinFast PalmTop/Novo TV Video + 8392 WinFast PalmTop/Novo TV Video + 960c DVBSky S960C DVB-S2 tuner + c686 Geniatech T220A DVB-T2 TV Stick + c688 Geniatech T230 DVB-T2 TV Stick + cafc CX861xx ROM Boot Loader + cafd CX82310 ROM Boot Loader + cafe AccessRunner ADSL Modem + cb00 ADSL Modem + cb01 ADSL Modem + cb06 StarModem Network Interface +0573 Zoran Co. Personal Media Division (Nogatech) + 0003 USBGear USBG-V1 + 0400 D-Link V100 + 0600 Dazzle USBVision (1006) + 1300 leadtek USBVision (1006) + 2000 X10 va10a Wireless Camera + 2001 Dazzle EmMe (2001) + 2101 Zoran Co. PMD (Nogatech) AV-grabber Manhattan + 2d00 Osprey 50 + 2d01 Hauppauge USB-Live Model 600 + 3000 Dazzle MicroCam (NTSC) + 3001 Dazzle MicroCam (PAL) + 4000 Nogatech TV! (NTSC) + 4001 Nogatech TV! (PAL) + 4002 Nogatech TV! (PAL-I-) + 4003 Nogatech TV! (MF-) + 4008 Nogatech TV! (NTSC) (T) + 4009 Nogatech TV! (PAL) (T) + 4010 Nogatech TV! (NTSC) (A) + 4100 USB-TV FM (NTSC) + 4110 PNY USB-TV (NTSC) FM + 4400 Nogatech TV! Pro (NTSC) + 4401 Nogatech TV! Pro (PAL) + 4450 PixelView PlayTv-USB PRO (PAL) FM + 4451 Nogatech TV! Pro (PAL+) + 4452 Nogatech TV! Pro (PAL-I+) + 4500 Nogatech TV! Pro (NTSC) + 4501 Nogatech TV! Pro (PAL) + 4550 ZTV ZT-721 2.4GHz A/V Receiver + 4551 Dazzle TV! Pro Audio (P+) + 4d00 Hauppauge WinTV-USB USA + 4d01 Hauppauge WinTV-USB + 4d02 Hauppauge WinTV-USB UK + 4d03 Hauppauge WinTV-USB France + 4d04 Hauppauge WinTV (PAL D/K) + 4d10 Hauppauge WinTV-USB with FM USA radio + 4d11 Hauppauge WinTV-USB (PAL) with FM radio + 4d12 Hauppauge WinTV-USB UK with FM Radio + 4d14 Hauppauge WinTV (PAL D/K FM) + 4d20 Hauppauge WinTV-USB II (PAL) with FM radio + 4d21 Hauppauge WinTV-USB II (PAL) + 4d22 Hauppauge WinTV-USB II (PAL) Model 566 + 4d23 Hauppauge WinTV-USB France 4D23 + 4d24 Hauppauge WinTV Pro (PAL D/K) + 4d25 Hauppauge WinTV-USB Model 40209 rev B234 + 4d26 Hauppauge WinTV-USB Model 40209 rev B243 + 4d27 Hauppauge WinTV-USB Model 40204 Rev B281 + 4d28 Hauppauge WinTV-USB Model 40204 rev B283 + 4d29 Hauppauge WinTV-USB Model 40205 rev B298 + 4d2a Hauppague WinTV-USB Model 602 Rev B285 + 4d2b Hauppague WinTV-USB Model 602 Rev B282 + 4d2c Hauppauge WinTV Pro (PAL/SECAM) + 4d30 Hauppauge WinTV-USB FM Model 40211 Rev B123 + 4d31 Hauppauge WinTV-USB III (PAL) with FM radio Model 568 + 4d32 Hauppauge WinTV-USB III (PAL) FM Model 573 + 4d34 Hauppauge WinTV Pro (PAL D/K FM) + 4d35 Hauppauge WinTV-USB III (PAL) FM Model 597 + 4d36 Hauppauge WinTV Pro (PAL B/G FM) + 4d37 Hauppauge WinTV-USB Model 40219 rev E189 + 4d38 Hauppauge WinTV Pro (NTSC FM) +0574 City University of Hong Kong +0575 Philips Creative Display Solutions +0576 BAFO/Quality Computer Accessories +0577 ELSA +0578 Intrinsix Corp. +0579 GVC Corp. +057a Samsung Electronics America +057b Y-E Data, Inc. + 0000 FlashBuster-U Floppy + 0001 Tri-Media Reader Floppy + 0006 Tri-Media Reader Card Reader + 0010 Memory Stick Reader Writer + 0020 HEXA Media Drive 6-in-1 Card Reader Writer + 0030 Memory Card Viewer (TV) +057c AVM GmbH + 0b00 ISDN-Controller B1 Family + 0c00 ISDN-Controller FRITZ!Card + 1000 ISDN-Controller FRITZ!Card v2.0 + 1900 ISDN-Controller FRITZ!Card v2.1 + 2000 ISDN-Connector FRITZ!X + 2200 BlueFRITZ! + 2300 Teledat X130 DSL + 2800 Teledat 2a/b / X120 / NetXXL ISDN Terminal Adapter + 3200 Teledat X130 DSL + 3500 FRITZ!Card DSL SL + 3701 FRITZ!Box SL + 3702 FRITZ!Box + 3800 BlueFRITZ! Bluetooth Stick + 3a00 FRITZ!Box Fon + 3c00 FRITZ!Box WLAN + 3d00 FRITZ!Box Fon WLAN 7050/7140/7170/IAD3331 + 3e01 FRITZ!Box (Annex A) + 4001 FRITZ!Box Fon (Annex A) + 4101 FRITZ!Box WLAN (Annex A) + 4201 FRITZ!Box Fon WLAN (Annex A) + 4601 Eumex 5520PC (WinXP/2000) + 4602 Eumex 400 (WinXP/2000) + 4701 AVM FRITZ!Box Fon ata + 5401 Eumex 300 IP + 5601 AVM Fritz!WLAN [Texas Instruments TNETW1450] + 6201 AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450] + 62ff AVM Fritz!WLAN USB (in CD-ROM-mode) + 8401 Fritz!WLAN N [Atheros AR9001U] + 8402 Fritz!WLAN N 2.4 [Atheros AR9001U] + 8403 Fritz!WLAN N v2 [Atheros AR9271] + 84ff AVM Fritz!WLAN USB N (in CD-ROM-mode) + 8501 FRITZ WLAN N v2 [RT5572/rt2870.bin] +057d Shark Multimedia, Inc. +057e Nintendo Co., Ltd + 0300 USB-EXI Adapter (GCP-2000) + 0304 RVT-H Reader + 0305 Broadcom BCM2045A Bluetooth Radio [Nintendo Wii] + 0306 Wii Remote Controller RVL-003 + 0337 Wii U GameCube Controller Adapter + 2000 Switch + 2006 Joy-Con L + 2007 Joy-Con R + 2009 Switch Pro Controller + 200e Joy-Con Charging Grip + 3000 SDK Debugger +057f QuickShot, Ltd + 6238 USB StrikePad +0580 Denron, Inc. +0581 Racal Data Group + 0107 Tera Barcode Scanner 2.4 GHz Receiver + 020c Tera 2D Barcode Scanner EVHK0012 +0582 Roland Corp. + 0000 UA-100(G) + 0002 UM-4/MPU-64 MIDI Interface + 0003 SoundCanvas SC-8850 + 0004 U-8 + 0005 UM-2(C/EX) + 0007 SoundCanvas SC-8820 + 0008 PC-300 + 0009 UM-1(E/S/X) + 000b SK-500 + 000c SC-D70 + 0010 EDIROL UA-5 + 0011 Edirol UA-5 Sound Capture + 0012 XV-5050 + 0013 XV-5050 + 0014 EDIROL UM-880 MIDI I/F (native) + 0015 EDIROL UM-880 MIDI I/F (generic) + 0016 EDIROL SD-90 + 0017 EDIROL SD-90 + 0018 UA-1A + 001b MMP-2 + 001c MMP-2 + 001d V-SYNTH + 001e V-SYNTH + 0023 EDIROL UM-550 + 0024 EDIROL UM-550 + 0025 EDIROL UA-20 + 0026 EDIROL UA-20 + 0027 EDIROL SD-20 + 0028 EDIROL SD-20 + 0029 EDIROL SD-80 + 002a EDIROL SD-80 + 002b EDIROL UA-700 + 002c EDIROL UA-700 + 002d XV-2020 Synthesizer + 002e XV-2020 Synthesizer + 002f VariOS + 0030 VariOS + 0033 EDIROL PCR + 0034 EDIROL PCR + 0035 M-1000 + 0037 Digital Piano + 0038 Digital Piano + 003b BOSS GS-10 + 003c BOSS GS-10 + 0040 GI-20 + 0041 GI-20 + 0042 RS-70 + 0043 RS-70 + 0044 EDIROL UA-1000 + 0047 EDIROL UR-80 WAVE + 0048 EDIROL UR-80 MIDI + 0049 EDIROL UR-80 WAVE + 004a EDIROL UR-80 MIDI + 004b EDIROL M-100FX + 004c EDIROL PCR-A WAVE + 004d EDIROL PCR-A MIDI + 004e EDIROL PCR-A WAVE + 004f EDIROL PCR-A MIDI + 0050 EDIROL UA-3FX + 0052 EDIROL UM-1SX + 0054 Digital Piano + 0060 EXR Series + 0064 EDIROL PCR-1 WAVE + 0065 EDIROL PCR-1 MIDI + 0066 EDIROL PCR-1 WAVE + 0067 EDIROL PCR-1 MIDI + 006a SP-606 + 006b SP-606 + 006d FANTOM-X + 006e FANTOM-X + 0073 EDIROL UA-25 + 0074 EDIROL UA-25 + 0075 BOSS DR-880 + 0076 BOSS DR-880 + 007a RD + 007b RD + 007d EDIROL UA-101 + 0080 G-70 + 0081 G-70 + 0084 V-SYNTH XT + 0089 BOSS GT-PRO + 008b EDIROL PC-50 + 008c EDIROL PC-50 + 008d EDIROL UA-101 USB1 + 0092 EDIROL PC-80 WAVE + 0093 EDIROL PC-80 MIDI + 0096 EDIROL UA-1EX + 009a EDIROL UM-3EX + 009d EDIROL UM-1 + 00a0 MD-P1 + 00a2 Digital Piano + 00a3 EDIROL UA-4FX + 00a6 Juno-G + 00a9 MC-808 + 00ad SH-201 + 00b2 VG-99 + 00b3 VG-99 + 00b7 BK-7m/VIMA JM-5/8 + 00c2 SonicCell + 00c4 EDIROL M-16DX + 00c5 SP-555 + 00c7 V-Synth GT + 00d1 Music Atelier + 00d3 M-380/400 + 00da BOSS GT-10 + 00db BOSS GT-10 Guitar Effects Processor + 00dc BOSS GT-10B + 00de Fantom G + 00e6 EDIROL UA-25EX (Advanced mode) + 00e7 EDIROL UA-25EX + 00e9 UA-1G + 00eb VS-100 + 00f6 GW-8/AX-Synth + 00f8 JUNO Series + 00fc VS-700C + 00fd VS-700 + 00fe VS-700 M1 + 00ff VS-700 M2 + 0100 VS-700 + 0101 VS-700 M2 + 0102 VB-99 + 0104 UM-1G + 0106 UM-2G + 0108 UM-3G + 0109 eBand JS-8 + 010d A-500S + 010f A-PRO + 0110 A-PRO + 0111 GAIA SH-01 + 0113 ME-25 + 0114 SD-50 + 0116 WAVE/MP3 RECORDER R-05 + 0117 VS-20 + 0119 OCTAPAD SPD-30 + 011c Lucina AX-09 + 011e BR-800 + 0120 OCTA-CAPTURE + 0121 OCTA-CAPTURE + 0123 JUNO-Gi + 0124 M-300 + 0127 GR-55 + 012a UM-ONE + 012b DUO-CAPTURE + 012f QUAD-CAPTURE + 0130 MICRO BR BR-80 + 0132 TRI-CAPTURE + 0134 V-Mixer + 0138 Boss RC-300 (Audio mode) + 0139 Boss RC-300 (Storage mode) + 013a JUPITER-80 + 013e R-26 + 0145 SPD-SX + 014b eBand JS-10 + 014d GT-100 + 0150 TD-15 + 0151 TD-11 + 0154 JUPITER-50 + 0156 A-Series + 0158 TD-30 + 0159 DUO-CAPTURE EX + 015b INTEGRA-7 + 015d R-88 + 01b5 Boutique Series Synthesizer (Normal mode) + 01b6 Boutique Series Synthesizer (Storage mode) + 01df Rubix22 + 01e0 Rubix24 + 01e1 Rubix44 + 01ef Go:KEYS MIDI + 0505 EDIROL UA-101 +0583 Padix Co., Ltd (Rockfire) + 0001 4 Axis 12 button +POV + 0002 4 Axis 12 button +POV + 2030 RM-203 USB Nest [mode 1] + 2031 RM-203 USB Nest [mode 2] + 2032 RM-203 USB Nest [mode 3] + 2033 RM-203 USB Nest [mode 4] + 2050 PX-205 PSX Bridge + 205f PSX/USB converter + 2060 2-axis 8-button gamepad + 206f USB, 2-axis 8-button gamepad + 3050 QF-305u Gamepad + 3379 Rockfire X-Force + 337f Rockfire USB RacingStar Vibra + 509f USB,4-Axis,12-Button with POV + 5259 Rockfire USB SkyShuttle Vibra + 525f USB Vibration Pad + 5308 USB Wireless VibrationPad + 5359 Rockfire USB SkyShuttle Pro + 535f USB,real VibrationPad + 5659 Rockfire USB SkyShuttle Vibra + 565f USB VibrationPad + 6009 Revenger + 600f USB,GameBoard II + 6258 USB, 4-axis, 6-button joystick w/view finder + 6889 Windstorm Pro + 688f QF-688uv Windstorm Pro Joystick + 7070 QF-707u Bazooka Joystick + a000 MaxFire G-08XU Gamepad + a015 4-Axis,16-Button with POV + a019 USB, Vibration ,4-axis, 8-button joystick w/view finder + a020 USB,4-Axis,10-Button with POV + a021 USB,4-Axis,12-Button with POV + a022 USB,4-Axis,14-Button with POV + a023 USB,4-Axis,16-Button with POV + a024 4axis,12button vibrition audio gamepad + a025 4axis,12button vibrition audio gamepad + a130 USB Wireless 2.4GHz Gamepad + a131 USB Wireless 2.4GHz Joystick + a132 USB Wireless 2.4GHz Wheelpad + a133 USB Wireless 2.4GHz Wheel&Gamepad + a202 ForceFeedbackWheel + a209 MetalStrike FF + b000 USB,4-Axis,12-Button with POV + b001 USB,4-Axis,12-Button with POV + b002 Vibration,12-Button USB Wheel + b005 USB,12-Button Wheel + b008 USB Wireless 2.4GHz Wheel + b009 USB,12-Button Wheel + b00a PSX/USB converter + b00b PSX/USB converter + b00c PSX/USB converter + b00d PSX/USB converter + b00e 4-Axis,12-Button with POV + b00f USB,5-Axis,10-Button with POV + b010 MetalStrike Pro + b012 Wireless MetalStrike + b013 USB,Wiress 2.4GHZ Joystick + b016 USB,5-Axis,10-Button with POV + b018 TW6 Wheel + ff60 USB Wireless VibrationPad +0584 RATOC System, Inc. + 0008 Fujifilm MemoryCard ReaderWriter + 0220 U2SCX SCSI Converter + 0304 U2SCX-LVD (SCSI Converter) + b000 REX-USB60 + b020 REX-USB60F +0585 FlashPoint Technology, Inc. + 0001 Digital Camera + 0002 Digital Camera + 0003 Digital Camera + 0004 Digital Camera + 0005 Digital Camera + 0006 Digital Camera + 0007 Digital Camera + 0008 Digital Camera + 0009 Digital Camera + 000a Digital Camera + 000b Digital Camera + 000c Digital Camera + 000d Digital Camera + 000e Digital Camera + 000f Digital Camera +0586 ZyXEL Communications Corp. + 0025 802.11b/g/n USB Wireless Network Adapter + 0100 omni.net + 0102 omni.net II ISDN TA [HFC-S] + 0110 omni.net Plus + 1000 omni.net LCD Plus - ISDN TA + 1500 Omni 56K Plus + 2011 Scorpion-980N keyboard + 3304 LAN Modem + 3309 ADSL Modem Prestige 600 series + 330a ADSL Modem Interface + 330e USB Broadband ADSL Modem Rev 1.10 + 3400 ZyAIR B-220 IEEE 802.11b Adapter + 3401 ZyAIR G-220 802.11bg + 3402 ZyAIR G-220F 802.11bg + 3403 AG-200 802.11abg Wireless Adapter [Atheros AR5523] + 3407 G-200 v2 802.11bg + 3408 G-260 802.11bg + 3409 AG-225H 802.11bg + 340a M-202 802.11bg + 340c G-270S 802.11bg Wireless Adapter [Atheros AR5523] + 340f G-220 v2 802.11bg + 3410 ZyAIR G-202 802.11bg + 3412 802.11bg + 3413 ZyAIR AG-225H v2 802.11bg + 3415 G-210H 802.11g Wireless Adapter + 3416 NWD-210N 802.11b/g/n-draft wireless adapter + 3417 NWD271N 802.11n Wireless Adapter [Atheros AR9001U-(2)NG] + 3418 NWD211AN 802.11abgn Wireless Adapter [Ralink RT2870] + 3419 G-220 v3 802.11bg Wireless Adapter [ZyDAS ZD1211B] + 341a NWD-270N Wireless N-lite USB Adapter + 341e NWD2105 802.11bgn Wireless Adapter [Ralink RT3070] + 341f NWD2205 802.11n Wireless N Adapter [Realtek RTL8192CU] + 3425 NWD6505 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7610U] + 343e N220 802.11bgn Wireless Adapter +0587 America Kotobuki Electronics Industries, Inc. +0588 Sapien Design +0589 Victron +058a Nohau Corp. +058b Infineon Technologies + 0015 Flash Loader utility + 001c Flash Drive + 0041 Flash Loader utility +058c In Focus Systems + 0007 Flash + 0008 LP130 + 000a LP530 + 0010 Projector + 0011 Projector + 0012 Projector + 0013 Projector + 0014 Projector + 0015 Projector + 0016 Projector + 0017 Projector + 0018 Projector + 0019 Projector + 001a Projector + 001b Projector + 001c Projector + 001d Projector + 001e Projector + 001f Projector + ffe5 IN34 Projector + ffeb Projector IN76 +058d Micrel Semiconductor +058e Tripath Technology, Inc. +058f Alcor Micro Corp. + 1234 Flash Drive + 198b Webcam (Gigatech P-09) + 2412 SCard R/W CSR-145 + 2802 Monterey Keyboard + 5492 Hub + 6232 Hi-Speed 16-in-1 Flash Card Reader/Writer + 6254 USB Hub + 6331 SD/MMC/MS Card Reader + 6332 Multi-Function Card Reader + 6335 SD/MMC Card Reader + 6360 Multimedia Card Reader + 6361 Multimedia Card Reader + 6362 Flash Card Reader/Writer + 6364 AU6477 Card Reader Controller + 6366 Multi Flash Reader + 6377 AU6375 4-LUN card reader + 6386 Memory Card + 6387 Flash Drive + 6390 USB 2.0-IDE bridge + 6391 IDE Bridge + 6998 AU6998 Flash Disk Controller + 9213 MacAlly Kbd Hub + 9215 AU9814 Hub + 9254 Hub + 9310 Mass Storage (UID4/5A & UID7A) + 9320 Micro Storage Driver for Win98 + 9321 Micro Storage Driver for Win98 + 9330 SD Reader + 9331 Micro Storage Driver for Win98 + 9340 Delkin eFilm Reader-32 + 9350 Delkin eFilm Reader-32 + 9360 8-in-1 Media Card Reader + 9361 Multimedia Card Reader + 9368 Multimedia Card Reader + 9380 Flash Drive + 9381 Flash Drive + 9382 Acer/Sweex Flash drive + 9384 qdi U2Disk T209M + 9410 Keyboard + 9472 Keyboard Hub + 9510 ChunghwaTL USB02 Smartcard Reader + 9520 Watchdata W 1981 + 9540 AU9540 Smartcard Reader + 9720 USB-Serial Adapter + a014 Asus Integrated Webcam + b002 Acer Integrated Webcam +0590 Omron Corp. + 0004 Cable Modem + 000b MR56SVS + 0028 HJ-720IT / HEM-7080IT-E / HEM-790IT + 0051 FT232BM [E58CIFQ1 with FTDI USB2Serial Converter] +0591 Questra Consulting +0592 Powerware Corp. + 0002 UPS (X-Slot) +0593 Incite +0594 Princeton Graphic Systems +0595 Zoran Microelectronics, Ltd + 1001 Digitrex DSC-1300/DSC-2100 (mass storage mode) + 2002 DIGITAL STILL CAMERA 6M 4X + 4343 Digital Camera EX-20 DSC +0596 MicroTouch Systems, Inc. + 0001 Touchscreen + 0002 Touch Screen Controller + 0500 PCT Multitouch HID Controller + 0543 DELL XPS touchscreen +0597 Trisignal Communications +0598 Niigata Canotec Co., Inc. +0599 Brilliance Semiconductor, Inc. +059a Spectrum Signal Processing, Inc. +059b Iomega Corp. + 0001 Zip 100 (Type 1) + 000b Zip 100 (Type 2) + 0021 Win98 Disk Controller + 0030 Zip 250 (Ver 1) + 0031 Zip 100 (Type 3) + 0032 Zip 250 (Ver 2) + 0034 Zip 100 Driver + 0037 Zip 750 MB + 0040 SCSI Bridge + 0042 Rev 70 GB + 0050 Zip CD 650 Writer + 0053 CDRW55292EXT CD-RW External Drive + 0056 External CD-RW Drive Enclosure + 0057 Mass Storage Device + 005d Mass Storage Device + 005f CDRW64892EXT3-C CD-RW 52x24x52x External Drive + 0060 PCMCIA PocketZip Dock + 0061 Varo PocketZip 40 MP3 Player + 006d HipZip MP3 Player + 0070 eGo Portable Hard Drive + 007c Ultra Max USB/1394 + 007d HTC42606 0G9AT00 [Iomega HDD] + 007e Mini 256MB/512MB Flash Drive [IOM2D5] + 00db FotoShow Zip 250 Driver + 0150 Mass Storage Device + 015d Super DVD Writer + 0173 Hi-Speed USB-to-IDE Bridge Controller + 0174 Hi-Speed USB-to-IDE Bridge Controller + 0176 Hi-Speed USB-to-IDE Bridge Controller + 0177 Hi-Speed USB-to-IDE Bridge Controller + 0178 Hi-Speed USB-to-IDE Bridge Controller + 0179 Hi-Speed USB-to-IDE Bridge Controller + 017a HDD + 017b HDD/1394A + 017c HDD/1394B + 0251 Optical + 0252 Optical + 0275 ST332082 0A + 0278 LDHD-UPS [Professional Desktop Hard Drive eSATA / USB2.0] + 027a LPHD250-U [Portable Hard Drive Silver Series 250 Go] + 0470 Prestige Portable Hard Drive + 047a Select Portable Hard Drive + 0571 Prestige Portable Hard Drive + 0579 eGo Portable Hard Drive + 1052 DVD+RW External Drive +059c A-Trend Technology Co., Ltd +059d Advanced Input Devices +059e Intelligent Instrumentation +059f LaCie, Ltd + 0201 StudioDrive USB2 + 0202 StudioDrive USB2 + 0203 StudioDrive USB2 + 0211 PocketDrive + 0212 PocketDrive + 0213 PocketDrive USB2 + 0323 LaCie d2 Drive USB2 + 0421 Big Disk G465 + 0525 BigDisk Extreme 500 + 0641 Mobile Hard Drive + 0828 d2 Quadra + 0829 BigDisk Extreme+ + 1004 Little Disk 20 GB + 100c Rugged Triple Interface Mobile Hard Drive + 1010 Desktop Hard Drive + 1016 Desktop Hard Drive + 1018 Desktop Hard Drive + 1019 Desktop Hard Drive + 1021 Little Disk + 1027 iamaKey V2 + 102a Rikiki Hard Drive + 103d D2 + 1049 rikiki Harddrive + 1052 P'9220 Mobile Drive + 1053 P'9230 2TB [Porsche Design Desktop Drive 2TB] + 1061 Rugged USB3-FW + 1064 Rugged 16 and 32 GB + 106b Rugged Mini HDD + 106d Porsche Design Mobile Drive + 106e Porsche Design Desktop Drive + 1094 Rugged THB + 1095 Rugged + a601 HardDrive + a602 CD R/W +05a0 Vetronix Corp. +05a1 USC Corp. +05a2 Fuji Film Microdevices Co., Ltd +05a3 ARC International + 8388 Marvell 88W8388 802.11a/b/g WLAN + 9230 Camera + 9320 Camera + 9331 Camera + 9332 Camera - 1080p + 9422 Camera + 9520 Camera +05a4 Ortek Technology, Inc. + 1000 WKB-1000S Wireless Ergo Keyboard with Touchpad + 2000 WKB-2000 Wireless Keyboard with Touchpad + 9720 Keyboard Mouse + 9722 Keyboard + 9731 MCK-600W/MCK-800USB Keyboard + 9783 Wireless Keypad + 9837 Targus Number Keypad + 9862 Targus Number Keypad (Composite Device) + 9881 IR receiver [VRC-1100 Vista MCE Remote Control] +05a5 Sampo Technology Corp. +05a6 Cisco Systems, Inc. + 0001 CVA124 Cable Voice Adapter (WDM) + 0002 CVA122 Cable Voice Adapter (WDM) + 0003 CVA124E Cable Voice Adapter (WDM) + 0004 CVA122E Cable Voice Adapter (WDM) + 0008 STA1520 Tuning Adapter + 0a00 Integrated Management Controller Hub + 0a01 Virtual Keyboard/Mouse + 0a02 Virtual Mass Storage + 0a03 Virtual Ethernet/RNDIS +05a7 Bose Corp. + 4000 Bluetooth Headset + 4001 Bluetooth Headset in DFU mode + 4002 Bluetooth Headset Series 2 + 4003 Bluetooth Headset Series 2 in DFU mode + 400d SoundLink Color II speaker in DFU mode + 40fe SoundLink Color II speaker + bc50 SoundLink Wireless Mobile speaker + bc51 SoundLink Wireless Mobile speaker in DFU mode +05a8 Spacetec IMC Corp. +05a9 OmniVision Technologies, Inc. + 0511 OV511 Webcam + 0518 OV518 Webcam + 0519 OV519 Microphone + 1550 VEHO Filmscanner + 2640 OV2640 Webcam + 2642 Integrated Webcam for Dell XPS 2010 + 2643 Monitor Webcam + 264b Monitor Webcam + 2800 SuperCAM + 4519 Webcam Classic + 7670 OV7670 Webcam + 8065 GAIA Sensor FPGA Demo Board + 8519 OV519 Webcam + a511 OV511+ Webcam + a518 D-Link DSB-C310 Webcam +05aa Utilux South China, Ltd +05ab In-System Design + 0002 Parallel Port + 0030 Storage Adapter V2 (TPP) + 0031 ATA Bridge + 0060 USB 2.0 ATA Bridge + 0061 Storage Adapter V3 (TPP-I) + 0101 Storage Adapter (TPP) + 0130 Compact Flash and Microdrive Reader (TPP) + 0200 USS725 ATA Bridge + 0201 Storage Adapter (TPP) + 0202 ATA Bridge + 0300 Portable Hard Drive (TPP) + 0301 Portable Hard Drive V2 + 0350 Portable Hard Drive (TPP) + 0351 Portable Hard Drive V2 + 081a ATA Bridge + 0cda ATA Bridge for CD-R/RW + 1001 BAYI Printer Class Support + 5700 Storage Adapter V2 (TPP) + 5701 USB Storage Adapter V2 + 5901 Smart Board (TPP) + 5a01 ATI Storage Adapter (TPP) + 5d01 DataBook Adapter (TPP) +05ac Apple, Inc. + 0201 USB Keyboard [Alps or Logitech, M2452] + 0202 Keyboard [ALPS] + 0205 Extended Keyboard [Mitsumi] + 0206 Extended Keyboard [Mitsumi] + 020b Pro Keyboard [Mitsumi, A1048/US layout] + 020c Extended Keyboard [Mitsumi] + 020d Pro Keyboard [Mitsumi, A1048/JIS layout] + 020e Internal Keyboard/Trackpad (ANSI) + 020f Internal Keyboard/Trackpad (ISO) + 0214 Internal Keyboard/Trackpad (ANSI) + 0215 Internal Keyboard/Trackpad (ISO) + 0216 Internal Keyboard/Trackpad (JIS) + 0217 Internal Keyboard/Trackpad (ANSI) + 0218 Internal Keyboard/Trackpad (ISO) + 0219 Internal Keyboard/Trackpad (JIS) + 021a Internal Keyboard/Trackpad (ANSI) + 021b Internal Keyboard/Trackpad (ISO) + 021c Internal Keyboard/Trackpad (JIS) + 021d Aluminum Mini Keyboard (ANSI) + 021e Aluminum Mini Keyboard (ISO) + 021f Aluminum Mini Keyboard (JIS) + 0220 Aluminum Keyboard (ANSI) + 0221 Aluminum Keyboard (ISO) + 0222 Aluminum Keyboard (JIS) + 0223 Internal Keyboard/Trackpad (ANSI) + 0224 Internal Keyboard/Trackpad (ISO) + 0225 Internal Keyboard/Trackpad (JIS) + 0229 Internal Keyboard/Trackpad (ANSI) + 022a Internal Keyboard/Trackpad (MacBook Pro) (ISO) + 022b Internal Keyboard/Trackpad (MacBook Pro) (JIS) + 0230 Internal Keyboard/Trackpad (MacBook Pro 4,1) (ANSI) + 0231 Internal Keyboard/Trackpad (MacBook Pro 4,1) (ISO) + 0232 Internal Keyboard/Trackpad (MacBook Pro 4,1) (JIS) + 0236 Internal Keyboard/Trackpad (ANSI) + 0237 Internal Keyboard/Trackpad (ISO) + 0238 Internal Keyboard/Trackpad (JIS) + 023f Internal Keyboard/Trackpad (ANSI) + 0240 Internal Keyboard/Trackpad (ISO) + 0241 Internal Keyboard/Trackpad (JIS) + 0242 Internal Keyboard/Trackpad (ANSI) + 0243 Internal Keyboard/Trackpad (ISO) + 0244 Internal Keyboard/Trackpad (JIS) + 0245 Internal Keyboard/Trackpad (ANSI) + 0246 Internal Keyboard/Trackpad (ISO) + 0247 Internal Keyboard/Trackpad (JIS) + 024a Internal Keyboard/Trackpad (MacBook Air) (ISO) + 024d Internal Keyboard/Trackpad (MacBook Air) (ISO) + 024f Aluminium Keyboard (ANSI) + 0250 Aluminium Keyboard (ISO) + 0252 Internal Keyboard/Trackpad (ANSI) + 0253 Internal Keyboard/Trackpad (ISO) + 0254 Internal Keyboard/Trackpad (JIS) + 0259 Internal Keyboard/Trackpad + 025a Internal Keyboard/Trackpad + 0263 Apple Internal Keyboard / Trackpad (MacBook Retina) + 0267 Magic Keyboard A1644 + 0269 Magic Mouse 2 (Lightning connector) + 0273 Internal Keyboard/Trackpad (ISO) + 0301 USB Mouse [Mitsumi, M4848] + 0302 Optical Mouse [Fujitsu] + 0304 Mighty Mouse [Mitsumi, M1152] + 0306 Optical USB Mouse [Fujitsu] + 030a Internal Trackpad + 030b Internal Trackpad + 030d Magic Mouse + 030e MC380Z/A [Magic Trackpad] + 1000 Bluetooth HCI MacBookPro (HID mode) + 1001 Keyboard Hub [ALPS] + 1002 Extended Keyboard Hub [Mitsumi] + 1003 Hub in Pro Keyboard [Mitsumi, A1048] + 1006 Hub in Aluminum Keyboard + 1008 Mini DisplayPort to Dual-Link DVI Adapter + 1101 Speakers + 1105 Audio in LED Cinema Display + 1107 Thunderbolt Display Audio + 1112 FaceTime HD Camera (Display) + 1201 3G iPod + 1202 iPod 2G + 1203 iPod 4.Gen Grayscale 40G + 1204 iPod [Photo] + 1205 iPod Mini 1.Gen/2.Gen + 1206 iPod '06' + 1207 iPod '07' + 1208 iPod '08' + 1209 iPod Video + 120a iPod Nano + 1223 iPod Classic/Nano 3.Gen (DFU mode) + 1224 iPod Nano 3.Gen (DFU mode) + 1225 iPod Nano 4.Gen (DFU mode) + 1227 Mobile Device (DFU Mode) + 1231 iPod Nano 5.Gen (DFU mode) + 1240 iPod Nano 2.Gen (DFU mode) + 1242 iPod Nano 3.Gen (WTF mode) + 1243 iPod Nano 4.Gen (WTF mode) + 1245 iPod Classic 3.Gen (WTF mode) + 1246 iPod Nano 5.Gen (WTF mode) + 1255 iPod Nano 4.Gen (DFU mode) + 1260 iPod Nano 2.Gen + 1261 iPod Classic + 1262 iPod Nano 3.Gen + 1263 iPod Nano 4.Gen + 1265 iPod Nano 5.Gen + 1266 iPod Nano 6.Gen + 1267 iPod Nano 7.Gen + 1281 Apple Mobile Device [Recovery Mode] + 1290 iPhone + 1291 iPod Touch 1.Gen + 1292 iPhone 3G + 1293 iPod Touch 2.Gen + 1294 iPhone 3GS + 1296 iPod Touch 3.Gen (8GB) + 1297 iPhone 4 + 1299 iPod Touch 3.Gen + 129a iPad + 129c iPhone 4(CDMA) + 129e iPod Touch 4.Gen + 129f iPad 2 + 12a0 iPhone 4S + 12a2 iPad 2 (3G; 64GB) + 12a3 iPad 2 (CDMA) + 12a4 iPad 3 (wifi) + 12a5 iPad 3 (CDMA) + 12a6 iPad 3 (3G, 16 GB) + 12a8 iPhone 5/5C/5S/6/SE + 12a9 iPad 2 + 12aa iPod Touch 5.Gen [A1421] + 12ab iPad 4/Mini1 + 1300 iPod Shuffle + 1301 iPod Shuffle 2.Gen + 1302 iPod Shuffle 3.Gen + 1303 iPod Shuffle 4.Gen + 1392 Apple Watch charger + 1393 AirPods case + 1395 Smart Battery Case [iPhone 6] + 1398 Smart Battery Case + 1401 Modem + 1402 Ethernet Adapter [A1277] + 1500 SuperDrive [A1379] + 8005 OHCI Root Hub Simulation + 8006 EHCI Root Hub Simulation + 8007 XHCI Root Hub USB 2.0 Simulation + 8202 HCF V.90 Data/Fax Modem + 8203 Bluetooth HCI + 8204 Built-in Bluetooth 2.0+EDR HCI + 8205 Bluetooth HCI + 8206 Bluetooth HCI + 8207 Built-in Bluetooth + 820a Bluetooth HID Keyboard + 820b Bluetooth HID Mouse + 820f Bluetooth HCI + 8213 Bluetooth Host Controller + 8215 Built-in Bluetooth 2.0+EDR HCI + 8216 Bluetooth USB Host Controller + 8217 Bluetooth USB Host Controller + 8218 Bluetooth Host Controller + 821a Bluetooth Host Controller + 821f Built-in Bluetooth 2.0+EDR HCI + 8233 iBridge + 8240 Built-in IR Receiver + 8241 Built-in IR Receiver + 8242 Built-in IR Receiver + 8281 Bluetooth Host Controller + 8286 Bluetooth Host Controller + 8289 Bluetooth Host Controller + 828c Bluetooth Host Controller + 8290 Bluetooth Host Controller + 8300 Built-in iSight (no firmware loaded) + 8403 Internal Memory Card Reader + 8404 Internal Memory Card Reader + 8406 Internal Memory Card Reader + 8501 Built-in iSight [Micron] + 8502 Built-in iSight + 8505 Built-in iSight + 8507 Built-in iSight + 8508 iSight in LED Cinema Display + 8509 FaceTime HD Camera + 850a FaceTime Camera + 8510 FaceTime HD Camera (Built-in) + 8511 FaceTime HD Camera (Built-in) + 8600 iBridge + 911c Hub in A1082 [Cinema HD Display 23"] + 9127 Hub in Thunderbolt Display + 912f Hub in 30" Cinema Display + 9210 Studio Display 21" + 9215 Studio Display 15" + 9217 Studio Display 17" + 9218 Cinema Display 23" + 9219 Cinema Display 20" + 921c A1082 [Cinema HD Display 23"] + 921e Cinema Display 24" + 9221 30" Cinema Display + 9226 LED Cinema Display + 9227 Thunderbolt Display + 9232 Cinema HD Display 30" + ffff Bluetooth in DFU mode - Driver +05ad Y.C. Cable U.S.A., Inc. +05ae Synopsys, Inc. +05af Jing-Mold Enterprise Co., Ltd + 0806 HP SK806A Keyboard + 0809 Wireless Keyboard and Mouse + 0821 IDE to + 3062 Cordless Keyboard + 9167 KB 9151B - 678 + 9267 KB 9251B - 678 Mouse +05b0 Fountain Technologies, Inc. +05b1 First International Computer, Inc. + 1389 Bluetooth Wireless Adapter +05b4 LG Semicon Co., Ltd + 4857 M-Any DAH-210 + 6001 HYUNDAI GDS30C6001 SSFDC / MMC I/F Controller +05b5 Dialogic Corp. +05b6 Proxima Corp. +05b7 Medianix Semiconductor, Inc. +05b8 SYSGRATION + 3002 Scroll Mouse + 3126 APT-905 Wireless presenter + 3223 ISY Wireless Presenter +05b9 Philips Research Laboratories +05ba DigitalPersona, Inc. + 0007 Fingerprint Reader + 0008 Fingerprint Reader + 000a Fingerprint Reader +05bb Grey Cell Systems +05bc 3G Green Green Globe Co., Ltd + 0004 Trackball +05bd RAFI GmbH & Co. KG +05be Tyco Electronics (Raychem) +05bf S & S Research +05c0 Keil Software +05c1 Kawasaki Microelectronics, Inc. +05c2 Media Phonics (Suisse) S.A. +05c5 Digi International, Inc. + 0002 AccelePort USB 2 + 0004 AccelePort USB 4 + 0008 AccelePort USB 8 +05c6 Qualcomm, Inc. + 0114 Select RW-200 CDMA Wireless Modem + 0a02 Jolla Device Developer Mode + 0a07 Jolla Device MTP + 0afe Jolla Device Charging Only + 1000 Mass Storage Device + 3100 CDMA Wireless Modem/Phone + 3196 CDMA Wireless Modem + 3197 CDMA Wireless Modem/Phone + 6000 Siemens SG75 + 6503 AnyData APE-540H + 6613 Onda H600/N501HS ZTE MF330 + 6764 A0001 Phone [OnePlus One] + 9000 SIMCom SIM5218 modem + 9001 Gobi Wireless Modem + 9002 Gobi Wireless Modem + 9003 Quectel UC20 + 9008 Gobi Wireless Modem (QDL mode) + 9018 Qualcomm HSUSB Device + 9025 HSUSB Device + 9090 Quectel UC15 + 9091 Intex Aqua Fish & Jolla C Diagnostic Mode + 9092 Nokia 8110 4G + 90ba Audio 1.0 device + 90bb Snapdragon interface (MIDI + ADB) + 90dc Fairphone 2 (Charging & ADB) + 9201 Gobi Wireless Modem (QDL mode) + 9202 Gobi Wireless Modem + 9203 Gobi Wireless Modem + 9205 Gobi 2000 + 9211 Acer Gobi Wireless Modem (QDL mode) + 9212 Acer Gobi Wireless Modem + 9214 Acer Gobi 2000 Wireless Modem (QDL mode) + 9215 Quectel EC20 LTE modem / Acer Gobi 2000 Wireless Modem + 9221 Gobi Wireless Modem (QDL mode) + 9222 Gobi Wireless Modem + 9224 Sony Gobi 2000 Wireless Modem (QDL mode) + 9225 Sony Gobi 2000 Wireless Modem + 9231 Gobi Wireless Modem (QDL mode) + 9234 Top Global Gobi 2000 Wireless Modem (QDL mode) + 9235 Top Global Gobi 2000 Wireless Modem + 9244 Samsung Gobi 2000 Wireless Modem (QDL mode) + 9245 Samsung Gobi 2000 Wireless Modem + 9264 Asus Gobi 2000 Wireless Modem (QDL mode) + 9265 Asus Gobi 2000 Wireless Modem + 9274 iRex Technologies Gobi 2000 Wireless Modem (QDL mode) + 9275 iRex Technologies Gobi 2000 Wireless Modem + f000 TA-1004 [Nokia 8] + f003 Nokia 8110 4G +05c7 Qtronix Corp. + 0113 PC Line Mouse + 1001 Lynx Mouse + 2001 Keyboard + 2011 SCorpius Keyboard + 6001 Ten-Keypad +05c8 Cheng Uei Precision Industry Co., Ltd (Foxlink) + 0103 FO13FF-65 PC-CAM + 010b Webcam (UVC) + 021a HP Webcam + 0233 HP Webcam + 0318 Webcam + 0361 SunplusIT INC. HP Truevision HD Webcam + 036e Webcam + 0374 HP EliteBook integrated HD Webcam + 038e HP Wide Vision HD integrated webcam + 03a1 XiaoMi Webcam + 03b1 Webcam + 03bc HP Wide Vision HD Integrated Webcam + 03cb HP Wide Vision HD Integrated Webcam + 0403 Webcam + 041b HP 2.0MP High Definition Webcam +05c9 Semtech Corp. +05ca Ricoh Co., Ltd + 0101 RDC-5300 Camera + 0325 Caplio GX (ptp) + 032d Caplio GX 8 (ptp) + 032f Caplio R3 (ptp) + 03a1 IS200e + 0403 Printing Support + 0405 Type 101 + 0406 Type 102 + 0437 Aficio SP 3510SF + 044e SP C250SF (multifunction device: printer, scanner, fax) + 1803 V5 camera [R5U870] + 1810 Pavilion Webcam [R5U870] + 1812 Pavilion Webcam + 1814 HD Webcam + 1815 Dell Laptop Integrated Webcam + 1820 Integrated Webcam + 1830 Visual Communication Camera VGP-VCC2 [R5U870] + 1832 Visual Communication Camera VGP-VCC3 [R5U870] + 1833 Visual Communication Camera VGP-VCC2 [R5U870] + 1834 Visual Communication Camera VGP-VCC2 [R5U870] + 1835 Visual Communication Camera VGP-VCC5 [R5U870] + 1836 Visual Communication Camera VGP-VCC4 [R5U870] + 1837 Visual Communication Camera VGP-VCC4 [R5U870] + 1839 Visual Communication Camera VGP-VCC6 [R5U870] + 183a Visual Communication Camera VGP-VCC7 [R5U870] + 183b Visual Communication Camera VGP-VCC8 [R5U870] + 183d Sony Vaio Integrated Webcam + 183e Visual Communication Camera VGP-VCC9 [R5U870] + 183f Sony Visual Communication Camera Integrated Webcam + 1841 Fujitsu F01/ Lifebook U810 [R5U870] + 1870 Webcam 1000 + 1880 R5U880 + 18b0 Sony Vaio Integrated Webcam + 18b1 Sony Vaio Integrated Webcam + 18b3 Sony Vaio Integrated Webcam + 18b5 Sony Vaio Integrated Webcam + 2201 RDC-7 Camera + 2202 Caplio RR30 + 2203 Caplio 300G + 2204 Caplio G3 + 2205 Caplio RR30 / Medion MD 6126 Camera + 2206 Konica DG-3Z + 2207 Caplio Pro G3 + 2208 Caplio G4 + 2209 Caplio 400G wide + 220a KONICA MINOLTA DG-4Wide + 220b Caplio RX + 220c Caplio GX + 220d Caplio R1/RZ1 + 220e Sea & Sea 5000G + 220f Rollei dr5 / Rollei dr5 (PTP mode) + 2211 Caplio R1S + 2212 Caplio R1v Camera + 2213 Caplio R2 + 2214 Caplio GX 8 + 2215 DSC 725 + 2216 Caplio R3 + 2222 RDC-i500 +05cb PowerVision Technologies, Inc. + 1483 PV8630 interface (scanners, webcams) +05cc ELSA AG + 2100 MicroLink ISDN Office + 2219 MicroLink ISDN + 2265 MicroLink 56k + 2267 MicroLink 56k (V.250) + 2280 MicroLink 56k Fun + 3000 Micolink USB2Ethernet [pegasus] + 3100 AirLancer USB-11 + 3363 MicroLink ADSL Fun +05cd Silicom, Ltd +05ce sci-worx GmbH +05cf Sung Forn Co., Ltd +05d0 GE Medical Systems Lunar +05d1 Brainboxes, Ltd + 0003 Bluetooth Adapter BL-554 +05d2 Wave Systems Corp. +05d3 Tohoku Ricoh Co., Ltd +05d5 Super Gate Technology Co., Ltd +05d6 Philips Semiconductors, CICT +05d7 Thomas & Betts Corp. + 0099 10Mbps Ethernet [klsi] +05d8 Ultima Electronics Corp. + 4001 Artec Ultima 2000 + 4002 Artec Ultima 2000 (GT6801 based)/Lifetec LT9385/ScanMagic 1200 UB Plus Scanner + 4003 Artec E+ 48U + 4004 Artec E+ Pro + 4005 MEM48U + 4006 TRUST EASY WEBSCAN 19200 + 4007 TRUST 240H EASY WEBSCAN GOLD + 4008 Trust Easy Webscan 19200 + 4009 Umax Astraslim + 4013 IT Scan 1200 + 8105 Artec T1 USB TVBOX (cold) + 8106 Artec T1 USB TVBOX (warm) + 8107 Artec T1 USB TVBOX with AN2235 (cold) + 8108 Artec T1 USB TVBOX with AN2235 (warm) + 8109 Artec T1 USB2.0 TVBOX (cold +05d9 Axiohm Transaction Solutions + a225 A225 Printer + a758 A758 Printer + a794 A794 Printer +05da Microtek International, Inc. + 0091 ScanMaker X6u + 0093 ScanMaker V6USL + 0094 Phantom 336CX/C3 + 0099 ScanMaker X6/X6U + 009a Phantom C6 + 00a0 Phantom 336CX/C3 (#2) + 00a3 ScanMaker V6USL + 00ac ScanMaker V6UL + 00b6 ScanMaker V6UPL + 00ef ScanMaker V6UPL + 1006 Jenoptik JD350 entrance + 1011 NHJ Che-ez! Kiss Digital Camera + 1018 Digital Dream Enigma 1.3 + 1020 Digital Dream l'espion xtra + 1025 Take-it Still Camera Device + 1026 Take-it + 1043 Take-It 1300 DSC Bulk Driver + 1045 Take-it D1 + 1047 Take-it Camera Composite Device + 1048 Take-it Q3 + 1049 3M Still Camera Device + 1051 Camcorder Series + 1052 Mass Storage Device + 1053 Take-it DV Composite Device + 1054 Mass Storage Device + 1055 Digital Camera Series(536) + 1056 Mass Storage Device + 1057 Take-it DSC Camera Device(536) + 1058 Mass Storage Device + 1059 Camcorder DSC Series + 1060 Microtek Take-it MV500 + 2007 ArtixScan DI 1210 + 200c 1394_USB2 Scanner + 200e ArtixScan DI 810 + 2017 UF ICE Scanner + 201c 4800 Scanner + 201d ArtixScan DI 1610 + 201f 4800 Scanner-ICE + 202e ArtixScan DI 2020 + 208b ScanMaker 6800 + 208f ArtixScan DI 2010 + 209e ScanMaker 4700LP + 20a7 ScanMaker 5600 + 20b0 ScanMaker X12USL + 20b1 ScanMaker 8700 + 20b4 ScanMaker 4700 + 20bd ScanMaker 5700 + 20c9 ScanMaker 6700 + 20d2 Microtek ArtixScan 1800f + 20d6 PS4000 + 20de ScanMaker 9800XL + 20e0 ScanMaker 9700XL + 20ed ScanMaker 4700 + 20ee Micortek ScanMaker X12USL + 2838 RT2832U + 3008 Scanner + 300a 4800 ICE Scanner + 300b 4800 Scanner + 300f MiniScan C5 + 3020 4800dpi Scanner + 3021 1200dpi Scanner + 3022 Scanner 4800dpi + 3023 USB1200II Scanner + 3025 ScanMaker S460 + 30c1 USB600 Scanner + 30ce ScanMaker 3800 + 30cf ScanMaker 4800 + 30d4 USB1200 Scanner + 30d8 Scanner + 30d9 USB2400 Scanner + 30e4 ScanMaker 4100 + 30e5 USB3200 Scanner + 30e6 ScanMaker i320 + 40b3 ScanMaker 3600 + 40b8 ScanMaker 3700 + 40c7 ScanMaker 4600 + 40ca ScanMaker 3600 + 40cb ScanMaker 3700 + 40dd ScanMaker 3750i + 40ff ScanMaker 3600 + 5003 Goya + 5013 3200 Scanner + 6072 XT-3500 A4 HD Scanner + 80a3 ScanMaker V6USL (#2) + 80ac ScanMaker V6UL/SpicyU +05db Sun Corp. (Suntac?) + 0003 SUNTAC U-Cable type D2 + 0005 SUNTAC U-Cable type P1 + 0009 SUNTAC Slipper U + 000a SUNTAC Ir-Trinity + 000b SUNTAC U-Cable type A3 + 0011 SUNTAC U-Cable type A4 +05dc Lexar Media, Inc. + 0001 jumpSHOT CompactFlash Reader + 0002 JumpShot + 0003 JumpShot + 0080 Jumpdrive Secure 64MB + 0081 RBC Compact Flash Drive + 00a7 JumpDrive Impact + 0100 JumpDrive PRO + 0200 JumpDrive 2.0 Pro + 0300 Jumpdrive Geysr + 0301 JumpDrive Classic + 0302 JD Micro + 0303 JD Micro Pro + 0304 JD Secure II + 0310 JumpDrive + 0311 JumpDrive Classic + 0312 JD Micro + 0313 JD Micro Pro + 0320 JumpDrive + 0321 JD Micro + 0322 JD Micro Pro + 0323 UFC + 0330 JumpDrive Expression + 0340 JumpDrive TAD + 0350 Express Card + 0400 UFDC + 0401 UFDC + 0403 Locked B Device + 0405 Locked C Device + 0407 Locked D Device + 0409 Locked E Device + 040b Locked F Device + 040d Locked G Device + 040f Locked H Device + 0410 JumpDrive + 0411 JumpDrive + 0413 Locked J Device + 0415 Locked K Device + 0417 Locked L Device + 0419 Locked M Device + 041b Locked N Device + 041d Locked O Device + 041f Locked P Device + 0420 JumpDrive + 0421 JumpDrive + 0423 Locked R Device + 0425 Locked S Device + 0427 Locked T Device + 0429 Locked U Device + 042b Locked V Device + 042d Locked W Device + 042f Locked X Device + 0431 Locked Y Device + 0433 Locked Z Device + 4d02 MP3 Player + 4d12 MP3 Player + 4d30 MP3 Player + a201 JumpDrive S70 4GB + a209 JumpDrive S70 + a300 JumpDrive2 + a400 JumpDrive trade; Pro 40-501 + a410 JumpDrive 128MB/256MB + a411 JumpDrive Traveler + a420 JumpDrive Pro + a421 JumpDrive Pro II + a422 JumpDrive Micro Pro + a430 JumpDrive Secure + a431 JumpDrive Secure II + a432 JumpDrive Classic + a440 JumpDrive Lightning + a450 JumpDrive TouchGuard + a460 JD Mercury + a501 JumpDrive Classic + a510 JumpDrive Sport + a530 JumpDrive Expression + a531 JumpDrive Secure II + a560 JumpDrive FireFly + a701 JumpDrive FireFly + a731 JumpDrive FireFly + a762 JumpDrive FireFly + a768 JumpDrive Retrax + a790 JumpDrive 2GB + a811 16GB Gizmo! + a813 16gB flash thumb drive + a815 JumpDrive V10 + a81d LJDTT16G [JumpDrive 16GB] + a833 JumpDrive S23 64GB + a838 JumpDrive Tough + b002 USB CF Reader + b018 Multi-Card Reader + b047 SDHC Reader [RW047-7000] + b051 microSD RDR UHS-I Card Reader [LRWM03U-7000] + ba02 Workflow CFR1 + ba0a Workflow DD512 + c753 JumpDrive TwistTurn + c75c JumpDrive V10 +05dd Delta Electronics, Inc. + a011 HID UPS Battery + ff31 AWU-120 + ff32 FriendlyNET AeroLAN AL2011 + ff35 PCW 100 - Wireless 802.11b Adapter + ff91 2Wire PC Port Phoneline 10Mbps Adapter +05df Silicon Vision, Inc. +05e0 Symbol Technologies + 0700 Bar Code Scanner (CS1504) + 0800 Spectrum24 Wireless LAN Adapter + 1200 Bar Code Scanner + 1701 Bar Code Scanner (CDC) + 1900 SNAPI Imaging Device + 1a00 CS4070 Barcode Scanner + 2000 MC3090 Rugged Mobile Computer + 200d MC70 Rugged Mobile Computer +05e1 Syntek Semiconductor Co., Ltd + 0100 802.11g + Bluetooth Wireless Adapter + 0408 STK1160 Video Capture Device + 0500 DC-112X Webcam + 0501 DC-1125 Webcam + 0890 STK011 Camera + 0892 STK013 Camera + 0895 STK016 Camera + 0896 STK017 Camera + 2010 ARCTIC Sound P261 Headphones +05e2 ElecVision, Inc. +05e3 Genesys Logic, Inc. + 000a Keyboard with PS/2 Port + 000b Mouse + 0100 Nintendo Game Boy Advance SP + 0120 Pacific Image Electronics PrimeFilm 1800u slide/negative scanner + 0131 CF/SM Reader/Writer + 0142 Multiple Slides Scanner-3600 + 0143 Multiple Frames Film Scanner-36series + 0145 Reflecta CrystalScan 7200 Photo-Scanner + 0180 Plustek Scanner + 0182 Wize Media 1000 + 0189 ScanJet 4600 series + 018a Xerox 6400 + 0300 GLUSB98PT Parallel Port + 0301 USB2LPT Cable Release2 + 0406 Hub + 0501 GL620USB Host-Host interface + 0502 GL620USB-A GeneLink USB-USB Bridge + 0503 Webcam + 0504 HID Keyboard Filter + 0510 Camera + 0604 USB 1.1 Hub + 0605 Hub + 0606 USB 2.0 Hub / D-Link DUB-H4 USB 2.0 Hub + 0607 Logitech G110 Hub + 0608 Hub + 0610 Hub + 0612 Hub + 0616 hub + 0618 Hub + 0620 GL3523 Hub + 0626 Hub + 0660 USB 2.0 Hub + 0700 SIIG US2256 CompactFlash Card Reader + 0701 USB 2.0 IDE Adapter + 0702 USB 2.0 IDE Adapter [GL811E] + 0703 Card Reader + 0704 Card Reader + 0705 Card Reader + 0706 Card Reader + 0707 Card Reader + 0708 Card Reader + 0709 Card Reader + 070a Pen Flash + 070b DMHS1B Rev 3 DFU Adapter + 070e USB 2.0 Card Reader + 070f Pen Flash + 0710 USB 2.0 33-in-1 Card Reader + 0711 Card Reader + 0712 Delkin Mass Storage Device + 0715 USB 2.0 microSD Reader + 0716 Multislot Card Reader/Writer + 0717 All-in-1 Card Reader + 0718 IDE/SATA Adapter + 0719 SATA adapter + 0722 SD/MMC card reader + 0723 GL827L SD/MMC/MS Flash Card Reader + 0726 SD Card Reader + 0727 microSD Reader/Writer + 0731 GL3310 SATA 3Gb/s Bridge Controller + 0732 All-in-One Cardreader + 0736 Colour arc SD Card Reader [PISEN] + 0738 Card reader + 0741 microSD Card Reader + 0743 SDXC and microSDXC CardReader + 0745 Logilink CR0012 + 0748 All-in-One Cardreader + 0749 SD Card Reader and Writer + 0751 microSD Card Reader + 0752 micros Reader + 0760 USB 2.0 Card Reader/Writer + 0761 Genesys Mass Storage Device + 0780 USBFS DFU Adapter + 07a0 Pen Flash + 0880 Wasp (SL-6612) + 0927 Card Reader + 1205 Afilias Optical Mouse H3003 / Trust Optical USB MultiColour Mouse MI-2330 + a700 Pen Flash + f102 VX7012 TV Box + f103 VX7012 TV Box + f104 VX7012 TV Box + f12a Digital Microscope + fd21 3M TL20 Temperature Logger + fe00 Razer Mouse +05e4 Red Wing Corp. +05e5 Fuji Electric Co., Ltd +05e6 Keithley Instruments +05e8 ICC, Inc. +05e9 Kawasaki LSI + 0008 KL5KUSB101B Ethernet [klsi] + 0009 Sony 10Mbps Ethernet [pegasus] + 000c USB-to-RS-232 + 000d USB-to-RS-232 + 0014 RS-232 J104 + 0040 Ethernet Adapter + 2008 Ethernet Adapter +05eb FFC, Ltd +05ec COM21, Inc. +05ee Cytechinfo Inc. +05ef AVB, Inc. [anko?] + 020a Top Shot Pegasus Joystick + 8884 Mag Turbo Force Wheel + 8888 Top Shot Force Feedback Racing Wheel +05f0 Canopus Co., Ltd + 0101 DA-Port DAC +05f1 Compass Communications +05f2 Dexin Corp., Ltd + 0010 AQ Mouse +05f3 PI Engineering, Inc. + 0007 Kinesis Advantage PRO MPC/USB Keyboard + 0081 Kinesis Integrated Hub + 00ff VEC Footpedal + 0203 Y-mouse Keyboard & Mouse Adapter + 020b PS2 Adapter + 0232 X-Keys Switch Interface, Programming Mode + 0261 X-Keys Switch Interface, SPLAT Mode + 0264 X-Keys Switch Interface, Composite Mode +05f5 Unixtar Technology, Inc. +05f6 AOC International +05f7 RFC Distribution(s) PTE, Ltd +05f9 PSC Scanning, Inc. + 1104 Magellan 2200VS + 1206 Gryphon series (OEM mode) + 120c Gryphon GD4430-BK + 2202 Point of Sale Handheld Scanner + 2206 Gryphon series (keyboard emulation mode) + 220c Datalogic Gryphon GD4430 + 2601 Datalogic Magellan 1000i Barcode Scanner + 2602 Datalogic Magellan 1100i Barcode Scanner + 4204 Gryphon series (RS-232 emulation mode) + 5204 Datalogic Gryphon GFS4170 (config mode) +05fa Siemens Telecommunications Systems, Ltd + 3301 Keyboard with PS/2 Mouse Port + 3302 Keyboard + 3303 Keyboard with PS/2 Mouse Port +05fc Harman + 0001 Soundcraft Si Multi Digital Card + 0010 Soundcraft Si MADI combo card + 0021 Soundcraft Signature 12 MTK + 7849 Harman/Kardon SoundSticks +05fd InterAct, Inc. + 0239 SV-239 HammerHead Digital + 0251 Raider Pro + 0253 ProPad 8 Digital + 0286 SV-286 Cyclone Digital + 1007 Mad Catz Controller + 107a PowerPad Pro X-Box pad + 262a 3dfx HammerHead FX + 262f HammerHead Fx + daae Game Shark + dbae Datel XBoxMC +05fe Chic Technology Corp. + 0001 Mouse + 0003 Cypress USB Mouse + 0005 Viewmaster 4D Browser Mouse + 0007 Twinhead Mouse + 0009 Inland Pro 4500/5000 Mouse + 0011 Browser Mouse + 0014 Gamepad + 1010 Optical Wireless + 2001 Microsoft Wireless Receiver 700 + 3030 Controller + 3031 Controller +05ff LeCroy Corp. +0600 Barco Display Systems +0601 Jazz Hipster Corp. + 0003 Internet Security Co., Ltd. SecureKey +0602 Vista Imaging, Inc. + 1001 ViCam Webcam +0603 Novatek Microelectronics Corp. + 0002 Sino Wealth keyboard/mouse 2.4 GHz receiver + 00f1 Keyboard (Labtec Ultra Flat Keyboard) + 00f2 Keyboard (Labtec Ultra Flat Keyboard) + 1002 Mobius actioncam (webcam mode) + 6871 Mouse + 8611 NTK96550 based camera +0604 Jean Co., Ltd +0605 Anchor C&C Co., Ltd +0606 Royal Information Electronics Co., Ltd +0607 Bridge Information Co., Ltd +0608 Genrad Ads +0609 SMK Manufacturing, Inc. + 031d eHome Infrared Receiver + 0322 eHome Infrared Receiver + 0334 eHome Infrared Receiver + ff12 SMK Bluetooth Device +060a Worthington Data Solutions, Inc. +060b Solid Year + 0001 MacAlly Keyboard + 0230 KSK-8003 UX Keyboard + 0540 DeltaCo TB-106U Keyboard + 1006 Japanese Keyboard - 260U + 2101 Keyboard + 2231 KSK-6001 UELX Keyboard + 2270 Gigabyte K8100 Aivia Gaming Keyboard + 500a Cougar 500k Gaming Keyboard + 5253 Thermaltake MEKA G-Unit Gaming Keyboard + 5811 ACK-571U Wireless Keyboard + 5903 Japanese Keyboard - 595U + 6001 SolidTek USB 2p HUB + 6002 SolidTek USB Keyboard + 6003 Japanese Keyboard - 600HM + 6231 Thermaltake eSPORTS Meka Keyboard + 8007 P-W1G1F12 VER:1 [Macally MegaCam] + a001 Maxwell Compact Pc PM3 +060c EEH Datalink GmbH +060d Auctor Corp. +060e Transmonde Technologies, Inc. +060f Joinsoon Electronics Mfg. Co., Ltd +0610 Costar Electronics, Inc. +0611 Totoku Electric Co., Ltd +0613 TransAct Technologies, Inc. +0614 Bio-Rad Laboratories +0615 Quabbin Wire & Cable Co., Inc. +0616 Future Techno Designs PVT, Ltd +0617 Swiss Federal Insitute of Technology + 000a Thymio-II + 000c Thymio-II Wireless +0618 MacAlly + 0101 Mouse +0619 Seiko Instruments, Inc. + 0101 SLP-100 Driver + 0102 SLP-200 Driver + 0103 SLP-100N Driver + 0104 SLP-200N Driver + 0105 SLP-240 Driver + 0501 SLP-440 Driver + 0502 SLP-450 Driver +061a Veridicom International, Inc. + 0110 5thSense Fingerprint Sensor + 0200 FPS200 Fingerprint Sensor + 8200 VKI-A Fingerprint Sensor/Flash Storage (dumb) + 9200 VKI-B Fingerprint Sensor/Flash Storage (smart) +061b Promptus Communications, Inc. +061c Act Labs, Ltd +061d Quatech, Inc. + c020 SSU-100 +061e Nissei Electric Co. + 0001 nissei 128DE-USB - + 0010 nissei 128DE-PNA - +0620 Alaris, Inc. + 0004 QuickVideo weeCam + 0007 QuickVideo weeCam + 000a QuickVideo weeCam + 000b QuickVideo weeCam +0621 ODU-Steckverbindungssysteme GmbH & Co. KG +0622 Iotech, Inc. +0623 Littelfuse, Inc. +0624 Avocent Corp. + 0013 SC Secure KVM + 0248 Virtual Hub + 0249 Virtual Keyboard/Mouse + 0251 Virtual Mass Storage + 0252 Virtual SD card reader + 0294 Dell 03R874 KVM dongle + 0402 Cisco Virtual Keyboard and Mouse + 0403 Cisco Virtual Mass Storage + 1774 Cybex SC985 +0625 TiMedia Technology Co., Ltd +0626 Nippon Systems Development Co., Ltd +0627 Adomax Technology Co., Ltd +0628 Tasking Software, Inc. +0629 Zida Technologies, Ltd +062a MosArt Semiconductor Corp. + 0000 Optical mouse + 0001 Notebook Optical Mouse + 0020 Logic3 Gamepad + 0033 Competition Pro Steering Wheel + 0102 Wireless Keyboard/Mouse Combo [MK1152WC] + 0201 Defender Office Keyboard (K7310) S Zodiak KM-9010 + 0252 Emerge Uni-retractable Laser Mouse + 2410 Wireless PS3 gamepad + 3286 Nano Receiver [Sandstrom Laser Mouse SMWLL11] + 4101 Wireless Keyboard/Mouse + 4102 Wireless Mouse + 4106 Wireless Mouse 2.4G + 4c01 2,4Ghz Wireless Transceiver [for Delux M618 Plus Wireless Vertical Mouse] + 6301 Trust Wireless Optical Mouse MI-4150K + 9003 VoIP Conference Hub (A16GH) + 9004 USR9602 USB Internet Mini Phone +062b Greatlink Electronics Taiwan, Ltd +062c Institute for Information Industry +062d Taiwan Tai-Hao Enterprises Co., Ltd +062e Mainsuper Enterprises Co., Ltd +062f Sin Sheng Terminal & Machine, Inc. +0631 JUJO Electronics Corp. +0633 Cyrix Corp. +0634 Micron Technology, Inc. + 0655 Embedded Mass Storage Drive [RealSSD] +0635 Methode Electronics, Inc. +0636 Sierra Imaging, Inc. + 0003 Vivicam 35Xx +0638 Avision, Inc. + 0268 iVina 1200U Scanner + 026a Minolta Dimage Scan Dual II AF-2820U (2886) + 0a10 iVina FB1600/UMAX Astra 4500 + 0a13 AV600U + 0a15 Konica Minolta SC-110 + 0a16 Konica Minolta SC-215 + 0a2a AV220 C2 + 0a30 UMAX Astra 6700 Scanner + 0a41 Avision AM3000/MF3000 Series + 0f01 fi-4010CU +# typo? + 4004 Minolta Dimage Scan Elite II AF-2920 (2888) +0639 Chrontel, Inc. +063a Techwin Corp. +063b Taugagreining HF +063c Yamaichi Electronics Co., Ltd (Sakura) +063d Fong Kai Industrial Co., Ltd +063e RealMedia Technology, Inc. +063f New Technology Cable, Ltd +0640 Hitex Development Tools + 0026 LPC-Stick +0641 Woods Industries, Inc. +0642 VIA Medical Corp. +0644 TEAC Corp. + 0000 Floppy + 0200 All-In-One Multi-Card Reader CA200/B/S + 1000 CD-ROM Drive + 800d TASCAM Portastudio DP-01FX + 800e TASCAM US-122L + 801d TASCAM DR-100 + 8021 TASCAM US-122mkII + d001 CD-R/RW Unit + d002 CD-R/RW Unit + d010 CD-RW/DVD Unit +0645 Who? Vision Systems, Inc. +0646 UMAX +0647 Acton Research Corp. + 0100 ARC SpectraPro UV/VIS/IR Monochromator/Spectrograph + 0101 ARC AM-VM Mono Airpath/Vacuum Monochromator/Spectrograph + 0102 ARC Inspectrum Mono + 0103 ARC Filterwheel + 03e9 Inspectrum 128x1024 F VIS Spectrograph + 03ea Inspectrum 256x1024 F VIS Spectrograph + 03eb Inspectrum 128x1024 B VIS Spectrograph + 03ec Inspectrum 256x1024 B VIS Spectrograph +0648 Inside Out Networks +0649 Weli Science Co., Ltd +064b Analog Devices, Inc. (White Mountain DSP) + 0165 Blackfin 535 [ADZS HPUSB ICE] +064c Ji-Haw Industrial Co., Ltd +064d TriTech Microelectronics, Ltd +064e Suyin Corp. + 2100 Sony Visual Communication Camera + 3410 RGBIR Camera + 9700 Asus Integrated Webcam + a100 Acer OrbiCam + a101 Acer CrystalEye Webcam + a102 Acer/Lenovo Webcam [CN0316] + a103 Acer/HP Integrated Webcam [CN0314] + a110 HP Webcam + a114 Lemote Webcam + a116 UVC 1.3MPixel WebCam + a127 HP Integrated Webcam + a136 Asus Integrated Webcam [CN031B] + a219 1.3M WebCam (notebook emachines E730, Acer sub-brand) + c107 HP webcam [dv6-1190en] + c335 HP TrueVision HD + d101 Acer CrystalEye Webcam + d213 UVC HD Webcam + d217 HP TrueVision HD + e201 Lenovo Integrated Webcam + e203 Lenovo Integrated Webcam + e258 HP TrueVision HD Integrated Webcam + e263 HP TrueVision HD Integrated Webcam + f102 Lenovo Integrated Webcam [R5U877] + f103 Lenovo Integrated Webcam [R5U877] + f207 Lenovo EasyCamera Integrated Webcam + f209 HP Webcam + f300 UVC 0.3M Webcam +064f WIBU-Systems AG + 03e9 CmStick (MSD, article no. 1001-xx-xxx) + 03f2 CmStick/M (MSD, article no. 1010-xx-xxx) + 03f3 CmStick/M (MSD, article no. 1011-xx-xxx) + 0bd7 Wibu-Box/U (article no. 3031-xx-xxx) + 0bd8 Wibu-Box/RU (article no. 3032-xx-xxx) + 2af9 CmStick (HID, article no. 1001-xx-xxx) + 2b03 CmStick/M (HID, article no. 1011-xx-xxx) + 5213 CmStick/M (COMPOSITE, article no. 1011-xx-xxx) +0650 Dynapro Systems +0651 Likom Technology Sdn. Bhd. +0652 Stargate Solutions, Inc. +0653 CNF, Inc. +0654 Granite Microsystems, Inc. + 0005 Device Bay Controller + 0006 Hub + 0007 Device Bay Controller + 0016 Hub +0655 Space Shuttle Hi-Tech Co., Ltd +0656 Glory Mark Electronic, Ltd +0657 Tekcon Electronics Corp. +0658 Sigma Designs, Inc. + 0200 Aeotec Z-Stick Gen5 (ZW090) - UZB +0659 Aethra +065a Optoelectronics Co., Ltd + 0001 Opticon OPR-2001 / NLV-1001 (keyboard mode) + 0009 NLV-1001 (serial mode) / OPN-2001 [Opticon] +065b Tracewell Systems +065e Silicon Graphics +065f Good Way Technology Co., Ltd & GWC technology Inc. +0660 TSAY-E (BVI) International, Inc. +0661 Hamamatsu Photonics K.K. +0662 Kansai Electric Co., Ltd +0663 Topmax Electronic Co., Ltd + 0103 CobraPad +0664 ET&T Technology Co., Ltd. + 0301 Groovy Technology Corp. GTouch Touch Screen + 0302 Groovy Technology Corp. GTouch Touch Screen + 0303 Groovy Technology Corp. GTouch Touch Screen + 0304 Groovy Technology Corp. GTouch Touch Screen + 0305 Groovy Technology Corp. GTouch Touch Screen + 0306 Groovy Technology Corp. GTouch Touch Screen + 0307 Groovy Technology Corp. GTouch Touch Screen + 0309 Groovy Technology Corp. GTouch Touch Screen +0665 Cypress Semiconductor + 5161 USB to Serial +0667 Aiwa Co., Ltd + 0fa1 TD-U8000 Tape Drive +0668 WordWand +0669 Oce' Printing Systems GmbH +066a Total Technologies, Ltd +066b Linksys, Inc. + 0105 SCM eUSB SmartMedia Card Reader + 010a Melco MCR-U2 SmartMedia / CompactFlash Reader + 200c USB10TX + 2202 USB10TX Ethernet [pegasus] + 2203 USB100TX Ethernet [pegasus] + 2204 USB100TX HomePNA Ethernet [pegasus] + 2206 USB Ethernet [pegasus] + 2207 HomeLink Phoneline 10M Network Adapter + 2211 WUSB11 802.11b Adapter + 2212 WUSB11v2.5 802.11b Adapter + 2213 WUSB12v1.1 802.11b Adapter + 2219 Instant Wireless Network Adapter + 400b USB10TX +066d Entrega, Inc. +066e Acer Semiconductor America, Inc. +066f SigmaTel, Inc. + 003b MP3 Player + 003e MP3 Player + 003f MP3 Player + 0040 MP3 Player + 0041 MP3 Player + 0042 MP3 Player + 0043 MP3 Player + 004b A-Max PA11 MP3 Player + 3400 STMP3400 D-Major MP3 Player + 3410 STMP3410 D-Major MP3 Player + 3500 Player Recovery Device + 3780 STMP3780/i.MX23 SystemOnChip in RecoveryMode + 4200 STIr4200 IrDA Bridge + 4210 STIr4210 IrDA Bridge + 8000 MSCN MP3 Player + 8001 SigmaTel MSCN Audio Player + 8004 MSCNMMC MP3 Player + 8008 i-Bead 100 MP3 Player + 8020 MP3 Player + 8034 MP3 Player + 8036 MP3 Player + 8038 MP3 Player + 8056 MP3 Player + 8060 MP3 Player + 8066 MP3 Player + 807e MP3 Player + 8092 MP3 Player + 8096 MP3 Player + 809a MP3 Player + 80aa MP3 Player + 80ac MP3 Player + 80b8 MP3 Player + 80ba MP3 Player + 80bc MP3 Player + 80bf MP3 Player + 80c5 MP3 Player + 80c8 MP3 Player + 80ca MP3 Player + 80cc MP3 Player + 8104 MP3 Player + 8106 MP3 Player + 8108 MP3 Player + 810a MP3 Player + 810c MP3 Player + 8122 MP3 Player + 8124 MP3 Player + 8126 MP3 Player + 8128 MP3 Player + 8134 MP3 Player + 8136 MP3 Player + 8138 MP3 Player + 813a MP3 Player + 813e MP3 Player + 8140 MP3 Player + 8142 MP3 Player + 8144 MP3 Player + 8146 MP3 Player + 8148 MP3 Player + 814c MP3 Player + 8201 MP3 Player + 8202 Jens of Sweden / I-BEAD 150M/150H MP3 player + 8203 MP3 Player + 8204 MP3 Player + 8205 MP3 Player + 8206 Digital MP3 Music Player + 8207 MP3 Player + 8208 MP3 Player + 8209 MP3 Player + 820a MP3 Player + 820b MP3 Player + 820c MP3 Player + 820d MP3 Player + 820e MP3 Player + 820f MP3 Player + 8210 MP3 Player + 8211 MP3 Player + 8212 MP3 Player + 8213 MP3 Player + 8214 MP3 Player + 8215 MP3 Player + 8216 MP3 Player + 8217 MP3 Player + 8218 MP3 Player + 8219 MP3 Player + 821a MP3 Player + 821b MP3 Player + 821c MP3 Player + 821d MP3 Player + 821e MP3 Player + 821f MP3 Player + 8220 MP3 Player + 8221 MP3 Player + 8222 MP3 Player + 8223 MP3 Player + 8224 MP3 Player + 8225 MP3 Player + 8226 MP3 Player + 8227 MP3 Player + 8228 MP3 Player + 8229 MP3 Player + 8230 MP3 Player + 829c MP3 Player + 82e0 MP3 Player + 8320 TrekStor i.Beat fun + 835d MP3 Player + 83b5 Transcend T.sonic 530 MP3 Player + 9000 MP3 Player + 9001 MP3 Player + 9002 MP3 Player +0670 Sequel Imaging + 0001 Calibrator + 0005 Enable Cable +0672 Labtec, Inc. + 1041 LCS1040 Speaker System + 5000 SpaceBall 4000 FLX +0673 HCL + 5000 Keyboard +0674 Key Mouse Electronic Enterprise Co., Ltd +0675 DrayTek Corp. + 0110 Vigor 128 ISDN TA + 0530 Vigor530 IEEE 802.11G Adapter (ISL3880+NET2280) + 0550 Vigor550 + 1688 miniVigor 128 ISDN TA [HFC-S] + 6694 miniVigor 128 ISDN TA +0676 Teles AG +0677 Aiwa Co., Ltd + 07d5 TM-ED1285(USB) + 0fa1 TD-U8000 Tape Drive +0678 ACard Technology Corp. +067b Prolific Technology, Inc. + 0000 PL2301 USB-USB Bridge + 0001 PL2302 USB-USB Bridge + 0307 Motorola Serial Adapter + 04bb PL2303 Serial (IODATA USB-RSAQ2) + 0600 IDE Bridge + 0610 Onext EG210U MODEM + 0611 AlDiga AL-11U Quad-band GSM/GPRS/EDGE modem + 1231 Orico SATA External Hard Disk Drive Lay-Flat Docking Station with USB 3.0 & eSATA interfaces. + 2303 PL2303 Serial Port / Mobile Action MA-8910P + 2305 PL2305 Parallel Port + 2306 Raylink Bridge Controller + 2307 PL2307 USB-ATAPI4 Bridge + 2313 FITEL PHS U Cable Adaptor + 2315 Flash Disk Embedded Hub + 2316 Flash Disk Security Device + 2317 Mass Storage Device + 2501 PL2501 USB-USB Bridge (USB 2.0) + 2506 Kaser 8gB micro hard drive + 2507 PL2507 Hi-speed USB to IDE bridge controller + 2515 Flash Disk Embedded Hub + 2517 Flash Disk Mass Storage Device + 2528 Storage device (8gB thumb drive) + 2571 LG Electronics GE24LU21 + 25a1 PL25A1 Host-Host Bridge + 2773 PL2773 SATAII bridge controller + 3400 Hi-Speed Flash Disk with TruePrint AES3400 + 3500 Hi-Speed Flash Disk with TruePrint AES3500 + 3507 PL3507 ATAPI6 Bridge + aaa0 Prolific Pharos + aaa2 PL2303 Serial Adapter (IODATA USB-RSAQ3) + aaa3 PL2303x Serial Adapter +067c Efficient Networks, Inc. + 1001 Siemens SpeedStream 100MBps Ethernet + 1022 Siemens SpeedStream 1022 802.11b Adapter + 1023 SpeedStream Wireless + 4020 SpeedStream 4020 ATM/ADSL Installer + 4031 Efficient ADSL Modem + 4032 SpeedStream 4031 ATM/ADSL Installer + 4033 SpeedStream 4031 ATM/ADSL Installer + 4060 Alcatel Speedstream 4060 ADSL Modem + 4062 Efficient Networks 4060 Loader + 5667 Efficient Networks Virtual Bus for ADSL Modem + c031 SpeedStream 4031 ATM/ADSL Installer + c032 SpeedStream 4031 ATM/ADSL Installer + c033 SpeedStream 4031 ATM/ADSL Installer + c060 SpeedStream 4060 Miniport ATM/ADSL Adapter + d667 Efficient Networks Virtual Bus for ADSL Modem + e240 Speedstream Ethernet Adapter E240 + e540 Speedstream Ethernet Adapter E240 +067d Hohner Corp. +067e Intermec Technologies Corp. + 0801 HID Keyboard, Barcode scanner + 0803 VCP, Barcode scanner + 0805 VCP + UVC, Barcode scanner + 1001 Mobile Computer +067f Virata, Ltd + 4552 DSL-200 ADSL Modem + 6542 DSL Modem + 6549 DSL Modem + 7541 DSL Modem +0680 Realtek Semiconductor Corp., CPP Div. (Avance Logic) + 0002 Arowana Optical Wheel Mouse MSOP-01 +0681 Siemens Information and Communication Products + 0001 Dect Base + 0002 Gigaset 3075 Passive ISDN + 0005 ID-Mouse with Fingerprint Reader + 0012 I-Gate 802.11b Adapter + 001b WLL013 + 001d Hipath 1000 + 0022 Gigaset SX353 ISDN + 0026 DECT Data - Gigaset M34 + 002b A-100-I ADSL Modem + 002e ADSL Router_S-141 + 0034 GSM module MC35/ES75 USB Modem + 3c06 54g USB Network Adapter +0682 Victor Company of Japan, Ltd +0684 Actiontec Electronics, Inc. +0685 ZD Incorporated + 7000 HSDPA Modem +0686 Minolta Co., Ltd + 2001 PagePro 4110W + 2004 PagePro 1200W + 2005 Magicolor 2300 DL + 3001 PagePro 4100 + 3005 PagePro 1250E + 3006 PagePro 1250W + 3009 Magicolor 2300W + 300b PagePro 1350W + 300c PagePro 1300W + 301b Develop D 1650iD + 3023 Develop D 2050iD + 302e Develop D 1650iD PCL + 3034 Develop D 2050iD PCL + 4001 Dimage 2300 + 4003 Dimage 2330 Zoom Camera + 4004 Dimage Scan Elite II AF-2920 (2888) + 4005 Minolta DiMAGE E201 Mass Storage Device + 4006 Dimage 7 Camera + 4007 Dimage S304 Camera + 4008 Dimage 5 Camera + 4009 Dimage X Camera + 400a Dimage S404 Camera + 400b Dimage 7i Camera + 400c Dimage F100 Camera + 400d Dimage Scan Dual III AF-2840 (2889) + 400e Dimage Scan Elite 5400 (2890) + 400f Dimage 7Hi Camera + 4010 Dimage Xi Camera + 4011 Dimage F300 Camera + 4012 Dimage F200 Camera + 4014 Dimage S414 Camera + 4015 Dimage XT Camera [storage] + 4016 Dimage XT Camera [remote mode] + 4017 Dimage E223 + 4018 Dimage Z1 Camera + 4019 Dimage A1 Camera [remote mode] + 401a Dimage A1 Camera [storage] + 401c Dimage X20 Camera + 401e Dimage E323 Camera +068a Pertech, Inc. +068b Potrans International, Inc. +068e CH Products, Inc. + 00d3 OEM 3 axis 5 button joystick + 00e2 HFX OEM Joystick + 00f0 Multi-Function Panel + 00f1 Pro Throttle + 00f2 Flight Sim Pedals + 00f3 Fighterstick + 00f4 Combatstick + 00fa Ch Throttle Quadrant + 00ff Flight Sim Yoke + 0500 GameStick 3D + 0501 CH Pro Pedals + 0504 F-16 Combat Stick +068f Nihon KOHDEN + c00d MEK-6500 +0690 Golden Bridge Electech, Inc. +0693 Hagiwara Sys-Com Co., Ltd + 0002 FlashGate SmartMedia Card Reader + 0003 FlashGate CompactFlash Card Reader + 0005 FlashGate + 0006 SM PCCard R/W and SPD + 0007 FlashGate ME (Authenticated) + 000a SDCard/MMC Reader/Writer +0694 Lego Group + 0001 Mindstorms Tower + 0002 Mindstorms NXT + 0005 Mindstorms EV3 + 0006 Mindstorms EV3 Firmware Update +0698 Chuntex (CTX) + 1786 1300ex Monitor + 2003 CTX M730V built in Camera + 9999 VLxxxx Monitor+Hub +0699 Tektronix, Inc. + 0347 AFG 3022B + 0365 TDS 2004B + 036a TDS 2024B +069a Askey Computer Corp. + 0001 VC010 Webcam [pwc] + 0303 Cable Modem + 0311 ADSL Router Remote NDIS Device + 0318 Remote NDIS Device + 0319 220V Remote NDIS Device + 0320 IEEE 802.11b Wireless LAN Card + 0321 Dynalink WLL013 / Compex WLU11A 802.11b Adapter + 0402 Scientific Atlanta WebSTAR 100 & 200 series Cable Modem + 0811 BT Virtual Bus for Helium + 0821 BT Voyager 1010 802.11b Adapter + 4402 Scientific Atlanta WebSTAR 2000 series Cable Modem + 4403 Scientific Atlanta WebSTAR 300 series Cable Modem + 4501 Scientific-Atlanta WebSTAR 2000 series Cable Modem +069b Thomson, Inc. + 0704 DCM245 Cable Modem + 0705 THG540K Cable Modem + 0709 Lyra PDP2424 + 070c MP3 Player + 070d MP3 Player + 070e MP3 Player + 070f RCA Lyra RD1071 MP3 Player + 0731 Lyra M200E256 + 0761 RCA H100A + 0778 PEARL USB Device + 2220 RCA Kazoo RD1000 MP3 Player + 300a RCA Lyra MP3 Player + 3012 MP3 Player + 3013 MP3 Player + 5557 RCA CDS6300 +069d Hughes Network Systems (HNS) + 0001 Satellite Receiver Device + 0002 Satellite Device +069e Welcat Inc. + 0005 Marx CryptoBox v1.2 +069f Allied Data Technologies BV + 0010 Tornado Speakerphone FaxModem 56.0 + 0011 Tornado Speakerphone FaxModem 56.0 + 1000 ADT VvBus for CopperJet + 1004 CopperJet 821 RouterPlus +06a2 Topro Technology, Inc. + 0033 USB Mouse +06a3 Saitek PLC + 0006 Cyborg Gold Joystick + 0109 P880 Pad + 0160 ST290 Pro + 0200 Racing Wheel + 0201 Adrenalin Gamepad + 0241 Xbox Adrenalin Gamepad + 0255 X52 Flight Controller + 040b P990 Dual Analog Pad + 040c P2900 Wireless Pad + 0422 ST90 Joystick + 0460 ST290 Pro Flight Stick + 0463 ST290 + 0464 Cyborg Evo + 0471 Cyborg Graphite Stick + 0501 R100 Sports Wheel + 0502 ST200 Stick + 0506 R220 Digital Wheel + 051e Cyborg Digital II Stick + 052d P750 Gamepad + 053c X45 Flight Controller + 053f X36F Flightstick + 056c P2000 Tilt Pad + 056f P2000 Tilt Pad + 05d2 PC Dash 2 + 075c X52 Flight Controller + 0762 Saitek X52 Pro Flight Control System + 0763 Pro Flight Rudder Pedals + 0764 Flight Pro Combat Rudder + 0805 R440 Force Wheel + 0b4e Pro Flight Backlit Information Panel + 0bac Pro Flight Yoke + 0c2d Pro Flight Quadrant + 0d05 Pro Flight Radio Panel + 0d06 Flight Pro Multi Panel + 0d67 Pro Flight Switch Panel + 1003 GM2 Action Pad + 1009 Action Pad + 100a SP550 Pad and Joystick Combo + 100b SP550 Pad + 1509 P3000 Wireless Pad + 1589 P3000 Wireless Pad + 2541 X45 Flight Controller + 3509 P3000 RF GamePad + 353e Cyborg Evo Wireless + 3589 P3000 Wireless Pad + 35be Cyborg Evo + 5509 P3000 Wireless Pad + 712c Pro Flight Yoke integrated hub + 8000 Gamers' Keyboard + 801e Cyborg 3D Digital Stick II + 8020 Eclipse Keyboard + 8021 Eclipse II Keyboard + 802d P750 Pad + 803f X36 Flight Controller + 806f P2000 Tilt Pad + 80c0 Pro Gamer Command Unit + 80c1 Cyborg Command Pad Unit + a2ae Pro Flight Instrument Panel + a502 Gaming Mouse + f518 P3200 Rumble Force Game Pad + f51a P3600 + ff04 R440 Force Wheel + ff0c Cyborg Force Rumble Pad + ff0d P2600 Rumble Force Pad + ff12 Cyborg 3D Force Stick + ff17 ST 330 Rumble Force Stick + ff52 Cyborg 3D Rumble Force Joystick + ffb5 Cyborg Evo Force Joystick +06a4 Xiamen Doowell Electron Co., Ltd +06a5 Divio + 0000 Typhoon Webcam 100k [nw8000] + d001 ProLink DS3303u Webcam + d800 Chicony TwinkleCam + d820 Wize Media 1000 +06a7 MicroStore, Inc. +06a8 Topaz Systems, Inc. + 0042 SignatureGem 1X5 Pad + 0043 SignatureGem 1X5-HID Pad +06a9 Westell + 0005 WireSpeed Dual Connect Modem + 0006 WireSpeed Dual Connect Modem + 000a WireSpeed Dual Connect Modem + 000b WireSpeed Dual Connect Modem + 000e A90-211WG-01 802.11g Adapter [Intersil ISL3887] +06aa Sysgration, Ltd +06ac Fujitsu Laboratories of America, Inc. +06ad Greatland Electronics Taiwan, Ltd +06ae Professional Multimedia Testing Centre +06af Harting, Inc. of North America +06b8 Pixela Corp. +06b9 Alcatel Telecom + 0120 SpeedTouch 120g 802.11g Wireless Adapter [Intersil ISL3886] + 0121 SpeedTouch 121g Wireless Dongle + 2001 SPEED TOUCH Card + 4061 SpeedTouch ISDN or ADSL Modem + 4062 SpeedTouch ISDN or ADSL router + a5a5 DynaMiTe Modem +06ba Smooth Cord & Connector Co., Ltd +06bb EDA, Inc. +06bc Oki Data Corp. + 000b Okipage 14ex Printer + 0027 Okipage 14e + 00f7 OKI B4600 Mono Printer + 015e OKIPOS 411/412 POS Printer + 01c9 OKI B430 Mono Printer + 01db MC860 Multifunction Printer + 01dc MC860 Multifunction Printer + 01dd MC860 Multifunction Printer + 01de MC860 Multifunction Printer + 01df CX2633 Multifunction Printer + 01e0 ES8460 Multifunction Printer + 020b OKI ES4140 Mono Printer + 021f ES8460 Multifunction Printer + 026f MC351 Multifunction Printer + 0270 MC351 Multifunction Printer + 0271 MC351 Multifunction Printer + 0272 MC351 Multifunction Printer + 0273 MC351 Multifunction Printer + 0274 ES3451 Multifunction Printer + 0275 MC351 Multifunction Printer + 0276 MC351 Multifunction Printer + 0277 MC351 Multifunction Printer + 0278 MC351 Multifunction Printer + 0279 MC361 Multifunction Printer + 027a MC361 Multifunction Printer + 027b MC361 Multifunction Printer + 027c MC361 Multifunction Printer + 027d MC361 Multifunction Printer + 027e ES3461 Multifunction Printer + 027f MC361 Multifunction Printer + 0280 MC361 Multifunction Printer + 0281 MC361 Multifunction Printer + 0282 MC361 Multifunction Printer + 0283 MC561 Multifunction Printer + 0284 MC561 Multifunction Printer + 0285 MC561 Multifunction Printer + 0286 MC561 Multifunction Printer + 0287 CX2731 Multifunction Printer + 0288 ES5461 Multifunction Printer + 0289 ES5461 Multifunction Printer + 028a MC561 Multifunction Printer + 028b MC561 Multifunction Printer + 028c MC561 Multifunction Printer + 02b4 MC861 Multifunction Printer + 02b5 ES8461 Multifunction Printer + 02b6 MC851 Multifunction Printer + 02b7 ES8451 Multifunction Printer + 02bb OKI PT390 POS Printer + 02bd MB461 Multifunction Printer + 02be MB471 Multifunction Printer + 02bf MB491 Multifunction Printer + 02ca ES4161 Multifunction Printer + 02cb ES4191 Multifunction Printer + 02d4 MPS4200mb Multifunction Printer + 02e7 MC352 Multifunction Printer + 02e8 MC362 Multifunction Printer + 02e9 MC562 Multifunction Printer + 02ea ES3452 Multifunction Printer + 02eb ES5462 Multifunction Printer + 02ee MB451 Multifunction Printer + 0383 MC563 Multifunction Printer + 0a91 B2500MFP (printer+scanner) + 3801 B6100 Laser Printer +06bd AGFA-Gevaert NV + 0001 SnapScan 1212U + 0002 SnapScan 1236U + 0100 SnapScan Touch + 0101 SNAPSCAN ELITE + 0200 ScanMaker 8700 + 02bf DUOSCAN f40 + 0400 CL30 + 0401 Mass Storage + 0403 ePhoto CL18 Camera + 0404 ePhoto CL20 Camera + 2061 SnapScan 1212U (?) + 208d Snapscan e40 + 208f SnapScan e50 + 2091 SnapScan e20 + 2093 SnapScan e10 + 2095 SnapScan e25 + 2097 SnapScan e26 + 20fd SnapScan e52 + 20ff SnapScan e42 +06be AME Optimedia Technology Co., Ltd + 0800 Optimedia Camera + 1005 Dazzle DPVM! (1005) + d001 P35U Camera Capture +06bf Leoco Corp. +06c2 Phidgets Inc. (formerly GLAB) + 0030 PhidgetRFID + 0031 RFID reader + 0038 4-Motor PhidgetServo v3.0 + 0039 1-Motor PhidgetServo v3.0 + 003a 8-Motor PhidgetAvancedServo + 0040 PhidgetInterface Kit 0-0-4 + 0044 PhidgetInterface Kit 0-16-16 + 0045 PhidgetInterface Kit 8-8-8 + 0048 PhidgetStepper (Under Development) + 0049 PhidgetTextLED Ver 1.0 + 004a PhidgetLED Ver 1.0 + 004b PhidgetEncoder Ver 1.0 + 0051 PhidgetInterface Kit 0-5-7 (Custom) + 0052 PhidgetTextLCD + 0053 PhidgetInterfaceKit 0-8-8 + 0058 PhidgetMotorControl Ver 1.0 + 0070 PhidgetTemperatureSensor Ver 1.0 + 0071 PhidgetAccelerometer Ver 1.0 + 0072 PhidgetWeightSensor Ver 1.0 + 0073 PhidgetHumiditySensor + 0074 PhidgetPHSensor + 0075 PhidgetGyroscope +06c4 Bizlink International Corp. +06c5 Hagenuk, GmbH +06c6 Infowave Software, Inc. +06c8 SIIG, Inc. +06c9 Taxan (Europe), Ltd + 0005 Monitor Control + 0007 Monitor Control + 0009 Monitor Control +06ca Newer Technology, Inc. + 2003 uSCSI +06cb Synaptics, Inc. + 0001 TouchPad + 0002 Integrated TouchPad + 0003 cPad + 0005 Touchpad/FPS + 0006 TouchScreen + 0007 USB Styk + 0008 WheelPad + 0009 Composite TouchPad and TrackPoint + 000e HID Device + 0010 Wireless TouchPad + 0013 DisplayPad + 009a Metallica MIS Touch Fingerprint Reader + 00a2 Metallica MOH Touch Fingerprint Reader + 00bd Prometheus MIS Touch Fingerprint Reader + 2970 touchpad +06cc Terayon Communication Systems + 0101 Cable Modem + 0102 Cable Modem + 0103 Cable Modem + 0104 Cable Modem + 0304 Cable Modem +06cd Keyspan + 0101 USA-28 PDA [no firmware] + 0102 USA-28X PDA [no firmware] + 0103 USA-19 PDA [no firmware] + 0104 PDA [prerenum] + 0105 USA-18X PDA [no firmware] + 0106 USA-19W PDA [no firmware] + 0107 USA-19 PDA + 0108 USA-19W PDA + 0109 USA-49W serial adapter [no firmware] + 010a USA-49W serial adapter + 010b USA-19Qi serial adapter [no firmware] + 010c USA-19Qi serial adapter + 010d USA-19Q serial Adapter (no firmware) + 010e USA-19Q serial Adapter + 010f USA-28 PDA + 0110 USA-28Xb PDA + 0111 USA-18 serial Adapter + 0112 USA-18X PDA + 0113 USA-28Xb PDA [no firmware] + 0114 USA-28Xa PDA [no firmware] + 0115 USA-28Xa PDA + 0116 USA-18XA serial Adapter (no firmware) + 0117 USA-18XA serial Adapter + 0118 USA-19QW PDA [no firmware] + 0119 USA-19QW PDA + 011a USA-49Wlc serial adapter [no firmware] + 011b MPR Serial Preloader (MPRQI) + 011c MPR Serial (MPRQI) + 011d MPR Serial Preloader (MPRQ) + 011e MPR Serial (MPRQ) + 0121 USA-19hs serial adapter + 012a USA-49Wlc serial adapter + 0201 UIA-10 Digital Media Remote [Cypress AN2131SC] + 0202 UIA-11 Digital Media Remote +06ce Contec + 8311 COM-1(USB)H +06cf SpheronVR AG + 1010 PanoCam 10 + 1012 PanoCam 12/12X +06d0 LapLink, Inc. + 0622 LapLink Gold USB-USB Bridge [net1080] +06d1 Daewoo Electronics Co., Ltd +06d3 Mitsubishi Electric Corp. + 0284 FX-USB-AW/-BD RS482 Converters + 0380 CP8000D Port + 0381 CP770D Port + 0385 CP900D Port + 0387 CP980D Port + 038b CP3020D Port + 038c CP900DW(ID) Port + 0393 CP9500D/DW Port + 0394 CP9000D/DW Port + 0398 P93D + 03a1 CP9550D/DW Port + 03a5 CP9550DW-S + 03a9 CP-9600DW + 03aa CP3020DA + 03ad CP-9800D/DW + 03ae CP-9800DW-S + 0f10 Hori/Namco FlightStick 2 + 3b10 P95D + 3b21 CP-9810D/DW + 3b30 CP-D70DW / CP-D707DW + 3b31 CP-K60DW-S + 3b36 CP-D80DW + 3b50 CP-W5000DW + 3b60 CP-D90DW + 3b80 CP-M1 +06d4 Cisco Systems +06d5 Toshiba + 4000 Japanese Keyboard +06d6 Aashima Technology B.V. + 0025 Gamepad + 0026 Predator TH 400 Gamepad + 002d Trust PowerC@m 350FT + 002e Trust PowerC@m 350FS + 0030 Trust 710 LCD POWERC@M ZOOM - MSD + 0031 Trust 610/710 LCD POWERC@M ZOOM + 003a Trust PowerC@m 770Z (mass storage mode) + 003b Trust PowerC@m 770Z (webcam mode) + 003c Trust 910z PowerC@m + 003f Trust 735S POWERC@M ZOOM, WDM DSC Bulk Driver + 0050 Trust 738AV LCD PV Digital Camera + 0062 TRUST 782AV LCD P. V. Video Capture + 0066 TRUST Digital PCTV and Movie Editor + 0067 Trust 350FS POWERC@M FLASH + 006b TRUST AUDIO VIDEO EDITOR +06d7 Network Computing Devices (NCD) +06d8 Technical Marketing Research, Inc. +06da Phoenixtec Power Co., Ltd + 0002 UPS + 0003 1300VA UPS +06db Paradyne +06dc Foxlink Image Technology Co., Ltd + 0012 Scan 1200c Scanner + 0014 Prolink Winscan Pro 2448U +06de Heisei Electronics Co., Ltd +06e0 Multi-Tech Systems, Inc. + 0319 MT9234ZBA-USB MultiModem ZBA + f101 MT5634ZBA-USB MultiModemUSB (old firmware) + f103 MT5634MU MultiMobileUSB + f104 MT5634ZBA-USB MultiModemUSB (new firmware) + f107 MT5634ZBA-USB-V92 MultiModemUSB + f120 MT9234ZBA-USB-CDC-ACM-XR MultiModem ZBA CDC-ACM-XR +06e1 ADS Technologies, Inc. + 0008 UBS-10BT Ethernet [klsi] + 0009 UBS-10BT Ethernet + 0833 Mass Storage Device + a155 FM Radio Receiver/Instant FM Music (RDX-155-EF) + a160 Instant Video-To-Go RDX-160 (no firmware) + a161 Instant Video-To-Go RDX-160 + a190 Instand VCD Capture + a191 Instant VideoXpress + a337 Mini DigitalTV + a701 DVD Xpress + a708 saa7114H video input card (Instant VideoMPX) + b337 Mini DigitalTV + b701 DVD Xpress B +06e4 Alcatel Microelectronics +06e6 Tiger Jet Network, Inc. + 0200 Internet Phone + 0201 Internet Phone + 0202 Composite Device + 0203 Internet Phone + 0210 Composite Device + 0211 Internet Phone + 0212 Internet Phone + 031c Internet Phone + 031d Internet Phone + 031e Internet Phone + 3200 Composite Device + 3201 Internet Phone + 3202 Composite Device + 3203 Composite Device + 7200 Composite Device + 7210 Composite Device + 7250 Composite Device + 825c Internet Phone + 831c Internet Phone + 831d Composite Device + 831e Composite Device + b200 Composite Device + b201 Composite Device + b202 Internet Phone + b210 Internet Phone + b211 Composite Device + b212 Composite Device + b250 Composite Device + b251 Internet Phone + b252 Internet Phone + c200 Internet Phone + c201 Internet Phone + c202 Composite Device + c203 Internet Phone + c210 Personal PhoneGateway + c211 Personal PhoneGateway + c212 Personal PhoneGateway + c213 PPG Device + c25c Composite Device + c290 PPG Device + c291 PPG Device + c292 PPG Device + c293 Personal PhoneGateway + c31c Composite Device + c39c Personal PhoneGateway + c39d PPG Device + c39e PPG Device + c39f PPG Device + c700 Internet Phone + c701 Internet Phone + c702 Composite Device + c703 Internet Phone + c710 VoIP Combo Device + c711 VoIP Combo + c712 VoIP Combo Device + c713 VoIP Combo Device + cf00 Composite Device + cf01 Internet Phone + cf02 Internet Phone + cf03 Composite Device + d210 Personal PhoneGateway + d211 PPG Device + d212 PPG Device + d213 Personal PhoneGateway + d700 Composite Device + d701 Composite Device + d702 Internet Phone + d703 Composite Device + d710 VoIP Combo + d711 VoIP Combo Device + d712 VoIP Combo + d713 VoIP Combo + df00 Composite Device + df01 Composite Device + df02 Internet Phone + df03 Internet Phone + f200 Internet Phone + f201 Internet Phone + f202 Composite Device + f203 Composite Device + f210 Internet Phone + f250 Composite Device + f252 Internet Phone + f310 Internet Phone + f350 Composite Device +06ea Sirius Technologies + 0001 NetCom Roadster II 56k + 0002 Roadster II 56k +06eb PC Expert Tech. Co., Ltd +06ef I.A.C. Geometrische Ingenieurs B.V. +06f0 T.N.C Industrial Co., Ltd + de01 DualCam Video Camera + de02 DualCam Still Camera +06f1 Opcode Systems, Inc. + a011 SonicPort + a021 SonicPort Optical +06f2 Emine Technology Co. + 0011 KVM Switch Keyboard +06f6 Wintrend Technology Co., Ltd +06f7 Wailly Technology Ltd + 0003 USB->Din 4 Adaptor +06f8 Guillemot Corp. + 3002 Hercules Blog Webcam + 3004 Hercules Classic Silver + 3005 Hercules Dualpix Exchange + 3007 Hercules Dualpix Chat and Show + 3020 Hercules Webcam EC300 + a300 Dual Analog Leader GamePad + b000 Hercules DJ Console + b121 Hercules P32 DJ + c000 Hercules Muse Pocket + d002 Hercules DJ Console + e000 HWGUSB2-54 WLAN + e010 HWGUSB2-54-LB + e020 HWGUSB2-54V2-AP + e031 Hercules HWNUm-300 Wireless N mini [Realtek RTL8191SU] + e032 HWGUm-54 [Hercules Wireless G Ultra Mini Key] + e033 Hercules HWNUp-150 802.11n Wireless N Pico [Realtek RTL8188CUS] +06f9 ASYST electronic d.o.o. +06fa HSD S.r.L +06fc Motorola Semiconductor Products Sector +06fd Boston Acoustics + 0101 Audio Device + 0102 Audio Device + 0201 2-piece Audio Device +06fe Gallant Computer, Inc. +0701 Supercomal Wire & Cable SDN. BHD. +0703 Bvtech Industry, Inc. +0705 NKK Corp. +0706 Ariel Corp. +0707 Standard Microsystems Corp. + 0100 2202 Ethernet [klsi] + 0200 2202 Ethernet [pegasus] + 0201 EZ Connect USB Ethernet + ee04 SMCWUSB32 802.11b Wireless LAN Card + ee06 SMC2862W-G v1 EZ Connect 802.11g Adapter [Intersil ISL3886] + ee13 SMC2862W-G v2 EZ Connect 802.11g Adapter [Intersil ISL3887] +0708 Putercom Co., Ltd + 047e USB-1284 BRIDGE +0709 Silicon Systems, Ltd (SSL) +070a Oki Electric Industry Co., Ltd + 4002 Bluetooth Device + 4003 Bluetooth Device +070d Comoss Electronic Co., Ltd +070e Excel Cell Electronic Co., Ltd +0710 Connect Tech, Inc. + 0001 WhiteHeat (fake ID) + 8001 WhiteHeat +0711 Magic Control Technology Corp. + 0100 Hub + 0180 IRXpress Infrared Device + 0181 IRXpress Infrared Device + 0200 BAY-3U1S1P Serial Port + 0210 MCT1S Serial Port + 0230 MCT-232 Serial Port + 0231 PS/2 Mouse Port + 0232 Serial On Port + 0240 PS/2 to USB Converter + 0260 PS/2 Keyboard and Mouse + 0300 BAY-3U1S1P Parallel Port + 0302 Parallel Port + 0900 SVGA Adapter + 5001 Trigger UV-002BD[Startech USBVGAE] + 5100 Magic Control Technology Corp. (USB2VGA dongle) +0713 Interval Research Corp. +0714 NewMotion, Inc. + 0003 ADB converter +0717 ZNK Corp. +0718 Imation Corp. + 0002 SuperDisk 120MB + 0003 SuperDisk 120MB (Authenticated) + 0060 Flash Drive + 0061 Flash Drive + 0062 Flash Drive + 0063 Swivel Flash Drive + 0064 Flash Drive + 0065 Flash Drive + 0066 Flash Drive + 0067 Flash Drive + 0068 Flash Drive + 0084 Flash Drive Mini + 043c Flash drive 16GB [Nano Pro] + 0582 Revo Flash Drive + 0622 TDK Trans-It 4GB + 0624 TDK Trans-It 16GB + 1120 RDX External dock (redbud) + 4006 8x Slim DVD Multi-Format Recorder External + d000 Disc Stakka CD/DVD Manager +0719 Tremon Enterprises Co., Ltd +071b Domain Technologies, Inc. + 0002 DTI-56362-USB Digital Interface Unit + 0101 Audio4-USB DSP Data Acquisition Unit + 0184 Archos 2 8GB EM184RB + 0201 Audio4-5410 DSP Data Acquisition Unit + 0301 SB-USB JTAG Emulator + 3203 Rockchip Media Player + 32bb Music Mediatouch +071c Xionics Document Technologies, Inc. +071d Eicon Networks Corp. + 1000 Diva 2.01 S/T [PSB2115F] + 1003 Diva ISDN 2.0 + 1005 Diva ISDN 4.0 [HFC-S] + 2000 Teledat Surf +071e Ariston Technologies +0720 Keyence Corp. + 8001 LJ-V7001 +0723 Centillium Communications Corp. + 0002 Palladia 300/400 Adsl Modem +0726 Vanguard International Semiconductor-America +0729 Amitm + 1000 USC-1000 Serial Port +072e Sunix Co., Ltd +072f Advanced Card Systems, Ltd + 0001 AC1030-based SmartCard Reader + 0008 ACR 80 Smart Card Reader + 0100 AET65 + 0101 AET65 + 0102 AET62 + 0103 AET62 + 0901 ACR1281U-C4 (BSI) + 1000 PLDT Drive + 1001 PLDT Drive + 2011 ACR88U + 2100 ACR128U + 2200 ACR122U + 220a ACR1281U-C5 (BSI) + 220c ACR1283 Bootloader + 220f ACR1281U-C2 (qPBOC) + 2211 ACR1261 1S Dual Reader + 2214 ACR1222 1SAM PICC Reader + 2215 ACR1281 2S CL Reader + 221a ACR1251U-A1 + 221b ACR1251U-C + 2224 ACR1281 1S Dual Reader + 222b ACR1222U-C8 + 222c ACR1283L-D2 + 222d [OEM Reader] + 222e ACR123U + 2242 ACR1251 1S Dual Reader + 8002 AET63 BioTRUSTKey + 8003 ACR120 + 8103 ACR120 + 8201 APG8201 + 8900 ACR89U-A1 + 8901 ACR89U-A2 + 8902 ACR89U-A3 + 9000 ACR38 AC1038-based Smart Card Reader + 9006 CryptoMate + 90cc ACR38 SmartCard Reader + 90ce [OEM Reader] + 90cf ACR38 SAM Smart Card Reader + 90d0 PertoSmart EMV - Card Reader + 90d2 ACR83U + 90d8 ACR3801 + 90db CryptoMate64 + b000 ACR3901U + b100 ACR39U + b101 ACR39K + b102 ACR39T + b103 ACR39F + b104 ACR39U-SAM + b106 ACOS5T2 + b200 ACOS5T1 + b301 ACR32-A1 +0731 Susteen, Inc. + 0528 SonyEricsson DCU-11 Cable +0732 Goldfull Electronics & Telecommunications Corp. +0733 ViewQuest Technologies, Inc. + 0101 Digital Video Camera + 0110 VQ110 Video Camera + 0401 CS330 Webcam + 0402 M-318B Webcam + 0430 Intel Pro Share Webcam + 0630 VQ630 Dual Mode Digital Camera(Bulk) + 0631 Hercules Dualpix + 0780 Smart Cam Deluxe(composite) + 1310 Epsilon 1.3/Jenoptik JD C1.3/UMAX AstraPix 470 (mass storage mode) + 1311 Epsilon 1.3/Jenoptik JD C1.3/UMAX AstraPix 470 (PC Cam mode) + 1314 Mercury 2.1MEG Deluxe Classic Cam + 2211 Jenoptik jdc 21 LCD Camera + 2221 Mercury Digital Pro 3.1p + 3261 Concord 3045 spca536a Camera + 3281 Cyberpix S550V +0734 Lasat Communications A/S + 0001 560V Modem + 0002 Lasat 560V Modem + 043a DVS Audio + 043b 3DeMon USB Capture +0735 Asuscom Network + 2100 ISDN Adapter + 2101 ISDN Adapter + 6694 ISDNlink 128K + c541 ISDN TA 280 +0736 Lorom Industrial Co., Ltd +0738 Mad Catz, Inc. + 2215 X-55 Rhino Stick + 2237 V.1 Stick + 4506 Wireless Controller + 4507 XBox Device + 4516 Control Pad + 4520 Control Pad Pro + 4522 LumiCON + 4526 Control Pad Pro + 4530 Universal MC2 Racing Wheel and Pedals + 4536 MicroCON + 4540 Beat Pad + 4556 Lynx Wireless Controller + 4566 XBox Device + 4576 XBox Device + 4586 MicroCON Wireless Controller + 4588 Blaster + 45ff Beat Pad + 4716 Wired Xbox 360 Controller + 4718 Street Fighter IV FightStick SE for Xbox 360 + 4726 Xbox 360 Controller + 4728 Street Fighter IV FightPad for Xbox 360 + 4730 MC2 Racing Wheel for Xbox 360 + 4736 MicroCON for Xbox 360 + 4738 Street Fighter IV Wired Controller for Xbox 360 + 4740 Beat Pad for Xbox 360 + 4743 Beat Pad Pro + 4758 Arcade Game Stick + 4a01 FightStick TE 2 for Xbox One + 6040 Beat Pad Pro + 8818 Street Fighter IV Arcade FightStick (PS3) + 9871 Portable Drum Kit + a109 S.T.R.I.K.E.7 Keyboard + a215 X-55 Rhino Throttle + b726 Modern Warfare 2 Controller for Xbox 360 + b738 Marvel VS Capcom 2 TE FightStick for Xbox 360 + beef Joytech Neo SE Advanced Gamepad + cb02 Saitek Cyborg Rumble Pad + cb03 Saitek P3200 Rumble Pad + cb29 Saitek Aviator Stick AV8R02 + f738 Super Street Fighter IV FightStick TE S for Xbox 360 +073a Chaplet Systems, Inc. + 2230 infrared dongle for remote +073b Suncom Technologies +073c Industrial Electronic Engineers, Inc. + 0305 Pole Display (PC305-3415 2 x 20 Line Display) + 0322 Pole Display (PC322-3415 2 x 20 Line Display) + 0324 Pole Display (LB324-USB 4 x 20 Line Display) + 0330 Pole Display (P330-3415 2 x 20 Line Display) + 0424 Pole Display (SP324-4415 4 x 20 Line Display) + 0450 Pole Display (L450-USB Graphic Line Display) + 0505 Pole Display (SPC505-3415 2 x 20 Line Display) + 0522 Pole Display (SPC522-3415 2 x 20 Line Display) + 0624 Pole Display (SP324-3415 4 x 20 Line Display) +073d Eutron S.p.a. + 0000 SmartKey + 0005 Crypto Token + 0007 CryptoIdentity CCID + 0025 SmartKey 3 + 0c00 Pocket Reader + 0d00 StarSign Bio Token 3.0 EU +073e NEC, Inc. + 0301 Game Pad +0742 Stollmann + 2008 ISDN TA [HFC-S] + 2009 ISDN TA [HFC-S] + 200a ISDN TA [HFC-S] +0745 Syntech Information Co., Ltd +0746 Onkyo Corp. + 4700 Integra MZA-4.7 + 5500 SE-U55 Audio Device +0747 Labway Corp. +0748 Strong Man Enterprise Co., Ltd +0749 EVer Electronics Corp. +074a Ming Fortune Industry Co., Ltd +074b Polestar Tech. Corp. +074c C-C-C Group PLC +074d Micronas GmbH + 3553 Composite USB-Device + 3554 Composite USB-Device + 3556 Composite USB-Device +074e Digital Stream Corp. + 0001 PS/2 Adapter + 0002 PS/2 Adapter +0755 Aureal Semiconductor +0757 Network Technologies, Inc. + 0a00 SUN Adapter +0758 Carl Zeiss Microscopy GmbH +075b Sophisticated Circuits, Inc. + 0001 Kick-off! Watchdog +0763 M-Audio + 0115 O2 / KeyRig 25 + 0117 Trigger Finger + 0119 MidAir + 0150 M-Audio Uno + 0160 M-Audio 1x1 + 0192 M-Audio Keystation 88es + 0193 ProKeys 88 + 0194 ProKeys 88sx + 0195 Oxygen 8 v2 + 0196 Oxygen 49 + 0197 Oxygen 61 + 0198 Axiom 25 + 0199 Axiom 49 + 019a Axiom 61 + 019b KeyRig 49 + 019c KeyStudio + 1001 MidiSport 2x2 + 1002 MidiSport 2x2 + 1003 MidiSport 2x2 + 1010 MidiSport 1x1 + 1011 MidiSport 1x1 + 1014 M-Audio Keystation Loader + 1015 M-Audio Keystation + 1020 Midisport 4x4 + 1021 MidiSport 4x4 + 1030 M-Audio MIDISPORT 8x8 + 1031 MidiSport 8x8/s Loader + 1033 MidiSport 8x8/s + 1040 M-Audio MidiSport 2x4 Loader + 1041 M-Audio MidiSport 2x4 + 1110 MidiSport 1x1 + 2001 M Audio Quattro + 2002 M Audio Duo + 2003 M Audio AudioPhile + 2004 M-Audio MobilePre + 2006 M-Audio Transit + 2007 M-Audio Sonica Theater + 2008 M-Audio Ozone + 200d M-Audio OmniStudio + 200f M-Audio MobilePre + 2010 M-Audio Fast Track + 2012 M-Audio Fast Track Pro + 2013 M-Audio JamLab + 2015 M-Audio RunTime DFU + 2016 M-Audio RunTime DFU + 2019 M-Audio Ozone Academic + 201a M-Audio Micro + 201b M-Audio RunTime DFU + 201d M-Audio Producer + 2024 M-Audio Fast Track MKII + 2080 M-Audio Fast Track Ultra + 2081 M-Audio RunTime DFU / Fast Track Ultra 8R + 2803 M-Audio Audiophile DFU + 2804 M-Audio MobilePre DFU + 2806 M-Audio Transit DFU + 2815 M-Audio DFU + 2816 M-Audio DFU + 281b M-Audio DFU + 2880 M-Audio DFU + 2881 M-Audio DFU +0764 Cyber Power System, Inc. + 0005 Cyber Power UPS + 0501 CP1500 AVR UPS + 0601 PR1500LCDRT2U UPS +0765 X-Rite, Inc. + 5001 Huey PRO Colorimeter + 5010 X-Rite Pantone Color Sensor + 5020 i1 Display Pro + 6003 ColorMunki Smile + d094 X-Rite DTP94 [Quato Silver Haze Pro] +0766 Jess-Link Products Co., Ltd + 0017 Packard Bell Carbon + 001b Packard Bell Go + 0204 TopSpeed Cyberlink Remote Control +0767 Tokheim Corp. +0768 Camtel Technology Corp. + 0006 Camtel Technology USB TV Genie Pro FM Model TVB330 + 0023 eHome Infrared Receiver +0769 Surecom Technology Corp. + 11f2 EP-9001-g 802.11g 54M WLAN Adapter + 11f3 RT2570 + 11f7 802.11g 54M WLAN Adapter + 31f3 RT2573 +076a Smart Technology Enablers, Inc. +076b OmniKey AG + 0596 CardMan 2020 + 1021 CardMan 1021 + 1221 CardMan 1221 + 1784 CardMan 6020 + 3021 CardMan 3021 / 3121 + 3022 CardMan 3121 (HID Technologies) + 3610 CardMan 3620 + 3621 CardMan 3621 + 3821 CardMan 3821 + 4321 CardMan 4321 + 5121 CardMan 5121 + 5125 CardMan 5125 + 5321 CardMan 5321 + 5340 CardMan 5021 CL + 6622 CardMan 6121 + a011 CCID Smart Card Reader Keyboard + a021 CCID Smart Card Reader + a022 CardMan Smart@Link + c000 CardMan 3x21 CS + c001 CardMan 5121 CS +076c Partner Tech + 0204 CD7220 Communications Port + 0302 RP-600 +076d Denso Corp. +076e Kuan Tech Enterprise Co., Ltd +076f Jhen Vei Electronic Co., Ltd +0770 Welch Allyn, Inc - Medical Division +0771 Observator Instruments BV + 4455 OMC45III + ae0f OMC45III +0772 Your data Our Care +0774 AmTRAN Technology Co., Ltd +0775 Longshine Electronics Corp. +0776 Inalways Corp. +0777 Comda Enterprise Corp. +0778 Volex, Inc. +0779 ON Semiconductor (formerly Fairchild) + 0133 FUSB307B + 0134 FUSB308B +077a Sankyo Seiki Mfg. Co., Ltd +077b Linksys + 08be BEFCMU10 v4 Cable Modem + 2219 WUSB11 V2.6 802.11b Adapter + 2226 USB200M 100baseTX Adapter + 2227 Network Everywhere NWU11B +077c Forward Electronics Co., Ltd + 0005 NEC Keyboard +077d Griffin Technology + 0223 IMic Audio In/Out + 0405 iMate, ADB Adapter + 0410 PowerMate + 041a PowerWave + 04aa SoundKnob + 07af iMic + 1016 AirClick + 627a Radio SHARK +077e Softing AG + 008a NetLink Compact MPI/Profibus adapter + 0160 EDICblue + 0220 VAS5054A +077f Well Excellent & Most Corp. +0780 Sagem Monetel GmbH + 1202 ORGA 900 Smart Card Terminal Virtual Com Port + 1302 ORGA 6000 Smart Card Terminal Virtual Com Port + 1303 ORGA 6000 Smart Card Terminal USB RNDIS + df55 ORGA 900/6000 Smart Card Terminal DFU +0781 SanDisk Corp. + 0001 SDDR-05a ImageMate CompactFlash Reader + 0002 SDDR-31 ImageMate II CompactFlash Reader + 0005 SDDR-05b (CF II) ImageMate CompactFlash Reader + 0100 ImageMate SDDR-12 + 0200 SDDR-09 (SSFDC) ImageMate SmartMedia Reader [eusb] + 0400 SecureMate SD/MMC Reader + 0621 SDDR-86 Imagemate 6-in-1 Reader + 0720 Sansa C200 series in recovery mode + 0729 Sansa E200 series in recovery mode + 0810 SDDR-75 ImageMate CF-SM Reader + 0830 ImageMate CF/MMC/SD Reader + 1234 Cruzer Mini Flash Drive + 5150 SDCZ2 Cruzer Mini Flash Drive (thin) + 5151 Cruzer Micro Flash Drive + 5153 Cruzer Flash Drive + 5204 Cruzer Crossfire + 5402 U3 Cruzer Micro + 5406 Cruzer Micro U3 + 5408 Cruzer Titanium U3 + 540e Cruzer Contour Flash Drive + 5530 Cruzer + 5567 Cruzer Blade + 556b Cruzer Edge + 556c Ultra + 556d Memory Vault + 5571 Cruzer Fit + 5575 Cruzer Glide + 5576 Cruzer Facet + 5577 Cruzer Pop (8GB) + 557d Cruzer Force + 5580 SDCZ80 Flash Drive + 5581 Ultra + 5583 Ultra Fit + 5588 Extreme Pro + 5589 SD8SB8U512G[Extreme 500] + 558c Extreme Portable SSD + 5590 Ultra Dual + 5591 Ultra Flair + 5e10 Encrypted + 6100 Ultra II SD Plus 2GB + 6500 uSSD 5000 + 7100 Cruzer Mini + 7101 Pen Flash + 7102 Cruzer Mini + 7103 Cruzer Mini + 7104 Cruzer Micro Mini 256MB Flash Drive + 7105 Cruzer Mini + 7106 Cruzer Mini + 7112 Cruzer Micro 128MB Flash Drive + 7113 Cruzer Micro 256MB Flash Drive + 7114 Cruzer Mini + 7115 Cruzer Mini + 7301 Sansa e100 series (mtp) + 7302 Sansa e100 series (msc) + 7400 Sansa M200 series (mtp) + 7401 Sansa M200 series (msc) + 7420 Sansa E200 series (mtp) + 7421 Sansa E200 Series (msc) + 7422 Sansa E200 series v2 (mtp) + 7423 Sansa E200 series v2 (msc) + 7430 Sansa M200 series + 7431 Sansa M200 series V4 (msc) + 7432 Sansa Clip (mtp) + 7433 Sansa Clip (msc) + 7434 Sansa Clip V2 (mtp) + 7435 Sansa Clip V2 (msc) + 7450 Sansa C250 + 7451 Sansa C240 + 7460 Sansa Express + 7480 Sansa Connect + 7481 Sansa Connect (in recovery mode) + 74b0 Sansa View (msc) + 74b1 Sansa View (mtp) + 74c0 Sansa Fuze (mtp) + 74c1 Sansa Fuze (msc) + 74c2 Sansa Fuze V2 (mtp) + 74c3 Sansa Fuze V2 (msc) + 74d0 Sansa Clip+ (mtp) + 74d1 Sansa Clip+ (msc) + 74e5 Sansa Clip Zip + 8181 Pen Flash + 8183 Hi-Speed Mass Storage Device + 8185 SDCZ2 Cruzer Mini Flash Drive (older, thick) + 8888 Card Reader + 8889 SDDR-88 Imagemate 8-in-1 Reader + 8919 Card Reader + 8989 ImageMate 12-in-1 Reader + 9191 ImageMate CF + 9219 Card Reader + 9292 ImageMate CF Reader/Writer + 9393 ImageMate SD-MMC + 9595 ImageMate xD-SM + 9797 ImageMate MS-PRO + 9919 Card Reader + 9999 SDDR-99 5-in-1 Reader + a7c1 Storage device (SD card reader) + a7e8 SDDR-113 MicroMate SDHC Reader + b2b3 SDDR-103 MobileMate SD+ Reader + b2b5 SDDR-104 MobileMate SD+ Reader + b4b5 SDDR-89 V4 ImageMate 12-in-1 Reader + b6b7 SDDR-99 V4 ImageMate 5-in-1 Reader + b6ba CF SDDR-289 + cfc9 SDDR-489 ImageMate Pro Reader +0782 Trackerball +0783 C3PO + 0003 LTC31 SmartCard Reader + 0006 LTC31v2 + 0009 KBR36 + 0010 LTC32 +0784 Vivitar, Inc. + 0100 Vivicam 2655 + 1310 Vivicam 3305 + 1688 Vivicam 3665 + 1689 Gateway DC-M42/Labtec DC-505/Vivitar Vivicam 3705 + 2620 AOL Photocam Plus + 2888 Polaroid DC700 + 3330 Nytec ND-3200 Camera + 4300 Traveler D1 + 5260 Werlisa Sport PX 100 / JVC GC-A33 Camera + 5300 Pretec dc530 +0785 NTT-ME + 0001 MN128mini-V ISDN TA + 0003 MN128mini-J ISDN TA +0789 Logitec Corp. + 0026 LHD Device + 0033 DVD Multi-plus unit LDR-H443SU2 + 0063 LDR Device + 0064 LDR-R Device + 00b3 DVD Multi-plus unit LDR-H443U2 + 00cc LHD Device + 0105 LAN-TX/U1H2 10/100 Ethernet Adapter [pegasus II] + 010c Realtek RTL8187 Wireless 802.11g 54Mbps Network Adapter + 0160 LAN-GTJ/U2A + 0162 LAN-WN22/U2 Wireless LAN Adapter + 0163 LAN-WN12/U2 Wireless LAN Adapter + 0164 LAN-W150/U2M Wireless LAN Adapter + 0166 LAN-W300N/U2 Wireless LAN Adapter + 0168 LAN-W150N/U2 Wireless LAN Adapter + 0170 LAN-W300AN/U2 Wireless LAN Adapter +078b Happ Controls, Inc. + 0010 Driving UGCI + 0020 Flying UGCI + 0030 Fighting UGCI +078c GTCO/CalComp + 0090 Tablet Adapter + 0100 Tablet Adapter + 0200 Tablet Adapter + 0300 Tablet Adapter + 0400 Digitizer (Whiteboard) +078e Brincom, Inc. +0790 Pro-Image Manufacturing Co., Ltd +0791 Copartner Wire and Cable Mfg. Corp. +0792 Axis Communications AB +0793 Wha Yu Industrial Co., Ltd +0794 ABL Electronics Corp. +0795 RealChip, Inc. +0796 Certicom Corp. +0797 Grandtech Semiconductor Corp. + 6801 Flatbed Scanner + 6802 InkJet Color Printer + 8001 SmartCam + 801a Typhoon StyloCam + 801c Meade Binoculars/Camera + 8901 ScanHex SX-35a + 8909 ScanHex SX-35b + 8911 ScanHex SX-35c +0798 Optelec + 0001 Braille Voyager + 0640 BC640 + 0680 BC680 +0799 Altera + 7651 Programming Unit +079b Sagem + 0024 MSO300/MSO301 Fingerprint Sensor + 0026 MSO350/MSO351 Fingerprint Sensor & SmartCard Reader + 0027 USB-Serial Controller + 002f Mobile + 0030 Mobile Communication Device + 0042 Mobile + 0047 CBM/MSO1300 Fingerprint Sensor + 004a XG-760A 802.11bg + 004b Wi-Fi 11g adapter + 0052 MSO1350 Fingerprint Sensor & SmartCard Reader + 0056 Agfa AP1100 Photo Printer + 005d Mobile Mass Storage + 0062 XG-76NA 802.11bg + 0078 Laser Pro Monochrome MFP +079d Alfadata Computer Corp. + 0201 GamePort Adapter +07a1 Digicom S.p.A. + d952 Palladio USB V.92 Modem +07a2 National Technical Systems +07a3 Onnto Corp. +07a4 Be, Inc. +07a6 ADMtek, Inc. + 07c2 AN986A Ethernet + 0986 AN986 Pegasus Ethernet + 8266 Infineon WildCard-USB Wireless LAN Adapter + 8511 ADM8511 Pegasus II Ethernet + 8513 ADM8513 Pegasus II Ethernet + 8515 ADM8515 Pegasus II Ethernet +07aa Corega K.K. + 0001 Ether USB-T Ethernet [klsi] + 0004 FEther USB-TX Ethernet [pegasus] + 000c WirelessLAN USB-11 + 000d FEther USB-TXS + 0011 Wireless LAN USB-11 mini + 0012 Stick-11 802.11b Adapter + 0017 FEther USB2-TX + 0018 Wireless LAN USB-11 mini 2 + 001a ULUSB-11 Key + 001c CG-WLUSB2GT 802.11g Wireless Adapter [Intersil ISL3880] + 0020 CG-WLUSB2GTST 802.11g Wireless Adapter [Intersil ISL3887] + 002e CG-WLUSB2GPX [Ralink RT2571W] + 002f CG-WLUSB2GNL + 0031 CG-WLUSB2GS 802.11bg [Atheros AR5523] + 003c CG-WLUSB2GNL + 003f CG-WLUSB300AGN + 0041 CG-WLUSB300GNS + 0042 CG-WLUSB300GNM + 0043 CG-WLUSB300N rev A2 [Realtek RTL8192U] + 0047 CG-WLUSBNM + 0051 CG-WLUSB300NM + 7613 Stick-11 V2 802.11b Adapter + 9601 FEther USB-TXC +07ab Freecom Technologies + fc01 IDE bridge + fc02 Cable II USB-2 + fc03 USB2-IDE IDE bridge + fc77 Quattro 3.0 + fcd6 Freecom HD Classic + fcf6 DataBar + fcf8 Freecom Classic SL Network Drive + fcfe Hard Drive 80GB +07af Microtech + 0004 SCSI-DB25 SCSI Bridge [shuttle] + 0005 SCSI-HD50 SCSI Bridge [shuttle] + 0006 CameraMate SmartMedia and CompactFlash Card Reader [eusb/shuttle] + fc01 Freecom USB-IDE +07b0 Trust Technologies + 0001 ISDN TA + 0002 ISDN TA128 Plus + 0003 ISDN TA128 Deluxe + 0005 ISDN TA128 SE + 0006 ISDN TA 128 [HFC-S] + 0007 ISDN TA [HFC-S] + 0008 ISDN TA +07b1 IMP, Inc. +07b2 Motorola BCS, Inc. + 0100 SURFboard Voice over IP Cable Modem + 0900 SURFboard Gateway + 0950 SURFboard SBG950 Gateway + 1000 SURFboard SBG1000 Gateway + 4100 SurfBoard SB4100 Cable Modem + 4200 SurfBoard SB4200 Cable Modem + 4210 SurfBoard 4210 Cable Modem + 4220 SURFboard SB4220 Cable Modem + 4500 CG4500 Communications Gateway + 450b CG4501 Communications Gateway + 450e CG4500E Communications Gateway + 5100 SurfBoard SB5100 Cable Modem + 5101 SurfBoard SB5101 Cable Modem + 5120 SurfBoard SB5120 Cable Modem (RNDIS) + 5121 Surfboard 5121 Cable Modem + 6002 MTR7000 Cable Tuning Adapter + 7030 WU830G 802.11bg Wireless Adapter [Envara WiND512] +07b3 Plustek, Inc. + 0001 OpticPro 1212U Scanner + 0003 Scanner + 0010 OpticPro U12 Scanner + 0011 OpticPro U24 Scanner + 0013 OpticPro UT12 Scanner + 0014 Scanner + 0015 OpticPro U24 Scanner + 0017 OpticPro UT12/16/24 Scanner + 0204 Scanner + 0400 OpticPro 1248U Scanner + 0401 OpticPro 1248U Scanner #2 + 0403 OpticPro U16B Scanner + 0404 Scanner + 0405 A8 Namecard-s Controller + 0406 A8 Namecard-D Controller + 0410 Scanner + 0412 Scanner + 0413 OpticSlim 1200 Scanner + 0601 OpticPro ST24 Scanner + 0800 OpticPro ST48 Scanner + 0807 OpticFilm 7200 scanner + 0900 OpticBook 3600 Scanner + 090c OpticBook 3600 Plus Scanner + 0a06 TVcam VD100 + 0b00 SmartPhoto F50 + 0c00 OpticPro ST64 Scanner + 0c03 OpticPro ST64+ Scanner + 0c04 Optic Film 7200i scanner + 0c0c PL806 Scanner + 0c26 OpticBook 4600 Scanner + 0c2b Mobile Office D428 Scanner + 0e08 OpticBook A300 Scanner + 1300 OpticBook 3800 Scanner + 1301 OpticBook 4800 Scanner + 130f Bookreader v200 +07b4 Olympus Optical Co., Ltd + 0100 Camedia C-2100/C-3000 Ultra Zoom Camera + 0102 Camedia E-10/C-220/C-50 Camera + 0105 Camedia C-310Z/C-700/C-750UZ/C-755/C-765UZ/C-3040/C-4000/C-5050Z/D-560/C-3020Z Zoom Camera + 0109 C-370Z/C-500Z/D-535Z/X-450 + 010a MAUSB-10 xD and SmartMedia Card Reader + 0112 MAUSB-100 xD Card Reader + 0113 Mju 500 / Stylus Digital Camera (PTP) + 0114 C-350Z Camera + 0118 Mju Mini Digital/Mju Digital 500 Camera / Stylus 850 SW + 0125 Tough TG-1 Camera + 0126 VR340/D750 Digital Camera + 0184 P-S100 port + 0202 Foot Switch RS-26 + 0203 Digital Voice Recorder DW-90 + 0206 Digital Voice Recorder DS-330 + 0207 Digital Voice Recorder & Camera W-10 + 0209 Digital Voice Recorder DM-20 + 020b Digital Voice Recorder DS-4000 + 020d Digital Voice Recorder VN-240PC + 0211 Digital Voice Recorder DS-2300 + 0218 Foot Switch RS-28 + 0244 Digital Voice Recorder VN-8500PC + 024f Digital Voice Recorder DS-7000 + 0280 m:robe 100 + 0295 Digital Voice Recorder VN-541PC +07b5 Mega World International, Ltd + 0017 Joystick + 0213 Thrustmaster Firestorm Digital 3 Gamepad + 0312 Gamepad + 9902 GamePad +07b6 Marubun Corp. +07b7 TIME Interconnect, Ltd +07b8 AboCom Systems Inc + 110c XX1 + 1201 IEEE 802.11b Adapter + 200c XX2 + 2573 Wireless LAN Card + 2770 802.11n/b/g Mini Wireless LAN USB2.0 Adapter + 2870 802.11n/b/g Wireless LAN USB2.0 Adapter + 3070 802.11n/b/g Mini Wireless LAN USB2.0 Adapter + 3071 802.11n/b/g Mini Wireless LAN USB2.0 Adapter + 3072 802.11n/b/g Mini Wireless LAN USB2.0 Adapter + 4000 DU-E10 Ethernet [klsi] + 4002 DU-E100 Ethernet [pegasus] + 4003 1/10/100 Ethernet Adapter + 4004 XX4 + 4007 XX5 + 400b XX6 + 400c XX7 + 401a RTL8151 + 4102 USB 1.1 10/100M Fast Ethernet Adapter + 4104 XX9 + 420a UF200 Ethernet + 5301 GW-US54ZGL 802.11bg + 6001 WUG2690 802.11bg Wireless Module [ZyDAS ZD1211+AL2230] + 8188 AboCom Systems Inc [WN2001 Prolink Wireless-N Nano Adapter] + a001 WUG2200 802.11g Wireless Adapter [Envara WiND512] + abc1 DU-E10 Ethernet [pegasus] + b000 BWU613 + b02a AboCom Bluetooth Device + b02b Bluetooth dongle + b02c BCM92045DG-Flash with trace filter + b02d BCM92045DG-Flash with trace filter + b02e BCM92045DG-Flash with trace filter + b030 BCM92045DG-Flash with trace filter + b031 BCM92045DG-Flash with trace filter + b032 BCM92045DG-Flash with trace filter + b033 BCM92045DG-Flash with trace filter + b21a WUG2400 802.11g Wireless Adapter [Texas Instruments TNETW1450] + b21b HWU54DM + b21c RT2573 + b21d RT2573 + b21e RT2573 + b21f WUG2700 + d011 MP3 Player + e001 Mass Storage Device + e002 Mass Storage Device + e003 Mass Storage Device + e004 Mass Storage Device + e005 Mass Storage Device + e006 Mass Storage Device + e007 Mass Storage Device + e008 Mass Storage Device + e009 Mass Storage Device + e00a Mass Storage Device + e4f0 Card Reader Driver + f101 DSB-560 Modem [atlas] +07bc Canon Computer Systems, Inc. +07bd Webgear, Inc. +07be Veridicom + 1935 Elektron Music Machines +07c0 Code Mercenaries Hard- und Software GmbH + 1113 JoyWarrior24F8 + 1116 JoyWarrior24F14 + 1121 The Claw + 1500 IO-Warrior 40 + 1501 IO-Warrior 24 + 1502 IO-Warrior 48 + 1503 IO-Warrior 28 + 1511 IO-Warrior 24 Power Vampire + 1512 IO-Warrior 24 Power Vampire +07c1 Keisokugiken + 0068 HKS-0200 USBDAQ +07c4 Datafab Systems, Inc. + 0102 USB to LS120 + 0103 USB to IDE + 1234 USB to ATAPI + a000 CompactFlash Card Reader + a001 CompactFlash & SmartMedia Card Reader [eusb] + a002 Disk Drive + a003 Datafab-based Reader + a004 USB to MMC Class Drive + a005 CompactFlash & SmartMedia Card Reader + a006 SmartMedia Card Reader + a007 Memory Stick Class Drive + a103 MDSM-B reader + a107 USB to Memory Stick (LC1) Drive + a109 LC1 CompactFlash & SmartMedia Card Reader + a10b USB to CF+MS(LC1) + a200 DF-UT-06 Hama MMC/SD Reader + a400 CompactFlash & Microdrive Reader + a600 Card Reader + a604 12-in-1 Card Reader + ad01 Mass Storage Device + ae01 Mass Storage Device + af01 Mass Storage Device + b000 USB to CF(LC1) + b001 USB to CF+PCMCIA + b004 MMC/SD Reader + b006 USB to PCMCIA + b00a USB to CF+SD Drive(LC1) + b00b USB to Memory Stick(LC1) + c010 Kingston FCR-HS2/ATA Card Reader +07c5 APG Cash Drawer + 0500 Cash Drawer +07c6 ShareWave, Inc. + 0002 Bodega Wireless Access Point + 0003 Bodega Wireless Network Adapter +07c7 Powertech Industrial Co., Ltd +07c8 B.U.G., Inc. + 0202 MN128-SOHO PAL +07c9 Allied Telesyn International + b100 AT-USB100 +07ca AVerMedia Technologies, Inc. + 0002 AVerTV PVR USB/EZMaker Pro Device + 0026 AVerTV + 0337 A867 DVB-T dongle + 0837 H837 Hybrid ATSC/QAM + 1228 MPEG-2 Capture Device (M038) + 1830 AVerTV Volar Video Capture (H830) + 1871 TD310 DVB-T/T2/C dongle + 3835 AVerTV Volar Green HD (A835B) + 850a AverTV Volar Black HD (A850) + 850b AverTV Red HD+ (A850T) + a309 AVerTV DVB-T (A309) + a801 AVerTV DVB-T (A800) + a815 AVerTV DVB-T Volar X (A815) + a827 AVerTV Hybrid Volar HX (A827) + a867 AVerTV DVB-T (A867) + b300 A300 DVB-T TV receiver + b800 MR800 FM Radio + e880 MPEG-2 Capture Device (E880) + e882 MPEG-2 Capture Device (E882) +07cb Kingmax Technology, Inc. +07cc Carry Computer Eng., Co., Ltd + 0000 CF Card Reader + 0001 Reader (UICSE) + 0002 Reader (UIS) + 0003 SM Card Reader + 0004 SM/CF/PCMCIA Card Reader + 0005 Reader (UISA2SE) + 0006 SM/CF/PCMCIA Card Reader + 0007 Reader (UISA6SE) + 000c SM/CF Card Reader + 000d SM/CF Card Reader + 000e Reader (UISDA) + 000f Reader (UICLIK) + 0010 Reader (UISMA) + 0012 Reader (UISC6SE-FLASH) + 0014 Litronic Fortezza Reader + 0030 Mass Storage (UISDMC12S) + 0040 Mass Storage (UISDMC13S) + 0100 Reader (UID) + 0101 Reader (UIM) + 0102 Reader (UISDMA) + 0103 Reader (UISDMC) + 0104 Reader (UISDM) + 0200 6-in-1 Card Reader + 0201 Mass Storage (UISDMC1S & UISDMC3S) + 0202 Mass Storage (UISDMC5S) + 0203 Mass Storage (UISMC5S) + 0204 Mass Storage (UIM4/5S & UIM7S) + 0205 Mass Storage (UIS4/5S & UIS7S) + 0206 Mass Storage (UISDMC10S & UISDMC11S) + 0207 Mass Storage (UPIDMA) + 0208 Mass Storage (UCFC II) + 0210 Mass Storage (UPIXXA) + 0213 Mass Storage (UPIDA) + 0214 Mass Storage (UPIMA) + 0215 Mass Storage (UPISA) + 0217 Mass Storage (UPISDMA) + 0223 Mass Storage (UCIDA) + 0224 Mass Storage (UCIMA) + 0225 Mass Storage (UIS7S) + 0227 Mass Storage (UCIDMA) + 0234 Mass Storage (UIM7S) + 0235 Mass Storage (UIS4S-S) + 0237 Velper (UISDMC4S) + 0300 6-in-1 Card Reader + 0301 6-in-1 Card Reader + 0303 Mass Storage (UID10W) + 0304 Mass Storage (UIM10W) + 0305 Mass Storage (UIS10W) + 0308 Mass Storage (UIC10W) + 0309 Mass Storage (UISC3W) + 0310 Mass Storage (UISDMA2W) + 0311 Mass Storage (UISDMC14W) + 0320 Mass Storage (UISDMC4W) + 0321 Mass Storage (UISDMC37W) + 0330 WINTERREADER Reader + 0350 9-in-1 Card Reader + 0500 Mass Storage + 0501 Mass Storage +07cd Elektor + 0001 USBuart Serial Port +07ce Nidec Copal + c007 DPB-4000 + c009 DPB-6000 + c010 CPB-7000 +07cf Casio Computer Co., Ltd + 1001 QV-8000SX/5700/3000EX Digicam; Exilim EX-M20 + 1003 Exilim EX-S500 + 1004 Exilim EX-Z120 + 1011 USB-CASIO PC CAMERA + 1116 EXILIM EX-Z19 + 1125 Exilim EX-H10 Digital Camera (mass storage mode) + 1133 Exilim EX-Z350 Digital Camera (mass storage mode) + 1225 Exilim EX-H10 Digital Camera (PictBridge mode) + 1233 Exilim EX-Z350 Digital Camera (PictBridge mode) + 2002 E-125 Cassiopeia Pocket PC + 3801 WMP-1 MP3-Watch + 4001 Label Printer KL-P1000 + 4007 CW50 Device + 4104 Cw75 Device + 4107 CW-L300 Device + 4500 LV-20 Digital Camera + 6101 fx-9750gII + 6102 fx-CP400 + 6801 PL-40R + 6802 MIDI Keyboard + 6803 CTK-3500 (MIDI keyboard) +07d0 Dazzle + 0001 Digital Video Creator I + 0002 Global Village VideoFX Grabber + 0003 Fusion Model DVC-50 Rev 1 (NTSC) + 0004 DVC-800 (PAL) Grabber + 0005 Fusion Video and Audio Ports + 0006 DVC 150 Loader Device + 0007 DVC 150 + 0327 Fusion Digital Media Reader + 1001 DM-FLEX DFU Adapter + 1002 DMHS2 DFU Adapter + 1102 CF Reader/Writer + 1103 SD Reader/Writer + 1104 SM Reader/Writer + 1105 MS Reader/Writer + 1106 xD/SM Reader/Writer + 1202 MultiSlot Reader/Writer + 2000 FX2 DFU Adapter + 2001 eUSB CompactFlash Reader + 4100 Kingsun SF-620 Infrared Adapter + 4101 Connectivity Cable (CA-42 clone) + 4959 Kingsun KS-959 Infrared Adapter +07d1 D-Link System + 13ec VvBus for Helium 2xx + 13ed VvBus for Helium 2xx + 13f1 DSL-302G Modem + 13f2 DSL-502G Router + 3300 DWA-130 802.11n Wireless N Adapter(rev.E) [Realtek RTL8191SU] + 3302 DWA-130 802.11n Wireless N Adapter(rev.C2) [Realtek RTL8191SU] + 3303 DWA-131 802.11n Wireless N Nano Adapter(rev.A1) [Realtek RTL8192SU] + 3304 FR-300USB 802.11bgn Wireless Adapter + 3a07 WUA-2340 RangeBooster G Adapter(rev.A) [Atheros AR5523] + 3a08 WUA-2340 RangeBooster G Adapter(rev.A) (no firmware) [Atheros AR5523] + 3a09 DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A2) [Atheros AR9170+AR9104] + 3a0d DWA-120 802.11g Wireless 108G Adapter [Atheros AR5523] + 3a0f DWA-130 802.11n Wireless N Adapter(rev.D) [Atheros AR9170+AR9102] + 3a10 DWA-126 802.11n Wireless Adapter [Atheros AR9271] + 3b01 AirPlus G DWL-G122 Wireless Adapter(rev.D) [Marvell 88W8338+88W8010] + 3b10 DWA-142 RangeBooster N Adapter [Marvell 88W8362+88W8060] + 3b11 DWA-130 802.11n Wireless N Adapter(rev.A1) [Marvell 88W8362+88W8060] + 3c03 AirPlus G DWL-G122 Wireless Adapter(rev.C1) [Ralink RT2571W] + 3c04 WUA-1340 + 3c05 EH103 Wireless G Adapter + 3c06 DWA-111 802.11bg Wireless Adapter [Ralink RT2571W] + 3c07 DWA-110 Wireless G Adapter(rev.A1) [Ralink RT2571W] + 3c09 DWA-140 RangeBooster N Adapter(rev.B1) [Ralink RT2870] + 3c0a DWA-140 RangeBooster N Adapter(rev.B2) [Ralink RT3072] + 3c0b DWA-110 Wireless G Adapter(rev.B) [Ralink RT2870] + 3c0d DWA-125 Wireless N 150 Adapter(rev.A1) [Ralink RT3070] + 3c0e WUA-2340 RangeBooster G Adapter(rev.B) [Ralink RT2070] + 3c0f AirPlus G DWL-G122 Wireless Adapter(rev.E1) [Ralink RT2070] + 3c10 DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A1) [Atheros AR9170+AR9104] + 3c11 DWA-160 Xtreme N Dual Band USB Adapter(rev.B) [Ralink RT2870] + 3c13 DWA-130 802.11n Wireless N Adapter(rev.B) [Ralink RT2870] + 3c15 DWA-140 RangeBooster N Adapter(rev.B3) [Ralink RT2870] + 3c16 DWA-125 Wireless N 150 Adapter(rev.A2) [Ralink RT3070] + 3e02 DWM-156 3.75G HSUPA Adapter + 5100 Remote NDIS Device + a800 DWM-152 3.75G HSUPA Adapter + f101 DBT-122 Bluetooth + fc01 DBT-120 Bluetooth Adapter +07d2 Aptio Products, Inc. +07d3 Cyberdata Corp. +07d5 Radiant Systems +07d7 GCC Technologies, Inc. +07da Arasan Chip Systems +07de Diamond Multimedia + 2820 VC500 Video Capture Dongle +07df David Electronics Co., Ltd +07e0 NCP engineering GmbH + 4742 VPN GovNet Box +07e1 Ambient Technologies, Inc. + 5201 V.90 Modem +07e2 Elmeg GmbH & Co., Ltd +07e3 Planex Communications, Inc. +07e4 Movado Enterprise Co., Ltd + 0967 SCard R/W CSR-145 + 0968 SCard R/W CSR-145 +07e5 QPS, Inc. + 05c2 IDE-to-USB2.0 PCA + 5c01 Que! CDRW +07e6 Allied Cable Corp. +07e7 Mirvo Toys, Inc. +07e8 Labsystems +07ea Iwatsu Electric Co., Ltd +07eb Double-H Technology Co., Ltd +07ec Taiyo Electric Wire & Cable Co., Ltd +07ee Torex Retail (formerly Logware) + 0002 Cash Drawer I/F +07ef STSN + 0001 Internet Access Device +07f2 Microcomputer Applications, Inc. + 0001 KEYLOK II +07f6 Circuit Assembly Corp. +07f7 Century Corp. + 0005 ScanLogic/Century Corporation uATA + 011e Century USB Disk Enclosure +07f9 Dotop Technology, Inc. +07fa DrayTek Corp. + 0778 miniVigor 128 ISDN TA + 0846 ISDN TA [HFC-S] + 0847 ISDN TA [HFC-S] + 1012 BeWAN ADSL USB ST (grey) + 1196 BWIFI-USB54AR 802.11bg + a904 BeWAN ADSL + a905 BeWAN ADSL ST +07fc Thomann + 1113 SWISSONIC EasyKeys61 Midikeyboard +07fd Mark of the Unicorn + 0000 FastLane MIDI Interface + 0001 MIDI Interface + 0002 MOTU Audio for 64 bit + 0004 MicroBook + 0008 M Series +07ff Unknown + 00ff Portable Hard Drive + ffff Mad Catz Gamepad +0801 MagTek + 0001 Mini Swipe Reader (Keyboard Emulation) + 0002 Mini Swipe Reader + 0003 Magstripe Insert Reader +0802 Mako Technologies, LLC +0803 Zoom Telephonics, Inc. + 1300 V92 Faxmodem + 3095 V.92 56K Mini External Modem Model 3095 + 4310 4410a Wireless-G Adapter [Intersil ISL3887] + 4410 4410b Wireless-G Adapter [ZyDAS ZD1211B] + 5241 Cable Modem + 5551 DSL Modem + 9700 2986L FaxModem + 9800 Cable Modem + a312 Wireless-G +0809 Genicom Technology, Inc. +080a Evermuch Technology Co., Ltd +080b Cross Match Technologies + 0002 Fingerprint Scanner (After ReNumeration) + 0010 300LC Series Fingerprint Scanner (Before ReNumeration) +080c Datalogic S.p.A. + 0300 Gryphon D120 Barcode Scanner + 0400 Gryphon D120 Barcode Scanner + 0500 Gryphon D120 Barcode Scanner + 0600 Gryphon M100 Barcode Scanner +080d Teco Image Systems Co., Ltd + 0102 Hercules Scan@home 48 + 0104 3.2Slim + 0110 UMAX AstraSlim 1200 Scanner +0810 Personal Communication Systems, Inc. + 0001 Dual PSX Adaptor + 0002 Dual PCS Adaptor + 0003 PlayStation Gamepad + e001 Twin controller + e501 SNES Gamepad +0813 Mattel, Inc. + 0001 Intel Play QX3 Microscope + 0002 Dual Mode Camera Plus +0819 eLicenser + 0101 License Management and Copy Protection +081a MG Logic + 1000 Duo Pen Tablet +081b Indigita Corp. + 0600 Storage Adapter + 0601 Storage Adapter +081c Mipsys +081e AlphaSmart, Inc. + df00 Handheld +081f Manta + e401 MM812 +0822 Reudo Corp. + 2001 IRXpress Infrared Device +0825 GC Protronics +0826 Data Transit +0827 BroadLogic, Inc. +0828 Sato Corp. +0829 DirecTV Broadband, Inc. (Telocity) +082d Handspring + 0100 Visor + 0200 Treo + 0300 Treo 600 + 0400 Handheld + 0500 Handheld + 0600 Handheld +0830 Palm, Inc. + 0001 m500 + 0002 m505 + 0003 m515 + 0004 Handheld + 0005 Handheld + 0006 Handheld + 0010 Handheld + 0011 Handheld + 0012 Handheld + 0013 Handheld + 0014 Handheld + 0020 i705 + 0021 Handheld + 0022 Handheld + 0023 Handheld + 0024 Handheld + 0030 Handheld + 0031 Tungsten W + 0032 Handheld + 0033 Handheld + 0034 Handheld + 0040 m125 + 0041 Handheld + 0042 Handheld + 0043 Handheld + 0044 Handheld + 0050 m130 + 0051 Handheld + 0052 Handheld + 0053 Handheld + 0054 Handheld + 0060 Tungsten C/E/T/T2/T3 / Zire 71 + 0061 Lifedrive / Treo 650/680 / Tunsten E2/T5/TX / Centro / Zire 21/31/72 / Z22 + 0062 Handheld + 0063 Handheld + 0064 Handheld + 0070 Zire + 0071 Handheld + 0072 Handheld + 0080 Serial Adapter [for Palm III] + 0081 Handheld + 0082 Handheld + 00a0 Treo 800w + 0101 Pre +0832 Kouwell Electronics Corp. + 5850 Cable +0833 Sourcenext Corp. + 012e KeikaiDenwa 8 with charger + 039f KeikaiDenwa 8 +0835 Action Star Enterprise Co., Ltd +0836 TrekStor + 2836 i.Beat mood +0839 Samsung Techwin Co., Ltd + 0005 Digimax Camera + 0008 Digimax 230 Camera + 0009 Digimax 340 + 000a Digimax 410 + 000e Digimax 360 + 0010 Digimax 300 + 1003 Digimax 210SE + 1005 Digimax 220 + 1009 Digimax V4 + 1012 6500 Document Camera + 103f Digimax S500 + 1058 S730 Camera + 1064 Digimax D830 Camera + 1542 Digimax 50 Duo + 3000 Digimax 35 MP3 +083a Accton Technology Corp. + 1046 10/100 Ethernet [pegasus] + 1060 HomeLine Adapter + 1f4d SMC8013WG Broadband Remote NDIS Device + 3046 10/100 Series Adapter + 3060 1/10/100 Adapter + 3501 2664W + 3502 WN3501D Wireless Adapter + 3503 T-Sinus 111 Wireless Adapter + 4501 T-Sinus 154data + 4502 Siemens S30853-S1016-R107 802.11g Wireless Adapter [Intersil ISL3886] + 4505 SMCWUSB-G 802.11bg + 4507 SMCWUSBT-G2 802.11g Wireless Adapter [Atheros AR5523] + 4521 Siemens S30863-S1016-R107-2 802.11g Wireless Adapter [Intersil ISL3887] + 4531 T-Com Sinus 154 data II [Intersil ISL3887] + 5046 SpeedStream 10/100 Ethernet [pegasus] + 5501 Wireless Adapter 11g + 6500 Cable Modem + 6618 802.11n Wireless Adapter + 7511 Arcadyan 802.11N Wireless Adapter + 7512 Arcadyan 802.11N Wireless Adapter + 7522 Arcadyan 802.11N Wireless Adapter + 8522 Arcadyan 802.11N Wireless Adapter + 8541 WN4501F 802.11g Wireless Adapter [Intersil ISL3887] + a512 Arcadyan 802.11N Wireless Adapter + a618 SMCWUSBS-N EZ Connect N Draft 11n Wireless Adapter [Ralink RT2870] + a701 SMCWUSBS-N3 EZ Connect N Wireless Adapter [Ralink RT3070] + b004 CPWUE001 USB/Ethernet Adapter + b522 SMCWUSBS-N2 EZ Connect N Wireless Adapter [Ralink RT2870] + bb01 BlueExpert Bluetooth Device + c003 802.11b Wireless Adapter + c501 Zoom 4410 Wireless-G [Intersil ISL3887] + c561 802.11a/g Wireless Adapter + d522 Speedport W 102 Stick IEEE 802.11n USB 2.0 Adapter + e501 ZD1211B + e503 Arcadyan WN4501 802.11b/g + e506 WUS-201 802.11bg + f501 802.11g Wireless Adapter + f502 802.11g Wireless Adapter + f522 Arcadyan WN7512 802.11n +083f Global Village + b100 TelePort V.90 Fax/Modem +0840 Argosy Research, Inc. + 0060 Storage Adapter Bridge Module +0841 Rioport.com, Inc. + 0001 Rio 500 +0844 Welland Industrial Co., Ltd +0846 NetGear, Inc. + 1001 EA101 10 Mbps 10BASE-T Ethernet [Kawasaki LSI KL5KLUSB101B] + 1002 Ethernet + 1020 FA101 Fast Ethernet USB 1.1 + 1040 FA120 Fast Ethernet USB 2.0 [Asix AX88172 / AX8817x] + 1100 Managed Switch M4100 series, M5300 series, M7100 series + 4110 MA111(v1) 802.11b Wireless [Intersil Prism 3.0] + 4200 WG121(v1) 54 Mbps Wireless [Intersil ISL3886] + 4210 WG121(v2) 54 Mbps Wireless [Intersil ISL3886] + 4220 WG111(v1) 54 Mbps Wireless [Intersil ISL3886] + 4230 MA111(v2) 802.11b Wireless [SIS SIS 162] + 4240 WG111(v1) rev 2 54 Mbps Wireless [Intersil ISL3887] + 4260 WG111v3 54 Mbps Wireless [realtek RTL8187B] + 4300 WG111U Double 108 Mbps Wireless [Atheros AR5004X / AR5005UX] + 4301 WG111U (no firmware) Double 108 Mbps Wireless [Atheros AR5004X / AR5005UX] + 5f00 WPN111 802.11g Wireless Adapter [Atheros AR5523] + 68e1 LB1120-100NAS + 6a00 WG111v2 54 Mbps Wireless [RealTek RTL8187L] + 7100 WN121T RangeMax Next Wireless-N [Marvell TopDog] + 9000 WN111(v1) RangeMax Next Wireless [Marvell 88W8362+88W8060] + 9001 WN111(v2) RangeMax Next Wireless [Atheros AR9170+AR9101] + 9010 WNDA3100v1 802.11abgn [Atheros AR9170+AR9104] + 9011 WNDA3100v2 802.11abgn [Broadcom BCM4323] + 9012 WNDA4100 802.11abgn 3x3:3 [Ralink RT3573] + 9014 WNDA3100v3 802.11abgn 2x2:2 [MediaTek MT7632U] + 9018 WNDA3200 802.11abgn Wireless Adapter [Atheros AR7010+AR9280] + 9020 WNA3100(v1) Wireless-N 300 [Broadcom BCM43231] + 9021 WNA3100M(v1) Wireless-N 300 [Realtek RTL8192CU] + 9030 WNA1100 Wireless-N 150 [Atheros AR9271] + 9040 WNA1000 Wireless-N 150 [Atheros AR9170+AR9101] + 9041 WNA1000M 802.11bgn [Realtek RTL8188CUS] + 9042 On Networks N150MA 802.11bgn [Realtek RTL8188CUS] + 9043 WNA1000Mv2 802.11bgn [Realtek RTL8188CUS?] + 9050 A6200 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526] + 9051 A6200v2 802.11a/b/g/n/ac (2x2) Wireless Adapter [Realtek RTL8812AU] + 9052 A6100 AC600 DB Wireless Adapter [Realtek RTL8811AU] + 9054 Nighthawk A7000 802.11ac Wireless Adapter AC1900 [Realtek 8814AU] + a001 PA101 10 Mbps HPNA Home Phoneline RJ-1 + f001 On Networks N300MA 802.11bgn [Realtek RTL8192CU] +084d Minton Optic Industry Co., Inc. + 0001 Jenoptik JD800i + 0003 S-Cam F5/D-Link DSC-350 Digital Camera + 0011 Argus DC3500 Digital Camera + 0014 Praktica DC 32 + 0019 Praktica DPix3000 + 0025 Praktica DC 60 + 1001 ScanHex SX-35d +084e KB Gear + 0001 JamCam Camera + 1001 Jam Studio Tablet + 1002 Pablo Tablet +084f Empeg + 0001 Empeg-Car Mark I/II Player +0850 Fast Point Technologies, Inc. +0851 Macronix International Co., Ltd + 1542 SiPix Blink + 1543 Maxell WS30 Slim Digital Camera, or Pandigital PI8004W01 digital photo frame + a168 MXIC +0852 CSEM +0853 Topre Corporation + 0100 HHKB Professional + 0119 RealForce 105UB + 0200 RealForce Compact Keyboard +0854 ActiveWire, Inc. + 0100 I/O Board + 0101 I/O Board, rev1 +0856 B&B Electronics + ac01 uLinks USOTL4 RS422/485 Adapter +0858 Hitachi Maxell, Ltd + 3102 Bluetooth Device + ffff Maxell module with BlueCore in DFU mode +0859 Minolta Systems Laboratory, Inc. +085a Xircom + 0001 Portstation Dual Serial Port + 0003 Portstation Paraller Port + 0008 Ethernet + 0009 Ethernet + 000b Portstation Dual PS/2 Port + 0021 1 port to Serial Converter + 0022 Parallel Port + 0023 2 port to Serial Converter + 0024 Parallel Port + 0026 PortGear SCSI + 0027 1 port to Serial Converter + 0028 PortGear to SCSI Converter + 0032 PortStation SCSI Module + 003c Bluetooth Adapter + 0299 Colorvision, Inc. Monitor Spyder + 8021 1 port to Serial + 8023 2 port to Serial + 8027 PGSDB9 Serial Port +085c ColorVision, Inc. + 0100 Spyder 1 + 0200 Spyder 2 + 0300 Spyder 3 + 0400 Spyder 4 +0862 Teletrol Systems, Inc. +0863 Filanet Corp. +0864 NetGear, Inc. + 4100 MA101 802.11b Adapter + 4102 MA101 802.11b Adapter +0867 Data Translation, Inc. + 9812 ECON Data acquisition unit + 9816 DT9816 ECON data acquisition module + 9836 DT9836 data acquisition card +086a Emagic Soft- und Hardware GmbH + 0001 Unitor8 + 0002 AMT8 + 0003 MT4 +086c DeTeWe - Deutsche Telephonwerke AG & Co. + 1001 Eumex 504PC ISDN TA + 1002 Eumex 504PC (FlashLoad) + 1003 TA33 ISDN TA + 1004 TA33 (FlashLoad) + 1005 Eumex 604PC HomeNet + 1006 Eumex 604PC HomeNet (FlashLoad) + 1007 Eumex 704PC DSL + 1008 Eumex 704PC DSL (FlashLoad) + 1009 Eumex 724PC DSL + 100a Eumex 724PC DSL (FlashLoad) + 100b OpenCom 30 + 100c OpenCom 30 (FlashLoad) + 100d BeeTel Home 100 + 100e BeeTel Home 100 (FlashLoad) + 1011 USB2DECT + 1012 USB2DECT (FlashLoad) + 1013 Eumex 704PC LAN + 1014 Eumex 704PC LAN (FlashLoad) + 1019 Eumex 504 SE + 101a Eumex 504 SE (Flash-Mode) + 1021 OpenCom 40 + 1022 OpenCom 40 (FlashLoad) + 1023 OpenCom 45 + 1024 OpenCom 45 (FlashLoad) + 1025 Sinus 61 data + 1029 dect BOX + 102c Eumex 604PC HomeNet [FlashLoad] + 1030 Eumex 704PC DSL [FlashLoad] + 1032 OpenCom 40 [FlashLoad] + 1033 OpenCom 30 plus + 1034 OpenCom 30 plus (FlashLoad) + 1041 Eumex 220PC + 1042 Eumex 220PC (FlashMode) + 1055 Eumex 220 Version 2 ISDN TA + 1056 Eumex 220 Version 2 ISDN TA (Flash-Mode) + 2000 OpenCom 1000 +086e System TALKS, Inc. + 1920 SGC-X2UL +086f MEC IMEX, Inc. +0870 Metricom + 0001 Ricochet GS +0871 SanDisk, Inc. + 0001 SDDR-01 Compact Flash Reader + 0002 SDDR-31 Compact Flash Reader + 0005 SDDR-05 Compact Flash Reader +0873 Xpeed, Inc. +0874 A-Tec Subsystem, Inc. +0879 Comtrol Corp. +087c Adesso/Kbtek America, Inc. +087d Jaton Corp. + 5704 Ethernet +087e Fujitsu Computer Products of America +087f QualCore Logic Inc. +0880 APT Technologies, Inc. +0883 Recording Industry Association of America (RIAA) +0885 Boca Research, Inc. +0886 XAC Automation Corp. + 0630 Intel PC Camera CS630 +0887 Hannstar Electronics Corp. +088a TechTools + 1002 DigiView DV3100 +088b MassWorks, Inc. + 4944 MassWorks ID-75 TouchScreen +088c Swecoin AB + 2030 Ticket Printer TTP 2030 +088e iLok + 5036 Portable secure storage for software licenses +0892 DioGraphy, Inc. + 0101 Smartdio Reader/Writer +0894 TSI Incorporated + 0010 Remote NDIS Network Device +0897 Lauterbach + 0001 ICE In-Circuit Emulator + 0002 Power Debug/Power Debug II + 0004 PowerDebug + 0005 PowerDebug PRO +089c United Technologies Research Cntr. +089d Icron Technologies Corp. +089e NST Co., Ltd +089f Primex Aerospace Co. +08a5 e9, Inc. +08a6 Toshiba TEC + 0051 B-SV4 +08a8 Andrea Electronics +08a9 CWAV Inc. + 0005 USBee ZX + 0009 USBee SX + 0012 USBee AX-Standard + 0013 USBee AX-Plus + 0014 USBee AX-Pro + 0015 USBee DX +08ac Macraigor Systems LLC + 2024 usbWiggler +08ae Macally (Mace Group, Inc.) +08b0 Metrohm + 0006 814 Sample Processor + 0015 857 Titrando + 001a 852 Titrando +08b4 Sorenson Vision, Inc. +08b7 NATSU + 0001 Playstation adapter +08b8 J. Gordon Electronic Design, Inc. + 01f4 USBSIMM1 +08b9 RadioShack Corp. (Tandy) +08bb Texas Instruments + 2702 PCM2702 16-bit stereo audio DAC + 2704 PCM2704 16-bit stereo audio DAC + 2705 PCM2705 stereo audio DAC + 2706 PCM2706 stereo audio DAC + 2707 PCM2707 stereo audio DAC + 27c4 PCM2704C stereo audio DAC + 27c5 PCM2705C stereo audio DAC + 27c6 PCM2706C stereo audio DAC + 27c7 PCM2707C stereo audio DAC + 2900 PCM2900 Audio Codec + 2901 PCM2901 Audio Codec + 2902 PCM2902 Audio Codec + 2904 PCM2904 Audio Codec + 2910 PCM2912 Audio Codec + 2912 PCM2912A Audio Codec + 29b0 PCM2900B Audio CODEC + 29b2 PCM2902 Audio CODEC + 29b3 PCM2903B Audio CODEC + 29b6 PCM2906B Audio CODEC + 29c0 PCM2900C Audio CODEC + 29c2 PCM2902C Audio CODEC + 29c3 PCM2903C Audio CODEC + 29c6 PCM2906C Audio CODEC +08bd Citizen Watch Co., Ltd + 0208 CLP-521 Label Printer + 1100 X1-USB Floppy +08c3 Precise Biometrics + 0001 100 SC + 0002 100 A + 0003 100 SC BioKeyboard + 0006 100 A BioKeyboard + 0100 100 MC ISP + 0101 100 MC FingerPrint and SmartCard Reader + 0300 100 AX + 0400 100 SC + 0401 150 MC + 0402 200 MC FingerPrint and SmartCard Reader + 0404 100 SC Upgrade + 0405 150 MC Upgrade + 0406 100 MC Upgrade +08c4 Proxim, Inc. + 0100 Skyline 802.11b Wireless Adapter + 02f2 Farallon Home Phoneline Adapter +08c7 Key Nice Enterprise Co., Ltd +08c8 2Wire, Inc. +08c9 Nippon Telegraph and Telephone Corp. +08ca Aiptek International, Inc. + 0001 Tablet + 0010 Tablet + 0020 APT-6000U Tablet + 0021 APT-2 Tablet + 0022 Tablet + 0023 Tablet + 0024 Tablet + 0100 Pen Drive + 0102 DualCam + 0103 Pocket DV Digital Camera + 0104 Pocket DVII + 0105 Mega DV(Disk) + 0106 Pocket DV3100+ + 0107 Pocket DV3100 + 0109 Nisis DV4 Digital Camera + 010a Trust 738AV LCD PV Mass Storage + 0111 PenCam VGA Plus + 2008 Mini PenCam 2 + 2010 Pocket CAM 3 Mega (webcam) + 2011 Pocket CAM 3 Mega (storage) + 2016 PocketCam 2 Mega + 2018 Pencam SD 2M + 2019 Pencam SD 2M (mass storage mode) + 2020 Slim 3000F + 2022 Slim 3200 + 2024 Pocket DV3500 + 2028 Pocket Cam4M + 2040 Pocket DV4100M + 2042 Pocket DV5100M Composite Device + 2043 Pocket DV5100M (Disk) + 2060 Pocket DV5300 +08cd Jue Hsun Ind. Corp. +08ce Long Well Electronics Corp. +08cf Productivity Enhancement Products +08d1 smartBridges, Inc. + 0001 smartNIC Ethernet [catc] + 0003 smartNIC 2 PnP Ethernet +08d3 Virtual Ink +08d4 Fujitsu Siemens Computers + 0009 SCR SmartCard Reader +08d8 IXXAT Automation GmbH + 0002 USB-to-CAN compact + 0003 USB-to-CAN II + 0100 USB-to-CAN +08d9 Increment P Corp. +08dd Billionton Systems, Inc. + 0112 Wireless LAN Adapter + 0113 Wireless LAN Adapter + 0986 USB-100N Ethernet [pegasus] + 0987 USBLP-100 HomePNA Ethernet [pegasus] + 0988 USBEL-100 Ethernet [pegasus] + 1986 10/100 LAN Adapter + 2103 DVB-T TV-Tuner Card-R + 8511 USBE-100 Ethernet [pegasus2] + 90ff USB2AR Ethernet +08de ??? + 7a01 802.11b Adapter +08df Spyrus, Inc. + 0001 Rosetta Token V1 + 0002 Rosetta Token V2 + 0003 Rosetta Token V3 + 0a00 Lynks Interface +08e3 Olitec, Inc. + 0002 USB-RS232 Bridge + 0100 Interface ADSL + 0101 Interface ADSL + 0102 ADSL + 0301 RNIS ISDN TA [HFC-S] +08e4 Pioneer Corp. + 0184 DDJ-WeGO + 0185 DDJ-WeGO2 +08e5 Litronic +08e6 Gemalto (was Gemplus) + 0001 GemPC-Touch 430 + 0430 GemPC430 SmartCard Reader + 0432 GemPC432 SmartCard Reader + 0435 GemPC435 SmartCard Reader + 0437 GemPC433 SL SmartCard Reader + 1359 UA SECURE STORAGE TOKEN + 2202 Gem e-Seal Pro Token + 3437 GemPC Twin SmartCard Reader + 3438 GemPC Key SmartCard Reader + 3478 PinPad Smart Card Reader + 34ec Compact Smart Card Reader Writer + 4433 GemPC433-Swap + 5501 GemProx-PU Contactless Smart Card Reader + 5503 Prox-DU Contactless Interface + ace0 UA HYBRID TOKEN +08e7 Pan-International Wire & Cable +08e8 Integrated Memory Logic +08e9 Extended Systems, Inc. + 0100 XTNDAccess IrDA Dongle +08ea Ericsson, Inc., Blue Ridge Labs + 00c9 ADSL Modem HM120dp Loader + 00ca ADSL WAN Modem HM120dp + 00ce HM230d Virtual Bus for Helium + abba USB Driver for Bluetooth Wireless Technology + abbb Bluetooth Device in DFU State +08ec M-Systems Flash Disk Pioneers + 0001 TravelDrive 2C + 0002 TravelDrive 2C + 0005 TravelDrive 2C + 0008 TravelDrive 2C + 0010 DiskOnKey + 0011 DiskOnKey + 0012 TravelDrive 2C + 0014 TravelDrive 2C + 0015 Kingston DataTraveler ELITE + 0016 Kingston DataTraveler U3 + 0020 TravelDrive Intuix U3 2GB + 0021 TravelDrive + 0022 TravelDrive + 0023 TravelDrive + 0024 TravelDrive + 0025 TravelDrive + 0026 TravelDrive + 0027 TravelDrive + 0028 TravelDrive + 0029 TravelDrive + 0030 TravelDrive + 0822 TravelDrive 2C + 0832 Hi-Speed Mass Storage Device + 0834 M-Disk 220 + 0998 Kingston Data Traveler2.0 Disk Driver + 0999 Kingston Data Traveler2.0 Disk Driver + 1000 TravelDrive 2C + 2000 TravelDrive 2C + 2038 TravelDrive + 2039 TravelDrive + 204a TravelDrive + 204b TravelDrive +08ed MediaTek Inc. + 0002 CECT M800 memory card +08ee CCSI/Hesso +08f0 Corex Technologies + 0005 CardScan 800c +08f1 CTI Electronics Corp. +08f2 Gotop Information Inc. + 007f Super Q2 Tablet +08f5 SysTec Co., Ltd +08f6 Logic 3 International, Ltd +08f7 Vernier + 0001 LabPro + 0002 EasyTemp/Go!Temp + 0003 Go!Link + 0004 Go!Motion +08f8 Keen Top International Enterprise Co., Ltd +08f9 Wipro Technologies +08fa Caere +08fb Socket Communications +08fc Sicon Cable Technology Co., Ltd +08fd Digianswer A/S + 0001 Bluetooth Device +08ff AuthenTec, Inc. + 1600 AES1600 + 1610 AES1600 + 1660 AES1660 Fingerprint Sensor + 1680 AES1660 Fingerprint Sensor + 168f AES1660 Fingerprint Sensor + 2500 AES2501 + 2501 AES2501 + 2502 AES2501 + 2503 AES2501 + 2504 AES2501 + 2505 AES2501 + 2506 AES2501 + 2507 AES2501 + 2508 AES2501 + 2509 AES2501 + 250a AES2501 + 250b AES2501 + 250c AES2501 + 250d AES2501 + 250e AES2501 + 250f AES2501 + 2510 AES2510 + 2550 AES2550 Fingerprint Sensor + 2580 AES2501 Fingerprint Sensor + 2588 AES2501 + 2589 AES2501 + 258a AES2501 + 258b AES2501 + 258c AES2501 + 258d AES2501 + 258e AES2501 + 258f AES2501 + 2660 AES2660 Fingerprint Sensor + 2680 AES2660 Fingerprint Sensor + 268f AES2660 Fingerprint Sensor + 2810 AES2810 + 3400 AES3400 TruePrint Sensor + 3401 AES3400 Sensor + 3402 AES3400 Sensor + 3403 AES3400 Sensor + 3404 AES3400 TruePrint Sensor + 3405 AES3400 TruePrint Sensor + 3406 AES3400 TruePrint Sensor + 3407 AES3400 TruePrint Sensor + 4902 BioMV with TruePrint AES3500 + 4903 BioMV with TruePrint AES3400 + 5500 AES4000 + 5501 AES4000 TruePrint Sensor + 5503 AES4000 TruePrint Sensor + 5505 AES4000 TruePrint Sensor + 5507 AES4000 TruePrint Sensor + 55ff AES4000 TruePrint Sensor. + 5700 AES3500 Fingerprint Reader + 5701 AES3500 TruePrint Sensor + 5702 AES3500 TruePrint Sensor + 5703 AES3500 TruePrint Sensor + 5704 AES3500-BZ TruePrint Sensor + 5705 AES3500-BZ TruePrint Sensor + 5706 AES3500-BZ TruePrint Sensor + 5707 AES3500-BZ TruePrint Sensor + 5710 AES3500 TruePrint Sensor + 5711 AES3500 TruePrint Sensor + 5712 AES3500 TruePrint Sensor + 5713 AES3500 TruePrint Sensor + 5714 AES3500-BZ TruePrint Sensor + 5715 AES3500-BZ TruePrint Sensor + 5716 AES3500-BZ TruePrint Sensor + 5717 AES3500-BZ TruePrint Sensor + 5730 AES3500 TruePrint Sensor + 5731 AES3500 TruePrint Sensor + 5732 AES3500 TruePrint Sensor + 5733 AES3500 TruePrint Sensor + 5734 AES3500-BZ TruePrint Sensor + 5735 AES3500-BZ TruePrint Sensor + 5736 AES3500-BZ TruePrint Sensor + 5737 AES3500-BZ TruePrint Sensor + afe3 FingerLoc Sensor Module (Anchor) + afe4 FingerLoc Sensor Module (Anchor) + afe5 FingerLoc Sensor Module (Anchor) + afe6 FingerLoc Sensor Module (Anchor) + fffd AES2510 Sensor (USB Emulator) + ffff Sensor (Emulator) +0900 Pinnacle Systems, Inc. +0901 VST Technologies + 0001 Hard Drive Adapter (TPP) + 0002 SigmaDrive Adapter (TPP) +0906 Faraday Technology Corp. +0908 Siemens AG + 01f4 SIMATIC NET CP 5711 + 01fe SIMATIC NET PC Adapter A2 + 04b1 MediSET + 04b2 NC interface + 04b3 keyboard front panel Cockpit + 04b4 SCR_CCID + 2701 ShenZhen SANZHAI Technology Co.,Ltd Spy Pen VGA +0909 Audio-Technica Corp. +090a Trumpion Microelectronics, Inc. + 1001 T33520 Flash Card Controller + 1100 Comotron C3310 MP3 player + 1200 MP3 player + 1540 Digitex Container Flash Disk +090b Neurosmith +090c Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.) + 0371 Silicon Motion SM371 Camera + 0373 Silicon Motion Camera + 037a Silicon Motion Camera + 037b Silicon Motion Camera + 037c 300k Pixel Camera + 1000 Flash Drive + 1132 5-in-1 Card Reader + 337b Silicon Motion Camera + 3710 Silicon Motion Camera + 3720 Silicon Motion Camera + 37bc HP Webcam-101 Integrated Camera + 37c0 Silicon Motion Camera + 6000 SD/SDHC Card Reader (SG365 / FlexiDrive XC+) + 6200 microSD card reader + 71b3 SM731 Camera + 837b Silicon Motion Camera + 937b Silicon Motion Camera + b370 Silicon Motion SM370 Camera + b371 Silicon Motion SM371 Camera + f37d Endoscope camera +090d Multiport Computer Vertriebs GmbH +090e Shining Technology, Inc. +090f Fujitsu Devices, Inc. +0910 Alation Systems, Inc. +0911 Philips Speech Processing + 0c1c SpeechMike III + 149a SpeechMike II Pro Plus LFH5276 + 2512 SpeechMike Pro +0912 Voquette, Inc. +0915 GlobeSpan, Inc. + 0001 DSL Modem + 0002 ADSL ATM Modem + 0005 LAN Modem + 2000 802.11 Adapter + 2002 802.11 Adapter + 8000 ADSL LAN Modem + 8005 DSL-302G Modem + 8101 ADSL WAN Modem + 8102 DSL-200 ADSL Modem + 8103 DSL-200 ADSL Modem + 8104 DSL-200 Modem + 8400 DSL Modem + 8401 DSL Modem + 8402 DSL Modem + 8500 DSL Modem + 8501 DSL Modem +0917 SmartDisk Corp. + 0001 eFilm Reader-11 SM/CF + 0002 eFilm Reader-11 SM + 0003 eFilm Reader-11 CF + 0200 FireFly + 0201 FireLite + 0202 STORAGE ADAPTER (FirePower) + 0204 FlashTrax Storage + 0205 STORAGE ADAPTER (CrossFire) + 0206 FireFly 20G HDD + 0207 FireLite + 020f STORAGE ADAPTER (FireLite) + da01 eFilm Reader-11 Test + ffff eFilm Reader-11 (Class/PDR) +0919 Tiger Electronics + 0100 Fast Flicks Digital Camera +091e Garmin International + 0003 GPS (various models) + 0004 iQue 3600 + 0200 Data Card Programmer (install) + 086e Forerunner 735XT + 097f Forerunner 235 + 1200 Data Card Programmer + 21a5 etrex Cx (msc) + 2236 nuvi 360 + 2271 Edge 605/705 + 2295 Colorado 300 + 22b6 eTrex Vista HCx (Mass Storage mode) + 231b Oregon 400t + 2353 Nüvi 205T + 2380 Oregon series + 23cc nüvi 1350 + 2459 GPSmap 62/78 series + 2491 Edge 800 + 2518 eTrex 10 + 2519 eTrex 30 + 2535 Edge 800 + 253c GPSmap 62sc + 255b Nuvi 2505LM + 2613 Edge 200 TWN + 26a1 Nuvi 55 + 2802 fenix 3 + 28db Drive 5 + 47fb nuviCam + 4cdb Fenix 6 +0920 Echelon Co. + 7500 Network Interface +0921 GoHubs, Inc. + 1001 GoCOM232 Serial +0922 Dymo-CoStar Corp. + 0007 LabelWriter 330 + 0009 LabelWriter 310 + 0013 LabelManager 400 + 0019 LabelWriter 400 + 001a LabelWriter 400 Turbo + 0020 LabelWriter 450 + 0400 LabelWriter SE450 + 1001 LabelManager PnP + 8003 M10 Digital Postal Scale + 8004 M25 Digital Postal Scale + 8009 S250 Digital Postal Scale +0923 IC Media Corp. + 010f SIIG MobileCam +0924 Xerox + 23dd DocuPrint M760 (X760_USB) + 3ce8 Phaser 3428 Printer + 3cea Phaser 3125 + 3cec Phaser 3250 + 3d5b Phaser 6115MFP TWAIN Scanner + 3d6d WorkCentre 6015N/NI + 420f WorkCentre PE220 Series + 421f M20 Scanner + 423b Printing Support + 4274 Xerox Phaser 3635MFPX + ffef WorkCenter M15 + fffb DocuPrint M750 (X750_USB) +0925 Lakeview Research + 0005 Gamtec.,Ltd SmartJoy PLUS Adapter + 03e8 Wii Classic Controller Adapter + 1031 WiseGroup Ltd, Gameport Controller + 1700 PS/SS/N64 Joypad + 3881 Saleae Logic + 8101 Phidgets, Inc., 1-Motor PhidgetServo v2.0 + 8104 Phidgets, Inc., 4-Motor PhidgetServo v2.0 + 8800 WiseGroup Ltd, MP-8800 Quad Joypad + 8866 WiseGroup Ltd, MP-8866 Dual Joypad +0927 Summus, Ltd +0928 PLX Technology, Inc. (formerly Oxford Semiconductor, Ltd) + 8000 Firmware uploader + ffff Blank Oxford Device +0929 American Biometric Co. +092a Toshiba Information & Industrial Sys. And Services +092b Sena Technologies, Inc. + 4210 20S - Bluetooth Motorcycle headset & universal intercom +092f Northern Embedded Science/CAVNEX + 0004 JTAG-4 + 0005 JTAG-5 +0930 Toshiba Corp. + 0009 Gigabeat F/X (HDD audio player) + 000c Gigabeat F (mtp) + 0010 Gigabeat S (mtp) + 01bf 2.5"External Hard Disk + 0200 Integrated Bluetooth (Taiyo Yuden) + 021c Atheros AR3012 Bluetooth + 0301 PCX1100U Cable Modem (WDM) + 0302 PCX2000 Cable Modem (WDM) + 0305 Cable Modem PCX3000 + 0307 Cable Modem PCX2500 + 0308 PCX2200 Cable Modem (WDM) + 0309 PCX5000 Cable Modem (WDM) + 030b Cable Modem PCX2600 + 0501 Bluetooth Controller + 0502 Integrated Bluetooth + 0503 Bluetooth Controller + 0505 Integrated Bluetooth + 0506 Integrated Bluetooth + 0507 Bluetooth Adapter + 0508 Integrated Bluetooth HCI + 0509 BT EDR Dongle + 0706 PocketPC e740 + 0707 Pocket PC e330 Series + 0708 Pocket PC e350 Series + 0709 Pocket PC e750 Series + 070a Pocket PC e400 Series + 070b Pocket PC e800 Series + 0a07 WLM-10U1 802.11abgn Wireless Adapter [Ralink RT3572] + 0a08 WLM-20U2/GN-1080 802.11abgn Wireless Adapter [Atheros AR7010+AR9280] + 0a0b WLU5053 802.11abgn Wireless Module [Broadcom BCM43236B] + 0a13 AX88179 Gigabit Ethernet [Toshiba] + 0b05 PX1220E-1G25 External hard drive + 0b09 PX1396E-3T01 External hard drive + 0b1a STOR.E ALU 2S + 1300 Wireless Broadband (CDMA EV-DO) SM-Bus Minicard Status Port + 1301 Wireless Broadband (CDMA EV-DO) Minicard Status Port + 1302 Wireless Broadband (3G HSDPA) SM-Bus Minicard Status Port + 1303 Wireless Broadband (3G HSDPA) Minicard Status Port + 1308 Broadband (3G HSDPA) SM-Bus Minicard Diagnostics Port + 130b F3507g Mobile Broadband Module + 130c F3607gw Mobile Broadband Module + 1311 F3607gw v2 Mobile Broadband Module + 1400 Memory Stick 2GB + 140b Memory Stick 64GB + 642f TravelDrive + 6506 TravelDrive 2C + 6507 TravelDrive 2C + 6508 TravelDrive 2C + 6509 TravelDrive 2C + 6510 TravelDrive 2C + 6517 TravelDrive 2C + 6518 TravelDrive 2C + 6519 Kingston DataTraveler 2.0 USB Stick + 651a TravelDrive 2C + 651b TravelDrive 2C + 651c TravelDrive 2C + 651d TravelDrive 2C + 651e TravelDrive 2C + 651f TravelDrive 2C + 6520 TravelDrive 2C + 6521 TravelDrive 2C + 6522 TravelDrive 2C + 6523 TravelDrive + 6524 TravelDrive + 6525 TravelDrive + 6526 TravelDrive + 6527 TravelDrive + 6528 TravelDrive + 6529 TravelDrive + 652a TravelDrive + 652b TravelDrive + 652c TravelDrive + 652d TravelDrive + 652f TravelDrive + 6530 TravelDrive + 6531 TravelDrive + 6532 256M Stick + 6533 512M Stick + 6534 TravelDrive + 653c Kingston DataTraveler 2.0 Stick (512M) + 653d Kingston DataTraveler 2.0 Stick (1GB) + 653e Flash Memory + 6540 TransMemory Flash Memory + 6544 TransMemory-Mini / Kingston DataTraveler 2.0 Stick + 6545 Kingston DataTraveler 102/2.0 / HEMA Flash Drive 2 GB / PNY Attache 4GB Stick + a002 SunplusIT SATA bridge +0931 Harmonic Data Systems, Ltd +0932 Crescentec Corp. + 0300 VideoAdvantage + 0302 Syntek DC-112X + 0320 VideoAdvantage + 0482 USB2.0 TVBOX + 1100 DC-1100 Video Enhamcement Device + 1112 Veo Web Camera + a311 Video Enhancement Device +0933 Quantum Corp. +0934 Spirent Communications +0936 NuTesla + 000a Moebius + 000b iMoebius + 000c Rhythmedics 6 BioData Integrator + 000d Hypurius + 000e Millennius + 000f Purius + 0030 Composite Device, Mass Storage Device (Flash Drive) amd HID + 003c Rhythmedics HID Bootloader +0939 Lumberg, Inc. + 0b15 Toshiba Stor.E Alu 2 + 0b16 Toshiba StorE HDD +093a Pixart Imaging, Inc. + 0007 CMOS 100K-R Rev. 1.90 + 010e Digital camera, CD302N/Elta Medi@ digi-cam/HE-501A + 010f Argus DC-1610/DC-1620/Emprex PCD3600/Philips P44417B keychain camera/Precision Mini,Model HA513A/Vivitar Vivicam 55 + 020f Bullet Line Photo Viewer + 050f Mars-Semi Pc-Camera + 2460 Q-TEC WEBCAM 100 + 2468 SoC PC-Camera + 2470 SoC PC-Camera + 2471 SoC PC-Camera + 2500 USB Optical Mouse + 2510 Optical Mouse + 2521 Optical Mouse + 2600 Typhoon Easycam USB 330K (newer)/Typhoon Easycam USB 2.0 VGA 1.3M/Sansun SN-508 + 2601 SPC 610NC Laptop Camera + 2603 PAC7312 Camera + 2608 PAC7311 Trust WB-3300p + 260e PAC7311 Gigaware VGA PC Camera:Trust WB-3350p:SIGMA cam 2350 + 260f PAC7311 SnakeCam + 2621 PAC731x Trust Webcam + 2622 Webcam Genius + 2624 Webcam + 2628 Webcam Genius iLook 300 + 2700 GE 1.3 MP MiniCam Pro +093b Plextor Corp. + 0010 Storage Adapter + 0011 PlexWriter 40/12/40U + 0012 PlexWriter 48/24/48U + 0041 PX-708A DVD RW + 0042 PX-712UF DVD RW + a002 ConvertX M402U XLOADER + a003 ConvertX AV100U A/V Capture Audio + a004 ConvertX TV402U XLOADER + a005 ConvertX TV100U A/V Capture + a102 ConvertX M402U A/V Capture + a104 ConvertX PX-TV402U/NA +093c Intrepid Control Systems, Inc. + 0601 ValueCAN + 0701 NeoVI Blue vehicle bus interface +093d InnoSync, Inc. +093e J.S.T. Mfg. Co., Ltd +093f Olympia Telecom Vertriebs GmbH +0940 Japan Storage Battery Co., Ltd +0941 Photobit Corp. +0942 i2Go.com, LLC +0943 HCL Technologies India Private, Ltd +0944 KORG, Inc. + 0001 PXR4 4-Track Digital Recorder + 0020 KAOSS Pad KP3 Dynamic Effect/Sampler + 0023 KAOSSILATOR PRO Dynamic Phrase Synthesizer + 010d nanoKEY MIDI keyboard + 010e nanoPAD pad controller + 010f nanoKONTROL studio controller + 0117 nanoKONTROL2 MIDI Controller + 0f03 K-Series K61P MIDI studio controller +0945 Pasco Scientific +0948 Kronauer music in digital + 0301 USB Pro (24/48) + 0302 USB Pro (24/96 playback) + 0303 USB Pro (24/96 record) + 0304 USB Pro (16/48) + 1105 USB One +094b Linkup Systems Corp. + 0001 neonode N2 +094d Cable Television Laboratories +094f Yano + 0101 U640MO-03 + 05fc METALWEAR-HDD +0951 Kingston Technology + 0008 Ethernet + 000a KNU101TX 100baseTX Ethernet + 1539 Iron Key D300 (Virtual CD-ROM and USB Stick) + 1600 DataTraveler II Pen Drive + 1601 DataTraveler II+ Pen Drive + 1602 DataTraveler Mini + 1603 DataTraveler 1GB/2GB Pen Drive + 1606 Eee PC 701 SD Card Reader [ENE UB6225] + 1607 DataTraveler 100 + 160b DataTraveler 2.0 (2GB) + 160d DataTraveler Vault Privacy + 160e DT110P/1GB Capless + 1613 DataTraveler DT101C Flash Drive + 1616 DataTraveler Locker 4GB + 161a Dell HyperVisor internal flash drive + 1621 DataTraveler 150 (32GB) + 1624 DataTraveler G2 + 1625 DataTraveler 101 II + 162a DataTraveler 112 4GB Pen Drive + 162b DataTraveler HyperX 3.0 + 162d DataTraveler 102 + 1630 DataTraveler 200 (32GB) + 1642 DT101 G2 + 1643 DataTraveler G3 + 1653 Data Traveler 100 G2 8 GiB + 1656 DataTraveler Ultimate G2 + 1660 Data Traveller 108 + 1665 Digital DataTraveler SE9 + 1666 DataTraveler 100 G3/G4/SE9 G2/50 + 1689 DataTraveler SE9 + 168a DataTraveler Micro + 168c DT Elite 3.0 + 16a4 HyperX 7.1 Audio + 16b3 HyperX Savage + 16d2 HX-KB4BL1-US [HYPERX Alloy FPS Pro] + 16d4 HyperX SavageEXO [0382] + 16d5 DataTraveler Elite G2 + 16df HyperX QuadCast + 16e4 HyperX Pulsefire Raid +0954 RPM Systems Corp. +0955 NVIDIA Corp. + 7005 Bootloader + 7018 T186 [Tegra Parker] + 701a U-Boot running on Tegra + 7020 L4T (Linux for Tegra) running on Tegra + 7030 T30 [Tegra 3] recovery mode + 7100 Tegra Device + 7140 T124 [Tegra K1/Logan 32-bit] + 7210 SHIELD Controller + 7321 Switch [Tegra Erista] recovery mode + 7721 T210 [TX1 Tegra Erista] recovery mode + 7820 T20 [Tegra 2] recovery mode + 7c18 T186 [TX2 Tegra Parker] recovery mode + b400 SHIELD (debug) + b401 SHIELD + cf05 SHIELD Tablet (debug) + cf06 SHIELD Tablet + cf07 SHIELD Tablet + cf08 SHIELD Tablet + cf09 SHIELD Tablet +0956 BSquare Corp. +0957 Agilent Technologies, Inc. + 0200 E-Video DC-350 Camera + 0202 E-Video DC-350 Camera + 0407 33220A Waveform Generator + 0518 82357B GPIB Interface + 0a07 34411A Multimeter + 1507 33210A Waveform Generator + 1745 Test and Measurement Device (IVI) + 1f01 N5181A MXG Analog Signal Generator + 2918 U2702A oscilloscope + fb18 LC Device +0958 CompuLink Research, Inc. +0959 Cologne Chip AG + 2bd0 Intelligent ISDN (Ver. 3.60.04) [HFC-S] +095a Portsmith + 3003 Express Ethernet +095b Medialogic Corp. +095c K-Tec Electronics +095d Polycom, Inc. + 0001 Polycom ViaVideo +0964 BITRAN +0967 Acer NeWeb Corp. + 0204 WarpLink 802.11b Adapter +0968 Catalyst Enterprises, Inc. +096e Feitian Technologies, Inc. + 0005 ePass2000 + 0006 HID Dongle (for OEMs - manufacturer string is "OEM") + 0120 Microcosm Ltd Dinkey + 0305 ePass2000Auto + 0309 ePass3000GM + 0401 ePass3000 + 0405 Zzkey Dongle + 0608 SC Reader KP382 + 0702 ePass3003 + 0703 ePass3003Auto + 0802 ePass2000 (G&D STARCOS SPK 2.4) + 0807 ePass2003 +0971 Gretag-Macbeth AG + 2000 i1 Pro + 2001 i1 Monitor + 2003 Eye-One display + 2005 Huey + 2007 ColorMunki Photo +0973 Schlumberger + 0001 e-gate Smart Card +0974 Datagraphix, a business unit of Anacomp +0975 OL'E Communications, Inc. +0976 Adirondack Wire & Cable +0977 Lightsurf Technologies +0978 Beckhoff GmbH +0979 Jeilin Technology Corp., Ltd + 0222 Keychain Display + 0224 JL2005A Toy Camera + 0226 JL2005A Toy Camera + 0227 JL2005B/C/D Toy Camera +097a Minds At Work LLC + 0001 Digital Wallet +097b Knudsen Engineering, Ltd +097c Marunix Co., Ltd +097d Rosun Technologies, Inc. +097e Biopac Systems Inc. + 0035 MP35 v1.0 +097f Barun Electronics Co., Ltd +0981 Oak Technology, Ltd +0984 Apricorn + 0040 SATA Wire (2.5") + 0200 Hard Drive Storage (TPP) + 1407 Secure Key 3.0 +0985 cab Produkttechnik GmbH & Co KG + 0045 Mach4/200 Label Printer + 00a3 A3/200 or A3/300 Label Printer +0986 Matsushita Electric Works, Ltd. +098c Vitana Corp. +098d INDesign +098e Integrated Intellectual Property, Inc. +098f Kenwood TMI Corp. +0993 Gemstar eBook Group, Ltd + 0001 REB1100 eBook Reader + 0002 eBook +0996 Integrated Telecom Express, Inc. +099a Zippy Technology Corp. + 0638 Sanwa Supply Inc. Small Keyboard + 2620 Graphics tablet [Polostar PT1001, Zeniq PT1001, Leogics PT1001] + 610c EL-610 Super Mini Electron luminescent Keyboard + 6330 SANWA Supply Inc. Slim Keyboard + 713a WK-713 Multimedia Keyboard + 7160 Hyper Slim Keyboard +099e Trimble Navigation, Ltd +09a3 PairGain Technologies +09a4 Contech Research, Inc. +09a5 VCON Telecommunications +09a6 Poinchips + 8001 Mass Storage Device +09a7 Data Transmission Network Corp. +09a8 Lin Shiung Enterprise Co., Ltd +09a9 Smart Card Technologies Co., Ltd +09aa Intersil Corp. + 1000 Prism GT 802.11b/g Adapter + 3642 Prism 2.x 802.11b Adapter +09ab Japan Cash Machine Co., Ltd. +09ae Tripp Lite + 0002 Any Device (see discussion) +09b0 Fargo + 2400 HDP5000 +09b2 Franklin Electronic Publishers, Inc. + 0001 eBookman Palm Computer +09b3 Altius Solutions, Inc. +09b4 MDS Telephone Systems +09b5 Celltrix Technology Co., Ltd +09bc Grundig + 0002 MPaxx MP150 MP3 Player +09be MySmart.Com + 0001 MySmartPad +09bf Auerswald GmbH & Co. KG + 00c0 COMpact 2104 ISDN PBX + 00db COMpact 4410/2206 ISDN + 00dc COMpact 4406 DSL (PBX) + 00dd COMpact 2204 (PBX) + 00de COMpact 2104 (Rev.2 PBX) + 00e0 COMmander Business (PBX) + 00e2 COMmander Basic.2 (PBX) + 00f1 COMfort 2000 (System telephone) + 00f2 COMfort 1200 (System telephone) + 00f5 COMfortel 2500 (System telephone) + 8000 COMpact 2104 DSL (DSL modem) + 8001 COMpact 4406 DSL (DSL modem) + 8002 Analog/ISDN Converter (Line converter) + 8005 WG-640 (Automatic event dialer) +09c0 Genpix Electronics, LLC + 0136 Axon CNS, MultiClamp 700B + 0202 8PSK DVB-S tuner + 0203 Skywalker-1 DVB-S tuner + 0204 Skywalker-CW3K DVB-S tuner + 0205 Skywalker-CW3K DVB-S tuner + 0206 Skywalker-2 DVB-S tuner +09c1 Arris Interactive LLC + 1337 TOUCHSTONE DEVICE +09c2 Nisca Corp. +09c3 HID Global + 0007 Reader V2 + 0008 ZFG-9800-AC SmartCard Reader + 0014 ActivIdentity ActivKey SIM USB Token + 0028 Crescendo Key + 0029 Crescendo Key + 002a Crescendo Key + 002b Crescendo Key + 002c Crescendo Key + 002e Crescendo Key +09c4 ACTiSYS Corp. + 0011 ACT-IR2000U IrDA Dongle +09c5 Memory Corp. +09ca BMC Messsysteme GmbH + 5544 PIO +09cb FLIR Systems + 1001 Network Adapter + 1002 Ex-Series RNDIS interface + 1004 Ex-Series UVC interface + 1005 Ex-Series RNDIS and UVC interface + 1006 Ex-Series RNDIS and MSD interface + 1007 Ex-Series UVC and MSD interface + 1008 Serial Port + 1996 FLIR ONE Camera + 4007 Breach +09cc Workbit Corp. + 0404 BAFO USB-ATA/ATAPI Bridge Controller +09cd Psion Dacom Home Networks, Ltd + 2001 Psion WaveFinder DAB radio receiver +09ce City Electronics, Ltd +09cf Electronics Testing Center, Taiwan +09d1 NeoMagic, Inc. +09d2 Vreelin Engineering, Inc. +09d3 Com One + 0001 ISDN TA / Light Rider 128K + 000b Bluetooth Adapter class 2 +09d7 Hexagon NovAtel Inc. + 0100 GPS/GNSS/SPAN sensor +09d8 ELATEC GmbH + 0320 TWN3 Multi125 + 0406 TWN4 MIFARE NFC +09d9 KRF Tech, Ltd +09da A4Tech Co., Ltd. + 0006 Optical Mouse WOP-35 / Trust 450L Optical Mouse + 000a Optical Mouse Opto 510D / OP-620D + 000e X-F710F Optical Mouse 3xFire Gaming Mouse + 0018 Trust Human Interface Device + 001a Wireless Mouse & RXM-15 Receiver + 002a Wireless Optical Mouse NB-30 + 022b Wireless Mouse (Battery Free) + 024f RF Receiver and G6-20D Wireless Optical Mouse + 0260 KV-300H Isolation Keyboard + 032b Wireless Mouse (Battery Free) + 09da Bloody V8 Mouse + 1068 Bloody A90 Mouse + 112c Bloody V5 Mouse + 3a60 Bloody V8M Core 2 Mouse + 8090 X-718BK Oscar Optical Gaming Mouse + 9033 X-718BK Optical Mouse + 9066 F3 V-Track Gaming Mouse + 9090 XL-730K / XL-750BK / XL-755BK Mice + f613 Bloody V7M Mouse +09db Measurement Computing Corp. + 0075 MiniLab 1008 + 0076 PMD-1024 + 007a PMD-1208LS + 0081 USB-1616FS + 0082 USB-1208FS + 0088 USB-1616FS internal hub +09dc Aimex Corp. +09dd Fellowes, Inc. +09df Addonics Technologies Corp. +09e1 Intellon Corp. + 5121 MicroLink dLAN +09e5 Jo-Dan International, Inc. +09e6 Silutia, Inc. +09e7 Real 3D, Inc. +09e8 AKAI Professional M.I. Corp. + 0045 MPK Mini Mk II MIDI Controller + 0062 MPD16 MIDI Pad Controller Unit + 006d EWI electronic wind instrument + 0071 MPK25 MIDI Keyboard + 0076 LPK25 MIDI Keyboard +09e9 Chen-Source, Inc. +09eb IM Networks, Inc. + 4331 iRhythm Tuner Remote +09ef Xitel + 0101 MD-Port DG2 MiniDisc Interface +09f3 GoFlight, Inc. + 0018 GF-46 Multi-Mode Display Module + 0028 RP-48 Combination Pushbutton-Rotary Module + 0048 LGTII - Landing Gear and Trim Control Module + 0064 MCPPro - Airliner Mode Control Panel (Autopilot) + 0300 EFIS - Electronic Flight Information System +09f5 AresCom + 0168 Network Adapter + 0188 LAN Adapter + 0850 Adapter +09f6 RocketChips, Inc. +09f7 Edu-Science (H.K.), Ltd +09f8 SoftConnex Technologies, Inc. +09f9 Bay Associates +09fa Mtek Vision +09fb Altera + 6001 Blaster +09ff Gain Technology Corp. +0a00 Liquid Audio +0a01 ViA, Inc. +0a05 Unknown Manufacturer + 0001 Hub + 7211 hub +0a07 Ontrak Control Systems Inc. + 0064 ADU100 Data Acquisition Interface + 0078 ADU120 Data Acquisition Interface + 0082 ADU130 Data Acquisition Interface + 00c8 ADU200 Relay I/O Interface + 00d0 ADU208 Relay I/O Interface + 00da ADU218 Solid-State Relay I/O Interface +0a0b Cybex Computer Products Co. +0a0d Servergy, Inc + 2514 CTS-1000 Internal Hub +0a11 Xentec, Inc. +0a12 Cambridge Silicon Radio, Ltd + 0001 Bluetooth Dongle (HCI mode) + 0002 Frontline Test Equipment Bluetooth Device + 0003 Nanosira + 0004 Nanosira WHQL Reference Radio + 0005 Nanosira-Multimedia + 0006 Nanosira-Multimedia WHQL Reference Radio + 0007 Nanosira3-ROM + 0008 Nanosira3-ROM + 0009 Nanosira4-EDR WHQL Reference Radio + 000a Nanosira4-EDR-ROM + 000b Nanosira5-ROM + 0042 SPI Converter + 0043 Bluetooth Device + 0100 Casira with BlueCore2-External Module + 0101 Casira with BlueCore2-Flash Module + 0102 Casira with BlueCore3-Multimedia Module + 0103 Casira with BlueCore3-Flash Module + 0104 Casira with BlueCore4-External Module + 0105 Casira with BlueCore4-Multimedia Module + 1000 Bluetooth Dongle (HID proxy mode) + 1010 Bluetooth Device + 1011 Bluetooth Device + 1012 Bluetooth Device + ffff USB Bluetooth Device in DFU State +0a13 Telebyte, Inc. +0a14 Spacelabs Medical, Inc. +0a15 Scalar Corp. +0a16 Trek Technology (S) PTE, Ltd + 1111 ThumbDrive + 8888 IBM USB Memory Key + 9988 Trek2000 TD-G2 +0a17 Pentax Corp. + 0004 Optio 330 + 0006 Optio S / S4 + 0007 Optio 550 + 0009 Optio 33WR + 000a Optio 555 + 000c Optio 43WR (mass storage mode) + 000d Optio 43WR + 0015 Optio S40/S5i + 003b Optio 50 (mass storage mode) + 003d Optio S55 + 0041 Optio S5z + 0043 *ist DL + 0047 Optio S60 + 0052 Optio 60 Digital Camera + 006e K10D + 0070 K100D + 0093 K200D + 00a7 Optio E50 + 1001 EI2000 Camera powered by Digita! +0a18 Heidelberger Druckmaschinen AG +0a19 Hua Geng Technologies, Inc. +0a21 Medtronic Physio Control Corp. + 8001 MMT-7305WW [Medtronic Minimed CareLink] +0a22 Century Semiconductor USA, Inc. +0a27 Datacard Group + 0102 SP35 +0a2c AK-Modul-Bus Computer GmbH + 0008 GPIO Ports +0a34 TG3 Electronics, Inc. + 0101 TG82tp + 0110 Deck 82-key backlit keyboard +0a35 Radikal Technologies + 002a SAC - Software Assigned Controller + 008a SAC Hub +0a39 Gilat Satellite Networks, Ltd +0a3a PentaMedia Co., Ltd + 0163 KN-W510U 1.0 Wireless LAN Adapter +0a3c NTT DoCoMo, Inc. +0a3d Varo Vision +0a3f Swissonic AG +0a43 Boca Systems, Inc. +0a46 Davicom Semiconductor, Inc. + 0268 ST268 + 6688 ZT6688 Fast Ethernet Adapter + 8515 ADMtek ADM8515 NIC + 9000 DM9000E Fast Ethernet Adapter + 9601 DM9601 Fast Ethernet Adapter +0a47 Hirose Electric +0a48 I/O Interconnect + 3233 Multimedia Card Reader + 3239 Multimedia Card Reader + 3258 Dane Elec zMate SD Reader + 3259 Dane Elec zMate CF Reader + 5000 MediaGear xD-SM + 500a Mass Storage Device + 500f Mass Storage Device + 5010 Mass Storage Device + 5011 Mass Storage Device + 5014 Mass Storage Device + 5020 Mass Storage Device + 5021 Mass Storage Device + 5022 Mass Storage Device + 5023 Mass Storage Device + 5024 Mass Storage Device + 5025 Mass Storage Device +0a4a Ploytec GmbH + a400 AUDIO JUNCTION 2.0 +0a4b Fujitsu Media Devices, Ltd +0a4c Computex Co., Ltd + 15d9 OPTICAL MOUSE +0a4d Evolution Electronics, Ltd + 0064 MK-225 Driver + 0065 MK-225C Driver + 0066 MK-225C Driver + 0067 MK-425C Driver + 0078 MK-37 Driver + 0079 MK-37C Driver + 007a MK-37C Driver + 008c TerraTec MIDI MASTER + 008d MK-249C Driver + 008e MK-249C MIDI Keyboard + 008f MK-449C Driver + 0090 Keystation 49e Driver + 0091 Keystation 61es Driver + 00a0 MK-361 Driver + 00a1 MK-361C Driver + 00a2 MK-361C Driver + 00a3 MK-461C MIDI Keyboard + 00b5 Keystation Pro 88 Driver + 00d2 E-Keys Driver + 00f0 UC-16 Driver + 00f1 X-Session Driver + 00f5 UC-33e MIDI Controller +0a4e Steinberg Soft-und Hardware GmbH +0a4f Litton Systems, Inc. +0a50 Mimaki Engineering Co., Ltd +0a51 Sony Electronics, Inc. +0a52 Jebsee Electronics Co., Ltd +0a53 Portable Peripheral Co., Ltd + 1000 Scanner + 2000 Q-Scan A6 Scanner + 2001 Q-Scan A6 Scanner + 2013 Media Drive A6 Scanner + 2014 Media Drive A6 Scanner + 2015 BizCardReader 600C + 2016 BizCardReader 600C + 202a Scanshell-CSSN + 3000 Q-Scan A8 Scanner + 3002 Q-Scan A8 Reader + 3015 BizCardReader 300G + 302a LM9832 - PA570 Mini Business Card Scanner [Targus] + 5001 BizCardReader 900C +0a5a Electronics For Imaging, Inc. +0a5b EAsics NV +0a5c Broadcom Corp. + 0201 iLine10(tm) Network Adapter + 0bdc 802.11a/b/g/n/ac Wireless Adapter + 2000 Bluetooth Device + 2001 Bluetooth Device + 2009 BCM2035 Bluetooth + 200a BCM2035 Bluetooth dongle + 200f Bluetooth Controller + 201d Bluetooth Device + 201e IBM Integrated Bluetooth IV + 2020 Bluetooth dongle + 2021 BCM2035B3 Bluetooth Adapter + 2033 BCM2033 Bluetooth + 2035 BCM2035 Bluetooth + 2038 Blutonium Device + 2039 BCM2045 Bluetooth + 2045 Bluetooth Controller + 2046 Bluetooth Device + 2047 Bluetooth Device + 205e Bluetooth Device + 2100 Bluetooth 2.0+eDR dongle + 2101 BCM2045 Bluetooth + 2102 ANYCOM Blue USB-200/250 + 2110 BCM2045B (BDC-2) [Bluetooth Controller] + 2111 ANYCOM Blue USB-UHE 200/250 + 2120 2045 Bluetooth 2.0 USB-UHE Device with trace filter + 2121 BCM2210 Bluetooth + 2122 Bluetooth 2.0+EDR dongle + 2123 Bluetooth dongle + 2130 2045 Bluetooth 2.0 USB-UHE Device with trace filter + 2131 2045 Bluetooth 2.0 Device with trace filter + 2145 BCM2045B (BDC-2.1) [Bluetooth Controller] + 2148 BCM92046DG-CL1ROM Bluetooth 2.1 Adapter + 2150 BCM2046 Bluetooth Device + 2151 Bluetooth + 2154 BCM92046DG-CL1ROM Bluetooth 2.1 UHE Dongle + 216a BCM43142A0 Bluetooth + 216c BCM43142A0 Bluetooth Device + 216d BCM43142A0 Bluetooth 4.0 + 216f BCM20702A0 Bluetooth + 217d HP Bluethunder + 217f BCM2045B (BDC-2.1) + 2198 Bluetooth 3.0 Device + 219b Bluetooth 2.1 Device + 21b1 HP Bluetooth Module + 21b4 BCM2070 Bluetooth 2.1 + EDR + 21b9 BCM2070 Bluetooth 2.1 + EDR + 21ba BCM2070 Bluetooth 2.1 + EDR + 21bb BCM2070 Bluetooth 2.1 + EDR + 21bc BCM2070 Bluetooth 2.1 + EDR + 21bd BCM2070 Bluetooth 2.1 + EDR + 21d7 BCM43142 Bluetooth 4.0 + 21e1 HP Portable SoftSailing + 21e3 HP Portable Valentine + 21e6 BCM20702 Bluetooth 4.0 [ThinkPad] + 21e8 BCM20702A0 Bluetooth 4.0 + 21ec BCM20702A0 Bluetooth 4.0 + 21f1 HP Portable Bumble Bee + 22be BCM2070 Bluetooth 3.0 + HS + 4500 BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth) + 4502 Keyboard (Boot Interface Subclass) + 4503 Mouse (Boot Interface Subclass) + 5800 BCM5880 Secure Applications Processor + 5801 BCM5880 Secure Applications Processor with fingerprint swipe sensor + 5802 BCM5880 Secure Applications Processor with fingerprint touch sensor + 5803 BCM5880 Secure Applications Processor with secure keyboard + 5804 BCM5880 Secure Applications Processor with fingerprint swipe sensor + 6300 Pirelli Remote NDIS Device + 6410 BCM20703A1 Bluetooth 4.1 + LE + bd11 BCM4320 802.11bg Wireless Adapter + bd12 BCM4326U 802.11bg Wireless Adapter + bd13 BCM4323 802.11abgn Wireless Adapter + bd16 BCM4319 802.11bgn Wireless Adapter + bd17 BCM43236 802.11abgn Wireless Adapter + bd1d BCM43526 802.11a/b/g/n/ac (2x2) Wireless Adapter + bd1e BCM43143 802.11bgn (1x1) Wireless Adapter + bd1f BCM43242 802.11abgn Wireless Adapter + d11b Eminent EM4045 [Broadcom 4320 USB] +0a5d Diatrend Corp. +0a5f Zebra + 0009 LP2844 Printer + 0050 P120i / WM120i + 0080 GK420d Label Printer + 0081 GK420t Label Printer + 0084 GX420d Desktop Label Printer + 008b HC100 wristbands Printer + 008c ZP 450 Printer + 00d1 Zebra GC420d Label Printer + 0110 ZD500 Desktop Label Printer + 930a Printer +0a62 MPMan + 0010 MPMan MP-F40 MP3 Player +0a66 ClearCube Technology +0a67 Medeli Electronics Co., Ltd +0a68 Comaide Corp. +0a69 Chroma ate, Inc. +0a6b Green House Co., Ltd + 0001 Compact Flash R/W with MP3 player + 000f FlashDisk +0a6c Integrated Circuit Systems, Inc. +0a6d UPS Manufacturing +0a6e Benwin +0a6f Core Technology, Inc. + 0400 Xanboo +0a70 International Game Technology +0a71 VIPColor Technologies USA, Inc. + 0001 VP485 Printer +0a72 Sanwa Denshi +0a73 Mackie Designs + 0002 XD-2 [Spike] +0a7d NSTL, Inc. +0a7e Octagon Systems Corp. +0a80 Rexon Technology Corp., Ltd +0a81 Chesen Electronics Corp. + 0101 Keyboard + 0103 Keyboard + 0203 Mouse + 0205 PS/2 Keyboard+Mouse Adapter + 0701 USB Missile Launcher + ff01 Wireless Missile Launcher +0a82 Syscan + 4600 TravelScan 460/464 + 6605 ScanShell 800N +0a83 NextComm, Inc. +0a84 Maui Innovative Peripherals +0a85 Idexx Labs +0a86 NITGen Co., Ltd +0a89 Aktiv + 0001 Guardant Stealth/Net + 0002 Guardant ID + 0003 Guardant Stealth 2 + 0004 Rutoken + 0005 Guardant Fidus + 0006 Guardant Stealth 3 + 0007 Guardant Stealth 2 + 0008 Guardant Stealth 3 Sign/Time + 0009 Guardant Code + 000a Guardant Sign Pro + 000b Guardant Sign Pro HID + 000c Guardant Stealth 3 Sign/Time + 000d Guardant Code HID + 000f Guardant System Firmware Update + 0020 Rutoken S + 0025 Rutoken lite + 0026 Rutoken lite HID + 002a Rutoken Mass Storage + 002b Guardant Mass Storage + 0030 Rutoken ECP + 0040 Rutoken ECP HID + 0060 Rutoken Magistra + 0061 Rutoken Magistra + 0069 Reader + 0080 Rutoken PinPad Ex + 0081 Rutoken PinPad In + 0082 Rutoken PinPad 2 +0a8d Picturetel +0a8e Japan Aviation Electronics Industry, Ltd + 2011 Filter Driver For JAE XMC R/W +0a90 Candy Technology Co., Ltd +0a91 Globlink Technology, Inc. + 3801 Targus PAKP003 Mouse +0a92 EGO SYStems, Inc. + 0011 SYS WaveTerminal U2A + 0021 GIGAPort + 0031 GIGAPortAG + 0053 AudioTrak Optoplay + 0061 Waveterminal U24 + 0071 MAYA EX7 + 0091 Maya 44 + 00b1 MAYA EX5 + 1000 MIDI Mate + 1010 RoMI/O + 1020 M4U + 1030 M8U + 1090 KeyControl49 + 10a0 KeyControl25 +0a93 C Technologies AB + 0002 C-Pen 10 + 0005 MyPen Light + 000d Input Pen + 0010 C-Pen 20 + 0a93 PayPen +0a94 Intersense +0aa3 Lava Computer Mfg., Inc. +0aa4 Develco Elektronik +0aa5 First International Digital + 0002 irock! 500 Series + 0801 MP3 Player +0aa6 Perception Digital, Ltd + 0101 Hercules Jukebox + 1501 Store 'n' Go HD Drive +0aa7 Wincor Nixdorf International GmbH + 0100 POS Keyboard, TA58P-USB + 0101 POS Keyboard, TA85P-USB + 0102 POS Keyboard, TA59-USB + 0103 POS Keyboard, TA60-USB + 0104 SNIkey Keyboard, SNIKey-KB-USB + 0200 Operator Display, BA63-USB + 0201 Operator Display, BA66-USB + 0202 Operator Display & Scanner, XiCheck-BA63 + 0203 Operator Display & Scanner, XiCheck-BA66 + 0204 Graphics Operator Display, BA63GV + 0300 POS Printer (printer class mode), TH210 + 0301 POS Printer (native mode), TH210 + 0302 POS Printer (printer class mode), TH220 + 0303 POS Printer (native mode), TH220 + 0304 POS Printer, TH230 + 0305 Lottery Printer, XiPrintPlus + 0306 POS Printer (printer class mode), TH320 + 0307 POS Printer (native mode), TH320 + 0308 POS Printer (printer class mode), TH420 + 0309 POS Printer (native mode), TH420 + 030a POS Printer, TH200B + 0400 Lottery Scanner, Xiscan S + 0401 Lottery Scanner, Xiscan 3 + 0402 Programmable Magnetic Swipe Card Reader, MSRP-USB + 0500 IDE Adapter + 0501 Hub Printer Interface + 0502 Hub SNIKey Keyboard + 4304 Banking Printer TP07 + 4305 Banking Printer TP07c + 4500 WN Central Special Electronics +0aa8 TriGem Computer, Inc. + 0060 TG 11Mbps WLAN Mini Adapter + 1001 DreamComboM4100 + 3002 InkJet Color Printer + 8001 TG_iMON + 8002 TG_KLOSS + a001 TG_X2 + a002 TGVFD_KLOSS + ffda iMON_VFD +0aa9 Baromtec Co. + f01b Medion MD 6242 MP3 Player +0aaa Japan CBM Corp. +0aab Vision Shape Europe SA +0aac iCompression, Inc. +0aad Rohde & Schwarz GmbH & Co. KG + 0003 NRP-Z21 + 000c NRP-Z11 + 0013 NRP-Z22 + 0014 NRP-Z23 + 0015 NRP-Z24 + 0016 NRP-Z51 + 0017 NRP-Z52 + 0018 NRP-Z55 + 0019 NRP-Z56 + 0021 NRP-Z91 + 0023 NRP-Z81 + 002c NRP-Z31 + 002d NRP-Z37 + 002f NRP-Z27 + 0051 NRP-Z28 + 0052 NRP-Z98 + 0062 NRP-Z92 + 0070 NRP-Z57 + 0083 NRP-Z85 + 0095 NRP-Z86 + 0117 HMF / HMP / HMS-X / HMO series Oscilloscopes + 0118 HMF / HMP / HMS-X / HMO series Oscilloscopes + 0119 HMF / HMP / HMS-X / HMO series Oscilloscopes +0aae NEC infrontia Corp. (Nitsuko) +0aaf Digitalway Co., Ltd +0ab0 Arrow Strong Electronics Co., Ltd +0ab1 FEIG ELECTRONIC GmbH + 0002 OBID RFID-Reader + 0004 OBID classic-pro +0aba Ellisys + 8001 Tracker 110 Protocol Analyzer + 8002 Explorer 200 Protocol Analyzer +0abe Stereo-Link + 0101 SL1200 DAC +0abf Diolan + 3370 I2C/SPI Adapter - U2C-12 +0ac3 Sanyo Semiconductor Company Micro +0ac4 Leco Corp. +0ac5 I & C Corp. +0ac6 Singing Electrons, Inc. +0ac7 Panwest Corp. +0ac8 Z-Star Microelectronics Corp. + 0301 Web Camera + 0302 ZC0302 Webcam + 0321 Vimicro generic vc0321 Camera + 0323 Luxya WC-1200 USB 2.0 Webcam + 0328 A4Tech PK-130MG + 0336 Elecom UCAM-DLQ30 + 301b ZC0301 Webcam + 303b ZC0303 Webcam + 305b ZC0305 Webcam + 307b USB 1.1 Webcam + 332d Vega USB 2.0 Camera + 3343 Sirius USB 2.0 Camera + 3370 Traveler TV 6500 SF Dia-scanner + 3420 Venus USB2.0 Camera + c001 Sony embedded vimicro Camera + c002 Visual Communication Camera VGP-VCC1 + c302 Vega USB 2.0 Camera + c303 Saturn USB 2.0 Camera + c326 Namuga 1.3M Webcam + c33f Webcam + c412 Lenovo IdeaCentre Web Camera + c429 Lenovo ThinkCentre Web Camera + c42d Lenovo IdeaCentre Web Camera +0ac9 Micro Solutions, Inc. + 0000 Backpack CD-ReWriter + 0001 BACKPACK 2 Cable + 0010 BACKPACK + 0011 Backpack 40GB Hard Drive + 0110 BACKPACK + 0111 BackPack + 1234 BACKPACK +0aca OPEN Networks Ltd + 1060 OPEN NT1 Plus II +0acc Koga Electronics Co. +0acd ID Tech + 0300 IDT1221U RS-232 Adapter + 0401 Spectrum III Hybrid Smartcard Reader + 0630 Spectrum III Mag-Only Insert Reader (SPT3-355 Series) USB-CDC + 0810 SecurePIN (IDPA-506100Y) PIN Pad + 2030 ValueMag Magnetic Stripe Reader + 3710 ViVOpay Kiosk III +0ace ZyDAS + 1201 ZD1201 802.11b + 1211 ZD1211 802.11g + 1215 ZD1211B 802.11g + 1221 ZD1221 802.11n + 1602 ZyXEL Omni FaxModem 56K + 1608 ZyXEL Omni FaxModem 56K UNO + 1611 ZyXEL Omni FaxModem 56K Plus + 2011 Virtual media for 802.11bg + 20ff Virtual media for 802.11bg + a211 ZD1211 802.11b/g Wireless Adapter + b215 802.11bg +0acf Intoto, Inc. +0ad0 Intellix Corp. +0ad1 Remotec Technology, Ltd +0ad2 Service & Quality Technology Co., Ltd +0ada Data Encryption Systems Ltd. + 0005 DK2 +0ae3 Allion Computer, Inc. +0ae4 Taito Corp. +0ae7 Neodym Systems, Inc. +0ae8 System Support Co., Ltd +0ae9 North Shore Circuit Design L.L.P. +0aea SciEssence, LLC +0aeb TTP Communications, Ltd +0aec Neodio Technologies Corp. + 2101 SmartMedia Card Reader + 2102 CompactFlash Card Reader + 2103 MMC/SD Card Reader + 2104 MemoryStick Card Reader + 2201 SmartMedia+CompactFlash Card Reader + 2202 SmartMedia+MMC/SD Card Reader + 2203 SmartMedia+MemoryStick Card Reader + 2204 CompactFlash+MMC/SD Card Reader + 2205 CompactFlash+MemoryStick Card Reader + 2206 MMC/SD+MemoryStick Card Reader + 2301 SmartMedia+CompactFlash+MMC/SD Card Reader + 2302 SmartMedia+CompactFlash+MemoryStick Card Reader + 2303 SmartMedia+MMC/SD+MemoryStick Card Reader + 2304 CompactFlash+MMC/SD+MemoryStick Card Reader + 3016 MMC/SD+Memory Stick Card Reader + 3050 ND3050 8-in-1 Card Reader + 3060 1.1 FS Card Reader + 3101 MMC/SD Card Reader + 3102 MemoryStick Card Reader + 3201 MMC/SD+MemoryStick Card Reader + 3216 HS Card Reader + 3260 7-in-1 Card Reader + 5010 ND5010 Card Reader +0af0 Option + 5000 UMTS Card + 6000 GlobeTrotter 3G datacard + 6300 GT 3G Quad UMTS/GPRS Card + 6600 GlobeTrotter 3G+ datacard + 6711 GlobeTrotter Express 7.2 v2 + 6971 Globetrotter HSDPA Modem + 7251 Globetrotter HSUPA Modem (aka iCON HSUPA E) + 7501 Globetrotter HSUPA Modem (icon 411 aka "Vodafone K3760") + 7601 Globetrotter MO40x 3G Modem (GTM 382) + 7701 Globetrotter HSUPA Modem (aka icon 451) + d055 Globetrotter GI0505 [iCON 505] +0af6 Silver I Co., Ltd +0af7 B2C2, Inc. + 0101 Digital TV USB Receiver (DVB-S/T/C / ATSC) +0af9 Hama, Inc. + 0010 USB SightCam 100 + 0011 Micro Innovations IC50C Webcam +0afa DMC Co., Ltd. + 07d2 Controller Board for Projected Capacitive Touch Screen DUS3000 +0afc Zaptronix Ltd +0afd Tateno Dennou, Inc. +0afe Cummins Engine Co. +0aff Jump Zone Network Products, Inc. +0b00 INGENICO +0b05 ASUSTek Computer, Inc. + 0001 MeMO Pad HD 7 (CD-ROM mode) + 0301 MyPal A696 GPS PDA + 1101 Mass Storage (UISDMC4S) + 1706 WL-167G v1 802.11g Adapter [Ralink RT2571] + 1707 WL-167G v1 802.11g Adapter [Ralink RT2571] + 1708 Mass Storage Device + 170b Multi card reader + 170c WL-159g 802.11bg [ZyDAS ZD1211B+AL2230] + 170d 802.11b/g Wireless Network Adapter + 1712 BT-183 Bluetooth 2.0+EDR adapter + 1715 2045 Bluetooth 2.0 Device with trace filter + 1716 Bluetooth Device + 1717 WL169gE 802.11g Adapter [Broadcom 4320 USB] + 171b A9T wireless 802.11bg + 171c 802.11b/g Wireless Network Adapter + 171f My Cinema U3000 Mini [DiBcom DiB7700P] + 1723 WL-167G v2 802.11g Adapter [Ralink RT2571W] + 1724 RT2573 + 1726 Laptop OLED Display + 172a 802.11n Network Adapter + 172b 802.11n Network Adapter + 1731 802.11n Network Adapter + 1732 802.11n Network Adapter + 1734 AF-200 + 173c BT-183 Bluetooth 2.0 + 173f My Cinema U3100 Mini + 1742 802.11n Network Adapter + 1743 Xonar U1 Audio Station + 1751 BT-253 Bluetooth Adapter + 175b Laptop OLED Display + 1760 802.11n Network Adapter + 1761 USB-N11 802.11n Network Adapter [Ralink RT2870] + 1774 Gobi Wireless Modem (QDL mode) + 1776 Gobi Wireless Modem + 1779 My Cinema U3100 Mini Plus [AF9035A] + 1784 USB-N13 802.11n Network Adapter (rev. A1) [Ralink RT3072] + 1786 USB-N10 802.11n Network Adapter [Realtek RTL8188SU] + 1788 BT-270 Bluetooth Adapter + 1791 WL-167G v3 802.11n Adapter [Realtek RTL8188SU] + 179c Bluetooth Adapter + 179d USB-N53 802.11abgn Network Adapter [Ralink RT3572] + 179e Eee Note EA800 (network mode) + 179f Eee Note EA800 (tablet mode) + 17a0 Xonar U3 sound card + 17a1 Eee Note EA800 (mass storage mode) + 17ab USB-N13 802.11n Network Adapter (rev. B1) [Realtek RTL8192CU] + 17ba N10 Nano 802.11n Network Adapter [Realtek RTL8192CU] + 17c2 ROG Spitfire + 17c7 WL-330NUL + 17c9 USB-AC53 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526] + 17cb Broadcom BCM20702A0 Bluetooth + 17d1 AC51 802.11a/b/g/n/ac Wireless Adapter [Mediatek MT7610U] + 17d2 USB-AC56 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU] + 17d3 USB-N10 v2 802.11b/g/n Wireless Adapter [MediaTek MT7601U] + 17db USB-AC50 802.11a/b/g/n/ac (1x1) Wireless Adapter [MediaTek MT7610U] + 17e8 USB-N14 802.11b/g/n (2x2) Wireless Adapter [Ralink RT5372] + 17eb USB-AC55 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7612U] + 17f5 Xonar U5 sound card + 180a Broadcom BCM20702 Single-Chip Bluetooth 4.0 + LE + 1817 USB-AC68 802.11a/b/g/n/ac (4x4) Wireless Adapter [Realtek RTL8814AU] + 1825 Qualcomm Bluetooth 4.1 + 18f0 Realtek 8188EUS [USB-N10 Nano] + 4c80 Transformer Pad TF300TG + 4c90 Transformer Pad Infinity TF700 + 4c91 Transformer Pad Infinity TF700 (Debug mode) + 4ca0 Transformer Pad TF701T + 4ca1 Transformer Pad TF701T (Debug mode) + 4d00 Transformer Prime TF201 + 4d01 Transformer Prime TF201 (debug mode) + 4daf Transformer Pad Infinity TF700 (Fastboot) + 5410 MeMO Pad HD 7 (MTP mode) + 5412 MeMO Pad HD 7 (PTP mode) + 550f Fonepad 7 + 6101 Cable Modem + 620a Remote NDIS Device + 7772 Zenfone GO (ZB500KL) (MTP mode) + 7773 Zenfone GO (ZB500KL) (Debug, MTP mode) + 7774 Zenfone GO (ZB500KL) (RNDIS mode) + 7775 Zenfone GO (ZB500KL) (Debug, RNDIS mode) + 7776 Zenfone GO (ZB500KL) (PTP mode) + 7777 Zenfone GO (ZB500KL) (Debug, PTP mode) + b700 Broadcom Bluetooth 2.1 +0b0b Datamax-O'Neil + 106e Datamax E-4304 +0b0c Todos AB + 0009 Todos Argos Mini II Smart Card Reader + 001e e.dentifier2 (ABN AMRO electronic banking card reader NL) + 002e C200 smartcard controller (Nordea card reader) + 003f Todos C400 smartcard controller (Handelsbanken card reader) + 0050 Argos Mini II Smart Card Reader (CCID) +0b0d ProjectLab + 0000 CenturyCD +0b0e GN Netcom + 0305 Jabra EVOLVE Link MS + 0311 Jabra EVOLVE 65 + 0312 enc060:Buttons Volume up/down/mute + phone [Jabra] + 0343 Jabra UC VOICE 150a + 0348 Jabra UC VOICE 550a MS + 034c Jabra UC Voice 750 MS + 034d Jabra UC VOICE 750 + 0410 Jabra SPEAK 410 + 0420 Jabra SPEAK 510 + 0422 Jabra SPEAK 510 USB + 0933 Jabra Freeway + 094d GN Netcom / Jabra REVO Wireless + 1017 Jabra PRO 930 + 1022 Jabra PRO 9450, Type 9400BS (DECT Headset) + 1041 Jabra PRO 9460 + 1900 Jabra Biz 1900 + 2007 GN 2000 Stereo Corded Headset + 2456 Jabra SPEAK 810 + 245e Jabra Link 370 + 620c Jabra BT620s + 9330 Jabra GN9330 Headset + a346 Jabra Engage 75 Stereo + a50a Alienware Wireless Gaming Headset AW988 +0b0f AVID Technology + 0400 DNxID +0b10 Pcally +0b11 I Tech Solutions Co., Ltd +0b1e Electronic Warfare Assoc., Inc. (EWA) + 8007 Blackhawk USB560-BP JTAG Emulator +0b1f Insyde Software Corp. +0b20 TransDimension, Inc. +0b21 Yokogawa Electric Corp. +0b22 Japan System Development Co., Ltd +0b23 Pan-Asia Electronics Co., Ltd +0b24 Link Evolution Corp. +0b27 Ritek Corp. +0b28 Kenwood Corp. +0b2c Village Center, Inc. +0b30 PNY Technologies, Inc. + 0006 SM Media-Shuttle Card Reader +0b33 Contour Design, Inc. + 0020 ShuttleXpress + 0030 ShuttlePro v2 + 0401 RollerMouse Free 2 + 0700 RollerMouse Pro + 08a0 Perfit Mouse + 1000 RollerMouse Red + 1010 Vidamic Technomouse IQ +0b37 Hitachi ULSI Systems Co., Ltd +0b38 Gear Head + 0003 Keyboard + 0010 107-Key Keyboard +0b39 Omnidirectional Control Technology, Inc. + 0001 Composite USB PS2 Converter + 0109 USB TO Ethernet + 0421 Serial + 0801 USB-Parallel Bridge + 0901 OCT To Fast Ethernet Converter + 0c03 LAN DOCK Serial Converter +0b3a IPaxess +0b3b Tekram Technology Co., Ltd + 0163 TL-WN320G 1.0 WLAN Adapter + 1601 Allnet 0193 802.11b Adapter + 1602 ZyXEL ZyAIR B200 802.11b Adapter + 1612 AIR.Mate 2@net 802.11b Adapter + 1613 802.11b Wireless LAN Adapter + 1620 Allnet Wireless Network Adapter [Envara WiND512] + 1630 QuickWLAN 802.11bg + 5630 802.11bg + 6630 ZD1211 +0b3c Olivetti Techcenter + a010 Simple_Way Printer/Scanner/Copier + c000 Olicard 100 + c700 Olicard 100 (Mass Storage mode) +0b3e Kikusui Electronics Corp. +0b41 Hal Corp. + 0011 Crossam2+USB IR commander +0b43 Play.com, Inc. + 0003 PS2 Controller Converter + 0005 GameCube Adaptor +0b47 Sportbug.com, Inc. +0b48 TechnoTrend AG + 1003 Technotrend/Hauppauge USB-Nova + 1004 TT-PCline + 1005 Technotrend/Hauppauge USB-Nova + 1006 Technotrend/Hauppauge DEC3000-s + 1007 TT-micro plus Device + 1008 Technotrend/Hauppauge DEC2000-t + 1009 Technotrend/Hauppauge DEC2540-t + 3001 DVB-S receiver + 3002 DVB-C receiver + 3003 DVB-T receiver + 3004 TT TV-Stick + 3005 TT TV-Stick (8kB EEPROM) + 3006 TT-connect S-2400 DVB-S receiver + 3007 TT-connect S2-3600 + 3008 TT-connect + 3009 TT-connect S-2400 DVB-S receiver (8kB EEPROM) + 300a TT-connect S2-3650 CI + 300b TT-connect C-3650 CI + 300c TT-connect T-3650 CI + 300d TT-connect CT-3650 CI + 300e TT-connect C-2400 + 3011 TT-connect S2-4600 + 3012 TT-connect CT2-4650 CI + 3014 TT-TVStick CT2-4400 + 3015 TT-connect CT2-4650 CI + 3017 TT-connect S2-4650 CI +0b49 ASCII Corp. + 064f Trance Vibrator +0b4b Pine Corp. Ltd. + 0100 D'music MP3 Player +0b4d Graphtec America, Inc. + 110a Graphtec CC200-20 + 1123 Electronic Cutting Tool [Silhouette Portrait] +0b4e Musical Electronics, Ltd + 6500 MP3 Player + 8028 MP3 Player + 8920 MP3 Player +0b50 Dumpries Co., Ltd +0b51 Comfort Keyboard Co. + 0020 Comfort Keyboard +0b52 Colorado MicroDisplay, Inc. +0b54 Sinbon Electronics Co., Ltd +0b56 TYI Systems, Ltd +0b57 Beijing HanwangTechnology Co., Ltd +0b59 Lake Communications, Ltd +0b5a Corel Corp. +0b5f Green Electronics Co., Ltd +0b60 Nsine, Ltd +0b61 NEC Viewtechnology, Ltd +0b62 Orange Micro, Inc. + 000b Bluetooth Device + 0059 iBOT2 Webcam +0b63 ADLink Technology, Inc. +0b64 Wonderful Wire Cable Co., Ltd +0b65 Expert Magnetics Corp. +0b66 Cybiko Inc. + 0041 Xtreme +0b67 Fairbanks Scales + 555e SCB-R9000 +0b69 CacheVision +0b6a Maxim Integrated Products + a132 WUP-005 [Nintendo Wii U Pro Controller] +0b6f Nagano Japan Radio Co., Ltd +0b70 PortalPlayer, Inc. + 00ba iRiver H10 20GB +0b71 SHIN-EI Sangyo Co., Ltd +0b72 Embedded Wireless Technology Co., Ltd +0b73 Computone Corp. +0b75 Roland DG Corp. +0b79 Sunrise Telecom, Inc. +0b7a Zeevo, Inc. + 07d0 Bluetooth Dongle +0b7b Taiko Denki Co., Ltd +0b7c ITRAN Communications, Ltd +0b7d Astrodesign, Inc. +0b81 id3 Technologies + 0001 Biothentic II smartcard reader with fingerprint sensor + 0002 DFU-Enabled Devices (DFU) + 0012 BioPAD biometric module (DFU + CDC) + 0102 Certis V1 fingerprint reader + 0103 Certis V2 fingerprint reader + 0200 CL1356T / CL1356T5 / CL1356A smartcard readers (CCID) + 0201 CL1356T / CL1356T5 / CL1356A smartcard readers (DFU + CCID) + 0220 CL1356A FFPJP smartcard reader (CCID + HID) + 0221 CL1356A smartcard reader (DFU + CCID + HID) +0b84 Rextron Technology, Inc. +0b85 Elkat Electronics, Sdn., Bhd. +0b86 Exputer Systems, Inc. + 5100 XMC5100 Zippy Drive + 5110 XMC5110 Flash Drive + 5200 XMC5200 Zippy Drive + 5201 XMC5200 Zippy Drive + 5202 XMC5200 Zippy Drive + 5280 XMC5280 Storage Drive + fff0 ISP5200 Debugger +0b87 Plus-One I & T, Inc. +0b88 Sigma Koki Co., Ltd, Technology Center +0b89 Advanced Digital Broadcast, Ltd +0b8c SMART Technologies Inc. + 0001 Interactive Whiteboard Controller (SB6) (HID) + 00c3 Sympodium ID350 +0b95 ASIX Electronics Corp. + 1720 10/100 Ethernet + 1780 AX88178 + 1790 AX88179 Gigabit Ethernet + 6802 AX68002 KVM Switch SoC + 7720 AX88772 + 772a AX88772A Fast Ethernet + 772b AX88772B + 7e2b AX88772B Fast Ethernet Controller +0b96 Sewon Telecom +0b97 O2 Micro, Inc. + 7732 Smart Card Reader + 7761 Oz776 1.1 Hub + 7762 Oz776 SmartCard Reader + 7772 OZ776 CCID Smartcard Reader +0b98 Playmates Toys, Inc. +0b99 Audio International, Inc. +0b9b Dipl.-Ing. Stefan Kunde + 4012 Reflex RC-controller Interface +0b9d Softprotec Co. +0b9f Chippo Technologies +0baf U.S. Robotics + 00e5 USR6000 + 00eb USR1120 802.11b Adapter + 00ec 56K Faxmodem + 00f1 SureConnect ADSL ATM Adapter + 00f2 SureConnect ADSL Loader + 00f5 SureConnect ADSL ATM Adapter + 00f6 SureConnect ADSL Loader + 00f7 SureConnect ADSL ATM Adapter + 00f8 SureConnect ADSL Loader + 00f9 SureConnect ADSL ATM Adapter + 00fa SureConnect ADSL Loader + 00fb SureConnect ADSL Ethernet/USB Router + 0111 USR5420 802.11g Adapter [Broadcom 4320 USB] + 0118 U5 802.11g Adapter + 011b Wireless MAXg Adapter [Broadcom 4320] + 0121 USR5423 802.11bg Wireless Adapter [ZyDAS ZD1211B] + 0303 USR5637 56K Faxmodem + 6112 FaxModem Model 5633 +0bb0 Concord Camera Corp. + 0100 Sound Vision Stream + 5007 3340z/Rollei DC3100 +0bb1 Infinilink Corp. +0bb2 Ambit Microsystems Corp. + 0302 U10H010 802.11b Wireless Adapter [Intersil PRISM 3] + 6098 USB Cable Modem +0bb3 Ofuji Technology +0bb4 HTC (High Tech Computer Corp.) + 0001 Android Phone via mass storage [Wiko Cink Peax 2] + 00ce mmO2 XDA GSM/GPRS Pocket PC + 00cf SPV C500 Smart Phone + 0306 Vive Hub Bluetooth 4.1 (Broadcom BCM920703) + 0a01 PocketPC Sync + 0a02 Himalaya GSM/GPRS Pocket PC + 0a03 PocketPC Sync + 0a04 PocketPC Sync + 0a05 PocketPC Sync + 0a06 PocketPC Sync + 0a07 Magician PocketPC SmartPhone / O2 XDA + 0a08 PocketPC Sync + 0a09 PocketPC Sync + 0a0a PocketPC Sync + 0a0b PocketPC Sync + 0a0c PocketPC Sync + 0a0d PocketPC Sync + 0a0e PocketPC Sync + 0a0f PocketPC Sync + 0a10 PocketPC Sync + 0a11 PocketPC Sync + 0a12 PocketPC Sync + 0a13 PocketPC Sync + 0a14 PocketPC Sync + 0a15 PocketPC Sync + 0a16 PocketPC Sync + 0a17 PocketPC Sync + 0a18 PocketPC Sync + 0a19 PocketPC Sync + 0a1a PocketPC Sync + 0a1b PocketPC Sync + 0a1c PocketPC Sync + 0a1d PocketPC Sync + 0a1e PocketPC Sync + 0a1f PocketPC Sync + 0a20 PocketPC Sync + 0a21 PocketPC Sync + 0a22 PocketPC Sync + 0a23 PocketPC Sync + 0a24 PocketPC Sync + 0a25 PocketPC Sync + 0a26 PocketPC Sync + 0a27 PocketPC Sync + 0a28 PocketPC Sync + 0a29 PocketPC Sync + 0a2a PocketPC Sync + 0a2b PocketPC Sync + 0a2c PocketPC Sync + 0a2d PocketPC Sync + 0a2e PocketPC Sync + 0a2f PocketPC Sync + 0a30 PocketPC Sync + 0a31 PocketPC Sync + 0a32 PocketPC Sync + 0a33 PocketPC Sync + 0a34 PocketPC Sync + 0a35 PocketPC Sync + 0a36 PocketPC Sync + 0a37 PocketPC Sync + 0a38 PocketPC Sync + 0a39 PocketPC Sync + 0a3a PocketPC Sync + 0a3b PocketPC Sync + 0a3c PocketPC Sync + 0a3d PocketPC Sync + 0a3e PocketPC Sync + 0a3f PocketPC Sync + 0a40 PocketPC Sync + 0a41 PocketPC Sync + 0a42 PocketPC Sync + 0a43 PocketPC Sync + 0a44 PocketPC Sync + 0a45 PocketPC Sync + 0a46 PocketPC Sync + 0a47 PocketPC Sync + 0a48 PocketPC Sync + 0a49 PocketPC Sync + 0a4a PocketPC Sync + 0a4b PocketPC Sync + 0a4c PocketPC Sync + 0a4d PocketPC Sync + 0a4e PocketPC Sync + 0a4f PocketPC Sync + 0a50 SmartPhone (MTP) + 0a51 SPV C400 / T-Mobile SDA GSM/GPRS Pocket PC + 0a52 SmartPhone Sync + 0a53 SmartPhone Sync + 0a54 SmartPhone Sync + 0a55 SmartPhone Sync + 0a56 SmartPhone Sync + 0a57 SmartPhone Sync + 0a58 SmartPhone Sync + 0a59 SmartPhone Sync + 0a5a SmartPhone Sync + 0a5b SmartPhone Sync + 0a5c SmartPhone Sync + 0a5d SmartPhone Sync + 0a5e SmartPhone Sync + 0a5f SmartPhone Sync + 0a60 SmartPhone Sync + 0a61 SmartPhone Sync + 0a62 SmartPhone Sync + 0a63 SmartPhone Sync + 0a64 SmartPhone Sync + 0a65 SmartPhone Sync + 0a66 SmartPhone Sync + 0a67 SmartPhone Sync + 0a68 SmartPhone Sync + 0a69 SmartPhone Sync + 0a6a SmartPhone Sync + 0a6b SmartPhone Sync + 0a6c SmartPhone Sync + 0a6d SmartPhone Sync + 0a6e SmartPhone Sync + 0a6f SmartPhone Sync + 0a70 SmartPhone Sync + 0a71 SmartPhone Sync + 0a72 SmartPhone Sync + 0a73 SmartPhone Sync + 0a74 SmartPhone Sync + 0a75 SmartPhone Sync + 0a76 SmartPhone Sync + 0a77 SmartPhone Sync + 0a78 SmartPhone Sync + 0a79 SmartPhone Sync + 0a7a SmartPhone Sync + 0a7b SmartPhone Sync + 0a7c SmartPhone Sync + 0a7d SmartPhone Sync + 0a7e SmartPhone Sync + 0a7f SmartPhone Sync + 0a80 SmartPhone Sync + 0a81 SmartPhone Sync + 0a82 SmartPhone Sync + 0a83 SmartPhone Sync + 0a84 SmartPhone Sync + 0a85 SmartPhone Sync + 0a86 SmartPhone Sync + 0a87 SmartPhone Sync + 0a88 SmartPhone Sync + 0a89 SmartPhone Sync + 0a8a SmartPhone Sync + 0a8b SmartPhone Sync + 0a8c SmartPhone Sync + 0a8d SmartPhone Sync + 0a8e SmartPhone Sync + 0a8f SmartPhone Sync + 0a90 SmartPhone Sync + 0a91 SmartPhone Sync + 0a92 SmartPhone Sync + 0a93 SmartPhone Sync + 0a94 SmartPhone Sync + 0a95 SmartPhone Sync + 0a96 SmartPhone Sync + 0a97 SmartPhone Sync + 0a98 SmartPhone Sync + 0a99 SmartPhone Sync + 0a9a SmartPhone Sync + 0a9b SmartPhone Sync + 0a9c SmartPhone Sync + 0a9d SmartPhone Sync + 0a9e SmartPhone Sync + 0a9f SmartPhone Sync + 0b03 Ozone Mobile Broadband + 0b04 Hermes / TyTN / T-Mobile MDA Vario II / O2 Xda Trion + 0b05 P3600 + 0b06 Athena / Advantage x7500 / Dopod U1000 / T-Mobile AMEO + 0b0c Elf / Touch / P3450 / T-Mobile MDA Touch / O2 Xda Nova / Dopod S1 + 0b1f Sony Ericsson XPERIA X1 + 0b2f Rhodium + 0b51 Qtek 8310 mobile phone [Tornado Noble] + 0bce Vario MDA + 0c01 Dream / ADP1 / G1 / Magic / Tattoo / FP1 + 0c02 Dream / ADP1 / G1 / Magic / Tattoo (Debug) + 0c03 Android Phone [Fairphone First Edition (FP1)] + 0c13 Diamond + 0c1f Sony Ericsson XPERIA X1 + 0c5f Snap + 0c86 Sensation + 0c87 Desire (debug) + 0c8d EVO 4G (debug) + 0c91 Vision + 0c94 Vision + 0c97 Legend + 0c99 Desire (debug) + 0c9e Incredible + 0ca2 Desire HD (debug mode) + 0ca5 Android Phone [Evo Shift 4G] + 0cab Desire / Desire HD / Hero / Thunderbolt (HTC Sync Mode) + 0cae T-Mobile MyTouch 4G Slide [Doubleshot] + 0de5 One (M7) + 0dea M7_UL [HTC One] + 0f25 One M8 + 0f63 Desire 610 Via MTP + 0f64 Desire 601 + 0fb4 Remote NDIS based Device + 0ff0 One Mini (M4) + 0ff8 Desire HD (Tethering Mode) + 0ff9 Desire / Desire HD / Hero / Thunderbolt (Charge Mode) + 0ffe Desire HD (modem mode) + 0fff Android Fastboot Bootloader + 2008 Android Phone via MTP [MT65xx] + 200b Android Phone via PTP [Wiko Cink Peax 2] + 2134 Vive Hub (SMSC USB2137B) + 2744 Vive Hub (HTC CB USB2) + 2c87 Vive +0bb5 Murata Manufacturing Co., Ltd +0bb6 Network Alchemy +0bb7 Joytech Computer Co., Ltd +0bb8 Hitachi Semiconductor and Devices Sales Co., Ltd +0bb9 Eiger M&C Co., Ltd +0bba ZAccess Systems +0bbb General Meters Corp. +0bbc Assistive Technology, Inc. +0bbd System Connection, Inc. +0bc0 Knilink Technology, Inc. +0bc1 Fuw Yng Electronics Co., Ltd +0bc2 Seagate RSS LLC + 0502 ST3300601CB-RK 300 GB External Hard Drive + 0503 ST3250824A [Barracuda 7200.9] + 2000 Storage Adapter V3 (TPP) + 2100 FreeAgent Go + 2200 FreeAgent Go FW + 2300 Expansion Portable + 231a Expansion Portable + 231c Expansion Portable + 2320 USB 3.0 bridge [Portable Expansion Drive] + 2321 Expansion Portable + 2322 SRD0NF1 Expansion Portable (STEA) + 2340 FreeAgent External Hard Drive + 3000 FreeAgent Desktop + 3008 FreeAgent Desk 1TB + 3101 FreeAgent XTreme 640GB + 3312 SRD00F2 Expansion Desktop Drive (STBV) + 331a Desktop HDD 5TB (ST5000DM000) + 3320 SRD00F2 [Expansion Desktop Drive] + 3322 SRD0NF2 [Expansion Desktop Drive] + 3323 Seagate RSS LLC + 3332 Expansion + 3343 desktop drive stgy8000400 + 5020 FreeAgent GoFlex + 5021 FreeAgent GoFlex USB 2.0 + 5030 FreeAgent GoFlex Upgrade Cable STAE104 + 5031 FreeAgent GoFlex USB 3.0 + 5032 SATA cable + 5070 FreeAgent GoFlex Desk + 5071 FreeAgent GoFlex Desk + 50a1 FreeAgent GoFlex Desk + 50a5 FreeAgent GoFlex Desk USB 3.0 + 5121 FreeAgent GoFlex + 5161 FreeAgent GoFlex dock + 6126 Maxtor D3 Station 5TB + 61b5 Maxtor HX-M201TCB [M3 Portable 2TB] + 61b6 Maxtor HX-M101TCB/GM [M3 Portable 1TB] + 61b7 Maxtor M3 Portable + a003 Backup Plus + a0a1 Backup Plus Desktop + a0a4 Backup Plus Desktop Drive + aa14 STJ4000400 [Seagate Basic Portable Drive 4TB] + ab00 Slim Portable Drive + ab1e Backup Plus Portable Drive + ab20 Backup Plus Portable Drive + ab21 Backup Plus Slim + ab24 Backup Plus Portable Drive + ab26 Backup Plus Slim Portable Drive 1 TB + ab28 Seagate Backup Plus Portable 5TB SRD00F1 + ab2d SRD00F1 [Backup Plus Ultra Slim] + ab31 Backup Plus Desktop Drive (5TB) + ab34 Backup Plus + ab38 Backup Plus Hub (Mass Storage) + ab44 Backup Plus Hub + ac20 Backup Plus Slim 2TB +0bc3 IPWireless, Inc. + 0001 UMTS-TDD (TD-CDMA) modem +0bc4 Microcube Corp. +0bc5 JCN Co., Ltd +0bc6 ExWAY, Inc. +0bc7 X10 Wireless Technology, Inc. + 0001 ActiveHome (ACPI-compliant) + 0002 Firecracker Interface (ACPI-compliant) + 0003 VGA Video Sender (ACPI-compliant) + 0004 X10 Receiver + 0005 Wireless Transceiver (ACPI-compliant) + 0006 Wireless Transceiver (ACPI-compliant) + 0007 Wireless Transceiver (ACPI-compliant) + 0008 Wireless Transceiver (ACPI-compliant) + 0009 Wireless Transceiver (ACPI-compliant) + 000a Wireless Transceiver (ACPI-compliant) + 000b Transceiver (ACPI-compliant) + 000c Transceiver (ACPI-compliant) + 000d Transceiver (ACPI-compliant) + 000e Transceiver (ACPI-compliant) + 000f Transceiver (ACPI-compliant) +0bc8 Telmax Communications +0bc9 ECI Telecom, Ltd +0bca Startek Engineering, Inc. +0bcb Perfect Technic Enterprise Co., Ltd +0bd7 Andrew Pargeter & Associates + a021 Amptek DP4 multichannel signal analyzer +0bda Realtek Semiconductor Corp. + 0103 USB 2.0 Card Reader + 0104 Mass Storage Device + 0106 Mass Storage Device + 0107 Mass Storage Device + 0108 Mass Storage Device + 0109 microSDXC Card Reader [Hama 00091047] + 0111 RTS5111 Card Reader Controller + 0113 Mass Storage Device + 0115 Mass Storage Device (Multicard Reader) + 0116 RTS5116 Card Reader Controller + 0117 Mass Storage Device + 0118 Mass Storage Device + 0119 Storage Device (SD card reader) + 0129 RTS5129 Card Reader Controller + 0138 RTS5138 Card Reader Controller + 0139 RTS5139 Card Reader Controller + 0151 Mass Storage Device (Multicard Reader) + 0152 Mass Storage Device + 0153 3-in-1 (SD/SDHC/SDXC) Card Reader + 0156 Mass Storage Device + 0157 Mass Storage Device + 0158 USB 2.0 multicard reader + 0159 RTS5159 Card Reader Controller + 0161 Mass Storage Device + 0168 Mass Storage Device + 0169 Mass Storage Device + 0171 Mass Storage Device + 0176 Mass Storage Device + 0178 Mass Storage Device + 0179 RTL8188ETV Wireless LAN 802.11n Network Adapter + 0184 RTS5182 Card Reader + 0186 Card Reader + 0301 multicard reader + 0307 Card Reader + 0316 Card Reader + 0326 Card reader + 0411 Hub + 0811 Realtek 8812AU/8821AU 802.11ac WLAN Adapter [USB Wireless Dual-Band Adapter 2.4/5Ghz] + 0821 RTL8821A Bluetooth + 1724 RTL8723AU 802.11n WLAN Adapter + 1a2b RTL8188GU 802.11n WLAN Adapter (Driver CDROM Mode) + 2831 RTL2831U DVB-T + 2832 RTL2832U DVB-T + 2838 RTL2838 DVB-T + 5401 RTL 8153 USB 3.0 hub with gigabit ethernet + 5411 RTS5411 Hub + 568c Integrated Webcam HD + 570c Asus laptop camera + 5730 HP 2.0MP High Definition Webcam + 5751 Integrated Webcam + 5775 HP "Truevision HD" laptop camera + 5776 HP Truevision HD integrated webcam + 57b3 Acer 640 × 480 laptop camera + 57cc HD Webcam - Realtek Semiconductor + 57cf HD WebCam + 57da Built-In Video Camera + 58c2 Integrated Webcam HD + 58c8 Integrated Webcam HD + 8150 RTL8150 Fast Ethernet Adapter + 8151 RTL8151 Adapteon Business Mobile Networks BV + 8152 RTL8152 Fast Ethernet Adapter + 8153 RTL8153 Gigabit Ethernet Adapter + 8171 RTL8188SU 802.11n WLAN Adapter + 8172 RTL8191SU 802.11n WLAN Adapter + 8174 RTL8192SU 802.11n WLAN Adapter + 8176 RTL8188CUS 802.11n WLAN Adapter + 8178 RTL8192CU 802.11n WLAN Adapter + 8179 RTL8188EUS 802.11n Wireless Network Adapter + 817f RTL8188RU 802.11n WLAN Adapter + 8187 RTL8187 Wireless Adapter + 8189 RTL8187B Wireless 802.11g 54Mbps Network Adapter + 818b RTL8192EU 802.11b/g/n WLAN Adapter + 8192 RTL8191SU 802.11n Wireless Adapter + 8193 RTL8192DU 802.11an WLAN Adapter + 8197 RTL8187B Wireless Adapter + 8198 RTL8187B Wireless Adapter + 8199 RTL8187SU 802.11g WLAN Adapter + 8723 RTL8723A Bluetooth + 8812 RTL8812AU 802.11a/b/g/n/ac 2T2R DB WLAN Adapter + 8813 RTL8814AU 802.11a/b/g/n/ac Wireless Adapter + 881a RTL8812AU-VS 802.11a/b/g/n/ac 2T2R DB WLAN Adapter + 8821 RTL8821A Bluetooth + 9210 RTL9210 M.2 NVME Adapter + a811 RTL8811AU 802.11a/b/g/n/ac WLAN Adapter + b009 Realtek Bluetooth 4.2 Adapter + b00a Realtek Bluetooth 4.2 Adapter + b00b Realtek Bluetooth 4.2 Adapter + b023 RTL8822BE Bluetooth 4.2 Adapter + b711 RTL8188GU 802.11n WLAN Adapter (After Modeswitch) + b720 RTL8723BU 802.11b/g/n WLAN Adapter + b723 RTL8723B Bluetooth + b728 RTL8723B Bluetooth + b72a RTL8723B Bluetooth + b812 RTL88x2bu [AC1200 Techkey] + f179 RTL8188FTV 802.11b/g/n 1T1R 2.4G WLAN Adapter +0bdb Ericsson Business Mobile Networks BV + 1000 BV Bluetooth Device + 1002 Bluetooth Device 1.2 + 1049 C3607w Mobile Broadband Module + 1900 F3507g Mobile Broadband Module + 1902 F3507g v2 Mobile Broadband Module + 1904 F3607gw Mobile Broadband Module + 1905 F3607gw v2 Mobile Broadband Module + 1906 F3607gw v3 Mobile Broadband Module + 1909 F3307 v2 Mobile Broadband Module + 190a F3307 Mobile Broadband Module + 190b C3607w v2 Mobile Broadband Module + 1926 H5321 gw Mobile Broadband Module +0bdc Y Media Corp. +0bdd Orange PCS +0be2 Kanda Tsushin Kogyo Co., Ltd +0be3 TOYO Corp. +0be4 Elka International, Ltd +0be5 DOME imaging systems, Inc. +0be6 Dong Guan Humen Wonderful Wire Cable Factory +0bed MEI + 1100 CASHFLOW SC + 1101 Series 2000 Combo Acceptor +0bee LTK Industries, Ltd +0bef Way2Call Communications +0bf0 Pace Micro Technology PLC + c010 EHD100SD +0bf1 Intracom S.A. + 0001 netMod Driver Ver 2.4.17 (CAPI) + 0002 netMod Driver Ver 2.4 (CAPI) + 0003 netMod Driver Ver 2.4 (CAPI) +0bf2 Konexx +0bf6 Addonics Technologies, Inc. + 0103 Storage Device + 1234 Storage Device + a000 Cable 205 (TPP) + a001 Cable 205 + a002 IDE Bridge +0bf7 Sunny Giken, Inc. +0bf8 Fujitsu Siemens Computers + 1001 Fujitsu Pocket Loox 600 PDA + 1006 SmartCard Reader 2A + 1007 Connect2Air E-5400 802.11g Wireless Adapter + 1009 Connect2Air E-5400 D1700 802.11g Wireless Adapter [Intersil ISL3887] + 100c Keyboard FSC KBPC PX + 100f miniCard D2301 802.11bg Wireless Module [SiS 163U] + 1017 Keyboard KB SCR + 101f Fujitsu Full HD Pro Webcam +0bfb Grass Valley Group + 0200 TURBO iDDR Front Panel +0bfd Kvaser AB + 0004 USBcan II + 000b Leaf Light HS + 000e Leaf SemiPro HS +0c00 FireFly Mouse Mat + 1607 Apex M500 +0c04 MOTO Development Group, Inc. +0c05 Appian Graphics +0c06 Hasbro Games, Inc. +0c07 Infinite Data Storage, Ltd +0c08 Agate + 0378 Q 16MB Storage Device +0c09 Comjet Information System + a5a5 Litto Version USB2.0 +0c0a Highpoint Technologies, Inc. + 6124 RocketStor 6124V +0c0b Dura Micro, Inc. (Acomdata) + 27cb 6-in-1 Flash Reader and Writer + 27d7 Multi Memory reader/writer MD-005 + 27da Multi Memory reader/writer MD-005 + 27dc Multi Memory reader/writer MD-005 + 27e7 3,5'' HDD case MD-231 + 27ee 3,5'' HDD case MD-231 + 2814 3,5'' HDD case MD-231 + 2815 3,5'' HDD case MD-231 + 281d 3,5'' HDD case MD-231 + 5fab Storage Adaptor + a109 CF/SM Reader and Writer + a10c SD/MS Reader and Writer + b001 USB 2.0 Mass Storage IDE adapter + b004 MMC/SD Reader and Writer +0c12 Zeroplus + 0005 PSX Vibration Feedback Converter / Intec Wireless Controller for Xbox + 0030 PSX Vibration Feedback Converter + 700e Logic Analyzer (LAP-C-16032) + 8801 Nyko Xbox Controller + 8802 Xbox Controller + 8809 Red Octane Ignition Xbox DDR Pad + 880a Pelican Eclipse PL-2023 + 8810 Xbox Controller + 9902 VibraX +0c15 Iris Graphics +0c16 Gyration, Inc. + 0002 RF Technology Receiver + 0003 RF Technology Receiver + 0008 RF Technology Receiver + 0080 eHome Infrared Receiver + 0081 eHome Infrared Receiver +0c17 Cyberboard A/S +0c18 SynerTek Korea, Inc. +0c19 cyberPIXIE, Inc. +0c1a Silicon Motion, Inc. +0c1b MIPS Technologies +0c1c Hang Zhou Silan Electronics Co., Ltd +0c1f Magicard + 1800 Tango 2E +0c22 Tally Printer Corp. +0c23 Lernout + Hauspie +0c24 Taiyo Yuden + 0001 Bluetooth Adaptor + 0002 Bluetooth Device2 + 0005 Bluetooth Device(BC04-External) + 000b Bluetooth Device(BC04-External) + 000c Bluetooth Adaptor + 000e Bluetooth Device(BC04-External) + 000f Bluetooth Device (V2.0+EDR) + 0010 Bluetooth Device(BC04-External) + 0012 Bluetooth Device(BC04-External) + 0018 Bluetooth Device(BC04-External) + 0019 Bluetooth Device + 0021 Bluetooth Device (V2.1+EDR) + 0c24 Bluetooth Device(SAMPLE) + ffff Bluetooth module with BlueCore in DFU mode +0c25 Sampo Corp. + 0310 Scream Cam +0c26 Prolific Technology Inc. + 0018 USB-Serial Controller [Icom Inc. OPC-478UC] + 002b Icom Inc. IC-R30 +0c27 RFIDeas, Inc + 232a pcProx Plus RFID Reader (CDC serial) + 3bfa pcProx Card Reader +0c2e Metrologic Instruments + 0007 Metrologic MS7120 Barcode Scanner (IBM SurePOS mode) + 0200 MS7120 Barcode Scanner + 0204 Metrologic MS7120 Barcode Scanner (keyboard mode) + 0206 Metrologic MS4980 Barcode Scanner + 0700 Metrologic MS7120 Barcode Scanner (uni-directional serial mode) + 0720 Metrologic MS7120 Barcode Scanner (bi-directional serial mode) + 0a64 [Stratos 2700] + 0b61 Vuquest 3310g + 0b6a Vuquest 3310 Area-Imaging Scanner + 0b81 Barcode scanner Voyager 1400g Series +0c30 Mutoh Industries Ltd + 6010 Kona 1400 Cutting Plotter +0c35 Eagletron, Inc. +0c36 E Ink Corp. +0c37 e.Digital +0c38 Der An Electric Wire & Cable Co., Ltd +0c39 IFR +0c3a Furui Precise Component (Kunshan) Co., Ltd +0c3b Komatsu, Ltd +0c3c Radius Co., Ltd +0c3d Innocom, Inc. +0c3e Nextcell, Inc. +0c40 ELMCU + 8000 2.4GHz receiver +0c44 Motorola iDEN + 0021 iDEN P2k0 Device + 0022 iDEN P2k1 Device + 03a2 iDEN Smartphone + 41d9 i1 phone +0c45 Microdia + 0011 EBUDDY + 0520 MaxTrack Wireless Mouse + 1018 Compact Flash storage memory card reader + 1020 Mass Storage Reader + 1028 Mass Storage Reader + 1030 Mass Storage Reader + 1031 Sonix Mass Storage Device + 1032 Mass Storage Reader + 1033 Sonix Mass Storage Device + 1034 Mass Storage Reader + 1035 Mass Storage Reader + 1036 Mass Storage Reader + 1037 Sonix Mass Storage Device + 1050 CF Card Reader + 1058 HDD Reader + 1060 iFlash SM-Direct Card Reader + 1061 Mass Storage Reader + 1062 Mass Storage Reader + 1063 Sonix Mass Storage Device + 1064 Mass Storage Reader + 1065 Mass Storage Reader + 1066 Mass Storage Reader + 1067 Mass Storage Reader + 1158 A56AK + 184c VoIP Phone + 1a90 2M pixel Microscope Camera (with capture button) [Andonstar V160] + 5004 Redragon Mitra RGB Keyboard + 5101 2.4G Wireless Device [Rii MX3] + 6001 Genius VideoCAM NB + 6005 Sweex Mini Webcam + 6007 VideoCAM Eye + 6009 VideoCAM ExpressII + 600d TwinkleCam USB camera + 6011 PC Camera (SN9C102) + 6019 PC Camera (SN9C102) + 6024 VideoCAM ExpressII + 6025 VideoCAM ExpressII + 6028 Typhoon Easycam USB 330K (older) + 6029 Triplex i-mini PC Camera + 602a Meade ETX-105EC Camera + 602b VideoCAM NB 300 + 602c Clas Ohlson TWC-30XOP Webcam + 602d VideoCAM ExpressII + 602e VideoCAM Messenger + 6030 VideoCAM ExpressII + 603f VideoCAM ExpressII + 6040 CCD PC Camera (PC390A) + 606a CCD PC Camera (PC390A) + 607a CCD PC Camera (PC390A) + 607b Win2 PC Camera + 607c CCD PC Camera (PC390A) + 607e CCD PC Camera (PC390A) + 6080 Audio (Microphone) + 6082 VideoCAM Look + 6083 VideoCAM Look + 608c VideoCAM Look + 608e VideoCAM Look + 608f PC Camera (SN9C103 + OV7630) + 60a8 VideoCAM Look + 60aa VideoCAM Look + 60ab PC Camera + 60af VideoCAM Look + 60b0 Genius VideoCam Look + 60c0 PC Camera with Mic (SN9C105) + 60c8 Win2 PC Camera + 60cc PC Camera with Mic (SN9C105) + 60ec PC Camera with Mic (SN9C105) + 60ef Win2 PC Camera + 60fa PC Camera with Mic (SN9C105) + 60fb Composite Device + 60fc PC Camera with Mic (SN9C105) + 60fe Audio (Microphone) + 6108 Win2 PC Camera + 6122 PC Camera (SN9C110) + 6123 PC Camera (SN9C110) + 6128 PC Camera (SN9C325 + OM6802) + 612a PC Camera (SN9C325) + 612c PC Camera (SN9C110) + 612e PC Camera (SN9C110) + 612f PC Camera (SN9C110) + 6130 PC Camera (SN9C120) + 6138 Win2 PC Camera + 613a PC Camera (SN9C120) + 613b Win2 PC Camera + 613c PC Camera (SN9C120) + 613e PC Camera (SN9C120) + 6143 PC Camera (SN9C120 + SP80708) + 6240 PC Camera (SN9C201 + MI1300) + 6242 PC Camera (SN9C201 + MI1310) + 6243 PC Camera (SN9C201 + S5K4AAFX) + 6248 PC Camera (SN9C201 + OV9655) + 624b PC Camera (SN9C201 + CX1332) + 624c PC Camera (SN9C201 + MI1320) + 624e PC Camera (SN9C201 + SOI968) + 624f PC Camera (SN9C201 + OV9650) + 6251 PC Camera (SN9C201 + OV9650) + 6253 PC Camera (SN9C201 + OV9650) + 6260 PC Camera (SN9C201 + OV7670ISP) + 6262 PC Camera (SN9C201 + OM6802) + 6270 PC Camera (SN9C201 + MI0360/MT9V011 or MI0360SOC/MT9V111) U-CAM PC Camera NE878, Whitcom WHC017, ... + 627a PC Camera (SN9C201 + S5K53BEB) + 627b PC Camera (SN9C201 + OV7660) + 627c PC Camera (SN9C201 + HV7131R) + 627f PC Camera (SN9C201 + OV965x + EEPROM) + 6280 PC Camera with Microphone (SN9C202 + MI1300) + 6282 PC Camera with Microphone (SN9C202 + MI1310) + 6283 PC Camera with Microphone (SN9C202 + S5K4AAFX) + 6288 PC Camera with Microphone (SN9C202 + OV9655) + 628a PC Camera with Microphone (SN9C202 + ICM107) + 628b PC Camera with Microphone (SN9C202 + CX1332) + 628c PC Camera with Microphone (SN9C202 + MI1320) + 628e PC Camera with Microphone (SN9C202 + SOI968) + 628f PC Camera with Microphone (SN9C202 + OV9650) + 62a0 PC Camera with Microphone (SN9C202 + OV7670ISP) + 62a2 PC Camera with Microphone (SN9C202 + OM6802) + 62b0 PC Camera with Microphone (SN9C202 + MI0360/MT9V011 or MI0360SOC/MT9V111) + 62b3 PC Camera with Microphone (SN9C202 + OV9655) + 62ba PC Camera with Microphone (SN9C202 + S5K53BEB) + 62bb PC Camera with Microphone (SN9C202 + OV7660) + 62bc PC Camera with Microphone (SN9C202 + HV7131R) + 62be PC Camera with Microphone (SN9C202 + OV7663) + 62c0 Sonix USB 2.0 Camera + 62e0 MSI Starcam Racer + 6300 PC Microscope camera + 6310 Sonix USB 2.0 Camera + 6321 HP Integrated Webcam + 6340 Camera + 6341 Defender G-Lens 2577 HD720p Camera + 6366 Webcam Vitade AF + 63e0 Sonix Integrated Webcam + 63f1 Integrated Webcam + 63f8 Sonix Integrated Webcam + 6409 Webcam + 6413 Integrated Webcam + 6417 Integrated Webcam + 6419 Integrated Webcam + 641d 1.3 MPixel Integrated Webcam + 6433 Laptop Integrated Webcam HD (Composite Device) + 643f Dell Integrated HD Webcam + 644d 1.3 MPixel Integrated Webcam + 6480 Sonix 1.3 MP Laptop Integrated Webcam + 648b Integrated Webcam + 64ad Dell Laptop Integrated Webcam HD + 64bd Sony Visual Communication Camera + 64d0 Integrated Webcam + 64d2 Integrated Webcam + 651b HP Webcam + 652f Backlit Gaming Keyboard + 6705 Integrated HD Webcam + 670c Integrated Webcam HD + 6710 Integrated Webcam + 6712 Integrated Webcam HD + 671d Integrated_Webcam_HD + 7401 TEMPer Temperature Sensor + 7402 TEMPerHUM Temperature & Humidity Sensor + 7403 Foot Switch + 7404 Foot switch FS1-P + 8000 DC31VC + 8006 Dual Mode Camera (8006 VGA) + 800a Vivitar Vivicam3350B +0c46 WaveRider Communications, Inc. +0c4a ALGE-TIMING GmbH + 0889 Timy + 088a Timy 2 +0c4b Reiner SCT Kartensysteme GmbH + 0100 cyberJack e-com/pinpad + 0300 cyberJack pinpad(a) + 0400 cyberJack e-com(a) + 0401 cyberJack pinpad(a2) + 0500 cyberJack RFID standard dual interface smartcard reader + 0501 cyberJack RFID comfort dual interface smartcard reader + 0502 cyberJack compact + 0504 cyberJack go / go plus + 0505 cyberJack wave + 9102 cyberJack RFID basis contactless smartcard reader +0c4c Needham's Electronics + 0021 EMP-21 Universal Programmer +0c52 Sealevel Systems, Inc. + 2101 SeaLINK+232 + 2102 SeaLINK+485 + 2103 SeaLINK+232I + 2104 SeaLINK+485I + 2211 SeaPORT+2/232 (Port 1) + 2212 SeaPORT+2/485 (Port 1) + 2213 SeaPORT+2 (Port 1) + 2221 SeaPORT+2/232 (Port 2) + 2222 SeaPORT+2/485 (Port 2) + 2223 SeaPORT+2 (Port 2) + 2411 SeaPORT+4/232 (Port 1) + 2412 SeaPORT+4/485 (Port 1) + 2413 SeaPORT+4 (Port 1) + 2421 SeaPORT+4/232 (Port 2) + 2422 SeaPORT+4/485 (Port 2) + 2423 SeaPORT+4 (Port 2) + 2431 SeaPORT+4/232 (Port 3) + 2432 SeaPORT+4/485 (Port 3) + 2433 SeaPORT+4 (Port 3) + 2441 SeaPORT+4/232 (Port 4) + 2442 SeaPORT+4/485 (Port 4) + 2443 SeaPORT+4 (Port 4) + 2811 SeaLINK+8/232 (Port 1) + 2812 SeaLINK+8/485 (Port 1) + 2813 SeaLINK+8 (Port 1) + 2821 SeaLINK+8/232 (Port 2) + 2822 SeaLINK+8/485 (Port 2) + 2823 SeaLINK+8 (Port 2) + 2831 SeaLINK+8/232 (Port 3) + 2832 SeaLINK+8/485 (Port 3) + 2833 SeaLINK+8 (Port 3) + 2841 SeaLINK+8/232 (Port 4) + 2842 SeaLINK+8/485 (Port 4) + 2843 SeaLINK+8 (Port 4) + 2851 SeaLINK+8/232 (Port 5) + 2852 SeaLINK+8/485 (Port 5) + 2853 SeaLINK+8 (Port 5) + 2861 SeaLINK+8/232 (Port 6) + 2862 SeaLINK+8/485 (Port 6) + 2863 SeaLINK+8 (Port 6) + 2871 SeaLINK+8/232 (Port 7) + 2872 SeaLINK+8/485 (Port 7) + 2873 SeaLINK+8 (Port 7) + 2881 SeaLINK+8/232 (Port 8) + 2882 SeaLINK+8/485 (Port 8) + 2883 SeaLINK+8 (Port 8) + 9020 SeaLINK+422 + a02a SeaLINK+8 (Port 1+2) + a02b SeaLINK+8 (Port 3+4) + a02c SeaLINK+8 (Port 5+6) + a02d SeaLINK+8 (Port 7+8) +0c53 ViewPLUS, Inc. +0c54 Glory, Ltd +0c55 Spectrum Digital, Inc. + 0510 Spectrum Digital XDS510 JTAG Debugger + 0540 SPI540 + 5416 TMS320C5416 DSK + 6416 TMS320C6416 DDB +0c56 Billion Bright, Ltd +0c57 Imaginative Design Operation Co., Ltd +0c58 Vidar Systems Corp. +0c59 Dong Guan Shinko Wire Co., Ltd +0c5a TRS International Mfg., Inc. +0c5e Xytronix Research & Design +0c60 Apogee Electronics Corp. + 0001 MiniMe + 0002 MiniDAC + 0003 ONE + 0004 GiO + 0007 Duet + 0009 Jam + 000a Jam Bootloader + 000b MiC + 000c MiC Bootloader + 8007 Duet DFU Mode +0c62 Chant Sincere Co., Ltd +0c63 Toko, Inc. +0c64 Signality System Engineering Co., Ltd +0c65 Eminence Enterprise Co., Ltd +0c66 Rexon Electronics Corp. +0c67 Concept Telecom, Ltd +0c6a ACS + 0005 Color 320 x 240 LCD Display Terminal with Touchscreen +0c6c JETI Technische Instrumente GmbH + 04b2 Specbos 1201 +0c70 MCT Elektronikladen + 0000 USB08 Development board + 0747 Eye Movement Recorder [Visagraph]/[ReadAlyzer] +0c72 PEAK System + 000c PCAN-USB + 000d PCAN Pro +0c74 Optronic Laboratories Inc. + 0002 OL 700-30 Goniometer +0c76 JMTek, LLC. + 0001 Mass Storage Controller + 0002 Mass Storage Controller + 0003 USBdisk + 0004 Mass Storage Controller + 0005 Transcend Flash disk + 0006 Transcend JetFlash + 0007 Mass Storage Device + 1600 Ion Quick Play LP turntable + 1605 SSS Headphone Set + 1607 audio controller + 5663 Audio Device +0c77 Sipix Group, Ltd + 1001 SiPix Web2 + 1002 SiPix SC2100 + 1010 SiPix Snap + 1011 SiPix Blink 2 + 1015 SiPix CAMeleon +0c78 Detto Corp. +0c79 NuConnex Technologies Pte., Ltd +0c7a Wing-Span Enterprise Co., Ltd +0c86 NDA Technologies, Inc. +0c88 Kyocera Wireless Corp. + 0021 Handheld + 17da Qualcomm Kyocera CDMA Technologies MSM +0c89 Honda Tsushin Kogyo Co., Ltd +0c8a Pathway Connectivity, Inc. +0c8b Wavefly Corp. +0c8c Coactive Networks +0c8d Tempo +0c8e Cesscom Co., Ltd + 6000 Luxian Series +0c8f Applied Microsystems +0c94 Cryptera + a000 EPP 1217 +0c98 Berkshire Products, Inc. + 1140 USB PC Watchdog +0c99 Innochips Co., Ltd +0c9a Hanwool Robotics Corp. +0c9b Jobin Yvon, Inc. +0c9c Brand Innovators BV + 1511 BI-1511 Laser Simulator + 1512 BI-1512 Syncbus Monitor + 1514 BI-1514 HPC + 1532 BI-1532 GPC +0c9d SemTek + 0170 3873 Manual Insert card reader +0ca2 Zyfer +0ca3 Sega Corp. +0ca4 ST&T Instrument Corp. +0ca5 BAE Systems Canada, Inc. +0ca6 Castles Technology Co., Ltd + 0010 EZUSB PC/SC Smart Card Reader + 0050 EZ220PU Reader Controller + 1077 Bludrive Family Smart Card Reader + 107e Reader Controller + 2010 myPad110 PC/SC Smart Card Reader + 3050 EZ710 Smart Card Reader +0ca7 Information Systems Laboratories +0caa Allied Telesis KK. + 3001 AT-VT-Kit3 Serial Adapter +0cad Motorola CGISS + 1007 APX Series Consolette + 1020 MOTOTRBO Series Radio (Portable) + 1030 APX Series Radio (Portable) + 1031 APX Series Radio (Mobile) + 1602 IMPRES Battery Data Reader + 9001 PowerPad Pocket PC Device +0cae Ascom Business Systems, Ltd +0caf Buslink + 2507 Hi-Speed USB-to-IDE Bridge Controller + 2515 Flash Disk Embedded Hub + 2516 Flash Disk Security Device + 2517 Flash Disk Mass Storage Device + 25c7 Hi-Speed USB-to-IDE Bridge Controller + 3a00 Hard Drive + 3a20 Mass Storage Device + 3acd Mass Storage Device +0cb0 Flying Pig Systems +0cb1 Innovonics, Inc. +0cb6 Celestix Networks, Pte., Ltd +0cb7 Singatron Enterprise Co., Ltd +0cb8 Opticis Co., Ltd +0cba Trust Electronic (Shanghai) Co., Ltd +0cbb Shanghai Darong Electronics Co., Ltd +0cbc Palmax Technology Co., Ltd + 0101 Pocket PC P6C + 0201 Personal Digital Assistant + 0301 Personal Digital Assistant P6M+ + 0401 Pocket PC +0cbd Pentel Co., Ltd (Electronics Equipment Div.) +0cbe Keryx Technologies, Inc. +0cbf Union Genius Computer Co., Ltd +0cc0 Kuon Yi Industrial Corp. +0cc1 Given Imaging, Ltd +0cc2 Timex Corp. +0cc3 Rimage Corp. +0cc4 emsys GmbH +0cc5 Sendo +0cc6 Intermagic Corp. +0cc8 Technotools Corp. +0cc9 BroadMAX Technologies, Inc. +0cca Amphenol +0ccb SKNet Co., Ltd +0ccc Domex Technology Corp. +0ccd TerraTec Electronic GmbH + 0012 PHASE 26 + 0013 PHASE 26 + 0014 PHASE 26 + 0015 Flash Update for TerraTec PHASE 26 + 0021 Cameo Grabster 200 + 0023 Mystify Claw + 0028 Aureon 5.1 MkII + 0032 MIDI HUBBLE + 0035 Miditech Play'n Roll + 0036 Cinergy 250 Audio + 0037 Cinergy 250 Audio + 0038 Cinergy T² DVB-T Receiver + 0039 Grabster AV 400 + 003b Cinergy 400 + 003c Grabster AV 250 + 0042 Cinergy Hybrid T XS + 0043 Cinergy T XS + 004e Cinergy T XS + 004f Cinergy Analog XS + 0055 Cinergy T XE (Version 1, AF9005) + 005c Cinergy T² + 0069 Cinergy T XE (Version 2, AF9015) + 006b Cinergy HT PVR (EU) + 0072 Cinergy Hybrid T + 0077 Aureon Dual USB + 0078 Cinergy T XXS + 0086 Cinergy Hybrid XE + 008e Cinergy HTC XS + 0096 Grabby + 0097 Cinergy T RC MKII + 0099 AfaTech 9015 [Cinergy T Stick Dual] + 00a5 Cinergy Hybrid Stick + 00a9 RTL2838 DVB-T COFDM Demodulator [TerraTec Cinergy T Stick Black] + 00b3 NOXON DAB/DAB+ Stick + 00b9 WDR DAB/DAB+ Stick + 00e0 NOXON DAB/DAB+ Stick V2 + 0102 Cinergy S2 Stick + 0105 Cinergy S2 Box + 10a7 TerraTec G3 + 10ad Cinergy H5 Rev. 2 +0cd4 Bang Olufsen + 0101 BeolinkPC2 +0cd5 LabJack Corporation + 0003 U3 + 0009 UE9 +0cd6 Scheidt & Bachmann + 000c S&B TPU + 000e S&B BKV + 0011 Money Coin Unit +0cd7 NewChip S.r.l. +0cd8 JS Digitech, Inc. + 2007 Smart Card Reader/JSTU-9700 +0cd9 Hitachi Shin Din Cable, Ltd +0cde Z-Com + 0001 XI-750 802.11b Wireless Adapter [Atmel AT76C503A] + 0002 XI-725/726 Prism2.5 802.11b Adapter + 0003 Sagem 802.11b Dongle + 0004 Sagem 802.11b Dongle + 0005 XI-735 Prism3 802.11b Adapter + 0006 XG-300 802.11b Adapter + 0008 XG-703A 802.11g Wireless Adapter [Intersil ISL3887] + 0009 (ZD1211)IEEE 802.11b+g Adapter + 0011 ZD1211 + 0012 AR5523 + 0013 AR5523 driver (no firmware) + 0014 NB 802.11g Wireless LAN Adapter(3887A) + 0015 XG-705A 802.11g Wireless Adapter [Intersil ISL3887] + 0016 NB 802.11g Wireless LAN Adapter(3887A) + 0018 NB 802.11a/b/g Wireless LAN Adapter(3887A) + 001a 802.11bg + 001c 802.11b/g Wireless Network Adapter + 0020 AG-760A 802.11abg Wireless Adapter [ZyDAS ZD1211B] + 0022 802.11b/g/n Wireless Network Adapter + 0023 UB81 802.11bgn + 0025 802.11b/g/n USB Wireless Network Adapter + 0026 UB82 802.11abgn + 0027 Sphairon Homelink 1202 802.11n Wireless Adapter [Atheros AR9170] +0ce5 Validation Technologies International + 0003 Matrix +0ce9 Pico Technology + 1001 PicoScope3000 series PC Oscilloscope + 1007 PicoScope 2000 series PC Oscilloscope + 1008 PicoScope 5000 series PC Oscilloscope + 1009 PicoScope 4000 series PC Oscilloscope + 100e PicoScope 6000 series PC Oscilloscope + 1012 PicoScope 3000A series PC Oscilloscope + 1016 PicoScope 2000A series PC Oscilloscope + 1018 PicoScope 4000A series PC Oscilloscope + 1200 PicoScope 2000 series PC Oscilloscope + 1201 PicoScope 3000 series PC Oscilloscope + 1202 PicoScope 4000 series PC Oscilloscope + 1203 PicoScope 5000 series PC Oscilloscope + 1204 PicoScope 6000 series PC Oscilloscope + 1211 PicoScope 3000 series PC Oscilloscope + 1212 PicoScope 4000 series PC Oscilloscope +0cf1 e-Conn Electronic Co., Ltd +0cf2 ENE Technology, Inc. + 6220 SD Card Reader (SG361) + 6225 SD card reader (UB6225) + 6230 SD Card Reader (UB623X) + 6250 SD card reader (UB6250) +0cf3 Qualcomm Atheros Communications + 0001 AR5523 + 0002 AR5523 (no firmware) + 0003 AR5523 + 0004 AR5523 (no firmware) + 0005 AR5523 + 0006 AR5523 (no firmware) + 0036 AR9462 Bluetooth + 1001 Thomson TG121N [Atheros AR9001U-(2)NG] + 1002 TP-Link TL-WN821N v2 / TL-WN822N v1 802.11n [Atheros AR9170] + 1006 TP-Link TL-WN322G v3 / TL-WN422G v2 802.11g [Atheros AR9271] + 1010 3Com 3CRUSBN275 802.11abgn Wireless Adapter [Atheros AR9170] + 20ff AR7010 (no firmware) + 3000 AR3011 Bluetooth (no firmware) + 3002 AR3011 Bluetooth + 3004 AR3012 Bluetooth 4.0 + 3005 AR3011 Bluetooth + 3007 AR3012 Bluetooth 4.0 (no firmware) + 3008 Bluetooth (AR3011) + 311d Bluetooth + 311f AR3012 Bluetooth + 7015 TP-Link TL-WN821N v3 / TL-WN822N v2 802.11n [Atheros AR7010+AR9287] + 9170 AR9170 802.11n + 9271 AR9271 802.11n + 9378 QCA9377-7 + b002 Ubiquiti WiFiStation 802.11n [Atheros AR9271] + b003 Ubiquiti WiFiStationEXT 802.11n [Atheros AR9271] + e006 Dell Wireless 1802 Bluetooth 4.0 LE + e300 QCA61x4 Bluetooth 4.0 +0cf4 Fomtex Corp. +0cf5 Cellink Co., Ltd +0cf6 Compucable Corp. +0cf7 ishoni Networks +0cf8 Clarisys, Inc. + 0750 Claritel-i750 - vp +0cf9 Central System Research Co., Ltd +0cfa Inviso, Inc. +0cfc Minolta-QMS, Inc. + 2301 Magicolor 2300 DL + 2350 Magicolor 2350EN/3300 + 3100 Magicolor 3100 + 7300 Magicolor 5450/5550 +0cff SAFA MEDIA Co., Ltd. + 0320 SR-380N +0d06 telos EDV Systementwicklung GmbH +0d08 UTStarcom + 0602 DV007 [serial] + 0603 DV007 [storage] +0d0b Contemporary Controls +0d0c Astron Electronics Co., Ltd +0d0d MKNet Corp. +0d0e Hybrid Networks, Inc. +0d0f Feng Shin Cable Co., Ltd +0d10 Elastic Networks + 0001 StormPort (WDM) +0d11 Maspro Denkoh Corp. +0d12 Hansol Electronics, Inc. +0d13 BMF Corp. +0d14 Array Comm, Inc. +0d15 OnStream b.v. +0d16 Hi-Touch Imaging Technologies Co., Ltd + 0001 PhotoShuttle + 0002 Photo Printer 730 series + 0004 Photo Printer 63xPL/PS + 0007 P510K + 0009 P72x Series + 000a P728L + 000b P510L + 000d P518A + 000e P910L + 0010 M610 + 0100 Photo Printer 63xPL/PS + 0102 Photo Printer 64xPS + 0103 Photo Printer 730 series + 0104 Photo Printer 63xPL/PS + 0105 Photo Printer 64xPS + 010e P510S + 0110 P110S + 0111 P510Si + 0112 P518S + 0200 Photo Printer 64xDL + 0309 CS-200e + 030a CS-220e + 0501 P75x Series + 0502 P52x Series + 0503 P310L + 050a P310W + 050f P530D + 0800 X610 +0d17 NALTEC, Inc. +0d18 coaXmedia +0d19 Hank Connection Industrial Co., Ltd +0d28 NXP + 0204 ARM mbed +0d2f Andamiro + 0002 Pump It Up Pad +0d32 Leo Hui Electric Wire & Cable Co., Ltd +0d33 AirSpeak, Inc. +0d34 Rearden Steel Technologies +0d35 Dah Kun Co., Ltd +0d3a Posiflex Technologies, Inc. + 0206 Series 3xxx Cash Drawer + 0207 Series 3xxx Cash Drawer + 0500 Magnetic Stripe Reader +0d3c Sri Cable Technology, Ltd +0d3d Tangtop Technology Co., Ltd + 0001 HID Keyboard + 0040 PS/2 Adapter +0d3e Fitcom, inc. +0d3f MTS Systems Corp. +0d40 Ascor, Inc. +0d41 Ta Yun Terminals Industrial Co., Ltd +0d42 Full Der Co., Ltd +0d46 Kobil Systems GmbH + 2012 KAAN Standard Plus (Smartcard reader) + 3003 mIDentity Light / KAAN SIM III + 3014 Smart Token + 4000 mIDentity (mass storage) + 4001 mIDentity Basic/Classic (composite device) + 4081 mIDentity Basic/Classic (installationless) +0d48 Promethean Limited + 0001 ACTIVboard + 0004 ACTIVboard + 0100 Audio +0d49 Maxtor + 3000 Drive + 3005 Personal Storage 3000LS + 3010 3000LE Drive + 3100 Hi-Speed USB-IDE Bridge Controller + 3200 Personal Storage 3200 + 5000 5000XT Drive + 5010 5000LE Drive + 5020 Mobile Hard Disk Drive + 7000 OneTouch + 7010 OneTouch + 7100 OneTouch II 300GB External Hard Disk + 7310 OneTouch 4 + 7410 Mobile Hard Disk Drive (1TB) + 7450 Basics Portable USB Device +0d4a NF Corp. +0d4b Grape Systems, Inc. +0d4c Tedas AG +0d4d Coherent, Inc. +0d4e Agere Systems Netherland BV + 047a WLAN Card + 1000 Wireless Card Model 0801 + 1001 Wireless Card Model 0802 +0d4f EADS Airbus France +0d50 Cleware GmbH + 0011 USB-Temp2 Thermometer + 0030 Multiplexer + 0040 F4 foot switch +0d51 Volex (Asia) Pte., Ltd +0d53 HMI Co., Ltd +0d54 Holon Corp. +0d55 ASKA Technologies, Inc. +0d56 AVLAB Technology, Inc. +0d57 Solomon Microtech, Ltd +0d59 TRC Simulators b.v. + 02a8 Digital Clock +0d5c SMC Networks, Inc. + a001 SMC2662W (v1) EZ Connect 802.11b Wireless Adapter [Atmel AT76C503A] + a002 SMC2662W v2 / SMC2662W-AR / Belkin F5D6050 [Atmel at76c503a] +0d5e Myacom, Ltd + 2346 BT Digital Access adapter +0d5f CSI, Inc. +0d60 IVL Technologies, Ltd +0d61 Meilu Electronics (Shenzhen) Co., Ltd +0d62 Darfon Electronics Corp. + 0003 Smartcard Reader + 0004 Keyboard + 001b Keyboard + 001c Benq X120 Internet Keyboard Pro + 0306 M530 Mouse + 0800 Magic Wheel + 2021 AM805 Keyboard + 2026 TECOM Bluetooth Device + 2050 Mouse + 2106 Dell L20U Multimedia Keyboard + 910e HP Business Slim Keyboard + a100 Optical Mouse +0d63 Fritz Gegauf AG +0d64 DXG Technology Corp. + 0105 Dual Mode Digital Camera 1.3M + 0107 Horus MT-409 Camera + 0108 Dual Mode Digital Camera + 0202 Dual Mode Video Camera Device + 0303 DXG-305V Camera + 1001 SiPix Stylecam/UMAX AstraPix 320s + 1002 Fashion Cam 01 Dual-Mode DSC (Video Camera) + 1003 Fashion Cam Dual-Mode DSC (Controller) + 1021 D-Link DSC 350F + 1208 Dual Mode Still Camera Device + 2208 Mass Storage + 3105 Dual Mode Digital Camera Disk + 3108 Digicam Mass Storage Device + 5566 Contour Roam Model 1600 +0d65 KMJP Co., Ltd +0d66 TMT +0d67 Advanet, Inc. +0d68 Super Link Electronics Co., Ltd +0d69 NSI +0d6a Megapower International Corp. +0d6b And-Or Logic +0d70 Try Computer Co., Ltd +0d71 Hirakawa Hewtech Corp. +0d72 Winmate Communication, Inc. +0d73 Hit's Communications, Inc. +0d76 MFP Korea, Inc. +0d77 Power Sentry/Newpoint +0d78 Japan Distributor Corp. +0d7a MARX Datentechnik GmbH + 0001 CrypToken +0d7b Wellco Technology Co., Ltd +0d7c Taiwan Line Tek Electronic Co., Ltd +0d7d Phison Electronics Corp. + 0100 PS1001/1011/1006/1026 Flash Disk + 0110 Gigabyte FlexDrive + 0120 Disk Pro 64MB + 0124 GIGABYTE Disk + 0240 I/O-Magic/Transcend 6-in-1 Card Reader + 110e NEC uPD720121/130 USB-ATA/ATAPI Bridge + 1240 Apacer 6-in-1 Card Reader 2.0 + 1270 Wolverine SixPac 6000 + 1300 Flash Disk + 1320 PS2031 Flash Disk + 1400 Attache 256MB USB 2.0 Flash Drive + 1420 PS2044 Pen Drive + 1470 Vosonic X's-Drive II+ VP2160 + 1620 USB Disk Pro + 1900 USB Thumb Drive +0d7e American Computer & Digital Components + 2507 Hi-Speed USB-to-IDE Bridge Controller + 2517 Hi-Speed Mass Storage Device + 25c7 Hi-Speed USB-to-IDE Bridge Controller +0d7f Essential Reality LLC + 0100 P5 Glove glove controller +0d80 H.R. Silvine Electronics, Inc. +0d81 TechnoVision +0d83 Think Outside, Inc. +0d87 Dolby Laboratories Inc. +0d89 Oz Software +0d8a King Jim Co., Ltd + 0101 TEPRA PRO +0d8b Ascom Telecommunications, Ltd +0d8c C-Media Electronics, Inc. + 0001 Audio Device + 0002 Composite Device + 0003 Sound Device + 0004 CM6631A Audio Processor + 0005 Blue Snowball + 0006 Storm HP-USB500 5.1 Headset + 000c Audio Adapter + 000d Composite Device + 000e Audio Adapter (Planet UP-100, Genius G-Talk) + 0014 Audio Adapter (Unitek Y-247A) + 001f CM108 Audio Controller + 0102 CM106 Like Sound Device + 0103 CM102-A+/102S+ Audio Controller + 0104 CM103+ Audio Controller + 0105 CM108 Audio Controller + 0107 CM108 Audio Controller + 010f CM108 Audio Controller + 0115 CM108 Audio Controller + 0139 Multimedia Headset [Gigaware by Ignition L.P.] + 013c CM108 Audio Controller + 0201 CM6501 + 5000 Mass Storage Controller + 5200 Mass Storage Controller(0D8C,5200) + b213 USB Phone CM109 (aka CT2000,VPT1000) +0d8d Promotion & Display Technology, Ltd + 0234 V-234 Composite Device + 0550 V-550 Composite Device + 0551 V-551 Composite Device + 0552 V-552 Composite Device + 0651 V-651 Composite Device + 0652 V-652 Composite Device + 0653 V-653 Composite Device + 0654 V-654 Composite Device + 0655 V-655 Composite Device + 0656 V-656 Composite Device + 0657 V-657 Composite Device + 0658 V-658 Composite Device + 0659 V-659 Composite Device + 0660 V-660 Composite Device + 0661 V-661 Composite Device + 0662 V-662 Composite Device + 0850 V-850 Composite Device + 0851 V-851 Composite Device + 0852 V-852 Composite Device + 0901 V-901 Composite Device + 0902 V-902 Composite Device + 0903 V-903 Composite Device + 4754 Voyager DMP Composite Device + bb00 Bloomberg Composite Device + bb01 Bloomberg Composite Device + bb02 Bloomberg Composite Device + bb03 Bloomberg Composite Device + bb04 Bloomberg Composite Device + bb05 Bloomberg Composite Device + fffe Global Tuner Composite Device + ffff Voyager DMP Composite Device +0d8e Global Sun Technology, Inc. + 0163 802.11g 54 Mbps Wireless Dongle + 1621 802.11b Wireless Adapter + 3762 Cohiba 802.11g Wireless Mini adapter [Intersil ISL3887] + 3763 802.11g Wireless dongle + 7100 802.11b Adapter + 7110 WL-210 / WU210P 802.11b Wireless Adapter [Atmel AT76C503A] + 7605 TRENDnet TEW-224UB 802.11b Wireless Adapter [Atmel AT76C503A] + 7801 AR5523 + 7802 AR5523 (no firmware) + 7811 AR5523 + 7812 AR5523 (no firmware) + 7a01 PRISM25 802.11b Adapter +0d8f Pitney Bowes +0d90 Sure-Fire Electrical Corp. +0d96 Skanhex Technology, Inc. + 0000 Jenoptik JD350 video + 3300 SX330z Camera + 4100 SX410z Camera + 4102 MD 9700 Camera + 4104 Jenoptik JD-4100z3s + 410a Medion 9801/Novatech SX-410z + 5200 SX-520z Camera +0d97 Santa Barbara Instrument Group + 0001 SBIG Astronomy Camera (without firmware) + 0101 SBIG Astronomy Camera (with firmware) +0d98 Mars Semiconductor Corp. + 0300 Avaya Wireless Card + 1007 Discovery Kids Digital Camera +0d99 Trazer Technologies, Inc. +0d9a RTX AS + 0001 Bluetooth Device +0d9b Tat Shing Electrical Co. +0d9c Chee Chen Hi-Technology Co., Ltd +0d9d Sanwa Supply, Inc. +0d9e Avaya + 0300 Wireless Card +0d9f Powercom Co., Ltd + 0001 Uninterruptible Power Supply + 0002 Black Knight PRO / WOW Uninterruptible Power Supply (Cypress HID->COM RS232) + 00a2 Imperial Uninterruptible Power Supply (HID PDC) + 00a3 Smart King PRO Uninterruptible Power Supply (HID PDC) + 00a4 WOW Uninterruptible Power Supply (HID PDC) + 00a5 Vanguard Uninterruptible Power Supply (HID PDC) + 00a6 Black Knight PRO Uninterruptible Power Supply (HID PDC) +0da0 Danger Research +0da1 Suzhou Peter's Precise Industrial Co., Ltd +0da2 Land Instruments International, Ltd +0da3 Nippon Electro-Sensory Devices Corp. +0da4 Polar Electro Oy + 0001 Interface + 0003 FlowLink + 0008 Loop +0da7 IOGear, Inc. +0da8 softDSP Co., Ltd + 0001 SDS 200A Oscilloscope +0dab Cubig Group + 0100 DVR/CVR-M140 MP3 Player +0dad Westover Scientific +0db0 Micro Star International + 1020 PC2PC WLAN Card + 1967 Bluetooth Dongle + 3713 Primo 73 + 3801 Motorola Bluetooth 2.1+EDR Device + 3870 MS-3870 802.11bgn Wireless Module [Ralink RT3070] + 3871 MS-3871 802.11bgn Wireless Module [Ralink RT8070] + 4011 Medion Flash XL V2.0 Card Reader + 4023 Lexar Mobile Card Reader + 4600 802.11b/g Turbo Wireless Adapter + 5501 Mass Storage Device + 5502 Mass Storage Device + 5513 MP3 Player + 5515 MP3 Player + 5516 MP3 Player + 5580 Mega Sky 580 DVB-T Tuner [M902x] + 5581 Mega Sky 580 DVB-T Tuner [GL861] + 6823 UB11B/MS-6823 802.11b Wi-Fi adapter + 6826 IEEE 802.11g Wireless Network Adapter + 6855 Bluetooth Device + 6861 MSI-6861 802.11g WiFi adapter + 6865 RT2570 + 6869 RT2570 + 6874 RT2573 + 6877 RT2573 + 6881 Bluetooth Class I EDR Device + 688a Bluetooth Class I EDR Device + 6899 802.11bgn 1T1R Mini Card Wireless Adapter + 6970 MS-6970 BToes Bluetooth adapter + 697a Bluetooth Dongle + 6982 Medion Flash XL Card Reader + a861 RT2573 + a874 RT2573 + a970 Bluetooth dongle + a97a Bluetooth EDR Device + b970 Bluetooth EDR Device + b97a Bluetooth EDR Device + ffff Bluetooth Adapter in DFU mode +0db1 Wen Te Electronics Co., Ltd +0db2 Shian Hwi Plug Parts, Plastic Factory +0db3 Tekram Technology Co., Ltd +0db4 Chung Fu Chen Yeh Enterprise Corp. +0db5 Access IS + 0139 Barcode Module - CDC serial + 013a Barcode Module - Virtual Keyboard + 013b Barcode Module - HID + 0160 NFC and Smartcard Module (NSM) + 0164 NFC and Smartcard Module (NSM)with 4 SAM slots +0db7 ELCON Systemtechnik + 0002 Goldpfeil P-LAN +0dba Digidesign + 1000 Mbox 1 [Mbox] + 3000 Mbox 2 + b011 Eleven Rack +0dbc A&D Medical + 0003 AND Serial Cable [AND Smart Cable] +0dbe Jiuh Shiuh Precision Industry Co., Ltd +0dbf Jess-Link International + 0002 SmartDongle Security Key + 0200 HDD Storage Solution + 021b USB-2.0 IDE Adapter + 0300 Storage Adapter + 0333 Storage Adapter + 0502 FSC Storagebird XL hard disk + 0707 ZIV Drive +0dc0 G7 Solutions (formerly Great Notions) +0dc1 Tamagawa Seiki Co., Ltd +0dc3 Athena Smartcard Solutions, Inc. + 0801 ASEDrive III + 0802 ASEDrive IIIe + 1104 ASEDrive IIIe KB + 1701 ASEKey + 1702 ASEKey +0dc4 inXtron, Inc. + 0040 Mass Storage Device + 0041 Mass Storage Device + 0042 Mass Storage Device + 0101 Hi-Speed Mass Storage Device + 0209 SK-3500 S2 + 020a Oyen Digital MiniPro 2.5" hard drive enclosure + 0290 Mass Storage Device [NT2 U3.1] +0dc5 SDK Co., Ltd +0dc6 Precision Squared Technology Corp. + 2301 Wireless Touchpad Keyboard +0dc7 First Cable Line, Inc. +0dcd NetworkFab Corp. + 0001 Remote Interface Adapter + 0002 High Bandwidth Codec +0dd0 Access Solutions + 1002 Triple Talk Speech Synthesizer +0dd1 Contek Electronics Co., Ltd +0dd2 Power Quotient International Co., Ltd + 0003 Mass Storage (P) +0dd3 MediaQ +0dd4 Custom Engineering SPA + 0237 K80 80mm Thermal Printer +0dd5 California Micro Devices +0dd7 Kocom Co., Ltd +0dd8 Netac Technology Co., Ltd + 0562 Netac Portable SSD Z6s + 1060 USB-CF-Card + e007 OnlyDisk U222 Pendrive + f607 OnlyDisk U210 1G flash drive [U-SAFE] +0dd9 HighSpeed Surfing +0dda Integrated Circuit Solution, Inc. + 0001 Multi-Card Reader 6in1 + 0002 Multi-Card Reader 7in1 + 0003 Flash Disk + 0005 Internal Multi-Card Reader 6in1 + 0008 SD single card reader + 0009 MS single card reader + 000a MS+SD Dual Card Reader + 000b SM single card reader + 0101 All-In-One Card Reader + 0102 All-In-One Card Reader + 0301 MP3 Player + 0302 Multi-Card MP3 Player + 1001 Multi-Flash Disk + 2001 Multi-Card Reader + 2002 Q018 default PID + 2003 Multi-Card Reader + 2005 Datalux DLX-1611 16in1 Card Reader + 2006 All-In-One Card Reader + 2007 USB to ATAPI bridge + 2008 All-In-One Card Reader + 2013 SD/MS Combo Card Reader + 2014 SD/MS Single Card Reader + 2023 card reader SD/MS DEMO board with ICSI brand name (MaskROM version) + 2024 card reader SD/MS DEMO board with Generic brand name (MaskROM version) + 2026 USB2.0 Card Reader + 2027 USB 2.0 Card Reader + 2315 UFD MP3 player (model 2) + 2318 UFD MP3 player (model 1) + 2321 UFD MP3 player +0ddb Tamarack, Inc. +0ddd Datelink Technology Co., Ltd +0dde Ubicom, Inc. +0de0 BD Consumer Healthcare +0de7 USBmicro + 0191 U401 Interface card + 01a5 U421 interface card + 01c3 U451 relay interface card +0dea UTECH Electronic (D.G.) Co., Ltd. +0ded Novasonics +0dee Lifetime Memory Products + 4010 Storage Adapter +0def Full Rise Electronic Co., Ltd +0df4 NET&SYS + 0201 MNG-2005 +0df6 Sitecom Europe B.V. + 0001 C-Media VOIP Device + 0004 Bluetooth 2.0 Adapter 100m + 0007 Bluetooth 2.0 Adapter 10m + 000b Bluetooth 2.0 Adapter DFU + 000d WL-168 Wireless Network Adapter 54g + 0017 WL-182 Wireless-N Network USB Card + 0019 Bluetooth 2.0 adapter 10m CN-512v2 001 + 001a Bluetooth 2.0 adapter 100m CN-521v2 001 + 002b WL-188 Wireless Network 300N USB Adapter + 002c WL-301 Wireless Network 300N USB Adapter + 002d WL-302 Wireless Network 300N USB dongle + 0036 WL-603 Wireless Adapter + 0039 WL-315 Wireless-N USB Adapter + 003b WL-321 Wireless USB Gaming Adapter 300N + 003c WL-323 Wireless-N USB Adapter + 003d WL-324 Wireless USB Adapter 300N + 003e WL-343 Wireless USB Adapter 150N X1 + 003f WL-608 Wireless USB Adapter 54g + 0040 WL-344 Wireless Adapter 300N X2 [Ralink RT3071] + 0041 WL-329 Wireless Dualband USB adapter 300N + 0042 WL-345 Wireless USB adapter 300N X3 + 0045 WL-353 Wireless USB Adapter 150N Nano + 0047 WL-352v1 Wireless USB Adapter 300N 002 + 0048 WL-349v1 Wireless Adapter 150N 002 [Ralink RT3070] + 0049 WL-356 Wireless Adapter 300N + 004a WL-358v1 Wireless Micro USB Adapter 300N X3 002 + 004b WL-349v3 Wireless Micro Adapter 150N X1 [Realtek RTL8192SU] + 004c WL-352 802.11n Adapter [Realtek RTL8191SU] + 0050 WL-349v4 Wireless Micro Adapter 150N X1 [Ralink RT3370] + 0056 LN-031 10/100/1000 Ethernet Adapter + 005d WLA-2000 v1.001 WLAN [RTL8191SU] + 0060 WLA-4000 802.11bgn [Ralink RT3072] + 0062 WLA-5000 802.11abgn [Ralink RT3572] + 006f WLA-5100 + 0072 AX88179 Gigabit Ethernet [Sitecom] + 061c LN-028 Network USB 2.0 Adapter + 214a IDE/SATA Combo Adapter [CN-330] + 21f4 44 St Bluetooth Device + 2200 Sitecom bluetooth2.0 class 2 dongle CN-512 + 2208 Sitecom bluetooth2.0 class 2 dongle CN-520 + 2209 Sitecom bluetooth2.0 class 1 dongle CN-521 + 3068 DC-104v2 ISDN Adapter [HFC-S] + 9071 WL-113 rev 1 Wireless Network USB Adapter + 9075 WL-117 Hi-Speed USB Adapter + 90ac WL-172 Wireless Network USB Adapter 54g Turbo + 9712 WL-113 rev 2 Wireless Network USB Adapter +0df7 Mobile Action Technology, Inc. + 0620 MA-620 Infrared Adapter + 0700 MA-700 Bluetooth Adapter + 0720 MA-720 Bluetooth Adapter + 0722 Bluetooth Dongle + 0730 MA-730/MA-730G Bluetooth Adapter + 0800 Data Cable + 0820 Data Cable + 0900 MA i-gotU Travel Logger GPS + 1800 Generic Card Reader + 1802 Card Reader +0dfa Toyo Communication Equipment Co., Ltd +0dfc GeneralTouch Technology Co., Ltd + 0001 Touchscreen + 0003 MultiTouch TouchScreen(Dualtouch) + 0101 5-point Touch Screen + d107 MultiTouch TouchScreen +0e03 Nippon Systemware Co., Ltd +0e08 Winbest Technology Co., Ltd +0e0b Amigo Technology Inc. + 9031 802.11n Wireless USB Card + 9041 802.11n Wireless USB Card +0e0c Gesytec + 0101 LonUSB LonTalk Network Adapter +0e0d PicoQuant GmbH + 0003 PicoHarp 300 +0e0f VMware, Inc. + 0001 Device + 0002 Virtual USB Hub + 0003 Virtual Mouse + 0004 Virtual CCID + 0005 Virtual Mass Storage + 0006 Virtual Keyboard + 000a Virtual Sensors + 8001 Root Hub + 8002 Root Hub + 8003 Root Hub + f80a Smoker FX2 +0e16 JMTek, LLC +0e17 Walex Electronic, Ltd +0e1a Unisys +0e1b Crewave +0e1e Green Hills Software +0e20 Pegasus Technologies Ltd. + 0101 NoteTaker + 0200 Seiko Instruments InkLink Handwriting System +0e21 Cowon Systems, Inc. + 0300 iAudio CW200 + 0400 MP3 Player + 0500 iAudio M3 + 0510 iAudio X5, subpack USB port + 0513 iAudio X5, side USB port + 0520 iAudio M5, side USB port + 0601 iAudio G3 + 0681 iAUDIO E2 + 0700 iAudio U3 + 0751 iAudio 7 + 0760 iAUDIO U5 / iAUDIO G2 + 0800 Cowon D2 (UMS mode) + 0801 Cowon D2 (MTP mode) + 0910 iAUDIO 9 + 0920 J3 +0e22 Symbian Ltd. +0e23 Liou Yuane Enterprise Co., Ltd +0e25 VinChip Systems, Inc. +0e26 J-Phone East Co., Ltd +0e2e Brady Worldwide, Inc. + 000b BMP 51 + 000c BMP 61 + 000d BMP 41 +0e30 HeartMath LLC +0e34 Micro Computer Control Corp. +0e35 3Pea Technologies, Inc. +0e36 TiePie engineering + 0009 Handyscope HS3 + 000b Handyscope HS4 + 000f Handyscope HS4-DIFF (br) + 0010 Handyscope HS2 + 0011 TiePieSCOPE HS805 (br) + 0012 TiePieSCOPE HS805 + 0013 Handyprobe HP3 + 0014 Handyprobe HP3 + 0018 Handyprobe HP2 + 001b Handyscope HS5 + 0042 TiePieSCOPE HS801 + 00fd USB To Parallel adapter + 00fe USB To Parallel adapter +0e38 Stratitec, Inc. +0e39 Smart Modular Technologies, Inc. + 0137 Bluetooth Device +0e3a Neostar Technology Co., Ltd + 1100 CW-1100 Wireless Network Adapter +0e3b Mansella, Ltd +0e41 Line6, Inc. + 4147 TonePort GX + 414d Pod HD500 + 4156 POD HD Desktop + 4250 BassPODxt + 4252 BassPODxt Pro + 4642 BassPODxt Live + 4650 PODxt Live + 4750 GuitarPort + 5044 PODxt + 5050 PODxt Pro + 534d SeaMonkey +0e44 Sun-Riseful Technology Co., Ltd. +0e48 Julia Corp., Ltd + 0100 CardPro SmartCard Reader +0e4a Shenzhen Bao Hing Electric Wire & Cable Mfr. Co. +0e4c Radica Games, Ltd + 1097 Gamester Controller + 1103 Gamester Reflex + 2390 Jtech Controller + 3510 Gamester for Xbox + 7288 funkey reader +0e50 TechnoData Interware + 0001 Matrix USB-Key + 0002 Matrixlock Dongle (HID) +0e55 Speed Dragon Multimedia, Ltd + 110a Tanic S110-SG1 + ISSC IS1002N [Slow Infra-Red (SIR) & Bluetooth 1.2 (Class 2) Adapter] + 110b MS3303H USB-to-Serial Bridge +0e56 Kingston Technology Company, Inc. + 6021 K-PEX 100 +0e5a Active Co., Ltd +0e5b Union Power Information Industrial Co., Ltd +0e5c Bitland Information Technology Co., Ltd + 6118 LCD Device + 6119 remote receive and control device + 6441 C-Media Sound Device +0e5d Neltron Industrial Co., Ltd +0e5e Conwise Technology Co., Ltd. + 6622 CW6622 +0e66 Hawking Technologies + 0001 HWUN1 Hi-Gain Wireless-300N Adapter w/ Upgradable Antenna [Ralink RT2870] + 0003 HWDN1 Hi-Gain Wireless-300N Dish Adapter [Ralink RT2870] + 0009 HWUN2 Hi-Gain Wireless-150N Adapter w/ Upgradable Antenna [Ralink RT2770] + 000b HWDN2 Hi-Gain Wireless-150N Dish Adapter [Ralink RT2770] + 0013 HWUN3 Hi-Gain Wireless-N Adapter [Ralink RT3070] + 0015 HWDN2 Rev. E Hi-Gain Wireless-150N Dish Adapter [Realtek RTL8191SU] + 0017 HAWNU1 Hi-Gain Wireless-150N Network Adapter with Range Amplifier [Ralink RT3070] + 0018 Wireless-N Network Adapter [Ralink RT2870] + 400b UF100 10/100 Network Adapter + 400c UF100 Ethernet [pegasus2] +0e67 Fossil, Inc. + 0002 Wrist PDA +0e6a Megawin Technology Co., Ltd + 0101 MA100 [USB-UART Bridge IC] + 02c0 Defender Gaming Keyboard + 030b Truly Ergonomic Computer Keyboard (Device Firmware Update mode) + 030c Truly Ergonomic Computer Keyboard + 6001 GEMBIRD Flexible keyboard KB-109F-B-DE + 7f5c BPF-015 Key Chain Photo Frame +0e6f Logic3 + 0003 Freebird wireless Controller + 0005 Eclipse wireless Controller + 0006 Edge wireless Controller + 0008 After Glow Pro Controller + 0105 Disney's High School Musical 3 Dance Pad for Xbox 360 + 0113 Afterglow AX.1 Gamepad + 011f Rock Candy Wired Controller for Xbox 360 + 0128 Wireless PS3 Controller + 0131 PDP EA Sports Controller + 0133 Wired Controller + 0139 Afterglow Prismatic Wired Controller for Xbox One + 013a PDP Xbox One Controller + 0146 Rock Candy Wired Controller for Xbox One + 0147 PDP Marvel Controller for Xbox One + 015c PDP Arcade Stick for Xbox One + 0161 Camo Wired Controller for Xbox One + 0162 Xbox One Wired Controller + 0163 Legendary Collection Deliverer of Truth + 0164 Battlefield 1 Wired Controller for Xbox One + 0165 Titanfall 2 Wired Controller for Xbox One + 0201 Pelican PL-3601 + 0213 Afterglow Gamepad for Xbox 360 + 021f Rock Candy Gamepad for Xbox 360 + 0246 Rock Candy Gamepad for Xbox One + 0301 Controller + 0346 Rock Candy Wired Controller for Xbox One + 0401 Controller + 0413 Afterglow AX.1 Gamepad for Xbox 360 + 0501 Wired Controller + f501 Hi-TEC Essentials Wired Gamepad + f900 Afterglow AX.1 +0e70 Tokyo Electronic Industry Co., Ltd +0e72 Hsi-Chin Electronics Co., Ltd +0e75 TVS Electronics, Ltd +0e79 Archos, Inc. + 1106 Pocket Media Assistant - PMA400 + 1204 Gmini XS 200 + 1306 504 Portable Multimedia Player + 1330 5 Tablet + 1332 5 IMT + 1416 32 IT + 1417 A43 IT + 14ad 97 Titanium HD + 150e 80 G9 + 3001 40 Titanium +0e7b On-Tech Industry Co., Ltd +0e7e Gmate, Inc. + 0001 Yopy 3000 PDA + 1001 YP3X00 PDA +0e82 Ching Tai Electric Wire & Cable Co., Ltd +0e83 Shin An Wire & Cable Co. +0e8c Well Force Electronic Co., Ltd +0e8d MediaTek Inc. + 0002 phone (mass storage mode) [Doro Primo 413] + 0003 MT6227 phone + 0004 MT6227 phone + 0023 S103 / Powertel M6200 + 00a5 GSM modem [Medion Surfstick Model:S4222] + 1806 Samsung SE-208 Slim Portable DVD Writer + 1836 Samsung SE-S084 Super WriteMaster Slim External DVD writer + 1887 Slim Portable DVD Writer + 1956 Samsung SE-506 Portable BluRay Disc Writer + 2000 MT65xx Preloader + 2008 Cyrus Technology CS 24 + 3329 Qstarz BT-Q1000XT + 7612 MT7612U 802.11a/b/g/n/ac Wireless Adapter + 763e MT7630e Bluetooth Adapter + 7668 MT7668 2x2 Dual Band Dual Concurrent 802.11a/b/g/n/ac WiFi with MU-MIMO and Bluetooth 5.0 Radios +0e8f GreenAsia Inc. + 0003 MaxFire Blaze2 + 0012 Joystick/Gamepad + 0016 4 port USB 1.1 hub UH-174 + 0020 USB to PS/2 Adapter + 0021 Multimedia Keyboard Controller + 0022 multimedia keyboard controller + 0201 SmartJoy Frag Xpad/PS2 adaptor + 3008 Xbox Controller + 300a steering Wheel +0e90 WiebeTech, LLC + 0100 Storage Adapter V1 +0e91 VTech Engineering Canada, Ltd +0e92 C's Glory Enterprise Co., Ltd +0e93 eM Technics Co., Ltd +0e95 Future Technology Co., Ltd +0e96 Aplux Communications, Ltd + c001 TRUST 380 USB2 SPACEC@M +0e97 Fingerworks, Inc. + 0908 Composite HID (Keyboard and Mouse) +0e98 Advanced Analogic Technologies, Inc. +0e99 Parallel Dice Co., Ltd +0e9a TA HSING Industries, Ltd +0e9b ADTEC Corp. +0e9c Streamzap, Inc. + 0000 Streamzap Remote Control +0e9f Tamura Corp. +0ea0 Ours Technology, Inc. + 2126 7-in-1 Card Reader + 2153 SD Card Reader Key + 2168 Transcend JetFlash 2.0 / Astone USB Drive / Intellegent Stick 2.0 + 2213 WinDroid N287 AH7N2502.013317 + 6803 OTI-6803 Flash Disk + 6808 OTI-6808 Flash Disk + 6828 OTI-6828 Flash Disk + 6858 OTi-6858 serial adapter +0ea6 Nihon Computer Co., Ltd +0ea7 MSL Enterprises Corp. +0ea8 CenDyne, Inc. +0ead Humax Co., Ltd +0eb0 NovaTech + 9020 NovaTech NV-902W + 9021 RT2573 +0eb1 WIS Technologies, Inc. + 6666 WinFast WalkieTV TV Loader + 6668 WinFast WalkieTV TV Loader + 7007 WinFast WalkieTV WDM Capture +0eb2 Y-S Electronic Co., Ltd +0eb3 Saint Technology Corp. +0eb7 Endor AG +0eb8 Mettler Toledo + 2200 Ariva Scale + f000 BC60 Scale +0ebb Thermo Fisher Scientific + 0002 FT-IR Spectrometer +0ebe VWeb Corp. +0ebf Omega Technology of Taiwan, Inc. +0ec0 LHI Technology (China) Co., Ltd +0ec1 Abit Computer Corp. +0ec2 Sweetray Industrial, Ltd +0ec3 Axell Co., Ltd +0ec4 Ballracing Developments, Ltd +0ec5 GT Information System Co., Ltd +0ec6 InnoVISION Multimedia, Ltd +0ec7 Theta Link Corp. + 1008 So., Show 301 Digital Camera +0ecd Lite-On IT Corp. + 1400 CD\RW 40X + a100 LDW-411SX DVD/CD Rewritable Drive +0ece TaiSol Electronics Co., Ltd +0ecf Phogenix Imaging, LLC +0ed1 WinMaxGroup + 6660 Flash Disk 64M-C + 6680 Flash Disk 64M-B + 7634 MP3 Player +0ed2 Kyoto Micro Computer Co., Ltd +0ed3 Wing-Tech Enterprise Co., Ltd +0ed5 Fiberbyte + e000 USB-inSync Device + f000 Fiberbyte USB-inSync Device + f201 Fiberbyte USB-inSync DAQ-2500X +0eda Noriake Itron Corp. +0edf e-MDT Co., Ltd + 2060 FID irock! 100 Series +0ee0 Shima Seiki Mfg., Ltd +0ee1 Sarotech Co., Ltd +0ee2 AMI Semiconductor, Inc. +0ee3 ComTrue Technology Corp. + 1000 Image Tank 1.5 +0ee4 Sunrich Technology, Ltd + 0690 SATA 3 Adapter +0eee Digital Stream Technology, Inc. + 8810 Mass Storage Drive +0eef D-WAV Scientific Co., Ltd + 0001 Titan6001 Surface Acoustic Wave Touchscreen Controller [eGalax] + 0002 Touchscreen Controller(Professional) + 7200 Touchscreen Controller + 7904 Multitouch Capacitive Touchscreen eGalaxTouch EXC7904-21v00_T13 [IIyama Prolite T1932-MSC] + a802 eGalaxTouch EXC7920 + b10e eGalaxTouch EXC3000 + c000 Multitouch Capacitive Touchscreen eGalaxTouch EXC3188-4643-08.00.00.00 Sirius_4643 PCAP3188UR Series [IIyama Prolite PLT1932MSC] +0ef0 Hitachi Cable, Ltd +0ef1 Aichi Micro Intelligent Corp. +0ef2 I/O Magic Corp. +0ef3 Lynn Products, Inc. +0ef4 DSI Datotech +0ef5 PointChips + 2202 Flash Disk + 2366 Flash Disk +0ef6 Yield Microelectronics Corp. +0ef7 SM Tech Co., Ltd (Tulip) +0efd Oasis Semiconductor +0efe Wem Technology, Inc. +0f03 Unitek UPS Systems + 0001 Alpha 1200Sx +0f06 Visual Frontier Enterprise Co., Ltd +0f08 CSL Wire & Plug (Shen Zhen) Co. +0f0c CAS Corp. +0f0d Hori Co., Ltd + 000a Dead or Alive 4 FightStick for Xbox 360 + 000c Horipad EX Turbo for Xbox 360 + 000d Fighting Stick EX2 for Xbox 360 + 0011 Real Arcade Pro 3 + 0016 Real Arcade Pro.EX for Xbox 360 + 001b Real Aracde Pro.VX + 0063 Real Arcade Pro Hayabusa for Xbox One + 0067 Horipad One + 0078 Real Arcade Pro V Kai for Xbox One / Xbox 360 + 0090 Horipad Ultimate + 00c1 HORIPAD for Nintendo Switch +0f0e Energy Full Corp. +0f0f Silego Technology Inc + 0006 GreenPak Universal Dev Board (Active Mode) + 8006 GreenPak Universal Dev Board (Reset Mode) +0f11 LD Didactic GmbH + 1000 CASSY-S + 1010 Pocket-CASSY + 1020 Mobile-CASSY + 1080 Joule and Wattmeter + 1081 Digital Multimeter P + 1090 UMI P + 1100 X-Ray Apparatus + 1101 X-Ray Apparatus + 1200 VideoCom + 2000 COM3LAB + 2010 Terminal Adapter + 2020 Network Analyser + 2030 Converter Control Unit + 2040 Machine Test System +0f12 Mars Engineering Corp. +0f13 Acetek Technology Co., Ltd +0f14 Ingenico + 0012 Vital'Act 3S + 0038 XIRING Smart Card Terminal LEO V2 +0f18 Finger Lakes Instrumentation + 0002 CCD + 0006 Focuser + 0007 Filter Wheel + 000a ProLine CCD + 000b Color Filter Wheel 4 + 000c PDF2 + 000d Guider +0f19 Oracom Co., Ltd +0f1b Onset Computer Corp. +0f1c Funai Electric Co., Ltd +0f1d Iwill Corp. +0f21 IOI Technology Corp. +0f22 Senior Industries, Inc. +0f23 Leader Tech Manufacturer Co., Ltd +0f24 Flex-P Industries, Snd., Bhd. +0f2d ViPower, Inc. +0f2e Geniality Maple Technology Co., Ltd +0f2f Priva Design Services +0f30 Jess Technology Co., Ltd + 001c PS3 Guitar Controller Dongle + 010b Philips Recoil + 0110 Dual Analog Rumble Pad + 0111 Colour Rumble Pad + 0202 Joytech Advanced Controller + 0208 Xbox & PC Gamepad + 8888 BigBen XBMiniPad Controller +0f31 Chrysalis Development +0f32 YFC-BonEagle Electric Co., Ltd +0f37 Kokuyo Co., Ltd +0f38 Nien-Yi Industrial Corp. +0f39 TG3 Electronics + 0404 Recreated ZX Spectrum Keyboard + 0876 Keyboard [87 Francium Pro] + 1086 DK2108SZ Keyboard [Ducky Zero] +0f3d Airprime, Incorporated + 0112 CDMA 1xEVDO PC Card, PC 5220 +0f41 RDC Semiconductor Co., Ltd +0f42 Nital Consulting Services, Inc. +0f44 Polhemus + ef11 Patriot (firmware not loaded) + ef12 Patriot + ff11 Liberty (firmware not loaded) + ff12 Liberty +0f49 Evolis SA + 0a00 Zenius +0f4b St. John Technology Co., Ltd +0f4c WorldWide Cable Opto Corp. +0f4d Microtune, Inc. + 1000 Bluetooth Dongle +0f4e Freedom Scientific +0f52 Wing Key Electrical Co., Ltd +0f53 Dongguan White Horse Cable Factory, Ltd +0f54 Kawai Musical Instruments Mfg. Co., Ltd + 0101 MP6 Stage Piano +0f55 AmbiCom, Inc. +0f5c Prairiecomm, Inc. +0f5d NewAge International, LLC + 9455 Compact Drive +0f5f Key Technology Corp. +0f60 NTK, Ltd +0f61 Varian, Inc. +0f62 Acrox Technologies Co., Ltd + 1001 Targus Mini Trackball Optical Mouse +0f63 LeapFrog Enterprises + 0010 Leapster Explorer + 0022 Leap Reader + 0500 Fly Fusion + 0600 Leap Port Turbo + 0700 POGO + 0800 Didj + 0900 TAGSchool + 0a00 Leapster 2 + 0b00 Crammer + 0c00 Tag Jr + 0d00 My Pal Scout + 0e00 Tag32 + 0f00 Tag64 + 1000 Kiwi16 + 1100 Leapster L2x + 1111 Fly Fusion + 1300 Didj UK/France (Leapster Advance) +0f68 Kobe Steel, Ltd +0f69 Dionex Corp. +0f6a Vibren Technologies, Inc. +0f6e INTELLIGENT SYSTEMS + 0100 IS-CGB-EMULATOR + 0201 GameBoy Advance Flash Gang Writer + 0202 IS-AGB-CAPTURE + 0300 IS-DOL-VIEWER + 0400 IS-NITRO-EMULATOR + 0401 IS-NITRO-UIC + 0402 IS-NITRO-WRITER + 0403 IS-NITRO-CAPTURE + 0404 IS-NITRO-EMULATOR (DS Lite) + 0500 IS-TWL-DEBUGGER + 0501 IS-TWL-CAPTURE +0f73 DFI +0f78 Guntermann & Drunck GmbH +0f7c DQ Technology, Inc. +0f7d NetBotz, Inc. +0f7e Fluke Corp. +0f88 VTech Holdings, Ltd + 3012 RT2570 + 3014 ZD1211B +0f8b Yazaki Corp. +0f8c Young Generation International Corp. +0f8d Uniwill Computer Corp. +0f8e Kingnet Technology Co., Ltd +0f8f Soma Networks +0f97 CviLux Corp. +0f98 CyberBank Corp. +0f9c Hyun Won, Inc. + 0301 M-Any Premium DAH-610 MP3/WMA Player + 0332 mobiBLU DAH-1200 MP3/Ogg Player +0f9e Lucent Technologies +0fa3 Starconn Electronic Co., Ltd +0fa4 ATL Technology +0fa5 Sotec Co., Ltd +0fa7 Epox Computer Co., Ltd +0fa8 Logic Controls, Inc. +0faf Winpoint Electronic Corp. +0fb0 Haurtian Wire & Cable Co., Ltd +0fb1 Inclose Design, Inc. +0fb2 Juan-Chern Industrial Co., Ltd +0fb6 Heber Ltd + 3fc3 Firefly X10i I/O Board (with firmware) + 3fc4 Firefly X10i I/O Board (without firmware) +0fb8 Wistron Corp. + 0002 eHome Infrared Receiver +0fb9 AACom Corp. +0fba San Shing Electronics Co., Ltd +0fbb Bitwise Systems, Inc. +0fc1 Mitac Internatinal Corp. +0fc2 Plug and Jack Industrial, Inc. +0fc5 Delcom Engineering + 1222 I/O Development Board +0fc6 Dataplus Supplies, Inc. +0fca Research In Motion, Ltd. + 0001 Blackberry Handheld + 0004 Blackberry Handheld + 0006 Blackberry Pearl + 0008 Blackberry Pearl + 8001 Blackberry Handheld + 8004 Blackberry + 8007 Blackberry Handheld + 8010 Blackberry Playbook (Connect to Windows mode) + 8011 Blackberry Playbook (Connect to Mac mode) + 8014 Blackberry Handheld Z30 + 8020 Blackberry Playbook (CD-Rom mode) + 8037 Blackberry PRIV +0fce Sony Ericsson Mobile Communications AB + 0076 W910i (Multimedia mode) + 00af V640i Phone [PTP Camera] + 00d4 C902 [MTP] + 00d9 C702 Phone + 0112 W995 Walkman Phone + 014e J108i Cedar (MTP mode) + 015a Xperia Pro [Media Transfer Protocol] + 0166 Xperia Mini Pro + 0167 ST15i (Xperia mini) + 0169 Xperia S + 0172 Xperia P + 0177 Xperia Ion [Mass Storage] + 0188 ST26i + 019c C6833 + 019e C6903 + 01a5 SO-04F + 01a7 D5503 + 01ba D6603 [Xperia Z3] + 01bb D5803 [Xperia Z3 Compact] (MTP mode) + 01e0 F5122 [Xperia X dual] (MTP mode) + 01e8 F5321 [Xperia X Compact] (MTP mode) + 01f9 H8314 [Xperia XZ2 Compact] + 1010 WMC Modem + 10af V640i Phone [PictBridge] + 10d4 C902 Phone [PictBridge] + 2105 W715 Phone + 2137 Xperia X10 mini (USB debug) + 2138 Xperia X10 mini pro (Debug) + 2149 Xperia X8 (debug) + 214e J108i Cedar (Windows-driver mode) + 3137 Xperia X10 mini + 3138 Xperia X10 mini pro + 3149 Xperia X8 + 514f Xperia arc S [Adb-Enable Mode] + 5169 Xperia S [Adb-Enable Mode] + 5177 Xperia Ion [Debug Mode] + 518c C1605 [Xperia E dual] MTD mode + 51a7 D5503 (Xperia Z1 Compact) + 51e0 F5122 [Xperia X dual] (developer mode) + 614f Xperia X12 (debug mode) + 6166 Xperia Mini Pro + 618c C1605 [Xperia E dual] MSC mode + 715a Xperia Pro [Tethering] + 7166 Xperia Mini Pro (Tethering mode) + 7177 Xperia Ion [Tethering] + 71f4 G8441 (Xperia XZ1 Compact) [Tethering] + 71f9 H8314 [Xperia XZ2 Compact] (Tethering) + 8004 9000 Phone [Mass Storage] + 81f4 G8441 (Xperia XZ1 Compact) [Tethering] + adde C2005 (Xperia M dual) in service mode + c1e0 F5122 [Xperia X dual] (MIDI mode) + c1e8 F5321 [Xperia X Compact] (MIDI mode) + c1f9 H8314 [Xperia XZ2 Compact] (MIDI) + d008 V800-Vodafone 802SE Phone + d016 K750i Phone + d017 K608i Phone + d019 VDC EGPRS Modem + d025 520 WMC Data Modem + d028 W800i + d038 W850i Phone + d039 K800i (phone mode) + d041 K510i Phone + d042 W810i Phone + d043 V630i Phone + d046 K610i Phone + d065 W960i Phone (PC Suite) + d076 W910i (Phone mode) + d079 K530 Phone + d089 W580i Phone (mass storage) + d0a1 K810 + d0af V640i Phone + d0cf MD300 Mobile Broadband Modem + d0d4 C902 Phone [Modem] + d0e1 MD400 Mobile Broadband Modem + d12a U100i Yari Phone + d12e Xperia X10 + d14e J108i Cedar (modem mode) + e000 K810 (PictBridge mode) + e039 K800i (msc mode) + e042 W810i Phone + e043 V630i Phone [Mass Storage] + e075 K850i + e076 W910i (Mass storage) + e089 W580i Phone + e090 W200 Phone (Mass Storage) + e0a1 K810 (Mass Storage mode) + e0a3 W660i + e0af V640i Phone [Mass Storage] + e0d4 C902 Phone [Mass Storage] + e0ef C905 Phone [Mass Storage] + e0f3 W595 + e105 W705 + e112 W995 Phone (Mass Storage) + e12e X10i Phone + e133 Vivaz + e14e J108i Cedar (mass-storage mode) + e14f Xperia Arc/X12 + e15a Xperia Pro [Mass Storage Class] + e161 Xperia Ray + e166 Xperia Mini Pro + e167 XPERIA mini + e19b C2005 [Xperia M dual] (Mass Storage) + e1a9 D5303 + e1aa D2303 + e1ad D5103 + e1b0 D6708 + e1b5 D2004 + e1ba D6683 + e1bb SO-02G + e1bc D2203 + e1c0 SGP621 + e1c2 D2533 + e1c9 E6553 + e1cf SGP771 + f0fa MN800 / Smartwatch 2 (DFU mode) +0fcf Dynastream Innovations, Inc. + 1003 ANT Development Board + 1004 ANTUSB Stick + 1006 ANT Development Board + 1008 ANTUSB2 Stick + 1009 ANTUSB-m Stick +0fd0 Tulip Computers B.V. +0fd1 Giant Electronics Ltd. +0fd2 Seac Banche + 0001 RDS 6000 +0fd4 Tenovis GmbH & Co., KG +0fd5 Direct Access Technology, Inc. +0fd9 Elgato Systems GmbH + 0011 EyeTV Diversity + 0018 EyeTV Hybrid + 0020 EyeTV DTT Deluxe + 0021 EyeTV DTT + 002a EyeTV Sat + 002c EyeTV DTT Deluxe v2 + 0033 Video Capture + 0037 Video Capture v2 + 0060 Stream Deck + 0063 Stream Deck Mini + 006c Stream Deck XL + 006d Stream Deck original V2 +0fda Quantec Networks GmbH + 0100 quanton flight control +0fdc Micro Plus +0fde Oregon Scientific + ca01 WMRS200 weather station + ca05 CM160 + ca08 WMR300 Professional Weather System +0fe0 Osterhout Design Group + 0100 Bluetooth Mouse + 0101 Bluetooth IMU + 0200 Bluetooth Keypad +0fe2 Air Techniques +0fe4 IN-Tech Electronics, Ltd +0fe5 Greenconn (U.S.A.), Inc. +0fe6 ICS Advent + 8101 DM9601 Fast Ethernet Adapter + 811e Parallel Adapter + 9700 DM9601 Fast Ethernet Adapter +0fe9 DVICO + 4020 TViX M-6500 + 9010 FusionRemote IR receiver + db00 FusionHDTV DVB-T (MT352+LgZ201) (uninitialized) + db01 FusionHDTV DVB-T (MT352+LgZ201) (initialized) + db10 FusionHDTV DVB-T (MT352+Thomson7579) (uninitialized) + db11 FusionHDTV DVB-T (MT352+Thomson7579) (initialized) + db78 FusionHDTV DVB-T Dual Digital 4 (ZL10353+xc2028/xc3028) (initialized) +0fea United Computer Accessories +0feb CRS Electronic Co., Ltd +0fec UMC Electronics Co., Ltd +0fed Access Co., Ltd +0fee Xsido Corp. +0fef MJ Research, Inc. +0ff6 Core Valley Co., Ltd +0ff7 CHI SHING Computer Accessories Co., Ltd +0ffc Clavia DMI AB + 0021 Nord Stage 2 + 002a Nord Piano 4 +0ffd EarlySense + ff00 OEM +0fff Aopen, Inc. +1000 Speed Tech Corp. + 153b TerraTec Electronic GmbH +1001 Ritronics Components (S) Pte., Ltd +1003 Sigma Corp. + 0003 SD14 + 0100 SD9/SD10 + 8781 Dock UD-01 +1004 LG Electronics, Inc. + 1fae U8120 3G Cellphone + 6000 Various Mobile Phones + 6005 T5100 + 6018 GM360/GD510/GW520/KP501 + 618e Ally/Optimus One/Vortex (debug mode) + 618f Ally/Optimus One + 61c5 P880 / Charge only + 61c6 Vortex (msc) + 61cc Optimus S + 61da G2 Android Phone [tethering mode] + 61f1 Optimus Android Phone [LG Software mode] + 61f9 Optimus (Various Models) MTP Mode + 61fc Optimus 3 + 61fe Optimus Android Phone [USB tethering mode] + 627f G3 (VS985) Android Phone (MTP/Download mode) + 6300 G2/Optimus Android Phone [Charge mode] + 631c LM-X420xxx/G2/Optimus Android Phone (charge mode) + 631d Optimus Android Phone (Camera/PTP Mode) + 631e LM-X420xxx/G2/Optimus Android Phone (PTP/camera mode) + 631f Optimus Android Phone (Charge Mode) + 633a Ultimate 2 Android Phone L41C + 633e LM-X420xxx/G2/G3 Android Phone (MTP/download mode) + 6344 LM-X420xxx/G2 Android Phone (USB tethering mode) + 6348 LM-X420xxx Android Phone (MIDI mode) + 6356 Optimus Android Phone [Virtual CD mode] + 6800 CDMA Modem + 7000 LG LDP-7024D(LD)USB + 91c8 P880 / USB tethering + a400 Renoir (KC910) +1005 Apacer Technology, Inc. + 1001 MP3 Player + 1004 MP3 Player + 1006 MP3 Player + b113 Handy Steno/AH123 / Handy Steno 2.0/HT203 + b155 Disk Module + b223 CD-RW + 6in1 Card Reader Digital Storage / Converter +1006 iRiver, Ltd. + 3001 iHP-100 + 3002 iHP-120/140 MP3 Player + 3003 H320/H340 + 3004 H340 (mtp) +1009 Emuzed, Inc. + 000e eHome Infrared Receiver + 0013 Angel MPEG Device + 0015 Lumanate Wave PAL SECAM DVBT Device + 0016 Lumanate Wave NTSC/ATSC Combo Device +100a AV Chaseway, Ltd + 2402 MP3 Player + 2404 MP3 Player + 2405 MP3 Player + 2406 MP3 Player + a0c0 MP3 Player +100b Chou Chin Industrial Co., Ltd +100d Netopia, Inc. + 3342 Cayman 3352 DSL Modem + 3382 3380 Series Network Interface + 6072 DSL Modem + 9031 Motorola 802.11n Dualband USB Wireless Adapter + 9032 Motorola 802.11n 5G USB Wireless Adapter + cb01 Cayman 3341 Ethernet DSL Router +1010 Fukuda Denshi Co., Ltd +1011 Mobile Media Tech. + 0001 AccFast Mp3 +1012 SDKM Fibres, Wires & Cables Berhad +1013 TST-Touchless Sensor Technology AG +1014 Densitron Technologies PLC +1015 Softronics Pty., Ltd +1016 Xiamen Hung's Enterprise Co., Ltd +1017 Speedy Industrial Supplies, Pte., Ltd + 9015 M625 [Vendor: DELUX] +1019 Elitegroup Computer Systems (ECS) + 0c55 Flash Reader, Desknote UCR-61S2B + 0f38 Infrared Receiver +1020 Labtec + 0006 Wireless Keyboard + 000a Wireless Optical Mouse + 0106 Wireless Optical Mouse/Keyboard +1022 Shinko Shoji Co., Ltd +1025 Hyper-Paltek + 005e USB DVB-T device + 005f USB DVB-T device + 0300 MP3 Player + 0350 MP3 Player +1026 Newly Corp. +1027 Time Domain +1028 Inovys Corp. +1029 Atlantic Coast Telesys +102a Ramos Technology Co., Ltd +102b Infotronic America, Inc. +102c Etoms Electronics Corp. + 6151 Q-Cam Sangha CIF + 6251 Q-Cam VGA + ff0c Joytech Wireless Advanced Controller +102d Winic Corp. +1031 Comax Technology, Inc. +1032 C-One Technology Corp. +1033 Nucam Corp. + 0068 3,5'' HDD case MD-231 +1038 SteelSeries ApS + 0100 Ideazon Zboard + 1260 Arctis 7 wireless adapter + 1361 Ideazon Sensei + 1410 SRW-S1 [Simraceway Steering Wheel] + 1720 Mouse +1039 devolo AG + 0824 1866 802.11bg [Texas Instruments TNETW1450] + 2140 dsl+ 1100 duo +103a PSA + f000 Actia Evo XS +103d Stanton + 0100 ScratchAmp + 0101 ScratchAmp +1043 iCreate Technologies Corp. + 160f Wireless Network Adapter + 4901 AV-836 Video Capture Device + 8006 Flash Disk 32-256 MB + 8012 Flash Disk 256 MB +1044 Chu Yuen Enterprise Co., Ltd + 7001 Gigabyte U7000 DVB-T tuner + 7002 Gigabyte U8000 DVB-T tuner + 7004 Gigabyte U7100 DVB-T tuner + 7005 Gigabyte U7200 DVB-T tuner [AF9035] + 7006 Gigabyte U6000 DVB-T tuner [em2863] + 8001 GN-54G + 8002 GN-BR402W + 8003 GN-WLBM101 + 8004 GN-WLBZ101 802.11b Adapter + 8005 GN-WLBZ201 802.11b Adapter + 8006 GN-WBZB-M 802.11b Adapter + 8007 GN-WBKG + 8008 GN-WB01GS + 800a GN-WI05GS + 800b GN-WB30N 802.11n WLAN Card + 800c GN-WB31N 802.11n USB WLAN Card + 800d GN-WB32L 802.11n USB WLAN Card +1046 Winbond Electronics Corp. [hex] + 6694 Generic W6694 USB + 8901 Bluetooth Device + 9967 W9967CF/W9968CF Webcam IC +1048 Targus Group International + 2010 4-Port hub +104b Mylex / Buslogic +104c AMCO TEC International, Inc. +104d Newport Corporation + 1003 Model-52 LED Light Source Power Supply and Driver + 3001 ESP301 3 Axis Motion Controller +104f WB Electronics + 0001 Infinity Phoenix + 0002 Smartmouse + 0003 FunProgrammer + 0004 Infinity Unlimited + 0006 Infinity Smart + 0007 Infinity Smart module + 0008 Infinity CryptoKey + 0009 RE-BL PlayStation 3 IR-to-Bluetooth converter +1050 Yubico.com + 0010 Yubikey (v1 or v2) + 0110 Yubikey NEO(-N) OTP + 0111 Yubikey NEO(-N) OTP+CCID + 0112 Yubikey NEO(-N) CCID + 0113 Yubikey NEO(-N) U2F + 0114 Yubikey NEO(-N) OTP+U2F + 0115 Yubikey NEO(-N) U2F+CCID + 0116 Yubikey NEO(-N) OTP+U2F+CCID + 0120 Yubikey Touch U2F Security Key + 0200 Gnubby U2F + 0211 Gnubby + 0401 Yubikey 4/5 OTP + 0402 Yubikey 4/5 U2F + 0403 Yubikey 4/5 OTP+U2F + 0404 Yubikey 4/5 CCID + 0405 Yubikey 4/5 OTP+CCID + 0406 Yubikey 4/5 U2F+CCID + 0407 Yubikey 4/5 OTP+U2F+CCID + 0410 Yubikey plus OTP+U2F +1053 Immanuel Electronics Co., Ltd +1054 BMS International Beheer N.V. + 5004 DSL 7420 Loader + 5005 DSL 7420 LAN Modem +1055 Complex Micro Interconnection Co., Ltd +1056 Hsin Chen Ent Co., Ltd +1057 ON Semiconductor +1058 Western Digital Technologies, Inc. + 0200 FireWire USB Combo + 0400 External HDD + 0500 hub + 0701 WD Passport (WDXMS) + 0702 WD Passport (WDXMS) + 0704 My Passport Essential (WDME) + 0705 My Passport Elite (WDML) + 070a My Passport Essential (WDBAAA), My Passport for Mac (WDBAAB), My Passport Essential SE (WDBABM), My Passport SE for Mac (WDBABW) + 070b My Passport Elite (WDBAAC) + 070c My Passport Studio (WDBAAE) + 071a My Passport Essential (WDBAAA) + 071d My Passport Studio (WDBALG) + 0730 My Passport Essential (WDBACY) + 0732 My Passport Essential SE (WDBGYS) + 0740 My Passport Essential (WDBACY) + 0741 My Passport Ultra + 0742 My Passport Essential SE (WDBGYS) + 0748 My Passport (WDBKXH, WDBY8L) + 07a8 My Passport (WDBBEP), My Passport for Mac (WDBLUZ) + 07ae My Passport Edge for Mac (WDBJBH) + 07ba PiDrive (WDLB) + 0810 My Passport Ultra (WDBZFP) + 0816 My Passport Air (WDBBLW) + 0820 My Passport Ultra (WDBMWV, WDBZFP) + 0822 My Passport Ultra (WDBBUZ) + 0824 My Passport Slim (WDBPDZ) + 0830 My Passport Ultra (WDBZFP) + 0837 My Passport Ultra (WDBBKD) + 0900 MyBook Essential External HDD + 0901 My Book Essential Edition (Green Ring) (WDG1U) + 0902 My Book Pro Edition (WDG1T) + 0903 My Book Premium Edition + 0905 My Book Pro Edition II (WD10000C033-001) + 0910 My Book Essential Edition (Green Ring) (WDG1U) + 1001 Elements Desktop (WDE1U) + 1003 WD Elements Desktop (WDE1UBK) + 1010 Elements Portable (WDBAAR) + 1021 Elements Desktop (WDBAAU) + 1023 Elements SE Portable (WDBABV) + 1042 Elements SE Portable (WDBPCK) + 1048 Elements Portable (WDBU6Y) + 1078 Elements Portable (WDBUZG) + 107c Elements Desktop (WDBWLG) + 10a2 Elements SE Portable (WDBPCK) + 10a8 Elements Portable (WDBUZG) + 10b8 Elements Portable (WDBU6Y, WDBUZG) + 1100 My Book Essential Edition 2.0 (WDH1U) + 1102 My Book Home Edition (WDH1CS) + 1103 My Book Studio + 1104 My Book Mirror Edition (WDH2U) + 1105 My Book Studio II + 1110 My Book Essential (WDBAAF), My Book for Mac (WDBAAG) + 1111 My Book Elite (WDBAAH) + 1112 My Book Studio (WDBAAJ), My Book Studio LX (WDBACH) + 1123 My Book 3.0 (WDBABP) + 1130 My Book Essential (WDBACW) + 1140 My Book Essential (WDBACW) + 1170 My Book Essential 3TB (WDBACW0030HBK) + 1230 My Book (WDBFJK) + 1235 My Book (WDBFJK0040HBK) + 2599 My Passport Ultra (WD40NMZW) + 259d My Passport Ultra (WDBBKD) + 259f My Passport Ultra (WD10JMVW) + 25a1 Elements / My Passport + 25a2 Elements 25A2 + 25a3 Elements Desktop (WDBWLG) + 25da My Book (WDBFJK) + 25e1 My Passport (WD20NMVW) + 25e2 My Passport (WD40NMZW) + 25ee My Book 25EE + 25f3 My Passport SSD (WDBK3E) + 25fa easystore Portable 5TB (WDBKUZ0050) + 25fb easystore Desktop (WDBCKA) + 2603 My Passport Game Storage for PS4 4TB (WDBZGE0040) + 2624 easystore Portable 5TB (WDBKUZ0050) + 2626 My Passport (WDBPKJ) + 30a0 SATA adapter cable +1059 Giesecke & Devrient GmbH + 000b StarSign Bio Token 3.0 +105b Foxconn International, Inc. + e065 BCM43142A0 Bluetooth module +105c Hong Ji Electric Wire & Cable (Dongguan) Co., Ltd +105d Delkin Devices, Inc. +105e Valence Semiconductor Design, Ltd +105f Chin Shong Enterprise Co., Ltd +1060 Easthome Industrial Co., Ltd +1063 Motorola Electronics Taiwan, Ltd [hex] + 1555 MC141555 Hub + 4100 SB4100 USB Cable Modem +1065 CCYU Technology + 0020 USB-DVR2 Dev Board + 2136 EasyDisk ED1064 +1068 Micropi Elettronica + 0001 CPUSB - V 1.8 - software-rights management key +106a Loyal Legend, Ltd +106c Curitel Communications, Inc. + 1101 CDMA 2000 1xRTT USB modem (HX-550C) + 1102 Packet Service + 1103 Packet Service Diagnostic Serial Port (WDM) + 1104 Packet Service Diagnostic Serial Port (WDM) + 1105 Composite Device + 1106 Packet Service Diagnostic Serial Port (WDM) + 1301 Composite Device + 1302 Packet Service Diagnostic Serial Port (WDM) + 1303 Packet Service + 1304 Packet Service + 1401 Composite Device + 1402 Packet Service + 1403 Packet Service Diagnostic Serial Port (WDM) + 1501 Packet Service + 1502 Packet Service Diagnostic Serial Port (WDM) + 1503 Packet Service + 1601 Packet Service + 1602 Packet Service Diagnostic Serial Port (WDM) + 1603 Packet Service + 2101 AudioVox 8900 Cell Phone + 2102 Packet Service + 2103 Packet Service Diagnostic Serial Port (WDM) + 2301 Packet Service + 2302 Packet Service Diagnostic Serial Port (WDM) + 2303 Packet Service + 2401 Packet Service Diagnostic Serial Port (WDM) + 2402 Packet Service + 2403 Packet Service Diagnostic Serial Port (WDM) + 2501 Packet Service + 2502 Packet Service Diagnostic Serial Port (WDM) + 2503 Packet Service + 2601 Packet Service + 2602 Packet Service Diagnostic Serial Port (WDM) + 2603 Packet Service + 3701 Broadband Wireless modem + 3702 Pantech PX-500 + 3714 PANTECH USB MODEM [UM175] + 3716 UMW190 Modem + 3721 Option Beemo (GI0801) LTE surfstick + 3b14 Option Beemo (GI0801) LTE surfstick + 3eb4 Packet Service Diagnostic Serial Port (WDM) + 4101 Packet Service Diagnostic Serial Port (WDM) + 4102 Packet Service + 4301 Composite Device + 4302 Packet Service Diagnostic Serial Port (WDM) + 4401 Composite Device + 4402 Packet Service + 4501 Packet Service + 4502 Packet Service Diagnostic Serial Port (WDM) + 4601 Composite Device + 4602 Packet Service Diagnostic Serial Port (WDM) + 5101 Packet Service + 5102 Packet Service Diagnostic Serial Port (WDM) + 5301 Packet Service Diagnostic Serial Port (WDM) + 5302 Packet Service + 5401 Packet Service + 5402 Packet Service Diagnostic Serial Port (WDM) + 5501 Packet Service Diagnostic Serial Port (WDM) + 5502 Packet Service + 5601 Packet Service Diagnostic Serial Port (WDM) + 5602 Packet Service + 7101 Composite Device + 7102 Packet Service + a000 Packet Service + a001 Packet Service Diagnostic Serial Port (WDM) + c100 Packet Service + c200 Packet Service + c500 Packet Service Diagnostic Serial Port (WDM) + e200 Packet Service +106d San Chieh Manufacturing, Ltd +106e ConectL +106f Money Controls + 0009 CT10x Coin Transaction + 000a CR10x Coin Recycler + 000c Xchange +1076 GCT Semiconductor, Inc. + 0031 Bluetooth Device + 0032 Bluetooth Device + 8002 LU150 LTE Modem [Yota LU150] +107b Gateway, Inc. + 3009 eHome Infrared Transceiver + 55b2 WBU-110 802.11b Wireless Adapter [Intersil PRISM 3] + 55f2 WGU-210 802.11g Adapter [Intersil ISL3886] +107d Arlec Australia, Ltd +107e Midoriya Electric Co., Ltd +107f KidzMouse, Inc. +1082 Shin-Etsukaken Co., Ltd +1083 Canon Electronics, Inc. + 160c CR-55 + 160f DR-1210C + 1614 DR-4010C + 1617 DR-2510C + 1618 DR-X10C + 161a CR-25 + 161b DR-2010C Scanner + 161d DR-3010C + 1620 DR-7090C + 1622 DR-9050C + 1623 DR-7550C + 1624 DR-6050C + 1626 DR-6010C + 162c P-150 Scanner + 1638 DR-6030C + 1639 CR-135i + 163e DR-M160 + 163f DR-M140 + 1640 DR-C125 + 1641 DR-P215 + 1648 FSU-201 + 164a DR-C130 + 164b DR-P208 + 164f DR-G1130 + 1650 DR-G1100 + 1651 DR-C120 + 1654 DR-F120 + 1657 DR-M1060 + 1658 DR-C225 + 1659 DR-P215II + 165d DR-P208II +1084 Pantech Co., Ltd +108a Chloride Power Protection +108b Grand-tek Technology Co., Ltd + 0005 HID Keyboard/Mouse PS/2 Translator +108c Robert Bosch GmbH + 017e GTC 400 C +108e Lotes Co., Ltd. +1091 Numerik Jena + 8101 Absoflex +1099 Surface Optics Corp. +109a DATASOFT Systems GmbH +109b Hisense + 9109 CROSSCALL Trekker-M1 Core (MTP-Mode) + 9118 Medion P4013 Mobile + 9119 CROSSCALL Trekker-M1 Core (PTP-Mode) + f009 CROSSCALL Trekker-M1 Core (CD-ROM-Mode) +109f eSOL Co., Ltd + 3163 Trigem Mobile SmartDisplay84 + 3164 Trigem Mobile SmartDisplay121 +10a0 Hirotech, Inc. +10a3 Mitsubishi Materials Corp. +10a9 SK Teletech Co., Ltd + 1102 Sky Love Actually IM-U460K + 1104 Sky Vega IM-A650S + 1105 VEGA Android composite + 1106 VEGA Android composite + 1107 VEGA Android composite + 1108 VEGA Android composite + 1109 VEGA Android composite + 6021 SIRIUS alpha + 6031 Pantech Android composite + 6032 Pantech Android composite + 6033 Pantech Android composite + 6034 Pantech Android composite + 6035 Pantech Android composite + 6036 Pantech Android composite + 6037 Pantech Android composite + 6050 Pantech Android composite + 6051 Pantech Android composite + 6052 Pantech Android composite + 6053 Pantech Android composite + 6054 Pantech Android composite + 6055 Pantech Android composite + 6056 Pantech Android composite + 6057 Pantech Android composite + 6058 Pantech Android composite + 6059 Pantech Android composite + 6080 MHS291LVW LTE Modem [Verizon Jetpack 4G LTE Mobile Hotspot MHS291L] (Zero CD Mode) + 6085 MHS291LVW LTE Modem [Verizon Jetpack 4G LTE Mobile Hotspot MHS291L] (Modem Mode) + 7031 Pantech Android composite + 7032 Pantech Android composite + 7033 Pantech Android composite + 7034 Pantech Android composite + 7035 Pantech Android composite + 7036 Pantech Android composite + 7037 Pantech Android composite +10aa Cables To Go +10ab USI Co., Ltd + 1002 Bluetooth Device + 1003 BC02-EXT in DFU + 1005 Bluetooth Adptr + 1006 BC04-EXT in DFU + 10c5 Sony-Ericsson / Samsung DataCable +10ac Honeywell, Inc. +10ae Princeton Technology Corp. +10af Liebert Corp. + 0000 UPS + 0001 PowerSure PSA UPS + 0002 PowerSure PST UPS + 0003 PowerSure PSP UPS + 0004 PowerSure PSI UPS + 0005 UPStation GXT 2U UPS + 0006 UPStation GXT UPS + 0007 Nfinity Power Systems UPS + 0008 PowerSure Interactive UPS +10b5 Comodo (PLX?) + 9060 Test Board +10b8 DiBcom + 0bb8 DVB-T reference design (MOD300) (cold) + 0bb9 DVB-T reference design (MOD300) (warm) + 0bc6 DVB-T reference design (MOD3000P) (cold) + 0bc7 DVB-T reference design (MOD3000P) (warm) +10bb TM Technology, Inc. +10bc Dinging Technology Co., Ltd +10bd TMT Technology, Inc. + 1427 Ethernet +10bf SmartHome + 0001 SmartHome PowerLinc +10c3 Universal Laser Systems, Inc. + 00a4 ULS PLS Series Laser Engraver Firmware Loader + 00a5 ULS Print Support +10c4 Silicon Labs + 0002 F32x USBXpress Device + 0003 CommandIR + 800a SPORTident + 800b AES + 8030 K4JRG Ham Radio devices + 8044 USB Debug Adapter + 804e Software Bisque Paramount ME + 80a9 CP210x to UART Bridge Controller + 80c4 Infrared Thermometer Adapter + 80ca ATM2400 Sensor Device + 813f tams EasyControl + 8149 West Mountain Radio Computerized Battery Analyzer + 814a West Mountain Radio RIGblaster P&P + 814b West Mountain Radio RIGtalk + 818a Silicon Labs FM Radio Reference Design + 81e8 Zephyr BioHarness + 834b Infrared Online Sensor Adapter + 834e Infrared Sensor Adapter + 8460 Sangoma Wanpipe VoiceTime + 8461 Sangoma U100 + 8470 Juniper Networks BX Series System Console + 8477 Balluff RFID Reader + 8496 SiLabs Cypress FW downloader + 8497 SiLabs Cypress EVB + 84fb Infrared Blackbody Adapter + 8508 RS485 Adapter + 8605 dilitronics ESoLUX solar lighting controller + 8660 Netronics CANdoISO + 86bc C8051F34x AudioDelay [AD-340] + 8789 C8051F34x Extender & EDID MGR [EMX-DVI] + 87be C8051F34x HDMI Audio Extractor [EMX-HD-AUD] + 8863 C8051F34x Bootloader + 8897 C8051F38x HDMI Splitter [UHBX] + 88c9 AES HID device + 8918 C8051F38x HDMI Audio Extractor [VSA-HA-DP] + 8973 C8051F38x HDMI Extender [UHBX-8X] + 89c6 SPORTident HID device + 89e1 C8051F38x HDMI Extender [UHBX-SW3-WP] + 89fb Qivicon ZigBee Stick + 8a3c C8051F38x HDBaseT Receiver [UHBX-R-XT] + 8a6c C8051F38x 4K HDMI Audio Extractor [EMX-AMP] + 8acb C8051F38x HDBaseT Wall Plate Receiver with IR, RS-232, and PoH [UHBX-R-WP] + 8af8 C8051F38x 4K HDMI Audio Extractor w/Audio Amplifier, HDBT Input, Line Audio Input RS-232 Ports and IP Control [VSA-X21] + 8b8c C8051F38x 4K HDMI Audio Extractor w/Audio Amplifier, HDBT Input, Line Audio Input RS-232 Ports and IP Control [SC-3H] + 8db5 C8051F38x CATx HDMI Receiver with USB [EX-HDU-R] + 8db6 C8051F38x CATx HDMI Receiver + ea60 CP210x UART Bridge + ea61 CP210x UART Bridge + ea63 CP210x UART Bridge + ea70 CP2105 Dual UART Bridge + ea71 CP2108 Quad UART Bridge + ea80 CP2110 HID UART Bridge + ea90 CP2112 HID I2C Bridge + ea91 CP2112 HID SMBus/I2C Bridge for CP2614 Evaluation Kit + ea93 CP2112 HID SMBus/I2C Bridge for CP2615 Evaluation Kit + eab0 CP2114 I2S Audio Bridge + eac0 CP2614 MFi Accessory Digital Audio Bridge + eac1 CP2615 I2S Audio Bridge + eac9 EFM8UB1 Bootloader + eaca EFM8UB2 Bootloader + eacb EFM8UB3 Bootloader +10c5 Sanei Electric, Inc. + 819a FM Radio +10c6 Intec, Inc. +10cb Eratech +10cc GBM Connector Co., Ltd + 1101 MP3 Player +10cd Kycon, Inc. +10ce Silicon Labs + 0007 Shinko/Sinfonia CHC-S1245 + 000e Shinko/Sinfonia CHC-S2145 + 0019 Shinko/Sinfonia CHC-S6145 + 001d Shinko/Sinfonia CHC-S6245 + 001e Ciaat Brava 21 + 0039 Sinfonia CHC-S2245 + 10ce Sinfonia CHC-S2245 + ea6a MobiData EDGE USB Modem +10cf Velleman Components, Inc. + 2011 R-Engine MPEG2 encoder/decoder + 5500 8055 Experiment Interface Board (address=0) + 5501 8055 Experiment Interface Board (address=1) + 5502 8055 Experiment Interface Board (address=2) + 5503 8055 Experiment Interface Board (address=3) +10d1 Hottinger Baldwin Measurement + 0101 USB-Module for Spider8, CP32 + 0202 CP22 - Communication Processor + 0301 CP42 - Communication Processor +10d2 RayComposer - R. Adams + 5243 RayComposer +10d4 Man Boon Manufactory, Ltd +10d5 Uni Class Technology Co., Ltd + 0004 PS/2 Converter + 5552 KVM Human Interface Composite Device (Keyboard/Mouse ports) + 55a2 2Port KVMSwitcher + 5a08 Dual Bay Docking Station +10d6 Actions Semiconductor Co., Ltd + 0c02 BioniQ 1001 Tablet + 1000 MP3 Player + 1100 MPMan MP-Ki 128 MP3 Player/Recorder + 1101 D-Wave 2GB MP4 Player / AK1025 MP3/MP4 Player + 2200 Acer MP-120 MP3 player + 8888 ADFU Device + ff51 ADFU Device + ff61 MP4 Player + ff66 Craig 2GB MP3/Video Player +10de Authenex, Inc. +10df In-Win Development, Inc. + 0500 iAPP CR-e500 Card reader +10e0 Post-Op Video, Inc. +10e1 CablePlus, Ltd +10e2 Nada Electronics, Ltd +10ec Vast Technologies, Inc. +10f0 Nexio Co., Ltd + 2002 iNexio Touchscreen controller +10f1 Importek + 1a08 Internal Webcam + 1a1e Laptop Integrated Webcam 1.3M + 1a2a Laptop Integrated Webcam + 1a2e HP Truevision HD Integrated Webcam +10f5 Turtle Beach + 0200 Audio Advantage Roadie + 0231 Ear Force P11 Headset + 10f5 EarForce PX21 Gaming Headset +10f8 Cesys GmbH + 3201 CeboLC + 3202 CeboStick + 3203 CeboMSA64 + 3204 CeboDFN + 3205 PSAA2304W_CASC + c401 USBV4F unconfigured + c402 EFM01 unconfigured + c403 MISS2 unconfigured + c404 CID unconfigured + c405 USBS6 unconfigured + c406 OP_MISS2 unconfigured + c407 NanoUsb uncofigured + c481 USBV4F + c482 EFM01 + c483 MISS2 + c484 CID + c485 USBS6 + c486 OP_MISS2 + c487 NanoUsb + c501 EFM02 unconfigured + c502 EFM02/B unconfigured + c503 EFM03 unconfigured + c581 EFM02 + c582 EFM02/B + c583 EFM03 +10fb Pictos Technologies, Inc. +10fd Anubis Electronics, Ltd + 7e50 FlyCam Usb 100 + 804d Typhoon Webshot II Webcam [zc0301] + 8050 FlyCAM-USB 300 XP2 + de00 WinFast WalkieTV WDM Capture Driver. +10fe Thrane & Thrane + 000c TT-3750 BGAN-XL Radio Module +1100 VirTouch, Ltd + 0001 VTPlayer VTP-1 Braille Mouse +1101 EasyPass Industrial Co., Ltd + 0001 FSK Electronics Super GSM Reader +1108 Brightcom Technologies, Ltd +110a Moxa Technologies Co., Ltd. + 1110 UPort 1110 + 1150 UPort 1150 1-Port RS-232/422/485 + 1250 UPort 1250 2-Port RS-232/422/485 + 1251 UPort 1250I 2-Port RS-232/422/485 with Isolation + 1410 UPort 1410 4-Port RS-232 + 1450 UPort 1450 4-Port RS-232/422/485 + 1451 UPort 1450I 4-Port RS-232/422/485 with Isolation + 1613 UPort 1610-16 16-Port RS-232 + 1618 UPort 1610-8 8-Port RS-232 + 1653 UPort 1650-16 16-Port RS-232/422/485 + 1658 UPort 1650-8 8-Port RS-232/422/485 +1110 Analog Devices Canada, Ltd (Allied Telesyn) + 5c01 Huawei MT-882 Remote NDIS Network Device + 6489 ADSL ETH/USB RTR + 9000 ADSL LAN Adapter + 9001 ADSL Loader + 900f AT-AR215 DSL Modem + 9010 AT-AR215 DSL Modem + 9021 ADSL WAN Adapter + 9022 ADSL Loader + 9023 ADSL WAN Adapter + 9024 ADSL Loader + 9031 ADSL LAN Adapter + 9032 ADSL Loader +1111 Pandora International Ltd. + 8888 Evolution Device +1112 YM ELECTRIC CO., Ltd +1113 Medion AG + a0a2 Active Sync device +111e VSO Electric Co., Ltd +112a RedRat + 0001 RedRat3 IR Transceiver + 0005 RedRat3II IR Transceiver +112e Master Hill Electric Wire and Cable Co., Ltd +112f Cellon International, Inc. +1130 Tenx Technology, Inc. + 0001 BlyncLight + 0002 iBuddy + 0004 iBuddy Twins + 0202 Rocket Launcher + 6604 MCE IR-Receiver + 6606 U+P Mouse + 660c Foot Pedal/Thermometer + 6626 Key + 6806 Keychain photo frame + c301 Digital Photo viewer [Wallet Pix] + f211 TP6911 Audio Headset +1131 Integrated System Solution Corp. + 1001 KY-BT100 Bluetooth Adapter + 1002 Bluetooth Device + 1003 Bluetooth Device + 1004 Bluetooth Device +1132 Toshiba Corp., Digital Media Equipment [hex] + 4331 PDR-M4/M5/M70 Digital Camera + 4332 PDR-M60 Digital Camera + 4333 PDR-M2300/PDR-M700 + 4334 PDR-M65 + 4335 PDR-M61 + 4337 PDR-M11 + 4338 PDR-M25 +1136 CTS Electronincs + 3131 CTS LS515 +113c Arin Tech Co., Ltd +113d Mapower Electronics Co., Ltd +113f Integrated Biometrics, LLC + 1020 Watson Two-Finger Roll Scanner + 1100 Columbo Single-Finger Scanner +1141 V One Multimedia, Pte., Ltd +1142 CyberScan Technologies, Inc. + 0709 Cyberview High Speed Scanner +1145 Japan Radio Company + 0001 AirH PHONE AH-J3001V/J3002V +1146 Shimane SANYO Electric Co., Ltd. +1147 Ever Great Electric Wire and Cable Co., Ltd +114b Sphairon Access Systems GmbH + 0110 Turbolink UB801R WLAN Adapter + 0150 Turbolink UB801RE Wireless 802.11g 54Mbps Network Adapter [RTL8187] +114c Tinius Olsen Testing Machine Co., Inc. +114d Alpha Imaging Technology Corp. +114f Wavecom + 1234 Fastrack Xtend FXT001 Modem +115b Salix Technology Co., Ltd. +1162 Secugen Corp. +1163 DeLorme Publishing, Inc. + 0100 Earthmate GPS (orig) + 0200 Earthmate GPS (LT-20, LT-40) + 2020 Earthmate GPS (PN-40) +1164 YUAN High-Tech Development Co., Ltd + 0300 ELSAVISION 460D + 0601 Analog TV Tuner + 0900 TigerBird BMP837 USB2.0 WDM Encoder + 0bc7 Digital TV Tuner + 521b MC521A mini Card ATSC Tuner + 6601 Digital TV Tuner Card [RTL2832U] +1165 Telson Electronics Co., Ltd +1166 Bantam Interactive Technologies +1167 Salient Systems Corp. +1168 BizConn International Corp. +116e Gigastorage Corp. +116f Silicon 10 Technology Corp. + 0005 Flash Card Reader + c108 Flash Card Reader + c109 Flash Card Reader +1175 Shengyih Steel Mold Co., Ltd +117d Santa Electronic, Inc. +117e JNC, Inc. +1182 Venture Corp., Ltd +1183 Compaq Computer Corp. [hex] (Digital Dream ??) + 0001 DigitalDream l'espion XS + 19c7 ISDN TA + 4008 56k FaxModem + 504a PJB-100 Personal Jukebox +1184 Kyocera Elco Corp. +1188 Bloomberg L.P. +1189 Acer Communications & Multimedia + 0893 EP-1427X-2 Ethernet Adapter [Acer] +118f You Yang Technology Co., Ltd +1190 Tripace +1191 Loyalty Founder Enterprise Co., Ltd +1196 Yankee Robotics, LLC + 0010 Trifid Camera without code + 0011 Trifid Camera +1197 Technoimagia Co., Ltd +1198 StarShine Technology Corp. +1199 Sierra Wireless, Inc. + 0019 AC595U + 0021 AC597E + 0024 MC5727 CDMA modem + 0110 Composite Device + 0112 CDMA 1xEVDO PC Card, AirCard 580 + 0120 AC595U + 0218 MC5720 Wireless Modem + 6467 MP Series Network Adapter + 6468 MP Series Network Adapter + 6469 MP Series Network Adapter + 6802 MC8755 Device + 6803 MC8765 Device + 6804 MC8755 Device + 6805 MC8765 Device + 6812 MC8775 Device + 6820 AC875 Device + 6832 MC8780 Device + 6833 MC8781 Device + 683a MC8785 Device + 683c Mobile Broadband 3G/UMTS (MC8790 Device) + 6850 AirCard 880 Device + 6851 AirCard 881 Device + 6852 AirCard 880E Device + 6853 AirCard 881E Device + 6854 AirCard 885 Device + 6856 ATT "USB Connect 881" + 6870 MC8780 Device + 6871 MC8781 Device + 6893 MC8777 Device + 68a3 MC8700 Modem + 68aa 4G LTE adapter + 9000 Gobi 2000 Wireless Modem (QDL mode) + 9001 Gobi 2000 Wireless Modem + 9002 Gobi 2000 Wireless Modem + 9003 Gobi 2000 Wireless Modem + 9004 Gobi 2000 Wireless Modem + 9005 Gobi 2000 Wireless Modem + 9006 Gobi 2000 Wireless Modem + 9007 Gobi 2000 Wireless Modem + 9008 Gobi 2000 Wireless Modem + 9009 Gobi 2000 Wireless Modem + 900a Gobi 2000 Wireless Modem + 9011 MC8305 Modem + 9013 Sierra Wireless Gobi 3000 Modem device (MC8355) + 9041 EM7305 Modem + 9055 Gobi 9x15 Multimode 3G/4G LTE Modem (NAT mode) + 9057 Gobi 9x15 Multimode 3G/4G LTE Modem (IP passthrough mode) + 9071 AirPrime MC7455 3G/4G LTE Modem + 9079 EM7455 +119a ZHAN QI Technology Co., Ltd +119b ruwido austria GmbH + 0400 Infrared Keyboard V2.01 +11a0 Chipcon AS + eb11 CC2400EB 2.0 ZigBee Sniffer +11a3 Technovas Co., Ltd + 8031 MP3 Player + 8032 MP3 Player +11aa GlobalMedia Group, LLC + 1518 iREZ K2 +11ab Exito Electronics Co., Ltd +11ac Nike + 6565 FuelBand +11b0 ATECH FLASH TECHNOLOGY + 6208 PRO-28U + 6298 Kingston SNA-DC/U +11be R&D International NV + f0a0 Martin Maxxyz DMX +11c0 Betop + 5506 Gamepad +11c5 Inmax + 0521 IMT-0521 Smartcard Reader +11c9 Nacon + 55f0 GC-100XF +11ca VeriFone Inc + 0201 MX870/MX880 + 0207 PIN Pad VX 810 + 0220 PIN Pad VX 805 +11db Topfield Co., Ltd. + 1000 PVR + 1100 PVR +11e6 K.I. Technology Co. Ltd. +11f5 Siemens AG + 0001 SX1 + 0003 Mobile phone USB cable + 0004 X75 + 0005 SXG75/EF81 + 0008 UMTS/HSDPA Data Card + 0101 RCU Connect +11f6 Prolific + 2001 Willcom WSIM +11f7 Alcatel (?) + 02df Serial cable (v2) for TD-10 Mobile Phone +1203 TSC Auto ID Technology Co., Ltd + 0140 TTP-245C +1209 Generic + 0001 pid.codes Test PID + 0002 pid.codes Test PID + 0003 pid.codes Test PID + 0004 pid.codes Test PID + 0005 pid.codes Test PID + 0006 pid.codes Test PID + 0007 pid.codes Test PID + 0008 pid.codes Test PID + 0009 pid.codes Test PID + 000a pid.codes Test PID + 000b pid.codes Test PID + 000c pid.codes Test PID + 000d pid.codes Test PID + 000e pid.codes Test PID + 000f pid.codes Test PID + 0010 pid.codes Test PID + 01c0 Input Club Kiibohd Device + 01cb Input Club Kiibohd Device Bootloader + 0256 Schwalm & Tate LLC pISO Raspberry Pi Hat + 053a Hackerspace San Salvador HSSV SAMR21-Mote + 0cbd Andrzej Szombierski kuku.eu.org keyboard + 0d32 ODrive Robotics ODrive v3 + 1001 InterBiometrics Hub + 1002 InterBiometrics Relais + 1003 InterBiometrics IBSecureCam-P + 1004 InterBiometrics IBSecureCam-O + 1005 InterBiometrics IBSecureCam-N + 1006 InterBiometrics Mini IO-Board + 1007 e-radionica.com Croduino SAMD + 1986 dgrubb Jaguar Tap + 1ab5 Arachnid Labs Tsunami + 1ab6 Arachnid Labs Tsunami Bootloader + 2000 Zygmunt Krynicki Lantern Brightness Sensor + 2001 OSHEC Pi-pilot opensource and openhardware autopilot system + 2002 Peter Lawrence PIC16F1-USB-DFU-Bootloader + 2003 Peter Lawrence SAMDx1-USB-DFU-Bootloader + 2004 GCBASIC Serial CDC Stack + 2005 GCBASIC OakTree Stack + 2006 GCBASIC Simulation Stack + 2016 Cupkee + 2017 Benjamin Shockley Mini SAM + 2020 Captain Credible Gate Crystal + 2048 Housedillon.com MRF49XA Transceiver + 2100 TinyFPGA B1 and B2 Boards + 2101 TinyFPGA A-Series Programmer + 2200 Dygma Shortcut Bootloader + 2201 Dygma Shortcut Keyboard + 2222 LabConnect Signalgenerator + 2300 Keyboardio Model 01 Bootloader + 2301 Keyboardio Model 01 + 2323 bytewerk.org candleLight + 2327 K.T.E.C. Bootloader Device + 2328 K.T.E.C. Keyboard Device + 2333 Kai Ryu Kimera + 2334 Kai Ryu Staryu + 2335 Portwell Sense8 + 2336 Portwell Sense8 + 2337 /Dev /Net + 2342 Andreas Bogk Big Red Button + 2345 VV-Soft Simple Generic HID IO + 2357 KarolKucza TinyPassword + 2400 phooky Snap-Pad + 2488 Peter Lawrence CMSIS-DAP Dapper Miser + 2552 ProjectIota Electrolink + 2600 Majenko Technologies chipKIT Lenny + 2635 Sevinz GameBot + 2800 Entropic Engineering Triangulation + 2801 Entropic Engineering Object Manipulation + 2a00 mooware Wii adapter + 2a01 mooware SNES adapter + 3000 lloyd3000 + 3100 OpenSimHardware Pedals & Buttons Controller + 317e Codecrete Wirekite + 3210 OSH Lab, LLC Magic Keys + 3333 LabConnect Digitalnetzteil + 345b kinX Hub + 345c kinX Keyboard Controller + 3690 Kigakudoh TouchMIDI32 + 4096 CynaraKrewe Cynara + 414c Adi Linden + 414d Adi Linden + 4242 Komakallio Astrophotography Community KomaHub Remote Power Switch + 4256 CuVoodoo BusVoodoo multi-protocol debugging adapter + 4321 mooltipass Offline Password Keeper Bootloader + 4322 mooltipass Arduino Sketch + 4356 CuVoodoo firmware + 4443 j1rie IRMP_STM32 Bootloader + 4444 j1rie IRMP_STM32 + 4545 SlothCo Enterprises Teletype Adapter + 4646 SmartPID SPC1000 + 4748 Kate Gray GHETT-iO Bootloader + 4750 Chris Pavlina (c4757p) C4-x computer (development interface) + 4757 Chris Pavlina (c4757p) WCP52 Gain/Phase Analyzer + 4801 Wojciech Krutnik NVMemProg + 4c60 MightyPork GEX module + 4c61 MightyPork GEX wireless dongle + 4d53 mindsensors.com NXTCam5 + 5038 frotz.net mdebug rswd protocol + 5039 frotz.net lpcboot protocol + 5050 trebb ISO50 + 5070 SoloHacker security key [SoloKey] + 50b0 boot for security key [SoloKey] + 5222 telavivmakers attami + 53c0 SatoshiLabs TREZOR Bootloader + 53c1 SatoshiLabs TREZOR + 5432 Open Programmer + 5457 Openlab.Taipei Taiwanduino + 571c StreetoArcade PancadariaStick + 5a22 ikari_01 sd2snes + 6000 Pulsar Heavy Industries Cenx4 + 600d Makdaam N93 Interface + 6464 Electric Exploits Shinewave + 6502 jj1bdx avrhwrng v2rev1 + 6570 Iowa Scaled Engineering, LLC CKT-AVRPROGRAMMER + 6666 Talpa Chen VSFLogic + 6667 SensePost Universal Serial aBUSe - Generic HID + 6742 NPK Cubitel Atomic Force Microscope + 6809 Tach Radio Doppelganger + 6948 MySensors Sensebender Gateway BootLoader + 6949 MySensors Sensebender Gateway + 6bcf blaste Gameboy Cart Flasher + 7000 Secalot Dongle + 7001 Secalot Bootloader + 70b1 Sutajio Ko-Usagi (Kosagi) Tomu + 7331 Dangerous Prototypes Bus Pirate Next Gen CDC + 7332 Dangerous Prototypes Bus Pirate Next Gen Logic Analyzer + 7401 Beststream-jp Tool_CDC + 7530 PotentialLabs Refflion - IoT Development Board - Bootloader + 7531 PotentialLabs Refflion - IoT Development Board - Sketch + 7551 The Tessel Project Tessel 2 + 7777 circuitvalley IO Board V3 + 7778 circuitvalley IO Board V3 Bootloader + 7950 PIC18F87J94 Bootloader [GenII] + 7951 PIC18F87J94 Application [GenII] + 7952 PIC18F87J94 Bootloader [GenIII/IV] + 7953 PIC18F87J94 Application [GenIII/IV] + 7954 PIC18F87J94 Application [GenIII/IV] + 7bd0 pokey9000 Tiny Bit Dingus + 8000 Autonomii NODii 2 + 8086 MisfitTech Nano Zero Bootloader + 8087 MisfitTech Nano Zero + 8123 Danyboard M0 bootloader + 812a Danyboard M0 + 813a MickMad HACK Bootloader + 813b MickMad HACK Sketch + 8242 Tom Wimmenhove Electronics NBS-DAC 192/24 UAC1 + 8243 Tom Wimmenhove Electronics NBS-DAC 192/24 UAC2 + 8472 Shantea Controls OpenDeck + 8661 ProgHQ TL866 programmer + 8844 munia.io MUNIA + 8888 Blinkinlabs POV Pendant + 8889 Blinkinlabs POV Pendant (bootloader) + 8b00 ReSwitched Libtransistor Serial Console + 9021 Connected Community Hackerspace ESPlant + 9317 Sutajio Ko-Usagi (Kosagi) Palawan-Tx + 9999 Sandeepan Sengupta CodeBridge Infineo + 9db5 PD Buddy Sink + a033 area0x33 Memtype + a100 KB LES Narsil analog breakout + a10c KB LES Aminoacid Synthesizer + a1e5 Atreus Keyboards Atreus Keyboard + a3a4 MK::Box MK::Kbd + a3a5 MK::Box MK::Kbd Bootloader + a55a Forever Young Software ATTINY2313 + a602 Robotips RTBoard + a7ea area3001 Knixx SW04 + a800 sowbug.com WebLight + a8b0 Intelectron BootWare + a8b1 Intelectron FrameWare + aa00 Serg Oskin LinuxCNC HID Extender + aa0b Open Bionics + ab3d 3DArtists Alligator board + abba CoinWISE SafeWISE + abc0 Omzlo controller + abcd Sandeepan Sengupta CodeBridge + abd1 OpenMV Cam + acdc Gediminas Zukaitis midi-grid + ace5 SimAces Panel Ace + aced Open Lighting Project Ja Rule Device + acee Open Lighting Project Ja Rule Bootloader + adb0 tibounise ADB converter + adda MicroPython Boards + b007 Konsgn Global_Boot + b00b CrapLab Random Device + b010 IObitZ CodeBridge + b01d WyoLum VeloKey + b058 Model B, LLC Holoseat + b0b0 Monero Hardware Monero Bootloader + b100 ptrandem iBizi + b101 IObitZ Infineo + b195 flehrad Big Switch PCB + bab1 ElectronicCats Meow Meow + babe brunofreitas.com STM32 HID Bootloader + bad1 Gregory POTEAU CommLinkUSB + bad2 Gregory POTEAU XLinkUSB + bade Semarme SemarmeHID + bb00 keyplus split keyboard firmware + bb01 keyplus xusb bootloader + bb02 keyplus nRF24 wireless keyboard dongle + bb03 keyplus nrf24lu1p-512 bootloader + bb05 keyplus kp_boot_32u4 bootloader + beba serasidis.gr STM32 HID Bootloader + beef Modal MC-USB + c001 Cynteract Alpha + c0c0 Geppetto_Electronics Orthrus + c0c1 Michael Bemmerl cookie-mouse + c0ca Jean THOMAS DirtyJTAG + c0d3 Samy Kamkar USBdriveby + c0da Monero Hardware Monero Firmware + c0de KMRH Labs SBL Brain + c0f5 unethi PERswitch + c1aa Proyecto CIAA Computadora Industrial Abierta Argentina + c1b1 Chibitronics Love-to-Code + c311 bg nerilex GB-USB-Link + ca1c KnightOS Generic Hub + ca1d KnightOS MTP Device + caea Open Music Kontrollers Chimaera + cafe ii iigadget + cc14 trebb NaN-15 + cc86 Manfred's Technologies Anastasia Bootloader + ceb0 KG4LNE GE-FlashUSB + cf20 Smart Citizen SCK 2.0 + d00d Monero Hardware Monero Developer + d017 empiriKit empiriKit Controller + d11d Koi Science DI-Lambda AVR + d3d8 Duet3d Duet 0.8.5 + d706 SkyBean SkyDrop + da42 Devan Lai dap42 debug access probe + daa0 darknao btClubSportWheel + dada Rebel Technology OWL + db42 Devan Lai dapboot DFU bootloader + dc21 FPGA-Computer Dual Charger + dddd Stephan Electronics OpenCVMeter + dead chaosfield.at AVR-Ruler + deaf CrapLab 4chord MIDI + ded1 ManCave Made Quark One + deed Kroneum Time Tracker + df00 D.F.Mac. @TripArts Music mi:muz:tuch + df01 D.F.Mac. @TripArts Music mi:muz:can + df02 D.F.Mac. @TripArts Music mi:muz:can-lite + e116 Elijah Motornyy open-oscilloscope-stm32f3 + e1ec FreeSRP + e4ee trebb keytee + e500 GitleMikkelsen Helios Laser DAC + eaea Pinscape Controller + eb01 RobotMaker.club EB1 + eba7 VictorGrigoryev USBscope + ee00 Explore Embedded SODA(SWD OpenSource Debug Adapter) + ee02 Explore Embedded Explore M3 VCOM + ee03 Explore Embedded Explore M3 DFU + ee2c jaka USB2RS485 + effa EffigyLabs atmega32u4-USB-LUFA-Bootloader + effe EffigyLabs Control Pedal + f000 Uniti ARC + f00d RomanStepanov Shifter/Pedals Adapter + f12e Michael Bemmerl Feuermelder + f16a uri_ba Cougar TQS adapter + f16c uri_ba adapter for Vipercore's FCC3 Force Sensing Module + f380 Windsor Schmidt MD-380 Open Radio Firmware + f3fc dRonin Flight controller-Lumenier Lux + f49a TimVideos.us & HDMI2USB.tv Projects FPGA Programmer & UART Bridge (PIC based Firmware) + fa11 moonglow OpenXHC + fa57 3DRacers Pilot Board + fa58 3DRacers Pilot Board (Bootloader) + fab1 PAP Mechatronic Technology LamDiNao + face Protean Synth Craft + fade Open Collector dude + feed ProgramGyar AVR-IR Sender + ffff Life2Device Smart House +120e Hudson Soft Co., Ltd +120f Magellan + 524e RoadMate 1475T + 5260 Triton Handheld GPS Receiver (300/400/500/1500/2000) +1210 DigiTech + 000d RP250 Guitar Multi-Effects Processor + 0016 RP500 Guitar Multi-Effects Processor + 001b RP155 Guitar Multi-Effects Processor + 001c RP255 Guitar Multi-Effects Processor +121e Jungsoft Co., Ltd + 3403 Muzio JM250 Audio Player +121f Panini S.p.A. + 0001 VisionX without Firmware + 0002 VisionX with Firmware + 0010 I-Deal + 0020 wI-Deal + 0021 VisionX Page Scanner Extension + 0030 VisionNext + 0040 mI:Deal Check Scanner + 0041 EverNext Check Scanner +1220 TC Electronic + 000a Hall of Fame Reverb + 002a Polytune + 0032 Ditto X2 Looper + 0039 Alter Ego X4 Vintage Echo +1221 Unknown manufacturer + 3234 Disk (Thumb drive) +1222 TiPro + faca programmable keyboard +1223 SKYCABLE ENTERPRISE. CO., LTD. +1228 Datapaq Limited + 0012 Q18 Data Logger + 0015 TPaq21/MPaq21 Datalogger + 584c XL2 Logger +1230 Chipidea-Microelectronica, S.A. +1233 Denver Electronics + 5677 FUSB200 mp3 player +1234 Brain Actuated Technologies + 0000 Neural Impulse Actuator Prototype 1.0 [NIA] + 4321 Human Interface Device + ed02 Emotiv EPOC Developer Headset Wireless Dongle +1235 Focusrite-Novation + 0001 ReMOTE Audio/XStation First Edition + 0002 Speedio + 0003 RemoteSL + ZeroSL + 0004 ReMOTE LE + 0005 XIOSynth [First Edition] + 0006 XStation + 0007 XIOSynth + 0008 ReMOTE SL Compact + 0009 nIO + 000a Nocturn + 000b ReMOTE SL MkII + 000c ZeRO MkII + 000e Launchpad + 0010 Saffire 6 + 0011 Ultranova + 0012 Nocturn Keyboard + 0013 VRM Box + 0014 VRM Box Audio Class (2-out) + 0015 Dicer + 0016 Ultranova + 0018 Twitch + 0019 Impulse 25 + 001a Impulse 49 + 001b Impulse 61 + 0032 Launchkey 61 + 0069 Launchpad MK2 + 0102 LaunchKey Mini MK3 + 4661 ReMOTE25 + 8000 Scarlett 18i6 + 8002 Scarlett 8i6 + 8006 Focusrite Scarlett 2i2 + 8008 Saffire 6 + 800a Scarlett 2i4 + 800c Scarlett 18i20 + 800e iTrack Solo + 8010 Forte + 8012 Scarlett 6i6 + 8014 Scarlett 18i8 + 8016 Focusrite Scarlett 2i2 + 8202 Focusrite Scarlett 2i2 2nd Gen + 8203 Focusrite Scarlett 6i6 + 8204 Scarlett 18i8 2nd Gen + 8210 Scarlett 2i2 Camera + 8211 Scarlett Solo (3rd Gen.) + 8214 Scarlett 18i8 3rd Gen + 8215 Scarlett 18i20 3rd Gen +1241 Belkin + 0504 Wireless Trackball Keyboard + 1111 Mouse + 1122 Typhoon Stream Optical Mouse USB+PS/2 + 1155 Memorex Optical ScrollPro Mouse SE MX4600 + 1166 MI-2150 Trust Mouse + 1177 Mouse [HT82M21A] + 1503 Keyboard + 1603 Keyboard + f767 Keyboard +1243 Holtek Semiconductor, Inc. + e000 Unique NFC/RFID reader (keyboard emulation) +124a AirVast + 168b PRISM3 WLAN Adapter + 4017 PC-Chips 802.11b Adapter + 4023 WM168g 802.11bg Wireless Adapter [Intersil ISL3886] + 4025 IOGear GWU513 v2 802.11bg Wireless Adapter [Intersil ISL3887] +124b Nyko (Honey Bee) + 4d01 Airflo EX Joystick +124c MXI - Memory Experts International, Inc. + 3200 Stealth MXP 1GB +125c Apogee Inc. + 0010 Alta series CCD +125d JMicron + 0580 JM580 +125f A-DATA Technology Co., Ltd. + 312a Superior S102 + 312b Superior S102 Pro + a15a DashDrive Durable HD710 portable HDD various size + a22a DashDrive Elite HE720 500GB + a31a HV620 Portable HDD + a91a Portable HDD CH91 + c08a C008 Flash Drive + c81a Flash drive + c93a 4GB Pen Drive + c96a C906 Flash Drive + cb10 Dash Drive UV100 + cb20 DashDrive UV110 +1260 Standard Microsystems Corp. + ee22 SMC2862W-G v3 EZ Connect 802.11g Adapter [Intersil ISL3887] +1264 Covidien Energy-based Devices +1266 Pirelli Broadband Solutions + 6302 Fastweb DRG A226M ADSL Router +1267 Logic3 / SpectraVideo plc + 0103 G-720 Keyboard + 0201 Mouse + 0210 LG Optical Mouse 3D-310 + a001 JP260 PC Game Pad + c002 Wireless Optical Mouse +126c Aristocrat Technologies +126d Bel Stewart +126e Strobe Data, Inc. +126f TwinMOS + 0163 Storage device (2gB thumb drive) + 1325 Mobile Disk + 2168 Mobile Disk III + a006 G240 802.11bg +1274 Ensoniq +1275 Xaxero Marine Software Engineering, Ltd. + 0002 WeatherFax 2000 Demodulator + 0080 SkyEye Weather Satellite Receiver + 0090 WeatherFax 2000 Demodulator +1278 Starlight Xpress + 0105 SXV-M5 + 0107 SXV-M7 + 0109 SXV-M9 + 0110 SXVF-H16 + 0115 SXVF-H5 + 0119 SXV-H9 + 0135 SXVF-H35 + 0136 SXVF-H36 + 0200 SXV interface for paraller MX cameras + 0305 SXV-M5C + 0307 SXV-M7C + 0319 SXV-H9C + 0325 SXV-M25C + 0326 SXVR-M26C + 0507 Lodestar autoguider + 0517 CoStar +1283 zebris Medical GmbH + 0100 USB-RS232 Adaptor + 0110 CMS20 + 0111 CMS 10 + 0112 CMS 05 + 0114 ARCUS digma PC-Interface + 0115 SAM Axioquick recorder + 0116 SAM Axioquick recorder + 0120 emed-X + 0121 emed-AT + 0130 PDM + 0150 CMS10GI (Golf) +1286 Marvell Semiconductor, Inc. + 00bc Marvell JTAG Probe + 1fab 88W8338 [Libertas] 802.11g + 2001 88W8388 802.11a/b/g WLAN + 2006 88W8362 802.11n WLAN + 203c K30326 802.11bgn Wireless Module [Marvell 88W8786U] + 204c Bluetooth and Wireless LAN Composite + 8001 BLOB boot loader firmware +1291 Qualcomm Flarion Technologies, Inc. / Leadtek Research, Inc. + 0010 FDM 2xxx Flash-OFDM modem + 0011 LR7F06/LR7F14 Flash-OFDM modem +1292 Innomedia + 0258 Creative Labs VoIP Blaster + 4154 Retro Link Atari cable +1293 Belkin Components [hex] + 0002 F5U002 Parallel Port [uss720] + 2101 104-key keyboard +1294 RISO KAGAKU CORP. + 1320 Webmail Notifier +1297 DekTec + 020f DTU-215 Multi-Standard Modulator +129b CyberTAN Technology + 160b Siemens S30853-S1031-R351 802.11g Wireless Adapter [Atheros AR5523] + 160c Siemens S30853-S1038-R351 802.11g Wireless Adapter [Atheros AR5523] + 1666 TG54USB 802.11bg + 1667 802.11bg + 1828 Gigaset USB Adapter 300 +12a7 Trendchip Technologies Corp. +12ab Honey Bee Electronic International Ltd. + 0004 Dance Pad for Xbox 360 + 0301 Afterglow Wired Controller for Xbox 360 + 0303 Mortal Kombat Klassic FightStick for Xbox 360 + 8809 Dance Dance Revolution Dance Pad +12b8 Zhejiang Xinya Electronic Technology Co., Ltd. +12b9 E28 +12ba Licensed by Sony Computer Entertainment America + 0032 Wireless Stereo Headset + 0042 Wireless Stereo Headset + 00ff Rocksmith Guitar Adapter + 0100 RedOctane Guitar for PlayStation(R)3 + 0120 RedOctane Drum Kit for PlayStation(R)3 + 0200 Harmonix Guitar for PlayStation(R)3 + 0210 Harmonix Drum Kit for PlayStation(R)3 +12bd Gembird + d012 JPD Shockforce gamepad + d015 Generic 4-button NES USB Controller +12c4 Autocue Group Ltd + 0006 Teleprompter Two-button Hand Control (v1) + 0008 Teleprompter Foot Control (v1) +12cf DEXIN + 0170 Tt eSPORTS BLACK Gaming mouse + 600b Cougar 600M Gaming Mouse +12d1 Huawei Technologies Co., Ltd. + 1001 E161/E169/E620/E800 HSDPA Modem + 1003 E220 HSDPA Modem / E230/E270/E870 HSDPA/HSUPA Modem + 1004 E220 (bis) + 1009 U120 + 1010 ETS2252+ CDMA Fixed Wireless Terminal + 1021 U8520 + 1035 U8120 + 1037 Ideos + 1038 Ideos (debug mode) + 1039 Ideos (tethering mode) + 1052 MT7-L09 / P7-L10 / Y330-U01 + 1053 P7-L10 (PTP) + 1054 P7-L10 (PTP + debug) + 1079 GEM-703LT [Honor/MediaPad X2] + 107e P10 smartphone + 1404 EM770W miniPCI WCDMA Modem + 1406 E1750 + 140b EC1260 Wireless Data Modem HSD USB Card + 140c E180v + 1412 EC168c + 1436 Broadband stick + 1446 HSPA modem + 1465 K3765 HSPA + 14ac E815 + 14c3 K5005 Vodafone LTE/UMTS/GSM Modem/Networkcard + 14c8 K5005 Vodafone LTE/UMTS/GSM MOdem/Networkcard + 14c9 K3770 3G Modem + 14cf K3772 + 14d1 K3770 3G Modem (Mass Storage Mode) + 14db E353/E3131 + 14dc E3372 LTE/UMTS/GSM HiLink Modem/Networkcard + 14f1 Gobi 3000 HSPA+ Modem + 14fe Modem (Mass Storage Mode) + 1501 Pulse + 1505 E398 LTE/UMTS/GSM Modem/Networkcard + 1506 Modem/Networkcard + 150a E398 LTE/UMTS/GSM Modem/Networkcard + 1520 K3765 HSPA + 1521 K4505 HSPA+ + 155a R205 Mobile WiFi (CD-ROM mode) + 1573 ME909u-521 mPCIe LTE/GPS card + 1575 K5150 LTE modem + 15bb ME936 LTE/HSDPA+ 4G modem + 15c1 ME906s LTE M.2 Module + 15ca E3131 3G/UMTS/HSPA+ Modem (Mass Storage Mode) + 1805 AT&T Go Phone U2800A phone + 1c05 Broadband stick (modem on) + 1c0b E173s 3G broadband stick (modem off) + 1c20 R205 Mobile WiFi (Charging) + 1d50 ET302s TD-SCDMA/TD-HSDPA Mobile Broadband + 1f01 E353/E3131 (Mass storage mode) + 1f16 K5150 LTE modem (Mass Storage Mode) + 360e Y330-U01 (MTP Mode) + 380b WiMAX USB modem(s) +12d2 LINE TECH INDUSTRIAL CO., LTD. +12d3 LINAK + 0002 DeskLine CBD Control Box +12d6 EMS Dr. Thomas Wuensche + 0444 CPC-USB/ARM7 + 0888 CPC-USB/M16C +12d7 BETTER WIRE FACTORY CO., LTD. +12d8 Araneus Information Systems Oy + 0001 Alea I True Random Number Generator +12e6 Waldorf Music GmbH + 0013 Blofeld +12ef Tapwave, Inc. + 0100 Tapwave Handheld [Tapwave Zodiac] +12f2 ViewPlus Technologies, Inc. + 000a Braille embosser [SpotDot Emprint] +12f5 Dynamic System Electronics Corp. +12f7 Memorex Products, Inc. + 1a00 TD Classic 003B + 1e23 TravelDrive 2007 Flash Drive +12fd AIN Comm. Technology Co., Ltd + 1001 AWU2000b 802.11b Stick +12ff Fascinating Electronics, Inc. + 0101 Advanced RC Servo Controller +1306 FM20 Barcode Scanner +1307 Transcend Information, Inc. + 0163 256MB/512MB/1GB Flash Drive + 0165 2GB/4GB/8GB Flash Drive + 0190 Ut190 8 GB Flash Drive with MicroSD reader + 0310 SD/MicroSD CardReader [hama]/IT1327E [Basic Line flash drive] + 0330 63-in-1 Multi-Card Reader/Writer + 0361 CR-75: 51-in-1 Card Reader/Writer [Sakar] + 1169 TS2GJF210 JetFlash 210 2GB + 1171 Fingerprint Reader +1308 Shuttle, Inc. + 0003 VFD Module + c001 eHome Infrared Transceiver +1310 Roper + 0001 Class 1 Bluetooth Dongle +1312 ICS Electronics +1313 ThorLabs + 0010 LC1 Linear Camera (Jungo) + 0011 SP1 Spectrometer (Jungo) + 0012 SP2 Spectrometer (Jungo) + 0110 LC1 Linear Camera (VISA) + 0111 SP1 Spectrometer (VISA) + 0112 SP2 Spectrometer (VISA) + 8001 TXP-Series Slot (TXP5001, TXP5004) + 8011 BP1 Slit Beam Profiler + 8012 BC106 Camera Beam Profiler + 8013 WFS10 Wavefront Sensor + 8016 DMP40 Deformable Mirror + 8017 BC206 Camera Beam Profiler + 8019 BP2 Multi Slit Beam Profiler + 8020 PM300 Optical Power Meter + 8021 PM300E Optical Power and Energy Meter + 8022 PM320E Optical Power and Energy Meter + 8025 WFS20 Wavefront Sensor + 8030 ER100 Extinction Ratio Meter + 8039 PAX1000 Rotating Waveplate Polarimeter + 8047 CLD1000 + 8048 TED4000 + 8049 LDC4000 + 804a ITC4000 + 8058 LC-100 + 8060 DC3100 + 8061 DC4100 + 8062 DC2100 + 8065 CS2010 + 8066 DC4104 + 8070 PM100D + 8072 PM100USB Power and Energy Meter Interface + 8073 PM106 Wireless Powermeter Photodiode Sensor + 8074 PM160T Wireless Powermeter Thermal Sensor + 8075 PM400 Handheld Optical Power/Energy Meter + 8076 PM101 Serial PD Power Meter + 8078 PM100D Compact Power and Energy Meter Console + 8080 CCS100 - Compact Spectrometer + 8081 CCS100 Compact Spectrometer + 8083 CCS125 Spectrometer + 8085 CCS150 UV Spectrometer + 8087 CCS175 NIR Spectrometer + 8089 CCS200 Wide Range Spectrometer + 8090 SPCM Single Photon Counter + 80a0 LC100 series smart line camera + 80b0 PM200 Handheld Power and Energy Meter + 80c0 DC2200 + 80c9 MTD Series + 80f0 TSP01 + 80f1 M2SET Dongle + 8180 OCT Probe Controller (OCTH-1300) + 8181 OCT Device +131d Natural Point + 0155 TrackIR 3 Pro Head Tracker + 0156 TrackIR 4 Pro Head Tracker + 0158 TrackIR 5 Pro Head Tracker +1325 ams AG + 00d6 I2C/SPI InterfaceBoard + 0c08 Embedded Linux Sensor Bridge + 4002 I2C Dongle +132a Envara Inc. + 1502 WiND 802.11abg / 802.11bg WLAN +132b Konica Minolta + 0000 Dimage A2 Camera + 0001 Minolta DiMAGE A2 (ptp) + 0003 Dimage Xg Camera + 0006 Dimage Z2 Camera + 0007 Minolta DiMAGE Z2 (PictBridge mode) + 0008 Dimage X21 Camera + 000a Dimage Scan Dual IV AF-3200 (2891) + 000b Dimage Z10 Camera + 000d Dimage X50 Camera [storage?] + 000f Dimage X50 Camera [p2p?] + 0010 Dimage G600 Camera + 0012 Dimage Scan Elite 5400 II (2892) + 0013 Dimage X31 Camera + 0015 Dimage G530 Camera + 0017 Dimage Z3 Camera + 0018 Minolta DiMAGE Z3 (PictBridge mode) + 0019 Dimage A200 Camera + 0021 Dimage Z5 Camera + 0022 Minolta DiMAGE Z5 (PictBridge mode) + 002c Dynax 5D camera + 2001 Magicolor 2400w + 2004 Magicolor 5430DL + 2005 Magicolor 2430 DL + 2029 Magicolor 5440DL + 2030 PagePro 1350E(N) + 2033 PagePro 1400W + 2043 Magicolor 2530DL + 2045 Magicolor 2500W + 2049 Magicolor 2490MF +133e Kemper Digital GmbH + 0815 Virus TI Desktop +1342 Mobility + 0200 EasiDock 200 Hub + 0201 EasiDock 200 Keyboard and Mouse Port + 0202 EasiDock 200 Serial Port + 0203 EasiDock 200 Printer Port + 0204 Ethernet + 0304 EasiDock Ethernet +1343 Citizen Systems + 0002 CW-01 + 0003 CX / DNP DS40 + 0004 CX-W / DNP DS80 / Mitsubishi CP3800 + 0005 CY / DNP DSRX1 + 0006 CW-02 / OP900ii + 0007 DNP DS80DX + 0008 DNP DS620 (old) + 000a CX-02 + 000b CX-02W +1345 Sino Lite Technology Corp. + 001c Xbox Controller Hub + 6006 Defender Wireless Controller +1347 Moravian Instruments + 0400 G2CCD USB 1.1 obsolete + 0401 G2CCD-S with Sony ICX285 CCD + 0402 G2CCD2 + 0403 G2/G3CCD-I KAI CCD + 0404 G2/G3/G4 CCD-F KAF CCD + 0405 Gx CCD-I CCD + 0406 Gx CCD-F CCD + 0410 G1-0400 CCD + 0411 G1-0800 CCD + 0412 G1-0300 CCD + 0413 G1-2000 CCD + 0414 G1-1400 CCD + 0415 G1-1200 CCD + 04b0 Gx CCD-B CCD + 04b1 Gx CCD-BI CCD +1348 Katsuragawa Electric Co., Ltd. +134c PanJit International Inc. + 0001 Touch Panel Controller + 0002 Touch Panel Controller + 0003 Touch Panel Controller + 0004 Touch Panel Controller +134e Digby's Bitpile, Inc. DBA D Bit +1357 P&E Microcomputer Systems + 0089 OpenSDA - CDC Serial Port + 0503 USB-ML-12 HCS08/HCS12 Multilink + 0504 DEMOJM + 1000 Smart Control Touchpad +135e Insta GmbH + 0021 Berker KNX Data Interface + 0022 Gira KNX Data Interface + 0023 JUNG KNX Data Interface + 0024 Merten/Schneider Electric KNX Data Interface + 0025 Hager KNX Data Interface + 0026 Feller KNX Data Interface +135f Control Development Inc. + 0110 Linear Spectrograph + 0111 Spectrograph - Renumerated + 0200 Linear Spectrograph + 0201 Spectrograph - Renumerated + 0240 MPP Spectrograph +1366 SEGGER + 0101 J-Link PLUS + 1015 J-Link +136b STEC +136e Andor Technology Ltd. + 0012 iXon Ultra CCD + 0014 Zyla 5.5 sCMOS camera +1370 Swissbit + 0323 Swissmemory cirrusWHITE + 6828 Victorinox Flash Drive +1371 CNet Technology Inc. + 0001 CNUSB-611AR Wireless Adapter-G [AT76C503] + 0002 CNUSB-611AR Wireless Adapter-G [AT76C503] (FiberLine WL-240U) + 0013 CNUSB-611 Wireless Adapter [AT76C505] + 0014 CNUSB-611 Wireless Adapter [AT76C505] (FiberLine WL-240U) + 5743 CNUSB-611 (D) Wireless Adapter [AT76C503] + 9022 CWD-854 [RT2573] + 9032 CWD-854 rev F + 9401 CWD-854 Wireless 802.11g 54Mbps Network Adapter [RTL8187] +1376 Vimtron Electronics Co., Ltd. +1377 Sennheiser electronic GmbH & Co. KG + 4000 HDVD800 +137b SCAPS GmbH + 0002 SCAPS USC-2 Scanner Controller +137c YASKAWA ELECTRIC CORP. + 0220 MP Series + 0250 SIGMA Series + 0401 AC Drive +1385 Netgear, Inc + 4250 WG111T + 4251 WG111T (no firmware) + 5f00 WPN111 RangeMax(TM) Wireless USB 2.0 Adapter + 5f01 WPN111 (no firmware) + 5f02 WPN111 (no firmware) + 6e00 WPNT121 802.11g 240Mbps Wireless Adapter [Airgo AGN300] +138a Validity Sensors, Inc. + 0001 VFS101 Fingerprint Reader + 0005 VFS301 Fingerprint Reader + 0007 VFS451 Fingerprint Reader + 0008 VFS300 Fingerprint Reader + 0010 VFS Fingerprint sensor + 0011 VFS5011 Fingerprint Reader + 0015 VFS 5011 fingerprint sensor + 0017 VFS 5011 fingerprint sensor + 0018 Fingerprint scanner + 003c VFS471 Fingerprint Reader + 003d VFS491 + 003f VFS495 Fingerprint Reader + 0050 Swipe Fingerprint Sensor + 0090 VFS7500 Touch Fingerprint Sensor + 0091 VFS7552 Touch Fingerprint Sensor +138e Jungo LTD + 9000 Raisonance S.A. STM32 ARM evaluation board / RLink dongle +1390 TOMTOM B.V. + 0001 GO 520 T / GO 630 / ONE / ONE XL + 5454 Blue & Me 2 + 7474 GPS Sport Watch [Runner, Multi-Sport] + a001 Bandit Action Camera Batt-Stick +1391 IdealTEK, Inc. + 1000 URTC-1000 +1395 Sennheiser Communications + 0025 Headset [PC 8] + 0026 SC230 + 0027 SC260 + 0028 SC230 CTRL + 0029 SC260 CTRL + 002a SC230 for Lync + 002b SC260 for Lync + 002d BTD-800 + 002e Presence + 0030 CEHS-CI 02 + 0031 U320 Gaming + 0032 SC30 for Lync + 0033 SC60 for Lync + 0034 SC30 Control + 0035 SC60 Control + 0036 SC630 for Lync + 0037 SC660 for Lync + 0038 SC630 CTRL + 0039 SC660 CTRL + 003f SP 20 + 0040 MB Pro 1/2 + 0041 SP 20 for Lync + 0042 SP 10 + 0043 SP 10 for Lync + 0046 PXC 550 + 004a MOMENTUM M2 OEBT + 004b MOMENTUM M2 AEBT + 004f SC230 for MS II + 0050 SC260 for MS II + 0051 USB-ED CC 01 + 0058 USB-ED CC 01 for MS + 0059 SC40 for MS + 005a SC70 for MS + 005b SC40 CTRL + 005c SC70 CTRL + 0060 SCx5 MS + 0061 SCx5 CTRL + 0064 MB 660 MS + 0065 MB 660 + 0066 SP 20 D UC + 0067 SP 20 D MS + 006b SC5x5 MS + 0072 Headset + 3556 USB Headset +1397 BEHRINGER International GmbH + 0004 FCA1616 + 00bc BCF2000 +1398 Q-tec + 2103 USB 2.0 Storage Device +13ad Baltech + 9999 Card reader +13b0 PerkinElmer Optoelectronics + 000a Alesis Photon X25 MIDI Controller +13b1 Linksys + 000a WUSB54G v2 802.11g Adapter [Intersil ISL3887] + 000b WUSB11 v4.0 802.11b Adapter [ALi M4301] + 000c WUSB54AG 802.11a/g Adapter [Intersil ISL3887] + 000d WUSB54G v4 802.11g Adapter [Ralink RT2500USB] + 000e WUSB54GS v1 802.11g Adapter [Broadcom 4320 USB] + 0011 WUSB54GP v4.0 802.11g Adapter [Ralink RT2500USB] + 0014 WUSB54GS v2 802.11g Adapter [Broadcom 4320 USB] + 0018 USB200M 10/100 Ethernet Adapter + 001a HU200TS Wireless Adapter + 001e WUSBF54G 802.11bg + 0020 WUSB54GC v1 802.11g Adapter [Ralink RT73] + 0022 WUSB54GX4 802.11g 240Mbps Wireless Adapter [Airgo AGN300] + 0023 WUSB54GR + 0024 WUSBF54G v1.1 802.11bg + 0026 WUSB54GSC v1 802.11g Adapter [Broadcom 4320 USB] + 0028 WUSB200 802.11g Adapter [Ralink RT2671] + 0029 WUSB300N 802.11bgn Wireless Adapter [Marvell 88W8362+88W8060] + 002f AE1000 v1 802.11n [Ralink RT3572] + 0031 AM10 v1 802.11n [Ralink RT3072] + 0039 AE1200 802.11bgn Wireless Adapter [Broadcom BCM43235] + 003a AE2500 802.11abgn Wireless Adapter [Broadcom BCM43236] + 003b AE3000 802.11abgn (3x3) Wireless Adapter [Ralink RT3573] + 003e AE6000 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7610U] + 003f WUSB6300 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU] + 0041 Gigabit Ethernet Adapter + 0042 WUSB6100M 802.11a/b/g/n/ac Wireless Adapter + 13b1 WUSB200: Wireless-G Business Network Adapter with Rangebooster +13b2 Alesis + 0030 Multimix 8 +13b3 Nippon Dics Co., Ltd. +13ba PCPlay + 0001 Konig Electronic CMP-KEYPAD12 Numeric Keypad + 0017 PS/2 Keyboard+Mouse Adapter + 0018 Barcode PCP-BCG4209 +13be Ricoh Printing Systems, Ltd. +13ca JyeTai Precision Industrial Co., Ltd. +13cf Wisair Ltd. + 1200 Olidata Wireless Multimedia Adapter +13d0 Techsan Electronics Co., Ltd. + 2282 TechniSat DVB-PC TV Star 2 +13d1 A-Max Technology Macao Commercial Offshore Co. Ltd. + 7019 MD 82288 + abe6 Wireless 802.11g 54Mbps Network Adapter [RTL8187] +13d2 Shark Multimedia + 0400 Pocket Ethernet [klsi] +13d3 IMC Networks + 3201 VisionDTV USB-Ter/HAMA USB DVB-T device cold + 3202 VisionDTV USB-Ter/HAMA USB DVB-T device warm + 3203 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 3204 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 3205 DNTV Live! Tiny USB2 BDA (No Remote) + 3206 DNTV Live! Tiny USB2 BDA (No Remote) + 3207 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 3208 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 3209 DTV-DVB UDST7022BDA DVB-S Box(Without HID) + 3211 DTV-DVB Hybrid Analog/Capture / Pinnacle PCTV 310e + 3212 DTV-DVB UDTT704C - DVBT/NTSC/PAL Driver(PCM4) + 3213 DTV-DVB UDTT704D - DVBT/NTSC/PAL Driver (PCM4) + 3214 DTV-DVB UDTT704F -(MiniCard) DVBT/NTSC/PAL Driver(Without HID) + 3215 DTV-DVB UDAT7240 - ATSC/NTSC/PAL Driver(PCM4) + 3216 DTV-DVB UDTT 7047-USB 2.0 DVB-T Driver + 3217 Digital-TV Receiver. + 3219 DTV-DVB UDTT7049 - DVB-T Driver(Without HID) + 3220 DTV-DVB UDTT 7047M-USB 2.0 DVB-T Driver + 3223 DNTV Live! Tiny USB2 BDA (No Remote) + 3224 DNTV Live! Tiny USB2 BDA (No Remote) + 3226 DigitalNow TinyTwin DVB-T Receiver + 3234 DVB-T FTA Half Minicard [RTL2832U] + 3236 DTV-DVB UDTT 7047A-USB 2.0 DVB-T Driver + 3237 DTV-DVB UDTT 704J - dual DVB-T Driver + 3239 DTV-DVB UDTT704D - DVBT/NTSC/PAL Driver(Without HID) + 3240 DTV-DVB UDXTTM6010 - A/D Driver(Without HID) + 3241 DTV-DVB UDXTTM6010 - A/D Driver(Without HID) + 3242 DTV-DVB UDAT7240LP - ATSC/NTSC/PAL Driver(Without HID) + 3243 DTV-DVB UDXTTM6010 - A/D Driver(Without HID) + 3244 DTV-DVB UDTT 7047Z-USB 2.0 DVB-T Driver + 3247 AW-NU222 802.11bgn Wireless Module [Ralink RT2770+RT2720] + 3249 Internal Bluetooth + 3250 Broadcom Bluetooth 2.1 + 3262 802.11 n/g/b Wireless LAN USB Adapter + 3273 802.11 n/g/b Wireless LAN USB Mini-Card + 3274 DVB-T Dongle [RTL2832U] + 3282 DVB-T + GPS Minicard [RTL2832U] + 3284 Wireless LAN USB Mini-Card + 3304 Asus Integrated Bluetooth module [AR3011] + 3306 Mediao 802.11n WLAN [Realtek RTL8191SU] + 3315 Bluetooth module + 3327 AW-NU137 802.11bgn Wireless Module [Atheros AR9271] + 3362 Atheros AR3012 Bluetooth 4.0 Adapter + 3375 Atheros AR3012 Bluetooth 4.0 Adapter + 3392 Azurewave 43228+20702 + 3394 Bluetooth + 3474 Atheros AR3012 Bluetooth + 3526 Bluetooth Radio + 5070 Webcam + 5111 Integrated Webcam + 5115 Integrated Webcam + 5116 Integrated Webcam + 5122 2M Integrated Webcam + 5126 PC Cam + 5130 Integrated Webcam + 5134 Integrated Webcam + 5615 Lenovo EasyCamera + 5670 HP TrueVision HD + 5682 SunplusIT Integrated Camera + 5702 UVC VGA Webcam + 5710 UVC VGA Webcam + 5716 UVC VGA Webcam + 5a07 VGA UVC WebCam + 7020 DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005) + 7022 DTV-DVB UDST7022BDA DVB-S Box(Without HID) + 784b XHC Camera +13d7 Guidance Software, Inc. + 0001 T5 PATA forensic bridge + 000c T8-R2 forensic bridge +13dc ALEREON, INC. +13dd i.Tech Dynamic Limited +13e1 Kaibo Wire & Cable (Shenzhen) Co., Ltd. +13e5 Rane + 0001 SL-1 + 0003 TTM 57SL +13e6 TechnoScope Co., Ltd. +13ea Hengstler + 0001 C-56 Thermal Printer +13ec Zydacron + 0006 HID Remote Control +13ee MosArt + 0001 Optical Mouse + 0003 Optical Mouse +13fd Initio Corporation + 0550 INIC-1530 PATA Bridge + 0840 INIC-1618L SATA + 0841 Samsung SE-T084M DVD-RW + 0940 ASUS SBW-06D2X-U + 1040 INIC-1511L PATA Bridge + 1340 Hi-Speed USB to SATA Bridge + 160f RocketFish SATA Bridge [INIC-1611] + 1640 INIC-1610L SATA Bridge + 1669 INIC-1609PN + 1840 INIC-1608 SATA bridge + 1e40 INIC-1610P SATA bridge + 2040 Samsung Writemaster external DVD writer + 3920 INIC-3619PN SATA Bridge + 3940 external DVD burner ECD819-SU3 + 3960 INIC-3639 + 3e40 ZALMAN ZM-VE350 +13fe Kingston Technology Company Inc. + 1a00 512MB/1GB Flash Drive + 1a23 512MB Flash Drive + 1d00 DataTraveler 2.0 1GB/4GB Flash Drive / Patriot Xporter 4GB Flash Drive + 1e00 Flash Drive 2 GB [ICIDU 2 GB] + 1e50 U3 Smart Drive + 1f00 Kingston DataTraveler / Patriot Xporter + 1f23 PS2232 flash drive controller + 2240 microSD card reader + 3100 2/4 GB stick + 3123 Verbatim STORE N GO 4GB + 3200 flash drive (2GB, EMTEC) + 3600 flash drive (4GB, EMTEC) + 3800 Rage XT Flash Drive + 3d00 Flash Drive + 3e00 Flash Drive + 4100 Flash drive + 4200 Platinum USB drive mini + 5000 USB flash drive (32 GB SHARKOON Accelerate) + 5100 Flash Drive + 5200 DataTraveler R3.0 + 5500 Flash drive + 6300 SP Mobile C31 (64GB) +1400 Axxion Group Corp. +1402 Bowe Bell & Howell +1403 Sitronix + 0001 Digital Photo Frame + 0003 Digital Photo Frame (DPF-1104) +1404 Fundamental Software, Inc. + cddc Dongle +1409 IDS Imaging Development Systems GmbH + 1000 generic (firmware not loaded yet) + 1485 uEye UI1485 + 3240 uEye UI3240 +140e Telechips, Inc. + b011 TCC780X-based player (USB Boot mode) + b021 TCC77X-based players (USB Boot mode) +1410 Novatel Wireless + 1110 Merlin S620 + 1120 Merlin EX720 + 1130 Merlin S720 + 1400 Merlin U730/U740 (Vodafone) + 1410 Merlin U740 (non-Vodafone) + 1430 Merlin XU870 + 1450 Merlin X950D + 2110 Ovation U720/MCD3000 + 2410 Expedite EU740 + 2420 Expedite EU850D/EU860D/EU870D + 4100 U727 + 4400 Ovation MC930D/MC950D + 9010 Expedite E362 + a001 Gobi Wireless Modem + a008 Gobi Wireless Modem (QDL mode) + b001 Ovation MC551 +1415 Nam Tai E&E Products Ltd. or OmniVision Technologies, Inc. + 0000 Sony SingStar USBMIC + 0020 Sony Wireless SingStar + 2000 Sony Playstation Eye +1419 ABILITY ENTERPRISE CO., LTD. +1421 Sensor Technology + 0605 Sentech Camera +1424 Posnet Polska S.A. + 1001 Temo + 1002 Thermal + 1003 Neo + 1004 Combo DF + 1005 Thermal-A + 1006 Thermal FV + 1007 Bingo HS + 1008 Thermal HS FV + 1009 Thermal FV EJ + 100a Thermal HD + 100b Thermal + 100c Neo + 100d Ergo + 100e Trio + 1010 Thermal HS FV EJ + 1011 Neo EJ + 1012 Thermal-A + 1013 Thermal-A EJ + 1014 Mobile + 1015 Temo HS + 1016 Mobile HS + 1017 TH230+ FV EJ + 1018 4610-1NR FV EJ +1429 Vega Technologies Industrial (Austria) Co. +142a Thales E-Transactions + 0003 Artema Hybrid + 0005 Artema Modular + 0043 medCompact +142b Arbiter Systems, Inc. + 03a5 933A Portable Power Sentinel +1430 RedOctane + 0150 wireless receiver for skylanders wii + 4734 Guitar Hero4 hub + 4748 Guitar Hero X-plorer + 474b Guitar Hero MIDI interface + 8888 TX6500+ Dance Pad + f801 Controller +1431 Pertech Resources, Inc. +1435 Wistron NeWeb + 0427 UR054g 802.11g Wireless Adapter [Intersil ISL3887] + 0711 UR055G 802.11bg + 0804 AR9170+AR9104 802.11abgn Wireless Adapter + 0826 AR5523 + 0827 AR5523 (no firmware) + 0828 AR5523 + 0829 AR5523 (no firmware) +1436 Denali Software, Inc. +143c Altek Corporation +1443 Digilent + 0007 Development board JTAG +1446 X.J.GROUP + 6a73 Stamps.com Model 510 5LB Scale + 6a78 DYMO Endicia 75lb Digital Scale +1451 Force Dimension + 0301 haptic device + 0302 haptic device + 0400 haptic device + 0401 delta.x haptic device + 0402 omega.x haptic device + 0403 sigma.x haptic device + 0404 haptic controller + 0405 dedicated haptic device + 0406 dedicated haptic device + 0407 dedicated haptic device + 0408 dedicated haptic device +1452 Dai Nippon Printing, Inc + 8b01 DS620 + 9001 DS820 +1453 Radio Shack + 4026 26-183 Serial Cable +1456 Extending Wire & Cable Co., Ltd. +1457 First International Computer, Inc. + 5117 OpenMoko Neo1973 kernel usbnet (g_ether, CDC Ethernet) mode + 5118 OpenMoko Neo1973 Debug board (V2+) + 5119 OpenMoko Neo1973 u-boot cdc_acm serial port + 511a HXD8 u-boot usbtty CDC ACM Mode + 511b SMDK2440 u-boot usbtty CDC ACM mode + 511c SMDK2443 u-boot usbtty CDC ACM mode + 511d QT2410 u-boot usbtty CDC ACM mode + 5120 OpenMoko Neo1973 u-boot usbtty generic serial + 5121 OpenMoko Neo1973 kernel mass storage (g_storage) mode + 5122 OpenMoko Neo1973 / Neo Freerunner kernel cdc_ether USB network + 5123 OpenMoko Neo1973 internal USB CSR4 module + 5124 OpenMoko Neo1973 Bluetooth Device ID service +145f Trust + 0106 K56 V92 Modem + 013d PC Camera (SN9C201 + OV7660) + 013f Megapixel Auto Focus Webcam + 0142 WB-6250X Webcam + 015a WB-8300X 2MP Webcam + 0161 15901 802.11bg Wireless Adapter [Realtek RTL8187L] + 0167 Widescreen 3MP Webcam + 0176 Isla Keyboard + 019f 17676 Webcam + 01e5 Keyboard [GXT 830] + 0212 Panora Widescreen Graphic Tablet + 023f Mouse [GXT 168] +1460 Tatung Co. + 9150 eHome Infrared Transceiver +1461 Staccato Communications +1462 Micro Star International + 5512 MegaStick-1 Flash Stick + 8807 DIGIVOX mini III [af9015] +146b BigBen Interactive + 0601 Controller for Xbox 360 + 0902 Wired Mini PS3 Game Controller +1472 Huawei-3Com + 0007 Aolynk WUB300g [ZyDAS ZD1211] + 0009 Aolynk WUB320g +147a Formosa Industrial Computing, Inc. + e015 eHome Infrared Receiver + e016 eHome Infrared Receiver + e017 eHome Infrared Receiver + e018 eHome Infrared Receiver + e02c Infrared Receiver + e03a eHome Infrared Receiver + e03c eHome Infrared Receiver + e03d 2 Channel Audio + e03e Infrared Receiver [IR605A/Q] +147e Upek + 1000 Biometric Touchchip/Touchstrip Fingerprint Sensor + 1001 TCS5B Fingerprint sensor + 1002 Biometric Touchchip/Touchstrip Fingerprint Sensor + 2016 Biometric Touchchip/Touchstrip Fingerprint Sensor + 2020 TouchChip Fingerprint Coprocessor (WBF advanced mode) + 3000 TCS1C EIM/Cypress Fingerprint sensor + 3001 TCS1C EIM/STM32 Fingerprint sensor +147f Hama GmbH & Co., KG +1482 Vaillant + 1005 VRD PC-Interface +1484 Elsa AG [hex] + 1746 Ecomo 19H99 Monitor + 7616 Elsa Hub +1485 Silicom + 0001 U2E + 0002 Psion Gold Port Ethernet +1487 DSP Group, Ltd. +148e EVATRONIX SA +148f Ralink Technology, Corp. + 1000 Motorola BC4 Bluetooth 3.0+HS Adapter + 1706 RT2500USB Wireless Adapter + 2070 RT2070 Wireless Adapter + 2570 RT2570 Wireless Adapter + 2573 RT2501/RT2573 Wireless Adapter + 2671 RT2601/RT2671 Wireless Adapter + 2770 RT2770 Wireless Adapter + 2870 RT2870 Wireless Adapter + 3070 RT2870/RT3070 Wireless Adapter + 3071 RT3071 Wireless Adapter + 3072 RT3072 Wireless Adapter + 3370 RT3370 Wireless Adapter + 3572 RT3572 Wireless Adapter + 3573 RT3573 Wireless Adapter + 5370 RT5370 Wireless Adapter + 5372 RT5372 Wireless Adapter + 5572 RT5572 Wireless Adapter + 7601 MT7601U Wireless Adapter + 760b MT7601U Wireless Adapter + 761a MT7610U ("Archer T2U" 2.4G+5G WLAN Adapter + 9020 RT2500USB Wireless Adapter + 9021 RT2501USB Wireless Adapter +1491 Futronic Technology Co. Ltd. + 0020 FS81 Fingerprint Scanner Module + 0088 Fingerprint Scanner Model FS88 +1493 Suunto + 0010 Bluebird [Ambit] + 0019 Duck [Ambit2] + 001a Colibri [Ambit2 S] + 001b Emu [Ambit3 Peak] + 001c Finch [Ambit3 Sport] + 001d Greentit [Ambit2 R] + 001e Ibisbill [Ambit3 Run] +1497 Panstrong Company Ltd. +1498 Microtek International Inc. + a090 DVB-T Tuner +149a Imagination Technologies + 069b PURE Digital Evoke-1XT Tri-band + 2107 DBX1 DSP core +14aa WideView Technology Inc. + 0001 Avermedia AverTV DVBT USB1.1 (cold) + 0002 Avermedia AverTV DVBT USB1.1 (warm) + 0201 AVermedia/Yakumo/Hama/Typhoon DVB-T USB2.0 (cold) + 0221 WT-220U DVB-T dongle + 022b WT-220U DVB-T dongle + 0301 AVermedia/Yakumo/Hama/Typhoon DVB-T USB2.0 (warm) +14ad CTK Corporation +14ae Printronix Inc. +14af ATP Electronics Inc. +14b0 StarTech.com Ltd. + 3410 Serial Adapter ICUSB2321X [TUSB3410I] +14b2 Ralink Technology, Corp. + 3a93 Topcom 802.11bg Wireless Adapter [Atheros AR5523] + 3a95 Toshiba WUS-G06G-JT 802.11bg Wireless Adapter [Atheros AR5523] + 3a98 Airlink101 AWLL4130 802.11bg Wireless Adapter [Atheros AR5523] + 3c02 Conceptronic C54RU v2 802.11bg Wireless Adapter [Ralink RT2571] + 3c05 rt2570 802.11g WLAN + 3c06 Conceptronic C300RU v1 802.11bgn Wireless Adapter [Ralink RT2870] + 3c07 802.11n adapter + 3c09 802.11n adapter + 3c22 Conceptronic C54RU v3 802.11bg Wireless Adapter [Ralink RT2571W] + 3c23 Airlink101 AWLL6080 802.11bgn Wireless Adapter [Ralink RT2870] + 3c24 NEC NP01LM 802.11abg Wireless Adapter [Ralink RT2571W] + 3c25 DrayTek Vigor N61 802.11bgn Wireless Adapter [Ralink RT2870] + 3c27 Airlink101 AWLL6070 802.11bgn Wireless Adapter [Ralink RT2770] + 3c28 Conceptronic C300RU v2 802.11bgn Wireless Adapter [Ralink RT2770] + 3c2b NEC NP02LM 802.11bgn Wireless Adapter [Ralink RT3072] + 3c2c Keebox W150NU 802.11bgn Wireless Adapter [Ralink RT3070] +14c0 Rockwell Automation, Inc. +14c2 Gemlight Computer, Ltd + 0250 Storage Adapter V2 + 0350 Storage Adapter V2 +14c8 Zytronic + 0005 Touchscreen Controller +14cd Super Top + 1212 microSD card reader (SY-T18) + 121c microSD card reader + 121f microSD CardReader SY-T18 + 123a SD/MMC/RS-MMC Card Reader + 125c SD card reader + 127b SDXC Reader + 168a Elecom Co., Ltd MR-K013 Multicard Reader + 6116 M6116 SATA Bridge + 6600 M110E PATA bridge + 6700 Card Reader + 6900 Card Reader + 8123 SD MMC Reader + 8125 SD MMC Reader + 8601 4-Port hub + 8608 Hub [Super Top] +14d8 JAMER INDUSTRIES CO., LTD. +14dd Raritan Computer, Inc. + 1007 D2CIM-VUSB KVM connector +14e0 WiNRADiO Communications + 0501 WR-G528e 'CHEETAH' +14e1 Dialogue Technology Corp. + 5000 PenMount 5000 Touch Controller +14e5 SAIN Information & Communications Co., Ltd. +14ea Planex Communications + ab10 GW-US54GZ + ab11 GU-1000T + ab13 GW-US54Mini 802.11bg +14ed Shure Inc. + 1000 MV5 + 1002 MV51 + 1003 MVi + 1004 SHA900 + 1005 KSE1500 + 1011 MV88+ + 1100 ANIUSB-MATRIX + 1101 P300 + 29b6 X2u Adapter + 3000 RMCE-USB +14f7 TechniSat Digital GmbH + 0001 SkyStar 2 HD CI + 0002 SkyStar 2 HD CI + 0003 CableStar Combo HD CI + 0004 AirStar TeleStick 2 + 0500 DVB-PC TV Star HD +1500 Ellisys +1501 Pine-Tum Enterprise Co., Ltd. +1504 Bixolon CO LTD + 001f SRP-350II Thermal Receipt Printer +1508 Fibocom +1509 First International Computer, Inc. + 0a01 LI-3100 Area Meter + 0a02 LI-7000 CO2/H2O Gas Analyzer + 0a03 C-DiGit Blot Scanner + 9242 eHome Infrared Transceiver +1513 medMobile + 0444 medMobile +1514 Actel + 2003 FlashPro3 Programmer + 2004 FlashPro3 Programmer + 2005 FlashPro3 Programmer +1516 CompUSA + 1603 Flash Drive + 8628 Pen Drive +1518 Cheshire Engineering Corp. + 0001 HDReye High Dynamic Range Camera + 0002 HDReye (before firmware loads) +1519 Comneon + 0020 HSIC Device +151f Opal Kelly Incorporated + 0020 XEM3001v1 + 0021 XEM3001v2 + 0022 XEM3010 + 0023 XEM3005 + 0028 XEM3050 + 002b XEM5010 + 002c XEM6001 + 002d XEM6010-LX45 + 002e XEM6010-LX150 + 0030 XEM6006-LX16 + 0033 XEM6002-LX9 + 0034 XEM7001-A15 + 0036 XEM7010-A50 + 0037 XEM7010-A200 + 0120 ZEM4310 + 0121 XEM6310-LX45 + 0122 XEM6310-LX150 + 0123 XEM6310MT-LX45T + 0125 XEM7350-K70T + 0126 XEM7350-K160T + 0127 XEM7350-K410T + 0128 XEM6310MT-LX150T + 0129 ZEM5305-A2 + 012b XEM7360-K160T + 012c XEM7360-K410T + 012d ZEM5310-A4 + 0130 XEM7310-A75 + 0131 XEM7310-A200 +1520 Bitwire Corp. +1524 ENE Technology Inc + 6680 UTS 6680 +1527 Silicon Portals + 0200 YAP Phone (no firmware) + 0201 YAP Phone +1529 UBIQUAM Co., Ltd. + 3100 CDMA 1xRTT USB Modem (U-100/105/200/300/520) +152a Thesycon Systemsoftware & Consulting GmbH + 8350 NET Gmbh iCube Camera + 8400 INI DVS128 + 840d INI DAViS + 841a INI DAViS FX3 +152b MIR Srl + 0001 spirobank II + 0002 spirolab III + 0003 MiniSpir + 0004 Oxi + 0005 spiros II + 0006 smiths spirobank II + 0007 smiths spirobank G-USB + 0008 smiths MiniSpir + 0009 spirobank G-USB + 000a smiths Oxi + 000b smiths spirolab III + 000c chorus III + 000d spirolab III Bw + 000e spirolab III + 000f easySpiro + 0010 Spirotel converter + 0011 spirobank + 0012 spiro3 Zimmer + 0013 spirotel serial + 0014 spirotel II + 0015 spirodoc +152d JMicron Technology Corp. / JMicron USA Technology Corp. + 0539 JMS539/567 SuperSpeed SATA II/III 3.0G/6.0G Bridge + 0551 JMS551 SuperSpeed two ports SATA 3Gb/s bridge + 0561 JMS551 - Sharkoon SATA QuickPort Duo + 0562 JMS567 SATA 6Gb/s bridge + 0567 JMS567 SATA 6Gb/s bridge + 0576 Gen1 SATA 6Gb/s Bridge + 0578 JMS578 SATA 6Gb/s + 0583 JMS583Gen 2 to PCIe Gen3x2 Bridge + 0770 Alienware Integrated Webcam + 1561 JMS561U two ports SATA 6Gb/s bridge + 1576 External Disk 3.0 + 2329 JM20329 SATA Bridge + 2335 ATA/ATAPI Bridge + 2336 Hard Disk Drive + 2337 ATA/ATAPI Bridge + 2338 JM20337 Hi-Speed USB to SATA & PATA Combo Bridge + 2339 JM20339 SATA Bridge + 2352 ATA/ATAPI Bridge + 2509 JMS539, JMS551 SATA 3Gb/s bridge + 2551 JMS551 SATA 3Gb/s bridge + 2561 CEB-2235S-U3 external RAID box + 2566 JMS566 SATA 3Gb/s bridge + 2590 JMS567 SATA 6Gb/s bridge + 3562 JMS567 SATA 6Gb/s bridge + 3569 JMS566 SATA 3Gb/s bridge + 578e JMS578 SATA 6Gb/s bridge + 8561 salcar docking station two disks +152e LG (HLDS) + 1640 INIC-1605 SATA Bridge + 2507 PL-2507 IDE Controller + 2571 GP08NU6W DVD-RW + e001 GSA-5120D DVD-RW +1532 Razer USA, Ltd + 0001 RZ01-020300 Optical Mouse [Diamondback] + 0002 Diamondback Optical Mouse + 0003 Krait Mouse + 0005 Boomslang CE + 0007 DeathAdder Mouse + 0009 Gaming Mouse [Tempest Habu] + 000a Mamba (Wired) + 000c Lachesis + 000d DiamondBack 3G + 000e Megalodon + 000f Mamba (Wireless) + 0012 Gaming Mouse [Salmosa] + 0013 Orochi 2011 + 0015 Naga Mouse + 0016 DeathAdder 3.5G + 0017 RZ01-0035 Laser Gaming Mouse [Imperator] + 0019 Marauder + 001a Spectre + 001b Gaming Headset + 001c RZ01-0036 Optical Gaming Mouse [Abyssus] + 001e Lachesis (5600 DPI) + 001f Naga Epic (Wired) + 0020 Abyssus 1800 + 0021 Naga Epic Dock (Wireless, Bluetooth) + 0022 Gaming Mouse [TRON] + 0023 Gaming Keyboard [TRON] + 0024 Mamba 2012 (Wired) + 0025 Mamba 2012 (Wireless) + 0029 DeathAdder Black Edition + 002a Gaming Mouse [Star Wars: The Old Republic] + 002b Gaming Keyboard [Star Wars: The Old Republic] + 002c Gaming Headset [Star Wars: The Old Republic] + 002e RZ01-0058 Gaming Mouse [Naga 2012] + 002f Imperator 2012 + 0031 Gaming Mouse Dock [Star Wars: The Old Republic] + 0032 Ouroboros 2012 (Wired) + 0033 Ouroboros 2012 (Wireless) + 0034 Taipan + 0035 Krait 2013 Essential + 0036 RZ01-0075, Gaming Mouse [Naga Hex (Red)] + 0037 DeathAdder 2013 + 0038 DeathAdder 1800 + 0039 Orochi 2013 + 003e Naga Epic Chroma (Wired) + 003f Naga Epic Chroma (Wireless) + 0040 Naga 2014 + 0041 Naga Hex + 0042 Abyssus 2014 + 0043 DeathAdder Chroma + 0044 Mamba Chroma (Wired) + 0045 Mamba Chroma (Wireless) + 0046 Mamba 2015 Tournament Edition [RZ01-01370100-R3] + 0048 Orochi 2015 (Wired) + 004a RZ03-0133 Gaming Lapboard, Keyboard Mouse Combo, Dongle [Turret Dongle] + 004c Diamondback Chroma + 004d DeathAdder 2000 (Cynosa Pro Bundle) + 004f RZ01-0145, Gaming Mouse [DeathAdder 2000 (Alternate)] + 0050 Naga Hex V2 + 0053 Naga Chroma + 0054 DeathAdder 3500 + 0056 Orochi 2015 (Wireless) + 0059 RZ01-0212 Gaming Mouse [Lancehead (Wired)] + 005a RZ01-0212 Gaming Mouse [Lancehead (Wireless)] + 005b Abyssus V2 + 005c DeathAdder Elite + 005e Abyssus 2000 + 005f DeathAdder 2000 + 0060 RZ01-0213 Gaming Mouse [Lancehead Tournament Edition] + 0062 Atheris + 0064 Basilisk + 0065 RZ01-0265, Gaming Mouse [Basilisk Essential] + 0067 Naga Trinity + 0068 Gaming Mouse Mat [Firefly Hyperflux] + 0069 Gaming Mouse [Mamba Hyperflux] + 006a Abyssus Elite (D.Va Edition) + 006b Abyssus Essential + 006c Mamba Elite (Wired) + 006e DeathAdder Essential + 006f RZ01-0257 Gaming Mouse [Lancehead Wireless (2019, Wireless, Receiver)] + 0070 RZ01-0257 Gaming Mouse [Lancehead Wireless (2019, Wired)] + 0071 RZ01-0254 Gaming Mouse [DeathAdder Essential White Edition] + 0072 Mamba 2018 (Wireless) + 0073 Mamba 2018 (Wired) + 0078 Viper (wired) + 007a RC30-0305 Gaming Mouse [Viper Ultimate (Wired)] + 007b RC30-0305 Gaming Mouse Dongle [Viper Ultimate (Wireless)] + 007e RC30-030502 Mouse Dock + 0083 RC30-0315, Gaming Mouse [Basilisk X HyperSpeed] + 0084 RZ01-0321 Gaming Mouse [DeathAdder V2] + 0085 RZ01-0316 Gaming Mouse [Basilisk V2] + 0086 Gaming Mouse [Basilisk Ultimate, Wired] + 0088 Gaming Mouse [Basilisk Ultimate, Wireless, Receiver] + 008a RZ01-0325, Gaming Mouse [Viper Mini] + 0101 Copperhead Mouse + 0102 Tarantula Keyboard + 0103 Gaming Keyboard [Reclusa] + 0105 Gaming Keyboard [ProType] + 0106 Gaming Keyboard [ProType] + 0109 Lycosa Keyboard + 010b Gaming Keyboard [Arctosa] + 010d BlackWidow Ultimate 2012 + 010e BlackWidow Classic (Alternate) + 010f Anansi + 0110 Cyclosa + 0111 Nostromo + 0113 RZ07-0074 Gaming Keypad [Orbweaver] + 0114 DeathStalker Ultimate + 0116 Blade Pro (2015) + 0118 RZ03-0080, Gaming Keyboard [Deathstalker Essential] + 0119 Gaming Keyboard [Lycosa] + 011a BlackWidow Ultimate 2013 + 011b BlackWidow Classic + 011c BlackWidow Tournament Edition Stealth + 011d Blade 2013 + 011e Gaming Keyboard Dock [Edge Keyboard Dock] + 011f Deathstalker Essential 2014 + 0200 Gaming Keyboard [Reclusa] + 0201 Tartarus + 0202 DeathStalker Expert + 0203 BlackWidow Chroma + 0204 DeathStalker Chroma + 0205 Blade Stealth + 0207 Orbweaver Chroma keypad + 0208 Tartarus Chroma + 0209 BlackWidow Tournament Edition Chroma + 020d Cynosa Pro keyboard (Cynosa Pro Bundle) + 020f Blade QHD + 0210 Blade Pro (Late 2016) + 0211 BlackWidow Chroma (Overwatch) + 0214 BlackWidow Ultimate 2016 + 0215 Core + 0216 BlackWidow X Chroma + 0217 BlackWidow X Ultimate + 021a BlackWidow X Tournament Edition Chroma + 021b Gaming Keyboard [BlackWidow X Tournament Edition] + 021e Ornata Chroma + 021f Ornata + 0220 Blade Stealth (2016) + 0221 RZ03-0203 Gaming Keyboard [BlackWidow Chroma V2] + 0224 Blade (Late 2016) + 0225 Blade Pro (2017) + 0226 Huntsman Elite + 0227 Huntsman + 0228 BlackWidow Elite + 022a Cynosa Chroma + 022b Tartarus V2 + 022c Cynosa Chroma Pro + 022d Blade Stealth (Mid 2017) + 022f Blade Pro FullHD (2017) + 0232 Blade Stealth (Late 2017) + 0233 Blade 15 (2018) + 0234 Blade Pro 17 (2019) + 0235 BlackWidow Lite (2018) + 0237 BlackWidow Essential + 0239 Blade Stealth (2019) + 023a Blade 15 (2019) Advanced + 023b Blade 15 (2018) Base Model + 023f RZ03-0274 Gaming Keyboard [Cynosa Lite] + 0240 Blade 15 (2018) Mercury + 0241 BlackWidow (2019) + 0243 Huntsman Tournament Edition + 0244 RZ07-0311 Gaming Keypad [Tartarus Pro] + 0245 Blade 15 (Mid 2019) Mercury + 0246 Blade 15 (Mid 2019) Base Model + 024a Blade Stealth (Late 2019) + 024b Gaming Laptop [Blade 15 Advanced (Late 2019)] + 024c Gaming Laptop [Blade Pro (Late 2019)] + 024d Blade 15 Studio Edition (2019) + 0253 RZ09-0330, Gaming Laptop [Blade 15 Advanced (Early 2020)] + 0255 RZ09-0328, Gaming Laptop [Blade 15 Base Model (2020)] + 0256 RZ09--0329, Gaming Laptop [Blade Pro 17 Full HD (2020)] + 025d RZ03-0338, Gaming Keyboard [Ornata V2] + 0300 RZ06-0063 Motion Sensing Controllers [Hydra] + 0401 Gaming Arcade Stick [Panthera] + 0501 Kraken 7.1 + 0502 Gaming Headset [Kraken USB] + 0504 Kraken 7.1 Chroma + 0506 Kraken 7.1 (Alternate Version) + 0510 Kraken 7.1 V2 + 0511 RZ19-0229 Gaming Microphone + 0514 Electra V2 USB + 0517 Nommo Chroma + 0518 Nommo Pro + 051a Nari Ultimate + 051c Nari (Wireless) + 051d Nari (Wired) + 051e RC30-026902, Gaming Headset [Nari Essential, Wireless, Receiver] + 051f RC30-026901, Gaming Headset [Nari Essential, Wired] + 0520 Kraken Tournament Edition + 0521 Kraken Kitty Edition + 0527 RZ04-0318 Gaming Headset [Kraken Ultimate] + 0904 R201-0282 Gaming Keyboard, Mouse Combination [Turret For Xbox One] + 0a00 Atrox Arcade Stick for Xbox One + 0a02 ManO'War + 0a03 Wildcat + 0a15 RZ06-0199, Gaming Controller [Wolverine Tournament Edition] + 0c00 RZ02-0135 Hard Gaming Mouse Mat [Firefly] + 0c01 Goliathus + 0c02 Goliathus Extended + 0c04 Firefly V2 + 0e03 Gaming Webcam [Kiyo] + 0f03 Tiamat 7.1 V2 + 0f07 Chroma Mug Holder + 0f08 Base Station Chroma + 0f09 Chroma HDK + 0f0d Laptop Stand Chroma + 0f13 Lian Li O11 Dynamic Razer Edition + 0f1a Core X Chroma + 1000 Gaming Controller [Raiju] + 1004 Gaming Controller [Raiju Ultimate Wired] + 1007 Gaming Controller [Raiju 2 Tournament Edition (USB)] + 1008 Gaming Flightstick [Panthera Evo] + 1009 Gaming Controller [Raiju 2 Ultimate Edition (BT)] + 100a Gaming Controller [Raiju 2 Tournament Edition (BT)] + 110d Bootloader (Alternate) + 800e Bootloader +153b TerraTec Electronic GmbH + 1181 Cinergy S2 PCIe Dual Port 1 + 1182 Cinergy S2 PCIe Dual Port 2 +1546 U-Blox AG + 01a4 Antaris 4 + 01a5 [u-blox 5] + 01a6 [u-blox 6] + 01a7 [u-blox 7] + 01a8 [u-blox 8] + 1102 LISA-U2 +1547 SG Intec Ltd & Co KG + 1000 SG-Lock[U2] +154a Celectronic GmbH + 8180 CARD STAR/medic2 +154b PNY + 000f Flash Drive + 0010 USB 2.0 Flash Drive + 0048 Flash Drive + 004d 8 GB Flash Drive + 0053 Flash Drive + 0057 32GB Micro Slide Attache Flash Drive + 005b Flash Drive + 0062 Flash Drive + 007a Classic Attache Flash Drive + 5408 2.5in drive enclosure + 6000 Flash Drive + 6545 FD Device + fa05 Flash Drive +154d ConnectCounty Holdings Berhad +154e D&M Holdings, Inc. (Denon/Marantz) + 3000 Marantz RC9001 Remote Control +154f SNBC CO., Ltd +1554 Prolink Microsystems Corp. + 5010 PV-D231U(RN)-F [PixelView PlayTV SBTVD Full-Seg] +1557 OQO + 0002 model 01 WiFi interface + 0003 model 01 Bluetooth interface + 0a80 Gobi Wireless Modem (QDL mode) + 7720 model 01+ Ethernet + 8150 model 01 Ethernet interface +1568 Sunf Pu Technology Co., Ltd +156f Quantum Corporation +1570 ALLTOP TECHNOLOGY CO., LTD. +157b Ketron SRL +157e TRENDnet + 3006 TEW-444UB EU [TRENDnet] + 3007 TEW-444UB EU (no firmware) + 300a TEW-429UB 802.11bg + 300b TEW-429UB 802.11bg + 300c TEW-429UF A1 802.11bg Wireless Adapter [ZyDAS ZD1211B] + 300d TEW-429UB C1 802.11bg + 300e SMC SMCWUSB-N 802.11bgn 2x2:2 Wireless Adapter [Ralink RT2870] + 3012 TEW-604UB 802.11bg Wireless Adapter [Atheros AR5523] + 3013 TEW-645UB 802.11bgn 1x2:2 Wireless Adapter [Ralink RT2770] + 3204 Allnet ALL0298 v2 802.11bg + 3205 Allnet ALL0283 [AR5523] + 3206 Allnet ALL0283 [AR5523](no firmware) + 3207 TEW-509UB A1 802.11abg Wireless Adapter [ZyDAS ZD1211] + 3208 TEW-509UB 1.1R 802.11abg Wireless Adapter +1582 Fiberline + 6003 WL-430U 802.11bg +1587 SMA Technologie AG +158d Oakley Inc. +158e JDS Uniphase Corporation (JDSU) + 0820 SmartPocket Class Device +1598 Kunshan Guoji Electronics Co., Ltd. +15a2 Freescale Semiconductor, Inc. + 0038 9S08JS Bootloader + 003b USB2CAN Application for ColdFire DEMOJM board + 0041 i.MX51 SystemOnChip in RecoveryMode + 0042 OSBDM - Debug Port + 004e i.MX53 SystemOnChip in RecoveryMode + 004f i.MX28 SystemOnChip in RecoveryMode + 0052 i.MX50 SystemOnChip in RecoveryMode + 0054 i.MX 6Dual/6Quad SystemOnChip in RecoveryMode + 0061 i.MX 6Solo/6DualLite SystemOnChip in RecoveryMode + 006a Vybrid series SystemOnChip in RecoveryMode + 0076 i.MX 7Solo/7Dual SystemOnChip in RecoveryMode + 0080 i.MX 6ULL SystemOnChip in RecoveryMode +15a4 Afatech Technologies, Inc. + 1000 AF9015/AF9035 DVB-T stick + 1001 AF9015/AF9035 DVB-T stick + 1336 SDHC/MicroSD/MMC/MS/M2/CF/XD Flash Card Reader + 9015 AF9015 DVB-T USB2.0 stick + 9016 AF9015 DVB-T USB2.0 stick +15a8 Teams Power Limited +15a9 Gemtek + 0002 SparkLAN WL-682 802.11bg Wireless Adapter [Intersil ISL3887] + 0004 WUBR-177G [Ralink RT2571W] + 0006 Wireless 11n USB Adapter + 0010 802.11n USB Wireless Card + 0012 WUBR-208N 802.11abgn Wireless Adapter [Ralink RT2870] + 002d WLTUBA-107 [Yota 4G LTE] +15aa Gearway Electronics (Dong Guan) Co., Ltd. +15ad VMware Inc. +15ba Olimex Ltd. + 0003 OpenOCD JTAG + 0004 OpenOCD JTAG TINY + 002a ARM-USB-TINY-H JTAG interface + 002b ARM-USB-OCD-H JTAG+RS232 + 003c TERES Keyboard+Touchpad +15c0 XL Imaging + 0001 2M pixel Microscope Camera + 0002 3M pixel Microscope Camera + 0003 1.3M pixel Microscope Camera (mono) + 0004 1.3M pixel Microscope Camera (colour) + 0005 3M pixel Microscope Camera (Mk 2) + 0006 2M pixel Microscope Camera (with capture button) + 0007 3M pixel Microscope Camera (with capture button) + 0008 1.3M pixel Microscope Camera (colour, with capture button) + 0009 1.3M pixel Microscope Camera (colour, with capture button) + 000a 2M pixel Microscope Camera (Mk 2) + 0010 1.3M pixel "Tinycam" + 0101 3M pixel Microscope Camera +15c2 SoundGraph Inc. + 0036 LC16M VFD Display/IR Receiver + 0038 GD01 MX LCD Display/IR Receiver + 0042 Antec Veris Multimedia Station E-Z IR Receiver + ffda iMON PAD Remote Controller + ffdc iMON PAD Remote Controller +15c5 Pressure Profile Systems, Inc. + 0008 Advance Multimedia Internet Technology Inc. (AMIT) WL532U 802.11g Adapter +15c6 Laboratoires MXM + 1000 DigistimSP (cold) + 1001 DigistimSP (warm) + 1002 DigimapSP USB (cold) + 1003 DigimapSP USB (warm) + 1004 DigistimSP (cold) + 1005 DigistimSP (warm) + 1100 Odyssee (cold) + 1101 Odyssee (warm) + 1200 Digispy +15c8 KTF Technologies + 3201 EVER EV-W100/EV-W250 +15c9 D-Box Technologies +15ca Textech International Ltd. + 00c3 Mini Optical Mouse + 0101 MIDI Interface cable + 1806 MIDI Interface cable +15d5 Coulomb Electronics Ltd. +15d9 Trust International B.V. + 0a33 Optical Mouse + 0a37 Mouse + 0a41 MI-2540D [Optical mouse] + 0a4c USB+PS/2 Optical Mouse + 0a4d Optical Mouse + 0a4e AM-5400 [Optical Mouse] + 0a4f Optical Mouse +15dc Hynix Semiconductor Inc. +15e0 Seong Ji Industrial Co., Ltd. +15e1 RSA + 2007 RSA SecurID (R) Authenticator +15e4 Numark + 0024 Mixtrack + 003c DJ2GO2 Touch + 0140 ION VCR 2 PC / Video 2 PC + 3f00 Power A Mini Pro Elite + 3f0a Airflo Wired Controller for Xbox 360 + 3f10 Batarang controller for Xbox 360 +15e8 SohoWare + 9100 NUB100 Ethernet [pegasus] + 9110 10/100 USB Ethernet +15e9 Pacific Digital Corp. + 04ce MemoryFrame MF-570 + 1968 MemoryFrame MF-570 + 1969 Digital Frame +15ec Belcarra Technologies Corp. +15f4 HanfTek + 0001 HanfTek UMT-010 USB2.0 DVB-T (cold) + 0025 HanfTek UMT-010 USB2.0 DVB-T (warm) + 0131 Astrometa DVB-T/T2/C FM & DAB receiver [RTL2832P] + 0135 Astrometa T2hybrid +1604 Tascam + 10c0 Dell Integrated Hub + 8000 US-428 Audio/Midi Controller (without fw) + 8001 US-428 Audio/Midi Controller + 8004 US-224 Audio/Midi Controller (without fw) + 8005 US-224 Audio/Midi Controller + 8006 US-122 Audio/Midi Interface (without fw) + 8007 US-122 Audio/Midi Interface +1605 ACCES I/O Products, Inc. + 0001 DIO-32 (No Firmware Yet) + 0002 USB-DIO-48 (No Firmware Yet) + 0003 USB-DIO-96 (No Firmware Yet) + 0004 USB-DIO-32I (No Firmware Yet) + 0005 USB-DIO24 (based on -CTR6) (No Firmware Yet) + 0006 USB-DIO24-CTR6 (No Firmware Yet) +1606 Umax + 0002 Astra 1236U Scanner + 0010 Astra 1220U + 0030 Astra 1600U/2000U + 0050 Scanner + 0060 Astra 3400/3450 + 0070 Astra 4400/4450 + 0130 Astra 2100U + 0160 Astra 5400U + 0170 Uniscan D50 + 0230 Astra 2200/2200SU + 0350 Astra 4800/4850 Scanner + 1030 Astra 4000U + 1220 Genesys Logic Scanner Controller NT5.0 + 2010 AstraCam Digital Camera + 2020 AstraCam 1000 + 2030 AstraCam 1800 Digital Camera +1608 Inside Out Networks [hex] + 0001 EdgePort/4 Serial Port + 0002 Edgeport/8 + 0003 Rapidport/4 + 0004 Edgeport/4 + 0005 Edgeport/2 + 0006 Edgeport/4i + 0007 Edgeport/2i + 0008 Edgeport/8 + 000c Edgeport/421 + 000d Edgeport/21 + 000e Edgeport/4 + 000f Edgeport/8 + 0010 Edgeport/2 + 0011 Edgeport/4 + 0012 Edgeport/416 + 0014 Edgeport/8i + 0018 Edgeport/412 + 0019 Edgeport/412 + 001a Edgeport/2+2i + 0101 Edgeport/4 + 0105 Edgeport/2 + 0106 Edgeport/4i + 0107 Edgeport/2i + 010c Edgeport/421 + 010d Edgeport/21 + 0110 Edgeport/2 + 0111 Edgeport/4 + 0112 Edgeport/416 + 0114 Edgeport/8i + 0201 Edgeport/4 + 0203 Rapidport/4 + 0204 Edgeport/4 + 0205 Edgeport/2 + 0206 Edgeport/4i + 0207 Edgeport/2i + 020c Edgeport/421 + 020d Edgeport/21 + 020e Edgeport/4 + 020f Edgeport/8 + 0210 Edgeport/2 + 0211 Edgeport/4 + 0212 Edgeport/416 + 0214 Edgeport/8i + 0215 Edgeport/1 + 0216 EPOS/44 + 0217 Edgeport/42 + 021a Edgeport/2+2i + 021b Edgeport/2c + 021c Edgeport/221c + 021d Edgeport/22c + 021e Edgeport/21c + 021f Edgeport/62 + 0240 Edgeport/1 + 0241 Edgeport/1i + 0242 Edgeport/4s + 0243 Edgeport/8s + 0244 Edgeport/8 + 0245 Edgeport/22c + 0301 Watchport/P + 0302 Watchport/M + 0303 Watchport/W + 0304 Watchport/T + 0305 Watchport/H + 0306 Watchport/E + 0307 Watchport/L + 0308 Watchport/R + 0309 Watchport/A + 030a Watchport/D + 030b Watchport/D + 030c Power Management Port + 030e Power Management Port + 030f Watchport/G + 0310 Watchport/Tc + 0311 Watchport/Hc + 1403 MultiTech Systems MT4X56 Modem + 1a17 Agilent Technologies (E6473) +160a VIA Technologies, Inc. + 3184 VIA VNT-6656 [WiFi 802.11b/g USB Dongle] +160e INRO + 0001 E2USBKey +1614 Amoi Electronics + 0404 WMA9109 UMTS Phone + 0600 Vodafone VDA GPS / Toschiba Protege G710 + 0804 WP-S1 Phone +1617 Sony Corp. + 2002 NVX-P1 Personal Navigation System +1619 L & K Precision Technology Co., Ltd. +161c Digitech Systems + 0002 DTC-02U [Digi Touch Controller] +1621 Wionics Research +1628 Stonestreet One, Inc. +162a Airgo Networks Inc. +162f WiQuest Communications, Inc. +1630 2Wire, Inc. + 0005 802.11g Wireless Adapter [Intersil ISL3886] + 0011 PC Port 10 Mps Adapter + ff81 802.11b Wireless Adapter [Lucent/Agere Hermes I] +1631 Good Way Technology + 6200 GWUSB2E + c019 RT2573 +1633 AIM GmbH + 4510 ASC1553 + 4520 ASC429 + 4560 ASC-FDX +1645 Entrega [hex] + 0001 1S Serial Port + 0002 2S Serial Port + 0003 1S25 Serial Port + 0004 4S Serial Port + 0005 E45 Ethernet [klsi] + 0006 Parallel Port + 0007 U1-SC25 SCSI + 0008 Ethernet + 0016 Bi-directional to Parallel Printer Converter + 0080 1 port to Serial Converter + 0081 1 port to Serial Converter + 0093 1S9 Serial Port + 8000 EZ-USB + 8001 1 port to Serial + 8002 2x Serial Port + 8003 1 port to Serial + 8004 2U4S serial/usb hub + 8005 Ethernet + 8080 1 port to Serial + 8081 1 port to Serial + 8093 PortGear Serial Port +1649 SofTec Microsystems + 0102 uDART In-Circuit Debugger + 0200 SpYder USBSPYDER08 +164a ChipX +164c Matrix Vision GmbH + 0101 mvBlueFOX camera (no firmware) + 0103 mvBlueFOX camera + 0201 mvBlueLYNX-X intelligent camera (bootloader) + 0203 mvBlueLYNX-X intelligent camera +1657 Struck Innovative Systeme GmbH + 3150 SIS3150 USB2.0 to VME interface +165b Frontier Design Group + 8101 Tranzport Control Surface + fad1 Alphatrack Control Surface +165c Kondo Kagaku + 0002 Serial Adapter + 0006 FT232 [ICS adapter HS] + 0008 FT232 [Dual adapter HS] +1660 Creatix Polymedia GmbH +1667 GIGA-TMS INC. + 0005 PCR330A RFID Reader (125 kHz, keyboard emulation) +1668 Actiontec Electronics, Inc. [hex] + 0009 Gateway + 0333 Modem + 0358 InternetPhoneWizard + 0405 Gateway + 0408 Prism2.5 802.11b Adapter + 0413 Gateway + 0421 Prism2.5 802.11b Adapter + 0441 IBM Integrated Bluetooth II + 0500 BTM200B BlueTooth Adapter + 1050 802UIG-1 802.11g Wireless Mini Adapter [Intersil ISL3887] + 1200 802AIN Wireless N Network Adapter [Atheros AR9170+AR9101] + 1441 IBM Integrated Bluetooth II + 2441 BMDC-2 IBM Bluetooth III w.56k + 3441 IBM Integrated Bluetooth III + 6010 Gateway + 6097 802.11b Wireless Adapter + 6106 802UI3(B) 802.11b Wireless Adapter [Intersil PRISM 3] + 7605 UAT1 Wireless Ethernet Adapter +1669 PiKRON Ltd. [hex] + 1001 uLan2USB Converter - PS1 protocol +166a Clipsal + 0101 C-Bus Multi-room Audio Matrix Switcher + 0201 C-Bus Pascal Automation Controller + 0301 C-Bus Wireless PC Interface + 0303 C-Bus interface + 0304 C-Bus Black and White Touchscreen + 0305 C-Bus Spectrum Colour Touchscreen + 0401 C-Bus Architectural Dimmer +1677 China Huada Integrated Circuit Design (Group) Co., Ltd. (CIDC Group) + 0103 Token +1679 Total Phase + 2001 Beagle Protocol Analyzer + 2002 Cheetah SPI Host Adapter +167b Pure Digital Technologies, Inc. + 2009 Flip Ultra U1120 +1680 Golden Bridge Electech Inc. + a332 DVB-T Dongle [RTL2832U] +1681 Prevo Technologies, Inc. + 0001 Tuner's Dashboard + 0002 DocuBrain(R) Tubachron + 0003 DocuBrain(R) I2C + 0004 DocuBrain(R) WWVB Receiver + 0005 DocuBrain(R) WWVB Transmitter +1682 Maxwise Production Enterprise Ltd. +1684 Godspeed Computer Corp. +1685 Delock + 0200 Infrared adapter +1686 ZOOM Corporation + 0045 Handy Recorder stereo mix + 01c0 Zoom Handy Recorder card reader + 01c5 Zoom Handy Recorder multi track + 03d5 LiveTrak L-12 +1687 Kingmax Digital Inc. + 5289 FlashDisk + 6211 FlashDisk + 6213 FlashDisk +1688 Saab AB +1689 Razer USA, Ltd + fd00 Onza Tournament Edition controller + fd01 Onza Classic Edition + fe00 Sabertooth Elite +168c Atheros Communications + 0001 AR5523 + 0002 AR5523 (no firmware) +1690 Askey Computer Corp. [hex] + 0001 Arcaze Gamepad + 0101 Creative Modem Blaster DE5670 + 0102 V1456 VQE-R2 Modem [conexant] + 0103 1456 VQE-R3 Modem [conexant] + 0104 HCF V90 Data Fax RTAD Modem + 0107 HCF V.90 Data,Fax,RTAD Modem + 0109 MagicXpress V.90 Pocket Modem [conexant] + 0203 Voyager ADSL Modem Loader + 0204 Voyager ADSL Modem + 0205 DSL Modem + 0206 GlobeSpan ADSL WAN Modem + 0208 DSL Modem + 0209 Voyager 100 ADSL Modem + 0211 Globespan Virata ADSL LAN Modem + 0212 DSL Modem + 0213 HM121d DSL Modem + 0214 HM121d DSL Modem + 0215 Voyager 105 ADSL Modem + 0701 WLAN + 0710 SMCWUSBT-G + 0711 SMCWUSBT-G (no firmware) + 0712 AR5523 + 0713 AR5523 (no firmware) + 0715 Name: Voyager 1055 Laptop 802.11g Adapter [Broadcom 4320] + 0722 RT2573 + 0726 Wi-Fi Wireless LAN Adapter + 0740 802.11n Wireless LAN Card + 0901 Voyager 205 ADSL Router + 2000 naturaSign Pad Standard + 2001 naturaSign Pad Standard + fe12 Bootloader +1696 Hitachi Video and Information System, Inc. +1697 VTec Test, Inc. +16a5 Shenzhen Zhengerya Cable Co., Ltd. +16a6 Unigraf + 3000 VTG-3xxx Video Test Generator family + 4000 VTG-4xxx Video Test Generator family + 5000 VTG-5xxx Video Test Generator family + 5001 VTG-5xxx Special (update) mode of VTG-5xxx family +16ab Global Sun Technology + 7801 AR5523 + 7802 AR5523 (no firmware) + 7811 AR5523 + 7812 AR5523 (no firmware) +16ac Dongguan ChingLung Wire & Cable Co., Ltd. +16b4 iStation + 0801 U43 +16b5 Persentec, Inc. + 0002 Otto driving companion +16c0 Van Ooijen Technische Informatica + 03e8 free for internal lab use 1000 + 03e9 free for internal lab use 1001 + 03ea free for internal lab use 1002 + 03eb free for internal lab use 1003 + 03ec free for internal lab use 1004 + 03ed free for internal lab use 1005 + 03ee free for internal lab use 1006 + 03ef free for internal lab use 1007 + 03f0 free for internal lab use 1008 + 03f1 free for internal lab use 1009 + 0477 Teensy Rebootor + 0478 Teensy Halfkay Bootloader + 0479 Teensy Debug + 047a Teensy Serial + 047b Teensy Serial+Debug + 047c Teensy Keyboard + 047d Teensy Keyboard+Debug + 047e Teensy Mouse + 047f Teensy Mouse+Debug + 0480 Teensy RawHID + 0481 Teensy RawHID+Debug + 0482 Teensyduino Keyboard+Mouse+Joystick + 0483 Teensyduino Serial + 0484 Teensyduino Disk + 0485 Teensyduino MIDI + 0486 Teensyduino RawHID + 0487 Teensyduino Serial+Keyboard+Mouse+Joystick + 0488 Teensyduino Flight Sim Controls + 05b5 BU0836 + 05dc shared ID for use with libusb + 05dd BlackcatUSB2 + 05de Flashcat + 05df HID device except mice, keyboards, and joysticks + 05e1 Free shared USB VID/PID pair for CDC devices + 05e4 Free shared USB VID/PID pair for MIDI devices + 06b4 USB2LPT with 2 interfaces + 06b5 USB2LPT with 3 interfaces (native, HID, printer) + 074e DSP-Weuffen USB-HPI-Programmer + 074f DSP-Weuffen USB2-HPI-Programmer + 0762 Osmocom SIMtrace + 076b OpenPCD 13.56MHz RFID Reader + 076c OpenPICC 13.56MHz RFID Simulator (native) + 08ac OpenBeacon USB stick + 08ca Alpermann+Velte Universal Display + 08cb Alpermann+Velte Studio Clock + 08cc Alpermann+Velte SAM7S MT Boot Loader + 08cd Alpermann+Velte SAM7X MT Boot Loader + 09ce LINKUSB + 0a32 jbmedia Light-Manager Pro + 27d8 libusb-bound devices + 27d9 HID device except mice, keyboards, and joysticks + 27da Mouse + 27db Keyboard + 27dc Joystick + 27dd CDC-ACM class devices (modems) + 27de MIDI class devices + 294a Eye Movement Recorder [Visagraph] + 294b Eye Movement Recorder [ReadAlyzer] +16ca Wireless Cables, Inc. + 1502 Bluetooth Dongle +16cc silex technology, Inc. +16d0 MCS + 0436 Xylanta Ltd, XSP Device + 0498 Braintechnology USB-LPS + 0504 RETRO Innovations ZoomFloppy + 054b GrauTec ReelBox OLED Display (external) + 05be EasyLogic Board + 05f0 Superior Freedom Programmable IR Remote + 06cc Trinamic TMCM-3110 + 06f0 Axium AX-R4C Controller + 06f1 Axium AX-R1D Controller + 06f9 Gabotronics Xminilab + 0726 Autonomic M400 Amplifier + 0727 Autonomic M800 Amplifier + 0753 Digistump DigiSpark + 075c AB-1.x UAC1 [Audio Widget] + 075d AB-1.x UAC2 [Audio Widget] + 07cc Xylanta Ltd, Saint3 Device + 07f8 Axium AX-R4D Controller + 080a S2E1 Interface + 0830 DMXControl Projects e.V., Nodle U1 + 0831 DMXControl Projects e.V., Desklamp + 0832 DMXControl Projects e.V., Nodle U2 + 0833 DMXControl Projects e.V., Nodle R4S + 0870 Kaufmann Automotive GmbH, RKS+CAN Interface + 09f2 Axium AX-1250 Amplifier + 09f4 Axium AX-Mini4 Amplifier + 0b03 AIS Receiver [dAISy] + 0b7d Autonomic M801 Amplifier + 0b7e Autonomic M401 Amplifier + 0b7f Autonomic M120e Amplifier + 0bd4 codesrc SCSI2SD + 0c9b Fermium LABS srl/LabTrek srl Hall Effect Apparatus + 0d3c InputStick BT4.0 + 0e1e AtomMiner +16d1 Suprema Inc. + 0401 SUP-SFR400(A) BioMini Fingerprint Reader +16d3 Frontline Test Equipment, Inc. +16d5 AnyDATA Corporation + 6202 CDMA/UMTS/GPRS modem + 6501 CDMA 2000 1xRTT/EV-DO Modem + 6502 CDMA/UMTS/GPRS modem + 6603 ADU-890WH modem +16d6 JABLOCOM s.r.o. + 8000 GDP-04 desktop phone + 8001 EYE-02 + 8003 GDP-04 modem + 8004 Bootloader + 8005 GDP-04i + 8007 BTP-06 modem +16d8 CMOTECH Co., Ltd. + 5141 CMOTECH CDMA Technologies modem + 5533 CCU-550 CDMA EV-DO modem + 5543 CDMA 2000 1xRTT/1xEVDO modem + 6280 CMOTECH CDMA Technologies modem + 6803 CNU-680 CDMA EV-DO modem + 8001 Gobi 2000 Wireless Modem (QDL mode) + 8002 Gobi 2000 Wireless Modem +16dc Wiener, Plein & Baus + 0001 CC + 000b VM + 0010 PL512 Power Supply System + 0011 MARATON Power Supply System + 0012 MPOD Multi Channel Power Supply System + 0015 CML Control, Measurement and Data Logging System +16de Telemecanique +16df King Billion Electronics Co., Ltd. +16f0 GN Hearing A/S + 0001 Speedlink Programming Interface + 0003 Airlink Wireless Programming Interface + 0004 Accessory Programming Interface +16f5 Futurelogic Inc. +1702 FDI-MATELEC + 0002 Encodeur +1706 BlueView Technologies, Inc. +1707 ARTIMI +170b Swissonic + 0011 MIDI-USB 1x1 +170d Avnera +1711 Leica Microsystems + 0101 DFC-365FX camera + 3020 IC80 HD Camera +1724 Meyer Instruments (MIS) + 0115 PAXcam5 +1725 Vitesse Semiconductor +1726 Axesstel, Inc. + 1000 wireless modem + 2000 wireless modem + 3000 wireless modem +172f Waltop International Corp. + 0022 Tablet + 0024 Tablet + 0025 Tablet + 0026 Tablet + 0031 Slim Tablet 12.1" + 0032 Slim Tablet 5.8" + 0034 Slim Tablet 12.1" + 0038 Genius G-Pen F509 + 0500 Media Tablet 14.1" + 0501 Media Tablet 10.6" + 0502 Sirius Battery Free Tablet +1733 Cellink Technology Co., Ltd + 0101 RF Wireless Optical Mouse OP-701 +1736 CANON IMAGING SYSTEM TECHNOLOGIES INC. +1737 802.11g Adapter [Linksys WUSB54GC v3] + 0039 USB1000 Gigabit Notebook Adapter + 0070 WUSB100 v1 RangePlus Wireless Network Adapter [Ralink RT2870] + 0071 WUSB600N v1 Dual-Band Wireless-N Network Adapter [Ralink RT2870] + 0073 WUSB54GC v2 802.11g Adapter [Realtek RTL8187B] + 0075 WUSB54GSC v2 802.11g Adapter [Broadcom 4326U] + 0077 WUSB54GC v3 802.11g Adapter [Ralink RT2070L] + 0078 WUSB100 v2 RangePlus Wireless Network Adapter [Ralink RT3070] + 0079 WUSB600N v2 Dual-Band Wireless-N Network Adapter [Ralink RT3572] +173a Roche + 2198 Accu-Chek Mobile + 21ca ACCU-CHEK Mobile Model U1 +173d QSENN + 0002 GP-K7000 keyboard +1740 Senao + 0100 EUB1200AC AC1200 DB Wireless Adapter [Realtek RTL8812AU] + 0600 EUB600v1 802.11abgn Wireless Adapter [Ralink RT3572] + 0605 LevelOne WUA-0605 N_Max Wireless USB Adapter + 0615 LevelOne WUA-0615 N_Max Wireless USB Adapter + 1000 NUB-350 802.11g Wireless Adapter [Intersil ISL3887] + 2000 NUB-8301 802.11bg + 3701 EUB-3701 EXT 802.11g Wireless Adapter [Ralink RT2571W] + 9603 RTL8188S WLAN Adapter + 9701 EnGenius 802.11n Wireless USB Adapter + 9702 EnGenius 802.11n Wireless USB Adapter + 9703 EnGenius 802.11n Wireless USB Adapter + 9705 EnGenius 802.11n Wireless USB Adapter + 9706 EUB9706 802.11n Wireless Adapter [Ralink RT3072] + 9801 EUB9801 802.11abgn Wireless Adapter [Ralink RT3572] +1743 General Atomics +1748 MQP Electronics + 0101 Packet-Master USB12 +174c ASMedia Technology Inc. + 07d1 Transcend ESD400 Portable SSD (USB 3.0) + 1151 ASM1151W + 1153 ASM1153 SATA 3Gb/s bridge + 2074 ASM1074 High-Speed hub + 3074 ASM1074 SuperSpeed hub + 5106 ASM1051 SATA 3Gb/s bridge + 5136 ASM1053 SATA 3Gb/s bridge + 51d6 ASM1051W SATA 3Gb/s bridge + 55aa ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge +174f Syntek + 1105 SM-MS/Pro-MMC-XD Card Reader + 110b HP Webcam + 1122 HP Webcam + 1169 Lenovo EasyCamera + 1403 Integrated Webcam + 1404 USB Camera device, 1.3 MPixel Web Cam + 1758 XYZ printing cameraR2 + 1759 XYZ printing cameraL2 + 5212 USB 2.0 UVC PC Camera + 5a11 PC Camera + 5a31 Sonix USB 2.0 Camera + 5a35 Sonix 1.3MPixel USB 2.0 Camera + 6a31 Web Cam - Asus A8J, F3S, F5R, VX2S, V1S + 6a33 Web Cam - Asus F3SA, F9J, F9S + 6a51 2.0MPixel Web Cam - Asus Z96J, Z96S, S96S + 6a54 Web Cam + 6d51 2.0Mpixel Web Cam - Eurocom D900C + 8a12 Syntek 0.3MPixel USB 2.0 UVC PC Camera + 8a33 Syntek USB 2.0 UVC PC Camera + a311 1.3MPixel Web Cam - Asus A3A, A6J, A6K, A6M, A6R, A6T, A6V, A7T, A7sv, A7U + a312 1.3MPixel Web Cam + a821 Web Cam - Packard Bell BU45, PB Easynote MX66-208W + aa11 Web Cam +1753 GERTEC Telecomunicacoes Ltda. + c901 PPC900 Pinpad Terminal +1756 ENENSYS Technologies + 0006 DiviPitch +1759 LucidPort Technology, Inc. +1761 ASUSTek Computer, Inc. (wrong ID) + 0b05 802.11n Network Adapter (wrong ID - swapped vendor and device) +1770 MSI + ff00 steel series rgb keyboard +1772 System Level Solutions, Inc. +1776 Arowana + 501c 300K CMOS Camera +1777 Microscan Systems, Inc. + 0003 MicroHAWK ID-20 +177f Sweex + 0004 MM004V5 Photo Key Chain (Digital Photo Frame) 1.5" + 0153 LW153 802.11n Adapter [ralink rt3070] + 0154 LW154 802.11bgn (1x1:1) Wireless Adapter [Realtek RTL8188SU] + 0313 LW313 802.11n Adapter [ralink rt2770 + rt2720] +1781 Multiple Vendors + 07df Axium AX-800DAV Amplifier + 07e1 Axium AX-KPC Keypad + 07e2 Axium AX-KPD Keypad + 07e3 Axium AX-400DA Amplifier + 083e MetaGeek Wi-Spy + 083f MetaGeek Wi-Spy 2.4x + 0938 Iguanaworks USB IR Transceiver + 0941 qNimble Quark + 0a96 raphnet.net usb_game12 + 0a97 raphnet.net SNES mouse adapter + 0a98 raphnet.net USBTenki + 0a99 raphnet.net NES + 0a9a raphnet.net Gamecube/N64 controller + 0a9b raphnet.net DB9Joy + 0a9c raphnet.net Intellivision + 0a9d raphnet.net 4nes4snes + 0a9e raphnet.net Megadrive multitap + 0a9f raphnet.net MultiDB9joy + 0bad Mantracourt Load Cell + 0c30 Telldus TellStick + 0c31 Telldus TellStick Duo + 0c9f USBtiny + 1eef OpenAPC SecuKey + 1ef0 E1701 Modular Controller Card + 1ef1 E1701 Modular Controller Card + 1ef2 E1803 Compact Controller Card +1782 Spreadtrum Communications Inc. + 3d00 F200n mobile phone +1784 TopSeed Technology Corp. + 0001 eHome Infrared Transceiver + 0004 RF Combo Device + 0006 eHome Infrared Transceiver + 0007 eHome Infrared Transceiver + 0008 eHome Infrared Transceiver + 000a eHome Infrared Transceiver + 0011 eHome Infrared Transceiver +1787 ATI AIB +1788 ShenZhen Litkconn Technology Co., Ltd. +178e ASUSTek Computer, Inc. (wrong ID) + 0b05 CrossLink cable 2GB (wrong ID - swapped vendor and device) +1796 Printrex, Inc. +1797 JALCO CO., LTD. +1799 Thales Norway A/S + 7051 Belkin F5D7051 802.11g Adapter v1000 [Broadcom 4320] + 8051 Belkin F5D8051 v2 802.11bgn Wireless Adapter [Marvell 88W8362] +179d Ricavision International, Inc. + 0010 Internal Infrared Transceiver +17a0 Samson Technologies Corp. + 0001 C01U condenser microphone + 0002 Q1U dynamic microphone + 0100 C03U multi-pattern microphone + 0101 UB1 boundary microphone + 0120 Meteorite condenser microphone + 0130 Go Mic Direct + 0132 Go Mic Mobile wireless receiver + 0200 StudioDock monitors (internal hub) + 0201 StudioDock monitors (audio) + 0210 StudioGT monitors + 0211 StudioGT monitors [CM6400] + 0240 Go Mic Connect + 0241 G-Track Pro microphone + 0301 Q2U handheld microphone with XLR + 0302 GoMic compact condenser microphone + 0303 C01U Pro condenser microphone + 0304 Q2U handheld mic with XLR + 0305 GoMic compact condenser mic + 0310 Meteor condenser microphone + 0311 Satellite condenser microphone + 1616 RXD1 wireless receiver + b241 G-Track Pro firmware update + b311 Satellite firmware update +17a4 Concept2 + 0001 Performance Monitor 3 + 0002 Performance Monitor 4 +17a5 Advanced Connection Technology Inc. +17a7 MICOMSOFT CO., LTD. +17a8 Kamstrup A/S + 0001 Optical Eye/3-wire + 0005 M-Bus Master MultiPort 250D + 0010 444MHz Radio Mesh Frontend + 0011 444MHz RF sniffer + 0012 870MHz Radio Mesh Frontend + 0013 870MHz RF sniffer +17b3 Grey Innovation + 0004 Linux-USB Midi Gadget +17b5 Lunatone + 0010 MFT Sensor +17ba SAURIS GmbH + 0001 SAU510-USB [no firmware] + 0510 SAU510-USB and SAU510-USB plus JTAG Emulators + 0511 SAU510-USB Iso Plus JTAG Emulator + 0520 SAU510-USB Nano JTAG Emulator + 1511 Onboard Emulator on SAUModule development kit +17c3 Singim International Corp. +17cc Native Instruments + 041c Audio 2 DJ + 041d Traktor Audio 2 + 0808 Maschine Controller + 0815 Audio Kontrol 1 + 0839 Audio 4 DJ + 0d8d Guitarrig Mobile + 1001 Komplete Audio 6 + 1110 Maschine Mikro + 1915 Session I/O + 1940 RigKontrol3 + 1969 RigKontrol2 + 1978 Audio 8 DJ + 2280 Medion MDPNA1500 in card reader mode + 2305 Traktor Kontrol X1 + 4711 Kore Controller + 4712 Kore Controller 2 + baff Traktor Kontrol S4 +17cf Hip Hing Cable & Plug Mfy. Ltd. +17d0 Sanford L.P. +17d3 Korea Techtron Co., Ltd. +17e9 DisplayLink + 0051 USB VGA Adaptor + 0198 DisplayLink + 019e Overfly FY-1016A + 028f HIS Multi-View II + 030b HP T100 + 0377 Plugable UD-160-A (M) + 0378 Plugable UGA-2K-A + 0379 Plugable UGA-125 + 037a Plugable UGA-165 + 037b Plugable USB-VGA-165 + 037c Plugable DC-125 + 037d Plugable USB2-HDMI-165 + 410a HDMI Adapter + 430a HP Port Replicator (Composite Device) + 430f Kensington Dock (Composite Device) + 4312 S2340T + 436e Dell D3100 Docking Station + ff10 I1659FWUX {AOC Powered Monitor] +17eb Cornice, Inc. +17ef Lenovo + 1000 ThinkPad X6 UltraBase + 1003 Integrated Smart Card Reader + 1004 Integrated Webcam + 1005 ThinkPad X200 Ultrabase (42X4963 ) + 1008 Hub + 100a ThinkPad Mini Dock Plus Series 3 + 100f ThinkPad Ultra Dock Hub + 1010 ThinkPad Ultra Dock Hub + 1020 ThinkPad Dock Hub + 1021 ThinkPad Dock Hub [Cypress HX2VL] + 3049 ThinkPad OneLink integrated audio + 304b AX88179 Gigabit Ethernet [ThinkPad OneLink GigaLAN] + 304f RTL8153 Gigabit Ethernet [ThinkPad OneLink Pro Dock] + 3060 ThinkPad Dock + 3062 ThinkPad Dock Ethernet [Realtek RTL8153B] + 3063 ThinkPad Dock Audio + 3066 ThinkPad Thunderbolt 3 Dock MCU + 3069 ThinkPad TBT3 LAN + 306a ThinkPad Thunderbolt 3 Dock Audio + 3815 ChipsBnk 2GB USB Stick + 4802 Vc0323+MI1310_SOC Camera + 4807 UVC Camera + 480c Integrated Webcam + 480d Integrated Webcam [R5U877] + 480e Integrated Webcam [R5U877] + 480f Integrated Webcam [R5U877] + 4810 Integrated Webcam [R5U877] + 4811 Integrated Webcam [R5U877] + 4812 Integrated Webcam [R5U877] + 4813 Integrated Webcam [R5U877] + 4814 Integrated Webcam [R5U877] + 4815 Integrated Webcam [R5U877] + 4816 Integrated Webcam + 481c Integrated Webcam + 481d Integrated Webcam + 6004 ISD-V4 Tablet Pen + 6007 Smartcard Keyboard + 6009 ThinkPad Keyboard with TrackPoint + 600e Optical Mouse + 6014 Mini Wireless Keyboard N5901 + 6019 M-U0025-O Mouse + 6022 Ultraslim Plus Wireless Keyboard and Mouse + 6025 ThinkPad Travel Mouse + 602d Black Silk Keyboard + 6032 Wireless Dongle for Keyboard and Mouse + 6044 ThinkPad Laser Mouse + 6047 ThinkPad Compact Keyboard with TrackPoint + 604b Precision Wireless Mouse + 608d Optical Mouse + 609b Professional Wireless Keyboard and Mouse Combo + 609c Professional Wireless Keyboard + 7203 Ethernet adapter [U2L 100P-Y1] + 7205 Thinkpad LAN + 7217 VGA adapter + 7423 IdeaPad A1 Tablet + 7435 A789 (Mass Storage mode, with debug) + 743a A789 (Mass Storage mode) + 7497 A789 (MTP mode) + 7498 A789 (MTP mode, with debug) + 749a A789 (PTP mode) + 749b A789 (PTP mode, with debug) + 7604 A760 (Mass Storage mode) + 7605 A760 (Mass Storage mode, with debug) + 760a A760 (MTP mode) + 760b A760 (MTP mode, with debug) + 760c A760 (PTP mode) + 760d A760 (PTP mode, with debug) + 76fc B8000-H (Yoga Tablet 10) (mass storage) + 76fd B8000-H (Yoga Tablet 10) (debug , mass storage) + 76fe B8000-H (Yoga Tablet 10) (MTP) + 76ff B8000-H (Yoga Tablet 10) (debug , MTP) + 7702 B8000-H (Yoga Tablet 10) (PTP) + 7703 B8000-H (Yoga Tablet 10) (debug , PTP) + 7704 B8000-H (Yoga Tablet 10) (USB tether) + 7705 B8000-H (Yoga Tablet 10) (debug , USB tether) + 7706 B8000-H (Yoga Tablet 10) (zerocd) + 7707 B8000-H (Yoga Tablet 10) (debug , zerocd) + 785f TAB 2 A7-10 Tablet + b000 Virtual Keyboard and Mouse + b001 Ethernet + b003 Virtual Keyboard and Mouse / Mass Storage + f003 MEDION LIFETAB X10605 MTP mode +17f4 WaveSense + aaaa Jazz Blood Glucose Meter +17f5 K.K. Rocky +17f6 Unicomp, Inc. + 0709 Model M Keyboard + 0822 Ruffian 6 Keyboard v3 [Model M] +1809 Advantech + 4604 USB-4604 + 4761 USB-4761 Portable Data Acquisition Module +1822 Twinhan + 3201 VisionDTV USB-Ter/HAMA USB DVB-T device cold + 3202 VisionDTV USB-Ter/HAMA USB DVB-T device warm +1831 Gwo Jinn Industries Co., Ltd. +1832 Huizhou Shenghua Industrial Co., Ltd. +183d VIVOphone + 0010 VoiceKey +1843 Vaisala +1849 ASRock Incorporation +184f K2L GmbH + 0012 MOCCA compact +1852 GYROCOM C&C Co., LTD + 7022 Fiio E10 + 7921 Audiotrak ProDigy CUBE + 7922 Audiotrak DR.DAC2 DX [GYROCOM C&C] +1854 Memory Devices Ltd. +185b Compro + 3020 K100 Infrared Receiver + 3082 K100 Infrared Receiver v2 + d000 Compro Videomate DVB-U2000 - DVB-T USB cold + d001 Compro Videomate DVB-U2000 - DVB-T USB warm +1861 Tech Technology Industrial Company +1862 Teridian Semiconductor Corp. +1870 Nexio Co., Ltd + 0001 iNexio Touchscreen controller +1871 Aveo Technology Corp. + 0101 UVC camera (Bresser microscope) + 0141 Camera + 0d01 USB2.0 Camera +1873 Navilock + ee93 EasyLogger +187c Alienware Corporation + 0511 AlienFX Mobile lighting + 0513 Gaming Desktop [Aurora R4] + 0550 LED controller + 0600 Dual Compatible Game Pad +187f Siano Mobile Silicon + 0010 Stallar Board + 0100 Stallar Board + 0200 Nova A + 0201 Nova B + 0202 Nice + 0300 Vega + 0301 VeNice +1892 Vast Technologies, Inc. +1894 Topseed + 5632 Atek Tote Remote + 5641 TSAM-004 Presentation Remote +1897 Evertop Wire Cable Co. +189f 3Shape A/S + 0002 Legato2 3D Scanner +18a4 CSSN + 0001 Snapshell IDR +18a5 Verbatim, Ltd + 0214 Portable Hard Drive + 0216 External Hard Drive + 0218 External Hard Drive + 0224 Store 'n' Go Micro Plus + 0227 Pocket Hard Drive + 022b Portable Hard Drive (Store'n'Go) + 0237 Portable Harddrive + 0243 Flash Drive (Store'n'Go) + 0245 Store'n'Stay + 0302 Flash Drive + 0304 Store 'n' Go + 0408 Store 'n' Go + 4123 Store N Go +18b1 Petalynx + 0037 Maxter Remote Control +18b4 e3C Technologies + 1001 DUTV007 + 1002 EC168 (v5) based USB DVB-T receiver + 1689 DUTV009 + fffa EC168 (v2) based USB DVB-T receiver + fffb EC168 (v3) based USB DVB-T receiver +18b6 Mikkon Technology Limited +18b7 Zotek Electronic Co., Ltd. +18c5 AMIT Technology, Inc. + 0002 CG-WLUSB2GO + 0008 CG-WLUSB2GNR Corega Wireless USB Adapter + 0012 CG-WLUSB10 Corega Wireless USB Adapter +18cd Ecamm + cafe Pico iMage +18d1 Google Inc. + 0001 Onda V972 (storage access) + 0003 Android-powered device using AllWinner Technology SoC + 0006 Onda V972 MTP + 0008 Onda V972 PTP (camera) + 0d02 Celkon A88 + 2d00 Android Open Accessory device (accessory) + 2d01 Android Open Accessory device (accessory + ADB) + 2d02 Android Open Accessory device (audio) + 2d03 Android Open Accessory device (audio + ADB) + 2d04 Android Open Accessory device (accessory + audio) + 2d05 Android Open Accessory device (accessory + audio + ADB) + 4e11 Nexus One + 4e12 Nexus One (debug) + 4e13 Nexus One (tether) + 4e20 Nexus S (fastboot) + 4e21 Nexus S + 4e22 Nexus S (debug) + 4e24 Nexus S (tether) + 4e30 Galaxy Nexus (fastboot) + 4e40 Nexus 7 (fastboot) + 4e41 Nexus 7 (MTP) + 4e42 Nexus 7 (debug) + 4e43 Nexus 7 (PTP) + 4e44 Nexus 7 2012 (PTP) + 4ee0 Nexus/Pixel Device (fastboot) + 4ee1 Nexus/Pixel Device (MTP) + 4ee2 Nexus/Pixel Device (MTP + debug) + 4ee3 Nexus/Pixel Device (tether) + 4ee4 Nexus/Pixel Device (tether+ debug) + 4ee5 Nexus/Pixel Device (PTP) + 4ee6 Nexus/Pixel Device (PTP + debug) + 4ee7 Nexus/Pixel Device (charging + debug) + 4ee8 Nexus/Pixel Device (MIDI) + 4ee9 Nexus/Pixel Device (MIDI + debug) + 5033 Pixel earbuds + 7102 Toshiba Thrive tablet + b004 Pandigital / B&N Novel 9" tablet + d001 Nexus 4 (fastboot) + d002 Nexus 4 (debug) + d00d Xiaomi Mi/Redmi 2 (fastboot) + d109 LG G2x MTP + d10a LG G2x MTP (debug) +18d5 Starline International Group Limited +18d9 Kaba + 01a0 B-Net 91 07 +18dc LKC Technologies, Inc. +18dd Planon System Solutions Inc. + 1000 DocuPen RC800 +18e3 Fitipower Integrated Technology Inc + 7102 Multi Card Reader (Internal) + 9101 All-in-1 Card Reader + 9102 Multi Card Reader + 9512 Webcam +18e8 Qcom + 6144 LR802UA 802.11b Wireless Adapter [ALi M4301AU] + 6196 RT2573 + 6229 RT2573 + 6232 Wireless 802.11g 54Mbps Network Adapter [RTL8187] +18ea Matrox Graphics, Inc. + 0002 DualHead2Go [Analog Edition] + 0004 TripleHead2Go [Digital Edition] +18ec Arkmicro Technologies Inc. + 3118 USB to IrDA adapter [ARK3116T] + 3188 ARK3188 UVC Webcam + 3299 Webcam Carrefour + 3366 Bresser Biolux NV + 5850 CVBS / S-Video Capture Device [UVC] +18ef ELV Elektronik AG + e014 FS20PCE + e015 FS20PCS + e01a Bedien-Anzeige-Terminal +18f8 [Maxxter] + 0f97 Optical Gaming Mouse [Xtrem] + 0f99 Optical gaming mouse + 1142 Optical gaming mouse + 1486 X5s ZEUS Macro Pro Gaming Mouse +18fb Scriptel Corporation + 01c0 ST1501-STN + 01c1 ST1526-STN + 01c2 ST1501-PYJ + 01c3 ST1501B-PYJ + 01c4 ST1501-PUN + 01c5 ST1401-STN + 01c7 ST1526-PYJ + 01c8 ST1501-ECA + 01c9 ST1476-STN + 01cb ST1571-STN + 0200 ST1500 + 0201 ST1550 + 0202 ST1525 + 0204 ST1400 + 0206 ST1475 + 0207 ST1570 +18fd FineArch Inc. +1901 GE Healthcare + 0015 Nemo Tracker +1908 GEMBIRD + 0102 Digital Photo Frame + 0226 MicroSD Card Reader/Writer + 1315 Digital Photo Frame + 1320 DM8261 Flashdisc + 2070 Honk HK-5002 USB Speaker + 2220 Buildwin Media-Player + 2311 Generic UVC 1.00 camera [AppoTech AX2311] +190d Motorola GSG +1914 Alco Digital Devices Limited +1915 Nordic Semiconductor ASA + 000c Wireless Desktop nRF24L01 CX-1766 + 0101 HP Prime Wireless Kit [FOK65AA] (Flash mode) + 2233 Linksys WUSB11 v2.8 802.11b Adapter [Atmel AT76C505] + 2234 Linksys WUSB54G v1 OEM 802.11g Adapter [Intersil ISL3886] + 2235 Linksys WUSB54GP v1 OEM 802.11g Adapter [Intersil ISL3886] + 2236 Linksys WUSB11 v3.0 802.11b Adapter [Intersil PRISM 3] + 7777 Bitcraze Crazyradio (PA) dongle +191c Innovative Technology LTD + 4104 Banknote validator NV-150 +1923 FitLinxx + 0002 Personal SyncPoint +1926 NextWindow + 0003 1900 HID Touchscreen + 0006 1950 HID Touchscreen + 0064 1950 HID Touchscreen + 0065 1950 HID Touchscreen + 0066 1950 HID Touchscreen + 0067 1950 HID Touchscreen + 0068 1950 HID Touchscreen + 0069 1950 HID Touchscreen + 0071 1950 HID Touchscreen + 0072 1950 HID Touchscreen + 0073 1950 HID Touchscreen + 0074 1950 HID Touchscreen + 0075 1950 HID Touchscreen + 0076 1950 HID Touchscreen + 0077 1950 HID Touchscreen + 0078 1950 HID Touchscreen + 0079 1950 HID Touchscreen + 007a 1950 HID Touchscreen + 007e 1950 HID Touchscreen + 007f 1950 HID Touchscreen + 0080 1950 HID Touchscreen + 0081 1950 HID Touchscreen + 0082 1950 HID Touchscreen + 0083 1950 HID Touchscreen + 0084 1950 HID Touchscreen + 0085 1950 HID Touchscreen + 0086 1950 HID Touchscreen + 0087 1950 HID Touchscreen + 0dbf HID Touchscreen + 0dc2 HID Touchscreen +1928 Proceq SA + 0400 Equotip Piccolo +192f Avago Technologies, Pte. + 0000 Mouse + 0416 ADNS-5700 Optical Mouse Controller (3-button) + 0616 ADNS-5700 Optical Mouse Controller (5-button) + 0916 ADNS-2710 Optical Mouse Controller +1930 Shenzhen Xianhe Technology Co., Ltd. +1931 Ningbo Broad Telecommunication Co., Ltd. +1934 Feature Integration Technology Inc. (Fintek) + 0602 F71610 or F71612 Consumer Infrared Receiver/Transceiver + 0702 Integrated Consumer Infrared Receiver/Transceiver + 5168 F71610A or F71612A Consumer Infrared Receiver/Transceiver +1935 Elektron Music Machines + 000d Elektron Digitakt +1938 Meinberg Funkuhren GmbH & Co. KG + 0501 TCR51USB IRIG Time Code Reader + 0502 TCR600USB IRIG Time Code Reader +1941 Dream Link + 8021 WH1080 Weather Station / USB Missile Launcher +1943 Sensoray Co., Inc. + 2250 Model 2250 MPEG and JPEG Capture Card + 2253 Model 2253 Audio/Video Codec Card + 2255 Model 2255 4 Channel Capture Card + 2257 Model 2257 4 Channel Capture Card + 2263 Model 2263 UVC HD Audio/Video Codec Card + a250 Model 2250 MPEG and JPEG Capture Card (cold) + a253 Model 2253 Audio/Video Codec Card (cold) +1949 Lab126, Inc. + 0002 Amazon Kindle + 0004 Amazon Kindle 3/4/Paperwhite + 0006 Amazon Kindle Fire + 0008 Amazon Kindle Fire HD 8.9" + 000a Amazon Kindle Fire 2nd generation (2012) + 0331 Kindle Fire HD 8 (2018) + 0417 Amazon Zukey; clone of Yubikey 4 OTP+U2F + 0800 Fire Phone +194f PreSonus Audio Electronics, Inc. + 0101 AudioBox 22 VSL + 0102 AudioBox 44 VSL + 0103 AudioBox 1818 VSL + 0201 FaderPort + 0301 AudioBox +1951 Hyperstone AG +1953 Ironkey Inc. + 0202 S200 2GB Rev. 1 +1954 Radiient Technologies +195d Itron Technology iONE + 2030 Func KB-460 Gaming Keyboard + 7002 Libra-Q11 IR remote + 7006 Libra-Q26 / 1.0 Remote + 7777 Scorpius wireless keyboard + 7779 Scorpius-P20MT +1963 IK Multimedia + 0005 iRig KEYS + 0046 UNO Synth +1965 Uniden Corporation + 0016 HomePatrol-1 + 0018 UBC125XLT + 001a BCD436HP Scanner +1967 CASIO HITACHI Mobile Communications Co., Ltd. +196b Wispro Technology Inc. +1970 Dane-Elec Corp. USA + 0000 Z Mate 16GB +1973 Spectralink Corporation + 0002 Pivot recovery + 0003 Pivot Media Transfer Protocol + 0004 Pivot Media Transfer Protocol +1975 Dongguan Guneetal Wire & Cable Co., Ltd. +1976 Chipsbrand Microelectronics (HK) Co., Ltd. + 1307 microSD Card Reader + 6025 CBM2090 Flash Drive +1977 T-Logic + 0111 TL203 MP3 Player and Voice Recorder +197d Leuze electronic + 0222 BCL 508i +1980 Storage Appliance Corporation + 0808 Clickfree C2 Slimline (527SE) +1989 Nuconn Technology Corp. +198f Beceem Communications Inc. + 0210 BCS200 WiMAX Adapter + 0220 BCSM250 WiMAX Adapter +1990 Acron Precision Industrial Co., Ltd. +1995 Trillium Technology Pty. Ltd. + 3202 REC-ADPT-USB (recorder) + 3203 REC-A-ADPT-USB (recorder) +1996 PixeLINK + 3010 Camera Release 4 + 3011 OEM Camera + 3012 e-ImageData Corp. ScanPro +1997 Shenzhen Riitek Technology Co., Ltd + 0409 wireless mini keyboard with touchpad + 2433 wireless mini keyboard with touchpad +199b MicroStrain, Inc. + 3065 3DM-GX3-25 Orientation Sensor +199e The Imaging Source Europe GmbH + 8101 DFx 21BU04 Camera + 8457 DFK AFU130-L53 camera +199f Benica Corporation +19a5 HARRIS Corp. + 0004 Remote NDIS Network Device + 0012 RF-7800S Secure Personal Radio + 0401 Mass Storage Device + 0402 Falcon III RF-7800V family RNDIS +19a8 Biforst Technology Inc. +19ab Bodelin + 1000 ProScope HR +19af S Life + 6611 Celestia VoIP Phone +19b2 Batronix + 0010 BX32 Batupo + 0011 BX32P Barlino + 0012 BX40 Bagero + 0013 BX48 Batego +19b4 Celestron + 0002 SkyScout Personal Planetarium + 0101 Handheld Digital Microscope 44302 +19b5 B & W Group +19b6 Infotech Logistic, LLC +19b9 Data Robotics + 4b10 Drobo + 8d20 Drobo Elite +19c2 Futuba + 6a11 MDM166A Fluorescent Display +19ca Mindtribe + 0001 Sandio 3D HID Mouse +19cf Parrot SA + 0001 MiniKit Slim handsfree car kit in firmware update mode +19d1 BYD +19d2 ZTE WCDMA Technologies MSM + 0001 CDMA Wireless Modem + 0002 MF632/ONDA ET502HS/MT505UP + 0007 TU25 WiMAX Adapter [Beceem BCS200] + 0017 MF669 + 0031 MF110/MF627/MF636 + 0037 ONDA MC503HSA + 0039 MF100 + 0063 K3565-Z HSDPA + 0064 MF627 AU + 0083 MF190 + 0103 MF112 + 0104 K4505-Z + 0117 MF667 + 0146 MF 195E (HSPA+ Modem) + 0167 MF820 4G LTE + 0172 AX226 WIMAX MODEM (After Modeswitch) + 0325 LTE4G O2 ZTE MF821D LTE/UMTS/GSM Modem/Networkcard + 0326 LTE4G O2 ZTE MF821D LTE/UMTS/GSM Modem/Networkcard + 0501 Lever Cell Phone Model Z936L + 1001 K3805-Z vodafone WCDMA/GSM Modem - storage mode (made by ZTE) + 1002 K3805-Z vodafone WCDMA/GSM Modem/Networkcard (made by ZTE) + 1008 K3570-Z + 1010 K3571-Z + 1017 K5006-Z vodafone LTE/UMTS/GSM Modem/Networkcard + 1018 K5006-Z vodafone LTE/UMTS/GSM Modem/Networkcard + 1203 MF691 [ T-Mobile webConnect Rocket 2.0] + 1217 MF652 + 1218 MF652 + 1270 MF667 + 2000 MF627/MF628/MF628+/MF636+ HSDPA/HSUPA + fff2 Gobi Wireless Modem (QDL mode) + fff3 Gobi Wireless Modem +19db KFI Printers + 02f1 NAUT324C +19e1 WeiDuan Electronic Accessory (S.Z.) Co., Ltd. +19e8 Industrial Technology Research Institute +19ef Pak Heng Technology (Shenzhen) Co., Ltd. +19f7 RODE Microphones + 0001 Podcaster +19fa Gampaq Co.Ltd + 0607 GAME CONTROLLER + 0703 Steering Wheel +19fd MTI Instruments Inc. +19ff Dynex + 0102 1.3MP Webcam + 0201 Rocketfish Wireless 2.4G Laser Mouse + 0220 RF-HDWEBLT RocketFish HD WebCam + 0238 DX-WRM1401 Mouse + 0239 Bluetooth 4.0 Adapter [Broadcom, 1.12, BCM20702A0] +1a08 Bellwood International, Inc. +1a0a USB-IF non-workshop + badd USB OTG Compliance test device +1a12 KES Co., Ltd. +1a1d Veho + 0407 Mimi WiFi speakers +1a25 Amphenol East Asia Ltd. +1a2a Seagate Branded Solutions +1a2c China Resource Semico Co., Ltd + 0021 Keyboard + 0024 Multimedia Keyboard + 2124 Keyboard + 2d23 Keyboard + 427c Backlit Keyboard [Cougar Vantar] +1a32 Quanta Microsystems, Inc. + 0304 802.11n Wireless LAN Card +1a34 ACRUX + 0802 Gamepad +1a36 Biwin Technology Ltd. +1a40 Terminus Technology Inc. + 0101 Hub + 0201 FE 2.1 7-port Hub +1a41 Action Electronics Co., Ltd. +1a44 VASCO Data Security International + 0001 Digipass 905 SmartCard Reader +1a4a Silicon Image +1a4b SafeBoot International B.V. +1a5a Tandberg Data +1a61 Abbott Diabetes Care + 3410 CoPilot System Cable + 3650 FreeStyle Libre + 3850 FreeStyle Optium/Precision Neo + 3950 FreeStyle Libre 2 +1a64 Mastervolt + 0000 MasterBus Link +1a6a Spansion Inc. +1a6d SamYoung Electronics Co., Ltd +1a6e Global Unichip Corp. +1a6f Sagem Orga GmbH +1a72 Physik Instrumente + 1008 E-861 PiezoWalk NEXACT Controller +1a79 Bayer Health Care LLC + 6002 Contour + 6210 Contour Next Link 2.4 glucometer + 6300 Contour next link + 7410 Contour Next + 7800 Contour Plus One +1a7b Lumberg Connect GmbH & Co. KG +1a7c Evoluent + 0068 VerticalMouse 3 + 0168 VerticalMouse 3 Wireless + 0191 VerticalMouse 4 + 0195 VerticalMouse C Wireless +1a7e Meltec Systementwicklung + 1001 UFT75, UT150, UT60 + 1003 Thermostick +1a81 Holtek Semiconductor, Inc. + 1004 Wireless Dongle 2.4 GHZ HT82D40REW + 1701 Wireless dongle + 2004 Keyboard + 2203 Laser Gaming mouse + 2204 Optical Mouse + 2205 Laser Mouse + 4001 Keyboard +1a86 QinHeng Electronics + 5512 CH341 in EPP/MEM/I2C mode, EPP/I2C adapter + 5523 CH341 in serial mode, usb to serial port converter + 5584 CH341 in parallel mode, usb to printer port converter + 7522 CH340 serial converter + 7523 CH340 serial converter + 752d CH345 MIDI adapter + 7584 CH340S + e008 HID-based serial adapter +1a89 Dynalith Systems Co., Ltd. +1a8b SGS Taiwan Ltd. +1a8d BandRich, Inc. + 1002 BandLuxe 3.5G HSDPA Adapter + 1009 BandLuxe 3.5G HSPA Adapter + 100d 4G LTE adapter +1a98 Leica Camera AG +1aa4 Data Drive Thru, Inc. +1aa5 UBeacon Technologies, Inc. +1aa6 eFortune Technology Corp. +1aab Silvercreations Software AG + 7736 sceye (Gen 2) + 7737 sceye (Gen 3) + 7738 sceye (Gen 4, 3 Mpix) + 7750 sceyeS (Gen 5, 5 MPix) +1aad KeeTouch + 0001 Touchscreen +1ab1 Rigol Technologies + 04b0 DS6000 SERIES + 04be DS4000 SERIES + 04ce DS1xx4Z/MSO1xxZ series + 0588 DS1000 SERIES +1ab2 Allied Vision + 0001 Vision device +1acb Salcomp Plc +1acc Midiplus Co, Ltd. + 0103 AudioLink plus 4x4 2.9.28 +1ad1 Desay Wire Co., Ltd. +1ad4 APS + 0002 KM290-HRS +1adb Schweitzer Engineering Laboratories, Inc + 0001 C662 Serial Cable + 0003 CDC Ethernet Gadget +1ae4 ic-design Reinhard Gottinger GmbH +1ae7 X-TENSIONS + 0381 VS-DVB-T 380U (af9015 based) + 0525 X-Tensions ISDN TA XC-525 [HFC-S USB] + 2001 SpeedLink Snappy Mic webcam (SL-6825-SBK) + 9003 SpeedLink Vicious And Devine Laplace webcam, white (VD-1504-SWT) + 9004 SpeedLink Vicious And Devine Laplace webcam, black (VD-1504-SBK) +1aed High Top Precision Electronic Co., Ltd. +1aef Conntech Electronic (Suzhou) Corporation +1af1 Connect One Ltd. +1af3 Kingsis Technology Corporation + 0001 ZOWIE Gaming mouse +1afe A. Eberle GmbH & Co. KG + 0001 PQ Box 100 +1b04 Meilhaus Electronic GmbH + 0630 ME-630 + 0940 ME-94 + 0950 ME-95 + 0960 ME-96 + 1000 ME-1000 + 100a ME-1000 + 100b ME-1000 + 1400 ME-1400 + 140a ME-1400A + 140b ME-1400B + 140c ME-1400C + 140d ME-1400D + 140e ME-1400E + 14ea ME-1400EA + 14eb ME-1400EB + 1604 ME-1600/4U + 1608 ME-1600/8U + 160c ME-1600/12U + 160f ME-1600/16U + 168f ME-1600/16U8I + 4610 ME-4610 + 4650 ME-4650 + 4660 ME-4660 + 4661 ME-4660I + 4662 ME-4660 + 4663 ME-4660I + 4670 ME-4670 + 4671 ME-4670I + 4672 ME-4670S + 4673 ME-4670IS + 4680 ME-4680 + 4681 ME-4680I + 4682 ME-4680S + 4683 ME-4680IS + 6004 ME-6000/4 + 6008 ME-6000/8 + 600f ME-6000/16 + 6014 ME-6000I/4 + 6018 ME-6000I/8 + 601f ME-6000I/16 + 6034 ME-6000ISLE/4 + 6038 ME-6000ISLE/8 + 603f ME-6000ISLE/16 + 6044 ME-6000/4/DIO + 6048 ME-6000/8/DIO + 604f ME-6000/16/DIO + 6054 ME-6000I/4/DIO + 6058 ME-6000I/8/DIO + 605f ME-6000I/16/DIO + 6074 ME-6000ISLE/4/DIO + 6078 ME-6000ISLE/8/DIO + 607f ME-6000ISLE/16/DIO + 6104 ME-6100/4 + 6108 ME-6100/8 + 610f ME-6100/16 + 6114 ME-6100I/4 + 6118 ME-6100I/8 + 611f ME-6100I/16 + 6134 ME-6100ISLE/4 + 6138 ME-6100ISLE/8 + 613f ME-6100ISLE/16 + 6144 ME-6100/4/DIO + 6148 ME-6100/8/DIO + 614f ME-6100/16/DIO + 6154 ME-6100I/4/DIO + 6158 ME-6100I/8/DIO + 615f ME-6100I/16/DIO + 6174 ME-6100ISLE/4/DIO + 6178 ME-6100ISLE/8/DIO + 617f ME-6100ISLE/16/DIO + 6259 ME-6200I/9/DIO + 6359 ME-6300I/9/DIO + 810a ME-8100A + 810b ME-8100B + 820a ME-8200A + 820b ME-8200B +1b0e BLUTRONICS S.r.l. + 1078 BLUDRIVE II CCID + 1079 BLUDRIVE II CCID + 1080 WRITECHIP II CCID +1b12 Eventide + 0011 ModFactor +1b1c Corsair + 0890 Flash Padlock + 0a00 SP2500 Speakers + 0a60 Vengeance K60 Keyboard + 0c04 Link Cooling Node + 0c06 RM-Series C-Link Adapter + 0c0a Hydro Series H115i Liquid CPU Cooler + 0c0b Lighting Node Pro + 0c0c Lighting Node Loader + 0c22 iCUE H150i RGB PRO XT Liquid CPU Cooler + 1a01 Flash Voyager GT + 1a03 Voyager 3.0 + 1a09 Voyager GT 3.0 + 1a0a Survivor Stealth Flash Drive + 1a0b Flash Voyager LS + 1a0e Voyager GTX + 1a14 Voyager Vega + 1a15 Voyager Slider Flash Drive + 1a90 Flash Voyager GT + 1ab1 Voyager + 1b04 Raptor K50 Keyboard + 1b07 Vengeance K65 Gaming Keyboard + 1b08 Vengeance K95 Keyboard + 1b09 Vengeance K70R keyboard + 1b11 K95 RGB Mechanical Gaming Keyboard + 1b13 Vengeance K70RGB keyboard + 1b20 STRAFE RGB Gaming Keyboard + 1b2d K95 RGB Platinum Keyboard [RGP0056] + 1b2e Corsair Corsair Gaming M65 Pro RGB Mouse + 1b2f Sabre RGB [CH-9303011-XX] + 1b3d Corsair Corsair Gaming K55 RGB Keyboard + 1b5e Harpoon Wireless Mouse + 1b65 Harpoon Wireless Dongle + 1c00 Controller for Corsair Link + 1c02 AX1500i Power Supply + 1c05 HX750i Power Supply + 1c07 HX1000i Power Supply + 1c08 HX1200i Power Supply + 1c0b RM750i Power Supply + 1c0c RM850i Power Supply + 1c1a Corsair CORSAIR Lighting Node CORE +1b1e General Imaging / General Electric + 1003 A1250 +1b1f eQ-3 Entwicklung GmbH + c00f HM-CFG-USB/HM-CFG-USB-2 [HomeMatic Configuration adapter] + c020 HmIP-RFUSB +1b20 MStar Semiconductor, Inc. +1b22 WiLinx Corp. +1b24 Telegent Systems, Inc. + 4001 TLG2300 Hybrid TV Device +1b26 Cellex Power Products, Inc. +1b27 Current Electronics Inc. +1b28 NAVIsis Inc. +1b32 Ugobe Life Forms, Inc. + 0064 Pleo robotic dinosaur +1b36 ViXS Systems, Inc. +1b3b iPassion Technology Inc. + 2933 PC Camera/Webcam controller + 2935 PC Camera/Webcam controller + 2936 PC Camera/Webcam controller + 2937 PC Camera/Webcam controller + 2938 PC Camera/Webcam controller + 2939 PC Camera/Webcam controller + 2950 PC Camera/Webcam controller + 2951 PC Camera/Webcam controller + 2952 PC Camera/Webcam controller + 2953 PC Camera/Webcam controller + 2955 PC Camera/Webcam controller + 2956 PC Camera/Webcam controller + 2957 PC Camera/Webcam controller + 2958 PC Camera/Webcam controller + 2959 PC Camera/Webcam controller + 2960 PC Camera/Webcam controller + 2961 PC Camera/Webcam controller + 2962 PC Camera/Webcam controller + 2963 PC Camera/Webcam controller + 2965 PC Camera/Webcam controller + 2966 PC Camera/Webcam controller + 2967 PC Camera/Webcam controller + 2968 PC Camera/Webcam controller + 2969 PC Camera/Webcam controller +1b3f Generalplus Technology Inc. + 0c52 808 Camera #9 (mass storage mode) + 2002 808 Camera #9 (web-cam mode) + 2003 GPD6000 [Digital MP3 Player] +1b47 Energizer Holdings, Inc. + 0001 CHUSB Duo Charger (NiMH AA/AAA USB smart charger) +1b48 Plastron Precision Co., Ltd. +1b52 ARH Inc. + 2101 FXMC Neural Network Controller + 2102 FXMC Neural Network Controller V2 + 2103 FXMC Neural Network Controller V3 + 4101 Passport Reader CLR device + 4201 Passport Reader PRM device + 4202 Passport Reader PRM extension device + 4203 Passport Reader PRM DSP device + 4204 Passport Reader PRMC device + 4205 Passport Reader CSHR device + 4206 Passport Reader PRMC V2 device + 4301 Passport Reader MRZ device + 4302 Passport Reader MRZ DSP device + 4303 Passport Reader CSLR device + 4401 Card Reader + 4501 Passport Reader RFID device + 4502 Passport Reader RFID AIG device + 6101 Neural Network Controller + 6202 Fingerprint Reader device + 6203 Fingerprint Scanner device + 8101 Camera V1 + 8102 Recovery / Camera V2 + 8103 Camera V3 +1b59 K.S. Terminals Inc. +1b5a Chao Zhou Kai Yuan Electric Co., Ltd. +1b65 The Hong Kong Standards and Testing Centre Ltd. +1b71 Fushicai + 0050 Encore ENUTV-4 Analog TV Tuner + 3002 USBTV007 Video Grabber [EasyCAP] +1b72 ATERGI TECHNOLOGY CO., LTD. +1b73 Fresco Logic + 1000 xHC1 Controller +1b75 Ovislink Corp. + 3072 AirLive WN-360USB adapter + 8171 WN-370USB 802.11bgn Wireless Adapter [Realtek RTL8188SU] + 8187 AirLive WL-1600USB 802.11g Adapter [Realtek RTL8187L] + 9170 AirLive X.USB 802.11abgn [Atheros AR9170+AR9104] + a200 AirLive WN-200USB wireless 11b/g/n dongle +1b76 Legend Silicon Corp. +1b80 Afatech + c810 MC810 [af9015] + d393 DVB-T receiver [RTL2832U] + d396 UB396-T [RTL2832U] + d397 DVB-T receiver [RTL2832U] + d398 DVB-T receiver [RTL2832U] + d700 FM Radio SnapMusic Mobile 700 (FM700) + e297 Conceptronic DVB-T CTVDIGRCU V3.0 + e302 CVBS / S-Video Capture Device [Pinnacle Dazzle / UB315-E] + e34c UB435-Q ATSC TV Stick + e383 DVB-T UB383-T [af9015] + e385 DVB-T UB385-T [af9015] + e386 DVB-T UB385-T [af9015] + e399 DVB-T KWorld PlusTV 399U [af9015] + e39a DVB-T395U [af9015] + e39b DVB-T395U [af9015] + e401 Sveon STV22 DVB-T [af9015] + e409 IT9137FN Dual DVB-T [KWorld UB499-2T] +1b86 Dongguan Guanshang Electronics Co., Ltd. +1b88 ShenMing Electron (Dong Guan) Co., Ltd. +1b8c Altium Limited +1b8d e-MOVE Technology Co., Ltd. +1b8e Amlogic, Inc. +1b8f MA LABS, Inc. +1b96 N-Trig + 0001 Duosense Transparent Electromagnetic Digitizer +1b98 YMax Communications Corp. +1b99 Shenzhen Yuanchuan Electronic +1ba1 JINQ CHERN ENTERPRISE CO., LTD. +1ba2 Lite Metals & Plastic (Shenzhen) Co., Ltd. +1ba4 Ember Corporation + 0001 InSight USB Link + 0002 EM358 Virtual COM Port +1ba6 Abilis Systems +1ba8 China Telecommunication Technology Labs +1bad Harmonix Music + 0002 Rock Band Guitar for Xbox 360 + 0003 Rock Band Drum Kit for Xbox 360 + 0130 Ion Drum Rocker for Xbox 360 + 028e Controller + 3330 Rock Band 3 Keyboard wii interface + f016 Controller + f018 Street Fighter IV SE FightStick for Xbox 360 + f019 BrawlStick for Xbox 360 + f021 Ghost Recon Future Soldier Gamepad for Xbox 360 + f023 MLG Pro Circuit Controller for Xbox 360 + f025 Call of Duty Controller for Xbox 360 + f027 FPS Pro Controller for Xbox 360 + f028 Street Fighter IV FightPad for Xbox 360 + f02e FightPad + f030 MC2 MicroCON Racing Wheel for Xbox 360 + f036 MicroCON Gamepad Pro for Xbox 360 + f038 Street Fighter IV FightStick TE for Xbox 360 + f039 Marvel VS Capcom 2 Tournament Stick for Xbox 360 + f03a Street Fighter X Tekken FightStick Pro for Xbox 360 + f03d Street Fighter IV Arcade Stick TE for Xbox 360 + f03e MLG Arcade FightStick TE for Xbox 360 + f03f Soulcalibur FightStick for Xbox 360 + f042 Arcade FightStick TE S+ for Xbox 360 + f080 FightStick TE2 for Xbox 360 + f501 Horipad EX2 Turbo for Xbox 360 + f502 Real Arcade Pro.VX SA for Xbox 360 + f503 Fighting Stick VX for Xbox 360 + f504 Real Arcade Pro.EX + f505 Fighting Stick EX2B for Xbox 360 + f506 Real Arcade Pro.EX Premium VLX for Xbox 360 + f900 Controller + f901 GameStop Controller + f903 Tron Controller for Xbox 360 + f904 PDP Versus Fighting Pad for Xbox 360 + f906 Mortal Kombat FightStick for Xbox 360 + f907 Afterglow Gamepad + fa01 Gamepad + fd00 Razer Onza Tournament Edition + fd01 Razer Onza Classic Edition +1bae Vuzix Corporation + 0002 VR920 Immersive Eyewear +1bbb T & A Mobile Phones + 0003 Alcatel one touch 4030D modem connection + 0017 HSPA Data Card + 007a Alcatel OneTouch (firmware upgrade mode) + 011e Alcatel One Touch L100V / Telekom Speedstick LTE II + 0169 Alcatel ONE TOUCH Fierce + 0195 Alcatel OneTouch L850V / Telekom Speedstick LTE + a00e Vodafone Smart Tab 4G + f000 Alcatel OneTouch (mass storage mode) + f017 Alcatel One Touch L100V / Telekom Speedstick LTE II +1bbd Videology Imaging Solutions, Inc. + 0060 1.3MP Mono Camera + 0066 1.3MP Mono Camera + 0067 1.3MP Mono Camera +1bc0 Beijing Senseshield Technology Co.,Ltd. + 0013 Elitee-e + 0014 Elite4 + 0020 iToken + 0021 Mikey + 0051 Elite5 + 0055 Elite5 v3.x + 485d EliteIV +1bc4 Ford Motor Co. +1bc5 AVIXE Technology (China) Ltd. +1bc7 Telit Wireless Solutions + 0020 HE863 + 0021 HE910 + 0022 GE910-QUAD + 0023 HE910-D ECM + 0032 LE910-EU V2 + 1003 UC864-E + 1004 UC864-G + 1005 CC864-DUAL + 1006 CC864-SINGLE + 1010 DE910-DUAL + 1011 CE910-DUAL + 1012 UE910 V2 + 1101 ME910C1 + 110a ME310 + 1200 LE920 (old firmware) + 1201 LE910 / LE920 +1bce Contac Cable Industrial Limited +1bcf Sunplus Innovation Technology Inc. + 0005 Optical Mouse + 0007 Optical Mouse + 053a Targa Silvercrest OMC807-C optische Funkmaus + 05c5 SPRF2413A [2.4GHz Wireless Keyboard/Mouse Receiver] + 05cf Micro keyboard & mouse receiver + 08a0 Gaming mouse [Philips SPK9304] + 0c31 SPIF30x Serial-ATA bridge + 2281 SPCA2281 Web Camera + 2880 Dell HD Webcam + 2883 Asus Webcam + 2885 ASUS Webcam + 2888 HP Universal Camera + 2895 Dell Integrated Webcam + 28a2 Dell Integrated Webcam + 28a6 DELL XPS Integrated Webcam + 28ae Laptop Integrated Webcam HD + 28bd Dell Integrated HD Webcam + 2985 Laptop Integrated Webcam HD + 2b83 Laptop Integrated Webcam FHD + 2b91 Dell E5570 integrated webcam + 2b97 Laptop Integrated Webcam FHD + 2c6e Laptop Integrated WebCam HD +1bd0 Hangzhou Riyue Electronic Co., Ltd. +1bd5 BG Systems, Inc. +1bda University Of Southampton + 0010 Power Board v4 Rev B + 0011 Student Robotics SBv4B +1bde P-TWO INDUSTRIES, INC. +1bef Shenzhen Tongyuan Network-Communication Cables Co., Ltd +1bf0 RealVision Inc. +1bf5 Extranet Systems Inc. +1bf6 Orient Semiconductor Electronics, Ltd. +1bfd TouchPack + 1268 Touch Screen + 1368 Touch Screen + 1568 Capacitive Touch Screen + 1668 IR Touch Screen + 1688 Resistive Touch Screen + 2968 Touch Screen + 5968 Touch Screen + 6968 Touch Screen +1c02 Kreton Corporation +1c04 QNAP System Inc. + 2074 ASM1074 High-Speed hub + 3074 ASM1074 SuperSpeed hub +1c05 Shenxhen Stager Electric + ea75 G540 Programmer +1c0c Ionics EMS, Inc. + 0102 Plug Computer +1c0d Relm Wireless +1c10 Lanterra Industrial Co., Ltd. +1c11 Input Club Inc. + b04d ErgoDox Infinity +1c13 ALECTRONIC LIMITED +1c1a Datel Electronics Ltd. + 0100 Action Replay DS "3DS/DSi/DS/Lite Compatible" +1c1b Volkswagen of America, Inc. +1c1f Goldvish S.A. +1c20 Fuji Electric Device Technology Co., Ltd. +1c21 ADDMM LLC +1c22 ZHONGSHAN CHIANG YU ELECTRIC CO., LTD. +1c26 Shanghai Haiying Electronics Co., Ltd. +1c27 HuiYang D & S Cable Co., Ltd. +1c28 PMD Technologies + c003 CamCube + c004 CamBoard + c005 ConceptCam + c006 CamBoard 22 + c007 CamBoard nano + c008 CamBoard mod + c009 CamBoard plus + c00a DigiCam + c00d CamBoard pico LDD + c00f CamBoard pico +1c29 Elster GmbH + 0001 ExMFE5 Simulator + 10fc enCore device +1c31 LS Cable Ltd. +1c34 SpringCard + 7241 Prox'N'Roll RFID Scanner +1c37 Authorizer Technologies, Inc. + 6190 U2F Fido-compliant cryptotoken +1c3d NONIN MEDICAL INC. +1c3e Wep Peripherals +1c40 EZPrototypes + 0533 TiltStick + 0534 i2c-tiny-usb interface + 0535 glcd2usb interface + 0536 Swiss ColorPAL + 0537 MIST Board +1c49 Cherng Weei Technology Corp. +1c4b Geratherm Medical AG + 026f Spirostik +1c4f SiGma Micro + 0002 Keyboard TRACER Gamma Ivory + 0003 HID controller + 000e Genius KB-120 Keyboard + 0026 Keyboard + 0032 Optical Mouse with Scroll Wheel + 0034 XM102K Optical Wheel Mouse + 0063 Touchpad (integrated in detachable keyboard of Chuwi SurBook) + 0065 Optical Wheel Mouse [Rapoo N1130] + 3000 Micro USB Web Camera + 3002 WebCam SiGma Micro +1c57 Zalman Tech Co., Ltd. + 1e45 FPSGUN FG1000 Mouse +1c6b Philips & Lite-ON Digital Solutions Corporation + a220 DVD Writer Slimtype eSAU108 + a222 DVD Writer Slimtype eTAU108 + a223 DVD Writer Slimtype eUAU108 +1c6c Skydigital Inc. +1c71 Humanware Inc + c004 Braille Note Apex (braille terminal mode) +1c73 AMT + 861f Anysee E30 USB 2.0 DVB-T Receiver +1c75 Arturia + 0288 KeyStep +1c77 Kaetat Industrial Co., Ltd. +1c78 Datascope Corp. +1c79 Unigen Corporation +1c7a LighTuning Technology Inc. + 0577 Fingerprint Sensor + 0603 ES603 Swipe Fingerprint Sensor + 0801 Fingerprint Reader +1c7b LUXSHARE PRECISION INDUSTRY (SHENZHEN) CO., LTD. +1c82 Atracsys + 0200 spryTrac +1c83 Schomaecker GmbH + 0001 RS150 V2 + 0002 RFID card reader + 0003 Communicator + 0005 Mobile RFID Reader +1c87 2N TELEKOMUNIKACE a.s. +1c88 Somagic, Inc. + 0007 SMI Grabber (EasyCAP DC60+ clone) (no firmware) [SMI-2021CBE] + 003c SMI Grabber (EasyCAP DC60+ clone) [SMI-2021CBE] +1c89 HONGKONG WEIDIDA ELECTRON LIMITED +1c8e ASTRON INTERNATIONAL CORP. +1c98 ALPINE ELECTRONICS, INC. +1c9e OMEGA TECHNOLOGY + 6061 WL-72B 3.5G MODEM +1ca0 ACCARIO Inc. +1ca1 Symwave + 18ab SATA bridge +1cac Kinstone + a332 C8 Webcam + b288 C18 Webcam +1cb3 Aces Electronic Co., Ltd. +1cb4 OPEX CORPORATION +1cb6 IdeaCom Technology Inc. + 6681 IDC6681 +1cbe Luminary Micro Inc. + 0002 CDC serial port [TivaWare] + 00fd In-Circuit Debug Interface + 00ff Stellaris ROM DFU Bootloader + 0166 CANAL USB2CAN + 0240 McGill Robotics TM4C Microcontroller +1cbf FORTAT SKYMARK INDUSTRIAL COMPANY +1cc0 PlantSense +1cca NextWave Broadband Inc. +1ccd Bodatong Technology (Shenzhen) Co., Ltd. +1cd4 adp corporation +1cd5 Firecomms Ltd. +1cd6 Antonio Precise Products Manufactory Ltd. +1cde Telecommunications Technology Association (TTA) +1cdf WonTen Technology Co., Ltd. +1ce0 EDIMAX TECHNOLOGY CO., LTD. +1ce1 Amphenol KAE +1cf1 Dresden Elektronik + 0001 Sensor Terminal Board + 0004 Wireless Handheld Terminal + 0017 deRFusbSniffer 2.4 GHz + 0018 deRFusb24E001 + 0019 deRFusb14E001 + 001a deRFusb23E00 + 001b deRFusb13E00 + 001c deRFnode + 001d deRFnode / gateway + 0022 deUSB level shifter + 0023 deRFusbSniffer Sub-GHz + 0025 deRFusb23E06 + 0027 deRFusb13E06 + 0030 ZigBee gateway [ConBee II] +1cfc ANDES TECHNOLOGY CORPORATION +1cfd Flextronics Digital Design Japan, LTD. +1d03 iCON + 0028 iCreativ MIDI Controller +1d07 Solid-Motion +1d08 NINGBO HENTEK DRAGON ELECTRONICS CO., LTD. +1d09 TechFaith Wireless Technology Limited + 1026 HSUPA Modem FLYING-LARK46-VER0.07 [Flying Angel] +1d0a Johnson Controls, Inc. The Automotive Business Unit +1d0b HAN HUA CABLE & WIRE TECHNOLOGY (J.X.) CO., LTD. +1d0d TDKMedia + 0214 Trans-It Drive +1d0f Sonix Technology Co., Ltd. +1d14 ALPHA-SAT TECHNOLOGY LIMITED +1d17 C-Thru Music Ltd. + 0001 AXiS-49 Harmonic Table MIDI Keyboard +1d19 Dexatek Technology Ltd. + 1101 DK DVB-T Dongle + 1102 DK mini DVB-T Dongle + 1103 DK 5217 DVB-T Dongle + 1104 MSI DigiVox Micro HD + 6105 Video grabber + 610a Video grabber + 8202 DK DVBC/T DONGLE +1d1f Diostech Co., Ltd. +1d20 SAMTACK INC. +1d27 ASUS + 0601 Xtion +1d34 Dream Cheeky + 0001 Fidget + 0002 Fidget (Basketball) + 0003 Fidget (Golf Ball) + 0004 Webmail Notifier + 0008 button + 000a Mailbox Friends Alert + 000d Big Red Button + 0013 LED Message Board + 0020 Stress Ball +1d45 Touch + 1d45 Foxlink Optical touch sensor + 459d BenQ F5 + 465c Harrier Mini by EE +1d4d PEGATRON CORPORATION + 0002 Ralink RT2770/2720 802.11b/g/n Wireless LAN Mini-USB Device + 000c Ralink RT3070 802.11b/g/n Wireless Lan USB Device + 000e Ralink RT3070 802.11b/g/n Wireless Lan USB Device +1d50 OpenMoko, Inc. + 1db5 IDBG (DFU) + 1db6 IDBG + 5117 Neo1973/FreeRunner kernel usbnet (g_ether, CDC Ethernet) mode + 5118 Neo1973/FreeRunner Debug board (V2+) + 5119 Neo1973/FreeRunner u-boot cdc_acm serial port + 511a HXD8 u-boot usbtty CDC ACM Mode + 511b SMDK2440 u-boot usbtty CDC ACM mode + 511c SMDK2443 u-boot usbtty CDC ACM mode + 511d QT2410 u-boot usbtty CDC ACM mode + 5120 Neo1973/FreeRunner u-boot usbtty generic serial + 5121 Neo1973/FreeRunner kernel mass storage (g_storage) mode + 5122 Neo1973/FreeRunner kernel cdc_ether USB network + 5123 Neo1973/FreeRunner internal USB CSR4 module + 5124 Neo1973/FreeRunner Bluetooth Device ID service + 5300 Rockbox + 530e iriver H10 20GB (Rockbox) + 530f iriver H10 5/6GB (Rockbox) + 5314 Apple iPod Color/Photo (Rockbox) + 5315 Apple iPod Nano 1g (Rockbox) + 5316 Apple iPod Video (Rockbox) + 5318 Apple iPod 4g Grayscale (Rockbox) + 5319 Apple iPod Mini 1g (Rockbox) + 531a Apple iPod Mini 2g (Rockbox) + 531c Apple iPod Nano 2g (Rockbox) + 531d Apple iPod Classic/6G (Rockbox) + 5321 Cowon D2 (Rockbox) + 5329 Toshiba Gigabeat S (Rockbox) + 5332 Sandisk Sansa e200 series (Rockbox) + 5334 Sandisk Sansa c200 series (Rockbox) + 5337 Sandisk Sansa Clip (Rockbox) + 5338 Sandisk Sansa e200v2 series (Rockbox) + 5339 Sandisk Sansa m200 v4 series (Rockbox) + 533a Sandisk Sansa Fuze (Rockbox) + 533b Sandisk Sansa c200v2 series (Rockbox) + 533c Sandisk Sansa Clipv2 (Rockbox) + 533e Sandisk Sansa Clip+ (Rockbox) + 533f Sandisk Sansa Fuze v2 (Rockbox) + 5340 Sandisk Sansa Fuze+ (Rockbox) + 5341 Sandisk Sansa Zip (Rockbox) + 5342 Sandisk Sansa Connect (Rockbox) + 5346 Olympus M:Robe 500i (Rockbox) + 5347 Olympus m:robe MR-100 (Rockbox) + 5359 Creative Zen X-Fi Style (Rockbox) + 535d Creative Zen X-Fi2 (Rockbox) + 535e Creative Zen X-Fi3 (Rockbox) + 5360 Creative Zen X-Fi (Rockbox) + 5361 Creative ZEN Mozaic (Rockbox) + 5362 Creative Zen (Rockbox) + 5364 Philips GoGear SA9200 (Rockbox) + 5365 Philips GoGear HDD16x0 (Rockbox) + 5366 Philips GoGear HDD63x0 (Rockbox) + 5378 Onda VX747 (Rockbox) + 5379 Onda VX767 (Rockbox) + 537b Onda VX777 (Rockbox) + 538c Samsung YH-820 (Rockbox) + 538d Samsung YH-920 (Rockbox) + 538e Samsung YH-925 (Rockbox) + 53a0 Packard Bell Vibe 500 (Rockbox) + 53b4 Rockchip 27xx generic (Rockbox) + 53be HiFiMAN HM-60x (Rockbox) + 53bf HiFiMAN HM-801 (Rockbox) + 53d2 HiFi E.T. MA9 (Rockbox) + 53d3 HiFi E.T. MA9C (Rockbox) + 53d4 HiFi E.T. MA8 (Rockbox) + 53d5 HiFi E.T. MA8C (Rockbox) + 53dc Sony NWZ-E370/E380 series (Rockbox) + 53dd Sony NWZ-E360 series (Rockbox) + 53e6 IHIFI 760 (Rockbox) + 53e7 IHIFI 960 (Rockbox) + 53ff Generic Rockbox device + 6000 Ubertooth Zero + 6001 Ubertooth Zero (DFU) + 6002 Ubertooth One + 6003 Ubertooth One (DFU) + 6004 LeoLipo + 6005 LED Flower S + 6006 LED Cube + 6007 LED Flower + 6008 Kisbee 802.15.4 transceiver + 6009 Adjacent Reality Tracker + 600a AVR Programmer + 600b Hypna Go Go + 600c CatNip LPC1343 development board + 600d Enhanced RoboBrrd Brain board + 600e OpenRISC Ordb2a-ep4ce22 development board + 600f Paparazzi Lisa/M (DFU) + 6010 OpenPipe: OSHW Bagpipes MIDI controller + 6011 LeoLipo (DFU) + 6012 Universal C64 Cartridge + 6013 DiscFerret magnetic disc analyser (bootloader) + 6014 DiscFerret magnetic disc analyser + 6015 Smoothieboard + 6016 phInterface + 6017 Black Magic Debug Probe (DFU) + 6018 Black Magic Debug Probe (Application) + 6019 4pi 5 axis motion controller + 601a Paparazzi Lisa/M + 601b IST-2 chronograph for bullet speeds + 601c EPOSMote II + 601d UDS18B20 temperature sensor + 601e 5x5 STM32 prototyping board + 601f uNSF + 6020 Toad3 + 6021 AlphaSphere + 6022 LightPack + 6023 Pixelkit + 6024 Illucia + 6025 Keyglove (HID) + 6026 Keyglove (Serial) + 6027 Key64 Keyboard + 6028 Teensy 2.0 Development Board [ErgoDox Keyboard] + 6029 Marlin 2.0 (Serial) + 602a Marlin 2.0 (Mass Storage) + 602b FPGALink + 602c 5nes5snes (5x8) + 602d 5nes5snes (4x12) + 602e Flexibity + 602f K-copter + 6030 USB-oscope + 6031 Handmade GSM GPS tracker + 6032 ncrmnt.org uISP + 6033 frobiac / adnw keyboard + 6034 Tiflomag Ergo 2 + 6035 FreeLaserTag Gun + 6036 FreeLaserTag Big Brother + 6037 FreeLaserTag Node + 6038 Monaka + 6039 eXtreme Feedback Device + 603a TiLDA + 603b Raspiface + 603c Paparazzi (bootloader) + 603d Paparazzi (Serial) + 603e Paparazzi (Mass Storage) + 603f airGuitar + 6040 moco + 6041 AlphaSphere (bootloader) + 6042 Dspace robot controller + 6043 pc-power + 6044 open-usb-can (DFU) + 6045 open-usb-can + 6046 mimus-weigand + 6047 RfCat Chronos Dongle + 6048 RfCat Dons Dongle + 6049 RfCat Chronos bootloader + 604a RfCat Dons bootloader + 604b HackRF Jawbreaker Software-Defined Radio + 604c Makibox A6 + 604d Paella Pulse height analyzer + 604e Miniscope v2b + 604f Miniscope v2c + 6050 GoodFET + 6051 pinocc.io + 6052 APB Team Robotic Development Board + 6053 Darkgame Controller + 6054 Satlab/AAUSAT3 BlueBox + 6055 RADiuS ER900TRS-02 transceiver with SMA Connector + 6056 The Glitch + 6057 OpenPipe MIDI Shield + 6058 Novena OTG port + 6059 xser serial + 605a Daisho test + 605b RfCat YARD Stick One + 605c YARD Stick One bootloader + 605d Funky Sensor v2 + 605e Blinkiverse Analog LED Fader + 605f Small DIP package Cypress FX2 + 6060 Data logger using the Cypress FX2 + 6061 Power Manager + 6062 WhiteRabbit console and Wishbone bridge + 6063 CPC FPGA + 6064 CPC FPGA (DFU) + 6065 CPC FPGA (Serial) + 6066 Nuand BladeRF + 6067 Orbotron 9000 (Serial) + 6068 Orbotron 9000 (HID) + 6069 xser (DFU) + 606a xser (legacy) + 606b S08-245, urJtag compatible firmware for S08JS + 606c Blinkytape full-color light tape + 606d TinyG open source motion controller + 606e Reefangel Evolution 1.0 + 606f Geschwister Schneider CAN adapter + 6070 Open Pinball Project + 6071 The Glitch HID + 6072 The Glitch Disk + 6073 The Glitch Serial + 6074 The Glitch MIDI + 6075 The Glitch RawHID + 6076 Vultureprog BIOS chip programmer + 6077 PaintDuino + 6078 DTplug + 6079 Mood Light + 607a Fadecandy + 607b RCDongle for IR remote control + 607c OpenVizsla USB sniffer/analyzer + 607d Spark Core Arduino-compatible board with WiFi + 607e OSHUG Wuthering multi-tool + 607f Spark Core Arduino-compatible board with WiFi (bootloader) + 6080 arcin arcade controller + 6081 BladeRF (bootloader) + 6082 Facecandy (DFU) + 6083 LightUp (bootloader) + 6084 arcin arcade controller (DFU) + 6085 IRKit for controlloing home electronics from iOS devices + 6086 OneRNG entropy device + 6087 Blinkytape (alternate endpoint config) + 6088 picp PIC16F145x based PIC16F145x programmer + 6089 Great Scott Gadgets HackRF One SDR + 608a BLEduino + 608b Loctronix ASR-2300 SDR/motion sensing module + 608c Fx2lafw + 608d Fx2lafw + 608e Fx2lafw + 608f Fx2lafw + 6090 Fx2lafw + 6091 Fx2lafw + 6092 Fx2lafw + 6093 Fx2lafw + 6094 Fx2lafw + 6095 Fx2lafw + 6096 LightUp (sketch) + 6097 Tessel JavaScript enabled Microcontroller with built-in WiFi + 6098 RFIDler + 6099 RASDR Radio Astronomy SDR Rx Interface + 609a RASDR Radio Astronomy SDR Tx Interface + 609b RASDR Radio Astronomy SDR (bootloader) + 609c antiAFK keyboard + 609d PIC16F145x bootloader + 609e Clyde Lamp by Fabule (bootloader) + 609f Clyde Lamp by Fabule (sketch) + 60a0 Smoothiepanel robotic control interface + 60a1 Airspy + 60a2 barebox (DFU) + 60a3 keyboard (bootloader) + 60a4 Papilio Duo (AVR) + 60a5 Papilio Duo (FPGA) + 60a6 HydraBus/HydraNFC (bootloader) + 60a7 HydraBus/HydraNFC + 60a8 reserved + 60a9 Blinky Light Controller (DFU) + 60aa Blinky Light Controller + 60ab AllPixel + 60ac OpenBLT generic microcontroller (bootloader) + 60ad Clasic Gamepad Adapter (NES) + 60ae Clasic Gamepad Adapter (N64) + 60af Clasic Gamepad Adapter (DB9) + 60b0 Waterott Arduino based Clock (caterina bootloader) + 60b1 Drinkbot (processing) + 60b2 Drinkbot (OTG-tablet support) + 60b3 calc.pw password generator device (standard) + 60b4 calc.pw password generator device (enhanced) + 60b5 TimVideos' HDMI2USB (FX2) - Unconfigured device + 60b6 TimVideos' HDMI2USB (FX2) - Firmware load/upgrade + 60b7 TimVideos' HDMI2USB (FX2) - HDMI/DVI Capture Device + 60b8 TimVideos' HDMI2USB (Soft+UTMI) - Unconfigured device + 60b9 TimVideos' HDMI2USB (Soft+UTMI) - Firmware upgrade + 60ba TimVideos' HDMI2USB (Soft+UTMI) - HDMI/DVI Capture Device + 60bc Simple CC25xx programmer / serial board + 60bd Open Source control interface for multimedia applications + 60be Pixelmatix Aurora (bootloader) + 60bf Pixelmatix Aurora + 60c0 Nucular Keyboard adapter + 60c1 BrewBit Model-T pOSHW temperature controller for homebrewers (bootloader) + 60c2 BrewBit Model-T pOSHW temperature controller for homebrewers + 60c3 X Antenna Tracker arduino board + 60c4 CAN bus communication device + 60c5 PIC16F1 bootloader + 60c6 USBtrng hardware random number generator + 60c7 Zubax GNSS positioning module for light UAV systems + 60c8 Xlink data transfer and control system for Commodore C64 + 60c9 random number generator + 60ca FinalKey password manager + 60cb PteroDAQ Data Acquisition on FRDM-KL25Z and future boards + 60cc LamDiNao + 60cd Open Lighting DMX512 / RDM widget + 60de Cryptech.is random number generator + 60df Numato Opsis HDMI2USB board (unconfigured) + 60e0 Numato Opsis HDMI2USB board (JTAG Programming Mode) + 60e1 Numato Opsis HDMI2USB board (User Mode) + 60e2 Osmocom SIMtrace 2 (DFU) + 60e3 Osmocom SIMtrace 2 + 60e4 3D printed racing game - (Catalina CDC bootloader) + 60e5 3D printed racing game + 60e6 replacement for GoodFET/FaceDancer - GreatFet + 60e7 replacement for GoodFET/FaceDancer - GreatFet target + 60e8 Alpen Clack keyboard + 60e9 keyman64 keyboard itercepter + 60ea Wiggleport FPGA-based I/O board + 60eb candleLight CAN adapter + 60ec Duet 2 WiFi or Duet 2 Ethernet 3D printer control electronics + 60ed Duet 2 Maestro 3D printer control electronics + 60ee Duet 3 motion control electronics + 60f0 UDAD-T1 data acquisition device (boot) + 60f1 UDAD-T1 data acquisition device + 60f2 UDAD-T2 data acquisition device (boot) + 60f3 UDAD-T2 data acquisition device + 60f4 Uniti ARC motor controller + 60f5 EightByEight Blinky Badge (DFU) + 60f6 EightByEight Blinky Badge + 60f7 cardio NFC/RFID card reader (bootloader) + 60f8 cardio NFC/RFID card reader + 60fc OnlyKey Two-factor Authentication and Password Solution + 6100 overlay64 video overlay module + 6104 ScopeFun open source instrumentation + 6108 Myriad-RF LimeSDR + 610c Magic Keys (boot) + 610d Magic Keys + 6114 MIDI key + 6118 Thomson MO5 keyboard + 6122 Ultimate Hacking Keyboard + 614c dwtk In-Circuit Emulator + 614d Generic Display + 8085 Box0 (box0-v5) + cc15 rad1o badge for CCC summer camp 2015 +1d57 Xenta + 0005 Wireless Receiver (Keyboard and Mouse) + 0006 Wireless Receiver (RC Laser Pointer) + 000c Optical Mouse + 130f 2.4Ghz wireless optical mouse receiver + 2400 Wireless Mouse Receiver + 32da 2.4GHz Receiver (Keyboard and Mouse) + 83d0 Click-mouse! + ac01 Wireless Receiver (Keyboard and Mouse) + ac02 ViFit Activity Tracker + ac08 RFID Receiver (Keyboard) + ad02 SE340D PC Remote Control + ad03 [T3] 2.4GHz and IR Air Mouse Remote Control + af01 AUVIO Universal Remote Receiver for PlayStation 3 + af03 Wireless Receiver + fa20 2.4GHz Wireless Receiver (Mini Keyboard & Mouse) +1d5b Smartronix, Inc. +1d5c Fresco Logic + 2000 FL2000/FL2000DX VGA/DVI/HDMI Adapter +1d6b Linux Foundation + 0001 1.1 root hub + 0002 2.0 root hub + 0003 3.0 root hub + 0100 PTP Gadget + 0101 Audio Gadget + 0102 EEM Gadget + 0103 NCM (Ethernet) Gadget + 0104 Multifunction Composite Gadget + 0105 FunctionFS Gadget + 0200 Qemu Audio Device +1d88 Mahr GmbH + 0001 Measurement Device [MarECon] + 0002 Probe + 0003 Surface Measurement [PS10] +1d90 Citizen + 201e PPU-700 + 2037 CL-S631 Barcode Printer + 20f0 Thermal Receipt Printer [CT-E351] +1d9d Sigma Sport + 1010 Docking Station Topline 2009 + 1011 Docking Station Topline 2012 + 1012 Docking Station Topline 2016 +1dd2 Leo Bodnar Electronics Ltd +1dd3 Dajc Inc. + 0001 Expert I/O 1000 +1de1 Actions Microelectronics Co. + 1101 Generic Display Device (Mass storage mode) + c101 Generic Display Device +1de6 MICRORISC s.r.o. +1df7 SDRplay + 2500 RSP1 + 3000 RSP1a + 3010 RSP2/RSP2pro + 3020 RSPduo + 3030 RSPdx +1e0e Qualcomm / Option + f000 iCON 210 UMTS Surfstick +1e10 Point Grey Research, Inc. + 2004 Sony 1.3MP 1/3" ICX445 IIDC video camera [Chameleon] +1e17 Mirion Technologies Dosimetry Services Division + 0001 instadose dosimeter +1e1d Kanguru Solutions + 0165 Secure Pen drive + 1101 FlashBlu Flash Drive +1e1f INVIA +1e29 Festo AG & Co. KG + 0101 CPX Adapter + 0102 CPX Adapter >=HW10.09 [CP2102] + 0401 iL3-TP [AT90USB646] + 0402 FTDI232 [EasyPort] + 0403 FTDI232 [EasyPort Mini] + 0404 FTDI232 [Netzteil-GL] + 0405 FTDI232 [MotorPrüfstand] + 0406 STM32F103 [EasyKit] + 0407 LPC2378 [Robotino] + 0408 LPC2378 [Robotino-Arm] + 0409 LPC2378 [Robotino-Arm Bootloader] + 040a LPC2378 [Robotino Bootloader] + 040b LPC2378 [Robotino XT] + 040c LPC2378 [Robotino XT Bootloader] + 040d LPC2378 [Robotino 3] + 040e LPC2378 [Robotino 3 Bootloader] + 040f LPC2148 [Robotino gripper] + 0410 LPC2148 [Robotino IR panel] + 0501 CP2102 [CMSP] + 0601 CMMP-AS + 0602 FTDI232 [CMMS] +1e2d Gemalto M2M GmbH + 004f EGS3 GSM/GPRS modem + 0054 PH8 wireless module + 0058 Wireless Module [Cinterion EHS6] + 0059 Wireless Module [Cinterion BGx] + 005b Zoom 4625 Modem + 0061 ALSx PLSx LTE modem + 00a0 Cinterion ELS31-V +1e3d Chipsbank Microelectronics Co., Ltd + 198a Flash Disk + 2093 CBM209x Flash Drive (OEM) + 4082 CBM4082 SD Card Reader +1e41 Cleverscope + 0001 CS328A PC Oscilloscope + 0004 CS448 +1e44 SHIMANO INC. + 7220 SM-BCR2 +1e4e Cubeternet + 0100 WebCam + 0102 GL-UPC822 UVC WebCam + 0109 EtronTech CMOS based eSP570 WebCam [Onyx Titanium TC101] +1e54 TypeMatrix + 2030 2030 USB Keyboard +1e68 TrekStor GmbH & Co. KG + 001b DataStation maxi g.u + 004c DataStation Pocket Click + 0050 DataStation maxi light + 1045 ST70408-3 [SurfTab breeze 7.0 quad 3G] (MTP Mode) + 1046 ST70408-3 [SurfTab breeze 7.0 quad 3G] (PTP Mode) +1e71 NZXT + 0001 Avatar Optical Mouse + 170e Kraken X + 1711 Grid+ V3 + 1714 Smart Device + 1715 Kraken M22 + 2006 Smart Device V2 +1e74 Coby Electronics Corporation + 2211 MP300 + 2647 2 GB 2 Go Video MP3 Player [MP601-2G] + 2659 Coby 4GB Go Video MP3 Player [MP620-4G] + 4641 A8705 MP3/Video Player + 6511 MP705-8G MP3 player + 6512 MP705-4G + 7111 MP957 Music and Video Player +1e7b Zurich Instruments + 0002 HF2 + 0003 UHF + 0004 MFLI +1e7d ROCCAT + 2c24 Pyra Mouse (wired) + 2c2e Lua Mouse + 2c38 Kiro Mouse + 2ced Kone Mouse + 2cee Kova 2016 Gray Mouse + 2cef Kova 2016 White Mouse + 2cf0 Kova 2016 Black Mouse + 2cf6 Pyra Mouse (wireless) + 2d50 Kova[+] Mouse + 2d51 Kone[+] Mouse + 2d5a Savu Mouse + 2db4 Kone Pure Optical Mouse + 2dbe Kone Pure Mouse + 2dbf Kone Pure Military Mouse + 2dc2 Kone Pure Optical Black Mouse + 2dcb Kone Pure SE(L) Mouse + 2e22 Kone XTD Mouse + 2e23 Kone XTD Optical Mouse + 2e27 Kone AIMO Mouse + 2e4a Tyon Black Mouse + 2e4b Tyon White Mouse + 2e7c Nyth Black Mouse + 2e7d Nyth White Mouse + 2f76 Sova Keyboard + 2f94 Sova MK Keyboard + 2fa8 Suora Keyboard + 2fc6 Skeltr Keyboard + 2fda Ryos MK FX Keyboard + 30d4 Arvo Keyboard + 3138 Ryos MK Keyboard + 316a Ryos TKL Keyboard + 319c Isku Keyboard + 31ce Ryos MK Glow Keyboard + 3232 Ryos MK Pro Keyboard + 3246 Suora FX Keyboard + 3264 Isku FX Keyboard +1e8e Airbus Defence and Space + 6001 P8GR +1e91 Other World Computing + b0b1 miniStack +1ea7 SHARKOON Technologies GmbH + 0030 Trust GXT 158 Orna Laser Gaming Mouse + 0064 2.4GHz Wireless rechargeable vertical mouse [More&Better] + 0066 [Mediatrack Edge Mini Keyboard] + 0907 Keyboard + 1002 Vintorez Gaming Mouse + 2007 SHARK ZONE K30 Illuminated Gaming Keyboard +1eab Fujian Newland Computer Co., Ltd + 0103 HR200 Barcode scanner engine (HID keyboard) + 0106 HR200 Barcode scanner engine (Serial CDC) + 0110 HR200 Barcode scanner engine (HID Pos) + 0c03 HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (HID keyboard) + 0c06 HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (USB Serial CDC) + 0c10 HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (HID Pos) + 0d03 EM2028 Barcode scanner engine (HID keyboard) + 0d06 EM2028 Barcode scanner engine (Serial CDC) + 0d10 EM2028 Barcode scanner engine (HID Pos) + 1303 EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (HID keyboard) + 1306 EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (USB serial CDC) + 1310 EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (HID Pos) + 1403 HR15-xx Barcode scanner engine (HID keyboard) + 1406 HR15-xx Barcode scanner engine (Serial CDC) + 1410 HR15-xx Barcode scanner engine (HID Pos) + 1603 FM100-M/3250 Barcode scanner engine (HID keyboard) + 1606 FM100-M/3250 Barcode scanner engine (Serial CDC) + 1610 FM100-M/3250 Barcode scanner engine (HID Pos) + 1903 EM1300 Barcode scanner engine (HID keyboard) + 1906 EM1300 Barcode scanner engine (Serial CDC) + 1910 EM1300 Barcode scanner engine (HID Pos) + 1a03 HR3290 corded/HR22 Barcode scanner engine (HID keyboard) + 1a06 HR3290 corded/HR22 Barcode scanner engine (Serial CDC) + 1a10 HR3290 corded/HR22 Barcode scanner engine (HID Pos) + 1c03 HR2150 Barcode scanner engine (HID keyboard) + 1c06 HR2150 Barcode scanner engine (Serial CDC) + 1c10 HR2150 Barcode scanner engine (HID Pos) + 1d03 FM430 Barcode scanner engine (HID keyboard) + 1d06 FM430 Barcode scanner engine (Serial CDC) + 1d10 FM430 Barcode scanner engine (HID Pos) + 1e03 HR42 Barcode scanner engine (HID keyboard) + 1e06 HR42 Barcode scanner engine (Serial CDC) + 1e10 HR42 Barcode scanner engine (HID Pos) + 1f03 HR11+ Barcode scanner engine (HID keyboard) + 1f06 HR11+ Barcode scanner engine (Serial CDC) + 1f10 HR11+ Barcode scanner engine (HID Pos) + 2003 EM2037v2 Barcode scanner engine (HID keyboard) + 2006 EM2037v2 Barcode scanner engine (Serial CDC) + 2010 EM2037v2 Barcode scanner engine (HID Pos) + 8003 EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (HID keyboard) + 8006 EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (USB Serial CDC) + 8010 EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (HID Pos) + 8203 EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (HID keyboard) + 8206 EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (USB Serial CDC) + 8210 EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (HID Pos) + 8303 HR2160 Barcode scanner engine (HID keyboard) + 8306 HR2160 Barcode scanner engine (Serial CDC) + 8310 HR2160 Barcode scanner engine (HID Pos) +1eaf Leaflabs + 0003 Maple DFU interface + 0004 Maple serial interface +1eb8 Modacom Co., Ltd. + 7f00 MW-U3500 WiMAX adapter +1ebb NuCORE Technology, Inc. +1ecb AMTelecom + 02e2 JMR1140 [Jiofi] +1ed8 FENDER MUSICAL INSTRUMENTS CORPORATION + 0004 Mustang I/II + 0005 Mustang III/IV/V + 0006 Mustang I/II [Firmware Update] + 0007 Mustang III/IV/V [Firmware Update] + 0010 Mustang Mini + 0011 Mustang Mini [Firmware Update] + 0014 Mustang I (V.2) + 0016 Mustang IV v.2 +1eda AirTies Wireless Networks + 2012 Air2210 54 Mbps Wireless Adapter + 2210 Air2210 54 Mbps Wireless Adapter + 2310 Air2310 150 Mbps Wireless Adapter + 2410 Air2410 300 Mbps Wireless Adapter +1edb Blackmagic design + bd3b Intensity Shuttle + bd46 Mini Converter Analog to SDI + bd75 2.5K Cinema Camera (BMCC) +1ee8 ONDA COMMUNICATION S.p.a. + 0014 MT833UP +1ef6 EADS Deutschland GmbH + 2233 Cassidian NH90 STTE + 5064 FDR Interface + 5523 Cassidian SSDC Adapter II + 5545 Cassidian SSDC Adapter III + 5648 RIU CSMU/BSD + 564a Cassidian RIU CSMU/BSD Simulator +1f0c CMX Systems + 2000 HP StreamSmart 410 [NW278AA] +1f28 Cal-Comp + 0020 CDMA USB Modem A600 + 0021 CD INSTALLER USB Device +1f3a Allwinner Technology + 1000 Prestigio PER3464B ebook reader (Mass storage mode) + 1002 mediacom XPRO 415 + 1010 Android device in fastboot mode + efe8 sunxi SoC OTG connector in FEL/flashing mode +1f44 The Neat Company + 0001 NM-1000 scanner +1f48 H-TRONIC GmbH + 0627 Data capturing system + 0628 Data capturing and control module +1f4d G-Tek Electronics Group + a115 EVOLVEO XtraTV stick [DVB-T] + b803 Lifeview LV5TDLX DVB-T [RTL2832U] + c803 NotOnlyTV (Lifeview) LV5TDLX DVB-T [RTL2832U] + d220 Geniatech T220 DVB-T2 TV Stick +1f52 Systems & Electronic Development FZCO (SEDCO) + 0001 Ultima 49 Printer + 0002 Ultima 90 Printer + 0003 FormsPro 50 Printer + 0004 Ultima 90+ Printer +1f6f Aliph + 0023 Jawbone Jambox + 8000 Jawbone Jambox - Updating +1f75 Innostor Technology Corporation + 0611 IS611 SATA/PATA Bridge Controller + 0621 IS621 SATA Storage Controller + 0888 IS888 SATA Storage Controller + 0902 IS902 UFD controller + 0916 IS916 Flash Drive + 0917 IS917 Mass storage + 0918 IS918 Flash Drive +1f82 TANDBERG + 0001 PrecisionHD Camera +1f84 Alere, Inc. + 1f7e Lateral Flow Engine +1f87 Stantum + 0002 Multi-touch HID Controller +1f9b Ubiquiti Networks, Inc. + 0241 AirView2-EXT + b0b1 UniFi VoIP Phone +1fab Samsung Opto-Electroncs Co., Ltd. + 104d ES65 +1fac Franklin Wireless + 0232 U770 3G/4G Wimax/4G LTE Modem +1fae Lumidigm + 0040 M311 Fingerprint Scanner + 212c M30x (Mercury) fingerprint sensor +1fb2 Withings + 0001 Wi-Fi Body Scale (WBS01) +1fba DERMALOG Identification Systems GmbH +1fbd Delphin Technology AG + 0001 Expert Key - Data acquisition system + 0004 MetiOS Device (RNDIS) + 0005 Loggito + 0006 LoggitoLab 8 AI-RTD + 0007 LoggitoLab 8 TC + 0008 LoggitoLab 4 AI-RTD 4 TC +1fc9 NXP Semiconductors + 0003 LPC1343 + 000c LPC4330FET180 [ARM Cortex M4 + M0] (device firmware upgrade mode) + 0082 LPC4330FET180 [ARM Cortex M4 + M0] (mass storage controller mode) + 010b PR533 + 0126 i.MX 7ULP SystemOnChip in RecoveryMode + 012b i.MX 8M Dual/8M QuadLite/8M Quad Serial Downloader + 5002 PTN5002 [Startech VGA/DVI-D adapter] + 8124 SharkRF Bootloader + 824c LumiNode1 +1fde ILX Lightwave Corporation + 0001 UART Bridge +1fe7 Vertex Wireless Co., Ltd. + 1000 VW100 series CDMA EV-DO Rev.A modem +1ff7 CVT Electronics.Co.,Ltd + 0013 CVTouch Screen (HID) + 001a Human Interface Device +1ffb Pololu Corporation + 0081 AVR Programmer + 0083 Jrk 21v3 Motor Controller + 0089 Micro Maestro 6-Servo Controller + 008a Mini Maestro 12-Channel Servo Controller + 008b Mini Maestro 18-Channel Servo Controller + 008c Mini Maestro 24-Channel Servo Controller + 00b0 AVR Programmer v2 +1fff Ideofy Inc. +2000 CMX Systems + 1f0c HP StreamSmart 410 [NW278AA] +2001 D-Link Corp. + 0001 DWL-120 WIRELESS ADAPTER + 0201 DHN-120 10Mb Home Phoneline Adapter + 1a00 DUB-E100 Fast Ethernet Adapter(rev.A) [ASIX AX88172] + 1a02 DUB-E100 Fast Ethernet Adapter(rev.C1) [ASIX AX88772] + 200c 10/100 Ethernet + 3101 DWA-182 AC1200 DB Wireless Adapter(rev.A1) [Broadcom BCM43526] + 3200 DWL-120 802.11b Wireless Adapter(rev.E1) [Atmel at76c503a] + 3301 DWA-130 802.11n Wireless N Adapter(rev.C1) [Realtek RTL8192U] + 3306 DWL-G122 Wireless Adapter(rev.F1) [Realtek RTL8188SU] + 3308 DWA-121 802.11n Wireless N 150 Pico Adapter [Realtek RTL8188CUS] + 3309 DWA-135 802.11n Wireless N Adapter(rev.A1) [Realtek RTL8192CU] + 330a DWA-133 802.11n Wireless N Adapter [Realtek RTL8192CU] + 330d DWA-131 802.11n Wireless N Nano Adapter (rev.B1) [Realtek RTL8192CU] + 330f DWA-125 Wireless N 150 Adapter(rev.D1) [Realtek RTL8188ETV] + 3310 DWA-123 Wireless N 150 Adapter (rev.D1) + 3314 DWA-171 AC600 DB Wireless Adapter(rev.A1) [Realtek RTL8811AU] + 3315 DWA-182 Wireless AC Dualband Adapter(rev.C) [Realtek RTL8812AU] + 3317 DWA-137 Wireless N High-Gain Adapter [Ralink RT5372] + 3319 DWA-131 Wireless N Nano Adapter (Rev. E1) [Realtek RTL8192EU] + 3500 Elitegroup Computer Systems WLAN card WL-162 + 3700 DWL-122 802.11b [Intersil Prism 3] + 3701 DWL-G120 Spinnaker 802.11g [Intersil ISL3886] + 3702 DWL-120 802.11b Wireless Adapter(rev.F) [Intersil ISL3871] + 3703 AirPlus G DWL-G122 Wireless Adapter(rev.A1) [Intersil ISL3880] + 3704 AirPlus G DWL-G122 Wireless Adapter(rev.A2) [Intersil ISL3887] + 3705 AirPlus G DWL-G120 Wireless Adapter(rev.C) [Intersil ISL3887] + 3761 IEEE 802.11g USB2.0 Wireless Network Adapter-PN + 3a00 DWL-AG132 [Atheros AR5523] + 3a01 DWL-AG132 (no firmware) [Atheros AR5523] + 3a02 DWL-G132 [Atheros AR5523] + 3a03 DWL-G132 (no firmware) [Atheros AR5523] + 3a04 DWL-AG122 [Atheros AR5523] + 3a05 DWL-AG122 (no firmware) [Atheros AR5523] + 3a80 AirPlus Xtreme G DWL-G132 Wireless Adapter + 3a81 predator Bootloader Download + 3a82 AirPremier AG DWL-AG132 Wireless Adapter + 3a83 predator Bootloader Download + 3b00 AirPlus DWL-120+ Wireless Adapter [Texas Instruments ACX100USB] + 3b01 WLAN Boot Device + 3c00 AirPlus G DWL-G122 Wireless Adapter(rev.B1) [Ralink RT2571] + 3c01 AirPlus AG DWL-AG122 Wireless Adapter + 3c02 AirPlus G DWL-G122 Wireless Adapter + 3c05 DUB-E100 Fast Ethernet Adapter(rev.B1) [ASIX AX88772] + 3c15 DWA-140 RangeBooster N Adapter(rev.B3) [Ralink RT5372] + 3c17 DWA-123 Wireless N 150 Adapter(rev.A1) [Ralink RT3370] + 3c19 DWA-125 Wireless N 150 Adapter(rev.A3) [Ralink RT5370] + 3c1a DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.B2) [Ralink RT5572] + 3c1b DWA-127 Wireless N 150 High-Gain Adapter(rev.A1) [Ralink RT3070] + 3c1e DWA-125 Wireless N 150 Adapter(rev.B1) [Ralink RT5370] + 4000 DSB-650C Ethernet [klsi] + 4001 DSB-650TX Ethernet [pegasus] + 4002 DSB-650TX Ethernet [pegasus] + 4003 DSB-650TX-PNA Ethernet [pegasus] + 400b 10/100 Ethernet + 4102 10/100 Ethernet + 4a00 DUB-1312 Gigabit Ethernet Adapter + 5100 DSL-200 ADSL ATM Modem + 5102 DSL-200 ADSL Loader + 5b00 Remote NDIS Network Device + 9414 Cable Modem + 9b00 Broadband Cable Modem Remote NDIS Device + abc1 DSB-650 Ethernet [pegasus] + f013 DLink 7 port USB2.0 Hub + f103 DUB-H7 7-port USB 2.0 hub + f10d Accent Communications Modem + f110 DUB-AV300 A/V Capture + f111 DBT-122 Bluetooth adapter + f112 DUB-T210 Audio Device + f116 Formosa 2 + f117 Formosa 3 + f118 Formosa 4 +2002 DAP Technologies +2003 detectomat + ea61 dc3500 +2006 LenovoMobile +2009 iStorage + 5004 datAshur 4GB + 5016 datAshur 16GB + 5032 datAshur 32GB +200c Reloop + 100b Play audio soundcard +2013 PCTV Systems + 0242 QuatroStick 510e + 0245 PCTV 73ESE + 0246 PCTV 74E + 0248 PCTV 282E + 024c DVB-S2 Stick 460e + 024f nanoStick T2 290e + 0251 QuatroStick nano 520e + 0258 DVB-S2 Stick 461e + 025a AndroiDTV 78e + 025f tripleStick 292e + 0262 microStick 79e +2018 Deutsche Telekom AG + 0406 Eumex 800 + 0408 Eumex 800 +2019 PLANEX + 3220 GW-US11S WLAN [Atmel AT76C503A] + 4901 GW-USSuper300 802.11bgn Wireless Adapter [Realtek RTL8191SU] + 4903 GW-USFang300 802.11abgn Wireless Adapter [Realtek RTL8192DU] + 4904 GW-USUltra300 802.11abgn Wireless Adapter [Realtek RTL8192DU] + 5303 GW-US54GXS 802.11bg + 5304 GWUS300 802.11n + ab01 GW-US54HP + ab24 GW-US300MiniS + ab25 GW-USMini2N 802.11n Wireless Adapter [Ralink RT2870] + ab28 GW-USNano + ab29 GW-USMicro300 + ab2a GW-USNano2 802.11n Wireless Adapter [Realtek RTL8188CUS] + ab2b GW-USEco300 802.11bgn Wireless Adapter [Realtek RTL8192CU] + ab2c GW-USDual300 802.11abgn Wireless Adapter [Realtek RTL8192DU] + ab50 GW-US54Mini2 + c002 GW-US54SG + c007 GW-US54GZL + ed02 GW-USMM + ed06 GW-US300MiniW 802.11bgn Wireless Adapter + ed10 GW-US300Mini2 + ed14 GW-USMicroN + ed16 GW-USMicroN2W 802.11bgn Wireless Adapter [Realtek RTL8188SU] + ed17 GW-USValue-EZ 802.11n Wireless Adapter [Realtek RTL8188CUS] + ed18 GW-USHyper300 / GW-USH300N 802.11bgn Wireless Adapter [Realtek RTL8191SU] +201e Haier + 2009 CE100 CDMA EVDO +203a PARALLELS +203d Encore Electronics Inc. + 1480 ENUWI-N3 [802.11n Wireless N150 Adapter] +2040 Hauppauge + 0265 WinTV-dualHD DVB + 026d WinTV-dualHD ATSC + 0c80 Windham + 0c90 Windham + 1605 WinTV-HVR 930C HD + 1700 CataMount + 1800 Okemo A + 1801 Okemo B + 2000 Tiger Minicard + 2009 Tiger Minicard R2 + 200a Tiger Minicard + 2010 Tiger Minicard + 2011 WinTV MiniCard [Dell Digital TV Receiver] + 2019 Tiger Minicard + 2400 WinTV PVR USB2 (Model 24019) + 4200 WinTV + 4700 WinTV Nova-S-USB2 + 4902 HD PVR + 4903 HS PVR + 4982 HD PVR + 5500 Windham + 5510 Windham + 5520 Windham + 5530 Windham + 5580 Windham + 5590 Windham + 6500 WinTV HVR-900 + 6502 WinTV HVR-900 + 6503 WinTV HVR-930 + 6513 WinTV HVR-950/HVR-980 + 6600 WinTV HVR-900H (Model 660xx) + 7050 Nova-T Stick + 7060 Nova-T Stick 2 + 7070 Nova-T Stick 3 + 7240 WinTV HVR-850 + 8400 WinTV Nova-T-500 + 9300 WinTV NOVA-T USB2 (cold) + 9301 WinTV NOVA-T USB2 (warm) + 9941 WinTV Nova-T-500 + 9950 WinTV Nova-T-500 + b123 WinTV-HVR-955Q + b138 WinTV-HVR-900 model 00246 [WinTV-T Video] + b910 Windham + b980 Windham + b990 Windham + c000 Windham + c010 Windham +2047 Texas Instruments + 0013 MSP eZ-FET lite + 0014 MSP-FET + 0200 MSP430 Bootloader + 0203 eZ-FET Bootloader + 0204 MSP-FET Bootloader + 0300 MSP430 CDC Example + 0301 MSP430 HID Datapipe Example + 0302 MSP430 CDC+HID Example + 0309 MSP430 HID Mouse Example + 0313 MSP430 CDC+CDC Example + 0314 MSP430 HID+HID Example + 0315 MSP430 HID Keyboard Example + 0316 MSP430 MSC File System Emulation Example + 0317 MSP430 MSC SD Card Example + 0318 MSP430 MSC Multiple LUNs Example + 0319 MSP430 MSC+CDC+HID Example + 0320 MSP430 SYSBIOS Tasks MSC+CDC+HID Example + 0321 MSP430 SYSBIOS SWIs MSC+CDC+HID Example + 0322 MSP430 MSC Double-Buffering Example + 0323 MSP430 MSC CD-ROM Example + 03df MSP430 User Experiment + 03e0 MSP430 User Experiment + 03e1 MSP430 User Experiment + 03e2 MSP430 User Experiment + 03e3 MSP430 User Experiment + 03e4 MSP430 User Experiment + 03e5 MSP430 User Experiment + 03e6 MSP430 User Experiment + 03e7 MSP430 User Experiment + 03e8 MSP430 User Experiment + 03e9 MSP430 User Experiment + 03ea MSP430 User Experiment + 03eb MSP430 User Experiment + 03ec MSP430 User Experiment + 03ed MSP430 User Experiment + 03ee MSP430 User Experiment + 03ef MSP430 User Experiment + 03f0 MSP430 User Experiment + 03f1 MSP430 User Experiment + 03f2 MSP430 User Experiment + 03f3 MSP430 User Experiment + 03f4 MSP430 User Experiment + 03f5 MSP430 User Experiment + 03f6 MSP430 User Experiment + 03f7 MSP430 User Experiment + 03f8 MSP430 User Experiment + 03f9 MSP430 User Experiment + 03fa MSP430 User Experiment + 03fb MSP430 User Experiment + 03fc MSP430 User Experiment + 03fd MSP430 User Experiment + 0401 MSP430 Keyboard Example + 0855 Invensense Embedded MotionApp HID Sensor + 08f8 FDC2x14/LDC13xx/LDC16xx EVM + 0964 Inventio Software MSP430 + 0a76 GEOKON S-3810A-5 USB-RS485 CONVERTER + ffe7 HID v1.00 Device [Improv Device] +2058 Nano River Technology + 2058 ViperBoard I2C, SPI, GPIO interface +2077 Taicang T&W Electronics Co. Ltd + 9002 W1M100 HSPA/WCDMA Module +2080 Barnes & Noble + 0001 nook + 0002 NOOKcolor + 0003 NOOK Simple Touch + 0004 NOOK Tablet + 0005 BNTV600 [Nook HD+] + 0006 BNTV400 [Nook HD] + 0007 BNRV500 [Nook Glowlight] + 000a BNRV510 [Nook Glowlight Plus] + 000b BNRV520 [Nook Glowlight 3] + 000c BNRV700 [Nook Glowlight Plus] +2086 SIMPASS +2087 Cando + 0a01 Multi Touch Panel + 0a02 Multi Touch Panel + 0b03 Multi Touch Panel +20a0 Clay Logic + 0006 flirc + 4107 GPF Crypto Stick V1.2 + 4123 IKALOGIC SCANALOGIC 2 + 414a MDE SPI Interface + 415a OpenPilot + 415b CopterControl + 415c PipXtreme + 41e5 BlinkStick + 4211 Nitrokey Start + 4223 ATSAMD21 [castAR] + 428d Electrosense wideband converter +20b1 XMOS Ltd + 10ad XUSB Loader + f7d1 XTAG2 - JTAG Adapter +20b3 Hanvon + 0a18 10.1 Touch screen overlay +20b7 Qi Hardware + 0713 Milkymist JTAG/serial + 1540 ben-wpan, AT86RF230-based + 1db5 IDBG in DFU mode + 1db6 IDBG in normal mode + 9db1 Glasgow Debug Tool + c25b C2 Dongle + cb72 ben-wpan, cntr +20bc ShenZhen ShanWan Technology Co., Ltd. + 5500 Frostbite controller +20ce Minicircuits + 0012 RF Sythesizer 250-4200MHz model SSG-4000LH + 0021 RF Switch Matrix + 0022 I/O Controller +20df Simtec Electronics + 0001 Entropy Key [UDEKEY01] +20f0 L3Harris Technologies + 2102 EWLA V2 Module +20f1 NET New Electronic Technology GmbH + 0101 iCube3 Camera +20f4 TRENDnet + 646b TEW-646UBH High Power 150Mbps Wireless N Adapter [Realtek RTL8188SU] + 648b TEW-648UBM 802.11n 150Mbps Micro Wireless N Adapter [Realtek RTL8188CUS] + 664b TEW-664UB H/W:V2.0R + 804b TEW-804UB 802.11a/b/g/n/ac (1x1) Wireless Adapter [Realtek RTL8811AU] + 805b TEW-805UB 300Mbps+867Mbps Wireless AC Adapter [Realtek RTL8812AU] + 806b TEW-806UBH 802.11a/b/g/n/ac (1x1) Wireless Adapter [MediaTek MT7610U] +20f7 XIMEA + 3001 MQ or MD camera + 3002 MU camera + 3021 MJ camera + 30b3 MQ in U3V mode or MC camera + a003 MU camera +2100 RT Systems + 0e56 USB62C Radio Cable [Yaesu 857/D - 897/D] + 9e50 USB-59 Radio Cable [Yaesu VX-8/D/DR] + 9e52 Yaesu VX-7 + 9e54 CT29B Radio Cable + 9e57 RTS01 Radio Cable + 9e58 USB63C Radio Cable [Yaesu FTDX-1200] + 9e5d K4Y Radio Cable + 9e5f FT232RL [RTS05 Serial Cable] +2101 ActionStar + 0201 SIIG 4-to-2 Printer Switch + 1402 Keyboard/Mouse Switch +2104 Tobii Technology AB + 0050 Eye tracker [EYEX2] + 0124 Eyechip +2107 RDING TECH CO.,LTD +2109 VIA Labs, Inc. + 0210 Hub + 0700 VL700 SATA 3Gb/s bridge + 0701 VL701 SATA 3Gb/s bridge + 0711 VL711 SATA 6Gb/s bridge + 0715 VL817 SATA Adaptor + 0810 VL81x Hub + 0811 Hub + 0812 VL812 Hub + 0813 VL813 Hub + 0820 VL820 Hub + 2210 Hub + 2811 Hub + 2812 VL812 Hub + 2813 VL813 Hub + 2820 VL820 Hub + 3431 Hub + 711f External + 8110 Hub +2113 Softkinetic + 0137 DepthSense 311 (3D) + 0145 DepthSense 325 + 8000 DepthSense 311 (Color) +2116 KT Tech + 000a IDE Hard Drive Enclosure +211f CELOT Corporation + 6801 CDMA Products +2123 Cheeky Dream + 1010 Rocket Launcher +2125 Fiberpro Inc. + 0000 Bootloader + 0010 MCB-100 Series +2133 signotec GmbH + 0001 LCD Signature Pad Sigma + 0018 Delta Pen + 0019 Delta Touch + 001c Kronos Pen + 0022 Epsilon Pen +2149 Advanced Silicon S.A. + 211b Touchscreen Controller + 2306 TS58xxA/TC56xxA [CoolTouch] + 2703 TS58xxA/TC56xxA [CoolTouch] +214b Huasheng Electronics + 7000 4-port hub [Maxxter ACT-HUB2-4P, HS8836, iSoul ultra-slim] +214e Swiftpoint + 0005 Z - Gaming mouse [SM700] +2162 Broadxent (Creative Labs) + 2031 Network Blaster Wireless Adapter + 500c DE5771 Modem Blaster + 8001 Broadxent BritePort DSL Bridge 8010U +2166 JVC Kenwood + 600b TH-D74 +2184 GW Instek + 0005 GDS-3000 Oscilloscope + 0006 GDS-3000 Oscilloscope + 0011 AFG Function Generator (CDC) + 0017 DSO + 0018 DSO + 0036 AFG-125 Function Generator (CDC) +2188 No brand + 0610 Hub + 0611 Hub + 0620 Hub + 0625 Hub + 0754 Card Reader + 4042 CalDigit Pro Audio +219c Seal One AG + 0010 USB 2200 K Secure Sign Token +21a1 Emotiv Systems Pty. Ltd. + 0001 EPOC Consumer Headset Wireless Dongle +21a4 Electronic Arts Inc. + ac27 SPORTS Active 2 Wireless Controller for PS3 + ac40 SPORTS Active 2 Wireless Controller for Wii +21a9 Saleae, Inc. + 1001 16-channel Logic Analyzer [Logic16] + 1003 Logic 4 + 1004 Logic8 + 1005 Logic Pro 8 + 1006 Logic Pro 16 +21ab Planeta Informatica + 0010 RC700 NFC SmartCard Reader + 0011 DSR700 SmartCard Reader +21b4 AudioQuest + 0081 DragonFly + 0082 DragonFly Red +21d6 Agecodagis SARL + 0002 Seismic recorder [Tellus] +2207 Fuzhou Rockchip Electronics Company + 0010 GoClever Tab R83 + 0011 SmartTab + 281a RK2818 in Mask ROM mode + 290a RK2918 in Mask ROM mode + 292a RK2928 in Mask ROM mode + 292c RK3026 in Mask ROM mode + 300a RK3066 in Mask ROM mode + 300b RK3168 in Mask ROM mode + 301a RK3036 in Mask ROM mode + 310a RK3066B in Mask ROM mode + 310b RK3188 in Mask ROM mode + 310c RK3126/RK3128 in Mask ROM mode + 310d RK3126 in Mask ROM mode + 320a RK3288 in Mask ROM mode + 320b RK3228/RK3229 in Mask ROM mode + 320c RK3328 in Mask ROM mode + 330a RK3368 in Mask ROM mode + 330c RK3399 in Mask ROM mode +221a ZTEX GmbH + 0100 FPGA Boards +2222 MacAlly + 0004 iWebKey Keyboard + 0005 ICEKey Keyboard + 1001 Generic Hub + 2520 Mini Tablet + 4050 AirStick joystick +2226 Copper Mountain technologies +2227 SAMWOO Enterprise + 3105 SKYDATA SKD-U100 +222a ILI Technology Corp. + 0001 Multi-Touch Screen + 0037 Multi-Touch Screen +2230 Plugable + 0001 UD-160-A / M Integrated Hub + 0003 DC-125 / M Integrated Hub +2232 Silicon Motion + 1005 WebCam SCB-0385N + 1024 Webcam SC-13HDL11624N [Namuga Co., Ltd.] + 1028 WebCam SC-03FFL11939N + 1029 WebCam SC-13HDL11939N + 1037 WebCam SC-03FFM12339N + 1045 WebCam SC-10HDP12631N +2233 RadioShack Corporation + 6323 USB Electronic Scale +2237 Kobo Inc. + 4161 eReader White + 4163 Touch + 4173 Glo +2245 Aspeed Technology, Inc. + 1500 AST1500/1510 PC-over-LAN Virtual Hub +224f APDM + 0001 Access Point + 0002 Docking Station + 0004 V2 Opal ACM + 0005 V2 Opal + 0006 V2 Docking Station + 0007 V2 Access Point ACM + 0008 V2 Access Point +2256 Faderfox + 1007 LV3 MIDI Controller +225d Morpho + 0001 FINGER VP Multimodal Biometric Sensor + 0008 CBM-E3 Fingerprint Sensor + 0009 CBM-V3 Fingerprint Sensor + 000a MSO1300-E3 Fingerprint Sensor + 000b MSO1300-V3 Fingerprint Sensor + 000c MSO1350-E3 Fingerprint Sensor & SmartCard Reader + 000d MSO1350-V3 Fingerprint Sensor & SmartCard Reader + 000e MorphoAccess SIGMA Biometric Access Control Terminal + 9015 Tablet 2 + 9024 Tablet 2 + 9039 Tablet 2 secure multifunction biometric tablet + 904d Tablet 2 secure multifunction biometric tablet + 904e Tablet 2 secure multifunction biometric tablet + 9091 Tablet 2 secure multifunction biometric tablet + 9092 Tablet 2 secure multifunction biometric tablet + f000 Tablet 2 secure multifunction biometric tablet + f003 Tablet 2 secure multifunction biometric tablet + f006 Tablet 2 secure multifunction biometric tablet + f00e Tablet 2 secure multifunction biometric tablet +226e DISPLAX +228d 8D Technologies inc. + 0001 Terminal Bike Key Reader +22a4 VERZO Technology +22a6 Pie Digital, Inc. + ffff PieKey "beta" 4GB model 4E4F41482E4F5247 (SM3251Q BB) +22a7 Fortinet Technologies + 1001 FortiGate Device +22b1 Secret Labs LLC + 1000 Netduino MCU pcb +22b8 Motorola PCS + 0001 Wally 2.2 chipset + 0002 Wally 2.4 chipset + 0005 V.60c/V.60i GSM Phone + 002e XT1806 + 0830 2386C-HT820 + 0833 2386C-HT820 [Flash Mode] + 0850 Bluetooth Device + 1001 Patriot 1.0 (GSM) chipset + 1002 Patriot 2.0 chipset + 1005 T280e GSM/GPRS Phone + 1101 Patriot 1.0 (TDMA) chipset + 1801 Rainbow chipset flash + 2035 Bluetooth Device + 2805 GSM Modem + 2821 T720 GSM Phone + 2822 V.120e GSM Phone + 2823 Flash Interface + 2a01 MSM6050 chipset + 2a02 CDMA modem + 2a03 MSM6050 chipset flash + 2a21 V710 GSM Phone (P2K) + 2a22 V710 GSM Phone (AT) + 2a23 MSM6100 chipset flash + 2a41 MSM6300 chipset + 2a42 Usb Modem + 2a43 MSM6300 chipset flash + 2a61 E815 GSM Phone (P2K) + 2a62 E815 GSM Phone (AT) + 2a63 MSM6500 chipset flash + 2a81 MSM6025 chipset + 2a83 MSM6025 chipset flash + 2ac1 MSM6100 chipset + 2ac3 MSM6100 chipset flash + 2d78 XT300[SPICE] + 2e82 XT1541 [Moto G 3rd Gen] + 2e83 XT1033 [Moto G], PTP mode + 3001 A835/E1000 GSM Phone (P2K) + 3002 A835/E1000 GSM Phone (AT) + 3801 C350L/C450 (P2K) + 3802 C330/C350L/C450/EZX GSM Phone (AT) + 3803 Neptune LT chipset flash + 4001 OMAP 1.0 chipset + 4002 A920/A925 UMTS Phone + 4003 OMAP 1.0 chipset flash + 4008 OMAP 1.0 chipset RDL + 41d6 Droid X (Windows media mode) + 41d9 Droid/Milestone + 41db Droid/Milestone (Debug mode) + 41de Droid X (PC mode) + 4204 MPx200 Smartphone + 4214 MPc GSM + 4224 MPx220 Smartphone + 4234 MPc CDMA + 4244 MPx100 Smartphone + 4285 Droid X (Mass storage) + 42d9 XT910 [Droid RAZR] + 4801 Neptune LTS chipset + 4803 Neptune LTS chipset flash + 4810 Triplet GSM Phone (storage) + 4901 Triplet GSM Phone (P2K) + 4902 Triplet GSM Phone (AT) + 4903 Neptune LTE chipset flash + 4a01 Neptune LTX chipset + 4a03 Neptune LTX chipset flash + 4a32 L6-imode Phone + 5801 Neptune ULS chipset + 5803 Neptune ULS chipset flash + 5901 Neptune VLT chipset + 5903 Neptune VLT chipset flash + 6001 Dalhart EZX + 6003 Dalhart flash + 6004 EZX GSM Phone (CDC Net) + 6006 MOTOROKR E6 + 6008 Dalhart RDL + 6009 EZX GSM Phone (P2K) + 600a Dalhart EZX config 17 + 600b Dalhart EZX config 18 + 600c EZX GSM Phone (USBLAN) + 6021 JUIX chipset + 6023 JUIX chipset flash + 6026 Flash RAM Downloader/miniOS + 6027 USBLAN + 604c EZX GSM Phone (Storage) + 6101 Talon integrated chipset + 6401 Argon chipset + 6403 Argon chipset flash + 6411 ROKR Z6 (print mode) + 6415 ROKR Z6 (MTP mode) + 6422 ROKR Z6 (modem mode) + 6426 ROKR Z6 (storage mode) + 6604 Washington CDMA Phone + 6631 CDC Modem + 7001 Q Smartphone + 7086 Atrix + 70a8 Xoom Tablet + fe01 StarTAC III MS900 +22b9 eTurboTouch Technology, Inc. + 0006 Touch Screen +22ba Technology Innovation Holdings, Ltd + 0108 Double Shock Steering Wheel HID + 0109 Double Shock Steering Wheel Hub +22c9 StepOver GmbH + 0601 naturaSign Pad Colour + 0701 naturaSign Pad Mobile + 0801 naturaSign Pad Comfort + 0881 naturaSign Pad Flawless + 0901 naturaSign Pad Classic + 09e1 naturaSign Pad Biometric + 0ce1 duraSign Pad Brilliance + 0cf1 duraSign Pad Biometric 5.0 + 0d01 duraSign 10.0 + 0df1 duraSign Pad Biometric 10.0 +22cd Kinova Robotics Inc. +22d4 Laview Technology + 1301 Mionix NAOS 8200 [STM32F103 MCU] + 1308 Mionix Avior 7000 + 130c Mionix Naos 7000 + 1316 Mionix Castor +22d9 OPPO Electronics Corp. + 2765 Oppo N1 + 2767 Oppo Find 5 (X909) +22db Phase One + 0003 IQ3 100MP IG030372 +22dc Mellanox Technologies + 0004 BlueField SOC +22de WeTelecom Incorporated +22df Medicom MTD, Ltd +22e0 secunet Security Networks AG + 0002 SINA Flash Drive + 0003 SINA ID Token A +22e8 Cambridge Audio + 6512 651N Audio + 6969 Audio Prototype + 7512 751R Audio + 770a X70A Audio + 850c 851C Audio [Azur 850C] + 851d 851D Audio [Azur 851D] + ca02 Audio + ca04 Audio + ca06 AmpMagic + dac2 DacMagic Plus + dac3 Azur DacMagic 100 + dac4 Azur DacMagic 100 + dac6 DacMagicXS 2.0 + dac8 Audio +2304 Pinnacle Systems, Inc. + 0109 Studio PCTV USB (SECAM) + 0110 Studio PCTV USB (PAL) + 0111 Miro PCTV USB + 0112 Studio PCTV USB (NTSC) with FM radio + 0201 Systems MovieBox Device + 0204 MovieBox USB_B + 0205 DVC 150B + 0206 Systems MovieBox Deluxe Device + 0207 Dazzle DVC90 Video Device + 0208 Studio PCTV USB2 + 020e PCTV 200e + 020f PCTV 400e BDA Device + 0210 Studio PCTV USB (PAL) with FM radio + 0212 Studio PCTV USB (NTSC) + 0213 500-USB Device + 0214 Studio PCTV USB (PAL) with FM radio + 0216 PCTV 60e + 0219 PCTV 260e + 021a Dazzle DVC100 Audio Device + 021b Dazzle DVC130/DVC170 + 021d Dazzle DVC130 + 021e Dazzle DVC170 + 021f PCTV Sat HDTV Pro BDA Device + 0222 PCTV Sat Pro BDA Device + 0223 DazzleTV Sat BDA Device + 0225 Remote Kit Infrared Transceiver + 0226 PCTV 330e + 0227 PCTV for Mac, HD Stick + 0228 PCTV DVB-T Flash Stick + 0229 PCTV Dual DVB-T 2001e + 022a PCTV 160e + 022b PCTV 71e [Afatech AF9015] + 0232 PCTV 170e + 0236 PCTV 72e [DiBcom DiB7000PC] + 0237 PCTV 73e [DiBcom DiB7000PC] + 023a PCTV 801e + 023b PCTV 801e SE + 023d PCTV 340e + 023e PCTV 340e SE + 0300 Studio Linx Video input cable (NTSC) + 0301 Studio Linx Video input cable (PAL) + 0302 Dazzle DVC120 + 0419 PCTV Bungee USB (PAL) with FM radio + 061d PCTV Deluxe (NTSC) Device + 061e PCTV Deluxe (PAL) Device + 2304 1689 +230d Teracom + 0103 Huwaii 3g wireless modem +2314 INQ Mobile +2318 Shining Technologies, Inc. [hex] + 0011 CitiDISK Jr. IDE Enclosure +2319 Tronsmart + 0014 TSM01 Air Mouse + Keyboard +232b Pantum Ltd. + 0810 P2000 +232e EA Elektro-Automatik GmbH & Co. KG + 0010 EA-PS-2000 B Series Power Supply +2340 Teleepoch +2341 Arduino SA + 0001 Uno (CDC ACM) + 0010 Mega 2560 (CDC ACM) + 0036 Leonardo Bootloader + 003b Serial Adapter (CDC ACM) + 003d Due Programming Port + 003e Due + 003f Mega ADK (CDC ACM) + 0042 Mega 2560 R3 (CDC ACM) + 0043 Uno R3 (CDC ACM) + 0044 Mega ADK R3 (CDC ACM) + 0045 Serial R3 (CDC ACM) + 0049 ISP + 8036 Leonardo (CDC ACM, HID) + 8038 Robot Control Board (CDC ACM, HID) + 8039 Robot Motor Board (CDC ACM, HID) +2349 P2 Engineering Group, LLC +234b Free Software Initiative of Japan + 0000 Gnuk Token + 0001 NeuG True RNG +2357 TP-Link + 0005 M7350 4G Mi-Fi Router + 0100 TL-WN8200ND [Realtek RTL8192CU] + 0101 RTL8812AU Archer T4U 802.11ac + 0103 Archer T4UH wireless Realtek 8812AU + 0105 Archer T1U 802.11a/n/ac Wireless Adapter [MediaTek MT7610U] + 0106 Archer T9UH v1 [Realtek RTL8814AU] + 0107 TL-WN821N v5/v6 [RTL8192EU] + 0108 TL-WN822N Version 4 RTL8192EU + 0109 TL-WN823N v2/v3 [Realtek RTL8192EU] + 010b Archer T2UHP [MediaTek MT7610U] + 010c TL-WN722N v2/v3 [Realtek RTL8188EUS] + 010d Archer T4U v2 [Realtek RTL8812AU] + 010e Archer T4UH v2 [Realtek RTL8812AU] + 010f Archer T4UHP [Realtek RTL8812AU] + 0115 Archer T4U ver.3 + 011e AC600 wireless Realtek RTL8811AU [Archer T2U Nano] + 0120 Archer T2U PLUS [RTL8821AU] + 012d Archer T3U [Realtek RTL8812BU] + 0200 MA 180 Zero CD + 0201 HSUPA Modem MA180 + 0600 UE300 10/100/1000 LAN (mass storage CD-ROM mode) [Realtek RTL8153] + 0601 UE300 10/100/1000 LAN (ethernet mode) [Realtek RTL8153] +2366 Bitmanufaktur GmbH + 0001 Reserved Prototyping PID + 0002 OpenBeacon USB 2 + 0003 OpenPCD 2 RFID Reader for 13.56MHz + 0004 OpenBeacon + 0005 Blinkenlights WDIM + 0006 Blinkenlights WMCU + 0007 OpenBeacon Ethernet EasyReader PoE II - Active 2.4GHz RFID Reader + 0008 OpenBeacon WLAN + 0009 OpenPCD 2 RFID Reader for 13.56MHz + 000a OpenPCD 2 Audio & LCD Display +2367 Teenage Engineering + 0002 OP-1 Portable synthesizer + 000c OP-Z Portable synthesizer +2368 Peterson Electro-Musical Products Inc. + 0001 BBS-1 [BodyBeat Sync] +236a SiBEAM + 1965 SB6501 802.11ad Wireless Network Adapter +2373 Pumatronix Ltda + 0001 5 MegaPixel Digital Still Camera [DSC5M] +2375 Digit@lway, Inc. + 0001 Digital Audio Player +2378 OnLive + 100a Universal Wireless Controller +237d Cradlepoint + 0400 MC400 +2386 Raydium Corporation + 3125 Touch System + 4328 Touch System + 432f Touch System +238b Hytera Communications + 0a11 DMR Radio +239a Adafruit + 0001 CDC Bootloader + 801e Trinket M0 +23a0 BIFIT + 0001 Token iBank2key + 0002 iBank2Key Type M Token + 0003 iToken + 0008 MS_KEY K - Angara +23a6 Tronical Components GmbH + 2000 Gibson Firebird X Pedal Board + 2001 Gibson Firebird X Switch Board +23b4 Dental Wings Inc. + 0200 DW0200 Color Camera + 0300 DW0300 Hight Speed Monochrome Camera +23c7 Gemini + 1021 FirstMix +23fc SesKion GmbH + 0201 SPI-Simulyzer box for SPI data communication + 0202 PSI5-Simulyzer box for PSI5 (Peripheral-Sensor-Interfacs) data communication + 0203 SENT-Simulyzer box for SENT data communication + 0204 DSI-Simulyzer box for DSI3 data communication +2405 Custom Computer Services, Inc + 0002 West Mountain Radio RIGblaster Advantage Audio + 0003 West Mountain Radio RIGblaster Advantage +2406 SANHO Digital Electronics Co., Ltd. + 6688 PD7X Portable Storage +2420 IRiver +242e Vossloh-Schwabe Deutschland GmbH + 0001 DALI Master + 0002 LiCS Bootloader Mode + 0003 LiCS Running Mode + 0004 iProgrammer + 0005 NFC programming device +2433 ASETEK + b200 [NZXT Kraken X60] +2443 Aessent Technology Ltd + 00dc aes220 FPGA Mini-Module +2457 Ocean Optics Inc. + 100a HR2000 Spectrometer 1.00.0 + 1012 HR4000 Spectrometer +2458 Bluegiga Technologies + 0001 BLED112 Bluetooth 4.0 Single Mode Dongle +245f Chord Electronics Limited +2464 Nest + 0001 Learning Thermostat + 0002 Learning Thermostat (2nd Generation) + 0010 Protect : Smoke + Carbon Monoxide + 0020 Heat Link +2466 Fractal Audio Systems + 8003 Axe-Fx II + 8010 Axe-FX III +2476 YEI Technology + 1040 3-Space Embedded Sensor +2478 Tripp-Lite + 2008 U209-000-R Serial Port +248a Maxxter + 8366 Wireless Optical Mouse ACT-MUSW-002 + 8367 Telink Wireless Receiver +249c M2Tech s.r.l. +24a4 Primare AB + 0002 I15_v1.06 [Primare Audio DAC] +24ae Shenzhen Rapoo Technology Co., Ltd. + 0001 KX Keyboard + 0197 meva Barcode Scanner + 1813 E9260 Wireless Multi-mode Keyboard + 2000 2.4G Wireless Device Serial + 2001 5 GHz Wireless Receiver + 2003 5GHz Wireless Transceiver + 4110 Optical Gaming Mouse [V280] + 6000 Wireless Audio +24c0 Chaney Instrument + 0003 Model 01036 weather center +24c6 ThrustMaster, Inc. + 5000 Razer Atrox Gaming Arcade Stick + 5300 PowerA Mini ProEX Controller for Xbox 360 + 5303 Airflo Wired Controller for Xbox 360 + 530a ProEX Controller for Xbox 360 + 531a Pro Ex mini for XBOX + 5397 FUS1ON Tournament Controller + 541a PowerA CPFA115320-01 [Mini Controller for Xbox One] + 542a Spectra for Xbox One + 543a PowerA Wired Controller for Xbox One + 5500 Horipad EX2 Turbo + 5501 Hori Real Arcade Pro.VX-SA for Xbox 360 + 5502 Hori Fighting Stick VX Alt for Xbox 360 + 5503 Hori Fighting Edge for Xbox 360 + 5506 Hori Soulcalibur V Stick for Xbox 360 + 550d Hori Gem Controller for Xbox 360 + 550e Real Arcade Pro V Kai for Xbox One / Xbox 360 + 551a Fusion Pro Controller + 561a Fusion Controller for Xbox One + 5b00 Ferrari 458 Italia Racing Wheel + 5b02 GPX Controller + 5d04 Sabertooth Elite + fa00 INF-8032385 Disney Infinity Reader + fafb Aplay Controller + fafd Afterglow Gamepad for Xbox 360 + fafe Rock Candy Gamepad for Xbox 360 +24cf Lytro, Inc. + 00a1 Light Field Camera +24dc Aladdin R.D. + 0406 JaCarta SF GOST +24e0 Yoctopuce Sarl +24e1 Paratronic + 3001 Adp-usb + 3005 Radius +24e3 K-Touch +24ea Meva + 0197 Barcode Scanner +24ed Zen Group + 044d Chat Headset +24f0 Metadot + 0105 Das Keyboard 4 + 0140 Das Keyboard 4 + 2020 Das Keyboard 5Q +24ff Acroname Inc. +2500 Ettus Research LLC + 0020 USRP B210 + 0021 USRP B200-mini + 0022 USRP B205-mini + 0200 USRP B200 +2516 Cooler Master Co., Ltd. + 0003 Storm Xornet + 0004 Storm QuickFire Rapid Mechanical Keyboard + 0006 Storm Recon + 0007 Storm Sentinel Advance II + 0009 Storm Quick Fire PRO + 0011 Storm Quick Fire TK 6keys + 0014 Storm Quick Fire TK Nkeys + 0015 Storm QuickFire Pro/Ultimate keyboard + 0017 CM Storm Quick Fire Stealth + 001a Storm Quick Fire XT + 0020 QuickFire Rapid-i Keyboard + 0027 CM Storm Coolermaster Novatouch TKL + 002d Alcor mouse + 0042 Masterkeys Lite L Combo RGB Keyboard + 0044 Masterkeys Lite L Combo RGB Mouse + 0046 Masterkeys PRO L + 0047 MasterKeys Pro L + 0055 MasterKeys L + 1006 MasterCase SL600M + 9494 Sirus Headset +2520 ANA-U GmbH + 0001 EasyPrinter S3 +2527 Software Bisque + 1388 Paramount 5 +2537 Norelsys + 1066 NS1066 + 1068 NS1068/NS1068X SATA Bridge Controller +2544 Energy Micro AS +2546 Ravensburger + e301 TipToi Pen +2548 Pulse-Eight + 1001 CEC Adapter + 1002 CEC Adapter +254e SHF Communication Technologies AG + e2b3 SHF 58035 A BiasBoard +2554 ASSA ABLOY AB +2555 Basis Science Inc. + 0001 B1 Fitness Band +255e Beijing Bonxeon Technology Co., Ltd. + 0001 Device + 0002 Dual +2560 e-con Systems + c152 See3CAM_CU51 5 Mpx monochrome camera +2563 ShenZhen ShanWan Technology Co., Ltd. + 031d DXT Mouse + 0523 BM0523 WirelessGamepad + 0575 ZD-V+ Wired Gaming Controller +256b Perreaux Industries Ltd + 0121 Audiant 80i +256f 3Dconnexion + c62e SpaceMouse Wireless (cabled) + c62f SpaceMouse Wireless Receiver + c631 SpaceMouse Pro Wireless (cabled) + c632 SpaceMouse Pro Wireless Receiver + c633 SpaceMouse Enterprise + c635 SpaceMouse Compact + c651 CadMouse Wireless + c652 Universal Receiver + c654 CadMouse Pro Wireless + c657 CadMouse Pro Wireless Left +2573 ESI Audiotechnik GmbH + 0017 MAYA22 +2574 AVer Information, Inc. + 0901 VC520 + 0910 CAM520 + 0920 VC320 + 0930 CAM530 + 0940 CAM340 + 0950 VC322 + 0960 VB342 +2575 Weida Hi-Tech Co., Ltd. +2576 AFO Co., Ltd. + 0003 TCM + 0005 BL [Boot Loader] + 0011 THM +2578 Pluscom + 4168 2.4GHZ Wireless Arc Folding Mouse +2581 Plug-up + 1807 Generic HID Smartcard + 1808 WinUSB Smartcard + f1d0 FIDO U2F Security Key +258d Sequans Communications +259a TriQuint Semiconductor +25a7 Areson Technology Corp + 2410 Laser mouse + fa23 2.4G Receiver + fa61 Elecom Co., Ltd MR-K013 Multicard Reader +25b5 FlatFrog + 0002 Multitouch 3200 +25bb Brunner Elektronik AG + 0063 PRT.5105 [Yoke] + 0064 PRT.5105 [reserved] + 0065 PRT.5096 [Battery Management System] + 0066 PRT.5096 [Battery Management System] + 0067 PRT.5094 + 0068 PRT.5094 + 0069 PRT.5119 [Ethernet2CAN LC Gateway] + 006a PRT.5113 [CLS CANaerospace Gateway] + 006b PRT.5123 + 006c PRT.5123 [reserved] + 006d PRT.5127 + 00ff MSP430 HID Update Agent +25bf Elegant Invention + 0001 Isostick + 0002 Isostick updater +25c4 ARCAM +25c6 Vitus Audio (AVA Group A/S) +25c8 Visual Planet Ltd + 0014 Single User touchfoil(tm) (SU2-80) +25da Netatmo + 0001 Weather Station +25dd Bit4id Srl + 1101 miniLector-s + 1201 cryptokey + 2221 iAM + 2311 keyfour-a1 + 2321 CKey4 + 2341 tokenME FIPS v3 + 2351 Digital DNA Key + 2354 Digital-DNA Key + 2361 Digital-DNA Key BT + 2362 Digital-DNA Key + 2371 TokenME EVO v2 + 23b4 ArubaKey AK901 + 3111 miniLector EVO + 3211 miniLector AIR EVO + 3403 miniLector AIR NFC v3 + 3503 mLector AIR DI V3 + b001 miniLector Blue +25e3 Lumigon +25f0 ShanWan + c131 Gioteck PS3 2.4G Wireless Controller +25fb Pentax Ricoh Imaging Co., Ltd + 0102 K-5 +2604 Tenda + 0012 U12 +2625 MilDef AB +2626 Aruba Networks + ea60 UART Bridge Controller [cp210x] +262a SAVITECH Corp. + 100e SA9027 Audio Streaming Controller + 10e0 SA9023 Audio Streaming Controller + 9020 SA9020 audio controller + 9023 SA9023 audio controller + 9027 SA9027 audio controller + 9226 SA9226 192KHz audio controller + 9227 SA9227 384KHz audio controller + 9228 SA9228 384KHz/DSD audio controller +2632 TwinMOS + 3209 7-in-1 Card Reader +2639 Xsens + 0001 MTi-10 IMU + 0002 MTi-20 VRU + 0003 MTi-30 AHRS + 0011 MTi-100 IMU + 0012 MTi-200 VRU + 0013 MTi-300 AHRS + 0017 MTi-G 7xx GNSS/INS + 0100 Body Pack + 0101 Awinda Station + 0102 Awinda Dongle + 0103 Sync Station + 0200 MTw + 0300 Motion Tracker Development Board + 0301 MTi Converter + d00d Wireless Receiver +264a Thermaltake + 1004 Ventus +2650 Electronics For Imaging, Inc. [hex] + 1311 eBeam Classic [Luidia] +2659 Sundtek + 1101 TNT DVB-T/DAB/DAB+/FM + 1201 FM Transmitter/Receiver + 1202 MediaTV Analog/FM/DVB-T + 1203 MediaTV Analog/FM/DVB-T MiniPCIe + 1204 MediaTV Analog/FM/ATSC + 1205 SkyTV Ultimate V + 1206 MediaTV DVB-T MiniPCIe + 1207 Sundtek HD Capture + 1208 Sundtek SkyTV Ultimate III + 1209 MediaTV Analog/FM/ATSC MiniPCIe + 1210 MediaTV Pro III (EU) + 1211 MediaTV Pro III (US) + 1212 MediaTV Pro III MiniPCIe (EU) + 1213 MediaTV Pro III MiniPCIe (US) +2662 Moog Music Inc. +266e Silicon Integrated Systems +2672 GoPro + 0004 Hero 3 + 0006 HERO 3+ Silver Edition + 0007 HERO 3+ Black + 000e HERO4 Black + 0011 Hero 3+ Black +2676 Basler AG + ba02 ace + ba03 ba03 dart Vision Caera + ba04 ba04 pulse Vision Camera + ba05 Vision Camera + ba06 Vision Camera + ba07 Vision Camera + ba08 Vision Camera + ba09 Vision Camera + ba0a Vision Camera + ba0b Vision Camera + ba0c Vision Camera + ba0d Vision Camera + ba0e Vision Camera + ba0f Vision Camera +2685 Cardo Peripheral Systems LTD + 0900 [Packtalk Bold Bluetooth Motorcycle Intercom] +2687 Fitbit Inc. + fb01 Base Station +2689 StepOver International GmbH + 0601 naturaSign Pad POS + 0901 naturaSign Pad Light + 0ce1 Pad Vivid US + 0cf1 Pad Biometric US 5.0 + 0d01 duraSign Pad US 10.0 + 0df1 duraSign Pad Biometric US 10.0 +268b Dimension Engineering + 0101 DELink 2 + 0201 Sabertooth 2x32 + 0405 Evolv DNA 200 + 0406 Evolv DNA 200 + 0407 Evolv DNA 200 + 0408 Evolv DNA 75 + 0409 Evolv DNA 250 + 0412 Evolv DNA 60 + 0413 Evolv DNA 200 + 0414 Evolv DNA 250 + 0415 Evolv DNA 75 + 0416 Evolv DNA 60 + 0417 Evolv DNA Go + 0419 Evolv DNA 250 Color + 0423 Evolv DNA 200 + 0424 Evolv DNA 250 + 0425 Evolv DNA 75 + 0426 Evolv DNA 60 + 8405 Evolv DNA 200 (recovery mode) + 8406 Evolv DNA 200 (recovery mode) + 8407 Evolv DNA 200 (recovery mode) + 8408 Evolv DNA 75 (recovery mode) + 8409 Evolv DNA 250 (recovery mode) + 8412 Evolv DNA 60 (recovery mode) + 8413 Evolv DNA 200 (recovery mode) + 8414 Evolv DNA 250 (recovery mode) + 8415 Evolv DNA 75 (recovery mode) + 8416 Evolv DNA 60 (recovery mode) + 8423 Evolv DNA 200 (recovery mode) + 8424 Evolv DNA 250 (recovery mode) + 8425 Evolv DNA 75 (recovery mode) + 8426 Evolv DNA 60 (recovery mode) +26a9 Research Industrial Systems Engineering + 0001 Payment Terminal v1.0 +26aa Yaesu Musen + 0001 FT-1D + 000e FTA-550 + 000f FTA-750 +26b5 Electrocompaniet + 0002 ECD 2 + 0003 ECD 2 (Audio Class 1) + 0004 PI 2D + 0005 PI 2D (Audio Class 1) + 0006 ECI 6 + 0007 ECI 6 (Audio Class 1) + 0020 ECI 80 +26bd Integral Memory + 9917 Fusion Flash Drive +26e2 Ingenieurbuero Dietzsch und Thiele, PartG +26f2 Micromega + 0200 MyDac +2707 Bardac Corporation + 0005 drive.web +270d Rosand Technologies + 1001 R-Idge Bootloader + 1002 R-Idge Router +2717 Xiaomi Inc. + 0011 100Mbps Network Card Adapter + 0360 Mi3W + 0368 Mi4 LTE + 3801 Mi ANC & Type-C In-Ear Earphones + 4106 MediaTek MT7601U [MI WiFi] + ff08 Redmi Note 3 (ADB Interface) + ff10 Mi/Redmi series (PTP) + ff18 Mi/Redmi series (PTP + ADB) + ff40 Mi/Redmi series (MTP) + ff48 Mi/Redmi series (MTP + ADB) + ff60 redmi prime 2 + ff68 Mi-4c + ff80 Mi/Redmi series (RNDIS) + ff88 Mi/Redmi series (RNDIS + ADB) +272a StarLeaf Ltd. +272c Signum Systems + 7d13 I-jet +2730 Citizen + 0fff CT-S2000/4000/310/CLP-521/621/631/CL-S700 Series + 1004 PPU-700 + 2002 CT-S2000 Thermal Printer (Parallel mode) + 200f CT-S310 Label printer +2735 DigitalWay + 0003 MPIO HS100 + 1001 MPIO FY200 + 1002 MPIO FL100 + 1003 MPIO FD100 + 1004 MPIO HD200 + 1005 MPIO HD300 + 1006 MPIO FG100 + 1007 MPIO FG130 + 1008 MPIO FY300 + 1009 MPIO FY400 + 100a MPIO FL300 + 100b MPIO HS200 + 100c MPIO FL350 + 100d MPIO FY500 + 100e MPIO FY500 + 100f MPIO FY600 + 1012 MPIO FL400 + 1013 MPIO HD400 + 1014 MPIO HD400 + 1016 MPIO FY700 + 1017 MPIO FY700 + 1018 MPIO FY800 + 1019 MPIO FY800 + 101a MPIO FY900 + 101b MPIO FY900 + 102b MPIO FL500 + 102c MPIO FL500 + 103f MPIO FY570 + 1040 MPIO FY570 + 1041 MPIO FY670 + 1042 MPIO FY670 + 1043 HCT HMD-180A + 1044 HCT HMD-180A +273f Hughski Limited + 1000 ColorHug bootloader + 1001 ColorHug + 1002 ColorHug+ + 1003 ColorHug+ Bootloader + 1004 ColorHug2 + 1005 ColorHug2 bootloader +2756 Victor Hasselblad AB + 0002 X1D Camera +2759 Philip Morris Products S.A. + 0003 IQOS Pocket Charger 2.4 +2765 Firstbeat Technologies, Ltd. + 0004 Bodyguard 2 +2766 LifeScan + 0000 OneTouch Verio +2770 NHJ, Ltd + 0a01 ScanJet 4600 series + 905c Che-Ez Snap SNAP-U/Digigr8/Soundstar TDC-35 + 9060 A130 + 9120 Che-ez! Snap / iClick Tiny VGA Digital Camera + 9130 TCG 501 + 913c Argus DC-1730 + 9150 Mini Cam + 9153 iClick 5X + 915d Cyberpix S-210S / Little Tikes My Real Digital Camera + 930b CCD Webcam(PC370R) + 930c CCD Webcam(PC370R) +27a8 Square, Inc. + a120 Contactless + Chip Reader +27b8 ThingM + 01ed blink(1) +27bd Codethink Ltd. + 0001 Slab Node Manager + 0002 Slab Node Manager JTAG +27c0 Cadwell Laboratories, Inc. + 0818 Paperlike HD-FT +27c6 Shenzhen Goodix Technology Co.,Ltd. + 5117 Fingerprint Reader + 5201 Fingerprint Reader + 5301 Fingerprint Reader + 530c Fingerprint Reader + 532d Fingerprint + 5381 Fingerprint Reader + 5385 Fingerprint Reader + 538c Fingerprint Reader + 5395 Fingerprint Reader + 5584 Fingerprint Reader + 55b4 Fingerprint Reader + 5740 Fingerprint Reader +27d4 Blackstar Amplification Limited +27dd Mindeo + 0002 Mindeo Virtual COM Port +27f2 Softnautics LLP +2803 StarLine LLC. + 0001 Controller Area Network car alarm module [SLCAN-2] +2806 SIMPASS + 0001 N-PASS X1 +2817 Signal Hound, Inc. + 0002 BB60C Spectrum Analyzer + 0004 SM200A Spectrum Analyzer +2818 Codex Digital Limited + 0001 Transfer Drive Dock +2821 ASUSTek Computer Inc. + 0161 WL-161 802.11b Wireless Adapter [SiS 162U] + 160f WL-160g 802.11g Wireless Adapter [Envara WiND512] + 3300 WL-140 / Hawking HWU36D 802.11b Wireless Adapter [Intersil PRISM 3] +2822 REFLEXdigital +2833 Oculus VR, Inc. + 0001 Rift Developer Kit 1 + 0021 Rift DK2 + 0031 Rift CV1 + 0101 Latency Tester + 0137 Quest Headset + 0201 Camera DK2 + 0211 Rift CV1 Sensor + 0330 Rift CV1 Audio + 1031 Rift CV1 + 2021 Rift DK2 + 2031 Rift CV1 + 3031 Rift CV1 +2836 OUYA +286b STANEO SAS + 0003 D6BB/D9 seismic digitizer +2886 Seeed Technology Co., Ltd. + 0002 Seeeduino Lite +2890 Teknic, Inc + 0213 ClearPath 4-axis Comm Hub +2899 Toptronic Industrial Co., Ltd + 012c Camera Device +289b Dracal/Raphnet technologies + 0001 Gamecube/N64 controller v2.2 + 0002 2nes2snes + 0003 4nes4snes + 0004 Gamecube/N64 controller v2.3 + 0005 Saturn (Joystick mode) + 0006 Saturn (Mouse mode) + 0007 Famicom controller + 0008 Dreamcast (Joystick mode) + 0009 Dreamcast (Mouse mode) + 000a Dreamcast (Keyboard mode) + 000b Gamecube/N64 controller v2.9 (Keyboard mode) + 000c Gamecube/N64 controller v2.9 (Joystick mode) + 000e VirtualBoy controller + 0010 WUSBMote v1.2 (Joystick mode) + 0011 WUSBMote v1.2 (Mouse mode) + 0012 WUSBMote v1.2.1 (Joystick mode) + 0013 WUSBMote v1.2.1 (Mouse mode) + 0014 WUSBMote v1.3 (Joystick mode) + 0015 WUSBMote v1.3 (Mouse mode) + 0016 WUSBMote v1.3 (I2C interface mode) + 0017 Gamecube/N64 controller v3.0 + 0018 Atari Jaguar controller + 0019 MultiDB9joy v3 + 001a MultiDB9joy v3 (multitap mode) + 0100 Dual-relay board + 0500 Energy meter + 0502 Precision barometer +289d Seek Thermal, Inc. + 0010 PIR206 Thermal Camera [Seek Compact] +28bd XP-Pen + 0920 Star G960 Graphic Tablet +28c7 Ultimaker B.V. + 0001 3D printer serial interface +28d4 Devialet + 0008 120/200/250/400/800/D-Premier +28de Valve Software + 1102 Wired Controller + 1142 Wireless Steam Controller + 2000 Lighthouse FPGA RX + 2012 Virtual Reality Controller [VRC] + 2101 Watchman Dongle + 2500 Lighthouse Base Station +28e0 PT. Prasimax Inovasi Teknologi + 1001 BTS Monitoring Config for Prototype + 5740 TRUMON TS-107 + 5741 TRUMON TS-108 +28e9 GDMicroelectronics + 0189 GD32 DFU Bootloader (Longan Nano) +28f3 Clover Network, Inc. + 2000 Mobile Wi-Fi (C200) + 3000 Mini + 4000 Flex +28f9 Profitap HQ BV + 0001 Profishark 1G Black + 0003 Profishark 1G+ + 0004 Profishark 1G + 0005 Profishark 10G + 0006 Profishark 100M +290c R. Hamilton & Co. Ltd. + 4b4d Mercury iPod Dock +2912 Audioengine + 20c8 D1 24-bit DAC + 30c8 D1 24-bit DAC +2916 Yota Devices +2931 Jolla Oy + 0a01 Jolla Phone MTP + 0a02 Jolla Phone Developer + 0a05 Jolla PC connection + 0a07 Phone MTP + 0afe Jolla charging only +2939 Zaber Technologies Inc. + 4959 A-MCB2 + 495a X-MCB1 + 495b X-MCB2 + 49b1 X-MCB1 + 49b2 X-MCB2 + 49c1 X-MCC1 + 49c2 X-MCC2 + 49c3 X-MCC3 + 49c4 X-MCC4 +2957 Obsidian Research Corporation + 0001 Management Console +2961 Miselu + 0001 C.24 keyboard +296b Xacti Corporation + 3917 CX-WE100 Camera +2972 FiiO Electronics Technology + 0007 X3 2nd gen audio player / DAC +298d Next Biometrics + 2020 NB-2020-U Fingerprint Reader +29bd Silicon Works + 4101 Multi-touch Device +29c1 Taztag + 1105 M17-G903-1 [Tazpad] + 1107 M17-G903-A [Tazpad] (CCID) +29c2 Lewitt GmbH + 0001 DGT 650 + 0003 DGT 450 + 0009 DGT 260 + 0011 Stream 4x5 +29c3 Noviga +29e2 Huatune Technology (Shanghai) Co., Ltd. +29e7 Brunel University +29e8 4Links Limited +29ea Kinesis Corporation + 0102 Advantage2 Keyboard +29f1 Canaan Creative Co., Ltd + 33f1 Avalon nano 1.0 + 33f2 Avalon USB2IIC Converter + 33f3 Avalon nano 2.0 + 40f1 Avalon4 mini +2a03 dog hunter AG + 0001 Linino ONE (bootloader) + 0036 Arduino Leonardo (bootloader) + 0037 Arduino Micro (bootloader) + 0038 Arduino Robot Control (bootloader) + 0039 Arduino Robot Motor (bootloader) + 003a Arduino Micro ADK rev3 (bootloader) + 003b Arduino usb2serial + 003c Arduino Explora (bootloader) + 003d Arduino Due (usb2serial) + 003e Arduino Due + 0041 Arduino Yun (bootloader) + 0042 Arduino Mega 2560 Rev3 + 0043 Arduino Uno Rev3 + 004d Arduino Zero Pro (bootloader) + 8001 Linino ONE (CDC ACM) + 8036 Arduino Leonardo (CDC ACM) + 8037 Arduino Micro (CDC ACM) + 8038 Arduino Robot Control (CDC ACM) + 8039 Arduino Robot Motor (CDC ACM) + 803a Arduino Micro ADK rev3 (CDC ACM) + 803c Arduino Explora (CDC ACM) + 8041 Arduino Yun (CDC ACM) + 804d Arduino Zero Pro (CDC ACM) +2a0e Shenzhen DreamSource Technology Co., Ltd. +2a13 Grabba International + 0000 S-Series data capture device +2a19 Numato Systems Pvt. Ltd + 1002 Mimas V2 Spartan6 FPGA Development Board + 5440 TimVideos' HDMI2USB Opsis (FX2) - Unconfigured device + 5441 TimVideos' HDMI2USB Opsis (FX2) - Firmware load/upgrade + 5442 TimVideos' HDMI2USB Opsis (FX2) - HDMI/DVI Capture Device +2a1d Oxford Nanopore Technologies, Ltd + 0000 MinION + 0001 MinION + 0010 VolTRAX + 0011 VolTRAX + 0020 GridION + 0021 GridION +2a37 RTD Embedded Technologies, Inc. + 5110 UPS35110/UPS25110 +2a39 RME + 3fb0 Babyface Pro (Class Compliant Mode) + 3fc0 Babyface Pro + 3fc1 Fireface UFX+ + 3fc2 Fireface UFX+ + 3fd1 Fireface UFX+ +2a3c Trinamic Motion Control GmbH & Co KG + 0100 Stepper Device + 0200 BLDC/PMSM Device + 0300 Motor Control Device + 0400 Motor Control Device + 0500 PANdrive(TM) + 0600 motionCookie(TM) + 0700 Evaluation Device + 0800 Interface Device + 0900 Generic Device +2a45 Meizu Corp. + 0001 MX Phone (BICR) + 0c02 MX Phone (MTP & ADB) + 0c03 MX Phone (BICR & ADB) + 2008 MX Phone (MTP) + 200a MX Phone (MTP & ACM & ADB) + 200b MX Phone (PTP) + 200c MX Phone (PTP & ADB) + 2012 MX Phone (MTP & ACM) +2a47 Mundo Reader, S.L. + 0c02 bq Aquaris E4.5 + 201d Tablet Edison 3 + 903a bq Aquaris U +2a4b EMULEX Corporation + 0400 Pilot4 Integrated Hub +2a62 Flymaster Avionics + b301 LiveSD + b302 NavSD +2a6e Bare Conductive + 0003 Touch Board + 8003 Touch Board +2a70 OnePlus Technology (Shenzhen) Co., Ltd. + 4ee7 ONEPLUS A3010 [OnePlus 3T] / A5010 [OnePlus 5T] / A6003 [OnePlus 6] (Charging + USB debugging modes) + 904d A3000 phone (PTP mode) [3T] + 904e A3000 phone (PTP mode, with debug) [3T] +2a88 DFU Technology Ltd + ffff DFU +2a8d Keysight Technologies, Inc. +2ab6 T+A elektroakustik GmbH & Co KG, Germany + 0001 PDP3000HV DAC + 0002 MP1000E, MP2000R, MP2500R, MP3100HV + 0003 TA HD AUDIO V2 +2ac7 Ultrahaptics Ltd. + 0101 Evaluation Kit [Dragonfly] + 0102 UHDK5 + 0104 Touchbase + 0110 STRATOS Explore + 0111 STRATOS Explore DFU + 0112 STRATOS Inspire + 0113 STRATOS Inspire DFU + ffff DFU +2ad1 Picotronic GmbH + 7ab8 Turningtable +2ae5 Fairphone B.V. + 9015 2 (Mass storage & ADB) + 9024 2 (RNDIS & ADB) + 9039 2 (MTP & ADB) + 904d 2 (PTP) + 904e 2 (PTP & ADB) + 90de 2 (Charging) + f000 2 (Mass storage) + f003 2 (MTP) + f005 2 (tethering) + f00e 2 (RNDIS) +2aec Ambiq Micro, Inc. + 6011 Converter +2af4 ROLI Ltd. + 0100 Seaboard GRAND + 0200 Seaboard RISE + 0300 BlueWing Proto + 0400 VOICE + 0500 BLOCKS +2b03 STEREOLABS + f580 ZED camera + f582 ZED camera + f680 ZED-M camera + f681 ZED-M HID Interface + f682 ZED-M camera + f683 ZED-M HID Interface + f684 ZED-M camera +2b0e LeEco + 171b Le2 + 171e Le2 in USB tethering mode + 1830 Le1 Pro + 1844 Le Max2 + 2b0e LeEco + 6108 Lex720 [LePro 3] in connection sharing usb + 610b Lex720 [LePro 3] in Camera mode + 610c Lex720 [LePro 3] + 610d Lex720 [LePro 3] in debug +2b23 Red Hat, Inc. + cafe UsbDk (USB Development Kit) +2b24 KeepKey LLC + 0001 Bitcoin Wallet [KeepKey] + 0002 Bitcoin Wallet +2b3e NewAE Technology Inc. + ace2 CW1173 [ChipWhisperer-Lite] +2b4c ZUK + 1004 Z1 MTP +2bc5 Orbbec 3D Technology International, Inc + 0401 Astra + 0403 Astra Pro + 0407 Astra Mini S +2bcc InoTec GmbH Organisationssysteme +2bd6 Coroware, Inc. + 4201 RS-485 Controller and Interface [Cypress Semiconductor] +2bd8 ROPEX Industrie-Elektronik GmbH +2c02 Planex Communications + 14ea GW-US11H WLAN +2c1a Dolphin Peripherals + 0000 Wireless Optical Mouse +2c23 Supermicro Computer Incorporated + 1b83 NIC +2c4e Mercucys INC + 0100 MW300UM RTL8192EU wifi +2c4f Canon Electronic Business Machines Co., Ltd. + 3003 PR Wireless Presenter +2c55 Magic Leap, Inc. + a100 ML1 Lightpack (MLDB) + b100 ML1 Lightpack (fastboot) + c001 ML1 Control (COM) + c002 ML1 Control (Bootloader) +2c7c Quectel Wireless Solutions Co., Ltd. + 0121 EC21 LTE modem + 0125 EC25 LTE modem + 0191 EG91 LTE modem + 0195 EG95 LTE modem + 0296 BG96 CAT-M1/NB-IoT modem + 0306 EG06/EP06/EM06 LTE-A modem + 0435 AG35 LTE modem +2c97 Ledger + 0000 Blue + 0001 Nano S + 0004 Nano X +2c99 Prusa + 0001 i3 MK2S +2c9c Vayyar Imaging Ltd. + 1000 Walabot Makers Series + 1020 Walabot DIY + 1022 Walabot DIY Plus + 1030 Walabot Home (vHC) + 9100 VNAKit +2c9d Nod Inc + 90a0 Goa + bac5 Backspin +2ca3 DJI Technology Co., Ltd. + 0008 Mavic Mini MR1SD25 Remote controller +2cb7 Fibocom + 0210 L830-EB-00 LTE WWAN Modem +2cc0 Hangzhou Zero Zero Infinity Technology Co., Ltd. +2cc2 Lautsprecher Teufel GmbH +2ccf Hypersecu + 0880 HyperFIDO +2cd9 Cambrionix Ltd + 0804 PowerSync4 USBPD Hub +2cdc Sea & Sun Technology GmbH + f232 CTD48Mc CTD Probe +2ce5 InX8 Inc [AKiTiO] + 0014 Mass Storage [NT2 U31C] +2cf0 Nuand LLC + 5246 bladeRF + 5250 bladeRF 2.0 micro +2d1f Wacom Taiwan Information Co. Ltd. +2d25 Kronegger GmbH. +2d2d proxmark.org + 504d Proxmark3 +2d37 Zhuhai Poskey Technology Co.,Ltd +2d6b NetUP Inc. + 7777 Joker TV universal DTV receiver +2d81 Evollve Inc. + 4f01 Ozobot Evo +2d84 Zhuhai Poskey Technology Co.,Ltd + b806 DT-108B Thermal Label Printer +2dc8 8BitDo + 5006 M30 Bluetooth gamepad + 5750 Bootloader + 6000 SF30 Pro gamepad + 6001 SN30/SF30 Pro gamepad + ab11 F30 gamepad + ab12 N30 gamepad + ab20 SN30/SF30 gamepad + ab21 SF30 gamepad +2dcf Dialog Semiconductor + c951 Audio Class 1.0 Devices + c952 Audio Class 2.0 Devices +2def Kirale Technologies + 0000 KiNOS Boot DFU + 0102 KTWM102 Module +2df2 LIPS Corporation + 0213 LIPSedge DL 3D ToF Camera + 0215 LIPSedge DL RGB Camera + 2102 LIPSedge 5 Megapixel RGB Camera +2e04 HMD Global + 0001 Nokia 3310 3G + 0002 Nokia 3310 3G + 0a14 Nokia 3310 3G + c008 Tethering Network Interface + c009 Nokia 1 (bootloader) + c025 Nokia 8 (MTP mode) + c026 Nokia Smartphone + c029 Nokia 8 (PTP mode) + c031 Nokia 1 (PTP) + c03f Nokia 8 (MIDI mode) +2e0e Hatteland Display AS + 0001 CAN Gateway +2e24 Hyperkin + 0652 Duke Xbox One controller + 1688 X91 Xbox One controller +2e3b uSens Inc. +2e57 MEGWARE Computer Vertrieb und Service GmbH + 454d SlideSX EnergyMeter + 454e SlideSX EnergyMeter DFU + 5cba SlideSX / ClustSafe Bus Adapter +2e69 Swift Navigation + 1001 Piksi Multi +2e95 SCUF Gaming + 7725 Controller +2f76 KeyXentic Inc. + 0905 KX905 Smart Terminal + 0906 KX906 Smart Card Reader + 1906 KX906 Smart Token (Mass Storage) +2fad Definium Technologies +2fb0 Infocrypt +2fb2 Fujitsu, Ltd +2fc0 Sensidyne, LP + 0001 Project Archer +2fc6 Comtrue Inc. + 6012 UAC2 Device GB +2fe0 Xaptum, Inc. + 8b01 XAP-RC-001 ENF Router Card + 8b02 XAP-RW-001 ENF Router Card with WiFi + 8bde XAP-EA-002 ENF Access Card + 8bee XAP-EA-003 ENF Access Card +2fe3 NordicSemiconductor +2fe7 ELGIN S.A. + 0001 SMART S@T +2feb Beijing Veikk E-Commerce Co., Ltd. + 0004 Veikk A15 Pen Tablet +2ff4 Quixant Plc +3016 Boundary Devices, LLC + 0001 Nitrogen Bootloader +3036 Control iD + 0001 Print iD + 0002 iDBio +3037 Beijing Chushifengmang Technology Development Co.,Ltd. +3057 Kingsis Corporation + 0002 ZOWIE Gaming mouse +308f Input Club + 0000 Infinity 60% Bootloader + 0001 Infinity 60% - Standard + 0002 Infinity 60% - Hacker + 0003 Infinity Ergodox Bootloader + 0004 Infinity Ergodox + 0005 WhiteFox Bootloader + 0006 WhiteFox - Vanilla + 0007 WhiteFox - ISO + 0008 WhiteFox - Aria + 0009 WhiteFox - Winkeyless + 000a WhiteFox - True Fox + 000b WhiteFox - Jack of All Trades + 000c Infinity 60% LED Bootloader + 000d Infinity 60% LED - Standard + 000e Infinity 60% LED - Hacker + 000f Infinity 60% LED - Alphabet + 0010 K-Type Bootloader + 0011 K-Type + 0012 Kira Bootloader + 0013 Kira + 0014 Gemini Dawn/Dusk Bootloader + 0015 Gemini Dawn/Dusk + 0016 Re:Type Bootloader + 0017 Re:Type + 0018 Re:Type USB Hub + 0019 WhiteFox (SAM4S) Bootloader + 001a WhiteFox (SAM4S) - Vanilla + 001b WhiteFox (SAM4S) - ISO + 001c WhiteFox (SAM4S) - Aria + 001d WhiteFox (SAM4S) - Winkeyless + 001e WhiteFox (SAM4S) - True Fox + 001f WhiteFox (SAM4S) - Jack of All Trades +30a4 Blues Wireless + 0001 Notecard +30c2 UNPARALLEL Innovation, Lda + 1388 SPL Meter +30c9 Luxvisions Innotech Limited +30ee Fujitsu Connected Technologies Limited + 1001 F-01L +30f2 Varex Imaging +3111 Hiperscan GmbH + 0000 SGS-NT Microspectrometer +3112 Meteca SA + 0001 MBC-WB01 (CDC-ACM) + 0002 MBC-WB01 (Bootloader) + 0003 ABC (CDC ACM) + 0004 ABC (Bootloader) +3125 Eagletron + 0001 TrackerPod Camera Stand +3136 Navini Networks +3145 SafeLogic Inc. +3147 Tanvas, Inc. +316c SigmaSense, LLC +316d Purism, SPC + 4c4b Librem Key +316e SPECINFOSYSTEMS + 0001 DIAMOND token +3171 8086 Consultancy + 0011 ClusterCTRL DA + 0012 ClusterCTRL pHAT + 0013 ClusterCTRL A+6 + 0014 ClusterCTRL Triple + 0015 ClusterCTRL Single +3176 Whanam Electronics Co., Ltd +3195 Link Instruments + f190 MSO-19 + f280 MSO-28 + f281 MSO-28 +3197 Katusha + 1001 M151 + 1002 M250 + 1003 P130 + 1004 M130 + 1101 P247 + 1102 M247 + 1103 M348 +31c9 BeiJing LanXum Computer Technology Co., Ltd. + 1001 Printer + 1301 Black and White Laser Printer + 1501 LaserPrint GA50 series +3200 Alcatel-Lucent Enterprise + 2100 ALE 8058s + 2101 ALE 8068s + 2102 8078s +3219 Smak Tecnologia e Automacao LTDA + 0044 SKO44 Optical Keyboard +321c Premio, Inc. +324c CUPRIS Ltd. +326d Agile Display Solutions Co., Ltd + 0001 Avocor USB Camera +3275 VidzMedia Pte Ltd + 4fb1 MonsterTV P2H +3293 Unhuman Inc. +32b3 TEXA + d1a6 TXT Multihub + d1a7 TXT Multihub +3310 MUDITA Sp. z o.o. + 0100 Pure + 0101 Pure tethering +3333 InLine + 3333 2 port KVM switch model 60652K +3334 AEI + 1701 Fast Ethernet +3340 Yakumo + 043a Mio A701 DigiWalker PPCPhone + 0e3a Pocket PC 300 GPS SL / Typhoon MyGuide 3500 + a0a3 deltaX 5 BT (D) PDA + ffff Mio DigiWalker Sync +3344 Leaguer Microelectronics (LME) + 3744 OEM PC Remote +3384 System76 + 0000 Thelio Io (thelio-io) + 0001 Launch Configurable Keyboard (launch_1) +348f ISY + 2322 Wireless Presenter +3504 Micro Star + f110 Security Key +3538 Power Quotient International Co., Ltd + 0001 Travel Flash + 0015 Mass Storge Device + 0022 Hi-Speed Mass Storage Device + 0042 Cool Drive U339 Flash Disk + 0054 Flash Drive (2GB) + 0901 Traveling Disk U273 (4GB) +3579 DIVA + 6901 Media Reader +357d Sharkoon + 7788 JMicron JMS567 ATA/ATAPI Bridge +3636 InVibro +3767 Fanatec + 0101 Speedster 3 Forceshock Wheel +3838 WEM + 0001 5-in-1 Card Reader + 1031 2.4G Wireless Mouse +3923 National Instruments Corp. + 12c0 DAQPad-6020E + 12d0 DAQPad-6507 + 12e0 NI 4350 + 12f0 NI 5102 + 1750 DAQPad-6508 + 17b0 USB-ISA-Bridge + 1820 DAQPad-6020E (68 pin I/O) + 1830 DAQPad-6020E (BNC) + 1f00 DAQPad-6024E + 1f10 DAQPad-6024E + 1f20 DAQPad-6025E + 1f30 DAQPad-6025E + 1f40 DAQPad-6036E + 1f50 DAQPad-6036E + 2f80 DAQPad-6052E + 2f90 DAQPad-6052E + 702a GPIB-USB-B + 702b GPIB-USB-B Initialization + 703c USB-485 RS485 Cable + 709b GPIB-USB-HS + 7166 USB-8451 + 716e USB-8451 Firmware Loader + 717a USB-6008 + 717b USB-6009 + 71d6 USB-6008 OEM + 71d7 USB-6009 OEM + 71d8 USB-6009 OEM + 7254 NI MIO (data acquisition card) firmware updater + 729e USB-6251 (OEM) data acquisition card + 7346 USB-6229 + 755b myDAQ + 76af USB-6000 + 76b0 USB-6000 OEM + 76bf USB-6001 + 76c0 USB-6001 OEM + 76c4 USB-6002 + 76c5 USB-6002 OEM + 76c6 USB-6003 + 76c7 USB-6003 OEM +40bb I-O Data + 0a09 USB2.0-SCSI Bridge USB2-SC +4101 i-rocks + 1301 IR-2510 usb phone +4102 iRiver, Ltd. + 1001 iFP-100 series mp3 player + 1003 iFP-300 series mp3 player + 1005 iFP-500 series mp3 player + 1007 iFP-700 series mp3/ogg vorbis player + 1008 iFP-800 series mp3/ogg vorbis player + 100a iFP-1000 series mp3/ogg vorbis player + 1014 T20 series mp3/ogg vorbis player (ums firmware) + 1019 T30 + 1034 T60 + 1040 M1Player + 1041 E100 (ums) + 1101 iFP-100 series mp3 player (ums firmware) + 1103 iFP-300 series mp3 player (ums firmware) + 1105 iFP-500 series mp3 player (ums firmware) + 1113 T10 (alternate) + 1117 T10 + 1119 T30 series mp3/ogg/wma player + 1141 E100 (mtp) + 2002 H10 6GB + 2101 H10 20GB (mtp) + 2102 H10 5GB (mtp) + 2105 H10 5/6GB (mtp) +413c Dell Computer Corp. + 0000 DRAC 5 Virtual Keyboard and Mouse + 0001 DRAC 5 Virtual Media + 0058 Port Replicator + 1001 Keyboard Hub + 1002 Keyboard Hub + 1003 Keyboard Hub + 1005 Multimedia Pro Keyboard Hub + 2001 Keyboard HID Support + 2002 SK-8125 Keyboard + 2003 Keyboard SK-8115 + 2005 RT7D50 Keyboard + 2010 Keyboard + 2011 Multimedia Pro Keyboard + 2100 SK-3106 Keyboard + 2101 SK-3205 SmartCard Reader Keyboard + 2105 Model L100 Keyboard + 2106 QuietKey Keyboard + 2107 KB212-B Quiet Key Keyboard + 2113 KB216 Wired Keyboard + 2134 Hub of E-Port Replicator + 21d7 Dell Wireless 5560 HSPA+ Mobile Broadband Modem + 2500 DRAC4 Remote Access Card + 2501 Keyboard and mouse dongle + 2513 internal USB Hub of E-Port Replicator + 3010 Optical Wheel Mouse + 3012 Optical Wheel Mouse + 3016 Optical 5-Button Wheel Mouse + 301a Dell MS116 Optical Mouse + 301b Universal Bluetooth Receiver + 3200 Mouse + 4001 Axim X5 + 4002 Axim X3 + 4003 Axim X30 + 4004 Axim Sync + 4005 Axim Sync + 4006 Axim Sync + 4007 Axim Sync + 4008 Axim Sync + 4009 Axim Sync + 4011 Axim X51v + 5103 AIO Printer A940 + 5105 AIO Printer A920 + 5107 AIO Printer A960 + 5109 Photo AIO Printer 922 + 5110 Photo AIO Printer 962 + 5111 Photo AIO Printer 942 + 5112 Photo AIO Printer 924 + 5113 Photo AIO Printer 944 + 5114 Photo AIO Printer 964 + 5115 Photo AIO Printer 926 + 5116 AIO Printer 946 + 5117 Photo AIO Printer 966 + 5118 AIO 810 + 5124 Laser MFP 1815 + 5128 Photo AIO 928 + 5133 968 AIO Printer + 5200 Laser Printer + 5202 Printing Support + 5203 Printing Support + 5210 Printing Support + 5211 1110 Laser Printer + 5220 Laser MFP 1600n + 5225 Printing Support + 5226 Printing Support + 5228 Laser Printer 1720dn + 5300 Laser Printer + 5400 Laser Printer + 5401 Laser Printer + 5404 1250c Color Printer + 5513 WLA3310 Wireless Adapter [Intersil ISL3887] + 5534 Hub of E-Port Replicator + 5601 Laser Printer 3100cn + 5602 Laser Printer 3000cn + 5607 MFP Color Laser Printer 3115cn + 5631 Laser Printer 5100cn + 564a C1765 series Multifunction Color LaserPrinter, Scanner & Copier + 5905 Printing Support + 8000 BC02 Bluetooth Adapter + 8010 TrueMobile Bluetooth Module in + 8100 TrueMobile 1180 802.11b Adapter [Intersil PRISM 3] + 8102 TrueMobile 1300 802.11g Wireless Adapter [Intersil ISL3880] + 8103 Wireless 350 Bluetooth + 8104 Wireless 1450 Dual-band (802.11a/b/g) Adapter [Intersil ISL3887] + 8105 U2 in HID - Driver + 8106 Wireless 350 Bluetooth Internal Card in + 8110 Wireless 3xx Bluetooth Internal Card + 8111 Wireless 3xx Bluetooth Internal Card in + 8114 Wireless 5700 Mobile Broadband (CDMA EV-DO) Minicard Modem + 8115 Wireless 5500 Mobile Broadband (3G HSDPA) Minicard Modem + 8116 Wireless 5505 Mobile Broadband (3G HSDPA) Minicard Modem + 8117 Wireless 5700 Mobile Broadband (CDMA EV-DO) Expresscard Modem + 8118 Wireless 5510 Mobile Broadband (3G HSDPA) Expresscard Status Port + 8120 Bluetooth adapter + 8121 Eastfold in HID + 8122 Eastfold in DFU + 8123 eHome Infrared Receiver + 8124 eHome Infrared Receiver + 8126 Wireless 355 Bluetooth + 8127 Wireless 355 Module with Bluetooth 2.0 + EDR Technology. + 8128 Wireless 5700-Sprint Mobile Broadband (CDMA EV-DO) Mini-Card Status Port + 8129 Wireless 5700-Telus Mobile Broadband (CDMA EV-DO) Mini-Card Status Port + 8131 Wireless 360 Bluetooth 2.0 + EDR module. + 8133 Wireless 5720 VZW Mobile Broadband (EVDO Rev-A) Minicard GPS Port + 8134 Wireless 5720 Sprint Mobile Broadband (EVDO Rev-A) Minicard Status Port + 8135 Wireless 5720 TELUS Mobile Broadband (EVDO Rev-A) Minicard Diagnostics Port + 8136 Wireless 5520 Cingular Mobile Broadband (3G HSDPA) Minicard Diagnostics Port + 8137 Wireless 5520 Voda L Mobile Broadband (3G HSDPA) Minicard Status Port + 8138 Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard EAP-SIM Port + 8140 Wireless 360 Bluetooth + 8142 Mobile 360 in DFU + 8143 Broadcom BCM20702A0 Bluetooth + 8147 F3507g Mobile Broadband Module + 8156 Wireless 370 Bluetooth Mini-card + 8157 Integrated Keyboard + 8158 Integrated Touchpad / Trackstick + 8160 Wireless 365 Bluetooth + 8161 Integrated Keyboard + 8162 Integrated Touchpad [Synaptics] + 8171 Gobi Wireless Modem (QDL mode) + 8172 Gobi Wireless Modem + 8183 F3607gw Mobile Broadband Module + 8184 F3607gw v2 Mobile Broadband Module + 8185 Gobi 2000 Wireless Modem (QDL mode) + 8186 Gobi 2000 Wireless Modem + 8187 DW375 Bluetooth Module + 818e DW5560 miniPCIe HSPA+ Mobile Broadband Modem + 8197 BCM20702A0 Bluetooth Module + 81a0 Wireless 5808 Mobile Broadband (Sierra Wireless MC7355 Mini PCIE, 4G UMTS,HSDPA,HSPA+,LTE,1xRTT,EVDO Rev A,GSM,GPRS) + 81a3 Hub of E-Port Replicator + 81a8 Wireless 5808 Mobile Broadband (Sierra Wireless Mini PCIE, 4G UMTS,HSDPA,HSPA+,LTE,1xRTT,EVDO Rev A,GSM,GPRS) + 8501 Bluetooth Adapter + 9001 ATA Bridge + 9009 Portable Device + 9500 USB CP210x UART Bridge Controller [DW700] + a001 Hub + a005 Internal 2.0 Hub + a101 Internal Dual SD Card module + a102 iDRAC Virtual NIC + a503 AC511 Sound Bar + a700 Hub (in 1905FP LCD Monitor) + b007 Streak 5 Android Tablet +4146 USBest Technology + 9281 Iomega Micro Mini 128MB Flash Drive + ba01 Intuix Flash Drive +4168 Targus + 1010 Wireless Compact Laser Mouse +4242 USB Design by Example + 4201 Buttons and Lights HID device + 4220 Echo 1 Camera +4255 GoPro + 1000 9FF2 [Digital Photo Display] + 2000 HD2-14 [Hero 2 Camera] +4317 Broadcom Corp. + 0700 U.S. Robotics USR5426 802.11g Adapter + 0701 U.S. Robotics USR5425 Wireless MAXg Adapter + 0711 Belkin F5D7051 v3000 802.11g + 0720 Dynex DX-BUSB + 0721 Dynex DX-EBUSB +4348 WinChipHead + 5523 USB->RS 232 adapter with Prolific PL 2303 chipset + 5537 13.56Mhz RFID Card Reader and Writer + 5584 CH34x printer adapter cable +4572 Shuttle, Inc. + 4572 Shuttle PN31 Remote +4586 Panram + 1026 Crystal Bar Flash Drive +4670 EMS Production + 9394 Game Cube USB Memory Adaptor 64M +46f4 QEMU +4752 Miditech + 0011 Midistart-2 +4757 GW Instek + 2009 PEL-2000 Series Electronic Load (CDC) + 2010 PEL-2000 Series Electronic Load (CDC) +4766 Aceeca + 0001 MEZ1000 RDA +4855 Memorex + 7288 Ultra Traveldrive 160G 2.5" HDD +4971 SimpleTech + 1004 Hitachi LifeStudio Desk (3.5" HDD) [w/o flash key] + 1013 Touro Desk Pro + 1015 Touro Desk 3.0 + 8001 G-Tech G-DRIVE Mobile + cb01 SP-U25/120G + cd15 Simple Drive Mini (2.5" HDD) + ce07 SimpleDrive (3.5" HDD) + ce12 FV-U35 + ce17 1TB SimpleDrive II USB External Hard Drive + ce18 (re)Drive + ce21 JMicron JM20329 SATA Bridge [eg. HITACHI SimpleDrive mini] + ce22 Hitachi SimpleTough (3.5" HDD) +4d46 Musical Fidelity + 0001 V-Link + 0002 V-DAC II +5032 Grandtec + 0bb8 Grandtec USB1.1 DVB-T (cold) + 0bb9 Grandtec USB1.1 DVB-T (warm) + 0fa0 Grandtec USB1.1 DVB-T (cold) + 0fa1 Grandtec USB1.1 DVB-T (warm) +50c2 Averatec (?) + 4013 WLAN Adapter +5131 MSR + 2007 MSR-101U Mini HID magnetic card reader +5173 Sweex + 1809 ZD1211 +5219 I-Tetra + 1001 Cetus CDC Device +5332 Clearly Superior Technologies, Inc. + 1300 CST2545-5W (L-Trac) +5345 Owon + 1234 PDS6062T Oscilloscope +534c SatoshiLabs + 0001 Bitcoin Wallet [TREZOR] + 0002 Bitcoin Wallet [TREZOR v2] +534d MacroSilicon + 0021 MS210x Video Grabber [EasierCAP] + 6021 VGA Display Adapter +5354 Meyer Instruments (MIS) + 0017 PAXcam2 +544d Transmeta Corp. +5543 UC-Logic Technology Corp. + 0002 SuperPen WP3325U Tablet + 0003 Tablet WP4030U + 0004 Tablet WP5540U + 0005 Tablet WP8060U + 0041 Genius PenSketch 6x8 Tablet + 0042 Tablet PF1209 + 004a XP-Pen Artist 10S tablet + 004d Tablet Monitor MSP19U + 0064 Aiptek HyperPen 10000U + 3031 Graphics tablet [DrawImage G3, Ugee G3] +5555 Epiphan Systems Inc. + 1110 VGA2USB + 1120 KVM2USB + 2222 DVI2USB + 3333 VGA2USB Pro + 3337 KVM2USB Pro + 3340 VGA2USB LR + 3344 KVM2USB LR + 3411 DVI2USB Solo + 3422 DVI2USB Duo + 3500 DVI2USB3 + 3501 DVI2USB3 Rev3 + 3510 DVI2USB3_ET + 3520 SDI2USB3 +55aa OnSpec Electronic, Inc. + 0015 Hard Drive + 0102 SuperDisk + 0103 IDE Hard Drive + 0201 DDI to Reader-19 + 1234 ATAPI Bridge + a103 Sandisk SDDR-55 SmartMedia Card Reader + b000 USB to CompactFlash Card Reader + b004 OnSpec MMC/SD Reader/Writer + b00b USB to Memory Stick Card Reader + b00c USB to SmartMedia Card Reader + b012 Mitsumi FA402M 8-in-2 Card Reader + b200 Compact Flash Reader + b204 MMC/ SD Reader + b207 Memory Stick Reader +5654 Gotview + ca42 MasterHD 3 +5656 Uni-Trend Group Limited + 0832 UT2000/UT3000 Digital Storage Oscilloscope +595a IRTOUCHSYSTEMS Co. Ltd. + 0001 Touchscreen +5986 Acer, Inc + 0100 Orbicam + 0101 USB2.0 Camera + 0102 Crystal Eye Webcam + 0137 HP Webcam + 0141 BisonCam, NB Pro + 0149 HP Webcam-101 + 014c MSI Integrated Webcam + 01a6 Lenovo Integrated Webcam + 01a7 Lenovo Integrated Webcam + 01a9 Lenovo Integrated Webcam + 0200 OrbiCam + 0202 Fujitsu Webcam + 0203 BisonCam NB Pro 1300 + 0205 Lenovo EasyCamera + 0217 Integrated Webcam + 0241 BisonCam, NB Pro + 0268 SunplusIT INC. Integrated Camera + 026a Integrated Camera + 0292 Lenovo Integrated Webcam + 0294 Lenovo Integrated Webcam + 0295 Lenovo Integrated Webcam + 0299 Lenovo Integrated Webcam + 029c Lenovo EasyCamera + 02ac HP TrueVision HD Webcam + 02d0 Lenovo Integrated Webcam [R5U877] + 02d2 ThinkPad Integrated Camera + 02d5 Integrated Camera + 03b3 Lenovo Integrated Webcam + 03d0 Lenovo Integrated Webcam [R5U877] + 0400 BisonCam, NB Pro + 0535 Lenovo EasyCamera integrated webcam + 055a Lenovo Integrated Webcam + 0652 Lenovo EasyCamera + 0670 Lenovo EasyCamera + 0671 Lenovo EasyCamera + 0706 ThinkPad P50 Integrated Camera + 2113 SunplusIT Integrated Camera + a002 Lenovo EasyCamera Integrated Webcam +59e3 Nonolith Labs +5a57 Zinwell + 0260 RT2570 + 0280 802.11a/b/g/n USB Wireless LAN Card + 0282 802.11b/g/n USB Wireless LAN Card + 0283 802.11b/g/n USB Wireless LAN Card + 0284 802.11a/b/g/n USB Wireless LAN Card + 0290 ZW-N290 802.11n [Realtek RTL8192U] + 5257 Metronic 495257 wifi 802.11ng +6000 Beholder International Ltd. + 0001 Trident TVBOX Video Grabber + dec0 TV Wander + dec1 TV Voyage +601a Ingenic Semiconductor Ltd. + 4740 XBurst Jz4740 boot mode + 4760 JZ4760 Boot Device +6022 Xektek + 0500 SuperPro Universal Device Programmer +6189 Sitecom + 182d LN-029 10/100 Ethernet Adapter + 2068 USB to serial cable (v2) +6244 LightingSoft AG + 0101 Intelligent Usb Dmx Interface SIUDI5A + 0201 Intelligent Usb Dmx Interface SIUDI5C + 0300 Intelligent Usb Dmx Interface SIUDI6 Firmware download + 0301 Intelligent Usb Dmx Interface SIUDI6C + 0302 Intelligent Usb Dmx Interface SIUDI6A + 0303 Intelligent Usb Dmx Interface SIUDI6D + 0400 Touch Sensitive Intelligent Control Keypad STICK1A + 0401 Touch Sensitive Intelligent Control Keypad STICK1A + 0410 Intelligent Usb Dmx Interface SIUDI7 Firmware Download + 0411 Intelligent Usb Dmx Interface SIUDI7A + 0420 Intelligent Usb Dmx Interface SIUDI8A Firmware Download + 0421 Intelligent Usb Dmx Interface SIUDI8A + 0430 Intelligent Usb Dmx Interface SIUDI8C Firmware Download + 0431 Intelligent Usb Dmx Interface SIUDI8C + 0440 Intelligent Usb Dmx Interface SIUDI9A Firmware Download + 0441 Intelligent Usb Dmx Interface SIUDI9A + 0450 Intelligent Usb Dmx Interface SIUDI9C Firmware Download + 0451 Intelligent Usb Dmx Interface SIUDI9C + 0460 Touch Sensitive Intelligent Control Keypad STICK2 Firmware download + 0461 Touch Sensitive Intelligent Control Keypad STICK2 + 0470 Touch Sensitive Intelligent Control Keypad STICK1B Firmware download + 0471 Touch Sensitive Intelligent Control Keypad STICK1B + 0480 Touch Sensitive Intelligent Control Keypad STICK3 Firmware download + 0481 Touch Sensitive Intelligent Control Keypad STICK3 + 0490 Intelligent Usb Dmx Interface SIUDI9D Firmware Download + 0491 Intelligent Usb Dmx Interface SIUDI9D + 0500 Touch Sensitive Intelligent Control Keypad STICK2B Firmware download + 0501 Touch Sensitive Intelligent Control Keypad STICK2B + 0520 Touch Sensitive Intelligent Control Keypad (STICK2C Firmware download, 32/64bits + 0521 Touch Sensitive Intelligent Control Keypad (STICK2C, 32/64bits) + 0540 Sunlite Universal Smart Handy Interface (SUSHI1A Firmware download, 32/64bits) + 0541 Sunlite Universal Smart Handy Interface (SUSHI1A, 32/64bits) + 0570 Touch Sensitive Intelligent Control Keypad (STICK4A Firmware download, 32/64bits) + 0571 Touch Sensitive Intelligent Control Keypad (STICK4A, 32/64bits) + 0580 Touch Sensitive Intelligent Control Keypad (STICK5A Firmware download, 32/64bits) + 0581 Touch Sensitive Intelligent Control Keypad (STICK5A, 32/64bits) + 0590 Intelligent Dmx Interface (SIUDI9S Firmware Download, 32/64bits) + 0591 Intelligent Dmx Interface (SIUDI9S, 32/64bits) + 0600 Intelligent Dmx Interface (SIUDI9M Firmware Download, 32/64bits) + 0601 Intelligent Dmx Interface (SIUDI9M, 32/64bits) + 0610 Intelligent Dmx Interface SIUDI10A Firmware Download + 0611 Intelligent Dmx Interface SIUDI10A +6253 TwinHan Technology Co., Ltd + 0100 Ir reciver f. remote control +636c CoreLogic, Inc. +6472 Sony Corp. + 01c8 PlayStation Portable [Mass Storage] +6547 Arkmicro Technologies Inc. + 0232 ARK3116 Serial +6557 Emtec + 5500 Mass Storage Device + 8005 Car Key +6615 IRTOUCHSYSTEMS Co. Ltd. + 0001 Touchscreen + 0020 IRTOUCH InfraRed TouchScreen + 0081 TouchScreen +6666 Prototype product Vendor ID + 0667 WiseGroup Smart Joy PSX, PS-PC Smart JoyPad + 1c40 TELEMIC 802.15.4 Sensor node (Bootloader) + 1c41 TELEMIC 802.15.4 Sensor node + 2667 JCOP BlueZ Smartcard reader + 8802 SmartJoy Dual Plus PS2 converter + 8804 WiseGroup SuperJoy Box 5 +6677 WiseGroup, Ltd. + 8802 SmartJoy Dual Plus PS2 converter + 8811 Deluxe Dance Mat +675d Humanscale + 062a Switch Mouse +6891 3Com + a727 3CRUSB10075 802.11bg [ZyDAS ZD1211] +695c Opera1 + 3829 Opera1 DVB-S (warm state) +6993 Yealink Network Technology Co., Ltd. + b001 VoIP Phone +6a75 Shanghai Jujo Electronics Co., Ltd +7104 CME (Central Music Co.) + 2202 UF5/UF6/UF7/UF8 MIDI Master Keyboard +726c StackFoundry LLC + 2149 EntropyKing Random Number Generator +7302 Solinftec + 0001 HUB 4X232 +734c TBS Technologies China + 5920 Q-Box II DVB-S2 HD + 5928 Q-Box II DVB-S2 HD +7373 Beijing STONE Technology Co. Ltd. + 5740 Intelligent TFT-LCD Module +7392 Edimax Technology Co., Ltd + 7711 EW-7711UTn nLite Wireless Adapter [Ralink RT3070] + 7717 EW-7717UN 802.11n Wireless Adapter [Ralink RT2770] + 7718 EW-7718UN 802.11n Wireless Adapter [Ralink RT2870] + 7722 EW-7722UTn 802.11n Wireless Adapter [Ralink RT3072] + 7733 EW-7733UnD 802.11abgn 3x3:3 [Ralink RT3573] + 7811 EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS] + 7822 EW-7612UAn V2 802.11n Wireless Adapter [Realtek RTL8192CU] + a611 EW-7611ULB 802.11b/g/n and Bluetooth 4.0 Adapter + a711 EW-7711MAC 802.11ac Wireless Adapter + a811 EW-7811UTC 802.11ac Wireless Adapter + b711 EW-7722UAC 802.11a/b/g/n/ac (2x2) Wireless Adapter [MediaTek MT7612U] + b822 EW-7822ULC 802.11ac Wireless Adapter [Realtek RTL8812AU] +73d8 Progeny Dental Equipment Specialists + 0104 VetPro DR, Size 1 + 0105 VetPro DR, Size 2 +7669 Venable Instruments + 350c Model 350c, Frequency Response Analyzer + 5140 Model 5140, Frequency Response Analyzer + 6305 Model 6305, Frequency Response Analyzer + 6320 Model 6320, Frequency Response Analyzer + 6340 Model 6340, Frequency Response Analyzer + 7405 Model 7405, Frequency Response Analyzer + 7420 Model 7420, Frequency Response Analyzer + 7440 Model 7440, Frequency Response Analyzer + 8805 Model 8805, Frequency Response Analyzer + 8820 Model 8820, Frequency Response Analyzer + 8840 Model 8840, Frequency Response Analyzer +7825 Other World Computing + a2a4 External SATA Hard Drive Adapter cable PA023U3 + b0b3 miniStack MAX +8070 ACCES I/O Products, Inc. + 8003 USB-DIO-96 + 8070 USB-AO16-16A +8086 Intel Corp. + 0001 AnyPoint (TM) Home Network 1.6 Mbps Wireless Adapter + 0044 CPU DRAM Controller + 0046 HD Graphics + 0100 Personal Audio Player 3000 + 0101 Personal Audio Player 3000 + 0110 Easy PC Camera + 0120 PC Camera CS120 + 0180 WiMAX Connection 2400m + 0181 WiMAX Connection 2400m + 0182 WiMAX Connection 2400m + 0186 WiMAX Connection 2400m + 0188 WiMAX Connection 2400m + 0189 Centrino Advanced-N 6230 Bluetooth adapter + 0200 AnyPoint(TM) Wireless II Network 11Mbps Adapter [Atmel AT76C503A] + 0431 Pro Video PC Camera + 0510 Digital Movie Creator + 0630 Pocket PC Camera + 0780 CS780 Microphone Input + 07d3 BLOB boot loader firmware + 07dc Bluetooth 4.0* Smart Ready (low energy) + 0a66 RealSense 3D Camera (Front F200) + 0aa5 RealSense SR300 + 0ad2 RealSense D410 + 0ad3 RealSense D415 + 0b07 RealSense D435 + 0b64 RealSense L515 + 0dad Cherry MiniatureCard Keyboard + 1010 AnyPoint(TM) Home Network 10 Mbps Phoneline Adapter + 110a Bluetooth Controller from (Ericsson P4A) + 110b Bluetooth Controller from (Intel/CSR) + 1110 PRO/Wireless LAN Module + 1111 PRO/Wireless 2011B 802.11b Adapter [Intersil PRISM 2.5] + 1122 Integrated Hub + 1134 Hollister Mobile Monitor + 1139 In-Target Probe (ITP) + 1234 Prototype Reader/Writer + 1403 WiMAX Connection 2400m + 1405 WiMAX Connection 2400m + 1406 WiMAX Connection 2400m + 2448 82801 PCI Bridge + 3100 PRO/DSL 3220 Modem - WAN + 3101 PRO/DSL 3220 Modem + 3240 AnyPoint® 3240 Modem - WAN + 3241 AnyPoint® 3240 Modem + 8602 Miniature Card Slot + 8c26 8 Series/C220 Series EHCI #1 + 8c2d 8 Series/C220 Series EHCI #2 + 8c31 eXtensible Host Controller + 9303 8x930Hx Hub + 9500 CE 9500 DVB-T + 9890 82930 Test Board + a36d Host Controller + beef SCM Miniature Card Reader/Writer + c013 Wireless HID Station + dead Galileo + f001 XScale PXA27x Bulverde flash + f1a5 Z-U130 [Value Solid State Drive] +8087 Intel Corp. + 0020 Integrated Rate Matching Hub + 0024 Integrated Rate Matching Hub + 0025 Wireless-AC 9260 Bluetooth Adapter + 0026 AX201 Bluetooth + 0029 AX200 Bluetooth + 0032 AX210 Bluetooth + 0716 Modem Flashloader + 07da Centrino Bluetooth Wireless Transceiver + 07db Atom C2000 Root Hub + 07dc Bluetooth wireless interface + 07eb Oaktrail tablet + 0a2a Bluetooth wireless interface + 0a2b Bluetooth wireless interface + 0a9e Edison + 0aa7 Wireless-AC 3168 Bluetooth + 0aaa Bluetooth 9460/9560 Jefferson Peak (JfP) + 0fff Intel Android Bootloader Interface + 8000 Integrated Rate Matching Hub + 8001 Integrated Hub + 8002 8 channel internal hub + 8008 Integrated Rate Matching Hub + 800a Hub +80ee VirtualBox + 0021 USB Tablet + 0022 multitouch tablet +8282 Keio + 3201 Retro Adapter + 3301 Retro Adapter Mouse +8301 Hapurs + 0089 HPBT05R 2.4 G Mini Wireless Touchpad Keyboard +8341 EGO Systems, Inc. + 2000 Flashdisk +8564 Transcend Information, Inc. + 1000 JetFlash + 4000 microSD/SD/CF UHS-II Card Reader [RDF8, RDF9] + 6000 digital photo frame PF830 + 6002 digital photo frame PF830 + 7000 StoreJet 25H3 +8644 Intenso GmbG + 8003 Micro Line + 800b Micro Line (4GB) +8e06 CH Products, Inc. + f700 DT225 Trackball +8ea3 Doosl + a02c Wireless Presenter Receiver +9016 Sitecom + 182d WL-022 802.11b Adapter +9022 TeVii Technology Ltd. + d630 DVB-S S630 + d650 DVB-S2 S650 + d660 DVB-S2 S660 +9148 GeoLab, Ltd +# All of GeoLab's devices share the same ID 0004. + 0004 R3 Compatible Device +9516 Studiologic +9710 MosChip Semiconductor + 7703 MCS7703 Serial Port Adapter + 7705 MCS7705 Parallel port adapter + 7715 MCS7715 Parallel and serial port adapter + 7717 MCS7717 3-port hub with serial and parallel adapter + 7720 MCS7720 Dual serial port adapter + 7730 MCS7730 10/100 Mbps Ethernet adapter + 7780 MCS7780 4Mbps Fast IrDA Adapter + 7784 MCS7784 115.2Kb IrDA Adapter + 7810 MCS7810 Serial Port Adapter + 7820 MCS7820 Dual Serial Port Adapter + 7830 MCS7830 10/100 Mbps Ethernet adapter + 7832 MCS7832 10/100 Mbps Ethernet adapter + 7840 MCS7820/MCS7840 2/4 port serial adapter + 9990 MCS9990 PCIe Host Controller +9849 Bestmedia CD Recordable GmbH & Co. KG + 0701 Platinum MyDrive HP +9886 Astro Gaming + 0015 A50 +9999 Odeon + 0001 JAF Mobile Phone Flasher Interface +99fa Grandtec + 8988 V.cap Camera Device +9ac4 J. Westhues + 4b8f ProxMark-3 RFID Instrument +9e88 Marvell Semiconductor, Inc. + 9e8f Plug Computer Basic [SheevaPlug] +a014 Insignia (Best Buy) + b014 Desktop Microphone NS-PAUM50 +a108 Ingenic Semiconductor Co.,Ltd + 1000 X1000 + 4775 JZ4775 Boot Device +a128 AnMo Electronics Corp. / Dino-Lite (?) + 0610 Dino-Lite Digital Microscope (SN9C201 + HV7131R) + 0611 Dino-Lite Digital Microscope (SN9C201 + HV7131R) + 0612 Dino-Lite Digital Microscope (SN9C120 + HV7131R) + 0613 Dino-Lite Digital Microscope (SN9C201 + HV7131R) + 0614 Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111) + 0615 Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111) + 0616 Dino-Lite Digital Microscope (SN9C120 + HV7131R) + 0617 Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111) + 0618 Dino-Lite Digital Microscope (SN9C201 + HV7131R) +a168 AnMo Electronics Corporation + 0610 Dino-Lite Digital Microscope + 0611 Dino-Lite Digital Microscope + 0613 Dino-Lite Digital Microscope + 0614 Dino-Lite Pro Digital Microscope + 0615 Dino-Lite Pro Digital Microscope + 0617 Dino-Lite Pro Digital Microscope + 0618 Dino-Lite Digital Microscope +a466 Haikou Xingong Electronics Co.,Ltd + 0a53 TL866II Plus Device Programmer [MiniPRO] +a600 ASIX s.r.o. + 5500 zuban H2OPS - GPS for canoeing + a000 SIGMA Logic Analyzer + a002 EMUSB interface pro MU Beta + c000 MREL Data Trap II + c001 VUTS DMU4 + c002 Electrone MASH + c005 MREL HTU HandiTrap cable + c006 JRC COmeter + e110 OK1ZIA Davac 4.x + e112 OK1ZIA Antenna rotator + e113 OK1ZIA GPIO + e114 OK1ZIA HD&Keyb +a727 3Com + 6893 3CRUSB20075 OfficeConnect Wireless 108Mbps 11g Adapter [Atheros AR5523] + 6895 AR5523 + 6897 AR5523 +a88a Clas Ohlsson + 3003 PCFree Multimedia Remote Control PC +aaaa MXT + 8815 microSD CardReader + 8816 microSD CardReader +ab12 aplic + 34cd JMICRON JMS578 SATA 6Gb/s bridge +abcd LogiLink + 1234 UDisk flash drive + 6104 PCCloneEX Lite+ SATA docking station [QP0017] + cdee Petcam +b58e Blue Microphones + 9e84 Yeti Stereo Microphone +ba77 Clockmaker + 7147 Agterbosch +c216 Card Device Expert Co., LTD + 0180 MSR90 MagStripe reader +c251 Keil Software, Inc. + 1705 MCB2300 + 2710 ULink + 2723 ULink-ME +c502 AGPTek + 0029 Rocker +cace CACE Technologies Inc. + 0002 AirPCAP Classic 802.11 packet capture adapter + 0300 AirPcap NX [Atheros AR9170+AR9104] +cd12 SMART TECHNOLOGY INDUSTRIAL LTD. +d208 Ultimarc + 0310 Mini-PAC Arcade Control Interface +d209 Ultimarc + 0301 I-PAC Arcade Control Interface + 0501 Ultra-Stik Ultimarc Ultra-Stik Player 1 + 1571 A-PAC Arcade Control Interface +d904 LogiLink + 0003 Laser Mouse (ID0009A) +e2b7 Jie Li + 0811 CD002 + 0812 CD005 MP3 Player +e4e4 Xorcom Ltd. + 1130 Astribank series + 1131 Astribank series + 1132 Astribank series + 1140 Astribank series + 1141 Astribank series + 1142 Astribank series + 1150 Astribank series + 1151 Astribank series + 1152 Astribank series + 1160 Astribank 2 series + 1161 Astribank 2 series + 1162 Astribank 2 series +eb03 MakingThings + 0920 Make Controller Kit +eb1a eMPIA Technology, Inc. + 17de KWorld V-Stream XPERT DTV - DVB-T USB cold + 17df KWorld V-Stream XPERT DTV - DVB-T USB warm + 2571 M035 Compact Web Cam + 2710 SilverCrest Webcam + 2750 ECS Elitegroup G220 integrated Webcam + 2761 EeePC 701 integrated Webcam + 2776 Combined audio and video input device + 2800 EM2800 Video Capture + 2801 EM2801 Video Capture + 2820 EM2820 Video Capture + 2821 EM2820 Video Capture + 2840 EM2840 Video Capture + 2841 EM2840 Video Capture + 2861 EasyCAP DC60+ [EM2861] + 2863 Video Grabber + 2870 Pinnacle PCTV Stick + 2881 EM2881 Video Controller + 50a3 Gadmei UTV380 TV Box + 50a6 Gadmei UTV330 TV Box + 5166 video grabber 28282 + 5184 VIDBOX NW06 [EM28281] + 8179 Terratec Cinergy T2 Stick HD + e305 KWorld PlusTV Analog Stick + e355 KWorld DVB-T 355U Digital TV Dongle +eb2a KWorld +ef18 SMART TECHNOLOGY INDUSTRIAL LTD. +f003 Hewlett Packard + 6002 PhotoSmart C500 +f007 Teslong + a999 Endoscope Camera + b999 Otoscope Camera +f182 Leap Motion + 0003 Controller +f3f0 CCT, Inc + 0740 multi-function device + 1340 multi-function printer + 1440 printer device + 1921 printer +f4ec Atten Electronics / Siglent Technologies + ee38 Digital Storage Oscilloscope +f4ed Shenzhen Siglent Co., Ltd. + ee37 SDG1010 Waveform Generator + ee3a SDG1010 Waveform Generator (TMC mode) +f766 Hama + 0001 PC-Gamepad "Greystorm" +fa11 DyingLight + 5afe DyingLight +fc08 Conrad Electronic SE + 0101 MIDI Cable UA0037 +ff00 Power Delivery +ffee FNK Tech + 0100 Card Reader Controller RTS5101/RTS5111/RTS5116 + +# List of known device classes, subclasses and protocols + +# Syntax: +# C class class_name +# subclass subclass_name <-- single tab +# protocol protocol_name <-- two tabs + +C 00 (Defined at Interface level) +C 01 Audio + 01 Control Device + 02 Streaming + 03 MIDI Streaming +C 02 Communications + 01 Direct Line + 02 Abstract (modem) + 00 None + 01 AT-commands (v.25ter) + 02 AT-commands (PCCA101) + 03 AT-commands (PCCA101 + wakeup) + 04 AT-commands (GSM) + 05 AT-commands (3G) + 06 AT-commands (CDMA) + fe Defined by command set descriptor + ff Vendor Specific (MSFT RNDIS?) + 03 Telephone + 04 Multi-Channel + 05 CAPI Control + 06 Ethernet Networking + 07 ATM Networking + 08 Wireless Handset Control + 09 Device Management + 0a Mobile Direct Line + 0b OBEX + 0c Ethernet Emulation + 07 Ethernet Emulation (EEM) +C 03 Human Interface Device + 00 No Subclass + 00 None + 01 Keyboard + 02 Mouse + 01 Boot Interface Subclass + 00 None + 01 Keyboard + 02 Mouse +C 05 Physical Interface Device +C 06 Imaging + 01 Still Image Capture + 01 Picture Transfer Protocol (PIMA 15470) +C 07 Printer + 01 Printer + 00 Reserved/Undefined + 01 Unidirectional + 02 Bidirectional + 03 IEEE 1284.4 compatible bidirectional + ff Vendor Specific +C 08 Mass Storage + 01 RBC (typically Flash) + 00 Control/Bulk/Interrupt + 01 Control/Bulk + 50 Bulk-Only + 02 SFF-8020i, MMC-2 (ATAPI) + 03 QIC-157 + 04 Floppy (UFI) + 00 Control/Bulk/Interrupt + 01 Control/Bulk + 50 Bulk-Only + 05 SFF-8070i + 06 SCSI + 00 Control/Bulk/Interrupt + 01 Control/Bulk + 50 Bulk-Only +C 09 Hub + 00 Unused + 00 Full speed (or root) hub + 01 Single TT + 02 TT per port +C 0a CDC Data + 00 Unused + 30 I.430 ISDN BRI + 31 HDLC + 32 Transparent + 50 Q.921M + 51 Q.921 + 52 Q.921TM + 90 V.42bis + 91 Q.932 EuroISDN + 92 V.120 V.24 rate ISDN + 93 CAPI 2.0 + fd Host Based Driver + fe CDC PUF + ff Vendor specific +C 0b Chip/SmartCard +C 0d Content Security +C 0e Video + 00 Undefined + 01 Video Control + 02 Video Streaming + 03 Video Interface Collection +C 58 Xbox + 42 Controller +C dc Diagnostic + 01 Reprogrammable Diagnostics + 01 USB2 Compliance +C e0 Wireless + 01 Radio Frequency + 01 Bluetooth + 02 Ultra WideBand Radio Control + 03 RNDIS + 02 Wireless USB Wire Adapter + 01 Host Wire Adapter Control/Data Streaming + 02 Device Wire Adapter Control/Data Streaming + 03 Device Wire Adapter Isochronous Streaming +C ef Miscellaneous Device + 01 ? + 01 Microsoft ActiveSync + 02 Palm Sync + 02 ? + 01 Interface Association + 02 Wire Adapter Multifunction Peripheral + 03 ? + 01 Cable Based Association + 05 USB3 Vision +C fe Application Specific Interface + 01 Device Firmware Update + 02 IRDA Bridge + 03 Test and Measurement + 01 TMC + 02 USB488 +C ff Vendor Specific Class + ff Vendor Specific Subclass + ff Vendor Specific Protocol + +# List of Audio Class Terminal Types + +# Syntax: +# AT terminal_type terminal_type_name + +AT 0100 USB Undefined +AT 0101 USB Streaming +AT 01ff USB Vendor Specific +AT 0200 Input Undefined +AT 0201 Microphone +AT 0202 Desktop Microphone +AT 0203 Personal Microphone +AT 0204 Omni-directional Microphone +AT 0205 Microphone Array +AT 0206 Processing Microphone Array +AT 0300 Output Undefined +AT 0301 Speaker +AT 0302 Headphones +AT 0303 Head Mounted Display Audio +AT 0304 Desktop Speaker +AT 0305 Room Speaker +AT 0306 Communication Speaker +AT 0307 Low Frequency Effects Speaker +AT 0400 Bidirectional Undefined +AT 0401 Handset +AT 0402 Headset +AT 0403 Speakerphone, no echo reduction +AT 0404 Echo-suppressing speakerphone +AT 0405 Echo-canceling speakerphone +AT 0500 Telephony Undefined +AT 0501 Phone line +AT 0502 Telephone +AT 0503 Down Line Phone +AT 0600 External Undefined +AT 0601 Analog Connector +AT 0602 Digital Audio Interface +AT 0603 Line Connector +AT 0604 Legacy Audio Connector +AT 0605 SPDIF interface +AT 0606 1394 DA stream +AT 0607 1394 DV stream soundtrack +AT 0700 Embedded Undefined +AT 0701 Level Calibration Noise Source +AT 0702 Equalization Noise +AT 0703 CD Player +AT 0704 DAT +AT 0705 DCC +AT 0706 MiniDisc +AT 0707 Analog Tape +AT 0708 Phonograph +AT 0709 VCR Audio +AT 070a Video Disc Audio +AT 070b DVD Audio +AT 070c TV Tuner Audio +AT 070d Satellite Receiver Audio +AT 070e Cable Tuner Audio +AT 070f DSS Audio +AT 0710 Radio Receiver +AT 0711 Radio Transmitter +AT 0712 Multitrack Recorder +AT 0713 Synthesizer + +# List of HID Descriptor Types + +# Syntax: +# HID descriptor_type descriptor_type_name + +HID 21 HID +HID 22 Report +HID 23 Physical + +# List of HID Descriptor Item Types +# Note: 2 bits LSB encode data length following + +# Syntax: +# R item_type item_type_name + +R 04 Usage Page +R 08 Usage +R 14 Logical Minimum +R 18 Usage Minimum +R 24 Logical Maximum +R 28 Usage Maximum +R 34 Physical Minimum +R 38 Designator Index +R 44 Physical Maximum +R 48 Designator Minimum +R 54 Unit Exponent +R 58 Designator Maximum +R 64 Unit +R 74 Report Size +R 78 String Index +R 80 Input +R 84 Report ID +R 88 String Minimum +R 90 Output +R 94 Report Count +R 98 String Maximum +R a0 Collection +R a4 Push +R a8 Delimiter +R b0 Feature +R b4 Pop +R c0 End Collection + +# List of Physical Descriptor Bias Types + +# Syntax: +# BIAS item_type item_type_name + +BIAS 0 Not Applicable +BIAS 1 Right Hand +BIAS 2 Left Hand +BIAS 3 Both Hands +BIAS 4 Either Hand + +# List of Physical Descriptor Item Types + +# Syntax: +# PHY item_type item_type_name + +PHY 00 None +PHY 01 Hand +PHY 02 Eyeball +PHY 03 Eyebrow +PHY 04 Eyelid +PHY 05 Ear +PHY 06 Nose +PHY 07 Mouth +PHY 08 Upper Lip +PHY 09 Lower Lip +PHY 0a Jaw +PHY 0b Neck +PHY 0c Upper Arm +PHY 0d Elbow +PHY 0e Forearm +PHY 0f Wrist +PHY 10 Palm +PHY 11 Thumb +PHY 12 Index Finger +PHY 13 Middle Finger +PHY 14 Ring Finger +PHY 15 Little Finger +PHY 16 Head +PHY 17 Shoulder +PHY 18 Hip +PHY 19 Waist +PHY 1a Thigh +PHY 1b Knee +PHY 1c calf +PHY 1d Ankle +PHY 1e Foot +PHY 1f Heel +PHY 20 Ball of Foot +PHY 21 Big Toe +PHY 22 Second Toe +PHY 23 Third Toe +PHY 24 Fourth Toe +PHY 25 Fifth Toe +PHY 26 Brow +PHY 27 Cheek + +# List of HID Usages + +# Syntax: +# HUT hi _usage_page hid_usage_page_name +# hid_usage hid_usage_name + +HUT 00 Undefined +HUT 01 Generic Desktop Controls + 000 Undefined + 001 Pointer + 002 Mouse + 004 Joystick + 005 Gamepad + 006 Keyboard + 007 Keypad + 008 Multi-Axis Controller + 030 Direction-X + 031 Direction-Y + 032 Direction-Z + 033 Rotate-X + 034 Rotate-Y + 035 Rotate-Z + 036 Slider + 037 Dial + 038 Wheel + 039 Hat Switch + 03a Counted Buffer + 03b Byte Count + 03c Motion Wakeup + 03d Start + 03e Select + 040 Vector-X + 041 Vector-Y + 042 Vector-Z + 043 Vector-X relative Body + 044 Vector-Y relative Body + 045 Vector-Z relative Body + 046 Vector + 080 System Control + 081 System Power Down + 082 System Sleep + 083 System Wake Up + 084 System Context Menu + 085 System Main Menu + 086 System App Menu + 087 System Menu Help + 088 System Menu Exit + 089 System Menu Select + 08a System Menu Right + 08b System Menu Left + 08c System Menu Up + 08d System Menu Down + 090 Direction Pad Up + 091 Direction Pad Down + 092 Direction Pad Right + 093 Direction Pad Left +HUT 02 Simulation Controls + 000 Undefined + 001 Flight Simulation Device + 002 Automobile Simulation Device + 003 Tank Simulation Device + 004 Spaceship Simulation Device + 005 Submarine Simulation Device + 006 Sailing Simulation Device + 007 Motorcycle Simulation Device + 008 Sports Simulation Device + 009 Airplane Simualtion Device + 00a Helicopter Simulation Device + 00b Magic Carpet Simulation Device + 00c Bicycle Simulation Device + 020 Flight Control Stick + 021 Flight Stick + 022 Cyclic Control + 023 Cyclic Trim + 024 Flight Yoke + 025 Track Control + 0b0 Aileron + 0b1 Aileron Trim + 0b2 Anti-Torque Control + 0b3 Autopilot Enable + 0b4 Chaff Release + 0b5 Collective Control + 0b6 Dive Break + 0b7 Electronic Countermeasures + 0b8 Elevator + 0b9 Elevator Trim + 0ba Rudder + 0bb Throttle + 0bc Flight COmmunications + 0bd Flare Release + 0be Landing Gear + 0bf Toe Break + 0c0 Trigger + 0c1 Weapon Arm + 0c2 Weapons Select + 0c3 Wing Flaps + 0c4 Accelerator + 0c5 Brake + 0c6 Clutch + 0c7 Shifter + 0c8 Steering + 0c9 Turret Direction + 0ca Barrel Elevation + 0cb Drive Plane + 0cc Ballast + 0cd Bicylce Crank + 0ce Handle Bars + 0cf Front Brake + 0d0 Rear Brake +HUT 03 VR Controls + 000 Unidentified + 001 Belt + 002 Body Suit + 003 Flexor + 004 Glove + 005 Head Tracker + 006 Head Mounted Display + 007 Hand Tracker + 008 Oculometer + 009 Vest + 00a Animatronic Device + 020 Stereo Enable + 021 Display Enable +HUT 04 Sport Controls + 000 Unidentified + 001 Baseball Bat + 002 Golf Club + 003 Rowing Machine + 004 Treadmill + 030 Oar + 031 Slope + 032 Rate + 033 Stick Speed + 034 Stick Face Angle + 035 Stick Heel/Toe + 036 Stick Follow Through + 038 Stick Type + 039 Stick Height + 047 Stick Temp + 050 Putter + 051 1 Iron + 052 2 Iron + 053 3 Iron + 054 4 Iron + 055 5 Iron + 056 6 Iron + 057 7 Iron + 058 8 Iron + 059 9 Iron + 05a 10 Iron + 05b 11 Iron + 05c Sand Wedge + 05d Loft Wedge + 05e Power Wedge + 05f 1 Wood + 060 3 Wood + 061 5 Wood + 062 7 Wood + 063 9 Wood +HUT 05 Game Controls + 000 Undefined + 001 3D Game Controller + 002 Pinball Device + 003 Gun Device + 020 Point Of View + 021 Turn Right/Left + 022 Pitch Right/Left + 023 Roll Forward/Backward + 024 Move Right/Left + 025 Move Forward/Backward + 026 Move Up/Down + 027 Lean Right/Left + 028 Lean Forward/Backward + 029 Height of POV + 02a Flipper + 02b Secondary Flipper + 02c Bump + 02d New Game + 02e Shoot Ball + 02f Player + 030 Gun Bolt + 031 Gun Clip + 032 Gun Selector + 033 Gun Single Shot + 034 Gun Burst + 035 Gun Automatic + 036 Gun Safety + 037 Gamepad Fire/Jump + 038 Gamepad Fun + 039 Gamepad Trigger +HUT 07 Keyboard + 000 No Event + 001 Keyboard ErrorRollOver + 002 Keyboard POSTfail + 003 Keyboard Error Undefined + 004 A + 005 B + 006 C + 007 D + 008 E + 009 F + 00a G + 00b H + 00c I + 00d J + 00e K + 00f L + 010 M + 011 N + 012 O + 013 P + 014 Q + 015 R + 016 S + 017 T + 018 U + 019 V + 01a W + 01b X + 01c Y + 01d Z + 01e 1 and ! (One and Exclamation) + 01f 2 and @ (2 and at) + 020 3 and # (3 and Hash) + 021 4 and $ (4 and Dollar Sign) + 022 5 and % (5 and Percent Sign) + 023 6 and ^ (6 and circumflex) + 024 7 and & (Seven and Ampersand) + 025 8 and * (Eight and asterisk) + 026 9 and ( (Nine and Parenthesis Left) + 027 0 and ) (Zero and Parenthesis Right) + 028 Return (Enter) + 029 Escape + 02a Delete (Backspace) + 02b Tab + 02c Space Bar + 02d - and _ (Minus and underscore) + 02e = and + (Equal and Plus) + 02f [ and { (Bracket and Braces Left) + 030 ] and } (Bracket and Braces Right) + 031 \ and | (Backslash and Bar) + 032 # and ~ (Hash and Tilde, Non-US Keyboard near right shift) + 033 ; and : (Semicolon and Colon) + 034 and " (Accent Acute and Double Quotes) + 035 ` and ~ (Accent Grace and Tilde) + 036 , and < (Comma and Less) + 037 . and > (Period and Greater) + 038 / and ? (Slash and Question Mark) + 039 Caps Lock + 03a F1 + 03b F2 + 03c F3 + 03d F4 + 03e F5 + 03f F6 + 040 F7 + 041 F8 + 042 F9 + 043 F10 + 044 F11 + 045 F12 + 046 Print Screen + 047 Scroll Lock + 048 Pause + 049 Insert + 04a Home + 04b Page Up + 04c Delete Forward (without Changing Position) + 04d End + 04e Page Down + 04f Right Arrow + 050 Left Arrow + 051 Down Arrow + 052 Up Arrow + 053 Num Lock and Clear + 054 Keypad / (Division Sign) + 055 Keypad * (Multiplication Sign) + 056 Keypad - (Subtraction Sign) + 057 Keypad + (Addition Sign) + 058 Keypad Enter + 059 Keypad 1 and END + 05a Keypad 2 and Down Arrow + 05b Keypad 3 and Page Down + 05c Keypad 4 and Left Arrow + 05d Keypad 5 (Tactilei Raised) + 05f Keypad 6 and Right Arrow + 060 Keypad 7 and Home + 061 Keypad 8 and Up Arrow + 062 Keypad 8 and Page Up + 063 Keypad . (decimal delimiter) and Delete + 064 \ and | (Backslash and Bar, UK and Non-US Keyboard near left shift) + 065 Keyboard Application (Windows Key for Win95 or Compose) + 066 Power (not a key) + 067 Keypad = (Equal Sign) + 068 F13 + 069 F14 + 06a F15 + 06b F16 + 06c F17 + 06d F18 + 06e F19 + 06f F20 + 070 F21 + 071 F22 + 072 F23 + 073 F24 + 074 Execute + 075 Help + 076 Menu + 077 Select + 078 Stop + 079 Again + 07a Undo + 07b Cut + 07c Copy + 07d Paste + 07e Find + 07f Mute + 080 Volume Up + 081 Volume Down + 082 Locking Caps Lock + 083 Locking Num Lock + 084 Locking Scroll Lock + 085 Keypad Comma + 086 Keypad Equal Sign (AS/400) + 087 International 1 (PC98) + 088 International 2 (PC98) + 089 International 3 (PC98) + 08a International 4 (PC98) + 08b International 5 (PC98) + 08c International 6 (PC98) + 08d International 7 (Toggle Single/Double Byte Mode) + 08e International 8 + 08f International 9 + 090 LANG 1 (Hangul/English Toggle, Korea) + 091 LANG 2 (Hanja Conversion, Korea) + 092 LANG 3 (Katakana, Japan) + 093 LANG 4 (Hiragana, Japan) + 094 LANG 5 (Zenkaku/Hankaku, Japan) + 095 LANG 6 + 096 LANG 7 + 097 LANG 8 + 098 LANG 9 + 099 Alternate Erase + 09a SysReq/Attention + 09b Cancel + 09c Clear + 09d Prior + 09e Return + 09f Separator + 0a0 Out + 0a1 Open + 0a2 Clear/Again + 0a3 CrSel/Props + 0a4 ExSel + 0e0 Control Left + 0e1 Shift Left + 0e2 Alt Left + 0e3 GUI Left + 0e4 Control Right + 0e5 Shift Right + 0e6 Alt Rigth + 0e7 GUI Right +HUT 08 LEDs + 000 Undefined + 001 NumLock + 002 CapsLock + 003 Scroll Lock + 004 Compose + 005 Kana + 006 Power + 007 Shift + 008 Do not disturb + 009 Mute + 00a Tone Enabke + 00b High Cut Filter + 00c Low Cut Filter + 00d Equalizer Enable + 00e Sound Field ON + 00f Surround On + 010 Repeat + 011 Stereo + 012 Sampling Rate Detect + 013 Spinning + 014 CAV + 015 CLV + 016 Recording Format Detect + 017 Off-Hook + 018 Ring + 019 Message Waiting + 01a Data Mode + 01b Battery Operation + 01c Battery OK + 01d Battery Low + 01e Speaker + 01f Head Set + 020 Hold + 021 Microphone + 022 Coverage + 023 Night Mode + 024 Send Calls + 025 Call Pickup + 026 Conference + 027 Stand-by + 028 Camera On + 029 Camera Off + 02a On-Line + 02b Off-Line + 02c Busy + 02d Ready + 02e Paper-Out + 02f Paper-Jam + 030 Remote + 031 Forward + 032 Reverse + 033 Stop + 034 Rewind + 035 Fast Forward + 036 Play + 037 Pause + 038 Record + 039 Error + 03a Usage Selected Indicator + 03b Usage In Use Indicator + 03c Usage Multi Indicator + 03d Indicator On + 03e Indicator Flash + 03f Indicator Slow Blink + 040 Indicator Fast Blink + 041 Indicator Off + 042 Flash On Time + 043 Slow Blink On Time + 044 Slow Blink Off Time + 045 Fast Blink On Time + 046 Fast Blink Off Time + 047 Usage Color Indicator + 048 Indicator Red + 049 Indicator Green + 04a Indicator Amber + 04b Generic Indicator + 04c System Suspend + 04d External Power Connected +HUT 09 Buttons + 000 No Button Pressed + 001 Button 1 (Primary) + 002 Button 2 (Secondary) + 003 Button 3 (Tertiary) + 004 Button 4 + 005 Button 5 +HUT 0a Ordinal + 001 Instance 1 + 002 Instance 2 + 003 Instance 3 +HUT 0b Telephony + 000 Unassigned + 001 Phone + 002 Answering Machine + 003 Message Controls + 004 Handset + 005 Headset + 006 Telephony Key Pad + 007 Programmable Button + 020 Hook Switch + 021 Flash + 022 Feature + 023 Hold + 024 Redial + 025 Transfer + 026 Drop + 027 Park + 028 Forward Calls + 029 Alternate Function + 02a Line + 02b Speaker Phone + 02c Conference + 02d Ring Enable + 02e Ring Select + 02f Phone Mute + 030 Caller ID + 050 Speed Dial + 051 Store Number + 052 Recall Number + 053 Phone Directory + 070 Voice Mail + 071 Screen Calls + 072 Do Not Disturb + 073 Message + 074 Answer On/Offf + 090 Inside Dial Tone + 091 Outside Dial Tone + 092 Inside Ring Tone + 093 Outside Ring Tone + 094 Priority Ring Tone + 095 Inside Ringback + 096 Priority Ringback + 097 Line Busy Tone + 098 Recorder Tone + 099 Call Waiting Tone + 09a Confirmation Tone 1 + 09b Confirmation Tone 2 + 09c Tones Off + 09d Outside Ringback + 0b0 Key 1 + 0b1 Key 2 + 0b3 Key 3 + 0b4 Key 4 + 0b5 Key 5 + 0b6 Key 6 + 0b7 Key 7 + 0b8 Key 8 + 0b9 Key 9 + 0ba Key Star + 0bb Key Pound + 0bc Key A + 0bd Key B + 0be Key C + 0bf Key D +HUT 0c Consumer + 000 Unassigned + 001 Consumer Control + 002 Numeric Key Pad + 003 Programmable Buttons + 020 +10 + 021 +100 + 022 AM/PM + 030 Power + 031 Reset + 032 Sleep + 033 Sleep After + 034 Sleep Mode + 035 Illumination + 036 Function Buttons + 040 Menu + 041 Menu Pick + 042 Menu Up + 043 Menu Down + 044 Menu Left + 045 Menu Right + 046 Menu Escape + 047 Menu Value Increase + 048 Menu Value Decrease + 060 Data on Screen + 061 Closed Caption + 062 Closed Caption Select + 063 VCR/TV + 064 Broadcast Mode + 065 Snapshot + 066 Still + 080 Selection + 081 Assign Selection + 082 Mode Step + 083 Recall Last + 084 Enter Channel + 085 Order Movie + 086 Channel + 087 Media Selection + 088 Media Select Computer + 089 Media Select TV + 08a Media Select WWW + 08b Media Select DVD + 08c Media Select Telephone + 08d Media Select Program Guide + 08e Media Select Video Phone + 08f Media Select Games + 090 Media Select Messages + 091 Media Select CD + 092 Media Select VCR + 093 Media Select Tuner + 094 Quit + 095 Help + 096 Media Select Tape + 097 Media Select Cable + 098 Media Select Satellite + 099 Media Select Security + 09a Media Select Home + 09b Media Select Call + 09c Channel Increment + 09d Channel Decrement + 09e Media Select SAP + 0a0 VCR Plus + 0a1 Once + 0a2 Daily + 0a3 Weekly + 0a4 Monthly + 0b0 Play + 0b1 Pause + 0b2 Record + 0b3 Fast Forward + 0b4 Rewind + 0b5 Scan Next Track + 0b6 Scan Previous Track + 0b7 Stop + 0b8 Eject + 0b9 Random Play + 0ba Select Disc + 0bb Enter Disc + 0bc Repeat + 0bd Tracking + 0be Track Normal + 0bf Slow Tracking + 0c0 Frame Forward + 0c1 Frame Back + 0c2 Mark + 0c3 Clear Mark + 0c4 Repeat from Mark + 0c5 Return to Mark + 0c6 Search Mark Forward + 0c7 Search Mark Backward + 0c8 Counter Reset + 0c9 Show Counter + 0ca Tracking Increment + 0cb Tracking Decrement + 0cc Stop/Eject + 0cd Play/Pause + 0ce Play/Skip + 0e0 Volume + 0e1 Balance + 0e2 Mute + 0e3 Bass + 0e4 Treble + 0e5 Bass Boost + 0e6 Surround Mode + 0e7 Loudness + 0e8 MPX + 0e9 Volume Increment + 0ea Volume Decrement + 0f0 Speed Select + 0f1 Playback Speed + 0f2 Standard Play + 0f3 Long Play + 0f4 Extended Play + 0f5 Slow + 100 Fan Enable + 101 Fan Speed + 102 Light Enable + 103 Light Illumination Level + 104 Climate Control Enable + 105 Room Temperature + 106 Security Enable + 107 Fire Alarm + 108 Police Alarm + 150 Balance Right + 151 Balance Left + 152 Bass Increment + 153 Bass Decrement + 154 Treble Increment + 155 Treble Decrement + 160 Speaker System + 161 Channel Left + 162 Channel Right + 163 Channel Center + 164 Channel Front + 165 Channel Center Front + 166 Channel Side + 167 Channel Surround + 168 Channel Low Frequency Enhancement + 169 Channel Top + 16a Channel Unknown + 170 Sub-Channel + 171 Sub-Channel Increment + 172 Sub-Channel Decrement + 173 Alternative Audio Increment + 174 Alternative Audio Decrement + 180 Application Launch Buttons + 181 AL Launch Button Configuration Tool + 182 AL Launch Button Configuration + 183 AL Consumer Control Configuration + 184 AL Word Processor + 185 AL Text Editor + 186 AL Spreadsheet + 187 AL Graphics Editor + 188 AL Presentation App + 189 AL Database App + 18a AL Email Reader + 18b AL Newsreader + 18c AL Voicemail + 18d AL Contacts/Address Book + 18e AL Calendar/Schedule + 18f AL Task/Project Manager + 190 AL Log/Jounal/Timecard + 191 AL Checkbook/Finance + 192 AL Calculator + 193 AL A/V Capture/Playback + 194 AL Local Machine Browser + 195 AL LAN/Wan Browser + 196 AL Internet Browser + 197 AL Remote Networking/ISP Connect + 198 AL Network Conference + 199 AL Network Chat + 19a AL Telephony/Dialer + 19b AL Logon + 19c AL Logoff + 19d AL Logon/Logoff + 19e AL Terminal Local/Screensaver + 19f AL Control Panel + 1a0 AL Command Line Processor/Run + 1a1 AL Process/Task Manager + 1a2 AL Select Task/Application + 1a3 AL Next Task/Application + 1a4 AL Previous Task/Application + 1a5 AL Preemptive Halt Task/Application + 200 Generic GUI Application Controls + 201 AC New + 202 AC Open + 203 AC CLose + 204 AC Exit + 205 AC Maximize + 206 AC Minimize + 207 AC Save + 208 AC Print + 209 AC Properties + 21a AC Undo + 21b AC Copy + 21c AC Cut + 21d AC Paste + 21e AC Select All + 21f AC Find + 220 AC Find and Replace + 221 AC Search + 222 AC Go To + 223 AC Home + 224 AC Back + 225 AC Forward + 226 AC Stop + 227 AC Refresh + 228 AC Previous Link + 229 AC Next Link + 22b AC History + 22c AC Subscriptions + 22d AC Zoom In + 22e AC Zoom Out + 22f AC Zoom + 230 AC Full Screen View + 231 AC Normal View + 232 AC View Toggle + 233 AC Scroll Up + 234 AC Scroll Down + 235 AC Scroll + 236 AC Pan Left + 237 AC Pan Right + 238 AC Pan + 239 AC New Window + 23a AC Tile Horizontally + 23b AC Tile Vertically + 23c AC Format +HUT 0d Digitizer + 000 Undefined + 001 Digitizer + 002 Pen + 003 Light Pen + 004 Touch Screen + 005 Touch Pad + 006 White Board + 007 Coordinate Measuring Machine + 008 3D Digitizer + 009 Stereo Plotter + 00a Articulated Arm + 00b Armature + 00c Multiple Point Digitizer + 00d Free Space Wand + 020 Stylus + 021 Puck + 022 Finger + 030 Tip Pressure + 031 Barrel Pressure + 032 In Range + 033 Touch + 034 Untouch + 035 Tap + 036 Quality + 037 Data Valid + 038 Transducer Index + 039 Tablet Function Keys + 03a Program Change Keys + 03b Battery Strength + 03c Invert + 03d X Tilt + 03e Y Tilt + 03f Azimuth + 040 Altitude + 041 Twist + 042 Tip Switch + 043 Secondary Tip Switch + 044 Barrel Switch + 045 Eraser + 046 Tablet Pick + 047 Confidence + 048 Width + 049 Height + 051 Contact ID + 052 Input Mode + 053 Device Index + 054 Contact Count + 055 Maximum Contact Number +HUT 0f PID Page + 000 Undefined + 001 Physical Interface Device + 020 Normal + 021 Set Effect Report + 022 Effect Block Index + 023 Parameter Block Offset + 024 ROM Flag + 025 Effect Type + 026 ET Constant Force + 027 ET Ramp + 028 ET Custom Force Data + 030 ET Square + 031 ET Sine + 032 ET Triangle + 033 ET Sawtooth Up + 034 ET Sawtooth Down + 040 ET Spring + 041 ET Damper + 042 ET Inertia + 043 ET Friction + 050 Duration + 051 Sample Period + 052 Gain + 053 Trigger Button + 054 Trigger Repeat Interval + 055 Axes Enable + 056 Direction Enable + 057 Direction + 058 Type Specific Block Offset + 059 Block Type + 05A Set Envelope Report + 05B Attack Level + 05C Attack Time + 05D Fade Level + 05E Fade Time + 05F Set Condition Report + 060 CP Offset + 061 Positive Coefficient + 062 Negative Coefficient + 063 Positive Saturation + 064 Negative Saturation + 065 Dead Band + 066 Download Force Sample + 067 Isoch Custom Force Enable + 068 Custom Force Data Report + 069 Custom Force Data + 06A Custom Force Vendor Defined Data + 06B Set Custom Force Report + 06C Custom Force Data Offset + 06D Sample Count + 06E Set Periodic Report + 06F Offset + 070 Magnitude + 071 Phase + 072 Period + 073 Set Constant Force Report + 074 Set Ramp Force Report + 075 Ramp Start + 076 Ramp End + 077 Effect Operation Report + 078 Effect Operation + 079 Op Effect Start + 07A Op Effect Start Solo + 07B Op Effect Stop + 07C Loop Count + 07D Device Gain Report + 07E Device Gain + 07F PID Pool Report + 080 RAM Pool Size + 081 ROM Pool Size + 082 ROM Effect Block Count + 083 Simultaneous Effects Max + 084 Pool Alignment + 085 PID Pool Move Report + 086 Move Source + 087 Move Destination + 088 Move Length + 089 PID Block Load Report + 08B Block Load Status + 08C Block Load Success + 08D Block Load Full + 08E Block Load Error + 08F Block Handle + 090 PID Block Free Report + 091 Type Specific Block Handle + 092 PID State Report + 094 Effect Playing + 095 PID Device Control Report + 096 PID Device Control + 097 DC Enable Actuators + 098 DC Disable Actuators + 099 DC Stop All Effects + 09A DC Device Reset + 09B DC Device Pause + 09C DC Device Continue + 09F Device Paused + 0A0 Actuators Enabled + 0A4 Safety Switch + 0A5 Actuator Override Switch + 0A6 Actuator Power + 0A7 Start Delay + 0A8 Parameter Block Size + 0A9 Device Managed Pool + 0AA Shared Parameter Blocks + 0AB Create New Effect Report + 0AC RAM Pool Available +HUT 10 Unicode +HUT 14 Alphanumeric Display + 000 Undefined + 001 Alphanumeric Display + 020 Display Attributes Report + 021 ASCII Character Set + 022 Data Read Back + 023 Font Read Back + 024 Display Control Report + 025 Clear Display + 026 Display Enable + 027 Screen Saver Delay + 028 Screen Saver Enable + 029 Vertical Scroll + 02a Horizontal Scroll + 02b Character Report + 02c Display Data + 02d Display Status + 02e Stat Not Ready + 02f Stat Ready + 030 Err Not a loadable Character + 031 Err Font Data Cannot Be Read + 032 Cursur Position Report + 033 Row + 034 Column + 035 Rows + 036 Columns + 037 Cursor Pixel Positioning + 038 Cursor Mode + 039 Cursor Enable + 03a Cursor Blink + 03b Font Report + 03c Font Data + 03d Character Width + 03e Character Height + 03f Character Spacing Horizontal + 040 Character Spacing Vertical + 041 Unicode Character Set +HUT 80 USB Monitor + 001 Monitor Control + 002 EDID Information + 003 VDIF Information + 004 VESA Version +HUT 81 USB Monitor Enumerated Values +HUT 82 Monitor VESA Virtual Controls + 001 Degauss + 010 Brightness + 012 Contrast + 016 Red Video Gain + 018 Green Video Gain + 01a Blue Video Gain + 01c Focus + 020 Horizontal Position + 022 Horizontal Size + 024 Horizontal Pincushion + 026 Horizontal Pincushion Balance + 028 Horizontal Misconvergence + 02a Horizontal Linearity + 02c Horizontal Linearity Balance + 030 Vertical Position + 032 Vertical Size + 034 Vertical Pincushion + 036 Vertical Pincushion Balance + 038 Vertical Misconvergence + 03a Vertical Linearity + 03c Vertical Linearity Balance + 040 Parallelogram Balance (Key Distortion) + 042 Trapezoidal Distortion (Key) + 044 Tilt (Rotation) + 046 Top Corner Distortion Control + 048 Top Corner Distortion Balance + 04a Bottom Corner Distortion Control + 04c Bottom Corner Distortion Balance + 056 Horizontal Moire + 058 Vertical Moire + 05e Input Level Select + 060 Input Source Select + 06c Red Video Black Level + 06e Green Video Black Level + 070 Blue Video Black Level + 0a2 Auto Size Center + 0a4 Polarity Horizontal Sychronization + 0a6 Polarity Vertical Synchronization + 0aa Screen Orientation + 0ac Horizontal Frequency in Hz + 0ae Vertical Frequency in 0.1 Hz + 0b0 Settings + 0ca On Screen Display (OSD) + 0d4 Stereo Mode +HUT 84 Power Device Page + 000 Undefined + 001 iName + 002 Present Status + 003 Changed Status + 004 UPS + 005 Power Supply + 010 Battery System + 011 Battery System ID + 012 Battery + 013 Battery ID + 014 Charger + 015 Charger ID + 016 Power Converter + 017 Power Converter ID + 018 Outlet System + 019 Outlet System ID + 01a Input + 01b Input ID + 01c Output + 01d Output ID + 01e Flow + 01f Flow ID + 020 Outlet + 021 Outlet ID + 022 Gang + 023 Gang ID + 024 Power Summary + 025 Power Summary ID + 030 Voltage + 031 Current + 032 Frequency + 033 Apparent Power + 034 Active Power + 035 Percent Load + 036 Temperature + 037 Humidity + 038 Bad Count + 040 Config Voltage + 041 Config Current + 042 Config Frequency + 043 Config Apparent Power + 044 Config Active Power + 045 Config Percent Load + 046 Config Temperature + 047 Config Humidity + 050 Switch On Control + 051 Switch Off Control + 052 Toggle Control + 053 Low Voltage Transfer + 054 High Voltage Transfer + 055 Delay Before Reboot + 056 Delay Before Startup + 057 Delay Before Shutdown + 058 Test + 059 Module Reset + 05a Audible Alarm Control + 060 Present + 061 Good + 062 Internal Failure + 063 Voltage out of range + 064 Frequency out of range + 065 Overload + 066 Over Charged + 067 Over Temperature + 068 Shutdown Requested + 069 Shutdown Imminent + 06a Reserved + 06b Switch On/Off + 06c Switchable + 06d Used + 06e Boost + 06f Buck + 070 Initialized + 071 Tested + 072 Awaiting Power + 073 Communication Lost + 0fd iManufacturer + 0fe iProduct + 0ff iSerialNumber +HUT 85 Battery System Page + 000 Undefined + 001 SMB Battery Mode + 002 SMB Battery Status + 003 SMB Alarm Warning + 004 SMB Charger Mode + 005 SMB Charger Status + 006 SMB Charger Spec Info + 007 SMB Selector State + 008 SMB Selector Presets + 009 SMB Selector Info + 010 Optional Mfg. Function 1 + 011 Optional Mfg. Function 2 + 012 Optional Mfg. Function 3 + 013 Optional Mfg. Function 4 + 014 Optional Mfg. Function 5 + 015 Connection to SMBus + 016 Output Connection + 017 Charger Connection + 018 Battery Insertion + 019 Use Next + 01a OK to use + 01b Battery Supported + 01c SelectorRevision + 01d Charging Indicator + 028 Manufacturer Access + 029 Remaining Capacity Limit + 02a Remaining Time Limit + 02b At Rate + 02c Capacity Mode + 02d Broadcast To Charger + 02e Primary Battery + 02f Charge Controller + 040 Terminate Charge + 041 Terminate Discharge + 042 Below Remaining Capacity Limit + 043 Remaining Time Limit Expired + 044 Charging + 045 Discharging + 046 Fully Charged + 047 Fully Discharged + 048 Conditioning Flag + 049 At Rate OK + 04a SMB Error Code + 04b Need Replacement + 060 At Rate Time To Full + 061 At Rate Time To Empty + 062 Average Current + 063 Max Error + 064 Relative State Of Charge + 065 Absolute State Of Charge + 066 Remaining Capacity + 067 Full Charge Capacity + 068 Run Time To Empty + 069 Average Time To Empty + 06a Average Time To Full + 06b Cycle Count + 080 Batt. Pack Model Level + 081 Internal Charge Controller + 082 Primary Battery Support + 083 Design Capacity + 084 Specification Info + 085 Manufacturer Date + 086 Serial Number + 087 iManufacturerName + 088 iDeviceName + 089 iDeviceChemistry + 08a Manufacturer Data + 08b Rechargeable + 08c Warning Capacity Limit + 08d Capacity Granularity 1 + 08e Capacity Granularity 2 + 08f iOEMInformation + 0c0 Inhibit Charge + 0c1 Enable Polling + 0c2 Reset To Zero + 0d0 AC Present + 0d1 Battery Present + 0d2 Power Fail + 0d3 Alarm Inhibited + 0d4 Thermistor Under Range + 0d5 Thermistor Hot + 0d6 Thermistor Cold + 0d7 Thermistor Over Range + 0d8 Voltage Out Of Range + 0d9 Current Out Of Range + 0da Current Not Regulated + 0db Voltage Not Regulated + 0dc Master Mode + 0f0 Charger Selector Support + 0f1 Charger Spec + 0f2 Level 2 + 0f3 Level 3 +HUT 86 Power Pages +HUT 87 Power Pages +HUT 8c Bar Code Scanner Page (POS) +HUT 8d Scale Page (POS) +HUT 90 Camera Control Page +HUT 91 Arcade Control Page +HUT f0 Cash Device + 0f1 Cash Drawer + 0f2 Cash Drawer Number + 0f3 Cash Drawer Set + 0f4 Cash Drawer Status +HUT ff Vendor Specific + +# List of Languages + +# Syntax: +# L language_id language_name +# dialect_id dialect_name + +L 0001 Arabic + 01 Saudi Arabia + 02 Iraq + 03 Egypt + 04 Libya + 05 Algeria + 06 Morocco + 07 Tunesia + 08 Oman + 09 Yemen + 0a Syria + 0b Jordan + 0c Lebanon + 0d Kuwait + 0e U.A.E + 0f Bahrain + 10 Qatar +L 0002 Bulgarian +L 0003 Catalan +L 0004 Chinese + 01 Traditional + 02 Simplified + 03 Hongkong SAR, PRC + 04 Singapore + 05 Macau SAR +L 0005 Czech +L 0006 Danish +L 0007 German + 01 German + 02 Swiss + 03 Austrian + 04 Luxembourg + 05 Liechtenstein +L 0008 Greek +L 0009 English + 01 US + 02 UK + 03 Australian + 04 Canadian + 05 New Zealand + 06 Ireland + 07 South Africa + 08 Jamaica + 09 Carribean + 0a Belize + 0b Trinidad + 0c Zimbabwe + 0d Philippines +L 000a Spanish + 01 Castilian + 02 Mexican + 03 Modern + 04 Guatemala + 05 Costa Rica + 06 Panama + 07 Dominican Republic + 08 Venzuela + 09 Colombia + 0a Peru + 0b Argentina + 0c Ecuador + 0d Chile + 0e Uruguay + 0f Paraguay + 10 Bolivia + 11 El Salvador + 12 Honduras + 13 Nicaragua + 14 Puerto Rico +L 000b Finnish +L 000c French + 01 French + 02 Belgian + 03 Canadian + 04 Swiss + 05 Luxembourg + 06 Monaco +L 000d Hebrew +L 000e Hungarian +L 000f Idelandic +L 0010 Italian + 01 Italian + 02 Swiss +L 0011 Japanese +L 0012 Korean + 01 Korean +L 0013 Dutch + 01 Dutch + 02 Belgian +L 0014 Norwegian + 01 Bokmal + 02 Nynorsk +L 0015 Polish +L 0016 Portuguese + 01 Portuguese + 02 Brazilian +L 0017 forgotten +L 0018 Romanian +L 0019 Russian +L 001a Serbian + 01 Croatian + 02 Latin + 03 Cyrillic +L 001b Slovak +L 001c Albanian +L 001d Swedish + 01 Swedish + 02 Finland +L 001e Thai +L 001f Turkish +L 0020 Urdu + 01 Pakistan + 02 India +L 0021 Indonesian +L 0022 Ukrainian +L 0023 Belarusian +L 0024 Slovenian +L 0025 Estonian +L 0026 Latvian +L 0027 Lithuanian + 01 Lithuanian +L 0028 forgotten +L 0029 Farsi +L 002a Vietnamese +L 002b Armenian +L 002c Azeri + 01 Cyrillic + 02 Latin +L 002d Basque +L 002e forgotten +L 002f Macedonian +L 0036 Afrikaans +L 0037 Georgian +L 0038 Faeroese +L 0039 Hindi +L 003e Malay + 01 Malaysia + 02 Brunei Darassalam +L 003f Kazak +L 0041 Awahili +L 0043 Uzbek + 01 Latin + 02 Cyrillic +L 0044 Tatar +L 0045 Bengali +L 0046 Punjabi +L 0047 Gujarati +L 0048 Oriya +L 0049 Tamil +L 004a Telugu +L 004b Kannada +L 004c Malayalam +L 004d Assamese +L 004e Marathi +L 004f Sanskrit +L 0057 Konkani +L 0058 Manipuri +L 0059 Sindhi +L 0060 Kashmiri + 02 India +L 0061 Nepali + 02 India + +# HID Descriptor bCountryCode +# HID Specification 1.11 (2001-06-27) page 23 +# +# Syntax: +# HCC country_code keymap_type + +HCC 00 Not supported +HCC 01 Arabic +HCC 02 Belgian +HCC 03 Canadian-Bilingual +HCC 04 Canadian-French +HCC 05 Czech Republic +HCC 06 Danish +HCC 07 Finnish +HCC 08 French +HCC 09 German +HCC 10 Greek +HCC 11 Hebrew +HCC 12 Hungary +HCC 13 International (ISO) +HCC 14 Italian +HCC 15 Japan (Katakana) +HCC 16 Korean +HCC 17 Latin American +HCC 18 Netherlands/Dutch +HCC 19 Norwegian +HCC 20 Persian (Farsi) +HCC 21 Poland +HCC 22 Portuguese +HCC 23 Russia +HCC 24 Slovakia +HCC 25 Spanish +HCC 26 Swedish +HCC 27 Swiss/French +HCC 28 Swiss/German +HCC 29 Switzerland +HCC 30 Taiwan +HCC 31 Turkish-Q +HCC 32 UK +HCC 33 US +HCC 34 Yugoslavia +HCC 35 Turkish-F + +# List of Video Class Terminal Types + +# Syntax: +# VT terminal_type terminal_type_name + +VT 0100 USB Vendor Specific +VT 0101 USB Streaming +VT 0200 Input Vendor Specific +VT 0201 Camera Sensor +VT 0202 Sequential Media +VT 0300 Output Vendor Specific +VT 0301 Generic Display +VT 0302 Sequential Media +VT 0400 External Vendor Specific +VT 0401 Composite Video +VT 0402 S-Video +VT 0403 Component Video diff --git a/kdecore/util/kdevicedatabase.cpp b/kdecore/util/kdevicedatabase.cpp index a8e05239..e124063d 100644 --- a/kdecore/util/kdevicedatabase.cpp +++ b/kdecore/util/kdevicedatabase.cpp @@ -17,42824 +17,263 @@ */ #include "kdevicedatabase.h" -#include "klocale.h" +#include "kstandarddirs.h" #include "kdebug.h" -static const struct pciVendorTblData { - const char* const vendorid; - const char* const vendorname; -} pciVendorTbl[] = { - { "0001", "SafeNet (wrong ID)" }, - { "0010", "Allied Telesis, Inc (Wrong ID)" }, - { "0014", "Loongson Technology LLC" }, - { "001c", "PEAK-System Technik GmbH" }, - { "003d", "Lockheed Martin-Marietta Corp" }, - { "0059", "Tiger Jet Network Inc. (Wrong ID)" }, - { "0070", "Hauppauge computer works Inc." }, - { "0071", "Nebula Electronics Ltd." }, - { "0095", "Silicon Image, Inc. (Wrong ID)" }, - { "00a7", "Teles AG (Wrong ID)" }, - { "0100", "nCipher Security" }, - { "0123", "General Dynamics" }, - { "0128", "Dell (wrong ID)" }, - { "018a", "LevelOne" }, - { "01de", "Oxide Computer Company" }, - { "0200", "Dell (wrong ID)" }, - { "021b", "Compaq Computer Corporation" }, - { "0270", "Hauppauge computer works Inc. (Wrong ID)" }, - { "0291", "Davicom Semiconductor, Inc. (Wrong ID)" }, - { "02ac", "SpeedStream" }, - { "02e0", "XFX Pine Group Inc. (Wrong ID)" }, - { "0303", "Hewlett-Packard Company (Wrong ID)" }, - { "0308", "ZyXEL Communications Corporation (Wrong ID)" }, - { "0315", "SK-Electronics Co., Ltd." }, - { "0357", "TTTech Computertechnik AG (Wrong ID)" }, - { "0432", "SCM Microsystems, Inc." }, - { "0497", "Dell Inc. (wrong ID)" }, - { "0675", "Dynalink" }, - { "0721", "Sapphire, Inc." }, - { "0731", "Jingjia Microelectronics Co Ltd" }, - { "0777", "Ubiquiti Networks, Inc." }, - { "0795", "Wired Inc." }, - { "07d1", "D-Link System Inc" }, - { "0824", "T1042 [Freescale]" }, - { "0925", "VIA Technologies, Inc. (Wrong ID)" }, - { "0a89", "BREA Technologies Inc" }, - { "0b0b", "Rhino Equipment Corp." }, - { "0ccd", "Preferred Networks, Inc." }, - { "0e11", "Compaq Computer Corporation" }, - { "0e55", "HaSoTec GmbH" }, - { "0eac", "SHF Communication Technologies AG" }, - { "0f62", "Acrox Technologies Co., Ltd." }, - { "1000", "Broadcom / LSI" }, - { "1001", "Kolter Electronic" }, - { "1002", "Advanced Micro Devices, Inc. [AMD/ATI]" }, - { "1003", "ULSI Systems" }, - { "1004", "VLSI Technology Inc" }, - { "1005", "Avance Logic Inc. [ALI]" }, - { "1006", "Reply Group" }, - { "1007", "NetFrame Systems Inc" }, - { "1008", "Epson" }, - { "100a", "Phoenix Technologies" }, - { "100b", "National Semiconductor Corporation" }, - { "100c", "Tseng Labs Inc" }, - { "100d", "AST Research Inc" }, - { "100e", "Weitek" }, - { "1010", "Video Logic, Ltd." }, - { "1011", "Digital Equipment Corporation" }, - { "1012", "Micronics Computers Inc" }, - { "1013", "Cirrus Logic" }, - { "1014", "IBM" }, - { "1015", "LSI Logic Corp of Canada" }, - { "1016", "ICL Personal Systems" }, - { "1017", "SPEA Software AG" }, - { "1018", "Unisys Systems" }, - { "1019", "Elitegroup Computer Systems" }, - { "101a", "AT&T GIS (NCR)" }, - { "101b", "Vitesse Semiconductor" }, - { "101c", "Western Digital" }, - { "101d", "Maxim Integrated Products" }, - { "101e", "American Megatrends Inc." }, - { "101f", "PictureTel" }, - { "1020", "Hitachi Computer Products" }, - { "1021", "OKI Electric Industry Co. Ltd." }, - { "1022", "Advanced Micro Devices, Inc. [AMD]" }, - { "1023", "Trident Microsystems" }, - { "1024", "Zenith Data Systems" }, - { "1025", "Acer Incorporated [ALI]" }, - { "1028", "Dell" }, - { "1029", "Siemens Nixdorf IS" }, - { "102a", "LSI Logic" }, - { "102b", "Matrox Electronics Systems Ltd." }, - { "102c", "Chips and Technologies" }, - { "102d", "Wyse Technology Inc." }, - { "102e", "Olivetti Advanced Technology" }, - { "102f", "Toshiba America" }, - { "1030", "TMC Research" }, - { "1031", "Miro Computer Products AG" }, - { "1032", "Compaq" }, - { "1033", "NEC Corporation" }, - { "1034", "Framatome Connectors USA Inc." }, - { "1035", "Comp. & Comm. Research Lab" }, - { "1036", "Future Domain Corp." }, - { "1037", "Hitachi Micro Systems" }, - { "1038", "AMP, Inc" }, - { "1039", "Silicon Integrated Systems [SiS]" }, - { "103a", "Seiko Epson Corporation" }, - { "103b", "Tatung Corp. Of America" }, - { "103c", "Hewlett-Packard Company" }, - { "103e", "Solliday Engineering" }, - { "103f", "Synopsys/Logic Modeling Group" }, - { "1040", "Accelgraphics Inc." }, - { "1041", "Computrend" }, - { "1042", "Micron" }, - { "1043", "ASUSTeK Computer Inc." }, - { "1044", "Adaptec (formerly DPT)" }, - { "1045", "OPTi Inc." }, - { "1046", "IPC Corporation, Ltd." }, - { "1047", "Genoa Systems Corp" }, - { "1048", "Elsa AG" }, - { "1049", "Fountain Technologies, Inc." }, - { "104a", "STMicroelectronics" }, - { "104b", "BusLogic" }, - { "104c", "Texas Instruments" }, - { "104d", "Sony Corporation" }, - { "104e", "Oak Technology, Inc" }, - { "104f", "Co-time Computer Ltd" }, - { "1050", "Winbond Electronics Corp" }, - { "1051", "Anigma, Inc." }, - { "1052", "?Young Micro Systems" }, - { "1053", "Young Micro Systems" }, - { "1054", "Hitachi, Ltd" }, - { "1055", "Microchip Technology / SMSC" }, - { "1056", "ICL" }, - { "1057", "Motorola" }, - { "1058", "Electronics & Telecommunications RSH" }, - { "1059", "Kontron" }, - { "105a", "Promise Technology, Inc." }, - { "105b", "Foxconn International, Inc." }, - { "105c", "Wipro Infotech Limited" }, - { "105d", "Number 9 Computer Company" }, - { "105e", "Vtech Computers Ltd" }, - { "105f", "Infotronic America Inc" }, - { "1060", "United Microelectronics [UMC]" }, - { "1061", "I.I.T." }, - { "1062", "Maspar Computer Corp" }, - { "1063", "Ocean Office Automation" }, - { "1064", "Alcatel" }, - { "1065", "Texas Microsystems" }, - { "1066", "PicoPower Technology" }, - { "1067", "Mitsubishi Electric" }, - { "1068", "Diversified Technology" }, - { "1069", "Mylex Corporation" }, - { "106a", "Aten Research Inc" }, - { "106b", "Apple Inc." }, - { "106c", "Hynix Semiconductor" }, - { "106d", "Sequent Computer Systems" }, - { "106e", "DFI, Inc" }, - { "106f", "City Gate Development Ltd" }, - { "1070", "Daewoo Telecom Ltd" }, - { "1071", "Mitac" }, - { "1072", "GIT Co Ltd" }, - { "1073", "Yamaha Corporation" }, - { "1074", "NexGen Microsystems" }, - { "1075", "Advanced Integrations Research" }, - { "1076", "Chaintech Computer Co. Ltd" }, - { "1077", "QLogic Corp." }, - { "1078", "Cyrix Corporation" }, - { "1079", "I-Bus" }, - { "107a", "NetWorth" }, - { "107b", "Gateway, Inc." }, - { "107c", "LG Electronics [Lucky Goldstar Co. Ltd]" }, - { "107d", "LeadTek Research Inc." }, - { "107e", "Interphase Corporation" }, - { "107f", "Data Technology Corporation" }, - { "1080", "Contaq Microsystems" }, - { "1081", "Supermac Technology" }, - { "1082", "EFA Corporation of America" }, - { "1083", "Forex Computer Corporation" }, - { "1084", "Parador" }, - { "1086", "J. Bond Computer Systems" }, - { "1087", "Cache Computer" }, - { "1088", "Microcomputer Systems (M) Son" }, - { "1089", "Data General Corporation" }, - { "108a", "SBS Technologies" }, - { "108c", "Oakleigh Systems Inc." }, - { "108d", "Olicom" }, - { "108e", "Oracle/SUN" }, - { "108f", "Systemsoft" }, - { "1090", "Compro Computer Services, Inc." }, - { "1091", "Intergraph Corporation" }, - { "1092", "Diamond Multimedia Systems" }, - { "1093", "National Instruments" }, - { "1094", "First International Computers [FIC]" }, - { "1095", "Silicon Image, Inc." }, - { "1096", "Alacron" }, - { "1097", "Appian Technology" }, - { "1098", "Quantum Designs (H.K.) Ltd" }, - { "1099", "Samsung Electronics Co., Ltd" }, - { "109a", "Packard Bell" }, - { "109b", "Gemlight Computer Ltd." }, - { "109c", "Megachips Corporation" }, - { "109d", "Zida Technologies Ltd." }, - { "109e", "Brooktree Corporation" }, - { "109f", "Trigem Computer Inc." }, - { "10a0", "Meidensha Corporation" }, - { "10a1", "Juko Electronics Ind. Co. Ltd" }, - { "10a2", "Quantum Corporation" }, - { "10a3", "Everex Systems Inc" }, - { "10a4", "Globe Manufacturing Sales" }, - { "10a5", "Smart Link Ltd." }, - { "10a6", "Informtech Industrial Ltd." }, - { "10a7", "Benchmarq Microelectronics" }, - { "10a8", "Sierra Semiconductor" }, - { "10a9", "Silicon Graphics Intl. Corp." }, - { "10aa", "ACC Microelectronics" }, - { "10ab", "Digicom" }, - { "10ac", "Honeywell IAC" }, - { "10ad", "Symphony Labs" }, - { "10ae", "Cornerstone Technology" }, - { "10af", "Micro Computer Systems Inc" }, - { "10b0", "CardExpert Technology" }, - { "10b1", "Cabletron Systems Inc" }, - { "10b2", "Raytheon Company" }, - { "10b3", "Databook Inc" }, - { "10b4", "STB Systems Inc" }, - { "10b5", "PLX Technology, Inc." }, - { "10b6", "Madge Networks" }, - { "10b7", "3Com Corporation" }, - { "10b8", "Standard Microsystems Corp [SMC]" }, - { "10b9", "ULi Electronics Inc." }, - { "10ba", "Mitsubishi Electric Corp." }, - { "10bb", "Dapha Electronics Corporation" }, - { "10bc", "Advanced Logic Research" }, - { "10bd", "Surecom Technology" }, - { "10be", "Tseng Labs International Co." }, - { "10bf", "Most Inc" }, - { "10c0", "Boca Research Inc." }, - { "10c1", "ICM Co., Ltd." }, - { "10c2", "Auspex Systems Inc." }, - { "10c3", "Samsung Semiconductors, Inc." }, - { "10c4", "Award Software International Inc." }, - { "10c5", "Xerox Corporation" }, - { "10c6", "Rambus Inc." }, - { "10c7", "Media Vision" }, - { "10c8", "Neomagic Corporation" }, - { "10c9", "Dataexpert Corporation" }, - { "10ca", "Fujitsu Microelectr., Inc." }, - { "10cb", "Omron Corporation" }, - { "10cc", "Mai Logic Incorporated" }, - { "10cd", "Advanced System Products, Inc" }, - { "10ce", "Radius" }, - { "10cf", "Fujitsu Limited." }, - { "10d1", "FuturePlus Systems Corp." }, - { "10d2", "Molex Incorporated" }, - { "10d3", "Jabil Circuit Inc" }, - { "10d4", "Hualon Microelectronics" }, - { "10d5", "Autologic Inc." }, - { "10d6", "Cetia" }, - { "10d7", "BCM Advanced Research" }, - { "10d8", "Advanced Peripherals Labs" }, - { "10d9", "Macronix, Inc. [MXIC]" }, - { "10da", "Compaq IPG-Austin" }, - { "10db", "Rohm LSI Systems, Inc." }, - { "10dc", "CERN/ECP/EDU" }, - { "10dd", "Evans & Sutherland" }, - { "10de", "NVIDIA Corporation" }, - { "10df", "Emulex Corporation" }, - { "10e0", "Integrated Micro Solutions Inc." }, - { "10e1", "Tekram Technology Co.,Ltd." }, - { "10e2", "Aptix Corporation" }, - { "10e3", "Tundra Semiconductor Corp." }, - { "10e4", "Tandem Computers" }, - { "10e5", "Micro Industries Corporation" }, - { "10e6", "Gainbery Computer Products Inc." }, - { "10e7", "Vadem" }, - { "10e8", "Applied Micro Circuits Corp." }, - { "10e9", "Alps Electric Co., Ltd." }, - { "10ea", "Integraphics" }, - { "10eb", "Artists Graphics" }, - { "10ec", "Realtek Semiconductor Co., Ltd." }, - { "10ed", "Ascii Corporation" }, - { "10ee", "Xilinx Corporation" }, - { "10ef", "Racore Computer Products, Inc." }, - { "10f0", "Peritek Corporation" }, - { "10f1", "Tyan Computer" }, - { "10f2", "Achme Computer, Inc." }, - { "10f3", "Alaris, Inc." }, - { "10f4", "S-MOS Systems, Inc." }, - { "10f5", "NKK Corporation" }, - { "10f6", "Creative Electronic Systems SA" }, - { "10f7", "Matsushita Electric Industrial Co., Ltd." }, - { "10f8", "Altos India Ltd" }, - { "10f9", "PC Direct" }, - { "10fa", "Truevision" }, - { "10fb", "Thesys Gesellschaft fuer Mikroelektronik mbH" }, - { "10fc", "I-O Data Device, Inc." }, - { "10fd", "Soyo Computer, Inc" }, - { "10fe", "Fast Multimedia AG" }, - { "10ff", "NCube" }, - { "1100", "Jazz Multimedia" }, - { "1101", "Initio Corporation" }, - { "1102", "Creative Labs" }, - { "1103", "HighPoint Technologies, Inc." }, - { "1104", "RasterOps Corp." }, - { "1105", "Sigma Designs, Inc." }, - { "1106", "VIA Technologies, Inc." }, - { "1107", "Stratus Computers" }, - { "1108", "Proteon, Inc." }, - { "1109", "Cogent Data Technologies, Inc." }, - { "110a", "Siemens AG" }, - { "110b", "Chromatic Research Inc." }, - { "110c", "Mini-Max Technology, Inc." }, - { "110d", "Znyx Advanced Systems" }, - { "110e", "CPU Technology" }, - { "110f", "Ross Technology" }, - { "1110", "Powerhouse Systems" }, - { "1111", "Santa Cruz Operation" }, - { "1112", "Osicom Technologies Inc" }, - { "1113", "Accton Technology Corporation" }, - { "1114", "Atmel Corporation" }, - { "1115", "3D Labs" }, - { "1116", "Data Translation" }, - { "1117", "Datacube, Inc" }, - { "1118", "Berg Electronics" }, - { "1119", "ICP Vortex Computersysteme GmbH" }, - { "111a", "Efficient Networks, Inc" }, - { "111b", "Teledyne Electronic Systems" }, - { "111c", "Tricord Systems Inc." }, - { "111d", "Microsemi / PMC / IDT" }, - { "111e", "Eldec" }, - { "111f", "Precision Digital Images" }, - { "1120", "Dell EMC" }, - { "1121", "Zilog" }, - { "1122", "Multi-tech Systems, Inc." }, - { "1123", "Excellent Design, Inc." }, - { "1124", "Leutron Vision AG" }, - { "1125", "Eurocore" }, - { "1126", "Vigra" }, - { "1127", "FORE Systems Inc" }, - { "1129", "Firmworks" }, - { "112a", "Hermes Electronics Company, Ltd." }, - { "112b", "Heidelberger Druckmaschinen AGHeidelberger Druckmaschinen AG" }, - { "112c", "Zenith Data Systems" }, - { "112d", "Ravicad" }, - { "112e", "Infomedia Microelectronics Inc." }, - { "112f", "Dalsa Inc." }, - { "1130", "Computervision" }, - { "1131", "Philips Semiconductors" }, - { "1132", "Mitel Corp." }, - { "1133", "Dialogic Corporation" }, - { "1134", "Mercury Computer Systems" }, - { "1135", "FUJIFILM Business Innovation Corp." }, - { "1136", "Momentum Data Systems" }, - { "1137", "Cisco Systems Inc" }, - { "1138", "Ziatech Corporation" }, - { "1139", "Dynamic Pictures, Inc" }, - { "113a", "FWB Inc" }, - { "113b", "Network Computing Devices" }, - { "113c", "Cyclone Microsystems, Inc." }, - { "113d", "Leading Edge Products Inc" }, - { "113e", "Sanyo Electric Co - Computer Engineering Dept" }, - { "113f", "Equinox Systems, Inc." }, - { "1140", "Intervoice Inc" }, - { "1141", "Crest Microsystem Inc" }, - { "1142", "Alliance Semiconductor Corporation" }, - { "1143", "NetPower, Inc" }, - { "1144", "Cincinnati Milacron" }, - { "1145", "Workbit Corporation" }, - { "1146", "Force Computers" }, - { "1147", "Interface Corp" }, - { "1148", "SysKonnect" }, - { "1149", "Win System Corporation" }, - { "114a", "VMIC" }, - { "114b", "Canopus Co., Ltd" }, - { "114c", "Annabooks" }, - { "114d", "IC Corporation" }, - { "114e", "Nikon Systems Inc" }, - { "114f", "Digi International" }, - { "1150", "Thinking Machines Corp" }, - { "1151", "JAE Electronics Inc." }, - { "1152", "Megatek" }, - { "1153", "Land Win Electronic Corp" }, - { "1154", "Melco Inc" }, - { "1155", "Pine Technology Ltd" }, - { "1156", "Periscope Engineering" }, - { "1157", "Avsys Corporation" }, - { "1158", "Voarx R & D Inc" }, - { "1159", "MuTech Corporation" }, - { "115a", "Harlequin Ltd" }, - { "115b", "Parallax Graphics" }, - { "115c", "Photron Ltd." }, - { "115d", "Xircom" }, - { "115e", "Peer Protocols Inc" }, - { "115f", "Maxtor Corporation" }, - { "1160", "Megasoft Inc" }, - { "1161", "PFU Limited" }, - { "1162", "OA Laboratory Co Ltd" }, - { "1163", "Rendition" }, - { "1164", "Advanced Peripherals Technologies" }, - { "1165", "Imagraph Corporation" }, - { "1166", "Broadcom" }, - { "1167", "Mutoh Industries Inc" }, - { "1168", "Thine Electronics Inc" }, - { "1169", "Centre for Development of Advanced Computing" }, - { "116a", "Luminex Software, Inc." }, - { "116b", "Connectware Inc" }, - { "116c", "Intelligent Resources Integrated Systems" }, - { "116d", "Martin-Marietta" }, - { "116e", "Electronics for Imaging" }, - { "116f", "Workstation Technology" }, - { "1170", "Inventec Corporation" }, - { "1171", "Loughborough Sound Images Plc" }, - { "1172", "Altera Corporation" }, - { "1173", "Adobe Systems, Inc" }, - { "1174", "Bridgeport Machines" }, - { "1175", "Mitron Computer Inc." }, - { "1176", "SBE Incorporated" }, - { "1177", "Silicon Engineering" }, - { "1178", "Alfa, Inc." }, - { "1179", "Toshiba Corporation" }, - { "117a", "A-Trend Technology" }, - { "117b", "L G Electronics, Inc." }, - { "117c", "ATTO Technology, Inc." }, - { "117d", "Becton & Dickinson" }, - { "117e", "T/R Systems" }, - { "117f", "Integrated Circuit Systems" }, - { "1180", "Ricoh Co Ltd" }, - { "1181", "Telmatics International" }, - { "1183", "Fujikura Ltd" }, - { "1184", "Forks Inc" }, - { "1185", "Dataworld International Ltd" }, - { "1186", "D-Link System Inc" }, - { "1187", "Advanced Technology Laboratories, Inc." }, - { "1188", "Shima Seiki Manufacturing Ltd." }, - { "1189", "Matsushita Electronics Co Ltd" }, - { "118a", "Hilevel Technology" }, - { "118b", "Hypertec Pty Limited" }, - { "118c", "Corollary, Inc" }, - { "118d", "BitFlow Inc" }, - { "118e", "Hermstedt GmbH" }, - { "118f", "Green Logic" }, - { "1190", "Tripace" }, - { "1191", "Artop Electronic Corp" }, - { "1192", "Densan Company Ltd" }, - { "1193", "Zeitnet Inc." }, - { "1194", "Toucan Technology" }, - { "1195", "Ratoc System Inc" }, - { "1196", "Hytec Electronics Ltd" }, - { "1197", "Gage Applied Sciences, Inc." }, - { "1198", "Lambda Systems Inc" }, - { "1199", "Attachmate Corporation" }, - { "119a", "Mind Share, Inc." }, - { "119b", "Omega Micro Inc." }, - { "119c", "Information Technology Inst." }, - { "119d", "Bug, Inc. Sapporo Japan" }, - { "119e", "Fujitsu Microelectronics Ltd." }, - { "119f", "Bull HN Information Systems" }, - { "11a0", "Convex Computer Corporation" }, - { "11a1", "Hamamatsu Photonics K.K." }, - { "11a2", "Sierra Research and Technology" }, - { "11a3", "Deuretzbacher GmbH & Co. Eng. KG" }, - { "11a4", "Barco Graphics NV" }, - { "11a5", "Microunity Systems Eng. Inc" }, - { "11a6", "Pure Data Ltd." }, - { "11a7", "Power Computing Corp." }, - { "11a8", "Systech Corp." }, - { "11a9", "InnoSys Inc." }, - { "11aa", "Actel" }, - { "11ab", "Marvell Technology Group Ltd." }, - { "11ac", "Canon Information Systems Research Aust." }, - { "11ad", "Lite-On Communications Inc" }, - { "11ae", "Aztech System Ltd" }, - { "11af", "Avid Technology Inc." }, - { "11b0", "V3 Semiconductor Inc." }, - { "11b1", "Apricot Computers" }, - { "11b2", "Eastman Kodak" }, - { "11b3", "Barr Systems Inc." }, - { "11b4", "Leitch Technology International" }, - { "11b5", "Radstone Technology Plc" }, - { "11b6", "United Video Corp" }, - { "11b7", "Motorola" }, - { "11b8", "XPoint Technologies, Inc" }, - { "11b9", "Pathlight Technology Inc." }, - { "11ba", "Videotron Corp" }, - { "11bb", "Pyramid Technology" }, - { "11bc", "Network Peripherals Inc" }, - { "11bd", "Pinnacle Systems Inc." }, - { "11be", "International Microcircuits Inc" }, - { "11bf", "Astrodesign, Inc." }, - { "11c0", "Hewlett Packard" }, - { "11c1", "LSI Corporation" }, - { "11c2", "Sand Microelectronics" }, - { "11c3", "NEC Corporation" }, - { "11c4", "Document Technologies, Inc" }, - { "11c5", "Shiva Corporation" }, - { "11c6", "Dainippon Screen Mfg. Co. Ltd" }, - { "11c7", "D.C.M. Data Systems" }, - { "11c8", "Dolphin Interconnect Solutions AS" }, - { "11c9", "Magma" }, - { "11ca", "LSI Systems, Inc" }, - { "11cb", "Specialix Research Ltd." }, - { "11cc", "Michels & Kleberhoff Computer GmbH" }, - { "11cd", "HAL Computer Systems, Inc." }, - { "11ce", "Netaccess" }, - { "11cf", "Pioneer Electronic Corporation" }, - { "11d0", "Lockheed Martin Federal Systems-Manassas" }, - { "11d1", "Auravision" }, - { "11d2", "Intercom Inc." }, - { "11d3", "Trancell Systems Inc" }, - { "11d4", "Analog Devices" }, - { "11d5", "Ikon Corporation" }, - { "11d6", "Tekelec Telecom" }, - { "11d7", "Trenton Technology, Inc." }, - { "11d8", "Image Technologies Development" }, - { "11d9", "TEC Corporation" }, - { "11da", "Novell" }, - { "11db", "Sega Enterprises Ltd" }, - { "11dc", "Questra Corporation" }, - { "11dd", "Crosfield Electronics Limited" }, - { "11de", "Zoran Corporation" }, - { "11df", "New Wave PDG" }, - { "11e0", "Cray Communications A/S" }, - { "11e1", "GEC Plessey Semi Inc." }, - { "11e2", "Samsung Information Systems America" }, - { "11e3", "Quicklogic Corporation" }, - { "11e4", "Second Wave Inc" }, - { "11e5", "IIX Consulting" }, - { "11e6", "Mitsui-Zosen System Research" }, - { "11e7", "Toshiba America, Elec. Company" }, - { "11e8", "Digital Processing Systems Inc." }, - { "11e9", "Highwater Designs Ltd." }, - { "11ea", "Elsag Bailey" }, - { "11eb", "Formation Inc." }, - { "11ec", "Coreco Inc" }, - { "11ed", "Mediamatics" }, - { "11ee", "Dome Imaging Systems Inc" }, - { "11ef", "Nicolet Technologies B.V." }, - { "11f0", "Compu-Shack" }, - { "11f1", "Symbios Logic Inc" }, - { "11f2", "Picture Tel Japan K.K." }, - { "11f3", "Keithley Metrabyte" }, - { "11f4", "Kinetic Systems Corporation" }, - { "11f5", "Computing Devices International" }, - { "11f6", "Compex" }, - { "11f7", "Scientific Atlanta" }, - { "11f8", "PMC-Sierra Inc." }, - { "11f9", "I-Cube Inc" }, - { "11fa", "Kasan Electronics Company, Ltd." }, - { "11fb", "Datel Inc" }, - { "11fc", "Silicon Magic" }, - { "11fd", "High Street Consultants" }, - { "11fe", "Pepperl+Fuchs" }, - { "11ff", "Scion Corporation" }, - { "1200", "CSS Corporation" }, - { "1201", "Vista Controls Corp" }, - { "1202", "Network General Corp." }, - { "1203", "Bayer Corporation, Agfa Division" }, - { "1204", "Lattice Semiconductor Corporation" }, - { "1205", "Array Corporation" }, - { "1206", "Amdahl Corporation" }, - { "1208", "Parsytec GmbH" }, - { "1209", "SCI Systems Inc" }, - { "120a", "Synaptel" }, - { "120b", "Adaptive Solutions" }, - { "120c", "Technical Corp." }, - { "120d", "Compression Labs, Inc." }, - { "120e", "Cyclades Corporation" }, - { "120f", "Essential Communications" }, - { "1210", "Hyperparallel Technologies" }, - { "1211", "Braintech Inc" }, - { "1213", "Applied Intelligent Systems, Inc." }, - { "1214", "Performance Technologies, Inc." }, - { "1215", "Interware Co., Ltd" }, - { "1216", "Purup Prepress A/S" }, - { "1217", "O2 Micro, Inc." }, - { "1218", "Hybricon Corp." }, - { "1219", "First Virtual Corporation" }, - { "121a", "3Dfx Interactive, Inc." }, - { "121b", "Advanced Telecommunications Modules" }, - { "121c", "Nippon Texaco., Ltd" }, - { "121d", "LiPPERT ADLINK Technology GmbH" }, - { "121e", "CSPI" }, - { "121f", "Arcus Technology, Inc." }, - { "1220", "Ariel Corporation" }, - { "1221", "Contec Co., Ltd" }, - { "1222", "Ancor Communications, Inc." }, - { "1223", "Artesyn Communication Products" }, - { "1224", "Interactive Images" }, - { "1225", "Power I/O, Inc." }, - { "1227", "EIZO Rugged Solutions" }, - { "1228", "Norsk Elektro Optikk A/S" }, - { "1229", "Data Kinesis Inc." }, - { "122a", "Integrated Telecom" }, - { "122b", "LG Industrial Systems Co., Ltd" }, - { "122c", "Sican GmbH" }, - { "122d", "Aztech System Ltd" }, - { "122e", "Xyratex" }, - { "122f", "Andrew Corporation" }, - { "1230", "Fishcamp Engineering" }, - { "1231", "Woodward McCoach, Inc." }, - { "1232", "GPT Limited" }, - { "1233", "Bus-Tech, Inc." }, - { "1235", "SMART Modular Technologies" }, - { "1236", "Sigma Designs Corporation" }, - { "1237", "Alta Technology Corporation" }, - { "1238", "Adtran" }, - { "1239", "3DO Company" }, - { "123a", "Visicom Laboratories, Inc." }, - { "123b", "Seeq Technology, Inc." }, - { "123c", "Century Systems, Inc." }, - { "123d", "Engineering Design Team, Inc." }, - { "123e", "Simutech, Inc." }, - { "123f", "LSI Logic" }, - { "1240", "Marathon Technologies Corp." }, - { "1241", "DSC Communications" }, - { "1242", "JNI Corporation" }, - { "1243", "Delphax" }, - { "1244", "AVM GmbH" }, - { "1245", "A.P.D., S.A." }, - { "1246", "Dipix Technologies, Inc." }, - { "1247", "Xylon Research, Inc." }, - { "1248", "Central Data Corporation" }, - { "1249", "Samsung Electronics Co., Ltd." }, - { "124a", "AEG Electrocom GmbH" }, - { "124b", "SBS/Greenspring Modular I/O" }, - { "124c", "Solitron Technologies, Inc." }, - { "124d", "Stallion Technologies, Inc." }, - { "124e", "Cylink" }, - { "124f", "Infortrend Technology, Inc." }, - { "1250", "Hitachi Microcomputer System Ltd" }, - { "1251", "VLSI Solutions Oy" }, - { "1253", "Guzik Technical Enterprises" }, - { "1254", "Linear Systems Ltd." }, - { "1255", "Optibase Ltd" }, - { "1256", "Perceptive Solutions, Inc." }, - { "1257", "Vertex Networks, Inc." }, - { "1258", "Gilbarco, Inc." }, - { "1259", "Allied Telesis" }, - { "125a", "ABB Power Systems" }, - { "125b", "Asix Electronics Corporation" }, - { "125c", "Aurora Technologies, Inc." }, - { "125d", "ESS Technology" }, - { "125e", "Specialvideo Engineering SRL" }, - { "125f", "Concurrent Technologies, Inc." }, - { "1260", "Intersil Corporation" }, - { "1261", "Matsushita-Kotobuki Electronics Industries, Ltd." }, - { "1262", "ES Computer Company, Ltd." }, - { "1263", "Sonic Solutions" }, - { "1264", "Aval Nagasaki Corporation" }, - { "1265", "Casio Computer Co., Ltd." }, - { "1266", "Microdyne Corporation" }, - { "1267", "S. A. Telecommunications" }, - { "1268", "Tektronix" }, - { "1269", "Thomson-CSF/TTM" }, - { "126a", "Lexmark International, Inc." }, - { "126b", "Adax, Inc." }, - { "126c", "Northern Telecom" }, - { "126d", "Splash Technology, Inc." }, - { "126e", "Sumitomo Metal Industries, Ltd." }, - { "126f", "Silicon Motion, Inc." }, - { "1270", "Olympus Optical Co., Ltd." }, - { "1271", "GW Instruments" }, - { "1272", "Telematics International" }, - { "1273", "Hughes Network Systems" }, - { "1274", "Ensoniq" }, - { "1275", "Network Appliance Corporation" }, - { "1276", "Switched Network Technologies, Inc." }, - { "1277", "Comstream" }, - { "1278", "Transtech Parallel Systems Ltd." }, - { "1279", "Transmeta Corporation" }, - { "127a", "Rockwell International" }, - { "127b", "Pixera Corporation" }, - { "127c", "Crosspoint Solutions, Inc." }, - { "127d", "Vela Research" }, - { "127e", "Winnov, L.P." }, - { "127f", "Fujifilm" }, - { "1280", "Photoscript Group Ltd." }, - { "1281", "Yokogawa Electric Corporation" }, - { "1282", "Davicom Semiconductor, Inc." }, - { "1283", "Integrated Technology Express, Inc." }, - { "1284", "Sahara Networks, Inc." }, - { "1285", "Platform Technologies, Inc." }, - { "1286", "Mazet GmbH" }, - { "1287", "M-Pact, Inc." }, - { "1288", "Timestep Corporation" }, - { "1289", "AVC Technology, Inc." }, - { "128a", "Asante Technologies, Inc." }, - { "128b", "Transwitch Corporation" }, - { "128c", "Retix Corporation" }, - { "128d", "G2 Networks, Inc." }, - { "128e", "Hoontech Corporation/Samho Multi Tech Ltd." }, - { "128f", "Tateno Dennou, Inc." }, - { "1290", "Sord Computer Corporation" }, - { "1291", "NCS Computer Italia" }, - { "1292", "Tritech Microelectronics Inc" }, - { "1293", "Media Reality Technology" }, - { "1294", "Rhetorex, Inc." }, - { "1295", "Imagenation Corporation" }, - { "1296", "Kofax Image Products" }, - { "1297", "Holco Enterprise Co, Ltd/Shuttle Computer" }, - { "1298", "Spellcaster Telecommunications Inc." }, - { "1299", "Knowledge Technology Lab." }, - { "129a", "VMetro, inc." }, - { "129b", "Image Access" }, - { "129c", "Jaycor" }, - { "129d", "Compcore Multimedia, Inc." }, - { "129e", "Victor Company of Japan, Ltd." }, - { "129f", "OEC Medical Systems, Inc." }, - { "12a0", "Allen-Bradley Company" }, - { "12a1", "Simpact Associates, Inc." }, - { "12a2", "Newgen Systems Corporation" }, - { "12a3", "Lucent Technologies" }, - { "12a4", "NTT Electronics Corporation" }, - { "12a5", "Vision Dynamics Ltd." }, - { "12a6", "Scalable Networks, Inc." }, - { "12a7", "AMO GmbH" }, - { "12a8", "News Datacom" }, - { "12a9", "Xiotech Corporation" }, - { "12aa", "SDL Communications, Inc." }, - { "12ab", "YUAN High-Tech Development Co., Ltd." }, - { "12ac", "Measurex Corporation" }, - { "12ad", "Multidata GmbH" }, - { "12ae", "Alteon Networks Inc." }, - { "12af", "TDK USA Corp" }, - { "12b0", "Jorge Scientific Corp" }, - { "12b1", "GammaLink" }, - { "12b2", "General Signal Networks" }, - { "12b3", "Inter-Face Co Ltd" }, - { "12b4", "FutureTel Inc" }, - { "12b5", "Granite Systems Inc." }, - { "12b6", "Natural Microsystems" }, - { "12b7", "Cognex Corporation" }, - { "12b8", "Korg" }, - { "12b9", "3Com Corp, Modem Division" }, - { "12ba", "BittWare, Inc." }, - { "12bb", "Nippon Unisoft Corporation" }, - { "12bc", "Array Microsystems" }, - { "12bd", "Computerm Corp." }, - { "12be", "Anchor Chips Inc." }, - { "12bf", "Fujifilm Microdevices" }, - { "12c0", "Infimed" }, - { "12c1", "GMM Research Corp" }, - { "12c2", "Mentec Limited" }, - { "12c3", "Holtek Microelectronics Inc" }, - { "12c4", "Connect Tech Inc" }, - { "12c5", "Picture Elements Incorporated" }, - { "12c6", "Mitani Corporation" }, - { "12c7", "Dialogic Corp" }, - { "12c8", "G Force Co, Ltd" }, - { "12c9", "Gigi Operations" }, - { "12ca", "Integrated Computing Engines" }, - { "12cb", "Antex Electronics Corporation" }, - { "12cc", "Pluto Technologies International" }, - { "12cd", "Aims Lab" }, - { "12ce", "Netspeed Inc." }, - { "12cf", "Prophet Systems, Inc." }, - { "12d0", "GDE Systems, Inc." }, - { "12d1", "PSITech" }, - { "12d2", "NVidia / SGS Thomson (Joint Venture)" }, - { "12d3", "Vingmed Sound A/S" }, - { "12d4", "Ulticom (Formerly DGM&S)" }, - { "12d5", "Equator Technologies Inc" }, - { "12d6", "Analogic Corp" }, - { "12d7", "Biotronic SRL" }, - { "12d8", "Pericom Semiconductor" }, - { "12d9", "Aculab PLC" }, - { "12da", "True Time Inc." }, - { "12db", "Annapolis Micro Systems, Inc" }, - { "12dc", "Symicron Computer Communication Ltd." }, - { "12dd", "Management Graphics" }, - { "12de", "Rainbow Technologies" }, - { "12df", "SBS Technologies Inc" }, - { "12e0", "Chase Research" }, - { "12e1", "Nintendo Co, Ltd" }, - { "12e2", "Datum Inc. Bancomm-Timing Division" }, - { "12e3", "Imation Corp - Medical Imaging Systems" }, - { "12e4", "Brooktrout Technology Inc" }, - { "12e5", "Apex Semiconductor Inc" }, - { "12e6", "Cirel Systems" }, - { "12e7", "Sunsgroup Corporation" }, - { "12e8", "Crisc Corp" }, - { "12e9", "GE Spacenet" }, - { "12ea", "Zuken" }, - { "12eb", "Aureal Semiconductor" }, - { "12ec", "3A International, Inc." }, - { "12ed", "Optivision Inc." }, - { "12ee", "Orange Micro" }, - { "12ef", "Vienna Systems" }, - { "12f0", "Pentek" }, - { "12f1", "Sorenson Vision Inc" }, - { "12f2", "Gammagraphx, Inc." }, - { "12f3", "Radstone Technology" }, - { "12f4", "Megatel" }, - { "12f5", "Forks" }, - { "12f6", "Dawson France" }, - { "12f7", "Cognex" }, - { "12f8", "Electronic Design GmbH" }, - { "12f9", "Four Fold Ltd" }, - { "12fb", "Spectrum Signal Processing" }, - { "12fc", "Capital Equipment Corp" }, - { "12fd", "I2S" }, - { "12fe", "ESD Electronic System Design GmbH" }, - { "12ff", "Lexicon" }, - { "1300", "Harman International Industries Inc" }, - { "1302", "Computer Sciences Corp" }, - { "1303", "Innovative Integration" }, - { "1304", "Juniper Networks" }, - { "1305", "Netphone, Inc" }, - { "1306", "Duet Technologies" }, - { "1307", "Measurement Computing" }, - { "1308", "Jato Technologies Inc." }, - { "1309", "AB Semiconductor Ltd" }, - { "130a", "Mitsubishi Electric Microcomputer" }, - { "130b", "Colorgraphic Communications Corp" }, - { "130c", "Ambex Technologies, Inc" }, - { "130d", "Accelerix Inc" }, - { "130e", "Yamatake-Honeywell Co. Ltd" }, - { "130f", "Advanet Inc" }, - { "1310", "Gespac" }, - { "1311", "Videoserver, Inc" }, - { "1312", "Acuity Imaging, Inc" }, - { "1313", "Yaskawa Electric Co." }, - { "1315", "Wavesat" }, - { "1316", "Teradyne Inc" }, - { "1317", "ADMtek" }, - { "1318", "Packet Engines Inc." }, - { "1319", "Fortemedia, Inc" }, - { "131a", "Finisar Corp." }, - { "131c", "Nippon Electro-Sensory Devices Corp" }, - { "131d", "Sysmic, Inc." }, - { "131e", "Xinex Networks Inc" }, - { "131f", "Siig Inc" }, - { "1320", "Crypto AG" }, - { "1321", "Arcobel Graphics BV" }, - { "1322", "MTT Co., Ltd" }, - { "1323", "Dome Inc" }, - { "1324", "Sphere Communications" }, - { "1325", "Salix Technologies, Inc" }, - { "1326", "Seachange international" }, - { "1327", "Voss scientific" }, - { "1328", "quadrant international" }, - { "1329", "Productivity Enhancement" }, - { "132a", "Microcom Inc." }, - { "132b", "Broadband Technologies" }, - { "132c", "Micrel Inc" }, - { "132d", "Integrated Silicon Solution, Inc." }, - { "1330", "MMC Networks" }, - { "1331", "RadiSys Corporation" }, - { "1332", "Micro Memory" }, - { "1334", "Redcreek Communications, Inc" }, - { "1335", "Videomail, Inc" }, - { "1337", "Third Planet Publishing" }, - { "1338", "BT Electronics" }, - { "133a", "Vtel Corp" }, - { "133b", "Softcom Microsystems" }, - { "133c", "Holontech Corp" }, - { "133d", "SS Technologies" }, - { "133e", "Virtual Computer Corp" }, - { "133f", "SCM Microsystems" }, - { "1340", "Atalla Corp" }, - { "1341", "Kyoto Microcomputer Co" }, - { "1342", "Promax Systems Inc" }, - { "1343", "Phylon Communications Inc" }, - { "1344", "Micron Technology Inc" }, - { "1345", "Arescom Inc" }, - { "1347", "Odetics" }, - { "1349", "Sumitomo Electric Industries, Ltd." }, - { "134a", "DTC Technology Corp." }, - { "134b", "ARK Research Corp." }, - { "134c", "Chori Joho System Co. Ltd" }, - { "134d", "PCTel Inc" }, - { "134e", "CSTI" }, - { "134f", "Algo System Co Ltd" }, - { "1350", "Systec Co. Ltd" }, - { "1351", "Sonix Inc" }, - { "1353", "dbeeSet Technology" }, - { "1354", "Dwave System Inc" }, - { "1355", "Kratos Analytical Ltd" }, - { "1356", "The Logical Co" }, - { "1359", "Prisa Networks" }, - { "135a", "Brain Boxes" }, - { "135b", "Giganet Inc" }, - { "135c", "Quatech Inc" }, - { "135d", "ABB Network Partner AB" }, - { "135e", "Sealevel Systems Inc" }, - { "135f", "I-Data International A-S" }, - { "1360", "Meinberg Funkuhren" }, - { "1361", "Soliton Systems K.K." }, - { "1362", "Fujifacom Corporation" }, - { "1363", "Phoenix Technology Ltd" }, - { "1364", "ATM Communications Inc" }, - { "1365", "Hypercope GmbH" }, - { "1366", "Teijin Seiki Co. Ltd" }, - { "1367", "Hitachi Zosen Corporation" }, - { "1368", "Skyware Corporation" }, - { "1369", "Digigram" }, - { "136a", "High Soft Tech" }, - { "136b", "Kawasaki Steel Corporation" }, - { "136c", "Adtek System Science Co Ltd" }, - { "136d", "Gigalabs Inc" }, - { "136f", "Applied Magic Inc" }, - { "1370", "ATL Products" }, - { "1371", "CNet Technology Inc" }, - { "1373", "Silicon Vision Inc" }, - { "1374", "Silicom Ltd." }, - { "1375", "Argosystems Inc" }, - { "1376", "LMC" }, - { "1377", "Electronic Equipment Production & Distribution GmbH" }, - { "1378", "Telemann Co. Ltd" }, - { "1379", "Asahi Kasei Microsystems Co Ltd" }, - { "137a", "Mark of the Unicorn Inc" }, - { "137b", "PPT Vision" }, - { "137c", "Iwatsu Electric Co Ltd" }, - { "137d", "Dynachip Corporation" }, - { "137e", "Patriot Scientific Corporation" }, - { "137f", "Japan Satellite Systems Inc" }, - { "1380", "Sanritz Automation Co Ltd" }, - { "1381", "Brains Co. Ltd" }, - { "1382", "Marian - Electronic & Software" }, - { "1383", "Controlnet Inc" }, - { "1384", "Reality Simulation Systems Inc" }, - { "1385", "Netgear" }, - { "1386", "Video Domain Technologies" }, - { "1387", "Systran Corp" }, - { "1388", "Hitachi Information Technology Co Ltd" }, - { "1389", "Applicom International" }, - { "138a", "Fusion Micromedia Corp" }, - { "138b", "Tokimec Inc" }, - { "138c", "Silicon Reality" }, - { "138d", "Future Techno Designs pte Ltd" }, - { "138e", "Basler GmbH" }, - { "138f", "Patapsco Designs Inc" }, - { "1390", "Concept Development Inc" }, - { "1391", "Development Concepts Inc" }, - { "1392", "Medialight Inc" }, - { "1393", "Moxa Technologies Co Ltd" }, - { "1394", "Level One Communications" }, - { "1395", "Ambicom Inc" }, - { "1396", "Cipher Systems Inc" }, - { "1397", "Cologne Chip Designs GmbH" }, - { "1398", "Clarion co. Ltd" }, - { "1399", "Rios systems Co Ltd" }, - { "139a", "Alacritech Inc" }, - { "139b", "Mediasonic Multimedia Systems Ltd" }, - { "139c", "Quantum 3d Inc" }, - { "139d", "EPL limited" }, - { "139e", "Media4" }, - { "139f", "Aethra s.r.l." }, - { "13a0", "Crystal Group Inc" }, - { "13a1", "Kawasaki Heavy Industries Ltd" }, - { "13a2", "Ositech Communications Inc" }, - { "13a3", "Hifn Inc." }, - { "13a4", "Rascom Inc" }, - { "13a5", "Audio Digital Imaging Inc" }, - { "13a6", "Videonics Inc" }, - { "13a7", "Teles AG" }, - { "13a8", "Exar Corp." }, - { "13a9", "Siemens Medical Systems, Ultrasound Group" }, - { "13aa", "Broadband Networks Inc" }, - { "13ab", "Arcom Control Systems Ltd" }, - { "13ac", "Motion Media Technology Ltd" }, - { "13ad", "Nexus Inc" }, - { "13ae", "ALD Technology Ltd" }, - { "13af", "T.Sqware" }, - { "13b0", "Maxspeed Corp" }, - { "13b1", "Tamura corporation" }, - { "13b2", "Techno Chips Co. Ltd" }, - { "13b3", "Lanart Corporation" }, - { "13b4", "Wellbean Co Inc" }, - { "13b5", "ARM" }, - { "13b6", "Dlog GmbH" }, - { "13b7", "Logic Devices Inc" }, - { "13b8", "Nokia Telecommunications oy" }, - { "13b9", "Elecom Co Ltd" }, - { "13ba", "Oxford Instruments" }, - { "13bb", "Sanyo Technosound Co Ltd" }, - { "13bc", "Bitran Corporation" }, - { "13bd", "Sharp corporation" }, - { "13be", "Miroku Jyoho Service Co. Ltd" }, - { "13bf", "Sharewave Inc" }, - { "13c0", "Microgate Corporation" }, - { "13c1", "3ware Inc" }, - { "13c2", "Technotrend Systemtechnik GmbH" }, - { "13c3", "Janz Computer AG" }, - { "13c4", "Phase Metrics" }, - { "13c5", "Alphi Technology Corp" }, - { "13c6", "Condor Engineering Inc" }, - { "13c7", "Blue Chip Technology Ltd" }, - { "13c8", "Apptech Inc" }, - { "13c9", "Eaton Corporation" }, - { "13ca", "Iomega Corporation" }, - { "13cb", "Yano Electric Co Ltd" }, - { "13cc", "BARCO" }, - { "13cd", "Compatible Systems Corporation" }, - { "13ce", "Cocom A/S" }, - { "13cf", "Studio Audio & Video Ltd" }, - { "13d0", "Techsan Electronics Co Ltd" }, - { "13d1", "Abocom Systems Inc" }, - { "13d2", "Shark Multimedia Inc" }, - { "13d4", "Graphics Microsystems Inc" }, - { "13d5", "Media 100 Inc" }, - { "13d6", "K.I. Technology Co Ltd" }, - { "13d7", "Toshiba Engineering Corporation" }, - { "13d8", "Phobos corporation" }, - { "13d9", "Apex PC Solutions Inc" }, - { "13da", "Intresource Systems pte Ltd" }, - { "13db", "Janich & Klass Computertechnik GmbH" }, - { "13dc", "Netboost Corporation" }, - { "13dd", "Multimedia Bundle Inc" }, - { "13de", "ABB Robotics Products AB" }, - { "13df", "E-Tech Inc" }, - { "13e0", "GVC Corporation" }, - { "13e1", "Silicom Multimedia Systems Inc" }, - { "13e2", "Dynamics Research Corporation" }, - { "13e3", "Nest Inc" }, - { "13e4", "Calculex Inc" }, - { "13e5", "Telesoft Design Ltd" }, - { "13e6", "Argosy research Inc" }, - { "13e7", "NAC Incorporated" }, - { "13e8", "Chip Express Corporation" }, - { "13e9", "Intraserver Technology Inc" }, - { "13ea", "Dallas Semiconductor" }, - { "13eb", "Hauppauge Computer Works Inc" }, - { "13ec", "Zydacron Inc" }, - { "13ed", "Raytheion E-Systems" }, - { "13ee", "Hayes Microcomputer Products Inc" }, - { "13ef", "Coppercom Inc" }, - { "13f0", "Sundance Technology Inc / IC Plus Corp" }, - { "13f1", "Oce' - Technologies B.V." }, - { "13f2", "Ford Microelectronics Inc" }, - { "13f3", "Mcdata Corporation" }, - { "13f4", "Troika Networks, Inc." }, - { "13f5", "Kansai Electric Co. Ltd" }, - { "13f6", "C-Media Electronics Inc" }, - { "13f7", "Wildfire Communications" }, - { "13f8", "Ad Lib Multimedia Inc" }, - { "13f9", "NTT Advanced Technology Corp." }, - { "13fa", "Pentland Systems Ltd" }, - { "13fb", "Aydin Corp" }, - { "13fc", "Computer Peripherals International" }, - { "13fd", "Micro Science Inc" }, - { "13fe", "Advantech Co. Ltd" }, - { "13ff", "Silicon Spice Inc" }, - { "1400", "Artx Inc" }, - { "1401", "CR-Systems A/S" }, - { "1402", "Meilhaus Electronic GmbH" }, - { "1403", "Ascor Inc" }, - { "1404", "Fundamental Software Inc" }, - { "1405", "Excalibur Systems Inc" }, - { "1406", "Oce' Printing Systems GmbH" }, - { "1407", "Lava Computer mfg Inc" }, - { "1408", "Aloka Co. Ltd" }, - { "1409", "Timedia Technology Co Ltd" }, - { "140a", "DSP Research Inc" }, - { "140b", "Abaco Systems, Inc." }, - { "140c", "Elmic Systems Inc" }, - { "140d", "Matsushita Electric Works Ltd" }, - { "140e", "Goepel Electronic GmbH" }, - { "140f", "Salient Systems Corp" }, - { "1410", "Midas lab Inc" }, - { "1411", "Ikos Systems Inc" }, - { "1412", "VIA Technologies Inc." }, - { "1413", "Addonics" }, - { "1414", "Microsoft Corporation" }, - { "1415", "Oxford Semiconductor Ltd" }, - { "1416", "Multiwave Innovation pte Ltd" }, - { "1417", "Convergenet Technologies Inc" }, - { "1418", "Kyushu electronics systems Inc" }, - { "1419", "Excel Switching Corp" }, - { "141a", "Apache Micro Peripherals Inc" }, - { "141b", "Zoom Telephonics Inc" }, - { "141d", "Digitan Systems Inc" }, - { "141e", "Fanuc Ltd" }, - { "141f", "Visiontech Ltd" }, - { "1420", "Psion Dacom plc" }, - { "1421", "Ads Technologies Inc" }, - { "1422", "Ygrec Systems Co Ltd" }, - { "1423", "Custom Technology Corp." }, - { "1424", "Videoserver Connections" }, - { "1425", "Chelsio Communications Inc" }, - { "1426", "Storage Technology Corp." }, - { "1427", "Better On-Line Solutions" }, - { "1428", "Edec Co Ltd" }, - { "1429", "Unex Technology Corp." }, - { "142a", "Kingmax Technology Inc" }, - { "142b", "Radiolan" }, - { "142c", "Minton Optic Industry Co Ltd" }, - { "142d", "Pix stream Inc" }, - { "142e", "Vitec Multimedia" }, - { "142f", "Radicom Research Inc" }, - { "1430", "ITT Aerospace/Communications Division" }, - { "1431", "Gilat Satellite Networks" }, - { "1432", "Edimax Computer Co." }, - { "1433", "Eltec Elektronik GmbH" }, - { "1435", "RTD Embedded Technologies, Inc." }, - { "1436", "CIS Technology Inc" }, - { "1437", "Nissin Inc Co" }, - { "1438", "Atmel-dream" }, - { "1439", "Outsource Engineering & Mfg. Inc" }, - { "143a", "Stargate Solutions Inc" }, - { "143b", "Canon Research Center, America" }, - { "143c", "Amlogic Inc" }, - { "143d", "Tamarack Microelectronics Inc" }, - { "143e", "Jones Futurex Inc" }, - { "143f", "Lightwell Co Ltd - Zax Division" }, - { "1440", "ALGOL Corp." }, - { "1441", "AGIE Ltd" }, - { "1442", "Phoenix Contact GmbH & Co." }, - { "1443", "Unibrain S.A." }, - { "1444", "TRW" }, - { "1445", "Logical DO Ltd" }, - { "1446", "Graphin Co Ltd" }, - { "1447", "AIM GmBH" }, - { "1448", "Alesis Studio Electronics" }, - { "1449", "TUT Systems Inc" }, - { "144a", "Adlink Technology" }, - { "144b", "Verint Systems Inc." }, - { "144c", "Catalina Research Inc" }, - { "144d", "Samsung Electronics Co Ltd" }, - { "144e", "OLITEC" }, - { "144f", "Askey Computer Corp." }, - { "1450", "Octave Communications Ind." }, - { "1451", "SP3D Chip Design GmBH" }, - { "1453", "MYCOM Inc" }, - { "1454", "Altiga Networks" }, - { "1455", "Logic Plus Plus Inc" }, - { "1456", "Advanced Hardware Architectures" }, - { "1457", "Nuera Communications Inc" }, - { "1458", "Gigabyte Technology Co., Ltd" }, - { "1459", "DOOIN Electronics" }, - { "145a", "Escalate Networks Inc" }, - { "145b", "PRAIM SRL" }, - { "145c", "Cryptek" }, - { "145d", "Gallant Computer Inc" }, - { "145e", "Aashima Technology B.V." }, - { "145f", "Baldor Electric Company" }, - { "1460", "DYNARC INC" }, - { "1461", "Avermedia Technologies Inc" }, - { "1462", "Micro-Star International Co., Ltd. [MSI]" }, - { "1463", "Fast Corporation" }, - { "1464", "Interactive Circuits & Systems Ltd" }, - { "1465", "GN NETTEST Telecom DIV." }, - { "1466", "Designpro Inc." }, - { "1467", "DIGICOM SPA" }, - { "1468", "AMBIT Microsystem Corp." }, - { "1469", "Cleveland Motion Controls" }, - { "146a", "Aeroflex" }, - { "146b", "Parascan Technologies Ltd" }, - { "146c", "Ruby Tech Corp." }, - { "146d", "Tachyon, INC." }, - { "146e", "Williams Electronics Games, Inc." }, - { "146f", "Multi Dimensional Consulting Inc" }, - { "1470", "Bay Networks" }, - { "1471", "Integrated Telecom Express Inc" }, - { "1472", "DAIKIN Industries, Ltd" }, - { "1473", "ZAPEX Technologies Inc" }, - { "1474", "Doug Carson & Associates" }, - { "1475", "PICAZO Communications" }, - { "1476", "MORTARA Instrument Inc" }, - { "1477", "Net Insight" }, - { "1478", "DIATREND Corporation" }, - { "1479", "TORAY Industries Inc" }, - { "147a", "FORMOSA Industrial Computing" }, - { "147b", "ABIT Computer Corp." }, - { "147c", "AWARE, Inc." }, - { "147d", "Interworks Computer Products" }, - { "147e", "Matsushita Graphic Communication Systems, Inc." }, - { "147f", "NIHON UNISYS, Ltd." }, - { "1480", "SCII Telecom" }, - { "1481", "BIOPAC Systems Inc" }, - { "1482", "ISYTEC - Integrierte Systemtechnik GmBH" }, - { "1483", "LABWAY Corporation" }, - { "1484", "Logic Corporation" }, - { "1485", "ERMA - Electronic GmBH" }, - { "1486", "L3 Communications Telemetry & Instrumentation" }, - { "1487", "MARQUETTE Medical Systems" }, - { "1489", "KYE Systems Corporation" }, - { "148a", "OPTO" }, - { "148b", "INNOMEDIALOGIC Inc." }, - { "148c", "Tul Corporation / PowerColor" }, - { "148d", "DIGICOM Systems, Inc." }, - { "148e", "OSI Plus Corporation" }, - { "148f", "Plant Equipment, Inc." }, - { "1490", "Stone Microsystems PTY Ltd." }, - { "1491", "ZEAL Corporation" }, - { "1492", "Time Logic Corporation" }, - { "1493", "MAKER Communications" }, - { "1494", "WINTOP Technology, Inc." }, - { "1495", "TOKAI Communications Industry Co. Ltd" }, - { "1496", "JOYTECH Computer Co., Ltd." }, - { "1497", "SMA Regelsysteme GmBH" }, - { "1498", "TEWS Technologies GmbH" }, - { "1499", "EMTEC CO., Ltd" }, - { "149a", "ANDOR Technology Ltd" }, - { "149b", "SEIKO Instruments Inc" }, - { "149c", "OVISLINK Corp." }, - { "149d", "NEWTEK Inc" }, - { "149e", "Mapletree Networks Inc." }, - { "149f", "LECTRON Co Ltd" }, - { "14a0", "SOFTING GmBH" }, - { "14a1", "Systembase Co Ltd" }, - { "14a2", "Millennium Engineering Inc" }, - { "14a3", "Maverick Networks" }, - { "14a4", "Lite-On Technology Corporation" }, - { "14a5", "XIONICS Document Technologies Inc" }, - { "14a6", "INOVA Computers GmBH & Co KG" }, - { "14a7", "MYTHOS Systems Inc" }, - { "14a8", "FEATRON Technologies Corporation" }, - { "14a9", "HIVERTEC Inc" }, - { "14aa", "Advanced MOS Technology Inc" }, - { "14ab", "Siemens Industry Software Inc." }, - { "14ac", "Novaweb Technologies Inc" }, - { "14ad", "Time Space Radio AB" }, - { "14ae", "CTI, Inc" }, - { "14af", "Guillemot Corporation" }, - { "14b0", "BST Communication Technology Ltd" }, - { "14b1", "Nextcom K.K." }, - { "14b2", "ENNOVATE Networks Inc" }, - { "14b3", "XPEED Inc" }, - { "14b4", "PHILIPS Business Electronics B.V." }, - { "14b5", "Creamware GmBH" }, - { "14b6", "Quantum Data Corp." }, - { "14b7", "PROXIM Inc" }, - { "14b8", "Techsoft Technology Co Ltd" }, - { "14b9", "Cisco Aironet Wireless Communications" }, - { "14ba", "INTERNIX Inc." }, - { "14bb", "SEMTECH Corporation" }, - { "14bc", "Globespan Semiconductor Inc." }, - { "14bd", "CARDIO Control N.V." }, - { "14be", "L3 Communications" }, - { "14bf", "SPIDER Communications Inc." }, - { "14c0", "COMPAL Electronics Inc" }, - { "14c1", "MYRICOM Inc." }, - { "14c2", "DTK Computer" }, - { "14c3", "MEDIATEK Corp." }, - { "14c4", "IWASAKI Information Systems Co Ltd" }, - { "14c5", "Automation Products AB" }, - { "14c6", "Data Race Inc" }, - { "14c7", "Modular Technology Holdings Ltd" }, - { "14c8", "Turbocomm Tech. Inc." }, - { "14c9", "ODIN Telesystems Inc" }, - { "14ca", "PE Logic Corp." }, - { "14cb", "Billionton Systems Inc" }, - { "14cc", "NAKAYO Telecommunications Inc" }, - { "14cd", "Universal Global Scientific Industrial Co.,Ltd" }, - { "14ce", "Whistle Communications" }, - { "14cf", "TEK Microsystems Inc." }, - { "14d0", "Ericsson Axe R & D" }, - { "14d1", "Computer Hi-Tech Co Ltd" }, - { "14d2", "Titan Electronics Inc" }, - { "14d3", "CIRTECH (UK) Ltd" }, - { "14d4", "Panacom Technology Corp" }, - { "14d5", "Nitsuko Corporation" }, - { "14d6", "Accusys Inc" }, - { "14d7", "Hirakawa Hewtech Corp" }, - { "14d8", "HOPF Elektronik GmBH" }, - { "14d9", "Alliance Semiconductor Corporation" }, - { "14da", "National Aerospace Laboratories" }, - { "14db", "AFAVLAB Technology Inc" }, - { "14dc", "Amplicon Liveline Ltd" }, - { "14dd", "Boulder Design Labs Inc" }, - { "14de", "Applied Integration Corporation" }, - { "14df", "ASIC Communications Corp" }, - { "14e1", "INVERTEX" }, - { "14e2", "INFOLIBRIA" }, - { "14e3", "AMTELCO" }, - { "14e4", "Broadcom Inc. and subsidiaries" }, - { "14e5", "Pixelfusion Ltd" }, - { "14e6", "SHINING Technology Inc" }, - { "14e7", "3CX" }, - { "14e8", "RAYCER Inc" }, - { "14e9", "GARNETS System CO Ltd" }, - { "14ea", "Planex Communications, Inc" }, - { "14eb", "SEIKO EPSON Corp" }, - { "14ec", "Agilent Technologies" }, - { "14ed", "DATAKINETICS Ltd" }, - { "14ee", "MASPRO KENKOH Corp" }, - { "14ef", "CARRY Computer ENG. CO Ltd" }, - { "14f0", "CANON RESEACH CENTRE FRANCE" }, - { "14f1", "Conexant Systems, Inc." }, - { "14f2", "MOBILITY Electronics" }, - { "14f3", "BroadLogic" }, - { "14f4", "TOKYO Electronic Industry CO Ltd" }, - { "14f5", "SOPAC Ltd" }, - { "14f6", "COYOTE Technologies LLC" }, - { "14f7", "WOLF Technology Inc" }, - { "14f8", "AUDIOCODES Inc" }, - { "14f9", "AG COMMUNICATIONS" }, - { "14fa", "WANDEL & GOLTERMANN" }, - { "14fb", "TRANSAS MARINE (UK) Ltd" }, - { "14fc", "Quadrics Ltd" }, - { "14fd", "JAPAN Computer Industry Inc" }, - { "14fe", "ARCHTEK TELECOM Corp" }, - { "14ff", "TWINHEAD INTERNATIONAL Corp" }, - { "1500", "DELTA Electronics, Inc" }, - { "1501", "BANKSOFT CANADA Ltd" }, - { "1502", "MITSUBISHI ELECTRIC LOGISTICS SUPPORT Co Ltd" }, - { "1503", "KAWASAKI LSI USA Inc" }, - { "1504", "KAISER Electronics" }, - { "1505", "ITA INGENIEURBURO FUR TESTAUFGABEN GmbH" }, - { "1506", "CHAMELEON Systems Inc" }, - { "1507", "Motorola Unknown / HTEC" }, - { "1508", "HONDA CONNECTORS/MHOTRONICS Inc" }, - { "1509", "FIRST INTERNATIONAL Computer Inc" }, - { "150a", "FORVUS RESEARCH Inc" }, - { "150b", "YAMASHITA Systems Corp" }, - { "150c", "KYOPAL CO Ltd" }, - { "150d", "WARPSPPED Inc" }, - { "150e", "C-PORT Corp" }, - { "150f", "INTEC GmbH" }, - { "1510", "BEHAVIOR TECH Computer Corp" }, - { "1511", "CENTILLIUM Technology Corp" }, - { "1512", "ROSUN Technologies Inc" }, - { "1513", "Raychem" }, - { "1514", "TFL LAN Inc" }, - { "1515", "Advent design" }, - { "1516", "MYSON Technology Inc" }, - { "1517", "ECHOTEK Corp" }, - { "1518", "Kontron" }, - { "1519", "TELEFON AKTIEBOLAGET LM Ericsson" }, - { "151a", "Globetek" }, - { "151b", "COMBOX Ltd" }, - { "151c", "DIGITAL AUDIO LABS Inc" }, - { "151d", "Fujitsu Computer Products Of America" }, - { "151e", "MATRIX Corp" }, - { "151f", "TOPIC SEMICONDUCTOR Corp" }, - { "1520", "CHAPLET System Inc" }, - { "1521", "BELL Corp" }, - { "1522", "MainPine Ltd" }, - { "1523", "MUSIC Semiconductors" }, - { "1524", "ENE Technology Inc" }, - { "1525", "IMPACT Technologies" }, - { "1526", "ISS, Inc" }, - { "1527", "SOLECTRON" }, - { "1528", "ACKSYS" }, - { "1529", "ON Semiconductor" }, - { "152a", "QUICKTURN DESIGN Systems" }, - { "152b", "FLYTECH Technology CO Ltd" }, - { "152c", "MACRAIGOR Systems LLC" }, - { "152d", "QUANTA Computer Inc" }, - { "152e", "MELEC Inc" }, - { "152f", "PHILIPS - CRYPTO" }, - { "1530", "ACQIS Technology Inc" }, - { "1531", "CHRYON Corp" }, - { "1532", "ECHELON Corp" }, - { "1533", "BALTIMORE" }, - { "1534", "ROAD Corp" }, - { "1535", "EVERGREEN Technologies Inc" }, - { "1536", "ACTIS Computer" }, - { "1537", "DATALEX COMMUNCATIONS" }, - { "1538", "ARALION Inc" }, - { "1539", "ATELIER INFORMATIQUES et ELECTRONIQUE ETUDES S.A." }, - { "153a", "ONO SOKKI" }, - { "153b", "TERRATEC Electronic GmbH" }, - { "153c", "ANTAL Electronic" }, - { "153d", "FILANET Corp" }, - { "153e", "TECHWELL Inc" }, - { "153f", "MIPS Technologies, Inc." }, - { "1540", "PROVIDEO MULTIMEDIA Co Ltd" }, - { "1541", "MACHONE Communications" }, - { "1542", "Concurrent Real-Time" }, - { "1543", "SILICON Laboratories" }, - { "1544", "DCM DATA Systems" }, - { "1545", "VISIONTEK" }, - { "1546", "IOI Technology Corp" }, - { "1547", "MITUTOYO Corp" }, - { "1548", "JET PROPULSION Laboratory" }, - { "1549", "INTERCONNECT Systems Solutions" }, - { "154a", "MAX Technologies Inc" }, - { "154b", "COMPUTEX Co Ltd" }, - { "154c", "VISUAL Technology Inc" }, - { "154d", "PAN INTERNATIONAL Industrial Corp" }, - { "154e", "SERVOTEST Ltd" }, - { "154f", "STRATABEAM Technology" }, - { "1550", "OPEN NETWORK Co Ltd" }, - { "1551", "SMART Electronic DEVELOPMENT GmBH" }, - { "1552", "RACAL AIRTECH Ltd" }, - { "1553", "CHICONY Electronics Co Ltd" }, - { "1554", "PROLINK Microsystems Corp" }, - { "1555", "GESYTEC GmBH" }, - { "1556", "PLDA" }, - { "1557", "MEDIASTAR Co Ltd" }, - { "1558", "CLEVO/KAPOK Computer" }, - { "1559", "SI LOGIC Ltd" }, - { "155a", "INNOMEDIA Inc" }, - { "155b", "PROTAC INTERNATIONAL Corp" }, - { "155c", "Cemax-Icon Inc" }, - { "155d", "Mac System Co Ltd" }, - { "155e", "LP Elektronik GmbH" }, - { "155f", "Perle Systems Ltd" }, - { "1560", "Terayon Communications Systems" }, - { "1561", "Viewgraphics Inc" }, - { "1562", "Symbol Technologies" }, - { "1563", "A-Trend Technology Co Ltd" }, - { "1564", "Yamakatsu Electronics Industry Co Ltd" }, - { "1565", "Biostar Microtech Int'l Corp" }, - { "1566", "Ardent Technologies Inc" }, - { "1567", "Jungsoft" }, - { "1568", "DDK Electronics Inc" }, - { "1569", "Palit Microsystems Inc." }, - { "156a", "Avtec Systems" }, - { "156b", "2wire Inc" }, - { "156c", "Vidac Electronics GmbH" }, - { "156d", "Alpha-Top Corp" }, - { "156e", "Alfa Inc" }, - { "156f", "M-Systems Flash Disk Pioneers Ltd" }, - { "1570", "Lecroy Corp" }, - { "1571", "Contemporary Controls" }, - { "1572", "Otis Elevator Company" }, - { "1573", "Lattice - Vantis" }, - { "1574", "Fairchild Semiconductor" }, - { "1575", "Voltaire Advanced Data Security Ltd" }, - { "1576", "Viewcast COM" }, - { "1578", "HITT" }, - { "1579", "Dual Technology Corp" }, - { "157a", "Japan Elecronics Ind Inc" }, - { "157b", "Star Multimedia Corp" }, - { "157c", "Eurosoft (UK)" }, - { "157d", "Gemflex Networks" }, - { "157e", "Transition Networks" }, - { "157f", "PX Instruments Technology Ltd" }, - { "1580", "Primex Aerospace Co" }, - { "1581", "SEH Computertechnik GmbH" }, - { "1582", "Cytec Corp" }, - { "1583", "Inet Technologies Inc" }, - { "1584", "Uniwill Computer Corp" }, - { "1585", "Logitron" }, - { "1586", "Lancast Inc" }, - { "1587", "Konica Corp" }, - { "1588", "Solidum Systems Corp" }, - { "1589", "Atlantek Microsystems Pty Ltd" }, - { "158a", "Digalog Systems Inc" }, - { "158b", "Allied Data Technologies" }, - { "158c", "Hitachi Semiconductor & Devices Sales Co Ltd" }, - { "158d", "Point Multimedia Systems" }, - { "158e", "Lara Technology Inc" }, - { "158f", "Ditect Coop" }, - { "1590", "Hewlett Packard Enterprise" }, - { "1591", "ARN" }, - { "1592", "Syba Tech Ltd" }, - { "1593", "Bops Inc" }, - { "1594", "Netgame Ltd" }, - { "1595", "Diva Systems Corp" }, - { "1596", "Folsom Research Inc" }, - { "1597", "Memec Design Services" }, - { "1598", "Granite Microsystems" }, - { "1599", "Delta Electronics Inc" }, - { "159a", "General Instrument" }, - { "159b", "Faraday Technology Corp" }, - { "159c", "Stratus Computer Systems" }, - { "159d", "Ningbo Harrison Electronics Co Ltd" }, - { "159e", "A-Max Technology Co Ltd" }, - { "159f", "Galea Network Security" }, - { "15a0", "Compumaster SRL" }, - { "15a1", "Geocast Network Systems" }, - { "15a2", "Catalyst Enterprises Inc" }, - { "15a3", "Italtel" }, - { "15a4", "X-Net OY" }, - { "15a5", "Toyota Macs Inc" }, - { "15a6", "Sunlight Ultrasound Technologies Ltd" }, - { "15a7", "SSE Telecom Inc" }, - { "15a8", "Shanghai Communications Technologies Center" }, - { "15aa", "Moreton Bay" }, - { "15ab", "Bluesteel Networks Inc" }, - { "15ac", "North Atlantic Instruments" }, - { "15ad", "VMware" }, - { "15ae", "Amersham Pharmacia Biotech" }, - { "15b0", "Zoltrix International Ltd" }, - { "15b1", "Source Technology Inc" }, - { "15b2", "Mosaid Technologies Inc" }, - { "15b3", "Mellanox Technologies" }, - { "15b4", "CCI/TRIAD" }, - { "15b5", "Cimetrics Inc" }, - { "15b6", "Texas Memory Systems Inc" }, - { "15b7", "Sandisk Corp" }, - { "15b8", "ADDI-DATA GmbH" }, - { "15b9", "Maestro Digital Communications" }, - { "15ba", "Impacct Technology Corp" }, - { "15bb", "Portwell Inc" }, - { "15bc", "Agilent Technologies" }, - { "15bd", "DFI Inc" }, - { "15be", "Sola Electronics" }, - { "15bf", "High Tech Computer Corp (HTC)" }, - { "15c0", "BVM Ltd" }, - { "15c1", "Quantel" }, - { "15c2", "Newer Technology Inc" }, - { "15c3", "Taiwan Mycomp Co Ltd" }, - { "15c4", "EVSX Inc" }, - { "15c5", "Procomp Informatics Ltd" }, - { "15c6", "Technical University of Budapest" }, - { "15c7", "Tateyama System Laboratory Co Ltd" }, - { "15c8", "Penta Media Co Ltd" }, - { "15c9", "Serome Technology Inc" }, - { "15ca", "Bitboys OY" }, - { "15cb", "AG Electronics Ltd" }, - { "15cc", "Hotrail Inc" }, - { "15cd", "Dreamtech Co Ltd" }, - { "15ce", "Genrad Inc" }, - { "15cf", "Hilscher Gesellschaft für Systemautomation mbH" }, - { "15d1", "Infineon Technologies AG" }, - { "15d2", "FIC (First International Computer Inc)" }, - { "15d3", "NDS Technologies Israel Ltd" }, - { "15d4", "Iwill Corp" }, - { "15d5", "Tatung Co" }, - { "15d6", "Entridia Corp" }, - { "15d7", "Rockwell-Collins Inc" }, - { "15d8", "Cybernetics Technology Co Ltd" }, - { "15d9", "Super Micro Computer Inc" }, - { "15da", "Cyberfirm Inc" }, - { "15db", "Applied Computing Systems Inc" }, - { "15dc", "Litronic Inc" }, - { "15dd", "Sigmatel Inc" }, - { "15de", "Malleable Technologies Inc" }, - { "15df", "Infinilink Corp" }, - { "15e0", "Cacheflow Inc" }, - { "15e1", "Voice Technologies Group Inc" }, - { "15e2", "Quicknet Technologies Inc" }, - { "15e3", "Networth Technologies Inc" }, - { "15e4", "VSN Systemen BV" }, - { "15e5", "Valley technologies Inc" }, - { "15e6", "Agere Inc" }, - { "15e7", "Get Engineering Corp" }, - { "15e8", "National Datacomm Corp" }, - { "15e9", "Pacific Digital Corp" }, - { "15ea", "Tokyo Denshi Sekei K.K." }, - { "15eb", "DResearch Digital Media Systems GmbH" }, - { "15ec", "Beckhoff GmbH" }, - { "15ed", "Macrolink Inc" }, - { "15ee", "In Win Development Inc" }, - { "15ef", "Intelligent Paradigm Inc" }, - { "15f0", "B-Tree Systems Inc" }, - { "15f1", "Times N Systems Inc" }, - { "15f2", "Diagnostic Instruments Inc" }, - { "15f3", "Digitmedia Corp" }, - { "15f4", "Valuesoft" }, - { "15f5", "Power Micro Research" }, - { "15f6", "Extreme Packet Device Inc" }, - { "15f7", "Banctec" }, - { "15f8", "Koga Electronics Co" }, - { "15f9", "Zenith Electronics Corp" }, - { "15fa", "J.P. Axzam Corp" }, - { "15fb", "Zilog Inc" }, - { "15fc", "Techsan Electronics Co Ltd" }, - { "15fd", "N-CUBED.NET" }, - { "15fe", "Kinpo Electronics Inc" }, - { "15ff", "Fastpoint Technologies Inc" }, - { "1600", "Northrop Grumman - Canada Ltd" }, - { "1601", "Tenta Technology" }, - { "1602", "Prosys-tec Inc" }, - { "1603", "Nokia Wireless Communications" }, - { "1604", "Central System Research Co Ltd" }, - { "1605", "Pairgain Technologies" }, - { "1606", "Europop AG" }, - { "1607", "Lava Semiconductor Manufacturing Inc" }, - { "1608", "Automated Wagering International" }, - { "1609", "Scimetric Instruments Inc" }, - { "1612", "Telesynergy Research Inc." }, - { "1618", "Stone Ridge Technology" }, - { "1619", "FarSite Communications Ltd" }, - { "161f", "Rioworks" }, - { "1621", "Lynx Studio Technology, Inc." }, - { "1626", "TDK Semiconductor Corp." }, - { "1629", "Kongsberg Spacetec AS" }, - { "1631", "Packard Bell B.V." }, - { "1638", "Standard Microsystems Corp [SMC]" }, - { "163c", "Smart Link Ltd." }, - { "1641", "MKNet Corp." }, - { "1642", "Bitland(ShenZhen) Information Technology Co., Ltd." }, - { "1657", "Cavium QLogic" }, - { "165a", "Epix Inc" }, - { "165c", "Gidel Ltd." }, - { "165d", "Hsing Tech. Enterprise Co., Ltd." }, - { "165f", "Linux Media Labs, LLC" }, - { "1661", "Worldspace Corp." }, - { "1668", "Actiontec Electronics Inc" }, - { "166d", "Broadcom Corporation" }, - { "1677", "B&R Industrial Automation GmbH" }, - { "1678", "NetEffect" }, - { "1679", "Tokyo Electron Device Ltd." }, - { "167b", "ZyDAS Technology Corp." }, - { "167d", "Samsung Electro-Mechanics Co., Ltd." }, - { "167e", "ONNTO Corp." }, - { "1681", "Hercules" }, - { "1682", "XFX Pine Group Inc." }, - { "1688", "CastleNet Technology Inc." }, - { "168a", "Utimaco IS GmbH" }, - { "168c", "Qualcomm Atheros" }, - { "1695", "EPoX Computer Co., Ltd." }, - { "169c", "Netcell Corporation" }, - { "169d", "Club-3D VB (Wrong ID)" }, - { "16a5", "Tekram Technology Co.,Ltd." }, - { "16ab", "Global Sun Technology Inc" }, - { "16ae", "SafeNet Inc" }, - { "16af", "SparkLAN Communications, Inc." }, - { "16b4", "Aspex Semiconductor Ltd" }, - { "16b8", "Sonnet Technologies, Inc." }, - { "16be", "Creatix Polymedia GmbH" }, - { "16c3", "Synopsys, Inc." }, - { "16c6", "Micrel-Kendin" }, - { "16c8", "Octasic Inc." }, - { "16c9", "EONIC B.V. The Netherlands" }, - { "16ca", "CENATEK Inc" }, - { "16cd", "Advantech Co. Ltd" }, - { "16ce", "Roland Corp." }, - { "16d5", "Acromag, Inc." }, - { "16da", "Advantech Co., Ltd." }, - { "16df", "PIKA Technologies Inc." }, - { "16e2", "Geotest-MTS" }, - { "16e3", "European Space Agency" }, - { "16e5", "Intellon Corp." }, - { "16ec", "U.S. Robotics" }, - { "16ed", "Sycron N. V." }, - { "16f2", "ETAS GmbH" }, - { "16f3", "Jetway Information Co., Ltd." }, - { "16f4", "Vweb Corp" }, - { "16f6", "VideoTele.com, Inc." }, - { "1702", "Internet Machines Corporation (IMC)" }, - { "1705", "Digital First, Inc." }, - { "170b", "NetOctave" }, - { "170c", "YottaYotta Inc." }, - { "1719", "EZChip Technologies" }, - { "1725", "Vitesse Semiconductor" }, - { "172a", "Accelerated Encryption" }, - { "1734", "Fujitsu Technology Solutions" }, - { "1735", "Aten International Co. Ltd." }, - { "1737", "Linksys" }, - { "173b", "Altima (nee Broadcom)" }, - { "1743", "Peppercon AG" }, - { "1745", "ViXS Systems, Inc." }, - { "1749", "RLX Technologies" }, - { "174b", "PC Partner Limited / Sapphire Technology" }, - { "174d", "WellX Telecom SA" }, - { "175c", "AudioScience Inc" }, - { "175e", "Sanera Systems, Inc." }, - { "1760", "TEDIA spol. s r. o." }, - { "1761", "Pickering Interfaces Ltd" }, - { "1771", "InnoVISION Multimedia Ltd." }, - { "1775", "General Electric" }, - { "177d", "Cavium, Inc." }, - { "1787", "Hightech Information System Ltd." }, - { "1789", "Ennyah Technologies Corp." }, - { "1796", "Research Centre Juelich" }, - { "1797", "Intersil Techwell" }, - { "1799", "Belkin" }, - { "179a", "id Quantique" }, - { "179c", "Data Patterns" }, - { "17a0", "Genesys Logic, Inc" }, - { "17aa", "Lenovo" }, - { "17ab", "Phillips Components" }, - { "17af", "Hightech Information System Ltd." }, - { "17b3", "Hawking Technologies" }, - { "17b4", "Indra Networks, Inc." }, - { "17c0", "Wistron Corp." }, - { "17c2", "Newisys, Inc." }, - { "17cb", "Qualcomm" }, - { "17cc", "NetChip Technology, Inc" }, - { "17cd", "Cadence Design Systems, Inc." }, - { "17cf", "Z-Com, Inc." }, - { "17d3", "Areca Technology Corp." }, - { "17d5", "Exar Corp." }, - { "17db", "Cray Inc" }, - { "17de", "KWorld Computer Co. Ltd." }, - { "17df", "Dini Group" }, - { "17e4", "Sectra AB" }, - { "17e6", "MaxLinear" }, - { "17ee", "Connect Components Ltd" }, - { "17f2", "Albatron Corp." }, - { "17f3", "RDC Semiconductor, Inc." }, - { "17f7", "Topdek Semiconductor Inc." }, - { "17f9", "Gemtek Technology Co., Ltd" }, - { "17fc", "IOGEAR, Inc." }, - { "17fe", "InProComm Inc." }, - { "17ff", "Benq Corporation" }, - { "1800", "Qualcore Logic Inc." }, - { "1803", "ProdaSafe GmbH" }, - { "1804", "Ralink corp. (wrong ID)" }, - { "1805", "Euresys S.A." }, - { "1809", "Lumanate, Inc." }, - { "180c", "IEI Integration Corp" }, - { "1813", "Ambient Technologies Inc" }, - { "1814", "Ralink corp." }, - { "1815", "Devolo AG" }, - { "1820", "InfiniCon Systems Inc." }, - { "1822", "Twinhan Technology Co. Ltd" }, - { "182d", "SiteCom Europe BV" }, - { "182e", "Raza Microelectronics, Inc." }, - { "182f", "Broadcom" }, - { "1830", "Credence Systems Corporation" }, - { "183b", "MikroM GmbH" }, - { "1846", "Alcatel-Lucent" }, - { "1849", "ASRock Incorporation" }, - { "184a", "Thales Computers" }, - { "1850", "Advantest Corporation" }, - { "1851", "Microtune, Inc." }, - { "1852", "Anritsu Corp." }, - { "1853", "SMSC Automotive Infotainment System Group" }, - { "1854", "LG Electronics, Inc." }, - { "185b", "Compro Technology, Inc." }, - { "185f", "Wistron NeWeb Corp." }, - { "1864", "SilverBack" }, - { "1867", "Topspin Communications" }, - { "186c", "Humusoft, s.r.o." }, - { "186f", "WiNRADiO Communications" }, - { "1876", "L-3 Communications" }, - { "187e", "ZyXEL Communications Corporation" }, - { "1885", "Avvida Systems Inc." }, - { "1888", "Varisys Ltd" }, - { "188a", "Ample Communications, Inc" }, - { "1890", "Egenera, Inc." }, - { "1894", "KNC One" }, - { "1896", "B&B Electronics Manufacturing Company, Inc." }, - { "1897", "AMtek" }, - { "18a1", "Astute Networks Inc." }, - { "18a2", "Stretch Inc." }, - { "18a3", "AT&T" }, - { "18ac", "DViCO Corporation" }, - { "18b8", "Ammasso" }, - { "18bc", "GeCube Technologies, Inc." }, - { "18c3", "Micronas Semiconductor Holding AG" }, - { "18c8", "Cray Inc" }, - { "18c9", "ARVOO Engineering BV" }, - { "18ca", "XGI Technology Inc. (eXtreme Graphics Innovation)" }, - { "18d2", "Sitecom Europe BV (Wrong ID)" }, - { "18d4", "Celestica" }, - { "18d8", "Dialogue Technology Corp." }, - { "18dd", "Artimi Inc" }, - { "18df", "LeWiz Communications" }, - { "18e6", "MPL AG" }, - { "18eb", "Advance Multimedia Internet Technology, Inc." }, - { "18ec", "Cesnet, z.s.p.o." }, - { "18ee", "Chenming Mold Ind. Corp." }, - { "18f1", "Spectrum GmbH" }, - { "18f4", "Napatech A/S" }, - { "18f6", "NextIO" }, - { "18f7", "Commtech, Inc." }, - { "18fb", "Resilience Corporation" }, - { "1904", "Hangzhou Silan Microelectronics Co., Ltd." }, - { "1905", "Micronas USA, Inc." }, - { "1912", "Renesas Technology Corp." }, - { "1919", "Soltek Computer Inc." }, - { "1923", "Sangoma Technologies Corp." }, - { "1924", "Solarflare Communications" }, - { "192a", "BiTMICRO Networks Inc." }, - { "192e", "TransDimension" }, - { "1931", "Option N.V." }, - { "1932", "DiBcom" }, - { "193c", "MAXIM Integrated Products" }, - { "193d", "Hangzhou H3C Technologies Co., Ltd." }, - { "193f", "AHA Products Group" }, - { "1942", "ClearSpeed Technology plc" }, - { "1947", "C-guys, Inc." }, - { "1948", "Alpha Networks Inc." }, - { "194a", "DapTechnology B.V." }, - { "1954", "One Stop Systems, Inc." }, - { "1957", "Freescale Semiconductor Inc" }, - { "1958", "Faster Technology, LLC." }, - { "1959", "PA Semi, Inc" }, - { "1966", "Orad Hi-Tec Systems" }, - { "1969", "Qualcomm Atheros" }, - { "196a", "Sensory Networks Inc." }, - { "196d", "Club-3D BV" }, - { "196e", "PNY" }, - { "1971", "AGEIA Technologies, Inc." }, - { "1974", "Star Electronics GmbH & Co. KG" }, - { "1976", "TRENDnet" }, - { "1977", "Parsec" }, - { "197b", "JMicron Technology Corp." }, - { "1982", "Distant Early Warning Communications Inc" }, - { "1987", "Phison Electronics Corporation" }, - { "1989", "Montilio Inc." }, - { "198a", "Nallatech Ltd." }, - { "1993", "Innominate Security Technologies AG" }, - { "1999", "A-Logics" }, - { "199a", "Pulse-LINK, Inc." }, - { "199d", "Xsigo Systems" }, - { "199f", "Auvitek" }, - { "19a2", "Emulex Corporation" }, - { "19a8", "DAQDATA GmbH" }, - { "19ac", "Kasten Chase Applied Research" }, - { "19ae", "Progeny Systems Corporation" }, - { "19ba", "ZyXEL Communications Corp." }, - { "19c1", "Exegy Inc." }, - { "19d1", "Motorola Expedience" }, - { "19d4", "Quixant Limited" }, - { "19da", "ZOTAC International (MCO) Ltd." }, - { "19de", "Pico Computing" }, - { "19e2", "Vector Informatik GmbH" }, - { "19e3", "DDRdrive LLC" }, - { "19e5", "Huawei Technologies Co., Ltd." }, - { "19e7", "NET (Network Equipment Technologies)" }, - { "19ee", "Netronome Systems, Inc." }, - { "19f1", "BFG Tech" }, - { "19ff", "Eclipse Electronic Systems, Inc." }, - { "1a03", "ASPEED Technology, Inc." }, - { "1a05", "deltaww" }, - { "1a07", "Kvaser AB" }, - { "1a08", "Sierra semiconductor" }, - { "1a0d", "SEAKR Engineering" }, - { "1a0e", "DekTec Digital Video B.V." }, - { "1a17", "Force10 Networks, Inc." }, - { "1a1d", "GFaI e.V." }, - { "1a1e", "3Leaf Systems, Inc." }, - { "1a22", "Ambric Inc." }, - { "1a29", "Fortinet, Inc." }, - { "1a2b", "Ascom AG" }, - { "1a30", "Lantiq" }, - { "1a32", "Quanta Microsystems, Inc" }, - { "1a3b", "AzureWave" }, - { "1a41", "Tilera Corp." }, - { "1a4a", "SLAC National Accelerator Lab TID-AIR" }, - { "1a51", "Hectronic AB" }, - { "1a55", "Rohde & Schwarz DVS GmbH" }, - { "1a56", "Rivet Networks" }, - { "1a57", "Highly Reliable Systems" }, - { "1a58", "Razer USA Ltd." }, - { "1a5d", "Celoxica" }, - { "1a5e", "Aprius Inc." }, - { "1a5f", "System TALKS Inc." }, - { "1a68", "VirtenSys Limited" }, - { "1a71", "XenSource, Inc." }, - { "1a73", "Violin Memory, Inc" }, - { "1a76", "Wavesat" }, - { "1a77", "Lightfleet Corporation" }, - { "1a78", "Virident Systems Inc." }, - { "1a84", "Commex Technologies" }, - { "1a88", "MEN Mikro Elektronik" }, - { "1a8a", "StarBridge, Inc." }, - { "1a8c", "Verigy Pte. Ltd." }, - { "1a8e", "DRS Technologies" }, - { "1aa8", "Ciprico, Inc." }, - { "1aa9", "Schweitzer Engineering Laboratories" }, - { "1aae", "Global Velocity, Inc." }, - { "1ab4", "Distributed Management Task Force, Inc. (DMTF)" }, - { "1ab6", "CalDigit, Inc." }, - { "1ab8", "Parallels, Inc." }, - { "1ab9", "Espia Srl" }, - { "1ac1", "Global Unichip Corp." }, - { "1ac8", "Aeroflex Gaisler" }, - { "1acc", "Point of View BV" }, - { "1ad7", "Spectracom Corporation" }, - { "1ade", "Spin Master Ltd." }, - { "1ae0", "Google, Inc." }, - { "1ae3", "SANBlaze Technology, Inc." }, - { "1ae7", "First Wise Media GmbH" }, - { "1ae8", "Basler AG" }, - { "1ae9", "Wilocity Ltd." }, - { "1aea", "Alcor Micro" }, - { "1aec", "Wolfson Microelectronics" }, - { "1aed", "SanDisk" }, - { "1aee", "Caustic Graphics Inc." }, - { "1af4", "Red Hat, Inc." }, - { "1af5", "Netezza Corp." }, - { "1afa", "J & W Electronics Co., Ltd." }, - { "1b03", "Magnum Semiconductor, Inc," }, - { "1b08", "MSC Technologies GmbH" }, - { "1b0a", "Pegatron" }, - { "1b13", "Jaton Corp" }, - { "1b1a", "K&F Computing Research Co." }, - { "1b1c", "Corsair" }, - { "1b21", "ASMedia Technology Inc." }, - { "1b26", "Netcope Technologies, a.s." }, - { "1b2c", "Opal-RT Technologies Inc." }, - { "1b36", "Red Hat, Inc." }, - { "1b37", "Signal Processing Devices Sweden AB" }, - { "1b39", "sTec, Inc." }, - { "1b3a", "Westar Display Technologies" }, - { "1b3e", "Teradata Corp." }, - { "1b40", "Schooner Information Technology, Inc." }, - { "1b47", "Numascale AS" }, - { "1b4b", "Marvell Technology Group Ltd." }, - { "1b4c", "GALAX" }, - { "1b55", "NetUP Inc." }, - { "1b66", "DELTACAST" }, - { "1b6f", "Etron Technology, Inc." }, - { "1b73", "Fresco Logic" }, - { "1b74", "OpenVox Communication Co. Ltd." }, - { "1b79", "Absolute Analysis" }, - { "1b85", "OCZ Technology Group, Inc." }, - { "1b94", "Signatec / Dynamic Signals Corp" }, - { "1b96", "Western Digital" }, - { "1b9a", "XAVi Technologies Corp." }, - { "1baa", "QNAP Systems, Inc." }, - { "1bad", "ReFLEX CES" }, - { "1bb0", "SimpliVity Corporation" }, - { "1bb1", "Seagate Technology PLC" }, - { "1bb3", "Bluecherry" }, - { "1bb5", "Quantenna Communications, Inc." }, - { "1bbf", "Maxeler Technologies Ltd." }, - { "1bc0", "Innodisk Corporation" }, - { "1bcf", "NEC Corporation" }, - { "1bd0", "Astronics Corporation" }, - { "1bd4", "Inspur Electronic Information Industry Co., Ltd." }, - { "1bee", "IXXAT Automation GmbH" }, - { "1bef", "Lantiq" }, - { "1bf4", "VTI Instruments Corporation" }, - { "1bfd", "EeeTOP" }, - { "1c09", "CSP, Inc." }, - { "1c1c", "Symphony" }, - { "1c1f", "SoftLab-NSK" }, - { "1c28", "Lite-On IT Corp. / Plextor" }, - { "1c2c", "Silicom Denmark" }, - { "1c32", "Highland Technology, Inc." }, - { "1c33", "Daktronics, Inc" }, - { "1c36", "Annapurna Labs Ltd." }, - { "1c3b", "Accensus, LLC" }, - { "1c44", "Enmotus Inc" }, - { "1c58", "HGST, Inc." }, - { "1c5c", "SK hynix" }, - { "1c5f", "Beijing Memblaze Technology Co. Ltd." }, - { "1c63", "Science and Research Centre of Computer Technology (JSC \"NICEVT\")" }, - { "1c7e", "TTTech Computertechnik AG" }, - { "1c7f", "Elektrobit Austria GmbH" }, - { "1c8a", "TSF5 Corporation" }, - { "1c8c", "Mobiveil, Inc." }, - { "1cb0", "Shannon Systems" }, - { "1cb1", "Collion UG & Co.KG" }, - { "1cb5", "Focusrite Audio Engineering Ltd" }, - { "1cb8", "Dawning Information Industry Co., Ltd." }, - { "1cc1", "ADATA Technology Co., Ltd." }, - { "1cc4", "Union Memory (Shenzhen)" }, - { "1cc5", "Embedded Intelligence, Inc." }, - { "1cc7", "Radian Memory Systems Inc." }, - { "1ccf", "Zoom Corporation" }, - { "1cd2", "SesKion GmbH" }, - { "1cd7", "Nanjing Magewell Electronics Co., Ltd." }, - { "1cdd", "secunet Security Networks AG" }, - { "1ce4", "Exablaze" }, - { "1cf0", "Akitio" }, - { "1cf7", "Subspace Dynamics" }, - { "1cfa", "Corsair Memory, Inc" }, - { "1d00", "Pure Storage" }, - { "1d05", "Tongfang Hongkong Limited" }, - { "1d0f", "Amazon.com, Inc." }, - { "1d17", "Zhaoxin" }, - { "1d18", "RME" }, - { "1d1c", "Barefoot Networks, Inc." }, - { "1d1d", "CNEX Labs" }, - { "1d21", "Allo" }, - { "1d22", "Baidu Technology" }, - { "1d26", "Kalray Inc." }, - { "1d37", "NovaSparks" }, - { "1d40", "Techman Electronics (Changshu) Co., Ltd." }, - { "1d44", "DPT" }, - { "1d49", "Lenovo" }, - { "1d4c", "Diamanti, Inc." }, - { "1d5c", "Fantasia Trading LLC" }, - { "1d61", "Technobox, Inc." }, - { "1d62", "Nebbiolo Technologies" }, - { "1d65", "Imagine Communications Corp." }, - { "1d69", "Celeno Communications" }, - { "1d6a", "Aquantia Corp." }, - { "1d6c", "Atomic Rules LLC" }, - { "1d72", "Xiaomi" }, - { "1d78", "DERA Storage" }, - { "1d7c", "Aerotech, Inc." }, - { "1d82", "NETINT Technologies Inc." }, - { "1d87", "Rockchip Electronics Co., Ltd" }, - { "1d89", "YEESTOR Microelectronics Co., Ltd" }, - { "1d8f", "Enyx" }, - { "1d92", "Abaco Systems Inc." }, - { "1d93", "YADRO" }, - { "1d94", "Chengdu Haiguang IC Design Co., Ltd." }, - { "1d95", "Graphcore Ltd" }, - { "1d97", "Shenzhen Longsys Electronics Co., Ltd." }, - { "1d9b", "Facebook, Inc." }, - { "1da1", "Teko Telecom S.r.l." }, - { "1da2", "Sapphire Technology Limited" }, - { "1da3", "Habana Labs Ltd." }, - { "1dad", "Fungible" }, - { "1db2", "ATP ELECTRONICS INC" }, - { "1db7", "Phytium Technology Co., Ltd." }, - { "1dbb", "NGD Systems, Inc." }, - { "1dbf", "Guizhou Huaxintong Semiconductor Technology Co., Ltd" }, - { "1dc5", "FADU Inc." }, - { "1dcd", "Liqid Inc." }, - { "1dcf", "Beijing Sinead Technology Co., Ltd." }, - { "1dd3", "Sage Microelectronics Corp." }, - { "1dd8", "Pensando Systems" }, - { "1ddd", "Thorlabs" }, - { "1de0", "Groq" }, - { "1de1", "Tekram Technology Co.,Ltd." }, - { "1de5", "Eideticom, Inc" }, - { "1ded", "Alibaba (China) Co., Ltd." }, - { "1dee", "Biwin Storage Technology Co., Ltd." }, - { "1def", "Ampere Computing, LLC" }, - { "1df3", "Ethernity Networks" }, - { "1df7", "opencpi.org" }, - { "1dfc", "JSC NT-COM" }, - { "1e0f", "KIOXIA Corporation" }, - { "1e17", "Arnold & Richter Cine Technik GmbH & Co. Betriebs KG" }, - { "1e24", "Squirrels Research Labs" }, - { "1e26", "Fujitsu Client Computing Limited" }, - { "1e36", "Shanghai Enflame Technology Co. Ltd" }, - { "1e38", "Blaize, Inc" }, - { "1e39", "MEDION AG" }, - { "1e3b", "DapuStor Corporation" }, - { "1e3d", "Burlywood, Inc" }, - { "1e49", "Yangtze Memory Technologies Co.,Ltd" }, - { "1e4b", "MAXIO Technology (Hangzhou) Ltd." }, - { "1e4c", "GSI Technology" }, - { "1e57", "Beijing Panyi Technology Co., Ltd" }, - { "1e59", "Oxford Nanopore Technologies" }, - { "1e5d", "ASR Microelectronics" }, - { "1e60", "Hailo Technologies Ltd." }, - { "1e68", "Jiangsu Xinsheng Intelligent Technology Co., Ltd" }, - { "1e6b", "Axiado Corp." }, - { "1e7b", "Dataland" }, - { "1e7c", "Brainchip Inc" }, - { "1e81", "Ramaxel Technology(Shenzhen) Limited" }, - { "1e85", "Heitec AG" }, - { "1e89", "ID Quantique SA" }, - { "1e94", "Calian SED" }, - { "1e95", "Solid State Storage Technology Corporation" }, - { "1e9f", "Lynxi Technologies Co., Ltd." }, - { "1ea0", "Tencent Technology (Shenzhen) Company Limited" }, - { "1ea7", "Intelliprop, Inc" }, - { "1eab", "Hefei DATANG Storage Technology Co.,LTD." }, - { "1eac", "Quectel Wireless Solutions Co., Ltd." }, - { "1eae", "XFX Limited" }, - { "1eb1", "VeriSilicon Inc" }, - { "1eb4", "Quantum Nebula Microelectronics Technology Co.,Ltd." }, - { "1ebd", "EMERGETECH Company Ltd." }, - { "1ed2", "FuriosaAI, Inc." }, - { "1ed3", "Yeston" }, - { "1ed5", "Moore Threads Technology Co.,Ltd" }, - { "1ed8", "Digiteq Automotive" }, - { "1ed9", "Myrtle.ai" }, - { "1ee9", "SUSE LLC" }, - { "1eec", "Viscore Technologies Ltd" }, - { "1eed", "Xiangdixian Computing Technology (Chongqing) Ltd." }, - { "1efb", "Flexxon Pte Ltd" }, - { "1f02", "Beijing Dayu Technology" }, - { "1f03", "Shenzhen Shichuangyi Electronics Co., Ltd" }, - { "1f2f", "China Mobile (Hangzhou) Information Technology Co.Ltd." }, - { "1fab", "Unifabrix Ltd." }, - { "1fc0", "Ascom (Finland) Oy" }, - { "1fc1", "QLogic, Corp." }, - { "1fc9", "Tehuti Networks Ltd." }, - { "1fcc", "StreamLabs" }, - { "1fce", "Cognio Inc." }, - { "1fd4", "SUNIX Co., Ltd." }, - { "2000", "Smart Link Ltd." }, - { "2001", "Temporal Research Ltd" }, - { "2003", "Smart Link Ltd." }, - { "2004", "Smart Link Ltd." }, - { "2048", "Beijing SpaceControl Technology Co.Ltd" }, - { "20f4", "TRENDnet" }, - { "2116", "ZyDAS Technology Corp." }, - { "21b4", "Hunan Goke Microelectronics Co., Ltd" }, - { "21c3", "21st Century Computer Corp." }, - { "22b8", "Flex-Logix Technologies" }, - { "22db", "Missing Link Electronics, Inc." }, - { "2304", "Colorgraphic Communications Corp." }, - { "2348", "Racore" }, - { "2646", "Kingston Technology Company, Inc." }, - { "270b", "Xantel Corporation" }, - { "270f", "Chaintech Computer Co. Ltd" }, - { "2711", "AVID Technology Inc." }, - { "2955", "Connectix Virtual PC" }, - { "2a15", "3D Vision(Unknown?)" }, - { "2a18", "Video Transcode Controller" }, - { "2bd8", "ROPEX Industrie-Elektronik GmbH" }, - { "3000", "Hansol Electronics Inc." }, - { "3112", "Satelco Ingenieria S.A." }, - { "3130", "AUDIOTRAK" }, - { "3142", "Post Impression Systems." }, - { "31ab", "Zonet" }, - { "3388", "Hint Corp" }, - { "3411", "Quantum Designs (H.K.) Inc" }, - { "3442", "Bihl+Wiedemann GmbH" }, - { "3475", "Arista Networks, Inc." }, - { "34ba", "Ice Lake-LP PCI Express Root Port #3" }, - { "3513", "ARCOM Control Systems Ltd" }, - { "37d9", "ITD Firm ltd." }, - { "3842", "eVga.com. Corp." }, - { "38ef", "4Links" }, - { "3d3d", "3DLabs" }, - { "4005", "Avance Logic Inc." }, - { "4033", "Addtron Technology Co, Inc." }, - { "4040", "NetXen Incorporated" }, - { "4143", "Digital Equipment Corp" }, - { "4144", "Alpha Data" }, - { "4150", "ONA Electroerosion" }, - { "415a", "Auzentech, Inc." }, - { "416c", "Aladdin Knowledge Systems" }, - { "4242", "Universall Answer Generators" }, - { "4254", "DVBSky" }, - { "4321", "Tata Power Strategic Electronics Division" }, - { "4348", "WCH.CN" }, - { "434e", "Cornelis Networks" }, - { "4444", "Internext Compression Inc" }, - { "4468", "Bridgeport machines" }, - { "4594", "Cogetec Informatique Inc" }, - { "45fb", "Baldor Electric Company" }, - { "4624", "Budker Institute of Nuclear Physics" }, - { "4651", "TXIC" }, - { "4680", "Umax Computer Corp" }, - { "4843", "Hercules Computer Technology Inc" }, - { "4916", "RedCreek Communications Inc" }, - { "4943", "Growth Networks" }, - { "494f", "ACCES I/O Products, Inc." }, - { "4978", "Axil Computer Inc" }, - { "4a14", "NetVin" }, - { "4b10", "Buslogic Inc." }, - { "4c48", "LUNG HWA Electronics" }, - { "4c52", "LR-Link" }, - { "4c53", "SBS Technologies" }, - { "4ca1", "Seanix Technology Inc" }, - { "4d51", "MediaQ Inc." }, - { "4d54", "Microtechnica Co Ltd" }, - { "4d56", "MATRIX VISION GmbH" }, - { "4ddc", "ILC Data Device Corp" }, - { "4e58", "Nutanix, Inc." }, - { "5045", "University of Toronto" }, - { "5046", "GemTek Technology Corporation" }, - { "5053", "Voyetra Technologies" }, - { "50b2", "TerraTec Electronic GmbH" }, - { "5136", "S S Technologies" }, - { "5143", "Qualcomm Inc" }, - { "5145", "Ensoniq (Old)" }, - { "5168", "Animation Technologies Inc." }, - { "5301", "Alliance Semiconductor Corp." }, - { "5333", "S3 Graphics Ltd." }, - { "5431", "AuzenTech, Inc." }, - { "544c", "Teralogic Inc" }, - { "544d", "TBS Technologies" }, - { "5452", "SCANLAB AG" }, - { "5455", "Technische Universitaet Berlin" }, - { "5456", "GoTView" }, - { "5519", "Cnet Technologies, Inc." }, - { "5544", "Dunord Technologies" }, - { "5555", "Genroco, Inc" }, - { "5646", "Vector Fabrics BV" }, - { "5654", "VoiceTronix Pty Ltd" }, - { "5678", "Dawicontrol Computersysteme GmbH" }, - { "5700", "Netpower" }, - { "5845", "X-ES, Inc." }, - { "584d", "AuzenTech Co., Ltd." }, - { "5851", "Exacq Technologies" }, - { "5853", "XenSource, Inc." }, - { "5854", "GoTView" }, - { "5ace", "Beholder International Ltd." }, - { "6205", "TBS Technologies (wrong ID)" }, - { "6209", "TBS Technologies (wrong ID)" }, - { "631c", "SmartInfra Ltd" }, - { "6356", "UltraStor" }, - { "6374", "c't Magazin fuer Computertechnik" }, - { "6409", "Logitec Corp." }, - { "6549", "Teradici Corp." }, - { "6666", "Decision Computer International Co." }, - { "6688", "Zycoo Co., Ltd" }, - { "6766", "Glenfly Tech Co., Ltd." }, - { "6899", "ZT Systems" }, - { "6900", "Red Hat, Inc." }, - { "7063", "pcHDTV" }, - { "7284", "HT OMEGA Inc." }, - { "7357", "IOxOS Technologies SA" }, - { "7401", "EndRun Technologies" }, - { "7470", "TP-LINK Technologies Co., Ltd." }, - { "7526", "HongQin (Beijing) Technology Co., Ltd." }, - { "7604", "O.N. Electronic Co Ltd." }, - { "7bde", "MIDAC Corporation" }, - { "7fed", "PowerTV" }, - { "8008", "Quancom Electronic GmbH" }, - { "807d", "Asustek Computer, Inc." }, - { "8086", "Intel Corporation" }, - { "8088", "Beijing Wangxun Technology Co., Ltd." }, - { "80ee", "InnoTek Systemberatung GmbH" }, - { "8322", "Sodick America Corp." }, - { "8384", "SigmaTel" }, - { "8401", "TRENDware International Inc." }, - { "8686", "SAP" }, - { "8800", "Trigem Computer Inc." }, - { "8820", "Stryker Corporation" }, - { "8848", "Wuxi Micro Innovation Integrated Circuit Design Co.,Ltd" }, - { "8866", "T-Square Design Inc." }, - { "8888", "Silicon Magic" }, - { "8912", "TRX" }, - { "8c4a", "Winbond" }, - { "8e0e", "Computone Corporation" }, - { "8e2e", "KTI" }, - { "9004", "Adaptec" }, - { "9005", "Adaptec" }, - { "907f", "Atronics" }, - { "919a", "Gigapixel Corp" }, - { "9412", "Holtek" }, - { "9413", "Softlogic Co., Ltd." }, - { "9618", "JusonTech Corporation" }, - { "9699", "Omni Media Technology Inc" }, - { "9710", "MosChip Semiconductor Technology Ltd." }, - { "9850", "3Com (wrong ID)" }, - { "9902", "Stargen Inc." }, - { "9a11", "Tiger Lake-H Gaussian & Neural Accelerator" }, - { "9d32", "Beijing Starblaze Technology Co. Ltd." }, - { "a000", "Asix Electronics Corporation (Wrong ID)" }, - { "a0a0", "AOPEN Inc." }, - { "a0f1", "UNISYS Corporation" }, - { "a200", "NEC Corporation" }, - { "a259", "Hewlett Packard" }, - { "a25b", "Hewlett Packard GmbH PL24-MKT" }, - { "a304", "Sony" }, - { "a727", "3Com Corporation" }, - { "aa00", "iTuner" }, - { "aa01", "iTuner" }, - { "aa02", "iTuner" }, - { "aa03", "iTuner" }, - { "aa04", "iTuner" }, - { "aa05", "iTuner" }, - { "aa06", "iTuner" }, - { "aa07", "iTuner" }, - { "aa08", "iTuner" }, - { "aa09", "iTuner" }, - { "aa0a", "iTuner" }, - { "aa0b", "iTuner" }, - { "aa0c", "iTuner" }, - { "aa0d", "iTuner" }, - { "aa0e", "iTuner" }, - { "aa0f", "iTuner" }, - { "aa42", "Scitex Digital Video" }, - { "aa55", "Ncomputing X300 PCI-Engine" }, - { "aaaa", "Adnaco Technology Inc." }, - { "abcd", "Vadatech Inc." }, - { "ac1e", "Digital Receiver Technology Inc" }, - { "ac3d", "Actuality Systems" }, - { "ad00", "Alta Data Technologies LLC" }, - { "aecb", "Adrienne Electronics Corporation" }, - { "affe", "Sirrix AG security technologies" }, - { "b100", "OpenVox Communication Co. Ltd." }, - { "b10b", "Uakron PCI Project" }, - { "b1b3", "Shiva Europe Limited" }, - { "b1d9", "ATCOM Technology co., LTD." }, - { "bd11", "Pinnacle Systems, Inc. (Wrong ID)" }, - { "bdbd", "Blackmagic Design" }, - { "c001", "TSI Telsys" }, - { "c0a9", "Micron/Crucial Technology" }, - { "c0de", "Motorola" }, - { "c0fe", "Motion Engineering, Inc." }, - { "ca3b", "Cambrionix Ltd." }, - { "ca50", "Varian Australia Pty Ltd" }, - { "cace", "CACE Technologies, Inc." }, - { "caed", "Canny Edge" }, - { "cafe", "Chrysalis-ITS" }, - { "cc53", "ScaleFlux Inc." }, - { "cccc", "Catapult Communications" }, - { "ccec", "Curtiss-Wright Controls Embedded Computing" }, - { "cddd", "Tyzx, Inc." }, - { "ceba", "KEBA AG" }, - { "cf86", "Spectrum-4TOR" }, - { "d161", "Digium, Inc." }, - { "d209", "Ultimarc" }, - { "d4d4", "Dy4 Systems Inc" }, - { "d531", "I+ME ACTIA GmbH" }, - { "d84d", "Exsys" }, - { "dada", "Datapath Limited" }, - { "db10", "Diablo Technologies" }, - { "dc93", "Dawicontrol GmbH" }, - { "dcba", "Dynamic Engineering" }, - { "dd01", "Digital Devices GmbH" }, - { "dead", "Indigita Corporation" }, - { "deaf", "Middle Digital Inc." }, - { "deda", "XIMEA" }, - { "e000", "Winbond" }, - { "e159", "Tiger Jet Network Inc. / ICP DAS" }, - { "e1c5", "Elcus" }, - { "e4bf", "EKF Elektronik GmbH" }, - { "e4e4", "Xorcom" }, - { "e55e", "Essence Technology, Inc." }, - { "ea01", "Eagle Technology" }, - { "ea50", "Emerson Automation Solutions" }, - { "ea60", "RME" }, - { "eabb", "Aashima Technology B.V." }, - { "eace", "Endace Measurement Systems, Ltd" }, - { "ec80", "Belkin Corporation" }, - { "ecc0", "Echo Digital Audio Corporation" }, - { "edd8", "ARK Logic Inc" }, - { "f043", "ASUSTeK Computer Inc. (Wrong ID)" }, - { "f05b", "Foxconn International, Inc. (Wrong ID)" }, - { "f15e", "SiFive, Inc." }, - { "f1d0", "AJA Video" }, - { "f5f5", "F5 Networks, Inc." }, - { "f849", "ASRock Incorporation (Wrong ID)" }, - { "fa57", "Interagon AS" }, - { "fab7", "Fabric7 Systems, Inc." }, - { "febd", "Ultraview Corp." }, - { "feda", "Broadcom Inc" }, - { "fede", "Fedetec Inc." }, - { "fffd", "XenSource, Inc." }, - { "fffe", "VMWare Inc (temporary ID)" }, - { "ffff", "Illegal Vendor ID" }, -}; -static const size_t pciVendorTblSize = sizeof(pciVendorTbl) / sizeof(pciVendorTblData); +#include -static const struct pciDeviceTblData { - const char* const vendorid; - const char* const deviceid; - const char* const devicename; -} pciDeviceTbl[] = { - { "0010", "8139", "AT-2500TX V3 Ethernet" }, - { "0014", "7a00", "Hyper Transport Bridge Controller" }, - { "0014", "7a02", "APB (Advanced Peripheral Bus) Controller" }, - { "0014", "7a03", "Gigabit Ethernet Controller" }, - { "0014", "7a04", "OTG USB Controller" }, - { "0014", "7a05", "Vivante GPU (Graphics Processing Unit)" }, - { "0014", "7a06", "DC (Display Controller)" }, - { "0014", "7a07", "HDA (High Definition Audio) Controller" }, - { "0014", "7a08", "SATA AHCI Controller" }, - { "0014", "7a09", "PCI-to-PCI Bridge" }, - { "0014", "7a0b", "SPI Controller" }, - { "0014", "7a0c", "LPC Controller" }, - { "0014", "7a0f", "DMA (Direct Memory Access) Controller" }, - { "0014", "7a10", "Hyper Transport Bridge Controller" }, - { "0014", "7a14", "EHCI USB Controller" }, - { "0014", "7a15", "Vivante GPU (Graphics Processing Unit)" }, - { "0014", "7a19", "PCI-to-PCI Bridge" }, - { "0014", "7a24", "OHCI USB Controller" }, - { "0014", "7a29", "PCI-to-PCI Bridge" }, - { "001c", "0001", "PCAN-PCI CAN-Bus controller" }, - { "0070", "7801", "WinTV HVR-1800 MCE" }, - { "0095", "0680", "Ultra ATA/133 IDE RAID CONTROLLER CARD" }, - { "018a", "0106", "FPC-0106TX misprogrammed [RTL81xx]" }, - { "021b", "8139", "HNE-300 (RealTek RTL8139c) [iPaq Networking]" }, - { "02ac", "1012", "1012 PCMCIA 10/100 Ethernet Card [RTL81xx]" }, - { "0357", "000a", "TTP-Monitoring Card V2.0" }, - { "0432", "0001", "Pluto2 DVB-T Receiver for PCMCIA [EasyWatch MobilSet]" }, - { "0675", "1700", "IS64PH ISDN Adapter" }, - { "0675", "1702", "IS64PH ISDN Adapter" }, - { "0675", "1703", "ISDN Adapter (PCI Bus, DV, W)" }, - { "0675", "1704", "ISDN Adapter (PCI Bus, D, C)" }, - { "0731", "7200", "JM7200 Series GPU" }, - { "0731", "9100", "JM9100" }, - { "0731", "910a", "JH910" }, - { "0731", "9200", "JM9200" }, - { "0731", "920a", "JH920" }, - { "0731", "920b", "JH920-I" }, - { "0731", "920c", "JH920-M" }, - { "0731", "9210", "JM9210" }, - { "0731", "9211", "JM9210-I" }, - { "0731", "9230", "JM9230" }, - { "0731", "9231", "JM9231-I" }, - { "0731", "9250", "JM9250" }, - { "0731", "930a", "JH930-I" }, - { "0731", "930b", "JH930-M" }, - { "0795", "6663", "Butane II (MPEG2 encoder board)" }, - { "0795", "6666", "MediaPress (MPEG2 encoder board)" }, - { "0b0b", "0105", "R1T1" }, - { "0b0b", "0205", "R4FXO" }, - { "0b0b", "0206", "RCB4FXO 4-channel FXO analog telephony card" }, - { "0b0b", "0305", "R4T1" }, - { "0b0b", "0405", "R8FXX" }, - { "0b0b", "0406", "RCB8FXX 8-channel modular analog telephony card" }, - { "0b0b", "0505", "R24FXX" }, - { "0b0b", "0506", "RCB24FXS 24-Channel FXS analog telephony card" }, - { "0b0b", "0605", "R2T1" }, - { "0b0b", "0705", "R24FXS" }, - { "0b0b", "0706", "RCB24FXO 24-Channel FXO analog telephony card" }, - { "0b0b", "0905", "R1T3 Single T3 Digital Telephony Card" }, - { "0b0b", "0906", "RCB24FXX 24-channel modular analog telephony card" }, - { "0b0b", "0a06", "RCB672FXX 672-channel modular analog telephony card" }, - { "0e11", "0001", "PCI to EISA Bridge" }, - { "0e11", "0002", "PCI to ISA Bridge" }, - { "0e11", "0046", "Smart Array 64xx" }, - { "0e11", "0049", "NC7132 Gigabit Upgrade Module" }, - { "0e11", "004a", "NC6136 Gigabit Server Adapter" }, - { "0e11", "005a", "Remote Insight II board - Lights-Out" }, - { "0e11", "007c", "NC7770 1000BaseTX" }, - { "0e11", "007d", "NC6770 1000BaseTX" }, - { "0e11", "0085", "NC7780 1000BaseTX" }, - { "0e11", "00b1", "Remote Insight II board - PCI device" }, - { "0e11", "00bb", "NC7760" }, - { "0e11", "00ca", "NC7771" }, - { "0e11", "00cb", "NC7781" }, - { "0e11", "00cf", "NC7772" }, - { "0e11", "00d0", "NC7782" }, - { "0e11", "00d1", "NC7783" }, - { "0e11", "00e3", "NC7761" }, - { "0e11", "0508", "Netelligent 4/16 Token Ring" }, - { "0e11", "1000", "Triflex/Pentium Bridge, Model 1000" }, - { "0e11", "2000", "Triflex/Pentium Bridge, Model 2000" }, - { "0e11", "3032", "QVision 1280/p" }, - { "0e11", "3033", "QVision 1280/p" }, - { "0e11", "3034", "QVision 1280/p" }, - { "0e11", "4000", "4000 [Triflex]" }, - { "0e11", "4040", "Integrated Array" }, - { "0e11", "4048", "Compaq Raid LC2" }, - { "0e11", "4050", "Smart Array 4200" }, - { "0e11", "4051", "Smart Array 4250ES" }, - { "0e11", "4058", "Smart Array 431" }, - { "0e11", "4070", "Smart Array 5300" }, - { "0e11", "4080", "Smart Array 5i" }, - { "0e11", "4082", "Smart Array 532" }, - { "0e11", "4083", "Smart Array 5312" }, - { "0e11", "4091", "Smart Array 6i" }, - { "0e11", "409a", "Smart Array 641" }, - { "0e11", "409b", "Smart Array 642" }, - { "0e11", "409c", "Smart Array 6400" }, - { "0e11", "409d", "Smart Array 6400 EM" }, - { "0e11", "6010", "HotPlug PCI Bridge 6010" }, - { "0e11", "7020", "USB Controller" }, - { "0e11", "a0ec", "Fibre Channel Host Controller" }, - { "0e11", "a0f0", "Advanced System Management Controller" }, - { "0e11", "a0f3", "Triflex PCI to ISA Bridge" }, - { "0e11", "a0f7", "PCI Hotplug Controller" }, - { "0e11", "a0f8", "ZFMicro Chipset USB" }, - { "0e11", "a0fc", "FibreChannel HBA Tachyon" }, - { "0e11", "ae10", "Smart-2/P RAID Controller" }, - { "0e11", "ae29", "MIS-L" }, - { "0e11", "ae2a", "MPC" }, - { "0e11", "ae2b", "MIS-E" }, - { "0e11", "ae31", "System Management Controller" }, - { "0e11", "ae32", "Netelligent 10/100 TX PCI UTP" }, - { "0e11", "ae33", "Triflex Dual EIDE Controller" }, - { "0e11", "ae34", "Netelligent 10 T PCI UTP" }, - { "0e11", "ae35", "Integrated NetFlex-3/P" }, - { "0e11", "ae40", "Netelligent Dual 10/100 TX PCI UTP" }, - { "0e11", "ae43", "Netelligent Integrated 10/100 TX UTP" }, - { "0e11", "ae69", "CETUS-L" }, - { "0e11", "ae6c", "Northstar" }, - { "0e11", "ae6d", "NorthStar CPU to PCI Bridge" }, - { "0e11", "b011", "Netelligent 10/100 TX Embedded UTP" }, - { "0e11", "b012", "Netelligent 10 T/2 PCI UTP/Coax" }, - { "0e11", "b01e", "NC3120 Fast Ethernet NIC" }, - { "0e11", "b01f", "NC3122 Fast Ethernet NIC" }, - { "0e11", "b02f", "NC1120 Ethernet NIC" }, - { "0e11", "b030", "Netelligent 10/100 TX UTP" }, - { "0e11", "b04a", "10/100 TX PCI Intel WOL UTP Controller" }, - { "0e11", "b060", "Smart Array 5300 Controller" }, - { "0e11", "b0c6", "NC3161 Fast Ethernet NIC" }, - { "0e11", "b0c7", "NC3160 Fast Ethernet NIC" }, - { "0e11", "b0d7", "NC3121 Fast Ethernet NIC" }, - { "0e11", "b0dd", "NC3131 Fast Ethernet NIC" }, - { "0e11", "b0de", "NC3132 Fast Ethernet Module" }, - { "0e11", "b0df", "NC6132 Gigabit Module" }, - { "0e11", "b0e0", "NC6133 Gigabit Module" }, - { "0e11", "b0e1", "NC3133 Fast Ethernet Module" }, - { "0e11", "b123", "NC6134 Gigabit NIC" }, - { "0e11", "b134", "NC3163 Fast Ethernet NIC" }, - { "0e11", "b13c", "NC3162 Fast Ethernet NIC" }, - { "0e11", "b144", "NC3123 Fast Ethernet NIC" }, - { "0e11", "b163", "NC3134 Fast Ethernet NIC" }, - { "0e11", "b164", "NC3165 Fast Ethernet Upgrade Module" }, - { "0e11", "b178", "Smart Array 5i/532" }, - { "0e11", "b1a4", "NC7131 Gigabit Server Adapter" }, - { "0e11", "b200", "Memory Hot-Plug Controller" }, - { "0e11", "b203", "Integrated Lights Out Controller" }, - { "0e11", "b204", "Integrated Lights Out Processor" }, - { "0e11", "c000", "Remote Insight Lights-Out Edition" }, - { "0e11", "f130", "NetFlex-3/P ThunderLAN 1.0" }, - { "0e11", "f150", "NetFlex-3/P ThunderLAN 2.3" }, - { "0eac", "0008", "Ethernet Powerlink Managing Node 01" }, - { "1000", "0001", "53c810" }, - { "1000", "0002", "53c820" }, - { "1000", "0003", "53c825" }, - { "1000", "0004", "53c815" }, - { "1000", "0005", "53c810AP" }, - { "1000", "0006", "53c860" }, - { "1000", "000a", "53c1510" }, - { "1000", "000b", "53C896/897" }, - { "1000", "000c", "53c895" }, - { "1000", "000d", "53c885" }, - { "1000", "000f", "53c875" }, - { "1000", "0010", "53C1510" }, - { "1000", "0012", "53c895a" }, - { "1000", "0013", "53c875a" }, - { "1000", "0014", "MegaRAID Tri-Mode SAS3516" }, - { "1000", "0015", "MegaRAID Tri-Mode SAS3416" }, - { "1000", "0016", "MegaRAID Tri-Mode SAS3508" }, - { "1000", "0017", "MegaRAID Tri-Mode SAS3408" }, - { "1000", "001b", "MegaRAID Tri-Mode SAS3504" }, - { "1000", "001c", "MegaRAID Tri-Mode SAS3404" }, - { "1000", "0020", "53c1010 Ultra3 SCSI Adapter" }, - { "1000", "0021", "53c1010 66MHz Ultra3 SCSI Adapter" }, - { "1000", "002f", "MegaRAID SAS 2208 IOV [Thunderbolt]" }, - { "1000", "0030", "53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0031", "53c1030ZC PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0032", "53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0033", "1030ZC_53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0040", "53c1035 PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0041", "53C1035ZC PCI-X Fusion-MPT Dual Ultra320 SCSI" }, - { "1000", "0050", "SAS1064 PCI-X Fusion-MPT SAS" }, - { "1000", "0052", "MegaRAID SAS-3 3216/3224 [Cutlass]" }, - { "1000", "0053", "MegaRAID SAS-3 3216/3224 [Cutlass]" }, - { "1000", "0054", "SAS1068 PCI-X Fusion-MPT SAS" }, - { "1000", "0055", "SAS1068 PCI-X Fusion-MPT SAS" }, - { "1000", "0056", "SAS1064ET PCI-Express Fusion-MPT SAS" }, - { "1000", "0057", "M1064E MegaRAID SAS" }, - { "1000", "0058", "SAS1068E PCI-Express Fusion-MPT SAS" }, - { "1000", "0059", "MegaRAID SAS 8208ELP/8208ELP" }, - { "1000", "005a", "SAS1066E PCI-Express Fusion-MPT SAS" }, - { "1000", "005b", "MegaRAID SAS 2208 [Thunderbolt]" }, - { "1000", "005c", "SAS1064A PCI-X Fusion-MPT SAS" }, - { "1000", "005d", "MegaRAID SAS-3 3108 [Invader]" }, - { "1000", "005e", "SAS1066 PCI-X Fusion-MPT SAS" }, - { "1000", "005f", "MegaRAID SAS-3 3008 [Fury]" }, - { "1000", "0060", "MegaRAID SAS 1078" }, - { "1000", "0062", "SAS1078 PCI-Express Fusion-MPT SAS" }, - { "1000", "0064", "SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor]" }, - { "1000", "0065", "SAS2116 PCI-Express Fusion-MPT SAS-2 [Meteor]" }, - { "1000", "006e", "SAS2308 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0070", "SAS2004 PCI-Express Fusion-MPT SAS-2 [Spitfire]" }, - { "1000", "0071", "MR SAS HBA 2004" }, - { "1000", "0072", "SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon]" }, - { "1000", "0073", "MegaRAID SAS 2008 [Falcon]" }, - { "1000", "0074", "SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]" }, - { "1000", "0076", "SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]" }, - { "1000", "0077", "SAS2108 PCI-Express Fusion-MPT SAS-2 [Liberator]" }, - { "1000", "0079", "MegaRAID SAS 2108 [Liberator]" }, - { "1000", "007c", "MegaRAID SAS 1078DE" }, - { "1000", "007e", "SSS6200 PCI-Express Flash SSD" }, - { "1000", "0080", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0081", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0082", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0083", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0084", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0085", "SAS2208 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0086", "SAS2308 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "0087", "SAS2308 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "008f", "53c875J" }, - { "1000", "0090", "SAS3108 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "0091", "SAS3108 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "0094", "SAS3108 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "0095", "SAS3108 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "0096", "SAS3004 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "0097", "SAS3008 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00a5", "Fusion-MPT 24GSAS/PCIe SAS40xx" }, - { "1000", "00ab", "SAS3516 Fusion-MPT Tri-Mode RAID On Chip (ROC)" }, - { "1000", "00ac", "SAS3416 Fusion-MPT Tri-Mode I/O Controller Chip (IOC)" }, - { "1000", "00ae", "SAS3508 Fusion-MPT Tri-Mode RAID On Chip (ROC)" }, - { "1000", "00af", "SAS3408 Fusion-MPT Tri-Mode I/O Controller Chip (IOC)" }, - { "1000", "00b2", "PCIe Switch management endpoint" }, - { "1000", "00be", "SAS3504 Fusion-MPT Tri-Mode RAID On Chip (ROC)" }, - { "1000", "00bf", "SAS3404 Fusion-MPT Tri-Mode I/O Controller Chip (IOC)" }, - { "1000", "00c0", "SAS3324 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c1", "SAS3324 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c2", "SAS3324 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c3", "SAS3324 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c4", "SAS3224 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c5", "SAS3316 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c6", "SAS3316 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c7", "SAS3316 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c8", "SAS3316 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00c9", "SAS3216 PCI-Express Fusion-MPT SAS-3" }, - { "1000", "00ce", "MegaRAID SAS-3 3316 [Intruder]" }, - { "1000", "00cf", "MegaRAID SAS-3 3324 [Intruder]" }, - { "1000", "00d0", "SAS3716 Fusion-MPT Tri-Mode RAID Controller Chip (ROC)" }, - { "1000", "00d1", "SAS3616 Fusion-MPT Tri-Mode I/O Controller Chip (IOC)" }, - { "1000", "00d3", "MegaRAID Tri-Mode SAS3716W" }, - { "1000", "00e0", "Fusion-MPT 12GSAS/PCIe Unsupported SAS39xx" }, - { "1000", "00e1", "Fusion-MPT 12GSAS/PCIe SAS39xx" }, - { "1000", "00e2", "Fusion-MPT 12GSAS/PCIe Secure SAS39xx" }, - { "1000", "00e3", "Fusion-MPT 12GSAS/PCIe Unsupported SAS39xx" }, - { "1000", "00e4", "Fusion-MPT 12GSAS/PCIe Unsupported SAS38xx" }, - { "1000", "00e5", "Fusion-MPT 12GSAS/PCIe SAS38xx" }, - { "1000", "00e6", "Fusion-MPT 12GSAS/PCIe Secure SAS38xx" }, - { "1000", "00e7", "Fusion-MPT 12GSAS/PCIe Unsupported SAS38xx" }, - { "1000", "02b0", "Virtual Endpoint on PCIe Switch" }, - { "1000", "02b1", "Virtual Endpoint on PCIe Switch (9749)" }, - { "1000", "0407", "MegaRAID" }, - { "1000", "0408", "MegaRAID" }, - { "1000", "0409", "MegaRAID" }, - { "1000", "0411", "MegaRAID SAS 1068" }, - { "1000", "0413", "MegaRAID SAS 1068 [Verde ZCR]" }, - { "1000", "0621", "FC909 Fibre Channel Adapter" }, - { "1000", "0622", "FC929 Fibre Channel Adapter" }, - { "1000", "0623", "FC929 LAN" }, - { "1000", "0624", "FC919 Fibre Channel Adapter" }, - { "1000", "0625", "FC919 LAN" }, - { "1000", "0626", "FC929X Fibre Channel Adapter" }, - { "1000", "0627", "FC929X LAN" }, - { "1000", "0628", "FC919X Fibre Channel Adapter" }, - { "1000", "0629", "FC919X LAN" }, - { "1000", "0640", "FC949X Fibre Channel Adapter" }, - { "1000", "0642", "FC939X Fibre Channel Adapter" }, - { "1000", "0646", "FC949ES Fibre Channel Adapter" }, - { "1000", "0701", "83C885 NT50 DigitalScape Fast Ethernet" }, - { "1000", "0702", "Yellowfin G-NIC gigabit ethernet" }, - { "1000", "0804", "SA2010" }, - { "1000", "0805", "SA2010ZC" }, - { "1000", "0806", "SA2020" }, - { "1000", "0807", "SA2020ZC" }, - { "1000", "0901", "61C102" }, - { "1000", "1000", "63C815" }, - { "1000", "10e0", "MegaRAID 12GSAS/PCIe Unsupported SAS39xx" }, - { "1000", "10e1", "MegaRAID 12GSAS/PCIe SAS39xx" }, - { "1000", "10e2", "MegaRAID 12GSAS/PCIe Secure SAS39xx" }, - { "1000", "10e3", "MegaRAID 12GSAS/PCIe Unsupported SAS39xx" }, - { "1000", "10e4", "MegaRAID 12GSAS/PCIe Unsupported SAS38xx" }, - { "1000", "10e5", "MegaRAID 12GSAS/PCIe SAS38xx" }, - { "1000", "10e6", "MegaRAID 12GSAS/PCIe Secure SAS38xx" }, - { "1000", "10e7", "MegaRAID 12GSAS/PCIe Unsupported SAS38xx" }, - { "1000", "1960", "MegaRAID" }, - { "1000", "3050", "SAS2008 PCI-Express Fusion-MPT SAS-2" }, - { "1000", "6001", "DX1 Multiformat Broadcast HD/SD Encoder/Decoder" }, - { "1000", "c010", "PEX88048 50 lane, 50 port, PCI Express Gen 4.0 ExpressFabric Platform" }, - { "1000", "c012", "PEX880xx PCIe Gen 4 Switch" }, - { "1000", "c030", "PEX890xx PCIe Gen 5 Switch" }, - { "1001", "0010", "PCI 1616 Measurement card with 32 digital I/O lines" }, - { "1001", "0011", "OPTO-PCI Opto-Isolated digital I/O board" }, - { "1001", "0012", "PCI-AD/DA Analogue I/O board" }, - { "1001", "0013", "PCI-OPTO-RELAIS Digital I/O board with relay outputs" }, - { "1001", "0014", "PCI-Counter/Timer Counter Timer board" }, - { "1001", "0015", "PCI-DAC416 Analogue output board" }, - { "1001", "0016", "PCI-MFB Analogue I/O board" }, - { "1001", "0017", "PROTO-3 PCI Prototyping board" }, - { "1001", "9100", "INI-9100/9100W SCSI Host" }, - { "1002", "1304", "Kaveri" }, - { "1002", "1305", "Kaveri" }, - { "1002", "1306", "Kaveri" }, - { "1002", "1307", "Kaveri" }, - { "1002", "1308", "Kaveri HDMI/DP Audio Controller" }, - { "1002", "1309", "Kaveri [Radeon R6/R7 Graphics]" }, - { "1002", "130a", "Kaveri [Radeon R6 Graphics]" }, - { "1002", "130b", "Kaveri [Radeon R4 Graphics]" }, - { "1002", "130c", "Kaveri [Radeon R7 Graphics]" }, - { "1002", "130d", "Kaveri [Radeon R6 Graphics]" }, - { "1002", "130e", "Kaveri [Radeon R5 Graphics]" }, - { "1002", "130f", "Kaveri [Radeon R7 Graphics]" }, - { "1002", "1310", "Kaveri" }, - { "1002", "1311", "Kaveri" }, - { "1002", "1312", "Kaveri" }, - { "1002", "1313", "Kaveri [Radeon R7 Graphics]" }, - { "1002", "1314", "Wrestler HDMI Audio" }, - { "1002", "1315", "Kaveri [Radeon R5 Graphics]" }, - { "1002", "1316", "Kaveri [Radeon R5 Graphics]" }, - { "1002", "1317", "Kaveri" }, - { "1002", "1318", "Kaveri [Radeon R5 Graphics]" }, - { "1002", "131b", "Kaveri [Radeon R4 Graphics]" }, - { "1002", "131c", "Kaveri [Radeon R7 Graphics]" }, - { "1002", "131d", "Kaveri [Radeon R6 Graphics]" }, - { "1002", "13e9", "Ariel" }, - { "1002", "13fe", "Cyan Skillfish" }, - { "1002", "1478", "Navi 10 XL Upstream Port of PCI Express Switch" }, - { "1002", "1479", "Navi 10 XL Downstream Port of PCI Express Switch" }, - { "1002", "154c", "Kryptos [Radeon RX 350]" }, - { "1002", "154e", "Garfield" }, - { "1002", "1551", "Arlene" }, - { "1002", "1552", "Pooky" }, - { "1002", "1561", "Anubis" }, - { "1002", "15d8", "Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile Series]" }, - { "1002", "15dd", "Raven Ridge [Radeon Vega Series / Radeon Vega Mobile Series]" }, - { "1002", "15de", "Raven/Raven2/Fenghuang HDMI/DP Audio Controller" }, - { "1002", "15df", "Raven/Raven2/Fenghuang/Renoir Cryptographic Coprocessor" }, - { "1002", "15e7", "Barcelo" }, - { "1002", "15ff", "Fenghuang [Zhongshan Subor Z+]" }, - { "1002", "1607", "Arden" }, - { "1002", "1636", "Renoir" }, - { "1002", "1637", "Renoir Radeon High Definition Audio Controller" }, - { "1002", "1638", "Cezanne" }, - { "1002", "163f", "VanGogh [AMD Custom GPU 0405]" }, - { "1002", "1640", "Rembrandt Radeon High Definition Audio Controller" }, - { "1002", "164c", "Lucienne" }, - { "1002", "164d", "Rembrandt" }, - { "1002", "1681", "Rembrandt [Radeon 680M]" }, - { "1002", "1714", "BeaverCreek HDMI Audio [Radeon HD 6500D and 6400G-6600G series]" }, - { "1002", "3150", "RV380/M24 [Mobility Radeon X600]" }, - { "1002", "3151", "RV380 GL [FireMV 2400]" }, - { "1002", "3152", "RV370/M22 [Mobility Radeon X300]" }, - { "1002", "3154", "RV380/M24 GL [Mobility FireGL V3200]" }, - { "1002", "3155", "RV380 GL [FireMV 2400]" }, - { "1002", "3171", "RV380 GL [FireMV 2400] (Secondary)" }, - { "1002", "3e50", "RV380 [Radeon X550/X600]" }, - { "1002", "3e54", "RV380 GL [FireGL V3200]" }, - { "1002", "3e70", "RV380 [Radeon X550/X600] (Secondary)" }, - { "1002", "4136", "RS100 [Mobility IGP 320M]" }, - { "1002", "4137", "RS200 [Radeon IGP 340]" }, - { "1002", "4144", "R300 [Radeon 9500]" }, - { "1002", "4146", "R300 [Radeon 9700 PRO]" }, - { "1002", "4147", "R300 GL [FireGL Z1]" }, - { "1002", "4148", "R350 [Radeon 9800/9800 SE]" }, - { "1002", "4150", "RV350 [Radeon 9550/9600/X1050 Series]" }, - { "1002", "4151", "RV350 [Radeon 9600 Series]" }, - { "1002", "4152", "RV360 [Radeon 9600/X1050 Series]" }, - { "1002", "4153", "RV350 [Radeon 9550]" }, - { "1002", "4154", "RV350 GL [FireGL T2]" }, - { "1002", "4155", "RV350 [Radeon 9600]" }, - { "1002", "4157", "RV350 GL [FireGL T2]" }, - { "1002", "4158", "68800AX [Graphics Ultra Pro PCI]" }, - { "1002", "4164", "R300 [Radeon 9500 PRO] (Secondary)" }, - { "1002", "4165", "R300 [Radeon 9700 PRO] (Secondary)" }, - { "1002", "4166", "R300 [Radeon 9700 PRO] (Secondary)" }, - { "1002", "4168", "RV350 [Radeon 9800 SE] (Secondary)" }, - { "1002", "4170", "RV350 [Radeon 9550/9600/X1050 Series] (Secondary)" }, - { "1002", "4171", "RV350 [Radeon 9600] (Secondary)" }, - { "1002", "4172", "RV350 [Radeon 9600/X1050 Series] (Secondary)" }, - { "1002", "4173", "RV350 [Radeon 9550] (Secondary)" }, - { "1002", "4242", "R200 [All-In-Wonder Radeon 8500 DV]" }, - { "1002", "4243", "R200 PCI Bridge [All-in-Wonder Radeon 8500DV]" }, - { "1002", "4336", "RS100 [Radeon IGP 320M]" }, - { "1002", "4337", "RS200M [Radeon IGP 330M/340M/345M/350M]" }, - { "1002", "4341", "SB200 AC97 Audio Controller" }, - { "1002", "4342", "SB200 PCI to PCI Bridge" }, - { "1002", "4345", "SB200 EHCI USB Controller" }, - { "1002", "4346", "Crayola 6 [XENOS Parent Die (XBOX 360)]" }, - { "1002", "4347", "SB200 OHCI USB Controller #1" }, - { "1002", "4348", "SB200 OHCI USB Controller #2" }, - { "1002", "4349", "SB200 IDE Controller" }, - { "1002", "434c", "SB200 PCI to LPC Bridge" }, - { "1002", "434d", "SB200 AC97 Modem Controller" }, - { "1002", "4353", "SB200 SMBus Controller" }, - { "1002", "4354", "215CT [Mach64 CT PCI]" }, - { "1002", "4358", "Mach64 CX [Graphics Xpression]" }, - { "1002", "4361", "SB300 AC'97 Audio Controller" }, - { "1002", "4362", "SB300 PCI to PCI Bridge" }, - { "1002", "4363", "SB300 SMBus Controller" }, - { "1002", "4365", "SB300 USB Controller (EHCI)" }, - { "1002", "4367", "SB300 USB Controller (EHCI)" }, - { "1002", "4368", "SB300 USB Controller (EHCI)" }, - { "1002", "4369", "SB300 IDE Controller" }, - { "1002", "436c", "SB300 PCI to LPC Bridge" }, - { "1002", "436d", "SB300 AC97 Modem Controller" }, - { "1002", "436e", "SB300 Serial ATA Controller" }, - { "1002", "4370", "IXP SB400 AC'97 Audio Controller" }, - { "1002", "4371", "IXP SB4x0 PCI-PCI Bridge" }, - { "1002", "4372", "IXP SB4x0 SMBus Controller" }, - { "1002", "4373", "IXP SB4x0 USB2 Host Controller" }, - { "1002", "4374", "IXP SB4x0 USB Host Controller" }, - { "1002", "4375", "IXP SB4x0 USB Host Controller" }, - { "1002", "4376", "IXP SB4x0 IDE Controller" }, - { "1002", "4377", "IXP SB4x0 PCI-ISA Bridge" }, - { "1002", "4378", "IXP SB400 AC'97 Modem Controller" }, - { "1002", "4379", "IXP SB4x0 Serial ATA Controller" }, - { "1002", "437a", "IXP SB400 Serial ATA Controller" }, - { "1002", "437b", "IXP SB4x0 High Definition Audio Controller" }, - { "1002", "4380", "SB600 Non-Raid-5 SATA" }, - { "1002", "4381", "SB600 SATA Controller (RAID 5 mode)" }, - { "1002", "4382", "SB600 AC97 Audio" }, - { "1002", "4383", "SBx00 Azalia (Intel HDA)" }, - { "1002", "4384", "SBx00 PCI to PCI Bridge" }, - { "1002", "4385", "SBx00 SMBus Controller" }, - { "1002", "4386", "SB600 USB Controller (EHCI)" }, - { "1002", "4387", "SB600 USB (OHCI0)" }, - { "1002", "4388", "SB600 USB (OHCI1)" }, - { "1002", "4389", "SB600 USB (OHCI2)" }, - { "1002", "438a", "SB600 USB (OHCI3)" }, - { "1002", "438b", "SB600 USB (OHCI4)" }, - { "1002", "438c", "SB600 IDE" }, - { "1002", "438d", "SB600 PCI to LPC Bridge" }, - { "1002", "438e", "SB600 AC97 Modem" }, - { "1002", "4390", "SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode]" }, - { "1002", "4391", "SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]" }, - { "1002", "4392", "SB7x0/SB8x0/SB9x0 SATA Controller [Non-RAID5 mode]" }, - { "1002", "4393", "SB7x0/SB8x0/SB9x0 SATA Controller [RAID5 mode]" }, - { "1002", "4394", "SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]" }, - { "1002", "4395", "SB8x0/SB9x0 SATA Controller [Storage mode]" }, - { "1002", "4396", "SB7x0/SB8x0/SB9x0 USB EHCI Controller" }, - { "1002", "4397", "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller" }, - { "1002", "4398", "SB7x0 USB OHCI1 Controller" }, - { "1002", "4399", "SB7x0/SB8x0/SB9x0 USB OHCI2 Controller" }, - { "1002", "439c", "SB7x0/SB8x0/SB9x0 IDE Controller" }, - { "1002", "439d", "SB7x0/SB8x0/SB9x0 LPC host controller" }, - { "1002", "43a0", "SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0)" }, - { "1002", "43a1", "SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1)" }, - { "1002", "43a2", "SB900 PCI to PCI bridge (PCIE port 2)" }, - { "1002", "43a3", "SB900 PCI to PCI bridge (PCIE port 3)" }, - { "1002", "4437", "RS250 [Mobility Radeon 7000 IGP]" }, - { "1002", "4554", "210888ET [Mach64 ET]" }, - { "1002", "4630", "XENOS Parent Die (XBOX 360)" }, - { "1002", "4631", "XENOS Daughter Die (XBOX 360)" }, - { "1002", "4654", "Mach64 VT" }, - { "1002", "4742", "Rage 3 [3D Rage PRO AGP 2X]" }, - { "1002", "4744", "Rage 3 [3D Rage PRO AGP 1X]" }, - { "1002", "4749", "3D Rage PRO PCI" }, - { "1002", "474d", "Rage XL AGP 2X" }, - { "1002", "474e", "Rage XC AGP" }, - { "1002", "474f", "Rage XL" }, - { "1002", "4750", "3D Rage Pro PCI" }, - { "1002", "4752", "Rage 3 [Rage XL PCI]" }, - { "1002", "4753", "Rage XC" }, - { "1002", "4754", "Mach64 GT/GT-B [3D Rage I/II]" }, - { "1002", "4755", "Mach64 GT-B [3D Rage II+ DVD]" }, - { "1002", "4756", "Rage 2 [3D Rage IIC PCI]" }, - { "1002", "4757", "Rage 2 [3D Rage IIC AGP]" }, - { "1002", "4758", "Mach64 GX [WinTurbo]" }, - { "1002", "4759", "Rage 3 [3D Rage IIC PCI]" }, - { "1002", "475a", "3D Rage IIC AGP" }, - { "1002", "4845", "Xilleon 220 HBIU for HDTV2" }, - { "1002", "4846", "Xilleon 220 IDE for HDTV2" }, - { "1002", "4847", "Xilleon 220 USB for HDTV2" }, - { "1002", "4848", "Xilleon 220 DAIO-0 for HDTV2" }, - { "1002", "4849", "Xilleon 220 DAIO-1 for HDTV2" }, - { "1002", "484a", "Xilleon 220 LPC for HDTV2" }, - { "1002", "4850", "Xilleon 215 HBIU for X215" }, - { "1002", "4851", "Xilleon 215 IDE for X215" }, - { "1002", "4852", "Xilleon 215 USB for X215" }, - { "1002", "4853", "Xilleon 215 DAIO-0 for X215" }, - { "1002", "4854", "Xilleon 215 DAIO-1 for X215" }, - { "1002", "4855", "Xilleon 225 HBIU for X225" }, - { "1002", "4856", "Xilleon 225 IDE for X225" }, - { "1002", "4857", "Xilleon 225 USB for X225" }, - { "1002", "4858", "Xilleon 225 DAIO-0 for X225" }, - { "1002", "4859", "Xilleon 225 DAIO-1 for X225" }, - { "1002", "4860", "Xilleon 210 HBIU for X210" }, - { "1002", "4861", "Xilleon 210 IDE for X210" }, - { "1002", "4862", "Xilleon 210 USB for X210" }, - { "1002", "4863", "Xilleon 210 DAIO-0 for X210" }, - { "1002", "4864", "Xilleon 210 DAIO-1 for X210" }, - { "1002", "4865", "Xilleon 226 HBIU for X226" }, - { "1002", "4866", "Xilleon 226 IDE for X226" }, - { "1002", "4867", "Xilleon 226 USB for X226" }, - { "1002", "4868", "Xilleon 226 DAIO-0 for X226" }, - { "1002", "4869", "Xilleon 226 DAIO-1 for X226" }, - { "1002", "486a", "Xilleon 240S HBIU for X240S" }, - { "1002", "486b", "Xilleon 240H HBIU for X240H" }, - { "1002", "486c", "Xilleon 240S USB for X240S" }, - { "1002", "486d", "Xilleon 240H USB for X240H" }, - { "1002", "486e", "Xilleon 250 USB 1.1 for X250" }, - { "1002", "486f", "Xilleon 260 USB 1.1 for X260" }, - { "1002", "4870", "Xilleon 250 HBIU for X250" }, - { "1002", "4871", "Xilleon 250 IDE for X250" }, - { "1002", "4872", "Xilleon 234/235 HBIU for X234/X235" }, - { "1002", "4873", "Xilleon 244/245 HBIU for X244/X245" }, - { "1002", "4874", "Xilleon 234/235 USB 1.1 for X234/X235" }, - { "1002", "4875", "Xilleon 260 HBIU for X260" }, - { "1002", "4876", "Xilleon 260 IDE for X260" }, - { "1002", "4877", "Xilleon 244/245 USB 1.1 for X244/X245" }, - { "1002", "4878", "Xilleon 270 HBIU for X270" }, - { "1002", "487b", "Xilleon 242 HBIU for X242" }, - { "1002", "487d", "Xilleon 242 USB 1.1 for X242" }, - { "1002", "4880", "Xilleon 254 HBIU for X254" }, - { "1002", "4881", "Xilleon 254 USB 1.1 for X254" }, - { "1002", "4882", "Xilleon 255 HBIU for X255" }, - { "1002", "4883", "Xilleon 255 USB 1.1 for X255" }, - { "1002", "4884", "Xilleon 243 HBIU for X243" }, - { "1002", "4885", "Xilleon 243 USB 1.1 for X243" }, - { "1002", "4886", "Xilleon 233 HBIU for X233" }, - { "1002", "4887", "Xilleon 233 USB 1.1 for X233" }, - { "1002", "4888", "Xilleon 143 HBIU for X143" }, - { "1002", "4889", "Xilleon 143 HBIU for X143L" }, - { "1002", "488a", "Xilleon 143 HBIU for X143S" }, - { "1002", "4966", "RV250 [Radeon 9000 Series]" }, - { "1002", "496e", "RV250 [Radeon 9000] (Secondary)" }, - { "1002", "4a49", "R420 [Radeon X800 PRO/GTO AGP]" }, - { "1002", "4a4a", "R420 [Radeon X800 GT AGP]" }, - { "1002", "4a4b", "R420 [Radeon X800 AGP Series]" }, - { "1002", "4a4d", "R420 GL [FireGL X3-256]" }, - { "1002", "4a4e", "RV420/M18 [Mobility Radeon 9800]" }, - { "1002", "4a4f", "R420 [Radeon X850 AGP]" }, - { "1002", "4a50", "R420 [Radeon X800 XT Platinum Edition AGP]" }, - { "1002", "4a54", "R420 [Radeon X800 VE AGP]" }, - { "1002", "4a69", "R420 [Radeon X800 PRO/GTO] (Secondary)" }, - { "1002", "4a6a", "R420 [Radeon X800] (Secondary)" }, - { "1002", "4a6b", "R420 [Radeon X800 XT AGP] (Secondary)" }, - { "1002", "4a70", "R420 [Radeon X800 XT Platinum Edition AGP] (Secondary)" }, - { "1002", "4a74", "R420 [Radeon X800 VE] (Secondary)" }, - { "1002", "4b49", "R481 [Radeon X850 XT AGP]" }, - { "1002", "4b4b", "R481 [Radeon X850 PRO AGP]" }, - { "1002", "4b4c", "R481 [Radeon X850 XT Platinum Edition AGP]" }, - { "1002", "4b69", "R481 [Radeon X850 XT AGP] (Secondary)" }, - { "1002", "4b6b", "R481 [Radeon X850 PRO AGP] (Secondary)" }, - { "1002", "4b6c", "R481 [Radeon X850 XT Platinum Edition AGP] (Secondary)" }, - { "1002", "4c42", "Mach64 LT [3D Rage LT PRO AGP]" }, - { "1002", "4c46", "Rage Mobility 128 AGP 2X/Mobility M3" }, - { "1002", "4c47", "3D Rage IIC PCI / Mobility Radeon 7500/7500C" }, - { "1002", "4c49", "3D Rage LT PRO PCI" }, - { "1002", "4c4d", "Rage Mobility AGP 2x Series" }, - { "1002", "4c50", "Rage 3 LT [3D Rage LT PRO PCI]" }, - { "1002", "4c52", "M1 [Rage Mobility-M1 PCI]" }, - { "1002", "4c54", "264LT [Mach64 LT]" }, - { "1002", "4c57", "RV200/M7 [Mobility Radeon 7500]" }, - { "1002", "4c58", "RV200/M7 GL [Mobility FireGL 7800]" }, - { "1002", "4c59", "RV100/M6 [Rage/Radeon Mobility Series]" }, - { "1002", "4c66", "RV250/M9 GL [Mobility FireGL 9000/Radeon 9000]" }, - { "1002", "4c6e", "RV250/M9 [Mobility Radeon 9000] (Secondary)" }, - { "1002", "4d46", "Rage Mobility 128 AGP 4X/Mobility M4" }, - { "1002", "4d52", "Theater 550 PRO PCI [ATI TV Wonder 550]" }, - { "1002", "4d53", "Theater 550 PRO PCIe" }, - { "1002", "4e44", "R300 [Radeon 9700/9700 PRO]" }, - { "1002", "4e45", "R300 [Radeon 9500 PRO/9700]" }, - { "1002", "4e46", "R300 [Radeon 9600 TX]" }, - { "1002", "4e47", "R300 GL [FireGL X1]" }, - { "1002", "4e48", "R350 [Radeon 9800 Series]" }, - { "1002", "4e49", "R350 [Radeon 9800]" }, - { "1002", "4e4a", "R360 [Radeon 9800 XXL/XT]" }, - { "1002", "4e4b", "R350 GL [FireGL X2 AGP Pro]" }, - { "1002", "4e50", "RV350/M10 / RV360/M11 [Mobility Radeon 9600 (PRO) / 9700]" }, - { "1002", "4e51", "RV350 [Radeon 9550/9600/X1050 Series]" }, - { "1002", "4e52", "RV350/M10 [Mobility Radeon 9500/9700 SE]" }, - { "1002", "4e54", "RV350/M10 GL [Mobility FireGL T2]" }, - { "1002", "4e56", "RV360/M12 [Mobility Radeon 9550]" }, - { "1002", "4e64", "R300 [Radeon 9700 PRO] (Secondary)" }, - { "1002", "4e65", "R300 [Radeon 9500 PRO] (Secondary)" }, - { "1002", "4e66", "RV350 [Radeon 9600] (Secondary)" }, - { "1002", "4e67", "R300 GL [FireGL X1] (Secondary)" }, - { "1002", "4e68", "R350 [Radeon 9800 PRO] (Secondary)" }, - { "1002", "4e69", "R350 [Radeon 9800] (Secondary)" }, - { "1002", "4e6a", "RV350 [Radeon 9800 XT] (Secondary)" }, - { "1002", "4e71", "RV350/M10 [Mobility Radeon 9600] (Secondary)" }, - { "1002", "4f72", "RV250 [Radeon 9000 Series]" }, - { "1002", "4f73", "RV250 [Radeon 9000 Series] (Secondary)" }, - { "1002", "5044", "All-In-Wonder 128 PCI" }, - { "1002", "5046", "Rage 4 [Rage 128 PRO AGP 4X]" }, - { "1002", "5050", "Rage 4 [Rage 128 PRO PCI / Xpert 128 PCI]" }, - { "1002", "5052", "Rage 4 [Rage 128 PRO AGP 4X]" }, - { "1002", "5144", "R100 [Radeon 7200 / All-In-Wonder Radeon]" }, - { "1002", "5148", "R200 GL [FireGL 8800]" }, - { "1002", "514c", "R200 [Radeon 8500/8500 LE]" }, - { "1002", "514d", "R200 [Radeon 9100]" }, - { "1002", "5157", "RV200 [Radeon 7500/7500 LE]" }, - { "1002", "5159", "RV100 [Radeon 7000 / Radeon VE]" }, - { "1002", "515e", "ES1000" }, - { "1002", "5245", "Rage 128 GL PCI" }, - { "1002", "5246", "Rage 128 (Rage 4) series" }, - { "1002", "524b", "Rage 128 VR PCI" }, - { "1002", "524c", "Rage 128 VR AGP" }, - { "1002", "534d", "Rage 128 4X AGP 4x" }, - { "1002", "5354", "Mach 64 VT" }, - { "1002", "5446", "Rage 128 PRO Ultra AGP 4x" }, - { "1002", "5452", "Rage 128 PRO Ultra4XL VR-R AGP" }, - { "1002", "5460", "RV370/M22 [Mobility Radeon X300]" }, - { "1002", "5461", "RV370/M22 [Mobility Radeon X300]" }, - { "1002", "5462", "RV380/M24C [Mobility Radeon X600 SE]" }, - { "1002", "5464", "RV370/M22 GL [Mobility FireGL V3100]" }, - { "1002", "5549", "R423 [Radeon X800 GTO]" }, - { "1002", "554a", "R423 [Radeon X800 XT Platinum Edition]" }, - { "1002", "554b", "R423 [Radeon X800 GT/SE]" }, - { "1002", "554d", "R480 [Radeon X800 GTO2/XL]" }, - { "1002", "554e", "R430 [All-In-Wonder X800 GT]" }, - { "1002", "554f", "R430 [Radeon X800]" }, - { "1002", "5550", "R423 GL [FireGL V7100]" }, - { "1002", "5551", "R423 GL [FireGL V5100]" }, - { "1002", "5569", "R423 [Radeon X800 PRO] (Secondary)" }, - { "1002", "556b", "R423 [Radeon X800 GT] (Secondary)" }, - { "1002", "556d", "R480 [Radeon X800 GTO2/XL] (Secondary)" }, - { "1002", "556f", "R430 [Radeon X800] (Secondary)" }, - { "1002", "5571", "R423 GL [FireGL V5100] (Secondary)" }, - { "1002", "564b", "RV410/M26 GL [Mobility FireGL V5000]" }, - { "1002", "564f", "RV410/M26 [Mobility Radeon X700 XL]" }, - { "1002", "5652", "RV410/M26 [Mobility Radeon X700]" }, - { "1002", "5653", "RV410/M26 [Mobility Radeon X700]" }, - { "1002", "5654", "Mach64 VT [Video Xpression]" }, - { "1002", "5655", "264VT3 [Mach64 VT3]" }, - { "1002", "5656", "Mach64 VT4 [Video Xpression+]" }, - { "1002", "5657", "RV410 [Radeon X550 XTX / X700]" }, - { "1002", "5830", "RS300 Host Bridge" }, - { "1002", "5831", "RS300 Host Bridge" }, - { "1002", "5832", "RS300 Host Bridge" }, - { "1002", "5833", "RS300 Host Bridge" }, - { "1002", "5834", "RS300 [Radeon 9100 IGP]" }, - { "1002", "5835", "RS300M [Mobility Radeon 9100 IGP]" }, - { "1002", "5838", "RS300 AGP Bridge" }, - { "1002", "5854", "RS480 [Radeon Xpress 200 Series] (Secondary)" }, - { "1002", "5874", "RS480 [Radeon Xpress 1150] (Secondary)" }, - { "1002", "5940", "RV280 [Radeon 9200 PRO] (Secondary)" }, - { "1002", "5941", "RV280 [Radeon 9200] (Secondary)" }, - { "1002", "5944", "RV280 [Radeon 9200 SE PCI]" }, - { "1002", "5950", "RS480/RS482/RS485 Host Bridge" }, - { "1002", "5951", "RX480/RX482 Host Bridge" }, - { "1002", "5952", "RD580 Host Bridge" }, - { "1002", "5954", "RS480 [Radeon Xpress 200 Series]" }, - { "1002", "5955", "RS480M [Mobility Radeon Xpress 200]" }, - { "1002", "5956", "RD790 Host Bridge" }, - { "1002", "5957", "RX780/RX790 Host Bridge" }, - { "1002", "5958", "RD780 Host Bridge" }, - { "1002", "5960", "RV280 [Radeon 9200 PRO / 9250]" }, - { "1002", "5961", "RV280 [Radeon 9200]" }, - { "1002", "5962", "RV280 [Radeon 9200]" }, - { "1002", "5964", "RV280 [Radeon 9200 SE]" }, - { "1002", "5965", "RV280 GL [FireMV 2200 PCI]" }, - { "1002", "5974", "RS482/RS485 [Radeon Xpress 1100/1150]" }, - { "1002", "5975", "RS482M [Mobility Radeon Xpress 200]" }, - { "1002", "5978", "RX780/RD790 PCI to PCI bridge (external gfx0 port A)" }, - { "1002", "5979", "RD790 PCI to PCI bridge (external gfx0 port B)" }, - { "1002", "597a", "RD790 PCI to PCI bridge (PCI express gpp port A)" }, - { "1002", "597b", "RX780/RD790 PCI to PCI bridge (PCI express gpp port B)" }, - { "1002", "597c", "RD790 PCI to PCI bridge (PCI express gpp port C)" }, - { "1002", "597d", "RX780/RD790 PCI to PCI bridge (PCI express gpp port D)" }, - { "1002", "597e", "RD790 PCI to PCI bridge (PCI express gpp port E)" }, - { "1002", "597f", "RD790 PCI to PCI bridge (PCI express gpp port F)" }, - { "1002", "5980", "RD790 PCI to PCI bridge (external gfx1 port A)" }, - { "1002", "5981", "RD790 PCI to PCI bridge (external gfx1 port B)" }, - { "1002", "5982", "RD790 PCI to PCI bridge (NB-SB link)" }, - { "1002", "5a10", "RD890 Northbridge only dual slot (2x16) PCI-e GFX Hydra part" }, - { "1002", "5a11", "RD890 Northbridge only single slot PCI-e GFX Hydra part" }, - { "1002", "5a12", "RD890 Northbridge only dual slot (2x8) PCI-e GFX Hydra part" }, - { "1002", "5a13", "RD890S/SR5650 Host Bridge" }, - { "1002", "5a14", "RD9x0/RX980 Host Bridge" }, - { "1002", "5a15", "RD890 PCI to PCI bridge (PCI express gpp port A)" }, - { "1002", "5a16", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GFX port 0)" }, - { "1002", "5a17", "RD890/RD9x0 PCI to PCI bridge (PCI Express GFX port 1)" }, - { "1002", "5a18", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 0)" }, - { "1002", "5a19", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 1)" }, - { "1002", "5a1a", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 2)" }, - { "1002", "5a1b", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 3)" }, - { "1002", "5a1c", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 4)" }, - { "1002", "5a1d", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 5)" }, - { "1002", "5a1e", "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP2 Port 0)" }, - { "1002", "5a1f", "RD890/RD990 PCI to PCI bridge (PCI Express GFX2 port 0)" }, - { "1002", "5a20", "RD890/RD990 PCI to PCI bridge (PCI Express GFX2 port 1)" }, - { "1002", "5a23", "RD890S/RD990 I/O Memory Management Unit (IOMMU)" }, - { "1002", "5a31", "RC410 Host Bridge" }, - { "1002", "5a33", "RS400 Host Bridge" }, - { "1002", "5a34", "RS4xx PCI Express Port [ext gfx]" }, - { "1002", "5a36", "RC4xx/RS4xx PCI Express Port 1" }, - { "1002", "5a37", "RC4xx/RS4xx PCI Express Port 2" }, - { "1002", "5a38", "RC4xx/RS4xx PCI Express Port 3" }, - { "1002", "5a39", "RC4xx/RS4xx PCI Express Port 4" }, - { "1002", "5a3f", "RC4xx/RS4xx PCI Bridge [int gfx]" }, - { "1002", "5a41", "RS400 [Radeon Xpress 200]" }, - { "1002", "5a42", "RS400M [Radeon Xpress 200M]" }, - { "1002", "5a61", "RC410 [Radeon Xpress 200/1100]" }, - { "1002", "5a62", "RC410M [Mobility Radeon Xpress 200M]" }, - { "1002", "5b60", "RV370 [Radeon X300]" }, - { "1002", "5b62", "RV370 [Radeon X600/X600 SE]" }, - { "1002", "5b63", "RV370 [Radeon X300/X550/X1050 Series]" }, - { "1002", "5b64", "RV370 GL [FireGL V3100]" }, - { "1002", "5b65", "RV370 GL [FireMV 2200]" }, - { "1002", "5b66", "RV370X" }, - { "1002", "5b70", "RV370 [Radeon X300 SE]" }, - { "1002", "5b72", "RV380 [Radeon X300/X550/X1050 Series] (Secondary)" }, - { "1002", "5b73", "RV370 [Radeon X300/X550/X1050 Series] (Secondary)" }, - { "1002", "5b74", "RV370 GL [FireGL V3100] (Secondary)" }, - { "1002", "5b75", "RV370 GL [FireMV 2200] (Secondary)" }, - { "1002", "5c61", "RV280/M9+ [Mobility Radeon 9200 AGP]" }, - { "1002", "5c63", "RV280/M9+ [Mobility Radeon 9200 AGP]" }, - { "1002", "5d44", "RV280 [Radeon 9200 SE] (Secondary)" }, - { "1002", "5d45", "RV280 GL [FireMV 2200 PCI] (Secondary)" }, - { "1002", "5d48", "R423/M28 [Mobility Radeon X800 XT]" }, - { "1002", "5d49", "R423/M28 GL [Mobility FireGL V5100]" }, - { "1002", "5d4a", "R423/M28 [Mobility Radeon X800]" }, - { "1002", "5d4d", "R480 [Radeon X850 XT Platinum Edition]" }, - { "1002", "5d4e", "R480 [Radeon X850 SE]" }, - { "1002", "5d4f", "R480 [Radeon X800 GTO]" }, - { "1002", "5d50", "R480 GL [FireGL V7200]" }, - { "1002", "5d52", "R480 [Radeon X850 XT]" }, - { "1002", "5d57", "R423 [Radeon X800 XT]" }, - { "1002", "5d6d", "R480 [Radeon X850 XT Platinum Edition] (Secondary)" }, - { "1002", "5d6f", "R480 [Radeon X800 GTO] (Secondary)" }, - { "1002", "5d72", "R480 [Radeon X850 XT] (Secondary)" }, - { "1002", "5d77", "R423 [Radeon X800 XT] (Secondary)" }, - { "1002", "5e48", "RV410 GL [FireGL V5000]" }, - { "1002", "5e49", "RV410 [Radeon X700 Series]" }, - { "1002", "5e4a", "RV410 [Radeon X700 XT]" }, - { "1002", "5e4b", "RV410 [Radeon X700 PRO]" }, - { "1002", "5e4c", "RV410 [Radeon X700 SE]" }, - { "1002", "5e4d", "RV410 [Radeon X700]" }, - { "1002", "5e4f", "RV410 [Radeon X700]" }, - { "1002", "5e6b", "RV410 [Radeon X700 PRO] (Secondary)" }, - { "1002", "5e6d", "RV410 [Radeon X700] (Secondary)" }, - { "1002", "5f57", "R423 [Radeon X800 XT]" }, - { "1002", "6600", "Mars [Radeon HD 8670A/8670M/8750M / R7 M370]" }, - { "1002", "6601", "Mars [Radeon HD 8730M]" }, - { "1002", "6604", "Opal XT [Radeon R7 M265/M365X/M465]" }, - { "1002", "6605", "Opal PRO [Radeon R7 M260X]" }, - { "1002", "6606", "Mars XTX [Radeon HD 8790M]" }, - { "1002", "6607", "Mars LE [Radeon HD 8530M / R5 M240]" }, - { "1002", "6608", "Oland GL [FirePro W2100]" }, - { "1002", "6609", "Oland GL [FirePro W2100 / Barco MXRT 2600]" }, - { "1002", "6610", "Oland XT [Radeon HD 8670 / R5 340X OEM / R7 250/350/350X OEM]" }, - { "1002", "6611", "Oland [Radeon HD 8570 / R5 430 OEM / R7 240/340 / Radeon 520 OEM]" }, - { "1002", "6613", "Oland PRO [Radeon R7 240/340 / Radeon 520]" }, - { "1002", "6631", "Oland" }, - { "1002", "6640", "Saturn XT [FirePro M6100]" }, - { "1002", "6641", "Saturn PRO [Radeon HD 8930M]" }, - { "1002", "6646", "Bonaire XT [Radeon R9 M280X]" }, - { "1002", "6647", "Saturn PRO/XT [Radeon R9 M270X/M280X]" }, - { "1002", "6649", "Bonaire [FirePro W5100]" }, - { "1002", "664d", "Bonaire [FirePro W5100 / Barco MXRT-5600]" }, - { "1002", "6650", "Bonaire" }, - { "1002", "6651", "Bonaire" }, - { "1002", "6658", "Bonaire XTX [Radeon R7 260X/360]" }, - { "1002", "665c", "Bonaire XT [Radeon HD 7790/8770 / R7 360 / R9 260/360 OEM]" }, - { "1002", "665d", "Bonaire [Radeon R7 200 Series]" }, - { "1002", "665f", "Tobago PRO [Radeon R7 360 / R9 360 OEM]" }, - { "1002", "6660", "Sun XT [Radeon HD 8670A/8670M/8690M / R5 M330 / M430 / Radeon 520 Mobile]" }, - { "1002", "6663", "Sun PRO [Radeon HD 8570A/8570M]" }, - { "1002", "6664", "Jet XT [Radeon R5 M240]" }, - { "1002", "6665", "Jet PRO [Radeon R5 M230 / R7 M260DX / Radeon 520 Mobile]" }, - { "1002", "6667", "Jet ULT [Radeon R5 M230]" }, - { "1002", "666f", "Sun LE [Radeon HD 8550M / R5 M230]" }, - { "1002", "66a0", "Vega 20 [Radeon Instinct]" }, - { "1002", "66a1", "Vega 20 [Radeon Pro VII/Radeon Instinct MI50 32GB]" }, - { "1002", "66a2", "Vega 20" }, - { "1002", "66a3", "Vega 20 [Radeon Pro Vega II/Radeon Pro Vega II Duo]" }, - { "1002", "66a7", "Vega 20 [Radeon Pro Vega 20]" }, - { "1002", "66af", "Vega 20 [Radeon VII]" }, - { "1002", "6704", "Cayman PRO GL [FirePro V7900]" }, - { "1002", "6707", "Cayman LE GL [FirePro V5900]" }, - { "1002", "6718", "Cayman XT [Radeon HD 6970]" }, - { "1002", "6719", "Cayman PRO [Radeon HD 6950]" }, - { "1002", "671c", "Antilles [Radeon HD 6990]" }, - { "1002", "671d", "Antilles [Radeon HD 6990]" }, - { "1002", "671f", "Cayman CE [Radeon HD 6930]" }, - { "1002", "6720", "Blackcomb [Radeon HD 6970M/6990M]" }, - { "1002", "6738", "Barts XT [Radeon HD 6870]" }, - { "1002", "6739", "Barts PRO [Radeon HD 6850]" }, - { "1002", "673e", "Barts LE [Radeon HD 6790]" }, - { "1002", "6740", "Whistler [Radeon HD 6730M/6770M/7690M XT]" }, - { "1002", "6741", "Whistler [Radeon HD 6630M/6650M/6750M/7670M/7690M]" }, - { "1002", "6742", "Whistler LE [Radeon HD 6610M/7610M]" }, - { "1002", "6743", "Whistler [Radeon E6760]" }, - { "1002", "6749", "Turks GL [FirePro V4900]" }, - { "1002", "674a", "Turks GL [FirePro V3900]" }, - { "1002", "6750", "Onega [Radeon HD 6650A/7650A]" }, - { "1002", "6751", "Turks [Radeon HD 7650A/7670A]" }, - { "1002", "6758", "Turks XT [Radeon HD 6670/7670]" }, - { "1002", "6759", "Turks PRO [Radeon HD 6570/7570/8550 / R5 230]" }, - { "1002", "675b", "Turks [Radeon HD 7600 Series]" }, - { "1002", "675d", "Turks PRO [Radeon HD 7570]" }, - { "1002", "675f", "Turks LE [Radeon HD 5570/6510/7510/8510]" }, - { "1002", "6760", "Seymour [Radeon HD 6400M/7400M Series]" }, - { "1002", "6761", "Seymour LP [Radeon HD 6430M]" }, - { "1002", "6763", "Seymour [Radeon E6460]" }, - { "1002", "6764", "Seymour [Radeon HD 6400M Series]" }, - { "1002", "6765", "Seymour [Radeon HD 6400M Series]" }, - { "1002", "6766", "Caicos" }, - { "1002", "6767", "Caicos" }, - { "1002", "6768", "Caicos" }, - { "1002", "6770", "Caicos [Radeon HD 6450A/7450A]" }, - { "1002", "6771", "Caicos XTX [Radeon HD 8490 / R5 235X OEM]" }, - { "1002", "6772", "Caicos [Radeon HD 7450A]" }, - { "1002", "6778", "Caicos XT [Radeon HD 7470/8470 / R5 235/310 OEM]" }, - { "1002", "6779", "Caicos [Radeon HD 6450/7450/8450 / R5 230 OEM]" }, - { "1002", "677b", "Caicos PRO [Radeon HD 7450]" }, - { "1002", "6780", "Tahiti XT GL [FirePro W9000]" }, - { "1002", "6784", "Tahiti [FirePro Series Graphics Adapter]" }, - { "1002", "6788", "Tahiti [FirePro Series Graphics Adapter]" }, - { "1002", "678a", "Tahiti PRO GL [FirePro Series]" }, - { "1002", "6798", "Tahiti XT [Radeon HD 7970/8970 OEM / R9 280X]" }, - { "1002", "679a", "Tahiti PRO [Radeon HD 7950/8950 OEM / R9 280]" }, - { "1002", "679b", "Malta [Radeon HD 7990/8990 OEM]" }, - { "1002", "679e", "Tahiti LE [Radeon HD 7870 XT]" }, - { "1002", "679f", "Tahiti" }, - { "1002", "67a0", "Hawaii XT GL [FirePro W9100]" }, - { "1002", "67a1", "Hawaii PRO GL [FirePro W8100]" }, - { "1002", "67a2", "Hawaii GL" }, - { "1002", "67a8", "Hawaii" }, - { "1002", "67a9", "Hawaii" }, - { "1002", "67aa", "Hawaii" }, - { "1002", "67b0", "Hawaii XT / Grenada XT [Radeon R9 290X/390X]" }, - { "1002", "67b1", "Hawaii PRO [Radeon R9 290/390]" }, - { "1002", "67b8", "Hawaii XT [Radeon R9 290X Engineering Sample]" }, - { "1002", "67b9", "Vesuvius [Radeon R9 295X2]" }, - { "1002", "67be", "Hawaii LE" }, - { "1002", "67c0", "Ellesmere [Radeon Pro WX 7100 Mobile]" }, - { "1002", "67c2", "Ellesmere [Radeon Pro V7300X / V7350x2]" }, - { "1002", "67c4", "Ellesmere [Radeon Pro WX 7100]" }, - { "1002", "67c7", "Ellesmere [Radeon Pro WX 5100]" }, - { "1002", "67ca", "Ellesmere [Polaris10]" }, - { "1002", "67cc", "Ellesmere [Polaris10]" }, - { "1002", "67cf", "Ellesmere [Polaris10]" }, - { "1002", "67d0", "Ellesmere [Radeon Pro V7300X / V7350x2]" }, - { "1002", "67d4", "Ellesmere [Radeon Pro WX 7100 / Barco MXRT-8700]" }, - { "1002", "67d7", "Ellesmere [Radeon Pro WX 5100 / Barco MXRT-6700]" }, - { "1002", "67df", "Ellesmere [Radeon RX 470/480/570/570X/580/580X/590]" }, - { "1002", "67e0", "Baffin [Radeon Pro WX 4170]" }, - { "1002", "67e1", "Baffin [Polaris11]" }, - { "1002", "67e3", "Baffin [Radeon Pro WX 4100]" }, - { "1002", "67e8", "Baffin [Radeon Pro WX 4130/4150]" }, - { "1002", "67e9", "Baffin [Polaris11]" }, - { "1002", "67eb", "Baffin [Radeon Pro V5300X]" }, - { "1002", "67ef", "Baffin [Radeon RX 460/560D / Pro 450/455/460/555/555X/560/560X]" }, - { "1002", "67ff", "Baffin [Radeon RX 550 640SP / RX 560/560X]" }, - { "1002", "6800", "Wimbledon XT [Radeon HD 7970M]" }, - { "1002", "6801", "Neptune XT [Radeon HD 8970M]" }, - { "1002", "6802", "Wimbledon" }, - { "1002", "6806", "Neptune" }, - { "1002", "6808", "Pitcairn XT GL [FirePro W7000]" }, - { "1002", "6809", "Pitcairn LE GL [FirePro W5000]" }, - { "1002", "6810", "Curacao XT / Trinidad XT [Radeon R7 370 / R9 270X/370X]" }, - { "1002", "6811", "Curacao PRO [Radeon R7 370 / R9 270/370 OEM]" }, - { "1002", "6816", "Pitcairn" }, - { "1002", "6817", "Pitcairn" }, - { "1002", "6818", "Pitcairn XT [Radeon HD 7870 GHz Edition]" }, - { "1002", "6819", "Pitcairn PRO [Radeon HD 7850 / R7 265 / R9 270 1024SP]" }, - { "1002", "6820", "Venus XTX [Radeon HD 8890M / R9 M275X/M375X]" }, - { "1002", "6821", "Venus XT [Radeon HD 8870M / R9 M270X/M370X]" }, - { "1002", "6822", "Venus PRO [Radeon E8860]" }, - { "1002", "6823", "Venus PRO [Radeon HD 8850M / R9 M265X]" }, - { "1002", "6825", "Heathrow XT [Radeon HD 7870M]" }, - { "1002", "6826", "Chelsea LP [Radeon HD 7700M Series]" }, - { "1002", "6827", "Heathrow PRO [Radeon HD 7850M/8850M]" }, - { "1002", "6828", "Cape Verde PRO [FirePro W600]" }, - { "1002", "6829", "Cape Verde" }, - { "1002", "682a", "Venus PRO" }, - { "1002", "682b", "Cape Verde PRO / Venus LE / Tropo PRO-L [Radeon HD 8830M / R7 250 / R7 M465X]" }, - { "1002", "682c", "Cape Verde GL [FirePro W4100]" }, - { "1002", "682d", "Chelsea XT GL [FirePro M4000]" }, - { "1002", "682f", "Chelsea LP [Radeon HD 7730M]" }, - { "1002", "6835", "Cape Verde PRX [Radeon R9 255 OEM]" }, - { "1002", "6837", "Cape Verde LE [Radeon HD 7730/8730]" }, - { "1002", "683d", "Cape Verde XT [Radeon HD 7770/8760 / R7 250X]" }, - { "1002", "683f", "Cape Verde PRO [Radeon HD 7750/8740 / R7 250E]" }, - { "1002", "6840", "Thames [Radeon HD 7500M/7600M Series]" }, - { "1002", "6841", "Thames [Radeon HD 7550M/7570M/7650M]" }, - { "1002", "6842", "Thames LE [Radeon HD 7000M Series]" }, - { "1002", "6843", "Thames [Radeon HD 7670M]" }, - { "1002", "6860", "Vega 10 [Radeon Instinct MI25]" }, - { "1002", "6861", "Vega 10 XT [Radeon PRO WX 9100]" }, - { "1002", "6862", "Vega 10 XT [Radeon PRO SSG]" }, - { "1002", "6863", "Vega 10 XTX [Radeon Vega Frontier Edition]" }, - { "1002", "6864", "Vega 10 [Radeon Pro V340]" }, - { "1002", "6867", "Vega 10 XL [Radeon Pro Vega 56]" }, - { "1002", "6868", "Vega 10 [Radeon PRO WX 8100/8200]" }, - { "1002", "6869", "Vega 10 XGA [Radeon Pro Vega 48]" }, - { "1002", "686a", "Vega 10 LEA" }, - { "1002", "686b", "Vega 10 XTXA [Radeon Pro Vega 64X]" }, - { "1002", "686c", "Vega 10 [Radeon Instinct MI25 MxGPU]" }, - { "1002", "686d", "Vega 10 GLXTA" }, - { "1002", "686e", "Vega 10 GLXLA" }, - { "1002", "687f", "Vega 10 XL/XT [Radeon RX Vega 56/64]" }, - { "1002", "6880", "Lexington [Radeon HD 6550M]" }, - { "1002", "6888", "Cypress XT [FirePro V8800]" }, - { "1002", "6889", "Cypress PRO [FirePro V7800]" }, - { "1002", "688a", "Cypress XT [FirePro V9800]" }, - { "1002", "688c", "Cypress XT GL [FireStream 9370]" }, - { "1002", "688d", "Cypress PRO GL [FireStream 9350]" }, - { "1002", "6898", "Cypress XT [Radeon HD 5870]" }, - { "1002", "6899", "Cypress PRO [Radeon HD 5850]" }, - { "1002", "689b", "Cypress PRO [Radeon HD 6800 Series]" }, - { "1002", "689c", "Hemlock [Radeon HD 5970]" }, - { "1002", "689d", "Hemlock [Radeon HD 5970]" }, - { "1002", "689e", "Cypress LE [Radeon HD 5830]" }, - { "1002", "68a0", "Broadway XT [Mobility Radeon HD 5870]" }, - { "1002", "68a1", "Broadway PRO [Mobility Radeon HD 5850]" }, - { "1002", "68a8", "Granville [Radeon HD 6850M/6870M]" }, - { "1002", "68a9", "Juniper XT [FirePro V5800]" }, - { "1002", "68b8", "Juniper XT [Radeon HD 5770]" }, - { "1002", "68b9", "Juniper LE [Radeon HD 5670 640SP Edition]" }, - { "1002", "68ba", "Juniper XT [Radeon HD 6770]" }, - { "1002", "68be", "Juniper PRO [Radeon HD 5750]" }, - { "1002", "68bf", "Juniper PRO [Radeon HD 6750]" }, - { "1002", "68c0", "Madison [Mobility Radeon HD 5730 / 6570M]" }, - { "1002", "68c1", "Madison [Mobility Radeon HD 5650/5750 / 6530M/6550M]" }, - { "1002", "68c7", "Pinewood [Mobility Radeon HD 5570/6550A]" }, - { "1002", "68c8", "Redwood XT GL [FirePro V4800]" }, - { "1002", "68c9", "Redwood PRO GL [FirePro V3800]" }, - { "1002", "68d8", "Redwood XT [Radeon HD 5670/5690/5730]" }, - { "1002", "68d9", "Redwood PRO [Radeon HD 5550/5570/5630/6510/6610/7570]" }, - { "1002", "68da", "Redwood LE [Radeon HD 5550/5570/5630/6390/6490/7570]" }, - { "1002", "68de", "Redwood" }, - { "1002", "68e0", "Park [Mobility Radeon HD 5430/5450/5470]" }, - { "1002", "68e1", "Park [Mobility Radeon HD 5430]" }, - { "1002", "68e4", "Robson CE [Radeon HD 6370M/7370M]" }, - { "1002", "68e5", "Robson LE [Radeon HD 6330M]" }, - { "1002", "68e8", "Cedar" }, - { "1002", "68e9", "Cedar [ATI FirePro (FireGL) Graphics Adapter]" }, - { "1002", "68f1", "Cedar GL [FirePro 2460]" }, - { "1002", "68f2", "Cedar GL [FirePro 2270]" }, - { "1002", "68f8", "Cedar [Radeon HD 7300 Series]" }, - { "1002", "68f9", "Cedar [Radeon HD 5000/6000/7350/8350 Series]" }, - { "1002", "68fa", "Cedar [Radeon HD 7350/8350 / R5 220]" }, - { "1002", "68fe", "Cedar LE" }, - { "1002", "6900", "Topaz XT [Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile]" }, - { "1002", "6901", "Topaz PRO [Radeon R5 M255]" }, - { "1002", "6907", "Meso XT [Radeon R5 M315]" }, - { "1002", "6920", "Amethyst [Radeon R9 M395/ M395X Mac Edition]" }, - { "1002", "6921", "Amethyst XT [Radeon R9 M295X / M390X]" }, - { "1002", "6929", "Tonga XT GL [FirePro S7150]" }, - { "1002", "692b", "Tonga PRO GL [FirePro W7100]" }, - { "1002", "692f", "Tonga XTV GL [FirePro S7150V]" }, - { "1002", "6938", "Tonga XT / Amethyst XT [Radeon R9 380X / R9 M295X]" }, - { "1002", "6939", "Tonga PRO [Radeon R9 285/380]" }, - { "1002", "693b", "Tonga PRO GL [FirePro W7100 / Barco MXRT-7600]" }, - { "1002", "694c", "Polaris 22 XT [Radeon RX Vega M GH]" }, - { "1002", "694e", "Polaris 22 XL [Radeon RX Vega M GL]" }, - { "1002", "694f", "Polaris 22 MGL XL [Radeon Pro WX Vega M GL]" }, - { "1002", "6980", "Polaris12" }, - { "1002", "6981", "Lexa XT [Radeon PRO WX 3200]" }, - { "1002", "6985", "Lexa XT [Radeon PRO WX 3100]" }, - { "1002", "6986", "Polaris12" }, - { "1002", "6987", "Lexa [Radeon 540X/550X/630 / RX 640 / E9171 MCM]" }, - { "1002", "698f", "Lexa XT [Radeon PRO WX 3100 / Barco MXRT 4700]" }, - { "1002", "6995", "Lexa XT [Radeon PRO WX 2100]" }, - { "1002", "699f", "Lexa PRO [Radeon 540/540X/550/550X / RX 540X/550/550X]" }, - { "1002", "69a0", "Vega 12" }, - { "1002", "69a1", "Vega 12" }, - { "1002", "69a2", "Vega 12" }, - { "1002", "69a3", "Vega 12" }, - { "1002", "69af", "Vega 12 [Radeon Pro Vega 20]" }, - { "1002", "6fdf", "Polaris 20 XL [Radeon RX 580 2048SP]" }, - { "1002", "700f", "RS100 AGP Bridge" }, - { "1002", "7010", "RS200/RS250 AGP Bridge" }, - { "1002", "7100", "R520 [Radeon X1800 XT]" }, - { "1002", "7101", "R520/M58 [Mobility Radeon X1800 XT]" }, - { "1002", "7102", "R520/M58 [Mobility Radeon X1800]" }, - { "1002", "7104", "R520 GL [FireGL V7200 / Barco MXTR-5100]" }, - { "1002", "7109", "R520 [Radeon X1800 XL]" }, - { "1002", "710a", "R520 [Radeon X1800 GTO]" }, - { "1002", "710b", "R520 [Radeon X1800 GTO]" }, - { "1002", "710e", "R520 GL [FireGL V7300]" }, - { "1002", "710f", "R520 GL [FireGL V7350]" }, - { "1002", "7120", "R520 [Radeon X1800] (Secondary)" }, - { "1002", "7124", "R520 GL [FireGL V7200] (Secondary)" }, - { "1002", "7129", "R520 [Radeon X1800] (Secondary)" }, - { "1002", "712e", "R520 GL [FireGL V7300] (Secondary)" }, - { "1002", "712f", "R520 GL [FireGL V7350] (Secondary)" }, - { "1002", "7140", "RV515 [Radeon X1300/X1550/X1600 Series]" }, - { "1002", "7142", "RV515 PRO [Radeon X1300/X1550 Series]" }, - { "1002", "7143", "RV505 [Radeon X1300/X1550 Series]" }, - { "1002", "7145", "RV515/M54 [Mobility Radeon X1400]" }, - { "1002", "7146", "RV515 [Radeon X1300/X1550]" }, - { "1002", "7147", "RV505 [Radeon X1550 64-bit]" }, - { "1002", "7149", "RV515/M52 [Mobility Radeon X1300]" }, - { "1002", "714a", "RV515/M52 [Mobility Radeon X1300]" }, - { "1002", "7152", "RV515 GL [FireGL V3300]" }, - { "1002", "7153", "RV515 GL [FireGL V3350]" }, - { "1002", "715f", "RV505 CE [Radeon X1550 64-bit]" }, - { "1002", "7162", "RV515 PRO [Radeon X1300/X1550 Series] (Secondary)" }, - { "1002", "7163", "RV505 [Radeon X1550 Series] (Secondary)" }, - { "1002", "7166", "RV515 [Radeon X1300/X1550 Series] (Secondary)" }, - { "1002", "7167", "RV515 [Radeon X1550 64-bit] (Secondary)" }, - { "1002", "7172", "RV515 GL [FireGL V3300] (Secondary)" }, - { "1002", "7173", "RV515 GL [FireGL V3350] (Secondary)" }, - { "1002", "7181", "RV516 [Radeon X1600/X1650 Series]" }, - { "1002", "7183", "RV516 [Radeon X1300/X1550 Series]" }, - { "1002", "7186", "RV516/M64 [Mobility Radeon X1450]" }, - { "1002", "7187", "RV516 [Radeon X1300/X1550 Series]" }, - { "1002", "7188", "RV516/M64-S [Mobility Radeon X2300]" }, - { "1002", "718a", "RV516/M64 [Mobility Radeon X2300]" }, - { "1002", "718b", "RV516/M62 [Mobility Radeon X1350]" }, - { "1002", "718c", "RV516/M62-CSP64 [Mobility Radeon X1350]" }, - { "1002", "718d", "RV516/M64-CSP128 [Mobility Radeon X1450]" }, - { "1002", "7193", "RV516 [Radeon X1550 Series]" }, - { "1002", "7196", "RV516/M62-S [Mobility Radeon X1350]" }, - { "1002", "719b", "RV516 GL [FireMV 2250]" }, - { "1002", "719f", "RV516 [Radeon X1550 Series]" }, - { "1002", "71a0", "RV516 [Radeon X1300/X1550 Series] (Secondary)" }, - { "1002", "71a1", "RV516 [Radeon X1600/X1650 Series] (Secondary)" }, - { "1002", "71a3", "RV516 [Radeon X1300/X1550 Series] (Secondary)" }, - { "1002", "71a7", "RV516 [Radeon X1300/X1550 Series] (Secondary)" }, - { "1002", "71bb", "RV516 GL [FireMV 2250] (Secondary)" }, - { "1002", "71c0", "RV530 [Radeon X1600 XT/X1650 GTO]" }, - { "1002", "71c1", "RV535 [Radeon X1650 PRO]" }, - { "1002", "71c2", "RV530 [Radeon X1600 PRO]" }, - { "1002", "71c3", "RV530 [Radeon X1600 PRO]" }, - { "1002", "71c4", "RV530/M56 GL [Mobility FireGL V5200]" }, - { "1002", "71c5", "RV530/M56-P [Mobility Radeon X1600]" }, - { "1002", "71c6", "RV530LE [Radeon X1600/X1650 PRO]" }, - { "1002", "71c7", "RV535 [Radeon X1650 PRO]" }, - { "1002", "71ce", "RV530 [Radeon X1300 XT/X1600 PRO]" }, - { "1002", "71d2", "RV530 GL [FireGL V3400]" }, - { "1002", "71d4", "RV530/M66 GL [Mobility FireGL V5250]" }, - { "1002", "71d5", "RV530/M66-P [Mobility Radeon X1700]" }, - { "1002", "71d6", "RV530/M66-XT [Mobility Radeon X1700]" }, - { "1002", "71de", "RV530/M66 [Mobility Radeon X1700/X2500]" }, - { "1002", "71e0", "RV530 [Radeon X1600] (Secondary)" }, - { "1002", "71e1", "RV535 [Radeon X1650 PRO] (Secondary)" }, - { "1002", "71e2", "RV530 [Radeon X1600] (Secondary)" }, - { "1002", "71e6", "RV530 [Radeon X1650] (Secondary)" }, - { "1002", "71e7", "RV535 [Radeon X1650 PRO] (Secondary)" }, - { "1002", "71f2", "RV530 GL [FireGL V3400] (Secondary)" }, - { "1002", "7210", "RV550/M71 [Mobility Radeon HD 2300]" }, - { "1002", "7211", "RV550/M71 [Mobility Radeon X2300 HD]" }, - { "1002", "7240", "R580+ [Radeon X1950 XTX]" }, - { "1002", "7244", "R580+ [Radeon X1950 XT]" }, - { "1002", "7248", "R580 [Radeon X1950]" }, - { "1002", "7249", "R580 [Radeon X1900 XT]" }, - { "1002", "724b", "R580 [Radeon X1900 GT]" }, - { "1002", "724e", "R580 GL [FireGL V7350]" }, - { "1002", "7269", "R580 [Radeon X1900 XT] (Secondary)" }, - { "1002", "726b", "R580 [Radeon X1900 GT] (Secondary)" }, - { "1002", "726e", "R580 [AMD Stream Processor] (Secondary)" }, - { "1002", "7280", "RV570 [Radeon X1950 PRO]" }, - { "1002", "7288", "RV570 [Radeon X1950 GT]" }, - { "1002", "7291", "RV560 [Radeon X1650 XT]" }, - { "1002", "7293", "RV560 [Radeon X1650 GT]" }, - { "1002", "72a0", "RV570 [Radeon X1950 PRO] (Secondary)" }, - { "1002", "72a8", "RV570 [Radeon X1950 GT] (Secondary)" }, - { "1002", "72b1", "RV560 [Radeon X1650 XT] (Secondary)" }, - { "1002", "72b3", "RV560 [Radeon X1650 GT] (Secondary)" }, - { "1002", "7300", "Fiji [Radeon R9 FURY / NANO Series]" }, - { "1002", "7310", "Navi 10 [Radeon Pro W5700X]" }, - { "1002", "7312", "Navi 10 [Radeon Pro W5700]" }, - { "1002", "7314", "Navi 10 USB" }, - { "1002", "731f", "Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT]" }, - { "1002", "7340", "Navi 14 [Radeon RX 5500/5500M / Pro 5500M]" }, - { "1002", "7341", "Navi 14 [Radeon Pro W5500]" }, - { "1002", "7347", "Navi 14 [Radeon Pro W5500M]" }, - { "1002", "734f", "Navi 14 [Radeon Pro W5300M]" }, - { "1002", "7360", "Navi 12 [Radeon Pro 5600M / V520]" }, - { "1002", "7362", "Navi 12 [Radeon Pro V520]" }, - { "1002", "7388", "Arcturus GL-XL" }, - { "1002", "738c", "Arcturus GL-XL [Instinct MI100]" }, - { "1002", "738e", "Arcturus GL-XL [Instinct MI100]" }, - { "1002", "73a2", "Navi 21 Pro-XTA [Radeon Pro W6900X]" }, - { "1002", "73a3", "Navi 21 GL-XL [Radeon PRO W6800]" }, - { "1002", "73a4", "Navi 21 USB" }, - { "1002", "73a5", "Navi 21 [Radeon RX 6950 XT]" }, - { "1002", "73ab", "Navi 21 Pro-XLA [Radeon Pro W6800X/Radeon Pro W6800X Duo]" }, - { "1002", "73af", "Navi 21 [Radeon RX 6900 XT]" }, - { "1002", "73bf", "Navi 21 [Radeon RX 6800/6800 XT / 6900 XT]" }, - { "1002", "73c3", "Navi 22" }, - { "1002", "73c4", "Navi 22 USB" }, - { "1002", "73df", "Navi 22 [Radeon RX 6700/6700 XT/6750 XT / 6800M]" }, - { "1002", "73e0", "Navi 23" }, - { "1002", "73e1", "Navi 23 WKS-XM [Radeon PRO W6600M]" }, - { "1002", "73e3", "Navi 23 WKS-XL [Radeon PRO W6600]" }, - { "1002", "73e4", "Navi 23 USB" }, - { "1002", "73ef", "Navi 23 [Radeon RX 6650 XT]" }, - { "1002", "73ff", "Navi 23 [Radeon RX 6600/6600 XT/6600M]" }, - { "1002", "7408", "Aldebaran" }, - { "1002", "740c", "Aldebaran" }, - { "1002", "740f", "Aldebaran" }, - { "1002", "743f", "Navi 24 [Radeon RX 6400 / 6500 XT]" }, - { "1002", "7833", "RS350 Host Bridge" }, - { "1002", "7834", "RS350 [Radeon 9100 PRO/XT IGP]" }, - { "1002", "7835", "RS350M [Mobility Radeon 9000 IGP]" }, - { "1002", "7838", "RS350 AGP Bridge" }, - { "1002", "7910", "RS690 Host Bridge" }, - { "1002", "7911", "RS690/RS740 Host Bridge" }, - { "1002", "7912", "RS690/RS740 PCI to PCI Bridge (Internal gfx)" }, - { "1002", "7913", "RS690 PCI to PCI Bridge (PCI Express Graphics Port 0)" }, - { "1002", "7915", "RS690 PCI to PCI Bridge (PCI Express Port 1)" }, - { "1002", "7916", "RS690 PCI to PCI Bridge (PCI Express Port 2)" }, - { "1002", "7917", "RS690 PCI to PCI Bridge (PCI Express Port 3)" }, - { "1002", "7919", "RS690 HDMI Audio [Radeon Xpress 1200 Series]" }, - { "1002", "791e", "RS690 [Radeon X1200]" }, - { "1002", "791f", "RS690M [Radeon Xpress 1200/1250/1270]" }, - { "1002", "7930", "RS600 Host Bridge" }, - { "1002", "7932", "RS600 PCI to PCI Bridge (Internal gfx)" }, - { "1002", "7933", "RS600 PCI to PCI Bridge (PCI Express Graphics Port 0)" }, - { "1002", "7935", "RS600 PCI to PCI Bridge (PCI Express Port 1)" }, - { "1002", "7936", "RS600 PCI to PCI Bridge (PCI Express Port 2)" }, - { "1002", "7937", "RS690 PCI to PCI Bridge (PCI Express Port 3)" }, - { "1002", "793b", "RS600 HDMI Audio [Radeon Xpress 1250]" }, - { "1002", "793f", "RS690M [Radeon Xpress 1200/1250/1270] (Secondary)" }, - { "1002", "7941", "RS600 [Radeon Xpress 1250]" }, - { "1002", "7942", "RS600M [Radeon Xpress 1250]" }, - { "1002", "796e", "RS740 [Radeon 2100]" }, - { "1002", "9400", "R600 [Radeon HD 2900 PRO/XT]" }, - { "1002", "9401", "R600 [Radeon HD 2900 XT]" }, - { "1002", "9403", "R600 [Radeon HD 2900 PRO]" }, - { "1002", "9405", "R600 [Radeon HD 2900 GT]" }, - { "1002", "940a", "R600 GL [FireGL V8650]" }, - { "1002", "940b", "R600 GL [FireGL V8600]" }, - { "1002", "940f", "R600 GL [FireGL V7600]" }, - { "1002", "9440", "RV770 [Radeon HD 4870]" }, - { "1002", "9441", "R700 [Radeon HD 4870 X2]" }, - { "1002", "9442", "RV770 [Radeon HD 4850]" }, - { "1002", "9443", "R700 [Radeon HD 4850 X2]" }, - { "1002", "9444", "RV770 GL [FirePro V8750]" }, - { "1002", "9446", "RV770 GL [FirePro V7760]" }, - { "1002", "944a", "RV770/M98L [Mobility Radeon HD 4850]" }, - { "1002", "944b", "RV770/M98 [Mobility Radeon HD 4850 X2]" }, - { "1002", "944c", "RV770 LE [Radeon HD 4830]" }, - { "1002", "944e", "RV770 CE [Radeon HD 4710]" }, - { "1002", "9450", "RV770 GL [FireStream 9270]" }, - { "1002", "9452", "RV770 GL [FireStream 9250]" }, - { "1002", "9456", "RV770 GL [FirePro V8700]" }, - { "1002", "945a", "RV770/M98-XT [Mobility Radeon HD 4870]" }, - { "1002", "9460", "RV790 [Radeon HD 4890]" }, - { "1002", "9462", "RV790 [Radeon HD 4860]" }, - { "1002", "946a", "RV770 GL [FirePro M7750]" }, - { "1002", "9480", "RV730/M96 [Mobility Radeon HD 4650/5165]" }, - { "1002", "9488", "RV730/M96-XT [Mobility Radeon HD 4670]" }, - { "1002", "9489", "RV730/M96 GL [Mobility FireGL V5725]" }, - { "1002", "9490", "RV730 XT [Radeon HD 4670]" }, - { "1002", "9491", "RV730/M96-CSP [Radeon E4690]" }, - { "1002", "9495", "RV730 [Radeon HD 4600 AGP Series]" }, - { "1002", "9498", "RV730 PRO [Radeon HD 4650]" }, - { "1002", "949c", "RV730 GL [FirePro V7750]" }, - { "1002", "949e", "RV730 GL [FirePro V5700]" }, - { "1002", "949f", "RV730 GL [FirePro V3750]" }, - { "1002", "94a0", "RV740/M97 [Mobility Radeon HD 4830]" }, - { "1002", "94a1", "RV740/M97-XT [Mobility Radeon HD 4860]" }, - { "1002", "94a3", "RV740/M97 GL [FirePro M7740]" }, - { "1002", "94b3", "RV740 PRO [Radeon HD 4770]" }, - { "1002", "94b4", "RV740 PRO [Radeon HD 4750]" }, - { "1002", "94c1", "RV610 [Radeon HD 2400 PRO/XT]" }, - { "1002", "94c3", "RV610 [Radeon HD 2400 PRO]" }, - { "1002", "94c4", "RV610 LE [Radeon HD 2400 PRO AGP]" }, - { "1002", "94c5", "RV610 [Radeon HD 2400 LE]" }, - { "1002", "94c7", "RV610 [Radeon HD 2350]" }, - { "1002", "94c8", "RV610/M74 [Mobility Radeon HD 2400 XT]" }, - { "1002", "94c9", "RV610/M72-S [Mobility Radeon HD 2400]" }, - { "1002", "94cb", "RV610 [Radeon E2400]" }, - { "1002", "94cc", "RV610 LE [Radeon HD 2400 PRO PCI]" }, - { "1002", "9500", "RV670 [Radeon HD 3850 X2]" }, - { "1002", "9501", "RV670 [Radeon HD 3870]" }, - { "1002", "9504", "RV670/M88 [Mobility Radeon HD 3850]" }, - { "1002", "9505", "RV670 [Radeon HD 3690/3850]" }, - { "1002", "9506", "RV670/M88 [Mobility Radeon HD 3850 X2]" }, - { "1002", "9507", "RV670 [Radeon HD 3830]" }, - { "1002", "9508", "RV670/M88-XT [Mobility Radeon HD 3870]" }, - { "1002", "9509", "RV670/M88 [Mobility Radeon HD 3870 X2]" }, - { "1002", "950f", "R680 [Radeon HD 3870 X2]" }, - { "1002", "9511", "RV670 GL [FireGL V7700]" }, - { "1002", "9513", "RV670 [Radeon HD 3850 X2]" }, - { "1002", "9515", "RV670 PRO [Radeon HD 3850 AGP]" }, - { "1002", "9519", "RV670 GL [FireStream 9170]" }, - { "1002", "9540", "RV710 [Radeon HD 4550]" }, - { "1002", "954f", "RV710 [Radeon HD 4350/4550]" }, - { "1002", "9552", "RV710/M92 [Mobility Radeon HD 4330/4350/4550]" }, - { "1002", "9553", "RV710/M92 [Mobility Radeon HD 4530/4570/545v]" }, - { "1002", "9555", "RV710/M92 [Mobility Radeon HD 4350/4550]" }, - { "1002", "9557", "RV711/M93 GL [FirePro RG220]" }, - { "1002", "955f", "RV710/M92 [Mobility Radeon HD 4330]" }, - { "1002", "9580", "RV630 [Radeon HD 2600 PRO]" }, - { "1002", "9581", "RV630/M76 [Mobility Radeon HD 2600]" }, - { "1002", "9583", "RV630/M76 [Mobility Radeon HD 2600 XT/2700]" }, - { "1002", "9586", "RV630 XT [Radeon HD 2600 XT AGP]" }, - { "1002", "9587", "RV630 PRO [Radeon HD 2600 PRO AGP]" }, - { "1002", "9588", "RV630 XT [Radeon HD 2600 XT]" }, - { "1002", "9589", "RV630 PRO [Radeon HD 2600 PRO]" }, - { "1002", "958a", "RV630 [Radeon HD 2600 X2]" }, - { "1002", "958b", "RV630/M76 [Mobility Radeon HD 2600 XT]" }, - { "1002", "958c", "RV630 GL [FireGL V5600]" }, - { "1002", "958d", "RV630 GL [FireGL V3600]" }, - { "1002", "9591", "RV635/M86 [Mobility Radeon HD 3650]" }, - { "1002", "9593", "RV635/M86 [Mobility Radeon HD 3670]" }, - { "1002", "9595", "RV635/M86 GL [Mobility FireGL V5700]" }, - { "1002", "9596", "RV635 PRO [Radeon HD 3650 AGP]" }, - { "1002", "9597", "RV635 PRO [Radeon HD 3650 AGP]" }, - { "1002", "9598", "RV635 [Radeon HD 3650/3750/4570/4580]" }, - { "1002", "9599", "RV635 PRO [Radeon HD 3650 AGP]" }, - { "1002", "95c0", "RV620 PRO [Radeon HD 3470]" }, - { "1002", "95c2", "RV620/M82 [Mobility Radeon HD 3410/3430]" }, - { "1002", "95c4", "RV620/M82 [Mobility Radeon HD 3450/3470]" }, - { "1002", "95c5", "RV620 LE [Radeon HD 3450]" }, - { "1002", "95c6", "RV620 LE [Radeon HD 3450 AGP]" }, - { "1002", "95c9", "RV620 LE [Radeon HD 3450 PCI]" }, - { "1002", "95cc", "RV620 GL [FirePro V3700]" }, - { "1002", "95cd", "RV620 GL [FirePro 2450]" }, - { "1002", "95cf", "RV620 GL [FirePro 2260]" }, - { "1002", "960f", "RS780 HDMI Audio [Radeon 3000/3100 / HD 3200/3300]" }, - { "1002", "9610", "RS780 [Radeon HD 3200]" }, - { "1002", "9611", "RS780C [Radeon 3100]" }, - { "1002", "9612", "RS780M [Mobility Radeon HD 3200]" }, - { "1002", "9613", "RS780MC [Mobility Radeon HD 3100]" }, - { "1002", "9614", "RS780D [Radeon HD 3300]" }, - { "1002", "9615", "RS780E [Radeon HD 3200]" }, - { "1002", "9616", "RS780L [Radeon 3000]" }, - { "1002", "9640", "Sumo [Radeon HD 6550D]" }, - { "1002", "9641", "Sumo [Radeon HD 6620G]" }, - { "1002", "9642", "SuperSumo [Radeon HD 6370D]" }, - { "1002", "9643", "SuperSumo [Radeon HD 6380G]" }, - { "1002", "9644", "SuperSumo [Radeon HD 6410D]" }, - { "1002", "9645", "SuperSumo [Radeon HD 6410D]" }, - { "1002", "9647", "Sumo [Radeon HD 6520G]" }, - { "1002", "9648", "Sumo [Radeon HD 6480G]" }, - { "1002", "9649", "SuperSumo [Radeon HD 6480G]" }, - { "1002", "964a", "Sumo [Radeon HD 6530D]" }, - { "1002", "964b", "Sumo" }, - { "1002", "964c", "Sumo" }, - { "1002", "964e", "Sumo" }, - { "1002", "964f", "Sumo" }, - { "1002", "970f", "RS880 HDMI Audio [Radeon HD 4200 Series]" }, - { "1002", "9710", "RS880 [Radeon HD 4200]" }, - { "1002", "9712", "RS880M [Mobility Radeon HD 4225/4250]" }, - { "1002", "9713", "RS880M [Mobility Radeon HD 4100]" }, - { "1002", "9714", "RS880 [Radeon HD 4290]" }, - { "1002", "9715", "RS880 [Radeon HD 4250]" }, - { "1002", "9802", "Wrestler [Radeon HD 6310]" }, - { "1002", "9803", "Wrestler [Radeon HD 6310]" }, - { "1002", "9804", "Wrestler [Radeon HD 6250]" }, - { "1002", "9805", "Wrestler [Radeon HD 6250]" }, - { "1002", "9806", "Wrestler [Radeon HD 6320]" }, - { "1002", "9807", "Wrestler [Radeon HD 6290]" }, - { "1002", "9808", "Wrestler [Radeon HD 7340]" }, - { "1002", "9809", "Wrestler [Radeon HD 7310]" }, - { "1002", "980a", "Wrestler [Radeon HD 7290]" }, - { "1002", "9830", "Kabini [Radeon HD 8400 / R3 Series]" }, - { "1002", "9831", "Kabini [Radeon HD 8400E]" }, - { "1002", "9832", "Kabini [Radeon HD 8330]" }, - { "1002", "9833", "Kabini [Radeon HD 8330E]" }, - { "1002", "9834", "Kabini [Radeon HD 8210]" }, - { "1002", "9835", "Kabini [Radeon HD 8310E]" }, - { "1002", "9836", "Kabini [Radeon HD 8280 / R3 Series]" }, - { "1002", "9837", "Kabini [Radeon HD 8280E]" }, - { "1002", "9838", "Kabini [Radeon HD 8240 / R3 Series]" }, - { "1002", "9839", "Kabini [Radeon HD 8180]" }, - { "1002", "983d", "Temash [Radeon HD 8250/8280G]" }, - { "1002", "9840", "Kabini HDMI/DP Audio" }, - { "1002", "9850", "Mullins [Radeon R3 Graphics]" }, - { "1002", "9851", "Mullins [Radeon R4/R5 Graphics]" }, - { "1002", "9852", "Mullins [Radeon R2 Graphics]" }, - { "1002", "9853", "Mullins [Radeon R2 Graphics]" }, - { "1002", "9854", "Mullins [Radeon R3E Graphics]" }, - { "1002", "9855", "Mullins [Radeon R6 Graphics]" }, - { "1002", "9856", "Mullins [Radeon R1E/R2E Graphics]" }, - { "1002", "9857", "Mullins [Radeon APU XX-2200M with R2 Graphics]" }, - { "1002", "9858", "Mullins" }, - { "1002", "9859", "Mullins" }, - { "1002", "985a", "Mullins" }, - { "1002", "985b", "Mullins" }, - { "1002", "985c", "Mullins" }, - { "1002", "985d", "Mullins" }, - { "1002", "985e", "Mullins" }, - { "1002", "985f", "Mullins" }, - { "1002", "9874", "Wani [Radeon R5/R6/R7 Graphics]" }, - { "1002", "9890", "Amur" }, - { "1002", "98c0", "Nolan" }, - { "1002", "98e4", "Stoney [Radeon R2/R3/R4/R5 Graphics]" }, - { "1002", "9900", "Trinity [Radeon HD 7660G]" }, - { "1002", "9901", "Trinity [Radeon HD 7660D]" }, - { "1002", "9902", "Trinity HDMI Audio Controller" }, - { "1002", "9903", "Trinity [Radeon HD 7640G]" }, - { "1002", "9904", "Trinity [Radeon HD 7560D]" }, - { "1002", "9905", "Trinity GL [FirePro A300]" }, - { "1002", "9906", "Trinity GL [FirePro A320]" }, - { "1002", "9907", "Trinity [Radeon HD 7620G]" }, - { "1002", "9908", "Trinity [Radeon HD 7600G]" }, - { "1002", "9909", "Trinity [Radeon HD 7500G]" }, - { "1002", "990a", "Trinity [Radeon HD 7500G]" }, - { "1002", "990b", "Richland [Radeon HD 8650G]" }, - { "1002", "990c", "Richland [Radeon HD 8670D]" }, - { "1002", "990d", "Richland [Radeon HD 8550G]" }, - { "1002", "990e", "Richland [Radeon HD 8570D]" }, - { "1002", "990f", "Richland [Radeon HD 8610G]" }, - { "1002", "9910", "Trinity [Radeon HD 7660G]" }, - { "1002", "9913", "Trinity [Radeon HD 7640G]" }, - { "1002", "9917", "Trinity [Radeon HD 7620G]" }, - { "1002", "9918", "Trinity [Radeon HD 7600G]" }, - { "1002", "9919", "Trinity [Radeon HD 7500G]" }, - { "1002", "991e", "Bishop [Xbox One S APU]" }, - { "1002", "9920", "Liverpool [Playstation 4 APU]" }, - { "1002", "9921", "Liverpool HDMI/DP Audio Controller" }, - { "1002", "9922", "Starshp" }, - { "1002", "9923", "Starsha2 [Kingston/Clayton]" }, - { "1002", "9924", "Gladius" }, - { "1002", "9925", "Kingston/Clayton/Jupiter/Gladius/Montego HDMI Controller" }, - { "1002", "9926", "Jupiter" }, - { "1002", "9990", "Trinity 2 [Radeon HD 7520G]" }, - { "1002", "9991", "Trinity 2 [Radeon HD 7540D]" }, - { "1002", "9992", "Trinity 2 [Radeon HD 7420G]" }, - { "1002", "9993", "Trinity 2 [Radeon HD 7480D]" }, - { "1002", "9994", "Trinity 2 [Radeon HD 7400G]" }, - { "1002", "9995", "Richland [Radeon HD 8450G]" }, - { "1002", "9996", "Richland [Radeon HD 8470D]" }, - { "1002", "9997", "Richland [Radeon HD 8350G]" }, - { "1002", "9998", "Richland [Radeon HD 8370D]" }, - { "1002", "9999", "Richland [Radeon HD 8510G]" }, - { "1002", "999a", "Richland [Radeon HD 8410G]" }, - { "1002", "999b", "Richland [Radeon HD 8310G]" }, - { "1002", "999c", "Richland [Radeon HD 8650D]" }, - { "1002", "999d", "Richland [Radeon HD 8550D]" }, - { "1002", "99a0", "Trinity 2 [Radeon HD 7520G]" }, - { "1002", "99a2", "Trinity 2 [Radeon HD 7420G]" }, - { "1002", "99a4", "Trinity 2 [Radeon HD 7400G]" }, - { "1002", "aa00", "R600 HDMI Audio [Radeon HD 2900 GT/PRO/XT]" }, - { "1002", "aa01", "RV635 HDMI Audio [Radeon HD 3650/3730/3750]" }, - { "1002", "aa08", "RV630 HDMI Audio [Radeon HD 2600 PRO/XT / HD 3610]" }, - { "1002", "aa10", "RV610 HDMI Audio [Radeon HD 2350 PRO / 2400 PRO/XT / HD 3410]" }, - { "1002", "aa18", "RV670/680 HDMI Audio [Radeon HD 3690/3800 Series]" }, - { "1002", "aa20", "RV635 HDMI Audio [Radeon HD 3650/3730/3750]" }, - { "1002", "aa28", "RV620 HDMI Audio [Radeon HD 3450/3470/3550/3570]" }, - { "1002", "aa30", "RV770 HDMI Audio [Radeon HD 4850/4870]" }, - { "1002", "aa38", "RV710/730 HDMI Audio [Radeon HD 4000 series]" }, - { "1002", "aa50", "Cypress HDMI Audio [Radeon HD 5830/5850/5870 / 6850/6870 Rebrand]" }, - { "1002", "aa58", "Juniper HDMI Audio [Radeon HD 5700 Series]" }, - { "1002", "aa60", "Redwood HDMI Audio [Radeon HD 5000 Series]" }, - { "1002", "aa68", "Cedar HDMI Audio [Radeon HD 5400/6300/7300 Series]" }, - { "1002", "aa80", "Cayman/Antilles HDMI Audio [Radeon HD 6930/6950/6970/6990]" }, - { "1002", "aa88", "Barts HDMI Audio [Radeon HD 6790/6850/6870 / 7720 OEM]" }, - { "1002", "aa90", "Turks HDMI Audio [Radeon HD 6500/6600 / 6700M Series]" }, - { "1002", "aa98", "Caicos HDMI Audio [Radeon HD 6450 / 7450/8450/8490 OEM / R5 230/235/235X OEM]" }, - { "1002", "aaa0", "Tahiti HDMI Audio [Radeon HD 7870 XT / 7950/7970]" }, - { "1002", "aab0", "Oland/Hainan/Cape Verde/Pitcairn HDMI Audio [Radeon HD 7000 Series]" }, - { "1002", "aab8", "Tiran HDMI Audio" }, - { "1002", "aac0", "Tobago HDMI Audio [Radeon R7 360 / R9 360 OEM]" }, - { "1002", "aac8", "Hawaii HDMI Audio [Radeon R9 290/290X / 390/390X]" }, - { "1002", "aad8", "Tonga HDMI Audio [Radeon R9 285/380]" }, - { "1002", "aae0", "Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X]" }, - { "1002", "aae8", "Fiji HDMI/DP Audio [Radeon R9 Nano / FURY/FURY X]" }, - { "1002", "aaf0", "Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590]" }, - { "1002", "aaf8", "Vega 10 HDMI Audio [Radeon Vega 56/64]" }, - { "1002", "ab00", "Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X]" }, - { "1002", "ab08", "Polaris 22 HDMI Audio" }, - { "1002", "ab10", "Lexa HDMI Audio" }, - { "1002", "ab18", "Vega 12 HDMI Audio" }, - { "1002", "ab20", "Vega 20 HDMI Audio [Radeon VII]" }, - { "1002", "ab28", "Navi 21/23 HDMI/DP Audio Controller" }, - { "1002", "ab38", "Navi 10 HDMI Audio" }, - { "1002", "ac00", "Theater 506 World-Wide Analog Decoder" }, - { "1002", "ac01", "Theater 506 World-Wide Analog Decoder" }, - { "1002", "ac02", "TV Wonder HD 600 PCIe" }, - { "1002", "ac03", "Theater 506 PCIe" }, - { "1002", "ac04", "Theater 506 USB" }, - { "1002", "ac05", "Theater 506 USB" }, - { "1002", "ac06", "Theater 506 External USB" }, - { "1002", "ac07", "Theater 506 External USB" }, - { "1002", "ac08", "Theater 506A World-Wide Analog Decoder + Demodulator" }, - { "1002", "ac09", "Theater 506A World-Wide Analog Decoder + Demodulator" }, - { "1002", "ac0a", "Theater 506A PCIe" }, - { "1002", "ac0b", "Theater 506A PCIe" }, - { "1002", "ac0c", "Theater 506A USB" }, - { "1002", "ac0d", "Theater 506A USB" }, - { "1002", "ac0e", "Theater 506A External USB" }, - { "1002", "ac0f", "Theater 506A External USB" }, - { "1002", "ac12", "Theater HD T507 (DVB-T) TV tuner/capture device" }, - { "1002", "cab0", "RS100 Host Bridge" }, - { "1002", "cab2", "RS200 Host Bridge" }, - { "1002", "cab3", "RS250 Host Bridge" }, - { "1002", "cbb2", "RS200 Host Bridge" }, - { "1003", "0201", "US201" }, - { "1004", "0005", "82C592-FC1" }, - { "1004", "0006", "82C593-FC1" }, - { "1004", "0007", "82C594-AFC2" }, - { "1004", "0008", "82C596/7 [Wildcat]" }, - { "1004", "0009", "82C597-AFC2" }, - { "1004", "000c", "82C541 [Lynx]" }, - { "1004", "000d", "82C543 [Lynx]" }, - { "1004", "0101", "82C532" }, - { "1004", "0102", "82C534 [Eagle]" }, - { "1004", "0103", "82C538" }, - { "1004", "0104", "82C535" }, - { "1004", "0105", "82C147" }, - { "1004", "0200", "82C975" }, - { "1004", "0280", "82C925" }, - { "1004", "0304", "QSound ThunderBird PCI Audio" }, - { "1004", "0305", "QSound ThunderBird PCI Audio Gameport" }, - { "1004", "0306", "QSound ThunderBird PCI Audio Support Registers" }, - { "1004", "0307", "SAA7785 ThunderBird PCI Audio" }, - { "1004", "0308", "SAA7785 ThunderBird PCI Audio Gameport" }, - { "1004", "0702", "VAS96011 [Golden Gate II]" }, - { "1004", "0703", "Tollgate" }, - { "1005", "2064", "ALG2032/2064" }, - { "1005", "2128", "ALG2364A" }, - { "1005", "2301", "ALG2301" }, - { "1005", "2302", "ALG2302" }, - { "1005", "2364", "ALG2364" }, - { "1005", "2464", "ALG2364A" }, - { "1005", "2501", "ALG2564A/25128A" }, - { "100b", "0001", "DP83810" }, - { "100b", "0002", "87415/87560 IDE" }, - { "100b", "000e", "87560 Legacy I/O" }, - { "100b", "000f", "FireWire Controller" }, - { "100b", "0011", "NS87560 National PCI System I/O" }, - { "100b", "0012", "USB Controller" }, - { "100b", "0020", "DP83815 (MacPhyter) Ethernet Controller" }, - { "100b", "0021", "PC87200 PCI to ISA Bridge" }, - { "100b", "0022", "DP83820 10/100/1000 Ethernet Controller" }, - { "100b", "0028", "Geode GX2 Host Bridge" }, - { "100b", "002a", "CS5535 South Bridge" }, - { "100b", "002b", "CS5535 ISA bridge" }, - { "100b", "002d", "CS5535 IDE" }, - { "100b", "002e", "CS5535 Audio" }, - { "100b", "002f", "CS5535 USB" }, - { "100b", "0030", "Geode GX2 Graphics Processor" }, - { "100b", "0035", "DP83065 [Saturn] 10/100/1000 Ethernet Controller" }, - { "100b", "0500", "SCx200 Bridge" }, - { "100b", "0501", "SCx200 SMI" }, - { "100b", "0502", "SCx200, SC1100 IDE controller" }, - { "100b", "0503", "SCx200, SC1100 Audio Controller" }, - { "100b", "0504", "SCx200 Video" }, - { "100b", "0505", "SCx200 XBus" }, - { "100b", "0510", "SC1100 Bridge" }, - { "100b", "0511", "SC1100 SMI & ACPI" }, - { "100b", "0515", "SC1100 XBus" }, - { "100b", "d001", "87410 IDE" }, - { "100c", "3202", "ET4000/W32p rev A" }, - { "100c", "3205", "ET4000/W32p rev B" }, - { "100c", "3206", "ET4000/W32p rev C" }, - { "100c", "3207", "ET4000/W32p rev D" }, - { "100c", "3208", "ET6000" }, - { "100c", "4702", "ET6300" }, - { "100e", "9000", "P9000 Viper" }, - { "100e", "9001", "P9000 Viper" }, - { "100e", "9002", "P9000 Viper" }, - { "100e", "9100", "P9100 Viper Pro/SE" }, - { "1011", "0001", "DECchip 21050" }, - { "1011", "0002", "DECchip 21040 [Tulip]" }, - { "1011", "0004", "DECchip 21030 [TGA]" }, - { "1011", "0007", "NVRAM [Zephyr NVRAM]" }, - { "1011", "0008", "KZPSA [KZPSA]" }, - { "1011", "0009", "DECchip 21140 [FasterNet]" }, - { "1011", "000a", "21230 Video Codec" }, - { "1011", "000d", "PBXGB [TGA2]" }, - { "1011", "000f", "PCI-to-PDQ Interface Chip [PFI] FDDI (DEFPA)" }, - { "1011", "0014", "DECchip 21041 [Tulip Pass 3]" }, - { "1011", "0016", "ATMworks 350 Adapter [OPPO] (DGLPB)" }, - { "1011", "0017", "PV-PCI Graphics Controller (ZLXp-L)" }, - { "1011", "0018", "Memory Channel interface" }, - { "1011", "0019", "DECchip 21142/43" }, - { "1011", "001a", "Farallon PN9000SX Gigabit Ethernet" }, - { "1011", "0021", "DECchip 21052" }, - { "1011", "0022", "DECchip 21150" }, - { "1011", "0023", "DECchip 21150" }, - { "1011", "0024", "DECchip 21152" }, - { "1011", "0025", "DECchip 21153" }, - { "1011", "0026", "DECchip 21154" }, - { "1011", "0034", "56k Modem Cardbus" }, - { "1011", "0045", "DECchip 21553" }, - { "1011", "0046", "DECchip 21554" }, - { "1011", "1065", "StrongARM DC21285" }, - { "1013", "0038", "GD 7548" }, - { "1013", "0040", "GD 7555 Flat Panel GUI Accelerator" }, - { "1013", "004c", "GD 7556 Video/Graphics LCD/CRT Ctrlr" }, - { "1013", "00a0", "GD 5430/40 [Alpine]" }, - { "1013", "00a2", "GD 5432 [Alpine]" }, - { "1013", "00a4", "GD 5434-4 [Alpine]" }, - { "1013", "00a8", "GD 5434-8 [Alpine]" }, - { "1013", "00ac", "GD 5436 [Alpine]" }, - { "1013", "00b0", "GD 5440" }, - { "1013", "00b8", "GD 5446" }, - { "1013", "00bc", "GD 5480" }, - { "1013", "00d0", "GD 5462" }, - { "1013", "00d2", "GD 5462 [Laguna I]" }, - { "1013", "00d4", "GD 5464 [Laguna]" }, - { "1013", "00d5", "GD 5464 BD [Laguna]" }, - { "1013", "00d6", "GD 5465 [Laguna]" }, - { "1013", "00e8", "GD 5436U" }, - { "1013", "1100", "CL 6729" }, - { "1013", "1110", "PD 6832 PCMCIA/CardBus Ctrlr" }, - { "1013", "1112", "PD 6834 PCMCIA/CardBus Ctrlr" }, - { "1013", "1113", "PD 6833 PCMCIA/CardBus Ctrlr" }, - { "1013", "1200", "GD 7542 [Nordic]" }, - { "1013", "1202", "GD 7543 [Viking]" }, - { "1013", "1204", "GD 7541 [Nordic Light]" }, - { "1013", "4000", "MD 5620 [CLM Data Fax Voice]" }, - { "1013", "4400", "CD 4400" }, - { "1013", "6001", "CS 4610/11 [CrystalClear SoundFusion Audio Accelerator]" }, - { "1013", "6003", "CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator]" }, - { "1013", "6004", "CS 4614/22/24 [CrystalClear SoundFusion Audio Accelerator]" }, - { "1013", "6005", "Crystal CS4281 PCI Audio" }, - { "1014", "0002", "PCI to MCA Bridge" }, - { "1014", "0005", "Processor to I/O Controller [Alta Lite]" }, - { "1014", "0007", "Processor to I/O Controller [Alta MP]" }, - { "1014", "000a", "PCI to ISA Bridge (IBM27-82376) [Fire Coral]" }, - { "1014", "0017", "CPU to PCI Bridge" }, - { "1014", "0018", "TR Auto LANstreamer" }, - { "1014", "001b", "GXT-150P" }, - { "1014", "001c", "Carrera" }, - { "1014", "001d", "SCSI-2 FAST PCI Adapter (82G2675)" }, - { "1014", "0020", "GXT1000 Graphics Adapter" }, - { "1014", "0022", "PCI to PCI Bridge (IBM27-82351)" }, - { "1014", "002d", "Processor to I/O Controller [Python]" }, - { "1014", "002e", "SCSI RAID Adapter [ServeRAID]" }, - { "1014", "0031", "2 Port Serial Adapter" }, - { "1014", "0036", "PCI to 32-bit LocalBus Bridge [Miami]" }, - { "1014", "0037", "PowerPC to PCI Bridge (IBM27-82660)" }, - { "1014", "003a", "CPU to PCI Bridge" }, - { "1014", "003c", "GXT250P/GXT255P Graphics Adapter" }, - { "1014", "003e", "16/4 Token ring UTP/STP controller" }, - { "1014", "0045", "SSA Adapter" }, - { "1014", "0046", "MPIC interrupt controller" }, - { "1014", "0047", "PCI to PCI Bridge" }, - { "1014", "0048", "PCI to PCI Bridge" }, - { "1014", "0049", "Warhead SCSI Controller" }, - { "1014", "004e", "ATM Controller (14104e00)" }, - { "1014", "004f", "ATM Controller (14104f00)" }, - { "1014", "0050", "ATM Controller (14105000)" }, - { "1014", "0053", "25 MBit ATM Controller" }, - { "1014", "0054", "GXT500P/GXT550P Graphics Adapter" }, - { "1014", "0057", "MPEG PCI Bridge" }, - { "1014", "0058", "SSA Adapter [Advanced SerialRAID/X]" }, - { "1014", "005e", "GXT800P Graphics Adapter" }, - { "1014", "007c", "ATM Controller (14107c00)" }, - { "1014", "007d", "3780IDSP [MWave]" }, - { "1014", "008b", "EADS PCI to PCI Bridge" }, - { "1014", "008e", "GXT3000P Graphics Adapter" }, - { "1014", "0090", "GXT 3000P" }, - { "1014", "0091", "SSA Adapter" }, - { "1014", "0095", "20H2999 PCI Docking Bridge" }, - { "1014", "0096", "Chukar chipset SCSI controller" }, - { "1014", "009f", "PCI 4758 Cryptographic Accelerator" }, - { "1014", "00a5", "ATM Controller (1410a500)" }, - { "1014", "00a6", "ATM 155MBPS MM Controller (1410a600)" }, - { "1014", "00b7", "GXT2000P Graphics Adapter" }, - { "1014", "00b8", "GXT2000P Graphics Adapter" }, - { "1014", "00be", "ATM 622MBPS Controller (1410be00)" }, - { "1014", "00dc", "Advanced Systems Management Adapter (ASMA)" }, - { "1014", "00fc", "CPC710 Dual Bridge and Memory Controller (PCI-64)" }, - { "1014", "0105", "CPC710 Dual Bridge and Memory Controller (PCI-32)" }, - { "1014", "010f", "Remote Supervisor Adapter (RSA)" }, - { "1014", "0142", "Yotta Video Compositor Input" }, - { "1014", "0144", "Yotta Video Compositor Output" }, - { "1014", "0156", "405GP PLB to PCI Bridge" }, - { "1014", "015e", "622Mbps ATM PCI Adapter" }, - { "1014", "0160", "64bit/66MHz PCI ATM 155 MMF" }, - { "1014", "016e", "GXT4000P Graphics Adapter" }, - { "1014", "0170", "GXT6000P Graphics Adapter" }, - { "1014", "017d", "GXT300P Graphics Adapter" }, - { "1014", "0180", "Snipe chipset SCSI controller" }, - { "1014", "0188", "EADS-X PCI-X to PCI-X Bridge" }, - { "1014", "01a7", "PCI-X to PCI-X Bridge" }, - { "1014", "01bd", "ServeRAID Controller" }, - { "1014", "01c1", "64bit/66MHz PCI ATM 155 UTP" }, - { "1014", "01e6", "Cryptographic Accelerator" }, - { "1014", "01ef", "PowerPC 440GP PCI Bridge" }, - { "1014", "01ff", "10/100 Mbps Ethernet" }, - { "1014", "0219", "Multiport Serial Adapter" }, - { "1014", "021b", "GXT6500P Graphics Adapter" }, - { "1014", "021c", "GXT4500P Graphics Adapter" }, - { "1014", "0233", "GXT135P Graphics Adapter" }, - { "1014", "025a", "Drone card" }, - { "1014", "028c", "Citrine chipset SCSI controller" }, - { "1014", "02a1", "Calgary PCI-X Host Bridge" }, - { "1014", "02bd", "Obsidian chipset SCSI controller" }, - { "1014", "0302", "Winnipeg PCI-X Host Bridge" }, - { "1014", "0308", "CalIOC2 PCI-E Root Port" }, - { "1014", "0311", "FC 5740/1954 4-Port 10/100/1000 Base-TX PCI-X Adapter for POWER" }, - { "1014", "0314", "ZISC 036 Neural accelerator card" }, - { "1014", "032d", "Axon - Cell Companion Chip" }, - { "1014", "0339", "Obsidian-E PCI-E SCSI controller" }, - { "1014", "033d", "PCI-E IPR SAS Adapter (FPGA)" }, - { "1014", "034a", "PCI-E IPR SAS Adapter (ASIC)" }, - { "1014", "03dc", "POWER8 Host Bridge (PHB3)" }, - { "1014", "044b", "GenWQE Accelerator Adapter" }, - { "1014", "04aa", "Flash Adapter 90 (PCIe2 0.9TB)" }, - { "1014", "04c1", "POWER9 Host Bridge (PHB4)" }, - { "1014", "04da", "PCI-E IPR SAS+ Adapter (ASIC)" }, - { "1014", "04ed", "Internal Shared Memory (ISM) virtual PCI device" }, - { "1014", "3022", "QLA3022 Network Adapter" }, - { "1014", "4022", "QLA3022 Network Adapter" }, - { "1014", "ffff", "MPIC-2 interrupt controller" }, - { "1017", "5343", "SPEA 3D Accelerator" }, - { "101a", "0005", "100VG ethernet" }, - { "101a", "0007", "BYNET BIC4G/2C/2G" }, - { "101a", "0009", "PQS Memory Controller" }, - { "101a", "000a", "BYNET BPCI Adapter" }, - { "101a", "000b", "BYNET 4 Port BYA Switch (BYA4P)" }, - { "101a", "000c", "BYNET 4 Port BYA Switch (BYA4G)" }, - { "101a", "0010", "NCR AMC Memory Controller" }, - { "101a", "1dc1", "BYNET BIC2M/BIC4M/BYA4M" }, - { "101a", "1fa8", "BYNET Multi-port BIC Adapter (XBIC Based)" }, - { "101b", "0452", "VSC452 [SuperBMC]" }, - { "101c", "0193", "33C193A" }, - { "101c", "0196", "33C196A" }, - { "101c", "0197", "33C197A" }, - { "101c", "0296", "33C296A" }, - { "101c", "3193", "7193" }, - { "101c", "3197", "7197" }, - { "101c", "3296", "33C296A" }, - { "101c", "4296", "34C296" }, - { "101c", "9710", "Pipeline 9710" }, - { "101c", "9712", "Pipeline 9712" }, - { "101c", "c24a", "90C" }, - { "101e", "0009", "MegaRAID 428 Ultra RAID Controller (rev 03)" }, - { "101e", "1960", "MegaRAID" }, - { "101e", "9010", "MegaRAID 428 Ultra RAID Controller" }, - { "101e", "9030", "EIDE Controller" }, - { "101e", "9031", "EIDE Controller" }, - { "101e", "9032", "EIDE & SCSI Controller" }, - { "101e", "9033", "SCSI Controller" }, - { "101e", "9040", "Multimedia card" }, - { "101e", "9060", "MegaRAID 434 Ultra GT RAID Controller" }, - { "101e", "9063", "MegaRAC" }, - { "1022", "1100", "K8 [Athlon64/Opteron] HyperTransport Technology Configuration" }, - { "1022", "1101", "K8 [Athlon64/Opteron] Address Map" }, - { "1022", "1102", "K8 [Athlon64/Opteron] DRAM Controller" }, - { "1022", "1103", "K8 [Athlon64/Opteron] Miscellaneous Control" }, - { "1022", "1200", "Family 10h Processor HyperTransport Configuration" }, - { "1022", "1201", "Family 10h Processor Address Map" }, - { "1022", "1202", "Family 10h Processor DRAM Controller" }, - { "1022", "1203", "Family 10h Processor Miscellaneous Control" }, - { "1022", "1204", "Family 10h Processor Link Control" }, - { "1022", "1300", "Family 11h Processor HyperTransport Configuration" }, - { "1022", "1301", "Family 11h Processor Address Map" }, - { "1022", "1302", "Family 11h Processor DRAM Controller" }, - { "1022", "1303", "Family 11h Processor Miscellaneous Control" }, - { "1022", "1304", "Family 11h Processor Link Control" }, - { "1022", "1305", "Griffin Function 5" }, - { "1022", "1306", "Griffin Function 6" }, - { "1022", "1307", "Griffin Function 7" }, - { "1022", "1308", "Kaveri Audio Controller" }, - { "1022", "1314", "Wrestler/Bheem/Ontario/Krishna Audio Controller" }, - { "1022", "13e0", "Ariel Root Complex" }, - { "1022", "13e1", "Ariel IOMMU" }, - { "1022", "13e2", "Ariel PCIe Dummy Host Bridge" }, - { "1022", "13e3", "Ariel PCIe GPP Bridge" }, - { "1022", "13e4", "Ariel PCIe Dummy Host Bridge" }, - { "1022", "13e5", "Ariel Internal PCIe GPP Bridge 0 to Bus A" }, - { "1022", "13e6", "Ariel Internal PCIe GPP Bridge 0 to Bus B" }, - { "1022", "13e7", "Ariel SMBus Controller" }, - { "1022", "13e8", "Ariel LPC Bridge" }, - { "1022", "13e9", "Ariel Internal GPU" }, - { "1022", "13ea", "Ariel HD Audio Controller" }, - { "1022", "13eb", "Ariel HD Audio Coprocessor" }, - { "1022", "13ec", "Ariel Cryptographic Coprocessor" }, - { "1022", "13ed", "Ariel USB 3.1 Type C: Gen2 x 1port + DP Alt Mode" }, - { "1022", "13ee", "Ariel USB 3.1 Type A: Gen2 x 2 ports" }, - { "1022", "13ef", "Ariel ZCN/MP4" }, - { "1022", "13f0", "Ariel Device 24: Function 0" }, - { "1022", "13f1", "Ariel Device 24: Function 1" }, - { "1022", "13f2", "Ariel Device 24: Function 2" }, - { "1022", "13f3", "Ariel Device 24: Function 3" }, - { "1022", "13f4", "Ariel Device 24: Function 4" }, - { "1022", "13f5", "Ariel Device 24: Function 5" }, - { "1022", "13f6", "Ariel Device 24: Function 6" }, - { "1022", "13f7", "Ariel Device 24: Function 7" }, - { "1022", "1400", "Family 15h (Models 10h-1fh) Processor Function 0" }, - { "1022", "1401", "Family 15h (Models 10h-1fh) Processor Function 1" }, - { "1022", "1402", "Family 15h (Models 10h-1fh) Processor Function 2" }, - { "1022", "1403", "Family 15h (Models 10h-1fh) Processor Function 3" }, - { "1022", "1404", "Family 15h (Models 10h-1fh) Processor Function 4" }, - { "1022", "1405", "Family 15h (Models 10h-1fh) Processor Function 5" }, - { "1022", "1410", "Family 15h (Models 10h-1fh) Processor Root Complex" }, - { "1022", "1412", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1413", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1414", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1415", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1416", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1417", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1418", "Family 15h (Models 10h-1fh) Processor Root Port" }, - { "1022", "1419", "Family 15h (Models 10h-1fh) I/O Memory Management Unit" }, - { "1022", "141a", "Family 15h (Models 30h-3fh) Processor Function 0" }, - { "1022", "141b", "Family 15h (Models 30h-3fh) Processor Function 1" }, - { "1022", "141c", "Family 15h (Models 30h-3fh) Processor Function 2" }, - { "1022", "141d", "Family 15h (Models 30h-3fh) Processor Function 3" }, - { "1022", "141e", "Family 15h (Models 30h-3fh) Processor Function 4" }, - { "1022", "141f", "Family 15h (Models 30h-3fh) Processor Function 5" }, - { "1022", "1422", "Family 15h (Models 30h-3fh) Processor Root Complex" }, - { "1022", "1423", "Family 15h (Models 30h-3fh) I/O Memory Management Unit" }, - { "1022", "1424", "Family 15h (Models 30h-3fh) Processor Root Port" }, - { "1022", "1425", "Kaveri P2P Bridge for GFX PCIe Port [1:0]" }, - { "1022", "1426", "Family 15h (Models 30h-3fh) Processor Root Port" }, - { "1022", "142e", "Liverpool Processor HT configuration" }, - { "1022", "142f", "Liverpool Processor Address Maps" }, - { "1022", "1430", "Liverpool Processor DRAM configuration" }, - { "1022", "1431", "Liverpool Processor Misc configuration" }, - { "1022", "1432", "Liverpool Processor PM configuration" }, - { "1022", "1433", "Liverpool Processor NB Performance Monitor" }, - { "1022", "1434", "Liverpool Processor SPLL Configuration" }, - { "1022", "1436", "Liverpool Processor Root Complex" }, - { "1022", "1437", "Liverpool I/O Memory Management Unit" }, - { "1022", "1438", "Liverpool UMI PCIe Dummy Host Bridge" }, - { "1022", "1439", "Family 16h Processor Functions 5:1" }, - { "1022", "143a", "Kingston/Clayton/Gladius/Montego Root Complex" }, - { "1022", "143b", "Kingston/Clayton/Gladius/Montego P2P Bridge for UMI Link" }, - { "1022", "1440", "Matisse/Vermeer Data Fabric: Device 18h; Function 0" }, - { "1022", "1441", "Matisse/Vermeer Data Fabric: Device 18h; Function 1" }, - { "1022", "1442", "Matisse/Vermeer Data Fabric: Device 18h; Function 2" }, - { "1022", "1443", "Matisse/Vermeer Data Fabric: Device 18h; Function 3" }, - { "1022", "1444", "Matisse/Vermeer Data Fabric: Device 18h; Function 4" }, - { "1022", "1445", "Matisse/Vermeer Data Fabric: Device 18h; Function 5" }, - { "1022", "1446", "Matisse/Vermeer Data Fabric: Device 18h; Function 6" }, - { "1022", "1447", "Matisse/Vermeer Data Fabric: Device 18h; Function 7" }, - { "1022", "1448", "Renoir Device 24: Function 0" }, - { "1022", "1449", "Renoir Device 24: Function 1" }, - { "1022", "144a", "Renoir Device 24: Function 2" }, - { "1022", "144b", "Renoir Device 24: Function 3" }, - { "1022", "144c", "Renoir Device 24: Function 4" }, - { "1022", "144d", "Renoir Device 24: Function 5" }, - { "1022", "144e", "Renoir Device 24: Function 6" }, - { "1022", "144f", "Renoir Device 24: Function 7" }, - { "1022", "1450", "Family 17h (Models 00h-0fh) Root Complex" }, - { "1022", "1451", "Family 17h (Models 00h-0fh) I/O Memory Management Unit" }, - { "1022", "1452", "Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge" }, - { "1022", "1453", "Family 17h (Models 00h-0fh) PCIe GPP Bridge" }, - { "1022", "1454", "Family 17h (Models 00h-0fh) Internal PCIe GPP Bridge 0 to Bus B" }, - { "1022", "1455", "Zeppelin/Renoir PCIe Dummy Function" }, - { "1022", "1456", "Family 17h (Models 00h-0fh) Platform Security Processor" }, - { "1022", "1457", "Family 17h (Models 00h-0fh) HD Audio Controller" }, - { "1022", "145a", "Zeppelin/Raven/Raven2 PCIe Dummy Function" }, - { "1022", "145b", "Zeppelin Non-Transparent Bridge" }, - { "1022", "145c", "Family 17h (Models 00h-0fh) USB 3.0 Host Controller" }, - { "1022", "145d", "Zeppelin Switch Upstream (PCIE SW.US)" }, - { "1022", "145e", "Zeppelin Switch Downstream (PCIE SW.DS)" }, - { "1022", "145f", "Zeppelin USB 3.0 Host controller" }, - { "1022", "1460", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 0" }, - { "1022", "1461", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 1" }, - { "1022", "1462", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 2" }, - { "1022", "1463", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 3" }, - { "1022", "1464", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 4" }, - { "1022", "1465", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 5" }, - { "1022", "1466", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 6" }, - { "1022", "1467", "Family 17h (Models 00h-0fh) Data Fabric: Device 18h; Function 7" }, - { "1022", "1468", "Zeppelin Cryptographic Coprocessor NTBCCP" }, - { "1022", "1470", "Vega 10 PCIe Bridge" }, - { "1022", "1471", "Vega 10 PCIe Bridge" }, - { "1022", "1480", "Starship/Matisse Root Complex" }, - { "1022", "1481", "Starship/Matisse IOMMU" }, - { "1022", "1482", "Starship/Matisse PCIe Dummy Host Bridge" }, - { "1022", "1483", "Starship/Matisse GPP Bridge" }, - { "1022", "1484", "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]" }, - { "1022", "1485", "Starship/Matisse Reserved SPP" }, - { "1022", "1486", "Starship/Matisse Cryptographic Coprocessor PSPCPP" }, - { "1022", "1487", "Starship/Matisse HD Audio Controller" }, - { "1022", "1488", "Starship Reserved SSP" }, - { "1022", "1489", "Starship Reserved SSP" }, - { "1022", "148a", "Starship/Matisse PCIe Dummy Function" }, - { "1022", "148b", "Starship/Matisse Non-Transparent Bridge" }, - { "1022", "148c", "Starship USB 3.0 Host Controller" }, - { "1022", "148d", "Starship/Matisse Switch Upstream (PCIE SW.US)" }, - { "1022", "148e", "Starship/Matisse Switch Downstream (PCIE SW.DS)" }, - { "1022", "148f", "Starship Reserved SSP" }, - { "1022", "1490", "Starship Device 24; Function 0" }, - { "1022", "1491", "Starship Device 24; Function 1" }, - { "1022", "1492", "Starship Device 24; Function 2" }, - { "1022", "1493", "Starship Device 24; Function 3" }, - { "1022", "1494", "Starship Device 24; Function 4" }, - { "1022", "1495", "Starship Device 24; Function 5" }, - { "1022", "1496", "Starship Device 24; Function 6" }, - { "1022", "1497", "Starship Device 24; Function 7" }, - { "1022", "1498", "Starship/Matisse PTDMA" }, - { "1022", "1499", "Starship/Matisse NVMe" }, - { "1022", "149a", "Starship PCIe GPP Bridge [1:0]" }, - { "1022", "149b", "Starship Reserved SSP" }, - { "1022", "149c", "Matisse USB 3.0 Host Controller" }, - { "1022", "149d", "Vangogh CVIP" }, - { "1022", "1510", "Family 14h Processor Root Complex" }, - { "1022", "1512", "Family 14h Processor Root Port" }, - { "1022", "1513", "Family 14h Processor Root Port" }, - { "1022", "1514", "Family 14h Processor Root Port" }, - { "1022", "1515", "Family 14h Processor Root Port" }, - { "1022", "1516", "Family 14h Processor Root Port" }, - { "1022", "1530", "Family 16h Processor Function 0" }, - { "1022", "1531", "Family 16h Processor Function 1" }, - { "1022", "1532", "Family 16h Processor Function 2" }, - { "1022", "1533", "Family 16h Processor Function 3" }, - { "1022", "1534", "Family 16h Processor Function 4" }, - { "1022", "1535", "Family 16h Processor Function 5" }, - { "1022", "1536", "Family 16h Processor Root Complex" }, - { "1022", "1537", "Kabini/Mullins PSP-Platform Security Processor" }, - { "1022", "1538", "Family 16h Processor Function 0" }, - { "1022", "1539", "Kabini P2P Bridge for PCIe Ports[4:0]" }, - { "1022", "1540", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky HT Configuration" }, - { "1022", "1541", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Address Maps" }, - { "1022", "1542", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky DRAM Configuration" }, - { "1022", "1543", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Miscellaneous Configuration" }, - { "1022", "1544", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky PM Configuration" }, - { "1022", "1545", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky NB Performance Monitor" }, - { "1022", "1546", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Root Complex" }, - { "1022", "1547", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky IOMMU" }, - { "1022", "1548", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky UMI PCIe Dummy Host Bridge" }, - { "1022", "1549", "Kryptos/Cato/Garfield/Garfield+ P2P Bridge for PCIe Port [3:0]" }, - { "1022", "154a", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Audio Processor" }, - { "1022", "154b", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky Security Processor" }, - { "1022", "154d", "Kryptos/Cato/Garfield/Garfield+/Arlene/Pooky/Anubis HDMI Controller" }, - { "1022", "154f", "Anubis Audio Processor" }, - { "1022", "1550", "Garfield+/Arlene/Pooky/Anubis SPLL Configuration" }, - { "1022", "1553", "Arlene/Pooky P2P Bridge for PCIE (3:0)" }, - { "1022", "155b", "Anubis Root Complex" }, - { "1022", "155c", "Anubis IOMMU" }, - { "1022", "155d", "Anubis UMI PCIe Dummy Bridge" }, - { "1022", "155e", "Anubis P2P Bridge for PCIe Ports [4:0]" }, - { "1022", "1560", "Anubis Security Processor" }, - { "1022", "1566", "Family 16h (Models 30h-3fh) Processor Root Complex" }, - { "1022", "1567", "Mullins IOMMU" }, - { "1022", "156b", "Family 16h (Models 30h-3fh) Host Bridge" }, - { "1022", "1570", "Family 15h (Models 60h-6fh) Processor Function 0" }, - { "1022", "1571", "Family 15h (Models 60h-6fh) Processor Function 1" }, - { "1022", "1572", "Family 15h (Models 60h-6fh) Processor Function 2" }, - { "1022", "1573", "Family 15h (Models 60h-6fh) Processor Function 3" }, - { "1022", "1574", "Family 15h (Models 60h-6fh) Processor Function 4" }, - { "1022", "1575", "Family 15h (Models 60h-6fh) Processor Function 5" }, - { "1022", "1576", "Family 15h (Models 60h-6fh) Processor Root Complex" }, - { "1022", "1577", "Family 15h (Models 60h-6fh) I/O Memory Management Unit" }, - { "1022", "1578", "Carrizo Platform Security Processor" }, - { "1022", "1579", "Carrizo Audio Processor" }, - { "1022", "157a", "Family 15h (Models 60h-6fh) Audio Controller" }, - { "1022", "157b", "Family 15h (Models 60h-6fh) Host Bridge" }, - { "1022", "157c", "Family 15h (Models 60h-6fh) Processor Root Port" }, - { "1022", "157d", "Carrizo Audio Dummy Host Bridge" }, - { "1022", "157e", "Carrizo Audio Controller" }, - { "1022", "1580", "Family 16h (Models 30h-3fh) Processor Function 0" }, - { "1022", "1581", "Family 16h (Models 30h-3fh) Processor Function 1" }, - { "1022", "1582", "Family 16h (Models 30h-3fh) Processor Function 2" }, - { "1022", "1583", "Family 16h (Models 30h-3fh) Processor Function 3" }, - { "1022", "1584", "Family 16h (Models 30h-3fh) Processor Function 4" }, - { "1022", "1585", "Family 16h (Models 30h-3fh) Processor Function 5" }, - { "1022", "1590", "Amur/Nolan HT Configuration" }, - { "1022", "1591", "Amur/Nolan Address Maps" }, - { "1022", "1592", "Amur/Nolan DRAM Configuration" }, - { "1022", "1593", "Amur/Nolan Miscellaneous Configuration" }, - { "1022", "1594", "Amur/Nolan PM Configuration" }, - { "1022", "1595", "Amur/Nolan NB Performance Monitor" }, - { "1022", "1596", "Amur/Nolan Root Complex" }, - { "1022", "1597", "Amur/Nolan IOMMU" }, - { "1022", "1598", "Amur/Nolan Platform Security Processor" }, - { "1022", "1599", "Amur/Nolan PCIe Dummy Host Bridge" }, - { "1022", "159d", "Amur Function 6: Gasket" }, - { "1022", "15b0", "Stoney HT Configuration" }, - { "1022", "15b1", "Stoney Address Maps" }, - { "1022", "15b2", "Stoney DRAM Configuration" }, - { "1022", "15b3", "Stoney Miscellaneous Configuration" }, - { "1022", "15b4", "Stoney PM Configuration" }, - { "1022", "15b5", "Stoney NB Performance Monitor" }, - { "1022", "15bc", "Stoney PCIe [GFX,GPP] Bridge [4:0]" }, - { "1022", "15be", "Stoney Audio Processor" }, - { "1022", "15d0", "Raven/Raven2 Root Complex" }, - { "1022", "15d1", "Raven/Raven2 IOMMU" }, - { "1022", "15d2", "Raven/Raven2 PCIe Dummy Host Bridge" }, - { "1022", "15d3", "Raven/Raven2 PCIe GPP Bridge [6:0]" }, - { "1022", "15d4", "FireFlight USB 3.1" }, - { "1022", "15d5", "FireFlight USB 3.1" }, - { "1022", "15da", "Raven/Raven2 PCIe Dummy Host Bridge" }, - { "1022", "15db", "Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus A" }, - { "1022", "15dc", "Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus B" }, - { "1022", "15de", "Raven/Raven2/FireFlight HD Audio Controller" }, - { "1022", "15df", "Family 17h (Models 10h-1fh) Platform Security Processor" }, - { "1022", "15e0", "Raven USB 3.1" }, - { "1022", "15e1", "Raven USB 3.1" }, - { "1022", "15e2", "ACP/ACP3X/ACP6x Audio Coprocessor" }, - { "1022", "15e3", "Family 17h/19h HD Audio Controller" }, - { "1022", "15e4", "Sensor Fusion Hub" }, - { "1022", "15e5", "Raven2 USB 3.1" }, - { "1022", "15e6", "Raven/Raven2/Renoir Non-Sensor Fusion Hub KMDF driver" }, - { "1022", "15e8", "Raven/Raven2 Device 24: Function 0" }, - { "1022", "15e9", "Raven/Raven2 Device 24: Function 1" }, - { "1022", "15ea", "Raven/Raven2 Device 24: Function 2" }, - { "1022", "15eb", "Raven/Raven2 Device 24: Function 3" }, - { "1022", "15ec", "Raven/Raven2 Device 24: Function 4" }, - { "1022", "15ed", "Raven/Raven2 Device 24: Function 5" }, - { "1022", "15ee", "Raven/Raven2 Device 24: Function 6" }, - { "1022", "15ef", "Raven/Raven2 Device 24: Function 7" }, - { "1022", "15f0", "FireFlight Device 24: Function 0" }, - { "1022", "15f1", "FireFlight Device 24: Function 1" }, - { "1022", "15f2", "FireFlight Device 24: Function 2" }, - { "1022", "15f3", "FireFlight Device 24: Function 3" }, - { "1022", "15f4", "FireFlight Device 24: Function 4" }, - { "1022", "15f5", "FireFlight Device 24: Function 5" }, - { "1022", "15f6", "FireFlight Device 24: Function 6" }, - { "1022", "15f7", "FireFlight Device 24: Function 7" }, - { "1022", "15f8", "FireFlight Root Complex" }, - { "1022", "15f9", "FireFlight IOMMU" }, - { "1022", "15fa", "FireFlight PCIe Dummy Host Bridge" }, - { "1022", "15fb", "FireFlight PCIe GPP Bride 3:0" }, - { "1022", "15fc", "FireFlight PCIe Dummy Host Bridge" }, - { "1022", "15fd", "FireFlight Internal PCIe GPP Bridge 0 to Bus A" }, - { "1022", "15fe", "FireFlight Internal PCIe GPP Bridge 0 to Bus B" }, - { "1022", "15ff", "FireFlight Bus A; Device 0: Function 0: Internal GPU" }, - { "1022", "1600", "Family 15h Processor Function 0" }, - { "1022", "1601", "Family 15h Processor Function 1" }, - { "1022", "1602", "Family 15h Processor Function 2" }, - { "1022", "1603", "Family 15h Processor Function 3" }, - { "1022", "1604", "Family 15h Processor Function 4" }, - { "1022", "1605", "Family 15h Processor Function 5" }, - { "1022", "1606", "Arden Security Processor" }, - { "1022", "1608", "Arden Device 18h: Function 0" }, - { "1022", "1609", "Arden Device 18h: Function 1" }, - { "1022", "160a", "Arden Device 18h: Function 2" }, - { "1022", "160b", "Arden Device 18h: Function 3" }, - { "1022", "160c", "Arden Device 18h: Function 4" }, - { "1022", "160d", "Arden Device 18h: Function 5" }, - { "1022", "160e", "Arden Device 18h: Function 6" }, - { "1022", "160f", "Arden Device 18h: Function 7" }, - { "1022", "1620", "Anubis HT Configuration" }, - { "1022", "1621", "Anubis Address Maps" }, - { "1022", "1622", "Anubis DRAM Configuration" }, - { "1022", "1623", "Anubis Miscellaneous Configuration" }, - { "1022", "1624", "Anubis PM Configuration" }, - { "1022", "1625", "Anubis NB Performance Monitor" }, - { "1022", "1626", "Arden Root Complex" }, - { "1022", "1627", "Arden IOMMU" }, - { "1022", "1628", "Arden PCIe Dummy Host Bridge" }, - { "1022", "1629", "Arden PCIe GPP Bridge" }, - { "1022", "162a", "Arden Internal PCIe GPP Bridge 0 to bus X" }, - { "1022", "162b", "Arden PCIe Non-Transparent Bridge" }, - { "1022", "1630", "Renoir/Cezanne Root Complex" }, - { "1022", "1631", "Renoir/Cezanne IOMMU" }, - { "1022", "1632", "Renoir PCIe Dummy Host Bridge" }, - { "1022", "1633", "Renoir PCIe GPP Bridge" }, - { "1022", "1634", "Renoir/Cezanne PCIe GPP Bridge" }, - { "1022", "1635", "Renoir Internal PCIe GPP Bridge to Bus" }, - { "1022", "1637", "Renoir HD Audio Controller" }, - { "1022", "1639", "Renoir/Cezanne USB 3.1" }, - { "1022", "163a", "VanGogh USB0" }, - { "1022", "163b", "VanGogh USB1" }, - { "1022", "163c", "VanGogh SecUSB" }, - { "1022", "163d", "VanGogh SecureFunction" }, - { "1022", "163e", "VanGogh HSP" }, - { "1022", "1641", "Renoir 10GbE Controller Port 0 (XGBE0/1)" }, - { "1022", "1642", "Renoir WLAN" }, - { "1022", "1643", "Renoir BT" }, - { "1022", "1644", "Renoir I2S" }, - { "1022", "1648", "VanGogh Root Complex" }, - { "1022", "1649", "VanGogh PSP/CCP" }, - { "1022", "164f", "Milan IOMMU" }, - { "1022", "1650", "Milan Data Fabric; Function 0" }, - { "1022", "1651", "Milan Data Fabric; Function 1" }, - { "1022", "1652", "Milan Data Fabric; Function 2" }, - { "1022", "1653", "Milan Data Fabric; Function 3" }, - { "1022", "1654", "Milan Data Fabric; Function 4" }, - { "1022", "1655", "Milan Data Fabric; Function 5" }, - { "1022", "1656", "Milan Data Fabric; Function 6" }, - { "1022", "1657", "Milan Data Fabric; Function 7" }, - { "1022", "166a", "Cezanne Data Fabric; Function 0" }, - { "1022", "166b", "Cezanne Data Fabric; Function 1" }, - { "1022", "166c", "Cezanne Data Fabric; Function 2" }, - { "1022", "166d", "Cezanne Data Fabric; Function 3" }, - { "1022", "166e", "Cezanne Data Fabric; Function 4" }, - { "1022", "166f", "Cezanne Data Fabric; Function 5" }, - { "1022", "1670", "Cezanne Data Fabric; Function 6" }, - { "1022", "1671", "Cezanne Data Fabric; Function 7" }, - { "1022", "1700", "Family 12h/14h Processor Function 0" }, - { "1022", "1701", "Family 12h/14h Processor Function 1" }, - { "1022", "1702", "Family 12h/14h Processor Function 2" }, - { "1022", "1703", "Family 12h/14h Processor Function 3" }, - { "1022", "1704", "Family 12h/14h Processor Function 4" }, - { "1022", "1705", "Family 12h Processor Root Complex" }, - { "1022", "1706", "Llano P2P Bridge to external GPU" }, - { "1022", "1707", "Family 12h Processor Root Port" }, - { "1022", "1708", "Family 12h Processor Root Port" }, - { "1022", "1709", "Family 12h Processor Root Port" }, - { "1022", "170a", "Family 12h Processor Root Port" }, - { "1022", "170b", "Family 12h Processor Root Port" }, - { "1022", "170c", "Family 12h Processor Root Port" }, - { "1022", "170d", "Family 12h Processor Root Port" }, - { "1022", "1716", "Family 12h/14h Processor Function 5" }, - { "1022", "1718", "Family 12h/14h Processor Function 6" }, - { "1022", "1719", "Family 12h/14h Processor Function 7" }, - { "1022", "2000", "79c970 [PCnet32 LANCE]" }, - { "1022", "2001", "Am79C978 PCnet Home (HomePNA) 1/10 PCI Ethernet Adapter [Am79C971 PHY]" }, - { "1022", "2003", "Am 1771 MBW [Alchemy]" }, - { "1022", "2020", "53c974 [PCscsi]" }, - { "1022", "2040", "79c974" }, - { "1022", "2080", "CS5536 [Geode companion] Host Bridge" }, - { "1022", "2081", "Geode LX Video" }, - { "1022", "2082", "Geode LX AES Security Block" }, - { "1022", "208f", "CS5536 GeodeLink PCI South Bridge" }, - { "1022", "2090", "CS5536 [Geode companion] ISA" }, - { "1022", "2091", "CS5536 [Geode companion] FLASH" }, - { "1022", "2093", "CS5536 [Geode companion] Audio" }, - { "1022", "2094", "CS5536 [Geode companion] OHC" }, - { "1022", "2095", "CS5536 [Geode companion] EHC" }, - { "1022", "2096", "CS5536 [Geode companion] UDC" }, - { "1022", "2097", "CS5536 [Geode companion] UOC" }, - { "1022", "209a", "CS5536 [Geode companion] IDE" }, - { "1022", "2625", "Am79C973 [Lance/PCI PCNet/32]" }, - { "1022", "2627", "Am79C975 [Lance/PCI PCNet/32]" }, - { "1022", "3000", "ELanSC520 Microcontroller" }, - { "1022", "43a0", "Hudson PCI to PCI bridge (PCIE port 0)" }, - { "1022", "43a1", "Hudson PCI to PCI bridge (PCIE port 1)" }, - { "1022", "43a2", "Hudson PCI to PCI bridge (PCIE port 2)" }, - { "1022", "43a3", "Hudson PCI to PCI bridge (PCIE port 3)" }, - { "1022", "43b0", "X370 Series Chipset PCIe Upstream Port" }, - { "1022", "43b1", "X399 Series Chipset PCIe Bridge" }, - { "1022", "43b4", "300 Series Chipset PCIe Port" }, - { "1022", "43b5", "X370 Series Chipset SATA Controller" }, - { "1022", "43b6", "X399 Series Chipset SATA Controller" }, - { "1022", "43b7", "300 Series Chipset SATA Controller" }, - { "1022", "43b9", "X370 Series Chipset USB 3.1 xHCI Controller" }, - { "1022", "43ba", "X399 Series Chipset USB 3.1 xHCI Controller" }, - { "1022", "43bb", "300 Series Chipset USB 3.1 xHCI Controller" }, - { "1022", "43c6", "400 Series Chipset PCIe Bridge" }, - { "1022", "43c7", "400 Series Chipset PCIe Port" }, - { "1022", "43c8", "400 Series Chipset SATA Controller" }, - { "1022", "43d5", "400 Series Chipset USB 3.1 XHCI Controller" }, - { "1022", "43e9", "500 Series Chipset Switch Upstream Port" }, - { "1022", "43eb", "500 Series Chipset SATA Controller" }, - { "1022", "43ee", "500 Series Chipset USB 3.1 XHCI Controller" }, - { "1022", "57a3", "Matisse PCIe GPP Bridge" }, - { "1022", "57a4", "Matisse PCIe GPP Bridge" }, - { "1022", "57ad", "Matisse Switch Upstream" }, - { "1022", "7006", "AMD-751 [Irongate] System Controller" }, - { "1022", "7007", "AMD-751 [Irongate] AGP Bridge" }, - { "1022", "700a", "AMD-IGR4 AGP Host to PCI Bridge" }, - { "1022", "700b", "AMD-IGR4 PCI to PCI Bridge" }, - { "1022", "700c", "AMD-760 MP [IGD4-2P] System Controller" }, - { "1022", "700d", "AMD-760 MP [IGD4-2P] AGP Bridge" }, - { "1022", "700e", "AMD-760 [IGD4-1P] System Controller" }, - { "1022", "700f", "AMD-760 [IGD4-1P] AGP Bridge" }, - { "1022", "7400", "AMD-755 [Cobra] ISA" }, - { "1022", "7401", "AMD-755 [Cobra] IDE" }, - { "1022", "7403", "AMD-755 [Cobra] ACPI" }, - { "1022", "7404", "AMD-755 [Cobra] USB" }, - { "1022", "7408", "AMD-756 [Viper] ISA" }, - { "1022", "7409", "AMD-756 [Viper] IDE" }, - { "1022", "740b", "AMD-756 [Viper] ACPI" }, - { "1022", "740c", "AMD-756 [Viper] USB" }, - { "1022", "7410", "AMD-766 [ViperPlus] ISA" }, - { "1022", "7411", "AMD-766 [ViperPlus] IDE" }, - { "1022", "7413", "AMD-766 [ViperPlus] ACPI" }, - { "1022", "7414", "AMD-766 [ViperPlus] USB" }, - { "1022", "7440", "AMD-768 [Opus] ISA" }, - { "1022", "7441", "AMD-768 [Opus] IDE" }, - { "1022", "7443", "AMD-768 [Opus] ACPI" }, - { "1022", "7445", "AMD-768 [Opus] Audio" }, - { "1022", "7446", "AMD-768 [Opus] MC97 Modem" }, - { "1022", "7448", "AMD-768 [Opus] PCI" }, - { "1022", "7449", "AMD-768 [Opus] USB" }, - { "1022", "7450", "AMD-8131 PCI-X Bridge" }, - { "1022", "7451", "AMD-8131 PCI-X IOAPIC" }, - { "1022", "7454", "AMD-8151 System Controller" }, - { "1022", "7455", "AMD-8151 AGP Bridge" }, - { "1022", "7458", "AMD-8132 PCI-X Bridge" }, - { "1022", "7459", "AMD-8132 PCI-X IOAPIC" }, - { "1022", "7460", "AMD-8111 PCI" }, - { "1022", "7461", "AMD-8111 USB" }, - { "1022", "7462", "AMD-8111 Ethernet" }, - { "1022", "7463", "AMD-8111 USB EHCI" }, - { "1022", "7464", "AMD-8111 USB OHCI" }, - { "1022", "7468", "AMD-8111 LPC" }, - { "1022", "7469", "AMD-8111 IDE" }, - { "1022", "746a", "AMD-8111 SMBus 2.0" }, - { "1022", "746b", "AMD-8111 ACPI" }, - { "1022", "746d", "AMD-8111 AC97 Audio" }, - { "1022", "746e", "AMD-8111 MC97 Modem" }, - { "1022", "756b", "AMD-8111 ACPI" }, - { "1022", "7800", "FCH SATA Controller [IDE mode]" }, - { "1022", "7801", "FCH SATA Controller [AHCI mode]" }, - { "1022", "7802", "FCH SATA Controller [RAID mode]" }, - { "1022", "7803", "FCH SATA Controller [RAID mode]" }, - { "1022", "7804", "FCH SATA Controller [AHCI mode]" }, - { "1022", "7805", "FCH SATA Controller [RAID mode]" }, - { "1022", "7806", "FCH SD Flash Controller" }, - { "1022", "7807", "FCH USB OHCI Controller" }, - { "1022", "7808", "FCH USB EHCI Controller" }, - { "1022", "7809", "FCH USB OHCI Controller" }, - { "1022", "780a", "Kabini/Mullins SATA Raid/AHCI Mode (DotHill driver)" }, - { "1022", "780b", "FCH SMBus Controller" }, - { "1022", "780c", "FCH IDE Controller" }, - { "1022", "780d", "FCH Azalia Controller" }, - { "1022", "780e", "FCH LPC Bridge" }, - { "1022", "780f", "FCH PCI Bridge" }, - { "1022", "7812", "FCH USB XHCI Controller" }, - { "1022", "7813", "FCH SD Flash Controller" }, - { "1022", "7814", "FCH USB XHCI Controller" }, - { "1022", "7900", "FCH SATA Controller [IDE mode]" }, - { "1022", "7901", "FCH SATA Controller [AHCI mode]" }, - { "1022", "7902", "FCH SATA Controller [RAID mode]" }, - { "1022", "7903", "FCH SATA Controller [RAID mode]" }, - { "1022", "7904", "FCH SATA Controller [AHCI mode]" }, - { "1022", "7906", "FCH SD Flash Controller" }, - { "1022", "7908", "FCH USB EHCI Controller" }, - { "1022", "790b", "FCH SMBus Controller" }, - { "1022", "790e", "FCH LPC Bridge" }, - { "1022", "790f", "FCH PCI Bridge" }, - { "1022", "7914", "FCH USB XHCI Controller" }, - { "1022", "9600", "RS780 Host Bridge" }, - { "1022", "9601", "RS880 Host Bridge" }, - { "1022", "9602", "RS780/RS880 PCI to PCI bridge (int gfx)" }, - { "1022", "9603", "RS780 PCI to PCI bridge (ext gfx port 0)" }, - { "1022", "9604", "RS780/RS880 PCI to PCI bridge (PCIE port 0)" }, - { "1022", "9605", "RS780/RS880 PCI to PCI bridge (PCIE port 1)" }, - { "1022", "9606", "RS780 PCI to PCI bridge (PCIE port 2)" }, - { "1022", "9607", "RS780/RS880 PCI to PCI bridge (PCIE port 3)" }, - { "1022", "9608", "RS780/RS880 PCI to PCI bridge (PCIE port 4)" }, - { "1022", "9609", "RS780/RS880 PCI to PCI bridge (PCIE port 5)" }, - { "1022", "960a", "RS780 PCI to PCI bridge (NB-SB link)" }, - { "1022", "960b", "RS780 PCI to PCI bridge (ext gfx port 1)" }, - { "1023", "0194", "82C194" }, - { "1023", "2000", "4DWave DX" }, - { "1023", "2001", "4DWave NX" }, - { "1023", "2100", "CyberBlade XP4m32" }, - { "1023", "2200", "XGI Volari XP5" }, - { "1023", "8400", "CyberBlade/i7" }, - { "1023", "8420", "CyberBlade/i7d" }, - { "1023", "8500", "CyberBlade/i1" }, - { "1023", "8520", "CyberBlade i1" }, - { "1023", "8620", "CyberBlade/i1" }, - { "1023", "8820", "CyberBlade XPAi1" }, - { "1023", "9320", "TGUI 9320" }, - { "1023", "9350", "GUI Accelerator" }, - { "1023", "9360", "Flat panel GUI Accelerator" }, - { "1023", "9382", "Cyber 9382 [Reference design]" }, - { "1023", "9383", "Cyber 9383 [Reference design]" }, - { "1023", "9385", "Cyber 9385 [Reference design]" }, - { "1023", "9386", "Cyber 9386" }, - { "1023", "9388", "Cyber 9388" }, - { "1023", "9397", "Cyber 9397" }, - { "1023", "939a", "Cyber 9397DVD" }, - { "1023", "9420", "TGUI 9420" }, - { "1023", "9430", "TGUI 9430" }, - { "1023", "9440", "TGUI 9440" }, - { "1023", "9460", "TGUI 9460" }, - { "1023", "9470", "TGUI 9470" }, - { "1023", "9520", "Cyber 9520" }, - { "1023", "9525", "Cyber 9525" }, - { "1023", "9540", "Cyber 9540" }, - { "1023", "9660", "TGUI 9660/938x/968x" }, - { "1023", "9680", "TGUI 9680" }, - { "1023", "9682", "TGUI 9682" }, - { "1023", "9683", "TGUI 9683" }, - { "1023", "9685", "ProVIDIA 9685" }, - { "1023", "9750", "3DImage 9750" }, - { "1023", "9753", "TGUI 9753" }, - { "1023", "9754", "TGUI 9754" }, - { "1023", "9759", "TGUI 975" }, - { "1023", "9783", "TGUI 9783" }, - { "1023", "9785", "TGUI 9785" }, - { "1023", "9850", "3DImage 9850" }, - { "1023", "9880", "Blade 3D PCI/AGP" }, - { "1023", "9910", "CyberBlade/XP" }, - { "1023", "9930", "CyberBlade/XPm" }, - { "1023", "9960", "CyberBlade XP2" }, - { "1025", "1435", "M1435" }, - { "1025", "1445", "M1445" }, - { "1025", "1449", "M1449" }, - { "1025", "1451", "M1451" }, - { "1025", "1461", "M1461" }, - { "1025", "1489", "M1489" }, - { "1025", "1511", "M1511" }, - { "1025", "1512", "ALI M1512 Aladdin" }, - { "1025", "1513", "M1513" }, - { "1025", "1521", "ALI M1521 Aladdin III CPU Bridge" }, - { "1025", "1523", "ALI M1523 ISA Bridge" }, - { "1025", "1531", "M1531 Northbridge [Aladdin IV/IV+]" }, - { "1025", "1533", "M1533 PCI-to-ISA Bridge" }, - { "1025", "1535", "M1535 PCI Bridge + Super I/O + FIR" }, - { "1025", "1541", "M1541 Northbridge [Aladdin V]" }, - { "1025", "1542", "M1542 Northbridge [Aladdin V]" }, - { "1025", "1543", "M1543 PCI-to-ISA Bridge + Super I/O + FIR" }, - { "1025", "1561", "M1561 Northbridge [Aladdin 7]" }, - { "1025", "1621", "M1621 Northbridge [Aladdin-Pro II]" }, - { "1025", "1631", "M1631 Northbridge+3D Graphics [Aladdin TNT2]" }, - { "1025", "1641", "M1641 Northbridge [Aladdin-Pro IV]" }, - { "1025", "1647", "M1647 [MaGiK1] PCI North Bridge" }, - { "1025", "1671", "M1671 Northbridge [ALADDiN-P4]" }, - { "1025", "1672", "Northbridge [CyberALADDiN-P4]" }, - { "1025", "3141", "M3141" }, - { "1025", "3143", "M3143" }, - { "1025", "3145", "M3145" }, - { "1025", "3147", "M3147" }, - { "1025", "3149", "M3149" }, - { "1025", "3151", "M3151" }, - { "1025", "3307", "M3307 MPEG-I Video Controller" }, - { "1025", "3309", "M3309 MPEG-II Video w/ Software Audio Decoder" }, - { "1025", "3321", "M3321 MPEG-II Audio/Video Decoder" }, - { "1025", "5212", "M4803" }, - { "1025", "5215", "ALI PCI EIDE Controller" }, - { "1025", "5217", "M5217H" }, - { "1025", "5219", "M5219" }, - { "1025", "5225", "M5225" }, - { "1025", "5229", "M5229" }, - { "1025", "5235", "M5235" }, - { "1025", "5237", "M5237 PCI USB Host Controller" }, - { "1025", "5240", "EIDE Controller" }, - { "1025", "5241", "PCMCIA Bridge" }, - { "1025", "5242", "General Purpose Controller" }, - { "1025", "5243", "PCI to PCI Bridge Controller" }, - { "1025", "5244", "Floppy Disk Controller" }, - { "1025", "5247", "M1541 PCI to PCI Bridge" }, - { "1025", "5251", "M5251 P1394 Controller" }, - { "1025", "5427", "PCI to AGP Bridge" }, - { "1025", "5451", "M5451 PCI AC-Link Controller Audio Device" }, - { "1025", "5453", "M5453 PCI AC-Link Controller Modem Device" }, - { "1025", "7101", "M7101 PCI PMU Power Management Controller" }, - { "1025", "9602", "AMD RS780/RS880 PCI to PCI bridge (int gfx)" }, - { "1028", "0001", "PowerEdge Expandable RAID Controller 2/Si" }, - { "1028", "0002", "PowerEdge Expandable RAID Controller 3/Di" }, - { "1028", "0003", "PowerEdge Expandable RAID Controller 3/Si" }, - { "1028", "0004", "PowerEdge Expandable RAID Controller 3/Di [Iguana]" }, - { "1028", "0006", "PowerEdge Expandable RAID Controller 3/Di" }, - { "1028", "0007", "Remote Access Card III" }, - { "1028", "0008", "Remote Access Card III" }, - { "1028", "0009", "Remote Access Card III: BMC/SMIC device not present" }, - { "1028", "000a", "PowerEdge Expandable RAID Controller 3/Di" }, - { "1028", "000c", "Embedded Remote Access or ERA/O" }, - { "1028", "000d", "Embedded Remote Access: BMC/SMIC device" }, - { "1028", "000e", "PowerEdge Expandable RAID controller 4/Di" }, - { "1028", "000f", "PowerEdge Expandable RAID controller 4/Di" }, - { "1028", "0010", "Remote Access Card 4" }, - { "1028", "0011", "Remote Access Card 4 Daughter Card" }, - { "1028", "0012", "Remote Access Card 4 Daughter Card Virtual UART" }, - { "1028", "0013", "PowerEdge Expandable RAID controller 4" }, - { "1028", "0014", "Remote Access Card 4 Daughter Card SMIC interface" }, - { "1028", "0015", "PowerEdge Expandable RAID controller 5" }, - { "1028", "0016", "PowerEdge Expandable RAID controller S300" }, - { "1028", "0073", "NV-RAM Adapter" }, - { "102a", "0000", "HYDRA" }, - { "102a", "0010", "ASPEN" }, - { "102a", "001f", "AHA-2940U2/U2W /7890/7891 SCSI Controllers" }, - { "102a", "00c5", "AIC-7899 U160/m SCSI Controller" }, - { "102a", "00cf", "AIC-7899P U160/m" }, - { "102b", "0010", "MGA-I [Impression?]" }, - { "102b", "0100", "MGA 1064SG [Mystique]" }, - { "102b", "0518", "MGA-II [Athena]" }, - { "102b", "0519", "MGA 2064W [Millennium]" }, - { "102b", "051a", "MGA 1064SG [Mystique]" }, - { "102b", "051b", "MGA 2164W [Millennium II]" }, - { "102b", "051e", "MGA 1064SG [Mystique] AGP" }, - { "102b", "051f", "MGA 2164W [Millennium II] AGP" }, - { "102b", "0520", "MGA G200" }, - { "102b", "0521", "MGA G200 AGP" }, - { "102b", "0522", "MGA G200e [Pilot] ServerEngines (SEP1)" }, - { "102b", "0525", "MGA G400/G450" }, - { "102b", "0527", "Parhelia" }, - { "102b", "0528", "Parhelia" }, - { "102b", "0530", "MGA G200EV" }, - { "102b", "0532", "MGA G200eW WPCM450" }, - { "102b", "0533", "MGA G200EH" }, - { "102b", "0534", "G200eR2" }, - { "102b", "0536", "Integrated Matrox G200eW3 Graphics Controller" }, - { "102b", "0538", "MGA G200eH3" }, - { "102b", "0540", "M91XX" }, - { "102b", "0550", "SV2" }, - { "102b", "0d10", "MGA Ultima/Impression" }, - { "102b", "1000", "MGA G100 [Productiva]" }, - { "102b", "1001", "MGA G100 [Productiva] AGP" }, - { "102b", "2007", "MGA Mistral" }, - { "102b", "2527", "Millennium G550" }, - { "102b", "2537", "Millennium P650/P750" }, - { "102b", "2538", "Millennium P650 PCIe" }, - { "102b", "2539", "Millennium P690" }, - { "102b", "4164", "Morphis QxT frame grabber" }, - { "102b", "43b4", "Morphis Qxt encoding engine" }, - { "102b", "4510", "Morphis COM port" }, - { "102b", "4536", "VIA Framegrabber" }, - { "102b", "4686", "Concord GX (customized Intel 82541)" }, - { "102b", "475b", "Solios eCL/XCL-B frame grabber" }, - { "102b", "475d", "Vio frame grabber family" }, - { "102b", "475f", "Solios (single-Full) CL frame grabber" }, - { "102b", "47a1", "Solios eA/XA frame grabber" }, - { "102b", "47a2", "Solios COM port" }, - { "102b", "47c1", "Solios (dual-Base/single-Medium) CL frame grabber" }, - { "102b", "47c2", "Solios COM port" }, - { "102b", "4949", "Radient frame grabber family" }, - { "102b", "4cdc", "Morphis JPEG2000 accelerator" }, - { "102b", "4f54", "Morphis (e)Quad frame grabber" }, - { "102b", "4fc5", "Morphis (e)Dual frame grabber" }, - { "102b", "5e10", "Morphis aux I/O" }, - { "102b", "6573", "Shark 10/100 Multiport SwitchNIC" }, - { "102c", "00b8", "F64310" }, - { "102c", "00c0", "F69000 HiQVideo" }, - { "102c", "00d0", "F65545" }, - { "102c", "00d8", "F65545" }, - { "102c", "00dc", "F65548" }, - { "102c", "00e0", "F65550" }, - { "102c", "00e4", "F65554" }, - { "102c", "00e5", "F65555 HiQVPro" }, - { "102c", "00f0", "F68554" }, - { "102c", "00f4", "F68554 HiQVision" }, - { "102c", "00f5", "F68555" }, - { "102c", "0c30", "F69030" }, - { "102d", "50dc", "3328 Audio" }, - { "102f", "0009", "r4x00" }, - { "102f", "000a", "TX3927 MIPS RISC PCI Controller" }, - { "102f", "0020", "ATM Meteor 155" }, - { "102f", "0030", "TC35815CF PCI 10/100 Mbit Ethernet Controller" }, - { "102f", "0031", "TC35815CF PCI 10/100 Mbit Ethernet Controller with WOL" }, - { "102f", "0032", "TC35815CF PCI 10/100 Mbit Ethernet Controller on TX4939" }, - { "102f", "0105", "TC86C001 [goku-s] IDE" }, - { "102f", "0106", "TC86C001 [goku-s] USB 1.1 Host" }, - { "102f", "0107", "TC86C001 [goku-s] USB Device Controller" }, - { "102f", "0108", "TC86C001 [goku-s] I2C/SIO/GPIO Controller" }, - { "102f", "0180", "TX4927/38 MIPS RISC PCI Controller" }, - { "102f", "0181", "TX4925 MIPS RISC PCI Controller" }, - { "102f", "0182", "TX4937 MIPS RISC PCI Controller" }, - { "102f", "01b4", "Celleb platform IDE interface" }, - { "102f", "01b5", "SCC USB 2.0 EHCI controller" }, - { "102f", "01b6", "SCC USB 1.1 OHCI controller" }, - { "1031", "5601", "DC20 ASIC" }, - { "1031", "5607", "Video I/O & motion JPEG compressor" }, - { "1031", "5631", "Media 3D" }, - { "1031", "6057", "MiroVideo DC10/DC30+" }, - { "1033", "0000", "Vr4181A USB Host or Function Control Unit" }, - { "1033", "0001", "PCI to 486-like bus Bridge" }, - { "1033", "0002", "PCI to VL98 Bridge" }, - { "1033", "0003", "ATM Controller" }, - { "1033", "0004", "R4000 PCI Bridge" }, - { "1033", "0005", "PCI to 486-like bus Bridge" }, - { "1033", "0006", "PC-9800 Graphic Accelerator" }, - { "1033", "0007", "PCI to UX-Bus Bridge" }, - { "1033", "0008", "PC-9800 Graphic Accelerator" }, - { "1033", "0009", "PCI to PC9800 Core-Graph Bridge" }, - { "1033", "0016", "PCI to VL Bridge" }, - { "1033", "001a", "[Nile II]" }, - { "1033", "0021", "Vrc4373 [Nile I]" }, - { "1033", "0029", "PowerVR PCX1" }, - { "1033", "002a", "PowerVR 3D" }, - { "1033", "002c", "Star Alpha 2" }, - { "1033", "002d", "PCI to C-bus Bridge" }, - { "1033", "0035", "OHCI USB Controller" }, - { "1033", "003b", "PCI to C-bus Bridge" }, - { "1033", "003e", "NAPCCARD Cardbus Controller" }, - { "1033", "0046", "PowerVR PCX2 [midas]" }, - { "1033", "005a", "Vrc5074 [Nile 4]" }, - { "1033", "0063", "uPD72862 [Firewarden] IEEE1394 OHCI 1.0 Link Controller" }, - { "1033", "0067", "PowerVR Neon 250 Chipset" }, - { "1033", "0072", "uPD72874 IEEE1394 OHCI 1.1 3-port PHY-Link Ctrlr" }, - { "1033", "0074", "56k Voice Modem" }, - { "1033", "009b", "Vrc5476" }, - { "1033", "00a5", "VRC4173" }, - { "1033", "00a6", "VRC5477 AC97" }, - { "1033", "00cd", "uPD72870 [Firewarden] IEEE1394a OHCI 1.0 Link/3-port PHY Controller" }, - { "1033", "00ce", "uPD72871 [Firewarden] IEEE1394a OHCI 1.0 Link/1-port PHY Controller" }, - { "1033", "00df", "Vr4131" }, - { "1033", "00e0", "uPD72010x USB 2.0 Controller" }, - { "1033", "00e7", "uPD72873 [Firewarden] IEEE1394a OHCI 1.1 Link/2-port PHY Controller" }, - { "1033", "00f2", "uPD72874 [Firewarden] IEEE1394a OHCI 1.1 Link/3-port PHY Controller" }, - { "1033", "00f3", "uPD6113x Multimedia Decoder/Processor [EMMA2]" }, - { "1033", "010c", "VR7701" }, - { "1033", "0125", "uPD720400 PCI Express - PCI/PCI-X Bridge" }, - { "1033", "013a", "Dual Tuner/MPEG Encoder" }, - { "1033", "0194", "uPD720200 USB 3.0 Host Controller" }, - { "1033", "01e7", "uPD72873 [Firewarden] IEEE1394a OHCI 1.1 Link/2-port PHY Controller" }, - { "1033", "01f2", "uPD72874 [Firewarden] IEEE1394a OHCI 1.1 Link/3-port PHY Controller" }, - { "1036", "0000", "TMC-18C30 [36C70]" }, - { "1039", "0001", "AGP Port (virtual PCI-to-PCI bridge)" }, - { "1039", "0002", "AGP Port (virtual PCI-to-PCI bridge)" }, - { "1039", "0003", "AGP Port (virtual PCI-to-PCI bridge)" }, - { "1039", "0004", "PCI-to-PCI bridge" }, - { "1039", "0006", "85C501/2/3" }, - { "1039", "0008", "SiS85C503/5513 (LPC Bridge)" }, - { "1039", "0009", "5595 Power Management Controller" }, - { "1039", "000a", "PCI-to-PCI bridge" }, - { "1039", "0016", "SiS961/2/3 SMBus controller" }, - { "1039", "0018", "SiS85C503/5513 (LPC Bridge)" }, - { "1039", "0163", "163 802.11b/g Wireless LAN Adapter" }, - { "1039", "0180", "RAID bus controller 180 SATA/PATA [SiS]" }, - { "1039", "0181", "SATA" }, - { "1039", "0182", "182 SATA/RAID Controller" }, - { "1039", "0186", "AHCI Controller (0106)" }, - { "1039", "0190", "190 Ethernet Adapter" }, - { "1039", "0191", "191 Gigabit Ethernet Adapter" }, - { "1039", "0200", "5597/5598/6326 VGA" }, - { "1039", "0204", "82C204" }, - { "1039", "0205", "SG86C205" }, - { "1039", "0300", "300/305 PCI/AGP VGA Display Adapter" }, - { "1039", "0310", "315H PCI/AGP VGA Display Adapter" }, - { "1039", "0315", "315 PCI/AGP VGA Display Adapter" }, - { "1039", "0325", "315PRO PCI/AGP VGA Display Adapter" }, - { "1039", "0330", "330 [Xabre] PCI/AGP VGA Display Adapter" }, - { "1039", "0406", "85C501/2" }, - { "1039", "0496", "SiS85C496 PCI & CPU Memory Controller (PCM)" }, - { "1039", "0530", "530 Host" }, - { "1039", "0540", "540 Host" }, - { "1039", "0550", "550 Host" }, - { "1039", "0597", "5513C" }, - { "1039", "0601", "85C601" }, - { "1039", "0620", "620 Host" }, - { "1039", "0630", "630 Host" }, - { "1039", "0633", "633 Host" }, - { "1039", "0635", "635 Host" }, - { "1039", "0645", "SiS645 Host & Memory & AGP Controller" }, - { "1039", "0646", "SiS645DX Host & Memory & AGP Controller" }, - { "1039", "0648", "645xx" }, - { "1039", "0649", "SiS649 Host" }, - { "1039", "0650", "650/M650 Host" }, - { "1039", "0651", "651 Host" }, - { "1039", "0655", "655 Host" }, - { "1039", "0660", "660 Host" }, - { "1039", "0661", "661FX/M661FX/M661MX Host" }, - { "1039", "0662", "662 Host" }, - { "1039", "0671", "671MX" }, - { "1039", "0730", "730 Host" }, - { "1039", "0733", "733 Host" }, - { "1039", "0735", "735 Host" }, - { "1039", "0740", "740 Host" }, - { "1039", "0741", "741/741GX/M741 Host" }, - { "1039", "0745", "745 Host" }, - { "1039", "0746", "746 Host" }, - { "1039", "0755", "755 Host" }, - { "1039", "0760", "760/M760 Host" }, - { "1039", "0761", "761/M761 Host" }, - { "1039", "0900", "SiS900 PCI Fast Ethernet" }, - { "1039", "0961", "SiS961 [MuTIOL Media IO]" }, - { "1039", "0962", "SiS962 [MuTIOL Media IO] LPC Controller" }, - { "1039", "0963", "SiS963 [MuTIOL Media IO] LPC Controller" }, - { "1039", "0964", "SiS964 [MuTIOL Media IO] LPC Controller" }, - { "1039", "0965", "SiS965 [MuTIOL Media IO]" }, - { "1039", "0966", "SiS966 [MuTIOL Media IO]" }, - { "1039", "0968", "SiS968 [MuTIOL Media IO]" }, - { "1039", "1180", "SATA Controller / IDE mode" }, - { "1039", "1182", "SATA Controller / RAID mode" }, - { "1039", "1183", "SATA Controller / IDE mode" }, - { "1039", "1184", "AHCI Controller / RAID mode" }, - { "1039", "1185", "AHCI IDE Controller (0106)" }, - { "1039", "3602", "83C602" }, - { "1039", "5107", "5107" }, - { "1039", "5300", "SiS540 PCI Display Adapter" }, - { "1039", "5315", "550 PCI/AGP VGA Display Adapter" }, - { "1039", "5401", "486 PCI Chipset" }, - { "1039", "5511", "5511/5512" }, - { "1039", "5513", "5513 IDE Controller" }, - { "1039", "5517", "5517" }, - { "1039", "5571", "5571" }, - { "1039", "5581", "5581 Pentium Chipset" }, - { "1039", "5582", "5582" }, - { "1039", "5591", "5591/5592 Host" }, - { "1039", "5596", "5596 Pentium Chipset" }, - { "1039", "5597", "5597 [SiS5582]" }, - { "1039", "5600", "5600 Host" }, - { "1039", "6204", "Video decoder & MPEG interface" }, - { "1039", "6205", "VGA Controller" }, - { "1039", "6236", "6236 3D-AGP" }, - { "1039", "6300", "630/730 PCI/AGP VGA Display Adapter" }, - { "1039", "6306", "530/620 PCI/AGP VGA Display Adapter" }, - { "1039", "6325", "65x/M650/740 PCI/AGP VGA Display Adapter" }, - { "1039", "6326", "86C326 5598/6326" }, - { "1039", "6330", "661/741/760 PCI/AGP or 662/761Gx PCIE VGA Display Adapter" }, - { "1039", "6350", "770/670 PCIE VGA Display Adapter" }, - { "1039", "6351", "771/671 PCIE VGA Display Adapter" }, - { "1039", "7001", "USB 1.1 Controller" }, - { "1039", "7002", "USB 2.0 Controller" }, - { "1039", "7007", "FireWire Controller" }, - { "1039", "7012", "SiS7012 AC'97 Sound Controller" }, - { "1039", "7013", "AC'97 Modem Controller" }, - { "1039", "7016", "SiS7016 PCI Fast Ethernet Adapter" }, - { "1039", "7018", "SiS PCI Audio Accelerator" }, - { "1039", "7019", "SiS7019 Audio Accelerator" }, - { "1039", "7502", "Azalia Audio Controller" }, - { "103c", "1005", "A4977A Visualize EG" }, - { "103c", "1008", "Visualize FX" }, - { "103c", "1028", "Tach TL Fibre Channel Host Adapter" }, - { "103c", "1029", "Tach XL2 Fibre Channel Host Adapter" }, - { "103c", "102a", "Tach TS Fibre Channel Host Adapter" }, - { "103c", "1030", "J2585A DeskDirect 10/100VG NIC" }, - { "103c", "1031", "J2585B HP 10/100VG PCI LAN Adapter" }, - { "103c", "1040", "J2973A DeskDirect 10BaseT NIC" }, - { "103c", "1041", "J2585B DeskDirect 10/100 NIC" }, - { "103c", "1042", "J2970A DeskDirect 10BaseT/2 NIC" }, - { "103c", "1048", "Diva Serial [GSP] Multiport UART" }, - { "103c", "1054", "PCI Local Bus Adapter" }, - { "103c", "1064", "79C970 PCnet Ethernet Controller" }, - { "103c", "108b", "Visualize FXe" }, - { "103c", "10c1", "NetServer Smart IRQ Router" }, - { "103c", "10ed", "TopTools Remote Control" }, - { "103c", "10f0", "rio System Bus Adapter" }, - { "103c", "10f1", "rio I/O Controller" }, - { "103c", "1219", "NetServer PCI Hot-Plug Controller" }, - { "103c", "121a", "NetServer SMIC Controller" }, - { "103c", "121b", "NetServer Legacy COM Port Decoder" }, - { "103c", "121c", "NetServer PCI COM Port Decoder" }, - { "103c", "1229", "zx1 System Bus Adapter" }, - { "103c", "122a", "zx1 I/O Controller" }, - { "103c", "122e", "PCI-X Local Bus Adapter" }, - { "103c", "127b", "sx1000 System Bus Adapter" }, - { "103c", "127c", "sx1000 I/O Controller" }, - { "103c", "128d", "Diva [GSP] Management Board" }, - { "103c", "1290", "Auxiliary Diva Serial Port" }, - { "103c", "1291", "Auxiliary Diva Serial Port" }, - { "103c", "12b4", "zx1 QuickSilver AGP8x Local Bus Adapter" }, - { "103c", "12eb", "sx2000 System Bus Adapter" }, - { "103c", "12ec", "sx2000 I/O Controller" }, - { "103c", "12ee", "PCI-X 2.0 Local Bus Adapter" }, - { "103c", "1302", "RMP-3 Shared Memory Driver" }, - { "103c", "1303", "RMP-3 (Remote Management Processor)" }, - { "103c", "22f6", "iLO5 Virtual USB Controller" }, - { "103c", "2910", "E2910A PCIBus Exerciser" }, - { "103c", "2925", "E2925A 32 Bit, 33 MHzPCI Exerciser & Analyzer" }, - { "103c", "3206", "Adaptec Embedded Serial ATA HostRAID" }, - { "103c", "3220", "Smart Array P600" }, - { "103c", "3230", "Smart Array Controller" }, - { "103c", "3238", "Smart Array E200i (SAS Controller)" }, - { "103c", "3239", "Smart Array Gen9 Controllers" }, - { "103c", "323a", "Smart Array G6 controllers" }, - { "103c", "323b", "Smart Array Gen8 Controllers" }, - { "103c", "323c", "Smart Array Gen8+ Controllers" }, - { "103c", "3300", "Integrated Lights-Out Standard Virtual USB Controller" }, - { "103c", "3301", "Integrated Lights-Out Standard Serial Port" }, - { "103c", "3302", "Integrated Lights-Out Standard KCS Interface" }, - { "103c", "3305", "Integrated Lights-Out (iLO2) Controller" }, - { "103c", "3306", "Integrated Lights-Out Standard Slave Instrumentation & System Support" }, - { "103c", "3307", "Integrated Lights-Out Standard Management Processor Support and Messaging" }, - { "103c", "3308", "Integrated Lights-Out Standard MS Watchdog Timer" }, - { "103c", "4030", "zx2 System Bus Adapter" }, - { "103c", "4031", "zx2 I/O Controller" }, - { "103c", "4037", "PCIe Local Bus Adapter" }, - { "103c", "9602", "AMD RS780/RS880 PCI to PCI bridge (int gfx)" }, - { "1042", "1000", "PC Tech RZ1000" }, - { "1042", "1001", "PC Tech RZ1001" }, - { "1042", "3000", "Samurai_0" }, - { "1042", "3010", "Samurai_1" }, - { "1042", "3020", "Samurai_IDE" }, - { "1043", "0464", "Radeon R9 270x GPU" }, - { "1043", "0521", "RX580 [RX 580 Dual O8G]" }, - { "1043", "0675", "ISDNLink P-IN100-ST-D" }, - { "1043", "9602", "AMD RS780/RS880 PCI to PCI bridge (int gfx)" }, - { "1044", "1012", "Domino RAID Engine" }, - { "1044", "a400", "SmartCache/Raid I-IV Controller" }, - { "1044", "a500", "PCI Bridge" }, - { "1044", "a501", "SmartRAID V Controller" }, - { "1044", "a511", "SmartRAID V Controller" }, - { "1044", "c066", "3010S Ultra3 Dual Channel" }, - { "1045", "a0f8", "82C750 [Vendetta] USB Controller" }, - { "1045", "c101", "92C264" }, - { "1045", "c178", "92C178" }, - { "1045", "c556", "82X556 [Viper]" }, - { "1045", "c557", "82C557 [Viper-M]" }, - { "1045", "c558", "82C558 [Viper-M ISA+IDE]" }, - { "1045", "c567", "82C750 [Vendetta], device 0" }, - { "1045", "c568", "82C750 [Vendetta], device 1" }, - { "1045", "c569", "82C579 [Viper XPress+ Chipset]" }, - { "1045", "c621", "82C621 [Viper-M/N+]" }, - { "1045", "c700", "82C700 [FireStar]" }, - { "1045", "c701", "82C701 [FireStar Plus]" }, - { "1045", "c814", "82C814 [Firebridge 1]" }, - { "1045", "c822", "82C822" }, - { "1045", "c824", "82C824" }, - { "1045", "c825", "82C825 [Firebridge 2]" }, - { "1045", "c832", "82C832" }, - { "1045", "c861", "82C861 OHCI USB Host" }, - { "1045", "c881", "82C881 [FireLink] 1394 OHCI Link Controller" }, - { "1045", "c895", "82C895" }, - { "1045", "c935", "EV1935 ECTIVA MachOne PCIAudio" }, - { "1045", "d568", "82C825 [Firebridge 2]" }, - { "1045", "d721", "IDE [FireStar]" }, - { "1048", "0c60", "Gladiac MX" }, - { "1048", "0d22", "Quadro4 900XGL [ELSA GLoria4 900XGL]" }, - { "1048", "1000", "QuickStep 1000" }, - { "1048", "3000", "QuickStep 3000" }, - { "1048", "8901", "Gloria XL" }, - { "104a", "0000", "STLS2F Host Bridge" }, - { "104a", "0008", "STG 2000X" }, - { "104a", "0009", "STG 1764X" }, - { "104a", "0010", "STG4000 [3D Prophet Kyro Series]" }, - { "104a", "0201", "STPC Vega Northbridge" }, - { "104a", "0209", "STPC Consumer/Industrial North- and Southbridge" }, - { "104a", "020a", "STPC Atlas/ConsumerS/Consumer IIA Northbridge" }, - { "104a", "020b", "STPC Consumer II ISA Bridge" }, - { "104a", "0210", "STPC Atlas ISA Bridge" }, - { "104a", "021a", "STPC Consumer S Southbridge" }, - { "104a", "021b", "STPC Consumer IIA Southbridge" }, - { "104a", "0220", "STPC Industrial PCI to PCCard bridge" }, - { "104a", "0228", "STPC Atlas IDE" }, - { "104a", "0229", "STPC Vega IDE" }, - { "104a", "0230", "STPC Atlas/Vega OHCI USB Controller" }, - { "104a", "0238", "STPC Vega LAN" }, - { "104a", "0500", "ST70137 [Unicorn] ADSL DMT Transceiver" }, - { "104a", "0564", "STPC Client Northbridge" }, - { "104a", "0981", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "104a", "1746", "STG 1764X" }, - { "104a", "2774", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "104a", "3520", "MPEG-II decoder card" }, - { "104a", "55cc", "STPC Client Southbridge" }, - { "104b", "0140", "BT-946C (old) [multimaster 01]" }, - { "104b", "1040", "BT-946C (BA80C30) [MultiMaster 10]" }, - { "104b", "8130", "Flashpoint LT" }, - { "104c", "0500", "100 MBit LAN Controller" }, - { "104c", "0508", "TMS380C2X Compressor Interface" }, - { "104c", "1000", "Eagle i/f AS" }, - { "104c", "104c", "PCI1510 PC card Cardbus Controller" }, - { "104c", "3d04", "TVP4010 [Permedia]" }, - { "104c", "3d07", "TVP4020 [Permedia 2]" }, - { "104c", "8000", "PCILynx/PCILynx2 IEEE 1394 Link Layer Controller" }, - { "104c", "8009", "TSB12LV22 IEEE-1394 Controller" }, - { "104c", "8017", "PCI4410 FireWire Controller" }, - { "104c", "8019", "TSB12LV23 IEEE-1394 Controller" }, - { "104c", "8020", "TSB12LV26 IEEE-1394 Controller (Link)" }, - { "104c", "8021", "TSB43AA22 IEEE-1394 Controller (PHY/Link Integrated)" }, - { "104c", "8022", "TSB43AB22 IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx]" }, - { "104c", "8023", "TSB43AB22A IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx]" }, - { "104c", "8024", "TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)" }, - { "104c", "8025", "TSB82AA2 IEEE-1394b Link Layer Controller" }, - { "104c", "8026", "TSB43AB21 IEEE-1394a-2000 Controller (PHY/Link)" }, - { "104c", "8027", "PCI4451 IEEE-1394 Controller" }, - { "104c", "8029", "PCI4510 IEEE-1394 Controller" }, - { "104c", "802b", "PCI7410,7510,7610 OHCI-Lynx Controller" }, - { "104c", "802e", "PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller" }, - { "104c", "8031", "PCIxx21/PCIxx11/PCIx515 PC Card Controller" }, - { "104c", "8032", "OHCI Compliant IEEE 1394 Host Controller" }, - { "104c", "8033", "PCIxx21/PCIxx11 Flash Media Controller" }, - { "104c", "8034", "PCIxx21/PCIxx11 SD Host Controller" }, - { "104c", "8035", "PCIxx21/PCIxx11 Smart Card Controller" }, - { "104c", "8036", "PCI6515 Cardbus Controller" }, - { "104c", "8038", "PCI6515 SmartCard Controller" }, - { "104c", "8039", "PCIxx12 Cardbus Controller" }, - { "104c", "803a", "PCIxx12 OHCI Compliant IEEE 1394 Host Controller" }, - { "104c", "803b", "PCIxx12 Flash Media Controller" }, - { "104c", "803c", "PCIxx12 SDA Standard Compliant SD Host Controller" }, - { "104c", "803d", "PCIxx12 GemCore based SmartCard controller" }, - { "104c", "8101", "TSB43DB42 IEEE-1394a-2000 Controller (PHY/Link)" }, - { "104c", "8201", "PCI1620 Firmware Loading Function" }, - { "104c", "8204", "PCI7410/7510/7610 PCI Firmware Loading Function" }, - { "104c", "8231", "XIO2000(A)/XIO2200A PCI Express-to-PCI Bridge" }, - { "104c", "8232", "XIO3130 PCI Express Switch (Upstream)" }, - { "104c", "8233", "XIO3130 PCI Express Switch (Downstream)" }, - { "104c", "8235", "XIO2200A IEEE-1394a-2000 Controller (PHY/Link)" }, - { "104c", "823e", "XIO2213A/B/XIO2221 PCI Express to PCI Bridge [Cheetah Express]" }, - { "104c", "823f", "XIO2213A/B/XIO2221 IEEE-1394b OHCI Controller [Cheetah Express]" }, - { "104c", "8240", "XIO2001 PCI Express-to-PCI Bridge" }, - { "104c", "8241", "TUSB73x0 SuperSpeed USB 3.0 xHCI Host Controller" }, - { "104c", "8400", "ACX 100 22Mbps Wireless Interface" }, - { "104c", "8401", "ACX 100 22Mbps Wireless Interface" }, - { "104c", "8888", "Multicore DSP+ARM KeyStone II SOC" }, - { "104c", "9000", "Wireless Interface (of unknown type)" }, - { "104c", "9065", "TMS320DM642" }, - { "104c", "9066", "ACX 111 54Mbps Wireless Interface" }, - { "104c", "a001", "TDC1570" }, - { "104c", "a100", "TDC1561" }, - { "104c", "a102", "TNETA1575 HyperSAR Plus w/PCI Host i/f & UTOPIA i/f" }, - { "104c", "a106", "TMS320C6414 TMS320C6415 TMS320C6416" }, - { "104c", "ac10", "PCI1050" }, - { "104c", "ac11", "PCI1053" }, - { "104c", "ac12", "PCI1130" }, - { "104c", "ac13", "PCI1031" }, - { "104c", "ac15", "PCI1131" }, - { "104c", "ac16", "PCI1250" }, - { "104c", "ac17", "PCI1220" }, - { "104c", "ac18", "PCI1260" }, - { "104c", "ac19", "PCI1221" }, - { "104c", "ac1a", "PCI1210" }, - { "104c", "ac1b", "PCI1450" }, - { "104c", "ac1c", "PCI1225" }, - { "104c", "ac1d", "PCI1251A" }, - { "104c", "ac1e", "PCI1211" }, - { "104c", "ac1f", "PCI1251B" }, - { "104c", "ac20", "TI 2030" }, - { "104c", "ac21", "PCI2031" }, - { "104c", "ac22", "PCI2032 PCI Docking Bridge" }, - { "104c", "ac23", "PCI2250 PCI-to-PCI Bridge" }, - { "104c", "ac28", "PCI2050 PCI-to-PCI Bridge" }, - { "104c", "ac2c", "PCI2060 PCI-to-PCI Bridge" }, - { "104c", "ac30", "PCI1260 PC card Cardbus Controller" }, - { "104c", "ac40", "PCI4450 PC card Cardbus Controller" }, - { "104c", "ac41", "PCI4410 PC card Cardbus Controller" }, - { "104c", "ac42", "PCI4451 PC card Cardbus Controller" }, - { "104c", "ac44", "PCI4510 PC card Cardbus Controller" }, - { "104c", "ac46", "PCI4520 PC card Cardbus Controller" }, - { "104c", "ac47", "PCI7510 PC card Cardbus Controller" }, - { "104c", "ac48", "PCI7610 PC Card Cardbus Controller" }, - { "104c", "ac49", "PCI7410 PC Card Cardbus Controller" }, - { "104c", "ac4a", "PCI7510/7610 CardBus Bridge" }, - { "104c", "ac4b", "PCI7610 SD/MMC controller" }, - { "104c", "ac4c", "PCI7610 Memory Stick controller" }, - { "104c", "ac50", "PCI1410 PC card Cardbus Controller" }, - { "104c", "ac51", "PCI1420 PC card Cardbus Controller" }, - { "104c", "ac52", "PCI1451 PC card Cardbus Controller" }, - { "104c", "ac53", "PCI1421 PC card Cardbus Controller" }, - { "104c", "ac54", "PCI1620 PC Card Controller" }, - { "104c", "ac55", "PCI1520 PC card Cardbus Controller" }, - { "104c", "ac56", "PCI1510 PC card Cardbus Controller" }, - { "104c", "ac60", "PCI2040 PCI to DSP Bridge Controller" }, - { "104c", "ac8d", "PCI 7620" }, - { "104c", "ac8e", "PCI7420 CardBus Controller" }, - { "104c", "ac8f", "PCI7420/7620 SD/MS-Pro Controller" }, - { "104c", "b001", "TMS320C6424" }, - { "104c", "fe00", "FireWire Host Controller" }, - { "104c", "fe03", "12C01A FireWire Host Controller" }, - { "104d", "8004", "DTL-H2500 [Playstation development board]" }, - { "104d", "8009", "CXD1947Q i.LINK Controller" }, - { "104d", "800c", "DTL-H800 [PS1 sound development board]" }, - { "104d", "8039", "CXD3222 i.LINK Controller" }, - { "104d", "8047", "PS2 TOOL MRP" }, - { "104d", "8056", "Rockwell HCF 56K modem" }, - { "104d", "808a", "Memory Stick Controller" }, - { "104d", "80ff", "PS2 Performance Analyzer" }, - { "104d", "814a", "PS2 Performance Analyzer" }, - { "104d", "8183", "ATHENS [PS3 prototype developer interface card]" }, - { "104d", "81b0", "BM-1 [PSP TOOL Board Management Device]" }, - { "104d", "81c3", "VO-4 [PSP TOOL Video Output Device]" }, - { "104d", "81ce", "SxS Pro memory card" }, - { "104d", "81ff", "PS3 TOOL MRP" }, - { "104d", "8200", "PS3 TOOL RSX Tracing FPGA" }, - { "104d", "820e", "CXD9208GP [PS3 PS2 emulation subsystem adapter]" }, - { "104d", "905c", "SxS Pro memory card" }, - { "104d", "907f", "SxS Pro+ memory card" }, - { "104d", "908f", "Aeolia ACPI" }, - { "104d", "909e", "Aeolia Ethernet Controller (Marvell Yukon 2 Family)" }, - { "104d", "909f", "Aeolia SATA AHCI Controller" }, - { "104d", "90a0", "Aeolia SD/MMC Host Controller" }, - { "104d", "90a1", "Aeolia PCI Express Glue and Miscellaneous Devices" }, - { "104d", "90a2", "Aeolia DMA Controller" }, - { "104d", "90a3", "Aeolia Memory (DDR3/SPM)" }, - { "104d", "90a4", "Aeolia USB 3.0 xHCI Host Controller" }, - { "104d", "90bc", "SxS Pro+ memory card" }, - { "104d", "90c8", "Belize ACPI" }, - { "104d", "90c9", "Belize Ethernet Controller" }, - { "104d", "90ca", "Belize SATA AHCI Controller" }, - { "104d", "90cb", "Belize SD/MMC Host Controller" }, - { "104d", "90cc", "Belize PCI Express Glue and Miscellaneous Devices" }, - { "104d", "90cd", "Belize DMA Controller" }, - { "104d", "90ce", "Belize Memory (DDR3/SPM)" }, - { "104d", "90cf", "Belize USB 3.0 xHCI Host Controller" }, - { "104d", "90d7", "Baikal ACPI" }, - { "104d", "90d8", "Baikal Ethernet Controller" }, - { "104d", "90d9", "Baikal SATA AHCI Controller" }, - { "104d", "90da", "Baikal SD/MMC Host Controller" }, - { "104d", "90db", "Baikal PCI Express Glue and Miscellaneous Devices" }, - { "104d", "90dc", "Baikal DMA Controller" }, - { "104d", "90dd", "Baikal Memory (DDR3/SPM)" }, - { "104d", "90de", "Baikal USB 3.0 xHCI Host Controller" }, - { "104e", "0017", "OTI-64017" }, - { "104e", "0107", "OTI-107 [Spitfire]" }, - { "104e", "0109", "Video Adapter" }, - { "104e", "0111", "OTI-64111 [Spitfire]" }, - { "104e", "0217", "OTI-64217" }, - { "104e", "0317", "OTI-64317" }, - { "1050", "0000", "NE2000" }, - { "1050", "0001", "W83769F" }, - { "1050", "0033", "W89C33D 802.11 a/b/g BB/MAC" }, - { "1050", "0105", "W82C105" }, - { "1050", "0840", "W89C840" }, - { "1050", "0940", "W89C940" }, - { "1050", "5a5a", "W89C940F" }, - { "1050", "6692", "W6692" }, - { "1050", "9921", "W99200F MPEG-1 Video Encoder" }, - { "1050", "9922", "W99200F/W9922PF MPEG-1/2 Video Encoder" }, - { "1050", "9970", "W9970CF" }, - { "1054", "3009", "2Gbps Fibre Channel to PCI HBA 3009" }, - { "1054", "300a", "4Gbps Fibre Channel to PCI-X HBA 300a" }, - { "1054", "300b", "4Gbps Fibre Channel to PCI-X HBA 300b" }, - { "1054", "300f", "ColdFusion 3 Chipset Processor to I/O Controller" }, - { "1054", "3010", "ColdFusion 3 Chipset Memory Controller Hub" }, - { "1054", "3011", "ColdFusion 3e Chipset Processor to I/O Controller" }, - { "1054", "3012", "ColdFusion 3e Chipset Memory Controller Hub" }, - { "1054", "3017", "Unassigned Hitachi Shared FC Device 3017" }, - { "1054", "301b", "Virtual VGA Device" }, - { "1054", "301d", "PCIe-to-PCIe Bridge with Virtualization IO Assist Feature" }, - { "1054", "3020", "FIVE-EX based Fibre Channel to PCIe HBA" }, - { "1054", "302c", "M001 PCI Express Switch Upstream Port" }, - { "1054", "302d", "M001 PCI Express Switch Downstream Port" }, - { "1054", "3070", "Hitachi FIVE-FX Fibre Channel to PCIe HBA" }, - { "1054", "3505", "SH7751 PCI Controller (PCIC)" }, - { "1054", "350e", "SH7751R PCI Controller (PCIC)" }, - { "1055", "9130", "SLC90E66 [Victory66] IDE" }, - { "1055", "9460", "SLC90E66 [Victory66] ISA" }, - { "1055", "9462", "SLC90E66 [Victory66] USB" }, - { "1055", "9463", "SLC90E66 [Victory66] ACPI" }, - { "1055", "e420", "LAN9420/LAN9420i" }, - { "1057", "0001", "MPC105 [Eagle]" }, - { "1057", "0002", "MPC106 [Grackle]" }, - { "1057", "0003", "MPC8240 [Kahlua]" }, - { "1057", "0004", "MPC107" }, - { "1057", "0006", "MPC8245 [Unity]" }, - { "1057", "0008", "MPC8540" }, - { "1057", "0009", "MPC8560" }, - { "1057", "0012", "MPC8548 [PowerQUICC III]" }, - { "1057", "0100", "MC145575 [HFC-PCI]" }, - { "1057", "0431", "KTI829c 100VG" }, - { "1057", "1073", "Nokia N770" }, - { "1057", "1219", "Nokia N800" }, - { "1057", "1801", "DSP56301 Digital Signal Processor" }, - { "1057", "18c0", "MPC8265A/8266/8272" }, - { "1057", "18c1", "MPC8271/MPC8272" }, - { "1057", "3052", "SM56 Data Fax Modem" }, - { "1057", "3410", "DSP56361 Digital Signal Processor" }, - { "1057", "4801", "Raven" }, - { "1057", "4802", "Falcon" }, - { "1057", "4803", "Hawk" }, - { "1057", "4806", "CPX8216" }, - { "1057", "480b", "MPC7410" }, - { "1057", "4d68", "20268" }, - { "1057", "5600", "SM56 PCI Modem" }, - { "1057", "5608", "Wildcard X100P" }, - { "1057", "5803", "MPC5200" }, - { "1057", "5806", "MCF54 Coldfire" }, - { "1057", "5808", "MPC8220" }, - { "1057", "5809", "MPC5200B" }, - { "1057", "6400", "MPC190 Security Processor (S1 family, encryption)" }, - { "1057", "6405", "MPC184 Security Processor (S1 family)" }, - { "105a", "0d30", "PDC20265 (FastTrak100 Lite/Ultra100)" }, - { "105a", "0d38", "20263" }, - { "105a", "1275", "20275" }, - { "105a", "3318", "PDC20318 (SATA150 TX4)" }, - { "105a", "3319", "PDC20319 (FastTrak S150 TX4)" }, - { "105a", "3371", "PDC20371 (FastTrak S150 TX2plus)" }, - { "105a", "3373", "PDC20378 (FastTrak 378/SATA 378)" }, - { "105a", "3375", "PDC20375 (SATA150 TX2plus)" }, - { "105a", "3376", "PDC20376 (FastTrak 376)" }, - { "105a", "3515", "PDC40719 [FastTrak TX4300/TX4310]" }, - { "105a", "3519", "PDC40519 (FastTrak TX4200)" }, - { "105a", "3570", "PDC20771 [FastTrak TX2300]" }, - { "105a", "3571", "PDC20571 (FastTrak TX2200)" }, - { "105a", "3574", "PDC20579 SATAII 150 IDE Controller" }, - { "105a", "3577", "PDC40779 (SATA 300 779)" }, - { "105a", "3d17", "PDC40718 (SATA 300 TX4)" }, - { "105a", "3d18", "PDC20518/PDC40518 (SATAII 150 TX4)" }, - { "105a", "3d73", "PDC40775 (SATA 300 TX2plus)" }, - { "105a", "3d75", "PDC20575 (SATAII150 TX2plus)" }, - { "105a", "3f20", "PDC42819 [FastTrak TX2650/TX4650]" }, - { "105a", "4302", "80333 [SuperTrak EX4350]" }, - { "105a", "4d30", "PDC20267 (FastTrak100/Ultra100)" }, - { "105a", "4d33", "20246" }, - { "105a", "4d38", "PDC20262 (FastTrak66/Ultra66)" }, - { "105a", "4d68", "PDC20268 [Ultra100 TX2]" }, - { "105a", "4d69", "20269" }, - { "105a", "5275", "PDC20276 (MBFastTrak133 Lite)" }, - { "105a", "5300", "DC5300" }, - { "105a", "6268", "PDC20270 (FastTrak100 LP/TX2/TX4)" }, - { "105a", "6269", "PDC20271 (FastTrak TX2000)" }, - { "105a", "6300", "PDC81731 [FastTrak SX8300]" }, - { "105a", "6621", "PDC20621 (FastTrak S150 SX4/FastTrak SX4000 lite)" }, - { "105a", "6622", "PDC20621 [SATA150 SX4] 4 Channel IDE RAID Controller" }, - { "105a", "6624", "PDC20621 [FastTrak SX4100]" }, - { "105a", "6626", "PDC20618 (Ultra 618)" }, - { "105a", "6629", "PDC20619 (FastTrak TX4000)" }, - { "105a", "7275", "PDC20277 (SBFastTrak133 Lite)" }, - { "105a", "8002", "SATAII150 SX8" }, - { "105a", "8350", "80333 [SuperTrak EX8350/EX16350], 80331 [SuperTrak EX8300/EX16300]" }, - { "105a", "8650", "81384 [SuperTrak EX SAS and SATA RAID Controller]" }, - { "105a", "8760", "PM8010 [SuperTrak EX SAS and SATA 6G RAID Controller]" }, - { "105a", "c350", "80333 [SuperTrak EX12350]" }, - { "105a", "e350", "80333 [SuperTrak EX24350]" }, - { "105d", "2309", "Imagine 128" }, - { "105d", "2339", "Imagine 128-II" }, - { "105d", "493d", "Imagine 128 T2R [Ticket to Ride]" }, - { "105d", "5348", "Revolution 4" }, - { "1060", "0001", "UM82C881" }, - { "1060", "0002", "UM82C886" }, - { "1060", "0101", "UM8673F" }, - { "1060", "0881", "UM8881" }, - { "1060", "0886", "UM8886F" }, - { "1060", "0891", "UM8891A" }, - { "1060", "1001", "UM886A" }, - { "1060", "673a", "UM8886BF" }, - { "1060", "673b", "EIDE Master/DMA" }, - { "1060", "8710", "UM8710" }, - { "1060", "886a", "UM8886A" }, - { "1060", "8881", "UM8881F" }, - { "1060", "8886", "UM8886F" }, - { "1060", "888a", "UM8886A" }, - { "1060", "8891", "UM8891A" }, - { "1060", "9017", "UM9017F" }, - { "1060", "9018", "UM9018" }, - { "1060", "9026", "UM9026" }, - { "1060", "e881", "UM8881N" }, - { "1060", "e886", "UM8886N" }, - { "1060", "e88a", "UM8886N" }, - { "1060", "e891", "UM8891N" }, - { "1061", "0001", "AGX016" }, - { "1061", "0002", "IIT3204/3501" }, - { "1064", "1102", "Dynamite 2840 (ADSL PCI modem)" }, - { "1066", "0000", "PT80C826" }, - { "1066", "0001", "PT86C521 [Vesuvius v1] Host Bridge" }, - { "1066", "0002", "PT86C523 [Vesuvius v3] PCI-ISA Bridge Master" }, - { "1066", "0003", "PT86C524 [Nile] PCI-to-PCI Bridge" }, - { "1066", "0004", "PT86C525 [Nile-II] PCI-to-PCI Bridge" }, - { "1066", "0005", "National PC87550 System Controller" }, - { "1066", "8002", "PT86C523 [Vesuvius v3] PCI-ISA Bridge Slave" }, - { "1067", "0301", "AccelGraphics AccelECLIPSE" }, - { "1067", "0304", "AccelGALAXY A2100 [OEM Evans & Sutherland]" }, - { "1067", "0308", "Tornado 3000 [OEM Evans & Sutherland]" }, - { "1067", "1002", "VG500 [VolumePro Volume Rendering Accelerator]" }, - { "1069", "0001", "DAC960P" }, - { "1069", "0002", "DAC960PD" }, - { "1069", "0010", "DAC960PG" }, - { "1069", "0020", "DAC960LA" }, - { "1069", "0050", "AcceleRAID 352/170/160 support Device" }, - { "1069", "b166", "AcceleRAID 600/500/400/Sapphire support Device" }, - { "1069", "ba55", "eXtremeRAID 1100 support Device" }, - { "1069", "ba56", "eXtremeRAID 2000/3000 support Device" }, - { "1069", "ba57", "eXtremeRAID 4000/5000 support Device" }, - { "106b", "0001", "Bandit PowerPC host bridge" }, - { "106b", "0002", "Grand Central I/O" }, - { "106b", "0003", "Control Video" }, - { "106b", "0004", "PlanB Video-In" }, - { "106b", "0007", "O'Hare I/O" }, - { "106b", "000b", "Apple Camera" }, - { "106b", "000c", "DOS on Mac" }, - { "106b", "000e", "Hydra Mac I/O" }, - { "106b", "0010", "Heathrow Mac I/O" }, - { "106b", "0017", "Paddington Mac I/O" }, - { "106b", "0018", "UniNorth FireWire" }, - { "106b", "0019", "KeyLargo USB" }, - { "106b", "001e", "UniNorth Internal PCI" }, - { "106b", "001f", "UniNorth PCI" }, - { "106b", "0020", "UniNorth AGP" }, - { "106b", "0021", "UniNorth GMAC (Sun GEM)" }, - { "106b", "0022", "KeyLargo Mac I/O" }, - { "106b", "0024", "UniNorth/Pangea GMAC (Sun GEM)" }, - { "106b", "0025", "KeyLargo/Pangea Mac I/O" }, - { "106b", "0026", "KeyLargo/Pangea USB" }, - { "106b", "0027", "UniNorth/Pangea AGP" }, - { "106b", "0028", "UniNorth/Pangea PCI" }, - { "106b", "0029", "UniNorth/Pangea Internal PCI" }, - { "106b", "002d", "UniNorth 1.5 AGP" }, - { "106b", "002e", "UniNorth 1.5 PCI" }, - { "106b", "002f", "UniNorth 1.5 Internal PCI" }, - { "106b", "0030", "UniNorth/Pangea FireWire" }, - { "106b", "0031", "UniNorth 2 FireWire" }, - { "106b", "0032", "UniNorth 2 GMAC (Sun GEM)" }, - { "106b", "0033", "UniNorth 2 ATA/100" }, - { "106b", "0034", "UniNorth 2 AGP" }, - { "106b", "0035", "UniNorth 2 PCI" }, - { "106b", "0036", "UniNorth 2 Internal PCI" }, - { "106b", "003b", "UniNorth/Intrepid ATA/100" }, - { "106b", "003e", "KeyLargo/Intrepid Mac I/O" }, - { "106b", "003f", "KeyLargo/Intrepid USB" }, - { "106b", "0040", "K2 KeyLargo USB" }, - { "106b", "0041", "K2 KeyLargo Mac/IO" }, - { "106b", "0042", "K2 FireWire" }, - { "106b", "0043", "K2 ATA/100" }, - { "106b", "0045", "K2 HT-PCI Bridge" }, - { "106b", "0046", "K2 HT-PCI Bridge" }, - { "106b", "0047", "K2 HT-PCI Bridge" }, - { "106b", "0048", "K2 HT-PCI Bridge" }, - { "106b", "0049", "K2 HT-PCI Bridge" }, - { "106b", "004a", "CPC945 HT Bridge" }, - { "106b", "004b", "U3 AGP" }, - { "106b", "004c", "K2 GMAC (Sun GEM)" }, - { "106b", "004f", "Shasta Mac I/O" }, - { "106b", "0050", "Shasta IDE" }, - { "106b", "0051", "Shasta (Sun GEM)" }, - { "106b", "0052", "Shasta Firewire" }, - { "106b", "0053", "Shasta PCI Bridge" }, - { "106b", "0054", "Shasta PCI Bridge" }, - { "106b", "0055", "Shasta PCI Bridge" }, - { "106b", "0056", "U4 PCIe" }, - { "106b", "0057", "U3 HT Bridge" }, - { "106b", "0058", "U3L AGP Bridge" }, - { "106b", "0059", "U3H AGP Bridge" }, - { "106b", "005b", "CPC945 PCIe Bridge" }, - { "106b", "0066", "Intrepid2 AGP Bridge" }, - { "106b", "0067", "Intrepid2 PCI Bridge" }, - { "106b", "0068", "Intrepid2 PCI Bridge" }, - { "106b", "0069", "Intrepid2 ATA/100" }, - { "106b", "006a", "Intrepid2 Firewire" }, - { "106b", "006b", "Intrepid2 GMAC (Sun GEM)" }, - { "106b", "0074", "U4 HT Bridge" }, - { "106b", "1645", "Broadcom NetXtreme BCM5701 Gigabit Ethernet" }, - { "106b", "1801", "T2 Bridge Controller" }, - { "106b", "1802", "T2 Secure Enclave Processor" }, - { "106b", "1803", "Apple Audio Device" }, - { "106b", "2001", "S1X NVMe Controller" }, - { "106b", "2002", "S3ELab NVMe Controller" }, - { "106b", "2003", "S3X NVMe Controller" }, - { "106b", "2005", "ANS2 NVMe Controller" }, - { "106c", "8139", "8139c 100BaseTX Ethernet Controller" }, - { "106c", "8801", "Dual Pentium ISA/PCI Motherboard" }, - { "106c", "8802", "PowerPC ISA/PCI Motherboard" }, - { "106c", "8803", "Dual Window Graphics Accelerator" }, - { "106c", "8804", "LAN Controller" }, - { "106c", "8805", "100-BaseT LAN" }, - { "1071", "8160", "Mitac 8060B Mobile Platform" }, - { "1073", "0001", "3D GUI Accelerator" }, - { "1073", "0002", "YGV615 [RPA3 3D-Graphics Controller]" }, - { "1073", "0003", "YMF-740" }, - { "1073", "0004", "YMF-724" }, - { "1073", "0005", "DS1 Audio" }, - { "1073", "0006", "DS1 Audio" }, - { "1073", "0008", "DS1 Audio" }, - { "1073", "000a", "DS1L Audio" }, - { "1073", "000c", "YMF-740C [DS-1L Audio Controller]" }, - { "1073", "000d", "YMF-724F [DS-1 Audio Controller]" }, - { "1073", "0010", "YMF-744B [DS-1S Audio Controller]" }, - { "1073", "0012", "YMF-754 [DS-1E Audio Controller]" }, - { "1073", "0020", "DS-1 Audio" }, - { "1073", "1000", "SW1000XG [XG Factory]" }, - { "1073", "2000", "DS2416 Digital Mixing Card" }, - { "1074", "4e78", "82c500/1" }, - { "1077", "1016", "ISP10160 Single Channel Ultra3 SCSI Processor" }, - { "1077", "1020", "ISP1020 Fast-wide SCSI" }, - { "1077", "1022", "ISP1022 Fast-wide SCSI" }, - { "1077", "1080", "ISP1080 SCSI Host Adapter" }, - { "1077", "1216", "ISP12160 Dual Channel Ultra3 SCSI Processor" }, - { "1077", "1240", "ISP1240 SCSI Host Adapter" }, - { "1077", "1280", "ISP1280 SCSI Host Adapter" }, - { "1077", "1634", "FastLinQ QL45000 Series 40GbE Controller" }, - { "1077", "1644", "FastLinQ QL45000 Series 100GbE Controller" }, - { "1077", "1654", "FastLinQ QL45000 Series 50GbE Controller" }, - { "1077", "1656", "FastLinQ QL45000 Series 25GbE Controller" }, - { "1077", "165c", "FastLinQ QL45000 Series 10/25/40/50GbE Controller (FCoE)" }, - { "1077", "165e", "FastLinQ QL45000 Series 10/25/40/50GbE Controller (iSCSI)" }, - { "1077", "1664", "FastLinQ QL45000 Series Gigabit Ethernet Controller (SR-IOV VF)" }, - { "1077", "2020", "ISP2020A Fast!SCSI Basic Adapter" }, - { "1077", "2031", "ISP8324-based 16Gb Fibre Channel to PCI Express Adapter" }, - { "1077", "2071", "ISP2714-based 16/32Gb Fibre Channel to PCIe Adapter" }, - { "1077", "2081", "ISP2814-based 64/32G Fibre Channel to PCIe Controller" }, - { "1077", "2089", "ISP2854-based 64/32G Fibre Channel to PCIe Controller with StorCryption" }, - { "1077", "2100", "QLA2100 64-bit Fibre Channel Adapter" }, - { "1077", "2200", "QLA2200 64-bit Fibre Channel Adapter" }, - { "1077", "2261", "ISP2722-based 16/32Gb Fibre Channel to PCIe Adapter" }, - { "1077", "2281", "ISP2812-based 64/32G Fibre Channel to PCIe Controller" }, - { "1077", "2289", "ISP2852-based 64/32G Fibre Channel to PCIe Controller with StorCryption" }, - { "1077", "2300", "QLA2300 64-bit Fibre Channel Adapter" }, - { "1077", "2312", "ISP2312-based 2Gb Fibre Channel to PCI-X HBA" }, - { "1077", "2322", "ISP2322-based 2Gb Fibre Channel to PCI-X HBA" }, - { "1077", "2422", "ISP2422-based 4Gb Fibre Channel to PCI-X HBA" }, - { "1077", "2432", "ISP2432-based 4Gb Fibre Channel to PCI Express HBA" }, - { "1077", "2532", "ISP2532-based 8Gb Fibre Channel to PCI Express HBA" }, - { "1077", "2971", "ISP2684" }, - { "1077", "3022", "ISP4022-based Ethernet NIC" }, - { "1077", "3032", "ISP4032-based Ethernet IPv6 NIC" }, - { "1077", "4010", "ISP4010-based iSCSI TOE HBA" }, - { "1077", "4022", "ISP4022-based iSCSI TOE HBA" }, - { "1077", "4032", "ISP4032-based iSCSI TOE IPv6 HBA" }, - { "1077", "5432", "SP232-based 4Gb Fibre Channel to PCI Express HBA" }, - { "1077", "6312", "SP202-based 2Gb Fibre Channel to PCI-X HBA" }, - { "1077", "6322", "SP212-based 2Gb Fibre Channel to PCI-X HBA" }, - { "1077", "7220", "IBA7220 InfiniBand HCA" }, - { "1077", "7322", "IBA7322 QDR InfiniBand HCA" }, - { "1077", "8000", "10GbE Converged Network Adapter (TCP/IP Networking)" }, - { "1077", "8001", "10GbE Converged Network Adapter (FCoE)" }, - { "1077", "8020", "cLOM8214 1/10GbE Controller" }, - { "1077", "8021", "8200 Series 10GbE Converged Network Adapter (FCoE)" }, - { "1077", "8022", "8200 Series 10GbE Converged Network Adapter (iSCSI)" }, - { "1077", "8030", "ISP8324 1/10GbE Converged Network Controller" }, - { "1077", "8031", "8300 Series 10GbE Converged Network Adapter (FCoE)" }, - { "1077", "8032", "8300 Series 10GbE Converged Network Adapter (iSCSI)" }, - { "1077", "8070", "FastLinQ QL41000 Series 10/25/40/50GbE Controller" }, - { "1077", "8080", "FastLinQ QL41000 Series 10/25/40/50GbE Controller (FCoE)" }, - { "1077", "8084", "FastLinQ QL41000 Series 10/25/40/50GbE Controller (iSCSI)" }, - { "1077", "8090", "FastLinQ QL41000 Series Gigabit Ethernet Controller (SR-IOV VF)" }, - { "1077", "8430", "ISP8324 1/10GbE Converged Network Controller (NIC VF)" }, - { "1077", "8431", "8300 Series 10GbE Converged Network Adapter (FCoE VF)" }, - { "1077", "8432", "ISP2432M-based 10GbE Converged Network Adapter (CNA)" }, - { "1078", "0000", "5510 [Grappa]" }, - { "1078", "0001", "PCI Master" }, - { "1078", "0002", "5520 [Cognac]" }, - { "1078", "0100", "5530 Legacy [Kahlua]" }, - { "1078", "0101", "5530 SMI [Kahlua]" }, - { "1078", "0102", "5530 IDE [Kahlua]" }, - { "1078", "0103", "5530 Audio [Kahlua]" }, - { "1078", "0104", "5530 Video [Kahlua]" }, - { "1078", "0400", "ZFMicro PCI Bridge" }, - { "1078", "0401", "ZFMicro Chipset SMI" }, - { "1078", "0402", "ZFMicro Chipset IDE" }, - { "1078", "0403", "ZFMicro Expansion Bus" }, - { "107d", "0000", "P86C850" }, - { "107e", "0001", "5515 ATM Adapter [Flipper]" }, - { "107e", "0002", "100 VG AnyLan Controller" }, - { "107e", "0004", "5526 Fibre Channel Host Adapter" }, - { "107e", "0005", "x526 Fibre Channel Host Adapter" }, - { "107e", "0008", "5525/5575 ATM Adapter (155 Mbit) [Atlantic]" }, - { "107e", "9003", "5535-4P-BRI-ST" }, - { "107e", "9007", "5535-4P-BRI-U" }, - { "107e", "9008", "5535-1P-SR" }, - { "107e", "900c", "5535-1P-SR-ST" }, - { "107e", "900e", "5535-1P-SR-U" }, - { "107e", "9011", "5535-1P-PRI" }, - { "107e", "9013", "5535-2P-PRI" }, - { "107e", "9023", "5536-4P-BRI-ST" }, - { "107e", "9027", "5536-4P-BRI-U" }, - { "107e", "9031", "5536-1P-PRI" }, - { "107e", "9033", "5536-2P-PRI" }, - { "107f", "0802", "SL82C105" }, - { "1080", "0600", "82C599" }, - { "1080", "c691", "Cypress CY82C691" }, - { "1080", "c693", "82c693" }, - { "1081", "0d47", "Radius PCI to NuBUS Bridge" }, - { "1083", "0001", "FR710" }, - { "108a", "0001", "VME Bridge Model 617" }, - { "108a", "0010", "VME Bridge Model 618" }, - { "108a", "0040", "dataBLIZZARD" }, - { "108a", "3000", "VME Bridge Model 2706" }, - { "108d", "0001", "Token-Ring 16/4 PCI Adapter (3136/3137)" }, - { "108d", "0002", "16/4 Token Ring" }, - { "108d", "0004", "RapidFire OC-3139/3140 Token-Ring 16/4 PCI Adapter" }, - { "108d", "0005", "GoCard 3250 Token-Ring 16/4 CardBus PC Card" }, - { "108d", "0006", "OC-3530 RapidFire Token-Ring 100" }, - { "108d", "0007", "RapidFire 3141 Token-Ring 16/4 PCI Fiber Adapter" }, - { "108d", "0008", "RapidFire 3540 HSTR 100/16/4 PCI Adapter" }, - { "108d", "0011", "OC-2315" }, - { "108d", "0012", "OC-2325" }, - { "108d", "0013", "OC-2183/2185" }, - { "108d", "0014", "OC-2326" }, - { "108d", "0019", "OC-2327/2250 10/100 Ethernet Adapter" }, - { "108d", "0021", "OC-6151/6152 [RapidFire ATM 155]" }, - { "108d", "0022", "ATM Adapter" }, - { "108e", "0001", "EBUS" }, - { "108e", "1000", "EBUS" }, - { "108e", "1001", "Happy Meal 10/100 Ethernet [hme]" }, - { "108e", "1100", "RIO EBUS" }, - { "108e", "1101", "RIO 10/100 Ethernet [eri]" }, - { "108e", "1102", "RIO 1394" }, - { "108e", "1103", "RIO USB" }, - { "108e", "1647", "Broadcom 570x 10/100/1000 Ethernet [bge]" }, - { "108e", "1648", "Broadcom 570x 10/100/1000 Ethernet [bge]" }, - { "108e", "16a7", "Broadcom 570x 10/100/1000 Ethernet [bge]" }, - { "108e", "16a8", "Broadcom 570x 10/100/1000 Ethernet [bge]" }, - { "108e", "2bad", "GEM 10/100/1000 Ethernet [ge]" }, - { "108e", "5000", "Simba Advanced PCI Bridge" }, - { "108e", "5043", "SunPCI Co-processor" }, - { "108e", "5ca0", "Crypto Accelerator 6000 [mca]" }, - { "108e", "6300", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6301", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6302", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6303", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6310", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6311", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6312", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6313", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6320", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6323", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6330", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6331", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6332", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6333", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6340", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6343", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6350", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6353", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "6722", "Intel 21554 PCI-PCI bus bridge [db21554]" }, - { "108e", "676e", "SunPCiIII" }, - { "108e", "7063", "SunPCiII / SunPCiIIpro" }, - { "108e", "8000", "Psycho PCI Bus Module" }, - { "108e", "8001", "Schizo PCI Bus Module" }, - { "108e", "8002", "Schizo+ PCI Bus Module" }, - { "108e", "80f0", "PCIe switch [px]" }, - { "108e", "80f8", "PCIe switch [px]" }, - { "108e", "9010", "PCIe/PCI bridge switch [pxb_plx]" }, - { "108e", "9020", "PCIe/PCI bridge switch [pxb_plx]" }, - { "108e", "9102", "Davicom Fast Ethernet driver for Davicom DM9102A [dmfe]" }, - { "108e", "a000", "Psycho UPA-PCI Bus Module [pcipsy]" }, - { "108e", "a001", "Psycho UPA-PCI Bus Module [pcipsy]" }, - { "108e", "a801", "Schizo Fireplane-PCI bus bridge module [pcisch]" }, - { "108e", "aaaa", "Multithreaded Shared 10GbE Ethernet Network Controller" }, - { "108e", "abba", "Cassini 10/100/1000" }, - { "108e", "abcd", "Multithreaded 10-Gigabit Ethernet Network Controller" }, - { "108e", "c416", "Sun Fire System/System Controller Interface chip [sbbc]" }, - { "1090", "4610", "PCI RTOM" }, - { "1090", "4620", "GPIO HSD" }, - { "1091", "0020", "3D graphics processor" }, - { "1091", "0021", "3D graphics processor w/Texturing" }, - { "1091", "0040", "3D graphics frame buffer" }, - { "1091", "0041", "3D graphics frame buffer" }, - { "1091", "0060", "Proprietary bus bridge" }, - { "1091", "00e4", "Powerstorm 4D50T" }, - { "1091", "0720", "Motion JPEG codec" }, - { "1091", "0780", "Intense3D Wildcat 3410 (MSMT496)" }, - { "1091", "07a0", "Sun Expert3D-Lite Graphics Accelerator" }, - { "1091", "1091", "Sun Expert3D Graphics Accelerator" }, - { "1092", "0028", "Viper V770" }, - { "1092", "00a0", "Speedstar Pro SE" }, - { "1092", "00a8", "Speedstar 64" }, - { "1092", "0550", "Viper V550" }, - { "1092", "08d4", "Supra 2260 Modem" }, - { "1092", "094c", "SupraExpress 56i Pro" }, - { "1092", "1001", "Video Crunch It 1001 capture card" }, - { "1092", "1092", "Viper V330" }, - { "1092", "6120", "Maximum DVD" }, - { "1092", "8810", "Stealth SE" }, - { "1092", "8811", "Stealth 64/SE" }, - { "1092", "8880", "Stealth" }, - { "1092", "8881", "Stealth" }, - { "1092", "88b0", "Stealth 64" }, - { "1092", "88b1", "Stealth 64" }, - { "1092", "88c0", "Stealth 64" }, - { "1092", "88c1", "Stealth 64" }, - { "1092", "88d0", "Stealth 64" }, - { "1092", "88d1", "Stealth 64" }, - { "1092", "88f0", "Stealth 64" }, - { "1092", "88f1", "Stealth 64" }, - { "1092", "9999", "DMD-I0928-1 \"Monster sound\" sound chip" }, - { "1093", "0160", "PCI-DIO-96" }, - { "1093", "0162", "PCI-MIO-16XE-50" }, - { "1093", "0fe1", "PXI-8320" }, - { "1093", "1150", "PCI-6533 (PCI-DIO-32HS)" }, - { "1093", "1170", "PCI-MIO-16XE-10" }, - { "1093", "1180", "PCI-MIO-16E-1" }, - { "1093", "1190", "PCI-MIO-16E-4" }, - { "1093", "11b0", "PXI-6070E" }, - { "1093", "11c0", "PXI-6040E" }, - { "1093", "11d0", "PXI-6030E" }, - { "1093", "1270", "PCI-6032E" }, - { "1093", "1290", "PCI-6704" }, - { "1093", "12b0", "PCI-6534" }, - { "1093", "1310", "PCI-6602" }, - { "1093", "1320", "PXI-6533" }, - { "1093", "1330", "PCI-6031E" }, - { "1093", "1340", "PCI-6033E" }, - { "1093", "1350", "PCI-6071E" }, - { "1093", "1360", "PXI-6602" }, - { "1093", "13c0", "PXI-6508" }, - { "1093", "1490", "PXI-6534" }, - { "1093", "14e0", "PCI-6110" }, - { "1093", "14f0", "PCI-6111" }, - { "1093", "1580", "PXI-6031E" }, - { "1093", "15b0", "PXI-6071E" }, - { "1093", "1710", "PXI-6509" }, - { "1093", "17c0", "PXI-5690" }, - { "1093", "17d0", "PCI-6503" }, - { "1093", "1870", "PCI-6713" }, - { "1093", "1880", "PCI-6711" }, - { "1093", "18b0", "PCI-6052E" }, - { "1093", "18c0", "PXI-6052E" }, - { "1093", "1920", "PXI-6704" }, - { "1093", "1930", "PCI-6040E" }, - { "1093", "19c0", "PCI-4472" }, - { "1093", "1aa0", "PXI-4110" }, - { "1093", "1ad0", "PCI-6133" }, - { "1093", "1ae0", "PXI-6133" }, - { "1093", "1e30", "PCI-6624" }, - { "1093", "1e40", "PXI-6624" }, - { "1093", "1e50", "PXI-5404" }, - { "1093", "2410", "PCI-6733" }, - { "1093", "2420", "PXI-6733" }, - { "1093", "2430", "PCI-6731" }, - { "1093", "2470", "PCI-4474" }, - { "1093", "24a0", "PCI-4065" }, - { "1093", "24b0", "PXI-4200" }, - { "1093", "24f0", "PXI-4472" }, - { "1093", "2510", "PCI-4472" }, - { "1093", "2520", "PCI-4474" }, - { "1093", "27a0", "PCI-6123" }, - { "1093", "27b0", "PXI-6123" }, - { "1093", "2880", "DAQCard-6601" }, - { "1093", "2890", "PCI-6036E" }, - { "1093", "28a0", "PXI-4461" }, - { "1093", "28b0", "PCI-6013" }, - { "1093", "28c0", "PCI-6014" }, - { "1093", "28d0", "PCI-5122" }, - { "1093", "28e0", "PXI-5122" }, - { "1093", "29f0", "PXI-7334" }, - { "1093", "2a00", "PXI-7344" }, - { "1093", "2a60", "PCI-6023E" }, - { "1093", "2a70", "PCI-6024E" }, - { "1093", "2a80", "PCI-6025E" }, - { "1093", "2ab0", "PXI-6025E" }, - { "1093", "2b10", "PXI-6527" }, - { "1093", "2b20", "PCI-6527" }, - { "1093", "2b80", "PXI-6713" }, - { "1093", "2b90", "PXI-6711" }, - { "1093", "2c60", "PCI-6601" }, - { "1093", "2c70", "PXI-6601" }, - { "1093", "2c80", "PCI-6035E" }, - { "1093", "2c90", "PCI-6703" }, - { "1093", "2ca0", "PCI-6034E" }, - { "1093", "2cb0", "PCI-7344" }, - { "1093", "2cc0", "PXI-6608" }, - { "1093", "2d20", "PXI-5600" }, - { "1093", "2db0", "PCI-6608" }, - { "1093", "2dc0", "PCI-4070" }, - { "1093", "2dd0", "PXI-4070" }, - { "1093", "2eb0", "PXI-4472" }, - { "1093", "2ec0", "PXI-6115" }, - { "1093", "2ed0", "PCI-6115" }, - { "1093", "2ee0", "PXI-6120" }, - { "1093", "2ef0", "PCI-6120" }, - { "1093", "2fd1", "PCI-7334" }, - { "1093", "2fd2", "PCI-7350" }, - { "1093", "2fd3", "PCI-7342" }, - { "1093", "2fd5", "PXI-7350" }, - { "1093", "2fd6", "PXI-7342" }, - { "1093", "7003", "PCI-6551" }, - { "1093", "7004", "PXI-6551" }, - { "1093", "700b", "PXI-5421" }, - { "1093", "700c", "PCI-5421" }, - { "1093", "701a", "VXIpc-87xB" }, - { "1093", "701b", "VXIpc-770" }, - { "1093", "7023", "PXI-2593" }, - { "1093", "7027", "PCI-MXI-2 Universal" }, - { "1093", "702c", "PXI-7831R" }, - { "1093", "702d", "PCI-7831R" }, - { "1093", "702e", "PXI-7811R" }, - { "1093", "702f", "PCI-7811R" }, - { "1093", "7030", "PCI-CAN (Series 2)" }, - { "1093", "7031", "PCI-CAN/2 (Series 2)" }, - { "1093", "7032", "PCI-CAN/LS (Series 2)" }, - { "1093", "7033", "PCI-CAN/LS2 (Series 2)" }, - { "1093", "7034", "PCI-CAN/DS (Series 2)" }, - { "1093", "7035", "PXI-8460 (Series 2, 1 port)" }, - { "1093", "7036", "PXI-8460 (Series 2, 2 ports)" }, - { "1093", "7037", "PXI-8461 (Series 2, 1 port)" }, - { "1093", "7038", "PXI-8461 (Series 2, 2 ports)" }, - { "1093", "7039", "PXI-8462 (Series 2)" }, - { "1093", "703f", "PXI-2566" }, - { "1093", "7040", "PXI-2567" }, - { "1093", "7044", "MXI-4 Connection Monitor" }, - { "1093", "7047", "PXI-6653" }, - { "1093", "704c", "PXI-2530" }, - { "1093", "704f", "PXI-4220" }, - { "1093", "7050", "PXI-4204" }, - { "1093", "7055", "PXI-7830R" }, - { "1093", "7056", "PCI-7830R" }, - { "1093", "705a", "PCI-CAN/XS (Series 2)" }, - { "1093", "705b", "PCI-CAN/XS2 (Series 2)" }, - { "1093", "705c", "PXI-8464 (Series 2, 1 port)" }, - { "1093", "705d", "PXI-8464 (Series 2, 2 ports)" }, - { "1093", "705e", "cRIO-9102" }, - { "1093", "7060", "PXI-5610" }, - { "1093", "7064", "PXI-1045 Trigger Routing Module" }, - { "1093", "7065", "PXI-6652" }, - { "1093", "7066", "PXI-6651" }, - { "1093", "7067", "PXI-2529" }, - { "1093", "7068", "PCI-CAN/SW (Series 2)" }, - { "1093", "7069", "PCI-CAN/SW2 (Series 2)" }, - { "1093", "706a", "PXI-8463 (Series 2, 1 port)" }, - { "1093", "706b", "PXI-8463 (Series 2, 2 ports)" }, - { "1093", "7073", "PCI-6723" }, - { "1093", "7074", "PXI-7833R" }, - { "1093", "7075", "PXI-6552" }, - { "1093", "7076", "PCI-6552" }, - { "1093", "707c", "PXI-1428" }, - { "1093", "707e", "PXI-4462" }, - { "1093", "7080", "PXI-8430/2 (RS-232) Interface" }, - { "1093", "7081", "PXI-8431/2 (RS-485) Interface" }, - { "1093", "7083", "PCI-7833R" }, - { "1093", "7085", "PCI-6509" }, - { "1093", "7086", "PXI-6528" }, - { "1093", "7087", "PCI-6515" }, - { "1093", "7088", "PCI-6514" }, - { "1093", "708c", "PXI-2568" }, - { "1093", "708d", "PXI-2569" }, - { "1093", "70a9", "PCI-6528" }, - { "1093", "70aa", "PCI-6229" }, - { "1093", "70ab", "PCI-6259" }, - { "1093", "70ac", "PCI-6289" }, - { "1093", "70ad", "PXI-6251" }, - { "1093", "70ae", "PXI-6220" }, - { "1093", "70af", "PCI-6221" }, - { "1093", "70b0", "PCI-6220" }, - { "1093", "70b1", "PXI-6229" }, - { "1093", "70b2", "PXI-6259" }, - { "1093", "70b3", "PXI-6289" }, - { "1093", "70b4", "PCI-6250" }, - { "1093", "70b5", "PXI-6221" }, - { "1093", "70b6", "PCI-6280" }, - { "1093", "70b7", "PCI-6254" }, - { "1093", "70b8", "PCI-6251" }, - { "1093", "70b9", "PXI-6250" }, - { "1093", "70ba", "PXI-6254" }, - { "1093", "70bb", "PXI-6280" }, - { "1093", "70bc", "PCI-6284" }, - { "1093", "70bd", "PCI-6281" }, - { "1093", "70be", "PXI-6284" }, - { "1093", "70bf", "PXI-6281" }, - { "1093", "70c0", "PCI-6143" }, - { "1093", "70c3", "PCI-6511" }, - { "1093", "70c4", "PXI-7330" }, - { "1093", "70c5", "PXI-7340" }, - { "1093", "70c6", "PCI-7330" }, - { "1093", "70c7", "PCI-7340" }, - { "1093", "70c8", "PCI-6513" }, - { "1093", "70c9", "PXI-6515" }, - { "1093", "70ca", "PCI-1405" }, - { "1093", "70cc", "PCI-6512" }, - { "1093", "70cd", "PXI-6514" }, - { "1093", "70ce", "PXI-1405" }, - { "1093", "70cf", "PCIe-GPIB" }, - { "1093", "70d0", "PXI-2570" }, - { "1093", "70d1", "PXI-6513" }, - { "1093", "70d2", "PXI-6512" }, - { "1093", "70d3", "PXI-6511" }, - { "1093", "70d4", "PCI-6722" }, - { "1093", "70d6", "PXI-4072" }, - { "1093", "70d7", "PXI-6541" }, - { "1093", "70d8", "PXI-6542" }, - { "1093", "70d9", "PCI-6541" }, - { "1093", "70da", "PCI-6542" }, - { "1093", "70db", "PCI-8430/2 (RS-232) Interface" }, - { "1093", "70dc", "PCI-8431/2 (RS-485) Interface" }, - { "1093", "70dd", "PXI-8430/4 (RS-232) Interface" }, - { "1093", "70de", "PXI-8431/4 (RS-485) Interface" }, - { "1093", "70df", "PCI-8430/4 (RS-232) Interface" }, - { "1093", "70e0", "PCI-8431/4 (RS-485) Interface" }, - { "1093", "70e1", "PXI-2532" }, - { "1093", "70e2", "PXI-8430/8 (RS-232) Interface" }, - { "1093", "70e3", "PXI-8431/8 (RS-485) Interface" }, - { "1093", "70e4", "PCI-8430/8 (RS-232) Interface" }, - { "1093", "70e5", "PCI-8431/8 (RS-485) Interface" }, - { "1093", "70e6", "PXI-8430/16 (RS-232) Interface" }, - { "1093", "70e7", "PCI-8430/16 (RS-232) Interface" }, - { "1093", "70e8", "PXI-8432/2 (Isolated RS-232) Interface" }, - { "1093", "70e9", "PXI-8433/2 (Isolated RS-485) Interface" }, - { "1093", "70ea", "PCI-8432/2 (Isolated RS-232) Interface" }, - { "1093", "70eb", "PCI-8433/2 (Isolated RS-485) Interface" }, - { "1093", "70ec", "PXI-8432/4 (Isolated RS-232) Interface" }, - { "1093", "70ed", "PXI-8433/4 (Isolated RS-485) Interface" }, - { "1093", "70ee", "PCI-8432/4 (Isolated RS-232) Interface" }, - { "1093", "70ef", "PCI-8433/4 (Isolated RS-485) Interface" }, - { "1093", "70f0", "PXI-5922" }, - { "1093", "70f1", "PCI-5922" }, - { "1093", "70f2", "PCI-6224" }, - { "1093", "70f3", "PXI-6224" }, - { "1093", "70f6", "cRIO-9101" }, - { "1093", "70f7", "cRIO-9103" }, - { "1093", "70f8", "cRIO-9104" }, - { "1093", "70ff", "PXI-6723" }, - { "1093", "7100", "PXI-6722" }, - { "1093", "7104", "PCIx-1429" }, - { "1093", "7105", "PCIe-1429" }, - { "1093", "710a", "PXI-4071" }, - { "1093", "710d", "PXI-6143" }, - { "1093", "710e", "PCIe-GPIB" }, - { "1093", "710f", "PXI-5422" }, - { "1093", "7110", "PCI-5422" }, - { "1093", "7111", "PXI-5441" }, - { "1093", "7119", "PXI-6561" }, - { "1093", "711a", "PXI-6562" }, - { "1093", "711b", "PCI-6561" }, - { "1093", "711c", "PCI-6562" }, - { "1093", "7120", "PCI-7390" }, - { "1093", "7121", "PXI-5122EX" }, - { "1093", "7122", "PCI-5122EX" }, - { "1093", "7123", "PXIe-5653" }, - { "1093", "7124", "PCI-6510" }, - { "1093", "7125", "PCI-6516" }, - { "1093", "7126", "PCI-6517" }, - { "1093", "7127", "PCI-6518" }, - { "1093", "7128", "PCI-6519" }, - { "1093", "7137", "PXI-2575" }, - { "1093", "713c", "PXI-2585" }, - { "1093", "713d", "PXI-2586" }, - { "1093", "7142", "PXI-4224" }, - { "1093", "7144", "PXI-5124" }, - { "1093", "7145", "PCI-5124" }, - { "1093", "7146", "PCI-6132" }, - { "1093", "7147", "PXI-6132" }, - { "1093", "7148", "PCI-6122" }, - { "1093", "7149", "PXI-6122" }, - { "1093", "714c", "PXI-5114" }, - { "1093", "714d", "PCI-5114" }, - { "1093", "7150", "PXI-2564" }, - { "1093", "7152", "PCI-5640R" }, - { "1093", "7156", "PXI-1044 Trigger Routing Module" }, - { "1093", "715d", "PCI-1426" }, - { "1093", "7167", "PXI-5412" }, - { "1093", "7168", "PCI-5412" }, - { "1093", "716b", "PCI-6230" }, - { "1093", "716c", "PCI-6225" }, - { "1093", "716d", "PXI-6225" }, - { "1093", "716f", "PCI-4461" }, - { "1093", "7170", "PCI-4462" }, - { "1093", "7171", "PCI-6010" }, - { "1093", "7174", "PXI-8360" }, - { "1093", "7177", "PXI-6230" }, - { "1093", "717d", "PCIe-6251" }, - { "1093", "717f", "PCIe-6259" }, - { "1093", "7187", "PCI-1410" }, - { "1093", "718b", "PCI-6521" }, - { "1093", "718c", "PXI-6521" }, - { "1093", "7191", "PCI-6154" }, - { "1093", "7193", "PXI-7813R" }, - { "1093", "7194", "PCI-7813R" }, - { "1093", "7195", "PCI-8254R" }, - { "1093", "7197", "PXI-5402" }, - { "1093", "7198", "PCI-5402" }, - { "1093", "719f", "PCIe-6535" }, - { "1093", "71a0", "PCIe-6536" }, - { "1093", "71a3", "PXI-5650" }, - { "1093", "71a4", "PXI-5652" }, - { "1093", "71a5", "PXI-2594" }, - { "1093", "71a7", "PXI-2595" }, - { "1093", "71a9", "PXI-2596" }, - { "1093", "71aa", "PXI-2597" }, - { "1093", "71ab", "PXI-2598" }, - { "1093", "71ac", "PXI-2599" }, - { "1093", "71ad", "PCI-GPIB+" }, - { "1093", "71ae", "PCIe-1430" }, - { "1093", "71b7", "PXI-1056 Trigger Routing Module" }, - { "1093", "71b8", "PXI-1045 Trigger Routing Module" }, - { "1093", "71b9", "PXI-1044 Trigger Routing Module" }, - { "1093", "71bb", "PXI-2584" }, - { "1093", "71bc", "PCI-6221 (37-pin)" }, - { "1093", "71bf", "PCIe-1427" }, - { "1093", "71c5", "PCI-6520" }, - { "1093", "71c6", "PXI-2576" }, - { "1093", "71c7", "cRIO-9072" }, - { "1093", "71dc", "PCI-1588" }, - { "1093", "71e0", "PCI-6255" }, - { "1093", "71e1", "PXI-6255" }, - { "1093", "71e2", "PXI-5406" }, - { "1093", "71e3", "PCI-5406" }, - { "1093", "71fc", "PXI-4022" }, - { "1093", "7209", "PCI-6233" }, - { "1093", "720a", "PXI-6233" }, - { "1093", "720b", "PCI-6238" }, - { "1093", "720c", "PXI-6238" }, - { "1093", "7260", "PXI-5142" }, - { "1093", "7261", "PCI-5142" }, - { "1093", "726d", "PXI-5651" }, - { "1093", "7273", "PXI-4461" }, - { "1093", "7274", "PXI-4462" }, - { "1093", "7279", "PCI-6232" }, - { "1093", "727a", "PXI-6232" }, - { "1093", "727b", "PCI-6239" }, - { "1093", "727c", "PXI-6239" }, - { "1093", "727e", "SMBus Controller" }, - { "1093", "7281", "PCI-6236" }, - { "1093", "7282", "PXI-6236" }, - { "1093", "7283", "PXI-2554" }, - { "1093", "7288", "PXIe-5611" }, - { "1093", "7293", "PCIe-8255R" }, - { "1093", "729d", "cRIO-9074" }, - { "1093", "72a4", "PCIe-4065" }, - { "1093", "72a7", "PCIe-6537" }, - { "1093", "72a8", "PXI-5152" }, - { "1093", "72a9", "PCI-5152" }, - { "1093", "72aa", "PXI-5105" }, - { "1093", "72ab", "PCI-5105" }, - { "1093", "72b8", "PXI-6682" }, - { "1093", "72d0", "PXI-2545" }, - { "1093", "72d1", "PXI-2546" }, - { "1093", "72d2", "PXI-2547" }, - { "1093", "72d3", "PXI-2548" }, - { "1093", "72d4", "PXI-2549" }, - { "1093", "72d5", "PXI-2555" }, - { "1093", "72d6", "PXI-2556" }, - { "1093", "72d7", "PXI-2557" }, - { "1093", "72d8", "PXI-2558" }, - { "1093", "72d9", "PXI-2559" }, - { "1093", "72e8", "PXIe-6251" }, - { "1093", "72e9", "PXIe-6259" }, - { "1093", "72ef", "PXI-4498" }, - { "1093", "72f0", "PXI-4496" }, - { "1093", "72fb", "PXIe-6672" }, - { "1093", "730e", "PXI-4130" }, - { "1093", "730f", "PXI-5922EX" }, - { "1093", "7310", "PCI-5922EX" }, - { "1093", "731c", "PXI-2535" }, - { "1093", "731d", "PXI-2536" }, - { "1093", "7322", "PXIe-6124" }, - { "1093", "7327", "PXI-6529" }, - { "1093", "732c", "VXI-8360T" }, - { "1093", "7331", "PXIe-5602" }, - { "1093", "7332", "PXIe-5601" }, - { "1093", "7333", "PXI-5900" }, - { "1093", "7335", "PXI-2533" }, - { "1093", "7336", "PXI-2534" }, - { "1093", "7342", "PXI-4461" }, - { "1093", "7349", "PXI-5154" }, - { "1093", "734a", "PCI-5154" }, - { "1093", "7357", "PXI-4065" }, - { "1093", "7359", "PXI-4495" }, - { "1093", "7370", "PXI-4461" }, - { "1093", "7373", "sbRIO-9601" }, - { "1093", "7374", "IOtech-9601" }, - { "1093", "7375", "sbRIO-9602" }, - { "1093", "7378", "sbRIO-9641" }, - { "1093", "737d", "PXI-5124EX" }, - { "1093", "7384", "PXI-7851R" }, - { "1093", "7385", "PXI-7852R" }, - { "1093", "7386", "PCIe-7851R" }, - { "1093", "7387", "PCIe-7852R" }, - { "1093", "7390", "PXI-7841R" }, - { "1093", "7391", "PXI-7842R" }, - { "1093", "7392", "PXI-7853R" }, - { "1093", "7393", "PCIe-7841R" }, - { "1093", "7394", "PCIe-7842R" }, - { "1093", "7397", "sbRIO-9611" }, - { "1093", "7398", "sbRIO-9612" }, - { "1093", "7399", "sbRIO-9631" }, - { "1093", "739a", "sbRIO-9632" }, - { "1093", "739b", "sbRIO-9642" }, - { "1093", "73a1", "PXIe-4498" }, - { "1093", "73a2", "PXIe-4496" }, - { "1093", "73a5", "PXIe-5641R" }, - { "1093", "73a7", "PXI-8250 Chassis Monitor Module" }, - { "1093", "73a8", "PXI-8511 CAN/LS" }, - { "1093", "73a9", "PXI-8511 CAN/LS" }, - { "1093", "73aa", "PXI-8512 CAN/HS" }, - { "1093", "73ab", "PXI-8512 CAN/HS" }, - { "1093", "73ac", "PXI-8513 CAN/XS" }, - { "1093", "73ad", "PXI-8513 CAN/XS" }, - { "1093", "73af", "PXI-8516 LIN" }, - { "1093", "73b1", "PXI-8517 FlexRay" }, - { "1093", "73b2", "PXI-8531 CANopen" }, - { "1093", "73b3", "PXI-8531 CANopen" }, - { "1093", "73b4", "PXI-8532 DeviceNet" }, - { "1093", "73b5", "PXI-8532 DeviceNet" }, - { "1093", "73b6", "PCI-8511 CAN/LS" }, - { "1093", "73b7", "PCI-8511 CAN/LS" }, - { "1093", "73b8", "PCI-8512 CAN/HS" }, - { "1093", "73b9", "PCI-8512 CAN/HS" }, - { "1093", "73ba", "PCI-8513 CAN/XS" }, - { "1093", "73bb", "PCI-8513 CAN/XS" }, - { "1093", "73bd", "PCI-8516 LIN" }, - { "1093", "73bf", "PCI-8517 FlexRay" }, - { "1093", "73c0", "PCI-8531 CANopen" }, - { "1093", "73c1", "PCI-8531 CANopen" }, - { "1093", "73c2", "PCI-8532 DeviceNet" }, - { "1093", "73c3", "PCI-8532 DeviceNet" }, - { "1093", "73c5", "PXIe-2527" }, - { "1093", "73c6", "PXIe-2529" }, - { "1093", "73c8", "PXIe-2530" }, - { "1093", "73c9", "PXIe-2532" }, - { "1093", "73ca", "PXIe-2569" }, - { "1093", "73cb", "PXIe-2575" }, - { "1093", "73cc", "PXIe-2593" }, - { "1093", "73d5", "PXI-7951R" }, - { "1093", "73d6", "PXI-7952R" }, - { "1093", "73d7", "PXI-7953R" }, - { "1093", "73e1", "PXI-7854R" }, - { "1093", "73ec", "PXI-7954R" }, - { "1093", "73ed", "cRIO-9073" }, - { "1093", "73f0", "PXI-5153" }, - { "1093", "73f1", "PCI-5153" }, - { "1093", "73f4", "PXI-2515" }, - { "1093", "73f6", "cRIO-9111" }, - { "1093", "73f7", "cRIO-9112" }, - { "1093", "73f8", "cRIO-9113" }, - { "1093", "73f9", "cRIO-9114" }, - { "1093", "73fa", "cRIO-9116" }, - { "1093", "73fb", "cRIO-9118" }, - { "1093", "7404", "PXI-4132" }, - { "1093", "7405", "PXIe-6674T" }, - { "1093", "7406", "PXIe-6674" }, - { "1093", "740e", "PCIe-8430/16 (RS-232) Interface" }, - { "1093", "740f", "PCIe-8430/8 (RS-232) Interface" }, - { "1093", "7410", "PCIe-8431/16 (RS-485) Interface" }, - { "1093", "7411", "PCIe-8431/8 (RS-485) Interface" }, - { "1093", "7414", "PCIe-GPIB+" }, - { "1093", "741c", "PXI-5691" }, - { "1093", "741d", "PXI-5695" }, - { "1093", "743c", "CSC-3059" }, - { "1093", "7448", "PXI-2510" }, - { "1093", "7454", "PXI-2512" }, - { "1093", "7455", "PXI-2514" }, - { "1093", "7456", "PXIe-2512" }, - { "1093", "7457", "PXIe-2514" }, - { "1093", "745a", "PXI-6682H" }, - { "1093", "745e", "PXI-5153EX" }, - { "1093", "745f", "PCI-5153EX" }, - { "1093", "7460", "PXI-5154EX" }, - { "1093", "7461", "PCI-5154EX" }, - { "1093", "746d", "PXIe-5650" }, - { "1093", "746e", "PXIe-5651" }, - { "1093", "746f", "PXIe-5652" }, - { "1093", "7472", "PXI-2800" }, - { "1093", "7495", "PXIe-5603" }, - { "1093", "7497", "PXIe-5605" }, - { "1093", "74ae", "PXIe-2515" }, - { "1093", "74b4", "PXI-2531" }, - { "1093", "74b5", "PXIe-2531" }, - { "1093", "74c1", "PXIe-8430/16 (RS-232) Interface" }, - { "1093", "74c2", "PXIe-8430/8 (RS-232) Interface" }, - { "1093", "74c3", "PXIe-8431/16 (RS-485) Interface" }, - { "1093", "74c4", "PXIe-8431/8 (RS-485) Interface" }, - { "1093", "74d5", "PXIe-5630" }, - { "1093", "74d9", "PCIe-8432/2 (Isolated RS-232) Interface" }, - { "1093", "74da", "PCIe-8433/2 (Isolated RS-485) Interface" }, - { "1093", "74db", "PCIe-8432/4 (Isolated RS-232) Interface" }, - { "1093", "74dc", "PCIe-8433/4 (Isolated RS-485) Interface" }, - { "1093", "74e8", "NI 9148" }, - { "1093", "7515", "PCIe-8430/2 (RS-232) Interface" }, - { "1093", "7516", "PCIe-8430/4 (RS-232) Interface" }, - { "1093", "7517", "PCIe-8431/2 (RS-485) Interface" }, - { "1093", "7518", "PCIe-8431/4 (RS-485) Interface" }, - { "1093", "751b", "cRIO-9081" }, - { "1093", "751c", "cRIO-9082" }, - { "1093", "7528", "PXIe-4497" }, - { "1093", "7529", "PXIe-4499" }, - { "1093", "752a", "PXIe-4492" }, - { "1093", "7539", "NI 9157" }, - { "1093", "753a", "NI 9159" }, - { "1093", "7598", "PXI-2571" }, - { "1093", "75a4", "PXI-4131A" }, - { "1093", "75b1", "PCIe-7854R" }, - { "1093", "75ba", "PXI-2543" }, - { "1093", "75bb", "PXIe-2543" }, - { "1093", "75e5", "PXI-6683" }, - { "1093", "75e6", "PXI-6683H" }, - { "1093", "75ef", "PXIe-5632" }, - { "1093", "761c", "VXI-8360LT" }, - { "1093", "761f", "PXI-2540" }, - { "1093", "7620", "PXIe-2540" }, - { "1093", "7621", "PXI-2541" }, - { "1093", "7622", "PXIe-2541" }, - { "1093", "7626", "NI 9154" }, - { "1093", "7627", "NI 9155" }, - { "1093", "7638", "PXI-2720" }, - { "1093", "7639", "PXI-2722" }, - { "1093", "763a", "PXIe-2725" }, - { "1093", "763b", "PXIe-2727" }, - { "1093", "763c", "PXI-4465" }, - { "1093", "764b", "PXIe-2790" }, - { "1093", "764c", "PXI-2520" }, - { "1093", "764d", "PXI-2521" }, - { "1093", "764e", "PXI-2522" }, - { "1093", "764f", "PXI-2523" }, - { "1093", "7654", "PXI-2796" }, - { "1093", "7655", "PXI-2797" }, - { "1093", "7656", "PXI-2798" }, - { "1093", "7657", "PXI-2799" }, - { "1093", "765d", "PXI-2542" }, - { "1093", "765e", "PXIe-2542" }, - { "1093", "765f", "PXI-2544" }, - { "1093", "7660", "PXIe-2544" }, - { "1093", "766d", "PCIe-6535B" }, - { "1093", "766e", "PCIe-6536B" }, - { "1093", "766f", "PCIe-6537B" }, - { "1093", "76a3", "PXIe-6535B" }, - { "1093", "76a4", "PXIe-6536B" }, - { "1093", "76a5", "PXIe-6537B" }, - { "1093", "783e", "PXI-8368" }, - { "1093", "9020", "PXI-2501" }, - { "1093", "9030", "PXI-2503" }, - { "1093", "9040", "PXI-2527" }, - { "1093", "9050", "PXI-2565" }, - { "1093", "9060", "PXI-2590" }, - { "1093", "9070", "PXI-2591" }, - { "1093", "9080", "PXI-2580" }, - { "1093", "9090", "PCI-4021" }, - { "1093", "90a0", "PXI-4021" }, - { "1093", "a001", "PCI-MXI-2" }, - { "1093", "b001", "PCI-1408" }, - { "1093", "b011", "PXI-1408" }, - { "1093", "b021", "PCI-1424" }, - { "1093", "b022", "PXI-1424" }, - { "1093", "b031", "PCI-1413" }, - { "1093", "b041", "PCI-1407" }, - { "1093", "b051", "PXI-1407" }, - { "1093", "b061", "PCI-1411" }, - { "1093", "b071", "PCI-1422" }, - { "1093", "b081", "PXI-1422" }, - { "1093", "b091", "PXI-1411" }, - { "1093", "b0b1", "PCI-1409" }, - { "1093", "b0c1", "PXI-1409" }, - { "1093", "b0e1", "PCI-1428" }, - { "1093", "c4c4", "PXIe/PCIe Device" }, - { "1093", "c801", "PCI-GPIB" }, - { "1093", "c811", "PCI-GPIB+" }, - { "1093", "c821", "PXI-GPIB" }, - { "1093", "c831", "PMC-GPIB" }, - { "1093", "c840", "PCI-GPIB" }, - { "1093", "d130", "PCI-232/2 Interface" }, - { "1093", "d140", "PCI-232/4 Interface" }, - { "1093", "d150", "PCI-232/8 Interface" }, - { "1093", "d160", "PCI-485/2 Interface" }, - { "1093", "d170", "PCI-485/4 Interface" }, - { "1093", "d190", "PXI-8422/2 (Isolated RS-232) Interface" }, - { "1093", "d1a0", "PXI-8422/4 (Isolated RS-232) Interface" }, - { "1093", "d1b0", "PXI-8423/2 (Isolated RS-485) Interface" }, - { "1093", "d1c0", "PXI-8423/4 (Isolated RS-485) Interface" }, - { "1093", "d1d0", "PXI-8420/2 (RS-232) Interface" }, - { "1093", "d1e0", "PXI-8420/4 (RS-232) Interface" }, - { "1093", "d1f0", "PXI-8420/8 (RS-232) Interface" }, - { "1093", "d1f1", "PXI-8420/16 (RS-232) Interface" }, - { "1093", "d230", "PXI-8421/2 (RS-485) Interface" }, - { "1093", "d240", "PXI-8421/4 (RS-485) Interface" }, - { "1093", "d250", "PCI-232/2 (Isolated) Interface" }, - { "1093", "d260", "PCI-485/2 (Isolated) Interface" }, - { "1093", "d270", "PCI-232/4 (Isolated) Interface" }, - { "1093", "d280", "PCI-485/4 (Isolated) Interface" }, - { "1093", "d290", "PCI-485/8 Interface" }, - { "1093", "d2a0", "PXI-8421/8 (RS-485) Interface" }, - { "1093", "d2b0", "PCI-232/16 Interface" }, - { "1093", "e111", "PCI-CAN" }, - { "1093", "e131", "PXI-8461 (1 port)" }, - { "1093", "e141", "PCI-CAN/LS" }, - { "1093", "e151", "PXI-8460 (1 port)" }, - { "1093", "e211", "PCI-CAN/2" }, - { "1093", "e231", "PXI-8461 (2 ports)" }, - { "1093", "e241", "PCI-CAN/LS2" }, - { "1093", "e251", "PXI-8460 (2 ports)" }, - { "1093", "e261", "PCI-CAN/DS" }, - { "1093", "e271", "PXI-8462" }, - { "1093", "f110", "VMEpc-650" }, - { "1093", "f120", "VXIpc-650" }, - { "1093", "fe00", "VXIpc-87x" }, - { "1093", "fe41", "VXIpc-860" }, - { "1093", "fe51", "VXIpc-74x" }, - { "1093", "fe61", "VXIpc-850" }, - { "1093", "fe70", "VXIpc-880" }, - { "1095", "0240", "Adaptec AAR-1210SA SATA HostRAID Controller" }, - { "1095", "0640", "PCI0640" }, - { "1095", "0643", "PCI0643" }, - { "1095", "0646", "PCI0646" }, - { "1095", "0647", "PCI0647" }, - { "1095", "0648", "PCI0648" }, - { "1095", "0649", "SiI 0649 Ultra ATA/100 PCI to ATA Host Controller" }, - { "1095", "0650", "PBC0650A" }, - { "1095", "0670", "USB0670" }, - { "1095", "0673", "USB0673" }, - { "1095", "0680", "PCI0680 Ultra ATA-133 Host Controller" }, - { "1095", "3112", "SiI 3112 [SATALink/SATARaid] Serial ATA Controller" }, - { "1095", "3114", "SiI 3114 [SATALink/SATARaid] Serial ATA Controller" }, - { "1095", "3124", "SiI 3124 PCI-X Serial ATA Controller" }, - { "1095", "3132", "SiI 3132 Serial ATA Raid II Controller" }, - { "1095", "3512", "SiI 3512 [SATALink/SATARaid] Serial ATA Controller" }, - { "1095", "3531", "SiI 3531 [SATALink/SATARaid] Serial ATA Controller" }, - { "1098", "0001", "QD-8500" }, - { "1098", "0002", "QD-8580" }, - { "109e", "0310", "Bt848 Video Capture" }, - { "109e", "032e", "Bt878 Video Capture" }, - { "109e", "0350", "Bt848 Video Capture" }, - { "109e", "0351", "Bt849A Video capture" }, - { "109e", "0369", "Bt878 Video Capture" }, - { "109e", "036c", "Bt879(Unknown) Video Capture" }, - { "109e", "036e", "Bt878 Video Capture" }, - { "109e", "036f", "Bt879 Video Capture" }, - { "109e", "0370", "Bt880 Video Capture" }, - { "109e", "0878", "Bt878 Audio Capture" }, - { "109e", "0879", "Bt879 Audio Capture" }, - { "109e", "0880", "Bt880 Audio Capture" }, - { "109e", "2115", "BtV 2115 Mediastream controller" }, - { "109e", "2125", "BtV 2125 Mediastream controller" }, - { "109e", "2164", "BtV 2164" }, - { "109e", "2165", "BtV 2165" }, - { "109e", "8230", "Bt8230 ATM Segment/Reassembly Ctrlr (SRC)" }, - { "109e", "8472", "Bt8472" }, - { "109e", "8474", "Bt8474" }, - { "10a5", "3052", "SmartPCI562 56K Modem" }, - { "10a5", "5449", "SmartPCI561 modem" }, - { "10a8", "0000", "STB Horizon 64" }, - { "10a9", "0001", "Crosstalk to PCI Bridge" }, - { "10a9", "0002", "Linc I/O controller" }, - { "10a9", "0003", "IOC3 I/O controller" }, - { "10a9", "0004", "O2 MACE" }, - { "10a9", "0005", "RAD Audio" }, - { "10a9", "0006", "HPCEX" }, - { "10a9", "0007", "RPCEX" }, - { "10a9", "0008", "DiVO VIP" }, - { "10a9", "0009", "AceNIC Gigabit Ethernet" }, - { "10a9", "0010", "AMP Video I/O" }, - { "10a9", "0011", "GRIP" }, - { "10a9", "0012", "SGH PSHAC GSN" }, - { "10a9", "0208", "SSIM1 SAS Adapter" }, - { "10a9", "1001", "Magic Carpet" }, - { "10a9", "1002", "Lithium" }, - { "10a9", "1003", "Dual JPEG 1" }, - { "10a9", "1004", "Dual JPEG 2" }, - { "10a9", "1005", "Dual JPEG 3" }, - { "10a9", "1006", "Dual JPEG 4" }, - { "10a9", "1007", "Dual JPEG 5" }, - { "10a9", "1008", "Cesium" }, - { "10a9", "100a", "IOC4 I/O controller" }, - { "10a9", "1504", "SSIM1 Fibre Channel Adapter" }, - { "10a9", "2001", "Fibre Channel" }, - { "10a9", "2002", "ASDE" }, - { "10a9", "4001", "TIO-CE PCI Express Bridge" }, - { "10a9", "4002", "TIO-CE PCI Express Port" }, - { "10a9", "8001", "O2 1394" }, - { "10a9", "8002", "G-net NT" }, - { "10a9", "802b", "REACT external interrupt controller" }, - { "10aa", "0000", "ACCM 2188" }, - { "10aa", "2051", "2051 CPU bridge" }, - { "10aa", "5842", "2051 ISA bridge" }, - { "10ad", "0001", "W83769F" }, - { "10ad", "0003", "SL82C103" }, - { "10ad", "0005", "SL82C105" }, - { "10ad", "0103", "SL82c103" }, - { "10ad", "0105", "SL82c105" }, - { "10ad", "0565", "W83C553F/W83C554F" }, - { "10b3", "3106", "DB87144" }, - { "10b3", "b106", "DB87144" }, - { "10b4", "1b1d", "Velocity 128 3D" }, - { "10b5", "0001", "i960 PCI bus interface" }, - { "10b5", "0557", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "1000", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "1024", "Acromag, Inc. IndustryPack Carrier Card" }, - { "10b5", "1042", "Brandywine / jxi2, Inc. - PMC-SyncClock32, IRIG A & B, Nasa 36" }, - { "10b5", "106a", "Dual OX16C952 4 port serial adapter [Megawolf Romulus/4]" }, - { "10b5", "1076", "VScom 800 8 port serial adaptor" }, - { "10b5", "1077", "VScom 400 4 port serial adaptor" }, - { "10b5", "1078", "VScom 210 2 port serial and 1 port parallel adaptor" }, - { "10b5", "1103", "VScom 200 2 port serial adaptor" }, - { "10b5", "1146", "VScom 010 1 port parallel adaptor" }, - { "10b5", "1147", "VScom 020 2 port parallel adaptor" }, - { "10b5", "2000", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "2540", "IXXAT CAN-Interface PC-I 04/PCI" }, - { "10b5", "2724", "Thales PCSM Security Card" }, - { "10b5", "3376", "Cosateq 4 Port CAN Card" }, - { "10b5", "4000", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "4001", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "4002", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "6140", "PCI6140 32-bit 33MHz PCI-to-PCI Bridge" }, - { "10b5", "6150", "PCI6150 32-bit 33MHz PCI-to-PCI Bridge" }, - { "10b5", "6152", "PCI6152 32-bit 66MHz PCI-to-PCI Bridge" }, - { "10b5", "6154", "PCI6154 64-bit 66MHz PCI-to-PCI Bridge" }, - { "10b5", "6254", "PCI6254 64-bit 66MHz PCI-to-PCI Bridge" }, - { "10b5", "6466", "PCI6466 64-bit 66MHz PCI-to-PCI Bridge" }, - { "10b5", "6520", "PCI6520 64-bit 133MHz PCI-X-to-PCI-X Bridge" }, - { "10b5", "6540", "PCI6540 64-bit 133MHz PCI-X-to-PCI-X Bridge" }, - { "10b5", "6541", "PCI6540/6466 PCI-PCI bridge (non-transparent mode, primary side)" }, - { "10b5", "6542", "PCI6540/6466 PCI-PCI bridge (non-transparent mode, secondary side)" }, - { "10b5", "8111", "PEX 8111 PCI Express-to-PCI Bridge" }, - { "10b5", "8112", "PEX8112 x1 Lane PCI Express-to-PCI Bridge" }, - { "10b5", "8114", "PEX 8114 PCI Express-to-PCI/PCI-X Bridge" }, - { "10b5", "8311", "PEX8311 x1 Lane PCI Express-to-Generic Local Bus Bridge" }, - { "10b5", "8505", "PEX 8505 5-lane, 5-port PCI Express Switch" }, - { "10b5", "8508", "PEX 8508 8-lane, 5-port PCI Express Switch" }, - { "10b5", "8509", "PEX 8509 8-lane, 8-port PCI Express Switch" }, - { "10b5", "8512", "PEX 8512 12-lane, 5-port PCI Express Switch" }, - { "10b5", "8516", "PEX 8516 Versatile PCI Express Switch" }, - { "10b5", "8517", "PEX 8517 16-lane, 5-port PCI Express Switch" }, - { "10b5", "8518", "PEX 8518 16-lane, 5-port PCI Express Switch" }, - { "10b5", "8524", "PEX 8524 24-lane, 6-port PCI Express Switch" }, - { "10b5", "8525", "PEX 8525 24-lane, 5-port PCI Express Switch" }, - { "10b5", "8532", "PEX 8532 Versatile PCI Express Switch" }, - { "10b5", "8533", "PEX 8533 32-lane, 6-port PCI Express Switch" }, - { "10b5", "8547", "PEX 8547 48-lane, 3-port PCI Express Switch" }, - { "10b5", "8548", "PEX 8548 48-lane, 9-port PCI Express Switch" }, - { "10b5", "8603", "PEX 8603 3-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8604", "PEX 8604 4-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8605", "PEX 8605 PCI Express 4-port Gen2 Switch" }, - { "10b5", "8606", "PEX 8606 6 Lane, 6 Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8608", "PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8609", "PEX 8609 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA" }, - { "10b5", "8612", "PEX 8612 12-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8613", "PEX 8613 12-lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8614", "PEX 8614 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8615", "PEX 8615 12-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA" }, - { "10b5", "8616", "PEX 8616 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8617", "PEX 8617 16-lane, 4-Port PCI Express Gen 2 (5.0 GT/s) Switch with P2P" }, - { "10b5", "8618", "PEX 8618 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8619", "PEX 8619 16-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch with DMA" }, - { "10b5", "8624", "PEX 8624 24-lane, 6-Port PCI Express Gen 2 (5.0 GT/s) Switch [ExpressLane]" }, - { "10b5", "8625", "PEX 8625 24-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8632", "PEX 8632 32-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8636", "PEX 8636 36-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8647", "PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8648", "PEX 8648 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8649", "PEX 8649 48-lane, 12-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8664", "PEX 8664 64-lane, 16-Port PCI Express Gen 2 (5.0 GT/s) Switch" }, - { "10b5", "8680", "PEX 8680 80-lane, 20-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch" }, - { "10b5", "8696", "PEX 8696 96-lane, 24-Port PCI Express Gen 2 (5.0 GT/s) Multi-Root Switch" }, - { "10b5", "8717", "PEX 8717 16-lane, 8-Port PCI Express Gen 3 (8.0 GT/s) Switch with DMA" }, - { "10b5", "8718", "PEX 8718 16-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch" }, - { "10b5", "8724", "PEX 8724 24-Lane, 6-Port PCI Express Gen 3 (8 GT/s) Switch, 19 x 19mm FCBGA" }, - { "10b5", "8725", "PEX 8725 24-Lane, 10-Port PCI Express Gen 3 (8.0 GT/s) Multi-Root Switch with DMA" }, - { "10b5", "8732", "PEX 8732 32-lane, 8-Port PCI Express Gen 3 (8.0 GT/s) Switch" }, - { "10b5", "8734", "PEX 8734 32-lane, 8-Port PCI Express Gen 3 (8.0GT/s) Switch" }, - { "10b5", "8747", "PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch" }, - { "10b5", "8748", "PEX 8748 48-Lane, 12-Port PCI Express Gen 3 (8 GT/s) Switch, 27 x 27mm FCBGA" }, - { "10b5", "8749", "PEX 8749 48-Lane, 18-Port PCI Express Gen 3 (8.0 GT/s) Multi-Root Switch with DMA" }, - { "10b5", "87a0", "PEX PCI Express Switch NT0 Port Link Interface" }, - { "10b5", "87a1", "PEX PCI Express Switch NT1 Port Link Interface" }, - { "10b5", "87b0", "PEX PCI Express Switch NT0 Port Virtual Interface" }, - { "10b5", "87b1", "PEX PCI Express Switch NT1 Port Virtual Interface" }, - { "10b5", "87d0", "PEX PCI Express Switch DMA interface" }, - { "10b5", "9016", "PLX 9016 8-port serial controller" }, - { "10b5", "9030", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "9036", "9036" }, - { "10b5", "9050", "PCI <-> IOBus Bridge" }, - { "10b5", "9052", "PCI9052 PCI <-> IOBus Bridge" }, - { "10b5", "9054", "PCI9054 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "9056", "PCI9056 32-bit 66MHz PCI <-> IOBus Bridge" }, - { "10b5", "9060", "PCI9060 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "906d", "9060SD" }, - { "10b5", "906e", "9060ES" }, - { "10b5", "9080", "PCI9080 32-bit; 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "9656", "PCI9656 PCI <-> IOBus Bridge" }, - { "10b5", "9733", "PEX 9733 33-lane, 9-port PCI Express Gen 3 (8.0 GT/s) Switch" }, - { "10b5", "9749", "PEX 9749 49-lane, 13-port PCI Express Gen 3 (8.0 GT/s) Switch" }, - { "10b5", "a100", "Blackmagic Design DeckLink" }, - { "10b5", "bb04", "B&B 3PCIOSD1A Isolated PCI Serial" }, - { "10b5", "c001", "CronyxOmega-PCI (8-port RS232)" }, - { "10b5", "d00d", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "d33d", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b5", "d44d", "PCI9030 32-bit 33MHz PCI <-> IOBus Bridge" }, - { "10b6", "0001", "Smart 16/4 PCI Ringnode" }, - { "10b6", "0002", "Smart 16/4 PCI Ringnode Mk2" }, - { "10b6", "0003", "Smart 16/4 PCI Ringnode Mk3" }, - { "10b6", "0004", "Smart 16/4 PCI Ringnode Mk1" }, - { "10b6", "0006", "16/4 Cardbus Adapter" }, - { "10b6", "0007", "Presto PCI Adapter" }, - { "10b6", "0009", "Smart 100/16/4 PCI-HS Ringnode" }, - { "10b6", "000a", "Token Ring 100/16/4 Ringnode/Ringrunner" }, - { "10b6", "000b", "16/4 CardBus Adapter Mk2" }, - { "10b6", "000c", "RapidFire 3140V2 16/4 TR Adapter" }, - { "10b6", "1000", "Collage 25/155 ATM Client Adapter" }, - { "10b6", "1001", "Collage 155 ATM Server Adapter" }, - { "10b7", "0001", "3c985 1000BaseSX (SX/TX)" }, - { "10b7", "0013", "AR5212 802.11abg NIC (3CRDAG675)" }, - { "10b7", "0910", "3C910-A01" }, - { "10b7", "1006", "MINI PCI type 3B Data Fax Modem" }, - { "10b7", "1007", "Mini PCI 56k Winmodem" }, - { "10b7", "1201", "3c982-TXM 10/100baseTX Dual Port A [Hydra]" }, - { "10b7", "1202", "3c982-TXM 10/100baseTX Dual Port B [Hydra]" }, - { "10b7", "1700", "3c940 10/100/1000Base-T [Marvell]" }, - { "10b7", "3390", "3c339 TokenLink Velocity" }, - { "10b7", "3590", "3c359 TokenLink Velocity XL" }, - { "10b7", "4500", "3c450 HomePNA [Tornado]" }, - { "10b7", "5055", "3c555 Laptop Hurricane" }, - { "10b7", "5057", "3c575 Megahertz 10/100 LAN CardBus [Boomerang]" }, - { "10b7", "5157", "3cCFE575BT Megahertz 10/100 LAN CardBus [Cyclone]" }, - { "10b7", "5257", "3cCFE575CT CardBus [Cyclone]" }, - { "10b7", "5900", "3c590 10BaseT [Vortex]" }, - { "10b7", "5920", "3c592 EISA 10mbps Demon/Vortex" }, - { "10b7", "5950", "3c595 100BaseTX [Vortex]" }, - { "10b7", "5951", "3c595 100BaseT4 [Vortex]" }, - { "10b7", "5952", "3c595 100Base-MII [Vortex]" }, - { "10b7", "5970", "3c597 EISA Fast Demon/Vortex" }, - { "10b7", "5b57", "3c595 Megahertz 10/100 LAN CardBus [Boomerang]" }, - { "10b7", "6000", "3CRSHPW796 [OfficeConnect Wireless CardBus]" }, - { "10b7", "6001", "3com 3CRWE154G72 [Office Connect Wireless LAN Adapter]" }, - { "10b7", "6055", "3c556 Hurricane CardBus [Cyclone]" }, - { "10b7", "6056", "3c556B CardBus [Tornado]" }, - { "10b7", "6560", "3cCFE656 CardBus [Cyclone]" }, - { "10b7", "6561", "3cCFEM656 10/100 LAN+56K Modem CardBus" }, - { "10b7", "6562", "3cCFEM656B 10/100 LAN+Winmodem CardBus [Cyclone]" }, - { "10b7", "6563", "3cCFEM656B 10/100 LAN+56K Modem CardBus" }, - { "10b7", "6564", "3cXFEM656C 10/100 LAN+Winmodem CardBus [Tornado]" }, - { "10b7", "7646", "3cSOHO100-TX Hurricane" }, - { "10b7", "7770", "3CRWE777 PCI Wireless Adapter [Airconnect]" }, - { "10b7", "7940", "3c803 FDDILink UTP Controller" }, - { "10b7", "7980", "3c804 FDDILink SAS Controller" }, - { "10b7", "7990", "3c805 FDDILink DAS Controller" }, - { "10b7", "80eb", "3c940B 10/100/1000Base-T" }, - { "10b7", "8811", "Token ring" }, - { "10b7", "9000", "3c900 10BaseT [Boomerang]" }, - { "10b7", "9001", "3c900 10Mbps Combo [Boomerang]" }, - { "10b7", "9004", "3c900B-TPO Etherlink XL [Cyclone]" }, - { "10b7", "9005", "3c900B-Combo Etherlink XL [Cyclone]" }, - { "10b7", "9006", "3c900B-TPC Etherlink XL [Cyclone]" }, - { "10b7", "900a", "3c900B-FL 10base-FL [Cyclone]" }, - { "10b7", "9050", "3c905 100BaseTX [Boomerang]" }, - { "10b7", "9051", "3c905 100BaseT4 [Boomerang]" }, - { "10b7", "9054", "3C905B-TX Fast Etherlink XL PCI" }, - { "10b7", "9055", "3c905B 100BaseTX [Cyclone]" }, - { "10b7", "9056", "3c905B-T4 Fast EtherLink XL [Cyclone]" }, - { "10b7", "9058", "3c905B Deluxe Etherlink 10/100/BNC [Cyclone]" }, - { "10b7", "905a", "3c905B-FX Fast Etherlink XL FX 100baseFx [Cyclone]" }, - { "10b7", "9200", "3c905C-TX/TX-M [Tornado]" }, - { "10b7", "9201", "3C920B-EMB Integrated Fast Ethernet Controller [Tornado]" }, - { "10b7", "9202", "3Com 3C920B-EMB-WNM Integrated Fast Ethernet Controller" }, - { "10b7", "9210", "3C920B-EMB-WNM Integrated Fast Ethernet Controller" }, - { "10b7", "9300", "3CSOHO100B-TX 910-A01 [tulip]" }, - { "10b7", "9800", "3c980-TX Fast Etherlink XL Server Adapter [Cyclone]" }, - { "10b7", "9805", "3c980-C 10/100baseTX NIC [Python-T]" }, - { "10b7", "9900", "3C990-TX [Typhoon]" }, - { "10b7", "9902", "3CR990-TX-95 [Typhoon 56-bit]" }, - { "10b7", "9903", "3CR990-TX-97 [Typhoon 168-bit]" }, - { "10b7", "9904", "3C990B-TX-M/3C990BSVR [Typhoon2]" }, - { "10b7", "9905", "3CR990-FX-95/97/95 [Typhon Fiber]" }, - { "10b7", "9908", "3CR990SVR95 [Typhoon Server 56-bit]" }, - { "10b7", "9909", "3CR990SVR97 [Typhoon Server 168-bit]" }, - { "10b7", "990a", "3C990SVR [Typhoon Server]" }, - { "10b7", "990b", "3C990SVR [Typhoon Server]" }, - { "10b8", "0005", "83c170 EPIC/100 Fast Ethernet Adapter" }, - { "10b8", "0006", "83c175 EPIC/100 Fast Ethernet Adapter" }, - { "10b8", "1000", "FDC 37c665" }, - { "10b8", "1001", "FDC 37C922" }, - { "10b8", "a011", "83C170QF" }, - { "10b8", "b106", "SMC34C90" }, - { "10b9", "0101", "CMI8338/C3DX PCI Audio Device" }, - { "10b9", "0111", "C-Media CMI8738/C3DX Audio Device (OEM)" }, - { "10b9", "0780", "Multi-IO Card" }, - { "10b9", "0782", "Multi-IO Card" }, - { "10b9", "1435", "M1435" }, - { "10b9", "1445", "M1445" }, - { "10b9", "1449", "M1449" }, - { "10b9", "1451", "M1451" }, - { "10b9", "1461", "M1461" }, - { "10b9", "1489", "M1489 Cache-Memory PCI Controller (CMP) [FinALi 486] CPU to PCI bridge" }, - { "10b9", "1511", "M1511 [Aladdin]" }, - { "10b9", "1512", "M1512 [Aladdin]" }, - { "10b9", "1513", "M1513 [Aladdin]" }, - { "10b9", "1521", "M1521 [Aladdin III]" }, - { "10b9", "1523", "M1523" }, - { "10b9", "1531", "M1531 [Aladdin IV]" }, - { "10b9", "1533", "M1533/M1535/M1543 PCI to ISA Bridge [Aladdin IV/V/V+]" }, - { "10b9", "1541", "M1541" }, - { "10b9", "1543", "M1543" }, - { "10b9", "1563", "M1563 HyperTransport South Bridge" }, - { "10b9", "1573", "PCI to LPC Controller" }, - { "10b9", "1575", "M1575 South Bridge" }, - { "10b9", "1621", "M1621" }, - { "10b9", "1631", "ALI M1631 PCI North Bridge Aladdin Pro III" }, - { "10b9", "1632", "M1632M Northbridge+Trident" }, - { "10b9", "1641", "ALI M1641 PCI North Bridge Aladdin Pro IV" }, - { "10b9", "1644", "M1644/M1644T Northbridge+Trident" }, - { "10b9", "1646", "M1646 Northbridge+Trident" }, - { "10b9", "1647", "M1647 Northbridge [MAGiK 1 / MobileMAGiK 1]" }, - { "10b9", "1651", "M1651/M1651T Northbridge [Aladdin-Pro 5/5M,Aladdin-Pro 5T/5TM]" }, - { "10b9", "1671", "M1671 Super P4 Northbridge [AGP4X,PCI and SDR/DDR]" }, - { "10b9", "1672", "M1672 Northbridge [CyberALADDiN-P4]" }, - { "10b9", "1681", "M1681 P4 Northbridge [AGP8X,HyperTransport and SDR/DDR]" }, - { "10b9", "1687", "M1687 K8 Northbridge [AGP8X and HyperTransport]" }, - { "10b9", "1689", "M1689 K8 Northbridge [Super K8 Single Chip]" }, - { "10b9", "1695", "M1695 Host Bridge" }, - { "10b9", "1697", "M1697 HTT Host Bridge" }, - { "10b9", "3141", "M3141" }, - { "10b9", "3143", "M3143" }, - { "10b9", "3145", "M3145" }, - { "10b9", "3147", "M3147" }, - { "10b9", "3149", "M3149" }, - { "10b9", "3151", "M3151" }, - { "10b9", "3307", "M3307" }, - { "10b9", "3309", "M3309" }, - { "10b9", "3323", "M3325 Video/Audio Decoder" }, - { "10b9", "5212", "M4803" }, - { "10b9", "5215", "MS4803" }, - { "10b9", "5217", "M5217H" }, - { "10b9", "5219", "M5219" }, - { "10b9", "5225", "M5225" }, - { "10b9", "5228", "M5228 ALi ATA/RAID Controller" }, - { "10b9", "5229", "M5229 IDE" }, - { "10b9", "5235", "M5225" }, - { "10b9", "5237", "USB 1.1 Controller" }, - { "10b9", "5239", "USB 2.0 Controller" }, - { "10b9", "5243", "M1541 PCI to AGP Controller" }, - { "10b9", "5246", "AGP8X Controller" }, - { "10b9", "5247", "PCI to AGP Controller" }, - { "10b9", "5249", "M5249 HTT to PCI Bridge" }, - { "10b9", "524b", "PCI Express Root Port" }, - { "10b9", "524c", "PCI Express Root Port" }, - { "10b9", "524d", "PCI Express Root Port" }, - { "10b9", "524e", "PCI Express Root Port" }, - { "10b9", "5251", "M5251 P1394 OHCI 1.0 Controller" }, - { "10b9", "5253", "M5253 P1394 OHCI 1.1 Controller" }, - { "10b9", "5261", "M5261 Ethernet Controller" }, - { "10b9", "5263", "ULi 1689,1573 integrated ethernet." }, - { "10b9", "5281", "ALi M5281 Serial ATA / RAID Host Controller" }, - { "10b9", "5287", "ULi 5287 SATA" }, - { "10b9", "5288", "ULi M5288 SATA" }, - { "10b9", "5289", "ULi 5289 SATA" }, - { "10b9", "5450", "Lucent Technologies Soft Modem AMR" }, - { "10b9", "5451", "M5451 PCI AC-Link Controller Audio Device" }, - { "10b9", "5453", "M5453 PCI AC-Link Controller Modem Device" }, - { "10b9", "5455", "M5455 PCI AC-Link Controller Audio Device" }, - { "10b9", "5457", "M5457 AC'97 Modem Controller" }, - { "10b9", "5459", "SmartLink SmartPCI561 56K Modem" }, - { "10b9", "545a", "SmartLink SmartPCI563 56K Modem" }, - { "10b9", "5461", "HD Audio Controller" }, - { "10b9", "5471", "M5471 Memory Stick Controller" }, - { "10b9", "5473", "M5473 SD-MMC Controller" }, - { "10b9", "7101", "M7101 Power Management Controller [PMU]" }, - { "10ba", "0301", "AccelGraphics AccelECLIPSE" }, - { "10ba", "0304", "AccelGALAXY A2100 [OEM Evans & Sutherland]" }, - { "10ba", "0308", "Tornado 3000 [OEM Evans & Sutherland]" }, - { "10ba", "1002", "VG500 [VolumePro Volume Rendering Accelerator]" }, - { "10bd", "0e34", "NE-34" }, - { "10c8", "0001", "NM2070 [MagicGraph 128]" }, - { "10c8", "0002", "NM2090 [MagicGraph 128V]" }, - { "10c8", "0003", "NM2093 [MagicGraph 128ZV]" }, - { "10c8", "0004", "NM2160 [MagicGraph 128XD]" }, - { "10c8", "0005", "NM2200 [MagicGraph 256AV]" }, - { "10c8", "0006", "NM2360 [MagicMedia 256ZX]" }, - { "10c8", "0016", "NM2380 [MagicMedia 256XL+]" }, - { "10c8", "0025", "NM2230 [MagicGraph 256AV+]" }, - { "10c8", "0083", "NM2093 [MagicGraph 128ZV+]" }, - { "10c8", "8005", "NM2200 [MagicMedia 256AV Audio]" }, - { "10c8", "8006", "NM2360 [MagicMedia 256ZX Audio]" }, - { "10c8", "8016", "NM2380 [MagicMedia 256XL+ Audio]" }, - { "10cc", "0660", "Articia S Host Bridge" }, - { "10cc", "0661", "Articia S PCI Bridge" }, - { "10cd", "1100", "ASC1100" }, - { "10cd", "1200", "ASC1200 [(abp940) Fast SCSI-II]" }, - { "10cd", "1300", "ASC1300 / ASC3030 [ABP940-U / ABP960-U / ABP3925]" }, - { "10cd", "2300", "ABP940-UW" }, - { "10cd", "2500", "ABP940-U2W" }, - { "10cd", "2700", "ABP3950-U3W" }, - { "10cf", "01ef", "PCEA4 PCI-Express Dual Port ESCON Adapter" }, - { "10cf", "1414", "On-board USB 1.1 companion controller" }, - { "10cf", "1415", "On-board USB 2.0 EHCI controller" }, - { "10cf", "1422", "E8410 nVidia graphics adapter" }, - { "10cf", "142d", "HD audio (Realtek ALC262)" }, - { "10cf", "1430", "82566MM Intel 1Gb copper LAN interface" }, - { "10cf", "1623", "PCEA4 PCI-Express Dual Port ESCON Adapter" }, - { "10cf", "2001", "mb86605" }, - { "10cf", "200c", "MB86613L IEEE1394 OHCI 1.0 Controller" }, - { "10cf", "2010", "MB86613S IEEE1394 OHCI 1.1 Controller" }, - { "10cf", "2019", "MB86295S [CORAL P]" }, - { "10cf", "201e", "MB86296S [CORAL PA]" }, - { "10cf", "202b", "MB86297A [Carmine Graphics Controller]" }, - { "10d9", "0431", "MX98715" }, - { "10d9", "0512", "MX98713" }, - { "10d9", "0531", "MX987x5" }, - { "10d9", "8625", "MX86250" }, - { "10d9", "8626", "Macronix MX86251 + 3Dfx Voodoo Rush" }, - { "10d9", "8888", "MX86200" }, - { "10da", "0508", "TC4048 Token Ring 4/16" }, - { "10da", "3390", "Tl3c3x9" }, - { "10dc", "0001", "STAR/RD24 SCI-PCI (PMC)" }, - { "10dc", "0002", "TAR/RD24 SCI-PCI (PMC)" }, - { "10dc", "0021", "HIPPI destination" }, - { "10dc", "0022", "HIPPI source" }, - { "10dc", "10dc", "ATT2C15-3 FPGA" }, - { "10dd", "0100", "Lightning 1200" }, - { "10de", "0008", "NV1 [STG2000X-B Series]" }, - { "10de", "0009", "NV1 [NV1 Series]" }, - { "10de", "0018", "NV3 [Riva 128]" }, - { "10de", "0019", "NV3 [Riva 128ZX]" }, - { "10de", "0020", "NV4 [Riva TNT]" }, - { "10de", "0028", "NV5 [Riva TNT2 / TNT2 Pro]" }, - { "10de", "0029", "NV5 [Riva TNT2 Ultra]" }, - { "10de", "002a", "NV5 [Riva TNT2]" }, - { "10de", "002b", "NV5 [Riva TNT2]" }, - { "10de", "002c", "NV5 [Vanta / Vanta LT]" }, - { "10de", "002d", "NV5 [Riva TNT2 Model 64 / Model 64 Pro]" }, - { "10de", "0034", "MCP04 SMBus" }, - { "10de", "0035", "MCP04 IDE" }, - { "10de", "0036", "MCP04 Serial ATA Controller" }, - { "10de", "0037", "MCP04 Ethernet Controller" }, - { "10de", "0038", "MCP04 Ethernet Controller" }, - { "10de", "003a", "MCP04 AC'97 Audio Controller" }, - { "10de", "003b", "MCP04 USB Controller" }, - { "10de", "003c", "MCP04 USB Controller" }, - { "10de", "003d", "MCP04 PCI Bridge" }, - { "10de", "003e", "MCP04 Serial ATA Controller" }, - { "10de", "0040", "NV40 [GeForce 6800 Ultra]" }, - { "10de", "0041", "NV40 [GeForce 6800]" }, - { "10de", "0042", "NV40 [GeForce 6800 LE]" }, - { "10de", "0043", "NV40 [GeForce 6800 XE]" }, - { "10de", "0044", "NV40 [GeForce 6800 XT]" }, - { "10de", "0045", "NV40 [GeForce 6800 GT]" }, - { "10de", "0047", "NV40 [GeForce 6800 GS]" }, - { "10de", "0048", "NV40 [GeForce 6800 XT]" }, - { "10de", "004e", "NV40GL [Quadro FX 4000]" }, - { "10de", "0050", "CK804 ISA Bridge" }, - { "10de", "0051", "CK804 ISA Bridge" }, - { "10de", "0052", "CK804 SMBus" }, - { "10de", "0053", "CK804 IDE" }, - { "10de", "0054", "CK804 Serial ATA Controller" }, - { "10de", "0055", "CK804 Serial ATA Controller" }, - { "10de", "0056", "CK804 Ethernet Controller" }, - { "10de", "0057", "CK804 Ethernet Controller" }, - { "10de", "0058", "CK804 AC'97 Modem" }, - { "10de", "0059", "CK804 AC'97 Audio Controller" }, - { "10de", "005a", "CK804 USB Controller" }, - { "10de", "005b", "CK804 USB Controller" }, - { "10de", "005c", "CK804 PCI Bridge" }, - { "10de", "005d", "CK804 PCIE Bridge" }, - { "10de", "005e", "CK804 Memory Controller" }, - { "10de", "005f", "CK804 Memory Controller" }, - { "10de", "0060", "nForce2 ISA Bridge" }, - { "10de", "0064", "nForce2 SMBus (MCP)" }, - { "10de", "0065", "nForce2 IDE" }, - { "10de", "0066", "nForce2 Ethernet Controller" }, - { "10de", "0067", "nForce2 USB Controller" }, - { "10de", "0068", "nForce2 USB Controller" }, - { "10de", "006a", "nForce2 AC97 Audio Controler (MCP)" }, - { "10de", "006b", "nForce Audio Processing Unit" }, - { "10de", "006c", "nForce2 External PCI Bridge" }, - { "10de", "006d", "nForce2 PCI Bridge" }, - { "10de", "006e", "nForce2 FireWire (IEEE 1394) Controller" }, - { "10de", "0080", "MCP2A ISA bridge" }, - { "10de", "0084", "MCP2A SMBus" }, - { "10de", "0085", "MCP2A IDE" }, - { "10de", "0086", "MCP2A Ethernet Controller" }, - { "10de", "0087", "MCP2A USB Controller" }, - { "10de", "0088", "MCP2A USB Controller" }, - { "10de", "008a", "MCP2S AC'97 Audio Controller" }, - { "10de", "008b", "MCP2A PCI Bridge" }, - { "10de", "008c", "MCP2A Ethernet Controller" }, - { "10de", "008e", "nForce2 Serial ATA Controller" }, - { "10de", "0090", "G70 [GeForce 7800 GTX]" }, - { "10de", "0091", "G70 [GeForce 7800 GTX]" }, - { "10de", "0092", "G70 [GeForce 7800 GT]" }, - { "10de", "0093", "G70 [GeForce 7800 GS]" }, - { "10de", "0095", "G70 [GeForce 7800 SLI]" }, - { "10de", "0097", "G70 [GeForce GTS 250]" }, - { "10de", "0098", "G70M [GeForce Go 7800]" }, - { "10de", "0099", "G70M [GeForce Go 7800 GTX]" }, - { "10de", "009d", "G70GL [Quadro FX 4500]" }, - { "10de", "00a0", "NV0A [Aladdin TNT2 IGP]" }, - { "10de", "00c0", "NV41 [GeForce 6800 GS]" }, - { "10de", "00c1", "NV41 [GeForce 6800]" }, - { "10de", "00c2", "NV41 [GeForce 6800 LE]" }, - { "10de", "00c3", "NV41 [GeForce 6800 XT]" }, - { "10de", "00c5", "NV41" }, - { "10de", "00c6", "NV41" }, - { "10de", "00c7", "NV41" }, - { "10de", "00c8", "NV41M [GeForce Go 6800]" }, - { "10de", "00c9", "NV41M [GeForce Go 6800 Ultra]" }, - { "10de", "00cc", "NV41GLM [Quadro FX Go1400]" }, - { "10de", "00cd", "NV42GL [Quadro FX 3450/4000 SDI]" }, - { "10de", "00ce", "NV41GL [Quadro FX 1400]" }, - { "10de", "00cf", "NV41" }, - { "10de", "00d0", "nForce3 LPC Bridge" }, - { "10de", "00d1", "nForce3 Host Bridge" }, - { "10de", "00d2", "nForce3 AGP Bridge" }, - { "10de", "00d3", "CK804 Memory Controller" }, - { "10de", "00d4", "nForce3 SMBus" }, - { "10de", "00d5", "nForce3 IDE" }, - { "10de", "00d6", "nForce3 Ethernet" }, - { "10de", "00d7", "nForce3 USB 1.1" }, - { "10de", "00d8", "nForce3 USB 2.0" }, - { "10de", "00d9", "nForce3 Audio" }, - { "10de", "00da", "nForce3 Audio" }, - { "10de", "00dd", "nForce3 PCI Bridge" }, - { "10de", "00df", "CK8S Ethernet Controller" }, - { "10de", "00e0", "nForce3 250Gb LPC Bridge" }, - { "10de", "00e1", "nForce3 250Gb Host Bridge" }, - { "10de", "00e2", "nForce3 250Gb AGP Host to PCI Bridge" }, - { "10de", "00e3", "nForce3 Serial ATA Controller" }, - { "10de", "00e4", "nForce 250Gb PCI System Management" }, - { "10de", "00e5", "CK8S Parallel ATA Controller (v2.5)" }, - { "10de", "00e6", "CK8S Ethernet Controller" }, - { "10de", "00e7", "CK8S USB Controller" }, - { "10de", "00e8", "nForce3 EHCI USB 2.0 Controller" }, - { "10de", "00ea", "nForce3 250Gb AC'97 Audio Controller" }, - { "10de", "00ed", "nForce3 250Gb PCI-to-PCI Bridge" }, - { "10de", "00ee", "nForce3 Serial ATA Controller 2" }, - { "10de", "00f1", "NV43 [GeForce 6600 GT]" }, - { "10de", "00f2", "NV43 [GeForce 6600]" }, - { "10de", "00f3", "NV43 [GeForce 6200]" }, - { "10de", "00f4", "NV43 [GeForce 6600 LE]" }, - { "10de", "00f5", "G70/G71 [GeForce 7800 GS AGP]" }, - { "10de", "00f6", "NV43 [GeForce 6800 GS/XT]" }, - { "10de", "00f8", "NV45GL [Quadro FX 3400/4400]" }, - { "10de", "00f9", "NV40 [GeForce 6800 GT/GTO/Ultra]" }, - { "10de", "00fa", "NV39 [GeForce PCX 5750]" }, - { "10de", "00fb", "NV35 [GeForce PCX 5900]" }, - { "10de", "00fc", "NV37GL [Quadro FX 330/GeForce PCX 5300]" }, - { "10de", "00fd", "NV37GL [Quadro PCI-E Series]" }, - { "10de", "00fe", "NV38GL [Quadro FX 1300]" }, - { "10de", "00ff", "NV19 [GeForce PCX 4300]" }, - { "10de", "0100", "NV10 [GeForce 256 SDR]" }, - { "10de", "0101", "NV10 [GeForce 256 DDR]" }, - { "10de", "0103", "NV10GL [Quadro]" }, - { "10de", "0110", "NV11 [GeForce2 MX/MX 400]" }, - { "10de", "0111", "NV11 [GeForce2 MX200]" }, - { "10de", "0112", "NV11M [GeForce2 Go]" }, - { "10de", "0113", "NV11GL [Quadro2 MXR/EX/Go]" }, - { "10de", "0140", "NV43 [GeForce 6600 GT]" }, - { "10de", "0141", "NV43 [GeForce 6600]" }, - { "10de", "0142", "NV43 [GeForce 6600 LE]" }, - { "10de", "0143", "NV43 [GeForce 6600 VE]" }, - { "10de", "0144", "NV43M [GeForce Go 6600]" }, - { "10de", "0145", "NV43 [GeForce 6610 XL]" }, - { "10de", "0146", "NV43M [GeForce Go6200 TE / 6600 TE]" }, - { "10de", "0147", "NV43 [GeForce 6700 XL]" }, - { "10de", "0148", "NV43M [GeForce Go 6600]" }, - { "10de", "0149", "NV43M [GeForce Go 6600 GT]" }, - { "10de", "014a", "NV43 [Quadro NVS 440]" }, - { "10de", "014b", "NV43" }, - { "10de", "014d", "NV43GL [Quadro FX 550]" }, - { "10de", "014e", "NV43GL [Quadro FX 540]" }, - { "10de", "014f", "NV43 [GeForce 6200]" }, - { "10de", "0150", "NV15 [GeForce2 GTS/Pro]" }, - { "10de", "0151", "NV15 [GeForce2 Ti]" }, - { "10de", "0152", "NV15 [GeForce2 Ultra]" }, - { "10de", "0153", "NV15GL [Quadro2 Pro]" }, - { "10de", "0160", "NV44 [GeForce 6500]" }, - { "10de", "0161", "NV44 [GeForce 6200 TurboCache]" }, - { "10de", "0162", "NV44 [GeForce 6200 SE TurboCache]" }, - { "10de", "0163", "NV44 [GeForce 6200 LE]" }, - { "10de", "0164", "NV44M [GeForce Go 6200]" }, - { "10de", "0165", "NV44 [Quadro NVS 285]" }, - { "10de", "0166", "NV44M [GeForce Go 6400]" }, - { "10de", "0167", "NV44M [GeForce Go 6200]" }, - { "10de", "0168", "NV44M [GeForce Go 6400]" }, - { "10de", "0169", "NV44 [GeForce 6250]" }, - { "10de", "016a", "NV44 [GeForce 7100 GS]" }, - { "10de", "016d", "NV44" }, - { "10de", "016e", "NV44" }, - { "10de", "016f", "NV44" }, - { "10de", "0170", "NV17 [GeForce4 MX 460]" }, - { "10de", "0171", "NV17 [GeForce4 MX 440]" }, - { "10de", "0172", "NV17 [GeForce4 MX 420]" }, - { "10de", "0173", "NV17 [GeForce4 MX 440-SE]" }, - { "10de", "0174", "NV17M [GeForce4 440 Go]" }, - { "10de", "0175", "NV17M [GeForce4 420 Go]" }, - { "10de", "0176", "NV17M [GeForce4 420 Go 32M]" }, - { "10de", "0177", "NV17M [GeForce4 460 Go]" }, - { "10de", "0178", "NV17GL [Quadro4 550 XGL]" }, - { "10de", "0179", "NV17M [GeForce4 440 Go 64M]" }, - { "10de", "017a", "NV17GL [Quadro NVS]" }, - { "10de", "017b", "NV17GL [Quadro4 550 XGL]" }, - { "10de", "017c", "NV17GL [Quadro4 500 GoGL]" }, - { "10de", "017f", "NV17" }, - { "10de", "0181", "NV18 [GeForce4 MX 440 AGP 8x]" }, - { "10de", "0182", "NV18 [GeForce4 MX 440SE AGP 8x]" }, - { "10de", "0183", "NV18 [GeForce4 MX 420 AGP 8x]" }, - { "10de", "0184", "NV18 [GeForce4 MX]" }, - { "10de", "0185", "NV18 [GeForce4 MX 4000]" }, - { "10de", "0186", "NV18M [GeForce4 448 Go]" }, - { "10de", "0187", "NV18M [GeForce4 488 Go]" }, - { "10de", "0188", "NV18GL [Quadro4 580 XGL]" }, - { "10de", "0189", "NV18 [GeForce4 MX with AGP8X (Mac)]" }, - { "10de", "018a", "NV18GL [Quadro NVS 280 SD]" }, - { "10de", "018b", "NV18GL [Quadro4 380 XGL]" }, - { "10de", "018c", "NV18GL [Quadro NVS 50 PCI]" }, - { "10de", "018d", "NV18M [GeForce4 448 Go]" }, - { "10de", "0190", "G80 [GeForce 8800 GTS / 8800 GTX]" }, - { "10de", "0191", "G80 [GeForce 8800 GTX]" }, - { "10de", "0192", "G80 [GeForce 8800 GTS]" }, - { "10de", "0193", "G80 [GeForce 8800 GTS]" }, - { "10de", "0194", "G80 [GeForce 8800 Ultra]" }, - { "10de", "0197", "G80GL [Tesla C870]" }, - { "10de", "019d", "G80GL [Quadro FX 5600]" }, - { "10de", "019e", "G80GL [Quadro FX 4600]" }, - { "10de", "01a0", "nForce 220/420 NV1A [GeForce2 MX]" }, - { "10de", "01a4", "nForce CPU bridge" }, - { "10de", "01ab", "nForce 420 Memory Controller (DDR)" }, - { "10de", "01ac", "nForce 220/420 Memory Controller" }, - { "10de", "01ad", "nForce 220/420 Memory Controller" }, - { "10de", "01b0", "nForce Audio Processing Unit" }, - { "10de", "01b1", "nForce AC'97 Audio Controller" }, - { "10de", "01b2", "nForce ISA Bridge" }, - { "10de", "01b4", "nForce PCI System Management" }, - { "10de", "01b7", "nForce AGP to PCI Bridge" }, - { "10de", "01b8", "nForce PCI-to-PCI bridge" }, - { "10de", "01bc", "nForce IDE" }, - { "10de", "01c1", "nForce AC'97 Modem Controller" }, - { "10de", "01c2", "nForce USB Controller" }, - { "10de", "01c3", "nForce Ethernet Controller" }, - { "10de", "01d0", "G72 [GeForce 7350 LE]" }, - { "10de", "01d1", "G72 [GeForce 7300 LE]" }, - { "10de", "01d2", "G72 [GeForce 7550 LE]" }, - { "10de", "01d3", "G72 [GeForce 7200 GS / 7300 SE]" }, - { "10de", "01d5", "G72" }, - { "10de", "01d6", "G72M [GeForce Go 7200]" }, - { "10de", "01d7", "G72M [Quadro NVS 110M/GeForce Go 7300]" }, - { "10de", "01d8", "G72M [GeForce Go 7400]" }, - { "10de", "01d9", "G72M [GeForce Go 7450]" }, - { "10de", "01da", "G72M [Quadro NVS 110M]" }, - { "10de", "01db", "G72M [Quadro NVS 120M]" }, - { "10de", "01dc", "G72GLM [Quadro FX 350M]" }, - { "10de", "01dd", "G72 [GeForce 7500 LE]" }, - { "10de", "01de", "G72GL [Quadro FX 350]" }, - { "10de", "01df", "G72 [GeForce 7300 GS]" }, - { "10de", "01e0", "nForce2 IGP2" }, - { "10de", "01e8", "nForce2 AGP" }, - { "10de", "01ea", "nForce2 Memory Controller 0" }, - { "10de", "01eb", "nForce2 Memory Controller 1" }, - { "10de", "01ec", "nForce2 Memory Controller 2" }, - { "10de", "01ed", "nForce2 Memory Controller 3" }, - { "10de", "01ee", "nForce2 Memory Controller 4" }, - { "10de", "01ef", "nForce2 Memory Controller 5" }, - { "10de", "01f0", "NV1F C17 [GeForce4 MX IGP]" }, - { "10de", "0200", "NV20 [GeForce3]" }, - { "10de", "0201", "NV20 [GeForce3 Ti 200]" }, - { "10de", "0202", "NV20 [GeForce3 Ti 500]" }, - { "10de", "0203", "NV20GL [Quadro DCC]" }, - { "10de", "0211", "NV48 [GeForce 6800]" }, - { "10de", "0212", "NV48 [GeForce 6800 LE]" }, - { "10de", "0215", "NV48 [GeForce 6800 GT]" }, - { "10de", "0218", "NV48 [GeForce 6800 XT]" }, - { "10de", "0221", "NV44A [GeForce 6200]" }, - { "10de", "0222", "NV44 [GeForce 6200 A-LE]" }, - { "10de", "0224", "NV44" }, - { "10de", "0240", "C51PV [GeForce 6150]" }, - { "10de", "0241", "C51 [GeForce 6150 LE]" }, - { "10de", "0242", "C51G [GeForce 6100]" }, - { "10de", "0243", "C51 PCI Express Bridge" }, - { "10de", "0244", "C51 [GeForce Go 6150]" }, - { "10de", "0245", "C51 [Quadro NVS 210S/GeForce 6150LE]" }, - { "10de", "0246", "C51 PCI Express Bridge" }, - { "10de", "0247", "C51 [GeForce Go 6100]" }, - { "10de", "0248", "C51 PCI Express Bridge" }, - { "10de", "0249", "C51 PCI Express Bridge" }, - { "10de", "024a", "C51 PCI Express Bridge" }, - { "10de", "024b", "C51 PCI Express Bridge" }, - { "10de", "024c", "C51 PCI Express Bridge" }, - { "10de", "024d", "C51 PCI Express Bridge" }, - { "10de", "024e", "C51 PCI Express Bridge" }, - { "10de", "024f", "C51 PCI Express Bridge" }, - { "10de", "0250", "NV25 [GeForce4 Ti 4600]" }, - { "10de", "0251", "NV25 [GeForce4 Ti 4400]" }, - { "10de", "0252", "NV25 [GeForce4 Ti]" }, - { "10de", "0253", "NV25 [GeForce4 Ti 4200]" }, - { "10de", "0258", "NV25GL [Quadro4 900 XGL]" }, - { "10de", "0259", "NV25GL [Quadro4 750 XGL]" }, - { "10de", "025b", "NV25GL [Quadro4 700 XGL]" }, - { "10de", "0260", "MCP51 LPC Bridge" }, - { "10de", "0261", "MCP51 LPC Bridge" }, - { "10de", "0262", "MCP51 LPC Bridge" }, - { "10de", "0263", "MCP51 LPC Bridge" }, - { "10de", "0264", "MCP51 SMBus" }, - { "10de", "0265", "MCP51 IDE" }, - { "10de", "0266", "MCP51 Serial ATA Controller" }, - { "10de", "0267", "MCP51 Serial ATA Controller" }, - { "10de", "0268", "MCP51 Ethernet Controller" }, - { "10de", "0269", "MCP51 Ethernet Controller" }, - { "10de", "026a", "MCP51 MCI" }, - { "10de", "026b", "MCP51 AC97 Audio Controller" }, - { "10de", "026c", "MCP51 High Definition Audio" }, - { "10de", "026d", "MCP51 USB Controller" }, - { "10de", "026e", "MCP51 USB Controller" }, - { "10de", "026f", "MCP51 PCI Bridge" }, - { "10de", "0270", "MCP51 Host Bridge" }, - { "10de", "0271", "MCP51 PMU" }, - { "10de", "0272", "MCP51 Memory Controller 0" }, - { "10de", "027e", "C51 Memory Controller 2" }, - { "10de", "027f", "C51 Memory Controller 3" }, - { "10de", "0280", "NV28 [GeForce4 Ti 4800]" }, - { "10de", "0281", "NV28 [GeForce4 Ti 4200 AGP 8x]" }, - { "10de", "0282", "NV28 [GeForce4 Ti 4800 SE]" }, - { "10de", "0286", "NV28M [GeForce4 Ti 4200 Go AGP 8x]" }, - { "10de", "0288", "NV28GL [Quadro4 980 XGL]" }, - { "10de", "0289", "NV28GL [Quadro4 780 XGL]" }, - { "10de", "028c", "NV28GLM [Quadro4 Go700]" }, - { "10de", "0290", "G71 [GeForce 7900 GTX]" }, - { "10de", "0291", "G71 [GeForce 7900 GT/GTO]" }, - { "10de", "0292", "G71 [GeForce 7900 GS]" }, - { "10de", "0293", "G71 [GeForce 7900 GX2]" }, - { "10de", "0294", "G71 [GeForce 7950 GX2]" }, - { "10de", "0295", "G71 [GeForce 7950 GT]" }, - { "10de", "0297", "G71M [GeForce Go 7950 GTX]" }, - { "10de", "0298", "G71M [GeForce Go 7900 GS]" }, - { "10de", "0299", "G71M [GeForce Go 7900 GTX]" }, - { "10de", "029a", "G71GLM [Quadro FX 2500M]" }, - { "10de", "029b", "G71GLM [Quadro FX 1500M]" }, - { "10de", "029c", "G71GL [Quadro FX 5500]" }, - { "10de", "029d", "G71GL [Quadro FX 3500]" }, - { "10de", "029e", "G71GL [Quadro FX 1500]" }, - { "10de", "029f", "G71GL [Quadro FX 4500 X2]" }, - { "10de", "02a0", "NV2A [XGPU]" }, - { "10de", "02a5", "MCPX CPU Bridge" }, - { "10de", "02a6", "MCPX Memory Controller" }, - { "10de", "02e0", "G73 [GeForce 7600 GT AGP]" }, - { "10de", "02e1", "G73 [GeForce 7600 GS AGP]" }, - { "10de", "02e2", "G73 [GeForce 7300 GT AGP]" }, - { "10de", "02e3", "G71 [GeForce 7900 GS AGP]" }, - { "10de", "02e4", "G71 [GeForce 7950 GT AGP]" }, - { "10de", "02e5", "G71 [GeForce 7600 GS AGP]" }, - { "10de", "02f0", "C51 Host Bridge" }, - { "10de", "02f1", "C51 Host Bridge" }, - { "10de", "02f2", "C51 Host Bridge" }, - { "10de", "02f3", "C51 Host Bridge" }, - { "10de", "02f4", "C51 Host Bridge" }, - { "10de", "02f5", "C51 Host Bridge" }, - { "10de", "02f6", "C51 Host Bridge" }, - { "10de", "02f7", "C51 Host Bridge" }, - { "10de", "02f8", "C51 Memory Controller 5" }, - { "10de", "02f9", "C51 Memory Controller 4" }, - { "10de", "02fa", "C51 Memory Controller 0" }, - { "10de", "02fb", "C51 PCI Express Bridge" }, - { "10de", "02fc", "C51 PCI Express Bridge" }, - { "10de", "02fd", "C51 PCI Express Bridge" }, - { "10de", "02fe", "C51 Memory Controller 1" }, - { "10de", "02ff", "C51 Host Bridge" }, - { "10de", "0300", "NV30 [GeForce FX]" }, - { "10de", "0301", "NV30 [GeForce FX 5800 Ultra]" }, - { "10de", "0302", "NV30 [GeForce FX 5800]" }, - { "10de", "0308", "NV30GL [Quadro FX 2000]" }, - { "10de", "0309", "NV30GL [Quadro FX 1000]" }, - { "10de", "0311", "NV31 [GeForce FX 5600 Ultra]" }, - { "10de", "0312", "NV31 [GeForce FX 5600]" }, - { "10de", "0314", "NV31 [GeForce FX 5600XT]" }, - { "10de", "0316", "NV31M" }, - { "10de", "0318", "NV31GL" }, - { "10de", "031a", "NV31M [GeForce FX Go5600]" }, - { "10de", "031b", "NV31M [GeForce FX Go5650]" }, - { "10de", "031c", "NV31GLM [Quadro FX Go700]" }, - { "10de", "0320", "NV34 [GeForce FX 5200]" }, - { "10de", "0321", "NV34 [GeForce FX 5200 Ultra]" }, - { "10de", "0322", "NV34 [GeForce FX 5200]" }, - { "10de", "0323", "NV34 [GeForce FX 5200LE]" }, - { "10de", "0324", "NV34M [GeForce FX Go5200 64M]" }, - { "10de", "0325", "NV34M [GeForce FX Go5250]" }, - { "10de", "0326", "NV34 [GeForce FX 5500]" }, - { "10de", "0327", "NV34 [GeForce FX 5100]" }, - { "10de", "0328", "NV34M [GeForce FX Go5200 32M/64M]" }, - { "10de", "0329", "NV34M [GeForce FX Go5200]" }, - { "10de", "032a", "NV34GL [Quadro NVS 280 PCI]" }, - { "10de", "032b", "NV34GL [Quadro FX 500/600 PCI]" }, - { "10de", "032c", "NV34M [GeForce FX Go5300 / Go5350]" }, - { "10de", "032d", "NV34M [GeForce FX Go5100]" }, - { "10de", "032e", "NV34" }, - { "10de", "032f", "NV34 [GeForce FX 5200]" }, - { "10de", "0330", "NV35 [GeForce FX 5900 Ultra]" }, - { "10de", "0331", "NV35 [GeForce FX 5900]" }, - { "10de", "0332", "NV35 [GeForce FX 5900XT]" }, - { "10de", "0333", "NV38 [GeForce FX 5950 Ultra]" }, - { "10de", "0334", "NV35 [GeForce FX 5900ZT]" }, - { "10de", "0338", "NV35GL [Quadro FX 3000]" }, - { "10de", "033f", "NV35GL [Quadro FX 700]" }, - { "10de", "0341", "NV36 [GeForce FX 5700 Ultra]" }, - { "10de", "0342", "NV36 [GeForce FX 5700]" }, - { "10de", "0343", "NV36 [GeForce FX 5700LE]" }, - { "10de", "0344", "NV36 [GeForce FX 5700VE]" }, - { "10de", "0347", "NV36M [GeForce FX Go5700]" }, - { "10de", "0348", "NV36M [GeForce FX Go5700]" }, - { "10de", "034c", "NV36 [Quadro FX Go1000]" }, - { "10de", "034d", "NV36" }, - { "10de", "034e", "NV36GL [Quadro FX 1100]" }, - { "10de", "0360", "MCP55 LPC Bridge" }, - { "10de", "0361", "MCP55 LPC Bridge" }, - { "10de", "0362", "MCP55 LPC Bridge" }, - { "10de", "0363", "MCP55 LPC Bridge" }, - { "10de", "0364", "MCP55 LPC Bridge" }, - { "10de", "0365", "MCP55 LPC Bridge" }, - { "10de", "0366", "MCP55 LPC Bridge" }, - { "10de", "0367", "MCP55 LPC Bridge" }, - { "10de", "0368", "MCP55 SMBus Controller" }, - { "10de", "0369", "MCP55 Memory Controller" }, - { "10de", "036a", "MCP55 Memory Controller" }, - { "10de", "036b", "MCP55 SMU" }, - { "10de", "036c", "MCP55 USB Controller" }, - { "10de", "036d", "MCP55 USB Controller" }, - { "10de", "036e", "MCP55 IDE" }, - { "10de", "0370", "MCP55 PCI bridge" }, - { "10de", "0371", "MCP55 High Definition Audio" }, - { "10de", "0372", "MCP55 Ethernet" }, - { "10de", "0373", "MCP55 Ethernet" }, - { "10de", "0374", "MCP55 PCI Express bridge" }, - { "10de", "0375", "MCP55 PCI Express bridge" }, - { "10de", "0376", "MCP55 PCI Express bridge" }, - { "10de", "0377", "MCP55 PCI Express bridge" }, - { "10de", "0378", "MCP55 PCI Express bridge" }, - { "10de", "037a", "MCP55 Memory Controller" }, - { "10de", "037e", "MCP55 SATA Controller" }, - { "10de", "037f", "MCP55 SATA Controller" }, - { "10de", "038b", "G73 [GeForce 7650 GS]" }, - { "10de", "0390", "G73 [GeForce 7650 GS]" }, - { "10de", "0391", "G73 [GeForce 7600 GT]" }, - { "10de", "0392", "G73 [GeForce 7600 GS]" }, - { "10de", "0393", "G73 [GeForce 7300 GT]" }, - { "10de", "0394", "G73 [GeForce 7600 LE]" }, - { "10de", "0395", "G73 [GeForce 7300 GT]" }, - { "10de", "0396", "G73" }, - { "10de", "0397", "G73M [GeForce Go 7700]" }, - { "10de", "0398", "G73M [GeForce Go 7600]" }, - { "10de", "0399", "G73M [GeForce Go 7600 GT]" }, - { "10de", "039a", "G73M [Quadro NVS 300M]" }, - { "10de", "039b", "G73M [GeForce Go 7900 SE]" }, - { "10de", "039c", "G73GLM [Quadro FX 550M]" }, - { "10de", "039d", "G73" }, - { "10de", "039e", "G73GL [Quadro FX 560]" }, - { "10de", "039f", "G73" }, - { "10de", "03a0", "C55 Host Bridge" }, - { "10de", "03a1", "C55 Host Bridge" }, - { "10de", "03a2", "C55 Host Bridge" }, - { "10de", "03a3", "C55 Host Bridge" }, - { "10de", "03a4", "C55 Host Bridge" }, - { "10de", "03a5", "C55 Host Bridge" }, - { "10de", "03a6", "C55 Host Bridge" }, - { "10de", "03a7", "C55 Host Bridge" }, - { "10de", "03a8", "C55 Memory Controller" }, - { "10de", "03a9", "C55 Memory Controller" }, - { "10de", "03aa", "C55 Memory Controller" }, - { "10de", "03ab", "C55 Memory Controller" }, - { "10de", "03ac", "C55 Memory Controller" }, - { "10de", "03ad", "C55 Memory Controller" }, - { "10de", "03ae", "C55 Memory Controller" }, - { "10de", "03af", "C55 Memory Controller" }, - { "10de", "03b0", "C55 Memory Controller" }, - { "10de", "03b1", "C55 Memory Controller" }, - { "10de", "03b2", "C55 Memory Controller" }, - { "10de", "03b3", "C55 Memory Controller" }, - { "10de", "03b4", "C55 Memory Controller" }, - { "10de", "03b5", "C55 Memory Controller" }, - { "10de", "03b6", "C55 Memory Controller" }, - { "10de", "03b7", "C55 PCI Express bridge" }, - { "10de", "03b8", "C55 PCI Express bridge" }, - { "10de", "03b9", "C55 PCI Express bridge" }, - { "10de", "03ba", "C55 Memory Controller" }, - { "10de", "03bb", "C55 PCI Express bridge" }, - { "10de", "03bc", "C55 Memory Controller" }, - { "10de", "03d0", "C61 [GeForce 6150SE nForce 430]" }, - { "10de", "03d1", "C61 [GeForce 6100 nForce 405]" }, - { "10de", "03d2", "C61 [GeForce 6100 nForce 400]" }, - { "10de", "03d5", "C61 [GeForce 6100 nForce 420]" }, - { "10de", "03d6", "C61 [GeForce 7025 / nForce 630a]" }, - { "10de", "03e0", "MCP61 LPC Bridge" }, - { "10de", "03e1", "MCP61 LPC Bridge" }, - { "10de", "03e2", "MCP61 Host Bridge" }, - { "10de", "03e3", "MCP61 LPC Bridge" }, - { "10de", "03e4", "MCP61 High Definition Audio" }, - { "10de", "03e5", "MCP61 Ethernet" }, - { "10de", "03e6", "MCP61 Ethernet" }, - { "10de", "03e7", "MCP61 SATA Controller" }, - { "10de", "03e8", "MCP61 PCI Express bridge" }, - { "10de", "03e9", "MCP61 PCI Express bridge" }, - { "10de", "03ea", "MCP61 Memory Controller" }, - { "10de", "03eb", "MCP61 SMBus" }, - { "10de", "03ec", "MCP61 IDE" }, - { "10de", "03ee", "MCP61 Ethernet" }, - { "10de", "03ef", "MCP61 Ethernet" }, - { "10de", "03f0", "MCP61 High Definition Audio" }, - { "10de", "03f1", "MCP61 USB 1.1 Controller" }, - { "10de", "03f2", "MCP61 USB 2.0 Controller" }, - { "10de", "03f3", "MCP61 PCI bridge" }, - { "10de", "03f4", "MCP61 SMU" }, - { "10de", "03f5", "MCP61 Memory Controller" }, - { "10de", "03f6", "MCP61 SATA Controller" }, - { "10de", "03f7", "MCP61 SATA Controller" }, - { "10de", "0400", "G84 [GeForce 8600 GTS]" }, - { "10de", "0401", "G84 [GeForce 8600 GT]" }, - { "10de", "0402", "G84 [GeForce 8600 GT]" }, - { "10de", "0403", "G84 [GeForce 8600 GS]" }, - { "10de", "0404", "G84 [GeForce 8400 GS]" }, - { "10de", "0405", "G84M [GeForce 9500M GS]" }, - { "10de", "0406", "G84 [GeForce 8300 GS]" }, - { "10de", "0407", "G84M [GeForce 8600M GT]" }, - { "10de", "0408", "G84M [GeForce 9650M GS]" }, - { "10de", "0409", "G84M [GeForce 8700M GT]" }, - { "10de", "040a", "G84GL [Quadro FX 370]" }, - { "10de", "040b", "G84GLM [Quadro NVS 320M]" }, - { "10de", "040c", "G84GLM [Quadro FX 570M]" }, - { "10de", "040d", "G84GLM [Quadro FX 1600M]" }, - { "10de", "040e", "G84GL [Quadro FX 570]" }, - { "10de", "040f", "G84GL [Quadro FX 1700]" }, - { "10de", "0410", "G92 [GeForce GT 330]" }, - { "10de", "0414", "G92 [GeForce 9800 GT]" }, - { "10de", "0418", "G92 [GeForce GT 330 OEM]" }, - { "10de", "0420", "G86 [GeForce 8400 SE]" }, - { "10de", "0421", "G86 [GeForce 8500 GT]" }, - { "10de", "0422", "G86 [GeForce 8400 GS]" }, - { "10de", "0423", "G86 [GeForce 8300 GS]" }, - { "10de", "0424", "G86 [GeForce 8400 GS]" }, - { "10de", "0425", "G86M [GeForce 8600M GS]" }, - { "10de", "0426", "G86M [GeForce 8400M GT]" }, - { "10de", "0427", "G86M [GeForce 8400M GS]" }, - { "10de", "0428", "G86M [GeForce 8400M G]" }, - { "10de", "0429", "G86M [Quadro NVS 140M]" }, - { "10de", "042a", "G86M [Quadro NVS 130M]" }, - { "10de", "042b", "G86M [Quadro NVS 135M]" }, - { "10de", "042c", "G86 [GeForce 9400 GT]" }, - { "10de", "042d", "G86GLM [Quadro FX 360M]" }, - { "10de", "042e", "G86M [GeForce 9300M G]" }, - { "10de", "042f", "G86 [Quadro NVS 290]" }, - { "10de", "0440", "MCP65 LPC Bridge" }, - { "10de", "0441", "MCP65 LPC Bridge" }, - { "10de", "0442", "MCP65 LPC Bridge" }, - { "10de", "0443", "MCP65 LPC Bridge" }, - { "10de", "0444", "MCP65 Memory Controller" }, - { "10de", "0445", "MCP65 Memory Controller" }, - { "10de", "0446", "MCP65 SMBus" }, - { "10de", "0447", "MCP65 SMU" }, - { "10de", "0448", "MCP65 IDE" }, - { "10de", "0449", "MCP65 PCI bridge" }, - { "10de", "044a", "MCP65 High Definition Audio" }, - { "10de", "044b", "MCP65 High Definition Audio" }, - { "10de", "044c", "MCP65 AHCI Controller" }, - { "10de", "044d", "MCP65 AHCI Controller" }, - { "10de", "044e", "MCP65 AHCI Controller" }, - { "10de", "044f", "MCP65 AHCI Controller" }, - { "10de", "0450", "MCP65 Ethernet" }, - { "10de", "0451", "MCP65 Ethernet" }, - { "10de", "0452", "MCP65 Ethernet" }, - { "10de", "0453", "MCP65 Ethernet" }, - { "10de", "0454", "MCP65 USB 1.1 OHCI Controller" }, - { "10de", "0455", "MCP65 USB 2.0 EHCI Controller" }, - { "10de", "0456", "MCP65 USB Controller" }, - { "10de", "0457", "MCP65 USB Controller" }, - { "10de", "0458", "MCP65 PCI Express bridge" }, - { "10de", "0459", "MCP65 PCI Express bridge" }, - { "10de", "045a", "MCP65 PCI Express bridge" }, - { "10de", "045b", "MCP65 PCI Express bridge" }, - { "10de", "045c", "MCP65 SATA Controller" }, - { "10de", "045d", "MCP65 SATA Controller" }, - { "10de", "045e", "MCP65 SATA Controller" }, - { "10de", "045f", "MCP65 SATA Controller" }, - { "10de", "0531", "C67 [GeForce 7150M / nForce 630M]" }, - { "10de", "0533", "C67 [GeForce 7000M / nForce 610M]" }, - { "10de", "053a", "C68 [GeForce 7050 PV / nForce 630a]" }, - { "10de", "053b", "C68 [GeForce 7050 PV / nForce 630a]" }, - { "10de", "053e", "C68 [GeForce 7025 / nForce 630a]" }, - { "10de", "0541", "MCP67 Memory Controller" }, - { "10de", "0542", "MCP67 SMBus" }, - { "10de", "0543", "MCP67 Co-processor" }, - { "10de", "0547", "MCP67 Memory Controller" }, - { "10de", "0548", "MCP67 ISA Bridge" }, - { "10de", "054c", "MCP67 Ethernet" }, - { "10de", "054d", "MCP67 Ethernet" }, - { "10de", "054e", "MCP67 Ethernet" }, - { "10de", "054f", "MCP67 Ethernet" }, - { "10de", "0550", "MCP67 AHCI Controller" }, - { "10de", "0554", "MCP67 AHCI Controller" }, - { "10de", "0555", "MCP67 SATA Controller" }, - { "10de", "055c", "MCP67 High Definition Audio" }, - { "10de", "055d", "MCP67 High Definition Audio" }, - { "10de", "055e", "MCP67 OHCI USB 1.1 Controller" }, - { "10de", "055f", "MCP67 EHCI USB 2.0 Controller" }, - { "10de", "0560", "MCP67 IDE Controller" }, - { "10de", "0561", "MCP67 PCI Bridge" }, - { "10de", "0562", "MCP67 PCI Express Bridge" }, - { "10de", "0563", "MCP67 PCI Express Bridge" }, - { "10de", "0568", "MCP78S [GeForce 8200] Memory Controller" }, - { "10de", "0569", "MCP78S [GeForce 8200] PCI Express Bridge" }, - { "10de", "056a", "MCP73 [nForce 630i] USB 2.0 Controller (EHCI)" }, - { "10de", "056c", "MCP73 IDE Controller" }, - { "10de", "056d", "MCP73 PCI Express bridge" }, - { "10de", "056e", "MCP73 PCI Express bridge" }, - { "10de", "056f", "MCP73 PCI Express bridge" }, - { "10de", "05b1", "NF200 PCIe 2.0 switch" }, - { "10de", "05b8", "NF200 PCIe 2.0 switch for GTX 295" }, - { "10de", "05be", "NF200 PCIe 2.0 switch for Quadro Plex S4 / Tesla S870 / Tesla S1070 / Tesla S2050" }, - { "10de", "05e0", "GT200b [GeForce GTX 295]" }, - { "10de", "05e1", "GT200 [GeForce GTX 280]" }, - { "10de", "05e2", "GT200 [GeForce GTX 260]" }, - { "10de", "05e3", "GT200b [GeForce GTX 285]" }, - { "10de", "05e6", "GT200b [GeForce GTX 275]" }, - { "10de", "05e7", "GT200GL [Tesla C1060 / M1060]" }, - { "10de", "05ea", "GT200 [GeForce GTX 260]" }, - { "10de", "05eb", "GT200 [GeForce GTX 295]" }, - { "10de", "05ed", "GT200GL [Quadro Plex 2200 D2]" }, - { "10de", "05f1", "GT200 [GeForce GTX 280]" }, - { "10de", "05f2", "GT200 [GeForce GTX 260]" }, - { "10de", "05f8", "GT200GL [Quadro Plex 2200 S4]" }, - { "10de", "05f9", "GT200GL [Quadro CX]" }, - { "10de", "05fd", "GT200GL [Quadro FX 5800]" }, - { "10de", "05fe", "GT200GL [Quadro FX 4800]" }, - { "10de", "05ff", "GT200GL [Quadro FX 3800]" }, - { "10de", "0600", "G92 [GeForce 8800 GTS 512]" }, - { "10de", "0601", "G92 [GeForce 9800 GT]" }, - { "10de", "0602", "G92 [GeForce 8800 GT]" }, - { "10de", "0603", "G92 [GeForce GT 230 OEM]" }, - { "10de", "0604", "G92 [GeForce 9800 GX2]" }, - { "10de", "0605", "G92 [GeForce 9800 GT]" }, - { "10de", "0606", "G92 [GeForce 8800 GS]" }, - { "10de", "0607", "G92 [GeForce GTS 240]" }, - { "10de", "0608", "G92M [GeForce 9800M GTX]" }, - { "10de", "0609", "G92M [GeForce 8800M GTS]" }, - { "10de", "060a", "G92M [GeForce GTX 280M]" }, - { "10de", "060b", "G92M [GeForce 9800M GT]" }, - { "10de", "060c", "G92M [GeForce 8800M GTX]" }, - { "10de", "060d", "G92 [GeForce 8800 GS]" }, - { "10de", "060f", "G92M [GeForce GTX 285M]" }, - { "10de", "0610", "G92 [GeForce 9600 GSO]" }, - { "10de", "0611", "G92 [GeForce 8800 GT]" }, - { "10de", "0612", "G92 [GeForce 9800 GTX / 9800 GTX+]" }, - { "10de", "0613", "G92 [GeForce 9800 GTX+]" }, - { "10de", "0614", "G92 [GeForce 9800 GT]" }, - { "10de", "0615", "G92 [GeForce GTS 250]" }, - { "10de", "0617", "G92M [GeForce 9800M GTX]" }, - { "10de", "0618", "G92M [GeForce GTX 260M]" }, - { "10de", "0619", "G92GL [Quadro FX 4700 X2]" }, - { "10de", "061a", "G92GL [Quadro FX 3700]" }, - { "10de", "061b", "G92GL [Quadro VX 200]" }, - { "10de", "061c", "G92GLM [Quadro FX 3600M]" }, - { "10de", "061d", "G92GLM [Quadro FX 2800M]" }, - { "10de", "061e", "G92GLM [Quadro FX 3700M]" }, - { "10de", "061f", "G92GLM [Quadro FX 3800M]" }, - { "10de", "0620", "G94 [GeForce 9800 GT]" }, - { "10de", "0621", "G94 [GeForce GT 230]" }, - { "10de", "0622", "G94 [GeForce 9600 GT]" }, - { "10de", "0623", "G94 [GeForce 9600 GS]" }, - { "10de", "0624", "G94 [GeForce 9600 GT Green Edition]" }, - { "10de", "0625", "G94 [GeForce 9600 GSO 512]" }, - { "10de", "0626", "G94 [GeForce GT 130]" }, - { "10de", "0627", "G94 [GeForce GT 140]" }, - { "10de", "0628", "G94M [GeForce 9800M GTS]" }, - { "10de", "062a", "G94M [GeForce 9700M GTS]" }, - { "10de", "062b", "G94M [GeForce 9800M GS]" }, - { "10de", "062c", "G94M [GeForce 9800M GTS]" }, - { "10de", "062d", "G94 [GeForce 9600 GT]" }, - { "10de", "062e", "G94 [GeForce 9600 GT]" }, - { "10de", "062f", "G94 [GeForce 9800 S]" }, - { "10de", "0630", "G94 [GeForce 9600 GT]" }, - { "10de", "0631", "G94M [GeForce GTS 160M]" }, - { "10de", "0632", "G94M [GeForce GTS 150M]" }, - { "10de", "0633", "G94 [GeForce GT 220]" }, - { "10de", "0635", "G94 [GeForce 9600 GSO]" }, - { "10de", "0637", "G94 [GeForce 9600 GT]" }, - { "10de", "0638", "G94GL [Quadro FX 1800]" }, - { "10de", "063a", "G94GLM [Quadro FX 2700M]" }, - { "10de", "063f", "G94 [GeForce 9600 GE]" }, - { "10de", "0640", "G96C [GeForce 9500 GT]" }, - { "10de", "0641", "G96C [GeForce 9400 GT]" }, - { "10de", "0642", "G96 [D9M-10]" }, - { "10de", "0643", "G96 [GeForce 9500 GT]" }, - { "10de", "0644", "G96 [GeForce 9500 GS]" }, - { "10de", "0645", "G96C [GeForce 9500 GS]" }, - { "10de", "0646", "G96C [GeForce GT 120]" }, - { "10de", "0647", "G96CM [GeForce 9600M GT]" }, - { "10de", "0648", "G96CM [GeForce 9600M GS]" }, - { "10de", "0649", "G96CM [GeForce 9600M GT]" }, - { "10de", "064a", "G96M [GeForce 9700M GT]" }, - { "10de", "064b", "G96M [GeForce 9500M G]" }, - { "10de", "064c", "G96CM [GeForce 9650M GT]" }, - { "10de", "064e", "G96C [GeForce 9600 GSO / 9800 GT]" }, - { "10de", "0651", "G96CM [GeForce G 110M]" }, - { "10de", "0652", "G96CM [GeForce GT 130M]" }, - { "10de", "0653", "G96CM [GeForce GT 120M]" }, - { "10de", "0654", "G96CM [GeForce GT 220M]" }, - { "10de", "0655", "G96 [GeForce GT 120 Mac Edition]" }, - { "10de", "0656", "G96 [GeForce GT 120 Mac Edition]" }, - { "10de", "0658", "G96GL [Quadro FX 380]" }, - { "10de", "0659", "G96CGL [Quadro FX 580]" }, - { "10de", "065a", "G96GLM [Quadro FX 1700M]" }, - { "10de", "065b", "G96C [GeForce 9400 GT]" }, - { "10de", "065c", "G96GLM [Quadro FX 770M]" }, - { "10de", "065d", "G96 [GeForce 9500 GA / 9600 GT / GTS 250]" }, - { "10de", "065f", "G96C [GeForce G210]" }, - { "10de", "06c0", "GF100 [GeForce GTX 480]" }, - { "10de", "06c4", "GF100 [GeForce GTX 465]" }, - { "10de", "06ca", "GF100M [GeForce GTX 480M]" }, - { "10de", "06cb", "GF100 [GeForce GTX 480]" }, - { "10de", "06cd", "GF100 [GeForce GTX 470]" }, - { "10de", "06d0", "GF100GL" }, - { "10de", "06d1", "GF100GL [Tesla C2050 / C2070]" }, - { "10de", "06d2", "GF100GL [Tesla M2070]" }, - { "10de", "06d8", "GF100GL [Quadro 6000]" }, - { "10de", "06d9", "GF100GL [Quadro 5000]" }, - { "10de", "06da", "GF100GLM [Quadro 5000M]" }, - { "10de", "06dc", "GF100GL [Quadro 6000]" }, - { "10de", "06dd", "GF100GL [Quadro 4000]" }, - { "10de", "06de", "GF100GL [Tesla T20 Processor]" }, - { "10de", "06df", "GF100GL [Tesla M2070-Q]" }, - { "10de", "06e0", "G98 [GeForce 9300 GE]" }, - { "10de", "06e1", "G98 [GeForce 9300 GS]" }, - { "10de", "06e2", "G98 [GeForce 8400]" }, - { "10de", "06e3", "G98 [GeForce 8300 GS]" }, - { "10de", "06e4", "G98 [GeForce 8400 GS Rev. 2]" }, - { "10de", "06e5", "G98M [GeForce 9300M GS]" }, - { "10de", "06e6", "G98 [GeForce G 100]" }, - { "10de", "06e7", "G98 [GeForce 9300 SE]" }, - { "10de", "06e8", "G98M [GeForce 9200M GS]" }, - { "10de", "06e9", "G98M [GeForce 9300M GS]" }, - { "10de", "06ea", "G98M [Quadro NVS 150M]" }, - { "10de", "06eb", "G98M [Quadro NVS 160M]" }, - { "10de", "06ec", "G98M [GeForce G 105M]" }, - { "10de", "06ed", "G98 [GeForce 9600 GT / 9800 GT]" }, - { "10de", "06ee", "G98 [GeForce 9600 GT / 9800 GT / GT 240]" }, - { "10de", "06ef", "G98M [GeForce G 103M]" }, - { "10de", "06f1", "G98M [GeForce G 105M]" }, - { "10de", "06f8", "G98 [Quadro NVS 420]" }, - { "10de", "06f9", "G98GL [Quadro FX 370 LP]" }, - { "10de", "06fa", "G98 [Quadro NVS 450]" }, - { "10de", "06fb", "G98GLM [Quadro FX 370M]" }, - { "10de", "06fd", "G98 [Quadro NVS 295]" }, - { "10de", "06ff", "G98 [HICx16 + Graphics]" }, - { "10de", "0751", "MCP78S [GeForce 8200] Memory Controller" }, - { "10de", "0752", "MCP78S [GeForce 8200] SMBus" }, - { "10de", "0753", "MCP78S [GeForce 8200] Co-Processor" }, - { "10de", "0754", "MCP78S [GeForce 8200] Memory Controller" }, - { "10de", "0759", "MCP78S [GeForce 8200] IDE" }, - { "10de", "075a", "MCP78S [GeForce 8200] PCI Bridge" }, - { "10de", "075b", "MCP78S [GeForce 8200] PCI Express Bridge" }, - { "10de", "075c", "MCP78S [GeForce 8200] LPC Bridge" }, - { "10de", "075d", "MCP78S [GeForce 8200] LPC Bridge" }, - { "10de", "0760", "MCP77 Ethernet" }, - { "10de", "0761", "MCP77 Ethernet" }, - { "10de", "0762", "MCP77 Ethernet" }, - { "10de", "0763", "MCP77 Ethernet" }, - { "10de", "0774", "MCP72XE/MCP72P/MCP78U/MCP78S High Definition Audio" }, - { "10de", "0778", "MCP78S [GeForce 8200] PCI Express Bridge" }, - { "10de", "077a", "MCP78S [GeForce 8200] PCI Bridge" }, - { "10de", "077b", "MCP78S [GeForce 8200] OHCI USB 1.1 Controller" }, - { "10de", "077c", "MCP78S [GeForce 8200] EHCI USB 2.0 Controller" }, - { "10de", "077d", "MCP78S [GeForce 8200] OHCI USB 1.1 Controller" }, - { "10de", "077e", "MCP78S [GeForce 8200] EHCI USB 2.0 Controller" }, - { "10de", "07c0", "MCP73 Host Bridge" }, - { "10de", "07c1", "MCP73 Host Bridge" }, - { "10de", "07c2", "MCP73 Host Bridge" }, - { "10de", "07c3", "MCP73 Host Bridge" }, - { "10de", "07c5", "MCP73 Host Bridge" }, - { "10de", "07c8", "MCP73 Memory Controller" }, - { "10de", "07cb", "nForce 610i/630i memory controller" }, - { "10de", "07cd", "nForce 610i/630i memory controller" }, - { "10de", "07ce", "nForce 610i/630i memory controller" }, - { "10de", "07cf", "nForce 610i/630i memory controller" }, - { "10de", "07d0", "nForce 610i/630i memory controller" }, - { "10de", "07d1", "nForce 610i/630i memory controller" }, - { "10de", "07d2", "nForce 610i/630i memory controller" }, - { "10de", "07d3", "nForce 610i/630i memory controller" }, - { "10de", "07d6", "nForce 610i/630i memory controller" }, - { "10de", "07d7", "MCP73 LPC Bridge" }, - { "10de", "07d8", "MCP73 SMBus" }, - { "10de", "07d9", "MCP73 Memory Controller" }, - { "10de", "07da", "MCP73 Co-processor" }, - { "10de", "07dc", "MCP73 Ethernet" }, - { "10de", "07dd", "MCP73 Ethernet" }, - { "10de", "07de", "MCP73 Ethernet" }, - { "10de", "07df", "MCP73 Ethernet" }, - { "10de", "07e0", "C73 [GeForce 7150 / nForce 630i]" }, - { "10de", "07e1", "C73 [GeForce 7100 / nForce 630i]" }, - { "10de", "07e2", "C73 [GeForce 7050 / nForce 630i]" }, - { "10de", "07e3", "C73 [GeForce 7050 / nForce 610i]" }, - { "10de", "07e5", "C73 [GeForce 7100 / nForce 620i]" }, - { "10de", "07f0", "MCP73 SATA Controller (IDE mode)" }, - { "10de", "07f4", "GeForce 7100/nForce 630i SATA" }, - { "10de", "07f8", "MCP73 SATA RAID Controller" }, - { "10de", "07fc", "MCP73 High Definition Audio" }, - { "10de", "07fe", "MCP73 OHCI USB 1.1 Controller" }, - { "10de", "0840", "C77 [GeForce 8200M]" }, - { "10de", "0844", "C77 [GeForce 9100M G]" }, - { "10de", "0845", "C77 [GeForce 8200M G]" }, - { "10de", "0846", "C77 [GeForce 9200]" }, - { "10de", "0847", "C78 [GeForce 9100]" }, - { "10de", "0848", "C77 [GeForce 8300]" }, - { "10de", "0849", "C77 [GeForce 8200]" }, - { "10de", "084a", "C77 [nForce 730a]" }, - { "10de", "084b", "C77 [GeForce 8200]" }, - { "10de", "084c", "C77 [nForce 780a/980a SLI]" }, - { "10de", "084d", "C77 [nForce 750a SLI]" }, - { "10de", "084f", "C77 [GeForce 8100 / nForce 720a]" }, - { "10de", "0860", "C79 [GeForce 9300]" }, - { "10de", "0861", "C79 [GeForce 9400]" }, - { "10de", "0862", "C79 [GeForce 9400M G]" }, - { "10de", "0863", "C79 [GeForce 9400M]" }, - { "10de", "0864", "C79 [GeForce 9300]" }, - { "10de", "0865", "C79 [GeForce 9300 / ION]" }, - { "10de", "0866", "C79 [GeForce 9400M G]" }, - { "10de", "0867", "C79 [GeForce 9400]" }, - { "10de", "0868", "C79 [nForce 760i SLI]" }, - { "10de", "0869", "MCP7A [GeForce 9400]" }, - { "10de", "086a", "C79 [GeForce 9400]" }, - { "10de", "086c", "C79 [GeForce 9300 / nForce 730i]" }, - { "10de", "086d", "C79 [GeForce 9200]" }, - { "10de", "086e", "C79 [GeForce 9100M G]" }, - { "10de", "086f", "MCP79 [GeForce 8200M G]" }, - { "10de", "0870", "C79 [GeForce 9400M]" }, - { "10de", "0871", "C79 [GeForce 9200]" }, - { "10de", "0872", "C79 [GeForce G102M]" }, - { "10de", "0873", "C79 [GeForce G102M]" }, - { "10de", "0874", "C79 [ION]" }, - { "10de", "0876", "C79 [GeForce 9400M / ION]" }, - { "10de", "087a", "C79 [GeForce 9400]" }, - { "10de", "087d", "C79 [ION]" }, - { "10de", "087e", "C79 [ION LE]" }, - { "10de", "087f", "C79 [ION LE]" }, - { "10de", "08a0", "MCP89 [GeForce 320M]" }, - { "10de", "08a2", "MCP89 [GeForce 320M]" }, - { "10de", "08a3", "MCP89 [GeForce 320M]" }, - { "10de", "08a4", "MCP89 [GeForce 320M]" }, - { "10de", "08a5", "MCP89 [GeForce 320M]" }, - { "10de", "0a20", "GT216 [GeForce GT 220]" }, - { "10de", "0a21", "GT216M [GeForce GT 330M]" }, - { "10de", "0a22", "GT216 [GeForce 315]" }, - { "10de", "0a23", "GT216 [GeForce 210]" }, - { "10de", "0a24", "GT216 [GeForce 405]" }, - { "10de", "0a26", "GT216 [GeForce 405]" }, - { "10de", "0a27", "GT216 [GeForce 405]" }, - { "10de", "0a28", "GT216M [GeForce GT 230M]" }, - { "10de", "0a29", "GT216M [GeForce GT 330M]" }, - { "10de", "0a2a", "GT216M [GeForce GT 230M]" }, - { "10de", "0a2b", "GT216M [GeForce GT 330M]" }, - { "10de", "0a2c", "GT216M [NVS 5100M]" }, - { "10de", "0a2d", "GT216M [GeForce GT 320M]" }, - { "10de", "0a30", "GT216 [GeForce 505]" }, - { "10de", "0a32", "GT216 [GeForce GT 415]" }, - { "10de", "0a34", "GT216M [GeForce GT 240M]" }, - { "10de", "0a35", "GT216M [GeForce GT 325M]" }, - { "10de", "0a38", "GT216GL [Quadro 400]" }, - { "10de", "0a3c", "GT216GLM [Quadro FX 880M]" }, - { "10de", "0a60", "GT218 [GeForce G210]" }, - { "10de", "0a62", "GT218 [GeForce 205]" }, - { "10de", "0a63", "GT218 [GeForce 310]" }, - { "10de", "0a64", "GT218 [ION]" }, - { "10de", "0a65", "GT218 [GeForce 210]" }, - { "10de", "0a66", "GT218 [GeForce 310]" }, - { "10de", "0a67", "GT218 [GeForce 315]" }, - { "10de", "0a68", "GT218M [GeForce G 105M]" }, - { "10de", "0a69", "GT218M [GeForce G 105M]" }, - { "10de", "0a6a", "GT218M [NVS 2100M]" }, - { "10de", "0a6c", "GT218M [NVS 3100M]" }, - { "10de", "0a6e", "GT218M [GeForce 305M]" }, - { "10de", "0a6f", "GT218M [ION]" }, - { "10de", "0a70", "GT218M [GeForce 310M]" }, - { "10de", "0a71", "GT218M [GeForce 305M]" }, - { "10de", "0a72", "GT218M [GeForce 310M]" }, - { "10de", "0a73", "GT218M [GeForce 305M]" }, - { "10de", "0a74", "GT218M [GeForce G210M]" }, - { "10de", "0a75", "GT218M [GeForce 310M]" }, - { "10de", "0a76", "GT218M [ION 2]" }, - { "10de", "0a78", "GT218GL [Quadro FX 380 LP]" }, - { "10de", "0a7a", "GT218M [GeForce 315M]" }, - { "10de", "0a7b", "GT218 [GeForce 505]" }, - { "10de", "0a7c", "GT218GLM [Quadro FX 380M]" }, - { "10de", "0a80", "MCP79 Host Bridge" }, - { "10de", "0a81", "MCP79 Host Bridge" }, - { "10de", "0a82", "MCP79 Host Bridge" }, - { "10de", "0a83", "MCP79 Host Bridge" }, - { "10de", "0a84", "MCP79 Host Bridge" }, - { "10de", "0a85", "MCP79 Host Bridge" }, - { "10de", "0a86", "MCP79 Host Bridge" }, - { "10de", "0a87", "MCP79 Host Bridge" }, - { "10de", "0a88", "MCP79 Memory Controller" }, - { "10de", "0a89", "MCP79 Memory Controller" }, - { "10de", "0a98", "MCP79 Memory Controller" }, - { "10de", "0aa0", "MCP79 PCI Express Bridge" }, - { "10de", "0aa2", "MCP79 SMBus" }, - { "10de", "0aa3", "MCP79 Co-processor" }, - { "10de", "0aa4", "MCP79 Memory Controller" }, - { "10de", "0aa5", "MCP79 OHCI USB 1.1 Controller" }, - { "10de", "0aa6", "MCP79 EHCI USB 2.0 Controller" }, - { "10de", "0aa7", "MCP79 OHCI USB 1.1 Controller" }, - { "10de", "0aa8", "MCP79 OHCI USB 1.1 Controller" }, - { "10de", "0aa9", "MCP79 EHCI USB 2.0 Controller" }, - { "10de", "0aaa", "MCP79 EHCI USB 2.0 Controller" }, - { "10de", "0aab", "MCP79 PCI Bridge" }, - { "10de", "0aac", "MCP79 LPC Bridge" }, - { "10de", "0aad", "MCP79 LPC Bridge" }, - { "10de", "0aae", "MCP79 LPC Bridge" }, - { "10de", "0aaf", "MCP79 LPC Bridge" }, - { "10de", "0ab0", "MCP79 Ethernet" }, - { "10de", "0ab1", "MCP79 Ethernet" }, - { "10de", "0ab2", "MCP79 Ethernet" }, - { "10de", "0ab3", "MCP79 Ethernet" }, - { "10de", "0ab4", "MCP79 SATA Controller" }, - { "10de", "0ab5", "MCP79 SATA Controller" }, - { "10de", "0ab6", "MCP79 SATA Controller" }, - { "10de", "0ab7", "MCP79 SATA Controller" }, - { "10de", "0ab8", "MCP79 AHCI Controller" }, - { "10de", "0ab9", "MCP79 AHCI Controller" }, - { "10de", "0aba", "MCP79 AHCI Controller" }, - { "10de", "0abb", "MCP79 AHCI Controller" }, - { "10de", "0abc", "MCP79 RAID Controller" }, - { "10de", "0abd", "MCP79 RAID Controller" }, - { "10de", "0abe", "MCP79 RAID Controller" }, - { "10de", "0abf", "MCP79 RAID Controller" }, - { "10de", "0ac0", "MCP79 High Definition Audio" }, - { "10de", "0ac1", "MCP79 High Definition Audio" }, - { "10de", "0ac2", "MCP79 High Definition Audio" }, - { "10de", "0ac3", "MCP79 High Definition Audio" }, - { "10de", "0ac4", "MCP79 PCI Express Bridge" }, - { "10de", "0ac5", "MCP79 PCI Express Bridge" }, - { "10de", "0ac6", "MCP79 PCI Express Bridge" }, - { "10de", "0ac7", "MCP79 PCI Express Bridge" }, - { "10de", "0ac8", "MCP79 PCI Express Bridge" }, - { "10de", "0ad0", "MCP78S [GeForce 8200] SATA Controller (non-AHCI mode)" }, - { "10de", "0ad4", "MCP78S [GeForce 8200] AHCI Controller" }, - { "10de", "0ad8", "MCP78S [GeForce 8200] SATA Controller (RAID mode)" }, - { "10de", "0be2", "GT216 HDMI Audio Controller" }, - { "10de", "0be3", "High Definition Audio Controller" }, - { "10de", "0be4", "High Definition Audio Controller" }, - { "10de", "0be5", "GF100 High Definition Audio Controller" }, - { "10de", "0be9", "GF106 High Definition Audio Controller" }, - { "10de", "0bea", "GF108 High Definition Audio Controller" }, - { "10de", "0beb", "GF104 High Definition Audio Controller" }, - { "10de", "0bee", "GF116 High Definition Audio Controller" }, - { "10de", "0bf0", "Tegra2 PCIe x4 Bridge" }, - { "10de", "0bf1", "Tegra2 PCIe x2 Bridge" }, - { "10de", "0ca0", "GT215 [GeForce GT 330]" }, - { "10de", "0ca2", "GT215 [GeForce GT 320]" }, - { "10de", "0ca3", "GT215 [GeForce GT 240]" }, - { "10de", "0ca4", "GT215 [GeForce GT 340]" }, - { "10de", "0ca5", "GT215 [GeForce GT 220]" }, - { "10de", "0ca7", "GT215 [GeForce GT 330]" }, - { "10de", "0ca8", "GT215M [GeForce GTS 260M]" }, - { "10de", "0ca9", "GT215M [GeForce GTS 250M]" }, - { "10de", "0cac", "GT215 [GeForce GT 220/315]" }, - { "10de", "0caf", "GT215M [GeForce GT 335M]" }, - { "10de", "0cb0", "GT215M [GeForce GTS 350M]" }, - { "10de", "0cb1", "GT215M [GeForce GTS 360M]" }, - { "10de", "0cbc", "GT215GLM [Quadro FX 1800M]" }, - { "10de", "0d60", "MCP89 HOST Bridge" }, - { "10de", "0d68", "MCP89 Memory Controller" }, - { "10de", "0d69", "MCP89 Memory Controller" }, - { "10de", "0d76", "MCP89 PCI Express Bridge" }, - { "10de", "0d79", "MCP89 SMBus" }, - { "10de", "0d7a", "MCP89 Co-Processor" }, - { "10de", "0d7b", "MCP89 Memory Controller" }, - { "10de", "0d7d", "MCP89 Ethernet" }, - { "10de", "0d80", "MCP89 LPC Bridge" }, - { "10de", "0d85", "MCP89 SATA Controller" }, - { "10de", "0d88", "MCP89 SATA Controller (AHCI mode)" }, - { "10de", "0d89", "MCP89 SATA Controller (AHCI mode)" }, - { "10de", "0d8d", "MCP89 SATA Controller (RAID mode)" }, - { "10de", "0d94", "MCP89 High Definition Audio" }, - { "10de", "0d9c", "MCP89 OHCI USB 1.1 Controller" }, - { "10de", "0d9d", "MCP89 EHCI USB 2.0 Controller" }, - { "10de", "0dc0", "GF106 [GeForce GT 440]" }, - { "10de", "0dc4", "GF106 [GeForce GTS 450]" }, - { "10de", "0dc5", "GF106 [GeForce GTS 450 OEM]" }, - { "10de", "0dc6", "GF106 [GeForce GTS 450 OEM]" }, - { "10de", "0dcd", "GF106M [GeForce GT 555M]" }, - { "10de", "0dce", "GF106M [GeForce GT 555M]" }, - { "10de", "0dd1", "GF106M [GeForce GTX 460M]" }, - { "10de", "0dd2", "GF106M [GeForce GT 445M]" }, - { "10de", "0dd3", "GF106M [GeForce GT 435M]" }, - { "10de", "0dd6", "GF106M [GeForce GT 550M]" }, - { "10de", "0dd8", "GF106GL [Quadro 2000]" }, - { "10de", "0dda", "GF106GLM [Quadro 2000M]" }, - { "10de", "0de0", "GF108 [GeForce GT 440]" }, - { "10de", "0de1", "GF108 [GeForce GT 430]" }, - { "10de", "0de2", "GF108 [GeForce GT 420]" }, - { "10de", "0de3", "GF108M [GeForce GT 635M]" }, - { "10de", "0de4", "GF108 [GeForce GT 520]" }, - { "10de", "0de5", "GF108 [GeForce GT 530]" }, - { "10de", "0de7", "GF108 [GeForce GT 610]" }, - { "10de", "0de8", "GF108M [GeForce GT 620M]" }, - { "10de", "0de9", "GF108M [GeForce GT 620M/630M/635M/640M LE]" }, - { "10de", "0dea", "GF108M [GeForce 610M]" }, - { "10de", "0deb", "GF108M [GeForce GT 555M]" }, - { "10de", "0dec", "GF108M [GeForce GT 525M]" }, - { "10de", "0ded", "GF108M [GeForce GT 520M]" }, - { "10de", "0dee", "GF108M [GeForce GT 415M]" }, - { "10de", "0def", "GF108M [NVS 5400M]" }, - { "10de", "0df0", "GF108M [GeForce GT 425M]" }, - { "10de", "0df1", "GF108M [GeForce GT 420M]" }, - { "10de", "0df2", "GF108M [GeForce GT 435M]" }, - { "10de", "0df3", "GF108M [GeForce GT 420M]" }, - { "10de", "0df4", "GF108M [GeForce GT 540M]" }, - { "10de", "0df5", "GF108M [GeForce GT 525M]" }, - { "10de", "0df6", "GF108M [GeForce GT 550M]" }, - { "10de", "0df7", "GF108M [GeForce GT 520M]" }, - { "10de", "0df8", "GF108GL [Quadro 600]" }, - { "10de", "0df9", "GF108GLM [Quadro 500M]" }, - { "10de", "0dfa", "GF108GLM [Quadro 1000M]" }, - { "10de", "0dfc", "GF108GLM [NVS 5200M]" }, - { "10de", "0e08", "GF119 HDMI Audio Controller" }, - { "10de", "0e09", "GF110 High Definition Audio Controller" }, - { "10de", "0e0a", "GK104 HDMI Audio Controller" }, - { "10de", "0e0b", "GK106 HDMI Audio Controller" }, - { "10de", "0e0c", "GF114 HDMI Audio Controller" }, - { "10de", "0e0f", "GK208 HDMI/DP Audio Controller" }, - { "10de", "0e12", "TegraK1 PCIe x4 Bridge" }, - { "10de", "0e13", "TegraK1 PCIe x1 Bridge" }, - { "10de", "0e1a", "GK110 High Definition Audio Controller" }, - { "10de", "0e1b", "GK107 HDMI Audio Controller" }, - { "10de", "0e1c", "Tegra3+ PCIe x4 Bridge" }, - { "10de", "0e1d", "Tegra3+ PCIe x2 Bridge" }, - { "10de", "0e22", "GF104 [GeForce GTX 460]" }, - { "10de", "0e23", "GF104 [GeForce GTX 460 SE]" }, - { "10de", "0e24", "GF104 [GeForce GTX 460 OEM]" }, - { "10de", "0e30", "GF104M [GeForce GTX 470M]" }, - { "10de", "0e31", "GF104M [GeForce GTX 485M]" }, - { "10de", "0e3a", "GF104GLM [Quadro 3000M]" }, - { "10de", "0e3b", "GF104GLM [Quadro 4000M]" }, - { "10de", "0f00", "GF108 [GeForce GT 630]" }, - { "10de", "0f01", "GF108 [GeForce GT 620]" }, - { "10de", "0f02", "GF108 [GeForce GT 730]" }, - { "10de", "0f03", "GF108 [GeForce GT 610]" }, - { "10de", "0f06", "GF108 [GeForce GT 730]" }, - { "10de", "0fb0", "GM200 High Definition Audio" }, - { "10de", "0fb8", "GP108 High Definition Audio Controller" }, - { "10de", "0fb9", "GP107GL High Definition Audio Controller" }, - { "10de", "0fba", "GM206 High Definition Audio Controller" }, - { "10de", "0fbb", "GM204 High Definition Audio Controller" }, - { "10de", "0fbc", "GM107 High Definition Audio Controller [GeForce 940MX]" }, - { "10de", "0fc0", "GK107 [GeForce GT 640 OEM]" }, - { "10de", "0fc1", "GK107 [GeForce GT 640]" }, - { "10de", "0fc2", "GK107 [GeForce GT 630 OEM]" }, - { "10de", "0fc5", "GK107 [GeForce GT 1030]" }, - { "10de", "0fc6", "GK107 [GeForce GTX 650]" }, - { "10de", "0fc8", "GK107 [GeForce GT 740]" }, - { "10de", "0fc9", "GK107 [GeForce GT 730]" }, - { "10de", "0fcd", "GK107M [GeForce GT 755M]" }, - { "10de", "0fce", "GK107M [GeForce GT 640M LE]" }, - { "10de", "0fd1", "GK107M [GeForce GT 650M]" }, - { "10de", "0fd2", "GK107M [GeForce GT 640M]" }, - { "10de", "0fd3", "GK107M [GeForce GT 640M LE]" }, - { "10de", "0fd4", "GK107M [GeForce GTX 660M]" }, - { "10de", "0fd5", "GK107M [GeForce GT 650M Mac Edition]" }, - { "10de", "0fd6", "GK107M" }, - { "10de", "0fd8", "GK107M [GeForce GT 640M Mac Edition]" }, - { "10de", "0fd9", "GK107M [GeForce GT 645M]" }, - { "10de", "0fdb", "GK107M" }, - { "10de", "0fdf", "GK107M [GeForce GT 740M]" }, - { "10de", "0fe0", "GK107M [GeForce GTX 660M Mac Edition]" }, - { "10de", "0fe1", "GK107M [GeForce GT 730M]" }, - { "10de", "0fe2", "GK107M [GeForce GT 745M]" }, - { "10de", "0fe3", "GK107M [GeForce GT 745M]" }, - { "10de", "0fe4", "GK107M [GeForce GT 750M]" }, - { "10de", "0fe5", "GK107 [GeForce K340 USM]" }, - { "10de", "0fe6", "GK107 [GRID K1 NVS USM]" }, - { "10de", "0fe7", "GK107GL [GRID K100 vGPU]" }, - { "10de", "0fe8", "GK107M" }, - { "10de", "0fe9", "GK107M [GeForce GT 750M Mac Edition]" }, - { "10de", "0fea", "GK107M [GeForce GT 755M Mac Edition]" }, - { "10de", "0fec", "GK107M [GeForce 710A]" }, - { "10de", "0fed", "GK107M [GeForce 820M]" }, - { "10de", "0fee", "GK107M [GeForce 810M]" }, - { "10de", "0fef", "GK107GL [GRID K340]" }, - { "10de", "0ff1", "GK107 [NVS 1000]" }, - { "10de", "0ff2", "GK107GL [GRID K1]" }, - { "10de", "0ff3", "GK107GL [Quadro K420]" }, - { "10de", "0ff5", "GK107GL [GRID K1 Tesla USM]" }, - { "10de", "0ff6", "GK107GLM [Quadro K1100M]" }, - { "10de", "0ff7", "GK107GL [GRID K140Q vGPU]" }, - { "10de", "0ff8", "GK107GLM [Quadro K500M]" }, - { "10de", "0ff9", "GK107GL [Quadro K2000D]" }, - { "10de", "0ffa", "GK107GL [Quadro K600]" }, - { "10de", "0ffb", "GK107GLM [Quadro K2000M]" }, - { "10de", "0ffc", "GK107GLM [Quadro K1000M]" }, - { "10de", "0ffd", "GK107 [NVS 510]" }, - { "10de", "0ffe", "GK107GL [Quadro K2000]" }, - { "10de", "0fff", "GK107GL [Quadro 410]" }, - { "10de", "1001", "GK110B [GeForce GTX TITAN Z]" }, - { "10de", "1003", "GK110 [GeForce GTX Titan LE]" }, - { "10de", "1004", "GK110 [GeForce GTX 780]" }, - { "10de", "1005", "GK110 [GeForce GTX TITAN]" }, - { "10de", "1007", "GK110 [GeForce GTX 780 Rev. 2]" }, - { "10de", "1008", "GK110 [GeForce GTX 780 Ti 6GB]" }, - { "10de", "100a", "GK110B [GeForce GTX 780 Ti]" }, - { "10de", "100c", "GK110B [GeForce GTX TITAN Black]" }, - { "10de", "101e", "GK110GL [Tesla K20X]" }, - { "10de", "101f", "GK110GL [Tesla K20]" }, - { "10de", "1020", "GK110GL [Tesla K20X]" }, - { "10de", "1021", "GK110GL [Tesla K20Xm]" }, - { "10de", "1022", "GK110GL [Tesla K20c]" }, - { "10de", "1023", "GK110BGL [Tesla K40m]" }, - { "10de", "1024", "GK180GL [Tesla K40c]" }, - { "10de", "1026", "GK110GL [Tesla K20s]" }, - { "10de", "1027", "GK110BGL [Tesla K40st]" }, - { "10de", "1028", "GK110GL [Tesla K20m]" }, - { "10de", "1029", "GK110BGL [Tesla K40s]" }, - { "10de", "102a", "GK110BGL [Tesla K40t]" }, - { "10de", "102d", "GK210GL [Tesla K80]" }, - { "10de", "102e", "GK110BGL [Tesla K40d]" }, - { "10de", "102f", "GK110BGL [Tesla Stella Solo]" }, - { "10de", "103a", "GK110GL [Quadro K6000]" }, - { "10de", "103c", "GK110GL [Quadro K5200]" }, - { "10de", "103f", "GK110BGL [Tesla Stella SXM]" }, - { "10de", "1040", "GF119 [GeForce GT 520]" }, - { "10de", "1042", "GF119 [GeForce 510]" }, - { "10de", "1045", "GF119" }, - { "10de", "1048", "GF119 [GeForce 605]" }, - { "10de", "1049", "GF119 [GeForce GT 620 OEM]" }, - { "10de", "104a", "GF119 [GeForce GT 610]" }, - { "10de", "104b", "GF119 [GeForce GT 625 OEM]" }, - { "10de", "104c", "GF119 [GeForce GT 705]" }, - { "10de", "104d", "GF119 [GeForce GT 710]" }, - { "10de", "1050", "GF119M [GeForce GT 520M]" }, - { "10de", "1051", "GF119M [GeForce GT 520MX]" }, - { "10de", "1052", "GF119M [GeForce GT 520M]" }, - { "10de", "1054", "GF119M [GeForce 410M]" }, - { "10de", "1055", "GF119M [GeForce 410M]" }, - { "10de", "1056", "GF119M [NVS 4200M]" }, - { "10de", "1057", "GF119M [Quadro NVS 4200M]" }, - { "10de", "1058", "GF119M [GeForce 610M]" }, - { "10de", "1059", "GF119M [GeForce 610M]" }, - { "10de", "105a", "GF119M [GeForce 610M]" }, - { "10de", "105b", "GF119M [GeForce 705M]" }, - { "10de", "107c", "GF119 [NVS 315]" }, - { "10de", "107d", "GF119 [NVS 310]" }, - { "10de", "1080", "GF110 [GeForce GTX 580]" }, - { "10de", "1081", "GF110 [GeForce GTX 570]" }, - { "10de", "1082", "GF110 [GeForce GTX 560 Ti OEM]" }, - { "10de", "1084", "GF110 [GeForce GTX 560 OEM]" }, - { "10de", "1086", "GF110 [GeForce GTX 570 Rev. 2]" }, - { "10de", "1087", "GF110 [GeForce GTX 560 Ti 448 Cores]" }, - { "10de", "1088", "GF110 [GeForce GTX 590]" }, - { "10de", "1089", "GF110 [GeForce GTX 580 Rev. 2]" }, - { "10de", "108b", "GF110 [GeForce GTX 580]" }, - { "10de", "108e", "GF110GL [Tesla C2090]" }, - { "10de", "1091", "GF110GL [Tesla M2090]" }, - { "10de", "1094", "GF110GL [Tesla M2075]" }, - { "10de", "1096", "GF110GL [Tesla C2050 / C2075]" }, - { "10de", "109a", "GF100GLM [Quadro 5010M]" }, - { "10de", "109b", "GF100GL [Quadro 7000]" }, - { "10de", "10c0", "GT218 [GeForce 9300 GS Rev. 2]" }, - { "10de", "10c3", "GT218 [GeForce 8400 GS Rev. 3]" }, - { "10de", "10c5", "GT218 [GeForce 405]" }, - { "10de", "10d8", "GT218 [NVS 300]" }, - { "10de", "10ef", "GP102 HDMI Audio Controller" }, - { "10de", "10f0", "GP104 High Definition Audio Controller" }, - { "10de", "10f1", "GP106 High Definition Audio Controller" }, - { "10de", "10f7", "TU102 High Definition Audio Controller" }, - { "10de", "10f8", "TU104 HD Audio Controller" }, - { "10de", "10f9", "TU106 High Definition Audio Controller" }, - { "10de", "1140", "GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M]" }, - { "10de", "1180", "GK104 [GeForce GTX 680]" }, - { "10de", "1182", "GK104 [GeForce GTX 760 Ti]" }, - { "10de", "1183", "GK104 [GeForce GTX 660 Ti]" }, - { "10de", "1184", "GK104 [GeForce GTX 770]" }, - { "10de", "1185", "GK104 [GeForce GTX 660 OEM]" }, - { "10de", "1186", "GK104 [GeForce GTX 660 Ti]" }, - { "10de", "1187", "GK104 [GeForce GTX 760]" }, - { "10de", "1188", "GK104 [GeForce GTX 690]" }, - { "10de", "1189", "GK104 [GeForce GTX 670]" }, - { "10de", "118a", "GK104GL [GRID K520]" }, - { "10de", "118b", "GK104GL [GRID K2 GeForce USM]" }, - { "10de", "118c", "GK104 [GRID K2 NVS USM]" }, - { "10de", "118d", "GK104GL [GRID K200 vGPU]" }, - { "10de", "118e", "GK104 [GeForce GTX 760 OEM]" }, - { "10de", "118f", "GK104GL [Tesla K10]" }, - { "10de", "1191", "GK104 [GeForce GTX 760 Rev. 2]" }, - { "10de", "1193", "GK104 [GeForce GTX 760 Ti OEM]" }, - { "10de", "1194", "GK104GL [Tesla K8]" }, - { "10de", "1195", "GK104 [GeForce GTX 660 Rev. 2]" }, - { "10de", "1198", "GK104M [GeForce GTX 880M]" }, - { "10de", "1199", "GK104M [GeForce GTX 870M]" }, - { "10de", "119a", "GK104M [GeForce GTX 860M]" }, - { "10de", "119d", "GK104M [GeForce GTX 775M Mac Edition]" }, - { "10de", "119e", "GK104M [GeForce GTX 780M Mac Edition]" }, - { "10de", "119f", "GK104M [GeForce GTX 780M]" }, - { "10de", "11a0", "GK104M [GeForce GTX 680M]" }, - { "10de", "11a1", "GK104M [GeForce GTX 670MX]" }, - { "10de", "11a2", "GK104M [GeForce GTX 675MX Mac Edition]" }, - { "10de", "11a3", "GK104M [GeForce GTX 680MX]" }, - { "10de", "11a7", "GK104M [GeForce GTX 675MX]" }, - { "10de", "11a9", "GK104M [GeForce GTX 870M]" }, - { "10de", "11af", "GK104GLM [GRID IceCube]" }, - { "10de", "11b0", "GK104GL [GRID K240Q / K260Q vGPU]" }, - { "10de", "11b1", "GK104GL [GRID K2 Tesla USM]" }, - { "10de", "11b4", "GK104GL [Quadro K4200]" }, - { "10de", "11b6", "GK104GLM [Quadro K3100M]" }, - { "10de", "11b7", "GK104GLM [Quadro K4100M]" }, - { "10de", "11b8", "GK104GLM [Quadro K5100M]" }, - { "10de", "11b9", "GK104GLM" }, - { "10de", "11ba", "GK104GL [Quadro K5000]" }, - { "10de", "11bb", "GK104GL [Quadro 4100]" }, - { "10de", "11bc", "GK104GLM [Quadro K5000M]" }, - { "10de", "11bd", "GK104GLM [Quadro K4000M]" }, - { "10de", "11be", "GK104GLM [Quadro K3000M]" }, - { "10de", "11bf", "GK104GL [GRID K2]" }, - { "10de", "11c0", "GK106 [GeForce GTX 660]" }, - { "10de", "11c2", "GK106 [GeForce GTX 650 Ti Boost]" }, - { "10de", "11c3", "GK106 [GeForce GTX 650 Ti OEM]" }, - { "10de", "11c4", "GK106 [GeForce GTX 645 OEM]" }, - { "10de", "11c5", "GK106 [GeForce GT 740]" }, - { "10de", "11c6", "GK106 [GeForce GTX 650 Ti]" }, - { "10de", "11c7", "GK106 [GeForce GTX 750 Ti]" }, - { "10de", "11c8", "GK106 [GeForce GTX 650 OEM]" }, - { "10de", "11cb", "GK106 [GeForce GT 740]" }, - { "10de", "11e0", "GK106M [GeForce GTX 770M]" }, - { "10de", "11e1", "GK106M [GeForce GTX 765M]" }, - { "10de", "11e2", "GK106M [GeForce GTX 765M]" }, - { "10de", "11e3", "GK106M [GeForce GTX 760M]" }, - { "10de", "11e7", "GK106M" }, - { "10de", "11fa", "GK106GL [Quadro K4000]" }, - { "10de", "11fc", "GK106GLM [Quadro K2100M]" }, - { "10de", "1200", "GF114 [GeForce GTX 560 Ti]" }, - { "10de", "1201", "GF114 [GeForce GTX 560]" }, - { "10de", "1202", "GF114 [GeForce GTX 560 Ti OEM]" }, - { "10de", "1203", "GF114 [GeForce GTX 460 SE v2]" }, - { "10de", "1205", "GF114 [GeForce GTX 460 v2]" }, - { "10de", "1206", "GF114 [GeForce GTX 555]" }, - { "10de", "1207", "GF114 [GeForce GT 645 OEM]" }, - { "10de", "1208", "GF114 [GeForce GTX 560 SE]" }, - { "10de", "1210", "GF114M [GeForce GTX 570M]" }, - { "10de", "1211", "GF114M [GeForce GTX 580M]" }, - { "10de", "1212", "GF114M [GeForce GTX 675M]" }, - { "10de", "1213", "GF114M [GeForce GTX 670M]" }, - { "10de", "1241", "GF116 [GeForce GT 545 OEM]" }, - { "10de", "1243", "GF116 [GeForce GT 545]" }, - { "10de", "1244", "GF116 [GeForce GTX 550 Ti]" }, - { "10de", "1245", "GF116 [GeForce GTS 450 Rev. 2]" }, - { "10de", "1246", "GF116M [GeForce GT 550M]" }, - { "10de", "1247", "GF116M [GeForce GT 555M/635M]" }, - { "10de", "1248", "GF116M [GeForce GT 555M/635M]" }, - { "10de", "1249", "GF116 [GeForce GTS 450 Rev. 3]" }, - { "10de", "124b", "GF116 [GeForce GT 640 OEM]" }, - { "10de", "124d", "GF116M [GeForce GT 555M/635M]" }, - { "10de", "1251", "GF116M [GeForce GT 560M]" }, - { "10de", "1280", "GK208 [GeForce GT 635]" }, - { "10de", "1281", "GK208 [GeForce GT 710]" }, - { "10de", "1282", "GK208 [GeForce GT 640 Rev. 2]" }, - { "10de", "1284", "GK208 [GeForce GT 630 Rev. 2]" }, - { "10de", "1286", "GK208 [GeForce GT 720]" }, - { "10de", "1287", "GK208B [GeForce GT 730]" }, - { "10de", "1288", "GK208B [GeForce GT 720]" }, - { "10de", "1289", "GK208 [GeForce GT 710]" }, - { "10de", "128a", "GK208B" }, - { "10de", "128b", "GK208B [GeForce GT 710]" }, - { "10de", "128c", "GK208B" }, - { "10de", "1290", "GK208M [GeForce GT 730M]" }, - { "10de", "1291", "GK208M [GeForce GT 735M]" }, - { "10de", "1292", "GK208M [GeForce GT 740M]" }, - { "10de", "1293", "GK208M [GeForce GT 730M]" }, - { "10de", "1294", "GK208M [GeForce GT 740M]" }, - { "10de", "1295", "GK208M [GeForce 710M]" }, - { "10de", "1296", "GK208M [GeForce 825M]" }, - { "10de", "1298", "GK208M [GeForce GT 720M]" }, - { "10de", "1299", "GK208BM [GeForce 920M]" }, - { "10de", "129a", "GK208BM [GeForce 910M]" }, - { "10de", "12a0", "GK208" }, - { "10de", "12b9", "GK208GLM [Quadro K610M]" }, - { "10de", "12ba", "GK208GLM [Quadro K510M]" }, - { "10de", "1340", "GM108M [GeForce 830M]" }, - { "10de", "1341", "GM108M [GeForce 840M]" }, - { "10de", "1344", "GM108M [GeForce 845M]" }, - { "10de", "1346", "GM108M [GeForce 930M]" }, - { "10de", "1347", "GM108M [GeForce 940M]" }, - { "10de", "1348", "GM108M [GeForce 945M / 945A]" }, - { "10de", "1349", "GM108M [GeForce 930M]" }, - { "10de", "134b", "GM108M [GeForce 940MX]" }, - { "10de", "134d", "GM108M [GeForce 940MX]" }, - { "10de", "134e", "GM108M [GeForce 930MX]" }, - { "10de", "134f", "GM108M [GeForce 920MX]" }, - { "10de", "137a", "GM108GLM [Quadro K620M / Quadro M500M]" }, - { "10de", "137b", "GM108GLM [Quadro M520 Mobile]" }, - { "10de", "137d", "GM108M [GeForce 940A]" }, - { "10de", "1380", "GM107 [GeForce GTX 750 Ti]" }, - { "10de", "1381", "GM107 [GeForce GTX 750]" }, - { "10de", "1382", "GM107 [GeForce GTX 745]" }, - { "10de", "1389", "GM107GL [GRID M30]" }, - { "10de", "1390", "GM107M [GeForce 845M]" }, - { "10de", "1391", "GM107M [GeForce GTX 850M]" }, - { "10de", "1392", "GM107M [GeForce GTX 860M]" }, - { "10de", "1393", "GM107M [GeForce 840M]" }, - { "10de", "1398", "GM107M [GeForce 845M]" }, - { "10de", "1399", "GM107M [GeForce 945M]" }, - { "10de", "139a", "GM107M [GeForce GTX 950M]" }, - { "10de", "139b", "GM107M [GeForce GTX 960M]" }, - { "10de", "139c", "GM107M [GeForce 940M]" }, - { "10de", "139d", "GM107M [GeForce GTX 750 Ti]" }, - { "10de", "13b0", "GM107GLM [Quadro M2000M]" }, - { "10de", "13b1", "GM107GLM [Quadro M1000M]" }, - { "10de", "13b2", "GM107GLM [Quadro M600M]" }, - { "10de", "13b3", "GM107GLM [Quadro K2200M]" }, - { "10de", "13b4", "GM107GLM [Quadro M620 Mobile]" }, - { "10de", "13b6", "GM107GLM [Quadro M1200 Mobile]" }, - { "10de", "13b9", "GM107GL [NVS 810]" }, - { "10de", "13ba", "GM107GL [Quadro K2200]" }, - { "10de", "13bb", "GM107GL [Quadro K620]" }, - { "10de", "13bc", "GM107GL [Quadro K1200]" }, - { "10de", "13bd", "GM107GL [Tesla M10]" }, - { "10de", "13c0", "GM204 [GeForce GTX 980]" }, - { "10de", "13c1", "GM204" }, - { "10de", "13c2", "GM204 [GeForce GTX 970]" }, - { "10de", "13c3", "GM204" }, - { "10de", "13d7", "GM204M [GeForce GTX 980M]" }, - { "10de", "13d8", "GM204M [GeForce GTX 970M]" }, - { "10de", "13d9", "GM204M [GeForce GTX 965M]" }, - { "10de", "13da", "GM204M [GeForce GTX 980 Mobile]" }, - { "10de", "13e7", "GM204GL [GeForce GTX 980 Engineering Sample]" }, - { "10de", "13f0", "GM204GL [Quadro M5000]" }, - { "10de", "13f1", "GM204GL [Quadro M4000]" }, - { "10de", "13f2", "GM204GL [Tesla M60]" }, - { "10de", "13f3", "GM204GL [Tesla M6]" }, - { "10de", "13f8", "GM204GLM [Quadro M5000M / M5000 SE]" }, - { "10de", "13f9", "GM204GLM [Quadro M4000M]" }, - { "10de", "13fa", "GM204GLM [Quadro M3000M]" }, - { "10de", "13fb", "GM204GLM [Quadro M5500]" }, - { "10de", "1401", "GM206 [GeForce GTX 960]" }, - { "10de", "1402", "GM206 [GeForce GTX 950]" }, - { "10de", "1404", "GM206 [GeForce GTX 960 FAKE]" }, - { "10de", "1406", "GM206 [GeForce GTX 960 OEM]" }, - { "10de", "1407", "GM206 [GeForce GTX 750 v2]" }, - { "10de", "1427", "GM206M [GeForce GTX 965M]" }, - { "10de", "1430", "GM206GL [Quadro M2000]" }, - { "10de", "1431", "GM206GL [Tesla M4]" }, - { "10de", "1436", "GM206GLM [Quadro M2200 Mobile]" }, - { "10de", "15f0", "GP100GL [Quadro GP100]" }, - { "10de", "15f1", "GP100GL" }, - { "10de", "15f7", "GP100GL [Tesla P100 PCIe 12GB]" }, - { "10de", "15f8", "GP100GL [Tesla P100 PCIe 16GB]" }, - { "10de", "15f9", "GP100GL [Tesla P100 SXM2 16GB]" }, - { "10de", "1617", "GM204M [GeForce GTX 980M]" }, - { "10de", "1618", "GM204M [GeForce GTX 970M]" }, - { "10de", "1619", "GM204M [GeForce GTX 965M]" }, - { "10de", "161a", "GM204M [GeForce GTX 980 Mobile]" }, - { "10de", "1667", "GM204M [GeForce GTX 965M]" }, - { "10de", "1725", "GP100" }, - { "10de", "172e", "GP100" }, - { "10de", "172f", "GP100" }, - { "10de", "174d", "GM108M [GeForce MX130]" }, - { "10de", "174e", "GM108M [GeForce MX110]" }, - { "10de", "1789", "GM107GL [GRID M3-3020]" }, - { "10de", "179c", "GM107 [GeForce 940MX]" }, - { "10de", "17c2", "GM200 [GeForce GTX TITAN X]" }, - { "10de", "17c8", "GM200 [GeForce GTX 980 Ti]" }, - { "10de", "17f0", "GM200GL [Quadro M6000]" }, - { "10de", "17f1", "GM200GL [Quadro M6000 24GB]" }, - { "10de", "17fd", "GM200GL [Tesla M40]" }, - { "10de", "1ad0", "Tegra PCIe x8 Endpoint" }, - { "10de", "1ad1", "Tegra PCIe x4/x8 Endpoint/Root Complex" }, - { "10de", "1ad2", "Tegra PCIe x1 Root Complex" }, - { "10de", "1ad3", "Xavier SATA Controller" }, - { "10de", "1ad6", "TU102 USB 3.1 Host Controller" }, - { "10de", "1ad7", "TU102 USB Type-C UCSI Controller" }, - { "10de", "1ad8", "TU104 USB 3.1 Host Controller" }, - { "10de", "1ad9", "TU104 USB Type-C UCSI Controller" }, - { "10de", "1ada", "TU106 USB 3.1 Host Controller" }, - { "10de", "1adb", "TU106 USB Type-C UCSI Controller" }, - { "10de", "1aeb", "TU116 High Definition Audio Controller" }, - { "10de", "1aec", "TU116 USB 3.1 Host Controller" }, - { "10de", "1aed", "TU116 USB Type-C UCSI Controller" }, - { "10de", "1aef", "GA102 High Definition Audio Controller" }, - { "10de", "1b00", "GP102 [TITAN X]" }, - { "10de", "1b01", "GP102 [GeForce GTX 1080 Ti 10GB]" }, - { "10de", "1b02", "GP102 [TITAN Xp]" }, - { "10de", "1b04", "GP102" }, - { "10de", "1b06", "GP102 [GeForce GTX 1080 Ti]" }, - { "10de", "1b07", "GP102 [P102-100]" }, - { "10de", "1b30", "GP102GL [Quadro P6000]" }, - { "10de", "1b38", "GP102GL [Tesla P40]" }, - { "10de", "1b39", "GP102GL [Tesla P10]" }, - { "10de", "1b70", "GP102GL" }, - { "10de", "1b78", "GP102GL" }, - { "10de", "1b80", "GP104 [GeForce GTX 1080]" }, - { "10de", "1b81", "GP104 [GeForce GTX 1070]" }, - { "10de", "1b82", "GP104 [GeForce GTX 1070 Ti]" }, - { "10de", "1b83", "GP104 [GeForce GTX 1060 6GB]" }, - { "10de", "1b84", "GP104 [GeForce GTX 1060 3GB]" }, - { "10de", "1b87", "GP104 [P104-100]" }, - { "10de", "1ba0", "GP104M [GeForce GTX 1080 Mobile]" }, - { "10de", "1ba1", "GP104M [GeForce GTX 1070 Mobile]" }, - { "10de", "1ba2", "GP104M [GeForce GTX 1070 Mobile]" }, - { "10de", "1ba9", "GP104M" }, - { "10de", "1baa", "GP104M" }, - { "10de", "1bad", "GP104 [GeForce GTX 1070 Engineering Sample]" }, - { "10de", "1bb0", "GP104GL [Quadro P5000]" }, - { "10de", "1bb1", "GP104GL [Quadro P4000]" }, - { "10de", "1bb3", "GP104GL [Tesla P4]" }, - { "10de", "1bb4", "GP104GL [Tesla P6]" }, - { "10de", "1bb5", "GP104GLM [Quadro P5200 Mobile]" }, - { "10de", "1bb6", "GP104GLM [Quadro P5000 Mobile]" }, - { "10de", "1bb7", "GP104GLM [Quadro P4000 Mobile]" }, - { "10de", "1bb8", "GP104GLM [Quadro P3000 Mobile]" }, - { "10de", "1bb9", "GP104GLM [Quadro P4200 Mobile]" }, - { "10de", "1bbb", "GP104GLM [Quadro P3200 Mobile]" }, - { "10de", "1bc7", "GP104 [P104-101]" }, - { "10de", "1be0", "GP104BM [GeForce GTX 1080 Mobile]" }, - { "10de", "1be1", "GP104BM [GeForce GTX 1070 Mobile]" }, - { "10de", "1c00", "GP106" }, - { "10de", "1c01", "GP106" }, - { "10de", "1c02", "GP106 [GeForce GTX 1060 3GB]" }, - { "10de", "1c03", "GP106 [GeForce GTX 1060 6GB]" }, - { "10de", "1c04", "GP106 [GeForce GTX 1060 5GB]" }, - { "10de", "1c06", "GP106 [GeForce GTX 1060 6GB Rev. 2]" }, - { "10de", "1c07", "GP106 [P106-100]" }, - { "10de", "1c09", "GP106 [P106-090]" }, - { "10de", "1c20", "GP106M [GeForce GTX 1060 Mobile]" }, - { "10de", "1c21", "GP106M [GeForce GTX 1050 Ti Mobile]" }, - { "10de", "1c22", "GP106M [GeForce GTX 1050 Mobile]" }, - { "10de", "1c23", "GP106M [GeForce GTX 1060 Mobile Rev. 2]" }, - { "10de", "1c2d", "GP106M" }, - { "10de", "1c30", "GP106GL [Quadro P2000]" }, - { "10de", "1c31", "GP106GL [Quadro P2200]" }, - { "10de", "1c35", "GP106M [Quadro P2000 Mobile]" }, - { "10de", "1c36", "GP106 [P106M]" }, - { "10de", "1c60", "GP106BM [GeForce GTX 1060 Mobile 6GB]" }, - { "10de", "1c61", "GP106BM [GeForce GTX 1050 Ti Mobile]" }, - { "10de", "1c62", "GP106BM [GeForce GTX 1050 Mobile]" }, - { "10de", "1c70", "GP106GL" }, - { "10de", "1c81", "GP107 [GeForce GTX 1050]" }, - { "10de", "1c82", "GP107 [GeForce GTX 1050 Ti]" }, - { "10de", "1c83", "GP107 [GeForce GTX 1050 3GB]" }, - { "10de", "1c8c", "GP107M [GeForce GTX 1050 Ti Mobile]" }, - { "10de", "1c8d", "GP107M [GeForce GTX 1050 Mobile]" }, - { "10de", "1c8e", "GP107M" }, - { "10de", "1c8f", "GP107M [GeForce GTX 1050 Ti Max-Q]" }, - { "10de", "1c90", "GP107M [GeForce MX150]" }, - { "10de", "1c91", "GP107M [GeForce GTX 1050 3 GB Max-Q]" }, - { "10de", "1c92", "GP107M [GeForce GTX 1050 Mobile]" }, - { "10de", "1c94", "GP107M [GeForce MX350]" }, - { "10de", "1c96", "GP107M [GeForce MX350]" }, - { "10de", "1ca7", "GP107GL" }, - { "10de", "1ca8", "GP107GL" }, - { "10de", "1caa", "GP107GL" }, - { "10de", "1cb1", "GP107GL [Quadro P1000]" }, - { "10de", "1cb2", "GP107GL [Quadro P600]" }, - { "10de", "1cb3", "GP107GL [Quadro P400]" }, - { "10de", "1cb6", "GP107GL [Quadro P620]" }, - { "10de", "1cba", "GP107GLM [Quadro P2000 Mobile]" }, - { "10de", "1cbb", "GP107GLM [Quadro P1000 Mobile]" }, - { "10de", "1cbc", "GP107GLM [Quadro P600 Mobile]" }, - { "10de", "1cbd", "GP107GLM [Quadro P620]" }, - { "10de", "1ccc", "GP107BM [GeForce GTX 1050 Ti Mobile]" }, - { "10de", "1ccd", "GP107BM [GeForce GTX 1050 Mobile]" }, - { "10de", "1cfa", "GP107GL [Quadro P2000]" }, - { "10de", "1cfb", "GP107GL [Quadro P1000]" }, - { "10de", "1d01", "GP108 [GeForce GT 1030]" }, - { "10de", "1d02", "GP108 [GeForce GT 1010]" }, - { "10de", "1d10", "GP108M [GeForce MX150]" }, - { "10de", "1d11", "GP108M [GeForce MX230]" }, - { "10de", "1d12", "GP108M [GeForce MX150]" }, - { "10de", "1d13", "GP108M [GeForce MX250]" }, - { "10de", "1d16", "GP108M [GeForce MX330]" }, - { "10de", "1d33", "GP108GLM [Quadro P500 Mobile]" }, - { "10de", "1d34", "GP108GLM [Quadro P520]" }, - { "10de", "1d52", "GP108BM [GeForce MX250]" }, - { "10de", "1d56", "GP108BM [GeForce MX330]" }, - { "10de", "1d81", "GV100 [TITAN V]" }, - { "10de", "1db1", "GV100GL [Tesla V100 SXM2 16GB]" }, - { "10de", "1db2", "GV100GL [Tesla V100 DGXS 16GB]" }, - { "10de", "1db3", "GV100GL [Tesla V100 FHHL 16GB]" }, - { "10de", "1db4", "GV100GL [Tesla V100 PCIe 16GB]" }, - { "10de", "1db5", "GV100GL [Tesla V100 SXM2 32GB]" }, - { "10de", "1db6", "GV100GL [Tesla V100 PCIe 32GB]" }, - { "10de", "1db7", "GV100GL [Tesla V100 DGXS 32GB]" }, - { "10de", "1db8", "GV100GL [Tesla V100 SXM3 32GB]" }, - { "10de", "1dba", "GV100GL [Quadro GV100]" }, - { "10de", "1df0", "GV100GL [Tesla PG500-216]" }, - { "10de", "1df2", "GV100GL [Tesla PG503-216]" }, - { "10de", "1df5", "GV100GL [Tesla V100 SXM2 16GB]" }, - { "10de", "1df6", "GV100GL [Tesla V100S PCIe 32GB]" }, - { "10de", "1e02", "TU102 [TITAN RTX]" }, - { "10de", "1e04", "TU102 [GeForce RTX 2080 Ti]" }, - { "10de", "1e07", "TU102 [GeForce RTX 2080 Ti Rev. A]" }, - { "10de", "1e09", "TU102 [CMP 50HX]" }, - { "10de", "1e2d", "TU102 [GeForce RTX 2080 Ti Engineering Sample]" }, - { "10de", "1e2e", "TU102 [GeForce RTX 2080 Ti 12GB Engineering Sample]" }, - { "10de", "1e30", "TU102GL [Quadro RTX 6000/8000]" }, - { "10de", "1e36", "TU102GL [Quadro RTX 6000]" }, - { "10de", "1e37", "TU102GL [GRID RTX T10-4/T10-8/T10-16]" }, - { "10de", "1e38", "TU102GL" }, - { "10de", "1e3c", "TU102GL" }, - { "10de", "1e3d", "TU102GL" }, - { "10de", "1e3e", "TU102GL" }, - { "10de", "1e78", "TU102GL [Quadro RTX 6000/8000]" }, - { "10de", "1e81", "TU104 [GeForce RTX 2080 SUPER]" }, - { "10de", "1e82", "TU104 [GeForce RTX 2080]" }, - { "10de", "1e84", "TU104 [GeForce RTX 2070 SUPER]" }, - { "10de", "1e87", "TU104 [GeForce RTX 2080 Rev. A]" }, - { "10de", "1e89", "TU104 [GeForce RTX 2060]" }, - { "10de", "1e90", "TU104M [GeForce RTX 2080 Mobile]" }, - { "10de", "1e91", "TU104M [GeForce RTX 2070 SUPER Mobile / Max-Q]" }, - { "10de", "1e93", "TU104M [GeForce RTX 2080 SUPER Mobile / Max-Q]" }, - { "10de", "1eab", "TU104M" }, - { "10de", "1eae", "TU104M" }, - { "10de", "1eb0", "TU104GL [Quadro RTX 5000]" }, - { "10de", "1eb1", "TU104GL [Quadro RTX 4000]" }, - { "10de", "1eb4", "TU104GL [T4G]" }, - { "10de", "1eb5", "TU104GLM [Quadro RTX 5000 Mobile / Max-Q]" }, - { "10de", "1eb6", "TU104GLM [Quadro RTX 4000 Mobile / Max-Q]" }, - { "10de", "1eb8", "TU104GL [Tesla T4]" }, - { "10de", "1eb9", "TU104GL" }, - { "10de", "1ebe", "TU104GL" }, - { "10de", "1ec2", "TU104 [GeForce RTX 2070 SUPER]" }, - { "10de", "1ec7", "TU104 [GeForce RTX 2070 SUPER]" }, - { "10de", "1ed0", "TU104BM [GeForce RTX 2080 Mobile]" }, - { "10de", "1ed1", "TU104BM [GeForce RTX 2070 SUPER Mobile / Max-Q]" }, - { "10de", "1ed3", "TU104BM [GeForce RTX 2080 SUPER Mobile / Max-Q]" }, - { "10de", "1ef5", "TU104GLM [Quadro RTX 5000 Mobile Refresh]" }, - { "10de", "1f02", "TU106 [GeForce RTX 2070]" }, - { "10de", "1f03", "TU106 [GeForce RTX 2060 12GB]" }, - { "10de", "1f04", "TU106" }, - { "10de", "1f06", "TU106 [GeForce RTX 2060 SUPER]" }, - { "10de", "1f07", "TU106 [GeForce RTX 2070 Rev. A]" }, - { "10de", "1f08", "TU106 [GeForce RTX 2060 Rev. A]" }, - { "10de", "1f09", "TU106 [GeForce GTX 1660 SUPER]" }, - { "10de", "1f0a", "TU106 [GeForce GTX 1650]" }, - { "10de", "1f0b", "TU106 [CMP 40HX]" }, - { "10de", "1f10", "TU106M [GeForce RTX 2070 Mobile]" }, - { "10de", "1f11", "TU106M [GeForce RTX 2060 Mobile]" }, - { "10de", "1f12", "TU106M [GeForce RTX 2060 Max-Q]" }, - { "10de", "1f14", "TU106M [GeForce RTX 2070 Mobile / Max-Q Refresh]" }, - { "10de", "1f15", "TU106M [GeForce RTX 2060 Mobile]" }, - { "10de", "1f2e", "TU106M" }, - { "10de", "1f36", "TU106GLM [Quadro RTX 3000 Mobile / Max-Q]" }, - { "10de", "1f42", "TU106 [GeForce RTX 2060 SUPER]" }, - { "10de", "1f47", "TU106 [GeForce RTX 2060 SUPER]" }, - { "10de", "1f50", "TU106BM [GeForce RTX 2070 Mobile / Max-Q]" }, - { "10de", "1f51", "TU106BM [GeForce RTX 2060 Mobile]" }, - { "10de", "1f54", "TU106BM [GeForce RTX 2070 Mobile]" }, - { "10de", "1f55", "TU106BM [GeForce RTX 2060 Mobile]" }, - { "10de", "1f76", "TU106GLM [Quadro RTX 3000 Mobile Refresh]" }, - { "10de", "1f81", "TU117" }, - { "10de", "1f82", "TU117 [GeForce GTX 1650]" }, - { "10de", "1f91", "TU117M [GeForce GTX 1650 Mobile / Max-Q]" }, - { "10de", "1f92", "TU117M [GeForce GTX 1650 Mobile]" }, - { "10de", "1f94", "TU117M [GeForce GTX 1650 Mobile]" }, - { "10de", "1f95", "TU117M [GeForce GTX 1650 Ti Mobile]" }, - { "10de", "1f96", "TU117M [GeForce GTX 1650 Mobile / Max-Q]" }, - { "10de", "1f97", "TU117M [GeForce MX450]" }, - { "10de", "1f98", "TU117M [GeForce MX450]" }, - { "10de", "1f99", "TU117M" }, - { "10de", "1f9c", "TU117M [GeForce MX450]" }, - { "10de", "1f9d", "TU117M [GeForce GTX 1650 Mobile / Max-Q]" }, - { "10de", "1f9f", "TU117M [GeForce MX550]" }, - { "10de", "1fa0", "TU117M [GeForce MX550]" }, - { "10de", "1fae", "TU117GL" }, - { "10de", "1fb0", "TU117GLM [Quadro T1000 Mobile]" }, - { "10de", "1fb1", "TU117GL [T600]" }, - { "10de", "1fb2", "TU117GLM [Quadro T400 Mobile]" }, - { "10de", "1fb6", "TU117GLM [T600 Laptop GPU]" }, - { "10de", "1fb7", "TU117GLM [T550 Laptop GPU]" }, - { "10de", "1fb8", "TU117GLM [Quadro T2000 Mobile / Max-Q]" }, - { "10de", "1fb9", "TU117GLM [Quadro T1000 Mobile]" }, - { "10de", "1fba", "TU117GLM [T600 Mobile]" }, - { "10de", "1fbb", "TU117GLM [Quadro T500 Mobile]" }, - { "10de", "1fbc", "TU117GLM [T1200 Laptop GPU]" }, - { "10de", "1fbf", "TU117GL" }, - { "10de", "1fd9", "TU117BM [GeForce GTX 1650 Mobile Refresh]" }, - { "10de", "1fdd", "TU117BM [GeForce GTX 1650 Mobile Refresh]" }, - { "10de", "1ff0", "TU117GL [T1000 8GB]" }, - { "10de", "1ff2", "TU117GL [T400 4GB]" }, - { "10de", "1ff9", "TU117GLM [Quadro T1000 Mobile]" }, - { "10de", "2082", "GA100 [CMP 170HX]" }, - { "10de", "20b0", "GA100 [A100 SXM4 40GB]" }, - { "10de", "20b1", "GA100 [A100 PCIe 40GB]" }, - { "10de", "20b2", "GA100 [A100 SXM4 80GB]" }, - { "10de", "20b3", "GA100 [PG506-242/243]" }, - { "10de", "20b5", "GA100 [A100 PCIe 80GB]" }, - { "10de", "20b6", "GA100GL [PG506-232]" }, - { "10de", "20b7", "GA100GL [A30 PCIe]" }, - { "10de", "20b8", "GA100 [A100X]" }, - { "10de", "20b9", "GA100 [A30X]" }, - { "10de", "20bb", "GA100 [DRIVE A100 PROD]" }, - { "10de", "20be", "GA100 [GRID A100A]" }, - { "10de", "20bf", "GA100 [GRID A100B]" }, - { "10de", "20c2", "GA100 [CMP 170HX]" }, - { "10de", "20f0", "GA100 [A100-PG506-207]" }, - { "10de", "20f1", "GA100 [A100 PCIe 40GB]" }, - { "10de", "20f2", "GA100 [A100-PG506-217]" }, - { "10de", "2182", "TU116 [GeForce GTX 1660 Ti]" }, - { "10de", "2183", "TU116" }, - { "10de", "2184", "TU116 [GeForce GTX 1660]" }, - { "10de", "2187", "TU116 [GeForce GTX 1650 SUPER]" }, - { "10de", "2188", "TU116 [GeForce GTX 1650]" }, - { "10de", "2189", "TU116 [CMP 30HX]" }, - { "10de", "2191", "TU116M [GeForce GTX 1660 Ti Mobile]" }, - { "10de", "2192", "TU116M [GeForce GTX 1650 Ti Mobile]" }, - { "10de", "21ae", "TU116GL" }, - { "10de", "21bf", "TU116GL" }, - { "10de", "21c2", "TU116" }, - { "10de", "21c4", "TU116 [GeForce GTX 1660 SUPER]" }, - { "10de", "21d1", "TU116BM [GeForce GTX 1660 Ti Mobile]" }, - { "10de", "2200", "GA102" }, - { "10de", "2203", "GA102 [GeForce RTX 3090 Ti]" }, - { "10de", "2204", "GA102 [GeForce RTX 3090]" }, - { "10de", "2205", "GA102 [GeForce RTX 3080 Ti 20GB]" }, - { "10de", "2206", "GA102 [GeForce RTX 3080]" }, - { "10de", "2208", "GA102 [GeForce RTX 3080 Ti]" }, - { "10de", "220a", "GA102 [GeForce RTX 3080 12GB]" }, - { "10de", "220d", "GA102 [CMP 90HX]" }, - { "10de", "2216", "GA102 [GeForce RTX 3080 Lite Hash Rate]" }, - { "10de", "222b", "GA102 [GeForce RTX 3090 Engineering Sample]" }, - { "10de", "222f", "GA102 [GeForce RTX 3080 11GB / 12GB Engineering Sample]" }, - { "10de", "2230", "GA102GL [RTX A6000]" }, - { "10de", "2231", "GA102GL [RTX A5000]" }, - { "10de", "2232", "GA102GL [RTX A4500]" }, - { "10de", "2233", "GA102GL [RTX A5500]" }, - { "10de", "2235", "GA102GL [A40]" }, - { "10de", "2236", "GA102GL [A10]" }, - { "10de", "2237", "GA102GL [A10G]" }, - { "10de", "2238", "GA102GL [A10M]" }, - { "10de", "223f", "GA102GL" }, - { "10de", "228b", "GA104 High Definition Audio Controller" }, - { "10de", "2296", "Tegra PCIe Endpoint Virtual Network" }, - { "10de", "2302", "GA103" }, - { "10de", "2321", "GA103" }, - { "10de", "2414", "GA103 [GeForce RTX 3060 Ti]" }, - { "10de", "2420", "GA103M [GeForce RTX 3080 Ti Mobile]" }, - { "10de", "2438", "GA103GLM [RTX A5500 Laptop GPU]" }, - { "10de", "2460", "GA103M [GeForce RTX 3080 Ti Laptop GPU]" }, - { "10de", "2482", "GA104 [GeForce RTX 3070 Ti]" }, - { "10de", "2483", "GA104" }, - { "10de", "2484", "GA104 [GeForce RTX 3070]" }, - { "10de", "2486", "GA104 [GeForce RTX 3060 Ti]" }, - { "10de", "2487", "GA104 [GeForce RTX 3060]" }, - { "10de", "2488", "GA104 [GeForce RTX 3070 Lite Hash Rate]" }, - { "10de", "2489", "GA104 [GeForce RTX 3060 Ti Lite Hash Rate]" }, - { "10de", "248a", "GA104 [CMP 70HX]" }, - { "10de", "249c", "GA104M [GeForce RTX 3080 Mobile / Max-Q 8GB/16GB]" }, - { "10de", "249d", "GA104M [GeForce RTX 3070 Mobile / Max-Q]" }, - { "10de", "249f", "GA104M" }, - { "10de", "24a0", "GA104 [Geforce RTX 3070 Ti Laptop GPU]" }, - { "10de", "24ac", "GA104 [GeForce RTX 30x0 Engineering Sample]" }, - { "10de", "24ad", "GA104 [GeForce RTX 3060 Engineering Sample]" }, - { "10de", "24af", "GA104 [GeForce RTX 3070 Engineering Sample]" }, - { "10de", "24b0", "GA104GL [RTX A4000]" }, - { "10de", "24b1", "GA104GL [RTX A4000H]" }, - { "10de", "24b6", "GA104GLM [RTX A5000 Mobile]" }, - { "10de", "24b7", "GA104GLM [RTX A4000 Mobile]" }, - { "10de", "24b8", "GA104GLM [RTX A3000 Mobile]" }, - { "10de", "24b9", "GA104GLM [RTX A3000 12GB Laptop GPU]" }, - { "10de", "24ba", "GA104GLM [RTX A4500 Laptop GPU]" }, - { "10de", "24bb", "GA104GLM [RTX A3000 Laptop GPU]" }, - { "10de", "24bf", "GA104 [GeForce RTX 3070 Engineering Sample]" }, - { "10de", "24dc", "GA104M [GeForce RTX 3080 Mobile / Max-Q 8GB/16GB]" }, - { "10de", "24dd", "GA104M [GeForce RTX 3070 Mobile / Max-Q]" }, - { "10de", "24e0", "GA104M [Geforce RTX 3070 Ti Laptop GPU]" }, - { "10de", "24fa", "GA104 [RTX A4500 Embedded GPU ]" }, - { "10de", "2501", "GA106 [GeForce RTX 3060]" }, - { "10de", "2503", "GA106 [GeForce RTX 3060]" }, - { "10de", "2504", "GA106 [GeForce RTX 3060 Lite Hash Rate]" }, - { "10de", "2505", "GA106" }, - { "10de", "2507", "GA106 [Geforce RTX 3050]" }, - { "10de", "2520", "GA106M [GeForce RTX 3060 Mobile / Max-Q]" }, - { "10de", "2523", "GA106M [GeForce RTX 3050 Ti Mobile / Max-Q]" }, - { "10de", "252f", "GA106 [GeForce RTX 3060 Engineering Sample]" }, - { "10de", "2531", "GA106 [RTX A2000]" }, - { "10de", "2560", "GA106M [GeForce RTX 3060 Mobile / Max-Q]" }, - { "10de", "2563", "GA106M [GeForce RTX 3050 Ti Mobile / Max-Q]" }, - { "10de", "2571", "GA106 [RTX A2000 12GB]" }, - { "10de", "2583", "GA107 [GeForce RTX 3050]" }, - { "10de", "25a0", "GA107M [GeForce RTX 3050 Ti Mobile]" }, - { "10de", "25a2", "GA107M [GeForce RTX 3050 Mobile]" }, - { "10de", "25a3", "GA107" }, - { "10de", "25a4", "GA107" }, - { "10de", "25a5", "GA107M [GeForce RTX 3050 Mobile]" }, - { "10de", "25a6", "GA107M [GeForce MX570]" }, - { "10de", "25a7", "GA107M [GeForce MX570]" }, - { "10de", "25a9", "GA107M [GeForce RTX 2050]" }, - { "10de", "25aa", "GA107M [GeForce MX570 A]" }, - { "10de", "25af", "GA107 [GeForce RTX 3050 Engineering Sample]" }, - { "10de", "25b5", "GA107GLM [RTX A4 Mobile]" }, - { "10de", "25b6", "GA107GL [A2 / A16]" }, - { "10de", "25b8", "GA107GLM [RTX A2000 Mobile]" }, - { "10de", "25b9", "GA107GLM [RTX A1000 Laptop GPU]" }, - { "10de", "25ba", "GA107GLM [RTX A2000 8GB Laptop GPU]" }, - { "10de", "25e0", "GA107BM [GeForce RTX 3050 Ti Mobile]" }, - { "10de", "25e2", "GA107BM [GeForce RTX 3050 Mobile]" }, - { "10de", "25e5", "GA107BM [GeForce RTX 3050 Mobile]" }, - { "10de", "25f9", "GA107 [RTX A1000 Embedded GPU ]" }, - { "10de", "25fa", "GA107 [RTX A2000 Embedded GPU]" }, - { "10df", "0720", "OneConnect NIC (Skyhawk)" }, - { "10df", "0722", "OneConnect iSCSI Initiator (Skyhawk)" }, - { "10df", "0723", "OneConnect iSCSI Initiator + Target (Skyhawk)" }, - { "10df", "0724", "OneConnect FCoE Initiator (Skyhawk)" }, - { "10df", "0728", "OneConnect NIC (Skyhawk-VF)" }, - { "10df", "072a", "OneConnect iSCSI Initiator (Skyhawk-VF)" }, - { "10df", "072b", "OneConnect iSCSI Initiator + Target (Skyhawk-VF)" }, - { "10df", "072c", "OneConnect FCoE Initiator (Skyhawk-VF)" }, - { "10df", "1ae5", "LP6000 Fibre Channel Host Adapter" }, - { "10df", "e100", "Proteus-X: LightPulse IOV Fibre Channel Host Adapter" }, - { "10df", "e131", "LightPulse 8Gb/s PCIe Shared I/O Fibre Channel Adapter" }, - { "10df", "e180", "Proteus-X: LightPulse IOV Fibre Channel Host Adapter" }, - { "10df", "e200", "LPe15000/LPe16000 Series 8Gb/16Gb Fibre Channel Adapter" }, - { "10df", "e208", "LightPulse 16Gb Fibre Channel Host Adapter (Lancer-VF)" }, - { "10df", "e220", "OneConnect NIC (Lancer)" }, - { "10df", "e240", "OneConnect iSCSI Initiator (Lancer)" }, - { "10df", "e260", "OneConnect FCoE Initiator (Lancer)" }, - { "10df", "e268", "OneConnect 10Gb FCoE Converged Network Adapter (Lancer-VF)" }, - { "10df", "e300", "LPe31000/LPe32000 Series 16Gb/32Gb Fibre Channel Adapter" }, - { "10df", "f011", "Saturn: LightPulse Fibre Channel Host Adapter" }, - { "10df", "f015", "Saturn: LightPulse Fibre Channel Host Adapter" }, - { "10df", "f085", "LP850 Fibre Channel Host Adapter" }, - { "10df", "f095", "LP952 Fibre Channel Host Adapter" }, - { "10df", "f098", "LP982 Fibre Channel Host Adapter" }, - { "10df", "f0a1", "Thor LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0a5", "Thor LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0b5", "Viper LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0d1", "Helios LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0d5", "Helios LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0e1", "Zephyr LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0e5", "Zephyr LightPulse Fibre Channel Host Adapter" }, - { "10df", "f0f5", "Neptune LightPulse Fibre Channel Host Adapter" }, - { "10df", "f100", "LPe12000 Series 8Gb Fibre Channel Adapter" }, - { "10df", "f111", "Saturn-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "f112", "Saturn-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "f180", "LPSe12002 EmulexSecure Fibre Channel Adapter" }, - { "10df", "f400", "LPe35000/LPe36000 Series 32Gb/64Gb Fibre Channel Adapter" }, - { "10df", "f500", "LPe37000/LPe38000 Series 32Gb/64Gb Fibre Channel Adapter" }, - { "10df", "f700", "LP7000 Fibre Channel Host Adapter" }, - { "10df", "f701", "LP7000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)" }, - { "10df", "f800", "LP8000 Fibre Channel Host Adapter" }, - { "10df", "f801", "LP8000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)" }, - { "10df", "f900", "LP9000 Fibre Channel Host Adapter" }, - { "10df", "f901", "LP9000 Fibre Channel Host Adapter Alternate ID (JX1:2-3, JX2:1-2)" }, - { "10df", "f980", "LP9802 Fibre Channel Host Adapter" }, - { "10df", "f981", "LP9802 Fibre Channel Host Adapter Alternate ID" }, - { "10df", "f982", "LP9802 Fibre Channel Host Adapter Alternate ID" }, - { "10df", "fa00", "Thor-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fb00", "Viper LightPulse Fibre Channel Host Adapter" }, - { "10df", "fc00", "Thor-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fc10", "Helios-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fc20", "Zephyr-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fc40", "Saturn-X: LightPulse Fibre Channel Host Adapter" }, - { "10df", "fc50", "Proteus-X: LightPulse IOV Fibre Channel Host Adapter" }, - { "10df", "fd00", "Helios-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fd11", "Helios-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fd12", "Helios-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fe00", "Zephyr-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fe05", "Zephyr-X: LightPulse FCoE Adapter" }, - { "10df", "fe11", "Zephyr-X LightPulse Fibre Channel Host Adapter" }, - { "10df", "fe12", "Zephyr-X LightPulse FCoE Adapter" }, - { "10df", "ff00", "Neptune LightPulse Fibre Channel Host Adapter" }, - { "10e0", "5026", "IMS5026/27/28" }, - { "10e0", "5027", "IMS5027" }, - { "10e0", "5028", "IMS5028" }, - { "10e0", "8849", "IMS8849" }, - { "10e0", "8853", "IMS8853" }, - { "10e0", "9128", "IMS9128 [Twin turbo 128]" }, - { "10e1", "0391", "TRM-S1040" }, - { "10e1", "690c", "DC-690c" }, - { "10e1", "dc29", "DC-290" }, - { "10e3", "0000", "CA91C042 [Universe]" }, - { "10e3", "0108", "Tsi108 Host Bridge for Single PowerPC" }, - { "10e3", "0148", "Tsi148 [Tempe]" }, - { "10e3", "0860", "CA91C860 [QSpan]" }, - { "10e3", "0862", "CA91C862A [QSpan-II]" }, - { "10e3", "8111", "Tsi381 PCIe to PCI Bridge" }, - { "10e3", "8260", "CA91L8200B [Dual PCI PowerSpan II]" }, - { "10e3", "8261", "CA91L8260B [Single PCI PowerSpan II]" }, - { "10e3", "a108", "Tsi109 Host Bridge for Dual PowerPC" }, - { "10e4", "8029", "Realtek 8029 Network Card" }, - { "10e8", "1072", "INES GPIB-PCI (AMCC5920 based)" }, - { "10e8", "2011", "Q-Motion Video Capture/Edit board" }, - { "10e8", "4750", "S5930 [Matchmaker]" }, - { "10e8", "5920", "S5920" }, - { "10e8", "8043", "LANai4.x [Myrinet LANai interface chip]" }, - { "10e8", "8062", "S5933_PARASTATION" }, - { "10e8", "807d", "S5933 [Matchmaker]" }, - { "10e8", "8088", "Kongsberg Spacetec Format Synchronizer" }, - { "10e8", "8089", "Kongsberg Spacetec Serial Output Board" }, - { "10e8", "809c", "S5933_HEPC3" }, - { "10e8", "80b9", "Harmonix Hi-Card P8 (4x active ISDN BRI)" }, - { "10e8", "80d7", "PCI-9112" }, - { "10e8", "80d8", "PCI-7200" }, - { "10e8", "80d9", "PCI-9118" }, - { "10e8", "80da", "PCI-9812" }, - { "10e8", "80fc", "APCI1500 Signal processing controller (16 dig. inputs + 16 dig. outputs)" }, - { "10e8", "811a", "PCI-IEEE1355-DS-DE Interface" }, - { "10e8", "814c", "Fastcom ESCC-PCI (Commtech, Inc.)" }, - { "10e8", "8170", "S5933 [Matchmaker] (Chipset Development Tool)" }, - { "10e8", "81e6", "Multimedia video controller" }, - { "10e8", "828d", "APCI3001 Signal processing controller (up to 16 analog inputs)" }, - { "10e8", "8291", "Fastcom 232/8-PCI (Commtech, Inc.)" }, - { "10e8", "82c4", "Fastcom 422/4-PCI (Commtech, Inc.)" }, - { "10e8", "82c5", "Fastcom 422/2-PCI (Commtech, Inc.)" }, - { "10e8", "82c6", "Fastcom IG422/1-PCI (Commtech, Inc.)" }, - { "10e8", "82c7", "Fastcom IG232/2-PCI (Commtech, Inc.)" }, - { "10e8", "82ca", "Fastcom 232/4-PCI (Commtech, Inc.)" }, - { "10e8", "82db", "AJA HDNTV HD SDI Framestore" }, - { "10e8", "82e2", "Fastcom DIO24H-PCI (Commtech, Inc.)" }, - { "10e8", "8406", "PCIcanx/PCIcan CAN interface [Kvaser AB]" }, - { "10e8", "8407", "PCIcan II CAN interface (A1021, PCB-07, PCB-08) [Kvaser AB]" }, - { "10e8", "8851", "S5933 on Innes Corp FM Radio Capture card" }, - { "10e8", "e004", "X-Gene PCIe bridge" }, - { "10ea", "1680", "IGA-1680" }, - { "10ea", "1682", "IGA-1682" }, - { "10ea", "1683", "IGA-1683" }, - { "10ea", "2000", "CyberPro 2000" }, - { "10ea", "2010", "CyberPro 2000A" }, - { "10ea", "5000", "CyberPro 5000" }, - { "10ea", "5050", "CyberPro 5050" }, - { "10ea", "5202", "CyberPro 5202" }, - { "10ea", "5252", "CyberPro5252" }, - { "10eb", "0101", "3GA" }, - { "10eb", "8111", "Twist3 Frame Grabber" }, - { "10ec", "0139", "RTL-8139/8139C/8139C+ Ethernet Controller" }, - { "10ec", "3000", "Killer E3000 2.5GbE Controller" }, - { "10ec", "5208", "RTS5208 PCI Express Card Reader" }, - { "10ec", "5209", "RTS5209 PCI Express Card Reader" }, - { "10ec", "5227", "RTS5227 PCI Express Card Reader" }, - { "10ec", "5229", "RTS5229 PCI Express Card Reader" }, - { "10ec", "522a", "RTS522A PCI Express Card Reader" }, - { "10ec", "5249", "RTS5249 PCI Express Card Reader" }, - { "10ec", "524a", "RTS524A PCI Express Card Reader" }, - { "10ec", "5250", "RTS5250 PCI Express Card Reader" }, - { "10ec", "525a", "RTS525A PCI Express Card Reader" }, - { "10ec", "5260", "RTS5260 PCI Express Card Reader" }, - { "10ec", "5261", "RTS5261 PCI Express Card Reader" }, - { "10ec", "5286", "RTS5286 PCI Express Card Reader" }, - { "10ec", "5287", "RTL8411B PCI Express Card Reader" }, - { "10ec", "5288", "RTS5288 PCI Express Card Reader" }, - { "10ec", "5289", "RTL8411 PCI Express Card Reader" }, - { "10ec", "5762", "RTS5763DL NVMe SSD Controller" }, - { "10ec", "8029", "RTL-8029(AS)" }, - { "10ec", "8125", "RTL8125 2.5GbE Controller" }, - { "10ec", "8129", "RTL-8129" }, - { "10ec", "8136", "RTL810xE PCI Express Fast Ethernet controller" }, - { "10ec", "8137", "RTL8104E PCIe Fast Ethernet Controller" }, - { "10ec", "8138", "RT8139 (B/C) Cardbus Fast Ethernet Adapter" }, - { "10ec", "8139", "RTL-8100/8101L/8139 PCI Fast Ethernet Adapter" }, - { "10ec", "8161", "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller" }, - { "10ec", "8167", "RTL-8110SC/8169SC Gigabit Ethernet" }, - { "10ec", "8168", "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller" }, - { "10ec", "8169", "RTL8169 PCI Gigabit Ethernet Controller" }, - { "10ec", "816a", "RTL8111xP UART #1" }, - { "10ec", "816b", "RTL8111xP UART #2" }, - { "10ec", "816c", "RTL8111xP IPMI interface" }, - { "10ec", "816d", "RTL811x EHCI host controller" }, - { "10ec", "816e", "Realtek RealManage BMC" }, - { "10ec", "8171", "RTL8191SEvA Wireless LAN Controller" }, - { "10ec", "8172", "RTL8191SEvB Wireless LAN Controller" }, - { "10ec", "8173", "RTL8192SE Wireless LAN Controller" }, - { "10ec", "8174", "RTL8192SE Wireless LAN Controller" }, - { "10ec", "8176", "RTL8188CE 802.11b/g/n WiFi Adapter" }, - { "10ec", "8177", "RTL8191CE PCIe Wireless Network Adapter" }, - { "10ec", "8178", "RTL8192CE PCIe Wireless Network Adapter" }, - { "10ec", "8179", "RTL8188EE Wireless Network Adapter" }, - { "10ec", "8180", "RTL8180L 802.11b MAC" }, - { "10ec", "8185", "RTL-8185 IEEE 802.11a/b/g Wireless LAN Controller" }, - { "10ec", "818b", "RTL8192EE PCIe Wireless Network Adapter" }, - { "10ec", "8190", "RTL8190 802.11n PCI Wireless Network Adapter" }, - { "10ec", "8191", "RTL8192CE PCIe Wireless Network Adapter" }, - { "10ec", "8192", "RTL8192E/RTL8192SE Wireless LAN Controller" }, - { "10ec", "8193", "RTL8192DE Wireless LAN Controller" }, - { "10ec", "8196", "RTL8196 Integrated PCI-e Bridge" }, - { "10ec", "8197", "SmartLAN56 56K Modem" }, - { "10ec", "8199", "RTL8187SE Wireless LAN Controller" }, - { "10ec", "8723", "RTL8723AE PCIe Wireless Network Adapter" }, - { "10ec", "8812", "RTL8812AE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "8813", "RTL8813AE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "8821", "RTL8821AE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "8852", "RTL8852AE 802.11ax PCIe Wireless Network Adapter" }, - { "10ec", "b723", "RTL8723BE PCIe Wireless Network Adapter" }, - { "10ec", "b822", "RTL8822BE 802.11a/b/g/n/ac WiFi adapter" }, - { "10ec", "c821", "RTL8821CE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "c822", "RTL8822CE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "c82f", "RTL8822CE 802.11ac PCIe Wireless Network Adapter" }, - { "10ec", "d723", "RTL8723DE 802.11b/g/n PCIe Adapter" }, - { "10ed", "7310", "V7310" }, - { "10ee", "0001", "EUROCOM for PCI (ECOMP)" }, - { "10ee", "0002", "Octal E1/T1 for PCI ETP Card" }, - { "10ee", "0007", "Default PCIe endpoint ID" }, - { "10ee", "0205", "Wildcard TE205P" }, - { "10ee", "0210", "Wildcard TE210P" }, - { "10ee", "0300", "Spartan 3 Designs (Xilinx IP)" }, - { "10ee", "0314", "Wildcard TE405P/TE410P (1st Gen)" }, - { "10ee", "0405", "Wildcard TE405P (2nd Gen)" }, - { "10ee", "0410", "Wildcard TE410P (2nd Gen)" }, - { "10ee", "0600", "Xilinx 6 Designs (Xilinx IP)" }, - { "10ee", "3fc0", "RME Digi96" }, - { "10ee", "3fc1", "RME Digi96/8" }, - { "10ee", "3fc2", "RME Digi96/8 Pro" }, - { "10ee", "3fc3", "RME Digi96/8 Pad" }, - { "10ee", "3fc4", "RME Digi9652 (Hammerfall)" }, - { "10ee", "3fc5", "RME Hammerfall DSP" }, - { "10ee", "3fc6", "RME Hammerfall DSP MADI" }, - { "10ee", "5005", "Alveo U250" }, - { "10ee", "7038", "FPGA Card XC7VX690T" }, - { "10ee", "8019", "Memory controller" }, - { "10ee", "8380", "Ellips ProfiXpress Profibus Master" }, - { "10ee", "8381", "Ellips Santos Frame Grabber" }, - { "10ee", "d154", "Copley Controls CAN card (PCI-CAN-02)" }, - { "10ee", "ebf0", "SED Systems Modulator/Demodulator" }, - { "10ee", "ebf1", "SED Systems Audio Interface Card" }, - { "10ee", "ebf2", "SED Systems Common PCI Interface" }, - { "10ee", "ebf3", "SED Systems PCIe-AXI Bridge" }, - { "10ef", "8154", "M815x Token Ring Adapter" }, - { "10f1", "2865", "Tyan Thunder K8E S2865" }, - { "10f1", "5300", "Tyan S5380 Mainboard" }, - { "10f5", "a001", "NDR4000 [NR4600 Bridge]" }, - { "10fa", "000c", "TARGA 1000" }, - { "10fb", "186f", "TH 6255" }, - { "10fc", "0003", "Cardbus IDE Controller" }, - { "10fc", "0005", "Cardbus SCSI CBSC II" }, - { "1101", "0002", "INI-920 Ultra SCSI Adapter" }, - { "1101", "1060", "INI-A100U2W" }, - { "1101", "1622", "INI-1623 PCI SATA-II Controller" }, - { "1101", "9100", "INI-9100/9100W" }, - { "1101", "9400", "INI-940 Fast Wide SCSI Adapter" }, - { "1101", "9401", "INI-935 Fast Wide SCSI Adapter" }, - { "1101", "9500", "INI-950 SCSI Adapter" }, - { "1101", "9502", "INI-950P Ultra Wide SCSI Adapter" }, - { "1102", "0002", "EMU10k1 [Sound Blaster Live! Series]" }, - { "1102", "0003", "SB AWE64(D)" }, - { "1102", "0004", "EMU10k2/CA0100/CA0102/CA10200 [Sound Blaster Audigy Series]" }, - { "1102", "0005", "EMU20k1 [Sound Blaster X-Fi Series]" }, - { "1102", "0006", "EMU10k1X / CA0103 [SB Live! OEM / SB 5.1 / Ectiva 5.1]" }, - { "1102", "0007", "CA0106/CA0111 [SB Live!/Audigy/X-Fi Series]" }, - { "1102", "0008", "CA0108/CA10300 [Sound Blaster Audigy Series]" }, - { "1102", "0009", "CA0110 [Sound Blaster X-Fi Xtreme Audio]" }, - { "1102", "000b", "EMU20k2 [Sound Blaster X-Fi Titanium Series]" }, - { "1102", "0012", "Sound Core3D [Sound Blaster Recon3D / Z-Series]" }, - { "1102", "4001", "SB Audigy FireWire Port" }, - { "1102", "7002", "SB Live! Game Port" }, - { "1102", "7003", "SB Audigy Game Port" }, - { "1102", "7004", "[SB Live! Value] Input device controller" }, - { "1102", "7005", "SB Audigy LS Game Port" }, - { "1102", "7006", "[SB X-Fi Xtreme Audio] CA0110-IBG PCIe to PCI Bridge" }, - { "1102", "8938", "Ectiva EV1938" }, - { "1103", "0003", "HPT343/345/346/363" }, - { "1103", "0004", "HPT366/368/370/370A/372/372N" }, - { "1103", "0005", "HPT372A/372N" }, - { "1103", "0006", "HPT302/302N" }, - { "1103", "0007", "HPT371/371N" }, - { "1103", "0008", "HPT374" }, - { "1103", "0009", "HPT372N" }, - { "1103", "0620", "RocketRAID 620 2 Port SATA-III Controller" }, - { "1103", "0622", "RocketRAID 622 2 Port SATA-III Controller" }, - { "1103", "0640", "RocketRAID 640 4 Port SATA-III Controller" }, - { "1103", "0641", "RocketRAID 640L 4 Port SATA-III Controller" }, - { "1103", "0642", "RocketRAID 642L SATA-III Controller (2 eSATA ports + 2 internal SATA ports)" }, - { "1103", "0644", "RocketRAID 644 4 Port SATA-III Controller (eSATA)" }, - { "1103", "0645", "RocketRAID 644L 4 Port SATA-III Controller (eSATA)" }, - { "1103", "0646", "RocketRAID 644LS SATA-III Controller (4 eSATA devices connected by 1 SAS cable)" }, - { "1103", "1720", "RocketRAID 1720 (2x SATA II RAID Controller)" }, - { "1103", "1740", "RocketRAID 1740" }, - { "1103", "1742", "RocketRAID 1742" }, - { "1103", "2210", "RocketRAID 2210 SATA-II Controller" }, - { "1103", "2300", "RocketRAID 230x 4 Port SATA-II Controller" }, - { "1103", "2310", "RocketRAID 2310 4 Port SATA-II Controller" }, - { "1103", "2320", "RocketRAID 2320 SATA-II Controller" }, - { "1103", "2322", "RocketRAID 2322 SATA-II Controller" }, - { "1103", "2340", "RocketRAID 2340 16 Port SATA-II Controller" }, - { "1103", "2640", "RocketRAID 2640 SAS/SATA Controller" }, - { "1103", "2722", "RocketRAID 2722" }, - { "1103", "2740", "RocketRAID 2740" }, - { "1103", "2744", "RocketRaid 2744" }, - { "1103", "2782", "RocketRAID 2782" }, - { "1103", "3120", "RocketRAID 3120" }, - { "1103", "3220", "RocketRAID 3220" }, - { "1103", "3320", "RocketRAID 3320" }, - { "1103", "4310", "RocketRaid 4310" }, - { "1103", "7505", "SSD7505 PCIe Gen4 x16 4-Port M.2 NVMe RAID Controller" }, - { "1105", "1105", "REALmagic Xcard MPEG 1/2/3/4 DVD Decoder" }, - { "1105", "8300", "REALmagic Hollywood Plus DVD Decoder" }, - { "1105", "8400", "EM840x REALmagic DVD/MPEG-2 Audio/Video Decoder" }, - { "1105", "8401", "EM8401 REALmagic DVD/MPEG-2 A/V Decoder" }, - { "1105", "8470", "EM8470 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "8471", "EM8471 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "8475", "EM8475 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "8476", "EM8476 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "8485", "EM8485 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "8486", "EM8486 REALmagic DVD/MPEG-4 A/V Decoder" }, - { "1105", "c621", "EM8621L Digital Media Processor" }, - { "1105", "c622", "EM8622L MPEG-4.10 (H.264) and SMPTE 421M (VC-1) A/V Decoder" }, - { "1106", "0102", "Embedded VIA Ethernet Controller" }, - { "1106", "0130", "VT6305 1394.A Controller" }, - { "1106", "0198", "P4X600 Host Bridge" }, - { "1106", "0204", "K8M800 Host Bridge" }, - { "1106", "0208", "PT890 Host Bridge" }, - { "1106", "0238", "K8T890 Host Bridge" }, - { "1106", "0258", "PT880 Host Bridge" }, - { "1106", "0259", "CN333/CN400/PM880 Host Bridge" }, - { "1106", "0269", "KT880 Host Bridge" }, - { "1106", "0282", "K8T800Pro Host Bridge" }, - { "1106", "0290", "K8M890 Host Bridge" }, - { "1106", "0293", "PM896 Host Bridge" }, - { "1106", "0296", "P4M800 Host Bridge" }, - { "1106", "0305", "VT8363/8365 [KT133/KM133]" }, - { "1106", "0308", "PT880 Ultra/PT894 Host Bridge" }, - { "1106", "0314", "CN700/VN800/P4M800CE/Pro Host Bridge" }, - { "1106", "0324", "CX700/VX700 Host Bridge" }, - { "1106", "0327", "P4M890 Host Bridge" }, - { "1106", "0336", "K8M890CE Host Bridge" }, - { "1106", "0340", "PT900 Host Bridge" }, - { "1106", "0351", "K8T890CF Host Bridge" }, - { "1106", "0353", "VX800/820-Series Chipset Host-Bridge Controller" }, - { "1106", "0364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "0391", "VT8371 [KX133]" }, - { "1106", "0409", "VX855/VX875 Host Bridge: Host Control" }, - { "1106", "0410", "VX900 Series Host Bridge: Host Control" }, - { "1106", "0415", "VT6415 PATA IDE Host Controller" }, - { "1106", "0501", "VT8501 [Apollo MVP4]" }, - { "1106", "0505", "VT82C505" }, - { "1106", "0561", "VT82C576MV" }, - { "1106", "0571", "VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE" }, - { "1106", "0576", "VT82C576 3V [Apollo Master]" }, - { "1106", "0581", "CX700/VX700/VX800/820-Series Serial ATA RAID-Controller" }, - { "1106", "0585", "VT82C585VP [Apollo VP1/VPX]" }, - { "1106", "0586", "VT82C586/A/B PCI-to-ISA [Apollo VP]" }, - { "1106", "0591", "VT8237A SATA 2-Port Controller" }, - { "1106", "0595", "VT82C595 [Apollo VP2]" }, - { "1106", "0596", "VT82C596 ISA [Mobile South]" }, - { "1106", "0597", "VT82C597 [Apollo VP3]" }, - { "1106", "0598", "VT82C598 [Apollo MVP3]" }, - { "1106", "0601", "VT8601 [Apollo ProMedia]" }, - { "1106", "0605", "VT8605 [ProSavage PM133]" }, - { "1106", "0680", "VT82C680 [Apollo P6]" }, - { "1106", "0686", "VT82C686 [Apollo Super South]" }, - { "1106", "0691", "VT82C693A/694x [Apollo PRO133x]" }, - { "1106", "0693", "VT82C693 [Apollo Pro Plus]" }, - { "1106", "0698", "VT82C693A [Apollo Pro133 AGP]" }, - { "1106", "0709", "VX11 Standard Host Bridge" }, - { "1106", "070a", "VX11 PCI Express Root Port" }, - { "1106", "070b", "VX11 PCI Express Root Port" }, - { "1106", "070c", "VX11 PCI Express Root Port" }, - { "1106", "070d", "VX11 PCI Express Root Port" }, - { "1106", "070e", "VX11 PCI Express Root Port" }, - { "1106", "0926", "VT82C926 [Amazon]" }, - { "1106", "1000", "VT82C570MV" }, - { "1106", "1106", "VT82C570MV" }, - { "1106", "1122", "VX800/VX820 Chrome 9 HC3 Integrated Graphics" }, - { "1106", "1204", "K8M800 Host Bridge" }, - { "1106", "1208", "PT890 Host Bridge" }, - { "1106", "1238", "K8T890 Host Bridge" }, - { "1106", "1258", "PT880 Host Bridge" }, - { "1106", "1259", "CN333/CN400/PM880 Host Bridge" }, - { "1106", "1269", "KT880 Host Bridge" }, - { "1106", "1282", "K8T800Pro Host Bridge" }, - { "1106", "1290", "K8M890 Host Bridge" }, - { "1106", "1293", "PM896 Host Bridge" }, - { "1106", "1296", "P4M800 Host Bridge" }, - { "1106", "1308", "PT894 Host Bridge" }, - { "1106", "1314", "CN700/VN800/P4M800CE/Pro Host Bridge" }, - { "1106", "1324", "CX700/VX700-Series Error Reporting" }, - { "1106", "1327", "P4M890 Host Bridge" }, - { "1106", "1336", "K8M890CE Host Bridge" }, - { "1106", "1340", "PT900 Host Bridge" }, - { "1106", "1351", "VT3351 Host Bridge" }, - { "1106", "1353", "VX800/VX820 Error Reporting" }, - { "1106", "1364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "1409", "VX855/VX875 Error Reporting" }, - { "1106", "1410", "VX900 Series Error Reporting" }, - { "1106", "1571", "VT82C576M/VT82C586" }, - { "1106", "1595", "VT82C595/97 [Apollo VP2/97]" }, - { "1106", "1732", "VT1732 [Envy24 II] PCI Multi-Channel Audio Controller" }, - { "1106", "2106", "VIA Rhine Family Fast Ethernet Adapter (VT6105)" }, - { "1106", "2204", "K8M800 Host Bridge" }, - { "1106", "2208", "PT890 Host Bridge" }, - { "1106", "2238", "K8T890 Host Bridge" }, - { "1106", "2258", "PT880 Host Bridge" }, - { "1106", "2259", "CN333/CN400/PM880 CPU Host Bridge" }, - { "1106", "2269", "KT880 Host Bridge" }, - { "1106", "2282", "K8T800Pro Host Bridge" }, - { "1106", "2290", "K8M890 Host Bridge" }, - { "1106", "2293", "PM896 Host Bridge" }, - { "1106", "2296", "P4M800 Host Bridge" }, - { "1106", "2308", "PT894 Host Bridge" }, - { "1106", "2314", "CN700/VN800/P4M800CE/Pro Host Bridge" }, - { "1106", "2324", "CX700/VX700-Series Host Interface Control" }, - { "1106", "2327", "P4M890 Host Bridge" }, - { "1106", "2336", "K8M890CE Host Bridge" }, - { "1106", "2340", "PT900 Host Bridge" }, - { "1106", "2351", "VT3351 Host Bridge" }, - { "1106", "2353", "VX800/VX820 Host Bus Control" }, - { "1106", "2364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "2409", "VX855/VX875 Host Bus Control" }, - { "1106", "2410", "VX900 Series CPU Bus Controller" }, - { "1106", "287a", "VT8251 PCI to PCI Bridge" }, - { "1106", "287b", "VT8251 Host Bridge" }, - { "1106", "287c", "VT8251 PCIE Root Port" }, - { "1106", "287d", "VT8251 PCIE Root Port" }, - { "1106", "287e", "VT8237/8251 Ultra VLINK Controller" }, - { "1106", "3022", "CLE266" }, - { "1106", "3038", "VT82xx/62xx/VX700/8x0/900 UHCI USB 1.1 Controller" }, - { "1106", "3040", "VT82C586B ACPI" }, - { "1106", "3043", "VT86C100A [Rhine]" }, - { "1106", "3044", "VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller" }, - { "1106", "3050", "VT82C596 Power Management" }, - { "1106", "3051", "VT82C596 Power Management" }, - { "1106", "3053", "VT6105M [Rhine-III]" }, - { "1106", "3057", "VT82C686 [Apollo Super ACPI]" }, - { "1106", "3058", "VT82C686 AC97 Audio Controller" }, - { "1106", "3059", "VT8233/A/8235/8237 AC97 Audio Controller" }, - { "1106", "3065", "VT6102/VT6103 [Rhine-II]" }, - { "1106", "3068", "AC'97 Modem Controller" }, - { "1106", "3074", "VT8233 PCI to ISA Bridge" }, - { "1106", "3091", "VT8633 [Apollo Pro266]" }, - { "1106", "3099", "VT8366/A/7 [Apollo KT266/A/333]" }, - { "1106", "3101", "VT8653 Host Bridge" }, - { "1106", "3102", "VT8662 Host Bridge" }, - { "1106", "3103", "VT8615 Host Bridge" }, - { "1106", "3104", "USB 2.0 EHCI-Compliant Host-Controller" }, - { "1106", "3106", "VT6105/VT6106S [Rhine-III]" }, - { "1106", "3108", "K8M800/K8N800/K8N800A [S3 UniChrome Pro]" }, - { "1106", "3109", "VT8233C PCI to ISA Bridge" }, - { "1106", "3112", "VT8361 [KLE133] Host Bridge" }, - { "1106", "3113", "VPX/VPX2 PCI to PCI Bridge Controller" }, - { "1106", "3116", "VT8375 [KM266/KL266] Host Bridge" }, - { "1106", "3118", "CN400/PM800/PM880/PN800/PN880 [S3 UniChrome Pro]" }, - { "1106", "3119", "VT6120/VT6121/VT6122 Gigabit Ethernet Adapter" }, - { "1106", "3122", "VT8623 [Apollo CLE266] integrated CastleRock graphics" }, - { "1106", "3123", "VT8623 [Apollo CLE266]" }, - { "1106", "3128", "VT8753 [P4X266 AGP]" }, - { "1106", "3133", "VT3133 Host Bridge" }, - { "1106", "3142", "VT6651 WiFi Adapter, 802.11b" }, - { "1106", "3147", "VT8233A ISA Bridge" }, - { "1106", "3148", "P4M266 Host Bridge" }, - { "1106", "3149", "VIA VT6420 SATA RAID Controller" }, - { "1106", "3156", "P/KN266 Host Bridge" }, - { "1106", "3157", "CX700/VX700 [S3 UniChrome Pro]" }, - { "1106", "3164", "VT6410 ATA133 RAID controller" }, - { "1106", "3168", "P4X333/P4X400/PT800 AGP Bridge" }, - { "1106", "3177", "VT8235 ISA Bridge" }, - { "1106", "3178", "ProSavageDDR P4N333 Host Bridge" }, - { "1106", "3188", "VT8385 [K8T800 AGP] Host Bridge" }, - { "1106", "3189", "VT8377 [KT400/KT600 AGP] Host Bridge" }, - { "1106", "31b0", "VX11 Standard Host Bridge" }, - { "1106", "31b1", "VX11 Standard Host Bridge" }, - { "1106", "31b2", "VX11 DRAM Controller" }, - { "1106", "31b3", "VX11 Power Management Controller" }, - { "1106", "31b4", "VX11 I/O APIC" }, - { "1106", "31b5", "VX11 Scratch Device" }, - { "1106", "31b7", "VX11 Standard Host Bridge" }, - { "1106", "31b8", "VX11 PCI to PCI Bridge" }, - { "1106", "3204", "K8M800 Host Bridge" }, - { "1106", "3205", "VT8378 [KM400/A] Chipset Host Bridge" }, - { "1106", "3208", "PT890 Host Bridge" }, - { "1106", "3213", "VPX/VPX2 PCI to PCI Bridge Controller" }, - { "1106", "3218", "K8T800M Host Bridge" }, - { "1106", "3227", "VT8237 ISA bridge [KT600/K8T800/K8T890 South]" }, - { "1106", "3230", "K8M890CE/K8N890CE [Chrome 9]" }, - { "1106", "3238", "K8T890 Host Bridge" }, - { "1106", "3249", "VT6421 IDE/SATA Controller" }, - { "1106", "324a", "CX700/VX700 PCI to PCI Bridge" }, - { "1106", "324b", "CX700/VX700 Host Bridge" }, - { "1106", "324e", "CX700/VX700 Internal Module Bus" }, - { "1106", "3253", "VT6655 WiFi Adapter, 802.11a/b/g" }, - { "1106", "3258", "PT880 Host Bridge" }, - { "1106", "3259", "CN333/CN400/PM880 Host Bridge" }, - { "1106", "3260", "VIA Chrome9 HC IGP" }, - { "1106", "3269", "KT880 Host Bridge" }, - { "1106", "3282", "K8T800Pro Host Bridge" }, - { "1106", "3287", "VT8251 PCI to ISA Bridge" }, - { "1106", "3288", "VX900/VT8xxx High Definition Audio Controller" }, - { "1106", "3290", "K8M890 Host Bridge" }, - { "1106", "3296", "P4M800 Host Bridge" }, - { "1106", "3324", "CX700/VX700-Series DRAM Bus Control" }, - { "1106", "3327", "P4M890 Host Bridge" }, - { "1106", "3336", "K8M890CE Host Bridge" }, - { "1106", "3337", "VT8237A PCI to ISA Bridge" }, - { "1106", "3340", "PT900 Host Bridge" }, - { "1106", "3343", "P4M890 [S3 UniChrome Pro]" }, - { "1106", "3344", "CN700/P4M800 Pro/P4M800 CE/VN800 Graphics [S3 UniChrome Pro]" }, - { "1106", "3349", "VT8251 AHCI/SATA 4-Port Controller" }, - { "1106", "3351", "VT3351 Host Bridge" }, - { "1106", "3353", "VX800/820 PCI to PCI Bridge" }, - { "1106", "3364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "3365", "VT630x IEEE 1394 Host Controller [Fire II/M]" }, - { "1106", "3371", "CN896/VN896/P4M900 [Chrome 9 HC]" }, - { "1106", "3372", "VT8237S PCI to ISA Bridge" }, - { "1106", "337a", "VT8237A PCI to PCI Bridge" }, - { "1106", "337b", "VT8237A Host Bridge" }, - { "1106", "3403", "VT6315 Series Firewire Controller" }, - { "1106", "3409", "VX855/VX875 DRAM Bus Control" }, - { "1106", "3410", "VX900 Series DRAM Bus Control" }, - { "1106", "3432", "VL800/801 xHCI USB 3.0 Controller" }, - { "1106", "3456", "VX11 Standard Host Bridge" }, - { "1106", "345b", "VX11 Miscellaneous Bus" }, - { "1106", "3483", "VL805/806 xHCI USB 3.0 Controller" }, - { "1106", "3a01", "VX11 Graphics [Chrome 645/640]" }, - { "1106", "4149", "VIA VT6420 (ATA133) Controller" }, - { "1106", "4204", "K8M800 Host Bridge" }, - { "1106", "4208", "PT890 Host Bridge" }, - { "1106", "4238", "K8T890 Host Bridge" }, - { "1106", "4258", "PT880 Host Bridge" }, - { "1106", "4259", "CN333/CN400/PM880 Host Bridge" }, - { "1106", "4269", "KT880 Host Bridge" }, - { "1106", "4282", "K8T800Pro Host Bridge" }, - { "1106", "4290", "K8M890 Host Bridge" }, - { "1106", "4293", "PM896 Host Bridge" }, - { "1106", "4296", "P4M800 Host Bridge" }, - { "1106", "4308", "PT894 Host Bridge" }, - { "1106", "4314", "CN700/VN800/P4M800CE/Pro Host Bridge" }, - { "1106", "4324", "CX700/VX700-Series Power Management and Testing Control" }, - { "1106", "4327", "P4M890 Host Bridge" }, - { "1106", "4336", "K8M890CE Host Bridge" }, - { "1106", "4340", "PT900 Host Bridge" }, - { "1106", "4351", "VT3351 Host Bridge" }, - { "1106", "4353", "VX800/VX820 Power Management Control" }, - { "1106", "4364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "4409", "VX855/VX875 Power Management Control" }, - { "1106", "4410", "VX900 Series Power Management and Chip Testing Control" }, - { "1106", "5030", "VT82C596 ACPI [Apollo PRO]" }, - { "1106", "5122", "VX855/VX875 Chrome 9 HCM Integrated Graphics" }, - { "1106", "5208", "PT890 I/O APIC Interrupt Controller" }, - { "1106", "5238", "K8T890 I/O APIC Interrupt Controller" }, - { "1106", "5287", "VT8251 Serial ATA Controller" }, - { "1106", "5290", "K8M890 I/O APIC Interrupt Controller" }, - { "1106", "5308", "PT894 I/O APIC Interrupt Controller" }, - { "1106", "5324", "CX700M2/VX700/VX800/820-Series Serial ATA & EIDE-Controller" }, - { "1106", "5327", "P4M890 I/O APIC Interrupt Controller" }, - { "1106", "5336", "K8M890CE I/O APIC Interrupt Controller" }, - { "1106", "5340", "PT900 I/O APIC Interrupt Controller" }, - { "1106", "5351", "VT3351 I/O APIC Interrupt Controller" }, - { "1106", "5353", "VX800/VX820 APIC and Central Traffic Control" }, - { "1106", "5364", "CN896/VN896/P4M900 I/O APIC Interrupt Controller" }, - { "1106", "5372", "VT8237/8251 Serial ATA Controller" }, - { "1106", "5409", "VX855/VX875 APIC and Central Traffic Control" }, - { "1106", "5410", "VX900 Series APIC and Central Traffic Control" }, - { "1106", "6100", "VT85C100A [Rhine II]" }, - { "1106", "6287", "SATA RAID Controller" }, - { "1106", "6290", "K8M890CE Host Bridge" }, - { "1106", "6327", "P4M890 Security Device" }, - { "1106", "6353", "VX800/VX820 Scratch Registers" }, - { "1106", "6364", "CN896/VN896/P4M900 Security Device" }, - { "1106", "6409", "VX855/VX875 Scratch Registers" }, - { "1106", "6410", "VX900 Series Scratch Registers" }, - { "1106", "7122", "VX900 Graphics [Chrome9 HD]" }, - { "1106", "7204", "K8M800 Host Bridge" }, - { "1106", "7205", "KM400/KN400/P4M800 [S3 UniChrome]" }, - { "1106", "7208", "PT890 Host Bridge" }, - { "1106", "7238", "K8T890 Host Bridge" }, - { "1106", "7258", "PT880 Host Bridge" }, - { "1106", "7259", "CN333/CN400/PM880 Host Bridge" }, - { "1106", "7269", "KT880 Host Bridge" }, - { "1106", "7282", "K8T800Pro Host Bridge" }, - { "1106", "7290", "K8M890 Host Bridge" }, - { "1106", "7293", "PM896 Host Bridge" }, - { "1106", "7296", "P4M800 Host Bridge" }, - { "1106", "7308", "PT894 Host Bridge" }, - { "1106", "7314", "CN700/VN800/P4M800CE/Pro Host Bridge" }, - { "1106", "7324", "CX700/VX700-Series North-South Module Interface Control" }, - { "1106", "7327", "P4M890 Host Bridge" }, - { "1106", "7336", "K8M890CE Host Bridge" }, - { "1106", "7340", "PT900 Host Bridge" }, - { "1106", "7351", "VT3351 Host Bridge" }, - { "1106", "7353", "VX800/VX820 North-South Module Interface Control" }, - { "1106", "7364", "CN896/VN896/P4M900 Host Bridge" }, - { "1106", "7409", "VX855/VX875 North-South Module Interface Control" }, - { "1106", "7410", "VX900 Series North-South Module Interface Control" }, - { "1106", "8231", "VT8231 [PCI-to-ISA Bridge]" }, - { "1106", "8235", "VT8235 ACPI" }, - { "1106", "8305", "VT8363/8365 [KT133/KM133 AGP]" }, - { "1106", "8324", "CX700/VX700-Series Bus Control and Power Management" }, - { "1106", "8353", "VX800/VX820 Bus Control and Power Management" }, - { "1106", "8391", "VT8371 [KX133 AGP]" }, - { "1106", "8400", "MVP4" }, - { "1106", "8409", "VX855/VX875 Bus Control and Power Management" }, - { "1106", "8410", "VX900 Series Bus Control and Power Management" }, - { "1106", "8500", "KLE133/PLE133/PLE133T" }, - { "1106", "8501", "VT8501 [Apollo MVP4 AGP]" }, - { "1106", "8596", "VT82C596 [Apollo PRO AGP]" }, - { "1106", "8597", "VT82C597 [Apollo VP3 AGP]" }, - { "1106", "8598", "VT82C598/694x [Apollo MVP3/Pro133x AGP]" }, - { "1106", "8601", "VT8601 [Apollo ProMedia AGP]" }, - { "1106", "8605", "VT8605 [PM133 AGP]" }, - { "1106", "8691", "VT82C691 [Apollo Pro]" }, - { "1106", "8693", "VT82C693 [Apollo Pro Plus] PCI Bridge" }, - { "1106", "8a25", "PL133/PL133T [S3 ProSavage]" }, - { "1106", "8a26", "KL133/KL133A/KM133/KM133A [S3 ProSavage]" }, - { "1106", "8d01", "PN133/PN133T [S3 Twister]" }, - { "1106", "8d04", "KM266/P4M266/P4M266A/P4N266 [S3 ProSavageDDR]" }, - { "1106", "9001", "VX900 Series Serial-ATA Controller" }, - { "1106", "9082", "Standard AHCI 1.0 SATA Controller" }, - { "1106", "9140", "HDMI Audio Device" }, - { "1106", "9201", "USB3.0 Controller" }, - { "1106", "9380", "Ncore Coprocessor" }, - { "1106", "9530", "VX800/820/900 Series Secure Digital Memory Card Controller" }, - { "1106", "95d0", "VX800/820/900 Series SDIO Host Controller" }, - { "1106", "a208", "PT890 PCI to PCI Bridge Controller" }, - { "1106", "a238", "K8T890 PCI to PCI Bridge Controller" }, - { "1106", "a327", "P4M890 PCI to PCI Bridge Controller" }, - { "1106", "a353", "VX8xx/900 Series South-North Module Interface Control" }, - { "1106", "a364", "CN896/VN896/P4M900 PCI to PCI Bridge Controller" }, - { "1106", "a409", "VX855/VX875/VX900 Series USB Device Controller" }, - { "1106", "a410", "VX900 Series PCI Express Root Port 0" }, - { "1106", "b091", "VT8633 [Apollo Pro266 AGP]" }, - { "1106", "b099", "VT8366/A/7 [Apollo KT266/A/333 AGP]" }, - { "1106", "b101", "VT8653 AGP Bridge" }, - { "1106", "b102", "VT8362 AGP Bridge" }, - { "1106", "b103", "VT8615 AGP Bridge" }, - { "1106", "b112", "VT8361 [KLE133] AGP Bridge" }, - { "1106", "b113", "VPX/VPX2 I/O APIC Interrupt Controller" }, - { "1106", "b115", "VT8363/8365 [KT133/KM133] PCI Bridge" }, - { "1106", "b168", "VT8235 PCI Bridge" }, - { "1106", "b188", "VT8237/8251 PCI bridge [K8M890/K8T800/K8T890 South]" }, - { "1106", "b198", "VT8237/CX700/VX700-Series PCI to PCI Bridge" }, - { "1106", "b213", "VPX/VPX2 I/O APIC Interrupt Controller" }, - { "1106", "b353", "VX855/VX875/VX900 PCI to PCI Bridge" }, - { "1106", "b410", "VX900 Series PCI Express Root Port 1" }, - { "1106", "b999", "[K8T890 North / VT8237 South] PCI Bridge" }, - { "1106", "c208", "PT890 PCI to PCI Bridge Controller" }, - { "1106", "c238", "K8T890 PCI to PCI Bridge Controller" }, - { "1106", "c327", "P4M890 PCI to PCI Bridge Controller" }, - { "1106", "c340", "PT900 PCI to PCI Bridge Controller" }, - { "1106", "c353", "VX800/820-Series PCI-Express Root (PCI-to-PCI Virtual Bridge)" }, - { "1106", "c364", "CN896/VN896/P4M900 PCI to PCI Bridge Controller" }, - { "1106", "c409", "VX855/VX875 EIDE Controller" }, - { "1106", "c410", "VX900 Series PCI Express Root Port 2" }, - { "1106", "d104", "VT8237R USB UDCI Controller" }, - { "1106", "d208", "PT890 PCI to PCI Bridge Controller" }, - { "1106", "d213", "VPX/VPX2 PCI to PCI Bridge Controller" }, - { "1106", "d238", "K8T890 PCI to PCI Bridge Controller" }, - { "1106", "d340", "PT900 PCI to PCI Bridge Controller" }, - { "1106", "d410", "VX900 Series PCI Express Root Port 3" }, - { "1106", "e208", "PT890 PCI to PCI Bridge Controller" }, - { "1106", "e238", "K8T890 PCI to PCI Bridge Controller" }, - { "1106", "e340", "PT900 PCI to PCI Bridge Controller" }, - { "1106", "e353", "VX800/820-Series PCI-Express Root Port 0" }, - { "1106", "e410", "VX900 Series PCI Express Physical Layer Electrical Sub-block" }, - { "1106", "f208", "PT890 PCI to PCI Bridge Controller" }, - { "1106", "f238", "K8T890 PCI to PCI Bridge Controller" }, - { "1106", "f340", "PT900 PCI to PCI Bridge Controller" }, - { "1106", "f353", "VX800/820-Series PCI-Express Root Port 1" }, - { "1106", "f410", "VX900 Series PCI UART Port 0-3" }, - { "1107", "0576", "VIA VT82C570MV [Apollo] (Wrong vendor ID!)" }, - { "1108", "0100", "p1690plus_AA" }, - { "1108", "0101", "p1690plus_AB" }, - { "1108", "0105", "P1690Plus" }, - { "1108", "0108", "P1690Plus" }, - { "1108", "0138", "P1690Plus" }, - { "1108", "0139", "P1690Plus" }, - { "1108", "013c", "P1690Plus" }, - { "1108", "013d", "P1690Plus" }, - { "1109", "1400", "EM110TX [EX110TX]" }, - { "110a", "0002", "Pirahna 2-port" }, - { "110a", "0005", "Tulip controller, power management, switch extender" }, - { "110a", "0006", "FSC PINC (I/O-APIC)" }, - { "110a", "0015", "FSC Multiprocessor Interrupt Controller" }, - { "110a", "001d", "FSC Copernicus Management Controller" }, - { "110a", "007b", "FSC Remote Service Controller, mailbox device" }, - { "110a", "007c", "FSC Remote Service Controller, shared memory device" }, - { "110a", "007d", "FSC Remote Service Controller, SMIC device" }, - { "110a", "2101", "HST SAPHIR V Primary PCI (ISDN/PMx)" }, - { "110a", "2102", "DSCC4 PEB/PEF 20534 DMA Supported Serial Communication Controller with 4 Channels" }, - { "110a", "2104", "Eicon Diva 2.02 compatible passive ISDN card" }, - { "110a", "3141", "SIMATIC NET CP 5611 / 5621" }, - { "110a", "3142", "SIMATIC NET CP 5613 / 5614" }, - { "110a", "3143", "SIMATIC NET CP 1613" }, - { "110a", "4021", "SIMATIC NET CP 5512 (Profibus and MPI Cardbus Adapter)" }, - { "110a", "4029", "SIMATIC NET CP 5613 A2" }, - { "110a", "4035", "SIMATIC NET CP 1613 A2" }, - { "110a", "4036", "SIMATIC NET CP 1616" }, - { "110a", "4038", "SIMATIC NET CP 1604" }, - { "110a", "4069", "SIMATIC NET CP 5623" }, - { "110a", "407c", "SIMATIC NET CP 5612" }, - { "110a", "407d", "SIMATIC NET CP 5613 A3" }, - { "110a", "407e", "SIMATIC NET CP 5622" }, - { "110a", "4083", "SIMATIC NET CP 5614 A3" }, - { "110a", "4084", "SIMATIC NET CP 1626" }, - { "110a", "4942", "FPGA I-Bus Tracer for MBD" }, - { "110a", "6120", "SZB6120" }, - { "110b", "0001", "Mpact Media Processor" }, - { "110b", "0004", "Mpact 2" }, - { "1110", "6037", "Firepower Powerized SMP I/O ASIC" }, - { "1110", "6073", "Firepower Powerized SMP I/O ASIC" }, - { "1112", "2200", "FDDI Adapter" }, - { "1112", "2300", "Fast Ethernet Adapter" }, - { "1112", "2340", "4 Port Fast Ethernet Adapter" }, - { "1112", "2400", "ATM Adapter" }, - { "1113", "1211", "SMC2-1211TX" }, - { "1113", "1216", "EN-1216 Ethernet Adapter" }, - { "1113", "1217", "EN-1217 Ethernet Adapter" }, - { "1113", "5105", "10Mbps Network card" }, - { "1113", "9211", "EN-1207D Fast Ethernet Adapter" }, - { "1113", "9511", "21x4x DEC-Tulip compatible Fast Ethernet" }, - { "1113", "d301", "CPWNA100 (Philips wireless PCMCIA)" }, - { "1113", "ec02", "SMC 1244TX v3" }, - { "1113", "ee23", "SMCWPCIT-G 108Mbps Wireless PCI adapter" }, - { "1114", "0506", "at76c506 802.11b Wireless Network Adaptor" }, - { "1116", "0022", "DT3001" }, - { "1116", "0023", "DT3002" }, - { "1116", "0024", "DT3003" }, - { "1116", "0025", "DT3004" }, - { "1116", "0026", "DT3005" }, - { "1116", "0027", "DT3001-PGL" }, - { "1116", "0028", "DT3003-PGL" }, - { "1116", "0051", "DT322" }, - { "1116", "0060", "DT340" }, - { "1116", "0069", "DT332" }, - { "1116", "80c2", "DT3162" }, - { "1117", "9500", "Max-1C SVGA card" }, - { "1117", "9501", "Max-1C image processing" }, - { "1119", "0000", "GDT 6000/6020/6050" }, - { "1119", "0001", "GDT 6000B/6010" }, - { "1119", "0002", "GDT 6110/6510" }, - { "1119", "0003", "GDT 6120/6520" }, - { "1119", "0004", "GDT 6530" }, - { "1119", "0005", "GDT 6550" }, - { "1119", "0006", "GDT 6117/6517" }, - { "1119", "0007", "GDT 6127/6527" }, - { "1119", "0008", "GDT 6537" }, - { "1119", "0009", "GDT 6557/6557-ECC" }, - { "1119", "000a", "GDT 6115/6515" }, - { "1119", "000b", "GDT 6125/6525" }, - { "1119", "000c", "GDT 6535" }, - { "1119", "000d", "GDT 6555/6555-ECC" }, - { "1119", "0100", "GDT 6117RP/6517RP" }, - { "1119", "0101", "GDT 6127RP/6527RP" }, - { "1119", "0102", "GDT 6537RP" }, - { "1119", "0103", "GDT 6557RP" }, - { "1119", "0104", "GDT 6111RP/6511RP" }, - { "1119", "0105", "GDT 6121RP/6521RP" }, - { "1119", "0110", "GDT 6117RD/6517RD" }, - { "1119", "0111", "GDT 6127RD/6527RD" }, - { "1119", "0112", "GDT 6537RD" }, - { "1119", "0113", "GDT 6557RD" }, - { "1119", "0114", "GDT 6111RD/6511RD" }, - { "1119", "0115", "GDT 6121RD/6521RD" }, - { "1119", "0118", "GDT 6118RD/6518RD/6618RD" }, - { "1119", "0119", "GDT 6128RD/6528RD/6628RD" }, - { "1119", "011a", "GDT 6538RD/6638RD" }, - { "1119", "011b", "GDT 6558RD/6658RD" }, - { "1119", "0120", "GDT 6117RP2/6517RP2" }, - { "1119", "0121", "GDT 6127RP2/6527RP2" }, - { "1119", "0122", "GDT 6537RP2" }, - { "1119", "0123", "GDT 6557RP2" }, - { "1119", "0124", "GDT 6111RP2/6511RP2" }, - { "1119", "0125", "GDT 6121RP2/6521RP2" }, - { "1119", "0136", "GDT 6113RS/6513RS" }, - { "1119", "0137", "GDT 6123RS/6523RS" }, - { "1119", "0138", "GDT 6118RS/6518RS/6618RS" }, - { "1119", "0139", "GDT 6128RS/6528RS/6628RS" }, - { "1119", "013a", "GDT 6538RS/6638RS" }, - { "1119", "013b", "GDT 6558RS/6658RS" }, - { "1119", "013c", "GDT 6533RS/6633RS" }, - { "1119", "013d", "GDT 6543RS/6643RS" }, - { "1119", "013e", "GDT 6553RS/6653RS" }, - { "1119", "013f", "GDT 6563RS/6663RS" }, - { "1119", "0166", "GDT 7113RN/7513RN/7613RN" }, - { "1119", "0167", "GDT 7123RN/7523RN/7623RN" }, - { "1119", "0168", "GDT 7118RN/7518RN/7518RN" }, - { "1119", "0169", "GDT 7128RN/7528RN/7628RN" }, - { "1119", "016a", "GDT 7538RN/7638RN" }, - { "1119", "016b", "GDT 7558RN/7658RN" }, - { "1119", "016c", "GDT 7533RN/7633RN" }, - { "1119", "016d", "GDT 7543RN/7643RN" }, - { "1119", "016e", "GDT 7553RN/7653RN" }, - { "1119", "016f", "GDT 7563RN/7663RN" }, - { "1119", "01d6", "GDT 4x13RZ" }, - { "1119", "01d7", "GDT 4x23RZ" }, - { "1119", "01f6", "GDT 8x13RZ" }, - { "1119", "01f7", "GDT 8x23RZ" }, - { "1119", "01fc", "GDT 8x33RZ" }, - { "1119", "01fd", "GDT 8x43RZ" }, - { "1119", "01fe", "GDT 8x53RZ" }, - { "1119", "01ff", "GDT 8x63RZ" }, - { "1119", "0210", "GDT 6519RD/6619RD" }, - { "1119", "0211", "GDT 6529RD/6629RD" }, - { "1119", "0260", "GDT 7519RN/7619RN" }, - { "1119", "0261", "GDT 7529RN/7629RN" }, - { "1119", "02ff", "GDT MAXRP" }, - { "1119", "0300", "GDT NEWRX" }, - { "1119", "0301", "GDT NEWRX2" }, - { "111a", "0000", "155P-MF1 (FPGA)" }, - { "111a", "0002", "155P-MF1 (ASIC)" }, - { "111a", "0003", "ENI-25P ATM" }, - { "111a", "0005", "SpeedStream (LANAI)" }, - { "111a", "0007", "SpeedStream ADSL" }, - { "111a", "1020", "SpeedStream PCI 10/100 Network Card" }, - { "111a", "1203", "SpeedStream 1023 Wireless PCI Adapter" }, - { "111c", "0001", "Powerbis Bridge" }, - { "111d", "0001", "IDT77201/77211 155Mbps ATM SAR Controller [NICStAR]" }, - { "111d", "0003", "IDT77222/77252 155Mbps ATM MICRO ABR SAR Controller" }, - { "111d", "0004", "IDT77V252 155Mbps ATM MICRO ABR SAR Controller" }, - { "111d", "0005", "IDT77V222 155Mbps ATM MICRO ABR SAR Controller" }, - { "111d", "8018", "PES12N3A 12-lane 3-Port PCI Express Switch" }, - { "111d", "801c", "PES24N3A PCI Express Switch" }, - { "111d", "8028", "PES4T4 PCI Express Switch" }, - { "111d", "802b", "PES8T5A PCI Express Switch" }, - { "111d", "802c", "PES16T4 PCI Express Switch" }, - { "111d", "802d", "PES16T7 PCI Express Switch" }, - { "111d", "802e", "PES24T6 PCI Express Switch" }, - { "111d", "802f", "PES32T8 PCI Express Switch" }, - { "111d", "8032", "PES48T12 PCI Express Switch" }, - { "111d", "8034", "PES16/22/34H16 PCI Express Switch" }, - { "111d", "8035", "PES32H8 PCI Express Switch" }, - { "111d", "8036", "PES48H12 PCI Express Switch" }, - { "111d", "8037", "PES64H16 PCI Express Switch" }, - { "111d", "8039", "PES3T3 PCI Express Switch" }, - { "111d", "803a", "PES4T4 PCI Express Switch" }, - { "111d", "803c", "PES5T5 PCI Express Switch" }, - { "111d", "803d", "PES6T5 PCI Express Switch" }, - { "111d", "8048", "PES8NT2 PCI Express Switch" }, - { "111d", "8049", "PES8NT2 PCI Express Switch" }, - { "111d", "804a", "PES8NT2 PCI Express Internal NTB" }, - { "111d", "804b", "PES8NT2 PCI Express External NTB" }, - { "111d", "804c", "PES16NT2 PCI Express Switch" }, - { "111d", "804d", "PES16NT2 PCI Express Switch" }, - { "111d", "804e", "PES16NT2 PCI Express Internal NTB" }, - { "111d", "804f", "PES16NT2 PCI Express External NTB" }, - { "111d", "8058", "PES12NT3 PCI Express Switch" }, - { "111d", "8059", "PES12NT3 PCI Express Switch" }, - { "111d", "805a", "PES12NT3 PCI Express Internal NTB" }, - { "111d", "805b", "PES12NT3 PCI Express External NTB" }, - { "111d", "805c", "PES24NT3 PCI Express Switch" }, - { "111d", "805d", "PES24NT3 PCI Express Switch" }, - { "111d", "805e", "PES24NT3 PCI Express Internal NTB" }, - { "111d", "805f", "PES24NT3 PCI Express External NTB" }, - { "111d", "8060", "PES16T4G2 PCI Express Gen2 Switch" }, - { "111d", "8061", "PES12T3G2 PCI Express Gen2 Switch" }, - { "111d", "8068", "PES6T6G2 PCI Express Gen2 Switch" }, - { "111d", "806a", "PES24T3G2 PCI Express Gen2 Switch" }, - { "111d", "806c", "PES16T4A/4T4G2 PCI Express Gen2 Switch" }, - { "111d", "806e", "PES24T6G2 PCI Express Gen2 Switch" }, - { "111d", "806f", "HIO524G2 PCI Express Gen2 Switch" }, - { "111d", "8077", "89HPES64H16G2 64-Lane 16-Port PCIe Gen2 System Interconnect Switch" }, - { "111d", "8088", "PES32NT8BG2 PCI Express Switch" }, - { "111d", "808a", "89HPES32NT24BG2 PCI Express Switch" }, - { "111d", "808c", "89HPES32NT24AG2 PCI Express Switch" }, - { "111d", "808e", "PES24NT24G2 PCI Express Switch" }, - { "111d", "808f", "89HPES32NT8AG2 32-Lane 8-Port PCIe Gen2 System Interconnect Switch with Non-Transparent Bridging" }, - { "111d", "8090", "89HPES16NT16G2 16-Lane 16-Port PCIe Gen2 System Interconnect Switch" }, - { "111d", "8092", "89HPES12NT12G2 12-Lane 12-Port PCIe Gen2 System Interconnect Switch" }, - { "111d", "80cf", "F32P08xG3 [PCIe boot mode]" }, - { "111d", "80d2", "F32P08xG3 NVMe controller" }, - { "111f", "4a47", "Precision MX Video engine interface" }, - { "111f", "5243", "Frame capture bus interface" }, - { "1120", "2306", "Unity Fibre Channel Controller" }, - { "1120", "2501", "Unity Ethernet Controller" }, - { "1120", "2505", "Unity Fibre Channel Controller" }, - { "1124", "2581", "Picport Monochrome" }, - { "1127", "0200", "ForeRunner PCA-200 ATM" }, - { "1127", "0210", "PCA-200PC" }, - { "1127", "0250", "ATM" }, - { "1127", "0300", "ForeRunner PCA-200EPC ATM" }, - { "1127", "0310", "ATM" }, - { "1127", "0400", "ForeRunnerHE ATM Adapter" }, - { "112f", "0000", "MVC IC-PCI" }, - { "112f", "0001", "MVC IM-PCI Video frame grabber/processor" }, - { "112f", "0004", "PCDig Digital Image Capture" }, - { "112f", "0008", "PC-CamLink PCI framegrabber" }, - { "1131", "1561", "USB 1.1 Host Controller" }, - { "1131", "1562", "USB 2.0 Host Controller" }, - { "1131", "3400", "SmartPCI56(UCB1500) 56K Modem" }, - { "1131", "5400", "TriMedia TM1000/1100" }, - { "1131", "5402", "TriMedia TM1300" }, - { "1131", "5405", "TriMedia TM1500" }, - { "1131", "5406", "TriMedia TM1700" }, - { "1131", "540b", "PNX1005 Media Processor" }, - { "1131", "7130", "SAA7130 Video Broadcast Decoder" }, - { "1131", "7133", "SAA7131/SAA7133/SAA7135 Video Broadcast Decoder" }, - { "1131", "7134", "SAA7134/SAA7135HL Video Broadcast Decoder" }, - { "1131", "7145", "SAA7145" }, - { "1131", "7146", "SAA7146" }, - { "1131", "7160", "SAA7160" }, - { "1131", "7162", "SAA7162" }, - { "1131", "7164", "SAA7164" }, - { "1131", "7231", "SAA7231" }, - { "1131", "9730", "SAA9730 Integrated Multimedia and Peripheral Controller" }, - { "1133", "7701", "Eiconcard C90" }, - { "1133", "7711", "Eiconcard C91" }, - { "1133", "7901", "EiconCard S90" }, - { "1133", "7902", "EiconCard S90" }, - { "1133", "7911", "EiconCard S91" }, - { "1133", "7912", "EiconCard S91" }, - { "1133", "7921", "Eiconcard S92" }, - { "1133", "7941", "EiconCard S94" }, - { "1133", "7942", "EiconCard S94" }, - { "1133", "7943", "EiconCard S94" }, - { "1133", "7944", "EiconCard S94" }, - { "1133", "7945", "Eiconcard S94" }, - { "1133", "7948", "Eiconcard S94 64bit/66MHz" }, - { "1133", "9711", "Eiconcard S91 V2" }, - { "1133", "9911", "Eiconcard S91 V2" }, - { "1133", "9941", "Eiconcard S94 V2" }, - { "1133", "9a41", "Eiconcard S94 PCIe" }, - { "1133", "b921", "EiconCard P92" }, - { "1133", "b922", "EiconCard P92" }, - { "1133", "b923", "EiconCard P92" }, - { "1133", "e001", "Diva Pro 2.0 S/T" }, - { "1133", "e002", "Diva 2.0 S/T PCI" }, - { "1133", "e003", "Diva Pro 2.0 U" }, - { "1133", "e004", "Diva 2.0 U PCI" }, - { "1133", "e005", "Diva 2.01 S/T PCI" }, - { "1133", "e006", "Diva CT S/T PCI" }, - { "1133", "e007", "Diva CT U PCI" }, - { "1133", "e008", "Diva CT Lite S/T PCI" }, - { "1133", "e009", "Diva CT Lite U PCI" }, - { "1133", "e00a", "Diva ISDN+V.90 PCI" }, - { "1133", "e00b", "Diva ISDN PCI 2.02" }, - { "1133", "e00c", "Diva 2.02 PCI U" }, - { "1133", "e00d", "Diva Pro 3.0 PCI" }, - { "1133", "e00e", "Diva ISDN+CT S/T PCI Rev 2" }, - { "1133", "e010", "Diva Server BRI-2M PCI" }, - { "1133", "e011", "Diva Server BRI S/T Rev 2" }, - { "1133", "e012", "Diva Server 4BRI-8M PCI" }, - { "1133", "e013", "4BRI" }, - { "1133", "e014", "Diva Server PRI-30M PCI" }, - { "1133", "e015", "Diva PRI PCI v2" }, - { "1133", "e016", "Diva Server Voice 4BRI PCI" }, - { "1133", "e017", "Diva Server Voice 4BRI Rev 2" }, - { "1133", "e018", "BRI" }, - { "1133", "e019", "Diva Server Voice PRI Rev 2" }, - { "1133", "e01a", "Diva BRI-2FX PCI v2" }, - { "1133", "e01b", "Diva Server Voice BRI-2M 2.0 PCI" }, - { "1133", "e01c", "PRI" }, - { "1133", "e01e", "2PRI" }, - { "1133", "e020", "4PRI" }, - { "1133", "e022", "Analog-2" }, - { "1133", "e024", "Analog-4" }, - { "1133", "e028", "Analog-8" }, - { "1133", "e02a", "Diva IPM-300 PCI v1" }, - { "1133", "e02c", "Diva IPM-600 PCI v1" }, - { "1133", "e02e", "4BRI" }, - { "1133", "e032", "BRI" }, - { "1133", "e034", "Diva BRI-CTI PCI v2" }, - { "1134", "0001", "Raceway Bridge" }, - { "1134", "0002", "Dual PCI to RapidIO Bridge" }, - { "1134", "000b", "POET Serial RapidIO Bridge" }, - { "1134", "000d", "POET PSDMS Device" }, - { "1135", "0001", "Printer controller" }, - { "1136", "0002", "PCI-JTAG" }, - { "1137", "0023", "VIC 81 PCIe Upstream Port" }, - { "1137", "0040", "VIC PCIe Upstream Port" }, - { "1137", "0041", "VIC PCIe Downstream Port" }, - { "1137", "0042", "VIC Management Controller" }, - { "1137", "0043", "VIC Ethernet NIC" }, - { "1137", "0044", "VIC Ethernet NIC Dynamic" }, - { "1137", "0045", "VIC FCoE HBA" }, - { "1137", "0046", "VIC SCSI Controller" }, - { "1137", "004e", "VIC 82 PCIe Upstream Port" }, - { "1137", "0071", "VIC SR-IOV VF" }, - { "1137", "007a", "VIC 1300 PCIe Upstream Port" }, - { "1137", "00cf", "VIC Userspace NIC" }, - { "1137", "023e", "1GigE I350 LOM" }, - { "1138", "8905", "8905 [STD 32 Bridge]" }, - { "1139", "0001", "VGA Compatible 3D Graphics" }, - { "113c", "0000", "PCI-9060 i960 Bridge" }, - { "113c", "0001", "PCI-SDK [PCI i960 Evaluation Platform]" }, - { "113c", "0911", "PCI-911 [i960Jx-based Intelligent I/O Controller]" }, - { "113c", "0912", "PCI-912 [i960CF-based Intelligent I/O Controller]" }, - { "113c", "0913", "PCI-913" }, - { "113c", "0914", "PCI-914 [I/O Controller w/ secondary PCI bus]" }, - { "113f", "0808", "SST-64P Adapter" }, - { "113f", "1010", "SST-128P Adapter" }, - { "113f", "80c0", "SST-16P DB Adapter" }, - { "113f", "80c4", "SST-16P RJ Adapter" }, - { "113f", "80c8", "SST-16P Adapter" }, - { "113f", "8888", "SST-4P Adapter" }, - { "113f", "9090", "SST-8P Adapter" }, - { "1142", "3210", "AP6410" }, - { "1142", "6422", "ProVideo 6422" }, - { "1142", "6424", "ProVideo 6424" }, - { "1142", "6425", "ProMotion AT25" }, - { "1142", "643d", "ProMotion AT3D" }, - { "1144", "0001", "Noservo controller" }, - { "1145", "8007", "NinjaSCSI-32 Workbit" }, - { "1145", "f007", "NinjaSCSI-32 KME" }, - { "1145", "f010", "NinjaSCSI-32 Workbit" }, - { "1145", "f012", "NinjaSCSI-32 Logitec" }, - { "1145", "f013", "NinjaSCSI-32 Logitec" }, - { "1145", "f015", "NinjaSCSI-32 Melco" }, - { "1145", "f020", "NinjaSCSI-32 Sony PCGA-DVD51" }, - { "1145", "f021", "NinjaPATA-32 Delkin Cardbus UDMA" }, - { "1145", "f024", "NinjaPATA-32 Delkin Cardbus UDMA" }, - { "1145", "f103", "NinjaPATA-32 Delkin Cardbus UDMA" }, - { "1148", "4000", "FDDI Adapter" }, - { "1148", "4200", "Token Ring adapter" }, - { "1148", "4300", "SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)" }, - { "1148", "4320", "SK-98xx V2.0 Gigabit Ethernet Adapter [Marvell 88E8001]" }, - { "1148", "4400", "SK-9Dxx Gigabit Ethernet Adapter" }, - { "1148", "4500", "SK-9Mxx Gigabit Ethernet Adapter" }, - { "1148", "9000", "SK-9Sxx Gigabit Ethernet Server Adapter PCI-X [Marvell 88E8022]" }, - { "1148", "9843", "[Fujitsu] Gigabit Ethernet" }, - { "1148", "9e00", "SK-9E21D 10/100/1000Base-T Adapter, Copper RJ-45" }, - { "1148", "9e01", "SK-9E21M 10/100/1000Base-T Adapter" }, - { "114a", "5565", "GE-IP PCI5565,PMC5565 Reflective Memory Node" }, - { "114a", "5579", "VMIPCI-5579 (Reflective Memory Card)" }, - { "114a", "5587", "VMIPCI-5587 (Reflective Memory Card)" }, - { "114a", "6504", "VMIC PCI 7755 FPGA" }, - { "114a", "7587", "VMIVME-7587" }, - { "114f", "0002", "AccelePort EPC" }, - { "114f", "0003", "RightSwitch SE-6" }, - { "114f", "0004", "AccelePort Xem" }, - { "114f", "0005", "AccelePort Xr" }, - { "114f", "0006", "AccelePort Xr,C/X" }, - { "114f", "0009", "AccelePort Xr/J" }, - { "114f", "000a", "AccelePort EPC/J" }, - { "114f", "000c", "DataFirePRIme T1 (1-port)" }, - { "114f", "000d", "SyncPort 2-Port (x.25/FR)" }, - { "114f", "0011", "AccelePort 8r EIA-232 (IBM)" }, - { "114f", "0012", "AccelePort 8r EIA-422" }, - { "114f", "0013", "AccelePort Xr" }, - { "114f", "0014", "AccelePort 8r EIA-422" }, - { "114f", "0015", "AccelePort Xem" }, - { "114f", "0016", "AccelePort EPC/X" }, - { "114f", "0017", "AccelePort C/X" }, - { "114f", "001a", "DataFirePRIme E1 (1-port)" }, - { "114f", "001b", "AccelePort C/X (IBM)" }, - { "114f", "001c", "AccelePort Xr (SAIP)" }, - { "114f", "001d", "DataFire RAS T1/E1/PRI" }, - { "114f", "0023", "AccelePort RAS" }, - { "114f", "0024", "DataFire RAS B4 ST/U" }, - { "114f", "0026", "AccelePort 4r 920" }, - { "114f", "0027", "AccelePort Xr 920" }, - { "114f", "0028", "ClassicBoard 4" }, - { "114f", "0029", "ClassicBoard 8" }, - { "114f", "0034", "AccelePort 2r 920" }, - { "114f", "0035", "DataFire DSP T1/E1/PRI cPCI" }, - { "114f", "0040", "AccelePort Xp" }, - { "114f", "0042", "AccelePort 2p" }, - { "114f", "0043", "AccelePort 4p" }, - { "114f", "0044", "AccelePort 8p" }, - { "114f", "0045", "AccelePort 16p" }, - { "114f", "004e", "AccelePort 32p" }, - { "114f", "0070", "Datafire Micro V IOM2 (Europe)" }, - { "114f", "0071", "Datafire Micro V (Europe)" }, - { "114f", "0072", "Datafire Micro V IOM2 (North America)" }, - { "114f", "0073", "Datafire Micro V (North America)" }, - { "114f", "00b0", "Digi Neo 4" }, - { "114f", "00b1", "Digi Neo 8" }, - { "114f", "00c8", "Digi Neo 2 DB9" }, - { "114f", "00c9", "Digi Neo 2 DB9 PRI" }, - { "114f", "00ca", "Digi Neo 2 RJ45" }, - { "114f", "00cb", "Digi Neo 2 RJ45 PRI" }, - { "114f", "00cc", "Digi Neo 1 422" }, - { "114f", "00cd", "Digi Neo 1 422 485" }, - { "114f", "00ce", "Digi Neo 2 422 485" }, - { "114f", "00d0", "ClassicBoard 4 422" }, - { "114f", "00d1", "ClassicBoard 8 422" }, - { "114f", "00f1", "Digi Neo PCI-E 4 port" }, - { "114f", "00f4", "Digi Neo 4 (IBM version)" }, - { "114f", "6001", "Avanstar" }, - { "1158", "3011", "Tokenet/vg 1001/10m anylan" }, - { "1158", "9050", "Lanfleet/Truevalue" }, - { "1158", "9051", "Lanfleet/Truevalue" }, - { "1159", "0001", "MV-1000" }, - { "1159", "0002", "MV-1500" }, - { "115d", "0003", "Cardbus Ethernet 10/100" }, - { "115d", "0005", "Cardbus Ethernet 10/100" }, - { "115d", "0007", "Cardbus Ethernet 10/100" }, - { "115d", "000b", "Cardbus Ethernet 10/100" }, - { "115d", "000c", "Mini-PCI V.90 56k Modem" }, - { "115d", "000f", "Cardbus Ethernet 10/100" }, - { "115d", "00d4", "Mini-PCI K56Flex Modem" }, - { "115d", "0101", "Cardbus 56k modem" }, - { "115d", "0103", "Cardbus Ethernet + 56k Modem" }, - { "1163", "0001", "Verite 1000" }, - { "1163", "2000", "Verite V2000/V2100/V2200" }, - { "1165", "0001", "Motion TPEG Recorder/Player with audio" }, - { "1166", "0000", "CMIC-LE" }, - { "1166", "0005", "CNB20-LE Host Bridge" }, - { "1166", "0006", "CNB20HE Host Bridge" }, - { "1166", "0007", "CNB20-LE Host Bridge" }, - { "1166", "0008", "CNB20HE Host Bridge" }, - { "1166", "0009", "CNB20LE Host Bridge" }, - { "1166", "0010", "CIOB30" }, - { "1166", "0011", "CMIC-HE" }, - { "1166", "0012", "CMIC-WS Host Bridge (GC-LE chipset)" }, - { "1166", "0013", "CNB20-HE Host Bridge" }, - { "1166", "0014", "CMIC-LE Host Bridge (GC-LE chipset)" }, - { "1166", "0015", "CMIC-GC Host Bridge" }, - { "1166", "0016", "CMIC-GC Host Bridge" }, - { "1166", "0017", "GCNB-LE Host Bridge" }, - { "1166", "0031", "HT1100 HPX0 HT Host Bridge" }, - { "1166", "0036", "BCM5785 [HT1000] PCI/PCI-X Bridge" }, - { "1166", "0101", "CIOB-X2 PCI-X I/O Bridge" }, - { "1166", "0103", "EPB PCI-Express to PCI-X Bridge" }, - { "1166", "0104", "BCM5785 [HT1000] PCI/PCI-X Bridge" }, - { "1166", "0110", "CIOB-E I/O Bridge with Gigabit Ethernet" }, - { "1166", "0130", "BCM5780 [HT2000] PCI-X bridge" }, - { "1166", "0132", "BCM5780 [HT2000] PCI-Express Bridge" }, - { "1166", "0140", "HT2100 PCI-Express Bridge" }, - { "1166", "0141", "HT2100 PCI-Express Bridge" }, - { "1166", "0142", "HT2100 PCI-Express Bridge" }, - { "1166", "0144", "HT2100 PCI-Express Bridge" }, - { "1166", "0200", "OSB4 South Bridge" }, - { "1166", "0201", "CSB5 South Bridge" }, - { "1166", "0203", "CSB6 South Bridge" }, - { "1166", "0205", "BCM5785 [HT1000] Legacy South Bridge" }, - { "1166", "0211", "OSB4 IDE Controller" }, - { "1166", "0212", "CSB5 IDE Controller" }, - { "1166", "0213", "CSB6 RAID/IDE Controller" }, - { "1166", "0214", "BCM5785 [HT1000] IDE" }, - { "1166", "0217", "CSB6 IDE Controller" }, - { "1166", "021b", "HT1100 HD Audio" }, - { "1166", "0220", "OSB4/CSB5 OHCI USB Controller" }, - { "1166", "0221", "CSB6 OHCI USB Controller" }, - { "1166", "0223", "BCM5785 [HT1000] USB" }, - { "1166", "0225", "CSB5 LPC bridge" }, - { "1166", "0227", "GCLE-2 Host Bridge" }, - { "1166", "0230", "CSB5 LPC bridge" }, - { "1166", "0234", "BCM5785 [HT1000] LPC" }, - { "1166", "0235", "BCM5785 [HT1000] XIOAPIC0-2" }, - { "1166", "0238", "BCM5785 [HT1000] WDTimer" }, - { "1166", "0240", "K2 SATA" }, - { "1166", "0241", "RAIDCore RC4000" }, - { "1166", "0242", "RAIDCore BC4000" }, - { "1166", "024a", "BCM5785 [HT1000] SATA (Native SATA Mode)" }, - { "1166", "024b", "BCM5785 [HT1000] SATA (PATA/IDE Mode)" }, - { "1166", "0406", "HT1100 PCI-X Bridge" }, - { "1166", "0408", "HT1100 Legacy Device" }, - { "1166", "040a", "HT1100 ISA-LPC Bridge" }, - { "1166", "0410", "HT1100 SATA Controller (Native SATA Mode)" }, - { "1166", "0411", "HT1100 SATA Controller (PATA / IDE Mode)" }, - { "1166", "0412", "HT1100 USB OHCI Controller" }, - { "1166", "0414", "HT1100 USB EHCI Controller" }, - { "1166", "0416", "HT1100 USB EHCI Controller (with Debug Port)" }, - { "1166", "0420", "HT1100 PCI-Express Bridge" }, - { "1166", "0421", "HT1100 SAS/SATA Controller" }, - { "1166", "0422", "HT1100 PCI-Express Bridge" }, - { "116a", "6100", "Bus/Tag Channel" }, - { "116a", "6800", "Escon Channel" }, - { "116a", "7100", "Bus/Tag Channel" }, - { "116a", "7800", "Escon Channel" }, - { "1172", "00a7", "Stratix V" }, - { "1172", "0530", "Stratix IV" }, - { "1172", "646c", "KT-500/KT-521 board" }, - { "1178", "afa1", "Fast Ethernet Adapter" }, - { "1179", "0102", "Extended IDE Controller" }, - { "1179", "0103", "EX-IDE Type-B" }, - { "1179", "010e", "PXP04 NVMe SSD" }, - { "1179", "010f", "NVMe Controller" }, - { "1179", "0110", "NVMe SSD Controller Cx5" }, - { "1179", "0113", "BG3 NVMe SSD Controller" }, - { "1179", "0115", "XG4 NVMe SSD Controller" }, - { "1179", "011a", "XG6 NVMe SSD Controller" }, - { "1179", "0404", "DVD Decoder card" }, - { "1179", "0406", "Tecra Video Capture device" }, - { "1179", "0407", "DVD Decoder card (Version 2)" }, - { "1179", "0601", "CPU to PCI bridge" }, - { "1179", "0602", "PCI to ISA bridge" }, - { "1179", "0603", "ToPIC95 PCI to CardBus Bridge for Notebooks" }, - { "1179", "0604", "PCI-Docking Host bridge" }, - { "1179", "060a", "ToPIC95" }, - { "1179", "060f", "ToPIC97" }, - { "1179", "0617", "ToPIC100 PCI to Cardbus Bridge with ZV Support" }, - { "1179", "0618", "CPU to PCI and PCI to ISA bridge" }, - { "1179", "0701", "FIR Port Type-O" }, - { "1179", "0803", "TC6371AF SD Host Controller" }, - { "1179", "0804", "TC6371AF SmartMedia Controller" }, - { "1179", "0805", "SD TypA Controller" }, - { "1179", "0d01", "FIR Port Type-DO" }, - { "117c", "002c", "ExpressSAS R380" }, - { "117c", "002d", "ExpressSAS R348" }, - { "117c", "0030", "Ultra320 SCSI Host Adapter" }, - { "117c", "0033", "SAS Adapter" }, - { "117c", "0041", "ExpressSAS R30F" }, - { "117c", "0042", "ExpressSAS 6Gb/s SAS/SATA HBA" }, - { "117c", "0049", "ExpressSAS 6Gb SAS/SATA RAID Adapter" }, - { "117c", "0064", "Celerity FC 16Gb/s Gen 5 Fibre Channel HBA" }, - { "117c", "0094", "Celerity FC 16/32Gb/s Gen 6 Fibre Channel HBA" }, - { "117c", "00bb", "Celerity FC 32/64Gb/s Gen 7 Fibre Channel HBA" }, - { "117c", "00c5", "ExpressNVM PCIe Gen4 Switch" }, - { "117c", "00e6", "ExpressSAS GT 12Gb/s SAS/SATA HBA" }, - { "117c", "8013", "ExpressPCI UL4D" }, - { "117c", "8014", "ExpressPCI UL4S" }, - { "117c", "8027", "ExpressPCI UL5D" }, - { "117c", "8070", "ExpressSAS 12Gb/s SAS/SATA HBA" }, - { "117c", "8072", "ExpressSAS 12Gb/s SAS/SATA HBA" }, - { "1180", "0465", "RL5c465" }, - { "1180", "0466", "RL5c466" }, - { "1180", "0475", "RL5c475" }, - { "1180", "0476", "RL5c476 II" }, - { "1180", "0477", "RL5c477" }, - { "1180", "0478", "RL5c478" }, - { "1180", "0511", "R5C511" }, - { "1180", "0522", "R5C522 IEEE 1394 Controller" }, - { "1180", "0551", "R5C551 IEEE 1394 Controller" }, - { "1180", "0552", "R5C552 IEEE 1394 Controller" }, - { "1180", "0554", "R5C554" }, - { "1180", "0575", "R5C575 SD Bus Host Adapter" }, - { "1180", "0576", "R5C576 SD Bus Host Adapter" }, - { "1180", "0592", "R5C592 Memory Stick Bus Host Adapter" }, - { "1180", "0811", "R5C811" }, - { "1180", "0822", "R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter" }, - { "1180", "0832", "R5C832 IEEE 1394 Controller" }, - { "1180", "0841", "R5C841 CardBus/SD/SDIO/MMC/MS/MSPro/xD/IEEE1394" }, - { "1180", "0843", "R5C843 MMC Host Controller" }, - { "1180", "0852", "xD-Picture Card Controller" }, - { "1180", "e230", "R5U2xx (R5U230 / R5U231 / R5U241) [Memory Stick Host Controller]" }, - { "1180", "e476", "CardBus bridge" }, - { "1180", "e822", "MMC/SD Host Controller" }, - { "1180", "e823", "PCIe SDXC/MMC Host Controller" }, - { "1180", "e832", "R5C832 PCIe IEEE 1394 Controller" }, - { "1180", "e852", "PCIe xD-Picture Card Controller" }, - { "1186", "1002", "DL10050 Sundance Ethernet" }, - { "1186", "1025", "AirPlus Xtreme G DWL-G650 Adapter" }, - { "1186", "1026", "AirXpert DWL-AG650 Wireless Cardbus Adapter" }, - { "1186", "1043", "AirXpert DWL-AG650 Wireless Cardbus Adapter" }, - { "1186", "1300", "RTL8139 Ethernet" }, - { "1186", "1340", "DFE-690TXD CardBus PC Card" }, - { "1186", "1540", "DFE-680TX" }, - { "1186", "1541", "DFE-680TXD CardBus PC Card" }, - { "1186", "1561", "DRP-32TXD Cardbus PC Card" }, - { "1186", "3300", "DWL-510 / DWL-610 802.11b [Realtek RTL8180L]" }, - { "1186", "3a10", "AirXpert DWL-AG650 Wireless Cardbus Adapter(rev.B)" }, - { "1186", "3a11", "AirXpert DWL-AG520 Wireless PCI Adapter(rev.B)" }, - { "1186", "4000", "DL2000-based Gigabit Ethernet" }, - { "1186", "4001", "DGE-550SX PCI-X Gigabit Ethernet Adapter" }, - { "1186", "4200", "DFE-520TX Fast Ethernet PCI Adapter" }, - { "1186", "4300", "DGE-528T Gigabit Ethernet Adapter" }, - { "1186", "4302", "DGE-530T Gigabit Ethernet Adapter (rev.C1) [Realtek RTL8169]" }, - { "1186", "4b00", "DGE-560T PCI Express Gigabit Ethernet Adapter" }, - { "1186", "4b01", "DGE-530T Gigabit Ethernet Adapter (rev 11)" }, - { "1186", "4b02", "DGE-560SX PCI Express Gigabit Ethernet Adapter" }, - { "1186", "4b03", "DGE-550T Gigabit Ethernet Adapter V.B1" }, - { "1186", "4c00", "Gigabit Ethernet Adapter" }, - { "1186", "8400", "D-Link DWL-650+ CardBus PC Card" }, - { "118c", "0014", "PCIB [C-bus II to PCI bus host bridge chip]" }, - { "118c", "1117", "Intel 8-way XEON Profusion Chipset [Cache Coherency Filter]" }, - { "118d", "0001", "Raptor-PCI framegrabber" }, - { "118d", "0012", "Model 12 Road Runner Frame Grabber" }, - { "118d", "0014", "Model 14 Road Runner Frame Grabber" }, - { "118d", "0024", "Model 24 Road Runner Frame Grabber" }, - { "118d", "0044", "Model 44 Road Runner Frame Grabber" }, - { "118d", "0112", "Model 12 Road Runner Frame Grabber" }, - { "118d", "0114", "Model 14 Road Runner Frame Grabber" }, - { "118d", "0124", "Model 24 Road Runner Frame Grabber" }, - { "118d", "0144", "Model 44 Road Runner Frame Grabber" }, - { "118d", "0212", "Model 12 Road Runner Frame Grabber" }, - { "118d", "0214", "Model 14 Road Runner Frame Grabber" }, - { "118d", "0224", "Model 24 Road Runner Frame Grabber" }, - { "118d", "0244", "Model 44 Road Runner Frame Grabber" }, - { "118d", "0312", "Model 12 Road Runner Frame Grabber" }, - { "118d", "0314", "Model 14 Road Runner Frame Grabber" }, - { "118d", "0324", "Model 24 Road Runner Frame Grabber" }, - { "118d", "0344", "Model 44 Road Runner Frame Grabber" }, - { "118d", "b04e", "Claxon CXP4 CoaXPress frame grabber" }, - { "1190", "c731", "TP-910/920/940 PCI Ultra(Wide) SCSI Adapter" }, - { "1191", "0003", "SCSI Cache Host Adapter" }, - { "1191", "0004", "ATP8400" }, - { "1191", "0005", "ATP850UF" }, - { "1191", "0006", "ATP860 NO-BIOS" }, - { "1191", "0007", "ATP860" }, - { "1191", "0008", "ATP865 NO-ROM" }, - { "1191", "0009", "ATP865" }, - { "1191", "000a", "ATP867-A" }, - { "1191", "000b", "ATP867-B" }, - { "1191", "000d", "ATP8620" }, - { "1191", "000e", "ATP8620" }, - { "1191", "8002", "AEC6710 SCSI-2 Host Adapter" }, - { "1191", "8010", "AEC6712UW SCSI" }, - { "1191", "8020", "AEC6712U SCSI" }, - { "1191", "8030", "AEC6712S SCSI" }, - { "1191", "8040", "AEC6712D SCSI" }, - { "1191", "8050", "AEC6712SUW SCSI" }, - { "1191", "8060", "AEC6712 SCSI" }, - { "1191", "8080", "AEC67160 SCSI" }, - { "1191", "8081", "AEC67160S SCSI" }, - { "1191", "808a", "AEC67162 2-ch. LVD SCSI" }, - { "1193", "0001", "1221" }, - { "1193", "0002", "1225" }, - { "1197", "010c", "CompuScope 82G 8bit 2GS/s Analog Input Card" }, - { "1199", "0101", "Advanced ISCA/PCI Adapter" }, - { "119b", "1221", "82C092G" }, - { "119e", "0001", "FireStream 155" }, - { "119e", "0003", "FireStream 50" }, - { "119f", "1081", "BXI Host Channel Adapter" }, - { "119f", "1101", "BXI Host Channel Adapter v1.2" }, - { "119f", "1121", "BXI Host Channel Adapter v1.3" }, - { "11a9", "4240", "AMCC S933Q Intelligent Serial Card" }, - { "11ab", "0100", "88F3700 [Armada 3700 Family] ARM SoC" }, - { "11ab", "0110", "88F60x0/88F70x0/88F80x0/CN913x ARM SoC" }, - { "11ab", "0146", "GT-64010/64010A System Controller" }, - { "11ab", "0f53", "88E6318 Link Street network controller" }, - { "11ab", "11ab", "MV88SE614x SATA II PCI-E controller" }, - { "11ab", "138f", "W8300 802.11 Adapter (rev 07)" }, - { "11ab", "1fa6", "Marvell W8300 802.11 Adapter" }, - { "11ab", "1fa7", "88W8310 and 88W8000G [Libertas] 802.11g client chipset" }, - { "11ab", "1faa", "88w8335 [Libertas] 802.11b/g Wireless" }, - { "11ab", "2211", "88SB2211 PCI Express to PCI Bridge" }, - { "11ab", "2a01", "88W8335 [Libertas] 802.11b/g Wireless" }, - { "11ab", "2a02", "88W8361 [TopDog] 802.11n Wireless" }, - { "11ab", "2a08", "88W8362e [TopDog] 802.11a/b/g/n Wireless" }, - { "11ab", "2a0a", "88W8363 [TopDog] 802.11n Wireless" }, - { "11ab", "2a0c", "88W8363 [TopDog] 802.11n Wireless" }, - { "11ab", "2a24", "88W8363 [TopDog] 802.11n Wireless" }, - { "11ab", "2a2b", "88W8687 [TopDog] 802.11b/g Wireless" }, - { "11ab", "2a30", "88W8687 [TopDog] 802.11b/g Wireless" }, - { "11ab", "2a40", "88W8366 [TopDog] 802.11n Wireless" }, - { "11ab", "2a41", "88W8366 [TopDog] 802.11n Wireless" }, - { "11ab", "2a42", "88W8366 [TopDog] 802.11n Wireless" }, - { "11ab", "2a43", "88W8366 [TopDog] 802.11n Wireless" }, - { "11ab", "2a55", "88W8864 [Avastar] 802.11ac Wireless" }, - { "11ab", "2b36", "88W8764 [Avastar] 802.11n Wireless" }, - { "11ab", "2b38", "88W8897 [AVASTAR] 802.11ac Wireless" }, - { "11ab", "2b40", "88W8964 [Avastar] 802.11ac Wireless" }, - { "11ab", "4101", "OLPC Cafe Controller Secure Digital Controller" }, - { "11ab", "4146", "GT-64111 System Controller" }, - { "11ab", "4320", "88E8001 Gigabit Ethernet Controller" }, - { "11ab", "4340", "88E8021 PCI-X IPMI Gigabit Ethernet Controller" }, - { "11ab", "4341", "88E8022 PCI-X IPMI Gigabit Ethernet Controller" }, - { "11ab", "4342", "88E8061 PCI-E IPMI Gigabit Ethernet Controller" }, - { "11ab", "4343", "88E8062 PCI-E IPMI Gigabit Ethernet Controller" }, - { "11ab", "4344", "88E8021 PCI-X IPMI Gigabit Ethernet Controller" }, - { "11ab", "4345", "88E8022 PCI-X IPMI Gigabit Ethernet Controller" }, - { "11ab", "4346", "88E8061 PCI-E IPMI Gigabit Ethernet Controller" }, - { "11ab", "4347", "88E8062 PCI-E IPMI Gigabit Ethernet Controller" }, - { "11ab", "4350", "88E8035 PCI-E Fast Ethernet Controller" }, - { "11ab", "4351", "88E8036 PCI-E Fast Ethernet Controller" }, - { "11ab", "4352", "88E8038 PCI-E Fast Ethernet Controller" }, - { "11ab", "4353", "88E8039 PCI-E Fast Ethernet Controller" }, - { "11ab", "4354", "88E8040 PCI-E Fast Ethernet Controller" }, - { "11ab", "4355", "88E8040T PCI-E Fast Ethernet Controller" }, - { "11ab", "4356", "88EC033 PCI-E Fast Ethernet Controller" }, - { "11ab", "4357", "88E8042 PCI-E Fast Ethernet Controller" }, - { "11ab", "435a", "88E8048 PCI-E Fast Ethernet Controller" }, - { "11ab", "4360", "88E8052 PCI-E ASF Gigabit Ethernet Controller" }, - { "11ab", "4361", "88E8050 PCI-E ASF Gigabit Ethernet Controller" }, - { "11ab", "4362", "88E8053 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4363", "88E8055 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4364", "88E8056 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4365", "88E8070 based Ethernet Controller" }, - { "11ab", "4366", "88EC036 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4367", "88EC032 Ethernet Controller" }, - { "11ab", "4368", "88EC034 Ethernet Controller" }, - { "11ab", "4369", "88EC042 Ethernet Controller" }, - { "11ab", "436a", "88E8058 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "436b", "88E8071 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "436c", "88E8072 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "436d", "88E8055 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4370", "88E8075 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4380", "88E8057 PCI-E Gigabit Ethernet Controller" }, - { "11ab", "4381", "Yukon Optima 88E8059 [PCIe Gigabit Ethernet Controller with AVB]" }, - { "11ab", "4611", "GT-64115 System Controller" }, - { "11ab", "4620", "GT-64120/64120A/64121A System Controller" }, - { "11ab", "4801", "GT-48001" }, - { "11ab", "5005", "Belkin F5D5005 Gigabit Desktop Network PCI Card" }, - { "11ab", "5040", "MV88SX5040 4-port SATA I PCI-X Controller" }, - { "11ab", "5041", "MV88SX5041 4-port SATA I PCI-X Controller" }, - { "11ab", "5080", "MV88SX5080 8-port SATA I PCI-X Controller" }, - { "11ab", "5081", "MV88SX5081 8-port SATA I PCI-X Controller" }, - { "11ab", "5181", "88f5181 [Orion-1] ARM SoC" }, - { "11ab", "5182", "88f5182 [Orion-NAS] ARM SoC" }, - { "11ab", "5281", "88f5281 [Orion-2] ARM SoC" }, - { "11ab", "6041", "MV88SX6041 4-port SATA II PCI-X Controller" }, - { "11ab", "6042", "88SX6042 PCI-X 4-Port SATA-II" }, - { "11ab", "6081", "MV88SX6081 8-port SATA II PCI-X Controller" }, - { "11ab", "6101", "88SE6101/6102 single-port PATA133 interface" }, - { "11ab", "6121", "88SE6111/6121 SATA II / PATA Controller" }, - { "11ab", "6141", "88SE614x SATA II PCI-E controller" }, - { "11ab", "6145", "88SE6145 SATA II PCI-E controller" }, - { "11ab", "6180", "88F6180 [Kirkwood] ARM SoC" }, - { "11ab", "6192", "88F6190/6192 [Kirkwood] ARM SoC" }, - { "11ab", "6281", "88F6281 [Kirkwood] ARM SoC" }, - { "11ab", "6381", "MV78xx0 [Discovery Innovation] ARM SoC" }, - { "11ab", "6440", "88SE6440 SAS/SATA PCIe controller" }, - { "11ab", "6450", "64560 System Controller" }, - { "11ab", "6460", "MV64360/64361/64362 System Controller" }, - { "11ab", "6480", "MV64460/64461/64462 System Controller" }, - { "11ab", "6485", "MV64460/64461/64462 System Controller, Revision B" }, - { "11ab", "6560", "88F6560 [Avanta] ARM SoC" }, - { "11ab", "6710", "88F6710 [Armada 370] ARM SoC" }, - { "11ab", "6820", "88F6820 [Armada 385] ARM SoC" }, - { "11ab", "6828", "88F6828 [Armada 388] ARM SoC" }, - { "11ab", "6920", "88F6920 [Armada 390] ARM SoC" }, - { "11ab", "7042", "88SX7042 PCI-e 4-port SATA-II" }, - { "11ab", "7810", "MV78100 [Discovery Innovation] ARM SoC" }, - { "11ab", "7820", "MV78200 [Discovery Innovation] ARM SoC" }, - { "11ab", "7823", "MV78230 [Armada XP] ARM SoC" }, - { "11ab", "7846", "MV78460 [Armada XP] ARM SoC" }, - { "11ab", "d40f", "Bobcat3 Ethernet Switch" }, - { "11ab", "f003", "GT-64010 Primary Image Piranha Image Generator" }, - { "11ad", "0002", "LNE100TX" }, - { "11ad", "c115", "LNE100TX [Linksys EtherFast 10/100]" }, - { "11af", "0001", "Cinema" }, - { "11af", "ee40", "Digidesign Audiomedia III" }, - { "11b0", "0002", "V300PSC" }, - { "11b0", "0292", "V292PBC [Am29030/40 Bridge]" }, - { "11b0", "0960", "V96xPBC" }, - { "11b0", "880a", "Deltacast Delta-HD-22" }, - { "11b0", "c960", "V96DPC" }, - { "11b8", "0001", "Quad PeerMaster" }, - { "11b9", "c0ed", "SSA Controller" }, - { "11bc", "0001", "NP-PCI" }, - { "11bd", "002e", "PCTV 40i" }, - { "11bd", "0040", "Royal TS Function 1" }, - { "11bd", "0041", "RoyalTS Function 2" }, - { "11bd", "0042", "Royal TS Function 3" }, - { "11bd", "0051", "PCTV HD 800i" }, - { "11bd", "bede", "AV/DV Studio Capture Card" }, - { "11c1", "0440", "56k WinModem" }, - { "11c1", "0441", "56k WinModem" }, - { "11c1", "0442", "56k WinModem" }, - { "11c1", "0443", "LT WinModem" }, - { "11c1", "0444", "LT WinModem" }, - { "11c1", "0445", "LT WinModem" }, - { "11c1", "0446", "LT WinModem" }, - { "11c1", "0447", "LT WinModem" }, - { "11c1", "0448", "WinModem 56k" }, - { "11c1", "0449", "L56xM+S [Mars-2] WinModem 56k" }, - { "11c1", "044a", "F-1156IV WinModem (V90, 56KFlex)" }, - { "11c1", "044b", "LT WinModem" }, - { "11c1", "044c", "LT WinModem" }, - { "11c1", "044d", "LT WinModem" }, - { "11c1", "044e", "LT WinModem" }, - { "11c1", "044f", "V90 WildWire Modem" }, - { "11c1", "0450", "LT WinModem" }, - { "11c1", "0451", "LT WinModem" }, - { "11c1", "0452", "LT WinModem" }, - { "11c1", "0453", "LT WinModem" }, - { "11c1", "0454", "LT WinModem" }, - { "11c1", "0455", "LT WinModem" }, - { "11c1", "0456", "LT WinModem" }, - { "11c1", "0457", "LT WinModem" }, - { "11c1", "0458", "LT WinModem" }, - { "11c1", "0459", "LT WinModem" }, - { "11c1", "045a", "LT WinModem" }, - { "11c1", "045c", "LT WinModem" }, - { "11c1", "0461", "V90 WildWire Modem" }, - { "11c1", "0462", "V90 WildWire Modem" }, - { "11c1", "0480", "Venus Modem (V90, 56KFlex)" }, - { "11c1", "048c", "V.92 56K WinModem" }, - { "11c1", "048f", "V.92 56k WinModem" }, - { "11c1", "0620", "Lucent V.92 Data/Fax Modem" }, - { "11c1", "2600", "StarPro26XX family (SP2601, SP2603, SP2612) DSP" }, - { "11c1", "5400", "OR3TP12 FPSC" }, - { "11c1", "5656", "Venus Modem" }, - { "11c1", "5801", "USB" }, - { "11c1", "5802", "USS-312 USB Controller" }, - { "11c1", "5803", "USS-344S USB Controller" }, - { "11c1", "5811", "FW322/323 [TrueFire] 1394a Controller" }, - { "11c1", "5901", "FW643 [TrueFire] PCIe 1394b Controller" }, - { "11c1", "5903", "FW533 [TrueFire] PCIe 1394a Controller" }, - { "11c1", "8110", "T8110 H.100/H.110 TDM switch" }, - { "11c1", "ab10", "WL60010 Wireless LAN MAC" }, - { "11c1", "ab11", "WL60040 Multimode Wireles LAN MAC" }, - { "11c1", "ab20", "ORiNOCO PCI Adapter" }, - { "11c1", "ab21", "Agere Wireless PCI Adapter" }, - { "11c1", "ab30", "Hermes2 Mini-PCI WaveLAN a/b/g" }, - { "11c1", "ed00", "ET-131x PCI-E Ethernet Controller" }, - { "11c1", "ed01", "ET-131x PCI-E Ethernet Controller" }, - { "11c8", "0658", "PSB32 SCI-Adapter D31x" }, - { "11c8", "d665", "PSB64 SCI-Adapter D32x" }, - { "11c8", "d667", "PSB66 SCI-Adapter D33x" }, - { "11c9", "0010", "16-line serial port w/- DMA" }, - { "11c9", "0011", "4-line serial port w/- DMA" }, - { "11cb", "2000", "PCI_9050" }, - { "11cb", "4000", "SUPI_1" }, - { "11cb", "8000", "T225" }, - { "11d1", "01f7", "VxP524" }, - { "11d1", "01f9", "VxP951" }, - { "11d4", "1535", "Blackfin BF535 processor" }, - { "11d4", "1805", "SM56 PCI modem" }, - { "11d5", "0115", "10115" }, - { "11d5", "0117", "10117" }, - { "11de", "6017", "miroVIDEO DC30" }, - { "11de", "6057", "ZR36057PQC Video cutting chipset" }, - { "11de", "6120", "ZR36120" }, - { "11e3", "0001", "COM-ON-AIR Dosch&Amand DECT" }, - { "11e3", "0560", "QL5064 Companion Design Demo Board" }, - { "11e3", "5030", "PC Watchdog" }, - { "11e3", "8417", "QL5064 [QuickPCI] PCI v2.2 bridge for SMT417 Dual TMS320C6416T PMC Module" }, - { "11ec", "000d", "Oculus-F/64P" }, - { "11ec", "1800", "Cobra/C6" }, - { "11f0", "4231", "FDDI" }, - { "11f0", "4232", "FASTline UTP Quattro" }, - { "11f0", "4233", "FASTline FO" }, - { "11f0", "4234", "FASTline UTP" }, - { "11f0", "4235", "FASTline-II UTP" }, - { "11f0", "4236", "FASTline-II FO" }, - { "11f0", "4731", "GIGAline" }, - { "11f3", "0011", "KPCI-PIO24" }, - { "11f4", "2915", "CAMAC controller" }, - { "11f6", "0112", "ENet100VG4" }, - { "11f6", "0113", "FreedomLine 100" }, - { "11f6", "1401", "ReadyLink 2000" }, - { "11f6", "2011", "RL100-ATX 10/100" }, - { "11f6", "2201", "ReadyLink 100TX (Winbond W89C840)" }, - { "11f6", "9881", "RL100TX Fast Ethernet" }, - { "11f8", "5220", "BR522x [PMC-Sierra maxRAID SAS Controller]" }, - { "11f8", "7364", "PM7364 [FREEDM - 32 Frame Engine & Datalink Mgr]" }, - { "11f8", "7375", "PM7375 [LASAR-155 ATM SAR]" }, - { "11f8", "7384", "PM7384 [FREEDM - 84P672 Frm Engine & Datalink Mgr]" }, - { "11f8", "8000", "PM8000 [SPC - SAS Protocol Controller]" }, - { "11f8", "8009", "PM8009 SPCve 8x6G" }, - { "11f8", "8018", "PM8018 Adaptec SAS Adaptor ASA-70165H PCIe Gen3 x8 6 Gbps 16-lane 4x SFF-8644" }, - { "11f8", "8032", "PM8032 Tachyon QE8" }, - { "11f8", "8053", "PM8053 SXP 12G 24-port SAS/SATA expander" }, - { "11f8", "8054", "PM8054 SXP 12G 36-port SAS/SATA expander" }, - { "11f8", "8055", "PM8055 SXP 12G 48-port SAS/SATA expander" }, - { "11f8", "8056", "PM8056 SXP 12G 68-port SAS/SATA expander" }, - { "11f8", "8060", "PM8060 SRCv 12G eight-port SAS/SATA RoC" }, - { "11f8", "8063", "PM8063 SRCv 12G 16-port SAS/SATA RoC" }, - { "11f8", "8070", "PM8070 Tachyon SPCv 12G eight-port SAS/SATA controller" }, - { "11f8", "8071", "PM8071 Tachyon SPCve 12G eight-port SAS/SATA controller" }, - { "11f8", "8072", "PM8072 Tachyon SPCv 12G 16-port SAS/SATA controller" }, - { "11f8", "8073", "PM8073 Tachyon SPCve 12G 16-port SAS/SATA controller" }, - { "11f8", "8531", "PM8531 PFX 24xG3 PCIe Fanout Switch" }, - { "11f8", "8532", "PM8532 PFX 32xG3 PCIe Fanout Switch" }, - { "11f8", "8533", "PM8533 PFX 48xG3 PCIe Fanout Switch" }, - { "11f8", "8534", "PM8534 PFX 64xG3 PCIe Fanout Switch" }, - { "11f8", "8535", "PM8535 PFX 80xG3 PCIe Fanout Switch" }, - { "11f8", "8536", "PM8536 PFX 96xG3 PCIe Fanout Switch" }, - { "11f8", "8546", "PM8546 B-FEIP PSX 96xG3 PCIe Storage Switch" }, - { "11f8", "8562", "PM8562 Switchtec PFX-L 32xG3 Fanout-Lite PCIe Gen3 Switch" }, - { "11fe", "0001", "RocketPort PCI 32-port w/external I/F" }, - { "11fe", "0002", "RocketPort PCI 8-port w/external I/F" }, - { "11fe", "0003", "RocketPort PCI 16-port w/external I/F" }, - { "11fe", "0004", "RocketPort PCI 4-port w/Quad Cable" }, - { "11fe", "0005", "RocketPort PCI 8-port w/Octa Cable" }, - { "11fe", "0006", "RocketPort PCI 8-port w/RJ11 connectors" }, - { "11fe", "0007", "RocketPort PCI 4-port w/RJ45 connectors" }, - { "11fe", "0008", "RocketPort PCI 8-port w/DB78 SNI connector (Siemens)" }, - { "11fe", "0009", "RocketPort PCI 16-port w/DB78 SNI connector (Siemens)" }, - { "11fe", "000a", "RocketPort PCI Plus 4-port w/Quad Cable" }, - { "11fe", "000b", "RocketPort PCI Plus 8-port w/Octa Cable" }, - { "11fe", "000c", "RocketModem II 6-port" }, - { "11fe", "000d", "RocketModem 4-port" }, - { "11fe", "000e", "RocketPort PCI Plus 2-port RS-232 w/DB9 connectors" }, - { "11fe", "000f", "RocketPort PCI Plus 2-port SMPTE w/DB9 connectors" }, - { "11fe", "0040", "RocketPort INFINITY 8-port w/Octa Cable RJ45" }, - { "11fe", "0041", "RocketPort INFINITY 32-port w/external I/F" }, - { "11fe", "0042", "RocketPort INFINITY 8-port w/external I/F" }, - { "11fe", "0043", "RocketPort INFINITY 16-port w/external I/F" }, - { "11fe", "0044", "RocketPort INFINITY 4-port w/Quad Cable DB" }, - { "11fe", "0045", "RocketPort INFINITY 8-port w/Octa Cable DB" }, - { "11fe", "0046", "RocketPort INFINITY 4-port w/external I/F" }, - { "11fe", "0047", "RocketPort INFINITY 4J (4-port) w/RJ45 connectors" }, - { "11fe", "0048", "RocketPort INFINITY 4J (4-port) w/RJ45 connectors" }, - { "11fe", "004a", "RocketPort INFINITY Plus 4-port" }, - { "11fe", "004b", "RocketPort INFINITY Plus 8-port" }, - { "11fe", "004c", "RocketModem INFINITY III 8-port" }, - { "11fe", "004d", "RocketModem INFINITY III 4-port" }, - { "11fe", "004e", "RocketPort INFINITY Plus 2-port" }, - { "11fe", "004f", "RocketPort INFINITY 2-port SMPTE w/DB9 connectors" }, - { "11fe", "0050", "RocketPort INFINITY Plus 4-port RJ45" }, - { "11fe", "0051", "RocketPort INFINITY Plus 8-port RJ11" }, - { "11fe", "0052", "RocketPort INFINITY 8-port SMPTE w/DB9 Connectors" }, - { "11fe", "0060", "RocketPort EXPRESS 8-port w/Octa Cable" }, - { "11fe", "0061", "RocketPort EXPRESS 32-port w/external I/F" }, - { "11fe", "0062", "RocketPort EXPRESS 8-Port w/external I/F" }, - { "11fe", "0063", "RocketPort EXPRESS 16-port w/external I/F" }, - { "11fe", "0064", "RocketPort EXPRESS 4-port w/Quad Cable" }, - { "11fe", "0065", "RocketPort EXPRESS 8-port w/Octa Cable" }, - { "11fe", "0066", "RocketPort EXPRESS 4-port w/external I/F" }, - { "11fe", "0067", "RocketPort EXPRESS 4J (4-port) w/RJ45 connectors" }, - { "11fe", "0068", "RocketPort EXPRESS 8J (8-port) w/RJ11 connectors" }, - { "11fe", "006f", "RocketPort EXPRESS SMPTE 2-port" }, - { "11fe", "0072", "RocketPort EXPRESS SMPTE 8-port w/external I/F" }, - { "11fe", "0801", "RocketPort uPCI 32-port w/external I/F" }, - { "11fe", "0802", "RocketPort uPCI 8-port w/external I/F" }, - { "11fe", "0803", "RocketPort uPCI 16-port w/external I/F" }, - { "11fe", "0805", "RocketPort uPCI 8-port w/Octa Cable" }, - { "11fe", "080b", "RocketPort Plus uPCI 8-port w/Octa Cable" }, - { "11fe", "080c", "RocketModem III 8-port" }, - { "11fe", "080d", "RocketModem III 4-port" }, - { "11fe", "080e", "RocketPort uPCI 2-port RS232 w/DB9 connectors" }, - { "11fe", "080f", "RocketPort uPCI SMPTE 2-port" }, - { "11fe", "0810", "RocketPort Plus uPCI 4J (4-port) w/RJ45 connectors" }, - { "11fe", "0811", "RocketPort Plus uPCI 8J (8-port) w/RJ11 connectors" }, - { "11fe", "0812", "RocketPort Plus uPCI 422 8-port" }, - { "11fe", "0813", "RocketModem IV uPCI 8-port" }, - { "11fe", "0814", "RocketModem IV uPCI 4-port" }, - { "11fe", "0903", "RocketPort Compact PCI 16 port w/external I/F" }, - { "11fe", "8015", "RocketPort 550 4-port" }, - { "11fe", "8805", "RocketPort uPCI 4-port w/Quad Cable" }, - { "11fe", "880b", "RocketPort Plus uPCI 4-port w/Quad Cable" }, - { "11fe", "8812", "RocketPort Plus uPCI 4-port RS422 w/Quad Cable" }, - { "11ff", "0003", "AG-5" }, - { "1202", "4300", "Gigabit Ethernet Adapter" }, - { "1204", "1965", "SB6501 802.11ad Wireless Network Adapter" }, - { "1208", "4853", "HS-Link Device" }, - { "120e", "0100", "Cyclom-Y below first megabyte" }, - { "120e", "0101", "Cyclom-Y above first megabyte" }, - { "120e", "0102", "Cyclom-4Y below first megabyte" }, - { "120e", "0103", "Cyclom-4Y above first megabyte" }, - { "120e", "0104", "Cyclom-8Y below first megabyte" }, - { "120e", "0105", "Cyclom-8Y above first megabyte" }, - { "120e", "0200", "Cyclades-Z below first megabyte" }, - { "120e", "0201", "Cyclades-Z above first megabyte" }, - { "120e", "0300", "PC300/RSV or /X21 (2 ports)" }, - { "120e", "0301", "PC300/RSV or /X21 (1 port)" }, - { "120e", "0310", "PC300/TE (2 ports)" }, - { "120e", "0311", "PC300/TE (1 port)" }, - { "120e", "0320", "PC300/TE-M (2 ports)" }, - { "120e", "0321", "PC300/TE-M (1 port)" }, - { "120e", "0400", "PC400" }, - { "120f", "0001", "Roadrunner serial HIPPI" }, - { "1217", "00f7", "Firewire (IEEE 1394)" }, - { "1217", "10f7", "1394 OHCI Compliant Host Controller" }, - { "1217", "11f7", "OZ600 1394a-2000 Controller" }, - { "1217", "13f7", "1394 OHCI Compliant Host Controller" }, - { "1217", "6729", "OZ6729" }, - { "1217", "673a", "OZ6730" }, - { "1217", "6832", "OZ6832/6833 CardBus Controller" }, - { "1217", "6836", "OZ6836/6860 CardBus Controller" }, - { "1217", "6872", "OZ6812 CardBus Controller" }, - { "1217", "6925", "OZ6922 CardBus Controller" }, - { "1217", "6933", "OZ6933/711E1 CardBus/SmartCardBus Controller" }, - { "1217", "6972", "OZ601/6912/711E0 CardBus/SmartCardBus Controller" }, - { "1217", "7110", "OZ711Mx 4-in-1 MemoryCardBus Accelerator" }, - { "1217", "7112", "OZ711EC1/M1 SmartCardBus/MemoryCardBus Controller" }, - { "1217", "7113", "OZ711EC1 SmartCardBus Controller" }, - { "1217", "7114", "OZ711M1/MC1 4-in-1 MemoryCardBus Controller" }, - { "1217", "7120", "Integrated MMC/SD Controller" }, - { "1217", "7130", "Integrated MS/xD Controller" }, - { "1217", "7134", "OZ711MP1/MS1 MemoryCardBus Controller" }, - { "1217", "7135", "Cardbus bridge" }, - { "1217", "7136", "OZ711SP1 Memory CardBus Controller" }, - { "1217", "71e2", "OZ711E2 SmartCardBus Controller" }, - { "1217", "7212", "OZ711M2 4-in-1 MemoryCardBus Controller" }, - { "1217", "7213", "OZ6933E CardBus Controller" }, - { "1217", "7223", "OZ711M3/MC3 4-in-1 MemoryCardBus Controller" }, - { "1217", "7233", "OZ711MP3/MS3 4-in-1 MemoryCardBus Controller" }, - { "1217", "8120", "Integrated MMC/SD Controller" }, - { "1217", "8130", "Integrated MS/MSPRO/xD Controller" }, - { "1217", "8220", "OZ600FJ1/OZ900FJ1 SD/MMC Card Reader Controller" }, - { "1217", "8221", "OZ600FJ0/OZ900FJ0/OZ600FJS SD/MMC Card Reader Controller" }, - { "1217", "8320", "OZ600RJ1/OZ900RJ1 SD/MMC Card Reader Controller" }, - { "1217", "8321", "OZ600RJ0/OZ900RJ0/OZ600RJS SD/MMC Card Reader Controller" }, - { "1217", "8330", "OZ600 MS/xD Controller" }, - { "1217", "8331", "O2 Flash Memory Card" }, - { "1217", "8520", "SD/MMC Card Reader Controller" }, - { "1217", "8621", "SD/MMC Card Reader Controller" }, - { "121a", "0001", "Voodoo" }, - { "121a", "0002", "Voodoo 2" }, - { "121a", "0003", "Voodoo Banshee" }, - { "121a", "0004", "Voodoo Banshee [Velocity 100]" }, - { "121a", "0005", "Voodoo 3" }, - { "121a", "0009", "Voodoo 4 / Voodoo 5" }, - { "121a", "0057", "Voodoo 3/3000 [Avenger]" }, - { "121e", "0201", "Myrinet 2000 Scalable Cluster Interconnect" }, - { "1220", "1220", "AMCC 5933 TMS320C80 DSP/Imaging board" }, - { "1221", "9172", "PO-64L(PCI)H [Isolated Digital Output Board for PCI]" }, - { "1221", "91a2", "PO-32L(PCI)H [Isolated Digital Output Board for PCI]" }, - { "1221", "91c3", "DA16-16(LPCI)L [Un-insulated highly precise analog output board for Low Profile PCI]" }, - { "1221", "b152", "DIO-96D2-LPCI" }, - { "1221", "c103", "ADA16-32/2(PCI)F [High-Speed Analog I/O Board for PCI]" }, - { "1223", "0003", "PM/Link" }, - { "1223", "0004", "PM/T1" }, - { "1223", "0005", "PM/E1" }, - { "1223", "0008", "PM/SLS" }, - { "1223", "0009", "BajaSpan Resource Target" }, - { "1223", "000a", "BajaSpan Section 0" }, - { "1223", "000b", "BajaSpan Section 1" }, - { "1223", "000c", "BajaSpan Section 2" }, - { "1223", "000d", "BajaSpan Section 3" }, - { "1223", "000e", "PM/PPC" }, - { "1227", "0006", "Raptor GFX 8P" }, - { "1227", "0023", "Raptor GFX [1100T]" }, - { "1227", "0045", "Raptor 4000-L [Linux version]" }, - { "1227", "004a", "Raptor 4000-LR-L [Linux version]" }, - { "122d", "1206", "368DSP" }, - { "122d", "1400", "Trident PCI288-Q3DII (NX)" }, - { "122d", "50dc", "3328 Audio" }, - { "122d", "80da", "3328 Audio" }, - { "122e", "7722", "Napatech XL1" }, - { "122e", "7724", "Napatech XL2/XA" }, - { "122e", "7729", "Napatech XD" }, - { "1231", "04e1", "Desktop PCI Telephony 4" }, - { "1231", "05e1", "Desktop PCI Telephony 5/6" }, - { "1231", "0d00", "LightParser" }, - { "1231", "0d02", "LightParser 2" }, - { "1231", "0d13", "Desktop PCI L1/L3 Telephony" }, - { "1236", "0000", "RealMagic64/GX" }, - { "1236", "6401", "REALmagic 64/GX (SD 6425)" }, - { "123d", "0000", "EasyConnect 8/32" }, - { "123d", "0002", "EasyConnect 8/64" }, - { "123d", "0003", "EasyIO" }, - { "123f", "00e4", "MPEG" }, - { "123f", "8120", "DVxplore Codec" }, - { "123f", "8888", "Cinemaster C 3.0 DVD Decoder" }, - { "1242", "1560", "JNIC-1560 PCI-X Fibre Channel Controller" }, - { "1242", "4643", "FCI-1063 Fibre Channel Adapter" }, - { "1242", "6562", "FCX2-6562 Dual Channel PCI-X Fibre Channel Adapter" }, - { "1242", "656a", "FCX-6562 PCI-X Fibre Channel Adapter" }, - { "1244", "0700", "B1 ISDN" }, - { "1244", "0800", "C4 ISDN" }, - { "1244", "0a00", "A1 ISDN [Fritz]" }, - { "1244", "0e00", "Fritz!Card PCI v2.0 ISDN" }, - { "1244", "0e80", "Fritz!Card PCI v2.1 ISDN" }, - { "1244", "1100", "C2 ISDN" }, - { "1244", "1200", "T1 ISDN" }, - { "1244", "2700", "Fritz!Card DSL SL" }, - { "1244", "2900", "Fritz!Card DSL v2.0" }, - { "124b", "0040", "PCI-40A or cPCI-200 Quad IndustryPack carrier" }, - { "124d", "0000", "EasyConnection 8/32" }, - { "124d", "0002", "EasyConnection 8/64" }, - { "124d", "0003", "EasyIO" }, - { "124d", "0004", "EasyConnection/RA" }, - { "124f", "0041", "IFT-2000 Series RAID Controller" }, - { "1254", "0065", "DVB Master FD" }, - { "1254", "007c", "DVB Master Quad/o" }, - { "1255", "1110", "MPEG Forge" }, - { "1255", "1210", "MPEG Fusion" }, - { "1255", "2110", "VideoPlex" }, - { "1255", "2120", "VideoPlex CC" }, - { "1255", "2130", "VideoQuest" }, - { "1256", "4201", "PCI-2220I" }, - { "1256", "4401", "PCI-2240I" }, - { "1256", "5201", "PCI-2000" }, - { "1259", "2560", "AT-2560 Fast Ethernet Adapter (i82557B)" }, - { "1259", "2801", "AT-2801FX (RTL-8139)" }, - { "1259", "a117", "RTL81xx Fast Ethernet" }, - { "1259", "a11e", "RTL81xx Fast Ethernet" }, - { "1259", "a120", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "125b", "1400", "AX88141 Fast Ethernet Controller" }, - { "125b", "9100", "AX99100 PCIe to Multi I/O Controller" }, - { "125c", "0101", "Saturn 4520P" }, - { "125c", "0640", "Aries 16000P" }, - { "125d", "0000", "ES336H Fax Modem (Early Model)" }, - { "125d", "1948", "ES1948 Maestro-1" }, - { "125d", "1968", "ES1968 Maestro 2" }, - { "125d", "1969", "ES1938/ES1946/ES1969 Solo-1 Audiodrive" }, - { "125d", "1978", "ES1978 Maestro 2E" }, - { "125d", "1988", "ES1988 Allegro-1" }, - { "125d", "1989", "ESS Modem" }, - { "125d", "1998", "ES1983S Maestro-3i PCI Audio Accelerator" }, - { "125d", "1999", "ES1983S Maestro-3i PCI Modem Accelerator" }, - { "125d", "199a", "ES1983S Maestro-3i PCI Audio Accelerator" }, - { "125d", "199b", "ES1983S Maestro-3i PCI Modem Accelerator" }, - { "125d", "2808", "ES336H Fax Modem (Later Model)" }, - { "125d", "2838", "ES2838/2839 SuperLink Modem" }, - { "125d", "2898", "ES2898 Modem" }, - { "125f", "2071", "CC PMC/232" }, - { "125f", "2084", "CC PMC/23P" }, - { "125f", "2091", "CC PMC/422" }, - { "1260", "3872", "ISL3872 [Prism 3]" }, - { "1260", "3873", "ISL3874 [Prism 2.5]/ISL3872 [Prism 3]" }, - { "1260", "3877", "ISL3877 [Prism Indigo]" }, - { "1260", "3886", "ISL3886 [Prism Javelin/Prism Xbow]" }, - { "1260", "3890", "ISL3890 [Prism GT/Prism Duette]/ISL3886 [Prism Javelin/Prism Xbow]" }, - { "1260", "8130", "HMP8130 NTSC/PAL Video Decoder" }, - { "1260", "8131", "HMP8131 NTSC/PAL Video Decoder" }, - { "1260", "ffff", "ISL3886IK" }, - { "1266", "0001", "NE10/100 Adapter (i82557B)" }, - { "1266", "1910", "NE2000Plus (RT8029) Ethernet Adapter" }, - { "1267", "5352", "PCR2101" }, - { "1267", "5a4b", "Telsat Turbo" }, - { "1269", "00b3", "5G Data Card [Cinterion MV31-W]" }, - { "126c", "1211", "10/100BaseTX [RTL81xx]" }, - { "126c", "126c", "802.11b Wireless Ethernet Adapter" }, - { "126f", "0501", "SM501 VoyagerGX Rev. AA" }, - { "126f", "0510", "SM501 VoyagerGX Rev. B" }, - { "126f", "0710", "SM710 LynxEM" }, - { "126f", "0712", "SM712 LynxEM+" }, - { "126f", "0718", "SM718 LynxSE+" }, - { "126f", "0720", "SM720 Lynx3DM" }, - { "126f", "0730", "SM731 Cougar3DR" }, - { "126f", "0750", "SM750" }, - { "126f", "0810", "SM810 LynxE" }, - { "126f", "0811", "SM811 LynxE" }, - { "126f", "0820", "SM820 Lynx3D" }, - { "126f", "0910", "SM910" }, - { "126f", "2262", "SM2262/SM2262EN SSD Controller" }, - { "126f", "2263", "SM2263EN/SM2263XT SSD Controller" }, - { "1273", "0002", "DirecPC" }, - { "1274", "1171", "ES1373 / Creative Labs CT5803 [AudioPCI]" }, - { "1274", "1371", "ES1371/ES1373 / Creative Labs CT2518" }, - { "1274", "5000", "ES1370 [AudioPCI]" }, - { "1274", "5880", "5880B / Creative Labs CT5880" }, - { "1274", "8001", "CT5880 [AudioPCI]" }, - { "1274", "8002", "5880A [AudioPCI]" }, - { "1278", "0701", "TPE3/TM3 PowerPC Node" }, - { "1278", "0710", "TPE5 PowerPC PCI board" }, - { "1278", "1100", "PMC-FPGA02" }, - { "1278", "1101", "TS-C43 card with 4 ADSP-TS101 processors" }, - { "1279", "0060", "TM8000 Northbridge" }, - { "1279", "0061", "TM8000 AGP bridge" }, - { "1279", "0295", "Northbridge" }, - { "1279", "0395", "LongRun Northbridge" }, - { "1279", "0396", "SDRAM controller" }, - { "1279", "0397", "BIOS scratchpad" }, - { "127a", "1002", "HCF 56k Data/Fax Modem" }, - { "127a", "1003", "HCF 56k Data/Fax Modem" }, - { "127a", "1004", "HCF 56k Data/Fax/Voice Modem" }, - { "127a", "1005", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "127a", "1022", "HCF 56k Modem" }, - { "127a", "1023", "HCF 56k Data/Fax Modem" }, - { "127a", "1024", "HCF 56k Data/Fax/Voice Modem" }, - { "127a", "1025", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "127a", "1026", "HCF 56k PCI Speakerphone Modem" }, - { "127a", "1032", "HCF 56k Modem" }, - { "127a", "1033", "HCF 56k Modem" }, - { "127a", "1034", "HCF 56k Modem" }, - { "127a", "1035", "HCF 56k PCI Speakerphone Modem" }, - { "127a", "1036", "HCF 56k Modem" }, - { "127a", "1085", "HCF 56k Volcano PCI Modem" }, - { "127a", "2004", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "127a", "2005", "HCF 56k Data/Fax Modem" }, - { "127a", "2013", "HSF 56k Data/Fax Modem" }, - { "127a", "2014", "HSF 56k Data/Fax/Voice Modem" }, - { "127a", "2015", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "127a", "2016", "HSF 56k Data/Fax/Voice/Spkp Modem" }, - { "127a", "4311", "Riptide HSF 56k PCI Modem" }, - { "127a", "4320", "Riptide PCI Audio Controller" }, - { "127a", "4321", "Riptide HCF 56k PCI Modem" }, - { "127a", "4322", "Riptide PCI Game Controller" }, - { "127a", "8234", "RapidFire 616X ATM155 Adapter" }, - { "127e", "0010", "Videum 1000 Plus" }, - { "1282", "6585", "DM562P V90 Modem" }, - { "1282", "9009", "DM9009 Ethernet Controller" }, - { "1282", "9100", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "1282", "9102", "DM9102 Fast Ethernet Controller" }, - { "1282", "9132", "Ethernet 100/10 MBit" }, - { "1283", "673a", "IT8330G" }, - { "1283", "8152", "IT8152F/G Advanced RISC-to-PCI Companion Chip" }, - { "1283", "8211", "ITE 8211F Single Channel UDMA 133" }, - { "1283", "8212", "IT8212 Dual channel ATA RAID controller" }, - { "1283", "8213", "IT8213 IDE Controller" }, - { "1283", "8330", "IT8330G" }, - { "1283", "8872", "IT887xF PCI to ISA I/O chip with SMB, GPIO, Serial or Parallel Port" }, - { "1283", "8888", "IT8888F/G PCI to ISA Bridge with SMB [Golden Gate]" }, - { "1283", "8889", "IT8889F PCI to ISA Bridge" }, - { "1283", "8892", "IT8892E PCIe to PCI Bridge" }, - { "1283", "8893", "IT8893E PCIe to PCI Bridge" }, - { "1283", "e886", "IT8330G" }, - { "1285", "0100", "AGOGO sound chip (aka ESS Maestro 1)" }, - { "1287", "001e", "LS220D DVD Decoder" }, - { "1287", "001f", "LS220C DVD Decoder" }, - { "128d", "0021", "ATM155 Adapter" }, - { "128e", "0008", "ST128 WSS/SB" }, - { "128e", "0009", "ST128 SAM9407" }, - { "128e", "000a", "ST128 Game Port" }, - { "128e", "000b", "ST128 MPU Port" }, - { "128e", "000c", "ST128 Ctrl Port" }, - { "1292", "fc02", "Pyramid3D TR25202" }, - { "1295", "0800", "PXR800" }, - { "1295", "1000", "PXD1000" }, - { "129a", "0615", "PBT-615 PCI-X Bus Analyzer" }, - { "129a", "1100", "PMC-FPGA05" }, - { "129a", "1106", "XMC-FPGA05F, PCI interface" }, - { "129a", "1107", "XMC-FPGA05F, PCIe interface" }, - { "129a", "1108", "XMC-FPGA05D, PCI interface" }, - { "129a", "1109", "XMC-FPGA05D, PCIe interface" }, - { "12a3", "8105", "T8105 H100 Digital Switch" }, - { "12ab", "0000", "MPG160/Kuroutoshikou ITVC15-STVLP" }, - { "12ab", "0002", "AU8830 [Vortex2] Based Sound Card With A3D Support" }, - { "12ab", "0003", "T507 (DVB-T) TV tuner/capture device" }, - { "12ab", "2300", "Club-3D Zap TV2100" }, - { "12ab", "3000", "MPG-200C PCI DVD Decoder Card" }, - { "12ab", "4789", "MPC788 MiniPCI Hybrid TV Tuner" }, - { "12ab", "fff3", "MPG600/Kuroutoshikou ITVC16-STVLP" }, - { "12ab", "ffff", "MPG600/Kuroutoshikou ITVC16-STVLP" }, - { "12ae", "0001", "AceNIC Gigabit Ethernet" }, - { "12ae", "0002", "AceNIC Gigabit Ethernet (Copper)" }, - { "12ae", "00fa", "Farallon PN9100-T Gigabit Ethernet" }, - { "12b9", "1006", "WinModem" }, - { "12b9", "1007", "USR 56k Internal WinModem" }, - { "12b9", "1008", "56K FaxModem Model 5610" }, - { "12be", "3041", "AN3041Q CO-MEM" }, - { "12be", "3042", "AN3042Q CO-MEM Lite" }, - { "12c3", "0058", "PCI NE2K Ethernet" }, - { "12c3", "5598", "PCI NE2K Ethernet" }, - { "12c4", "0001", "Blue HEAT/PCI 8 (RS232/CL/RJ11)" }, - { "12c4", "0002", "Blue HEAT/PCI 4 (RS232)" }, - { "12c4", "0003", "Blue HEAT/PCI 2 (RS232)" }, - { "12c4", "0004", "Blue HEAT/PCI 8 (UNIV, RS485)" }, - { "12c4", "0005", "Blue HEAT/PCI 4+4/6+2 (UNIV, RS232/485)" }, - { "12c4", "0006", "Blue HEAT/PCI 4 (OPTO, RS485)" }, - { "12c4", "0007", "Blue HEAT/PCI 2+2 (RS232/485)" }, - { "12c4", "0008", "Blue HEAT/PCI 2 (OPTO, Tx, RS485)" }, - { "12c4", "0009", "Blue HEAT/PCI 2+6 (RS232/485)" }, - { "12c4", "000a", "Blue HEAT/PCI 8 (Tx, RS485)" }, - { "12c4", "000b", "Blue HEAT/PCI 4 (Tx, RS485)" }, - { "12c4", "000c", "Blue HEAT/PCI 2 (20 MHz, RS485)" }, - { "12c4", "000d", "Blue HEAT/PCI 2 PTM" }, - { "12c4", "0100", "NT960/PCI" }, - { "12c4", "0201", "cPCI Titan - 2 Port" }, - { "12c4", "0202", "cPCI Titan - 4 Port" }, - { "12c4", "0300", "CTI PCI UART 2 (RS232)" }, - { "12c4", "0301", "CTI PCI UART 4 (RS232)" }, - { "12c4", "0302", "CTI PCI UART 8 (RS232)" }, - { "12c4", "0310", "CTI PCI UART 1+1 (RS232/485)" }, - { "12c4", "0311", "CTI PCI UART 2+2 (RS232/485)" }, - { "12c4", "0312", "CTI PCI UART 4+4 (RS232/485)" }, - { "12c4", "0320", "CTI PCI UART 2" }, - { "12c4", "0321", "CTI PCI UART 4" }, - { "12c4", "0322", "CTI PCI UART 8" }, - { "12c4", "0330", "CTI PCI UART 2 (RS485)" }, - { "12c4", "0331", "CTI PCI UART 4 (RS485)" }, - { "12c4", "0332", "CTI PCI UART 8 (RS485)" }, - { "12c5", "007e", "Imaging/Scanning Subsystem Engine" }, - { "12c5", "007f", "Imaging/Scanning Subsystem Engine" }, - { "12c5", "0081", "PCIVST [Grayscale Thresholding Engine]" }, - { "12c5", "0085", "Video Simulator/Sender" }, - { "12c5", "0086", "THR2 Multi-scale Thresholder" }, - { "12c7", "0546", "Springware D/120JCT-LS" }, - { "12c7", "0647", "Springware D/240JCT-T1" }, - { "12c7", "0676", "Springware D/41JCT-LS" }, - { "12c7", "0685", "Springware D/480JCT-2T1" }, - { "12cb", "0027", "SC4 (StudioCard)" }, - { "12cb", "002e", "StudioCard 2000" }, - { "12d2", "0008", "NV1" }, - { "12d2", "0009", "DAC64" }, - { "12d2", "0018", "Riva128" }, - { "12d2", "0019", "Riva128ZX" }, - { "12d2", "0020", "TNT" }, - { "12d2", "0028", "TNT2" }, - { "12d2", "0029", "UTNT2" }, - { "12d2", "002c", "VTNT2" }, - { "12d2", "00a0", "ITNT2" }, - { "12d4", "0200", "T1 Card" }, - { "12d5", "0003", "BSP16" }, - { "12d5", "1000", "BSP15" }, - { "12d8", "01a7", "7C21P100 2-port PCI-X to PCI-X Bridge" }, - { "12d8", "0303", "PCI Express Switch 3-3" }, - { "12d8", "0508", "PI7C9X20508GP PCI Express Switch 5Port-8Lane" }, - { "12d8", "2304", "PI7C9X2G304 EL/SL PCIe2 3-Port/4-Lane Packet Switch" }, - { "12d8", "2308", "PI7C9X2G308GP 8-lane PCI Express 2.0 Switch with 3 PCI Express ports" }, - { "12d8", "2404", "PI7C9X2G404 EL/SL PCIe2 4-Port/4-Lane Packet Switch" }, - { "12d8", "2608", "PI7C9X2G608GP PCIe2 6-Port/8-Lane Packet Switch" }, - { "12d8", "400a", "PI7C9X442SL PCI Express Bridge Port" }, - { "12d8", "400e", "PI7C9X442SL USB OHCI Controller" }, - { "12d8", "400f", "PI7C9X442SL USB EHCI Controller" }, - { "12d8", "71e2", "PI7C7300A/PI7C7300D PCI-to-PCI Bridge" }, - { "12d8", "71e3", "PI7C7300A/PI7C7300D PCI-to-PCI Bridge (Secondary Bus 2)" }, - { "12d8", "8140", "PI7C8140A PCI-to-PCI Bridge" }, - { "12d8", "8148", "PI7C8148A/PI7C8148B PCI-to-PCI Bridge" }, - { "12d8", "8150", "PCI to PCI Bridge" }, - { "12d8", "8152", "PI7C8152A/PI7C8152B/PI7C8152BI PCI-to-PCI Bridge" }, - { "12d8", "8154", "PI7C8154A/PI7C8154B/PI7C8154BI PCI-to-PCI Bridge" }, - { "12d8", "8619", "PI7C9X2G1616PR PCIe2 16-Port/16-Lane Packet Switch" }, - { "12d8", "e110", "PI7C9X110 PCI Express to PCI bridge" }, - { "12d8", "e111", "PI7C9X111SL PCIe-to-PCI Reversible Bridge" }, - { "12d8", "e130", "PCI Express to PCI-XPI7C9X130 PCI-X Bridge" }, - { "12d9", "0002", "PCI Prosody" }, - { "12d9", "0004", "cPCI Prosody" }, - { "12d9", "0005", "Aculab E1/T1 PCI card" }, - { "12d9", "1078", "Prosody X class e1000 device" }, - { "12de", "0200", "CryptoSwift CS200" }, - { "12e0", "0010", "ST16C654 Quad UART" }, - { "12e0", "0020", "ST16C654 Quad UART" }, - { "12e0", "0030", "ST16C654 Quad UART" }, - { "12eb", "0001", "Vortex 1" }, - { "12eb", "0002", "Vortex 2" }, - { "12eb", "0003", "AU8810 Vortex Digital Audio Processor" }, - { "12eb", "8803", "Vortex 56k Software Modem" }, - { "12f8", "0002", "VideoMaker" }, - { "12fb", "0001", "PMC-MAI" }, - { "12fb", "00f5", "F5 Dakar" }, - { "12fb", "02ad", "PMC-2MAI" }, - { "12fb", "2adc", "ePMC-2ADC" }, - { "12fb", "3100", "PRO-3100" }, - { "12fb", "3500", "PRO-3500" }, - { "12fb", "4d4f", "Modena" }, - { "12fb", "8120", "ePMC-8120" }, - { "12fb", "da62", "Daytona C6201 PCI (Hurricane)" }, - { "12fb", "db62", "Ingliston XBIF" }, - { "12fb", "dc62", "Ingliston PLX9054" }, - { "12fb", "dd62", "Ingliston JTAG/ISP" }, - { "12fb", "eddc", "ePMC-MSDDC" }, - { "12fb", "fa01", "ePMC-FPGA" }, - { "1303", "0030", "X3-SDF 4-channel XMC acquisition board" }, - { "1307", "0001", "PCI-DAS1602/16" }, - { "1307", "000b", "PCI-DIO48H" }, - { "1307", "000c", "PCI-PDISO8" }, - { "1307", "000d", "PCI-PDISO16" }, - { "1307", "000f", "PCI-DAS1200" }, - { "1307", "0010", "PCI-DAS1602/12" }, - { "1307", "0014", "PCI-DIO24H" }, - { "1307", "0015", "PCI-DIO24H/CTR3" }, - { "1307", "0016", "PCI-DIO48H/CTR15" }, - { "1307", "0017", "PCI-DIO96H" }, - { "1307", "0018", "PCI-CTR05" }, - { "1307", "0019", "PCI-DAS1200/JR" }, - { "1307", "001a", "PCI-DAS1001" }, - { "1307", "001b", "PCI-DAS1002" }, - { "1307", "001c", "PCI-DAS1602JR/16" }, - { "1307", "001d", "PCI-DAS6402/16" }, - { "1307", "001e", "PCI-DAS6402/12" }, - { "1307", "001f", "PCI-DAS16/M1" }, - { "1307", "0020", "PCI-DDA02/12" }, - { "1307", "0021", "PCI-DDA04/12" }, - { "1307", "0022", "PCI-DDA08/12" }, - { "1307", "0023", "PCI-DDA02/16" }, - { "1307", "0024", "PCI-DDA04/16" }, - { "1307", "0025", "PCI-DDA08/16" }, - { "1307", "0026", "PCI-DAC04/12-HS" }, - { "1307", "0027", "PCI-DAC04/16-HS" }, - { "1307", "0028", "PCI-DIO24" }, - { "1307", "0029", "PCI-DAS08" }, - { "1307", "002c", "PCI-INT32" }, - { "1307", "0033", "PCI-DUAL-AC5" }, - { "1307", "0034", "PCI-DAS-TC" }, - { "1307", "0035", "PCI-DAS64/M1/16" }, - { "1307", "0036", "PCI-DAS64/M2/16" }, - { "1307", "0037", "PCI-DAS64/M3/16" }, - { "1307", "004c", "PCI-DAS1000" }, - { "1307", "004d", "PCI-QUAD04" }, - { "1307", "0052", "PCI-DAS4020/12" }, - { "1307", "0053", "PCIM-DDA06/16" }, - { "1307", "0054", "PCI-DIO96" }, - { "1307", "005d", "PCI-DAS6023" }, - { "1307", "005e", "PCI-DAS6025" }, - { "1307", "005f", "PCI-DAS6030" }, - { "1307", "0060", "PCI-DAS6031" }, - { "1307", "0061", "PCI-DAS6032" }, - { "1307", "0062", "PCI-DAS6033" }, - { "1307", "0063", "PCI-DAS6034" }, - { "1307", "0064", "PCI-DAS6035" }, - { "1307", "0065", "PCI-DAS6040" }, - { "1307", "0066", "PCI-DAS6052" }, - { "1307", "0067", "PCI-DAS6070" }, - { "1307", "0068", "PCI-DAS6071" }, - { "1307", "006f", "PCI-DAS6036" }, - { "1307", "0070", "PCI-DAC6702" }, - { "1307", "0078", "PCI-DAS6013" }, - { "1307", "0079", "PCI-DAS6014" }, - { "1307", "0115", "PCIe-DAS1602/16" }, - { "1308", "0001", "NetCelerator Adapter" }, - { "1317", "0981", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "1317", "0985", "NC100 Network Everywhere Fast Ethernet 10/100" }, - { "1317", "1985", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "1317", "2850", "HSP MicroModem 56" }, - { "1317", "5120", "ADM5120 OpenGate System-on-Chip" }, - { "1317", "8201", "ADM8211 802.11b Wireless Interface" }, - { "1317", "8211", "ADM8211 802.11b Wireless Interface" }, - { "1317", "9511", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "1318", "0911", "GNIC-II PCI Gigabit Ethernet [Hamachi]" }, - { "1319", "0801", "Xwave QS3000A [FM801]" }, - { "1319", "0802", "Xwave QS3000A [FM801 game port]" }, - { "1319", "1000", "FM801 PCI Audio" }, - { "1319", "1001", "FM801 PCI Joystick" }, - { "131f", "1000", "CyberSerial (1-port) 16550" }, - { "131f", "1001", "CyberSerial (1-port) 16650" }, - { "131f", "1002", "CyberSerial (1-port) 16850" }, - { "131f", "1010", "Duet 1S(16550)+1P" }, - { "131f", "1011", "Duet 1S(16650)+1P" }, - { "131f", "1012", "Duet 1S(16850)+1P" }, - { "131f", "1020", "CyberParallel (1-port)" }, - { "131f", "1021", "CyberParallel (2-port)" }, - { "131f", "1030", "CyberSerial (2-port) 16550" }, - { "131f", "1031", "CyberSerial (2-port) 16650" }, - { "131f", "1032", "CyberSerial (2-port) 16850" }, - { "131f", "1034", "Trio 2S(16550)+1P" }, - { "131f", "1035", "Trio 2S(16650)+1P" }, - { "131f", "1036", "Trio 2S(16850)+1P" }, - { "131f", "1050", "CyberSerial (4-port) 16550" }, - { "131f", "1051", "CyberSerial (4-port) 16650" }, - { "131f", "1052", "CyberSerial (4-port) 16850" }, - { "131f", "2000", "CyberSerial (1-port) 16550" }, - { "131f", "2001", "CyberSerial (1-port) 16650" }, - { "131f", "2002", "CyberSerial (1-port) 16850" }, - { "131f", "2010", "Duet 1S(16550)+1P" }, - { "131f", "2011", "Duet 1S(16650)+1P" }, - { "131f", "2012", "Duet 1S(16850)+1P" }, - { "131f", "2020", "CyberParallel (1-port)" }, - { "131f", "2021", "CyberParallel (2-port)" }, - { "131f", "2030", "CyberSerial (2-port) 16550" }, - { "131f", "2031", "CyberSerial (2-port) 16650" }, - { "131f", "2032", "CyberSerial (2-port) 16850" }, - { "131f", "2040", "Trio 1S(16550)+2P" }, - { "131f", "2041", "Trio 1S(16650)+2P" }, - { "131f", "2042", "Trio 1S(16850)+2P" }, - { "131f", "2050", "CyberSerial (4-port) 16550" }, - { "131f", "2051", "CyberSerial (4-port) 16650" }, - { "131f", "2052", "CyberSerial (4-port) 16850" }, - { "131f", "2060", "Trio 2S(16550)+1P" }, - { "131f", "2061", "Trio 2S(16650)+1P" }, - { "131f", "2062", "Trio 2S(16850)+1P" }, - { "131f", "2081", "CyberSerial (8-port) ST16654" }, - { "1331", "0030", "ENP-2611" }, - { "1331", "8200", "82600 Host Bridge" }, - { "1331", "8201", "82600 IDE" }, - { "1331", "8202", "82600 USB" }, - { "1331", "8210", "82600 PCI Bridge" }, - { "1332", "5415", "MM-5415CN PCI Memory Module with Battery Backup" }, - { "1332", "5425", "MM-5425CN PCI 64/66 Memory Module with Battery Backup" }, - { "1332", "6140", "MM-6140D" }, - { "1344", "5150", "RealSSD P320h" }, - { "1344", "5151", "RealSSD P320m" }, - { "1344", "5152", "RealSSD P320s" }, - { "1344", "5153", "RealSSD P325m" }, - { "1344", "5160", "RealSSD P420h" }, - { "1344", "5161", "RealSSD P420m" }, - { "1344", "5163", "RealSSD P425m" }, - { "1344", "5180", "9100 PRO NVMe SSD" }, - { "1344", "5181", "9100 MAX NVMe SSD" }, - { "1344", "5190", "9200 ECO NVMe SSD" }, - { "1344", "5191", "9200 PRO NVMe SSD" }, - { "1344", "5192", "9200 MAX NVMe SSD" }, - { "1344", "51a2", "9300 PRO NVMe SSD" }, - { "1344", "51a3", "9300 MAX NVMe SSD" }, - { "134a", "0001", "Domex 536" }, - { "134a", "0002", "Domex DMX3194UP SCSI Adapter" }, - { "134d", "2189", "HSP56 MicroModem" }, - { "134d", "2486", "2304WT V.92 MDC Modem" }, - { "134d", "7890", "HSP MicroModem 56" }, - { "134d", "7891", "HSP MicroModem 56" }, - { "134d", "7892", "HSP MicroModem 56" }, - { "134d", "7893", "HSP MicroModem 56" }, - { "134d", "7894", "HSP MicroModem 56" }, - { "134d", "7895", "HSP MicroModem 56" }, - { "134d", "7896", "HSP MicroModem 56" }, - { "134d", "7897", "HSP MicroModem 56" }, - { "1353", "0002", "Proserver" }, - { "1353", "0003", "PCI-FUT" }, - { "1353", "0004", "PCI-S0" }, - { "1353", "0005", "PCI-FUT-S0" }, - { "1353", "0006", "OTDU-1U (FPGA Zynq-7000)" }, - { "1353", "0007", "OTDU-EX" }, - { "135a", "0a61", "UC-324 [VELOCITY RS422/485]" }, - { "135c", "0010", "QSC-100" }, - { "135c", "0020", "DSC-100" }, - { "135c", "0030", "DSC-200/300" }, - { "135c", "0040", "QSC-200/300" }, - { "135c", "0050", "ESC-100D" }, - { "135c", "0060", "ESC-100M" }, - { "135c", "00f0", "MPAC-100 Synchronous Serial Card (Zilog 85230)" }, - { "135c", "0170", "QSCLP-100" }, - { "135c", "0180", "DSCLP-100" }, - { "135c", "0190", "SSCLP-100" }, - { "135c", "01a0", "QSCLP-200/300" }, - { "135c", "01b0", "DSCLP-200/300" }, - { "135c", "01c0", "SSCLP-200/300" }, - { "135c", "0258", "DSPSX-200/300" }, - { "135e", "5101", "Route 56.PCI - Multi-Protocol Serial Interface (Zilog Z16C32)" }, - { "135e", "7101", "Single Port RS-232/422/485/530" }, - { "135e", "7201", "Dual Port RS-232/422/485 Interface" }, - { "135e", "7202", "Dual Port RS-232 Interface" }, - { "135e", "7401", "Four Port RS-232 Interface" }, - { "135e", "7402", "Four Port RS-422/485 Interface" }, - { "135e", "7801", "Eight Port RS-232 Interface" }, - { "135e", "7804", "Eight Port RS-232/422/485 Interface" }, - { "135e", "8001", "8001 Digital I/O Adapter" }, - { "1360", "0101", "PCI32 DCF77 Radio Clock" }, - { "1360", "0102", "PCI509 DCF77 Radio Clock" }, - { "1360", "0103", "PCI510 DCF77 Radio Clock" }, - { "1360", "0104", "PCI511 DCF77 Radio Clock" }, - { "1360", "0105", "PEX511 DCF77 Radio Clock (PCI Express)" }, - { "1360", "0106", "PZF180PEX High Precision DCF77 Radio Clock (PCI Express)" }, - { "1360", "0201", "GPS167PCI GPS Receiver" }, - { "1360", "0202", "GPS168PCI GPS Receiver" }, - { "1360", "0203", "GPS169PCI GPS Receiver" }, - { "1360", "0204", "GPS170PCI GPS Receiver" }, - { "1360", "0205", "GPS170PEX GPS Receiver (PCI Express)" }, - { "1360", "0206", "GPS180PEX GPS Receiver (PCI Express)" }, - { "1360", "0207", "GLN180PEX GPS/GLONASS receiver (PCI Express)" }, - { "1360", "0208", "GPS180AMC GPS Receiver (PCI Express / MicroTCA / AdvancedMC)" }, - { "1360", "0209", "GNS181PEX GPS/Galileo/GLONASS/BEIDOU receiver (PCI Express)" }, - { "1360", "0301", "TCR510PCI IRIG Timecode Reader" }, - { "1360", "0302", "TCR167PCI IRIG Timecode Reader" }, - { "1360", "0303", "TCR511PCI IRIG Timecode Reader" }, - { "1360", "0304", "TCR511PEX IRIG Timecode Reader (PCI Express)" }, - { "1360", "0305", "TCR170PEX IRIG Timecode Reader (PCI Express)" }, - { "1360", "0306", "TCR180PEX IRIG Timecode Reader (PCI Express)" }, - { "1360", "0501", "PTP270PEX PTP/IEEE1588 slave card (PCI Express)" }, - { "1360", "0601", "FRC511PEX Free Running Clock (PCI Express)" }, - { "136a", "0004", "HST Saphir VII mini PCI" }, - { "136a", "0007", "HST Saphir III E MultiLink 4" }, - { "136a", "0008", "HST Saphir III E MultiLink 8" }, - { "136a", "000a", "HST Saphir III E MultiLink 2" }, - { "136b", "ff01", "KL5A72002 Motion JPEG" }, - { "1371", "434e", "GigaCard Network Adapter" }, - { "1374", "0024", "Silicom Dual port Giga Ethernet BGE Bypass Server Adapter" }, - { "1374", "0025", "Silicom Quad port Giga Ethernet BGE Bypass Server Adapter" }, - { "1374", "0026", "Silicom Dual port Fiber Giga Ethernet 546 Bypass Server Adapter" }, - { "1374", "0027", "Silicom Dual port Fiber LX Giga Ethernet 546 Bypass Server Adapter" }, - { "1374", "0029", "Silicom Dual port Copper Giga Ethernet 546GB Bypass Server Adapter" }, - { "1374", "002a", "Silicom Dual port Fiber Giga Ethernet 546 TAP/Bypass Server Adapter" }, - { "1374", "002b", "Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter (PXE2TBI)" }, - { "1374", "002c", "Silicom Quad port Copper Giga Ethernet 546GB Bypass Server Adapter (PXG4BPI)" }, - { "1374", "002d", "Silicom Quad port Fiber-SX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI)" }, - { "1374", "002e", "Silicom Quad port Fiber-LX Giga Ethernet 546GB Bypass Server Adapter (PXG4BPFI-LX)" }, - { "1374", "002f", "Silicom Dual port Fiber-SX Giga Ethernet 546GB Low profile Bypass Server Adapter (PXG2BPFIL)" }, - { "1374", "0030", "Silicom Dual port Fiber-LX Giga Ethernet 546GB Low profile Bypass Server Adapter" }, - { "1374", "0031", "Silicom Quad port Copper Giga Ethernet PCI-E Bypass Server Adapter" }, - { "1374", "0032", "Silicom Dual port Copper Fast Ethernet 546 TAP/Bypass Server Adapter" }, - { "1374", "0034", "Silicom Dual port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter" }, - { "1374", "0035", "Silicom Quad port Copper Giga Ethernet PCI-E BGE Bypass Server Adapter" }, - { "1374", "0036", "Silicom Dual port Fiber Giga Ethernet PCI-E BGE Bypass Server Adapter" }, - { "1374", "0037", "Silicom Dual port Copper Ethernet PCI-E Intel based Bypass Server Adapter" }, - { "1374", "0038", "Silicom Quad port Copper Ethernet PCI-E Intel based Bypass Server Adapter" }, - { "1374", "0039", "Silicom Dual port Fiber-SX Ethernet PCI-E Intel based Bypass Server Adapter" }, - { "1374", "003a", "Silicom Dual port Fiber-LX Ethernet PCI-E Intel based Bypass Server Adapter" }, - { "1374", "003b", "Silicom Dual port Fiber Ethernet PMC Intel based Bypass Server Adapter (PMCX2BPFI)" }, - { "1374", "003c", "Silicom Dual port Copper Ethernet PCI-X BGE based Bypass Server Adapter (PXG2BPRB)" }, - { "1374", "003d", "2-port Copper GBE Bypass with Caviume 1010 PCI-X" }, - { "1374", "003e", "Silicom Dual port Fiber Giga Ethernet PCI-E 571 TAP/Bypass Server Adapter (PEG2TBFI)" }, - { "1374", "003f", "Silicom Dual port Copper Giga Ethernet PCI-X 546 TAP/Bypass Server Adapter (PXG2TBI)" }, - { "1374", "0040", "Silicom Quad port Fiber-SX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI)" }, - { "1374", "0042", "4-port Copper GBE PMC-X Bypass" }, - { "1374", "0043", "Silicom Quad port Fiber-SX Giga Ethernet 546 Bypass Server Adapter (PXG4BPFID)" }, - { "1374", "0045", "Silicom 6 port Copper Giga Ethernet 546 Bypass Server Adapter (PXG6BPI)" }, - { "1374", "0046", "4-port bypass PCI-E w disconnect low profile" }, - { "1374", "0047", "Silicom Dual port Fiber-SX Giga Ethernet 571 Bypass Disconnect Server Adapter (PEG2BPFID)" }, - { "1374", "004a", "Silicom Quad port Fiber-LX Giga Ethernet 571 Bypass Server Adapter (PEG4BPFI-LX)" }, - { "1374", "004d", "Dual port Copper Giga Ethernet PCI-E Bypass Server Adapter" }, - { "1374", "0401", "Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "1374", "0420", "Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "1374", "0460", "Gigabit Ethernet Express Module Bypass Server Adapter" }, - { "1374", "0461", "Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "1374", "0462", "Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "1374", "0470", "Octal-port Copper Gigabit Ethernet Express Module Bypass Server Adapter" }, - { "1374", "0482", "Dual-port Fiber (SR) 10 Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "1374", "0483", "Dual-port Fiber (LR) 10 Gigabit Ethernet ExpressModule Bypass Server Adapter" }, - { "137a", "0001", "PCI-324 Audiowire Interface" }, - { "1382", "0001", "ARC88 audio recording card" }, - { "1382", "2008", "Prodif 96 Pro sound system" }, - { "1382", "2048", "Prodif Plus sound system" }, - { "1382", "2088", "Marc 8 Midi sound system" }, - { "1382", "20c8", "Marc A sound system" }, - { "1382", "4008", "Marc 2 sound system" }, - { "1382", "4010", "Marc 2 Pro sound system" }, - { "1382", "4048", "Marc 4 MIDI sound system" }, - { "1382", "4088", "Marc 4 Digi sound system" }, - { "1382", "4248", "Marc X sound system" }, - { "1382", "4424", "TRACE D4 Sound System" }, - { "1385", "006b", "WA301 802.11b Wireless PCI Adapter" }, - { "1385", "4100", "MA301 802.11b Wireless PCI Adapter" }, - { "1385", "4601", "WAG511 802.11a/b/g Dual Band Wireless PC Card" }, - { "1385", "620a", "GA620 Gigabit Ethernet" }, - { "1385", "630a", "GA630 Gigabit Ethernet" }, - { "1389", "0001", "PCI1500PFB [Intelligent fieldbus adaptor]" }, - { "138a", "003d", "VFS491 Validity Sensor" }, - { "1393", "0001", "UC7000 Serial" }, - { "1393", "1020", "CP-102 (2-port RS-232 PCI)" }, - { "1393", "1021", "CP-102UL (2-port RS-232 Universal PCI)" }, - { "1393", "1022", "CP-102U (2-port RS-232 Universal PCI)" }, - { "1393", "1023", "CP-102UF" }, - { "1393", "1024", "CP-102E (2-port RS-232 Smart PCI Express Serial Board)" }, - { "1393", "1025", "CP-102EL (2-port RS-232 Smart PCI Express Serial Board)" }, - { "1393", "1040", "Smartio C104H/PCI" }, - { "1393", "1041", "CP104U (4-port RS-232 Universal PCI)" }, - { "1393", "1042", "CP104JU (4-port RS-232 Universal PCI)" }, - { "1393", "1043", "CP104EL (4-port RS-232 Smart PCI Express)" }, - { "1393", "1044", "POS104UL (4-port RS-232 Universal PCI)" }, - { "1393", "1045", "CP-104EL-A (4-port RS-232 PCI Express Serial Board)" }, - { "1393", "1080", "CB108 (8-port RS-232 PC/104-plus Module)" }, - { "1393", "1140", "CT-114 series" }, - { "1393", "1141", "Industrio CP-114" }, - { "1393", "1142", "CB114 (4-port RS-232/422/485 PC/104-plus Module)" }, - { "1393", "1143", "CP-114UL (4-port RS-232/422/485 Smart Universal PCI Serial Board)" }, - { "1393", "1144", "CP-114EL (4-port RS-232/422/485 Smart PCI Express Serial Board)" }, - { "1393", "1180", "CP118U (8-port RS-232/422/485 Smart Universal PCI)" }, - { "1393", "1181", "CP118EL (8-port RS-232/422/485 Smart PCI Express)" }, - { "1393", "1182", "CP-118EL-A (8-port RS-232/422/485 PCI Express Serial Board)" }, - { "1393", "1320", "CP132 (2-port RS-422/485 PCI)" }, - { "1393", "1321", "CP132U (2-Port RS-422/485 Universal PCI)" }, - { "1393", "1322", "CP-132EL (2-port RS-422/485 Smart PCI Express Serial Board)" }, - { "1393", "1340", "CP134U (4-Port RS-422/485 Universal PCI)" }, - { "1393", "1341", "CB134I (4-port RS-422/485 PC/104-plus Module)" }, - { "1393", "1380", "CP138U (8-port RS-232/422/485 Smart Universal PCI)" }, - { "1393", "1680", "Smartio C168H/PCI" }, - { "1393", "1681", "CP-168U V2 Smart Serial Board (8-port RS-232)" }, - { "1393", "1682", "CP-168EL (8-port RS-232 Smart PCI Express)" }, - { "1393", "1683", "CP-168EL-A (8-port RS-232 PCI Express Serial Board)" }, - { "1393", "2040", "Intellio CP-204J" }, - { "1393", "2180", "Intellio C218 Turbo PCI" }, - { "1393", "3200", "Intellio C320 Turbo PCI" }, - { "1394", "0001", "LXT1001 Gigabit Ethernet" }, - { "1397", "08b4", "ISDN network Controller [HFC-4S]" }, - { "1397", "16b8", "ISDN network Controller [HFC-8S]" }, - { "1397", "2bd0", "ISDN network controller [HFC-PCI]" }, - { "1397", "30b1", "ISDN network Controller [HFC-E1]" }, - { "1397", "b700", "ISDN network controller PrimuX S0 [HFC-PCI]" }, - { "1397", "f001", "GSM Network Controller [HFC-4GSM]" }, - { "139a", "0001", "Quad Port 10/100 Server Accelerator" }, - { "139a", "0003", "Single Port 10/100 Server Accelerator" }, - { "139a", "0005", "Single Port Gigabit Server Accelerator" }, - { "13a3", "0005", "7751 Security Processor" }, - { "13a3", "0006", "6500 Public Key Processor" }, - { "13a3", "0007", "7811 Security Processor" }, - { "13a3", "0012", "7951 Security Processor" }, - { "13a3", "0014", "78XX Security Processor" }, - { "13a3", "0016", "8065 Security Processor" }, - { "13a3", "0017", "8165 Security Processor" }, - { "13a3", "0018", "8154 Security Processor" }, - { "13a3", "001d", "7956 Security Processor" }, - { "13a3", "001f", "7855 Security Processor" }, - { "13a3", "0020", "7955 Security Processor" }, - { "13a3", "0026", "8155 Security Processor" }, - { "13a3", "002e", "9630 Compression Processor" }, - { "13a3", "002f", "9725 Compression and Security Processor" }, - { "13a3", "0033", "8201 Acceleration Processor" }, - { "13a3", "0034", "8202 Acceleration Processor" }, - { "13a3", "0035", "8203 Acceleration Processor" }, - { "13a3", "0037", "8204 Acceleration Processor" }, - { "13a3", "9240", "XR9240 Compression and Security Coprocessor [Panther II]" }, - { "13a8", "0152", "XR17C/D152 Dual PCI UART" }, - { "13a8", "0154", "XR17C154 Quad UART" }, - { "13a8", "0158", "XR17C158 Octal UART" }, - { "13a8", "0252", "XR17V252 Dual UART PCI controller" }, - { "13a8", "0254", "XR17V254 Quad UART PCI controller" }, - { "13a8", "0258", "XR17V258 Octal UART PCI controller" }, - { "13a8", "0352", "XR17V3521 Dual PCIe UART" }, - { "13c0", "0010", "SyncLink Adapter v1" }, - { "13c0", "0020", "SyncLink SCC Adapter" }, - { "13c0", "0030", "SyncLink Multiport Adapter" }, - { "13c0", "0070", "SyncLink GT Adapter" }, - { "13c0", "0080", "SyncLink GT4 Adapter" }, - { "13c0", "00a0", "SyncLink GT2 Adapter" }, - { "13c0", "0210", "SyncLink Adapter v2" }, - { "13c1", "1000", "5xxx/6xxx-series PATA-RAID" }, - { "13c1", "1001", "7xxx/8xxx-series PATA/SATA-RAID" }, - { "13c1", "1002", "9xxx-series SATA-RAID" }, - { "13c1", "1003", "9550SX SATA-II RAID PCI-X" }, - { "13c1", "1004", "9650SE SATA-II RAID PCIe" }, - { "13c1", "1005", "9690SA SAS/SATA-II RAID PCIe" }, - { "13c1", "1010", "9750 SAS2/SATA-II RAID PCIe" }, - { "13c2", "000e", "Technotrend/Hauppauge DVB card rev2.3" }, - { "13c2", "1019", "TTechnoTrend-budget DVB S2-3200" }, - { "13c6", "0520", "CEI-520 A429 Card" }, - { "13c6", "0620", "CEI-620 A429 Card" }, - { "13c6", "0820", "CEI-820 A429 Card" }, - { "13c6", "0830", "CEI-830 A429 Card" }, - { "13c6", "1004", "P-SER Multi-channel PMC to RS-485/422/232 adapter" }, - { "13c7", "0adc", "PCI-ADC" }, - { "13c7", "0b10", "PCI-PIO" }, - { "13c7", "0d10", "PCI-DIO" }, - { "13c7", "524c", "PCI-RLY" }, - { "13c7", "5744", "PCI-WDT" }, - { "13d0", "2103", "B2C2 FlexCopII DVB chip / Technisat SkyStar2 DVB card" }, - { "13d0", "2104", "B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card (rev 01)" }, - { "13d0", "2200", "B2C2 FlexCopIII DVB chip / Technisat SkyStar2 DVB card" }, - { "13d1", "ab02", "ADMtek Centaur-C rev 17 [D-Link DFE-680TX] CardBus Fast Ethernet Adapter" }, - { "13d1", "ab03", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "13d1", "ab06", "RTL8139 [FE2000VX] CardBus Fast Ethernet Attached Port Adapter" }, - { "13d1", "ab08", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "13df", "0001", "PCI56RVP Modem" }, - { "13ec", "000a", "NPC-RC01 Remote control receiver" }, - { "13f0", "0200", "IC Plus IP100A Integrated 10/100 Ethernet MAC + PHY" }, - { "13f0", "0201", "ST201 Sundance Ethernet" }, - { "13f0", "1021", "TC902x Gigabit Ethernet" }, - { "13f0", "1023", "IP1000 Family Gigabit Ethernet" }, - { "13f4", "1401", "Zentai Fibre Channel Adapter" }, - { "13f6", "0011", "CMI8738" }, - { "13f6", "0100", "CM8338A" }, - { "13f6", "0101", "CM8338B" }, - { "13f6", "0111", "CMI8738/CMI8768 PCI Audio" }, - { "13f6", "0211", "CM8738" }, - { "13f6", "5011", "CM8888 [Oxygen Express]" }, - { "13f6", "8788", "CMI8788 [Oxygen HD Audio]" }, - { "13fe", "1240", "PCI-1240 4-channel stepper motor controller card" }, - { "13fe", "1600", "PCI-16xx series PCI multiport serial board (function 0)" }, - { "13fe", "1603", "PCI-1603 2-port isolated RS-232/current loop" }, - { "13fe", "1604", "PCI-1604 2-port RS-232" }, - { "13fe", "1680", "PCI-1680 Rev.A1 2-port CAN-bus with isolation protection" }, - { "13fe", "16ff", "PCI-16xx series PCI multiport serial board (function 1: RX/TX steering CPLD)" }, - { "13fe", "1711", "PCI-1711 16-channel data acquisition card 12-bit, 100kS/s" }, - { "13fe", "1713", "PCI-1713 32-channel isolated analog input card" }, - { "13fe", "1733", "PCI-1733 32-channel isolated digital input card" }, - { "13fe", "1734", "PCI-1734 32-channel isolated digital output card" }, - { "13fe", "1752", "PCI-1752 64-channel Isolated Digital Output Card" }, - { "13fe", "1754", "PCI-1754 64-channel Isolated Digital Input Card" }, - { "13fe", "1756", "PCI-1756 64-ch Isolated Digital I/O PCI Card" }, - { "13fe", "a004", "PCI-1612 4-port RS-232/422/485" }, - { "13fe", "c302", "MIOe-3680 2-Port CAN-Bus MIOe Module with Isolation Protection" }, - { "1400", "1401", "9432 TX" }, - { "1402", "0630", "ME-630" }, - { "1402", "0940", "ME-94" }, - { "1402", "0950", "ME-95" }, - { "1402", "0960", "ME-96" }, - { "1402", "1000", "ME-1000" }, - { "1402", "100a", "ME-1000" }, - { "1402", "100b", "ME-1000" }, - { "1402", "1400", "ME-1400" }, - { "1402", "140a", "ME-1400A" }, - { "1402", "140b", "ME-1400B" }, - { "1402", "140c", "ME-1400C" }, - { "1402", "140d", "ME-1400D" }, - { "1402", "140e", "ME-1400E" }, - { "1402", "14ea", "ME-1400EA" }, - { "1402", "14eb", "ME-1400EB" }, - { "1402", "1604", "ME-1600/4U" }, - { "1402", "1608", "ME-1600/8U" }, - { "1402", "160c", "ME-1600/12U" }, - { "1402", "160f", "ME-1600/16U" }, - { "1402", "168f", "ME-1600/16U8I" }, - { "1402", "4610", "ME-4610" }, - { "1402", "4650", "ME-4650" }, - { "1402", "4660", "ME-4660" }, - { "1402", "4661", "ME-4660I" }, - { "1402", "4662", "ME-4660" }, - { "1402", "4663", "ME-4660I" }, - { "1402", "4670", "ME-4670" }, - { "1402", "4671", "ME-4670I" }, - { "1402", "4672", "ME-4670S" }, - { "1402", "4673", "ME-4670IS" }, - { "1402", "4680", "ME-4680" }, - { "1402", "4681", "ME-4680I" }, - { "1402", "4682", "ME-4680S" }, - { "1402", "4683", "ME-4680IS" }, - { "1402", "6004", "ME-6000/4" }, - { "1402", "6008", "ME-6000/8" }, - { "1402", "600f", "ME-6000/16" }, - { "1402", "6014", "ME-6000I/4" }, - { "1402", "6018", "ME-6000I/8" }, - { "1402", "601f", "ME-6000I/16" }, - { "1402", "6034", "ME-6000ISLE/4" }, - { "1402", "6038", "ME-6000ISLE/8" }, - { "1402", "603f", "ME-6000ISLE/16" }, - { "1402", "6044", "ME-6000/4/DIO" }, - { "1402", "6048", "ME-6000/8/DIO" }, - { "1402", "604f", "ME-6000/16/DIO" }, - { "1402", "6054", "ME-6000I/4/DIO" }, - { "1402", "6058", "ME-6000I/8/DIO" }, - { "1402", "605f", "ME-6000I/16/DIO" }, - { "1402", "6074", "ME-6000ISLE/4/DIO" }, - { "1402", "6078", "ME-6000ISLE/8/DIO" }, - { "1402", "607f", "ME-6000ISLE/16/DIO" }, - { "1402", "6104", "ME-6100/4" }, - { "1402", "6108", "ME-6100/8" }, - { "1402", "610f", "ME-6100/16" }, - { "1402", "6114", "ME-6100I/4" }, - { "1402", "6118", "ME-6100I/8" }, - { "1402", "611f", "ME-6100I/16" }, - { "1402", "6134", "ME-6100ISLE/4" }, - { "1402", "6138", "ME-6100ISLE/8" }, - { "1402", "613f", "ME-6100ISLE/16" }, - { "1402", "6144", "ME-6100/4/DIO" }, - { "1402", "6148", "ME-6100/8/DIO" }, - { "1402", "614f", "ME-6100/16/DIO" }, - { "1402", "6154", "ME-6100I/4/DIO" }, - { "1402", "6158", "ME-6100I/8/DIO" }, - { "1402", "615f", "ME-6100I/16/DIO" }, - { "1402", "6174", "ME-6100ISLE/4/DIO" }, - { "1402", "6178", "ME-6100ISLE/8/DIO" }, - { "1402", "617f", "ME-6100ISLE/16/DIO" }, - { "1402", "6259", "ME-6200I/9/DIO" }, - { "1402", "6359", "ME-6300I/9/DIO" }, - { "1402", "810a", "ME-8100A" }, - { "1402", "810b", "ME-8100B" }, - { "1402", "820a", "ME-8200A" }, - { "1402", "820b", "ME-8200B" }, - { "1407", "0100", "Lava Dual Serial" }, - { "1407", "0101", "Lava Quatro A" }, - { "1407", "0102", "Lava Quatro B" }, - { "1407", "0110", "Lava DSerial-PCI Port A" }, - { "1407", "0111", "Lava DSerial-PCI Port B" }, - { "1407", "0120", "Quattro-PCI A" }, - { "1407", "0121", "Quattro-PCI B" }, - { "1407", "0180", "Lava Octo A" }, - { "1407", "0181", "Lava Octo B" }, - { "1407", "0200", "Lava Port Plus" }, - { "1407", "0201", "Lava Quad A" }, - { "1407", "0202", "Lava Quad B" }, - { "1407", "0220", "Lava Quattro PCI Ports A/B" }, - { "1407", "0221", "Lava Quattro PCI Ports C/D" }, - { "1407", "0400", "Lava 8255-PIO-PCI" }, - { "1407", "0500", "Lava Single Serial" }, - { "1407", "0520", "Lava RS422-SS-PCI" }, - { "1407", "0600", "Lava Port 650" }, - { "1407", "8000", "Lava Parallel" }, - { "1407", "8001", "Dual parallel port controller A" }, - { "1407", "8002", "Lava Dual Parallel port A" }, - { "1407", "8003", "Lava Dual Parallel port B" }, - { "1407", "8800", "BOCA Research IOPPAR" }, - { "1409", "7168", "PCI2S550 (Dual 16550 UART)" }, - { "1409", "7268", "SUN1888 (Dual IEEE1284 parallel port)" }, - { "1412", "1712", "ICE1712 [Envy24] PCI Multi-Channel I/O Controller" }, - { "1412", "1724", "VT1720/24 [Envy24PT/HT] PCI Multi-Channel Audio Controller" }, - { "1414", "0001", "MN-120 (ADMtek Centaur-C based)" }, - { "1414", "0002", "MN-130 (ADMtek Centaur-P based)" }, - { "1414", "008c", "Basic Render Driver" }, - { "1414", "5353", "Hyper-V virtual VGA" }, - { "1414", "5801", "XMA Decoder (Xenon)" }, - { "1414", "5802", "SATA Controller - CdRom (Xenon)" }, - { "1414", "5803", "SATA Controller - Disk (Xenon)" }, - { "1414", "5804", "OHCI Controller 0 (Xenon)" }, - { "1414", "5805", "EHCI Controller 0 (Xenon)" }, - { "1414", "5806", "OHCI Controller 1 (Xenon)" }, - { "1414", "5807", "EHCI Controller 1 (Xenon)" }, - { "1414", "580a", "Fast Ethernet Adapter (Xenon)" }, - { "1414", "580b", "Secure Flash Controller (Xenon)" }, - { "1414", "580d", "System Management Controller (Xenon)" }, - { "1414", "5811", "Xenos GPU (Xenon)" }, - { "1415", "8401", "OX9162 Mode 1 (8-bit bus)" }, - { "1415", "8403", "OX9162 Mode 0 (parallel port)" }, - { "1415", "9500", "OX16PCI954 (Quad 16950 UART) function 0 (Disabled)" }, - { "1415", "9501", "OX16PCI954 (Quad 16950 UART) function 0 (Uart)" }, - { "1415", "9505", "OXuPCI952 (Dual 16C950 UART)" }, - { "1415", "950a", "EXSYS EX-41092 Dual 16950 Serial adapter" }, - { "1415", "950b", "OXCB950 Cardbus 16950 UART" }, - { "1415", "9510", "OX16PCI954 (Quad 16950 UART) function 1 (Disabled)" }, - { "1415", "9511", "OX16PCI954 (Quad 16950 UART) function 1 (8bit bus)" }, - { "1415", "9512", "OX16PCI954 (Quad 16950 UART) function 1 (32bit bus)" }, - { "1415", "9513", "OX16PCI954 (Quad 16950 UART) function 1 (parallel port)" }, - { "1415", "9521", "OX16PCI952 (Dual 16950 UART)" }, - { "1415", "9523", "OX16PCI952 Integrated Parallel Port" }, - { "1415", "c000", "OXPCIe840 Parallel Port" }, - { "1415", "c004", "OXPCIe840 Parallel Port" }, - { "1415", "c006", "OXPCIe840 GPIO" }, - { "1415", "c100", "OXPCIe952 Parallel Port" }, - { "1415", "c101", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c104", "OXPCIe952 Parallel Port" }, - { "1415", "c105", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c106", "OXPCIe952 GPIO" }, - { "1415", "c108", "OXPCIe952 Parallel Port" }, - { "1415", "c109", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c10c", "OXPCIe952 Parallel Port" }, - { "1415", "c10d", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c10e", "OXPCIe952 GPIO" }, - { "1415", "c110", "OXPCIe952 Parallel Port" }, - { "1415", "c114", "OXPCIe952 Parallel Port" }, - { "1415", "c118", "OXPCIe952 Parallel Port" }, - { "1415", "c11b", "OXPCIe952 Native 950 UART" }, - { "1415", "c11c", "OXPCIe952 Parallel Port" }, - { "1415", "c11e", "OXPCIe952 GPIO" }, - { "1415", "c11f", "OXPCIe952 Native 950 UART" }, - { "1415", "c120", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c124", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c126", "OXPCIe952 GPIO" }, - { "1415", "c128", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c12c", "OXPCIe952 Legacy 950 UART" }, - { "1415", "c12e", "OXPCIe952 GPIO" }, - { "1415", "c134", "OXPCIe952 GPIO" }, - { "1415", "c138", "OXPCIe952 Native 950 UART" }, - { "1415", "c13c", "OXPCIe952 GPIO" }, - { "1415", "c13d", "OXPCIe952 Native 950 UART" }, - { "1415", "c140", "OXPCIe952 Legacy 950 UART #1" }, - { "1415", "c141", "OXPCIe952 Legacy 950 UART #2" }, - { "1415", "c144", "OXPCIe952 Legacy 950 UART #1" }, - { "1415", "c145", "OXPCIe952 Legacy 950 UART #2" }, - { "1415", "c146", "OXPCIe952 GPIO" }, - { "1415", "c148", "OXPCIe952 Legacy 950 UART #1" }, - { "1415", "c149", "OXPCIe952 Legacy 950 UART #2" }, - { "1415", "c14c", "OXPCIe952 Legacy 950 UART #1" }, - { "1415", "c14d", "OXPCIe952 Legacy 950 UART #2" }, - { "1415", "c14e", "OXPCIe952 GPIO" }, - { "1415", "c154", "OXPCIe952 GPIO" }, - { "1415", "c158", "OXPCIe952 Dual Native 950 UART" }, - { "1415", "c15c", "OXPCIe952 GPIO" }, - { "1415", "c15d", "OXPCIe952 Dual Native 950 UART" }, - { "1415", "c204", "OXPCIe954 GPIO" }, - { "1415", "c208", "OXPCIe954 Quad Native 950 UART" }, - { "1415", "c20c", "OXPCIe954 GPIO" }, - { "1415", "c20d", "OXPCIe954 Quad Native 950 UART" }, - { "1415", "c304", "OXPCIe958 GPIO" }, - { "1415", "c308", "OXPCIe958 Quad Native 950 UART" }, - { "1415", "c30c", "OXPCIe958 GPIO" }, - { "1415", "c30d", "OXPCIe958 Quad Native 950 UART" }, - { "1415", "c530", "OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c531", "OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c534", "OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c535", "OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c536", "OXPCIe200 GPIO" }, - { "1415", "c538", "OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c539", "OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c53b", "OXPCIe200 Native 950 UART" }, - { "1415", "c53c", "OXPCIe200 Dual OHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c53d", "OXPCIe200 Dual EHCI USB Controller (ULPI/R-ULPI)" }, - { "1415", "c53e", "OXPCIe200 GPIO" }, - { "1415", "c53f", "OXPCIe200 Native 950 UART" }, - { "1415", "c540", "OXPCIe200 Dual OHCI USB Controller (R-ULPI)" }, - { "1415", "c541", "OXPCIe200 Dual EHCI USB Controller (R-ULPI)" }, - { "1415", "c544", "OXPCIe200 Dual OHCI USB Controller (R-ULPI)" }, - { "1415", "c545", "OXPCIe200 Dual EHCI USB Controller (R-ULPI)" }, - { "1415", "c546", "OXPCIe200 GPIO" }, - { "1415", "c548", "OXPCIe200 Dual OHCI USB Controller (R-ULPI)" }, - { "1415", "c549", "OXPCIe200 Dual EHCI USB Controller (R-ULPI)" }, - { "1415", "c54b", "OXPCIe200 Native 950 UART" }, - { "1415", "c54c", "OXPCIe200 Dual OHCI USB Controller (R-ULPI)" }, - { "1415", "c54d", "OXPCIe200 Dual EHCI USB Controller (R-ULPI)" }, - { "1415", "c54e", "OXPCIe200 Dual GPIO" }, - { "1415", "c54f", "OXPCIe200 Native 950 UART" }, - { "1415", "c560", "OXPCIe200 Dual OHCI USB Controller (ULPI/analog)" }, - { "1415", "c561", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c564", "OXPCIe200 Dual OHCI USB Controller (ULPI/analog)" }, - { "1415", "c565", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c566", "OXPCIe200 GPIO" }, - { "1415", "c568", "OXPCIe200 Dual OHCI USB Controller (ULPI/analog)" }, - { "1415", "c569", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c56b", "OXPCIe200 Native 950 UART" }, - { "1415", "c56c", "OXPCIe200 Dual OHCI USB Controller (ULPI/analog)" }, - { "1415", "c56d", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c56e", "OXPCIe200 GPIO" }, - { "1415", "c56f", "OXPCIe200 Native 950 UART" }, - { "1415", "c570", "OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog)" }, - { "1415", "c571", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c574", "OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog)" }, - { "1415", "c575", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c576", "OXPCIe200 GPIO" }, - { "1415", "c578", "OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog)" }, - { "1415", "c579", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c57b", "OXPCIe200 Native 950 UART" }, - { "1415", "c57c", "OXPCIe200 Dual OHCI USB Controller (R-ULPI/analog)" }, - { "1415", "c57d", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c57e", "OXPCIe200 GPIO" }, - { "1415", "c57f", "OXPCIe200 Native 950 UART" }, - { "1415", "c5a0", "OXPCIe200 OHCI USB Controller (ULPI)" }, - { "1415", "c5a1", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c5a2", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5a4", "OXPCIe200 OHCI USB Controller (ULPI)" }, - { "1415", "c5a5", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c5a6", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5a8", "OXPCIe200 OHCI USB Controller (ULPI)" }, - { "1415", "c5a9", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c5aa", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5ab", "OXPCIe200 Native 950 UART" }, - { "1415", "c5ac", "OXPCIe200 OHCI USB Controller (ULPI)" }, - { "1415", "c5ad", "OXPCIe200 EHCI USB Controller (ULPI)" }, - { "1415", "c5ae", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5af", "OXPCIe200 Native 950 UART" }, - { "1415", "c5b0", "OXPCIe200 OHCI USB Controller (R-ULPI)" }, - { "1415", "c5b1", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c5b2", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5b4", "OXPCIe200 OHCI USB Controller (R-ULPI)" }, - { "1415", "c5b5", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c5b6", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5b8", "OXPCIe200 OHCI USB Controller (R-ULPI)" }, - { "1415", "c5b9", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c5ba", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5bb", "OXPCIe200 Native 950 UART" }, - { "1415", "c5bc", "OXPCIe200 OHCI USB Controller (R-ULPI)" }, - { "1415", "c5bd", "OXPCIe200 EHCI USB Controller (R-ULPI)" }, - { "1415", "c5be", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5bf", "OXPCIe200 Native 950 UART" }, - { "1415", "c5c0", "OXPCIe200 OHCI USB Controller (analog)" }, - { "1415", "c5c2", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5c4", "OXPCIe200 OHCI USB Controller (analog)" }, - { "1415", "c5c6", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5c8", "OXPCIe200 OHCI USB Controller (analog)" }, - { "1415", "c5ca", "OXPCIe200 Programmable Memory Interface" }, - { "1415", "c5cb", "OXPCIe200 Native 950 UART" }, - { "1415", "c5cc", "OXPCIe200 OHCI USB Controller (analog)" }, - { "1415", "c5ce", "OXPCIe200 Programmable Memory Interface & GPIO" }, - { "1415", "c5cf", "OXPCIe200 Native 950 UART" }, - { "1420", "8002", "Gold Card NetGlobal 56k+10/100Mb CardBus (Ethernet part)" }, - { "1420", "8003", "Gold Card NetGlobal 56k+10/100Mb CardBus (Modem part)" }, - { "1425", "000b", "T210 Protocol Engine" }, - { "1425", "000c", "T204 Protocol Engine" }, - { "1425", "0022", "10GbE Ethernet Adapter" }, - { "1425", "0030", "T310 10GbE Single Port Adapter" }, - { "1425", "0031", "T320 10GbE Dual Port Adapter" }, - { "1425", "0032", "T302 1GbE Dual Port Adapter" }, - { "1425", "0033", "T304 1GbE Quad Port Adapter" }, - { "1425", "0034", "B320 10GbE Dual Port Adapter" }, - { "1425", "0035", "S310-CR 10GbE Single Port Adapter" }, - { "1425", "0036", "S320-LP-CR 10GbE Dual Port Adapter" }, - { "1425", "0037", "N320-G2-CR 10GbE Dual Port Adapter" }, - { "1425", "4001", "T420-CR Unified Wire Ethernet Controller" }, - { "1425", "4002", "T422-CR Unified Wire Ethernet Controller" }, - { "1425", "4003", "T440-CR Unified Wire Ethernet Controller" }, - { "1425", "4004", "T420-BCH Unified Wire Ethernet Controller" }, - { "1425", "4005", "T440-BCH Unified Wire Ethernet Controller" }, - { "1425", "4006", "T440-CH Unified Wire Ethernet Controller" }, - { "1425", "4007", "T420-SO Unified Wire Ethernet Controller" }, - { "1425", "4008", "T420-CX Unified Wire Ethernet Controller" }, - { "1425", "4009", "T420-BT Unified Wire Ethernet Controller" }, - { "1425", "400a", "T404-BT Unified Wire Ethernet Controller" }, - { "1425", "400b", "B420-SR Unified Wire Ethernet Controller" }, - { "1425", "400c", "B404-BT Unified Wire Ethernet Controller" }, - { "1425", "400d", "T480 Unified Wire Ethernet Controller" }, - { "1425", "400e", "T440-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "400f", "T440 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "4080", "T480-4080 T480 Unified Wire Ethernet Controller" }, - { "1425", "4081", "T440F-4081 T440-FCoE Unified Wire Ethernet Controller" }, - { "1425", "4082", "T420-4082 Unified Wire Ethernet Controller" }, - { "1425", "4083", "T420X-4083 Unified Wire Ethernet Controller" }, - { "1425", "4084", "T440-4084 Unified Wire Ethernet Controller" }, - { "1425", "4085", "T420-4085 SFP+ Unified Wire Ethernet Controller" }, - { "1425", "4086", "T440-4086 10Gbase-T Unified Wire Ethernet Controller" }, - { "1425", "4087", "T440T-4087 Unified Wire Ethernet Controller" }, - { "1425", "4088", "T440-4088 Unified Wire Ethernet Controller" }, - { "1425", "4401", "T420-CR Unified Wire Ethernet Controller" }, - { "1425", "4402", "T422-CR Unified Wire Ethernet Controller" }, - { "1425", "4403", "T440-CR Unified Wire Ethernet Controller" }, - { "1425", "4404", "T420-BCH Unified Wire Ethernet Controller" }, - { "1425", "4405", "T440-BCH Unified Wire Ethernet Controller" }, - { "1425", "4406", "T440-CH Unified Wire Ethernet Controller" }, - { "1425", "4407", "T420-SO Unified Wire Ethernet Controller" }, - { "1425", "4408", "T420-CX Unified Wire Ethernet Controller" }, - { "1425", "4409", "T420-BT Unified Wire Ethernet Controller" }, - { "1425", "440a", "T404-BT Unified Wire Ethernet Controller" }, - { "1425", "440b", "B420-SR Unified Wire Ethernet Controller" }, - { "1425", "440c", "B404-BT Unified Wire Ethernet Controller" }, - { "1425", "440d", "T480 Unified Wire Ethernet Controller" }, - { "1425", "440e", "T440-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "440f", "T440 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "4480", "T480-4080 T480 Unified Wire Ethernet Controller" }, - { "1425", "4481", "T440F-4081 T440-FCoE Unified Wire Ethernet Controller" }, - { "1425", "4482", "T420-4082 Unified Wire Ethernet Controller" }, - { "1425", "4483", "T420X-4083 Unified Wire Ethernet Controller" }, - { "1425", "4484", "T440-4084 Unified Wire Ethernet Controller" }, - { "1425", "4485", "T420-4085 SFP+ Unified Wire Ethernet Controller" }, - { "1425", "4486", "T440-4086 10Gbase-T Unified Wire Ethernet Controller" }, - { "1425", "4487", "T440T-4087 Unified Wire Ethernet Controller" }, - { "1425", "4488", "T440-4088 Unified Wire Ethernet Controller" }, - { "1425", "4501", "T420-CR Unified Wire Storage Controller" }, - { "1425", "4502", "T422-CR Unified Wire Storage Controller" }, - { "1425", "4503", "T440-CR Unified Wire Storage Controller" }, - { "1425", "4504", "T420-BCH Unified Wire Storage Controller" }, - { "1425", "4505", "T440-BCH Unified Wire Storage Controller" }, - { "1425", "4506", "T440-CH Unified Wire Storage Controller" }, - { "1425", "4507", "T420-SO Unified Wire Storage Controller" }, - { "1425", "4508", "T420-CX Unified Wire Storage Controller" }, - { "1425", "4509", "T420-BT Unified Wire Storage Controller" }, - { "1425", "450a", "T404-BT Unified Wire Storage Controller" }, - { "1425", "450b", "B420-SR Unified Wire Storage Controller" }, - { "1425", "450c", "B404-BT Unified Wire Storage Controller" }, - { "1425", "450d", "T480 Unified Wire Storage Controller" }, - { "1425", "450e", "T440-LP-CR Unified Wire Storage Controller" }, - { "1425", "450f", "T440 [Amsterdam] Unified Wire Storage Controller" }, - { "1425", "4580", "T480-4080 T480 Unified Wire Storage Controller" }, - { "1425", "4581", "T440F-4081 T440-FCoE Unified Wire Storage Controller" }, - { "1425", "4582", "T420-4082 Unified Wire Storage Controller" }, - { "1425", "4583", "T420X-4083 Unified Wire Storage Controller" }, - { "1425", "4584", "T440-4084 Unified Wire Storage Controller" }, - { "1425", "4585", "T420-4085 SFP+ Unified Wire Storage Controller" }, - { "1425", "4586", "T440-4086 10Gbase-T Unified Wire Storage Controller" }, - { "1425", "4587", "T440T-4087 Unified Wire Storage Controller" }, - { "1425", "4588", "T440-4088 Unified Wire Storage Controller" }, - { "1425", "4601", "T420-CR Unified Wire Storage Controller" }, - { "1425", "4602", "T422-CR Unified Wire Storage Controller" }, - { "1425", "4603", "T440-CR Unified Wire Storage Controller" }, - { "1425", "4604", "T420-BCH Unified Wire Storage Controller" }, - { "1425", "4605", "T440-BCH Unified Wire Storage Controller" }, - { "1425", "4606", "T440-CH Unified Wire Storage Controller" }, - { "1425", "4607", "T420-SO Unified Wire Storage Controller" }, - { "1425", "4608", "T420-CX Unified Wire Storage Controller" }, - { "1425", "4609", "T420-BT Unified Wire Storage Controller" }, - { "1425", "460a", "T404-BT Unified Wire Storage Controller" }, - { "1425", "460b", "B420-SR Unified Wire Storage Controller" }, - { "1425", "460c", "B404-BT Unified Wire Storage Controller" }, - { "1425", "460d", "T480 Unified Wire Storage Controller" }, - { "1425", "460e", "T440-LP-CR Unified Wire Storage Controller" }, - { "1425", "460f", "T440 [Amsterdam] Unified Wire Storage Controller" }, - { "1425", "4680", "T480-4080 T480 Unified Wire Storage Controller" }, - { "1425", "4681", "T440F-4081 T440-FCoE Unified Wire Storage Controller" }, - { "1425", "4682", "T420-4082 Unified Wire Storage Controller" }, - { "1425", "4683", "T420X-4083 Unified Wire Storage Controller" }, - { "1425", "4684", "T440-4084 Unified Wire Storage Controller" }, - { "1425", "4685", "T420-4085 SFP+ Unified Wire Storage Controller" }, - { "1425", "4686", "T440-4086 10Gbase-T Unified Wire Storage Controller" }, - { "1425", "4687", "T440T-4087 Unified Wire Storage Controller" }, - { "1425", "4688", "T440-4088 Unified Wire Storage Controller" }, - { "1425", "4701", "T420-CR Unified Wire Ethernet Controller" }, - { "1425", "4702", "T422-CR Unified Wire Ethernet Controller" }, - { "1425", "4703", "T440-CR Unified Wire Ethernet Controller" }, - { "1425", "4704", "T420-BCH Unified Wire Ethernet Controller" }, - { "1425", "4705", "T440-BCH Unified Wire Ethernet Controller" }, - { "1425", "4706", "T440-CH Unified Wire Ethernet Controller" }, - { "1425", "4707", "T420-SO Unified Wire Ethernet Controller" }, - { "1425", "4708", "T420-CX Unified Wire Ethernet Controller" }, - { "1425", "4709", "T420-BT Unified Wire Ethernet Controller" }, - { "1425", "470a", "T404-BT Unified Wire Ethernet Controller" }, - { "1425", "470b", "B420-SR Unified Wire Ethernet Controller" }, - { "1425", "470c", "B404-BT Unified Wire Ethernet Controller" }, - { "1425", "470d", "T480 Unified Wire Ethernet Controller" }, - { "1425", "470e", "T440-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "470f", "T440 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "4780", "T480-4080 T480 Unified Wire Ethernet Controller" }, - { "1425", "4781", "T440F-4081 T440-FCoE Unified Wire Ethernet Controller" }, - { "1425", "4782", "T420-4082 Unified Wire Ethernet Controller" }, - { "1425", "4783", "T420X-4083 Unified Wire Ethernet Controller" }, - { "1425", "4784", "T440-4084 Unified Wire Ethernet Controller" }, - { "1425", "4785", "T420-4085 SFP+ Unified Wire Ethernet Controller" }, - { "1425", "4786", "T440-4086 10Gbase-T Unified Wire Ethernet Controller" }, - { "1425", "4787", "T440T-4087 Unified Wire Ethernet Controller" }, - { "1425", "4788", "T440-4088 Unified Wire Ethernet Controller" }, - { "1425", "4801", "T420-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "4802", "T422-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "4803", "T440-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "4804", "T420-BCH Unified Wire Ethernet Controller [VF]" }, - { "1425", "4805", "T440-BCH Unified Wire Ethernet Controller [VF]" }, - { "1425", "4806", "T440-CH Unified Wire Ethernet Controller [VF]" }, - { "1425", "4807", "T420-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "4808", "T420-CX Unified Wire Ethernet Controller [VF]" }, - { "1425", "4809", "T420-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "480a", "T404-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "480b", "B420-SR Unified Wire Ethernet Controller [VF]" }, - { "1425", "480c", "B404-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "480d", "T480 Unified Wire Ethernet Controller [VF]" }, - { "1425", "480e", "T440-LP-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "480f", "T440 [Amsterdam] Unified Wire Ethernet Controller [VF]" }, - { "1425", "4880", "T480-4080 T480 Unified Wire Ethernet Controller [VF]" }, - { "1425", "4881", "T440F-4081 T440-FCoE Unified Wire Ethernet Controller [VF]" }, - { "1425", "4882", "T420-4082 Unified Wire Ethernet Controller [VF]" }, - { "1425", "4883", "T420X-4083 Unified Wire Ethernet Controller [VF]" }, - { "1425", "4884", "T440-4084 Unified Wire Ethernet Controller [VF]" }, - { "1425", "4885", "T420-4085 SFP+ Unified Wire Ethernet Controller [VF]" }, - { "1425", "4886", "T440-4086 10Gbase-T Unified Wire Ethernet Controller [VF]" }, - { "1425", "4887", "T440T-4087 Unified Wire Ethernet Controller [VF]" }, - { "1425", "4888", "T440-4088 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5001", "T520-CR Unified Wire Ethernet Controller" }, - { "1425", "5002", "T522-CR Unified Wire Ethernet Controller" }, - { "1425", "5003", "T540-CR Unified Wire Ethernet Controller" }, - { "1425", "5004", "T520-BCH Unified Wire Ethernet Controller" }, - { "1425", "5005", "T540-BCH Unified Wire Ethernet Controller" }, - { "1425", "5006", "T540-CH Unified Wire Ethernet Controller" }, - { "1425", "5007", "T520-SO Unified Wire Ethernet Controller" }, - { "1425", "5008", "T520-CX Unified Wire Ethernet Controller" }, - { "1425", "5009", "T520-BT Unified Wire Ethernet Controller" }, - { "1425", "500a", "T504-BT Unified Wire Ethernet Controller" }, - { "1425", "500b", "B520-SR Unified Wire Ethernet Controller" }, - { "1425", "500c", "B504-BT Unified Wire Ethernet Controller" }, - { "1425", "500d", "T580-CR Unified Wire Ethernet Controller" }, - { "1425", "500e", "T540-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "500f", "T540 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "5010", "T580-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "5011", "T520-LL-CR Unified Wire Ethernet Controller" }, - { "1425", "5012", "T560-CR Unified Wire Ethernet Controller" }, - { "1425", "5013", "T580-CHR Unified Wire Ethernet Controller" }, - { "1425", "5014", "T580-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "5015", "T502-BT Unified Wire Ethernet Controller" }, - { "1425", "5016", "T580-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "5017", "T520-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "5018", "T540-BT Unified Wire Ethernet Controller" }, - { "1425", "5019", "T540-LP-BT Unified Wire Ethernet Controller" }, - { "1425", "501a", "T540-SO-BT Unified Wire Ethernet Controller" }, - { "1425", "501b", "T540-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "5080", "T540-5080 Unified Wire Ethernet Controller" }, - { "1425", "5081", "T540-5081 Unified Wire Ethernet Controller" }, - { "1425", "5082", "T504-5082 Unified Wire Ethernet Controller" }, - { "1425", "5083", "T540-5083 Unified Wire Ethernet Controller" }, - { "1425", "5084", "T540-5084 Unified Wire Ethernet Controller" }, - { "1425", "5085", "T580-5085 Unified Wire Ethernet Controller" }, - { "1425", "5086", "T580-5086 Unified Wire Ethernet Controller" }, - { "1425", "5087", "T580-5087 Unified Wire Ethernet Controller" }, - { "1425", "5088", "T570-5088 Unified Wire Ethernet Controller" }, - { "1425", "5089", "T520-5089 Unified Wire Ethernet Controller" }, - { "1425", "5090", "T540-5090 Unified Wire Ethernet Controller" }, - { "1425", "5091", "T522-5091 Unified Wire Ethernet Controller" }, - { "1425", "5092", "T520-5092 Unified Wire Ethernet Controller" }, - { "1425", "5093", "T580-5093 Unified Wire Ethernet Controller" }, - { "1425", "5094", "T540-5094 Unified Wire Ethernet Controller" }, - { "1425", "5095", "T540-5095 Unified Wire Ethernet Controller" }, - { "1425", "5096", "T580-5096 Unified Wire Ethernet Controller" }, - { "1425", "5097", "T520-5097 Unified Wire Ethernet Controller" }, - { "1425", "5098", "T580-5098 Unified Wire Ethernet Controller" }, - { "1425", "5099", "T580-5099 Unified Wire Ethernet Controller" }, - { "1425", "509a", "T520-509A Unified Wire Ethernet Controller" }, - { "1425", "509b", "T540-509B Unified Wire Ethernet Controller" }, - { "1425", "509c", "T520-509C Unified Wire Ethernet Controller" }, - { "1425", "509d", "T540-509D Unified Wire Ethernet Controller" }, - { "1425", "509e", "T520-509E Unified Wire Ethernet Controller" }, - { "1425", "509f", "T540-509F Unified Wire Ethernet Controller" }, - { "1425", "50a0", "T540-50A0 Unified Wire Ethernet Controller" }, - { "1425", "50a1", "T540-50A1 Unified Wire Ethernet Controller" }, - { "1425", "50a2", "T580-50A2 Unified Wire Ethernet Controller" }, - { "1425", "50a3", "T580-50A3 Unified Wire Ethernet Controller" }, - { "1425", "50a4", "T540-50A4 Unified Wire Ethernet Controller" }, - { "1425", "50a5", "T522-50A5 Unified Wire Ethernet Controller" }, - { "1425", "50a6", "T522-50A6 Unified Wire Ethernet Controller" }, - { "1425", "50a7", "T580-50A7 Unified Wire Ethernet Controller" }, - { "1425", "50a8", "T580-50A8 Unified Wire Ethernet Controller" }, - { "1425", "50a9", "T580-50A9 Unified Wire Ethernet Controller" }, - { "1425", "50aa", "T580-50AA Unified Wire Ethernet Controller" }, - { "1425", "50ab", "T520-50AB Unified Wire Ethernet Controller" }, - { "1425", "50ac", "T540-50AC Unified Wire Ethernet Controller" }, - { "1425", "50ad", "T520-50AD Unified Wire Ethernet Controller" }, - { "1425", "50ae", "T540-50AE Unified Wire Ethernet Controller" }, - { "1425", "50af", "T580-50AF Unified Wire Ethernet Controller" }, - { "1425", "50b0", "T520-50B0 Unified Wire Ethernet Controller" }, - { "1425", "5401", "T520-CR Unified Wire Ethernet Controller" }, - { "1425", "5402", "T522-CR Unified Wire Ethernet Controller" }, - { "1425", "5403", "T540-CR Unified Wire Ethernet Controller" }, - { "1425", "5404", "T520-BCH Unified Wire Ethernet Controller" }, - { "1425", "5405", "T540-BCH Unified Wire Ethernet Controller" }, - { "1425", "5406", "T540-CH Unified Wire Ethernet Controller" }, - { "1425", "5407", "T520-SO Unified Wire Ethernet Controller" }, - { "1425", "5408", "T520-CX Unified Wire Ethernet Controller" }, - { "1425", "5409", "T520-BT Unified Wire Ethernet Controller" }, - { "1425", "540a", "T504-BT Unified Wire Ethernet Controller" }, - { "1425", "540b", "B520-SR Unified Wire Ethernet Controller" }, - { "1425", "540c", "B504-BT Unified Wire Ethernet Controller" }, - { "1425", "540d", "T580-CR Unified Wire Ethernet Controller" }, - { "1425", "540e", "T540-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "540f", "T540 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "5410", "T580-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "5411", "T520-LL-CR Unified Wire Ethernet Controller" }, - { "1425", "5412", "T560-CR Unified Wire Ethernet Controller" }, - { "1425", "5413", "T580-CHR Unified Wire Ethernet Controller" }, - { "1425", "5414", "T580-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "5415", "T502-BT Unified Wire Ethernet Controller" }, - { "1425", "5416", "T580-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "5417", "T520-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "5418", "T540-BT Unified Wire Ethernet Controller" }, - { "1425", "5419", "T540-LP-BT Unified Wire Ethernet Controller" }, - { "1425", "541a", "T540-SO-BT Unified Wire Ethernet Controller" }, - { "1425", "541b", "T540-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "5480", "T540-5080 Unified Wire Ethernet Controller" }, - { "1425", "5481", "T540-5081 Unified Wire Ethernet Controller" }, - { "1425", "5482", "T504-5082 Unified Wire Ethernet Controller" }, - { "1425", "5483", "T540-5083 Unified Wire Ethernet Controller" }, - { "1425", "5484", "T540-5084 Unified Wire Ethernet Controller" }, - { "1425", "5485", "T580-5085 Unified Wire Ethernet Controller" }, - { "1425", "5486", "T580-5086 Unified Wire Ethernet Controller" }, - { "1425", "5487", "T580-5087 Unified Wire Ethernet Controller" }, - { "1425", "5488", "T570-5088 Unified Wire Ethernet Controller" }, - { "1425", "5489", "T520-5089 Unified Wire Ethernet Controller" }, - { "1425", "5490", "T540-5090 Unified Wire Ethernet Controller" }, - { "1425", "5491", "T522-5091 Unified Wire Ethernet Controller" }, - { "1425", "5492", "T520-5092 Unified Wire Ethernet Controller" }, - { "1425", "5493", "T580-5093 Unified Wire Ethernet Controller" }, - { "1425", "5494", "T540-5094 Unified Wire Ethernet Controller" }, - { "1425", "5495", "T540-5095 Unified Wire Ethernet Controller" }, - { "1425", "5496", "T580-5096 Unified Wire Ethernet Controller" }, - { "1425", "5497", "T520-5097 Unified Wire Ethernet Controller" }, - { "1425", "5498", "T580-5098 Unified Wire Ethernet Controller" }, - { "1425", "5499", "T580-5099 Unified Wire Ethernet Controller" }, - { "1425", "549a", "T520-509A Unified Wire Ethernet Controller" }, - { "1425", "549b", "T540-509B Unified Wire Ethernet Controller" }, - { "1425", "549c", "T520-509C Unified Wire Ethernet Controller" }, - { "1425", "549d", "T540-509D Unified Wire Ethernet Controller" }, - { "1425", "549e", "T520-509E Unified Wire Ethernet Controller" }, - { "1425", "549f", "T540-509F Unified Wire Ethernet Controller" }, - { "1425", "54a0", "T540-50A0 Unified Wire Ethernet Controller" }, - { "1425", "54a1", "T540-50A1 Unified Wire Ethernet Controller" }, - { "1425", "54a2", "T580-50A2 Unified Wire Ethernet Controller" }, - { "1425", "54a3", "T580-50A3 Unified Wire Ethernet Controller" }, - { "1425", "54a4", "T540-50A4 Unified Wire Ethernet Controller" }, - { "1425", "54a5", "T522-50A5 Unified Wire Ethernet Controller" }, - { "1425", "54a6", "T522-50A6 Unified Wire Ethernet Controller" }, - { "1425", "54a7", "T580-50A7 Unified Wire Ethernet Controller" }, - { "1425", "54a8", "T580-50A8 Unified Wire Ethernet Controller" }, - { "1425", "54a9", "T580-50A9 Unified Wire Ethernet Controller" }, - { "1425", "54aa", "T580-50AA Unified Wire Ethernet Controller" }, - { "1425", "54ab", "T520-50AB Unified Wire Ethernet Controller" }, - { "1425", "54ac", "T540-50AC Unified Wire Ethernet Controller" }, - { "1425", "54ad", "T520-50AD Unified Wire Ethernet Controller" }, - { "1425", "54ae", "T540-50AE Unified Wire Ethernet Controller" }, - { "1425", "54af", "T580-50AF Unified Wire Ethernet Controller" }, - { "1425", "54b0", "T520-50B0 Unified Wire Ethernet Controller" }, - { "1425", "5501", "T520-CR Unified Wire Storage Controller" }, - { "1425", "5502", "T522-CR Unified Wire Storage Controller" }, - { "1425", "5503", "T540-CR Unified Wire Storage Controller" }, - { "1425", "5504", "T520-BCH Unified Wire Storage Controller" }, - { "1425", "5505", "T540-BCH Unified Wire Storage Controller" }, - { "1425", "5506", "T540-CH Unified Wire Storage Controller" }, - { "1425", "5507", "T520-SO Unified Wire Storage Controller" }, - { "1425", "5508", "T520-CX Unified Wire Storage Controller" }, - { "1425", "5509", "T520-BT Unified Wire Storage Controller" }, - { "1425", "550a", "T504-BT Unified Wire Storage Controller" }, - { "1425", "550b", "B520-SR Unified Wire Storage Controller" }, - { "1425", "550c", "B504-BT Unified Wire Storage Controller" }, - { "1425", "550d", "T580-CR Unified Wire Storage Controller" }, - { "1425", "550e", "T540-LP-CR Unified Wire Storage Controller" }, - { "1425", "550f", "T540 [Amsterdam] Unified Wire Storage Controller" }, - { "1425", "5510", "T580-LP-CR Unified Wire Storage Controller" }, - { "1425", "5511", "T520-LL-CR Unified Wire Storage Controller" }, - { "1425", "5512", "T560-CR Unified Wire Storage Controller" }, - { "1425", "5513", "T580-CHR Unified Wire Storage Controller" }, - { "1425", "5514", "T580-SO-CR Unified Wire Storage Controller" }, - { "1425", "5515", "T502-BT Unified Wire Storage Controller" }, - { "1425", "5516", "T580-OCP-SO Unified Wire Storage Controller" }, - { "1425", "5517", "T520-OCP-SO Unified Wire Storage Controller" }, - { "1425", "5518", "T540-BT Unified Wire Storage Controller" }, - { "1425", "5519", "T540-LP-BT Unified Wire Storage Controller" }, - { "1425", "551a", "T540-SO-BT Unified Wire Storage Controller" }, - { "1425", "551b", "T540-SO-CR Unified Wire Storage Controller" }, - { "1425", "5580", "T540-5080 Unified Wire Storage Controller" }, - { "1425", "5581", "T540-5081 Unified Wire Storage Controller" }, - { "1425", "5582", "T504-5082 Unified Wire Storage Controller" }, - { "1425", "5583", "T540-5083 Unified Wire Storage Controller" }, - { "1425", "5584", "T540-5084 Unified Wire Storage Controller" }, - { "1425", "5585", "T580-5085 Unified Wire Storage Controller" }, - { "1425", "5586", "T580-5086 Unified Wire Storage Controller" }, - { "1425", "5587", "T580-5087 Unified Wire Storage Controller" }, - { "1425", "5588", "T570-5088 Unified Wire Storage Controller" }, - { "1425", "5589", "T520-5089 Unified Wire Storage Controller" }, - { "1425", "5590", "T540-5090 Unified Wire Storage Controller" }, - { "1425", "5591", "T522-5091 Unified Wire Storage Controller" }, - { "1425", "5592", "T520-5092 Unified Wire Storage Controller" }, - { "1425", "5593", "T580-5093 Unified Wire Storage Controller" }, - { "1425", "5594", "T540-5094 Unified Wire Storage Controller" }, - { "1425", "5595", "T540-5095 Unified Wire Storage Controller" }, - { "1425", "5596", "T580-5096 Unified Wire Storage Controller" }, - { "1425", "5597", "T520-5097 Unified Wire Storage Controller" }, - { "1425", "5598", "T580-5098 Unified Wire Storage Controller" }, - { "1425", "5599", "T580-5099 Unified Wire Storage Controller" }, - { "1425", "559a", "T520-509A Unified Wire Storage Controller" }, - { "1425", "559b", "T540-509B Unified Wire Storage Controller" }, - { "1425", "559c", "T520-509C Unified Wire Storage Controller" }, - { "1425", "559d", "T540-509D Unified Wire Storage Controller" }, - { "1425", "559e", "T520-509E Unified Wire Storage Controller" }, - { "1425", "559f", "T540-509F Unified Wire Storage Controller" }, - { "1425", "55a0", "T540-50A0 Unified Wire Storage Controller" }, - { "1425", "55a1", "T540-50A1 Unified Wire Storage Controller" }, - { "1425", "55a2", "T580-50A2 Unified Wire Storage Controller" }, - { "1425", "55a3", "T580-50A3 Unified Wire Storage Controller" }, - { "1425", "55a4", "T540-50A4 Unified Wire Storage Controller" }, - { "1425", "55a5", "T522-50A5 Unified Wire Storage Controller" }, - { "1425", "55a6", "T522-50A6 Unified Wire Storage Controller" }, - { "1425", "55a7", "T580-50A7 Unified Wire Storage Controller" }, - { "1425", "55a8", "T580-50A8 Unified Wire Storage Controller" }, - { "1425", "55a9", "T580-50A9 Unified Wire Storage Controller" }, - { "1425", "55aa", "T580-50AA Unified Wire Storage Controller" }, - { "1425", "55ab", "T520-50AB Unified Wire Storage Controller" }, - { "1425", "55ac", "T540-50AC Unified Wire Storage Controller" }, - { "1425", "55ad", "T520-50AD Unified Wire Storage Controller" }, - { "1425", "55ae", "T540-50AE Unified Wire Storage Controller" }, - { "1425", "55af", "T580-50AF Unified Wire Storage Controller" }, - { "1425", "55b0", "T520-50B0 Unified Wire Storage Controller" }, - { "1425", "5601", "T520-CR Unified Wire Storage Controller" }, - { "1425", "5602", "T522-CR Unified Wire Storage Controller" }, - { "1425", "5603", "T540-CR Unified Wire Storage Controller" }, - { "1425", "5604", "T520-BCH Unified Wire Storage Controller" }, - { "1425", "5605", "T540-BCH Unified Wire Storage Controller" }, - { "1425", "5606", "T540-CH Unified Wire Storage Controller" }, - { "1425", "5607", "T520-SO Unified Wire Storage Controller" }, - { "1425", "5608", "T520-CX Unified Wire Storage Controller" }, - { "1425", "5609", "T520-BT Unified Wire Storage Controller" }, - { "1425", "560a", "T504-BT Unified Wire Storage Controller" }, - { "1425", "560b", "B520-SR Unified Wire Storage Controller" }, - { "1425", "560c", "B504-BT Unified Wire Storage Controller" }, - { "1425", "560d", "T580-CR Unified Wire Storage Controller" }, - { "1425", "560e", "T540-LP-CR Unified Wire Storage Controller" }, - { "1425", "560f", "T540 [Amsterdam] Unified Wire Storage Controller" }, - { "1425", "5610", "T580-LP-CR Unified Wire Storage Controller" }, - { "1425", "5611", "T520-LL-CR Unified Wire Storage Controller" }, - { "1425", "5612", "T560-CR Unified Wire Storage Controller" }, - { "1425", "5613", "T580-CHR Unified Wire Storage Controller" }, - { "1425", "5614", "T580-SO-CR Unified Wire Storage Controller" }, - { "1425", "5615", "T502-BT Unified Wire Storage Controller" }, - { "1425", "5616", "T580-OCP-SO Unified Wire Storage Controller" }, - { "1425", "5617", "T520-OCP-SO Unified Wire Storage Controller" }, - { "1425", "5618", "T540-BT Unified Wire Storage Controller" }, - { "1425", "5619", "T540-LP-BT Unified Wire Storage Controller" }, - { "1425", "561a", "T540-SO-BT Unified Wire Storage Controller" }, - { "1425", "561b", "T540-SO-CR Unified Wire Storage Controller" }, - { "1425", "5680", "T540-5080 Unified Wire Storage Controller" }, - { "1425", "5681", "T540-5081 Unified Wire Storage Controller" }, - { "1425", "5682", "T504-5082 Unified Wire Storage Controller" }, - { "1425", "5683", "T540-5083 Unified Wire Storage Controller" }, - { "1425", "5684", "T540-5084 Unified Wire Storage Controller" }, - { "1425", "5685", "T580-5085 Unified Wire Storage Controller" }, - { "1425", "5686", "T580-5086 Unified Wire Storage Controller" }, - { "1425", "5687", "T580-5087 Unified Wire Storage Controller" }, - { "1425", "5688", "T570-5088 Unified Wire Storage Controller" }, - { "1425", "5689", "T520-5089 Unified Wire Storage Controller" }, - { "1425", "5690", "T540-5090 Unified Wire Storage Controller" }, - { "1425", "5691", "T522-5091 Unified Wire Storage Controller" }, - { "1425", "5692", "T520-5092 Unified Wire Storage Controller" }, - { "1425", "5693", "T580-5093 Unified Wire Storage Controller" }, - { "1425", "5694", "T540-5094 Unified Wire Storage Controller" }, - { "1425", "5695", "T540-5095 Unified Wire Storage Controller" }, - { "1425", "5696", "T580-5096 Unified Wire Storage Controller" }, - { "1425", "5697", "T520-5097 Unified Wire Storage Controller" }, - { "1425", "5698", "T580-5098 Unified Wire Storage Controller" }, - { "1425", "5699", "T580-5099 Unified Wire Storage Controller" }, - { "1425", "569a", "T520-509A Unified Wire Storage Controller" }, - { "1425", "569b", "T540-509B Unified Wire Storage Controller" }, - { "1425", "569c", "T520-509C Unified Wire Storage Controller" }, - { "1425", "569d", "T540-509D Unified Wire Storage Controller" }, - { "1425", "569e", "T520-509E Unified Wire Storage Controller" }, - { "1425", "569f", "T540-509F Unified Wire Storage Controller" }, - { "1425", "56a0", "T540-50A0 Unified Wire Storage Controller" }, - { "1425", "56a1", "T540-50A1 Unified Wire Storage Controller" }, - { "1425", "56a2", "T580-50A2 Unified Wire Storage Controller" }, - { "1425", "56a3", "T580-50A3 Unified Wire Storage Controller" }, - { "1425", "56a4", "T540-50A4 Unified Wire Storage Controller" }, - { "1425", "56a5", "T522-50A5 Unified Wire Storage Controller" }, - { "1425", "56a6", "T522-50A6 Unified Wire Storage Controller" }, - { "1425", "56a7", "T580-50A7 Unified Wire Storage Controller" }, - { "1425", "56a8", "T580-50A8 Unified Wire Storage Controller" }, - { "1425", "56a9", "T580-50A9 Unified Wire Storage Controller" }, - { "1425", "56aa", "T580-50AA Unified Wire Storage Controller" }, - { "1425", "56ab", "T520-50AB Unified Wire Storage Controller" }, - { "1425", "56ac", "T540-50AC Unified Wire Storage Controller" }, - { "1425", "56ad", "T520-50AD Unified Wire Storage Controller" }, - { "1425", "56ae", "T540-50AE Unified Wire Storage Controller" }, - { "1425", "56af", "T580-50AF Unified Wire Storage Controller" }, - { "1425", "56b0", "T520-50B0 Unified Wire Storage Controller" }, - { "1425", "5701", "T520-CR Unified Wire Ethernet Controller" }, - { "1425", "5702", "T522-CR Unified Wire Ethernet Controller" }, - { "1425", "5703", "T540-CR Unified Wire Ethernet Controller" }, - { "1425", "5704", "T520-BCH Unified Wire Ethernet Controller" }, - { "1425", "5705", "T540-BCH Unified Wire Ethernet Controller" }, - { "1425", "5706", "T540-CH Unified Wire Ethernet Controller" }, - { "1425", "5707", "T520-SO Unified Wire Ethernet Controller" }, - { "1425", "5708", "T520-CX Unified Wire Ethernet Controller" }, - { "1425", "5709", "T520-BT Unified Wire Ethernet Controller" }, - { "1425", "570a", "T504-BT Unified Wire Ethernet Controller" }, - { "1425", "570b", "B520-SR Unified Wire Ethernet Controller" }, - { "1425", "570c", "B504-BT Unified Wire Ethernet Controller" }, - { "1425", "570d", "T580-CR Unified Wire Ethernet Controller" }, - { "1425", "570e", "T540-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "570f", "T540 [Amsterdam] Unified Wire Ethernet Controller" }, - { "1425", "5710", "T580-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "5711", "T520-LL-CR Unified Wire Ethernet Controller" }, - { "1425", "5712", "T560-CR Unified Wire Ethernet Controller" }, - { "1425", "5713", "T580-CR Unified Wire Ethernet Controller" }, - { "1425", "5714", "T580-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "5715", "T502-BT Unified Wire Ethernet Controller" }, - { "1425", "5780", "T540-5080 Unified Wire Ethernet Controller" }, - { "1425", "5781", "T540-5081 Unified Wire Ethernet Controller" }, - { "1425", "5782", "T504-5082 Unified Wire Ethernet Controller" }, - { "1425", "5783", "T540-5083 Unified Wire Ethernet Controller" }, - { "1425", "5784", "T580-5084 Unified Wire Ethernet Controller" }, - { "1425", "5785", "T580-5085 Unified Wire Ethernet Controller" }, - { "1425", "5786", "T580-5086 Unified Wire Ethernet Controller" }, - { "1425", "5787", "T580-5087 Unified Wire Ethernet Controller" }, - { "1425", "5788", "T570-5088 Unified Wire Ethernet Controller" }, - { "1425", "5789", "T520-5089 Unified Wire Ethernet Controller" }, - { "1425", "5790", "T540-5090 Unified Wire Ethernet Controller" }, - { "1425", "5791", "T522-5091 Unified Wire Ethernet Controller" }, - { "1425", "5792", "T520-5092 Unified Wire Ethernet Controller" }, - { "1425", "5793", "T580-5093 Unified Wire Ethernet Controller" }, - { "1425", "5794", "T540-5094 Unified Wire Ethernet Controller" }, - { "1425", "5795", "T540-5095 Unified Wire Ethernet Controller" }, - { "1425", "5796", "T580-5096 Unified Wire Ethernet Controller" }, - { "1425", "5797", "T520-5097 Unified Wire Ethernet Controller" }, - { "1425", "5801", "T520-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5802", "T522-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5803", "T540-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5804", "T520-BCH Unified Wire Ethernet Controller [VF]" }, - { "1425", "5805", "T540-BCH Unified Wire Ethernet Controller [VF]" }, - { "1425", "5806", "T540-CH Unified Wire Ethernet Controller [VF]" }, - { "1425", "5807", "T520-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "5808", "T520-CX Unified Wire Ethernet Controller [VF]" }, - { "1425", "5809", "T520-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "580a", "T504-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "580b", "B520-SR Unified Wire Ethernet Controller [VF]" }, - { "1425", "580c", "B504-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "580d", "T580-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "580e", "T540-LP-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "580f", "T540 [Amsterdam] Unified Wire Ethernet Controller [VF]" }, - { "1425", "5810", "T580-LP-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5811", "T520-LL-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5812", "T560-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5813", "T580-CHR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5814", "T580-SO-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5815", "T502-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "5816", "T580-OCP-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "5817", "T520-OCP-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "5818", "T540-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "5819", "T540-LP-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "581a", "T540-SO-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "581b", "T540-SO-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "5880", "T540-5080 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5881", "T540-5081 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5882", "T504-5082 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5883", "T540-5083 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5884", "T540-5084 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5885", "T580-5085 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5886", "T580-5086 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5887", "T580-5087 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5888", "T570-5088 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5889", "T520-5089 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5890", "T540-5090 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5891", "T522-5091 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5892", "T520-5092 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5893", "T580-5093 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5894", "T540-5094 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5895", "T540-5095 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5896", "T580-5096 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5897", "T520-5097 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5898", "T580-5098 Unified Wire Ethernet Controller [VF]" }, - { "1425", "5899", "T580-5099 Unified Wire Ethernet Controller [VF]" }, - { "1425", "589a", "T520-509A Unified Wire Ethernet Controller [VF]" }, - { "1425", "589b", "T540-509B Unified Wire Ethernet Controller [VF]" }, - { "1425", "589c", "T520-509C Unified Wire Ethernet Controller [VF]" }, - { "1425", "589d", "T540-509D Unified Wire Ethernet Controller [VF]" }, - { "1425", "589e", "T520-509E Unified Wire Ethernet Controller [VF]" }, - { "1425", "589f", "T540-509F Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a0", "T540-50A0 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a1", "T540-50A1 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a2", "T580-50A2 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a3", "T580-50A3 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a4", "T540-50A4 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a5", "T522-50A5 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a6", "T522-50A6 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a7", "T580-50A7 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a8", "T580-50A8 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58a9", "T580-50A9 Unified Wire Ethernet Controller [VF]" }, - { "1425", "58aa", "T580-50AA Unified Wire Ethernet Controller [VF]" }, - { "1425", "58ab", "T520-50AB Unified Wire Ethernet Controller [VF]" }, - { "1425", "58ac", "T540-50AC Unified Wire Ethernet Controller [VF]" }, - { "1425", "58ad", "T520-50AD Unified Wire Ethernet Controller [VF]" }, - { "1425", "58ae", "T540-50AE Unified Wire Ethernet Controller [VF]" }, - { "1425", "58af", "T580-50AF Unified Wire Ethernet Controller [VF]" }, - { "1425", "58b0", "T520-50B0 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6001", "T6225-CR Unified Wire Ethernet Controller" }, - { "1425", "6002", "T6225-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6003", "T6425-CR Unified Wire Ethernet Controller" }, - { "1425", "6004", "T6425-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6005", "T6225-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6006", "T62100-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6007", "T62100-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "6008", "T62100-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6009", "T6210-BT Unified Wire Ethernet Controller" }, - { "1425", "600d", "T62100-CR Unified Wire Ethernet Controller" }, - { "1425", "6011", "T6225-LL-CR Unified Wire Ethernet Controller" }, - { "1425", "6014", "T61100-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6015", "T6201-BT Unified Wire Ethernet Controller" }, - { "1425", "6080", "T6225-6080 Unified Wire Ethernet Controller" }, - { "1425", "6081", "T62100-6081 Unified Wire Ethernet Controller" }, - { "1425", "6082", "T6225-6082 Unified Wire Ethernet Controller" }, - { "1425", "6083", "T62100-6083 Unified Wire Ethernet Controller" }, - { "1425", "6084", "T64100-6084 Unified Wire Ethernet Controller" }, - { "1425", "6085", "T6240-6085 Unified Wire Ethernet Controller" }, - { "1425", "6086", "T6225-6086 Unified Wire Ethernet Controller" }, - { "1425", "6087", "T6225-6087 Unified Wire Ethernet Controller" }, - { "1425", "6088", "T62100-6088 Unified Wire Ethernet Controller" }, - { "1425", "6089", "T62100-6089 Unified Wire Ethernet Controller" }, - { "1425", "608a", "T62100-608a Unified Wire Ethernet Controller" }, - { "1425", "6401", "T6225-CR Unified Wire Ethernet Controller" }, - { "1425", "6402", "T6225-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6403", "T6425-CR Unified Wire Ethernet Controller" }, - { "1425", "6404", "T6425-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6405", "T6225-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6406", "T62100-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6407", "T62100-LP-CR Unified Wire Ethernet Controller" }, - { "1425", "6408", "T62100-SO-CR Unified Wire Ethernet Controller" }, - { "1425", "6409", "T6210-BT Unified Wire Ethernet Controller" }, - { "1425", "640d", "T62100-CR Unified Wire Ethernet Controller" }, - { "1425", "6411", "T6225-LL-CR Unified Wire Ethernet Controller" }, - { "1425", "6414", "T61100-OCP-SO Unified Wire Ethernet Controller" }, - { "1425", "6415", "T6201-BT Unified Wire Ethernet Controller" }, - { "1425", "6480", "T6225-6080 Unified Wire Ethernet Controller" }, - { "1425", "6481", "T62100-6081 Unified Wire Ethernet Controller" }, - { "1425", "6482", "T6225-6082 Unified Wire Ethernet Controller" }, - { "1425", "6483", "T62100-6083 Unified Wire Ethernet Controller" }, - { "1425", "6484", "T64100-6084 Unified Wire Ethernet Controller" }, - { "1425", "6485", "T6240-6085 Unified Wire Ethernet Controller" }, - { "1425", "6486", "T6225-6086 Unified Wire Ethernet Controller" }, - { "1425", "6487", "T6225-6087 Unified Wire Ethernet Controller" }, - { "1425", "6488", "T62100-6088 Unified Wire Ethernet Controller" }, - { "1425", "6489", "T62100-6089 Unified Wire Ethernet Controller" }, - { "1425", "648a", "T62100-608a Unified Wire Ethernet Controller" }, - { "1425", "6501", "T6225-CR Unified Wire Storage Controller" }, - { "1425", "6502", "T6225-SO-CR Unified Wire Storage Controller" }, - { "1425", "6503", "T6425-CR Unified Wire Storage Controller" }, - { "1425", "6504", "T6425-SO-CR Unified Wire Storage Controller" }, - { "1425", "6505", "T6225-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6506", "T62100-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6507", "T62100-LP-CR Unified Wire Storage Controller" }, - { "1425", "6508", "T62100-SO-CR Unified Wire Storage Controller" }, - { "1425", "6509", "T6210-BT Unified Wire Storage Controller" }, - { "1425", "650d", "T62100-CR Unified Wire Storage Controller" }, - { "1425", "6511", "T6225-LL-CR Unified Wire Storage Controller" }, - { "1425", "6514", "T61100-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6515", "T6201-BT Unified Wire Storage Controller" }, - { "1425", "6580", "T6225-6080 Unified Wire Storage Controller" }, - { "1425", "6581", "T62100-6081 Unified Wire Storage Controller" }, - { "1425", "6582", "T6225-6082 Unified Wire Storage Controller" }, - { "1425", "6583", "T62100-6083 Unified Wire Storage Controller" }, - { "1425", "6584", "T64100-6084 Unified Wire Storage Controller" }, - { "1425", "6585", "T6240-6085 Unified Wire Storage Controller" }, - { "1425", "6586", "T6225-6086 Unified Wire Storage Controller" }, - { "1425", "6587", "T6225-6087 Unified Wire Storage Controller" }, - { "1425", "6588", "T62100-6088 Unified Wire Storage Controller" }, - { "1425", "6589", "T62100-6089 Unified Wire Storage Controller" }, - { "1425", "658a", "T62100-608a Unified Wire Storage Controller" }, - { "1425", "6601", "T6225-CR Unified Wire Storage Controller" }, - { "1425", "6602", "T6225-SO-CR Unified Wire Storage Controller" }, - { "1425", "6603", "T6425-CR Unified Wire Storage Controller" }, - { "1425", "6604", "T6425-SO-CR Unified Wire Storage Controller" }, - { "1425", "6605", "T6225-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6606", "T62100-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6607", "T62100-LP-CR Unified Wire Storage Controller" }, - { "1425", "6608", "T62100-SO-CR Unified Wire Storage Controller" }, - { "1425", "6609", "T6210-BT Unified Wire Storage Controller" }, - { "1425", "660d", "T62100-CR Unified Wire Storage Controller" }, - { "1425", "6611", "T6225-LL-CR Unified Wire Storage Controller" }, - { "1425", "6614", "T61100-OCP-SO Unified Wire Storage Controller" }, - { "1425", "6615", "T6201-BT Unified Wire Storage Controller" }, - { "1425", "6680", "T6225-6080 Unified Wire Storage Controller" }, - { "1425", "6681", "T62100-6081 Unified Wire Storage Controller" }, - { "1425", "6682", "T6225-6082 Unified Wire Storage Controller" }, - { "1425", "6683", "T62100-6083 Unified Wire Storage Controller" }, - { "1425", "6684", "T64100-6084 Unified Wire Storage Controller" }, - { "1425", "6685", "T6240-6085 Unified Wire Storage Controller" }, - { "1425", "6686", "T6225-6086 Unified Wire Storage Controller" }, - { "1425", "6687", "T6225-6087 Unified Wire Storage Controller" }, - { "1425", "6688", "T62100-6088 Unified Wire Storage Controller" }, - { "1425", "6689", "T62100-6089 Unified Wire Storage Controller" }, - { "1425", "668a", "T62100-608a Unified Wire Storage Controller" }, - { "1425", "6801", "T6225-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6802", "T6225-SO-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6803", "T6425-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6804", "T6425-SO-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6805", "T6225-OCP-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "6806", "T62100-OCP-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "6807", "T62100-LP-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6808", "T62100-SO-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6809", "T6210-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "680d", "T62100-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6811", "T6225-LL-CR Unified Wire Ethernet Controller [VF]" }, - { "1425", "6814", "T61100-OCP-SO Unified Wire Ethernet Controller [VF]" }, - { "1425", "6815", "T6201-BT Unified Wire Ethernet Controller [VF]" }, - { "1425", "6880", "T6225-6080 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6881", "T62100-6081 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6882", "T6225-6082 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6883", "T62100-6083 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6884", "T64100-6084 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6885", "T6240-6085 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6886", "T6225-6086 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6887", "T6225-6087 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6888", "T62100-6088 Unified Wire Ethernet Controller [VF]" }, - { "1425", "6889", "T62100-6089 Unified Wire Ethernet Controller [VF]" }, - { "1425", "688a", "T62100-608a Unified Wire Ethernet Controller [VF]" }, - { "1425", "a000", "PE10K Unified Wire Ethernet Controller" }, - { "142e", "4020", "VM2-2 [Video Maker 2] MPEG1/2 Encoder" }, - { "142e", "4337", "VM2-2-C7 [Video Maker 2 rev. C7] MPEG1/2 Encoder" }, - { "1432", "9130", "RTL81xx Fast Ethernet" }, - { "1435", "4520", "PCI4520" }, - { "1435", "6020", "SPM6020" }, - { "1435", "6030", "SPM6030" }, - { "1435", "6420", "SPM186420" }, - { "1435", "6430", "SPM176430" }, - { "1435", "6431", "SPM176431" }, - { "1435", "7520", "DM7520" }, - { "1435", "7540", "SDM7540" }, - { "1435", "7820", "DM7820" }, - { "144a", "6208", "PCI-6208V" }, - { "144a", "7250", "PCI-7250" }, - { "144a", "7296", "PCI-7296" }, - { "144a", "7432", "PCI-7432" }, - { "144a", "7433", "PCI-7433" }, - { "144a", "7434", "PCI-7434" }, - { "144a", "7841", "PCI-7841" }, - { "144a", "8133", "PCI-8133" }, - { "144a", "8164", "PCI-8164" }, - { "144a", "8554", "PCI-8554" }, - { "144a", "9111", "PCI-9111" }, - { "144a", "9113", "PCI-9113" }, - { "144a", "9114", "PCI-9114" }, - { "144a", "a001", "ADi-BSEC" }, - { "144d", "1600", "Apple PCIe SSD" }, - { "144d", "a544", "Exynos 8890 PCIe Root Complex" }, - { "144d", "a800", "XP941 PCIe SSD" }, - { "144d", "a802", "NVMe SSD Controller SM951/PM951" }, - { "144d", "a804", "NVMe SSD Controller SM961/PM961/SM963" }, - { "144d", "a808", "NVMe SSD Controller SM981/PM981/PM983" }, - { "144d", "a809", "NVMe SSD Controller 980" }, - { "144d", "a80a", "NVMe SSD Controller PM9A1/PM9A3/980PRO" }, - { "144d", "a820", "NVMe SSD Controller 171X" }, - { "144d", "a821", "NVMe SSD Controller 172X" }, - { "144d", "a822", "NVMe SSD Controller 172Xa/172Xb" }, - { "144d", "a824", "NVMe SSD Controller PM173X" }, - { "144d", "a825", "NVMe SSD Controller PM173Xa" }, - { "144d", "a826", "NVMe SSD Controller PM174X" }, - { "144d", "ecec", "Exynos 8895 PCIe Root Complex" }, - { "1458", "22e8", "Ellesmere [Radeon RX 480]" }, - { "1458", "3483", "USB 3.0 Controller (VIA VL80x-based xHCI Controller)" }, - { "145f", "0001", "NextMove PCI" }, - { "1461", "a3ce", "M179" }, - { "1461", "a3cf", "M179" }, - { "1461", "a836", "M115 DVB-T, PAL/SECAM/NTSC Tuner" }, - { "1461", "e836", "M115S Hybrid Analog/DVB PAL/SECAM/NTSC Tuner" }, - { "1461", "f436", "AVerTV Hybrid+FM" }, - { "1462", "3483", "MSI USB 3.0 (VIA VL80x-based xHCI USB Controller)" }, - { "1462", "7c56", "Realtek Ethernet controller RTL8111H" }, - { "1462", "aaf0", "Radeon RX 580 Gaming X 8G" }, - { "146a", "3010", "3010 RF Synthesizer" }, - { "146a", "3a11", "3011A PXI RF Synthesizer" }, - { "146c", "1430", "FE-1430TX Fast Ethernet PCI Adapter" }, - { "147b", "1084", "IP35 [Dark Raider]" }, - { "1482", "0001", "PCI-16 Host Interface for ITC-16" }, - { "148c", "2391", "Radeon RX 590 [Red Devil]" }, - { "148d", "1003", "HCF 56k Data/Fax Modem" }, - { "1497", "1497", "SMA Technologie AG" }, - { "1498", "0330", "TPMC816 2 Channel CAN bus controller." }, - { "1498", "035d", "TPMC861 4-Channel Isolated Serial Interface RS422/RS485" }, - { "1498", "0385", "TPMC901 Extended CAN bus with 2/4/6 CAN controller" }, - { "1498", "21cc", "TCP460 CompactPCI 16 Channel Serial Interface RS232/RS422" }, - { "1498", "21cd", "TCP461 CompactPCI 8 Channel Serial Interface RS232/RS422" }, - { "1498", "3064", "TPCI100 (2 Slot IndustryPack PCI Carrier)" }, - { "1498", "30c8", "TPCI200 4 Slot IndustryPack PCI Carrier" }, - { "1498", "70c8", "TPCE200 4 Slot IndustryPack PCIe Carrier" }, - { "1498", "9177", "TXMC375 8 channel RS232/RS422/RS485 programmable serial interface" }, - { "149d", "0001", "Video Toaster for PC" }, - { "14a4", "22f1", "M8Pe Series NVMe SSD" }, - { "14a4", "4318", "Broadcom BCM4318 [AirForce One 54g] 802.11g WLAN Controller" }, - { "14af", "7102", "3D Prophet II MX" }, - { "14b3", "0000", "DSL NIC" }, - { "14b5", "0200", "Scope" }, - { "14b5", "0300", "Pulsar" }, - { "14b5", "0400", "PulsarSRB" }, - { "14b5", "0600", "Pulsar2" }, - { "14b5", "0800", "DSP-Board" }, - { "14b5", "0900", "DSP-Board" }, - { "14b5", "0a00", "DSP-Board" }, - { "14b5", "0b00", "DSP-Board" }, - { "14b7", "0001", "Symphony 4110" }, - { "14b9", "0001", "PC4800" }, - { "14b9", "0340", "PC4800" }, - { "14b9", "0350", "350 series 802.11b Wireless LAN Adapter" }, - { "14b9", "4500", "PC4500" }, - { "14b9", "4800", "Cisco Aironet 340 802.11b Wireless LAN Adapter/Aironet PC4800" }, - { "14b9", "a504", "Cisco Aironet Wireless 802.11b" }, - { "14b9", "a505", "Cisco Aironet CB20a 802.11a Wireless LAN Adapter" }, - { "14b9", "a506", "Cisco Aironet Mini PCI b/g" }, - { "14ba", "0600", "ARC-PCI/22" }, - { "14bc", "d002", "Pulsar [PCI ADSL Card]" }, - { "14bc", "d00f", "Pulsar [PCI ADSL Card]" }, - { "14c0", "1201", "X550 10Gb 2P RJ45 OCP Mezz" }, - { "14c1", "0008", "Myri-10G Dual-Protocol NIC" }, - { "14c1", "8043", "Myrinet 2000 Scalable Cluster Interconnect" }, - { "14c3", "0608", "RZ608 Wi-Fi 6E 80MHz" }, - { "14c3", "0616", "MT7922 802.11ax PCI Express Wireless Network Adapter" }, - { "14c3", "7612", "MT7612E 802.11acbgn PCI Express Wireless Network Adapter" }, - { "14c3", "7615", "MT7615E 802.11ac PCI Express Wireless Network Adapter" }, - { "14c3", "7630", "MT7630e 802.11bgn Wireless Network Adapter" }, - { "14c3", "7662", "MT7662E 802.11ac PCI Express Wireless Network Adapter" }, - { "14c3", "7915", "MT7915E 802.11ax PCI Express Wireless Network Adapter" }, - { "14c3", "7961", "MT7921 802.11ax PCI Express Wireless Network Adapter" }, - { "14cd", "0001", "USI-1514-1GbaseT [OCP1]" }, - { "14cd", "0002", "USI-4227-SFP [OCP2]" }, - { "14cd", "0003", "USI-X557-10GbaseT [OCP3]" }, - { "14d2", "8001", "VScom 010L 1 port parallel adaptor" }, - { "14d2", "8002", "VScom 020L 2 port parallel adaptor" }, - { "14d2", "8010", "VScom 100L 1 port serial adaptor" }, - { "14d2", "8011", "VScom 110L 1 port serial and 1 port parallel adaptor" }, - { "14d2", "8020", "VScom 200L 1 or 2 port serial adaptor" }, - { "14d2", "8021", "VScom 210L 2 port serial and 1 port parallel adaptor" }, - { "14d2", "8028", "VScom 200I/200I-SI 2-port serial adapter" }, - { "14d2", "8040", "VScom 400L 4 port serial adaptor" }, - { "14d2", "8043", "VScom 430L 4-port serial and 3-port parallel adapter" }, - { "14d2", "8048", "VScom 400I 4-port serial adapter" }, - { "14d2", "8080", "VScom 800L 8 port serial adaptor" }, - { "14d2", "8088", "VScom 800I 8-port serial adapter" }, - { "14d2", "a000", "VScom 010H 1 port parallel adaptor" }, - { "14d2", "a001", "VScom 100H 1 port serial adaptor" }, - { "14d2", "a003", "VScom 400H 4 port serial adaptor" }, - { "14d2", "a004", "VScom 400HF1 4 port serial adaptor" }, - { "14d2", "a005", "VScom 200H 2 port serial adaptor" }, - { "14d2", "a007", "VScom PCI800EH (PCIe) 8-port serial adapter Port 1-4" }, - { "14d2", "a008", "VScom PCI800EH (PCIe) 8-port serial adapter Port 5-8" }, - { "14d2", "a009", "VScom PCI400EH (PCIe) 4-port serial adapter" }, - { "14d2", "e001", "VScom 010HV2 1 port parallel adaptor" }, - { "14d2", "e010", "VScom 100HV2 1 port serial adaptor" }, - { "14d2", "e020", "VScom 200HV2 2 port serial adaptor" }, - { "14d3", "0002", "DTL-T14000 Rev. 1 [PS2 TOOL CD/DVD Emulator]" }, - { "14d3", "0003", "DTL-T14000 Rev. 2 [PS2 TOOL CD/DVD Emulator]" }, - { "14d3", "0004", "DTL-T14000 Rev. 3 [PS2 TOOL CD/DVD Emulator]" }, - { "14d6", "6101", "ACS-61xxx, PCIe to SAS/SATA RAID HBA" }, - { "14d6", "6201", "ACS-62xxx, External PCIe to SAS/SATA RAID controller" }, - { "14d9", "0010", "AP1011/SP1011 HyperTransport-PCI Bridge [Sturgeon]" }, - { "14d9", "9000", "AS90L10204/10208 HyperTransport to PCI-X Bridge" }, - { "14db", "2120", "TK9902" }, - { "14db", "2182", "AFAVLAB Technology Inc. 8-port serial card" }, - { "14dc", "0000", "PCI230" }, - { "14dc", "0001", "PCI242" }, - { "14dc", "0002", "PCI244" }, - { "14dc", "0003", "PCI247" }, - { "14dc", "0004", "PCI248" }, - { "14dc", "0005", "PCI249" }, - { "14dc", "0006", "PCI260" }, - { "14dc", "0007", "PCI224" }, - { "14dc", "0008", "PCI234" }, - { "14dc", "0009", "PCI236" }, - { "14dc", "000a", "PCI272" }, - { "14dc", "000b", "PCI215" }, - { "14e4", "0576", "BCM43224 802.11a/b/g/n" }, - { "14e4", "0800", "Sentry5 Chipcommon I/O Controller" }, - { "14e4", "0804", "Sentry5 PCI Bridge" }, - { "14e4", "0805", "Sentry5 MIPS32 CPU" }, - { "14e4", "0806", "Sentry5 Ethernet Controller" }, - { "14e4", "080b", "Sentry5 Crypto Accelerator" }, - { "14e4", "080f", "Sentry5 DDR/SDR RAM Controller" }, - { "14e4", "0811", "Sentry5 External Interface Core" }, - { "14e4", "0816", "BCM3302 Sentry5 MIPS32 CPU" }, - { "14e4", "1570", "720p FaceTime HD Camera" }, - { "14e4", "1600", "NetXtreme BCM5752 Gigabit Ethernet PCI Express" }, - { "14e4", "1601", "NetXtreme BCM5752M Gigabit Ethernet PCI Express" }, - { "14e4", "1604", "BCM5745X NetXtreme-E Ethernet Partition" }, - { "14e4", "1605", "BCM5745X NetXtreme-E RDMA Partition" }, - { "14e4", "1606", "BCM5745X NetXtreme-E RDMA Virtual Function" }, - { "14e4", "1609", "BCM5745X NetXtreme-E Ethernet Virtual Function" }, - { "14e4", "1612", "BCM70012 Video Decoder [Crystal HD]" }, - { "14e4", "1614", "BCM57454 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" }, - { "14e4", "1615", "BCM70015 Video Decoder [Crystal HD]" }, - { "14e4", "1639", "NetXtreme II BCM5709 Gigabit Ethernet" }, - { "14e4", "163a", "NetXtreme II BCM5709S Gigabit Ethernet" }, - { "14e4", "163b", "NetXtreme II BCM5716 Gigabit Ethernet" }, - { "14e4", "163c", "NetXtreme II BCM5716S Gigabit Ethernet" }, - { "14e4", "163d", "NetXtreme II BCM57811 10-Gigabit Ethernet" }, - { "14e4", "163e", "NetXtreme II BCM57811 10 Gigabit Ethernet Multi Function" }, - { "14e4", "163f", "NetXtreme II BCM57811 10-Gigabit Ethernet Virtual Function" }, - { "14e4", "1641", "NetXtreme BCM57787 Gigabit Ethernet PCIe" }, - { "14e4", "1642", "NetXtreme BCM57764 Gigabit Ethernet PCIe" }, - { "14e4", "1643", "NetXtreme BCM5725 Gigabit Ethernet PCIe" }, - { "14e4", "1644", "NetXtreme BCM5700 Gigabit Ethernet" }, - { "14e4", "1645", "NetXtreme BCM5701 Gigabit Ethernet" }, - { "14e4", "1646", "NetXtreme BCM5702 Gigabit Ethernet" }, - { "14e4", "1647", "NetXtreme BCM5703 Gigabit Ethernet" }, - { "14e4", "1648", "NetXtreme BCM5704 Gigabit Ethernet" }, - { "14e4", "1649", "NetXtreme BCM5704S_2 Gigabit Ethernet" }, - { "14e4", "164a", "NetXtreme II BCM5706 Gigabit Ethernet" }, - { "14e4", "164c", "NetXtreme II BCM5708 Gigabit Ethernet" }, - { "14e4", "164d", "NetXtreme BCM5702FE Gigabit Ethernet" }, - { "14e4", "164e", "NetXtreme II BCM57710 10-Gigabit PCIe [Everest]" }, - { "14e4", "164f", "NetXtreme II BCM57711 10-Gigabit PCIe" }, - { "14e4", "1650", "NetXtreme II BCM57711E 10-Gigabit PCIe" }, - { "14e4", "1653", "NetXtreme BCM5705 Gigabit Ethernet" }, - { "14e4", "1654", "NetXtreme BCM5705_2 Gigabit Ethernet" }, - { "14e4", "1655", "NetXtreme BCM5717 Gigabit Ethernet PCIe" }, - { "14e4", "1656", "NetXtreme BCM5718 Gigabit Ethernet PCIe" }, - { "14e4", "1657", "NetXtreme BCM5719 Gigabit Ethernet PCIe" }, - { "14e4", "1659", "NetXtreme BCM5721 Gigabit Ethernet PCI Express" }, - { "14e4", "165a", "NetXtreme BCM5722 Gigabit Ethernet PCI Express" }, - { "14e4", "165b", "NetXtreme BCM5723 Gigabit Ethernet PCIe" }, - { "14e4", "165c", "NetXtreme BCM5724 Gigabit Ethernet PCIe" }, - { "14e4", "165d", "NetXtreme BCM5705M Gigabit Ethernet" }, - { "14e4", "165e", "NetXtreme BCM5705M_2 Gigabit Ethernet" }, - { "14e4", "165f", "NetXtreme BCM5720 Gigabit Ethernet PCIe" }, - { "14e4", "1662", "NetXtreme II BCM57712 10 Gigabit Ethernet" }, - { "14e4", "1663", "NetXtreme II BCM57712 10 Gigabit Ethernet Multi Function" }, - { "14e4", "1665", "NetXtreme BCM5717 Gigabit Ethernet PCIe" }, - { "14e4", "1668", "NetXtreme BCM5714 Gigabit Ethernet" }, - { "14e4", "1669", "NetXtreme 5714S Gigabit Ethernet" }, - { "14e4", "166a", "NetXtreme BCM5780 Gigabit Ethernet" }, - { "14e4", "166b", "NetXtreme BCM5780S Gigabit Ethernet" }, - { "14e4", "166e", "570x 10/100 Integrated Controller" }, - { "14e4", "166f", "NetXtreme II BCM57712 10 Gigabit Ethernet Virtual Function" }, - { "14e4", "1672", "NetXtreme BCM5754M Gigabit Ethernet PCI Express" }, - { "14e4", "1673", "NetXtreme BCM5755M Gigabit Ethernet PCI Express" }, - { "14e4", "1674", "NetXtreme BCM5756ME Gigabit Ethernet PCI Express" }, - { "14e4", "1677", "NetXtreme BCM5751 Gigabit Ethernet PCI Express" }, - { "14e4", "1678", "NetXtreme BCM5715 Gigabit Ethernet" }, - { "14e4", "1679", "NetXtreme BCM5715S Gigabit Ethernet" }, - { "14e4", "167a", "NetXtreme BCM5754 Gigabit Ethernet PCI Express" }, - { "14e4", "167b", "NetXtreme BCM5755 Gigabit Ethernet PCI Express" }, - { "14e4", "167d", "NetXtreme BCM5751M Gigabit Ethernet PCI Express" }, - { "14e4", "167e", "NetXtreme BCM5751F Fast Ethernet PCI Express" }, - { "14e4", "167f", "NetLink BCM5787F Fast Ethernet PCI Express" }, - { "14e4", "1680", "NetXtreme BCM5761e Gigabit Ethernet PCIe" }, - { "14e4", "1681", "NetXtreme BCM5761 Gigabit Ethernet PCIe" }, - { "14e4", "1682", "NetXtreme BCM57762 Gigabit Ethernet PCIe" }, - { "14e4", "1683", "NetXtreme BCM57767 Gigabit Ethernet PCIe" }, - { "14e4", "1684", "NetXtreme BCM5764M Gigabit Ethernet PCIe" }, - { "14e4", "1685", "NetXtreme II BCM57500S Gigabit Ethernet" }, - { "14e4", "1686", "NetXtreme BCM57766 Gigabit Ethernet PCIe" }, - { "14e4", "1687", "NetXtreme BCM5762 Gigabit Ethernet PCIe" }, - { "14e4", "1688", "NetXtreme BCM5761 10/100/1000BASE-T Ethernet" }, - { "14e4", "168a", "NetXtreme II BCM57800 1/10 Gigabit Ethernet" }, - { "14e4", "168d", "NetXtreme II BCM57840 10/20 Gigabit Ethernet" }, - { "14e4", "168e", "NetXtreme II BCM57810 10 Gigabit Ethernet" }, - { "14e4", "1690", "NetXtreme BCM57760 Gigabit Ethernet PCIe" }, - { "14e4", "1691", "NetLink BCM57788 Gigabit Ethernet PCIe" }, - { "14e4", "1692", "NetLink BCM57780 Gigabit Ethernet PCIe" }, - { "14e4", "1693", "NetLink BCM5787M Gigabit Ethernet PCI Express" }, - { "14e4", "1694", "NetLink BCM57790 Gigabit Ethernet PCIe" }, - { "14e4", "1696", "NetXtreme BCM5782 Gigabit Ethernet" }, - { "14e4", "1698", "NetLink BCM5784M Gigabit Ethernet PCIe" }, - { "14e4", "1699", "NetLink BCM5785 Gigabit Ethernet" }, - { "14e4", "169a", "NetLink BCM5786 Gigabit Ethernet PCI Express" }, - { "14e4", "169b", "NetLink BCM5787 Gigabit Ethernet PCI Express" }, - { "14e4", "169c", "NetXtreme BCM5788 Gigabit Ethernet" }, - { "14e4", "169d", "NetLink BCM5789 Gigabit Ethernet PCI Express" }, - { "14e4", "16a0", "NetLink BCM5785 Fast Ethernet" }, - { "14e4", "16a1", "BCM57840 NetXtreme II 10 Gigabit Ethernet" }, - { "14e4", "16a2", "BCM57840 NetXtreme II 10/20-Gigabit Ethernet" }, - { "14e4", "16a3", "NetXtreme BCM57786 Gigabit Ethernet PCIe" }, - { "14e4", "16a4", "BCM57840 NetXtreme II Ethernet Multi Function" }, - { "14e4", "16a5", "NetXtreme II BCM57800 1/10 Gigabit Ethernet Multi Function" }, - { "14e4", "16a6", "NetXtreme BCM5702X Gigabit Ethernet" }, - { "14e4", "16a7", "NetXtreme BCM5703X Gigabit Ethernet" }, - { "14e4", "16a8", "NetXtreme BCM5704S Gigabit Ethernet" }, - { "14e4", "16a9", "NetXtreme II BCM57800 1/10 Gigabit Ethernet Virtual Function" }, - { "14e4", "16aa", "NetXtreme II BCM5706S Gigabit Ethernet" }, - { "14e4", "16ab", "NetXtreme II BCM57840 10/20 Gigabit Ethernet Multi Function" }, - { "14e4", "16ac", "NetXtreme II BCM5708S Gigabit Ethernet" }, - { "14e4", "16ad", "NetXtreme II BCM57840 10/20 Gigabit Ethernet Virtual Function" }, - { "14e4", "16ae", "NetXtreme II BCM57810 10 Gigabit Ethernet Multi Function" }, - { "14e4", "16af", "NetXtreme II BCM57810 10 Gigabit Ethernet Virtual Function" }, - { "14e4", "16b0", "NetXtreme BCM57761 Gigabit Ethernet PCIe" }, - { "14e4", "16b1", "NetLink BCM57781 Gigabit Ethernet PCIe" }, - { "14e4", "16b2", "NetLink BCM57791 Gigabit Ethernet PCIe" }, - { "14e4", "16b3", "NetXtreme BCM57786 Gigabit Ethernet PCIe" }, - { "14e4", "16b4", "NetXtreme BCM57765 Gigabit Ethernet PCIe" }, - { "14e4", "16b5", "NetLink BCM57785 Gigabit Ethernet PCIe" }, - { "14e4", "16b6", "NetLink BCM57795 Gigabit Ethernet PCIe" }, - { "14e4", "16b7", "NetXtreme BCM57782 Gigabit Ethernet PCIe" }, - { "14e4", "16bc", "BCM57765/57785 SDXC/MMC Card Reader" }, - { "14e4", "16be", "BCM57765/57785 MS Card Reader" }, - { "14e4", "16bf", "BCM57765/57785 xD-Picture Card Reader" }, - { "14e4", "16c1", "NetXtreme-E RDMA Virtual Function" }, - { "14e4", "16c6", "NetXtreme BCM5702A3 Gigabit Ethernet" }, - { "14e4", "16c7", "NetXtreme BCM5703 Gigabit Ethernet" }, - { "14e4", "16c8", "BCM57301 NetXtreme-C 10Gb Ethernet Controller" }, - { "14e4", "16c9", "BCM57302 NetXtreme-C 10Gb/25Gb Ethernet Controller" }, - { "14e4", "16ca", "BCM57304 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet Controller" }, - { "14e4", "16cb", "NetXtreme-C Ethernet Virtual Function" }, - { "14e4", "16cc", "BCM57417 NetXtreme-E Ethernet Partition" }, - { "14e4", "16ce", "BCM57311 NetXtreme-C 10Gb RDMA Ethernet Controller" }, - { "14e4", "16cf", "BCM57312 NetXtreme-C 10Gb/25Gb RDMA Ethernet Controller" }, - { "14e4", "16d0", "BCM57402 NetXtreme-E 10Gb Ethernet Controller" }, - { "14e4", "16d1", "BCM57404 NetXtreme-E 10Gb/25Gb Ethernet Controller" }, - { "14e4", "16d2", "BCM57406 NetXtreme-E 10GBASE-T Ethernet Controller" }, - { "14e4", "16d3", "NetXtreme-E Ethernet Virtual Function" }, - { "14e4", "16d4", "BCM57402 NetXtreme-E Ethernet Partition" }, - { "14e4", "16d5", "BCM57407 NetXtreme-E 10GBase-T Ethernet Controller" }, - { "14e4", "16d6", "BCM57412 NetXtreme-E 10Gb RDMA Ethernet Controller" }, - { "14e4", "16d7", "BCM57414 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller" }, - { "14e4", "16d8", "BCM57416 NetXtreme-E Dual-Media 10G RDMA Ethernet Controller" }, - { "14e4", "16d9", "BCM57417 NetXtreme-E 10GBASE-T RDMA Ethernet Controller" }, - { "14e4", "16dc", "NetXtreme-E Ethernet Virtual Function" }, - { "14e4", "16dd", "NetLink BCM5781 Gigabit Ethernet PCI Express" }, - { "14e4", "16de", "BCM57412 NetXtreme-E Ethernet Partition" }, - { "14e4", "16df", "BCM57314 NetXtreme-C 10Gb/25Gb/40Gb/50Gb RDMA Ethernet Controller" }, - { "14e4", "16e1", "NetXtreme-C Ethernet Virtual Function" }, - { "14e4", "16e2", "BCM57417 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller" }, - { "14e4", "16e3", "BCM57416 NetXtreme-E 10Gb RDMA Ethernet Controller" }, - { "14e4", "16e5", "NetXtreme-C RDMA Virtual Function" }, - { "14e4", "16e7", "BCM57404 NetXtreme-E Ethernet Partition" }, - { "14e4", "16e8", "BCM57406 NetXtreme-E Ethernet Partition" }, - { "14e4", "16e9", "BCM57407 NetXtreme-E 25Gb Ethernet Controller" }, - { "14e4", "16eb", "BCM57412 NetXtreme-E RDMA Partition" }, - { "14e4", "16ec", "BCM57414 NetXtreme-E Ethernet Partition" }, - { "14e4", "16ed", "BCM57414 NetXtreme-E RDMA Partition" }, - { "14e4", "16ee", "BCM57416 NetXtreme-E Ethernet Partition" }, - { "14e4", "16ef", "BCM57416 NetXtreme-E RDMA Partition" }, - { "14e4", "16f1", "BCM57452 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet" }, - { "14e4", "16f3", "NetXtreme BCM5727 Gigabit Ethernet PCIe" }, - { "14e4", "16f7", "NetXtreme BCM5753 Gigabit Ethernet PCI Express" }, - { "14e4", "16fd", "NetXtreme BCM5753M Gigabit Ethernet PCI Express" }, - { "14e4", "16fe", "NetXtreme BCM5753F Fast Ethernet PCI Express" }, - { "14e4", "170c", "BCM4401-B0 100Base-TX" }, - { "14e4", "170d", "NetXtreme BCM5901 100Base-TX" }, - { "14e4", "170e", "NetXtreme BCM5901 100Base-TX" }, - { "14e4", "1712", "NetLink BCM5906 Fast Ethernet PCI Express" }, - { "14e4", "1713", "NetLink BCM5906M Fast Ethernet PCI Express" }, - { "14e4", "1750", "BCM57508 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb/200Gb Ethernet" }, - { "14e4", "1751", "BCM57504 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb/200Gb Ethernet" }, - { "14e4", "1752", "BCM57502 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet" }, - { "14e4", "1800", "BCM57502 NetXtreme-E Ethernet Partition" }, - { "14e4", "1801", "BCM57504 NetXtreme-E Ethernet Partition" }, - { "14e4", "1802", "BCM57508 NetXtreme-E Ethernet Partition" }, - { "14e4", "1803", "BCM57502 NetXtreme-E RDMA Partition" }, - { "14e4", "1804", "BCM57504 NetXtreme-E RDMA Partition" }, - { "14e4", "1805", "BCM57508 NetXtreme-E RDMA Partition" }, - { "14e4", "1806", "BCM5750X NetXtreme-E Ethernet Virtual Function" }, - { "14e4", "1807", "BCM5750X NetXtreme-E RDMA Virtual Function" }, - { "14e4", "1808", "BCM5750X NetXtreme-E Ethernet Virtual Function" }, - { "14e4", "1809", "BCM5750X NetXtreme-E RDMA Virtual Function" }, - { "14e4", "2711", "BCM2711 PCIe Bridge" }, - { "14e4", "3352", "BCM3352" }, - { "14e4", "3360", "BCM3360" }, - { "14e4", "4210", "BCM4210 iLine10 HomePNA 2.0" }, - { "14e4", "4211", "BCM4211 iLine10 HomePNA 2.0 + V.90 56k modem" }, - { "14e4", "4212", "BCM4212 v.90 56k modem" }, - { "14e4", "4220", "802-11b/g Wireless PCI controller, packaged as a Linksys WPC54G ver 1.2 PCMCIA card" }, - { "14e4", "4222", "NetXtreme BCM5753M Gigabit Ethernet PCI Express" }, - { "14e4", "4301", "BCM4301 802.11b Wireless LAN Controller" }, - { "14e4", "4305", "BCM4307 V.90 56k Modem" }, - { "14e4", "4306", "BCM4306 802.11bg Wireless LAN controller" }, - { "14e4", "4307", "BCM4306 802.11bg Wireless LAN Controller" }, - { "14e4", "4310", "BCM4310 Chipcommon I/OController" }, - { "14e4", "4311", "BCM4311 802.11b/g WLAN" }, - { "14e4", "4312", "BCM4311 802.11a/b/g" }, - { "14e4", "4313", "BCM4311 802.11a" }, - { "14e4", "4315", "BCM4312 802.11b/g LP-PHY" }, - { "14e4", "4318", "BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller" }, - { "14e4", "4319", "BCM4318 [AirForce 54g] 802.11a/b/g PCI Express Transceiver" }, - { "14e4", "4320", "BCM4306 802.11b/g Wireless LAN Controller" }, - { "14e4", "4321", "BCM4321 802.11a Wireless Network Controller" }, - { "14e4", "4322", "BCM4322 802.11bgn Wireless Network Controller" }, - { "14e4", "4324", "BCM4309 802.11abg Wireless Network Controller" }, - { "14e4", "4325", "BCM4306 802.11bg Wireless Network Controller" }, - { "14e4", "4326", "BCM4307 Chipcommon I/O Controller?" }, - { "14e4", "4328", "BCM4321 802.11a/b/g/n" }, - { "14e4", "4329", "BCM4321 802.11b/g/n" }, - { "14e4", "432a", "BCM4321 802.11an Wireless Network Controller" }, - { "14e4", "432b", "BCM4322 802.11a/b/g/n Wireless LAN Controller" }, - { "14e4", "432c", "BCM4322 802.11b/g/n" }, - { "14e4", "432d", "BCM4322 802.11an Wireless Network Controller" }, - { "14e4", "4331", "BCM4331 802.11a/b/g/n" }, - { "14e4", "4333", "Serial (EDGE/GPRS modem part of Option GT Combo Edge)" }, - { "14e4", "4344", "EDGE/GPRS data and 802.11b/g combo cardbus [GC89]" }, - { "14e4", "4350", "BCM43222 Wireless Network Adapter" }, - { "14e4", "4351", "BCM43222 802.11abgn Wireless Network Adapter" }, - { "14e4", "4353", "BCM43224 802.11a/b/g/n" }, - { "14e4", "4357", "BCM43225 802.11b/g/n" }, - { "14e4", "4358", "BCM43227 802.11b/g/n" }, - { "14e4", "4359", "BCM43228 802.11a/b/g/n" }, - { "14e4", "4360", "BCM4360 802.11ac Wireless Network Adapter" }, - { "14e4", "4365", "BCM43142 802.11b/g/n" }, - { "14e4", "43a0", "BCM4360 802.11ac Wireless Network Adapter" }, - { "14e4", "43a1", "BCM4360 802.11ac Wireless Network Adapter" }, - { "14e4", "43a2", "BCM4360 802.11ac Wireless Network Adapter" }, - { "14e4", "43a3", "BCM4350 802.11ac Wireless Network Adapter" }, - { "14e4", "43a9", "BCM43217 802.11b/g/n" }, - { "14e4", "43aa", "BCM43131 802.11b/g/n" }, - { "14e4", "43ae", "BCM43162 802.11ac Wireless Network Adapter" }, - { "14e4", "43b1", "BCM4352 802.11ac Wireless Network Adapter" }, - { "14e4", "43ba", "BCM43602 802.11ac Wireless LAN SoC" }, - { "14e4", "43bb", "BCM43602 802.11ac Wireless LAN SoC" }, - { "14e4", "43bc", "BCM43602 802.11ac Wireless LAN SoC" }, - { "14e4", "43d3", "BCM43567 802.11ac Wireless Network Adapter" }, - { "14e4", "43d9", "BCM43570 802.11ac Wireless Network Adapter" }, - { "14e4", "43dc", "BCM4355 802.11ac Wireless LAN SoC" }, - { "14e4", "43df", "BCM4354 802.11ac Wireless LAN SoC" }, - { "14e4", "43e9", "BCM4358 802.11ac Wireless LAN SoC" }, - { "14e4", "43ec", "BCM4356 802.11ac Wireless Network Adapter" }, - { "14e4", "4401", "BCM4401 100Base-T" }, - { "14e4", "4402", "BCM4402 Integrated 10/100BaseT" }, - { "14e4", "4403", "BCM4402 V.90 56k Modem" }, - { "14e4", "4410", "BCM4413 iLine32 HomePNA 2.0" }, - { "14e4", "4411", "BCM4413 V.90 56k modem" }, - { "14e4", "4412", "BCM4412 10/100BaseT" }, - { "14e4", "4415", "BCM4359 802.11ac Dual-Band Wireless Network Controller" }, - { "14e4", "441f", "BCM4361 802.11ac Dual-Band Wireless Network Controller" }, - { "14e4", "4420", "BCM4361 802.11ac 2.4 GHz Wireless Network Controller" }, - { "14e4", "4421", "BCM4361 802.11ac 5 GHz Wireless Network Controller" }, - { "14e4", "4425", "BRCM4378 Wireless Network Adapter" }, - { "14e4", "4430", "BCM44xx CardBus iLine32 HomePNA 2.0" }, - { "14e4", "4432", "BCM4432 CardBus 10/100BaseT" }, - { "14e4", "4464", "BCM4364 802.11ac Wireless Network Adapter" }, - { "14e4", "4488", "BCM4377b Wireless Network Adapter" }, - { "14e4", "4610", "BCM4610 Sentry5 PCI to SB Bridge" }, - { "14e4", "4611", "BCM4610 Sentry5 iLine32 HomePNA 1.0" }, - { "14e4", "4612", "BCM4610 Sentry5 V.90 56k Modem" }, - { "14e4", "4613", "BCM4610 Sentry5 Ethernet Controller" }, - { "14e4", "4614", "BCM4610 Sentry5 External Interface" }, - { "14e4", "4615", "BCM4610 Sentry5 USB Controller" }, - { "14e4", "4704", "BCM4704 PCI to SB Bridge" }, - { "14e4", "4705", "BCM4704 Sentry5 802.11b Wireless LAN Controller" }, - { "14e4", "4706", "BCM4704 Sentry5 Ethernet Controller" }, - { "14e4", "4707", "BCM4704 Sentry5 USB Controller" }, - { "14e4", "4708", "BCM4704 Crypto Accelerator" }, - { "14e4", "4710", "BCM4710 Sentry5 PCI to SB Bridge" }, - { "14e4", "4711", "BCM47xx Sentry5 iLine32 HomePNA 2.0" }, - { "14e4", "4712", "BCM47xx V.92 56k modem" }, - { "14e4", "4713", "Sentry5 Ethernet Controller" }, - { "14e4", "4714", "BCM47xx Sentry5 External Interface" }, - { "14e4", "4715", "BCM47xx Sentry5 USB / Ethernet Controller" }, - { "14e4", "4716", "BCM47xx Sentry5 USB Host Controller" }, - { "14e4", "4717", "BCM47xx Sentry5 USB Device Controller" }, - { "14e4", "4718", "Sentry5 Crypto Accelerator" }, - { "14e4", "4719", "BCM47xx/53xx RoboSwitch Core" }, - { "14e4", "4720", "BCM4712 MIPS CPU" }, - { "14e4", "4727", "BCM4313 802.11bgn Wireless Network Adapter" }, - { "14e4", "5365", "BCM5365P Sentry5 Host Bridge" }, - { "14e4", "5600", "BCM5600 StrataSwitch 24+2 Ethernet Switch Controller" }, - { "14e4", "5605", "BCM5605 StrataSwitch 24+2 Ethernet Switch Controller" }, - { "14e4", "5615", "BCM5615 StrataSwitch 24+2 Ethernet Switch Controller" }, - { "14e4", "5625", "BCM5625 StrataSwitch 24+2 Ethernet Switch Controller" }, - { "14e4", "5645", "BCM5645 StrataSwitch 24+2 Ethernet Switch Controller" }, - { "14e4", "5670", "BCM5670 8-Port 10GE Ethernet Switch Fabric" }, - { "14e4", "5680", "BCM5680 G-Switch 8 Port Gigabit Ethernet Switch Controller" }, - { "14e4", "5690", "BCM5690 12-port Multi-Layer Gigabit Ethernet Switch" }, - { "14e4", "5691", "BCM5691 GE/10GE 8+2 Gigabit Ethernet Switch Controller" }, - { "14e4", "5692", "BCM5692 12-port Multi-Layer Gigabit Ethernet Switch" }, - { "14e4", "5695", "BCM5695 12-port + HiGig Multi-Layer Gigabit Ethernet Switch" }, - { "14e4", "5698", "BCM5698 12-port Multi-Layer Gigabit Ethernet Switch" }, - { "14e4", "5820", "BCM5820 Crypto Accelerator" }, - { "14e4", "5821", "BCM5821 Crypto Accelerator" }, - { "14e4", "5822", "BCM5822 Crypto Accelerator" }, - { "14e4", "5823", "BCM5823 Crypto Accelerator" }, - { "14e4", "5824", "BCM5824 Crypto Accelerator" }, - { "14e4", "5840", "BCM5840 Crypto Accelerator" }, - { "14e4", "5841", "BCM5841 Crypto Accelerator" }, - { "14e4", "5850", "BCM5850 Crypto Accelerator" }, - { "14e4", "5e87", "Valkyrie offload engine" }, - { "14e4", "5e88", "Viper Offload Engine" }, - { "14e4", "8602", "BCM7400/BCM7405 Serial ATA Controller" }, - { "14e4", "9026", "CN99xx [ThunderX2] Integrated USB 3.0 xHCI Host Controller" }, - { "14e4", "9027", "CN99xx [ThunderX2] Integrated AHCI/SATA 3 Host Controller" }, - { "14e4", "a8d8", "BCM43224/5 Wireless Network Adapter" }, - { "14e4", "aa52", "BCM43602 802.11ac Wireless LAN SoC" }, - { "14e4", "b080", "BCM56080 Firelight2 Switch ASIC" }, - { "14e4", "b302", "BCM56302 StrataXGS 24x1GE 2x10GE Switch Controller" }, - { "14e4", "b334", "BCM56334 StrataXGS 24x1GE 4x10GE Switch Controller" }, - { "14e4", "b370", "BCM56370 Switch ASIC" }, - { "14e4", "b371", "BCM56371 Switch ASIC" }, - { "14e4", "b372", "BCM56372 Switch ASIC" }, - { "14e4", "b375", "BCM56375 Switch ASIC" }, - { "14e4", "b376", "BCM56376 Switch ASIC" }, - { "14e4", "b377", "BCM56377 Switch ASIC" }, - { "14e4", "b379", "Broadcom BCM56379 Switch ASIC" }, - { "14e4", "b470", "BCM56470 SWITCH ASIC" }, - { "14e4", "b471", "BCM56471 SWITCH ASIC" }, - { "14e4", "b472", "BCM56472 SWITCH ASIC" }, - { "14e4", "b800", "BCM56800 StrataXGS 10GE Switch Controller" }, - { "14e4", "b842", "BCM56842 Trident 10GE Switch Controller" }, - { "14e4", "b850", "Broadcom BCM56850 Switch ASIC" }, - { "14e4", "b880", "BCM56880 Switch ASIC" }, - { "14e4", "b960", "Broadcom BCM56960 Switch ASIC" }, - { "14e4", "b990", "BCM56990 Switch ASIC" }, - { "14e4", "b996", "BCM56996 Tomahawk4G 106G Switch ASIC" }, - { "14e4", "b998", "BCM56998 Tomahawk4GT 106G Switch ASIC" }, - { "14e4", "b999", "BCM56999 Tomahawk4D 106G Switch ASIC" }, - { "14e4", "c909", "BCM78909 Switch ASIC" }, - { "14e4", "d802", "BCM58802 Stingray 50Gb Ethernet SoC" }, - { "14e4", "d804", "BCM58804 Stingray 100Gb Ethernet SoC" }, - { "14ea", "ab06", "FNW-3603-TX CardBus Fast Ethernet" }, - { "14ea", "ab07", "RTL81xx RealTek Ethernet" }, - { "14ea", "ab08", "FNW-3602-TX CardBus Fast Ethernet" }, - { "14ec", "0000", "Aciris Digitizer (malformed ID)" }, - { "14f1", "1002", "HCF 56k Modem" }, - { "14f1", "1003", "HCF 56k Modem" }, - { "14f1", "1004", "HCF 56k Modem" }, - { "14f1", "1005", "HCF 56k Modem" }, - { "14f1", "1006", "HCF 56k Modem" }, - { "14f1", "1022", "HCF 56k Modem" }, - { "14f1", "1023", "HCF 56k Modem" }, - { "14f1", "1024", "HCF 56k Modem" }, - { "14f1", "1025", "HCF 56k Modem" }, - { "14f1", "1026", "HCF 56k Modem" }, - { "14f1", "1032", "HCF 56k Modem" }, - { "14f1", "1033", "HCF 56k Data/Fax Modem" }, - { "14f1", "1034", "HCF 56k Data/Fax/Voice Modem" }, - { "14f1", "1035", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "1036", "HCF 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "1052", "HCF 56k Data/Fax Modem (Worldwide)" }, - { "14f1", "1053", "HCF 56k Data/Fax Modem (Worldwide)" }, - { "14f1", "1054", "HCF 56k Data/Fax/Voice Modem (Worldwide)" }, - { "14f1", "1055", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (Worldwide)" }, - { "14f1", "1056", "HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide)" }, - { "14f1", "1057", "HCF 56k Data/Fax/Voice/Spkp Modem (Worldwide)" }, - { "14f1", "1059", "HCF 56k Data/Fax/Voice Modem (Worldwide)" }, - { "14f1", "1063", "HCF 56k Data/Fax Modem" }, - { "14f1", "1064", "HCF 56k Data/Fax/Voice Modem" }, - { "14f1", "1065", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "1066", "HCF 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "1085", "HCF V90 56k Data/Fax/Voice/Spkp PCI Modem" }, - { "14f1", "10b6", "CX06834-11 HCF V.92 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "1433", "HCF 56k Data/Fax Modem" }, - { "14f1", "1434", "HCF 56k Data/Fax/Voice Modem" }, - { "14f1", "1435", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "1436", "HCF 56k Data/Fax Modem" }, - { "14f1", "1453", "HCF 56k Data/Fax Modem" }, - { "14f1", "1454", "HCF 56k Data/Fax/Voice Modem" }, - { "14f1", "1455", "HCF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "1456", "HCF 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "1610", "ADSL AccessRunner PCI Arbitration Device" }, - { "14f1", "1611", "AccessRunner PCI ADSL Interface Device" }, - { "14f1", "1620", "AccessRunner V2 PCI ADSL Arbitration Device" }, - { "14f1", "1621", "AccessRunner V2 PCI ADSL Interface Device" }, - { "14f1", "1622", "AccessRunner V2 PCI ADSL Yukon WAN Adapter" }, - { "14f1", "1803", "HCF 56k Modem" }, - { "14f1", "1811", "MiniPCI Network Adapter" }, - { "14f1", "1815", "HCF 56k Modem" }, - { "14f1", "1830", "CX861xx Integrated Host Bridge" }, - { "14f1", "2003", "HSF 56k Data/Fax Modem" }, - { "14f1", "2004", "HSF 56k Data/Fax/Voice Modem" }, - { "14f1", "2005", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "2006", "HSF 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "2013", "HSF 56k Data/Fax Modem" }, - { "14f1", "2014", "HSF 56k Data/Fax/Voice Modem" }, - { "14f1", "2015", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem" }, - { "14f1", "2016", "HSF 56k Data/Fax/Voice/Spkp Modem" }, - { "14f1", "2043", "HSF 56k Data/Fax Modem (WorldW SmartDAA)" }, - { "14f1", "2044", "HSF 56k Data/Fax/Voice Modem (WorldW SmartDAA)" }, - { "14f1", "2045", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (WorldW SmartDAA)" }, - { "14f1", "2046", "HSF 56k Data/Fax/Voice/Spkp Modem (WorldW SmartDAA)" }, - { "14f1", "2063", "HSF 56k Data/Fax Modem (SmartDAA)" }, - { "14f1", "2064", "HSF 56k Data/Fax/Voice Modem (SmartDAA)" }, - { "14f1", "2065", "HSF 56k Data/Fax/Voice/Spkp (w/Handset) Modem (SmartDAA)" }, - { "14f1", "2066", "HSF 56k Data/Fax/Voice/Spkp Modem (SmartDAA)" }, - { "14f1", "2093", "HSF 56k Modem" }, - { "14f1", "2143", "HSF 56k Data/Fax/Cell Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2144", "HSF 56k Data/Fax/Voice/Cell Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2145", "HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2146", "HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2163", "HSF 56k Data/Fax/Cell Modem (Mob SmartDAA)" }, - { "14f1", "2164", "HSF 56k Data/Fax/Voice/Cell Modem (Mob SmartDAA)" }, - { "14f1", "2165", "HSF 56k Data/Fax/Voice/Spkp (w/HS)/Cell Modem (Mob SmartDAA)" }, - { "14f1", "2166", "HSF 56k Data/Fax/Voice/Spkp/Cell Modem (Mob SmartDAA)" }, - { "14f1", "2343", "HSF 56k Data/Fax CardBus Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2344", "HSF 56k Data/Fax/Voice CardBus Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2345", "HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2346", "HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2363", "HSF 56k Data/Fax CardBus Modem (Mob SmartDAA)" }, - { "14f1", "2364", "HSF 56k Data/Fax/Voice CardBus Modem (Mob SmartDAA)" }, - { "14f1", "2365", "HSF 56k Data/Fax/Voice/Spkp (w/HS) CardBus Modem (Mob SmartDAA)" }, - { "14f1", "2366", "HSF 56k Data/Fax/Voice/Spkp CardBus Modem (Mob SmartDAA)" }, - { "14f1", "2443", "HSF 56k Data/Fax Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2444", "HSF 56k Data/Fax/Voice Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2445", "HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2446", "HSF 56k Data/Fax/Voice/Spkp Modem (Mob WorldW SmartDAA)" }, - { "14f1", "2463", "HSF 56k Data/Fax Modem (Mob SmartDAA)" }, - { "14f1", "2464", "HSF 56k Data/Fax/Voice Modem (Mob SmartDAA)" }, - { "14f1", "2465", "HSF 56k Data/Fax/Voice/Spkp (w/HS) Modem (Mob SmartDAA)" }, - { "14f1", "2466", "HSF 56k Data/Fax/Voice/Spkp Modem (Mob SmartDAA)" }, - { "14f1", "2702", "HSFi modem RD01-D270" }, - { "14f1", "2f00", "HSF 56k HSFi Modem" }, - { "14f1", "2f02", "HSF 56k HSFi Data/Fax" }, - { "14f1", "2f11", "HSF 56k HSFi Modem" }, - { "14f1", "2f20", "HSF 56k Data/Fax Modem" }, - { "14f1", "2f30", "SoftV92 SpeakerPhone SoftRing Modem with SmartSP" }, - { "14f1", "2f50", "Conexant SoftK56 Data/Fax Modem" }, - { "14f1", "510f", "Conexant CX 20751/20752" }, - { "14f1", "5b7a", "CX23418 Single-Chip MPEG-2 Encoder with Integrated Analog Video/Broadcast Audio Decoder" }, - { "14f1", "8200", "CX25850" }, - { "14f1", "8234", "RS8234 ATM SAR Controller [ServiceSAR Plus]" }, - { "14f1", "8800", "CX23880/1/2/3 PCI Video and Audio Decoder" }, - { "14f1", "8801", "CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port]" }, - { "14f1", "8802", "CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port]" }, - { "14f1", "8804", "CX23880/1/2/3 PCI Video and Audio Decoder [IR Port]" }, - { "14f1", "8811", "CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port]" }, - { "14f1", "8852", "CX23885 PCI Video and Audio Decoder" }, - { "14f1", "8880", "CX23887/8 PCIe Broadcast Audio and Video Decoder with 3D Comb" }, - { "14f2", "0120", "EV1000 bridge" }, - { "14f2", "0121", "EV1000 Parallel port" }, - { "14f2", "0122", "EV1000 Serial port" }, - { "14f2", "0123", "EV1000 Keyboard controller" }, - { "14f2", "0124", "EV1000 Mouse controller" }, - { "14f3", "2030", "2030 DVB-S Satellite Receiver" }, - { "14f3", "2035", "2035 DVB-S Satellite Receiver" }, - { "14f3", "2050", "2050 DVB-T Terrestrial (Cable) Receiver" }, - { "14f3", "2060", "2060 ATSC Terrestrial (Cable) Receiver" }, - { "14f8", "2077", "TP-240 dual span E1 VoIP PCI card" }, - { "14fc", "0000", "QsNet Elan3 Network Adapter" }, - { "14fc", "0001", "QsNetII Elan4 Network Adapter" }, - { "14fc", "0002", "QsNetIII Elan5 Network Adapter" }, - { "1500", "1360", "RTL81xx RealTek Ethernet" }, - { "1507", "0001", "MPC105 [Eagle]" }, - { "1507", "0002", "MPC106 [Grackle]" }, - { "1507", "0003", "MPC8240 [Kahlua]" }, - { "1507", "0100", "MC145575 [HFC-PCI]" }, - { "1507", "0431", "KTI829c 100VG" }, - { "1507", "4801", "Raven" }, - { "1507", "4802", "Falcon" }, - { "1507", "4803", "Hawk" }, - { "1507", "4806", "CPX8216" }, - { "1516", "0800", "MTD-8xx 100/10M Ethernet PCI Adapter" }, - { "1516", "0803", "SURECOM EP-320X-S 100/10M Ethernet PCI Adapter" }, - { "1516", "0891", "MTD-8xx 100/10M Ethernet PCI Adapter" }, - { "151a", "1002", "PCI-1002" }, - { "151a", "1004", "PCI-1004" }, - { "151a", "1008", "PCI-1008" }, - { "151c", "0003", "Prodif T 2496" }, - { "151c", "4000", "Prodif 88" }, - { "151f", "0000", "TP560 Data/Fax/Voice 56k modem" }, - { "1522", "0100", "PCI <-> IOBus Bridge" }, - { "1522", "4000", "PCI Express UART" }, - { "1524", "0510", "CB710 Memory Card Reader Controller" }, - { "1524", "0520", "FLASH memory: ENE Technology Inc:" }, - { "1524", "0530", "ENE PCI Memory Stick Card Reader Controller" }, - { "1524", "0550", "ENE PCI Secure Digital Card Reader Controller" }, - { "1524", "0551", "SD/MMC Card Reader Controller" }, - { "1524", "0610", "PCI Smart Card Reader Controller" }, - { "1524", "0720", "Memory Stick Card Reader Controller" }, - { "1524", "0730", "ENE PCI Memory Stick Card Reader Controller" }, - { "1524", "0750", "ENE PCI SmartMedia / xD Card Reader Controller" }, - { "1524", "0751", "ENE PCI Secure Digital / MMC Card Reader Controller" }, - { "1524", "1211", "CB1211 Cardbus Controller" }, - { "1524", "1225", "CB1225 Cardbus Controller" }, - { "1524", "1410", "CB1410 Cardbus Controller" }, - { "1524", "1411", "CB-710/2/4 Cardbus Controller" }, - { "1524", "1412", "CB-712/4 Cardbus Controller" }, - { "1524", "1420", "CB1420 Cardbus Controller" }, - { "1524", "1421", "CB-720/2/4 Cardbus Controller" }, - { "1524", "1422", "CB-722/4 Cardbus Controller" }, - { "1532", "0020", "LonWorks PCLTA-20 PCI LonTalk Adapter" }, - { "1538", "0303", "ARS106S Ultra ATA 133/100/66 Host Controller" }, - { "153b", "1144", "Aureon 5.1" }, - { "153b", "1147", "Aureon 5.1 Sky" }, - { "153b", "1158", "Philips Semiconductors SAA7134 (rev 01) [Terratec Cinergy 600 TV]" }, - { "153f", "0001", "SOC-it 101 System Controller" }, - { "1542", "9260", "RCIM-II Real-Time Clock & Interrupt Module" }, - { "1542", "9271", "RCIM-III Real-Time Clock & Interrupt Module (PCIe)" }, - { "1542", "9272", "Pulse Width Modulator Card" }, - { "1542", "9273", "RCIM-IV Real-Time Clock & Interrupt Module (PCIe)" }, - { "1542", "9277", "5 Volt Delta Sigma Converter Card" }, - { "1542", "9278", "10 Volt Delta Sigma Converter Card" }, - { "1542", "9287", "Analog Output Card" }, - { "1542", "9290", "FPGA Card" }, - { "1542", "9300", "Universal Exhaust Gas Oxygen Sensor Simulator" }, - { "1542", "9310", "Digital Programmable Resistor" }, - { "1542", "9350", "Analog Input Card" }, - { "1543", "3052", "Intel 537 [Winmodem]" }, - { "1543", "4c22", "Si3036 MC'97 DAA" }, - { "1556", "1100", "PCI Express Core Reference Design" }, - { "1556", "110f", "PCI Express Core Reference Design Virtual Function" }, - { "1556", "1110", "XpressRich Reference Design" }, - { "1556", "1111", "XpressRich-AXI Ref Design" }, - { "1556", "1112", "QuickPCIe" }, - { "1556", "1113", "XpressSwitch" }, - { "1556", "1114", "Inspector" }, - { "1556", "1115", "XpressLINK Ref Design" }, - { "1556", "1116", "XpressLINK-SOC Ref Design" }, - { "1556", "be00", "PCI Express Bridge" }, - { "1571", "a001", "CCSI PCI20-485 ARCnet" }, - { "1571", "a002", "CCSI PCI20-485D ARCnet" }, - { "1571", "a003", "CCSI PCI20-485X ARCnet" }, - { "1571", "a004", "CCSI PCI20-CXB ARCnet" }, - { "1571", "a005", "CCSI PCI20-CXS ARCnet" }, - { "1571", "a006", "CCSI PCI20-FOG-SMA ARCnet" }, - { "1571", "a007", "CCSI PCI20-FOG-ST ARCnet" }, - { "1571", "a008", "CCSI PCI20-TB5 ARCnet" }, - { "1571", "a009", "CCSI PCI20-5-485 5Mbit ARCnet" }, - { "1571", "a00a", "CCSI PCI20-5-485D 5Mbit ARCnet" }, - { "1571", "a00b", "CCSI PCI20-5-485X 5Mbit ARCnet" }, - { "1571", "a00c", "CCSI PCI20-5-FOG-ST 5Mbit ARCnet" }, - { "1571", "a00d", "CCSI PCI20-5-FOG-SMA 5Mbit ARCnet" }, - { "1571", "a201", "CCSI PCI22-485 10Mbit ARCnet" }, - { "1571", "a202", "CCSI PCI22-485D 10Mbit ARCnet" }, - { "1571", "a203", "CCSI PCI22-485X 10Mbit ARCnet" }, - { "1571", "a204", "CCSI PCI22-CHB 10Mbit ARCnet" }, - { "1571", "a205", "CCSI PCI22-FOG_ST 10Mbit ARCnet" }, - { "1571", "a206", "CCSI PCI22-THB 10Mbit ARCnet" }, - { "1578", "4d34", "VPMK4 [Video Processor Mk IV]" }, - { "1578", "5615", "VPMK3 [Video Processor Mk III]" }, - { "157c", "8001", "Fix2000 PCI Y2K Compliance Card" }, - { "1589", "0008", "Leutron Vision PicPortExpress CL" }, - { "1589", "0009", "Leutron Vision PicPortExpress CL Stereo" }, - { "1590", "0001", "Eagle Cluster Manager" }, - { "1590", "0002", "Osprey Cluster Manager" }, - { "1590", "0003", "Harrier Cluster Manager" }, - { "1590", "a01d", "FC044X Fibre Channel HBA" }, - { "1592", "0781", "Multi-IO Card" }, - { "1592", "0782", "Parallel Port Card 2xEPP" }, - { "1592", "0783", "Multi-IO Card" }, - { "1592", "0785", "Multi-IO Card" }, - { "1592", "0786", "Multi-IO Card" }, - { "1592", "0787", "Multi-IO Card" }, - { "1592", "0788", "Multi-IO Card" }, - { "1592", "078a", "Multi-IO Card" }, - { "159b", "4321", "StorLink SL3516 (Gemini) Host Bridge" }, - { "15a2", "0001", "TA700 PCI Bus Analyzer/Exerciser" }, - { "15ac", "6893", "3U OpenVPX Multi-function I/O Board [Model 68C3]" }, - { "15ad", "0405", "SVGA II Adapter" }, - { "15ad", "0710", "SVGA Adapter" }, - { "15ad", "0720", "VMXNET Ethernet Controller" }, - { "15ad", "0740", "Virtual Machine Communication Interface" }, - { "15ad", "0770", "USB2 EHCI Controller" }, - { "15ad", "0774", "USB1.1 UHCI Controller" }, - { "15ad", "0778", "USB3 xHCI 0.96 Controller" }, - { "15ad", "0779", "USB3 xHCI 1.0 Controller" }, - { "15ad", "0790", "PCI bridge" }, - { "15ad", "07a0", "PCI Express Root Port" }, - { "15ad", "07b0", "VMXNET3 Ethernet Controller" }, - { "15ad", "07c0", "PVSCSI SCSI Controller" }, - { "15ad", "07e0", "SATA AHCI controller" }, - { "15ad", "07f0", "NVMe SSD Controller" }, - { "15ad", "0801", "Virtual Machine Interface" }, - { "15ad", "0820", "Paravirtual RDMA controller" }, - { "15ad", "1977", "HD Audio Controller" }, - { "15b3", "0191", "MT25408 [ConnectX IB Flash Recovery]" }, - { "15b3", "01f6", "MT27500 Family [ConnectX-3 Flash Recovery]" }, - { "15b3", "01f8", "MT27520 Family [ConnectX-3 Pro Flash Recovery]" }, - { "15b3", "01ff", "MT27600 Family [Connect-IB Flash Recovery]" }, - { "15b3", "0209", "MT27700 Family [ConnectX-4 Flash Recovery]" }, - { "15b3", "020b", "MT27710 Family [ConnectX-4 Lx Flash Recovery]" }, - { "15b3", "020d", "MT28800 Family [ConnectX-5 Flash Recovery]" }, - { "15b3", "020f", "MT28908A0 Family [ConnectX-6 Flash Recovery]" }, - { "15b3", "0210", "MT28908A0 Family [ConnectX-6 Secure Flash Recovery]" }, - { "15b3", "0211", "MT416842 Family [BlueField SoC Flash Recovery]" }, - { "15b3", "0212", "MT2892 Family [ConnectX-6 Dx Flash Recovery]" }, - { "15b3", "0213", "MT2892 Family [ConnectX-6 Dx Secure Flash Recovery]" }, - { "15b3", "0214", "MT42822 Family [BlueField-2 SoC Flash Recovery]" }, - { "15b3", "0215", "MT42822 Family [BlueField-2 Secure Flash Recovery]" }, - { "15b3", "0216", "MT2894 Family [ConnectX-6 Lx Flash Recovery]" }, - { "15b3", "0217", "MT2894 Family [ConnectX-6 Lx Secure Flash Recovery]" }, - { "15b3", "0218", "MT2910 Family [ConnectX-7 Flash Recovery]" }, - { "15b3", "0219", "MT2910 Family [ConnectX-7 Secure Flash Recovery]" }, - { "15b3", "021a", "MT43162 Family [BlueField-3 Lx SoC Flash Recovery]" }, - { "15b3", "021b", "MT43162 Family [BlueField-3 Lx Secure Flash Recovery]" }, - { "15b3", "021c", "MT43244 Family [BlueField-3 SoC Flash Recovery]" }, - { "15b3", "021d", "MT43244 Family [BlueField-3 Secure Flash Recovery]" }, - { "15b3", "021e", "CX8 Family [ConnectX-8 Flash Recovery]" }, - { "15b3", "021f", "CX8 Family [ConnectX-8 Secure Flash Recovery]" }, - { "15b3", "0220", "BF4 Family Flash Recovery [BlueField-4 SoC Flash Recovery]" }, - { "15b3", "0221", "BF4 Family Secure Flash Recovery [BlueField-4 Secure Flash Recovery]" }, - { "15b3", "024e", "MT53100 [Spectrum-2, Flash recovery mode]" }, - { "15b3", "024f", "MT53100 [Spectrum-2, Secure Flash recovery mode]" }, - { "15b3", "0250", "Spectrum-3, Flash recovery mode" }, - { "15b3", "0251", "Spectrum-3, Secure Flash recovery mode" }, - { "15b3", "0252", "Amos chiplet" }, - { "15b3", "0253", "Amos GearBox Manager" }, - { "15b3", "0254", "Spectrum-4, Flash recovery mode" }, - { "15b3", "0255", "Spectrum-4 RMA" }, - { "15b3", "0256", "Abir GearBox" }, - { "15b3", "0257", "Quantum-2 in Flash Recovery Mode" }, - { "15b3", "0258", "Quantum-2 RMA" }, - { "15b3", "0259", "Abir Chiplet" }, - { "15b3", "0262", "MT27710 [ConnectX-4 Lx Programmable] EN" }, - { "15b3", "0263", "MT27710 [ConnectX-4 Lx Programmable Virtual Function] EN" }, - { "15b3", "0264", "Innova-2 Flex Burn image" }, - { "15b3", "0270", "Spectrum-4L, Flash recovery mode" }, - { "15b3", "0271", "Spectrum-4L, RMA" }, - { "15b3", "0274", "Spectrum-4C, Flash recovery mode" }, - { "15b3", "0275", "Spectrum-4C RMA" }, - { "15b3", "0277", "Spectrum-4TOR RMA" }, - { "15b3", "0281", "NPS-600 Flash Recovery" }, - { "15b3", "1002", "MT25400 Family [ConnectX-2 Virtual Function]" }, - { "15b3", "1003", "MT27500 Family [ConnectX-3]" }, - { "15b3", "1004", "MT27500/MT27520 Family [ConnectX-3/ConnectX-3 Pro Virtual Function]" }, - { "15b3", "1005", "MT27510 Family" }, - { "15b3", "1006", "MT27511 Family" }, - { "15b3", "1007", "MT27520 Family [ConnectX-3 Pro]" }, - { "15b3", "1009", "MT27530 Family" }, - { "15b3", "100a", "MT27531 Family" }, - { "15b3", "100b", "MT27540 Family" }, - { "15b3", "100c", "MT27541 Family" }, - { "15b3", "100d", "MT27550 Family" }, - { "15b3", "100e", "MT27551 Family" }, - { "15b3", "100f", "MT27560 Family" }, - { "15b3", "1010", "MT27561 Family" }, - { "15b3", "1011", "MT27600 [Connect-IB]" }, - { "15b3", "1012", "MT27600 Family [Connect-IB Virtual Function]" }, - { "15b3", "1013", "MT27700 Family [ConnectX-4]" }, - { "15b3", "1014", "MT27700 Family [ConnectX-4 Virtual Function]" }, - { "15b3", "1015", "MT27710 Family [ConnectX-4 Lx]" }, - { "15b3", "1016", "MT27710 Family [ConnectX-4 Lx Virtual Function]" }, - { "15b3", "1017", "MT27800 Family [ConnectX-5]" }, - { "15b3", "1018", "MT27800 Family [ConnectX-5 Virtual Function]" }, - { "15b3", "1019", "MT28800 Family [ConnectX-5 Ex]" }, - { "15b3", "101a", "MT28800 Family [ConnectX-5 Ex Virtual Function]" }, - { "15b3", "101b", "MT28908 Family [ConnectX-6]" }, - { "15b3", "101c", "MT28908 Family [ConnectX-6 Virtual Function]" }, - { "15b3", "101d", "MT2892 Family [ConnectX-6 Dx]" }, - { "15b3", "101e", "ConnectX Family mlx5Gen Virtual Function" }, - { "15b3", "101f", "MT2894 Family [ConnectX-6 Lx]" }, - { "15b3", "1020", "MT28860" }, - { "15b3", "1021", "MT2910 Family [ConnectX-7]" }, - { "15b3", "1023", "CX8 Family [ConnectX-8]" }, - { "15b3", "1974", "MT28800 Family [ConnectX-5 PCIe Bridge]" }, - { "15b3", "1975", "MT416842 Family [BlueField SoC PCIe Bridge]" }, - { "15b3", "1976", "MT28908 Family [ConnectX-6 PCIe Bridge]" }, - { "15b3", "1977", "MT2892 Family [ConnectX-6 Dx PCIe Bridge]" }, - { "15b3", "1978", "MT42822 Family [BlueField-2 SoC PCIe Bridge]" }, - { "15b3", "1979", "MT2910 Family [ConnectX-7 PCIe Bridge]" }, - { "15b3", "197a", "MT43162 Family [BlueField-3 Lx SoC PCIe Bridge]" }, - { "15b3", "197b", "MT43244 Family [BlueField-3 SoC PCIe Bridge]" }, - { "15b3", "197c", "ConnectX/BlueField Family mlx5Gen PCIe Bridge [PCIe Bridge]" }, - { "15b3", "2020", "MT2892 Family [ConnectX-6 Dx Emulated PCIe Bridge]" }, - { "15b3", "2021", "MT42822 Family [BlueField-2 SoC Emulated PCIe Bridge]" }, - { "15b3", "2023", "MT2910 Family [ConnectX-7 Emulated PCIe Bridge]" }, - { "15b3", "2024", "MT43244 Family [BlueField-3 SoC Emulated PCIe Bridge]" }, - { "15b3", "2025", "ConnectX/BlueField Family mlx5Gen Emulated PCIe Bridge [Emulated PCIe Bridge]" }, - { "15b3", "4117", "MT27712A0-FDCF-AE" }, - { "15b3", "5274", "MT21108 InfiniBridge" }, - { "15b3", "5a44", "MT23108 InfiniHost" }, - { "15b3", "5a45", "MT23108 [Infinihost HCA Flash Recovery]" }, - { "15b3", "5a46", "MT23108 PCI Bridge" }, - { "15b3", "5e8c", "MT24204 [InfiniHost III Lx HCA]" }, - { "15b3", "5e8d", "MT25204 [InfiniHost III Lx HCA Flash Recovery]" }, - { "15b3", "6001", "NVMe SNAP Controller" }, - { "15b3", "6274", "MT25204 [InfiniHost III Lx HCA]" }, - { "15b3", "6278", "MT25208 InfiniHost III Ex (Tavor compatibility mode)" }, - { "15b3", "6279", "MT25208 [InfiniHost III Ex HCA Flash Recovery]" }, - { "15b3", "6282", "MT25208 [InfiniHost III Ex]" }, - { "15b3", "6340", "MT25408A0-FCC-SI ConnectX, Dual Port 10Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 2.5GT/s Interface" }, - { "15b3", "634a", "MT25408A0-FCC-DI ConnectX, Dual Port 20Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 2.5GT/s Interface" }, - { "15b3", "6368", "MT25448 [ConnectX EN 10GigE, PCIe 2.0 2.5GT/s]" }, - { "15b3", "6372", "MT25458 ConnectX EN 10GBASE-T PCIe 2.5 GT/s" }, - { "15b3", "6732", "MT25408A0-FCC-GI ConnectX, Dual Port 20Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 5.0GT/s Interface" }, - { "15b3", "673c", "MT25408A0-FCC-QI ConnectX, Dual Port 40Gb/s InfiniBand / 10GigE Adapter IC with PCIe 2.0 x8 5.0GT/s Interface" }, - { "15b3", "6746", "MT26438 [ConnectX VPI PCIe 2.0 5GT/s - IB QDR / 10GigE Virtualization+]" }, - { "15b3", "6750", "MT26448 [ConnectX EN 10GigE, PCIe 2.0 5GT/s]" }, - { "15b3", "675a", "MT26458 ConnectX EN 10GBASE-T PCIe Gen2 5.0 GT/s" }, - { "15b3", "6764", "MT26468 [ConnectX EN 10GigE, PCIe 2.0 5GT/s Virtualization+]" }, - { "15b3", "676e", "MT26478 [ConnectX EN 40GigE, PCIe 2.0 5GT/s]" }, - { "15b3", "6778", "MT26488 [ConnectX VPI PCIe 2.0 5GT/s - IB DDR / 10GigE Virtualization+]" }, - { "15b3", "7101", "NPS-400 configuration and management interface" }, - { "15b3", "7102", "NPS-400 network interface PF" }, - { "15b3", "7103", "NPS-400 network interface VF" }, - { "15b3", "7121", "NPS-600 configuration and management interface" }, - { "15b3", "7122", "NPS-600 network interface PF" }, - { "15b3", "7123", "NPS-600 network interface VF" }, - { "15b3", "8200", "Innova-2 Flex Shell Logic" }, - { "15b3", "a2d0", "MT416842 BlueField SoC Crypto enabled" }, - { "15b3", "a2d1", "MT416842 BlueField SoC Crypto disabled" }, - { "15b3", "a2d2", "MT416842 BlueField integrated ConnectX-5 network controller" }, - { "15b3", "a2d3", "MT416842 BlueField multicore SoC family VF" }, - { "15b3", "a2d4", "MT42822 BlueField-2 SoC Crypto enabled" }, - { "15b3", "a2d5", "MT42822 BlueField-2 SoC Crypto disabled" }, - { "15b3", "a2d6", "MT42822 BlueField-2 integrated ConnectX-6 Dx network controller" }, - { "15b3", "a2d7", "MT43162 BlueField-3 Lx SoC Crypto enabled" }, - { "15b3", "a2d8", "MT43162 BlueField-3 Lx SoC Crypto disabled" }, - { "15b3", "a2d9", "MT43162 BlueField-3 Lx integrated ConnectX-7 network controller" }, - { "15b3", "a2da", "MT43244 BlueField-3 SoC Crypto enabled" }, - { "15b3", "a2db", "MT43244 BlueField-3 SoC Crypto disabled" }, - { "15b3", "a2dc", "MT43244 BlueField-3 integrated ConnectX-7 network controller" }, - { "15b3", "a2dd", "BF4 Family Crypto enabled [BlueField-4 SoC Crypto enabled]" }, - { "15b3", "a2de", "BF4 Family Crypto disabled [BlueField-4 SoC Crypto disabled]" }, - { "15b3", "a2df", "BF4 Family integrated network controller [BlueField-4 integrated network controller]" }, - { "15b3", "c2d2", "MT416842 BlueField SoC management interfac" }, - { "15b3", "c2d3", "MT42822 BlueField-2 SoC Management Interface" }, - { "15b3", "c2d4", "MT43162 BlueField-3 Lx SoC Management Interface" }, - { "15b3", "c2d5", "MT43244 BlueField-3 SoC Management Interface" }, - { "15b3", "c2d6", "BF4 Family Management Interface [BlueField-4 SoC Management Interface]" }, - { "15b3", "c738", "MT51136" }, - { "15b3", "c739", "MT51136 GW" }, - { "15b3", "c838", "MT52236" }, - { "15b3", "c839", "MT52236 router" }, - { "15b3", "caf1", "ConnectX-4 CAPI Function" }, - { "15b3", "cb84", "MT52100" }, - { "15b3", "cf08", "Switch-IB2" }, - { "15b3", "cf6c", "MT53100 [Spectrum-2]" }, - { "15b3", "cf70", "Spectrum-3" }, - { "15b3", "cf80", "Spectrum-4" }, - { "15b3", "cf82", "Spectrum-4L" }, - { "15b3", "cf84", "Spectrum-4C" }, - { "15b3", "d2f0", "Quantum HDR (200Gbps) switch" }, - { "15b3", "d2f2", "Quantum-2 NDR (400Gbps) switch" }, - { "15b6", "0001", "XP15 DSP Accelerator" }, - { "15b6", "0002", "XP30 DSP Accelerator" }, - { "15b6", "0003", "XP00 Data Acquisition Device" }, - { "15b6", "0004", "XP35 DSP Accelerator" }, - { "15b6", "0007", "XP100 DSP Accelerator [XP100-T0]" }, - { "15b6", "0008", "XP100 DSP Accelerator [XP100-T1]" }, - { "15b6", "0009", "XP100 DSP Accelerator [XP100-E0]" }, - { "15b6", "000a", "XP100 DSP Accelerator [XP100-E1]" }, - { "15b6", "000e", "XP100 DSP Accelerator [XP100-0]" }, - { "15b6", "000f", "XP100 DSP Accelerator [XP100-1]" }, - { "15b6", "0010", "XP100 DSP Accelerator [XP100-P0]" }, - { "15b6", "0011", "XP100 DSP Accelerator [XP100-P1]" }, - { "15b6", "0012", "XP100 DSP Accelerator [XP100-P2]" }, - { "15b6", "0013", "XP100 DSP Accelerator [XP100-P3]" }, - { "15b6", "0014", "RamSan Flash SSD" }, - { "15b6", "0015", "ZBox" }, - { "15b7", "2001", "Skyhawk Series NVME SSD" }, - { "15b7", "5001", "WD Black NVMe SSD" }, - { "15b7", "5002", "WD Black 2018/SN750 / PC SN720 NVMe SSD" }, - { "15b7", "5003", "WD Blue SN500 / PC SN520 NVMe SSD" }, - { "15b7", "5004", "PC SN520 NVMe SSD" }, - { "15b7", "5005", "PC SN520 NVMe SSD" }, - { "15b7", "5006", "WD Black SN750 / PC SN730 NVMe SSD" }, - { "15b7", "5009", "WD Blue SN550 NVMe SSD" }, - { "15b7", "500b", "PC SN530 NVMe SSD" }, - { "15b7", "500d", "WD Ultrastar DC SN340 NVMe SSD" }, - { "15b7", "5011", "WD PC SN810 / Black SN850 NVMe SSD" }, - { "15b7", "501a", "WD Blue SN570 NVMe SSD" }, - { "15b8", "1001", "APCI1516 SP controller (16 digi outputs)" }, - { "15b8", "1003", "APCI1032 SP controller (32 digi inputs w/ opto coupler)" }, - { "15b8", "1004", "APCI2032 SP controller (32 digi outputs)" }, - { "15b8", "1005", "APCI2200 SP controller (8/16 digi outputs (relay))" }, - { "15b8", "1006", "APCI1564 SP controller (32 digi ins, 32 digi outs)" }, - { "15b8", "100a", "APCI1696 SP controller (96 TTL I/Os)" }, - { "15b8", "3001", "APCI3501 SP controller (analog output board)" }, - { "15b8", "300f", "APCI3600 Noise and vibration measurement board" }, - { "15b8", "7001", "APCI7420 2-port Serial Controller" }, - { "15b8", "7002", "APCI7300 Serial Controller" }, - { "15bc", "0100", "HPFC-5600 Tachyon DX2+ FC" }, - { "15bc", "0103", "QX4 PCI Express quad 4-gigabit Fibre Channel controller" }, - { "15bc", "0105", "Celerity FC-44XS/FC-42XS/FC-41XS/FC-44ES/FC-42ES/FC-41ES" }, - { "15bc", "1100", "E8001-66442 PCI Express CIC" }, - { "15bc", "2922", "64 Bit, 133MHz PCI-X Exerciser & Protocol Checker" }, - { "15bc", "2928", "64 Bit, 66MHz PCI Exerciser & Analyzer" }, - { "15bc", "2929", "64 Bit, 133MHz PCI-X Analyzer & Exerciser" }, - { "15c5", "8010", "1394b - 1394 Firewire 3-Port Host Adapter Card" }, - { "15c7", "0349", "Tateyama C-PCI PLC/NC card Rev.01A" }, - { "15cf", "0000", "CIFX PCI/PCIe" }, - { "15dc", "0001", "Argus 300 PCI Cryptography Module" }, - { "15e2", "0500", "PhoneJack-PCI" }, - { "15e8", "0130", "Wireless PCI Card" }, - { "15e8", "0131", "NCP130A2 Wireless NIC" }, - { "15e9", "1841", "ADMA-100 DiscStaQ ATA Controller" }, - { "15ec", "3101", "FC3101 Profibus DP 1 Channel PCI" }, - { "15ec", "5102", "FC5102" }, - { "1618", "0001", "RDX 11" }, - { "1618", "0002", "HFT-01" }, - { "1618", "0400", "FarSync T2P (2 port X.21/V.35/V.24)" }, - { "1618", "0440", "FarSync T4P (4 port X.21/V.35/V.24)" }, - { "1618", "0610", "FarSync T1U (1 port X.21/V.35/V.24)" }, - { "1618", "0620", "FarSync T2U (2 port X.21/V.35/V.24)" }, - { "1618", "0640", "FarSync T4U (4 port X.21/V.35/V.24)" }, - { "1618", "1610", "FarSync TE1 (T1,E1)" }, - { "1618", "2610", "FarSync DSL-S1 (SHDSL)" }, - { "1618", "3640", "FarSync T4E (4-port X.21/V.35/V.24)" }, - { "1618", "4620", "FarSync T2Ue PCI Express (2-port X.21/V.35/V.24)" }, - { "1618", "4640", "FarSync T4Ue PCI Express (4-port X.21/V.35/V.24)" }, - { "1619", "0400", "FarSync T2P (2 port X.21/V.35/V.24)" }, - { "1619", "0440", "FarSync T4P (4 port X.21/V.35/V.24)" }, - { "1619", "0610", "FarSync T1U (1 port X.21/V.35/V.24)" }, - { "1619", "0620", "FarSync T2U (2 port X.21/V.35/V.24)" }, - { "1619", "0640", "FarSync T4U (4 port X.21/V.35/V.24)" }, - { "1619", "1610", "FarSync TE1 (T1,E1)" }, - { "1619", "1612", "FarSync TE1 PCI Express (T1,E1)" }, - { "1619", "2610", "FarSync DSL-S1 (SHDSL)" }, - { "1619", "3640", "FarSync T4E (4-port X.21/V.35/V.24)" }, - { "1619", "4620", "FarSync T2Ue PCI Express (2-port X.21/V.35/V.24)" }, - { "1619", "4640", "FarSync T4Ue PCI Express (4-port X.21/V.35/V.24)" }, - { "1619", "5621", "FarSync T2Ee PCI Express (2 port X.21/V.35/V.24)" }, - { "1619", "5641", "FarSync T4Ee PCI Express (4 port X.21/V.35/V.24)" }, - { "1619", "6620", "FarSync T2U-PMC PCI Express (2 port X.21/V.35/V.24)" }, - { "1621", "0020", "LynxTWO-A" }, - { "1621", "0021", "LynxTWO-B" }, - { "1621", "0022", "LynxTWO-C" }, - { "1621", "0023", "Lynx L22" }, - { "1621", "0024", "Lynx AES16" }, - { "1621", "0025", "Lynx AES16-SRC" }, - { "1621", "0028", "Lynx AES16e" }, - { "1626", "8410", "RTL81xx Fast Ethernet" }, - { "1629", "1003", "Format synchronizer v3.0" }, - { "1629", "1006", "Format synchronizer, model 10500" }, - { "1629", "1007", "Format synchronizer, model 21000" }, - { "1629", "2002", "Fast Universal Data Output" }, - { "1629", "3100", "IO31000 Frame Synchronizer and I/O" }, - { "1629", "3200", "IO32000 Frame Synchronizer and I/O" }, - { "1629", "4002", "High Rate Demodulator" }, - { "1629", "5001", "High Rate FEC" }, - { "1629", "6001", "High Rate Demodulator and FEC" }, - { "1638", "1100", "SMC2602W EZConnect / Addtron AWA-100 / Eumitcom PCI WL11000" }, - { "163c", "3052", "SmartLink SmartPCI562 56K Modem" }, - { "163c", "5449", "SmartPCI561 Modem" }, - { "1657", "0013", "425/825/42B/82B 4Gbps/8Gbps PCIe dual port FC HBA" }, - { "1657", "0014", "1010/1020/1007/1741 10Gbps CNA" }, - { "1657", "0017", "415/815/41B/81B 4Gbps/8Gbps PCIe single port FC HBA" }, - { "1657", "0021", "804 8Gbps FC HBA for HP Bladesystem c-class" }, - { "1657", "0022", "BR-1860 Fabric Adapter" }, - { "1657", "0023", "1867/1869 16Gbps FC HBA" }, - { "1657", "0646", "400 4Gbps PCIe FC HBA" }, - { "165a", "c100", "PIXCI(R) CL1 Camera Link Video Capture Board [custom QL5232]" }, - { "165a", "d200", "PIXCI(R) D2X Digital Video Capture Board [custom QL5232]" }, - { "165a", "d300", "PIXCI(R) D3X Digital Video Capture Board [custom QL5232]" }, - { "165a", "eb01", "PIXCI(R) EB1 PCI Camera Link Video Capture Board" }, - { "165c", "5361", "PROCStarII60-1" }, - { "165c", "5362", "PROCStarII60-2" }, - { "165c", "5364", "PROCStarII60-4" }, - { "165c", "5435", "ProcSparkII" }, - { "165c", "5661", "ProcE60" }, - { "165c", "56e1", "ProcE180" }, - { "165c", "5911", "ProcStarIII110-1" }, - { "165c", "5912", "ProcStarIII110-2" }, - { "165c", "5913", "ProcStarIII110-3" }, - { "165c", "5914", "ProcStarIII110-4" }, - { "165c", "5921", "ProcStarIII150-1" }, - { "165c", "5922", "ProcStarIII150-2" }, - { "165c", "5923", "ProcStarIII150-3" }, - { "165c", "5924", "ProcStarIII150-4" }, - { "165c", "5931", "ProcStarIII260-1" }, - { "165c", "5932", "ProcStarIII260-2" }, - { "165c", "5933", "ProcStarIII260-3" }, - { "165c", "5934", "ProcStarIII260-4" }, - { "165c", "5941", "ProcStarIII340-1" }, - { "165c", "5942", "ProcStarIII340-2" }, - { "165c", "5943", "ProcStarIII340-3" }, - { "165c", "5944", "ProcStarIII340-4" }, - { "165c", "5a01", "ProceIII80" }, - { "165c", "5a11", "ProceIII110" }, - { "165c", "5a21", "ProceIII150" }, - { "165c", "5a31", "ProceIII260" }, - { "165c", "5a41", "ProceIII340" }, - { "165c", "5b51", "ProceIV360" }, - { "165c", "5b61", "ProceIV530" }, - { "165c", "5b71", "ProceIV820" }, - { "165c", "5c01", "ProcStarIV80-1" }, - { "165c", "5c02", "ProcStarIV80-2" }, - { "165c", "5c03", "ProcStarIV80-3" }, - { "165c", "5c04", "ProcStarIV80-4" }, - { "165c", "5c11", "ProcStarIV110-1" }, - { "165c", "5c12", "ProcStarIV110-2" }, - { "165c", "5c13", "ProcStarIV110-3" }, - { "165c", "5c14", "ProcStarIV110-4" }, - { "165c", "5c51", "ProcStarIV360-1" }, - { "165c", "5c52", "ProcStarIV360-2" }, - { "165c", "5c53", "ProcStarIV360-3" }, - { "165c", "5c54", "ProcStarIV360-4" }, - { "165c", "5c61", "ProcStarIV530-1" }, - { "165c", "5c62", "ProcStarIV530-2" }, - { "165c", "5c63", "ProcStarIV530-3" }, - { "165c", "5c64", "ProcStarIV530-4" }, - { "165c", "5c71", "ProcStarIV820-1" }, - { "165c", "5c72", "ProcStarIV820-2" }, - { "165c", "5c73", "ProcStarIV820-3" }, - { "165c", "5c74", "ProcStarIV820-4" }, - { "165c", "5d01", "Proc10480" }, - { "165c", "5d11", "Proc104110" }, - { "165c", "5f01", "ProceV_A3" }, - { "165c", "5f11", "ProceV_A7" }, - { "165c", "5f21", "ProceV_AB" }, - { "165c", "5f31", "ProceV_D5" }, - { "165c", "5f41", "ProceV_D8" }, - { "165c", "6732", "Proc6M" }, - { "165c", "6832", "Proc12M" }, - { "165c", "7101", "Proc10a_27" }, - { "165c", "7111", "Proc10a_48" }, - { "165c", "7121", "Proc10a_66" }, - { "165c", "7141", "Proc10a_115" }, - { "165c", "7181", "Proc10a_27S" }, - { "165c", "7191", "Proc10a_48S" }, - { "165c", "71a1", "Proc10a_66S" }, - { "165c", "71b1", "Proc10A" }, - { "165c", "72b1", "HawkEye" }, - { "165c", "73b1", "Proc10s" }, - { "165f", "1020", "LMLM4 MPEG-4 encoder" }, - { "1668", "0100", "Mini-PCI bridge" }, - { "166d", "0001", "SiByte BCM1125/1125H/1250 System-on-a-Chip PCI" }, - { "166d", "0002", "SiByte BCM1125H/1250 System-on-a-Chip HyperTransport" }, - { "166d", "0012", "SiByte BCM1280/BCM1480 System-on-a-Chip PCI-X" }, - { "166d", "0014", "Sibyte BCM1280/BCM1480 System-on-a-Chip HyperTransport" }, - { "1677", "104e", "5LS172.6 B&R Dual CAN Interface Card" }, - { "1677", "12d7", "5LS172.61 B&R Dual CAN Interface Card" }, - { "1677", "20ad", "5ACPCI.MFIO-K01 Profibus DP / K-Feldbus / COM" }, - { "1678", "0100", "NE020 10Gb Accelerated Ethernet Adapter (iWARP RNIC)" }, - { "1679", "3000", "SD Standard host controller [Ellen]" }, - { "167b", "2102", "ZyDAS ZD1202" }, - { "167b", "2116", "ZD1212B Wireless Adapter" }, - { "167d", "a000", "MagicLAN SWL-2210P 802.11b [Intersil ISL3874]" }, - { "1682", "5701", "Radeon 5700 XT Thicc III Ultra" }, - { "1682", "c580", "Radeon RX 580" }, - { "1688", "1170", "WLAN 802.11b card" }, - { "168a", "2086", "CryptoServer Se-Series Hardware Security Module" }, - { "168a", "c040", "CryptoServer CSe-Series Hardware Security Module" }, - { "168a", "c051", "CryptoServer Se-Series Gen2 Hardware Security Module" }, - { "168a", "c070", "u.trust Anchor Hardware Security Module cs7.2 Series" }, - { "168a", "c071", "u.trust Anchor Hardware Security Module cs7.3 Series" }, - { "168a", "c072", "u.trust Anchor Hardware Security Module cs7.3 Series Virtual Function" }, - { "168c", "0007", "AR5210 Wireless Network Adapter [AR5000 802.11a]" }, - { "168c", "0011", "AR5211 Wireless Network Adapter [AR5001A 802.11a]" }, - { "168c", "0012", "AR5211 Wireless Network Adapter [AR5001X 802.11ab]" }, - { "168c", "0013", "AR5212/5213/2414 Wireless Network Adapter" }, - { "168c", "001a", "AR2413/AR2414 Wireless Network Adapter [AR5005G(S) 802.11bg]" }, - { "168c", "001b", "AR5413/AR5414 Wireless Network Adapter [AR5006X(S) 802.11abg]" }, - { "168c", "001c", "AR242x / AR542x Wireless Network Adapter (PCI-Express)" }, - { "168c", "001d", "AR2417 Wireless Network Adapter [AR5007G 802.11bg]" }, - { "168c", "0020", "AR5513 802.11abg Wireless NIC" }, - { "168c", "0023", "AR5416 Wireless Network Adapter [AR5008 802.11(a)bgn]" }, - { "168c", "0024", "AR5418 Wireless Network Adapter [AR5008E 802.11(a)bgn] (PCI-Express)" }, - { "168c", "0027", "AR9160 Wireless Network Adapter [AR9001 802.11(a)bgn]" }, - { "168c", "0029", "AR922X Wireless Network Adapter" }, - { "168c", "002a", "AR928X Wireless Network Adapter (PCI-Express)" }, - { "168c", "002b", "AR9285 Wireless Network Adapter (PCI-Express)" }, - { "168c", "002c", "AR2427 802.11bg Wireless Network Adapter (PCI-Express)" }, - { "168c", "002d", "AR9227 Wireless Network Adapter" }, - { "168c", "002e", "AR9287 Wireless Network Adapter (PCI-Express)" }, - { "168c", "0030", "AR93xx Wireless Network Adapter" }, - { "168c", "0032", "AR9485 Wireless Network Adapter" }, - { "168c", "0033", "AR958x 802.11abgn Wireless Network Adapter" }, - { "168c", "0034", "AR9462 Wireless Network Adapter" }, - { "168c", "0036", "QCA9565 / AR9565 Wireless Network Adapter" }, - { "168c", "0037", "AR9485 Wireless Network Adapter" }, - { "168c", "003c", "QCA986x/988x 802.11ac Wireless Network Adapter" }, - { "168c", "003e", "QCA6174 802.11ac Wireless Network Adapter" }, - { "168c", "0040", "QCA9980/9990 802.11ac Wireless Network Adapter" }, - { "168c", "0041", "QCA6164 802.11ac Wireless Network Adapter" }, - { "168c", "0042", "QCA9377 802.11ac Wireless Network Adapter" }, - { "168c", "0046", "QCA9984 802.11ac Wave 2 Wireless Network Adapter" }, - { "168c", "0050", "QCA9887 802.11ac Wireless Network Adapter" }, - { "168c", "0207", "AR5210 Wireless Network Adapter [AR5000 802.11a]" }, - { "168c", "1014", "AR5212 802.11abg NIC" }, - { "168c", "9013", "AR5002X Wireless Network Adapter" }, - { "168c", "ff19", "AR5006X Wireless Network Adapter" }, - { "168c", "ff1b", "AR2425 Wireless Network Adapter [AR5007EG 802.11bg]" }, - { "168c", "ff1c", "AR5008 Wireless Network Adapter" }, - { "168c", "ff1d", "AR922x Wireless Network Adapter" }, - { "169c", "0044", "Revolution Storage Processing Card" }, - { "16ab", "1100", "GL24110P" }, - { "16ab", "1101", "PLX9052 PCMCIA-to-PCI Wireless LAN" }, - { "16ab", "1102", "PCMCIA-to-PCI Wireless Network Bridge" }, - { "16ab", "8501", "WL-8305 Wireless LAN PCI Adapter" }, - { "16ae", "0001", "SafeXcel 1140" }, - { "16ae", "000a", "SafeXcel 1841" }, - { "16ae", "1141", "SafeXcel 1141" }, - { "16ae", "1841", "SafeXcel 1842" }, - { "16c3", "abcd", "DWC_usb3 / PCIe bridge" }, - { "16c3", "abce", "DWC_usb3" }, - { "16c3", "abcf", "DWC_usb31" }, - { "16c3", "edda", "EPMockUp" }, - { "16c6", "8695", "Centaur KS8695 ARM processor" }, - { "16c6", "8842", "KSZ8842-PMQL 2-Port Ethernet Switch" }, - { "16ca", "0001", "Rocket Drive DL" }, - { "16cd", "0101", "DirectPCI SRAM for DPX-11x series" }, - { "16cd", "0102", "DirectPCI SRAM for DPX-S/C/E-series" }, - { "16cd", "0103", "DirectPCI ROM for DPX-11x series" }, - { "16cd", "0104", "DirectPCI ROM for DPX-S/C/E-series" }, - { "16cd", "0105", "DirectPCI I/O for DPX-114/DPX-115" }, - { "16cd", "0106", "DirectPCI I/O for DPX-116" }, - { "16cd", "0107", "DirectPCI I/O for DPX-116U" }, - { "16cd", "0108", "DirectPCI I/O for DPX-117" }, - { "16cd", "0109", "DirectPCI I/O for DPX-112" }, - { "16cd", "010a", "DirectPCI I/O for DPX-C/E-series" }, - { "16cd", "010b", "DirectPCI I/O for DPX-S series" }, - { "16d5", "0504", "PMC-DX504 Reconfigurable FPGA with LVDS I/O" }, - { "16d5", "0520", "PMC520 Serial Communication, 232 Octal" }, - { "16d5", "0521", "PMC521 Serial Communication, 422/485 Octal" }, - { "16d5", "1020", "PMC-AX1020 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "1065", "PMC-AX1065 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "2004", "PMC-DX2004 Reconfigurable FPGA with LVDS I/O" }, - { "16d5", "2020", "PMC-AX2020 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "2065", "PMC-AX2065 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "3020", "PMC-AX3020 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "3065", "PMC-AX3065 Reconfigurable FPGA with A/D & D/A" }, - { "16d5", "4243", "PMC424, APC424, AcPC424 Digital I/O and Counter Timer Module" }, - { "16d5", "4248", "PMC464, APC464, AcPC464 Digital I/O and Counter Timer Module" }, - { "16d5", "424b", "PMC-DX2002 Reconfigurable FPGA with Differential I/O" }, - { "16d5", "4253", "PMC-DX503 Reconfigurable FPGA with TTL and Differential I/O" }, - { "16d5", "4312", "PMC-CX1002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O" }, - { "16d5", "4313", "PMC-CX1003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O" }, - { "16d5", "4322", "PMC-CX2002 Reconfigurable Conduction-Cooled FPGA Virtex-II with Differential I/O" }, - { "16d5", "4323", "PMC-CX2003 Reconfigurable Conduction-Cooled FPGA Virtex-II with CMOS and Differential I/O" }, - { "16d5", "4350", "PMC-DX501 Reconfigurable Digital I/O Module" }, - { "16d5", "4353", "PMC-DX2003 Reconfigurable FPGA with TTL and Differential I/O" }, - { "16d5", "4357", "PMC-DX502 Reconfigurable Differential I/O Module" }, - { "16d5", "4457", "PMC730, APC730, AcPC730 Multifunction Module" }, - { "16d5", "4471", "XMC730 Multi-function I/O module with front I/O" }, - { "16d5", "4473", "XMC730CC Multi-function I/O module with rear I/O Conduction-cooled" }, - { "16d5", "464d", "PMC408 32-Channel Digital Input/Output Module" }, - { "16d5", "4850", "PMC220-16 12-Bit Analog Output Module" }, - { "16d5", "4a42", "PMC483, APC483, AcPC483 Counter Timer Module" }, - { "16d5", "4a50", "PMC484, APC484, AcPC484 Counter Timer Module" }, - { "16d5", "4a56", "PMC230 16-Bit Analog Output Module" }, - { "16d5", "4b47", "PMC330, APC330, AcPC330 Analog Input Module, 16-bit A/D" }, - { "16d5", "4c40", "PMC-LX40 Reconfigurable Virtex-4 FPGA with plug-in I/O" }, - { "16d5", "4c60", "PMC-LX60 Reconfigurable Virtex-4 FPGA with plug-in I/O" }, - { "16d5", "4d4d", "PMC341, APC341, AcPC341 Analog Input Module, Simultaneous Sample & Hold" }, - { "16d5", "4d4e", "PMC482, APC482, AcPC482 Counter Timer Board" }, - { "16d5", "524d", "PMC-DX2001 Reconfigurable FPGA with TTL I/O" }, - { "16d5", "5335", "PMC-SX35 Reconfigurable Virtex-4 FPGA with plug-in I/O" }, - { "16d5", "5456", "PMC470 48-Channel Digital Input/Output Module" }, - { "16d5", "5601", "PMC-VLX85 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5602", "PMC-VLX110 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5603", "PMC-VSX95 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5604", "PMC-VLX155 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5605", "PMC-VFX70 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5606", "PMC-VLX155-1M Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5701", "PMC-SLX150: Reconfigurable Spartan-6 FPGA with plug-in I/O" }, - { "16d5", "5702", "PMC-SLX150-1M: Reconfigurable Spartan-6 FPGA with plug-in I/O" }, - { "16d5", "5801", "XMC-VLX85 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5802", "XMC-VLX110 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5803", "XMC-VSX95 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5804", "XMC-VLX155 Reconfigurable Virtex-5 FPGA with plug-in I/O" }, - { "16d5", "5807", "XMC-SLX150: Reconfigurable Spartan-6 FPGA with plug-in I/O" }, - { "16d5", "5808", "XMC-SLX150-1M: Reconfigurable Spartan-6 FPGA with plug-in I/O" }, - { "16d5", "5901", "APCe8650 PCI Express IndustryPack Carrier Card" }, - { "16d5", "6301", "XMC Module with user-configurable Virtex-6 FPGA, 240k logic cells, SFP front I/O" }, - { "16d5", "6302", "XMC Module with user-configurable Virtex-6 FPGA, 365k logic cells, SFP front I/O" }, - { "16d5", "6303", "XMC Module with user-configurable Virtex-6 FPGA, 240k logic cells, no front I/O" }, - { "16d5", "6304", "XMC Module with user-configurable Virtex-6 FPGA, 365k logic cells, no front I/O" }, - { "16d5", "7000", "XMC-7K325F: User-configurable Kintex-7 FPGA, 325k logic cells plus SFP front I/O" }, - { "16d5", "7001", "XMC-7K410F: User-configurable Kintex-7 FPGA, 410k logic cells plus SFP front I/O" }, - { "16d5", "7002", "XMC-7K325AX: User-Configurable Kintex-7 FPGA, 325k logic cells with AXM Plug-In I/O" }, - { "16d5", "7003", "XMC-7K410AX: User-Configurable Kintex-7 FPGA, 410k logic cells with AXM Plug-In I/O" }, - { "16d5", "7004", "XMC-7K325CC: User-Configurable Kintex-7 FPGA, 325k logic cells, conduction-cooled" }, - { "16d5", "7005", "XMC-7K410CC: User-Configurable Kintex-7 FPGA, 410k logic cells, conduction-cooled" }, - { "16d5", "7006", "XMC-7A200: User-Configurable Artix-7 FPGA, 200k logic cells with Plug-In I/O" }, - { "16d5", "7007", "XMC-7A200CC: User-Configurable Conduction-Cooled Artix-7 FPGA, with 200k logic cells" }, - { "16d5", "7011", "AP440-1: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7012", "AP440-2: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7013", "AP440-3: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7014", "AP445: 32-Channel Isolated Digital Output Module" }, - { "16d5", "7015", "AP471 48-Channel TTL Level Digital Input/Output Module" }, - { "16d5", "7016", "AP470 48-Channel TTL Level Digital Input/Output Module" }, - { "16d5", "7017", "AP323 16-bit, 20 or 40 Channel Analog Input Module" }, - { "16d5", "7018", "AP408: 32-Channel Digital I/O Module" }, - { "16d5", "7019", "AP341 14-bit, 16-Channel Simultaneous Conversion Analog Input Module" }, - { "16d5", "701a", "AP220-16 12-Bit, 16-Channel Analog Output Module" }, - { "16d5", "701b", "AP231-16 16-Bit, 16-Channel Analog Output Module" }, - { "16d5", "701c", "AP225 12-Bit, 16-Channel Analog Output Module with Waveform Memory" }, - { "16d5", "701d", "AP235 16-Bit, 16-Channel Analog Output Module with Waveform Memory" }, - { "16d5", "7021", "APA7-201 Reconfigurable Artix-7 FPGA module 48 TTL channels" }, - { "16d5", "7022", "APA7-202 Reconfigurable Artix-7 FPGA module 24 RS485 channels" }, - { "16d5", "7023", "APA7-203 Reconfigurable Artix-7 FPGA module 24 TTL & 12 RS485 channels" }, - { "16d5", "7024", "APA7-204 Reconfigurable Artix-7 FPGA module 24 LVDS channels" }, - { "16d5", "7027", "AP418 16-Channel High Voltage Digital Input/Output Module" }, - { "16d5", "7029", "AP342 14-bit, 12-Channel Isolated Simultaneous Conversion Analog Input Module" }, - { "16d5", "702a", "AP226 12-Bit, 8-Channel Isolated Analog Output Module" }, - { "16d5", "702b", "AP236 16-Bit, 8-Channel Isolated Analog Output Module" }, - { "16d5", "702c", "AP560A Module 4 Independent isolated CAN bus channels" }, - { "16d5", "7031", "AP441-1: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7032", "AP441-2: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7033", "AP441-3: 32-Channel Isolated Digital Input Module" }, - { "16d5", "7042", "AP482 Counter Timer Module with TTL Level Input/Output" }, - { "16d5", "7043", "AP483 Counter Timer Module with TTL Level and RS422 Input/Output" }, - { "16d5", "7044", "AP484 Counter Timer Module with RS422 Input/Output" }, - { "16d5", "7051", "APA7-501 Reconfigurable Artix-7 52,160 Cell FPGA module 48 TTL channels" }, - { "16d5", "7052", "APA7-502 Reconfigurable Artix-7 52,160 Cell FPGA module 24 RS485 channels" }, - { "16d5", "7053", "APA7-503 Reconfigurable Artix-7 52,160 Cell FPGA module 24 TTL & 12 RS485 channels" }, - { "16d5", "7054", "APA7-504 Reconfigurable Artix-7 52,160 Cell FPGA module 24 LVDS channels" }, - { "16d5", "7073", "AP730 Multi-function I/O Module 16 Digital I/O 8 Differential Analog In 4 Analog Out" }, - { "16da", "0011", "INES GPIB-PCI" }, - { "16e3", "1e0f", "LEON2FT Processor" }, - { "16e5", "6000", "INT6000 Ethernet-to-Powerline Bridge [HomePlug AV]" }, - { "16e5", "6300", "INT6300 Ethernet-to-Powerline Bridge [HomePlug AV]" }, - { "16ec", "00ed", "USR997900" }, - { "16ec", "0116", "USR997902 10/100/1000 Mbps PCI Network Card" }, - { "16ec", "2f00", "USR5660A (USR265660A, USR5660A-BP) 56K PCI Faxmodem" }, - { "16ec", "3685", "Wireless Access PCI Adapter Model 022415" }, - { "16ec", "4320", "USR997904 10/100/1000 64-bit NIC (Marvell Yukon)" }, - { "16ec", "ab06", "USR997901A 10/100 Cardbus NIC" }, - { "16ed", "1001", "UMIO communication card" }, - { "16f2", "0200", "I/O board" }, - { "16f4", "8000", "VW2010" }, - { "170b", "0100", "NSP2000-SSL crypto accelerator" }, - { "1719", "1000", "NPA Access Network Processor Family" }, - { "1725", "7174", "VSC7174 PCI/PCI-X Serial ATA Host Bus Controller" }, - { "172a", "13c8", "AEP SureWare Runner 1000V3" }, - { "1737", "0029", "WPG54G ver. 4 PCI Card" }, - { "1737", "1032", "Gigabit Network Adapter" }, - { "1737", "1064", "Gigabit Network Adapter" }, - { "1737", "ab08", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "1737", "ab09", "21x4x DEC-Tulip compatible 10/100 Ethernet" }, - { "173b", "0001", "AC1002 PCI Gigabit Ethernet controller" }, - { "173b", "03e8", "AC1000 Gigabit Ethernet" }, - { "173b", "03e9", "AC1001 Gigabit Ethernet" }, - { "173b", "03ea", "AC9100 Gigabit Ethernet" }, - { "173b", "03eb", "AC1003 Gigabit Ethernet" }, - { "1743", "8139", "ROL/F-100 Fast Ethernet Adapter with ROL" }, - { "1745", "2020", "XCode II Series" }, - { "1745", "2100", "XCode 2100 Series" }, - { "1760", "0101", "PCD-7004 Digital Bi-Directional Ports PCI Card" }, - { "1760", "0102", "PCD-7104 Digital Input & Output PCI Card" }, - { "1760", "0121", "PCT-7303A PC card with IRC counters" }, - { "1760", "0122", "PCT-7408A PC card with counters and timers" }, - { "1760", "0123", "PCT-7424 PCI card with standard counters" }, - { "1760", "0141", "PCA7208AL - Analog Inputs/Outputs" }, - { "1760", "0142", "PCA7208AS - Analog inputs/Outputs" }, - { "1760", "0143", "PCA7408AL - Analog Inputs/Outputs" }, - { "1760", "0144", "PCA7408AS - Analog Inputs/Outputs" }, - { "1760", "0145", "PCA-7228AL Multifunction PCI IO card" }, - { "1760", "0146", "PCA-7228AS Multifunction PCI IO card" }, - { "1760", "0147", "PCA7428AL Multifunction PCI IO card" }, - { "1760", "0148", "PCA7428AS Multifunction PCI IO card" }, - { "1760", "0149", "PCA7228EL Multifunction PCI IO card with isolated analog inputs" }, - { "1760", "0150", "PCA7428EL Multifunction PCI IO card with isolated analog inputs" }, - { "1760", "0151", "PCA7628AL - PCI card with analog inputs, counters and DIO" }, - { "1760", "0152", "PCA7628AS PCI card with analog inputs, outputs, counters and DIO" }, - { "1760", "0161", "PCA7288A PCI card with analog outputs, counters and DIO" }, - { "1760", "0180", "PCI1052 Communication card for MicroUnit network" }, - { "1760", "0214", "PCT-7424C (F0) PC card with standard counters" }, - { "1760", "0215", "PCT-7424C (F1) PC card with standard counters" }, - { "1760", "0216", "PCT-7424E (F0) PC card with standard counters" }, - { "1760", "0217", "PCT-7424E (F1) PC card with standard counters" }, - { "1760", "0240", "PCA7428CL_F0 - analog Inputs" }, - { "1760", "0241", "PCA7428CL_F1 - analog Inputs" }, - { "1760", "0242", "PCA7428CS_F0 - Analog Inputs/Outputs non isolated" }, - { "1760", "0243", "PCA7428CS_F1 - Analog Inputs/Outputs non isolated" }, - { "1760", "0244", "PCA7428CE_F0 - Analog Inputs isolated" }, - { "1760", "0245", "PCA7428CE_F1 - Analog Inputs isolated" }, - { "1760", "0303", "PCD-7006C Digital Input & Output PCI Card" }, - { "1760", "0800", "PCD8006 - PCIe digital Inputs/Outputs" }, - { "1760", "0840", "PCA-8428 General-purpose multifunctional PCIe card with 8 analog inputs and 2 analog outputs" }, - { "1760", "0841", "PCA-8429 General-purpose multifunctional PCIe card with 8 analog inputs" }, - { "1760", "0842", "PCA-8438 General-purpose multifunctional PCIe card with 16 analog inputs and 2 analog outputs" }, - { "1760", "0843", "PCA-8439 General-purpose multifunctional PCIe card with 16 analog inputs" }, - { "1760", "ff00", "CTU CAN FD PCIe Card" }, - { "177d", "0001", "Nitrox XL N1" }, - { "177d", "0003", "Nitrox XL N1 Lite" }, - { "177d", "0004", "Octeon (and older) FIPS" }, - { "177d", "0005", "Octeon CN38XX Network Processor Pass 3.x" }, - { "177d", "0006", "RoHS" }, - { "177d", "0010", "CN15XX/CN16XX [Nitrox PX]" }, - { "177d", "0011", "CNN35XX [Nitrox III]" }, - { "177d", "0012", "CNN55XX [Nitrox V]" }, - { "177d", "0020", "Octeon CN31XX Network Processor" }, - { "177d", "0030", "Octeon CN30XX Network Processor" }, - { "177d", "0040", "Octeon CN58XX Network Processor" }, - { "177d", "0050", "Octeon CN57XX Network Processor (CN54XX/CN55XX/CN56XX)" }, - { "177d", "0070", "Octeon CN50XX Network Processor" }, - { "177d", "0080", "Octeon CN52XX Network Processor" }, - { "177d", "0090", "Octeon II CN63XX Network Processor" }, - { "177d", "0091", "Octeon II CN68XX Network Processor" }, - { "177d", "0092", "Octeon II CN65XX Network Processor" }, - { "177d", "0093", "Octeon II CN61XX Network Processor" }, - { "177d", "0094", "Octeon Fusion CNF71XX Cell processor" }, - { "177d", "0095", "Octeon III CN78XX Network Processor" }, - { "177d", "0096", "Octeon III CN70XX Network Processor" }, - { "177d", "9700", "Octeon III CN73XX Network Processor" }, - { "177d", "9702", "CN23XX [LiquidIO II] Intelligent Adapter" }, - { "177d", "9703", "CN23XX [LiquidIO II] NVMe Controller" }, - { "177d", "9712", "CN23XX [LiquidIO II] SRIOV Virtual Function" }, - { "177d", "9713", "CN23XX [LiquidIO II] NVMe SRIOV Virtual Function" }, - { "177d", "9800", "Octeon Fusion CNF75XX Processor" }, - { "177d", "a001", "ThunderX MRML(Master RML Bridge to RSL devices)" }, - { "177d", "a002", "THUNDERX PCC Bridge" }, - { "177d", "a008", "THUNDERX SMMU" }, - { "177d", "a009", "THUNDERX Generic Interrupt Controller" }, - { "177d", "a00a", "THUNDERX GPIO Controller" }, - { "177d", "a00b", "THUNDERX MPI / SPI Controller" }, - { "177d", "a00c", "THUNDERX MIO-PTP Controller" }, - { "177d", "a00d", "THUNDERX MIX Network Controller" }, - { "177d", "a00e", "THUNDERX Reset Controller" }, - { "177d", "a00f", "THUNDERX UART Controller" }, - { "177d", "a010", "THUNDERX eMMC/SD Controller" }, - { "177d", "a011", "THUNDERX MIO-BOOT Controller" }, - { "177d", "a012", "THUNDERX TWSI / I2C Controller" }, - { "177d", "a013", "THUNDERX CCPI (Multi-node connect)" }, - { "177d", "a014", "THUNDERX Voltage Regulator Module" }, - { "177d", "a015", "THUNDERX PCIe Switch Logic Interface" }, - { "177d", "a016", "THUNDERX Key Memory" }, - { "177d", "a017", "THUNDERX GTI (Global System Timers)" }, - { "177d", "a018", "THUNDERX Random Number Generator" }, - { "177d", "a019", "THUNDERX DFA" }, - { "177d", "a01a", "THUNDERX Zip Coprocessor" }, - { "177d", "a01b", "THUNDERX xHCI USB Controller" }, - { "177d", "a01c", "THUNDERX AHCI SATA Controller" }, - { "177d", "a01d", "THUNDERX RAID Coprocessor" }, - { "177d", "a01e", "THUNDERX Network Interface Controller" }, - { "177d", "a01f", "THUNDERX Traffic Network Switch" }, - { "177d", "a020", "THUNDERX PEM (PCI Express Interface)" }, - { "177d", "a021", "THUNDERX L2C (Level-2 Cache Controller)" }, - { "177d", "a022", "THUNDERX LMC (DRAM Controller)" }, - { "177d", "a023", "THUNDERX OCLA (On-Chip Logic Analyzer)" }, - { "177d", "a024", "THUNDERX OSM" }, - { "177d", "a025", "THUNDERX GSER (General Serializer/Deserializer)" }, - { "177d", "a026", "THUNDERX BGX (Common Ethernet Interface)" }, - { "177d", "a027", "THUNDERX IOBN" }, - { "177d", "a029", "THUNDERX NCSI (Network Controller Sideband Interface)" }, - { "177d", "a02a", "ThunderX SGPIO (Serial GPIO controller for SATA disk lights)" }, - { "177d", "a02b", "THUNDERX SMI / MDIO Controller" }, - { "177d", "a02c", "THUNDERX DAP (Debug Access Port)" }, - { "177d", "a02d", "THUNDERX PCIERC (PCIe Root Complex)" }, - { "177d", "a02e", "ThunderX L2C-TAD (Level 2 cache tag and data)" }, - { "177d", "a02f", "THUNDERX L2C-CBC" }, - { "177d", "a030", "THUNDERX L2C-MCI" }, - { "177d", "a031", "THUNDERX MIO-FUS (Fuse Access Controller)" }, - { "177d", "a032", "THUNDERX FUSF (Fuse Controller)" }, - { "177d", "a033", "THUNDERX Random Number Generator virtual function" }, - { "177d", "a034", "THUNDERX Network Interface Controller virtual function" }, - { "177d", "a035", "THUNDERX Parallel Bus" }, - { "177d", "a036", "ThunderX RAD (RAID acceleration engine) virtual function" }, - { "177d", "a037", "THUNDERX ZIP virtual function" }, - { "177d", "a040", "THUNDERX CPT Cryptographic Accelerator" }, - { "177d", "a059", "Octeon TX2 CGX (MAC)" }, - { "177d", "a060", "Octeon 10 RPM (MAC)" }, - { "177d", "a061", "Octeon Tx2 Loopback Interface (LBK)" }, - { "177d", "a063", "Octeon Tx2 RVU Physical Function" }, - { "177d", "a064", "Octeon Tx2 RVU Virtual Function" }, - { "177d", "a065", "Octeon Tx2 RVU Admin Function" }, - { "177d", "a09e", "Octeon 10 PTP controller" }, - { "177d", "a0f2", "Octeon 10 CPT Cryptographic Accelerator, Physical function" }, - { "177d", "a0f3", "Octeon 10 CPT Cryptographic Accelerator, Virtual function" }, - { "177d", "a0f6", "Octeon Tx2 SDP Physical Function" }, - { "177d", "a0f7", "Octeon Tx2 SDP Virtual Function" }, - { "177d", "a0f8", "Octeon Tx2 Loopback Interface Virtual Function (LBKVF)" }, - { "177d", "a0fd", "Octeon Tx2 CPT Cryptographic Accelerator, Physical function" }, - { "177d", "a0fe", "Octeon Tx2 CPT Cryptographic Accelerator, Virtual function" }, - { "177d", "a100", "THUNDERX CN88XX 48 core SoC" }, - { "177d", "a200", "OCTEON TX CN81XX/CN80XX" }, - { "177d", "a300", "OCTEON TX CN83XX" }, - { "177d", "af00", "CN99xx [ThunderX2] Integrated PCI Host bridge" }, - { "177d", "af84", "CN99xx [ThunderX2] Integrated PCI Express RP Bridge" }, - { "1796", "0001", "SIS1100 [Gigabit link]" }, - { "1796", "0002", "HOTlink" }, - { "1796", "0003", "Counter Timer" }, - { "1796", "0004", "CAMAC Controller" }, - { "1796", "0005", "PROFIBUS" }, - { "1796", "0006", "AMCC HOTlink" }, - { "1796", "0007", "LVD Cable Bus" }, - { "1796", "0008", "100MHz, 64bit Sequence Generator based on VirtexII" }, - { "1796", "0009", "double 14bit-ADC" }, - { "1796", "000a", "SIS1100 with N110 TDC" }, - { "1796", "000b", "double 14bit-ADC with memory" }, - { "1796", "000d", "Synchronisation Slave" }, - { "1796", "000e", "SIS1100-eCMC" }, - { "1796", "000f", "TDC (GPX)" }, - { "1796", "0010", "PCIe Counter Timer" }, - { "1796", "0011", "SIS1100-e single link" }, - { "1796", "0012", "SIS1100-e quad link" }, - { "1796", "0013", "4x2.5GHz SFP to 4 lane PCIe bridge" }, - { "1796", "0014", "SIS1100 with GPX piggy back" }, - { "1796", "0015", "SIS8100 [Gigabit link, MicroTCA]" }, - { "1796", "0016", "SIS1100e with 4 lanes" }, - { "1796", "0017", "Quad 14bit, 50MHz ADC with 2.5GHz SFP" }, - { "1796", "0018", "SIS8300 4-lane PCI Express, Micro TCA for Physics ADC" }, - { "1796", "0019", "SIS SIS8300-Lx MTCA.4 Digitizer" }, - { "1796", "001a", "100MHz, 64bit Sequence Generator based on VirtexII" }, - { "1796", "001c", "Quad 16bit, 150MHz ADC with 2.5GHz SFP" }, - { "1796", "0030", "100MHz, 64bit Sequence Generator based on Spartan6" }, - { "1796", "0031", "200MHz 64bit Sequence Generator based on Spartan7" }, - { "1797", "5864", "TW5864 multimedia video controller" }, - { "1797", "6801", "TW6802 multimedia video card" }, - { "1797", "6802", "TW6802 multimedia other device" }, - { "1797", "6810", "TW6816 multimedia video controller" }, - { "1797", "6811", "TW6816 multimedia video controller" }, - { "1797", "6812", "TW6816 multimedia video controller" }, - { "1797", "6813", "TW6816 multimedia video controller" }, - { "1797", "6814", "TW6816 multimedia video controller" }, - { "1797", "6815", "TW6816 multimedia video controller" }, - { "1797", "6816", "TW6816 multimedia video controller" }, - { "1797", "6817", "TW6816 multimedia video controller" }, - { "1797", "6864", "TW6864 multimedia video controller" }, - { "1799", "6001", "F5D6001 Wireless PCI Card [Realtek RTL8180]" }, - { "1799", "6020", "F5D6020 v3000 Wireless PCMCIA Card [Realtek RTL8180]" }, - { "1799", "6060", "F5D6060 Wireless PDA Card" }, - { "1799", "700f", "F5D7000 v7000 Wireless G Desktop Card [Realtek RTL8185]" }, - { "1799", "701f", "F5D7010 v7000 Wireless G Notebook Card [Realtek RTL8185]" }, - { "179a", "0001", "Quantis PCI 16Mbps" }, - { "179c", "0557", "DP-PCI-557 [PCI 1553B]" }, - { "179c", "0566", "DP-PCI-566 [Intelligent PCI 1553B]" }, - { "179c", "1152", "DP-cPCI-1152 (8-channel Isolated ADC Module)" }, - { "179c", "5031", "DP-CPCI-5031-Synchro Module" }, - { "179c", "5112", "DP-cPCI-5112 [MM-Carrier]" }, - { "179c", "5121", "DP-CPCI-5121-IP Carrier" }, - { "179c", "5211", "DP-CPCI-5211-IP Carrier" }, - { "179c", "5679", "AGE Display Module" }, - { "17a0", "7163", "GL9701 PCIe to PCI Bridge" }, - { "17a0", "8083", "GL880 USB 1.1 UHCI controller" }, - { "17a0", "8084", "GL880 USB 2.0 EHCI controller" }, - { "17a0", "9750", "GL9750 SD Host Controller" }, - { "17a0", "9755", "GL9755 SD Host Controller" }, - { "17a0", "e763", "GL9763E eMMC Controller" }, - { "17aa", "3181", "ThinkCentre M75n IoT" }, - { "17aa", "402b", "Intel 82599ES 10Gb 2-port Server Adapter X520-2" }, - { "17b3", "ab08", "PN672TX 10/100 Ethernet" }, - { "17b4", "0011", "WebEnhance 100 GZIP Compression Card" }, - { "17b4", "0012", "WebEnhance 200 GZIP Compression Card" }, - { "17b4", "0015", "WebEnhance 300 GZIP Compression Card" }, - { "17b4", "0016", "StorCompress 300 GZIP Compression Card" }, - { "17b4", "0017", "StorSecure 300 GZIP Compression and AES Encryption Card" }, - { "17cb", "0001", "AGN100 802.11 a/b/g True MIMO Wireless Card" }, - { "17cb", "0002", "AGN300 802.11 a/b/g True MIMO Wireless Card" }, - { "17cb", "0105", "MSM8998 PCIe Root Complex" }, - { "17cb", "0108", "SM8150 PCIe Root Complex" }, - { "17cb", "0109", "SA8195P PCIe Root Complex" }, - { "17cb", "0300", "MDM9x35 LTE Modem [Snapdragon X7]" }, - { "17cb", "0301", "MDM9x45 LTE Modem [Snapdragon X12]" }, - { "17cb", "0302", "MDM9x55 LTE Modem [Snapdragon X16]" }, - { "17cb", "0400", "Datacenter Technologies QDF2432 PCI Express Root Port" }, - { "17cb", "0401", "Datacenter Technologies QDF2400 PCI Express Root Port" }, - { "17cb", "1000", "QCS405 PCIe Root Complex" }, - { "17cb", "1101", "QCA6390 Wireless Network Adapter" }, - { "17cb", "1103", "QCNFA765 Wireless Network Adapter" }, - { "17cb", "1104", "QCN6024/9024/9074 Wireless Network Adapter" }, - { "17cc", "2280", "USB 2.0" }, - { "17d3", "1110", "ARC-1110 4-Port PCI-X to SATA RAID Controller" }, - { "17d3", "1120", "ARC-1120 8-Port PCI-X to SATA RAID Controller" }, - { "17d3", "1130", "ARC-1130 12-Port PCI-X to SATA RAID Controller" }, - { "17d3", "1160", "ARC-1160 16-Port PCI-X to SATA RAID Controller" }, - { "17d3", "1170", "ARC-1170 24-Port PCI-X to SATA RAID Controller" }, - { "17d3", "1201", "ARC-1200 2-Port PCI-Express to SATA II RAID Controller" }, - { "17d3", "1203", "ARC-1203 2/4/8 Port PCIe 2.0 to SATA 6Gb RAID Controller" }, - { "17d3", "1210", "ARC-1210 4-Port PCI-Express to SATA RAID Controller" }, - { "17d3", "1214", "ARC-12x4 PCIe 2.0 to SAS/SATA 6Gb RAID Controller" }, - { "17d3", "1220", "ARC-1220 8-Port PCI-Express to SATA RAID Controller" }, - { "17d3", "1222", "ARC-1222 8-Port PCI-Express to SAS/SATA II RAID Controller" }, - { "17d3", "1230", "ARC-1230 12-Port PCI-Express to SATA RAID Controller" }, - { "17d3", "1260", "ARC-1260 16-Port PCI-Express to SATA RAID Controller" }, - { "17d3", "1280", "ARC-1280/1280ML 24-Port PCI-Express to SATA II RAID Controller" }, - { "17d3", "1300", "ARC-1300ix-16 16-Port PCI-Express to SAS Non-RAID Host Adapter" }, - { "17d3", "1320", "ARC-1320 8/16 Port PCIe 2.0 to SAS/SATA 6Gb Non-RAID Host Adapter" }, - { "17d3", "1330", "ARC-1330 16 Port PCIe 3.0 to SAS/SATA 12Gb Non-RAID Host Adapter" }, - { "17d3", "1680", "ARC-1680 series PCIe to SAS/SATA 3Gb RAID Controller" }, - { "17d3", "1880", "ARC-188x series PCIe 2.0/3.0 to SAS/SATA 6/12Gb RAID Controller" }, - { "17d3", "1884", "ARC-1884 series PCIe 3.0 to SAS/SATA 12/6Gb RAID Controller" }, - { "17d3", "188a", "ARC-1886 series PCIe 4.0 to NVMe/SAS/SATA 16/12/6Gb RAID Controller" }, - { "17d5", "5731", "Xframe 10-Gigabit Ethernet PCI-X" }, - { "17d5", "5732", "Xframe II 10-Gigabit Ethernet PCI-X 2.0" }, - { "17d5", "5831", "Xframe 10-Gigabit Ethernet PCI-X" }, - { "17d5", "5832", "Xframe II 10-Gigabit Ethernet PCI-X 2.0" }, - { "17d5", "5833", "X3100 Series 10 Gigabit Ethernet PCIe" }, - { "17db", "0101", "XT Series [Seastar] 3D Toroidal Router" }, - { "17df", "1864", "Virtex4 PCI Board w/ QL5064 Bridge [DN7000K10PCI/DN8000K10PCI/DN8000K10PSX/NOTUS]" }, - { "17df", "1865", "Virtex4 ASIC Emulator [DN8000K10PCIe]" }, - { "17df", "1866", "Virtex4 ASIC Emulator Cable Connection [DN8000K10PCI]" }, - { "17df", "1867", "Virtex4 ASIC Emulator Cable Connection [DN8000K10PCIe]" }, - { "17df", "1868", "Virtex4 ASIC Emulator [DN8000K10PCIe-8]" }, - { "17df", "1900", "Virtex5 PCIe ASIC Emulator [DN9000K10PCIe8T/DN9002K10PCIe8T/DN9200K10PCIe8T/DN7006K10PCIe8T/DN7406K10PCIe8T]" }, - { "17df", "1901", "Virtex5 PCIe ASIC Emulator Large BARs [DN9000K10PCIe8T/DN9002K10PCIe8T/DN9200K10PCIe8T/DN7006K10PCIe8T/DN7406K10PCIe8T]" }, - { "17df", "1902", "Virtex5 PCIe ASIC Emulator Low Power [Interceptor]" }, - { "17df", "1903", "Spartan6 PCIe FPGA Accelerator Board [DNBFCS12PCIe]" }, - { "17df", "1904", "Virtex6 PCIe ASIC Emulation Board [DNDUALV6_PCIe4]" }, - { "17df", "1905", "Virtex6 PCIe ASIC Emulation Board [DNV6F6PCIe]" }, - { "17df", "1906", "Virtex6 PCIe ASIC Emulation Board [DN2076K10]" }, - { "17df", "1907", "Virtex6 PCIe ASIC Emulation Board [DNV6F2PCIe]" }, - { "17df", "1908", "Virtex6 PCIe ASIC Emulation Board Large BARs[DNV6F2PCIe]" }, - { "17df", "1909", "Kintex7 PCIe FPGA Accelerator Board [DNK7F5PCIe]" }, - { "17df", "190a", "Virtex7 PCIe ASIC Emulation Board [DNV7F1A]" }, - { "17df", "190b", "Stratix5 PCIe ASIC Emulation Board [DNS5GXF2]" }, - { "17df", "190c", "Virtex7 PCIe ASIC Emulation Board [DNV7F2A]" }, - { "17df", "190d", "Virtex7 PCIe ASIC Emulation Board [DNV7F4A]" }, - { "17df", "190e", "Virtex7 PCIe ASIC Emulation Board [DNV7F2B]" }, - { "17df", "190f", "KintexUS PCIe MainRef Design [DNPCIE_40G_KU_LL]" }, - { "17df", "1910", "VirtexUS ASIC Emulation Board [DNVUF4A]" }, - { "17df", "1911", "VirtexUS PCIe ASIC Emulation Board [DNVU_F2PCIe]" }, - { "17df", "1912", "KintexUS PCIe MainRef Design [DNPCIe_40G_KU_LL_QSFP]" }, - { "17df", "1913", "VirtexUS ASIC Emulation Board [DNVUF1A]" }, - { "17df", "1914", "VirtexUS ASIC Emulation Board [DNVUF2A]" }, - { "17df", "1915", "Arria10 PCIe MainRef Design [DNPCIe_80G_A10_LL]" }, - { "17df", "1916", "VirtexUS PCIe Accelerator Board [DNVUF2_HPC_PCIe]" }, - { "17df", "1917", "UltrascalePlus PCIe Accelerator Board [DNPCIe_400G_VU_LL]" }, - { "17df", "1918", "VirtexUS+ ASIC Emulation Board [DNVUPF4A]" }, - { "17df", "1919", "UltrascalePlus PCIe Accelerator Board [DNPCIe_400G_VUP_HBM_LL]" }, - { "17df", "1a00", "Virtex6 PCIe DMA Netlist Design" }, - { "17df", "1a01", "Virtex6 PCIe Darklite Design [DNPCIe_HXT_10G_LL]" }, - { "17df", "1a02", "Virtex7 PCIe DMA Netlist Design" }, - { "17df", "1a03", "Kintex7 PCIe Darklite Design [DNPCIe_K7_10G_LL]" }, - { "17df", "1a05", "Stratix5 PCIe Darklite Design [DNS5GX_F2]" }, - { "17df", "1a06", "VirtexUS PCIe DMA Netlist Design" }, - { "17df", "1a07", "KintexUS PCIe Darklite Design [DNPCIe_40G_KU_LL]" }, - { "17df", "1a08", "KintexUS PCIe Darklite Design [DNPCIe_40G_KU_LL_QSFP]" }, - { "17df", "1a09", "Arria10 PCIe Darklite Design [DNPCIe_80G_A10_LL]" }, - { "17df", "1a0a", "VirtexUS PCIe Darklite Design [DNVUF2_HPC_PCIe]" }, - { "17df", "1a0b", "UltrascalePlus PCIe Darklite Design [DNPCIe_400G_VU_LL]" }, - { "17df", "1a0c", "KintexUS PCIe DRAM Packet Capture Design [DNPCIe_40G_KU_LL]" }, - { "17df", "1a0d", "KintexUS PCIe DRAM Packet Capture Design [DNPCIe_40G_KU_LL_2QSFP]" }, - { "17df", "1a0e", "UltrascalePlus PCIe Darklite Design [DNPCIe_400G_VUP_HBM_LL]" }, - { "17e4", "0001", "KK671 Cardbus encryption board" }, - { "17e4", "0002", "KK672 Cardbus encryption board" }, - { "17e6", "0010", "EN2010 [c.Link] MoCA Network Controller (Coax, PCI interface)" }, - { "17e6", "0011", "EN2010 [c.Link] MoCA Network Controller (Coax, MPEG interface)" }, - { "17e6", "0021", "EN2210 [c.Link] MoCA Network Controller (Coax)" }, - { "17e6", "0025", "EN2510 [c.Link] MoCA Network Controller (Coax, PCIe interface)" }, - { "17e6", "0027", "EN2710 [c.Link] MoCA 2.0 Network Controller (Coax, PCIe interface)" }, - { "17e6", "3700", "MoCA 2.0 Network Controller (Coax, PCIe interface)" }, - { "17e6", "3710", "MoCA 2.5 Network Controller (Coax, PCIe interface)" }, - { "17f3", "1010", "R1010 IDE Controller" }, - { "17f3", "1011", "R1011 IDE Controller" }, - { "17f3", "1012", "R1012 IDE Controller" }, - { "17f3", "1031", "PCI/PCI-X to PCI-E Bridge" }, - { "17f3", "1070", "CAN Bus Controller" }, - { "17f3", "1331", "Motion Control Interface" }, - { "17f3", "1930", "Hybrid Function Control Register" }, - { "17f3", "2010", "RDC M2010 VGA-compatible graphics adapter" }, - { "17f3", "2012", "M2012/R3308 VGA-compatible graphics adapter" }, - { "17f3", "2015", "RDC M2015 VGA-compatible graphics adapter" }, - { "17f3", "6011", "R6011 ISA Bridge" }, - { "17f3", "6013", "R6013 ISA Bridge" }, - { "17f3", "6020", "R6020 North Bridge" }, - { "17f3", "6021", "R6021 Host Bridge" }, - { "17f3", "6022", "R6022 Host Bridge" }, - { "17f3", "6023", "R6023 Host Bridge" }, - { "17f3", "6025", "R6025 Host Bridge" }, - { "17f3", "6026", "R6026 Host Bridge" }, - { "17f3", "6030", "R6030 ISA Bridge" }, - { "17f3", "6031", "R6031 ISA Bridge" }, - { "17f3", "6035", "R6035 ISA Bridge" }, - { "17f3", "6036", "R6036 ISA Bridge" }, - { "17f3", "6040", "R6040 MAC Controller" }, - { "17f3", "6060", "R6060 USB 1.1 Controller" }, - { "17f3", "6061", "R6061 USB 2.0 Controller" }, - { "17fe", "2120", "IPN 2120 802.11b" }, - { "17fe", "2220", "IPN 2220 802.11g" }, - { "1800", "1100", "Nanospeed Trading Gateway" }, - { "1804", "3060", "RT3060 Wireless 802.11n 1T/1R" }, - { "1813", "4000", "HaM controllerless modem" }, - { "1813", "4100", "HaM plus Data Fax Modem" }, - { "1814", "0101", "Wireless PCI Adapter RT2400 / RT2460" }, - { "1814", "0200", "RT2500 802.11g PCI [PC54G2]" }, - { "1814", "0201", "RT2500 Wireless 802.11bg" }, - { "1814", "0300", "Wireless Adapter Canyon CN-WF511" }, - { "1814", "0301", "RT2561/RT61 802.11g PCI" }, - { "1814", "0302", "RT2561/RT61 rev B 802.11g" }, - { "1814", "0401", "RT2600 802.11 MIMO" }, - { "1814", "0601", "RT2800 802.11n PCI" }, - { "1814", "0681", "RT2890 Wireless 802.11n PCIe" }, - { "1814", "0701", "RT2760 Wireless 802.11n 1T/2R" }, - { "1814", "0781", "RT2790 Wireless 802.11n 1T/2R PCIe" }, - { "1814", "3060", "RT3060 Wireless 802.11n 1T/1R" }, - { "1814", "3062", "RT3062 Wireless 802.11n 2T/2R" }, - { "1814", "3090", "RT3090 Wireless 802.11n 1T/1R PCIe" }, - { "1814", "3091", "RT3091 Wireless 802.11n 1T/2R PCIe" }, - { "1814", "3092", "RT3092 Wireless 802.11n 2T/2R PCIe" }, - { "1814", "3290", "RT3290 Wireless 802.11n 1T/1R PCIe" }, - { "1814", "3298", "RT3290 Bluetooth" }, - { "1814", "3592", "RT3592 Wireless 802.11abgn 2T/2R PCIe" }, - { "1814", "359f", "RT3592 PCIe Wireless Network Adapter" }, - { "1814", "5360", "RT5360 Wireless 802.11n 1T/1R" }, - { "1814", "5362", "RT5362 PCI 802.11n Wireless Network Adapter" }, - { "1814", "5390", "RT5390 Wireless 802.11n 1T/1R PCIe" }, - { "1814", "5392", "RT5392 PCIe Wireless Network Adapter" }, - { "1814", "539b", "RT5390R 802.11bgn PCIe Wireless Network Adapter" }, - { "1814", "539f", "RT5390 [802.11 b/g/n 1T1R G-band PCI Express Single Chip]" }, - { "1814", "5592", "RT5592 PCIe Wireless Network Adapter" }, - { "1814", "e932", "RT2560F 802.11 b/g PCI" }, - { "1822", "4e35", "Mantis DTV PCI Bridge Controller [Ver 1.0]" }, - { "182d", "3069", "ISDN PCI DC-105V2" }, - { "182d", "9790", "WL-121 Wireless Network Adapter 100g+ [Ver.3]" }, - { "182e", "0008", "XLR516 Processor" }, - { "182f", "000b", "BCM5785 [HT1000] SATA (RAID Mode)" }, - { "1830", "8000", "CPIn" }, - { "1830", "8001", "CPId" }, - { "1830", "8002", "CPIx" }, - { "1830", "8003", "CPIq" }, - { "183b", "08a7", "MVC100 DVI" }, - { "183b", "08a8", "MVC101 SDI" }, - { "183b", "08a9", "MVC102 DVI+Audio" }, - { "183b", "08b0", "MVC200-DC" }, - { "184a", "1100", "MAX II cPLD" }, - { "1850", "0048", "EK220-66401 Computer Interface Card" }, - { "185b", "1489", "VideoMate Vista T100" }, - { "1864", "2110", "ISNAP 2110" }, - { "1867", "5a44", "MT23108 InfiniHost HCA" }, - { "1867", "5a45", "MT23108 InfiniHost HCA flash recovery" }, - { "1867", "5a46", "MT23108 InfiniHost HCA bridge" }, - { "1867", "6278", "MT25208 InfiniHost III Ex (Tavor compatibility mode)" }, - { "1867", "6282", "MT25208 InfiniHost III Ex" }, - { "186c", "0612", "AD612 Data Acquisition Device" }, - { "186c", "0614", "MF614 Multifunction I/O Card" }, - { "186c", "0622", "AD622 Data Acquisition Device" }, - { "186c", "0624", "MF624 Multifunction I/O PCI Card" }, - { "186c", "0625", "MF625 3-phase Motor Driver" }, - { "186c", "0634", "MF634 Multifunction I/O PCIe Card" }, - { "186c", "0644", "MF644 Multifunction I/O Thb Card" }, - { "1876", "a101", "VigraWATCH PCI" }, - { "1876", "a102", "VigraWATCH PMC" }, - { "1876", "a103", "Vigra I/O" }, - { "187e", "3403", "ZyAir G-110 802.11g" }, - { "187e", "340e", "M-302 802.11g XtremeMIMO" }, - { "1888", "0301", "VMFX1 FPGA PMC module" }, - { "1888", "0601", "VSM2 dual PMC carrier" }, - { "1888", "0710", "VS14x series PowerPC PCI board" }, - { "1888", "0720", "VS24x series PowerPC PCI board" }, - { "1896", "4202", "MIport 3PCIU2 2-port Serial" }, - { "1896", "4204", "MIport 3PCIU4 4-port Serial" }, - { "1896", "4208", "MIport 3PCIU8 8-port Serial" }, - { "1896", "4211", "MIport 3PCIOU1 1-port Isolated Serial" }, - { "1896", "4212", "MIport 3PCIOU2 2-port Isolated Serial" }, - { "1896", "4214", "MIport 3PCIOU4 4-port Isolated Serial" }, - { "1896", "bb10", "3PCI2 2-Port Serial" }, - { "1896", "bb11", "3PCIO1 1-Port Isolated Serial" }, - { "18a2", "0002", "VRC6016 16-Channel PCIe DVR Card" }, - { "18ac", "d500", "FusionHDTV 5" }, - { "18ac", "d800", "FusionHDTV 3 Gold" }, - { "18ac", "d810", "FusionHDTV 3 Gold-Q" }, - { "18ac", "d820", "FusionHDTV 3 Gold-T" }, - { "18ac", "db30", "FusionHDTV DVB-T Pro" }, - { "18ac", "db40", "FusionHDTV DVB-T Hybrid" }, - { "18ac", "db78", "FusionHDTV DVB-T Dual Express" }, - { "18b8", "b001", "AMSO 1100 iWARP/RDMA Gigabit Ethernet Coprocessor" }, - { "18c3", "0720", "nGene PCI-Express Multimedia Controller" }, - { "18ca", "0020", "Z7/Z9 (XG20 core)" }, - { "18ca", "0021", "Z9s/Z9m (XG21 core)" }, - { "18ca", "0027", "Z11/Z11M" }, - { "18ca", "0040", "Volari V3XT/V5/V8" }, - { "18ca", "0047", "Volari 8300 (chip: XP10, codename: XG47)" }, - { "18d2", "3069", "DC-105v2 ISDN controller" }, - { "18dd", "4c6f", "Artimi RTMI-100 UWB adapter" }, - { "18e6", "0001", "OSCI [Octal Serial Communication Interface]" }, - { "18ec", "6d05", "ML555" }, - { "18ec", "c006", "COMBO6" }, - { "18ec", "c032", "COMBO-LXT110" }, - { "18ec", "c045", "COMBO6E" }, - { "18ec", "c050", "COMBO-PTM" }, - { "18ec", "c058", "COMBO6X" }, - { "18ec", "c132", "COMBO-LXT155" }, - { "18ec", "c232", "COMBO-FXT100" }, - { "18ec", "c400", "COMBO-400G1" }, - { "18f4", "0031", "NT20X Network Adapter" }, - { "18f4", "0051", "NT20X Capture Card" }, - { "18f4", "0061", "NT20E Capture Card" }, - { "18f4", "0064", "NT20E Inline Card" }, - { "18f4", "0071", "NT4E Capture Card" }, - { "18f4", "0074", "NT4E Inline Card" }, - { "18f4", "0081", "NT4E 4-port Expansion Card" }, - { "18f4", "0091", "NT20X Capture Card [New Rev]" }, - { "18f4", "00a1", "NT4E-STD Capture Card" }, - { "18f4", "00a4", "NT4E-STD Inline Card" }, - { "18f4", "00b1", "NTBPE Optical Bypass Adapter" }, - { "18f4", "00c5", "NT20E2 Network Adapter 2x10Gb" }, - { "18f4", "00d5", "NT40E2-4 Network Adapter 4x10Gb" }, - { "18f4", "00e5", "NT40E2-1 Network Adapter 1x40Gb" }, - { "18f4", "00f5", "NT4E2-4T-BP Network Adapter 4x1Gb with Electrical Bypass" }, - { "18f4", "0105", "NT4E2-4-PTP Network Adapter 4x1Gb" }, - { "18f4", "0115", "NT20E2-PTP Network Adapter 2x10Gb" }, - { "18f4", "0125", "NT4E2-4-PTP Network Adapter 4x1Gb" }, - { "18f4", "0135", "NT20E2-PTP Network Adapter 2x10Gb" }, - { "18f4", "0145", "NT40E3-4-PTP Network Adapter 4x10Gb" }, - { "18f4", "0155", "NT100E3-1-PTP Network Adapter 1x100Gb" }, - { "18f4", "0165", "NT80E3-2-PTP Network Adapter 2x40Gb" }, - { "18f4", "0175", "NT20E3-2-PTP Network Adapter 2x10Gb" }, - { "18f4", "0185", "NT40A01 Network Adapter" }, - { "18f4", "01a5", "NT200A01 Network Adapter" }, - { "18f4", "01c5", "NT200A02 Network Adapter" }, - { "18f4", "01d5", "NT50B01 Network Adapter" }, - { "18f4", "01e5", "NT100A01 Network Adapter" }, - { "18f6", "1000", "[Nexsis] Switch Virtual P2P PCIe Bridge" }, - { "18f6", "1001", "[Texsis] Switch Virtual P2P PCIe Bridge" }, - { "18f6", "1050", "[Nexsis] Switch Virtual P2P PCI Bridge" }, - { "18f6", "1051", "[Texsis] Switch Virtual P2P PCI Bridge" }, - { "18f6", "2000", "[Nexsis] Switch Integrated Mgmt. Endpoint" }, - { "18f6", "2001", "[Texsis] Switch Integrated Mgmt. Endpoint" }, - { "18f7", "0001", "ESCC-PCI-335 Serial PCI Adapter [Fastcom]" }, - { "18f7", "0002", "422/4-PCI-335 Serial PCI Adapter [Fastcom]" }, - { "18f7", "0003", "232/4-1M-PCI Serial PCI Adapter [Fastcom]" }, - { "18f7", "0004", "422/2-PCI-335 Serial PCI Adapter [Fastcom]" }, - { "18f7", "0005", "IGESCC-PCI-ISO/1 Serial PCI Adapter [Fastcom]" }, - { "18f7", "000a", "232/4-PCI-335 Serial PCI Adapter [Fastcom]" }, - { "18f7", "000b", "232/8-PCI-335 Serial PCI Adapter [Fastcom]" }, - { "18f7", "000f", "FSCC Serial PCI Adapter [Fastcom]" }, - { "18f7", "0010", "GSCC Serial PCI Adapter [Fastcom]" }, - { "18f7", "0011", "QSSB Serial PCI Adapter [Fastcom]" }, - { "18f7", "0014", "SuperFSCC Serial PCI Adapter [Fastcom]" }, - { "18f7", "0015", "SuperFSCC-104-LVDS Serial PC/104+ Adapter [Fastcom]" }, - { "18f7", "0016", "FSCC-232 RS-232 Serial PCI Adapter [Fastcom]" }, - { "18f7", "0017", "SuperFSCC-104 Serial PC/104+ Adapter [Fastcom]" }, - { "18f7", "0018", "SuperFSCC/4 Serial PCI Adapter [Fastcom]" }, - { "18f7", "0019", "SuperFSCC Serial PCI Adapter [Fastcom]" }, - { "18f7", "001a", "SuperFSCC-LVDS Serial PCI Adapter [Fastcom]" }, - { "18f7", "001b", "FSCC/4 Serial PCI Adapter [Fastcom]" }, - { "18f7", "001c", "SuperFSCC/4-LVDS Serial PCI Adapter [Fastcom]" }, - { "18f7", "001d", "FSCC Serial PCI Adapter [Fastcom]" }, - { "18f7", "001e", "SuperFSCC/4 Serial PCIe Adapter [Fastcom]" }, - { "18f7", "001f", "SuperFSCC/4 Serial cPCI Adapter [Fastcom]" }, - { "18f7", "0020", "422/4-PCIe Serial PCIe Adapter [Fastcom]" }, - { "18f7", "0021", "422/8-PCIe Serial PCIe Adapter [Fastcom]" }, - { "18f7", "0022", "SuperFSCC/4-LVDS Serial PCIe Adapter [Fastcom]" }, - { "18f7", "0023", "SuperFSCC/4 Serial cPCI Adapter [Fastcom]" }, - { "18f7", "0025", "SuperFSCC/4-LVDS Serial PCI Adapter [Fastcom]" }, - { "18f7", "0026", "SuperFSCC-LVDS Serial PCI Adapter [Fastcom]" }, - { "18f7", "0027", "FSCC/4 Serial PCIe Adapter [Fastcom]" }, - { "1904", "2031", "SC92031 PCI Fast Ethernet Adapter" }, - { "1904", "8139", "RTL8139D [Realtek] PCI 10/100BaseTX ethernet adaptor" }, - { "1912", "0002", "SH7780 PCI Controller (PCIC)" }, - { "1912", "0011", "SH7757 PCIe End-Point [PBI]" }, - { "1912", "0012", "SH7757 PCIe-PCI Bridge [PPB]" }, - { "1912", "0013", "SH7757 PCIe Switch [PS]" }, - { "1912", "0014", "uPD720201 USB 3.0 Host Controller" }, - { "1912", "0015", "uPD720202 USB 3.0 Host Controller" }, - { "1912", "001a", "SH7758 PCIe-PCI Bridge [PPB]" }, - { "1912", "001b", "SH7758 PCIe End-Point [PBI]" }, - { "1912", "001d", "SH7758 PCIe Switch [PS]" }, - { "1923", "0040", "A200/Remora FXO/FXS Analog AFT card" }, - { "1923", "0100", "A104d QUAD T1/E1 AFT card" }, - { "1923", "0300", "A101 single-port T1/E1" }, - { "1923", "0400", "A104u Quad T1/E1 AFT" }, - { "1924", "0703", "SFC4000 rev A net [Solarstorm]" }, - { "1924", "0710", "SFC4000 rev B [Solarstorm]" }, - { "1924", "0803", "SFC9020 10G Ethernet Controller" }, - { "1924", "0813", "SFL9021 10GBASE-T Ethernet Controller" }, - { "1924", "0903", "SFC9120 10G Ethernet Controller" }, - { "1924", "0923", "SFC9140 10/40G Ethernet Controller" }, - { "1924", "0a03", "SFC9220 10/40G Ethernet Controller" }, - { "1924", "0b03", "XtremeScale SFC9250 10/25/40/50/100G Ethernet Controller" }, - { "1924", "1803", "SFC9020 10G Ethernet Controller (Virtual Function)" }, - { "1924", "1813", "SFL9021 10GBASE-T Ethernet Controller (Virtual Function)" }, - { "1924", "1903", "SFC9120 10G Ethernet Controller (Virtual Function)" }, - { "1924", "1923", "SFC9140 10/40G Ethernet Controller (Virtual Function)" }, - { "1924", "1a03", "SFC9220 10/40G Ethernet Controller (Virtual Function)" }, - { "1924", "1b03", "XtremeScale SFC9250 10/25/40/50/100G Ethernet Controller (Virtual Function)" }, - { "1924", "6703", "SFC4000 rev A iSCSI/Onload [Solarstorm]" }, - { "1924", "c101", "EF1-21022T [EtherFabric]" }, - { "192a", "0008", "RAMPART" }, - { "1931", "000c", "Qualcomm MSM6275 UMTS chip" }, - { "193f", "0001", "AHA36x-PCIX" }, - { "193f", "0360", "AHA360-PCIe" }, - { "193f", "0363", "AHA363-PCIe" }, - { "193f", "0364", "AHA364-PCIe" }, - { "193f", "0367", "AHA367-PCIe" }, - { "193f", "0370", "AHA370-PCIe" }, - { "193f", "0604", "AHA604" }, - { "193f", "0605", "AHA605" }, - { "193f", "3641", "AHA3641" }, - { "193f", "3642", "AHA3642" }, - { "193f", "6101", "AHA6101" }, - { "193f", "6102", "AHA6102" }, - { "1942", "e511", "Advance X620 accelerator card" }, - { "1942", "e521", "Advance e620 accelerator card" }, - { "1947", "4743", "CG200 Dual SD/SDIO Host controller device" }, - { "194a", "1111", "FireSpy3850" }, - { "194a", "1112", "FireSpy450b" }, - { "194a", "1113", "FireSpy450bT" }, - { "194a", "1114", "FireSpy850" }, - { "194a", "1115", "FireSpy850bT" }, - { "194a", "1200", "FireTrac 3460bT" }, - { "194a", "1201", "FireTrac 3460bT (fallback firmware)" }, - { "194a", "1202", "FireTrac 3460bT" }, - { "194a", "1203", "FireTrac 3460bT (fallback firmware)" }, - { "1957", "0012", "MPC8548E" }, - { "1957", "0013", "MPC8548" }, - { "1957", "0014", "MPC8543E" }, - { "1957", "0015", "MPC8543" }, - { "1957", "0018", "MPC8547E" }, - { "1957", "0019", "MPC8545E" }, - { "1957", "001a", "MPC8545" }, - { "1957", "0020", "MPC8568E" }, - { "1957", "0021", "MPC8568" }, - { "1957", "0022", "MPC8567E" }, - { "1957", "0023", "MPC8567" }, - { "1957", "0030", "MPC8533E" }, - { "1957", "0031", "MPC8533" }, - { "1957", "0032", "MPC8544E" }, - { "1957", "0033", "MPC8544" }, - { "1957", "0040", "MPC8572E" }, - { "1957", "0041", "MPC8572" }, - { "1957", "0050", "MPC8536E" }, - { "1957", "0051", "MPC8536" }, - { "1957", "0052", "MPC8535E" }, - { "1957", "0053", "MPC8535" }, - { "1957", "0060", "MPC8569" }, - { "1957", "0061", "MPC8569E" }, - { "1957", "0070", "P2020E" }, - { "1957", "0071", "P2020" }, - { "1957", "0078", "P2010E" }, - { "1957", "0079", "P2010" }, - { "1957", "0080", "MPC8349E" }, - { "1957", "0081", "MPC8349" }, - { "1957", "0082", "MPC8347E TBGA" }, - { "1957", "0083", "MPC8347 TBGA" }, - { "1957", "0084", "MPC8347E PBGA" }, - { "1957", "0085", "MPC8347 PBGA" }, - { "1957", "0086", "MPC8343E" }, - { "1957", "0087", "MPC8343" }, - { "1957", "00b4", "MPC8315E" }, - { "1957", "00b6", "MPC8314E" }, - { "1957", "00c2", "MPC8379E" }, - { "1957", "00c3", "MPC8379" }, - { "1957", "00c4", "MPC8378E" }, - { "1957", "00c5", "MPC8378" }, - { "1957", "00c6", "MPC8377E" }, - { "1957", "00c7", "MPC8377" }, - { "1957", "0100", "P1020E" }, - { "1957", "0101", "P1020" }, - { "1957", "0102", "P1021E" }, - { "1957", "0103", "P1021" }, - { "1957", "0108", "P1011E" }, - { "1957", "0109", "P1011" }, - { "1957", "010a", "P1012E" }, - { "1957", "010b", "P1012" }, - { "1957", "0110", "P1022E" }, - { "1957", "0111", "P1022" }, - { "1957", "0118", "P1013E" }, - { "1957", "0119", "P1013" }, - { "1957", "0128", "P1010" }, - { "1957", "0400", "P4080E" }, - { "1957", "0401", "P4080" }, - { "1957", "0408", "P4040E" }, - { "1957", "0409", "P4040" }, - { "1957", "041f", "P3041" }, - { "1957", "0440", "T4240 with security" }, - { "1957", "0441", "T4240 without security" }, - { "1957", "0446", "T4160 with security" }, - { "1957", "0447", "T4160 without security" }, - { "1957", "0830", "T2080 with security" }, - { "1957", "0831", "T2080 without security" }, - { "1957", "0838", "T2081 with security" }, - { "1957", "0839", "T2081 without security" }, - { "1957", "580c", "MPC5121e" }, - { "1957", "7010", "MPC8641 PCI Host Bridge" }, - { "1957", "7011", "MPC8641D PCI Host Bridge" }, - { "1957", "7018", "MPC8610" }, - { "1957", "c006", "MPC8308" }, - { "1957", "fc02", "RedStone" }, - { "1957", "fc03", "CFI" }, - { "1959", "a000", "PA6T Core" }, - { "1959", "a001", "PWRficient Host Bridge" }, - { "1959", "a002", "PWRficient PCI-Express Port" }, - { "1959", "a003", "PWRficient SMBus Controller" }, - { "1959", "a004", "PWRficient 16550 UART" }, - { "1959", "a005", "PWRficient Gigabit Ethernet" }, - { "1959", "a006", "PWRficient 10-Gigabit Ethernet" }, - { "1959", "a007", "PWRficient DMA Controller" }, - { "1959", "a008", "PWRficient LPC/Localbus Interface" }, - { "1959", "a009", "PWRficient L2 Cache" }, - { "1959", "a00a", "PWRficient DDR2 Memory Controller" }, - { "1959", "a00b", "PWRficient SERDES" }, - { "1959", "a00c", "PWRficient System/Debug Controller" }, - { "1959", "a00d", "PWRficient PCI-Express Internal Endpoint" }, - { "1966", "1975", "DVG64 family" }, - { "1966", "1977", "DVG128 family" }, - { "1966", "1979", "3DVG/UHD3" }, - { "1966", "1980", "HDV2/UHD2" }, - { "1969", "1026", "AR8121/AR8113/AR8114 Gigabit or Fast Ethernet" }, - { "1969", "1048", "Attansic L1 Gigabit Ethernet" }, - { "1969", "1062", "AR8132 Fast Ethernet" }, - { "1969", "1063", "AR8131 Gigabit Ethernet" }, - { "1969", "1066", "Attansic L2c Gigabit Ethernet" }, - { "1969", "1067", "Attansic L1c Gigabit Ethernet" }, - { "1969", "1073", "AR8151 v1.0 Gigabit Ethernet" }, - { "1969", "1083", "AR8151 v2.0 Gigabit Ethernet" }, - { "1969", "1090", "AR8162 Fast Ethernet" }, - { "1969", "1091", "AR8161 Gigabit Ethernet" }, - { "1969", "10a0", "QCA8172 Fast Ethernet" }, - { "1969", "10a1", "QCA8171 Gigabit Ethernet" }, - { "1969", "2048", "Attansic L2 Fast Ethernet" }, - { "1969", "2060", "AR8152 v1.1 Fast Ethernet" }, - { "1969", "2062", "AR8152 v2.0 Fast Ethernet" }, - { "1969", "e091", "Killer E220x Gigabit Ethernet Controller" }, - { "1969", "e0a1", "Killer E2400 Gigabit Ethernet Controller" }, - { "1969", "e0b1", "Killer E2500 Gigabit Ethernet Controller" }, - { "196a", "0101", "NodalCore C-1000 Content Classification Accelerator" }, - { "196a", "0102", "NodalCore C-2000 Content Classification Accelerator" }, - { "196a", "0105", "NodalCore C-3000 Content Classification Accelerator" }, - { "1971", "1011", "Physics Processing Unit [PhysX]" }, - { "1974", "0009", "FlexCard PMC-II" }, - { "1974", "0011", "FlexCard PMC-II Ethernet" }, - { "1974", "0018", "FlexCard PXIe3" }, - { "1974", "0019", "FlexCard PCIe3" }, - { "1974", "001a", "FlexCard PXIe Ethernet" }, - { "1974", "001b", "FlexCard PCIe Ethernet" }, - { "197b", "0250", "JMC250 PCI Express Gigabit Ethernet Controller" }, - { "197b", "0260", "JMC260 PCI Express Fast Ethernet Controller" }, - { "197b", "0368", "JMB368 IDE controller" }, - { "197b", "0585", "JMB58x AHCI SATA controller" }, - { "197b", "2360", "JMB360 AHCI Controller" }, - { "197b", "2361", "JMB361 AHCI/IDE" }, - { "197b", "2362", "JMB362 SATA Controller" }, - { "197b", "2363", "JMB363 SATA/IDE Controller" }, - { "197b", "2364", "JMB364 AHCI Controller" }, - { "197b", "2365", "JMB365 AHCI/IDE" }, - { "197b", "2366", "JMB366 AHCI/IDE" }, - { "197b", "2368", "JMB368 IDE controller" }, - { "197b", "2369", "JMB369 Serial ATA Controller" }, - { "197b", "2380", "IEEE 1394 Host Controller" }, - { "197b", "2381", "Standard SD Host Controller" }, - { "197b", "2382", "SD/MMC Host Controller" }, - { "197b", "2383", "MS Host Controller" }, - { "197b", "2384", "xD Host Controller" }, - { "197b", "2386", "Standard SD Host Controller" }, - { "197b", "2387", "SD/MMC Host Controller" }, - { "197b", "2388", "MS Host Controller" }, - { "197b", "2389", "xD Host Controller" }, - { "197b", "2391", "Standard SD Host Controller" }, - { "197b", "2392", "SD/MMC Host Controller" }, - { "197b", "2393", "MS Host Controller" }, - { "197b", "2394", "xD Host Controller" }, - { "1982", "1600", "OX16C954 HOST-A" }, - { "1982", "16ff", "OX16C954 HOST-B" }, - { "1987", "5007", "E7 NVMe Controller" }, - { "1987", "5012", "E12 NVMe Controller" }, - { "1987", "5013", "PS5013 E13 NVMe Controller" }, - { "1987", "5016", "E16 PCIe4 NVMe Controller" }, - { "1987", "5018", "E18 PCIe4 NVMe Controller" }, - { "1989", "0001", "RapidFile Bridge" }, - { "1989", "8001", "RapidFile" }, - { "1999", "a900", "AM-7209 Video Processor" }, - { "199d", "8209", "Virtual NIC Device" }, - { "199d", "890a", "Virtual HBA Device" }, - { "199f", "8501", "AU85X1 PCI REV1.1" }, - { "199f", "8521", "AU8521 TV card" }, - { "19a2", "0120", "x1 PCIe Gen2 Bridge[Pilot4]" }, - { "19a2", "0200", "BladeEngine 10Gb PCI-E iSCSI adapter" }, - { "19a2", "0201", "BladeEngine 10Gb PCIe Network Adapter" }, - { "19a2", "0211", "BladeEngine2 10Gb Gen2 PCIe Network Adapter" }, - { "19a2", "0212", "BladeEngine2 10Gb Gen2 PCIe iSCSI Adapter" }, - { "19a2", "0221", "BladeEngine3 10Gb Gen2 PCIe Network Adapter" }, - { "19a2", "0222", "BladeEngine3 10Gb Gen2 PCIe iSCSI Adapter" }, - { "19a2", "0700", "OneConnect OCe10100/OCe10102 Series 10 GbE" }, - { "19a2", "0702", "OneConnect 10Gb iSCSI Initiator" }, - { "19a2", "0704", "OneConnect OCe10100/OCe10102 Series 10 GbE CNA" }, - { "19a2", "0710", "OneConnect 10Gb NIC (be3)" }, - { "19a2", "0712", "OneConnect 10Gb iSCSI Initiator (be3)" }, - { "19a2", "0714", "OneConnect 10Gb FCoE Initiator (be3)" }, - { "19a2", "0800", "ServerView iRMC HTI" }, - { "19ac", "0001", "ACA2400 Crypto Accelerator" }, - { "19ae", "0520", "4135 HFT Interface Controller" }, - { "19ae", "0521", "Decimator" }, - { "19ba", "2330", "ZyWALL Turbo Card" }, - { "19e3", "5801", "DDRdrive X1" }, - { "19e3", "5808", "DDRdrive X8" }, - { "19e3", "dd52", "DDRdrive X1-30" }, - { "19e5", "0123", "ES3000 V3 NVMe PCIe SSD" }, - { "19e5", "0200", "Hi1822 Family (2*100GE)" }, - { "19e5", "0202", "Hi1822 Family (2*32G FC)" }, - { "19e5", "0203", "Hi1822 Family (2*16G FC)" }, - { "19e5", "0205", "Hi1822 Family (2*100GE)" }, - { "19e5", "0206", "Hi1822 Family (2*25GE)" }, - { "19e5", "0210", "Hi1822 Family (4*25GE)" }, - { "19e5", "0211", "Hi1822 Family (4*25GE)" }, - { "19e5", "0212", "Hi1822 Family (2*8G FC)" }, - { "19e5", "1710", "iBMA Virtual Network Adapter" }, - { "19e5", "1711", "Hi171x Series [iBMC Intelligent Management system chip w/VGA support]" }, - { "19e5", "1822", "Hi1822 Family (4*25GE)" }, - { "19e5", "3714", "ES3000 V5 NVMe PCIe SSD" }, - { "19e5", "371e", "Hi1822 Family Virtual Bridge" }, - { "19e5", "3754", "ES3000 V6 NVMe PCIe SSD" }, - { "19e5", "375e", "Hi1822 Family Virtual Function" }, - { "19e5", "379e", "Hi1822 Family Virtual Function" }, - { "19e5", "a120", "HiSilicon PCIe Root Port with Gen4" }, - { "19e5", "a121", "HiSilicon PCI-PCI Bridge" }, - { "19e5", "a122", "HiSilicon Embedded DMA Engine" }, - { "19e5", "a124", "HiSilicon Internal SDI Function Engine" }, - { "19e5", "a125", "HiSilicon SDI Network Controller" }, - { "19e5", "a126", "HiSilicon SDI NVMe Storage Controller" }, - { "19e5", "a127", "HiSilicon SDI Accelerator" }, - { "19e5", "a12a", "HiSilicon Add-on PCI-PCI Bridge" }, - { "19e5", "a220", "HNS GE Network Controller" }, - { "19e5", "a221", "HNS GE/10GE/25GE Network Controller" }, - { "19e5", "a222", "HNS GE/10GE/25GE RDMA Network Controller" }, - { "19e5", "a224", "HNS GE/10GE/25GE/50GE RDMA Network Controller" }, - { "19e5", "a226", "HNS GE/10GE/25GE/50GE/100GE RDMA Network Controller" }, - { "19e5", "a22a", "HiSilicon Network For SDI" }, - { "19e5", "a22e", "HNS Network Controller (Virtual Function)" }, - { "19e5", "a22f", "HNS RDMA Network Controller (Virtual Function)" }, - { "19e5", "a230", "HiSilicon SAS 3.0 HBA" }, - { "19e5", "a235", "HiSilicon AHCI HBA" }, - { "19e5", "a238", "HiSilicon USB 3.0 Host Controller" }, - { "19e5", "a239", "HiSilicon USB 2.0 2-port Host Controller" }, - { "19e5", "a23a", "HiSilicon USB 2.0 Host Controller" }, - { "19e5", "a23b", "HiSilicon USB 1.1 Host Controller" }, - { "19e5", "a250", "HiSilicon ZIP Engine" }, - { "19e5", "a251", "HiSilicon ZIP Engine(Virtual Function)" }, - { "19e5", "a255", "HiSilicon SEC Engine" }, - { "19e5", "a256", "HiSilicon SEC Engine(Virtual Function)" }, - { "19e5", "a258", "HiSilicon HPRE Engine" }, - { "19e5", "a259", "HiSilicon HPRE Engine(Virtual Function)" }, - { "19e5", "a25a", "HiSilicon RDE Engine" }, - { "19e5", "a25b", "HiSilicon RDE Engine(Virtual Function)" }, - { "19e7", "1001", "STIX DSP Card" }, - { "19e7", "1002", "STIX - 1 Port T1/E1 Card" }, - { "19e7", "1003", "STIX - 2 Port T1/E1 Card" }, - { "19e7", "1004", "STIX - 4 Port T1/E1 Card" }, - { "19e7", "1005", "STIX - 4 Port FXS Card" }, - { "1a03", "1150", "AST1150 PCI-to-PCI Bridge" }, - { "1a03", "2000", "ASPEED Graphics Family" }, - { "1a07", "0006", "CAN interface PC104+ HS/HS" }, - { "1a07", "0007", "CAN interface PCIcanx II HS or HS/HS" }, - { "1a07", "0008", "CAN interface PCIEcan HS or HS/HS" }, - { "1a07", "0009", "CAN interface PCI104 HS/HS" }, - { "1a08", "0000", "SC15064" }, - { "1a0e", "083f", "DTA-2111 VHF/UHF Modulator" }, - { "1a17", "8002", "PB-10GE-2P 10GbE Security Card" }, - { "1a1d", "1a17", "Meta Networks MTP-1G IDPS NIC" }, - { "1a29", "4338", "CP8 Content Processor ASIC" }, - { "1a29", "43a0", "CP9 Content Processor ASIC" }, - { "1a29", "4e36", "NP6 Network Processor" }, - { "1a29", "4e37", "NP7 Network Processor" }, - { "1a2b", "0000", "GESP v1.2" }, - { "1a2b", "0001", "GESP v1.3" }, - { "1a2b", "0002", "ECOMP v1.3" }, - { "1a2b", "0005", "ETP v1.4" }, - { "1a2b", "000a", "ETP-104 v1.1" }, - { "1a2b", "000e", "DSLP-104 v1.1" }, - { "1a30", "0680", "MtW8171 [Hyperion II]" }, - { "1a30", "0700", "Wave300 PSB8224 [Hyperion III]" }, - { "1a30", "0710", "Wave300 PSB8231 [Hyperion III]" }, - { "1a3b", "1112", "AR9285 Wireless Network Adapter (PCI-Express)" }, - { "1a41", "0001", "TILE64 processor" }, - { "1a41", "0002", "TILEPro processor" }, - { "1a41", "0200", "TILE-Gx processor" }, - { "1a41", "0201", "TILE-Gx Processor Virtual Function" }, - { "1a41", "2000", "TILE-Gx PCI Express Root Port" }, - { "1a4a", "1000", "MCOR Power Supply Controller" }, - { "1a4a", "1010", "AMC EVR - Stockholm Timing Board" }, - { "1a4a", "1020", "PGPCard - Gen3 Cameralink Interface" }, - { "1a4a", "1030", "PGPCard - Gen3 GIGe Interface" }, - { "1a4a", "2000", "PGPCard - 4 Lane" }, - { "1a4a", "2001", "PGPCard - 8 Lane Plus EVR" }, - { "1a4a", "2010", "PCI-Express EVR" }, - { "1a4a", "2011", "PCI-Express EVR - TPR Version" }, - { "1a4a", "2020", "PGP-GEN3 PCIe - 8 Lane Plus EVR" }, - { "1a4a", "2030", "AXI Stream DAQ PCIe card" }, - { "1a4a", "2040", "EXO PCIe TEM" }, - { "1a4a", "3000", "COB DTM V1" }, - { "1a4a", "3001", "COB DTM V2" }, - { "1a55", "0010", "SDStationOEM" }, - { "1a55", "0011", "SDStationOEM II" }, - { "1a55", "0020", "Centaurus" }, - { "1a55", "0021", "Centaurus II" }, - { "1a55", "0022", "Centaurus II LT" }, - { "1a55", "0030", "CLIPSTER-VPU 1.x (Hugo)" }, - { "1a55", "0040", "Hydra Cinema (JPEG)" }, - { "1a55", "0050", "CLIPSTER-VPU 2.x (DigiLab)" }, - { "1a55", "0060", "CLIPSTER-DCI 2.x (HydraX)" }, - { "1a55", "0061", "Atomix" }, - { "1a55", "0062", "Atomix LT" }, - { "1a55", "0063", "Atomix HDMI" }, - { "1a55", "0064", "Atomix STAN" }, - { "1a55", "0065", "Atomix HDMI STAN" }, - { "1a55", "0070", "RED Rocket" }, - { "1a55", "0090", "CinePlay" }, - { "1a73", "0001", "Mozart [Memory Appliance 1010]" }, - { "1a78", "0031", "FlashMAX Drive" }, - { "1a78", "0040", "FlashMAX II" }, - { "1a78", "0041", "FlashMAX II" }, - { "1a78", "0042", "FlashMAX II" }, - { "1a78", "0050", "FlashMAX III" }, - { "1a84", "0001", "Vulcan SP HT6210 10-Gigabit Ethernet (rev 02)" }, - { "1a88", "4d45", "Multifunction IP core" }, - { "1a8c", "1100", "E8001-66443 PCI Express CIC" }, - { "1a8e", "2090", "Model 2090 PCI Express" }, - { "1aa8", "0009", "RAIDCore Controller" }, - { "1aa8", "000a", "RAIDCore Controller" }, - { "1aa9", "000d", "SEL-3390S8 Serial Adapter" }, - { "1aa9", "000e", "SEL-3390E4 Ethernet Adapter" }, - { "1aa9", "0014", "SEL-3390T Time and Ethernet Adapter" }, - { "1aa9", "0018", "SEL-3390E4 Ethernet Adapter" }, - { "1ab6", "6201", "RAID Card" }, - { "1ab8", "4000", "Virtual Machine Communication Interface" }, - { "1ab8", "4005", "Accelerated Virtual Video Adapter" }, - { "1ab8", "4006", "Memory Ballooning Controller" }, - { "1ac1", "089a", "Coral Edge TPU" }, - { "1ad7", "8000", "TSync-PCIe Time Code Processor" }, - { "1ad7", "9100", "TPRO-PCI-66U Timecode Reader/Generator" }, - { "1ade", "1501", "Swipetech barcode scanner" }, - { "1ade", "3038", "PCIe Video Bridge" }, - { "1ae0", "0042", "Compute Engine Virtual Ethernet [gVNIC]" }, - { "1ae0", "abcd", "Airbrush Combined Paintbox IPU/Oscar Edge TPU [Pixel Neural Core]" }, - { "1ae7", "0520", "HFC-S PCI A [X-TENSIONS XC-520]" }, - { "1ae8", "0751", "mE5 marathon VCL" }, - { "1ae8", "0752", "mE5 marathon AF2" }, - { "1ae8", "0753", "mE5 marathon ACX QP" }, - { "1ae8", "0754", "mE5 marathon ACL" }, - { "1ae8", "0755", "mE5 marathon ACX SP" }, - { "1ae8", "0756", "mE5 marathon ACX DP" }, - { "1ae8", "0757", "mE5 marathon VCX QP" }, - { "1ae8", "0758", "mE5 marathon VF2" }, - { "1ae8", "0759", "mE5 marathon VCLx" }, - { "1ae8", "0a40", "microEnable IV AD1-CL" }, - { "1ae8", "0a41", "microEnable IV VD1-CL" }, - { "1ae8", "0a42", "microEnable IV AD4-CL" }, - { "1ae8", "0a44", "microEnable IV VD4-CL" }, - { "1ae8", "0a45", "microEnable IV AS1-CL" }, - { "1ae8", "0a53", "microEnable 5 AQ8-CXP6B" }, - { "1ae8", "0a54", "microEnable 5 VQ8-CXP6B" }, - { "1ae8", "0a56", "microEnable 5 VQ8-CXP6D" }, - { "1ae8", "0a57", "microEnable 5 AQ8-CXP6D" }, - { "1ae8", "0a58", "microEnable 5 VD8-CL" }, - { "1ae8", "0a5a", "microEnable 5 AD8-CL" }, - { "1ae8", "0a64", "imaWorx CXP-12 Quad" }, - { "1ae8", "0b52", "mE5 Abacus 4G Base" }, - { "1ae8", "0b53", "mE5 Abacus 4G Base II" }, - { "1ae8", "0b61", "mE6 Abacus 4TG" }, - { "1ae8", "0b63", "CXP-12 Interface Card 1C" }, - { "1ae8", "0b64", "CXP-12 Interface Card 4C" }, - { "1ae8", "0b65", "CXP-12 Interface Card 2C" }, - { "1ae8", "0b66", "CXP-12 LightBridge 2C" }, - { "1ae8", "0e42", "microEnable IV AQ4-GE" }, - { "1ae8", "0e44", "microEnable IV VQ4-GE" }, - { "1ae9", "0101", "Wil6200 PCI Express Upstream Port" }, - { "1ae9", "0200", "Wil6200 PCI Express Port" }, - { "1ae9", "0201", "Wil6200 Wireless PCI Express Port" }, - { "1ae9", "0301", "Wil6200 802.11ad Wireless Network Adapter" }, - { "1ae9", "0302", "Wil6200 802.11ad Wireless Network Adapter" }, - { "1ae9", "0310", "Wil6200 802.11ad Wireless Network Adapter" }, - { "1aea", "6601", "AU6601 PCI-E Flash card reader controller" }, - { "1aea", "6621", "AU6621 PCI-E Flash card reader controller" }, - { "1aea", "6625", "AU6625 PCI-E Flash card reader controller" }, - { "1aed", "1003", "ioDimm3 (v1.2)" }, - { "1aed", "1005", "ioDimm3" }, - { "1aed", "1006", "ioXtreme" }, - { "1aed", "1007", "ioXtreme Pro" }, - { "1aed", "1008", "ioXtreme-2" }, - { "1aed", "2001", "ioDrive2" }, - { "1aed", "3001", "ioMemory FHHL" }, - { "1aed", "3002", "ioMemory HHHL" }, - { "1aed", "3003", "ioMemory Mezzanine" }, - { "1af4", "1000", "Virtio network device" }, - { "1af4", "1001", "Virtio block device" }, - { "1af4", "1002", "Virtio memory balloon" }, - { "1af4", "1003", "Virtio console" }, - { "1af4", "1004", "Virtio SCSI" }, - { "1af4", "1005", "Virtio RNG" }, - { "1af4", "1009", "Virtio filesystem" }, - { "1af4", "1041", "Virtio network device" }, - { "1af4", "1042", "Virtio block device" }, - { "1af4", "1043", "Virtio console" }, - { "1af4", "1044", "Virtio RNG" }, - { "1af4", "1045", "Virtio memory balloon" }, - { "1af4", "1048", "Virtio SCSI" }, - { "1af4", "1049", "Virtio filesystem" }, - { "1af4", "1050", "Virtio GPU" }, - { "1af4", "1052", "Virtio input" }, - { "1af4", "1053", "Virtio socket" }, - { "1af4", "105a", "Virtio file system" }, - { "1af4", "1110", "Inter-VM shared memory" }, - { "1b03", "6100", "DXT/DXTPro Multiformat Broadcast HD/SD Encoder/Decoder/Transcoder" }, - { "1b03", "7000", "D7 Multiformat Broadcast HD/SD Encoder/Decoder/Transcoder" }, - { "1b1a", "0e70", "GRAPE" }, - { "1b21", "0611", "ASM1061 SATA IDE Controller" }, - { "1b21", "0612", "ASM1062 Serial ATA Controller" }, - { "1b21", "1040", "ASM1040 XHCI Controller" }, - { "1b21", "1042", "ASM1042 SuperSpeed USB Host Controller" }, - { "1b21", "1080", "ASM1083/1085 PCIe to PCI Bridge" }, - { "1b21", "1142", "ASM1042A USB 3.0 Host Controller" }, - { "1b21", "1166", "ASM1166 Serial ATA Controller" }, - { "1b21", "1182", "ASM1182e 2-Port PCIe x1 Gen2 Packet Switch" }, - { "1b21", "1184", "ASM1184e 4-Port PCIe x1 Gen2 Packet Switch" }, - { "1b21", "1187", "ASM1187e 7-Port PCIe x1 Gen2 Packet Switch" }, - { "1b21", "1242", "ASM1142 USB 3.1 Host Controller" }, - { "1b21", "1343", "ASM1143 USB 3.1 Host Controller" }, - { "1b21", "1812", "ASM1812 6-Port PCIe x4 Gen2 Packet Switch" }, - { "1b21", "2142", "ASM2142 USB 3.1 Host Controller" }, - { "1b21", "2824", "ASM2824 PCIe Gen3 Packet Switch" }, - { "1b21", "3242", "ASM3242 USB 3.2 Host Controller" }, - { "1b26", "c132", "COMBO-LXT155" }, - { "1b26", "c1c0", "NFB-100G1-e0" }, - { "1b26", "c1c1", "NFB-100G1-e1" }, - { "1b26", "c250", "NFB-200G2-master" }, - { "1b26", "c251", "NFB-200G2-slave" }, - { "1b26", "c2c0", "NFB-100G2-e0" }, - { "1b26", "c2c1", "NFB-100G2-e1" }, - { "1b26", "cb20", "COMBO-20G" }, - { "1b26", "cb40", "COMBO-40G" }, - { "1b26", "cb80", "NFB-40G2" }, - { "1b36", "0001", "QEMU PCI-PCI bridge" }, - { "1b36", "0002", "QEMU PCI 16550A Adapter" }, - { "1b36", "0003", "QEMU PCI Dual-port 16550A Adapter" }, - { "1b36", "0004", "QEMU PCI Quad-port 16550A Adapter" }, - { "1b36", "0005", "QEMU PCI Test Device" }, - { "1b36", "0006", "PCI Rocker Ethernet switch device" }, - { "1b36", "0007", "PCI SD Card Host Controller Interface" }, - { "1b36", "0008", "QEMU PCIe Host bridge" }, - { "1b36", "0009", "QEMU PCI Expander bridge" }, - { "1b36", "000a", "PCI-PCI bridge (multiseat)" }, - { "1b36", "000b", "QEMU PCIe Expander bridge" }, - { "1b36", "000c", "QEMU PCIe Root port" }, - { "1b36", "000d", "QEMU XHCI Host Controller" }, - { "1b36", "0010", "QEMU NVM Express Controller" }, - { "1b36", "0100", "QXL paravirtual graphic card" }, - { "1b37", "0001", "ADQ214" }, - { "1b37", "0003", "ADQ114" }, - { "1b37", "0005", "ADQ112" }, - { "1b37", "000e", "ADQ108" }, - { "1b37", "000f", "ADQDSP" }, - { "1b37", "0014", "ADQ412" }, - { "1b37", "0015", "ADQ212" }, - { "1b37", "001b", "SDR14" }, - { "1b37", "001c", "ADQ1600" }, - { "1b37", "001e", "ADQ208" }, - { "1b37", "001f", "DSU" }, - { "1b37", "0020", "ADQ14" }, - { "1b37", "0023", "ADQ7" }, - { "1b37", "0026", "ADQ8" }, - { "1b37", "2014", "TX320" }, - { "1b37", "2019", "S6000" }, - { "1b39", "0001", "S1120 PCIe Accelerator SSD" }, - { "1b3a", "7589", "HRED J2000 - JPEG 2000 Video Codec Device" }, - { "1b3e", "1fa8", "BYNET BIC2SE/X" }, - { "1b47", "0601", "NumaChip N601" }, - { "1b47", "0602", "NumaChip N602" }, - { "1b4b", "0100", "88F3700 [Armada 3700 Family] ARM SoC" }, - { "1b4b", "0640", "88SE9128 SATA III 6Gb/s RAID Controller" }, - { "1b4b", "2241", "88NR2241 Non-Volatile memory controller" }, - { "1b4b", "9120", "88SE9120 SATA 6Gb/s Controller" }, - { "1b4b", "9123", "88SE9123 PCIe SATA 6.0 Gb/s controller" }, - { "1b4b", "9125", "88SE9125 PCIe SATA 6.0 Gb/s controller" }, - { "1b4b", "9128", "88SE9128 PCIe SATA 6 Gb/s RAID controller" }, - { "1b4b", "9130", "88SE9128 PCIe SATA 6 Gb/s RAID controller with HyperDuo" }, - { "1b4b", "9170", "88SE9170 PCIe 2.0 x1 2-port SATA 6 Gb/s Controller" }, - { "1b4b", "9172", "88SE9172 SATA 6Gb/s Controller" }, - { "1b4b", "9178", "88SE9170 PCIe SATA 6Gb/s Controller" }, - { "1b4b", "917a", "88SE9172 SATA III 6Gb/s RAID Controller" }, - { "1b4b", "9182", "88SE9182 PCIe 2.0 x2 2-port SATA 6 Gb/s Controller" }, - { "1b4b", "9183", "88SS9183 PCIe SSD Controller" }, - { "1b4b", "9192", "88SE9172 SATA III 6Gb/s RAID Controller" }, - { "1b4b", "91a0", "88SE912x SATA 6Gb/s Controller [IDE mode]" }, - { "1b4b", "91a4", "88SE912x IDE Controller" }, - { "1b4b", "9215", "88SE9215 PCIe 2.0 x1 4-port SATA 6 Gb/s Controller" }, - { "1b4b", "9220", "88SE9220 PCIe 2.0 x2 2-port SATA 6 Gb/s RAID Controller" }, - { "1b4b", "9230", "88SE9230 PCIe 2.0 x2 4-port SATA 6 Gb/s RAID Controller" }, - { "1b4b", "9235", "88SE9235 PCIe 2.0 x2 4-port SATA 6 Gb/s Controller" }, - { "1b4b", "9445", "88SE9445 PCIe 2.0 x4 4-Port SAS/SATA 6 Gbps RAID Controller" }, - { "1b4b", "9480", "88SE9480 SAS/SATA 6Gb/s RAID controller" }, - { "1b4b", "9485", "88SE9485 SAS/SATA 6Gb/s controller" }, - { "1b55", "18f6", "Dual DVB Universal CI card" }, - { "1b55", "18f7", "Dual DVB Universal CI card rev 1.4" }, - { "1b55", "2a2c", "Dual DVB-S2-CI card" }, - { "1b55", "e2e4", "Dual DVB-T/C-CI RF card" }, - { "1b55", "e5f4", "MPEG2 and H264 Encoder-Transcoder" }, - { "1b55", "f1c4", "Dual ASI-RX/TX-CI card" }, - { "1b66", "0007", "DELTA-3G-elp-d" }, - { "1b6f", "7023", "EJ168 USB 3.0 Host Controller" }, - { "1b6f", "7052", "EJ188/EJ198 USB 3.0 Host Controller" }, - { "1b73", "1000", "FL1000G USB 3.0 Host Controller" }, - { "1b73", "1009", "FL1009 USB 3.0 Host Controller" }, - { "1b73", "1100", "FL1100 USB 3.0 Host Controller" }, - { "1b74", "0115", "D115P/D115E Single-port E1/T1 card" }, - { "1b74", "d130", "D130P/D130E Single-port E1/T1 card (3rd GEN)" }, - { "1b74", "d210", "D210P/D210E Dual-port E1/T1 card(2nd generation)" }, - { "1b74", "d230", "D230 Dual-port E1/T1 card (2nd generation)" }, - { "1b74", "d410", "D410/430 Quad-port E1/T1 card" }, - { "1b74", "d430", "D410/430 Quad-port E1/T1 card" }, - { "1b85", "1041", "RevoDrive 3 X2 PCI-Express SSD 240 GB (Marvell Controller)" }, - { "1b85", "6018", "RD400/400A SSD" }, - { "1b85", "8788", "RevoDrive Hybrid" }, - { "1b94", "e400", "PX14400 Dual Xilinx Virtex5 based Digitizer" }, - { "1b96", "2200", "Ultrastar DC SN630 NVMe SSD" }, - { "1b96", "2201", "Ultrastar DC SN630 NVMe SSD" }, - { "1b96", "2300", "Ultrastar DC SN840 NVMe SSD" }, - { "1b96", "2400", "Ultrastar DC SN640 NVMe SSD" }, - { "1b96", "2401", "Ultrastar DC SN640 NVMe SSD" }, - { "1b96", "2402", "Ultrastar DC SN640 NVMe SSD" }, - { "1b96", "2404", "Ultrastar DC SN640 NVMe SSD" }, - { "1b96", "2500", "Ultrastar DC SN840 NVMe SSD" }, - { "1b96", "2600", "Ultrastar DC ZN540 ZNS NVMe SSD" }, - { "1b96", "3714", "PC SN730 NVMe SSD" }, - { "1b96", "3734", "PC SN730 NVMe SSD" }, - { "1bad", "c001", "XpressGXA10-LP1150" }, - { "1bad", "c002", "XpressGXA10-LP1151" }, - { "1bb0", "0002", "OmniCube Accelerator OA-3000" }, - { "1bb0", "0010", "OmniCube Accelerator OA-3000-2" }, - { "1bb1", "005d", "Nytro PCIe Flash Storage" }, - { "1bb1", "0100", "Nytro Flash Storage" }, - { "1bb1", "5012", "FireCuda 510 SSD" }, - { "1bb1", "5016", "FireCuda 520 SSD" }, - { "1bb1", "5018", "FireCuda 530 SSD" }, - { "1bb3", "4304", "BC-04120A MPEG4 4 port video encoder / decoder" }, - { "1bb3", "4309", "BC-08240A MPEG4 4 port video encoder / decoder" }, - { "1bb3", "4310", "BC-16480A MPEG4 16 port video encoder / decoder" }, - { "1bb3", "4e04", "BC-04120A 4 port MPEG4 video encoder / decoder" }, - { "1bb3", "4e09", "BC-08240A 8 port MPEG4 video encoder / decoder" }, - { "1bb3", "4e10", "BC-16480A 16 port MPEG4 video encoder / decoder" }, - { "1bb3", "5304", "BC-H04120A 4 port H.264 video and audio encoder / decoder" }, - { "1bb3", "5308", "BC-H08240A 8 port H.264 video and audio encoder / decoder" }, - { "1bb3", "5310", "BC-H16480A 16 port H.264 video and audio encoder / decoder" }, - { "1bbf", "0003", "MAX3" }, - { "1bbf", "0004", "MAX4" }, - { "1bc0", "1001", "PCIe 3TG6-P Controller" }, - { "1bc0", "1002", "PCIe 3TE6 Controller" }, - { "1bc0", "1160", "PCIe 3TE2 Controller" }, - { "1bc0", "1321", "PCIe 4TG-P Controller" }, - { "1bc0", "1322", "PCIe 4TE Controller" }, - { "1bc0", "2262", "PCIe 3TG3-P Controller" }, - { "1bc0", "5208", "PCIe 3TE7 Controller" }, - { "1bc0", "5216", "PCIe 3TE8 Controller" }, - { "1bc0", "5236", "PCIe 4TG2-P Controller" }, - { "1bcf", "001c", "Vector Engine 1.0" }, - { "1bd0", "1001", "Mx5 PMC/XMC Databus Interface Card" }, - { "1bd0", "1002", "PM1553-5 (PC/104+ MIL-STD-1553 Interface Card)" }, - { "1bd0", "1004", "AB3000 Series Rugged Computer" }, - { "1bd0", "1005", "PE1000 (Multi-Protocol PCIe/104 Interface Card)" }, - { "1bd0", "1006", "webCS Wireless Aircraft Communications Server" }, - { "1bd0", "1007", "AB3000 Series Rugged Computer (Series N)" }, - { "1bd0", "1008", "ME1000 mPCIe Avionics Interface Card" }, - { "1bd0", "100a", "NG1 Series Avionics Converter" }, - { "1bd0", "1101", "OmniBus II PCIe Multi-Protocol Interface Card" }, - { "1bd0", "1102", "OmniBusBox II Multi-Protocol Interface Core" }, - { "1bd0", "1103", "OmniBus II cPCIe/PXIe Multi-Protocol Interface Card" }, - { "1bd0", "1200", "NG3 Series Mil-Std-1553 Interface" }, - { "1bd0", "1201", "NG3 Series ARINC 429 Interface" }, - { "1bd0", "1202", "NG3 Series Avionics Discrete & Serial Interface" }, - { "1bd0", "1203", "NG3 Series Avionics Discrete Interface" }, - { "1bd4", "0911", "Arria10_PCIe_F10A1150" }, - { "1bee", "0003", "CAN-IB200/PCIe" }, - { "1bef", "0011", "MIPS SoC PCI Express Port" }, - { "1bf4", "0001", "SentinelEX" }, - { "1bf4", "7011", "RX0xxx" }, - { "1c09", "4254", "10G-PCIE3-8D-2S" }, - { "1c09", "4255", "10G-PCIE3-8D-Q" }, - { "1c09", "4256", "10G-PCIE3-8D-2S" }, - { "1c09", "4258", "10G-PCIE3-8E-2S Network Adapter" }, - { "1c09", "4260", "10G-PCIE3-8E-4S Network Adapter" }, - { "1c09", "4261", "10G-PCIE3-8E-4S Network Adapter" }, - { "1c09", "4262", "10G-PCIE3-8E-4S Network Adapter" }, - { "1c09", "4263", "10G-PCIE3-8E-4S Network Adapter" }, - { "1c09", "4264", "10G-PCIE3-8E-2S Network Adapter" }, - { "1c09", "4265", "10G-PCIE3-8E-2S Network Adapter" }, - { "1c09", "5000", "25G-PCIE3-8A-2S Security Intelligent Adapter" }, - { "1c09", "5001", "25G-PCIE3-8B-2S Security Intelligent Adapter" }, - { "1c1c", "0001", "82C101" }, - { "1c1f", "0015", "FD842" }, - { "1c1f", "0019", "FD722" }, - { "1c1f", "001a", "FD788" }, - { "1c1f", "001b", "FD720" }, - { "1c1f", "001c", "FD922" }, - { "1c1f", "001d", "Vega" }, - { "1c1f", "001f", "FD940" }, - { "1c28", "0122", "M6e PCI Express SSD [Marvell 88SS9183]" }, - { "1c2c", "000a", "Capture" }, - { "1c2c", "000f", "SmartNIC" }, - { "1c2c", "00a0", "FBC4G Capture 4x1Gb [Herculaneum]" }, - { "1c2c", "00a1", "FBC4XG Capture 4x10Gb [Ancona]" }, - { "1c2c", "00a2", "FBC8XG Capture 8x10Gb [Livorno]" }, - { "1c2c", "00a3", "FBC2XG Capture 2x10Gb [Genoa]" }, - { "1c2c", "00a4", "FBC4XGG3 Capture 4x10Gb [Livigno]" }, - { "1c2c", "00a5", "FBC2XLG Capture 2x40Gb [Livorno]" }, - { "1c2c", "00a6", "FBC1CG Capture 1x100Gb" }, - { "1c2c", "00a9", "FBC2XGHH Capture 2x10Gb [Latina]" }, - { "1c2c", "00ad", "FBC2CGG3HL Capture 2x100Gb [Padua]" }, - { "1c2c", "00af", "Capture slave device" }, - { "1c2c", "00e0", "PacketMover 2x100Gb [Savona]" }, - { "1c2c", "00e1", "PacketMover 2x100Gb [Tivoli]" }, - { "1c2c", "00e3", "PacketMover 2x10Gb [Tivoli]" }, - { "1c2c", "00e5", "PacketMover 2x10Gb [Corfu]" }, - { "1c2c", "1000", "SmartNIC N5010 4x100Gb" }, - { "1c2c", "1001", "SmartNIC N5011 w/2xE810 4x100Gb" }, - { "1c2c", "a000", "FBC2CGG3 Capture 2x40Gb [Mango_02]" }, - { "1c2c", "a001", "FBC2CGG3 Capture 2x100Gb [Mango_02]" }, - { "1c2c", "a003", "FBC2CGG3 Capture 16x10Gb [Mango]" }, - { "1c2c", "a007", "FBC2CGG3 Capture 2x40Gb [Mango]" }, - { "1c2c", "a008", "FBC2CGG3 Capture 2x25Gb [Mango]" }, - { "1c2c", "a009", "FBC2CGG3 Capture 16x10Gb [Mango]" }, - { "1c2c", "a00a", "FBC2CGG3 Capture 8x10Gb [Mango]" }, - { "1c2c", "a00e", "FB2CG Capture 2x100Gb [Savona]" }, - { "1c2c", "a00f", "FB2CG Capture 2x40Gb [Savona]" }, - { "1c2c", "a010", "FB2CGHH Capture 2x40Gb [Tivoli]" }, - { "1c2c", "a011", "FB2CG Capture 2x25Gb [Savona]" }, - { "1c2c", "a012", "FB2CG Capture 8x10Gb [Savona]" }, - { "1c2c", "a013", "FB2CGHH Capture 2x25Gb [Tivoli]" }, - { "1c2c", "a014", "FB2CGHH Capture 8x10Gb [Tivoli]" }, - { "1c2c", "a015", "FB2CGHH Capture 2x100Gb [Tivoli]" }, - { "1c36", "0001", "Gigabit Ethernet Adapter" }, - { "1c36", "0002", "SFP+ 10G Ethernet Adapter" }, - { "1c3b", "0200", "Telas2" }, - { "1c3b", "0300", "Telas 2.V" }, - { "1c44", "8000", "8000 Storage IO Controller" }, - { "1c58", "0003", "Ultrastar SN100 Series NVMe SSD" }, - { "1c58", "0023", "Ultrastar SN200 Series NVMe SSD" }, - { "1c5c", "1283", "PC300 NVMe Solid State Drive 256GB" }, - { "1c5c", "1284", "PC300 NVMe Solid State Drive 512GB" }, - { "1c5c", "1285", "PC300 NVMe Solid State Drive 1TB" }, - { "1c5c", "1327", "BC501 NVMe Solid State Drive" }, - { "1c5c", "1339", "BC511" }, - { "1c5c", "1504", "SC300 512GB M.2 2280 SATA Solid State Drive" }, - { "1c5c", "1527", "PC401 NVMe Solid State Drive 256GB" }, - { "1c5c", "174a", "Gold P31 SSD" }, - { "1c5c", "243b", "PE6110 NVMe Solid State Drive" }, - { "1c5c", "2839", "PE8000 Series NVMe Solid State Drive" }, - { "1c5c", "2849", "PE81x0 U.2/3 NVMe Solid State Drive" }, - { "1c5f", "000d", "PBlaze5 520/526" }, - { "1c5f", "000e", "PBlaze6 6530" }, - { "1c5f", "003d", "PBlaze5 920/926" }, - { "1c5f", "003e", "PBlaze6 6920" }, - { "1c5f", "0540", "PBlaze4 NVMe SSD" }, - { "1c5f", "0550", "PBlaze5 700/900" }, - { "1c5f", "0555", "PBlaze5 510/516" }, - { "1c5f", "0557", "PBlaze5 910/916" }, - { "1c63", "0008", "K1927BB1Ya [EC8430] Angara Interconnection Network Adapter" }, - { "1c7e", "0200", "zFAS Debug Port" }, - { "1c7f", "5100", "EB5100" }, - { "1c8a", "0001", "Hunter PCI Express" }, - { "1cb0", "8266", "SP4 Series SSD" }, - { "1cb0", "d000", "Venice NVMe SSD" }, - { "1cb5", "0002", "Clarett" }, - { "1cc1", "5766", "ADATA XPG GAMMIXS1 1L Media" }, - { "1cc1", "8201", "XPG SX8200 Pro PCIe Gen3x4 M.2 2280 Solid State Drive" }, - { "1cc4", "1203", "NVMe SSD Controller UHXXXa series" }, - { "1cc4", "17ab", "NVMe 256G SSD device" }, - { "1cc4", "6303", "AM630 PCIe 4.0 x4 NVMe SSD Controller" }, - { "1cc5", "0100", "CAN-PCIe-02" }, - { "1cc7", "0200", "RMS-200" }, - { "1cc7", "0250", "RMS-250" }, - { "1ccf", "0001", "TAC-2 Thunderbolt Audio Converter" }, - { "1cd2", "0301", "Simulyzer-RT CompactPCI Serial DIO-1 card" }, - { "1cd2", "0302", "Simulyzer-RT CompactPCI Serial PSI5-ECU-1 card" }, - { "1cd2", "0303", "Simulyzer-RT CompactPCI Serial PSI5-SIM-1 card" }, - { "1cd2", "0304", "Simulyzer-RT CompactPCI Serial PWR-ANA-1 card" }, - { "1cd2", "0305", "Simulyzer-RT CompactPCI Serial CAN-1 card" }, - { "1cd2", "0306", "Simulyzer-RT CompactPCI Serial CAN-2 card (CAN-FD)" }, - { "1cd2", "0307", "Simulyzer-RT CompactPCI Serial DIO-2 card [Xilinx Zynq UltraScale+]" }, - { "1cd7", "0010", "Pro Capture Endpoint" }, - { "1cd7", "0014", "PRO CAPTURE AIO 4K PLUS" }, - { "1cd7", "0017", "PRO CAPTURE AIO 4K" }, - { "1cd7", "0051", "Eco Capture Dual HDMI M.2" }, - { "1cd7", "0052", "Eco Capture HDMI 4K M.2" }, - { "1cd7", "0053", "Eco Capture Dual SDI M.2" }, - { "1cd7", "0054", "Eco Capture Quad SDI M.2" }, - { "1ce4", "0001", "ExaNIC X4" }, - { "1ce4", "0002", "ExaNIC X2" }, - { "1ce4", "0003", "ExaNIC X10" }, - { "1ce4", "0004", "ExaNIC X10-GM" }, - { "1ce4", "0005", "ExaNIC X40" }, - { "1ce4", "0006", "ExaNIC X10-HPT" }, - { "1ce4", "0007", "ExaNIC X40" }, - { "1ce4", "0008", "ExaNIC V5P" }, - { "1ce4", "0009", "ExaNIC X25" }, - { "1ce4", "000a", "ExaNIC X100" }, - { "1ce4", "000b", "ExaNIC V9P" }, - { "1ce4", "000c", "ExaNIC V9P-3" }, - { "1ce4", "0100", "ExaDISK FX1" }, - { "1d0f", "8061", "NVMe EBS Controller" }, - { "1d0f", "cd01", "NVMe SSD Controller" }, - { "1d0f", "ec20", "Elastic Network Adapter (ENA)" }, - { "1d0f", "efa0", "Elastic Fabric Adapter (EFA)" }, - { "1d0f", "efa1", "Elastic Fabric Adapter (EFA)" }, - { "1d17", "070f", "ZX-100 PCI Express Root Port" }, - { "1d17", "0710", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0711", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0712", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0713", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0714", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0715", "ZX-100/ZX-200 PCI Express Root Port" }, - { "1d17", "0716", "ZX-D PCI Express Root Port" }, - { "1d17", "0717", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "0718", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "0719", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071a", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071b", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071c", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071d", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071e", "ZX-D/ZX-E PCI Express Root Port" }, - { "1d17", "071f", "ZX-200 Upstream Port of PCI Express Switch" }, - { "1d17", "0720", "ZX-200 PCIE RC6 controller" }, - { "1d17", "0721", "ZX-200 Downstream Port of PCI Express Switch" }, - { "1d17", "0722", "ZX-200 PCIE P2C bridge" }, - { "1d17", "1000", "ZX-D Standard Host Bridge" }, - { "1d17", "1001", "ZX-D/ZX-E Miscellaneous Bus" }, - { "1d17", "1003", "ZX-E Standard Host Bridge" }, - { "1d17", "3001", "ZX-100 Standard Host Bridge" }, - { "1d17", "300a", "ZX-100 Miscellaneous Bus" }, - { "1d17", "3038", "ZX-100/ZX-200/ZX-E Standard Universal PCI to USB Host Controller" }, - { "1d17", "3104", "ZX-100/ZX-200/ZX-E Standard Enhanced PCI to USB Host Controller" }, - { "1d17", "31b0", "ZX-100/ZX-D Standard Host Bridge" }, - { "1d17", "31b1", "ZX-100/ZX-D Standard Host Bridge" }, - { "1d17", "31b2", "ZX-100/ZX-D DRAM Controller" }, - { "1d17", "31b3", "ZX-100/ZX-D Power Management Controller" }, - { "1d17", "31b4", "ZX-100/ZX-D I/O APIC" }, - { "1d17", "31b5", "ZX-100/ZX-D Scratch Device" }, - { "1d17", "31b7", "ZX-100/ZX-D/ZX-E Standard Host Bridge" }, - { "1d17", "31b8", "ZX-100/ZX-D PCI to PCI Bridge" }, - { "1d17", "3288", "ZX-100/ZX-D/ZX-E High Definition Audio Controller" }, - { "1d17", "345b", "ZX-100/ZX-D/ZX-E Miscellaneous Bus" }, - { "1d17", "3a02", "ZX-100 C-320 GPU" }, - { "1d17", "3a03", "ZX-D C-860 GPU" }, - { "1d17", "3a04", "ZX-E C-960 GPU" }, - { "1d17", "9002", "ZX-100/ZX-200 EIDE Controller" }, - { "1d17", "9003", "ZX-100/ZX-E EIDE Controller" }, - { "1d17", "9045", "ZX-100/ZX-D/ZX-E RAID Accelerator 0" }, - { "1d17", "9046", "ZX-D/ZX-E RAID Accelerator 1" }, - { "1d17", "9083", "ZX-100/ZX-200/ZX-E StorX AHCI Controller" }, - { "1d17", "9084", "ZX-100 StorX AHCI Controller" }, - { "1d17", "9100", "ZX-200 Cross bus" }, - { "1d17", "9101", "ZX-200 Traffic Controller" }, - { "1d17", "9141", "ZX-100 High Definition Audio Controller" }, - { "1d17", "9142", "ZX-D High Definition Audio Controller" }, - { "1d17", "9144", "ZX-E High Definition Audio Controller" }, - { "1d17", "9180", "ZX-200 Networking Gigabit Ethernet Adapter" }, - { "1d17", "9202", "ZX-100 USB eXtensible Host Controller" }, - { "1d17", "9203", "ZX-200 USB eXtensible Host Controller" }, - { "1d17", "9204", "ZX-E USB eXtensible Host Controller" }, - { "1d17", "9286", "ZX-D eMMC Host Controller" }, - { "1d17", "9300", "ZX-D/ZX-E eSPI Host Controller" }, - { "1d17", "95d0", "ZX-100 Universal SD Host Controller" }, - { "1d17", "f410", "ZX-100/ZX-D/ZX-E PCI Com Port" }, - { "1d18", "0001", "Fireface UFX+" }, - { "1d1c", "0001", "Tofino 1" }, - { "1d1c", "0010", "Tofino 1" }, - { "1d1c", "0100", "Tofino 2" }, - { "1d1c", "0110", "Tofino 2" }, - { "1d1d", "1f1f", "QEMU NVM Express LightNVM Controller" }, - { "1d1d", "2807", "8800 series NVMe SSD" }, - { "1d22", "1380", "Cloud Storage Device" }, - { "1d22", "3684", "Kunlun AI Accelerator" }, - { "1d22", "3685", "Kunlun2 AI Accelerator [VF]" }, - { "1d26", "0040", "Turbocard2 Accelerator" }, - { "1d26", "0080", "Open Network Interface Card 80G" }, - { "1d26", "00c0", "Turbocard3 Accelerator" }, - { "1d26", "0140", "Open Network Interface Card 40G" }, - { "1d26", "e004", "AB01/EMB01 Development Board" }, - { "1d37", "0013", "PM3" }, - { "1d37", "0014", "PM4" }, - { "1d37", "0015", "PM4edge" }, - { "1d37", "0016", "PM4edge User Device" }, - { "1d44", "a400", "PM2x24/PM3224" }, - { "1d65", "04de", "Taurus/McKinley" }, - { "1d69", "2432", "CL2432" }, - { "1d69", "2440", "CL2440" }, - { "1d6a", "0001", "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "00b1", "AQC100 10G Ethernet MAC controller [AQtion]" }, - { "1d6a", "07b1", "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "08b1", "AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "11b1", "AQC111 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "12b1", "AQC112 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "87b1", "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "94c0", "AQC113CS NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "d107", "AQC107 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6a", "d108", "AQC108 NBase-T/IEEE 802.3bz Ethernet Controller [AQtion]" }, - { "1d6c", "1001", "A5PL-E1" }, - { "1d6c", "1002", "A5PL-E7" }, - { "1d6c", "1003", "S5PEDS-AB" }, - { "1d6c", "1004", "KC705-K325" }, - { "1d6c", "1005", "ZC706-Z045" }, - { "1d6c", "1006", "KCU105-KU040" }, - { "1d6c", "1007", "XUSP3S-VU095 [Jasper]" }, - { "1d6c", "1008", "XUSPL4-VU065 [Mustang UltraScale]" }, - { "1d6c", "1009", "XUSPL4-VU3P [Mustang UltraScale+]" }, - { "1d6c", "100a", "A10PL4-A10GX115" }, - { "1d6c", "100b", "K35-2SFP" }, - { "1d6c", "100c", "K35-4SFP" }, - { "1d6c", "100d", "AR-ARKA-FX0 [Arkville 32B DPDK Data Mover]" }, - { "1d6c", "100e", "AR-ARKA-FX1 [Arkville 64B DPDK Data Mover]" }, - { "1d6c", "100f", "AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Versal]" }, - { "1d6c", "1010", "AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex]" }, - { "1d6c", "1011", "AR-MAN-U50 [Manitou Class Accelerator for U50]" }, - { "1d6c", "1012", "AR-MAN-U200 [Manitou Class Accelerator for U200]" }, - { "1d6c", "1013", "AR-MAN-U250 [Manitou Class Accelerator for U250]" }, - { "1d6c", "1014", "AR-MAN-U280 [Manitou Class Accelerator for U280]" }, - { "1d6c", "1015", "AR-ARK-BBDEV-FX0 [Arkville 32B DPDK Baseband Device]" }, - { "1d6c", "1016", "AR-ARK-BBDEV-FX1 [Arkville 64B DPDK Baseband Device]" }, - { "1d6c", "1017", "AR-ARK-FX1 [Arkville 64B Multi-Homed Primary Endpoint]" }, - { "1d6c", "1018", "AR-ARK-FX1 [Arkville 64B Multi-Homed Secondary Endpoint]" }, - { "1d6c", "1019", "AR-ARK-FX1 [Arkville 64B Multi-Homed Tertiary Endpoint]" }, - { "1d6c", "101a", "AR-ARK-SRIOV-FX0 [Arkville 32B Primary Physical Function]" }, - { "1d6c", "101b", "AR-ARK-SRIOV-FX1 [Arkville 64B Primary Physical Function]" }, - { "1d6c", "101c", "AR-ARK-SRIOV-VF [Arkville Virtual Function]" }, - { "1d6c", "101d", "AR-ARK-NIC [Arkville ArkNIC Kernel Path Device]" }, - { "1d6c", "101e", "AR-ARKA-FX1 [Arkville 64B DPDK Data Mover for Agilex R-Tile]" }, - { "1d6c", "101f", "AR-TK242 [2x100GbE Packet Capture Device]" }, - { "1d6c", "4200", "A5PL-E1-10GETI [10 GbE Ethernet Traffic Instrument]" }, - { "1d78", "1512", "TAI NVMe Controller" }, - { "1d7c", "0001", "HyperWire Adapter" }, - { "1d82", "0101", "Codensity D400 SSD" }, - { "1d82", "0102", "Codensity D408 PCIe Gen4 NVMe SSD" }, - { "1d82", "0202", "Codensity T408 Video Encoding-Decoding Accelerator" }, - { "1d87", "0100", "RK3399 PCI Express Root Port" }, - { "1d87", "1808", "RK1808 Neural Network Processor Card" }, - { "1d87", "3566", "RK3568 Remote Signal Processor" }, - { "1d89", "0280", "PCIe NVMe SSD" }, - { "1d94", "1450", "Root Complex" }, - { "1d94", "1451", "I/O Memory Management Unit" }, - { "1d94", "1452", "PCIe Dummy Host Bridge" }, - { "1d94", "1453", "PCIE GPP Bridge" }, - { "1d94", "1454", "Internal PCIe GPP Bridge 0 to Bus B" }, - { "1d94", "1455", "PCIe Dummy Function" }, - { "1d94", "1456", "PSPCCP Command DMA Processor" }, - { "1d94", "1458", "10 Gb Ethernet Controller Port 0/Port1" }, - { "1d94", "1459", "10 Gb Ethernet Controller Port 2/Port3" }, - { "1d94", "145a", "PCIe Dummy Function" }, - { "1d94", "145b", "PCIE Non-Transparent Bridge" }, - { "1d94", "145c", "USB3 XHCI" }, - { "1d94", "145d", "Switch upstream in PCIe" }, - { "1d94", "145e", "Switch downstream in PCIe" }, - { "1d94", "145f", "USB 3.0 Host controller" }, - { "1d94", "1460", "Data Fabric: Device 18h; Function 0" }, - { "1d94", "1461", "Data Fabric: Device 18h; Function 1" }, - { "1d94", "1462", "Data Fabric: Device 18h; Function 2" }, - { "1d94", "1463", "Data Fabric: Device 18h; Function 3" }, - { "1d94", "1464", "Data Fabric: Device 18h; Function 4" }, - { "1d94", "1465", "Data Fabric: Device 18h; Function 5" }, - { "1d94", "1466", "Data Fabric: Device 18h; Function 6" }, - { "1d94", "1467", "Data Fabric: Device 18h; Function 7" }, - { "1d94", "1468", "NTBCCP" }, - { "1d94", "7901", "FCH SATA Controller [AHCI mode]" }, - { "1d94", "7904", "FCH SATA Controller [AHCI mode]" }, - { "1d94", "7906", "FCH SD Flash Controller" }, - { "1d94", "790b", "FCH SMBus Controller" }, - { "1d94", "790e", "FCH LPC Bridge" }, - { "1d95", "0001", "Colossus GC2 [C2]" }, - { "1d95", "0002", "Colossus GC1 [S1]" }, - { "1d97", "2263", "SM2263EN/SM2263XT-based OEM SSD" }, - { "1d9b", "0010", "Networking DOM Engine" }, - { "1d9b", "0011", "IO Bridge" }, - { "1da2", "e26a", "Radeon R7 250" }, - { "1da3", "0001", "HL-1000 AI Inference Accelerator [Goya]" }, - { "1da3", "1000", "HL-2000 AI Training Accelerator [Gaudi]" }, - { "1da3", "1010", "HL-2000 AI Training Accelerator [Gaudi secured]" }, - { "1db7", "dc20", "[X100 Series]" }, - { "1db7", "dc21", "VPU Controller [X100 Series]" }, - { "1db7", "dc22", "DC Controller [X100 Series]" }, - { "1db7", "dc23", "I2S/DMA Controller [X100 Series]" }, - { "1db7", "dc26", "SATA Controller [X100 Series]" }, - { "1db7", "dc27", "USB Controller [X100 Series]" }, - { "1db7", "dc29", "NANDFLASH Controller [X100 Series]" }, - { "1db7", "dc2b", "I2S Controller [X100 Series]" }, - { "1db7", "dc2c", "SPIM Controller [X100 Series]" }, - { "1db7", "dc2d", "CAN Controller [X100 Series]" }, - { "1db7", "dc2e", "UART Controller [X100 Series]" }, - { "1db7", "dc2f", "PWM Controller [X100 Series]" }, - { "1db7", "dc30", "MIO Controller [X100 Series]" }, - { "1db7", "dc31", "GPIO Controller [X100 Series]" }, - { "1db7", "dc32", "SMBUS Controller [X100 Series]" }, - { "1db7", "dc34", "PS2 Controller [X100 Series]" }, - { "1db7", "dc35", "LPC Controller [X100 Series]" }, - { "1db7", "dc36", "LDMA Controller [X100 Series]" }, - { "1db7", "dc38", "LSD_CFG Controller [X100 Series]" }, - { "1db7", "dc3a", "SWITCH Controller [X100 Series]" }, - { "1db7", "dc3c", "GPU_DMA Controller [X100 Series]" }, - { "1dbf", "0401", "StarDragon4800 PCI Express Root Port" }, - { "1dd8", "0002", "DSC2 Elba Upstream Port" }, - { "1dd8", "1000", "DSC Capri Upstream Port" }, - { "1dd8", "1001", "DSC Virtual Downstream Port" }, - { "1dd8", "1002", "DSC Ethernet Controller" }, - { "1dd8", "1003", "DSC Ethernet Controller VF" }, - { "1dd8", "1004", "DSC Management Controller" }, - { "1dd8", "1005", "DSC NVMe Controller" }, - { "1dd8", "1006", "DSC NVMe Controller VF" }, - { "1dd8", "1007", "DSC Storage Accelerator" }, - { "1de0", "0000", "TSP100 Tensor Streaming Processor" }, - { "1de1", "0391", "TRM-S1040 [DC-315 / DC-395 series]" }, - { "1de1", "2020", "DC-390 Series SCSI Adapter [AMD Am53C974]" }, - { "1de1", "690c", "690c" }, - { "1de1", "dc29", "DC290" }, - { "1de5", "1000", "IO Memory Controller" }, - { "1de5", "2000", "NoLoad Hardware Development Kit" }, - { "1de5", "3000", "eBPF-based PCIe Accelerator" }, - { "1ded", "107f", "Elastic RDMA Adapter" }, - { "1ded", "5007", "Elastic RDMA Adapter" }, - { "1ded", "8000", "M1 Root Port" }, - { "1ded", "8001", "ACC-RCiEP" }, - { "1ded", "8002", "RCiEP VF" }, - { "1ded", "8003", "RCEC PF" }, - { "1ded", "8004", "RCEC VF" }, - { "1def", "e005", "eMAG PCI Express Root Port 0" }, - { "1def", "e006", "eMAG PCI Express Root Port 1" }, - { "1def", "e007", "eMAG PCI Express Root Port 2" }, - { "1def", "e008", "eMAG PCI Express Root Port 3" }, - { "1def", "e009", "eMAG PCI Express Root Port 4" }, - { "1def", "e00a", "eMAG PCI Express Root Port 5" }, - { "1def", "e00b", "eMAG PCI Express Root Port 6" }, - { "1def", "e00c", "eMAG PCI Express Root Port 7" }, - { "1def", "e100", "Altra PCI Express Root Complex A" }, - { "1def", "e101", "Altra PCI Express Root Port a0" }, - { "1def", "e102", "Altra PCI Express Root Port a1" }, - { "1def", "e103", "Altra PCI Express Root Port a2" }, - { "1def", "e104", "Altra PCI Express Root Port a3" }, - { "1def", "e105", "Altra PCI Express Root Port a4" }, - { "1def", "e106", "Altra PCI Express Root Port a5" }, - { "1def", "e107", "Altra PCI Express Root Port a6" }, - { "1def", "e108", "Altra PCI Express Root Port a7" }, - { "1def", "e110", "Altra PCI Express Root Complex B" }, - { "1def", "e111", "Altra PCI Express Root Port b0" }, - { "1def", "e112", "Altra PCI Express Root Port b1" }, - { "1def", "e113", "Altra PCI Express Root Port b2" }, - { "1def", "e114", "Altra PCI Express Root Port b3" }, - { "1def", "e115", "Altra PCI Express Root Port b4" }, - { "1def", "e116", "Altra PCI Express Root Port b5" }, - { "1def", "e117", "Altra PCI Express Root Port b6" }, - { "1def", "e118", "Altra PCI Express Root Port b7" }, - { "1df3", "0201", "ACE-NIC40 Programmable Network Accelerator" }, - { "1df3", "0202", "ACE-NIC50 Programmable Network Accelerator" }, - { "1df3", "0203", "ACE-NIC100 Programmable Network Accelerator" }, - { "1df3", "0204", "ACE-NIC-NID Programmable Network Accelerator" }, - { "1df3", "0205", "ACE-NIC250 Programmable Network Accelerator" }, - { "1df3", "0206", "ACE-NIC200 Programmable Network Accelerator" }, - { "1df3", "0207", "ACE-NIC50RN Programmable Network Accelerator" }, - { "1df3", "0208", "ACE-NIC100RN Programmable Network Accelerator" }, - { "1df7", "0001", "ml605" }, - { "1df7", "0002", "alst4" }, - { "1df7", "0003", "alst4x" }, - { "1dfc", "1181", "TDM 8 Port E1/T1/J1 Adapter" }, - { "1e0f", "0007", "NVMe SSD Controller Cx6" }, - { "1e0f", "0009", "NVMe SSD" }, - { "1e0f", "0011", "NVMe SSD Controller CD7" }, - { "1e24", "0101", "Acorn CLE-101" }, - { "1e24", "0215", "Acorn CLE-215" }, - { "1e24", "021f", "Acorn CLE-215+" }, - { "1e24", "1525", "Xilinx BCU-1525" }, - { "1e24", "1533", "ForestKitten 33" }, - { "1e24", "1633", "JCM33" }, - { "1e24", "1635", "JCM35" }, - { "1e36", "0001", "T10 [CloudBlazer]" }, - { "1e36", "0002", "T11 [CloudBlazer]" }, - { "1e36", "0003", "T10(QSFP-DD) [CloudBlazer]" }, - { "1e36", "0021", "T20(32GB) [CloudBlazer]" }, - { "1e36", "0022", "T20(64GB) [CloudBlazer]" }, - { "1e36", "0023", "T21(32GB) [CloudBlazer]" }, - { "1e36", "0024", "T21(64GB) [CloudBlazer]" }, - { "1e36", "8001", "I20 [CloudBlazer]" }, - { "1e36", "8011", "I10 [CloudBlazer]" }, - { "1e36", "8012", "I10L [CloudBlazer]" }, - { "1e38", "0102", "Xplorer X1600" }, - { "1e3b", "0600", "NVMe SSD Controller DPU600" }, - { "1e3b", "1098", "Haishen NVMe SSD" }, - { "1e49", "0041", "ZHITAI TiPro7000" }, - { "1e49", "1013", "PC210" }, - { "1e4b", "1001", "NVMe SSD Controller MAP1001" }, - { "1e4b", "1002", "NVMe SSD Controller MAP1002" }, - { "1e4b", "1003", "NVMe SSD Controller MAP1003" }, - { "1e4b", "1201", "NVMe SSD Controller MAP1201" }, - { "1e4b", "1202", "NVMe SSD Controller MAP1202" }, - { "1e4b", "1601", "NVMe SSD Controller MAP1601" }, - { "1e4c", "0010", "APU [Leda]" }, - { "1e57", "0100", "The device has already been deleted." }, - { "1e59", "0001", "MinION Mk1C" }, - { "1e5d", "7000", "AI controller A7000" }, - { "1e5d", "7010", "AI controller A7010" }, - { "1e60", "2864", "Hailo-8 AI Processor" }, - { "1e7c", "bca1", "AKD1000 Neural Network Coprocessor [Akida]" }, - { "1e81", "1203", "NVMe SSD Controller UHXXXa series" }, - { "1e89", "0002", "Quantis-PCIe-40M" }, - { "1e89", "0003", "Quantis-PCIe-240M" }, - { "1e95", "1002", "NVMe Datacenter LJ1 SSD [3DNAND, Rainier Controller]" }, - { "1ea0", "2a16", "Cloud Intelligent Inference Controller" }, - { "1ea0", "2a18", "Video Transcode Controller" }, - { "1ea7", "223a", "Typhon+ PCIe to Gen-Z Bridge" }, - { "1ea7", "224a", "IPA-PE224A CXL to Gen-Z Bridge [Sphinx]" }, - { "1eab", "300a", "NVMe SSD Controller 300A" }, - { "1eab", "300b", "NVMe SSD Controller 300B" }, - { "1eac", "1001", "EM120R-GL LTE Modem" }, - { "1eac", "1002", "EM160R-GL LTE Modem" }, - { "1eb1", "1001", "Video Accelerator" }, - { "1eb4", "3401", "SSD Contoller" }, - { "1ebd", "0101", "Seirios 2063 Video Codec" }, - { "1ed2", "0000", "Warboy" }, - { "1ed5", "0100", "MTT S10" }, - { "1ed5", "0101", "MTT S10" }, - { "1ed5", "0102", "MTT S30" }, - { "1ed5", "0105", "MTT S50" }, - { "1ed5", "0106", "MTT S60" }, - { "1ed5", "0111", "MTT S100" }, - { "1ed5", "0121", "MTT S1000M" }, - { "1ed5", "0122", "MTT S1000" }, - { "1ed5", "0123", "MTT S2000" }, - { "1ed8", "0101", "FG4 PCIe Frame Grabber" }, - { "1eec", "0102", "VSE250231S Dual-port 10Gb/25Gb Ethernet PCIe" }, - { "1eec", "1eec", "VSE250231S Dual-port 10Gb/25Gb Ethernet PCIe" }, - { "1eed", "0100", "XDX P100 VGA controller" }, - { "1eed", "0101", "XDX P101 High Definition Audio Controller" }, - { "1f03", "1202", "MAP1202-Based NVMe SSD" }, - { "1f03", "2262", "SM2262EN-based OEM SSD" }, - { "1f03", "2263", "SM2263XT-Base NVMe SSD" }, - { "1f03", "5216", "IG5216-based NVMe SSD" }, - { "1f03", "5220", "IG5220-Based NVMe SSD" }, - { "1f03", "5236", "IG5236-Based NVMe SSD" }, - { "1f03", "5636", "IG5636-Based NVMe SSD" }, - { "1f2f", "1513", "DERA MENG NVMe Controller" }, - { "1fab", "0000", "Nexus Alpha IVPU" }, - { "1fc0", "0300", "E2200 Dual E1/Rawpipe Card" }, - { "1fc0", "0301", "C5400 SHDSL/E1 Card" }, - { "1fc1", "000d", "IBA6110 InfiniBand HCA" }, - { "1fc1", "0010", "IBA6120 InfiniBand HCA" }, - { "1fc9", "3009", "10-Giga TOE SmartNIC" }, - { "1fc9", "3010", "10-Giga TOE SmartNIC" }, - { "1fc9", "3014", "10-Giga TOE SmartNIC 2-Port" }, - { "1fc9", "3110", "10-Giga TOE Single Port SmartNIC" }, - { "1fc9", "3114", "10-Giga TOE Dual Port Low Profile SmartNIC" }, - { "1fc9", "3310", "10-Giga TOE SFP+ Single Port SmartNIC" }, - { "1fc9", "3314", "10-Giga TOE Dual Port Low Profile SmartNIC" }, - { "1fc9", "4010", "TN4010 Clean SROM" }, - { "1fc9", "4020", "TN9030 10GbE CX4 Ethernet Adapter" }, - { "1fc9", "4022", "TN9310 10GbE SFP+ Ethernet Adapter" }, - { "1fc9", "4024", "TN9210 10GBase-T Ethernet Adapter" }, - { "1fc9", "4025", "TN9510 10GBase-T/NBASE-T Ethernet Adapter" }, - { "1fc9", "4026", "TN9610 10GbE SFP+ Ethernet Adapter" }, - { "1fc9", "4027", "TN9710P 10GBase-T/NBASE-T Ethernet Adapter" }, - { "1fc9", "4527", "TN9710Q 5GBase-T/NBASE-T Ethernet Adapter" }, - { "1fcc", "f416", "MS416" }, - { "1fcc", "fb01", "MH4LM" }, - { "1fce", "0001", "Spectrum Analyzer PC Card (SAgE)" }, - { "1fd4", "0001", "Matrix multiport serial adapter" }, - { "1fd4", "1999", "Multiport serial controller" }, - { "2000", "2800", "SmartPCI2800 V.92 PCI Soft DFT" }, - { "2003", "8800", "LM-I56N" }, - { "22b8", "22a0", "Flex Logix InferX X1 Inference Accelerator" }, - { "2348", "2010", "8142 100VG/AnyLAN" }, - { "2646", "0010", "HyperX Predator PCIe AHCI SSD" }, - { "2646", "2262", "KC2000 NVMe SSD" }, - { "2646", "2263", "A2000 NVMe SSD" }, - { "2646", "5008", "U-SNS8154P3 NVMe SSD" }, - { "2646", "500d", "OM3PDP3 NVMe SSD" }, - { "2646", "500e", "SNVS2000G [NV1 NVMe PCIe SSD 2TB]" }, - { "2955", "6e61", "OHCI USB 1.1 controller" }, - { "31ab", "1faa", "ZEW1602 802.11b/g Wireless Adapter" }, - { "3388", "0013", "HiNT HC4 PCI to ISDN bridge, Multimedia audio controller" }, - { "3388", "0014", "HiNT HC4 PCI to ISDN bridge, Network controller" }, - { "3388", "0020", "HB6 Universal PCI-PCI bridge (transparent mode)" }, - { "3388", "0021", "HB6 Universal PCI-PCI bridge (non-transparent mode)" }, - { "3388", "0022", "HiNT HB4 PCI-PCI Bridge (PCI6150)" }, - { "3388", "0026", "HB2 PCI-PCI Bridge" }, - { "3388", "1014", "AudioTrak Maya" }, - { "3388", "1018", "Audiotrak INCA88" }, - { "3388", "1019", "Miditrak 2120" }, - { "3388", "101a", "E.Band [AudioTrak Inca88]" }, - { "3388", "101b", "E.Band [AudioTrak Inca88]" }, - { "3388", "8011", "VXPro II Chipset" }, - { "3388", "8012", "VXPro II Chipset" }, - { "3388", "8013", "VXPro II IDE" }, - { "3388", "a103", "Blackmagic Design DeckLink HD Pro" }, - { "3442", "1783", "AS-i 3.0 cPCI Master" }, - { "3442", "1922", "AS-i 3.0 PCI Master" }, - { "37d9", "1138", "SCHD-PH-8 Phase detector" }, - { "37d9", "1140", "VR-12-PCI" }, - { "37d9", "1141", "PCI-485(422)" }, - { "37d9", "1142", "PCI-CAN2" }, - { "3d3d", "0001", "GLINT 300SX" }, - { "3d3d", "0002", "GLINT 500TX" }, - { "3d3d", "0003", "GLINT Delta" }, - { "3d3d", "0004", "Permedia" }, - { "3d3d", "0005", "Permedia" }, - { "3d3d", "0006", "GLINT MX" }, - { "3d3d", "0007", "3D Extreme" }, - { "3d3d", "0008", "GLINT Gamma G1" }, - { "3d3d", "0009", "Permedia II 2D+3D" }, - { "3d3d", "000a", "GLINT R3" }, - { "3d3d", "000c", "GLINT R3 [Oxygen VX1]" }, - { "3d3d", "000d", "GLint R4 rev A" }, - { "3d3d", "000e", "GLINT Gamma G2" }, - { "3d3d", "0011", "GLint R4 rev B" }, - { "3d3d", "0012", "GLint R5 rev A" }, - { "3d3d", "0013", "GLint R5 rev B" }, - { "3d3d", "0020", "VP10 visual processor" }, - { "3d3d", "0022", "VP10 visual processor" }, - { "3d3d", "0024", "VP9 visual processor" }, - { "3d3d", "002c", "Wildcat Realizm 100/200" }, - { "3d3d", "0030", "Wildcat Realizm 800" }, - { "3d3d", "0032", "Wildcat Realizm 500" }, - { "3d3d", "0100", "Permedia II 2D+3D" }, - { "3d3d", "07a1", "Wildcat III 6210" }, - { "3d3d", "07a2", "Sun XVR-500 Graphics Accelerator" }, - { "3d3d", "07a3", "Wildcat IV 7210" }, - { "3d3d", "1004", "Permedia" }, - { "3d3d", "3d04", "Permedia" }, - { "3d3d", "ffff", "Glint VGA" }, - { "4005", "0300", "ALS300 PCI Audio Device" }, - { "4005", "0308", "ALS300+ PCI Audio Device" }, - { "4005", "0309", "PCI Input Controller" }, - { "4005", "1064", "ALG-2064" }, - { "4005", "2064", "ALG-2064i" }, - { "4005", "2128", "ALG-2364A GUI Accelerator" }, - { "4005", "2301", "ALG-2301" }, - { "4005", "2302", "ALG-2302" }, - { "4005", "2303", "AVG-2302 GUI Accelerator" }, - { "4005", "2364", "ALG-2364A" }, - { "4005", "2464", "ALG-2464" }, - { "4005", "2501", "ALG-2564A/25128A" }, - { "4005", "4000", "ALS4000 Audio Chipset" }, - { "4005", "4710", "ALC200/200P" }, - { "4033", "1360", "RTL8139 Ethernet" }, - { "4040", "0001", "NXB-10GXSR 10-Gigabit Ethernet PCIe Adapter with SR-XFP optical interface" }, - { "4040", "0002", "NXB-10GCX4 10-Gigabit Ethernet PCIe Adapter with CX4 copper interface" }, - { "4040", "0003", "NXB-4GCU Quad Gigabit Ethernet PCIe Adapter with 1000-BASE-T interface" }, - { "4040", "0004", "BladeCenter-H 10-Gigabit Ethernet High Speed Daughter Card" }, - { "4040", "0005", "NetXen Dual Port 10GbE Multifunction Adapter for c-Class" }, - { "4040", "0024", "XG Mgmt" }, - { "4040", "0025", "XG Mgmt" }, - { "4040", "0100", "NX3031 Multifunction 1/10-Gigabit Server Adapter" }, - { "4144", "0044", "ADM-XRCIIPro" }, - { "4150", "0001", "PCI32TLITE FILSTRUP1 PCI to VME Bridge Controller" }, - { "4150", "0006", "PCI32TLITE UART 16550 Opencores" }, - { "4150", "0007", "PCI32TLITE CAN Controller Opencores" }, - { "416c", "0100", "AladdinCARD" }, - { "416c", "0200", "CPC" }, - { "4348", "2273", "CH351 PCI Dual Serial Port Controller" }, - { "4348", "3253", "CH352 PCI Dual Serial Port Controller" }, - { "4348", "3453", "CH353 PCI Quad Serial Port Controller" }, - { "4348", "5053", "CH352 PCI Serial and Parallel Port Controller" }, - { "4348", "7053", "CH353 PCI Dual Serial and Parallel Ports Controller" }, - { "4348", "7073", "CH356 PCI Quad Serial and Parallel Ports Controller" }, - { "4348", "7173", "CH355 PCI Quad Serial Port Controller" }, - { "4444", "0016", "iTVC16 (CX23416) Video Decoder" }, - { "4444", "0803", "iTVC15 (CX23415) Video Decoder" }, - { "4624", "adc1", "ADC200ME High speed ADC" }, - { "4624", "de01", "DL200ME High resolution delay line PCI based card" }, - { "4624", "de02", "DL200ME Middle resolution delay line PCI based card" }, - { "4916", "1960", "RedCreek PCI adapter" }, - { "494f", "0508", "PCI-IDO-16A FET Output Card" }, - { "494f", "0518", "PCI-IDO-32A FET Output Card" }, - { "494f", "0520", "PCI-IDO-48 FET Output Card" }, - { "494f", "0521", "PCI-IDO-48A FET Output Card" }, - { "494f", "0703", "PCIe-RO-4 Electromechanical Relay Output Card" }, - { "494f", "07d0", "PCIe-IDO-24 FET Output Card" }, - { "494f", "0920", "PCI-IDI-48 Isolated Digital Input Card" }, - { "494f", "0bd0", "PCIe-IDI-24 Isolated Digital Input Card" }, - { "494f", "0c50", "PCI-DIO-24H 1x 8255 Digital Input / Output Card" }, - { "494f", "0c51", "PCI-DIO-24D 1x 8255 Digital Input / Output Card" }, - { "494f", "0c52", "PCIe-DIO-24 1x 8255 Digital Input / Output Card" }, - { "494f", "0c53", "PCIe-DIO-24H 8255 Digital Input / Output Card" }, - { "494f", "0c57", "mPCIe-DIO-24 8255 Digital Input / Output Card" }, - { "494f", "0c60", "PCI-DIO-48H 8255 Digital Input / Output Card" }, - { "494f", "0c61", "PCIe-DIO-48 8255 Digital Input / Output Card" }, - { "494f", "0c62", "P104-DIO-48 8255 Digital Input / Output Card" }, - { "494f", "0c68", "PCI-DIO-72 8255 Digital Input / Output Card" }, - { "494f", "0c69", "P104-DIO-96 8255 Digital Input / Output Card" }, - { "494f", "0c70", "PCI-DIO-96 8255 Digital Input / Output Card" }, - { "494f", "0c78", "PCI-DIO-120 8255 Digital Input / Output Card" }, - { "494f", "0dc8", "PCI-IDIO-16 Isolated Digital Input / FET Output Card" }, - { "494f", "0e50", "PCI-DIO-24S 8255 Digital Input / Output Card" }, - { "494f", "0e51", "PCI-DIO-24H(C) 8255 Digital Input / Output Card" }, - { "494f", "0e52", "PCI-DIO-24D(C) 8255 Digital Input / Output Card" }, - { "494f", "0e53", "PCIe-DIO-24S 8255 Digital Input / Output Card" }, - { "494f", "0e54", "PCIe-DIO-24HS 8255 Digital Input / Output Card" }, - { "494f", "0e55", "PCIe-DIO-24DC 8255 Digital Input / Output Card" }, - { "494f", "0e56", "PCIe-DIO-24DCS 8255 Digital Input / Output Card" }, - { "494f", "0e57", "mPCIe-DIO-24S 8255 Digital Input / Output Card" }, - { "494f", "0e60", "PCI-DIO-48S 2x 8255 Digital Input / Output Card" }, - { "494f", "0e61", "PCIe-DIO-48S 2x 8255 Digital Input / Output Card" }, - { "494f", "0e62", "P104-DIO-48S 2x 8255 Digital Input / Output Card" }, - { "494f", "0f00", "PCI-IIRO-8 Isolated Digital / Relay Output Card" }, - { "494f", "0f01", "LPCI-IIRO-8 Isolated Digital / Relay Output Card" }, - { "494f", "0f02", "PCIe-IIRO-8 Isolated Digital / Relay Output Card" }, - { "494f", "0f08", "PCI-IIRO-16 Isolated Digital / Relay Output Card" }, - { "494f", "0f09", "PCIe-IIRO-16 Isolated Digital / Relay Output Card" }, - { "494f", "0fc0", "PCIe-IDIO-12 Isolated Digital Input / FET Output Card" }, - { "494f", "0fc1", "PCIe-IDI-12 Isolated Digital Input Card" }, - { "494f", "0fc2", "PCIe-IDO-12 FET Output Card" }, - { "494f", "0fd0", "PCIe-IDIO-24 Isolated Digital Input / FET Output Card" }, - { "494f", "1050", "PCI-422/485-2 2x RS422/RS484 Card" }, - { "494f", "1051", "PCIe-COM-2SRJ 2x RS422/RS484 Card w/RJ45 Connectors" }, - { "494f", "1052", "104I-COM-2S 2x RS422/RS484 PCI/104 Board" }, - { "494f", "1053", "mPCIe-COM-2S 2x RS422/RS484 PCI Express Mini Card" }, - { "494f", "1058", "PCI-COM422/4 4x RS422 Card" }, - { "494f", "1059", "PCI-COM485/4 4x RS485 Card" }, - { "494f", "105a", "PCIe-COM422-4 4x RS422 Card" }, - { "494f", "105b", "PCIe-COM485-4 4x RS485 Card" }, - { "494f", "105c", "PCIe-COM-4SRJ 4x RS422/RS485 Card w/RJ45 Connectors" }, - { "494f", "105d", "104I-COM-4S 4x RS422/RS484 PCI/104 Board" }, - { "494f", "105e", "mPCIe-COM-4S 4x RS422/RS484 PCI Express Mini Card" }, - { "494f", "1068", "PCI-COM422/8 8x RS422 Card" }, - { "494f", "1069", "PCI-COM485/8 8x RS485 Card" }, - { "494f", "106a", "PCIe-COM422-8 8x RS422 Card" }, - { "494f", "106b", "PCIe-COM485-8 8x RS485 Card" }, - { "494f", "106c", "104I-COM-8S 8x RS422/RS485 PCI/104 Board" }, - { "494f", "1088", "PCI-COM232/1 1x RS232 Card" }, - { "494f", "1090", "PCI-COM232/2 2x RS232 Card" }, - { "494f", "1091", "PCIe-COM232-2RJ 2x RS232 Card w/RJ45 Connectors" }, - { "494f", "1093", "mPCIe-COM232-2 2x RS232 PCI Express Mini Card" }, - { "494f", "1098", "PCIe-COM232-4 4x RS232 Card" }, - { "494f", "1099", "PCIe-COM232-4RJ 4x RS232 Card w/RJ45 Connectors" }, - { "494f", "109b", "mPCIe-COM232-4 4x RS232 PCI Express Mini Card" }, - { "494f", "10a8", "P104-COM232-8 8x RS232 PC-104+ Board" }, - { "494f", "10a9", "PCIe-COM232-8 8x RS232 Card" }, - { "494f", "10c9", "PCI-COM-1S 1x RS422/RS485 Card" }, - { "494f", "10d0", "PCI-COM2S 2x RS422/RS485 Card" }, - { "494f", "10d1", "PCIe-COM-2SMRJ 2x RS232/RS422/RS485 Card w/RJ45 Connectors" }, - { "494f", "10d2", "104I-COM-2SM 2x RS232/RS422/RS485 PCI/104 Board" }, - { "494f", "10d3", "mPCIe-COM-2SM 2x RS232/RS422/RS485 PCI Express Mini Card" }, - { "494f", "10d8", "PCI-COM-4SM 4x RS232/RS422/RS485 Card" }, - { "494f", "10d9", "PCIe-COM-4SM 4x RS232/RS422/RS485 Card" }, - { "494f", "10da", "PCIe-COM-4SMRJ 4x RS232/RS422/RS485 Card w/RJ45 Connectors" }, - { "494f", "10db", "104I-COM-4SM 4x RS232/RS422/RS485 PCI/104 Board" }, - { "494f", "10dc", "mPCIe-COM-4SM 4x RS232/RS422/RS485 PCI Express Mini Card" }, - { "494f", "10e8", "PCI-COM-8SM 8x RS232/RS422/RS485 Card" }, - { "494f", "10e9", "PCIe-COM-8SM 8x RS232/RS422/RS485 Card" }, - { "494f", "10ea", "104I-COM-8SM 8x RS232/RS422/RS485 PCI-104 Board" }, - { "494f", "1108", "mPCIe-ICM485-1 1x Isolated RS485 PCI Express Mini Card" }, - { "494f", "1110", "mPCIe-ICM422-2 2x Isolated RS422 PCI Express Mini Card" }, - { "494f", "1111", "mPCIe-ICM485-2 2x Isolated RS485 PCI Express Mini Card" }, - { "494f", "1118", "mPCIe-ICM422-4 4x Isolated RS422 PCI Express Mini Card" }, - { "494f", "1119", "mPCIe-ICM485-4 4x Isolated RS485 PCI Express Mini Card" }, - { "494f", "1148", "PCI-ICM-1S 1x Isolated RS422/RS485 Card" }, - { "494f", "1150", "PCI-ICM-2S 2x Isolated RS422/RS485 Card" }, - { "494f", "1152", "PCIe-ICM-2S 2x Isolated RS422/RS485 Card" }, - { "494f", "1158", "PCI-ICM422/4 4x Isolated RS422 Card" }, - { "494f", "1159", "PCI-ICM485/4 4x Isolated RS485 Card" }, - { "494f", "115a", "PCIe-ICM-4S 4x Isolated RS422/RS485 Card" }, - { "494f", "1190", "PCIe-ICM232-2 2x Isolated RS232 Card" }, - { "494f", "1191", "mPCIe-ICM232-2 2x Isolated RS232 PCI Express Mini Card" }, - { "494f", "1198", "PCIe-ICM232-4 4x Isolated RS232 Card" }, - { "494f", "1199", "mPCIe-ICM232-4 4x Isolated RS422 PCI Express Mini Card" }, - { "494f", "11d0", "PCIe-ICM-2SM 2x Isolated RS232/RS422/RS485 Card" }, - { "494f", "11d8", "PCIe-ICM-4SM 4x Isolated RS232/RS422/RS485 Card" }, - { "494f", "1250", "PCI-WDG-2S Watchdog and 2x Serial Card" }, - { "494f", "12d0", "PCI-WDG-IMPAC" }, - { "494f", "2230", "PCI-QUAD-8 8x Quadrature Input Card" }, - { "494f", "2231", "PCI-QUAD-4 4x Quadrature Input Card" }, - { "494f", "22c0", "PCI-WDG-CSM Watchdog Card" }, - { "494f", "25c0", "P104-WDG-E Watchdog PC/104+ Board" }, - { "494f", "2c50", "PCI-DIO-96CT 96x Digital Input / Output Card" }, - { "494f", "2c58", "PCI-DIO-96C3 96x Digital Input / Output Card w/3x 8254 Counter Card" }, - { "494f", "2ee0", "PCIe-DIO24S-CTR12 24x Digital Input / Output Card w/4x 8254 Counter Card" }, - { "494f", "2fc0", "P104-WDG-CSM Watchdog PC/104+ Board" }, - { "494f", "2fc1", "P104-WDG-CSMA Advanced Watchdog PC/104+ Board" }, - { "494f", "5ed0", "PCI-DAC" }, - { "494f", "6c90", "PCI-DA12-2 2x 12-bit Analog Output Card" }, - { "494f", "6c98", "PCI-DA12-4 4x 12-bit Analog Output Card" }, - { "494f", "6ca0", "PCI-DA12-6 6x 12-bit Analog Output Card" }, - { "494f", "6ca8", "PCI-DA12-8 8x 12-bit Analog Output Card" }, - { "494f", "6ca9", "PCI-DA12-8V" }, - { "494f", "6cb0", "PCI-DA12-16 16x 12-bit Analog Output Card" }, - { "494f", "6cb1", "PCI-DA12-16V" }, - { "494f", "8ef0", "P104-FAS16-16" }, - { "494f", "aca8", "PCI-AI12-16 12-bit 100kHz Analog Input Card" }, - { "494f", "aca9", "PCI-AI12-16A 12-bit 100kHz Analog Input w/FIFO Card" }, - { "494f", "eca8", "PCI-AIO12-16 12-bit 100kHz Analog Input w/2x Analog Output and FIFO Card" }, - { "494f", "ecaa", "PCI-A12-16A 12-bit 100kHz Analog Input w/2x Analog Output and FIFO Card" }, - { "494f", "ece8", "LPCI-A16-16A 16-bit 500kHz Analog Input low-profile Card" }, - { "494f", "ece9", "LPCI-AIO16A 16-bit 500kHz Analog Input low-profile Card" }, - { "4a14", "5000", "NV5000SC" }, - { "4c53", "0000", "PLUSTEST device" }, - { "4c53", "0001", "PLUSTEST-MM device" }, - { "4d51", "0200", "MQ-200" }, - { "4d56", "0000", "[mvHYPERION-CLe/CLb] CameraLink PCI Express x1 Frame Grabber" }, - { "4d56", "0001", "[mvHYPERION-CLf/CLm] CameraLink PCI Express x4 Frame Grabber" }, - { "4d56", "0010", "[mvHYPERION-16R16/-32R16] 16 Video Channel PCI Express x4 Frame Grabber" }, - { "4d56", "0020", "[mvHYPERION-HD-SDI] HD-SDI PCI Express x4 Frame Grabber" }, - { "4d56", "0030", "[mvHYPERION-HD-SDI-Merger] HD-SDI PCI Express x4 Frame Grabber" }, - { "4d56", "7012", "[mvBlueNAOS BVS CA-BN] PCIe Gen1 x2 Camera" }, - { "4d56", "7014", "[mvBlueNAOS BVS CA-BN] PCIe Gen1 x4 Camera" }, - { "4d56", "7022", "[mvBlueNAOS BVS CA-BN] PCIe Gen2 x2 Camera" }, - { "4d56", "7024", "[mvBlueNAOS BVS CA-BN] PCIe Gen2 x4 Camera" }, - { "4ddc", "0100", "DD-42924I5-300 (ARINC 429 Data Bus)" }, - { "4ddc", "0300", "SB-3620 Motion Feedback Device" }, - { "4ddc", "0340", "SB-3623 Motion Feedback Device" }, - { "4ddc", "0400", "SB-3622 Motion Feedback Device" }, - { "4ddc", "0500", "SB-3621 Motion Feedback Device" }, - { "4ddc", "0510", "SB-3624 Motion Feedback Device" }, - { "4ddc", "0801", "BU-65570I1 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0802", "BU-65570I2 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0811", "BU-65572I1 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0812", "BU-65572I2 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0881", "BU-65570T1 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0882", "BU-65570T2 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0891", "BU-65572T1 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0892", "BU-65572T2 MIL-STD-1553 Test and Simulation" }, - { "4ddc", "0901", "BU-65565C1 MIL-STD-1553 Data Bus" }, - { "4ddc", "0902", "BU-65565C2 MIL-STD-1553 Data Bus" }, - { "4ddc", "0903", "BU-65565C3 MIL-STD-1553 Data Bus" }, - { "4ddc", "0904", "BU-65565C4 MIL-STD-1553 Data Bus" }, - { "4ddc", "0b01", "BU-65569I1 MIL-STD-1553 Data Bus" }, - { "4ddc", "0b02", "BU-65569I2 MIL-STD-1553 Data Bus" }, - { "4ddc", "0b03", "BU-65569I3 MIL-STD-1553 Data Bus" }, - { "4ddc", "0b04", "BU-65569I4 MIL-STD-1553 Data Bus" }, - { "4ddc", "0d01", "SB-3641 Motion Feedback Device" }, - { "4ddc", "0d10", "SB-365x Motion Feedback Device" }, - { "4ddc", "2f00", "SB-3642 Motion Feedback Device" }, - { "4ddc", "3000", "SB-3644 Motion Feedback Device" }, - { "4e58", "0001", "Virtual NVMe Controller" }, - { "5045", "4243", "BLASTbus PCI Interface Card v1" }, - { "5046", "1001", "PCI Radio" }, - { "5053", "2010", "Daytona Audio Adapter" }, - { "5145", "3031", "Concert AudioPCI" }, - { "5168", "0300", "FlyDVB-S" }, - { "5168", "0301", "FlyDVB-T" }, - { "5301", "0001", "ProMotion aT3D" }, - { "5333", "0551", "Plato/PX (system)" }, - { "5333", "5631", "86c325 [ViRGE]" }, - { "5333", "8800", "86c866 [Vision 866]" }, - { "5333", "8801", "86c964 [Vision 964]" }, - { "5333", "8810", "86c764_0 [Trio 32 vers 0]" }, - { "5333", "8811", "86c764/765 [Trio32/64/64V+]" }, - { "5333", "8812", "86cM65 [Aurora64V+]" }, - { "5333", "8813", "86c764_3 [Trio 32/64 vers 3]" }, - { "5333", "8814", "86c767 [Trio 64UV+]" }, - { "5333", "8815", "86cM65 [Aurora 128]" }, - { "5333", "883d", "86c988 [ViRGE/VX]" }, - { "5333", "8870", "FireGL" }, - { "5333", "8880", "86c868 [Vision 868 VRAM] vers 0" }, - { "5333", "8881", "86c868 [Vision 868 VRAM] vers 1" }, - { "5333", "8882", "86c868 [Vision 868 VRAM] vers 2" }, - { "5333", "8883", "86c868 [Vision 868 VRAM] vers 3" }, - { "5333", "88b0", "86c928 [Vision 928 VRAM] vers 0" }, - { "5333", "88b1", "86c928 [Vision 928 VRAM] vers 1" }, - { "5333", "88b2", "86c928 [Vision 928 VRAM] vers 2" }, - { "5333", "88b3", "86c928 [Vision 928 VRAM] vers 3" }, - { "5333", "88c0", "86c864 [Vision 864 DRAM] vers 0" }, - { "5333", "88c1", "86c864 [Vision 864 DRAM] vers 1" }, - { "5333", "88c2", "86c864 [Vision 864-P DRAM] vers 2" }, - { "5333", "88c3", "86c864 [Vision 864-P DRAM] vers 3" }, - { "5333", "88d0", "86c964 [Vision 964 VRAM] vers 0" }, - { "5333", "88d1", "86c964 [Vision 964 VRAM] vers 1" }, - { "5333", "88d2", "86c964 [Vision 964-P VRAM] vers 2" }, - { "5333", "88d3", "86c964 [Vision 964-P VRAM] vers 3" }, - { "5333", "88f0", "86c968 [Vision 968 VRAM] rev 0" }, - { "5333", "88f1", "86c968 [Vision 968 VRAM] rev 1" }, - { "5333", "88f2", "86c968 [Vision 968 VRAM] rev 2" }, - { "5333", "88f3", "86c968 [Vision 968 VRAM] rev 3" }, - { "5333", "8900", "86c755 [Trio 64V2/DX]" }, - { "5333", "8901", "86c775/86c785 [Trio 64V2/DX or /GX]" }, - { "5333", "8902", "Plato/PX" }, - { "5333", "8903", "Trio 3D business multimedia" }, - { "5333", "8904", "86c365, 86c366 [Trio 3D]" }, - { "5333", "8905", "Trio 64V+ family" }, - { "5333", "8906", "Trio 64V+ family" }, - { "5333", "8907", "Trio 64V+ family" }, - { "5333", "8908", "Trio 64V+ family" }, - { "5333", "8909", "Trio 64V+ family" }, - { "5333", "890a", "Trio 64V+ family" }, - { "5333", "890b", "Trio 64V+ family" }, - { "5333", "890c", "Trio 64V+ family" }, - { "5333", "890d", "Trio 64V+ family" }, - { "5333", "890e", "Trio 64V+ family" }, - { "5333", "890f", "Trio 64V+ family" }, - { "5333", "8a01", "86c375 [ViRGE/DX] or 86c385 [ViRGE/GX]" }, - { "5333", "8a10", "ViRGE/GX2" }, - { "5333", "8a13", "86c360 [Trio 3D/1X], 86c362, 86c368 [Trio 3D/2X]" }, - { "5333", "8a20", "86c794 [Savage 3D]" }, - { "5333", "8a21", "86c390 [Savage 3D/MV]" }, - { "5333", "8a22", "Savage 4" }, - { "5333", "8a23", "Savage 4" }, - { "5333", "8a25", "ProSavage PM133" }, - { "5333", "8a26", "ProSavage KM133" }, - { "5333", "8c00", "ViRGE/M3" }, - { "5333", "8c01", "ViRGE/MX" }, - { "5333", "8c02", "ViRGE/MX+" }, - { "5333", "8c03", "ViRGE/MX+MV" }, - { "5333", "8c10", "86C270-294 [SavageMX-MV]" }, - { "5333", "8c11", "82C270-294 [SavageMX]" }, - { "5333", "8c12", "86C270-294 [SavageIX-MV]" }, - { "5333", "8c13", "86C270-294 [SavageIX]" }, - { "5333", "8c22", "SuperSavage MX/128" }, - { "5333", "8c24", "SuperSavage MX/64" }, - { "5333", "8c26", "SuperSavage MX/64C" }, - { "5333", "8c2a", "SuperSavage IX/128 SDR" }, - { "5333", "8c2b", "SuperSavage IX/128 DDR" }, - { "5333", "8c2c", "SuperSavage IX/64 SDR" }, - { "5333", "8c2d", "SuperSavage IX/64 DDR" }, - { "5333", "8c2e", "SuperSavage IX/C SDR" }, - { "5333", "8c2f", "SuperSavage IX/C DDR" }, - { "5333", "8d01", "86C380 [ProSavageDDR K4M266]" }, - { "5333", "8d02", "VT8636A [ProSavage KN133] AGP4X VGA Controller (TwisterK)" }, - { "5333", "8d03", "VT8751 [ProSavageDDR P4M266]" }, - { "5333", "8d04", "VT8375 [ProSavage8 KM266/KL266]" }, - { "5333", "8e00", "DeltaChrome" }, - { "5333", "8e26", "ProSavage" }, - { "5333", "8e40", "2300E Graphics Processor" }, - { "5333", "8e48", "Matrix [Chrome S25 / S27]" }, - { "5333", "9043", "Chrome 430 GT" }, - { "5333", "9045", "Chrome 430 ULP / 435 ULP / 440 GTX" }, - { "5333", "9060", "Chrome 530 GT" }, - { "5333", "9102", "86C410 [Savage 2000]" }, - { "5333", "ca00", "SonicVibes" }, - { "544c", "0350", "TL880-based HDTV/ATSC tuner" }, - { "544d", "6178", "DVB Tuner PCIe Card" }, - { "5452", "3443", "RTC4" }, - { "5455", "4458", "S5933" }, - { "5544", "0001", "I-30xx Scanner Interface" }, - { "5555", "0003", "TURBOstor HFP-832 [HiPPI NIC]" }, - { "5555", "3b00", "Epiphan DVI2PCIe video capture card" }, - { "5851", "8008", "tDVR8008 8-port video capture card" }, - { "5851", "8016", "tDVR8016 16-chan video capture card" }, - { "5851", "8032", "tDVR8032 32-chan video capture card" }, - { "5853", "0001", "Xen Platform Device" }, - { "5853", "c000", "Citrix XenServer PCI Device for Windows Update" }, - { "5853", "c110", "Virtualized HID" }, - { "5853", "c147", "Virtualized Graphics Device" }, - { "5853", "c200", "XCP-ng Project PCI Device for Windows Update" }, - { "631c", "1652", "PXI-1652 Signal Generator" }, - { "631c", "2504", "PXI-2504 Signal Interrogator" }, - { "6374", "6773", "GPPCI" }, - { "6549", "1200", "TERA1200 PC-over-IP Host" }, - { "6666", "0001", "PCCOM4" }, - { "6666", "0002", "PCCOM8" }, - { "6666", "0004", "PCCOM2" }, - { "6666", "0101", "PCI 8255/8254 I/O Card" }, - { "6666", "0200", "12-bit AD/DA Card" }, - { "6666", "0201", "14-bit AD/DA Card" }, - { "6666", "1011", "Industrial Card" }, - { "6666", "1021", "8 photo couple 8 relay Card" }, - { "6666", "1022", "4 photo couple 4 relay Card" }, - { "6666", "1025", "16 photo couple 16 relay Card" }, - { "6666", "4000", "WatchDog Card" }, - { "6688", "1200", "CooVox TDM Analog Module" }, - { "6688", "1400", "CooVOX TDM GSM Module" }, - { "6688", "1600", "CooVOX TDM E1/T1 Module" }, - { "6688", "1800", "CooVOX TDM BRI Module" }, - { "6766", "3d00", "Arise-GT-10C0" }, - { "6766", "3d02", "Arise 1020" }, - { "6766", "3d40", "Arise-GT-10C0 High Definition Audio Controller" }, - { "6766", "3d41", "Arise 1020 High Definition Audio Controller" }, - { "7063", "2000", "HD-2000" }, - { "7063", "3000", "HD-3000" }, - { "7063", "5500", "HD5500 HDTV" }, - { "7357", "7910", "7910 [Althea]" }, - { "7401", "e100", "PTP3100 PCIe PTP Slave Clock" }, - { "7526", "0082", "HQ SSD 1TB" }, - { "7526", "0083", "HQ SSD 2TB M.2 NVMe" }, - { "8008", "0010", "WDOG1 [PCI-Watchdog 1]" }, - { "8008", "0011", "PWDOG2 [PCI-Watchdog 2]" }, - { "8008", "0015", "Clock77/PCI & Clock77/PCIe (DCF-77 receiver)" }, - { "8086", "0007", "82379AB" }, - { "8086", "0008", "Extended Express System Support Controller" }, - { "8086", "0039", "21145 Fast Ethernet" }, - { "8086", "0040", "Core Processor DRAM Controller" }, - { "8086", "0041", "Core Processor PCI Express x16 Root Port" }, - { "8086", "0042", "Core Processor Integrated Graphics Controller" }, - { "8086", "0043", "Core Processor Secondary PCI Express Root Port" }, - { "8086", "0044", "Core Processor DRAM Controller" }, - { "8086", "0045", "Core Processor PCI Express x16 Root Port" }, - { "8086", "0046", "Core Processor Integrated Graphics Controller" }, - { "8086", "0047", "Core Processor Secondary PCI Express Root Port" }, - { "8086", "0048", "Core Processor DRAM Controller" }, - { "8086", "0049", "Core Processor PCI Express x16 Root Port" }, - { "8086", "004a", "Core Processor Integrated Graphics Controller" }, - { "8086", "004b", "Core Processor Secondary PCI Express Root Port" }, - { "8086", "0050", "Core Processor Thermal Management Controller" }, - { "8086", "0069", "Core Processor DRAM Controller" }, - { "8086", "0082", "Centrino Advanced-N 6205 [Taylor Peak]" }, - { "8086", "0083", "Centrino Wireless-N 1000 [Condor Peak]" }, - { "8086", "0084", "Centrino Wireless-N 1000 [Condor Peak]" }, - { "8086", "0085", "Centrino Advanced-N 6205 [Taylor Peak]" }, - { "8086", "0087", "Centrino Advanced-N + WiMAX 6250 [Kilmer Peak]" }, - { "8086", "0089", "Centrino Advanced-N + WiMAX 6250 [Kilmer Peak]" }, - { "8086", "008a", "Centrino Wireless-N 1030 [Rainbow Peak]" }, - { "8086", "008b", "Centrino Wireless-N 1030 [Rainbow Peak]" }, - { "8086", "0090", "Centrino Advanced-N 6230 [Rainbow Peak]" }, - { "8086", "0091", "Centrino Advanced-N 6230 [Rainbow Peak]" }, - { "8086", "0100", "2nd Generation Core Processor Family DRAM Controller" }, - { "8086", "0101", "Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port" }, - { "8086", "0102", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0104", "2nd Generation Core Processor Family DRAM Controller" }, - { "8086", "0105", "Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port" }, - { "8086", "0106", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0108", "Xeon E3-1200 Processor Family DRAM Controller" }, - { "8086", "0109", "Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port" }, - { "8086", "010a", "Xeon E3-1200 Processor Family Integrated Graphics Controller" }, - { "8086", "010b", "Xeon E3-1200/2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "010c", "Xeon E3-1200/2nd Generation Core Processor Family DRAM Controller" }, - { "8086", "010d", "Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port" }, - { "8086", "010e", "Xeon E3-1200/2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0112", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0116", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0122", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0126", "2nd Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0150", "Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller" }, - { "8086", "0151", "Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port" }, - { "8086", "0152", "Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller" }, - { "8086", "0153", "3rd Gen Core Processor Thermal Subsystem" }, - { "8086", "0154", "3rd Gen Core processor DRAM Controller" }, - { "8086", "0155", "Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port" }, - { "8086", "0156", "3rd Gen Core processor Graphics Controller" }, - { "8086", "0158", "Xeon E3-1200 v2/Ivy Bridge DRAM Controller" }, - { "8086", "0159", "Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port" }, - { "8086", "015a", "Xeon E3-1200 v2/Ivy Bridge Graphics Controller" }, - { "8086", "015c", "Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller" }, - { "8086", "015d", "Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port" }, - { "8086", "015e", "Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller" }, - { "8086", "0162", "IvyBridge GT2 [HD Graphics 4000]" }, - { "8086", "0166", "3rd Gen Core processor Graphics Controller" }, - { "8086", "016a", "Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller" }, - { "8086", "0172", "Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller" }, - { "8086", "0176", "3rd Gen Core processor Graphics Controller" }, - { "8086", "0201", "Arctic Sound" }, - { "8086", "0284", "Comet Lake PCH-LP LPC Premium Controller/eSPI Controller" }, - { "8086", "02a3", "Comet Lake PCH-LP SMBus Host Controller" }, - { "8086", "02a4", "Comet Lake SPI (flash) Controller" }, - { "8086", "02a6", "Comet Lake North Peak" }, - { "8086", "02b0", "Comet Lake PCI Express Root Port #9" }, - { "8086", "02b1", "Comet Lake PCI Express Root Port #10" }, - { "8086", "02b3", "Comet Lake PCI Express Root Port #12" }, - { "8086", "02b4", "Comet Lake PCI Express Root Port #13" }, - { "8086", "02b8", "Comet Lake PCI Express Root Port #1" }, - { "8086", "02bc", "Comet Lake PCI Express Root Port #5" }, - { "8086", "02c5", "Comet Lake Serial IO I2C Host Controller" }, - { "8086", "02c8", "Comet Lake PCH-LP cAVS" }, - { "8086", "02d3", "Comet Lake SATA AHCI Controller" }, - { "8086", "02e0", "Comet Lake Management Engine Interface" }, - { "8086", "02e8", "Serial IO I2C Host Controller" }, - { "8086", "02e9", "Comet Lake Serial IO I2C Host Controller" }, - { "8086", "02ea", "Comet Lake PCH-LP LPSS: I2C Controller #2" }, - { "8086", "02ed", "Comet Lake PCH-LP USB 3.1 xHCI Host Controller" }, - { "8086", "02ef", "Comet Lake PCH-LP Shared SRAM" }, - { "8086", "02f0", "Comet Lake PCH-LP CNVi WiFi" }, - { "8086", "02f5", "Comet Lake PCH-LP SCS3" }, - { "8086", "02f9", "Comet Lake Thermal Subsytem" }, - { "8086", "02fc", "Comet Lake Integrated Sensor Solution" }, - { "8086", "0309", "80303 I/O Processor PCI-to-PCI Bridge" }, - { "8086", "030d", "80312 I/O Companion Chip PCI-to-PCI Bridge" }, - { "8086", "0326", "6700/6702PXH I/OxAPIC Interrupt Controller A" }, - { "8086", "0327", "6700PXH I/OxAPIC Interrupt Controller B" }, - { "8086", "0329", "6700PXH PCI Express-to-PCI Bridge A" }, - { "8086", "032a", "6700PXH PCI Express-to-PCI Bridge B" }, - { "8086", "032c", "6702PXH PCI Express-to-PCI Bridge A" }, - { "8086", "0330", "80332 [Dobson] I/O processor (A-Segment Bridge)" }, - { "8086", "0331", "80332 [Dobson] I/O processor (A-Segment IOAPIC)" }, - { "8086", "0332", "80332 [Dobson] I/O processor (B-Segment Bridge)" }, - { "8086", "0333", "80332 [Dobson] I/O processor (B-Segment IOAPIC)" }, - { "8086", "0334", "80332 [Dobson] I/O processor (ATU)" }, - { "8086", "0335", "80331 [Lindsay] I/O processor (PCI-X Bridge)" }, - { "8086", "0336", "80331 [Lindsay] I/O processor (ATU)" }, - { "8086", "0340", "41210 [Lanai] Serial to Parallel PCI Bridge (A-Segment Bridge)" }, - { "8086", "0341", "41210 [Lanai] Serial to Parallel PCI Bridge (B-Segment Bridge)" }, - { "8086", "0370", "80333 Segment-A PCIe Express to PCI-X bridge" }, - { "8086", "0371", "80333 A-Bus IOAPIC" }, - { "8086", "0372", "80333 Segment-B PCIe Express to PCI-X bridge" }, - { "8086", "0373", "80333 B-Bus IOAPIC" }, - { "8086", "0374", "80333 Address Translation Unit" }, - { "8086", "0402", "Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller" }, - { "8086", "0406", "Haswell Integrated Graphics Controller" }, - { "8086", "040a", "Xeon E3-1200 v3 Processor Integrated Graphics Controller" }, - { "8086", "0412", "Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller" }, - { "8086", "0416", "4th Gen Core Processor Integrated Graphics Controller" }, - { "8086", "041a", "Xeon E3-1200 v3 Processor Integrated Graphics Controller" }, - { "8086", "041e", "4th Generation Core Processor Family Integrated Graphics Controller" }, - { "8086", "0434", "DH89XXCC Series QAT" }, - { "8086", "0435", "DH895XCC Series QAT" }, - { "8086", "0436", "DH8900CC Null Device" }, - { "8086", "0438", "DH8900CC Series Gigabit Network Connection" }, - { "8086", "043a", "DH8900CC Series Gigabit Fiber Network Connection" }, - { "8086", "043c", "DH8900CC Series Gigabit Backplane Network Connection" }, - { "8086", "0440", "DH8900CC Series Gigabit SFP Network Connection" }, - { "8086", "0442", "DH89XXCC Series QAT Virtual Function" }, - { "8086", "0443", "DH895XCC Series QAT Virtual Function" }, - { "8086", "0482", "82375EB/SB PCI to EISA Bridge" }, - { "8086", "0483", "82424TX/ZX [Saturn] CPU to PCI bridge" }, - { "8086", "0484", "82378ZB/IB, 82379AB (SIO, SIO.A) PCI to ISA Bridge" }, - { "8086", "0486", "82425EX/ZX [Aries] PCIset with ISA bridge" }, - { "8086", "04a3", "82434LX/NX [Mercury/Neptune] Processor to PCI bridge" }, - { "8086", "04d0", "82437FX [Triton FX]" }, - { "8086", "0500", "E8870 Processor bus control" }, - { "8086", "0501", "E8870 Memory controller" }, - { "8086", "0502", "E8870 Scalability Port 0" }, - { "8086", "0503", "E8870 Scalability Port 1" }, - { "8086", "0510", "E8870IO Hub Interface Port 0 registers (8-bit compatibility port)" }, - { "8086", "0511", "E8870IO Hub Interface Port 1 registers" }, - { "8086", "0512", "E8870IO Hub Interface Port 2 registers" }, - { "8086", "0513", "E8870IO Hub Interface Port 3 registers" }, - { "8086", "0514", "E8870IO Hub Interface Port 4 registers" }, - { "8086", "0515", "E8870IO General SIOH registers" }, - { "8086", "0516", "E8870IO RAS registers" }, - { "8086", "0530", "E8870SP Scalability Port 0 registers" }, - { "8086", "0531", "E8870SP Scalability Port 1 registers" }, - { "8086", "0532", "E8870SP Scalability Port 2 registers" }, - { "8086", "0533", "E8870SP Scalability Port 3 registers" }, - { "8086", "0534", "E8870SP Scalability Port 4 registers" }, - { "8086", "0535", "E8870SP Scalability Port 5 registers" }, - { "8086", "0536", "E8870SP Interleave registers 0 and 1" }, - { "8086", "0537", "E8870SP Interleave registers 2 and 3" }, - { "8086", "0600", "RAID Controller" }, - { "8086", "061f", "80303 I/O Processor" }, - { "8086", "0684", "H470 Chipset LPC/eSPI Controller" }, - { "8086", "0687", "Q470 Chipset LPC/eSPI Controller" }, - { "8086", "068d", "Comet Lake LPC Controller" }, - { "8086", "06a3", "Comet Lake PCH SMBus Controller" }, - { "8086", "06a4", "Comet Lake PCH SPI Controller" }, - { "8086", "06a8", "Comet Lake PCH Serial IO UART Host Controller #0" }, - { "8086", "06a9", "Comet Lake PCH Serial IO UART Host Controller #1" }, - { "8086", "06aa", "Comet Lake PCH Serial IO SPI Controller #0" }, - { "8086", "06ab", "Comet Lake PCH Serial IO SPI Controller #1" }, - { "8086", "06ac", "Comet Lake PCI Express Root Port #21" }, - { "8086", "06b0", "Comet Lake PCI Express Root Port #9" }, - { "8086", "06bd", "Comet Lake PCIe Port #6" }, - { "8086", "06c0", "Comet Lake PCI Express Root Port #17" }, - { "8086", "06c8", "Comet Lake PCH cAVS" }, - { "8086", "06d2", "Comet Lake SATA AHCI Controller" }, - { "8086", "06d6", "Comet Lake PCH-H RAID" }, - { "8086", "06d7", "Comet Lake PCH-H RAID" }, - { "8086", "06e0", "Comet Lake HECI Controller" }, - { "8086", "06e3", "Comet Lake Keyboard and Text (KT) Redirection" }, - { "8086", "06e8", "Comet Lake PCH Serial IO I2C Controller #0" }, - { "8086", "06e9", "Comet Lake PCH Serial IO I2C Controller #1" }, - { "8086", "06ea", "Comet Lake PCH Serial IO I2C Controller #2" }, - { "8086", "06eb", "Comet Lake PCH Serial IO I2C Controller #3" }, - { "8086", "06ed", "Comet Lake USB 3.1 xHCI Host Controller" }, - { "8086", "06ef", "Comet Lake PCH Shared SRAM" }, - { "8086", "06f0", "Comet Lake PCH CNVi WiFi" }, - { "8086", "06f9", "Comet Lake PCH Thermal Controller" }, - { "8086", "06fb", "Comet Lake PCH Serial IO SPI Controller #2" }, - { "8086", "0700", "CE Media Processor A/V Bridge" }, - { "8086", "0701", "CE Media Processor NAND Flash Controller" }, - { "8086", "0703", "CE Media Processor Media Control Unit 1" }, - { "8086", "0704", "CE Media Processor Video Capture Interface" }, - { "8086", "0707", "CE Media Processor SPI Slave" }, - { "8086", "0708", "Atom Processor CE 4100" }, - { "8086", "0709", "Atom Processor CE 4200" }, - { "8086", "0800", "Moorestown SPI Ctrl 0" }, - { "8086", "0801", "Moorestown SPI Ctrl 1" }, - { "8086", "0802", "Moorestown I2C 0" }, - { "8086", "0803", "Moorestown I2C 1" }, - { "8086", "0804", "Moorestown I2C 2" }, - { "8086", "0805", "Moorestown Keyboard Ctrl" }, - { "8086", "0806", "Moorestown USB Ctrl" }, - { "8086", "0807", "Moorestown SD Host Ctrl 0" }, - { "8086", "0808", "Moorestown SD Host Ctrl 1" }, - { "8086", "0809", "Moorestown NAND Ctrl" }, - { "8086", "080a", "Moorestown Audio Ctrl" }, - { "8086", "080b", "Moorestown ISP" }, - { "8086", "080c", "Moorestown Security Controller" }, - { "8086", "080d", "Moorestown External Displays" }, - { "8086", "080e", "Moorestown SCU IPC" }, - { "8086", "080f", "Moorestown GPIO Controller" }, - { "8086", "0810", "Moorestown Power Management Unit" }, - { "8086", "0811", "Moorestown OTG Ctrl" }, - { "8086", "0812", "Moorestown SPI Ctrl 2" }, - { "8086", "0813", "Moorestown SC DMA" }, - { "8086", "0814", "Moorestown LPE DMA" }, - { "8086", "0815", "Moorestown SSP0" }, - { "8086", "0817", "Medfield Serial IO I2C Controller #3" }, - { "8086", "0818", "Medfield Serial IO I2C Controller #4" }, - { "8086", "0819", "Medfield Serial IO I2C Controller #5" }, - { "8086", "081a", "Medfield GPIO Controller [Core]" }, - { "8086", "081b", "Medfield Serial IO HSUART Controller #1" }, - { "8086", "081c", "Medfield Serial IO HSUART Controller #2" }, - { "8086", "081d", "Medfield Serial IO HSUART Controller #3" }, - { "8086", "081e", "Medfield Serial IO HSUART DMA Controller" }, - { "8086", "081f", "Medfield GPIO Controller [AON]" }, - { "8086", "0820", "Medfield SD Host Controller" }, - { "8086", "0821", "Medfield SDIO Controller #1" }, - { "8086", "0822", "Medfield SDIO Controller #2" }, - { "8086", "0823", "Medfield eMMC Controller #0" }, - { "8086", "0824", "Medfield eMMC Controller #1" }, - { "8086", "0827", "Medfield Serial IO DMA Controller" }, - { "8086", "0828", "Medfield Power Management Unit" }, - { "8086", "0829", "Medfield USB Device Controller (OTG)" }, - { "8086", "082a", "Medfield SCU IPC" }, - { "8086", "082c", "Medfield Serial IO I2C Controller #0" }, - { "8086", "082d", "Medfield Serial IO I2C Controller #1" }, - { "8086", "082e", "Medfield Serial IO I2C Controller #2" }, - { "8086", "0885", "Centrino Wireless-N + WiMAX 6150" }, - { "8086", "0886", "Centrino Wireless-N + WiMAX 6150" }, - { "8086", "0887", "Centrino Wireless-N 2230" }, - { "8086", "0888", "Centrino Wireless-N 2230" }, - { "8086", "088e", "Centrino Advanced-N 6235" }, - { "8086", "088f", "Centrino Advanced-N 6235" }, - { "8086", "0890", "Centrino Wireless-N 2200" }, - { "8086", "0891", "Centrino Wireless-N 2200" }, - { "8086", "0892", "Centrino Wireless-N 135" }, - { "8086", "0893", "Centrino Wireless-N 135" }, - { "8086", "0894", "Centrino Wireless-N 105" }, - { "8086", "0895", "Centrino Wireless-N 105" }, - { "8086", "0896", "Centrino Wireless-N 130" }, - { "8086", "0897", "Centrino Wireless-N 130" }, - { "8086", "08a7", "Quark SoC X1000 SDIO / eMMC Controller" }, - { "8086", "08ae", "Centrino Wireless-N 100" }, - { "8086", "08af", "Centrino Wireless-N 100" }, - { "8086", "08b1", "Wireless 7260" }, - { "8086", "08b2", "Wireless 7260" }, - { "8086", "08b3", "Wireless 3160" }, - { "8086", "08b4", "Wireless 3160" }, - { "8086", "08cf", "Atom Processor Z2760 Integrated Graphics Controller" }, - { "8086", "0931", "Atom Processor CE 2600 [Puma 6]" }, - { "8086", "0934", "Quark SoC X1000 I2C Controller and GPIO Controller" }, - { "8086", "0935", "Quark SoC X1000 SPI Controller" }, - { "8086", "0936", "Quark SoC X1000 HS-UART" }, - { "8086", "0937", "Quark SoC X1000 10/100 Ethernet MAC" }, - { "8086", "0939", "Quark SoC X1000 USB EHCI Host Controller / USB 2.0 Device" }, - { "8086", "093a", "Quark SoC X1000 USB OHCI Host Controller" }, - { "8086", "0953", "PCIe Data Center SSD" }, - { "8086", "0958", "Quark SoC X1000 Host Bridge" }, - { "8086", "095a", "Wireless 7265" }, - { "8086", "095b", "Wireless 7265" }, - { "8086", "095e", "Quark SoC X1000 Legacy Bridge" }, - { "8086", "0960", "80960RP (i960RP) Microprocessor/Bridge" }, - { "8086", "0962", "80960RM (i960RM) Bridge" }, - { "8086", "0964", "80960RP (i960RP) Microprocessor/Bridge" }, - { "8086", "0a03", "Haswell-ULT Thermal Subsystem" }, - { "8086", "0a04", "Haswell-ULT DRAM Controller" }, - { "8086", "0a06", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a0c", "Haswell-ULT HD Audio Controller" }, - { "8086", "0a16", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a22", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a26", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a2a", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a2e", "Haswell-ULT Integrated Graphics Controller" }, - { "8086", "0a53", "DC P3520 SSD" }, - { "8086", "0a54", "NVMe Datacenter SSD [3DNAND, Beta Rock Controller]" }, - { "8086", "0a55", "NVMe DC SSD [3DNAND, Beta Rock Controller]" }, - { "8086", "0b26", "Thunderbolt 4 Bridge [Goshen Ridge 2020]" }, - { "8086", "0b27", "Thunderbolt 4 USB Controller [Goshen Ridge 2020]" }, - { "8086", "0b60", "NVMe DC SSD [3DNAND, Sentinel Rock Controller]" }, - { "8086", "0bd0", "Ponte Vecchio 2T" }, - { "8086", "0bd5", "Ponte Vecchio 1T" }, - { "8086", "0be0", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be1", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be2", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be3", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be4", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be5", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be6", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be7", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be8", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0be9", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bea", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0beb", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bec", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bed", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bee", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bef", "Atom Processor D2xxx/N2xxx Integrated Graphics Controller" }, - { "8086", "0bf0", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf1", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf2", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf3", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf4", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf5", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf6", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0bf7", "Atom Processor D2xxx/N2xxx DRAM Controller" }, - { "8086", "0c00", "4th Gen Core Processor DRAM Controller" }, - { "8086", "0c01", "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller" }, - { "8086", "0c04", "Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller" }, - { "8086", "0c05", "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x8 Controller" }, - { "8086", "0c08", "Xeon E3-1200 v3 Processor DRAM Controller" }, - { "8086", "0c09", "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x4 Controller" }, - { "8086", "0c0c", "Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller" }, - { "8086", "0c40", "Atom Processor CE 5300" }, - { "8086", "0c46", "Atom Processor S1200 PCI Express Root Port 1" }, - { "8086", "0c47", "Atom Processor S1200 PCI Express Root Port 2" }, - { "8086", "0c48", "Atom Processor S1200 PCI Express Root Port 3" }, - { "8086", "0c49", "Atom Processor S1200 PCI Express Root Port 4" }, - { "8086", "0c4e", "Atom Processor S1200 NTB Primary" }, - { "8086", "0c50", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device" }, - { "8086", "0c51", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device" }, - { "8086", "0c52", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device" }, - { "8086", "0c53", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QuickData Technology Device" }, - { "8086", "0c54", "Atom Processor S1200 Internal" }, - { "8086", "0c55", "Atom Processor S1200 DFX 1" }, - { "8086", "0c56", "Atom Processor S1200 DFX 2" }, - { "8086", "0c59", "Atom Processor S1200 SMBus 2.0 Controller 0" }, - { "8086", "0c5a", "Atom Processor S1200 SMBus 2.0 Controller 1" }, - { "8086", "0c5b", "Atom Processor S1200 SMBus Controller 2" }, - { "8086", "0c5c", "Atom Processor S1200 SMBus Controller 3" }, - { "8086", "0c5d", "Atom Processor S1200 SMBus Controller 4" }, - { "8086", "0c5e", "Atom Processor S1200 SMBus Controller 5" }, - { "8086", "0c5f", "Atom Processor S1200 UART" }, - { "8086", "0c60", "Atom Processor S1200 Integrated Legacy Bus" }, - { "8086", "0c70", "Atom Processor S1200 Internal" }, - { "8086", "0c71", "Atom Processor S1200 Internal" }, - { "8086", "0c72", "Atom Processor S1200 Internal" }, - { "8086", "0c73", "Atom Processor S1200 Internal" }, - { "8086", "0c74", "Atom Processor S1200 Internal" }, - { "8086", "0c75", "Atom Processor S1200 Internal" }, - { "8086", "0c76", "Atom Processor S1200 Internal" }, - { "8086", "0c77", "Atom Processor S1200 Internal" }, - { "8086", "0c78", "Atom Processor S1200 Internal" }, - { "8086", "0c79", "Atom Processor S1200 Internal" }, - { "8086", "0c7a", "Atom Processor S1200 Internal" }, - { "8086", "0c7b", "Atom Processor S1200 Internal" }, - { "8086", "0c7c", "Atom Processor S1200 Internal" }, - { "8086", "0c7d", "Atom Processor S1200 Internal" }, - { "8086", "0c7e", "Atom Processor S1200 Internal" }, - { "8086", "0c7f", "Atom Processor S1200 Internal" }, - { "8086", "0cf8", "Ethernet Controller X710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking" }, - { "8086", "0d00", "Crystal Well DRAM Controller" }, - { "8086", "0d01", "Crystal Well PCI Express x16 Controller" }, - { "8086", "0d04", "Crystal Well DRAM Controller" }, - { "8086", "0d05", "Crystal Well PCI Express x8 Controller" }, - { "8086", "0d09", "Crystal Well PCI Express x4 Controller" }, - { "8086", "0d0c", "Crystal Well HD Audio Controller" }, - { "8086", "0d16", "Crystal Well Integrated Graphics Controller" }, - { "8086", "0d26", "Crystal Well Integrated Graphics Controller" }, - { "8086", "0d36", "Crystal Well Integrated Graphics Controller" }, - { "8086", "0d4c", "Ethernet Connection (11) I219-LM" }, - { "8086", "0d4d", "Ethernet Connection (11) I219-V" }, - { "8086", "0d4e", "Ethernet Connection (10) I219-LM" }, - { "8086", "0d4f", "Ethernet Connection (10) I219-V" }, - { "8086", "0d53", "Ethernet Connection (12) I219-LM" }, - { "8086", "0d55", "Ethernet Connection (12) I219-V" }, - { "8086", "0d58", "Ethernet Controller XXV710 Intel(R) FPGA Programmable Acceleration Card N3000 for Networking" }, - { "8086", "0d9f", "Ethernet Controller (2) I225-IT" }, - { "8086", "0dd2", "Ethernet Network Adapter I710" }, - { "8086", "0dd5", "Ethernet Adaptive Virtual Function" }, - { "8086", "0dda", "Ethernet Connection X722 for 10GbE SFP+" }, - { "8086", "0e00", "Xeon E7 v2/Xeon E5 v2/Core i7 DMI2" }, - { "8086", "0e01", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port in DMI2 Mode" }, - { "8086", "0e02", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a" }, - { "8086", "0e03", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1b" }, - { "8086", "0e04", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a" }, - { "8086", "0e05", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2b" }, - { "8086", "0e06", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c" }, - { "8086", "0e07", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2d" }, - { "8086", "0e08", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a" }, - { "8086", "0e09", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3b" }, - { "8086", "0e0a", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3c" }, - { "8086", "0e0b", "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3d" }, - { "8086", "0e10", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers" }, - { "8086", "0e13", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers" }, - { "8086", "0e17", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers" }, - { "8086", "0e18", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers" }, - { "8086", "0e1c", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO Configuration Registers" }, - { "8086", "0e1d", "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe" }, - { "8086", "0e1e", "Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers" }, - { "8086", "0e1f", "Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers" }, - { "8086", "0e20", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0" }, - { "8086", "0e21", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1" }, - { "8086", "0e22", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2" }, - { "8086", "0e23", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3" }, - { "8086", "0e24", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4" }, - { "8086", "0e25", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5" }, - { "8086", "0e26", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 6" }, - { "8086", "0e27", "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7" }, - { "8086", "0e28", "Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc" }, - { "8086", "0e29", "Xeon E7 v2/Xeon E5 v2/Core i7 Memory Hotplug" }, - { "8086", "0e2a", "Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS" }, - { "8086", "0e2c", "Xeon E7 v2/Xeon E5 v2/Core i7 IOAPIC" }, - { "8086", "0e2e", "Xeon E7 v2/Xeon E5 v2/Core i7 CBDMA" }, - { "8086", "0e2f", "Xeon E7 v2/Xeon E5 v2/Core i7 CBDMA" }, - { "8086", "0e30", "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0" }, - { "8086", "0e32", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0" }, - { "8086", "0e33", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1" }, - { "8086", "0e34", "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe" }, - { "8086", "0e36", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring" }, - { "8086", "0e37", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring" }, - { "8086", "0e38", "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1" }, - { "8086", "0e3a", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2" }, - { "8086", "0e3e", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring" }, - { "8086", "0e3f", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring" }, - { "8086", "0e40", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 2" }, - { "8086", "0e41", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers" }, - { "8086", "0e43", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 2" }, - { "8086", "0e44", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 2" }, - { "8086", "0e45", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register" }, - { "8086", "0e47", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register" }, - { "8086", "0e60", "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 1" }, - { "8086", "0e68", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Target Address/Thermal Registers" }, - { "8086", "0e6a", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers" }, - { "8086", "0e6b", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers" }, - { "8086", "0e6c", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers" }, - { "8086", "0e6d", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder Registers" }, - { "8086", "0e71", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers" }, - { "8086", "0e74", "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe" }, - { "8086", "0e75", "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe" }, - { "8086", "0e77", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers" }, - { "8086", "0e79", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 RAS Registers" }, - { "8086", "0e7d", "Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers" }, - { "8086", "0e7f", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers" }, - { "8086", "0e80", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0" }, - { "8086", "0e81", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers" }, - { "8086", "0e83", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 0" }, - { "8086", "0e84", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 0" }, - { "8086", "0e85", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register" }, - { "8086", "0e87", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Registers" }, - { "8086", "0e90", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1" }, - { "8086", "0e93", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1" }, - { "8086", "0e94", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Reut 1" }, - { "8086", "0e95", "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link Agent Register" }, - { "8086", "0ea0", "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0" }, - { "8086", "0ea8", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers" }, - { "8086", "0eaa", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers" }, - { "8086", "0eab", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers" }, - { "8086", "0eac", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers" }, - { "8086", "0ead", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers" }, - { "8086", "0eae", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers" }, - { "8086", "0eaf", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers" }, - { "8086", "0eb0", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0" }, - { "8086", "0eb1", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1" }, - { "8086", "0eb2", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0" }, - { "8086", "0eb3", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1" }, - { "8086", "0eb4", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2" }, - { "8086", "0eb5", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3" }, - { "8086", "0eb6", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2" }, - { "8086", "0eb7", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3" }, - { "8086", "0ebc", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers" }, - { "8086", "0ebe", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers" }, - { "8086", "0ebf", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO Registers" }, - { "8086", "0ec0", "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0" }, - { "8086", "0ec1", "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1" }, - { "8086", "0ec2", "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2" }, - { "8086", "0ec3", "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3" }, - { "8086", "0ec4", "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 4" }, - { "8086", "0ec8", "Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder" }, - { "8086", "0ec9", "Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers" }, - { "8086", "0eca", "Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers" }, - { "8086", "0ed8", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0ed9", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0edc", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0edd", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0ede", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0edf", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0ee0", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee1", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee2", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee3", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee4", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee5", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee6", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee7", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee8", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ee9", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0eea", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0eeb", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0eec", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0eed", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0eee", "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers" }, - { "8086", "0ef0", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 0" }, - { "8086", "0ef1", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 1" }, - { "8086", "0ef2", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 0" }, - { "8086", "0ef3", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 1" }, - { "8086", "0ef4", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 2" }, - { "8086", "0ef5", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 Thermal Control 3" }, - { "8086", "0ef6", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 2" }, - { "8086", "0ef7", "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel 0-3 ERROR Registers 3" }, - { "8086", "0ef8", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0ef9", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0efa", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0efb", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0efc", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0efd", "Xeon E7 v2/Xeon E5 v2/Core i7 DDRIO" }, - { "8086", "0f00", "Atom Processor Z36xxx/Z37xxx Series SoC Transaction Register" }, - { "8086", "0f04", "Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller" }, - { "8086", "0f06", "Atom Processor Z36xxx/Z37xxx Series LPIO1 DMA Controller" }, - { "8086", "0f08", "Atom Processor Z36xxx/Z37xxx Series LPIO1 PWM Controller" }, - { "8086", "0f09", "Atom Processor Z36xxx/Z37xxx Series LPIO1 PWM Controller" }, - { "8086", "0f0a", "Atom Processor Z36xxx/Z37xxx Series LPIO1 HSUART Controller #1" }, - { "8086", "0f0c", "Atom Processor Z36xxx/Z37xxx Series LPIO1 HSUART Controller #2" }, - { "8086", "0f0e", "Atom Processor Z36xxx/Z37xxx Series LPIO1 SPI Controller" }, - { "8086", "0f12", "Atom Processor E3800/CE2700 Series SMBus Controller" }, - { "8086", "0f14", "Atom Processor Z36xxx/Z37xxx Series SDIO Controller" }, - { "8086", "0f15", "Atom Processor Z36xxx/Z37xxx Series SDIO Controller" }, - { "8086", "0f16", "Atom Processor Z36xxx/Z37xxx Series SDIO Controller" }, - { "8086", "0f18", "Atom Processor Z36xxx/Z37xxx Series Trusted Execution Engine" }, - { "8086", "0f1c", "Atom Processor Z36xxx/Z37xxx Series Power Control Unit" }, - { "8086", "0f20", "Atom Processor E3800 Series SATA IDE Controller" }, - { "8086", "0f21", "Atom Processor E3800 Series SATA IDE Controller" }, - { "8086", "0f22", "Atom Processor E3800 Series SATA AHCI Controller" }, - { "8086", "0f23", "Atom Processor E3800 Series SATA AHCI Controller" }, - { "8086", "0f28", "Atom Processor Z36xxx/Z37xxx Series LPE Audio Controller" }, - { "8086", "0f31", "Atom Processor Z36xxx/Z37xxx Series Graphics & Display" }, - { "8086", "0f34", "Atom Processor Z36xxx/Z37xxx Series USB EHCI" }, - { "8086", "0f35", "Atom Processor Z36xxx/Z37xxx, Celeron N2000 Series USB xHCI" }, - { "8086", "0f37", "Atom Processor Z36xxx/Z37xxx Series OTG USB Device" }, - { "8086", "0f38", "Atom Processor Z36xxx/Z37xxx Series Camera ISP" }, - { "8086", "0f40", "Atom Processor Z36xxx/Z37xxx Series LPIO2 DMA Controller" }, - { "8086", "0f41", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #1" }, - { "8086", "0f42", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #2" }, - { "8086", "0f43", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #3" }, - { "8086", "0f44", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #4" }, - { "8086", "0f45", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #5" }, - { "8086", "0f46", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #6" }, - { "8086", "0f47", "Atom Processor Z36xxx/Z37xxx Series LPIO2 I2C Controller #7" }, - { "8086", "0f48", "Atom Processor E3800 Series PCI Express Root Port 1" }, - { "8086", "0f4a", "Atom Processor E3800 Series PCI Express Root Port 2" }, - { "8086", "0f4c", "Atom Processor E3800 Series PCI Express Root Port 3" }, - { "8086", "0f4e", "Atom Processor E3800 Series PCI Express Root Port 4" }, - { "8086", "0f50", "Atom Processor E3800 Series eMMC 4.5 Controller" }, - { "8086", "1000", "82542 Gigabit Ethernet Controller (Fiber)" }, - { "8086", "1001", "82543GC Gigabit Ethernet Controller (Fiber)" }, - { "8086", "1002", "Pro 100 LAN+Modem 56 Cardbus II" }, - { "8086", "1004", "82543GC Gigabit Ethernet Controller (Copper)" }, - { "8086", "1008", "82544EI Gigabit Ethernet Controller (Copper)" }, - { "8086", "1009", "82544EI Gigabit Ethernet Controller (Fiber)" }, - { "8086", "100a", "82540EM Gigabit Ethernet Controller" }, - { "8086", "100c", "82544GC Gigabit Ethernet Controller (Copper)" }, - { "8086", "100d", "82544GC Gigabit Ethernet Controller (LOM)" }, - { "8086", "100e", "82540EM Gigabit Ethernet Controller" }, - { "8086", "100f", "82545EM Gigabit Ethernet Controller (Copper)" }, - { "8086", "1010", "82546EB Gigabit Ethernet Controller (Copper)" }, - { "8086", "1011", "82545EM Gigabit Ethernet Controller (Fiber)" }, - { "8086", "1012", "82546EB Gigabit Ethernet Controller (Fiber)" }, - { "8086", "1013", "82541EI Gigabit Ethernet Controller" }, - { "8086", "1014", "82541ER Gigabit Ethernet Controller" }, - { "8086", "1015", "82540EM Gigabit Ethernet Controller (LOM)" }, - { "8086", "1016", "82540EP Gigabit Ethernet Controller (Mobile)" }, - { "8086", "1017", "82540EP Gigabit Ethernet Controller" }, - { "8086", "1018", "82541EI Gigabit Ethernet Controller" }, - { "8086", "1019", "82547EI Gigabit Ethernet Controller" }, - { "8086", "101a", "82547EI Gigabit Ethernet Controller (Mobile)" }, - { "8086", "101d", "82546EB Gigabit Ethernet Controller" }, - { "8086", "101e", "82540EP Gigabit Ethernet Controller (Mobile)" }, - { "8086", "101f", "Ethernet Controller V710 for 5GBASE-T" }, - { "8086", "1026", "82545GM Gigabit Ethernet Controller" }, - { "8086", "1027", "82545GM Gigabit Ethernet Controller" }, - { "8086", "1028", "82545GM Gigabit Ethernet Controller" }, - { "8086", "1029", "82559 Ethernet Controller" }, - { "8086", "1030", "82559 InBusiness 10/100" }, - { "8086", "1031", "82801CAM (ICH3) PRO/100 VE (LOM) Ethernet Controller" }, - { "8086", "1032", "82801CAM (ICH3) PRO/100 VE Ethernet Controller" }, - { "8086", "1033", "82801CAM (ICH3) PRO/100 VM (LOM) Ethernet Controller" }, - { "8086", "1034", "82801CAM (ICH3) PRO/100 VM Ethernet Controller" }, - { "8086", "1035", "82801CAM (ICH3)/82562EH (LOM) Ethernet Controller" }, - { "8086", "1036", "82801CAM (ICH3) 82562EH Ethernet Controller" }, - { "8086", "1037", "82801CAM (ICH3) Chipset Ethernet Controller" }, - { "8086", "1038", "82801CAM (ICH3) PRO/100 VM (KM) Ethernet Controller" }, - { "8086", "1039", "82801DB PRO/100 VE (LOM) Ethernet Controller" }, - { "8086", "103a", "82801DB PRO/100 VE (CNR) Ethernet Controller" }, - { "8086", "103b", "82801DB PRO/100 VM (LOM) Ethernet Controller" }, - { "8086", "103c", "82801DB PRO/100 VM (CNR) Ethernet Controller" }, - { "8086", "103d", "82801DB PRO/100 VE (MOB) Ethernet Controller" }, - { "8086", "103e", "82801DB PRO/100 VM (MOB) Ethernet Controller" }, - { "8086", "1040", "536EP Data Fax Modem" }, - { "8086", "1043", "PRO/Wireless LAN 2100 3B Mini PCI Adapter" }, - { "8086", "1048", "82597EX 10GbE Ethernet Controller" }, - { "8086", "1049", "82566MM Gigabit Network Connection" }, - { "8086", "104a", "82566DM Gigabit Network Connection" }, - { "8086", "104b", "82566DC Gigabit Network Connection" }, - { "8086", "104c", "82562V 10/100 Network Connection" }, - { "8086", "104d", "82566MC Gigabit Network Connection" }, - { "8086", "104e", "Ethernet Controller X710 for 10 Gigabit SFP+" }, - { "8086", "104f", "Ethernet Controller X710 for 10 Gigabit backplane" }, - { "8086", "1050", "82562EZ 10/100 Ethernet Controller" }, - { "8086", "1051", "82801EB/ER (ICH5/ICH5R) integrated LAN Controller" }, - { "8086", "1052", "PRO/100 VM Network Connection" }, - { "8086", "1053", "PRO/100 VM Network Connection" }, - { "8086", "1054", "PRO/100 VE Network Connection" }, - { "8086", "1055", "PRO/100 VM Network Connection" }, - { "8086", "1056", "PRO/100 VE Network Connection" }, - { "8086", "1057", "PRO/100 VE Network Connection" }, - { "8086", "1059", "82551QM Ethernet Controller" }, - { "8086", "105b", "82546GB Gigabit Ethernet Controller (Copper)" }, - { "8086", "105e", "82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications)" }, - { "8086", "105f", "82571EB Gigabit Ethernet Controller" }, - { "8086", "1060", "82571EB Gigabit Ethernet Controller" }, - { "8086", "1064", "82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller" }, - { "8086", "1065", "82562ET/EZ/GT/GZ - PRO/100 VE Ethernet Controller" }, - { "8086", "1066", "82562 EM/EX/GX - PRO/100 VM (LOM) Ethernet Controller" }, - { "8086", "1067", "82562 EM/EX/GX - PRO/100 VM Ethernet Controller" }, - { "8086", "1068", "82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller Mobile" }, - { "8086", "1069", "82562EM/EX/GX - PRO/100 VM (LOM) Ethernet Controller Mobile" }, - { "8086", "106a", "82562G - PRO/100 VE (LOM) Ethernet Controller" }, - { "8086", "106b", "82562G - PRO/100 VE Ethernet Controller Mobile" }, - { "8086", "1075", "82547GI Gigabit Ethernet Controller" }, - { "8086", "1076", "82541GI Gigabit Ethernet Controller" }, - { "8086", "1077", "82541GI Gigabit Ethernet Controller" }, - { "8086", "1078", "82541ER Gigabit Ethernet Controller" }, - { "8086", "1079", "82546GB Gigabit Ethernet Controller" }, - { "8086", "107a", "82546GB Gigabit Ethernet Controller" }, - { "8086", "107b", "82546GB Gigabit Ethernet Controller" }, - { "8086", "107c", "82541PI Gigabit Ethernet Controller" }, - { "8086", "107d", "82572EI Gigabit Ethernet Controller (Copper)" }, - { "8086", "107e", "82572EI Gigabit Ethernet Controller (Fiber)" }, - { "8086", "107f", "82572EI Gigabit Ethernet Controller" }, - { "8086", "1080", "FA82537EP 56K V.92 Data/Fax Modem PCI" }, - { "8086", "1081", "631xESB/632xESB LAN Controller Copper" }, - { "8086", "1082", "631xESB/632xESB LAN Controller fiber" }, - { "8086", "1083", "631xESB/632xESB LAN Controller SERDES" }, - { "8086", "1084", "631xESB/632xESB IDE Redirection" }, - { "8086", "1085", "631xESB/632xESB Serial Port Redirection" }, - { "8086", "1086", "631xESB/632xESB IPMI/KCS0" }, - { "8086", "1087", "631xESB/632xESB UHCI Redirection" }, - { "8086", "1089", "631xESB/632xESB BT" }, - { "8086", "108a", "82546GB Gigabit Ethernet Controller" }, - { "8086", "108b", "82573V Gigabit Ethernet Controller (Copper)" }, - { "8086", "108c", "82573E Gigabit Ethernet Controller (Copper)" }, - { "8086", "108e", "82573E KCS (Active Management)" }, - { "8086", "108f", "Active Management Technology - SOL" }, - { "8086", "1091", "PRO/100 VM Network Connection" }, - { "8086", "1092", "PRO/100 VE Network Connection" }, - { "8086", "1093", "PRO/100 VM Network Connection" }, - { "8086", "1094", "PRO/100 VE Network Connection" }, - { "8086", "1095", "PRO/100 VE Network Connection" }, - { "8086", "1096", "80003ES2LAN Gigabit Ethernet Controller (Copper)" }, - { "8086", "1097", "631xESB/632xESB DPT LAN Controller (Fiber)" }, - { "8086", "1098", "80003ES2LAN Gigabit Ethernet Controller (Serdes)" }, - { "8086", "1099", "82546GB Gigabit Ethernet Controller (Copper)" }, - { "8086", "109a", "82573L Gigabit Ethernet Controller" }, - { "8086", "109b", "82546GB PRO/1000 GF Quad Port Server Adapter" }, - { "8086", "109e", "82597EX 10GbE Ethernet Controller" }, - { "8086", "10a0", "82571EB PRO/1000 AT Quad Port Bypass Adapter" }, - { "8086", "10a1", "82571EB PRO/1000 AF Quad Port Bypass Adapter" }, - { "8086", "10a4", "82571EB Gigabit Ethernet Controller" }, - { "8086", "10a5", "82571EB Gigabit Ethernet Controller (Fiber)" }, - { "8086", "10a6", "82599EB 10-Gigabit Dummy Function" }, - { "8086", "10a7", "82575EB Gigabit Network Connection" }, - { "8086", "10a9", "82575EB Gigabit Backplane Connection" }, - { "8086", "10b0", "82573L PRO/1000 PL Network Connection" }, - { "8086", "10b2", "82573V PRO/1000 PM Network Connection" }, - { "8086", "10b3", "82573E PRO/1000 PM Network Connection" }, - { "8086", "10b4", "82573L PRO/1000 PL Network Connection" }, - { "8086", "10b5", "82546GB Gigabit Ethernet Controller (Copper)" }, - { "8086", "10b6", "82598 10GbE PCI-Express Ethernet Controller" }, - { "8086", "10b9", "82572EI Gigabit Ethernet Controller (Copper)" }, - { "8086", "10ba", "80003ES2LAN Gigabit Ethernet Controller (Copper)" }, - { "8086", "10bb", "80003ES2LAN Gigabit Ethernet Controller (Serdes)" }, - { "8086", "10bc", "82571EB/82571GB Gigabit Ethernet Controller (Copper)" }, - { "8086", "10bd", "82566DM-2 Gigabit Network Connection" }, - { "8086", "10bf", "82567LF Gigabit Network Connection" }, - { "8086", "10c0", "82562V-2 10/100 Network Connection" }, - { "8086", "10c2", "82562G-2 10/100 Network Connection" }, - { "8086", "10c3", "82562GT-2 10/100 Network Connection" }, - { "8086", "10c4", "82562GT 10/100 Network Connection" }, - { "8086", "10c5", "82562G 10/100 Network Connection" }, - { "8086", "10c6", "82598EB 10-Gigabit AF Dual Port Network Connection" }, - { "8086", "10c7", "82598EB 10-Gigabit AF Network Connection" }, - { "8086", "10c8", "82598EB 10-Gigabit AT Network Connection" }, - { "8086", "10c9", "82576 Gigabit Network Connection" }, - { "8086", "10ca", "82576 Virtual Function" }, - { "8086", "10cb", "82567V Gigabit Network Connection" }, - { "8086", "10cc", "82567LM-2 Gigabit Network Connection" }, - { "8086", "10cd", "82567LF-2 Gigabit Network Connection" }, - { "8086", "10ce", "82567V-2 Gigabit Network Connection" }, - { "8086", "10d3", "82574L Gigabit Network Connection" }, - { "8086", "10d4", "Matrox Concord GE (customized Intel 82574)" }, - { "8086", "10d5", "82571PT Gigabit PT Quad Port Server ExpressModule" }, - { "8086", "10d6", "82575GB Gigabit Network Connection" }, - { "8086", "10d8", "82599EB 10 Gigabit Unprogrammed" }, - { "8086", "10d9", "82571EB Dual Port Gigabit Mezzanine Adapter" }, - { "8086", "10da", "82571EB Quad Port Gigabit Mezzanine Adapter" }, - { "8086", "10db", "82598EB 10-Gigabit Dual Port Network Connection" }, - { "8086", "10dd", "82598EB 10-Gigabit AT CX4 Network Connection" }, - { "8086", "10de", "82567LM-3 Gigabit Network Connection" }, - { "8086", "10df", "82567LF-3 Gigabit Network Connection" }, - { "8086", "10e1", "82598EB 10-Gigabit AF Dual Port Network Connection" }, - { "8086", "10e2", "82575GB Gigabit Network Connection" }, - { "8086", "10e5", "82567LM-4 Gigabit Network Connection" }, - { "8086", "10e6", "82576 Gigabit Network Connection" }, - { "8086", "10e7", "82576 Gigabit Network Connection" }, - { "8086", "10e8", "82576 Gigabit Network Connection" }, - { "8086", "10ea", "82577LM Gigabit Network Connection" }, - { "8086", "10eb", "82577LC Gigabit Network Connection" }, - { "8086", "10ec", "82598EB 10-Gigabit AT CX4 Network Connection" }, - { "8086", "10ed", "82599 Ethernet Controller Virtual Function" }, - { "8086", "10ef", "82578DM Gigabit Network Connection" }, - { "8086", "10f0", "82578DC Gigabit Network Connection" }, - { "8086", "10f1", "82598EB 10-Gigabit AF Dual Port Network Connection" }, - { "8086", "10f4", "82598EB 10-Gigabit AF Network Connection" }, - { "8086", "10f5", "82567LM Gigabit Network Connection" }, - { "8086", "10f6", "82574L Gigabit Network Connection" }, - { "8086", "10f7", "10 Gigabit BR KX4 Dual Port Network Connection" }, - { "8086", "10f8", "82599 10 Gigabit Dual Port Backplane Connection" }, - { "8086", "10f9", "82599 10 Gigabit Dual Port Network Connection" }, - { "8086", "10fb", "82599ES 10-Gigabit SFI/SFP+ Network Connection" }, - { "8086", "10fc", "82599 10 Gigabit Dual Port Network Connection" }, - { "8086", "10fe", "82552 10/100 Network Connection" }, - { "8086", "1107", "PRO/1000 MF Server Adapter (LX)" }, - { "8086", "1130", "82815 815 Chipset Host Bridge and Memory Controller Hub" }, - { "8086", "1131", "82815 815 Chipset AGP Bridge" }, - { "8086", "1132", "82815 Chipset Graphics Controller (CGC)" }, - { "8086", "1136", "Thunderbolt 4 Bridge [Maple Ridge 4C 2020]" }, - { "8086", "1137", "Thunderbolt 4 NHI [Maple Ridge 4C 2020]" }, - { "8086", "1138", "Thunderbolt 4 USB Controller [Maple Ridge 4C 2020]" }, - { "8086", "1161", "82806AA PCI64 Hub Advanced Programmable Interrupt Controller" }, - { "8086", "1162", "Xscale 80200 Big Endian Companion Chip" }, - { "8086", "1190", "Merrifield SD/SDIO/eMMC Controller" }, - { "8086", "1191", "Merrifield Serial IO HSUART Controller" }, - { "8086", "1192", "Merrifield Serial IO HSUART DMA Controller" }, - { "8086", "1194", "Merrifield Serial IO SPI Controller" }, - { "8086", "1195", "Merrifield Serial IO I2C Controller" }, - { "8086", "1196", "Merrifield Serial IO I2C Controller" }, - { "8086", "1199", "Merrifield GPIO Controller" }, - { "8086", "119e", "Merrifield USB Device Controller (OTG)" }, - { "8086", "11a0", "Merrifield SCU IPC" }, - { "8086", "11a1", "Merrifield Power Management Unit" }, - { "8086", "11a2", "Merrifield Serial IO DMA Controller" }, - { "8086", "11a5", "Merrifield Serial IO PWM Controller" }, - { "8086", "11c3", "Quark SoC X1000 PCIe Root Port 0" }, - { "8086", "11c4", "Quark SoC X1000 PCIe Root Port 1" }, - { "8086", "1200", "IXP1200 Network Processor" }, - { "8086", "1209", "8255xER/82551IT Fast Ethernet Controller" }, - { "8086", "1221", "82092AA PCI to PCMCIA Bridge" }, - { "8086", "1222", "82092AA IDE Controller" }, - { "8086", "1223", "SAA7116" }, - { "8086", "1225", "82452KX/GX [Orion]" }, - { "8086", "1226", "82596 PRO/10 PCI" }, - { "8086", "1227", "82865 EtherExpress PRO/100A" }, - { "8086", "1228", "82556 EtherExpress PRO/100 Smart" }, - { "8086", "1229", "82557/8/9/0/1 Ethernet Pro 100" }, - { "8086", "122d", "430FX - 82437FX TSC [Triton I]" }, - { "8086", "122e", "82371FB PIIX ISA [Triton I]" }, - { "8086", "1230", "82371FB PIIX IDE [Triton I]" }, - { "8086", "1231", "DSVD Modem" }, - { "8086", "1234", "430MX - 82371MX Mobile PCI I/O IDE Xcelerator (MPIIX)" }, - { "8086", "1235", "430MX - 82437MX Mob. System Ctrlr (MTSC) & 82438MX Data Path (MTDP)" }, - { "8086", "1237", "440FX - 82441FX PMC [Natoma]" }, - { "8086", "1239", "82371FB PIIX IDE Interface" }, - { "8086", "123b", "82380PB PCI to PCI Docking Bridge" }, - { "8086", "123c", "82380AB (MISA) Mobile PCI-to-ISA Bridge" }, - { "8086", "123d", "683053 Programmable Interrupt Device" }, - { "8086", "123e", "82466GX (IHPC) Integrated Hot-Plug Controller (hidden mode)" }, - { "8086", "123f", "82466GX Integrated Hot-Plug Controller (IHPC)" }, - { "8086", "1240", "82752 (752) AGP Graphics Accelerator" }, - { "8086", "124b", "82380FB (MPCI2) Mobile Docking Controller" }, - { "8086", "124c", "Ethernet Connection E823-L for backplane" }, - { "8086", "124d", "Ethernet Connection E823-L for SFP" }, - { "8086", "124e", "Ethernet Connection E823-L/X557-AT 10GBASE-T" }, - { "8086", "124f", "Ethernet Connection E823-L 1GbE" }, - { "8086", "1250", "430HX - 82439HX TXC [Triton II]" }, - { "8086", "1360", "82806AA PCI64 Hub PCI Bridge" }, - { "8086", "1361", "82806AA PCI64 Hub Controller (HRes)" }, - { "8086", "1460", "82870P2 P64H2 Hub PCI Bridge" }, - { "8086", "1461", "82870P2 P64H2 I/OxAPIC" }, - { "8086", "1462", "82870P2 P64H2 Hot Plug Controller" }, - { "8086", "1501", "82567V-3 Gigabit Network Connection" }, - { "8086", "1502", "82579LM Gigabit Network Connection (Lewisville)" }, - { "8086", "1503", "82579V Gigabit Network Connection" }, - { "8086", "1507", "Ethernet Express Module X520-P2" }, - { "8086", "1508", "82598EB Gigabit BX Network Connection" }, - { "8086", "1509", "82580 Gigabit Network Connection" }, - { "8086", "150a", "82576NS Gigabit Network Connection" }, - { "8086", "150b", "82598EB 10-Gigabit AT2 Server Adapter" }, - { "8086", "150c", "82583V Gigabit Network Connection" }, - { "8086", "150d", "82576 Gigabit Backplane Connection" }, - { "8086", "150e", "82580 Gigabit Network Connection" }, - { "8086", "150f", "82580 Gigabit Fiber Network Connection" }, - { "8086", "1510", "82580 Gigabit Backplane Connection" }, - { "8086", "1511", "82580 Gigabit SFP Connection" }, - { "8086", "1513", "CV82524 Thunderbolt Controller [Light Ridge 4C 2010]" }, - { "8086", "1514", "Ethernet X520 10GbE Dual Port KX4 Mezz" }, - { "8086", "1515", "X540 Ethernet Controller Virtual Function" }, - { "8086", "1516", "82580 Gigabit Network Connection" }, - { "8086", "1517", "82599ES 10 Gigabit Network Connection" }, - { "8086", "1518", "82576NS SerDes Gigabit Network Connection" }, - { "8086", "151a", "DSL2310 Thunderbolt Controller [Eagle Ridge 2C 2011]" }, - { "8086", "151b", "CVL2510 Thunderbolt Controller [Light Peak 2C 2010]" }, - { "8086", "151c", "82599 10 Gigabit TN Network Connection" }, - { "8086", "151d", "Ethernet Connection E823-L for QSFP" }, - { "8086", "1520", "I350 Ethernet Controller Virtual Function" }, - { "8086", "1521", "I350 Gigabit Network Connection" }, - { "8086", "1522", "I350 Gigabit Fiber Network Connection" }, - { "8086", "1523", "I350 Gigabit Backplane Connection" }, - { "8086", "1524", "I350 Gigabit Connection" }, - { "8086", "1525", "82567V-4 Gigabit Network Connection" }, - { "8086", "1526", "82576 Gigabit Network Connection" }, - { "8086", "1527", "82580 Gigabit Fiber Network Connection" }, - { "8086", "1528", "Ethernet Controller 10-Gigabit X540-AT2" }, - { "8086", "1529", "82599 10 Gigabit Dual Port Network Connection with FCoE" }, - { "8086", "152a", "82599 10 Gigabit Dual Port Backplane Connection with FCoE" }, - { "8086", "152e", "82599 Virtual Function" }, - { "8086", "152f", "I350 Virtual Function" }, - { "8086", "1530", "X540 Virtual Function" }, - { "8086", "1531", "I210 Gigabit Unprogrammed" }, - { "8086", "1533", "I210 Gigabit Network Connection" }, - { "8086", "1536", "I210 Gigabit Fiber Network Connection" }, - { "8086", "1537", "I210 Gigabit Backplane Connection" }, - { "8086", "1538", "I210 Gigabit Network Connection" }, - { "8086", "1539", "I211 Gigabit Network Connection" }, - { "8086", "153a", "Ethernet Connection I217-LM" }, - { "8086", "153b", "Ethernet Connection I217-V" }, - { "8086", "1547", "DSL3510 Thunderbolt Controller [Cactus Ridge 4C 2012]" }, - { "8086", "1548", "DSL3310 Thunderbolt Controller [Cactus Ridge 2C 2012]" }, - { "8086", "1549", "DSL2210 Thunderbolt Controller [Port Ridge 1C 2011]" }, - { "8086", "154a", "Ethernet Server Adapter X520-4" }, - { "8086", "154c", "Ethernet Virtual Function 700 Series" }, - { "8086", "154d", "Ethernet 10G 2P X520 Adapter" }, - { "8086", "1557", "82599 10 Gigabit Network Connection" }, - { "8086", "1558", "Ethernet Converged Network Adapter X520-Q1" }, - { "8086", "1559", "Ethernet Connection I218-V" }, - { "8086", "155a", "Ethernet Connection I218-LM" }, - { "8086", "155c", "Ethernet Server Bypass Adapter" }, - { "8086", "155d", "Ethernet Server Bypass Adapter" }, - { "8086", "1560", "Ethernet Controller X540" }, - { "8086", "1563", "Ethernet Controller 10G X550T" }, - { "8086", "1564", "X550 Virtual Function" }, - { "8086", "1565", "X550 Virtual Function" }, - { "8086", "1566", "DSL4410 Thunderbolt NHI [Redwood Ridge 2C 2013]" }, - { "8086", "1567", "DSL4410 Thunderbolt Bridge [Redwood Ridge 2C 2013]" }, - { "8086", "1568", "DSL4510 Thunderbolt NHI [Redwood Ridge 4C 2013]" }, - { "8086", "1569", "DSL4510 Thunderbolt Bridge [Redwood Ridge 4C 2013]" }, - { "8086", "156a", "DSL5320 Thunderbolt 2 NHI [Falcon Ridge 2C 2013]" }, - { "8086", "156b", "DSL5320 Thunderbolt 2 Bridge [Falcon Ridge 2C 2013]" }, - { "8086", "156c", "DSL5520 Thunderbolt 2 NHI [Falcon Ridge 4C 2013]" }, - { "8086", "156d", "DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013]" }, - { "8086", "156f", "Ethernet Connection I219-LM" }, - { "8086", "1570", "Ethernet Connection I219-V" }, - { "8086", "1571", "Ethernet Virtual Function 700 Series" }, - { "8086", "1572", "Ethernet Controller X710 for 10GbE SFP+" }, - { "8086", "1574", "Ethernet Controller XL710 Emulation" }, - { "8086", "1575", "DSL6340 Thunderbolt 3 NHI [Alpine Ridge 2C 2015]" }, - { "8086", "1576", "DSL6340 Thunderbolt 3 Bridge [Alpine Ridge 2C 2015]" }, - { "8086", "1577", "DSL6540 Thunderbolt 3 NHI [Alpine Ridge 4C 2015]" }, - { "8086", "1578", "DSL6540 Thunderbolt 3 Bridge [Alpine Ridge 4C 2015]" }, - { "8086", "157b", "I210 Gigabit Network Connection" }, - { "8086", "157c", "I210 Gigabit Backplane Connection" }, - { "8086", "157d", "DSL5110 Thunderbolt 2 NHI (Low Power) [Win Ridge 2C 2014]" }, - { "8086", "157e", "DSL5110 Thunderbolt 2 Bridge (Low Power) [Win Ridge 2C 2014]" }, - { "8086", "1580", "Ethernet Controller XL710 for 40GbE backplane" }, - { "8086", "1581", "Ethernet Controller X710 for 10GbE backplane" }, - { "8086", "1583", "Ethernet Controller XL710 for 40GbE QSFP+" }, - { "8086", "1584", "Ethernet Controller XL710 for 40GbE QSFP+" }, - { "8086", "1585", "Ethernet Controller X710 for 10GbE QSFP+" }, - { "8086", "1586", "Ethernet Controller X710 for 10GBASE-T" }, - { "8086", "1587", "Ethernet Controller XL710 for 20GbE backplane" }, - { "8086", "1588", "Ethernet Controller XL710 for 20GbE backplane" }, - { "8086", "1589", "Ethernet Controller X710/X557-AT 10GBASE-T" }, - { "8086", "158a", "Ethernet Controller XXV710 for 25GbE backplane" }, - { "8086", "158b", "Ethernet Controller XXV710 for 25GbE SFP28" }, - { "8086", "1591", "Ethernet Controller E810-C for backplane" }, - { "8086", "1592", "Ethernet Controller E810-C for QSFP" }, - { "8086", "1593", "Ethernet Controller E810-C for SFP" }, - { "8086", "1599", "Ethernet Controller E810-XXV for backplane" }, - { "8086", "159a", "Ethernet Controller E810-XXV for QSFP" }, - { "8086", "159b", "Ethernet Controller E810-XXV for SFP" }, - { "8086", "15a0", "Ethernet Connection (2) I218-LM" }, - { "8086", "15a1", "Ethernet Connection (2) I218-V" }, - { "8086", "15a2", "Ethernet Connection (3) I218-LM" }, - { "8086", "15a3", "Ethernet Connection (3) I218-V" }, - { "8086", "15a4", "Ethernet Switch FM10000 Host Interface" }, - { "8086", "15a5", "Ethernet Switch FM10000 Host Virtual Interface" }, - { "8086", "15a8", "Ethernet Connection X552 Virtual Function" }, - { "8086", "15a9", "X552 Virtual Function" }, - { "8086", "15aa", "Ethernet Connection X552 10 GbE Backplane" }, - { "8086", "15ab", "Ethernet Connection X552 10 GbE Backplane" }, - { "8086", "15ac", "Ethernet Connection X552 10 GbE SFP+" }, - { "8086", "15ad", "Ethernet Connection X552/X557-AT 10GBASE-T" }, - { "8086", "15ae", "Ethernet Connection X552 1000BASE-T" }, - { "8086", "15b0", "Ethernet Connection X552 Backplane" }, - { "8086", "15b4", "X553 Virtual Function" }, - { "8086", "15b5", "DSL6340 USB 3.1 Controller [Alpine Ridge]" }, - { "8086", "15b6", "DSL6540 USB 3.1 Controller [Alpine Ridge]" }, - { "8086", "15b7", "Ethernet Connection (2) I219-LM" }, - { "8086", "15b8", "Ethernet Connection (2) I219-V" }, - { "8086", "15b9", "Ethernet Connection (3) I219-LM" }, - { "8086", "15bb", "Ethernet Connection (7) I219-LM" }, - { "8086", "15bc", "Ethernet Connection (7) I219-V" }, - { "8086", "15bd", "Ethernet Connection (6) I219-LM" }, - { "8086", "15be", "Ethernet Connection (6) I219-V" }, - { "8086", "15bf", "JHL6240 Thunderbolt 3 NHI (Low Power) [Alpine Ridge LP 2016]" }, - { "8086", "15c0", "JHL6240 Thunderbolt 3 Bridge (Low Power) [Alpine Ridge LP 2016]" }, - { "8086", "15c1", "JHL6240 Thunderbolt 3 USB 3.1 Controller (Low Power) [Alpine Ridge LP 2016]" }, - { "8086", "15c2", "Ethernet Connection X553 Backplane" }, - { "8086", "15c3", "Ethernet Connection X553 Backplane" }, - { "8086", "15c4", "Ethernet Connection X553 10 GbE SFP+" }, - { "8086", "15c5", "X553 Virtual Function" }, - { "8086", "15c6", "Ethernet Connection X553 1GbE" }, - { "8086", "15c7", "Ethernet Connection X553 1GbE" }, - { "8086", "15c8", "Ethernet Connection X553/X557-AT 10GBASE-T" }, - { "8086", "15ce", "Ethernet Connection X553 10 GbE SFP+" }, - { "8086", "15d0", "Ethernet SDI Adapter" }, - { "8086", "15d1", "Ethernet Controller 10G X550T" }, - { "8086", "15d2", "JHL6540 Thunderbolt 3 NHI (C step) [Alpine Ridge 4C 2016]" }, - { "8086", "15d3", "JHL6540 Thunderbolt 3 Bridge (C step) [Alpine Ridge 4C 2016]" }, - { "8086", "15d4", "JHL6540 Thunderbolt 3 USB Controller (C step) [Alpine Ridge 4C 2016]" }, - { "8086", "15d5", "Ethernet SDI Adapter FM10420-25GbE-DA2" }, - { "8086", "15d6", "Ethernet Connection (5) I219-V" }, - { "8086", "15d7", "Ethernet Connection (4) I219-LM" }, - { "8086", "15d8", "Ethernet Connection (4) I219-V" }, - { "8086", "15d9", "JHL6340 Thunderbolt 3 NHI (C step) [Alpine Ridge 2C 2016]" }, - { "8086", "15da", "JHL6340 Thunderbolt 3 Bridge (C step) [Alpine Ridge 2C 2016]" }, - { "8086", "15db", "JHL6340 Thunderbolt 3 USB 3.1 Controller (C step) [Alpine Ridge 2C 2016]" }, - { "8086", "15df", "Ethernet Connection (8) I219-LM" }, - { "8086", "15e0", "Ethernet Connection (8) I219-V" }, - { "8086", "15e1", "Ethernet Connection (9) I219-LM" }, - { "8086", "15e2", "Ethernet Connection (9) I219-V" }, - { "8086", "15e3", "Ethernet Connection (5) I219-LM" }, - { "8086", "15e4", "Ethernet Connection X553 1GbE" }, - { "8086", "15e5", "Ethernet Connection X553 1GbE" }, - { "8086", "15e7", "JHL7540 Thunderbolt 3 Bridge [Titan Ridge 2C 2018]" }, - { "8086", "15e8", "JHL7540 Thunderbolt 3 NHI [Titan Ridge 2C 2018]" }, - { "8086", "15e9", "JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 2C 2018]" }, - { "8086", "15ea", "JHL7540 Thunderbolt 3 Bridge [Titan Ridge 4C 2018]" }, - { "8086", "15eb", "JHL7540 Thunderbolt 3 NHI [Titan Ridge 4C 2018]" }, - { "8086", "15ec", "JHL7540 Thunderbolt 3 USB Controller [Titan Ridge 4C 2018]" }, - { "8086", "15ef", "JHL7540 Thunderbolt 3 Bridge [Titan Ridge DD 2018]" }, - { "8086", "15f0", "JHL7540 Thunderbolt 3 USB Controller [Titan Ridge DD 2018]" }, - { "8086", "15f2", "Ethernet Controller I225-LM" }, - { "8086", "15f3", "Ethernet Controller I225-V" }, - { "8086", "15f4", "Ethernet Connection (15) I219-LM" }, - { "8086", "15f5", "Ethernet Connection (15) I219-V" }, - { "8086", "15f6", "I210 Gigabit Ethernet Connection" }, - { "8086", "15f9", "Ethernet Connection (14) I219-LM" }, - { "8086", "15fa", "Ethernet Connection (14) I219-V" }, - { "8086", "15fb", "Ethernet Connection (13) I219-LM" }, - { "8086", "15fc", "Ethernet Connection (13) I219-V" }, - { "8086", "15ff", "Ethernet Controller X710 for 10GBASE-T" }, - { "8086", "1600", "Broadwell-U Host Bridge -OPI" }, - { "8086", "1601", "Broadwell-U PCI Express x16 Controller" }, - { "8086", "1602", "Broadwell-U Integrated Graphics" }, - { "8086", "1603", "Broadwell-U Processor Thermal Subsystem" }, - { "8086", "1604", "Broadwell-U Host Bridge -OPI" }, - { "8086", "1605", "Broadwell-U PCI Express x8 Controller" }, - { "8086", "1606", "HD Graphics" }, - { "8086", "1607", "Broadwell-U CHAPS Device" }, - { "8086", "1608", "Broadwell-U Host Bridge -OPI" }, - { "8086", "1609", "Broadwell-U x4 PCIe" }, - { "8086", "160a", "Broadwell-U Integrated Graphics" }, - { "8086", "160b", "Broadwell-U Integrated Graphics" }, - { "8086", "160c", "Broadwell-U Audio Controller" }, - { "8086", "160d", "Broadwell-U Integrated Graphics" }, - { "8086", "160e", "Broadwell-U Integrated Graphics" }, - { "8086", "160f", "Broadwell-U SoftSKU" }, - { "8086", "1610", "Broadwell-U Host Bridge - DMI" }, - { "8086", "1612", "HD Graphics 5600" }, - { "8086", "1614", "Broadwell-U Host Bridge - DMI" }, - { "8086", "1616", "HD Graphics 5500" }, - { "8086", "1618", "Broadwell-U Host Bridge - DMI" }, - { "8086", "161a", "Broadwell-U Integrated Graphics" }, - { "8086", "161b", "Broadwell-U Integrated Graphics" }, - { "8086", "161d", "Broadwell-U Integrated Graphics" }, - { "8086", "161e", "HD Graphics 5300" }, - { "8086", "1622", "Iris Pro Graphics 6200" }, - { "8086", "1626", "HD Graphics 6000" }, - { "8086", "162a", "Iris Pro Graphics P6300" }, - { "8086", "162b", "Iris Graphics 6100" }, - { "8086", "162d", "Broadwell-U Integrated Graphics" }, - { "8086", "162e", "Broadwell-U Integrated Graphics" }, - { "8086", "1632", "Broadwell-U Integrated Graphics" }, - { "8086", "1636", "Broadwell-U Integrated Graphics" }, - { "8086", "163a", "Broadwell-U Integrated Graphics" }, - { "8086", "163b", "Broadwell-U Integrated Graphics" }, - { "8086", "163d", "Broadwell-U Integrated Graphics" }, - { "8086", "163e", "Broadwell-U Integrated Graphics" }, - { "8086", "1889", "Ethernet Adaptive Virtual Function" }, - { "8086", "1890", "Ethernet Connection E822-C for backplane" }, - { "8086", "1891", "Ethernet Connection E822-C for QSFP" }, - { "8086", "1892", "Ethernet Connection E822-C for SFP" }, - { "8086", "1893", "Ethernet Connection E822-C/X557-AT 10GBASE-T" }, - { "8086", "1894", "Ethernet Connection E822-C 1GbE" }, - { "8086", "1897", "Ethernet Connection E822-L for backplane" }, - { "8086", "1898", "Ethernet Connection E822-L for SFP" }, - { "8086", "1899", "Ethernet Connection E822-L/X557-AT 10GBASE-T" }, - { "8086", "189a", "Ethernet Connection E822-L 1GbE" }, - { "8086", "18a0", "C4xxx Series QAT" }, - { "8086", "18a1", "C4XXX Series QAT Virtual Function" }, - { "8086", "18ee", "200xx Series QAT" }, - { "8086", "18ef", "200xx Series QAT Virtual Function" }, - { "8086", "1900", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1901", "6th-10th Gen Core Processor PCIe Controller (x16)" }, - { "8086", "1902", "HD Graphics 510" }, - { "8086", "1903", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem" }, - { "8086", "1904", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1905", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x8)" }, - { "8086", "1906", "HD Graphics 510" }, - { "8086", "1908", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1909", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x4)" }, - { "8086", "190c", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "190f", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1910", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1911", "Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model" }, - { "8086", "1912", "HD Graphics 530" }, - { "8086", "1916", "Skylake GT2 [HD Graphics 520]" }, - { "8086", "1918", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1919", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Imaging Unit" }, - { "8086", "191b", "HD Graphics 530" }, - { "8086", "191d", "HD Graphics P530" }, - { "8086", "191e", "HD Graphics 515" }, - { "8086", "191f", "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "1921", "HD Graphics 520" }, - { "8086", "1926", "Iris Graphics 540" }, - { "8086", "1927", "Iris Graphics 550" }, - { "8086", "192b", "Iris Graphics 555" }, - { "8086", "192d", "Iris Graphics P555" }, - { "8086", "1932", "Iris Pro Graphics 580" }, - { "8086", "193a", "Iris Pro Graphics P580" }, - { "8086", "193b", "Iris Pro Graphics 580" }, - { "8086", "193d", "Iris Pro Graphics P580" }, - { "8086", "1960", "80960RP (i960RP) Microprocessor" }, - { "8086", "1962", "80960RM (i960RM) Microprocessor" }, - { "8086", "1964", "80960RN (i960RN) Microprocessor" }, - { "8086", "1980", "Atom Processor C3000 Series System Agent" }, - { "8086", "19a1", "Atom Processor C3000 Series Error Registers" }, - { "8086", "19a2", "Atom Processor C3000 Series Root Complex Event Collector" }, - { "8086", "19a3", "Atom Processor C3000 Series Integrated QAT Root Port" }, - { "8086", "19a4", "Atom Processor C3000 Series PCI Express Root Port #0" }, - { "8086", "19a5", "Atom Processor C3000 Series PCI Express Root Port #1" }, - { "8086", "19a6", "Atom Processor C3000 Series PCI Express Root Port #2" }, - { "8086", "19a7", "Atom Processor C3000 Series PCI Express Root Port #3" }, - { "8086", "19a8", "Atom Processor C3000 Series PCI Express Root Port #4" }, - { "8086", "19a9", "Atom Processor C3000 Series PCI Express Root Port #5" }, - { "8086", "19aa", "Atom Processor C3000 Series PCI Express Root Port #6" }, - { "8086", "19ab", "Atom Processor C3000 Series PCI Express Root Port #7" }, - { "8086", "19ac", "Atom Processor C3000 Series SMBus Contoller - Host" }, - { "8086", "19b0", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b1", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b2", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b3", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b4", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b5", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b6", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19b7", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19be", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19bf", "Atom Processor C3000 Series SATA Controller 0" }, - { "8086", "19c0", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c1", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c2", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c3", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c4", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c5", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c6", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19c7", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19ce", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19cf", "Atom Processor C3000 Series SATA Controller 1" }, - { "8086", "19d0", "Atom Processor C3000 Series USB 3.0 xHCI Controller" }, - { "8086", "19d1", "Atom Processor C3000 Series Integrated LAN Root Port #0" }, - { "8086", "19d2", "Atom Processor C3000 Series Integrated LAN Root Port #1" }, - { "8086", "19d3", "Atom Processor C3000 Series ME HECI 1" }, - { "8086", "19d4", "Atom Processor C3000 Series ME HECI 2" }, - { "8086", "19d5", "Atom Processor C3000 Series ME KT Controller" }, - { "8086", "19d6", "Atom Processor C3000 Series ME HECI 3" }, - { "8086", "19d8", "Atom Processor C3000 Series HSUART Controller" }, - { "8086", "19dc", "Atom Processor C3000 Series LPC or eSPI" }, - { "8086", "19dd", "Atom Processor C3000 Series Primary to Side Band (P2SB) Bridge" }, - { "8086", "19de", "Atom Processor C3000 Series Power Management Controller" }, - { "8086", "19df", "Atom Processor C3000 Series SMBus controller" }, - { "8086", "19e0", "Atom Processor C3000 Series SPI Controller" }, - { "8086", "19e2", "Atom Processor C3000 Series QuickAssist Technology" }, - { "8086", "19e3", "Atom Processor C3000 Series QuickAssist Technology Virtual Function" }, - { "8086", "1a1c", "Ethernet Connection (17) I219-LM" }, - { "8086", "1a1d", "Ethernet Connection (17) I219-V" }, - { "8086", "1a1e", "Ethernet Connection (16) I219-LM" }, - { "8086", "1a1f", "Ethernet Connection (16) I219-V" }, - { "8086", "1a21", "82840 840 [Carmel] Chipset Host Bridge (Hub A)" }, - { "8086", "1a23", "82840 840 [Carmel] Chipset AGP Bridge" }, - { "8086", "1a24", "82840 840 [Carmel] Chipset PCI Bridge (Hub B)" }, - { "8086", "1a30", "82845 845 [Brookdale] Chipset Host Bridge" }, - { "8086", "1a31", "82845 845 [Brookdale] Chipset AGP Bridge" }, - { "8086", "1a38", "5000 Series Chipset DMA Engine" }, - { "8086", "1a48", "82597EX 10GbE Ethernet Controller" }, - { "8086", "1b48", "82597EX 10GbE Ethernet Controller" }, - { "8086", "1c00", "6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 0-3)" }, - { "8086", "1c01", "6 Series/C200 Series Chipset Family Mobile SATA Controller (IDE mode, ports 0-3)" }, - { "8086", "1c02", "6 Series/C200 Series Chipset Family 6 port Desktop SATA AHCI Controller" }, - { "8086", "1c03", "6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller" }, - { "8086", "1c04", "6 Series/C200 Series Desktop SATA RAID Controller" }, - { "8086", "1c05", "6 Series/C200 Series Mobile SATA RAID Controller" }, - { "8086", "1c06", "Z68 Express Chipset SATA RAID Controller" }, - { "8086", "1c08", "6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 4-5)" }, - { "8086", "1c09", "6 Series/C200 Series Chipset Family Mobile SATA Controller (IDE mode, ports 4-5)" }, - { "8086", "1c10", "6 Series/C200 Series Chipset Family PCI Express Root Port 1" }, - { "8086", "1c12", "6 Series/C200 Series Chipset Family PCI Express Root Port 2" }, - { "8086", "1c14", "6 Series/C200 Series Chipset Family PCI Express Root Port 3" }, - { "8086", "1c16", "6 Series/C200 Series Chipset Family PCI Express Root Port 4" }, - { "8086", "1c18", "6 Series/C200 Series Chipset Family PCI Express Root Port 5" }, - { "8086", "1c1a", "6 Series/C200 Series Chipset Family PCI Express Root Port 6" }, - { "8086", "1c1c", "6 Series/C200 Series Chipset Family PCI Express Root Port 7" }, - { "8086", "1c1e", "6 Series/C200 Series Chipset Family PCI Express Root Port 8" }, - { "8086", "1c20", "6 Series/C200 Series Chipset Family High Definition Audio Controller" }, - { "8086", "1c22", "6 Series/C200 Series Chipset Family SMBus Controller" }, - { "8086", "1c24", "6 Series/C200 Series Chipset Family Thermal Management Controller" }, - { "8086", "1c25", "6 Series/C200 Series Chipset Family DMI to PCI Bridge" }, - { "8086", "1c26", "6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1" }, - { "8086", "1c27", "6 Series/C200 Series Chipset Family USB Universal Host Controller #1" }, - { "8086", "1c2c", "6 Series/C200 Series Chipset Family USB Universal Host Controller #5" }, - { "8086", "1c2d", "6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2" }, - { "8086", "1c33", "6 Series/C200 Series Chipset Family LAN Controller" }, - { "8086", "1c35", "6 Series/C200 Series Chipset Family VECI Controller" }, - { "8086", "1c3a", "6 Series/C200 Series Chipset Family MEI Controller #1" }, - { "8086", "1c3b", "6 Series/C200 Series Chipset Family MEI Controller #2" }, - { "8086", "1c3c", "6 Series/C200 Series Chipset Family IDE-r Controller" }, - { "8086", "1c3d", "6 Series/C200 Series Chipset Family KT Controller" }, - { "8086", "1c40", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c41", "Mobile SFF 6 Series Chipset Family LPC Controller" }, - { "8086", "1c42", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c43", "Mobile 6 Series Chipset Family LPC Controller" }, - { "8086", "1c44", "Z68 Express Chipset LPC Controller" }, - { "8086", "1c45", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c46", "P67 Express Chipset LPC Controller" }, - { "8086", "1c47", "UM67 Express Chipset LPC Controller" }, - { "8086", "1c48", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c49", "HM65 Express Chipset LPC Controller" }, - { "8086", "1c4a", "H67 Express Chipset LPC Controller" }, - { "8086", "1c4b", "HM67 Express Chipset LPC Controller" }, - { "8086", "1c4c", "Q65 Express Chipset LPC Controller" }, - { "8086", "1c4d", "QS67 Express Chipset LPC Controller" }, - { "8086", "1c4e", "Q67 Express Chipset LPC Controller" }, - { "8086", "1c4f", "QM67 Express Chipset LPC Controller" }, - { "8086", "1c50", "B65 Express Chipset LPC Controller" }, - { "8086", "1c51", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c52", "C202 Chipset LPC Controller" }, - { "8086", "1c53", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c54", "C204 Chipset LPC Controller" }, - { "8086", "1c55", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c56", "C206 Chipset LPC Controller" }, - { "8086", "1c57", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c58", "Upgraded B65 Express Chipset LPC Controller" }, - { "8086", "1c59", "Upgraded HM67 Express Chipset LPC Controller" }, - { "8086", "1c5a", "Upgraded Q67 Express Chipset LPC Controller" }, - { "8086", "1c5b", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c5c", "H61 Express Chipset LPC Controller" }, - { "8086", "1c5d", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c5e", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1c5f", "6 Series/C200 Series Chipset Family LPC Controller" }, - { "8086", "1d00", "C600/X79 series chipset 4-Port SATA IDE Controller" }, - { "8086", "1d02", "C600/X79 series chipset 6-Port SATA AHCI Controller" }, - { "8086", "1d04", "C600/X79 series chipset SATA RAID Controller" }, - { "8086", "1d06", "C600/X79 series chipset SATA Premium RAID Controller" }, - { "8086", "1d08", "C600/X79 series chipset 2-Port SATA IDE Controller" }, - { "8086", "1d10", "C600/X79 series chipset PCI Express Root Port 1" }, - { "8086", "1d11", "C600/X79 series chipset PCI Express Root Port 1" }, - { "8086", "1d12", "C600/X79 series chipset PCI Express Root Port 2" }, - { "8086", "1d13", "C600/X79 series chipset PCI Express Root Port 2" }, - { "8086", "1d14", "C600/X79 series chipset PCI Express Root Port 3" }, - { "8086", "1d15", "C600/X79 series chipset PCI Express Root Port 3" }, - { "8086", "1d16", "C600/X79 series chipset PCI Express Root Port 4" }, - { "8086", "1d17", "C600/X79 series chipset PCI Express Root Port 4" }, - { "8086", "1d18", "C600/X79 series chipset PCI Express Root Port 5" }, - { "8086", "1d19", "C600/X79 series chipset PCI Express Root Port 5" }, - { "8086", "1d1a", "C600/X79 series chipset PCI Express Root Port 6" }, - { "8086", "1d1b", "C600/X79 series chipset PCI Express Root Port 6" }, - { "8086", "1d1c", "C600/X79 series chipset PCI Express Root Port 7" }, - { "8086", "1d1d", "C600/X79 series chipset PCI Express Root Port 7" }, - { "8086", "1d1e", "C600/X79 series chipset PCI Express Root Port 8" }, - { "8086", "1d1f", "C600/X79 series chipset PCI Express Root Port 8" }, - { "8086", "1d20", "C600/X79 series chipset High Definition Audio Controller" }, - { "8086", "1d22", "C600/X79 series chipset SMBus Host Controller" }, - { "8086", "1d24", "C600/X79 series chipset Thermal Management Controller" }, - { "8086", "1d25", "C600/X79 series chipset DMI to PCI Bridge" }, - { "8086", "1d26", "C600/X79 series chipset USB2 Enhanced Host Controller #1" }, - { "8086", "1d2d", "C600/X79 series chipset USB2 Enhanced Host Controller #2" }, - { "8086", "1d33", "C600/X79 series chipset LAN Controller" }, - { "8086", "1d35", "C600/X79 series chipset VECI Controller" }, - { "8086", "1d3a", "C600/X79 series chipset MEI Controller #1" }, - { "8086", "1d3b", "C600/X79 series chipset MEI Controller #2" }, - { "8086", "1d3c", "C600/X79 series chipset IDE-r Controller" }, - { "8086", "1d3d", "C600/X79 series chipset KT Controller" }, - { "8086", "1d3e", "C600/X79 series chipset PCI Express Virtual Root Port" }, - { "8086", "1d3f", "C608/C606/X79 series chipset PCI Express Virtual Switch Port" }, - { "8086", "1d40", "C600/X79 series chipset LPC Controller" }, - { "8086", "1d41", "C600/X79 series chipset LPC Controller" }, - { "8086", "1d50", "C608 chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d54", "C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d55", "C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d58", "C606 chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d59", "C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d5a", "C600/X79 series chipset Dual 4-Port SATA Storage Control Unit" }, - { "8086", "1d5b", "C602 chipset 4-Port SATA Storage Control Unit" }, - { "8086", "1d5c", "C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d5d", "C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d5e", "C600/X79 series chipset Dual 4-Port SATA Storage Control Unit" }, - { "8086", "1d5f", "C600/X79 series chipset 4-Port SATA Storage Control Unit" }, - { "8086", "1d60", "C608 chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d64", "C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d65", "C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d68", "C606 chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d69", "C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d6a", "C600/X79 series chipset Dual 4-Port SATA Storage Control Unit" }, - { "8086", "1d6b", "C602 chipset 4-Port SATA Storage Control Unit" }, - { "8086", "1d6c", "C600/X79 series chipset Dual 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d6d", "C600/X79 series chipset 4-Port SATA/SAS Storage Control Unit" }, - { "8086", "1d6e", "C600/X79 series chipset Dual 4-Port SATA Storage Control Unit" }, - { "8086", "1d6f", "C600/X79 series chipset 4-Port SATA Storage Control Unit" }, - { "8086", "1d70", "C600/X79 series chipset SMBus Controller 0" }, - { "8086", "1d71", "C608/C606/X79 series chipset SMBus Controller 1" }, - { "8086", "1d72", "C608 chipset SMBus Controller 2" }, - { "8086", "1d74", "C608/C606/X79 series chipset PCI Express Upstream Port" }, - { "8086", "1d76", "C600/X79 series chipset Multi-Function Glue" }, - { "8086", "1e00", "7 Series/C210 Series Chipset Family 4-port SATA Controller [IDE mode]" }, - { "8086", "1e01", "7 Series Chipset Family 4-port SATA Controller [IDE mode]" }, - { "8086", "1e02", "7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode]" }, - { "8086", "1e03", "7 Series Chipset Family 6-port SATA Controller [AHCI mode]" }, - { "8086", "1e04", "7 Series/C210 Series Chipset Family SATA Controller [RAID mode]" }, - { "8086", "1e05", "7 Series Chipset SATA Controller [RAID mode]" }, - { "8086", "1e06", "7 Series/C210 Series Chipset Family SATA Controller [RAID mode]" }, - { "8086", "1e07", "7 Series Chipset Family SATA Controller [RAID mode]" }, - { "8086", "1e08", "7 Series/C210 Series Chipset Family 2-port SATA Controller [IDE mode]" }, - { "8086", "1e09", "7 Series Chipset Family 2-port SATA Controller [IDE mode]" }, - { "8086", "1e0e", "7 Series/C210 Series Chipset Family SATA Controller [RAID mode]" }, - { "8086", "1e10", "7 Series/C216 Chipset Family PCI Express Root Port 1" }, - { "8086", "1e12", "7 Series/C210 Series Chipset Family PCI Express Root Port 2" }, - { "8086", "1e14", "7 Series/C210 Series Chipset Family PCI Express Root Port 3" }, - { "8086", "1e16", "7 Series/C216 Chipset Family PCI Express Root Port 4" }, - { "8086", "1e18", "7 Series/C210 Series Chipset Family PCI Express Root Port 5" }, - { "8086", "1e1a", "7 Series/C210 Series Chipset Family PCI Express Root Port 6" }, - { "8086", "1e1c", "7 Series/C210 Series Chipset Family PCI Express Root Port 7" }, - { "8086", "1e1e", "7 Series/C210 Series Chipset Family PCI Express Root Port 8" }, - { "8086", "1e20", "7 Series/C216 Chipset Family High Definition Audio Controller" }, - { "8086", "1e22", "7 Series/C216 Chipset Family SMBus Controller" }, - { "8086", "1e24", "7 Series/C210 Series Chipset Family Thermal Management Controller" }, - { "8086", "1e25", "7 Series/C210 Series Chipset Family DMI to PCI Bridge" }, - { "8086", "1e26", "7 Series/C216 Chipset Family USB Enhanced Host Controller #1" }, - { "8086", "1e2d", "7 Series/C216 Chipset Family USB Enhanced Host Controller #2" }, - { "8086", "1e31", "7 Series/C210 Series Chipset Family USB xHCI Host Controller" }, - { "8086", "1e33", "7 Series/C210 Series Chipset Family LAN Controller" }, - { "8086", "1e3a", "7 Series/C216 Chipset Family MEI Controller #1" }, - { "8086", "1e3b", "7 Series/C210 Series Chipset Family MEI Controller #2" }, - { "8086", "1e3c", "7 Series/C210 Series Chipset Family IDE-r Controller" }, - { "8086", "1e3d", "7 Series/C210 Series Chipset Family KT Controller" }, - { "8086", "1e41", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e42", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e43", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e44", "Z77 Express Chipset LPC Controller" }, - { "8086", "1e45", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e46", "Z75 Express Chipset LPC Controller" }, - { "8086", "1e47", "Q77 Express Chipset LPC Controller" }, - { "8086", "1e48", "Q75 Express Chipset LPC Controller" }, - { "8086", "1e49", "B75 Express Chipset LPC Controller" }, - { "8086", "1e4a", "H77 Express Chipset LPC Controller" }, - { "8086", "1e4b", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e4c", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e4d", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e4e", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e4f", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e50", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e51", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e52", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e53", "C216 Series Chipset LPC Controller" }, - { "8086", "1e54", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e55", "QM77 Express Chipset LPC Controller" }, - { "8086", "1e56", "QS77 Express Chipset LPC Controller" }, - { "8086", "1e57", "HM77 Express Chipset LPC Controller" }, - { "8086", "1e58", "UM77 Express Chipset LPC Controller" }, - { "8086", "1e59", "HM76 Express Chipset LPC Controller" }, - { "8086", "1e5a", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e5b", "UM77 Express Chipset LPC Controller" }, - { "8086", "1e5c", "7 Series Chipset Family LPC Controller" }, - { "8086", "1e5d", "HM75 Express Chipset LPC Controller" }, - { "8086", "1e5e", "HM70 Express Chipset LPC Controller" }, - { "8086", "1e5f", "NM70 Express Chipset LPC Controller" }, - { "8086", "1f00", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f01", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f02", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f03", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f04", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f05", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f06", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f07", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f08", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f09", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0a", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0b", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0c", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0d", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0e", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f0f", "Atom processor C2000 SoC Transaction Router" }, - { "8086", "1f10", "Atom processor C2000 PCIe Root Port 1" }, - { "8086", "1f11", "Atom processor C2000 PCIe Root Port 2" }, - { "8086", "1f12", "Atom processor C2000 PCIe Root Port 3" }, - { "8086", "1f13", "Atom processor C2000 PCIe Root Port 4" }, - { "8086", "1f14", "Atom processor C2000 RAS" }, - { "8086", "1f15", "Atom processor C2000 SMBus 2.0" }, - { "8086", "1f16", "Atom processor C2000 RCEC" }, - { "8086", "1f18", "Atom processor C2000 QAT" }, - { "8086", "1f19", "Atom processor C2000 QAT" }, - { "8086", "1f20", "Atom processor C2000 4-Port IDE SATA2 Controller" }, - { "8086", "1f21", "Atom processor C2000 4-Port IDE SATA2 Controller" }, - { "8086", "1f22", "Atom processor C2000 AHCI SATA2 Controller" }, - { "8086", "1f23", "Atom processor C2000 AHCI SATA2 Controller" }, - { "8086", "1f24", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f25", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f26", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f27", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f2c", "Atom processor C2000 USB Enhanced Host Controller" }, - { "8086", "1f2e", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f2f", "Atom processor C2000 RAID SATA2 Controller" }, - { "8086", "1f30", "Atom processor C2000 2-Port IDE SATA3 Controller" }, - { "8086", "1f31", "Atom processor C2000 2-Port IDE SATA3 Controller" }, - { "8086", "1f32", "Atom processor C2000 AHCI SATA3 Controller" }, - { "8086", "1f33", "Atom processor C2000 AHCI SATA3 Controller" }, - { "8086", "1f34", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f35", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f36", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f37", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f38", "Atom processor C2000 PCU" }, - { "8086", "1f39", "Atom processor C2000 PCU" }, - { "8086", "1f3a", "Atom processor C2000 PCU" }, - { "8086", "1f3b", "Atom processor C2000 PCU" }, - { "8086", "1f3c", "Atom processor C2000 PCU SMBus" }, - { "8086", "1f3d", "Atom Processor C2000 PECI SMBus" }, - { "8086", "1f3e", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f3f", "Atom processor C2000 RAID SATA3 Controller" }, - { "8086", "1f40", "Ethernet Connection I354 1.0 GbE Backplane" }, - { "8086", "1f41", "Ethernet Connection I354" }, - { "8086", "1f42", "Atom processor C2000 GbE" }, - { "8086", "1f44", "Atom processor C2000 GbE Virtual Function" }, - { "8086", "1f45", "Ethernet Connection I354 2.5 GbE Backplane" }, - { "8086", "2014", "Sky Lake-E Ubox Registers" }, - { "8086", "2015", "Sky Lake-E Ubox Registers" }, - { "8086", "2016", "Sky Lake-E Ubox Registers" }, - { "8086", "2018", "Sky Lake-E M2PCI Registers" }, - { "8086", "201a", "Sky Lake-E Non-Transparent Bridge Registers" }, - { "8086", "201c", "Sky Lake-E Non-Transparent Bridge Registers" }, - { "8086", "201d", "Volume Management Device NVMe RAID Controller" }, - { "8086", "2020", "Sky Lake-E DMI3 Registers" }, - { "8086", "2021", "Sky Lake-E CBDMA Registers" }, - { "8086", "2024", "Sky Lake-E MM/Vt-d Configuration Registers" }, - { "8086", "2025", "Sky Lake-E RAS" }, - { "8086", "2026", "Sky Lake-E IOAPIC" }, - { "8086", "2030", "Sky Lake-E PCI Express Root Port A" }, - { "8086", "2031", "Sky Lake-E PCI Express Root Port B" }, - { "8086", "2032", "Sky Lake-E PCI Express Root Port C" }, - { "8086", "2033", "Sky Lake-E PCI Express Root Port D" }, - { "8086", "2034", "Sky Lake-E VT-d" }, - { "8086", "2035", "Sky Lake-E RAS Configuration Registers" }, - { "8086", "2036", "Sky Lake-E IOxAPIC Configuration Registers" }, - { "8086", "2040", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2041", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2042", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2043", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2044", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2045", "Sky Lake-E LM Channel 1" }, - { "8086", "2046", "Sky Lake-E LMS Channel 1" }, - { "8086", "2047", "Sky Lake-E LMDP Channel 1" }, - { "8086", "2048", "Sky Lake-E DECS Channel 2" }, - { "8086", "2049", "Sky Lake-E LM Channel 2" }, - { "8086", "204a", "Sky Lake-E LMS Channel 2" }, - { "8086", "204b", "Sky Lake-E LMDP Channel 2" }, - { "8086", "204c", "Sky Lake-E M3KTI Registers" }, - { "8086", "204d", "Sky Lake-E M3KTI Registers" }, - { "8086", "204e", "Sky Lake-E M3KTI Registers" }, - { "8086", "2054", "Sky Lake-E CHA Registers" }, - { "8086", "2055", "Sky Lake-E CHA Registers" }, - { "8086", "2056", "Sky Lake-E CHA Registers" }, - { "8086", "2057", "Sky Lake-E CHA Registers" }, - { "8086", "2058", "Sky Lake-E KTI 0" }, - { "8086", "2059", "Sky Lake-E UPI Registers" }, - { "8086", "2066", "Sky Lake-E Integrated Memory Controller" }, - { "8086", "2068", "Sky Lake-E DDRIO Registers" }, - { "8086", "2069", "Sky Lake-E DDRIO Registers" }, - { "8086", "206a", "Sky Lake-E IOxAPIC Configuration Registers" }, - { "8086", "206e", "Sky Lake-E DDRIO Registers" }, - { "8086", "206f", "Sky Lake-E DDRIO Registers" }, - { "8086", "2078", "Sky Lake-E PCU Registers" }, - { "8086", "207a", "Sky Lake-E PCU Registers" }, - { "8086", "2080", "Sky Lake-E PCU Registers" }, - { "8086", "2081", "Sky Lake-E PCU Registers" }, - { "8086", "2082", "Sky Lake-E PCU Registers" }, - { "8086", "2083", "Sky Lake-E PCU Registers" }, - { "8086", "2084", "Sky Lake-E PCU Registers" }, - { "8086", "2085", "Sky Lake-E PCU Registers" }, - { "8086", "2086", "Sky Lake-E PCU Registers" }, - { "8086", "2088", "Sky Lake-E DDRIO Registers" }, - { "8086", "208d", "Sky Lake-E CHA Registers" }, - { "8086", "208e", "Sky Lake-E CHA Registers" }, - { "8086", "2241", "Larrabee" }, - { "8086", "2250", "Xeon Phi coprocessor 5100 series" }, - { "8086", "225c", "Xeon Phi coprocessor SE10/7120 series" }, - { "8086", "225d", "Xeon Phi coprocessor 3120 series" }, - { "8086", "225e", "Xeon Phi coprocessor 31S1" }, - { "8086", "2262", "Xeon Phi coprocessor 7220" }, - { "8086", "2280", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SoC Transaction Register" }, - { "8086", "2284", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series High Definition Audio Controller" }, - { "8086", "2286", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 DMA Controller" }, - { "8086", "228a", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 HSUART Controller #1" }, - { "8086", "228c", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO1 HSUART Controller #2" }, - { "8086", "2292", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx SMBus Controller" }, - { "8086", "2294", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series MMC Controller" }, - { "8086", "2295", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SDIO Controller" }, - { "8086", "2296", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SD Controller" }, - { "8086", "2298", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Trusted Execution Engine" }, - { "8086", "229c", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCU" }, - { "8086", "22a3", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SATA Controller" }, - { "8086", "22a4", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SATA AHCI Controller" }, - { "8086", "22a8", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Low Power Engine Audio" }, - { "8086", "22b0", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller" }, - { "8086", "22b1", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller" }, - { "8086", "22b5", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series USB xHCI Controller" }, - { "8086", "22b8", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Imaging Unit" }, - { "8086", "22c0", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 DMA Controller" }, - { "8086", "22c1", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #1" }, - { "8086", "22c2", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #2" }, - { "8086", "22c3", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #3" }, - { "8086", "22c4", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #4" }, - { "8086", "22c5", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #5" }, - { "8086", "22c6", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #6" }, - { "8086", "22c7", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series LPIO2 I2C Controller #7" }, - { "8086", "22c8", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #1" }, - { "8086", "22ca", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #2" }, - { "8086", "22cc", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #3" }, - { "8086", "22ce", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Express Port #4" }, - { "8086", "22dc", "Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series Power Management Controller" }, - { "8086", "2310", "DH89xxCC LPC Controller" }, - { "8086", "2323", "DH89xxCC 4 Port SATA AHCI Controller" }, - { "8086", "2330", "DH89xxCC SMBus Controller" }, - { "8086", "2331", "DH89xxCC Chap Counter" }, - { "8086", "2332", "DH89xxCC Thermal Subsystem" }, - { "8086", "2334", "DH89xxCC USB2 Enhanced Host Controller #1" }, - { "8086", "2335", "DH89xxCC USB2 Enhanced Host Controller #1" }, - { "8086", "2342", "DH89xxCC PCI Express Root Port #1" }, - { "8086", "2343", "DH89xxCC PCI Express Root Port #1" }, - { "8086", "2344", "DH89xxCC PCI Express Root Port #2" }, - { "8086", "2345", "DH89xxCC PCI Express Root Port #2" }, - { "8086", "2346", "DH89xxCC PCI Express Root Port #3" }, - { "8086", "2347", "DH89xxCC PCI Express Root Port #3" }, - { "8086", "2348", "DH89xxCC PCI Express Root Port #4" }, - { "8086", "2349", "DH89xxCC PCI Express Root Port #4" }, - { "8086", "2360", "DH89xxCC Watchdog Timer" }, - { "8086", "2364", "DH89xxCC MEI 0" }, - { "8086", "2365", "DH89xxCC MEI 1" }, - { "8086", "2390", "DH895XCC Series LPC Controller" }, - { "8086", "23a1", "DH895XCC Series 2-Port SATA Controller [IDE Mode]" }, - { "8086", "23a3", "DH895XCC Series 4-Port SATA Controller [AHCI Mode]" }, - { "8086", "23a6", "DH895XCC Series 2-Port SATA Controller [IDE Mode]" }, - { "8086", "23b0", "DH895XCC Series SMBus Controller" }, - { "8086", "23b1", "DH895XCC Series CHAP Counter" }, - { "8086", "23b2", "DH895XCC Series Thermal Management Controller" }, - { "8086", "23b4", "DH895XCC Series USB2 Enhanced Host Controller #1" }, - { "8086", "23b5", "DH895XCC Series USB2 Enhanced Host Controller #1" }, - { "8086", "23c2", "DH895XCC Series PCI Express Root Port #1" }, - { "8086", "23c3", "DH895XCC Series PCI Express Root Port #1" }, - { "8086", "23c4", "DH895XCC Series PCI Express Root Port #2" }, - { "8086", "23c5", "DH895XCC Series PCI Express Root Port #2" }, - { "8086", "23c6", "CDH895XCC Series PCI Express Root Port #3" }, - { "8086", "23c7", "DH895XCC Series PCI Express Root Port #3" }, - { "8086", "23c8", "DH895XCC Series PCI Express Root Port #4" }, - { "8086", "23c9", "DH895XCC Series PCI Express Root Port #4" }, - { "8086", "23e0", "DH895XCC Series Watchdog Timer" }, - { "8086", "23e4", "DH895XCC Series MEI Controller #1" }, - { "8086", "23e5", "DH895XCC Series MEI Controller #2" }, - { "8086", "2410", "82801AA ISA Bridge (LPC)" }, - { "8086", "2411", "82801AA IDE Controller" }, - { "8086", "2412", "82801AA USB Controller" }, - { "8086", "2413", "82801AA SMBus Controller" }, - { "8086", "2415", "82801AA AC'97 Audio Controller" }, - { "8086", "2416", "82801AA AC'97 Modem Controller" }, - { "8086", "2418", "82801AA PCI Bridge" }, - { "8086", "2420", "82801AB ISA Bridge (LPC)" }, - { "8086", "2421", "82801AB IDE Controller" }, - { "8086", "2422", "82801AB USB Controller" }, - { "8086", "2423", "82801AB SMBus Controller" }, - { "8086", "2425", "82801AB AC'97 Audio Controller" }, - { "8086", "2426", "82801AB AC'97 Modem Controller" }, - { "8086", "2428", "82801AB PCI Bridge" }, - { "8086", "2440", "82801BA ISA Bridge (LPC)" }, - { "8086", "2442", "82801BA/BAM UHCI USB 1.1 Controller #1" }, - { "8086", "2443", "82801BA/BAM SMBus Controller" }, - { "8086", "2444", "82801BA/BAM UHCI USB 1.1 Controller #2" }, - { "8086", "2445", "82801BA/BAM AC'97 Audio Controller" }, - { "8086", "2446", "82801BA/BAM AC'97 Modem Controller" }, - { "8086", "2448", "82801 Mobile PCI Bridge" }, - { "8086", "2449", "82801BA/BAM/CA/CAM Ethernet Controller" }, - { "8086", "244a", "82801BAM IDE U100 Controller" }, - { "8086", "244b", "82801BA IDE U100 Controller" }, - { "8086", "244c", "82801BAM ISA Bridge (LPC)" }, - { "8086", "244e", "82801 PCI Bridge" }, - { "8086", "2450", "82801E ISA Bridge (LPC)" }, - { "8086", "2452", "82801E USB Controller" }, - { "8086", "2453", "82801E SMBus Controller" }, - { "8086", "2459", "82801E Ethernet Controller 0" }, - { "8086", "245b", "82801E IDE U100 Controller" }, - { "8086", "245d", "82801E Ethernet Controller 1" }, - { "8086", "245e", "82801E PCI Bridge" }, - { "8086", "2480", "82801CA LPC Interface Controller" }, - { "8086", "2482", "82801CA/CAM USB Controller #1" }, - { "8086", "2483", "82801CA/CAM SMBus Controller" }, - { "8086", "2484", "82801CA/CAM USB Controller #2" }, - { "8086", "2485", "82801CA/CAM AC'97 Audio Controller" }, - { "8086", "2486", "82801CA/CAM AC'97 Modem Controller" }, - { "8086", "2487", "82801CA/CAM USB Controller #3" }, - { "8086", "248a", "82801CAM IDE U100 Controller" }, - { "8086", "248b", "82801CA Ultra ATA Storage Controller" }, - { "8086", "248c", "82801CAM ISA Bridge (LPC)" }, - { "8086", "24c0", "82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge" }, - { "8086", "24c1", "82801DBL (ICH4-L) IDE Controller" }, - { "8086", "24c2", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1" }, - { "8086", "24c3", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller" }, - { "8086", "24c4", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2" }, - { "8086", "24c5", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller" }, - { "8086", "24c6", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller" }, - { "8086", "24c7", "82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3" }, - { "8086", "24ca", "82801DBM (ICH4-M) IDE Controller" }, - { "8086", "24cb", "82801DB (ICH4) IDE Controller" }, - { "8086", "24cc", "82801DBM (ICH4-M) LPC Interface Bridge" }, - { "8086", "24cd", "82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller" }, - { "8086", "24d0", "82801EB/ER (ICH5/ICH5R) LPC Interface Bridge" }, - { "8086", "24d1", "82801EB (ICH5) SATA Controller" }, - { "8086", "24d2", "82801EB/ER (ICH5/ICH5R) USB UHCI Controller #1" }, - { "8086", "24d3", "82801EB/ER (ICH5/ICH5R) SMBus Controller" }, - { "8086", "24d4", "82801EB/ER (ICH5/ICH5R) USB UHCI Controller #2" }, - { "8086", "24d5", "82801EB/ER (ICH5/ICH5R) AC'97 Audio Controller" }, - { "8086", "24d6", "82801EB/ER (ICH5/ICH5R) AC'97 Modem Controller" }, - { "8086", "24d7", "82801EB/ER (ICH5/ICH5R) USB UHCI Controller #3" }, - { "8086", "24db", "82801EB/ER (ICH5/ICH5R) IDE Controller" }, - { "8086", "24dc", "82801EB (ICH5) LPC Interface Bridge" }, - { "8086", "24dd", "82801EB/ER (ICH5/ICH5R) USB2 EHCI Controller" }, - { "8086", "24de", "82801EB/ER (ICH5/ICH5R) USB UHCI Controller #4" }, - { "8086", "24df", "82801ER (ICH5R) SATA Controller" }, - { "8086", "24f0", "Omni-Path HFI Silicon 100 Series [discrete]" }, - { "8086", "24f1", "Omni-Path HFI Silicon 100 Series [integrated]" }, - { "8086", "24f3", "Wireless 8260" }, - { "8086", "24f4", "Wireless 8260" }, - { "8086", "24fb", "Dual Band Wireless-AC 3168NGW [Stone Peak]" }, - { "8086", "24fd", "Wireless 8265 / 8275" }, - { "8086", "2500", "82820 820 (Camino) Chipset Host Bridge (MCH)" }, - { "8086", "2501", "82820 820 (Camino) Chipset Host Bridge (MCH)" }, - { "8086", "250b", "82820 820 (Camino) Chipset Host Bridge" }, - { "8086", "250f", "82820 820 (Camino) Chipset AGP Bridge" }, - { "8086", "2520", "82805AA MTH Memory Translator Hub" }, - { "8086", "2521", "82804AA MRH-S Memory Repeater Hub for SDRAM" }, - { "8086", "2522", "NVMe Optane Memory Series" }, - { "8086", "2526", "Wireless-AC 9260" }, - { "8086", "2530", "82850 850 (Tehama) Chipset Host Bridge (MCH)" }, - { "8086", "2531", "82860 860 (Wombat) Chipset Host Bridge (MCH)" }, - { "8086", "2532", "82850 850 (Tehama) Chipset AGP Bridge" }, - { "8086", "2533", "82860 860 (Wombat) Chipset AGP Bridge" }, - { "8086", "2534", "82860 860 (Wombat) Chipset PCI Bridge" }, - { "8086", "2540", "E7500 Memory Controller Hub" }, - { "8086", "2541", "E7500/E7501 Host RASUM Controller" }, - { "8086", "2543", "E7500/E7501 Hub Interface B PCI-to-PCI Bridge" }, - { "8086", "2544", "E7500/E7501 Hub Interface B RASUM Controller" }, - { "8086", "2545", "E7500/E7501 Hub Interface C PCI-to-PCI Bridge" }, - { "8086", "2546", "E7500/E7501 Hub Interface C RASUM Controller" }, - { "8086", "2547", "E7500/E7501 Hub Interface D PCI-to-PCI Bridge" }, - { "8086", "2548", "E7500/E7501 Hub Interface D RASUM Controller" }, - { "8086", "254c", "E7501 Memory Controller Hub" }, - { "8086", "2550", "E7505 Memory Controller Hub" }, - { "8086", "2551", "E7505/E7205 Series RAS Controller" }, - { "8086", "2552", "E7505/E7205 PCI-to-AGP Bridge" }, - { "8086", "2553", "E7505 Hub Interface B PCI-to-PCI Bridge" }, - { "8086", "2554", "E7505 Hub Interface B PCI-to-PCI Bridge RAS Controller" }, - { "8086", "255d", "E7205 Memory Controller Hub" }, - { "8086", "2560", "82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface" }, - { "8086", "2561", "82845G/GL[Brookdale-G]/GE/PE Host-to-AGP Bridge" }, - { "8086", "2562", "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device" }, - { "8086", "2570", "82865G/PE/P DRAM Controller/Host-Hub Interface" }, - { "8086", "2571", "82865G/PE/P AGP Bridge" }, - { "8086", "2572", "82865G Integrated Graphics Controller" }, - { "8086", "2573", "82865G/PE/P PCI to CSA Bridge" }, - { "8086", "2576", "82865G/PE/P Processor to I/O Memory Interface" }, - { "8086", "2578", "82875P/E7210 Memory Controller Hub" }, - { "8086", "2579", "82875P Processor to AGP Controller" }, - { "8086", "257b", "82875P/E7210 Processor to PCI to CSA Bridge" }, - { "8086", "257e", "82875P/E7210 Processor to I/O Memory Interface" }, - { "8086", "2580", "82915G/P/GV/GL/PL/910GL Memory Controller Hub" }, - { "8086", "2581", "82915G/P/GV/GL/PL/910GL PCI Express Root Port" }, - { "8086", "2582", "82915G/GV/910GL Integrated Graphics Controller" }, - { "8086", "2584", "82925X/XE Memory Controller Hub" }, - { "8086", "2585", "82925X/XE PCI Express Root Port" }, - { "8086", "2588", "E7220/E7221 Memory Controller Hub" }, - { "8086", "2589", "E7220/E7221 PCI Express Root Port" }, - { "8086", "258a", "E7221 Integrated Graphics Controller" }, - { "8086", "2590", "Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller" }, - { "8086", "2591", "Mobile 915GM/PM Express PCI Express Root Port" }, - { "8086", "2592", "Mobile 915GM/GMS/910GML Express Graphics Controller" }, - { "8086", "25a1", "6300ESB LPC Interface Controller" }, - { "8086", "25a2", "6300ESB PATA Storage Controller" }, - { "8086", "25a3", "6300ESB SATA Storage Controller" }, - { "8086", "25a4", "6300ESB SMBus Controller" }, - { "8086", "25a6", "6300ESB AC'97 Audio Controller" }, - { "8086", "25a7", "6300ESB AC'97 Modem Controller" }, - { "8086", "25a9", "6300ESB USB Universal Host Controller" }, - { "8086", "25aa", "6300ESB USB Universal Host Controller" }, - { "8086", "25ab", "6300ESB Watchdog Timer" }, - { "8086", "25ac", "6300ESB I/O Advanced Programmable Interrupt Controller" }, - { "8086", "25ad", "6300ESB USB2 Enhanced Host Controller" }, - { "8086", "25ae", "6300ESB 64-bit PCI-X Bridge" }, - { "8086", "25b0", "6300ESB SATA RAID Controller" }, - { "8086", "25c0", "5000X Chipset Memory Controller Hub" }, - { "8086", "25d0", "5000Z Chipset Memory Controller Hub" }, - { "8086", "25d4", "5000V Chipset Memory Controller Hub" }, - { "8086", "25d8", "5000P Chipset Memory Controller Hub" }, - { "8086", "25e2", "5000 Series Chipset PCI Express x4 Port 2" }, - { "8086", "25e3", "5000 Series Chipset PCI Express x4 Port 3" }, - { "8086", "25e4", "5000 Series Chipset PCI Express x4 Port 4" }, - { "8086", "25e5", "5000 Series Chipset PCI Express x4 Port 5" }, - { "8086", "25e6", "5000 Series Chipset PCI Express x4 Port 6" }, - { "8086", "25e7", "5000 Series Chipset PCI Express x4 Port 7" }, - { "8086", "25f0", "5000 Series Chipset FSB Registers" }, - { "8086", "25f1", "5000 Series Chipset Reserved Registers" }, - { "8086", "25f3", "5000 Series Chipset Reserved Registers" }, - { "8086", "25f5", "5000 Series Chipset FBD Registers" }, - { "8086", "25f6", "5000 Series Chipset FBD Registers" }, - { "8086", "25f7", "5000 Series Chipset PCI Express x8 Port 2-3" }, - { "8086", "25f8", "5000 Series Chipset PCI Express x8 Port 4-5" }, - { "8086", "25f9", "5000 Series Chipset PCI Express x8 Port 6-7" }, - { "8086", "25fa", "5000X Chipset PCI Express x16 Port 4-7" }, - { "8086", "2600", "E8500/E8501 Hub Interface 1.5" }, - { "8086", "2601", "E8500/E8501 PCI Express x4 Port D" }, - { "8086", "2602", "E8500/E8501 PCI Express x4 Port C0" }, - { "8086", "2603", "E8500/E8501 PCI Express x4 Port C1" }, - { "8086", "2604", "E8500/E8501 PCI Express x4 Port B0" }, - { "8086", "2605", "E8500/E8501 PCI Express x4 Port B1" }, - { "8086", "2606", "E8500/E8501 PCI Express x4 Port A0" }, - { "8086", "2607", "E8500/E8501 PCI Express x4 Port A1" }, - { "8086", "2608", "E8500/E8501 PCI Express x8 Port C" }, - { "8086", "2609", "E8500/E8501 PCI Express x8 Port B" }, - { "8086", "260a", "E8500/E8501 PCI Express x8 Port A" }, - { "8086", "260c", "E8500/E8501 IMI Registers" }, - { "8086", "2610", "E8500/E8501 FSB Registers" }, - { "8086", "2611", "E8500/E8501 Address Mapping Registers" }, - { "8086", "2612", "E8500/E8501 RAS Registers" }, - { "8086", "2613", "E8500/E8501 Reserved Registers" }, - { "8086", "2614", "E8500/E8501 Reserved Registers" }, - { "8086", "2615", "E8500/E8501 Miscellaneous Registers" }, - { "8086", "2617", "E8500/E8501 Reserved Registers" }, - { "8086", "2618", "E8500/E8501 Reserved Registers" }, - { "8086", "2619", "E8500/E8501 Reserved Registers" }, - { "8086", "261a", "E8500/E8501 Reserved Registers" }, - { "8086", "261b", "E8500/E8501 Reserved Registers" }, - { "8086", "261c", "E8500/E8501 Reserved Registers" }, - { "8086", "261d", "E8500/E8501 Reserved Registers" }, - { "8086", "261e", "E8500/E8501 Reserved Registers" }, - { "8086", "2620", "E8500/E8501 eXternal Memory Bridge" }, - { "8086", "2621", "E8500/E8501 XMB Miscellaneous Registers" }, - { "8086", "2622", "E8500/E8501 XMB Memory Interleaving Registers" }, - { "8086", "2623", "E8500/E8501 XMB DDR Initialization and Calibration" }, - { "8086", "2624", "E8500/E8501 XMB Reserved Registers" }, - { "8086", "2625", "E8500/E8501 XMB Reserved Registers" }, - { "8086", "2626", "E8500/E8501 XMB Reserved Registers" }, - { "8086", "2627", "E8500/E8501 XMB Reserved Registers" }, - { "8086", "2640", "82801FB/FR (ICH6/ICH6R) LPC Interface Bridge" }, - { "8086", "2641", "82801FBM (ICH6M) LPC Interface Bridge" }, - { "8086", "2642", "82801FW/FRW (ICH6W/ICH6RW) LPC Interface Bridge" }, - { "8086", "2651", "82801FB/FW (ICH6/ICH6W) SATA Controller" }, - { "8086", "2652", "82801FR/FRW (ICH6R/ICH6RW) SATA Controller" }, - { "8086", "2653", "82801FBM (ICH6M) SATA Controller" }, - { "8086", "2658", "82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1" }, - { "8086", "2659", "82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2" }, - { "8086", "265a", "82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3" }, - { "8086", "265b", "82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4" }, - { "8086", "265c", "82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller" }, - { "8086", "2660", "82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1" }, - { "8086", "2662", "82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2" }, - { "8086", "2664", "82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 3" }, - { "8086", "2666", "82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 4" }, - { "8086", "2668", "82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller" }, - { "8086", "266a", "82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller" }, - { "8086", "266c", "82801FB/FBM/FR/FW/FRW (ICH6 Family) LAN Controller" }, - { "8086", "266d", "82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller" }, - { "8086", "266e", "82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller" }, - { "8086", "266f", "82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller" }, - { "8086", "2670", "631xESB/632xESB/3100 Chipset LPC Interface Controller" }, - { "8086", "2680", "631xESB/632xESB/3100 Chipset SATA IDE Controller" }, - { "8086", "2681", "631xESB/632xESB SATA AHCI Controller" }, - { "8086", "2682", "631xESB/632xESB SATA RAID Controller" }, - { "8086", "2683", "631xESB/632xESB SATA RAID Controller" }, - { "8086", "2688", "631xESB/632xESB/3100 Chipset UHCI USB Controller #1" }, - { "8086", "2689", "631xESB/632xESB/3100 Chipset UHCI USB Controller #2" }, - { "8086", "268a", "631xESB/632xESB/3100 Chipset UHCI USB Controller #3" }, - { "8086", "268b", "631xESB/632xESB/3100 Chipset UHCI USB Controller #4" }, - { "8086", "268c", "631xESB/632xESB/3100 Chipset EHCI USB2 Controller" }, - { "8086", "2690", "631xESB/632xESB/3100 Chipset PCI Express Root Port 1" }, - { "8086", "2692", "631xESB/632xESB/3100 Chipset PCI Express Root Port 2" }, - { "8086", "2694", "631xESB/632xESB/3100 Chipset PCI Express Root Port 3" }, - { "8086", "2696", "631xESB/632xESB/3100 Chipset PCI Express Root Port 4" }, - { "8086", "2698", "631xESB/632xESB AC '97 Audio Controller" }, - { "8086", "2699", "631xESB/632xESB AC '97 Modem Controller" }, - { "8086", "269a", "631xESB/632xESB High Definition Audio Controller" }, - { "8086", "269b", "631xESB/632xESB/3100 Chipset SMBus Controller" }, - { "8086", "269e", "631xESB/632xESB IDE Controller" }, - { "8086", "2700", "Optane SSD 900P Series" }, - { "8086", "2701", "NVMe Datacenter SSD [Optane]" }, - { "8086", "2723", "Wi-Fi 6 AX200" }, - { "8086", "2725", "Wi-Fi 6 AX210/AX211/AX411 160MHz" }, - { "8086", "2770", "82945G/GZ/P/PL Memory Controller Hub" }, - { "8086", "2771", "82945G/GZ/P/PL PCI Express Root Port" }, - { "8086", "2772", "82945G/GZ Integrated Graphics Controller" }, - { "8086", "2774", "82955X Memory Controller Hub" }, - { "8086", "2775", "82955X PCI Express Root Port" }, - { "8086", "2776", "82945G/GZ Integrated Graphics Controller" }, - { "8086", "2778", "E7230/3000/3010 Memory Controller Hub" }, - { "8086", "2779", "E7230/3000/3010 PCI Express Root Port" }, - { "8086", "277a", "82975X/3010 PCI Express Root Port" }, - { "8086", "277c", "82975X Memory Controller Hub" }, - { "8086", "277d", "82975X PCI Express Root Port" }, - { "8086", "2780", "82915G/GV/GL/910GL [Grantsdale] Graphics Device" }, - { "8086", "2782", "82915G Integrated Graphics Controller" }, - { "8086", "2792", "Mobile 915GM/GMS/910GML Express Graphics Controller" }, - { "8086", "27a0", "Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub" }, - { "8086", "27a1", "Mobile 945GM/PM/GMS, 943/940GML and 945GT Express PCI Express Root Port" }, - { "8086", "27a2", "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller" }, - { "8086", "27a6", "Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller" }, - { "8086", "27ac", "Mobile 945GSE Express Memory Controller Hub" }, - { "8086", "27ad", "Mobile 945GSE Express PCI Express Root Port" }, - { "8086", "27ae", "Mobile 945GSE Express Integrated Graphics Controller" }, - { "8086", "27b0", "82801GH (ICH7DH) LPC Interface Bridge" }, - { "8086", "27b8", "82801GB/GR (ICH7 Family) LPC Interface Bridge" }, - { "8086", "27b9", "82801GBM (ICH7-M) LPC Interface Bridge" }, - { "8086", "27bc", "NM10 Family LPC Controller" }, - { "8086", "27bd", "82801GHM (ICH7-M DH) LPC Interface Bridge" }, - { "8086", "27c0", "NM10/ICH7 Family SATA Controller [IDE mode]" }, - { "8086", "27c1", "NM10/ICH7 Family SATA Controller [AHCI mode]" }, - { "8086", "27c3", "82801GR/GDH (ICH7R/ICH7DH) SATA Controller [RAID mode]" }, - { "8086", "27c4", "82801GBM/GHM (ICH7-M Family) SATA Controller [IDE mode]" }, - { "8086", "27c5", "82801GBM/GHM (ICH7-M Family) SATA Controller [AHCI mode]" }, - { "8086", "27c6", "82801GHM (ICH7-M DH) SATA Controller [RAID mode]" }, - { "8086", "27c8", "NM10/ICH7 Family USB UHCI Controller #1" }, - { "8086", "27c9", "NM10/ICH7 Family USB UHCI Controller #2" }, - { "8086", "27ca", "NM10/ICH7 Family USB UHCI Controller #3" }, - { "8086", "27cb", "NM10/ICH7 Family USB UHCI Controller #4" }, - { "8086", "27cc", "NM10/ICH7 Family USB2 EHCI Controller" }, - { "8086", "27d0", "NM10/ICH7 Family PCI Express Port 1" }, - { "8086", "27d2", "NM10/ICH7 Family PCI Express Port 2" }, - { "8086", "27d4", "NM10/ICH7 Family PCI Express Port 3" }, - { "8086", "27d6", "NM10/ICH7 Family PCI Express Port 4" }, - { "8086", "27d8", "NM10/ICH7 Family High Definition Audio Controller" }, - { "8086", "27da", "NM10/ICH7 Family SMBus Controller" }, - { "8086", "27dc", "NM10/ICH7 Family LAN Controller" }, - { "8086", "27dd", "82801G (ICH7 Family) AC'97 Modem Controller" }, - { "8086", "27de", "82801G (ICH7 Family) AC'97 Audio Controller" }, - { "8086", "27df", "82801G (ICH7 Family) IDE Controller" }, - { "8086", "27e0", "82801GR/GH/GHM (ICH7 Family) PCI Express Port 5" }, - { "8086", "27e2", "82801GR/GH/GHM (ICH7 Family) PCI Express Port 6" }, - { "8086", "2810", "82801HB/HR (ICH8/R) LPC Interface Controller" }, - { "8086", "2811", "82801HEM (ICH8M-E) LPC Interface Controller" }, - { "8086", "2812", "82801HH (ICH8DH) LPC Interface Controller" }, - { "8086", "2814", "82801HO (ICH8DO) LPC Interface Controller" }, - { "8086", "2815", "82801HM (ICH8M) LPC Interface Controller" }, - { "8086", "2820", "82801H (ICH8 Family) 4 port SATA Controller [IDE mode]" }, - { "8086", "2821", "82801HR/HO/HH (ICH8R/DO/DH) 6 port SATA Controller [AHCI mode]" }, - { "8086", "2822", "SATA Controller [RAID mode]" }, - { "8086", "2823", "C610/X99 series chipset sSATA Controller [RAID mode]" }, - { "8086", "2824", "82801HB (ICH8) 4 port SATA Controller [AHCI mode]" }, - { "8086", "2825", "82801HR/HO/HH (ICH8R/DO/DH) 2 port SATA Controller [IDE mode]" }, - { "8086", "2826", "C600/X79 series chipset SATA RAID Controller" }, - { "8086", "2827", "C610/X99 series chipset sSATA Controller [RAID mode]" }, - { "8086", "2828", "82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [IDE mode]" }, - { "8086", "2829", "82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode]" }, - { "8086", "282a", "82801 Mobile SATA Controller [RAID mode]" }, - { "8086", "2830", "82801H (ICH8 Family) USB UHCI Controller #1" }, - { "8086", "2831", "82801H (ICH8 Family) USB UHCI Controller #2" }, - { "8086", "2832", "82801H (ICH8 Family) USB UHCI Controller #3" }, - { "8086", "2833", "82801H (ICH8 Family) USB UHCI Controller #4" }, - { "8086", "2834", "82801H (ICH8 Family) USB UHCI Controller #4" }, - { "8086", "2835", "82801H (ICH8 Family) USB UHCI Controller #5" }, - { "8086", "2836", "82801H (ICH8 Family) USB2 EHCI Controller #1" }, - { "8086", "283a", "82801H (ICH8 Family) USB2 EHCI Controller #2" }, - { "8086", "283e", "82801H (ICH8 Family) SMBus Controller" }, - { "8086", "283f", "82801H (ICH8 Family) PCI Express Port 1" }, - { "8086", "2841", "82801H (ICH8 Family) PCI Express Port 2" }, - { "8086", "2843", "82801H (ICH8 Family) PCI Express Port 3" }, - { "8086", "2845", "82801H (ICH8 Family) PCI Express Port 4" }, - { "8086", "2847", "82801H (ICH8 Family) PCI Express Port 5" }, - { "8086", "2849", "82801H (ICH8 Family) PCI Express Port 6" }, - { "8086", "284b", "82801H (ICH8 Family) HD Audio Controller" }, - { "8086", "284f", "82801H (ICH8 Family) Thermal Reporting Device" }, - { "8086", "2850", "82801HM/HEM (ICH8M/ICH8M-E) IDE Controller" }, - { "8086", "28c0", "Volume Management Device NVMe RAID Controller" }, - { "8086", "2912", "82801IH (ICH9DH) LPC Interface Controller" }, - { "8086", "2914", "82801IO (ICH9DO) LPC Interface Controller" }, - { "8086", "2916", "82801IR (ICH9R) LPC Interface Controller" }, - { "8086", "2917", "ICH9M-E LPC Interface Controller" }, - { "8086", "2918", "82801IB (ICH9) LPC Interface Controller" }, - { "8086", "2919", "ICH9M LPC Interface Controller" }, - { "8086", "2920", "82801IR/IO/IH (ICH9R/DO/DH) 4 port SATA Controller [IDE mode]" }, - { "8086", "2921", "82801IB (ICH9) 2 port SATA Controller [IDE mode]" }, - { "8086", "2922", "82801IR/IO/IH (ICH9R/DO/DH) 6 port SATA Controller [AHCI mode]" }, - { "8086", "2923", "82801IB (ICH9) 4 port SATA Controller [AHCI mode]" }, - { "8086", "2925", "82801IR/IO (ICH9R/DO) SATA Controller [RAID mode]" }, - { "8086", "2926", "82801I (ICH9 Family) 2 port SATA Controller [IDE mode]" }, - { "8086", "2928", "82801IBM/IEM (ICH9M/ICH9M-E) 2 port SATA Controller [IDE mode]" }, - { "8086", "2929", "82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode]" }, - { "8086", "292c", "82801IEM (ICH9M-E) SATA Controller [RAID mode]" }, - { "8086", "292d", "82801IBM/IEM (ICH9M/ICH9M-E) 2 port SATA Controller [IDE mode]" }, - { "8086", "2930", "82801I (ICH9 Family) SMBus Controller" }, - { "8086", "2932", "82801I (ICH9 Family) Thermal Subsystem" }, - { "8086", "2934", "82801I (ICH9 Family) USB UHCI Controller #1" }, - { "8086", "2935", "82801I (ICH9 Family) USB UHCI Controller #2" }, - { "8086", "2936", "82801I (ICH9 Family) USB UHCI Controller #3" }, - { "8086", "2937", "82801I (ICH9 Family) USB UHCI Controller #4" }, - { "8086", "2938", "82801I (ICH9 Family) USB UHCI Controller #5" }, - { "8086", "2939", "82801I (ICH9 Family) USB UHCI Controller #6" }, - { "8086", "293a", "82801I (ICH9 Family) USB2 EHCI Controller #1" }, - { "8086", "293c", "82801I (ICH9 Family) USB2 EHCI Controller #2" }, - { "8086", "293e", "82801I (ICH9 Family) HD Audio Controller" }, - { "8086", "2940", "82801I (ICH9 Family) PCI Express Port 1" }, - { "8086", "2942", "82801I (ICH9 Family) PCI Express Port 2" }, - { "8086", "2944", "82801I (ICH9 Family) PCI Express Port 3" }, - { "8086", "2946", "82801I (ICH9 Family) PCI Express Port 4" }, - { "8086", "2948", "82801I (ICH9 Family) PCI Express Port 5" }, - { "8086", "294a", "82801I (ICH9 Family) PCI Express Port 6" }, - { "8086", "294c", "82566DC-2 Gigabit Network Connection" }, - { "8086", "2970", "82946GZ/PL/GL Memory Controller Hub" }, - { "8086", "2971", "82946GZ/PL/GL PCI Express Root Port" }, - { "8086", "2972", "82946GZ/GL Integrated Graphics Controller" }, - { "8086", "2973", "82946GZ/GL Integrated Graphics Controller" }, - { "8086", "2974", "82946GZ/GL HECI Controller" }, - { "8086", "2975", "82946GZ/GL HECI Controller" }, - { "8086", "2976", "82946GZ/GL PT IDER Controller" }, - { "8086", "2977", "82946GZ/GL KT Controller" }, - { "8086", "2980", "82G35 Express DRAM Controller" }, - { "8086", "2981", "82G35 Express PCI Express Root Port" }, - { "8086", "2982", "82G35 Express Integrated Graphics Controller" }, - { "8086", "2983", "82G35 Express Integrated Graphics Controller" }, - { "8086", "2984", "82G35 Express HECI Controller" }, - { "8086", "2990", "82Q963/Q965 Memory Controller Hub" }, - { "8086", "2991", "82Q963/Q965 PCI Express Root Port" }, - { "8086", "2992", "82Q963/Q965 Integrated Graphics Controller" }, - { "8086", "2993", "82Q963/Q965 Integrated Graphics Controller" }, - { "8086", "2994", "82Q963/Q965 HECI Controller" }, - { "8086", "2995", "82Q963/Q965 HECI Controller" }, - { "8086", "2996", "82Q963/Q965 PT IDER Controller" }, - { "8086", "2997", "82Q963/Q965 KT Controller" }, - { "8086", "29a0", "82P965/G965 Memory Controller Hub" }, - { "8086", "29a1", "82P965/G965 PCI Express Root Port" }, - { "8086", "29a2", "82G965 Integrated Graphics Controller" }, - { "8086", "29a3", "82G965 Integrated Graphics Controller" }, - { "8086", "29a4", "82P965/G965 HECI Controller" }, - { "8086", "29a5", "82P965/G965 HECI Controller" }, - { "8086", "29a6", "82P965/G965 PT IDER Controller" }, - { "8086", "29a7", "82P965/G965 KT Controller" }, - { "8086", "29b0", "82Q35 Express DRAM Controller" }, - { "8086", "29b1", "82Q35 Express PCI Express Root Port" }, - { "8086", "29b2", "82Q35 Express Integrated Graphics Controller" }, - { "8086", "29b3", "82Q35 Express Integrated Graphics Controller" }, - { "8086", "29b4", "82Q35 Express MEI Controller" }, - { "8086", "29b5", "82Q35 Express MEI Controller" }, - { "8086", "29b6", "82Q35 Express PT IDER Controller" }, - { "8086", "29b7", "82Q35 Express Serial KT Controller" }, - { "8086", "29c0", "82G33/G31/P35/P31 Express DRAM Controller" }, - { "8086", "29c1", "82G33/G31/P35/P31 Express PCI Express Root Port" }, - { "8086", "29c2", "82G33/G31 Express Integrated Graphics Controller" }, - { "8086", "29c3", "82G33/G31 Express Integrated Graphics Controller" }, - { "8086", "29c4", "82G33/G31/P35/P31 Express MEI Controller" }, - { "8086", "29c5", "82G33/G31/P35/P31 Express MEI Controller" }, - { "8086", "29c6", "82G33/G31/P35/P31 Express PT IDER Controller" }, - { "8086", "29c7", "82G33/G31/P35/P31 Express Serial KT Controller" }, - { "8086", "29cf", "Virtual HECI Controller" }, - { "8086", "29d0", "82Q33 Express DRAM Controller" }, - { "8086", "29d1", "82Q33 Express PCI Express Root Port" }, - { "8086", "29d2", "82Q33 Express Integrated Graphics Controller" }, - { "8086", "29d3", "82Q33 Express Integrated Graphics Controller" }, - { "8086", "29d4", "82Q33 Express MEI Controller" }, - { "8086", "29d5", "82Q33 Express MEI Controller" }, - { "8086", "29d6", "82Q33 Express PT IDER Controller" }, - { "8086", "29d7", "82Q33 Express Serial KT Controller" }, - { "8086", "29e0", "82X38/X48 Express DRAM Controller" }, - { "8086", "29e1", "82X38/X48 Express Host-Primary PCI Express Bridge" }, - { "8086", "29e4", "82X38/X48 Express MEI Controller" }, - { "8086", "29e5", "82X38/X48 Express MEI Controller" }, - { "8086", "29e6", "82X38/X48 Express PT IDER Controller" }, - { "8086", "29e7", "82X38/X48 Express Serial KT Controller" }, - { "8086", "29e9", "82X38/X48 Express Host-Secondary PCI Express Bridge" }, - { "8086", "29f0", "3200/3210 Chipset DRAM Controller" }, - { "8086", "29f1", "3200/3210 Chipset Host-Primary PCI Express Bridge" }, - { "8086", "29f4", "3200/3210 Chipset MEI Controller" }, - { "8086", "29f5", "3200/3210 Chipset MEI Controller" }, - { "8086", "29f6", "3200/3210 Chipset PT IDER Controller" }, - { "8086", "29f7", "3200/3210 Chipset Serial KT Controller" }, - { "8086", "29f9", "3210 Chipset Host-Secondary PCI Express Bridge" }, - { "8086", "2a00", "Mobile PM965/GM965/GL960 Memory Controller Hub" }, - { "8086", "2a01", "Mobile PM965/GM965/GL960 PCI Express Root Port" }, - { "8086", "2a02", "Mobile GM965/GL960 Integrated Graphics Controller (primary)" }, - { "8086", "2a03", "Mobile GM965/GL960 Integrated Graphics Controller (secondary)" }, - { "8086", "2a04", "Mobile PM965/GM965 MEI Controller" }, - { "8086", "2a05", "Mobile PM965/GM965 MEI Controller" }, - { "8086", "2a06", "Mobile PM965/GM965 PT IDER Controller" }, - { "8086", "2a07", "Mobile PM965/GM965 KT Controller" }, - { "8086", "2a10", "Mobile GME965/GLE960 Memory Controller Hub" }, - { "8086", "2a11", "Mobile GME965/GLE960 PCI Express Root Port" }, - { "8086", "2a12", "Mobile GME965/GLE960 Integrated Graphics Controller" }, - { "8086", "2a13", "Mobile GME965/GLE960 Integrated Graphics Controller" }, - { "8086", "2a14", "Mobile GME965/GLE960 MEI Controller" }, - { "8086", "2a15", "Mobile GME965/GLE960 MEI Controller" }, - { "8086", "2a16", "Mobile GME965/GLE960 PT IDER Controller" }, - { "8086", "2a17", "Mobile GME965/GLE960 KT Controller" }, - { "8086", "2a40", "Mobile 4 Series Chipset Memory Controller Hub" }, - { "8086", "2a41", "Mobile 4 Series Chipset PCI Express Graphics Port" }, - { "8086", "2a42", "Mobile 4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2a43", "Mobile 4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2a44", "Mobile 4 Series Chipset MEI Controller" }, - { "8086", "2a45", "Mobile 4 Series Chipset MEI Controller" }, - { "8086", "2a46", "Mobile 4 Series Chipset PT IDER Controller" }, - { "8086", "2a47", "Mobile 4 Series Chipset AMT SOL Redirection" }, - { "8086", "2a50", "Cantiga MEI Controller" }, - { "8086", "2a51", "Cantiga MEI Controller" }, - { "8086", "2a52", "Cantiga PT IDER Controller" }, - { "8086", "2a53", "Cantiga AMT SOL Redirection" }, - { "8086", "2b00", "Xeon Processor E7 Product Family System Configuration Controller 1" }, - { "8086", "2b02", "Xeon Processor E7 Product Family System Configuration Controller 2" }, - { "8086", "2b04", "Xeon Processor E7 Product Family Power Controller" }, - { "8086", "2b08", "Xeon Processor E7 Product Family Caching Agent 0" }, - { "8086", "2b0c", "Xeon Processor E7 Product Family Caching Agent 1" }, - { "8086", "2b10", "Xeon Processor E7 Product Family QPI Home Agent 0" }, - { "8086", "2b13", "Xeon Processor E7 Product Family Memory Controller 0c" }, - { "8086", "2b14", "Xeon Processor E7 Product Family Memory Controller 0a" }, - { "8086", "2b16", "Xeon Processor E7 Product Family Memory Controller 0b" }, - { "8086", "2b18", "Xeon Processor E7 Product Family QPI Home Agent 1" }, - { "8086", "2b1b", "Xeon Processor E7 Product Family Memory Controller 1c" }, - { "8086", "2b1c", "Xeon Processor E7 Product Family Memory Controller 1a" }, - { "8086", "2b1e", "Xeon Processor E7 Product Family Memory Controller 1b" }, - { "8086", "2b20", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 0" }, - { "8086", "2b22", "Xeon Processor E7 Product Family System Configuration Controller 3" }, - { "8086", "2b24", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 1" }, - { "8086", "2b28", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 2" }, - { "8086", "2b2a", "Xeon Processor E7 Product Family System Configuration Controller 4" }, - { "8086", "2b2c", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 3" }, - { "8086", "2b30", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 4" }, - { "8086", "2b34", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 5" }, - { "8086", "2b38", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 6" }, - { "8086", "2b3c", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 7" }, - { "8086", "2b40", "Xeon Processor E7 Product Family QPI Router Port 0-1" }, - { "8086", "2b42", "Xeon Processor E7 Product Family QPI Router Port 2-3" }, - { "8086", "2b44", "Xeon Processor E7 Product Family QPI Router Port 4-5" }, - { "8086", "2b46", "Xeon Processor E7 Product Family QPI Router Port 6-7" }, - { "8086", "2b48", "Xeon Processor E7 Product Family Test and Debug 0" }, - { "8086", "2b4c", "Xeon Processor E7 Product Family Test and Debug 1" }, - { "8086", "2b50", "Xeon Processor E7 Product Family QPI Physical Port 0: REUT control/status" }, - { "8086", "2b52", "Xeon Processor E7 Product Family QPI Physical Port 0: Misc. control/status" }, - { "8086", "2b54", "Xeon Processor E7 Product Family QPI Physical Port 1: REUT control/status" }, - { "8086", "2b56", "Xeon Processor E7 Product Family QPI Physical Port 1: Misc. control/status" }, - { "8086", "2b58", "Xeon Processor E7 Product Family QPI Physical Port 2: REUT control/status" }, - { "8086", "2b5a", "Xeon Processor E7 Product Family QPI Physical Port 2: Misc. control/status" }, - { "8086", "2b5c", "Xeon Processor E7 Product Family QPI Physical Port 3: REUT control/status" }, - { "8086", "2b5e", "Xeon Processor E7 Product Family QPI Physical Port 3: Misc. control/status" }, - { "8086", "2b60", "Xeon Processor E7 Product Family SMI Physical Port 0: REUT control/status" }, - { "8086", "2b62", "Xeon Processor E7 Product Family SMI Physical Port 0: Misc control/status" }, - { "8086", "2b64", "Xeon Processor E7 Product Family SMI Physical Port 1: REUT control/status" }, - { "8086", "2b66", "Xeon Processor E7 Product Family SMI Physical Port 1: Misc control/status" }, - { "8086", "2b68", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 8" }, - { "8086", "2b6c", "Xeon Processor E7 Product Family Last Level Cache Coherence Engine 9" }, - { "8086", "2b80", "Atom CE2700 Series [Puma 7]" }, - { "8086", "2b98", "Puma 7 Trusted Execution Engine" }, - { "8086", "2bb5", "Puma 7 xHCI Controller" }, - { "8086", "2bb7", "Puma 7 USB Device Controller (OTG)" }, - { "8086", "2bdc", "Puma 7 Thermal" }, - { "8086", "2be2", "Puma 7 Security Processor" }, - { "8086", "2c01", "Xeon 5500/Core i7 QuickPath Architecture System Address Decoder" }, - { "8086", "2c10", "Xeon 5500/Core i7 QPI Link 0" }, - { "8086", "2c11", "Xeon 5500/Core i7 QPI Physical 0" }, - { "8086", "2c14", "Xeon 5500/Core i7 QPI Link 1" }, - { "8086", "2c15", "Xeon 5500/Core i7 QPI Physical 1" }, - { "8086", "2c18", "Xeon 5500/Core i7 Integrated Memory Controller" }, - { "8086", "2c19", "Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder" }, - { "8086", "2c1a", "Xeon 5500/Core i7 Integrated Memory Controller RAS Registers" }, - { "8086", "2c1c", "Xeon 5500/Core i7 Integrated Memory Controller Test Registers" }, - { "8086", "2c20", "Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers" }, - { "8086", "2c21", "Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers" }, - { "8086", "2c22", "Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers" }, - { "8086", "2c23", "Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers" }, - { "8086", "2c28", "Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers" }, - { "8086", "2c29", "Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers" }, - { "8086", "2c2a", "Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers" }, - { "8086", "2c2b", "Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers" }, - { "8086", "2c30", "Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers" }, - { "8086", "2c31", "Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers" }, - { "8086", "2c32", "Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers" }, - { "8086", "2c33", "Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers" }, - { "8086", "2c40", "Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c41", "Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c50", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c51", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c52", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c53", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c54", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c55", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c56", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c57", "Core Processor QuickPath Architecture Generic Non-Core Registers" }, - { "8086", "2c58", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c59", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5a", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5b", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5c", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5d", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5e", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c5f", "Xeon C5500/C3500 QPI Generic Non-core Registers" }, - { "8086", "2c61", "Core Processor QuickPath Architecture Generic Non-core Registers" }, - { "8086", "2c62", "Core Processor QuickPath Architecture Generic Non-core Registers" }, - { "8086", "2c70", "Xeon 5600 Series QuickPath Architecture Generic Non-core Registers" }, - { "8086", "2c81", "Core Processor QuickPath Architecture System Address Decoder" }, - { "8086", "2c90", "Core Processor QPI Link 0" }, - { "8086", "2c91", "Core Processor QPI Physical 0" }, - { "8086", "2c98", "Core Processor Integrated Memory Controller" }, - { "8086", "2c99", "Core Processor Integrated Memory Controller Target Address Decoder" }, - { "8086", "2c9a", "Core Processor Integrated Memory Controller Test Registers" }, - { "8086", "2c9c", "Core Processor Integrated Memory Controller Test Registers" }, - { "8086", "2ca0", "Core Processor Integrated Memory Controller Channel 0 Control Registers" }, - { "8086", "2ca1", "Core Processor Integrated Memory Controller Channel 0 Address Registers" }, - { "8086", "2ca2", "Core Processor Integrated Memory Controller Channel 0 Rank Registers" }, - { "8086", "2ca3", "Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers" }, - { "8086", "2ca8", "Core Processor Integrated Memory Controller Channel 1 Control Registers" }, - { "8086", "2ca9", "Core Processor Integrated Memory Controller Channel 1 Address Registers" }, - { "8086", "2caa", "Core Processor Integrated Memory Controller Channel 1 Rank Registers" }, - { "8086", "2cab", "Core Processor Integrated Memory Controller Channel 1 Thermal Control Registers" }, - { "8086", "2cc1", "Xeon C5500/C3500 QPI System Address Decoder" }, - { "8086", "2cd0", "Xeon C5500/C3500 QPI Link 0" }, - { "8086", "2cd1", "Xeon C5500/C3500 QPI Physical 0" }, - { "8086", "2cd4", "Xeon C5500/C3500 QPI Link 1" }, - { "8086", "2cd5", "Xeon C5500/C3500 QPI Physical 1" }, - { "8086", "2cd8", "Xeon C5500/C3500 Integrated Memory Controller Registers" }, - { "8086", "2cd9", "Xeon C5500/C3500 Integrated Memory Controller Target Address Decoder" }, - { "8086", "2cda", "Xeon C5500/C3500 Integrated Memory Controller RAS Registers" }, - { "8086", "2cdc", "Xeon C5500/C3500 Integrated Memory Controller Test Registers" }, - { "8086", "2ce0", "Xeon C5500/C3500 Integrated Memory Controller Channel 0 Control" }, - { "8086", "2ce1", "Xeon C5500/C3500 Integrated Memory Controller Channel 0 Address" }, - { "8086", "2ce2", "Xeon C5500/C3500 Integrated Memory Controller Channel 0 Rank" }, - { "8086", "2ce3", "Xeon C5500/C3500 Integrated Memory Controller Channel 0 Thermal Control" }, - { "8086", "2ce8", "Xeon C5500/C3500 Integrated Memory Controller Channel 1 Control" }, - { "8086", "2ce9", "Xeon C5500/C3500 Integrated Memory Controller Channel 1 Address" }, - { "8086", "2cea", "Xeon C5500/C3500 Integrated Memory Controller Channel 1 Rank" }, - { "8086", "2ceb", "Xeon C5500/C3500 Integrated Memory Controller Channel 1 Thermal Control" }, - { "8086", "2cf0", "Xeon C5500/C3500 Integrated Memory Controller Channel 2 Control" }, - { "8086", "2cf1", "Xeon C5500/C3500 Integrated Memory Controller Channel 2 Address" }, - { "8086", "2cf2", "Xeon C5500/C3500 Integrated Memory Controller Channel 2 Rank" }, - { "8086", "2cf3", "Xeon C5500/C3500 Integrated Memory Controller Channel 2 Thermal Control" }, - { "8086", "2d01", "Core Processor QuickPath Architecture System Address Decoder" }, - { "8086", "2d10", "Core Processor QPI Link 0" }, - { "8086", "2d11", "1st Generation Core i3/5/7 Processor QPI Physical 0" }, - { "8086", "2d12", "1st Generation Core i3/5/7 Processor Reserved" }, - { "8086", "2d13", "1st Generation Core i3/5/7 Processor Reserved" }, - { "8086", "2d81", "Xeon 5600 Series QuickPath Architecture System Address Decoder" }, - { "8086", "2d90", "Xeon 5600 Series QPI Link 0" }, - { "8086", "2d91", "Xeon 5600 Series QPI Physical 0" }, - { "8086", "2d92", "Xeon 5600 Series Mirror Port Link 0" }, - { "8086", "2d93", "Xeon 5600 Series Mirror Port Link 1" }, - { "8086", "2d94", "Xeon 5600 Series QPI Link 1" }, - { "8086", "2d95", "Xeon 5600 Series QPI Physical 1" }, - { "8086", "2d98", "Xeon 5600 Series Integrated Memory Controller Registers" }, - { "8086", "2d99", "Xeon 5600 Series Integrated Memory Controller Target Address Decoder" }, - { "8086", "2d9a", "Xeon 5600 Series Integrated Memory Controller RAS Registers" }, - { "8086", "2d9c", "Xeon 5600 Series Integrated Memory Controller Test Registers" }, - { "8086", "2da0", "Xeon 5600 Series Integrated Memory Controller Channel 0 Control" }, - { "8086", "2da1", "Xeon 5600 Series Integrated Memory Controller Channel 0 Address" }, - { "8086", "2da2", "Xeon 5600 Series Integrated Memory Controller Channel 0 Rank" }, - { "8086", "2da3", "Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control" }, - { "8086", "2da8", "Xeon 5600 Series Integrated Memory Controller Channel 1 Control" }, - { "8086", "2da9", "Xeon 5600 Series Integrated Memory Controller Channel 1 Address" }, - { "8086", "2daa", "Xeon 5600 Series Integrated Memory Controller Channel 1 Rank" }, - { "8086", "2dab", "Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control" }, - { "8086", "2db0", "Xeon 5600 Series Integrated Memory Controller Channel 2 Control" }, - { "8086", "2db1", "Xeon 5600 Series Integrated Memory Controller Channel 2 Address" }, - { "8086", "2db2", "Xeon 5600 Series Integrated Memory Controller Channel 2 Rank" }, - { "8086", "2db3", "Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control" }, - { "8086", "2e00", "4 Series Chipset DRAM Controller" }, - { "8086", "2e01", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e02", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e03", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e04", "4 Series Chipset HECI Controller" }, - { "8086", "2e05", "4 Series Chipset HECI Controller" }, - { "8086", "2e06", "4 Series Chipset PT IDER Controller" }, - { "8086", "2e07", "4 Series Chipset Serial KT Controller" }, - { "8086", "2e10", "4 Series Chipset DRAM Controller" }, - { "8086", "2e11", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e12", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e13", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e14", "4 Series Chipset HECI Controller" }, - { "8086", "2e15", "4 Series Chipset HECI Controller" }, - { "8086", "2e16", "4 Series Chipset PT IDER Controller" }, - { "8086", "2e17", "4 Series Chipset Serial KT Controller" }, - { "8086", "2e20", "4 Series Chipset DRAM Controller" }, - { "8086", "2e21", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e22", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e23", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e24", "4 Series Chipset HECI Controller" }, - { "8086", "2e25", "4 Series Chipset HECI Controller" }, - { "8086", "2e26", "4 Series Chipset PT IDER Controller" }, - { "8086", "2e27", "4 Series Chipset Serial KT Controller" }, - { "8086", "2e29", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e30", "4 Series Chipset DRAM Controller" }, - { "8086", "2e31", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e32", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e33", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e34", "4 Series Chipset HECI Controller" }, - { "8086", "2e35", "4 Series Chipset HECI Controller" }, - { "8086", "2e36", "4 Series Chipset PT IDER Controller" }, - { "8086", "2e37", "4 Series Chipset Serial KT Controller" }, - { "8086", "2e40", "4 Series Chipset DRAM Controller" }, - { "8086", "2e41", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e42", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e43", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e44", "4 Series Chipset HECI Controller" }, - { "8086", "2e45", "4 Series Chipset HECI Controller" }, - { "8086", "2e46", "4 Series Chipset PT IDER Controller" }, - { "8086", "2e47", "4 Series Chipset Serial KT Controller" }, - { "8086", "2e50", "CE Media Processor CE3100" }, - { "8086", "2e52", "CE Media Processor Clock and Reset Controller" }, - { "8086", "2e58", "CE Media Processor Interrupt Controller" }, - { "8086", "2e5a", "CE Media Processor CE3100 A/V Bridge" }, - { "8086", "2e5b", "Graphics Media Accelerator 500 Graphics" }, - { "8086", "2e5c", "CE Media Processor Video Decoder" }, - { "8086", "2e5d", "CE Media Processor Transport Stream Interface" }, - { "8086", "2e5e", "CE Media Processor Transport Stream Processor 0" }, - { "8086", "2e5f", "CE Media Processor Audio DSP" }, - { "8086", "2e60", "CE Media Processor Audio Interfaces" }, - { "8086", "2e61", "CE Media Processor Video Display Controller" }, - { "8086", "2e62", "CE Media Processor Video Processing Unit" }, - { "8086", "2e63", "CE Media Processor HDMI Tx Interface" }, - { "8086", "2e64", "Atom CE2600/3100/4100/4200/5300 Security Processor" }, - { "8086", "2e65", "CE Media Processor Expansion Bus Interface" }, - { "8086", "2e66", "CE Media Processor UART" }, - { "8086", "2e67", "CE Media Processor General Purpose I/Os" }, - { "8086", "2e68", "CE Media Processor I2C Interface" }, - { "8086", "2e69", "CE Media Processor Smart Card Interface" }, - { "8086", "2e6a", "CE Media Processor SPI Master Interface" }, - { "8086", "2e6e", "CE Media Processor Gigabit Ethernet Controller" }, - { "8086", "2e6f", "CE Media Processor Media Timing Unit" }, - { "8086", "2e70", "CE Media Processor USB" }, - { "8086", "2e71", "CE Media Processor SATA" }, - { "8086", "2e73", "CE Media Processor CE3100 PCI Express" }, - { "8086", "2e90", "4 Series Chipset DRAM Controller" }, - { "8086", "2e91", "4 Series Chipset PCI Express Root Port" }, - { "8086", "2e92", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e93", "4 Series Chipset Integrated Graphics Controller" }, - { "8086", "2e94", "4 Series Chipset HECI Controller" }, - { "8086", "2e95", "4 Series Chipset HECI Controller" }, - { "8086", "2e96", "4 Series Chipset PT IDER Controller" }, - { "8086", "2f00", "Xeon E7 v3/Xeon E5 v3/Core i7 DMI2" }, - { "8086", "2f01", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 0" }, - { "8086", "2f02", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1" }, - { "8086", "2f03", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1" }, - { "8086", "2f04", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2" }, - { "8086", "2f05", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2" }, - { "8086", "2f06", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2" }, - { "8086", "2f07", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2" }, - { "8086", "2f08", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3" }, - { "8086", "2f09", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3" }, - { "8086", "2f0a", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3" }, - { "8086", "2f0b", "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3" }, - { "8086", "2f0d", "Haswell Xeon Non-Transparent Bridge (Back-to-back)" }, - { "8086", "2f0e", "Haswell Xeon Non-Transparent Bridge (Primary Side)" }, - { "8086", "2f0f", "Haswell Xeon Non-Transparent Bridge (Secondary Side)" }, - { "8086", "2f10", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f11", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f12", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f13", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f14", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f15", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f16", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f17", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f18", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f19", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f1a", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f1b", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f1c", "Xeon E7 v3/Xeon E5 v3/Core i7 IIO Debug" }, - { "8086", "2f1d", "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface" }, - { "8086", "2f1e", "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers" }, - { "8086", "2f1f", "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers" }, - { "8086", "2f20", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 0" }, - { "8086", "2f21", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 1" }, - { "8086", "2f22", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 2" }, - { "8086", "2f23", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 3" }, - { "8086", "2f24", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 4" }, - { "8086", "2f25", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 5" }, - { "8086", "2f26", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 6" }, - { "8086", "2f27", "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 7" }, - { "8086", "2f28", "Xeon E7 v3/Xeon E5 v3/Core i7 Address Map, VTd_Misc, System Management" }, - { "8086", "2f29", "Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug" }, - { "8086", "2f2a", "Xeon E7 v3/Xeon E5 v3/Core i7 RAS, Control Status and Global Errors" }, - { "8086", "2f2c", "Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC" }, - { "8086", "2f2e", "Xeon E7 v3/Xeon E5 v3/Core i7 RAID 5/6" }, - { "8086", "2f2f", "Xeon E7 v3/Xeon E5 v3/Core i7 RAID 5/6" }, - { "8086", "2f30", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0" }, - { "8086", "2f32", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0" }, - { "8086", "2f33", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1" }, - { "8086", "2f34", "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface" }, - { "8086", "2f36", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring" }, - { "8086", "2f37", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring" }, - { "8086", "2f38", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1" }, - { "8086", "2f39", "Xeon E7 v3/Xeon E5 v3/Core i7 I/O Performance Monitoring" }, - { "8086", "2f3a", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2" }, - { "8086", "2f3e", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring" }, - { "8086", "2f3f", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring" }, - { "8086", "2f40", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2" }, - { "8086", "2f41", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 2 Monitoring" }, - { "8086", "2f43", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2" }, - { "8086", "2f45", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug" }, - { "8086", "2f46", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug" }, - { "8086", "2f47", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 2 Debug" }, - { "8086", "2f60", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1" }, - { "8086", "2f68", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers" }, - { "8086", "2f6a", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder" }, - { "8086", "2f6b", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder" }, - { "8086", "2f6c", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder" }, - { "8086", "2f6d", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder" }, - { "8086", "2f6e", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 2/3 Broadcast" }, - { "8086", "2f6f", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast" }, - { "8086", "2f70", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 Debug" }, - { "8086", "2f71", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers" }, - { "8086", "2f76", "Xeon E7 v3/Xeon E5 v3/Core i7 E3 QPI Link Debug" }, - { "8086", "2f78", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 Debug" }, - { "8086", "2f79", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers" }, - { "8086", "2f7d", "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers" }, - { "8086", "2f7e", "Xeon E7 v3/Xeon E5 v3/Core i7 E3 QPI Link Debug" }, - { "8086", "2f80", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0" }, - { "8086", "2f81", "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring" }, - { "8086", "2f83", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0" }, - { "8086", "2f85", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug" }, - { "8086", "2f86", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug" }, - { "8086", "2f87", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0 Debug" }, - { "8086", "2f88", "Xeon E7 v3/Xeon E5 v3/Core i7 VCU" }, - { "8086", "2f8a", "Xeon E7 v3/Xeon E5 v3/Core i7 VCU" }, - { "8086", "2f90", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1" }, - { "8086", "2f93", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1" }, - { "8086", "2f95", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 Debug" }, - { "8086", "2f96", "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1 Debug" }, - { "8086", "2f98", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2f99", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2f9a", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2f9c", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fa0", "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0" }, - { "8086", "2fa8", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers" }, - { "8086", "2faa", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder" }, - { "8086", "2fab", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder" }, - { "8086", "2fac", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder" }, - { "8086", "2fad", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder" }, - { "8086", "2fae", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 0/1 Broadcast" }, - { "8086", "2faf", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast" }, - { "8086", "2fb0", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 Thermal Control" }, - { "8086", "2fb1", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control" }, - { "8086", "2fb2", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers" }, - { "8086", "2fb3", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers" }, - { "8086", "2fb4", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 Thermal Control" }, - { "8086", "2fb5", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 3 Thermal Control" }, - { "8086", "2fb6", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 ERROR Registers" }, - { "8086", "2fb7", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 3 ERROR Registers" }, - { "8086", "2fb8", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3" }, - { "8086", "2fb9", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3" }, - { "8086", "2fba", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3" }, - { "8086", "2fbb", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3" }, - { "8086", "2fbc", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1" }, - { "8086", "2fbd", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1" }, - { "8086", "2fbe", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1" }, - { "8086", "2fbf", "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1" }, - { "8086", "2fc0", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fc1", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fc2", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fc3", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fc4", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fc5", "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit" }, - { "8086", "2fd0", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 Thermal Control" }, - { "8086", "2fd1", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 Thermal Control" }, - { "8086", "2fd2", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 ERROR Registers" }, - { "8086", "2fd3", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 ERROR Registers" }, - { "8086", "2fd4", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 2 Thermal Control" }, - { "8086", "2fd5", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 3 Thermal Control" }, - { "8086", "2fd6", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 2 ERROR Registers" }, - { "8086", "2fd7", "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 3 ERROR Registers" }, - { "8086", "2fe0", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe1", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe2", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe3", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe4", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe5", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe6", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe7", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe8", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fe9", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fea", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2feb", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fec", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fed", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fee", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2fef", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff0", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff1", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff2", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff3", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff4", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff5", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff6", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff7", "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers" }, - { "8086", "2ff8", "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent" }, - { "8086", "2ff9", "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent" }, - { "8086", "2ffa", "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent" }, - { "8086", "2ffb", "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent" }, - { "8086", "2ffc", "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers" }, - { "8086", "2ffd", "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers" }, - { "8086", "2ffe", "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers" }, - { "8086", "3140", "Easel/Monette Hill Image Processor [Pixel Visual Core]" }, - { "8086", "3165", "Wireless 3165" }, - { "8086", "3166", "Dual Band Wireless-AC 3165 Plus Bluetooth" }, - { "8086", "3184", "GeminiLake [UHD Graphics 605]" }, - { "8086", "3185", "GeminiLake [UHD Graphics 600]" }, - { "8086", "318c", "Celeron/Pentium Silver Processor Dynamic Platform and Thermal Framework Processor Participant" }, - { "8086", "318e", "Celeron/Pentium Silver Processor NorthPeak" }, - { "8086", "3190", "Celeron/Pentium Silver Processor Gaussian Mixture Model" }, - { "8086", "3192", "Gemini Lake P2SB" }, - { "8086", "3197", "Celeron/Pentium Silver Processor PCI-default ISA-bridge" }, - { "8086", "3198", "Celeron/Pentium Silver Processor High Definition Audio" }, - { "8086", "319a", "Celeron/Pentium Silver Processor Trusted Execution Engine Interface" }, - { "8086", "31a2", "Celeron/Pentium Silver Processor Integrated Sensor Solution" }, - { "8086", "31a8", "Celeron/Pentium Silver Processor USB 3.0 xHCI Controller" }, - { "8086", "31ac", "Celeron/Pentium Silver Processor Serial IO I2C Host Controller" }, - { "8086", "31ae", "Celeron/Pentium Silver Processor Serial IO I2C Host Controller" }, - { "8086", "31bc", "Celeron/Pentium Silver Processor Serial IO UART Host Controller" }, - { "8086", "31be", "Celeron/Pentium Silver Processor Serial IO UART Host Controller" }, - { "8086", "31c0", "Celeron/Pentium Silver Processor Serial IO UART Host Controller" }, - { "8086", "31c2", "Celeron/Pentium Silver Processor Serial IO SPI Host Controller" }, - { "8086", "31c4", "Celeron/Pentium Silver Processor Serial IO SPI Host Controller" }, - { "8086", "31c6", "Celeron/Pentium Silver Processor Serial IO SPI Host Controller" }, - { "8086", "31cc", "Celeron/Pentium Silver Processor SDA Standard Compliant SD Host Controller" }, - { "8086", "31d4", "Celeron/Pentium Silver Processor Gaussian Mixture Model" }, - { "8086", "31d6", "Gemini Lake PCI Express Root Port" }, - { "8086", "31d7", "Gemini Lake PCI Express Root Port" }, - { "8086", "31d8", "Gemini Lake PCI Express Root Port" }, - { "8086", "31d9", "Gemini Lake PCI Express Root Port" }, - { "8086", "31da", "Gemini Lake PCI Express Root Port" }, - { "8086", "31db", "Gemini Lake PCI Express Root Port" }, - { "8086", "31dc", "Gemini Lake PCH CNVi WiFi" }, - { "8086", "31e3", "Celeron/Pentium Silver Processor SATA Controller" }, - { "8086", "31e8", "Celeron/Pentium Silver Processor LPC Controller" }, - { "8086", "31ee", "Celeron/Pentium Silver Processor Serial IO UART Host Controller" }, - { "8086", "31f0", "Gemini Lake Host Bridge" }, - { "8086", "3200", "GD31244 PCI-X SATA HBA" }, - { "8086", "3310", "IOP348 I/O Processor" }, - { "8086", "3313", "IOP348 I/O Processor (SL8e) in IOC Mode SAS/SATA" }, - { "8086", "331b", "IOP348 I/O Processor (SL8x) in IOC Mode SAS/SATA" }, - { "8086", "3331", "IOC340 I/O Controller (VV8e) SAS/SATA" }, - { "8086", "3339", "IOC340 I/O Controller (VV8x) SAS/SATA" }, - { "8086", "3340", "82855PM Processor to I/O Controller" }, - { "8086", "3341", "82855PM Processor to AGP Controller" }, - { "8086", "3363", "IOC340 I/O Controller in IOC Mode SAS/SATA" }, - { "8086", "3382", "81342 [Chevelon] I/O Processor (ATUe)" }, - { "8086", "33c3", "IOP348 I/O Processor (SL8De) in IOC Mode SAS/SATA" }, - { "8086", "33cb", "IOP348 I/O Processor (SL8Dx) in IOC Mode SAS/SATA" }, - { "8086", "3400", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3401", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3402", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3403", "5500 I/O Hub to ESI Port" }, - { "8086", "3404", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3405", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3406", "5520 I/O Hub to ESI Port" }, - { "8086", "3407", "5520/5500/X58 I/O Hub to ESI Port" }, - { "8086", "3408", "5520/5500/X58 I/O Hub PCI Express Root Port 1" }, - { "8086", "3409", "5520/5500/X58 I/O Hub PCI Express Root Port 2" }, - { "8086", "340a", "5520/5500/X58 I/O Hub PCI Express Root Port 3" }, - { "8086", "340b", "5520/X58 I/O Hub PCI Express Root Port 4" }, - { "8086", "340c", "5520/X58 I/O Hub PCI Express Root Port 5" }, - { "8086", "340d", "5520/X58 I/O Hub PCI Express Root Port 6" }, - { "8086", "340e", "5520/5500/X58 I/O Hub PCI Express Root Port 7" }, - { "8086", "340f", "5520/5500/X58 I/O Hub PCI Express Root Port 8" }, - { "8086", "3410", "7500/5520/5500/X58 I/O Hub PCI Express Root Port 9" }, - { "8086", "3411", "7500/5520/5500/X58 I/O Hub PCI Express Root Port 10" }, - { "8086", "3418", "7500/5520/5500/X58 Physical Layer Port 0" }, - { "8086", "3419", "7500/5520/5500 Physical Layer Port 1" }, - { "8086", "3420", "7500/5520/5500/X58 I/O Hub PCI Express Root Port 0" }, - { "8086", "3421", "7500/5520/5500/X58 I/O Hub PCI Express Root Port 0" }, - { "8086", "3422", "7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers" }, - { "8086", "3423", "7500/5520/5500/X58 I/O Hub Control Status and RAS Registers" }, - { "8086", "3425", "7500/5520/5500/X58 Physical and Link Layer Registers Port 0" }, - { "8086", "3426", "7500/5520/5500/X58 Routing and Protocol Layer Registers Port 0" }, - { "8086", "3427", "7500/5520/5500 Physical and Link Layer Registers Port 1" }, - { "8086", "3428", "7500/5520/5500 Routing & Protocol Layer Register Port 1" }, - { "8086", "3429", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "342a", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "342b", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "342c", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "342d", "7500/5520/5500/X58 I/O Hub I/OxAPIC Interrupt Controller" }, - { "8086", "342e", "7500/5520/5500/X58 I/O Hub System Management Registers" }, - { "8086", "342f", "7500/5520/5500/X58 Trusted Execution Technology Registers" }, - { "8086", "3430", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "3431", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "3432", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "3433", "5520/5500/X58 Chipset QuickData Technology Device" }, - { "8086", "3438", "7500/5520/5500/X58 I/O Hub Throttle Registers" }, - { "8086", "347e", "Ice Lake Xeon Non-Transparent Bridge" }, - { "8086", "3482", "Ice Lake-LP LPC Controller" }, - { "8086", "34a3", "Ice Lake-LP SMBus Controller" }, - { "8086", "34a4", "Ice Lake-LP SPI Controller" }, - { "8086", "34a8", "Ice Lake-LP Serial IO UART Controller #0" }, - { "8086", "34a9", "Ice Lake-LP Serial IO UART Controller #1" }, - { "8086", "34aa", "Ice Lake-LP Serial IO SPI Controller #0" }, - { "8086", "34ab", "Ice Lake-LP Serial IO SPI Controller #1" }, - { "8086", "34b0", "Ice Lake-LP PCI Express Root Port #9" }, - { "8086", "34b7", "Ice Lake-LP PCI Express Root Port #16" }, - { "8086", "34ba", "Ice Lake-LP PCI Express Root Port #3" }, - { "8086", "34bc", "Ice Lake-LP PCI Express Root Port #5" }, - { "8086", "34c4", "Ice Lake-LP SD Host Controller" }, - { "8086", "34c5", "Ice Lake-LP Serial IO I2c Controller #4" }, - { "8086", "34c6", "Ice Lake-LP Serial IO I2c Controller #5" }, - { "8086", "34c8", "Ice Lake-LP Smart Sound Technology Audio Controller" }, - { "8086", "34d3", "Ice Lake-LP SATA Controller [AHCI mode]" }, - { "8086", "34e0", "Ice Lake-LP Management Engine" }, - { "8086", "34e8", "Ice Lake-LP Serial IO I2C Controller #0" }, - { "8086", "34e9", "Ice Lake-LP Serial IO I2C Controller #1" }, - { "8086", "34ea", "Ice Lake-LP Serial IO I2C Controller #2" }, - { "8086", "34eb", "Ice Lake-LP Serial IO I2C Controller #3" }, - { "8086", "34ed", "Ice Lake-LP USB 3.1 xHCI Host Controller" }, - { "8086", "34ef", "Ice Lake-LP DRAM Controller" }, - { "8086", "34f0", "Ice Lake-LP PCH CNVi WiFi" }, - { "8086", "34f8", "Ice Lake-LP SD Controller" }, - { "8086", "34fc", "Ice Lake-LP Integrated Sensor Solution" }, - { "8086", "3500", "6311ESB/6321ESB PCI Express Upstream Port" }, - { "8086", "3501", "6310ESB PCI Express Upstream Port" }, - { "8086", "3504", "6311ESB/6321ESB I/OxAPIC Interrupt Controller" }, - { "8086", "3505", "6310ESB I/OxAPIC Interrupt Controller" }, - { "8086", "350c", "6311ESB/6321ESB PCI Express to PCI-X Bridge" }, - { "8086", "350d", "6310ESB PCI Express to PCI-X Bridge" }, - { "8086", "3510", "6311ESB/6321ESB PCI Express Downstream Port E1" }, - { "8086", "3511", "6310ESB PCI Express Downstream Port E1" }, - { "8086", "3514", "6311ESB/6321ESB PCI Express Downstream Port E2" }, - { "8086", "3515", "6310ESB PCI Express Downstream Port E2" }, - { "8086", "3518", "6311ESB/6321ESB PCI Express Downstream Port E3" }, - { "8086", "3519", "6310ESB PCI Express Downstream Port E3" }, - { "8086", "3575", "82830M/MG/MP Host Bridge" }, - { "8086", "3576", "82830M/MP AGP Bridge" }, - { "8086", "3577", "82830M/MG Integrated Graphics Controller" }, - { "8086", "3578", "82830M/MG/MP Host Bridge" }, - { "8086", "3580", "82852/82855 GM/GME/PM/GMV Processor to I/O Controller" }, - { "8086", "3581", "82852/82855 GM/GME/PM/GMV Processor to AGP Controller" }, - { "8086", "3582", "82852/855GM Integrated Graphics Device" }, - { "8086", "3584", "82852/82855 GM/GME/PM/GMV Processor to I/O Controller" }, - { "8086", "3585", "82852/82855 GM/GME/PM/GMV Processor to I/O Controller" }, - { "8086", "358c", "82854 GMCH" }, - { "8086", "358e", "82854 GMCH Integrated Graphics Device" }, - { "8086", "3590", "E7520 Memory Controller Hub" }, - { "8086", "3591", "E7525/E7520 Error Reporting Registers" }, - { "8086", "3592", "E7320 Memory Controller Hub" }, - { "8086", "3593", "E7320 Error Reporting Registers" }, - { "8086", "3594", "E7520 DMA Controller" }, - { "8086", "3595", "E7525/E7520/E7320 PCI Express Port A" }, - { "8086", "3596", "E7525/E7520/E7320 PCI Express Port A1" }, - { "8086", "3597", "E7525/E7520 PCI Express Port B" }, - { "8086", "3598", "E7520 PCI Express Port B1" }, - { "8086", "3599", "E7520 PCI Express Port C" }, - { "8086", "359a", "E7520 PCI Express Port C1" }, - { "8086", "359b", "E7525/E7520/E7320 Extended Configuration Registers" }, - { "8086", "359e", "E7525 Memory Controller Hub" }, - { "8086", "35b0", "3100 Chipset Memory I/O Controller Hub" }, - { "8086", "35b1", "3100 DRAM Controller Error Reporting Registers" }, - { "8086", "35b5", "3100 Chipset Enhanced DMA Controller" }, - { "8086", "35b6", "3100 Chipset PCI Express Port A" }, - { "8086", "35b7", "3100 Chipset PCI Express Port A1" }, - { "8086", "35c8", "3100 Extended Configuration Test Overflow Registers" }, - { "8086", "3600", "7300 Chipset Memory Controller Hub" }, - { "8086", "3604", "7300 Chipset PCI Express Port 1" }, - { "8086", "3605", "7300 Chipset PCI Express Port 2" }, - { "8086", "3606", "7300 Chipset PCI Express Port 3" }, - { "8086", "3607", "7300 Chipset PCI Express Port 4" }, - { "8086", "3608", "7300 Chipset PCI Express Port 5" }, - { "8086", "3609", "7300 Chipset PCI Express Port 6" }, - { "8086", "360a", "7300 Chipset PCI Express Port 7" }, - { "8086", "360b", "7300 Chipset QuickData Technology Device" }, - { "8086", "360c", "7300 Chipset FSB Registers" }, - { "8086", "360d", "7300 Chipset Snoop Filter Registers" }, - { "8086", "360e", "7300 Chipset Debug and Miscellaneous Registers" }, - { "8086", "360f", "7300 Chipset FBD Branch 0 Registers" }, - { "8086", "3610", "7300 Chipset FBD Branch 1 Registers" }, - { "8086", "3700", "Xeon C5500/C3500 DMI" }, - { "8086", "3701", "Xeon C5500/C3500 DMI" }, - { "8086", "3702", "Xeon C5500/C3500 DMI" }, - { "8086", "3703", "Xeon C5500/C3500 DMI" }, - { "8086", "3704", "Xeon C5500/C3500 DMI" }, - { "8086", "3705", "Xeon C5500/C3500 DMI" }, - { "8086", "3706", "Xeon C5500/C3500 DMI" }, - { "8086", "3707", "Xeon C5500/C3500 DMI" }, - { "8086", "3708", "Xeon C5500/C3500 DMI" }, - { "8086", "3709", "Xeon C5500/C3500 DMI" }, - { "8086", "370a", "Xeon C5500/C3500 DMI" }, - { "8086", "370b", "Xeon C5500/C3500 DMI" }, - { "8086", "370c", "Xeon C5500/C3500 DMI" }, - { "8086", "370d", "Xeon C5500/C3500 DMI" }, - { "8086", "370e", "Xeon C5500/C3500 DMI" }, - { "8086", "370f", "Xeon C5500/C3500 DMI" }, - { "8086", "3710", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3711", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3712", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3713", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3714", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3715", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3716", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3717", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3718", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "3719", "Xeon C5500/C3500 CB3 DMA" }, - { "8086", "371a", "Xeon C5500/C3500 QPI Link" }, - { "8086", "371b", "Xeon C5500/C3500 QPI Routing and Protocol" }, - { "8086", "371d", "Xeon C5500/C3500 QPI Routing and Protocol" }, - { "8086", "3720", "Xeon C5500/C3500 PCI Express Root Port 0" }, - { "8086", "3721", "Xeon C5500/C3500 PCI Express Root Port 1" }, - { "8086", "3722", "Xeon C5500/C3500 PCI Express Root Port 2" }, - { "8086", "3723", "Xeon C5500/C3500 PCI Express Root Port 3" }, - { "8086", "3724", "Xeon C5500/C3500 PCI Express Root Port 4" }, - { "8086", "3725", "Xeon C5500/C3500 NTB Primary" }, - { "8086", "3726", "Xeon C5500/C3500 NTB Primary" }, - { "8086", "3727", "Xeon C5500/C3500 NTB Secondary" }, - { "8086", "3728", "Xeon C5500/C3500 Core" }, - { "8086", "3729", "Xeon C5500/C3500 Core" }, - { "8086", "372a", "Xeon C5500/C3500 Core" }, - { "8086", "372b", "Xeon C5500/C3500 Core" }, - { "8086", "372c", "Xeon C5500/C3500 Reserved" }, - { "8086", "373f", "Xeon C5500/C3500 IOxAPIC" }, - { "8086", "37c8", "C62x Chipset QuickAssist Technology" }, - { "8086", "37c9", "C62x Chipset QuickAssist Technology Virtual Function" }, - { "8086", "37cc", "Ethernet Connection X722" }, - { "8086", "37cd", "Ethernet Virtual Function 700 Series" }, - { "8086", "37ce", "Ethernet Connection X722 for 10GbE backplane" }, - { "8086", "37cf", "Ethernet Connection X722 for 10GbE QSFP+" }, - { "8086", "37d0", "Ethernet Connection X722 for 10GbE SFP+" }, - { "8086", "37d1", "Ethernet Connection X722 for 1GbE" }, - { "8086", "37d2", "Ethernet Connection X722 for 10GBASE-T" }, - { "8086", "37d3", "Ethernet Connection X722 for 10GbE SFP+" }, - { "8086", "37d4", "Ethernet Connection X722 for 10GbE QSFP+" }, - { "8086", "37d9", "X722 Hyper-V Virtual Function" }, - { "8086", "3882", "Ice Lake LPC Controller" }, - { "8086", "38a4", "Ice Lake SPI Controller" }, - { "8086", "38e0", "Ice Lake Management Engine Interface" }, - { "8086", "3a00", "82801JD/DO (ICH10 Family) 4-port SATA IDE Controller" }, - { "8086", "3a02", "82801JD/DO (ICH10 Family) SATA AHCI Controller" }, - { "8086", "3a05", "82801JD/DO (ICH10 Family) SATA RAID Controller" }, - { "8086", "3a06", "82801JD/DO (ICH10 Family) 2-port SATA IDE Controller" }, - { "8086", "3a14", "82801JDO (ICH10DO) LPC Interface Controller" }, - { "8086", "3a16", "82801JIR (ICH10R) LPC Interface Controller" }, - { "8086", "3a18", "82801JIB (ICH10) LPC Interface Controller" }, - { "8086", "3a1a", "82801JD (ICH10D) LPC Interface Controller" }, - { "8086", "3a20", "82801JI (ICH10 Family) 4 port SATA IDE Controller #1" }, - { "8086", "3a22", "82801JI (ICH10 Family) SATA AHCI Controller" }, - { "8086", "3a25", "82801JIR (ICH10R) SATA RAID Controller" }, - { "8086", "3a26", "82801JI (ICH10 Family) 2 port SATA IDE Controller #2" }, - { "8086", "3a30", "82801JI (ICH10 Family) SMBus Controller" }, - { "8086", "3a32", "82801JI (ICH10 Family) Thermal Subsystem" }, - { "8086", "3a34", "82801JI (ICH10 Family) USB UHCI Controller #1" }, - { "8086", "3a35", "82801JI (ICH10 Family) USB UHCI Controller #2" }, - { "8086", "3a36", "82801JI (ICH10 Family) USB UHCI Controller #3" }, - { "8086", "3a37", "82801JI (ICH10 Family) USB UHCI Controller #4" }, - { "8086", "3a38", "82801JI (ICH10 Family) USB UHCI Controller #5" }, - { "8086", "3a39", "82801JI (ICH10 Family) USB UHCI Controller #6" }, - { "8086", "3a3a", "82801JI (ICH10 Family) USB2 EHCI Controller #1" }, - { "8086", "3a3c", "82801JI (ICH10 Family) USB2 EHCI Controller #2" }, - { "8086", "3a3e", "82801JI (ICH10 Family) HD Audio Controller" }, - { "8086", "3a40", "82801JI (ICH10 Family) PCI Express Root Port 1" }, - { "8086", "3a42", "82801JI (ICH10 Family) PCI Express Port 2" }, - { "8086", "3a44", "82801JI (ICH10 Family) PCI Express Root Port 3" }, - { "8086", "3a46", "82801JI (ICH10 Family) PCI Express Root Port 4" }, - { "8086", "3a48", "82801JI (ICH10 Family) PCI Express Root Port 5" }, - { "8086", "3a4a", "82801JI (ICH10 Family) PCI Express Root Port 6" }, - { "8086", "3a4c", "82801JI (ICH10 Family) Gigabit Ethernet Controller" }, - { "8086", "3a51", "82801JDO (ICH10DO) VECI Controller" }, - { "8086", "3a55", "82801JD/DO (ICH10 Family) Virtual SATA Controller" }, - { "8086", "3a60", "82801JD/DO (ICH10 Family) SMBus Controller" }, - { "8086", "3a62", "82801JD/DO (ICH10 Family) Thermal Subsystem" }, - { "8086", "3a64", "82801JD/DO (ICH10 Family) USB UHCI Controller #1" }, - { "8086", "3a65", "82801JD/DO (ICH10 Family) USB UHCI Controller #2" }, - { "8086", "3a66", "82801JD/DO (ICH10 Family) USB UHCI Controller #3" }, - { "8086", "3a67", "82801JD/DO (ICH10 Family) USB UHCI Controller #4" }, - { "8086", "3a68", "82801JD/DO (ICH10 Family) USB UHCI Controller #5" }, - { "8086", "3a69", "82801JD/DO (ICH10 Family) USB UHCI Controller #6" }, - { "8086", "3a6a", "82801JD/DO (ICH10 Family) USB2 EHCI Controller #1" }, - { "8086", "3a6c", "82801JD/DO (ICH10 Family) USB2 EHCI Controller #2" }, - { "8086", "3a6e", "82801JD/DO (ICH10 Family) HD Audio Controller" }, - { "8086", "3a70", "82801JD/DO (ICH10 Family) PCI Express Port 1" }, - { "8086", "3a72", "82801JD/DO (ICH10 Family) PCI Express Port 2" }, - { "8086", "3a74", "82801JD/DO (ICH10 Family) PCI Express Port 3" }, - { "8086", "3a76", "82801JD/DO (ICH10 Family) PCI Express Port 4" }, - { "8086", "3a78", "82801JD/DO (ICH10 Family) PCI Express Port 5" }, - { "8086", "3a7a", "82801JD/DO (ICH10 Family) PCI Express Port 6" }, - { "8086", "3a7c", "82801JD/DO (ICH10 Family) Gigabit Ethernet Controller" }, - { "8086", "3b00", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b01", "Mobile 5 Series Chipset LPC Interface Controller" }, - { "8086", "3b02", "P55 Chipset LPC Interface Controller" }, - { "8086", "3b03", "PM55 Chipset LPC Interface Controller" }, - { "8086", "3b04", "5 Series Chipset LPC Interface Controller" }, - { "8086", "3b05", "Mobile 5 Series Chipset LPC Interface Controller" }, - { "8086", "3b06", "H55 Chipset LPC Interface Controller" }, - { "8086", "3b07", "QM57 Chipset LPC Interface Controller" }, - { "8086", "3b08", "H57 Chipset LPC Interface Controller" }, - { "8086", "3b09", "HM55 Chipset LPC Interface Controller" }, - { "8086", "3b0a", "Q57 Chipset LPC Interface Controller" }, - { "8086", "3b0b", "HM57 Chipset LPC Interface Controller" }, - { "8086", "3b0c", "5 Series Chipset LPC Interface Controller" }, - { "8086", "3b0d", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b0e", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b0f", "QS57 Chipset LPC Interface Controller" }, - { "8086", "3b10", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b11", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b12", "3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b13", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b14", "3420 Chipset LPC Interface Controller" }, - { "8086", "3b15", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b16", "3450 Chipset LPC Interface Controller" }, - { "8086", "3b17", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b18", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b19", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1a", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1b", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1c", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1d", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1e", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b1f", "5 Series/3400 Series Chipset LPC Interface Controller" }, - { "8086", "3b20", "5 Series/3400 Series Chipset 4 port SATA IDE Controller" }, - { "8086", "3b21", "5 Series/3400 Series Chipset 2 port SATA IDE Controller" }, - { "8086", "3b22", "5 Series/3400 Series Chipset 6 port SATA AHCI Controller" }, - { "8086", "3b23", "5 Series/3400 Series Chipset 4 port SATA AHCI Controller" }, - { "8086", "3b25", "5 Series/3400 Series Chipset SATA RAID Controller" }, - { "8086", "3b26", "5 Series/3400 Series Chipset 2 port SATA IDE Controller" }, - { "8086", "3b28", "5 Series/3400 Series Chipset 4 port SATA IDE Controller" }, - { "8086", "3b29", "5 Series/3400 Series Chipset 4 port SATA AHCI Controller" }, - { "8086", "3b2c", "5 Series/3400 Series Chipset SATA RAID Controller" }, - { "8086", "3b2d", "5 Series/3400 Series Chipset 2 port SATA IDE Controller" }, - { "8086", "3b2e", "5 Series/3400 Series Chipset 4 port SATA IDE Controller" }, - { "8086", "3b2f", "5 Series/3400 Series Chipset 6 port SATA AHCI Controller" }, - { "8086", "3b30", "5 Series/3400 Series Chipset SMBus Controller" }, - { "8086", "3b32", "5 Series/3400 Series Chipset Thermal Subsystem" }, - { "8086", "3b34", "5 Series/3400 Series Chipset USB2 Enhanced Host Controller" }, - { "8086", "3b36", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b37", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b38", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b39", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b3a", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b3b", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b3c", "5 Series/3400 Series Chipset USB2 Enhanced Host Controller" }, - { "8086", "3b3e", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b3f", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b40", "5 Series/3400 Series Chipset USB Universal Host Controller" }, - { "8086", "3b41", "5 Series/3400 Series Chipset LAN Controller" }, - { "8086", "3b42", "5 Series/3400 Series Chipset PCI Express Root Port 1" }, - { "8086", "3b44", "5 Series/3400 Series Chipset PCI Express Root Port 2" }, - { "8086", "3b46", "5 Series/3400 Series Chipset PCI Express Root Port 3" }, - { "8086", "3b48", "5 Series/3400 Series Chipset PCI Express Root Port 4" }, - { "8086", "3b4a", "5 Series/3400 Series Chipset PCI Express Root Port 5" }, - { "8086", "3b4c", "5 Series/3400 Series Chipset PCI Express Root Port 6" }, - { "8086", "3b4e", "5 Series/3400 Series Chipset PCI Express Root Port 7" }, - { "8086", "3b50", "5 Series/3400 Series Chipset PCI Express Root Port 8" }, - { "8086", "3b53", "5 Series/3400 Series Chipset VECI Controller" }, - { "8086", "3b56", "5 Series/3400 Series Chipset High Definition Audio" }, - { "8086", "3b57", "5 Series/3400 Series Chipset High Definition Audio" }, - { "8086", "3b64", "5 Series/3400 Series Chipset HECI Controller" }, - { "8086", "3b65", "5 Series/3400 Series Chipset HECI Controller" }, - { "8086", "3b66", "5 Series/3400 Series Chipset PT IDER Controller" }, - { "8086", "3b67", "5 Series/3400 Series Chipset KT Controller" }, - { "8086", "3c00", "Xeon E5/Core i7 DMI2" }, - { "8086", "3c01", "Xeon E5/Core i7 DMI2 in PCI Express Mode" }, - { "8086", "3c02", "Xeon E5/Core i7 IIO PCI Express Root Port 1a" }, - { "8086", "3c03", "Xeon E5/Core i7 IIO PCI Express Root Port 1b" }, - { "8086", "3c04", "Xeon E5/Core i7 IIO PCI Express Root Port 2a" }, - { "8086", "3c05", "Xeon E5/Core i7 IIO PCI Express Root Port 2b" }, - { "8086", "3c06", "Xeon E5/Core i7 IIO PCI Express Root Port 2c" }, - { "8086", "3c07", "Xeon E5/Core i7 IIO PCI Express Root Port 2d" }, - { "8086", "3c08", "Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode" }, - { "8086", "3c09", "Xeon E5/Core i7 IIO PCI Express Root Port 3b" }, - { "8086", "3c0a", "Xeon E5/Core i7 IIO PCI Express Root Port 3c" }, - { "8086", "3c0b", "Xeon E5/Core i7 IIO PCI Express Root Port 3d" }, - { "8086", "3c0d", "Xeon E5/Core i7 Non-Transparent Bridge" }, - { "8086", "3c0e", "Xeon E5/Core i7 Non-Transparent Bridge" }, - { "8086", "3c0f", "Xeon E5/Core i7 Non-Transparent Bridge" }, - { "8086", "3c20", "Xeon E5/Core i7 DMA Channel 0" }, - { "8086", "3c21", "Xeon E5/Core i7 DMA Channel 1" }, - { "8086", "3c22", "Xeon E5/Core i7 DMA Channel 2" }, - { "8086", "3c23", "Xeon E5/Core i7 DMA Channel 3" }, - { "8086", "3c24", "Xeon E5/Core i7 DMA Channel 4" }, - { "8086", "3c25", "Xeon E5/Core i7 DMA Channel 5" }, - { "8086", "3c26", "Xeon E5/Core i7 DMA Channel 6" }, - { "8086", "3c27", "Xeon E5/Core i7 DMA Channel 7" }, - { "8086", "3c28", "Xeon E5/Core i7 Address Map, VTd_Misc, System Management" }, - { "8086", "3c2a", "Xeon E5/Core i7 Control Status and Global Errors" }, - { "8086", "3c2c", "Xeon E5/Core i7 I/O APIC" }, - { "8086", "3c2e", "Xeon E5/Core i7 DMA" }, - { "8086", "3c2f", "Xeon E5/Core i7 DMA" }, - { "8086", "3c40", "Xeon E5/Core i7 IIO Switch and IRP Performance Monitor" }, - { "8086", "3c43", "Xeon E5/Core i7 Ring to PCI Express Performance Monitor" }, - { "8086", "3c44", "Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor" }, - { "8086", "3c45", "Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor" }, - { "8086", "3c46", "Xeon E5/Core i7 Processor Home Agent Performance Monitoring" }, - { "8086", "3c71", "Xeon E5/Core i7 Integrated Memory Controller RAS Registers" }, - { "8086", "3c80", "Xeon E5/Core i7 QPI Link 0" }, - { "8086", "3c83", "Xeon E5/Core i7 QPI Link Reut 0" }, - { "8086", "3c84", "Xeon E5/Core i7 QPI Link Reut 0" }, - { "8086", "3c90", "Xeon E5/Core i7 QPI Link 1" }, - { "8086", "3c93", "Xeon E5/Core i7 QPI Link Reut 1" }, - { "8086", "3c94", "Xeon E5/Core i7 QPI Link Reut 1" }, - { "8086", "3ca0", "Xeon E5/Core i7 Processor Home Agent" }, - { "8086", "3ca8", "Xeon E5/Core i7 Integrated Memory Controller Registers" }, - { "8086", "3caa", "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0" }, - { "8086", "3cab", "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1" }, - { "8086", "3cac", "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2" }, - { "8086", "3cad", "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3" }, - { "8086", "3cae", "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4" }, - { "8086", "3cb0", "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0" }, - { "8086", "3cb1", "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1" }, - { "8086", "3cb2", "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0" }, - { "8086", "3cb3", "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1" }, - { "8086", "3cb4", "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2" }, - { "8086", "3cb5", "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3" }, - { "8086", "3cb6", "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2" }, - { "8086", "3cb7", "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3" }, - { "8086", "3cb8", "Xeon E5/Core i7 DDRIO" }, - { "8086", "3cc0", "Xeon E5/Core i7 Power Control Unit 0" }, - { "8086", "3cc1", "Xeon E5/Core i7 Power Control Unit 1" }, - { "8086", "3cc2", "Xeon E5/Core i7 Power Control Unit 2" }, - { "8086", "3cd0", "Xeon E5/Core i7 Power Control Unit 3" }, - { "8086", "3ce0", "Xeon E5/Core i7 Interrupt Control Registers" }, - { "8086", "3ce3", "Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers" }, - { "8086", "3ce4", "Xeon E5/Core i7 R2PCIe" }, - { "8086", "3ce6", "Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers" }, - { "8086", "3ce8", "Xeon E5/Core i7 Unicast Register 0" }, - { "8086", "3ce9", "Xeon E5/Core i7 Unicast Register 5" }, - { "8086", "3cea", "Xeon E5/Core i7 Unicast Register 1" }, - { "8086", "3ceb", "Xeon E5/Core i7 Unicast Register 6" }, - { "8086", "3cec", "Xeon E5/Core i7 Unicast Register 3" }, - { "8086", "3ced", "Xeon E5/Core i7 Unicast Register 7" }, - { "8086", "3cee", "Xeon E5/Core i7 Unicast Register 4" }, - { "8086", "3cef", "Xeon E5/Core i7 Unicast Register 8" }, - { "8086", "3cf4", "Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0" }, - { "8086", "3cf5", "Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1" }, - { "8086", "3cf6", "Xeon E5/Core i7 System Address Decoder" }, - { "8086", "3e10", "8th Gen Core 4-core Processor Host Bridge/DRAM Registers [Coffee Lake H]" }, - { "8086", "3e18", "8th Gen Core 4-core Workstation Processor Host Bridge/DRAM Registers [Coffee Lake S]" }, - { "8086", "3e1f", "8th Gen Core 4-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S]" }, - { "8086", "3e30", "8th/9th Gen Core 8-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S]" }, - { "8086", "3e33", "8th/9th Gen Core Processor Host Bridge/DRAM Registers [Coffee Lake]" }, - { "8086", "3e34", "Coffee Lake HOST and DRAM Controller" }, - { "8086", "3e35", "Coffee Lake Host Bridge/DRAM Registers" }, - { "8086", "3e81", "8th Gen Core Processor PCIe Controller (x16)" }, - { "8086", "3e85", "8th Gen Core Processor PCIe Controller (x8)" }, - { "8086", "3e89", "8th Gen Core Processor PCIe Controller (x4)" }, - { "8086", "3e90", "CoffeeLake-S GT1 [UHD Graphics 610]" }, - { "8086", "3e91", "CoffeeLake-S GT2 [UHD Graphics 630]" }, - { "8086", "3e92", "CoffeeLake-S GT2 [UHD Graphics 630]" }, - { "8086", "3e93", "CoffeeLake-S GT1 [UHD Graphics 610]" }, - { "8086", "3e96", "CoffeeLake-S GT2 [UHD Graphics P630]" }, - { "8086", "3e98", "CoffeeLake-S GT2 [UHD Graphics 630]" }, - { "8086", "3e9b", "CoffeeLake-H GT2 [UHD Graphics 630]" }, - { "8086", "3ea0", "WhiskeyLake-U GT2 [UHD Graphics 620]" }, - { "8086", "3ea5", "CoffeeLake-U GT3e [Iris Plus Graphics 655]" }, - { "8086", "3ec2", "8th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "3ec4", "8th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "3ec6", "8th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "3eca", "8th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "3ed0", "8th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "4000", "5400 Chipset Memory Controller Hub" }, - { "8086", "4001", "5400 Chipset Memory Controller Hub" }, - { "8086", "4003", "5400 Chipset Memory Controller Hub" }, - { "8086", "4021", "5400 Chipset PCI Express Port 1" }, - { "8086", "4022", "5400 Chipset PCI Express Port 2" }, - { "8086", "4023", "5400 Chipset PCI Express Port 3" }, - { "8086", "4024", "5400 Chipset PCI Express Port 4" }, - { "8086", "4025", "5400 Chipset PCI Express Port 5" }, - { "8086", "4026", "5400 Chipset PCI Express Port 6" }, - { "8086", "4027", "5400 Chipset PCI Express Port 7" }, - { "8086", "4028", "5400 Chipset PCI Express Port 8" }, - { "8086", "4029", "5400 Chipset PCI Express Port 9" }, - { "8086", "402d", "5400 Chipset IBIST Registers" }, - { "8086", "402e", "5400 Chipset IBIST Registers" }, - { "8086", "402f", "5400 Chipset QuickData Technology Device" }, - { "8086", "4030", "5400 Chipset FSB Registers" }, - { "8086", "4031", "5400 Chipset CE/SF Registers" }, - { "8086", "4032", "5400 Chipset IOxAPIC" }, - { "8086", "4035", "5400 Chipset FBD Registers" }, - { "8086", "4036", "5400 Chipset FBD Registers" }, - { "8086", "4041", "NVMe Datacenter SSD [Optane]" }, - { "8086", "4100", "Moorestown Graphics and Video" }, - { "8086", "4108", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "4109", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410a", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410b", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410c", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410d", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410e", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "410f", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "4114", "Atom Processor E6xx PCI Host Bridge #1" }, - { "8086", "4115", "Atom Processor E6xx PCI Host Bridge #2" }, - { "8086", "4116", "Atom Processor E6xx PCI Host Bridge #3" }, - { "8086", "4117", "Atom Processor E6xx PCI Host Bridge #4" }, - { "8086", "4140", "NVMe Datacenter SSD [Optane]" }, - { "8086", "4220", "PRO/Wireless 2200BG [Calexico2] Network Connection" }, - { "8086", "4222", "PRO/Wireless 3945ABG [Golan] Network Connection" }, - { "8086", "4223", "PRO/Wireless 2915ABG [Calexico2] Network Connection" }, - { "8086", "4224", "PRO/Wireless 2915ABG [Calexico2] Network Connection" }, - { "8086", "4227", "PRO/Wireless 3945ABG [Golan] Network Connection" }, - { "8086", "4229", "PRO/Wireless 4965 AG or AGN [Kedron] Network Connection" }, - { "8086", "422b", "Centrino Ultimate-N 6300" }, - { "8086", "422c", "Centrino Advanced-N 6200" }, - { "8086", "4230", "PRO/Wireless 4965 AG or AGN [Kedron] Network Connection" }, - { "8086", "4232", "WiFi Link 5100" }, - { "8086", "4235", "Ultimate N WiFi Link 5300" }, - { "8086", "4236", "Ultimate N WiFi Link 5300" }, - { "8086", "4237", "PRO/Wireless 5100 AGN [Shiloh] Network Connection" }, - { "8086", "4238", "Centrino Ultimate-N 6300" }, - { "8086", "4239", "Centrino Advanced-N 6200" }, - { "8086", "423a", "PRO/Wireless 5350 AGN [Echo Peak] Network Connection" }, - { "8086", "423b", "PRO/Wireless 5350 AGN [Echo Peak] Network Connection" }, - { "8086", "423c", "WiMAX/WiFi Link 5150" }, - { "8086", "423d", "WiMAX/WiFi Link 5150" }, - { "8086", "438b", "Tiger Lake-H LPC/eSPI Controller" }, - { "8086", "43a3", "Tiger Lake-H SMBus Controller" }, - { "8086", "43a4", "Tiger Lake-H SPI Controller" }, - { "8086", "43b0", "Tiger Lake-H PCI Express Root Port #9" }, - { "8086", "43bc", "Tiger Lake-H PCI Express Root Port #5" }, - { "8086", "43c8", "Tiger Lake-H HD Audio Controller" }, - { "8086", "43e0", "Tiger Lake-H Management Engine Interface" }, - { "8086", "43e8", "Tiger Lake-H Serial IO I2C Controller #0" }, - { "8086", "43ed", "Tiger Lake-H USB 3.2 Gen 2x1 xHCI Host Controller" }, - { "8086", "43ef", "Tiger Lake-H Shared SRAM" }, - { "8086", "43f0", "Tiger Lake PCH CNVi WiFi" }, - { "8086", "444e", "Turbo Memory Controller" }, - { "8086", "460d", "12th Gen Core Processor PCI Express x16 Controller #1" }, - { "8086", "461d", "Alder Lake Innovation Platform Framework Processor Participant" }, - { "8086", "461e", "Alder Lake-P Thunderbolt 4 USB Controller" }, - { "8086", "461f", "Alder Lake-P Thunderbolt 4 PCI Express Root Port #3" }, - { "8086", "4626", "Alder Lake-P Integrated Graphics Controller" }, - { "8086", "4629", "12th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "462f", "Alder Lake-P Thunderbolt 4 PCI Express Root Port #2" }, - { "8086", "463d", "12th Gen Core Processor PCI Express x4 Controller #2" }, - { "8086", "463e", "Alder Lake-P Thunderbolt 4 NHI #0" }, - { "8086", "463f", "Alder Lake-P Thunderbolt 4 PCI Express Root Port #1" }, - { "8086", "4641", "12th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "464d", "12th Gen Core Processor PCI Express x4 Controller #0" }, - { "8086", "464f", "12th Gen Core Processor Gaussian & Neural Accelerator" }, - { "8086", "4660", "12th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "466d", "Alder Lake-P Thunderbolt 4 NHI #1" }, - { "8086", "466e", "Alder Lake-P Thunderbolt 4 PCI Express Root Port #0" }, - { "8086", "467d", "Platform Monitoring Technology" }, - { "8086", "467f", "Volume Management Device NVMe RAID Controller" }, - { "8086", "4680", "AlderLake-S GT1" }, - { "8086", "46a0", "AlderLake-P GT2" }, - { "8086", "46a1", "UHD Graphics" }, - { "8086", "46a3", "Alder Lake-P GT1 [UHD Graphics]" }, - { "8086", "46a6", "Alder Lake-P Integrated Graphics Controller" }, - { "8086", "46c0", "AlderLake-M GT1" }, - { "8086", "4905", "DG1 [Iris Xe MAX Graphics]" }, - { "8086", "4906", "DG1 [Iris Xe Pod]" }, - { "8086", "4907", "SG1 [Server GPU SG-18M]" }, - { "8086", "4908", "DG1 [Iris Xe Graphics]" }, - { "8086", "4c3d", "Volume Management Device NVMe RAID Controller" }, - { "8086", "4c8a", "RocketLake-S GT1 [UHD Graphics 750]" }, - { "8086", "4c8b", "RocketLake-S GT1 [UHD Graphics 730]" }, - { "8086", "4c90", "RocketLake-S GT1 [UHD Graphics P750]" }, - { "8086", "4c9a", "RocketLake-S [UHD Graphics]" }, - { "8086", "4da3", "Jasper Lake SMBus" }, - { "8086", "4da4", "Jasper Lake SPI Controller" }, - { "8086", "4dc8", "Jasper Lake HD Audio" }, - { "8086", "4de0", "Management Engine Interface" }, - { "8086", "4de8", "Serial IO I2C Host Controller" }, - { "8086", "4de9", "Serial IO I2C Host Controller" }, - { "8086", "4df0", "Wi-Fi 6 AX201 160MHz" }, - { "8086", "4e03", "Dynamic Tuning service" }, - { "8086", "4e19", "JasperLake IPU" }, - { "8086", "4e55", "JasperLake [UHD Graphics]" }, - { "8086", "4e61", "JasperLake [UHD Graphics]" }, - { "8086", "4e71", "JasperLake [UHD Graphics]" }, - { "8086", "4f80", "DG2" }, - { "8086", "4f81", "DG2" }, - { "8086", "4f82", "DG2" }, - { "8086", "5001", "LE80578" }, - { "8086", "5002", "LE80578 Graphics Processor Unit" }, - { "8086", "5009", "LE80578 Video Display Controller" }, - { "8086", "500d", "LE80578 Expansion Bus" }, - { "8086", "500e", "LE80578 UART Controller" }, - { "8086", "500f", "LE80578 General Purpose IO" }, - { "8086", "5010", "LE80578 I2C Controller" }, - { "8086", "5012", "LE80578 Serial Peripheral Interface Bus" }, - { "8086", "5020", "EP80579 Memory Controller Hub" }, - { "8086", "5021", "EP80579 DRAM Error Reporting Registers" }, - { "8086", "5023", "EP80579 EDMA Controller" }, - { "8086", "5024", "EP80579 PCI Express Port PEA0" }, - { "8086", "5025", "EP80579 PCI Express Port PEA1" }, - { "8086", "5028", "EP80579 S-ATA IDE" }, - { "8086", "5029", "EP80579 S-ATA AHCI" }, - { "8086", "502a", "EP80579 S-ATA Reserved" }, - { "8086", "502b", "EP80579 S-ATA Reserved" }, - { "8086", "502c", "EP80579 Integrated Processor ASU" }, - { "8086", "502d", "EP80579 Integrated Processor with QuickAssist ASU" }, - { "8086", "502e", "EP80579 Reserved" }, - { "8086", "502f", "EP80579 Reserved" }, - { "8086", "5030", "EP80579 Reserved" }, - { "8086", "5031", "EP80579 LPC Bus" }, - { "8086", "5032", "EP80579 SMBus Controller" }, - { "8086", "5033", "EP80579 USB 1.1 Controller" }, - { "8086", "5035", "EP80579 USB 2.0 Controller" }, - { "8086", "5037", "EP80579 PCI-PCI Bridge (transparent mode)" }, - { "8086", "5039", "EP80579 Controller Area Network (CAN) interface #1" }, - { "8086", "503a", "EP80579 Controller Area Network (CAN) interface #2" }, - { "8086", "503b", "EP80579 Synchronous Serial Port (SPP)" }, - { "8086", "503c", "EP80579 IEEE 1588 Hardware Assist" }, - { "8086", "503d", "EP80579 Local Expansion Bus" }, - { "8086", "503e", "EP80579 Global Control Unit (GCU)" }, - { "8086", "503f", "EP80579 Reserved" }, - { "8086", "5040", "EP80579 Integrated Processor Gigabit Ethernet MAC" }, - { "8086", "5041", "EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC" }, - { "8086", "5042", "EP80579 Reserved" }, - { "8086", "5043", "EP80579 Reserved" }, - { "8086", "5044", "EP80579 Integrated Processor Gigabit Ethernet MAC" }, - { "8086", "5045", "EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC" }, - { "8086", "5046", "EP80579 Reserved" }, - { "8086", "5047", "EP80579 Reserved" }, - { "8086", "5048", "EP80579 Integrated Processor Gigabit Ethernet MAC" }, - { "8086", "5049", "EP80579 Integrated Processor with QuickAssist Gigabit Ethernet MAC" }, - { "8086", "504a", "EP80579 Reserved" }, - { "8086", "504b", "EP80579 Reserved" }, - { "8086", "504c", "EP80579 Integrated Processor with QuickAssist TDM" }, - { "8086", "5181", "Alder Lake PCH-P LPC/eSPI Controller" }, - { "8086", "5182", "Alder Lake PCH eSPI Controller" }, - { "8086", "51a3", "Alder Lake PCH-P SMBus Host Controller" }, - { "8086", "51a4", "Alder Lake-P PCH SPI Controller" }, - { "8086", "51a8", "Alder Lake PCH UART #0" }, - { "8086", "51a9", "Alder Lake PCH UART #1" }, - { "8086", "51bf", "Alder Lake PCH-P PCI Express Root Port #9" }, - { "8086", "51c5", "Alder Lake-P Serial IO I2C Controller #0" }, - { "8086", "51c6", "Alder Lake-P Serial IO I2C Controller #1" }, - { "8086", "51c8", "Alder Lake PCH-P High Definition Audio Controller" }, - { "8086", "51d3", "Alder Lake-P SATA AHCI Controller" }, - { "8086", "51e0", "Alder Lake PCH HECI Controller" }, - { "8086", "51e8", "Alder Lake PCH Serial IO I2C Controller #0" }, - { "8086", "51e9", "Alder Lake PCH Serial IO I2C Controller #1" }, - { "8086", "51ea", "Alder Lake PCH Serial IO I2C Controller #2" }, - { "8086", "51eb", "Alder Lake PCH Serial IO I2C Controller #3" }, - { "8086", "51ed", "Alder Lake PCH USB 3.2 xHCI Host Controller" }, - { "8086", "51ef", "Alder Lake PCH Shared SRAM" }, - { "8086", "51f0", "Alder Lake-P PCH CNVi WiFi" }, - { "8086", "5200", "EtherExpress PRO/100 Intelligent Server PCI Bridge" }, - { "8086", "5201", "EtherExpress PRO/100 Intelligent Server Fast Ethernet Controller" }, - { "8086", "530d", "80310 (IOP) IO Processor" }, - { "8086", "5502", "Ethernet Controller (2) I225-LMvP" }, - { "8086", "5504", "Ethernet Controller I226-K" }, - { "8086", "5845", "QEMU NVM Express Controller" }, - { "8086", "5900", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5901", "Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x16)" }, - { "8086", "5902", "HD Graphics 610" }, - { "8086", "5904", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5905", "Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x8)" }, - { "8086", "5909", "Xeon E3-1200 v6/7th Gen Core Processor PCIe Controller (x4)" }, - { "8086", "590c", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "590f", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5910", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5911", "Xeon E3-1200 v6/7th Gen Core Processor Gaussian Mixture Model" }, - { "8086", "5912", "HD Graphics 630" }, - { "8086", "5914", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5916", "HD Graphics 620" }, - { "8086", "5917", "UHD Graphics 620" }, - { "8086", "5918", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "591b", "HD Graphics 630" }, - { "8086", "591c", "UHD Graphics 615" }, - { "8086", "591d", "HD Graphics P630" }, - { "8086", "591e", "HD Graphics 615" }, - { "8086", "591f", "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "5923", "HD Graphics 635" }, - { "8086", "5926", "Iris Plus Graphics 640" }, - { "8086", "5927", "Iris Plus Graphics 650" }, - { "8086", "5a84", "Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Graphics Controller" }, - { "8086", "5a85", "HD Graphics 500" }, - { "8086", "5a88", "Celeron N3350/Pentium N4200/Atom E3900 Series Imaging Unit" }, - { "8086", "5a98", "Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster" }, - { "8086", "5a9a", "Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine" }, - { "8086", "5aa2", "Celeron N3350/Pentium N4200/Atom E3900 Series Integrated Sensor Hub" }, - { "8086", "5aa8", "Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI" }, - { "8086", "5aac", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1" }, - { "8086", "5aae", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #2" }, - { "8086", "5ab0", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #3" }, - { "8086", "5ab2", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #4" }, - { "8086", "5ab4", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #5" }, - { "8086", "5ab6", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #6" }, - { "8086", "5ab8", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #7" }, - { "8086", "5aba", "Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #8" }, - { "8086", "5abc", "Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1" }, - { "8086", "5abe", "Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #2" }, - { "8086", "5ac0", "Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #3" }, - { "8086", "5ac2", "Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #1" }, - { "8086", "5ac4", "Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #2" }, - { "8086", "5ac6", "Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #3" }, - { "8086", "5ac8", "Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller" }, - { "8086", "5aca", "Celeron N3350/Pentium N4200/Atom E3900 Series SDXC/MMC Host Controller" }, - { "8086", "5acc", "Celeron N3350/Pentium N4200/Atom E3900 Series eMMC Controller" }, - { "8086", "5ad0", "Celeron N3350/Pentium N4200/Atom E3900 Series SDIO Controller" }, - { "8086", "5ad4", "Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller" }, - { "8086", "5ad6", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port B #1" }, - { "8086", "5ad7", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port B #2" }, - { "8086", "5ad8", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #1" }, - { "8086", "5ad9", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2" }, - { "8086", "5ada", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3" }, - { "8086", "5adb", "Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #4" }, - { "8086", "5ae3", "Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller" }, - { "8086", "5ae8", "Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface" }, - { "8086", "5aee", "Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #4" }, - { "8086", "5af0", "Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge" }, - { "8086", "65c0", "5100 Chipset Memory Controller Hub" }, - { "8086", "65e2", "5100 Chipset PCI Express x4 Port 2" }, - { "8086", "65e3", "5100 Chipset PCI Express x4 Port 3" }, - { "8086", "65e4", "5100 Chipset PCI Express x4 Port 4" }, - { "8086", "65e5", "5100 Chipset PCI Express x4 Port 5" }, - { "8086", "65e6", "5100 Chipset PCI Express x4 Port 6" }, - { "8086", "65e7", "5100 Chipset PCI Express x4 Port 7" }, - { "8086", "65f0", "5100 Chipset FSB Registers" }, - { "8086", "65f1", "5100 Chipset Reserved Registers" }, - { "8086", "65f3", "5100 Chipset Reserved Registers" }, - { "8086", "65f5", "5100 Chipset DDR Channel 0 Registers" }, - { "8086", "65f6", "5100 Chipset DDR Channel 1 Registers" }, - { "8086", "65f7", "5100 Chipset PCI Express x8 Port 2-3" }, - { "8086", "65f8", "5100 Chipset PCI Express x8 Port 4-5" }, - { "8086", "65f9", "5100 Chipset PCI Express x8 Port 6-7" }, - { "8086", "65fa", "5100 Chipset PCI Express x16 Port 4-7" }, - { "8086", "65ff", "5100 Chipset DMA Engine" }, - { "8086", "6f00", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2" }, - { "8086", "6f01", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 0" }, - { "8086", "6f02", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1" }, - { "8086", "6f03", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1" }, - { "8086", "6f04", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2" }, - { "8086", "6f05", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2" }, - { "8086", "6f06", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2" }, - { "8086", "6f07", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2" }, - { "8086", "6f08", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3" }, - { "8086", "6f09", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3" }, - { "8086", "6f0a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3" }, - { "8086", "6f0b", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3" }, - { "8086", "6f10", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f11", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f12", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f13", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f14", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f15", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f16", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f17", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f18", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f19", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f1a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f1b", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f1c", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Debug" }, - { "8086", "6f1d", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent" }, - { "8086", "6f1e", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox" }, - { "8086", "6f1f", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox" }, - { "8086", "6f20", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 0" }, - { "8086", "6f21", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 1" }, - { "8086", "6f22", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 2" }, - { "8086", "6f23", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 3" }, - { "8086", "6f24", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 4" }, - { "8086", "6f25", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 5" }, - { "8086", "6f26", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 6" }, - { "8086", "6f27", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 7" }, - { "8086", "6f28", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management" }, - { "8086", "6f29", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug" }, - { "8086", "6f2a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors" }, - { "8086", "6f2c", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC" }, - { "8086", "6f30", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0" }, - { "8086", "6f32", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0" }, - { "8086", "6f33", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1" }, - { "8086", "6f34", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent" }, - { "8086", "6f36", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1" }, - { "8086", "6f37", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1" }, - { "8086", "6f38", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1" }, - { "8086", "6f39", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IO Performance Monitoring" }, - { "8086", "6f3a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2" }, - { "8086", "6f3e", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2" }, - { "8086", "6f3f", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2" }, - { "8086", "6f40", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2" }, - { "8086", "6f41", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 2" }, - { "8086", "6f43", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2" }, - { "8086", "6f45", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug" }, - { "8086", "6f46", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug" }, - { "8086", "6f47", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 2 Debug" }, - { "8086", "6f50", "Xeon Processor D Family QuickData Technology Register DMA Channel 0" }, - { "8086", "6f51", "Xeon Processor D Family QuickData Technology Register DMA Channel 1" }, - { "8086", "6f52", "Xeon Processor D Family QuickData Technology Register DMA Channel 2" }, - { "8086", "6f53", "Xeon Processor D Family QuickData Technology Register DMA Channel 3" }, - { "8086", "6f54", "Xeon Processor D Family QuickAssist Technology" }, - { "8086", "6f55", "Xeon Processor D Family QuickAssist Technology Virtual Fuction" }, - { "8086", "6f60", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1" }, - { "8086", "6f68", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS" }, - { "8086", "6f6a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder" }, - { "8086", "6f6b", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder" }, - { "8086", "6f6c", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder" }, - { "8086", "6f6d", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder" }, - { "8086", "6f6e", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Broadcast" }, - { "8086", "6f6f", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast" }, - { "8086", "6f70", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 Debug" }, - { "8086", "6f71", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS" }, - { "8086", "6f76", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug" }, - { "8086", "6f78", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 Debug" }, - { "8086", "6f79", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS" }, - { "8086", "6f7d", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox" }, - { "8086", "6f7e", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug" }, - { "8086", "6f80", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0" }, - { "8086", "6f81", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1" }, - { "8086", "6f83", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0" }, - { "8086", "6f85", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug" }, - { "8086", "6f86", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug" }, - { "8086", "6f87", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0 Debug" }, - { "8086", "6f88", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6f8a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6f90", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1" }, - { "8086", "6f93", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1" }, - { "8086", "6f95", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 Debug" }, - { "8086", "6f96", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1 Debug" }, - { "8086", "6f98", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6f99", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6f9a", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6f9c", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fa0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0" }, - { "8086", "6fa8", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS" }, - { "8086", "6faa", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder" }, - { "8086", "6fab", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder" }, - { "8086", "6fac", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder" }, - { "8086", "6fad", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder" }, - { "8086", "6fae", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast" }, - { "8086", "6faf", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast" }, - { "8086", "6fb0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control" }, - { "8086", "6fb1", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control" }, - { "8086", "6fb2", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error" }, - { "8086", "6fb3", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error" }, - { "8086", "6fb4", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Thermal Control" }, - { "8086", "6fb5", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Thermal Control" }, - { "8086", "6fb6", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Error" }, - { "8086", "6fb7", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Error" }, - { "8086", "6fb8", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface" }, - { "8086", "6fb9", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface" }, - { "8086", "6fba", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface" }, - { "8086", "6fbb", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface" }, - { "8086", "6fbc", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface" }, - { "8086", "6fbd", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface" }, - { "8086", "6fbe", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface" }, - { "8086", "6fbf", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface" }, - { "8086", "6fc0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc1", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc2", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc3", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc4", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc5", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc6", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc7", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc8", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fc9", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fca", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fcb", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fcc", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fcd", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fce", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fcf", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit" }, - { "8086", "6fd0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Thermal Control" }, - { "8086", "6fd1", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Thermal Control" }, - { "8086", "6fd2", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Error" }, - { "8086", "6fd3", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Error" }, - { "8086", "6fd4", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 2 Thermal Control" }, - { "8086", "6fd5", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 3 Thermal Control" }, - { "8086", "6fd6", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 2 Error" }, - { "8086", "6fd7", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 3 Error" }, - { "8086", "6fe0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe1", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe2", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe3", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe4", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe5", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe6", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe7", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe8", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fe9", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fea", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6feb", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fec", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fed", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fee", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6fef", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ff0", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ff1", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ff8", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ff9", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ffa", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ffb", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ffc", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ffd", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "6ffe", "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent" }, - { "8086", "7000", "82371SB PIIX3 ISA [Natoma/Triton II]" }, - { "8086", "7010", "82371SB PIIX3 IDE [Natoma/Triton II]" }, - { "8086", "7020", "82371SB PIIX3 USB [Natoma/Triton II]" }, - { "8086", "7030", "430VX - 82437VX TVX [Triton VX]" }, - { "8086", "7050", "Intercast Video Capture Card" }, - { "8086", "7051", "PB 642365-003 (Business Video Conferencing Card)" }, - { "8086", "7100", "430TX - 82439TX MTXC" }, - { "8086", "7110", "82371AB/EB/MB PIIX4 ISA" }, - { "8086", "7111", "82371AB/EB/MB PIIX4 IDE" }, - { "8086", "7112", "82371AB/EB/MB PIIX4 USB" }, - { "8086", "7113", "82371AB/EB/MB PIIX4 ACPI" }, - { "8086", "7120", "82810 GMCH (Graphics Memory Controller Hub)" }, - { "8086", "7121", "82810 (CGC) Chipset Graphics Controller" }, - { "8086", "7122", "82810 DC-100 (GMCH) Graphics Memory Controller Hub" }, - { "8086", "7123", "82810 DC-100 (CGC) Chipset Graphics Controller" }, - { "8086", "7124", "82810E DC-133 (GMCH) Graphics Memory Controller Hub" }, - { "8086", "7125", "82810E DC-133 (CGC) Chipset Graphics Controller" }, - { "8086", "7126", "82810 DC-133 System and Graphics Controller" }, - { "8086", "7128", "82810-M DC-100 System and Graphics Controller" }, - { "8086", "712a", "82810-M DC-133 System and Graphics Controller" }, - { "8086", "7180", "440LX/EX - 82443LX/EX Host bridge" }, - { "8086", "7181", "440LX/EX - 82443LX/EX AGP bridge" }, - { "8086", "7190", "440BX/ZX/DX - 82443BX/ZX/DX Host bridge" }, - { "8086", "7191", "440BX/ZX/DX - 82443BX/ZX/DX AGP bridge" }, - { "8086", "7192", "440BX/ZX/DX - 82443BX/ZX/DX Host bridge (AGP disabled)" }, - { "8086", "7194", "82440MX Host Bridge" }, - { "8086", "7195", "82440MX AC'97 Audio Controller" }, - { "8086", "7196", "82440MX AC'97 Modem Controller" }, - { "8086", "7198", "82440MX ISA Bridge" }, - { "8086", "7199", "82440MX EIDE Controller" }, - { "8086", "719a", "82440MX USB Universal Host Controller" }, - { "8086", "719b", "82440MX Power Management Controller" }, - { "8086", "71a0", "440GX - 82443GX Host bridge" }, - { "8086", "71a1", "440GX - 82443GX AGP bridge" }, - { "8086", "71a2", "440GX - 82443GX Host bridge (AGP disabled)" }, - { "8086", "7360", "XMM7360 LTE Advanced Modem" }, - { "8086", "7600", "82372FB PIIX5 ISA" }, - { "8086", "7601", "82372FB PIIX5 IDE" }, - { "8086", "7602", "82372FB PIIX5 USB" }, - { "8086", "7603", "82372FB PIIX5 SMBus" }, - { "8086", "7800", "82740 (i740) AGP Graphics Accelerator" }, - { "8086", "7a84", "Z690 Chipset LPC/eSPI Controller" }, - { "8086", "7aa3", "Alder Lake-S PCH SMBus Controller" }, - { "8086", "7aa4", "Alder Lake-S PCH SPI Controller" }, - { "8086", "7aa7", "Alder Lake-S PCH Shared SRAM" }, - { "8086", "7ab4", "Alder Lake-S PCH PCI Express Root Port #13" }, - { "8086", "7abd", "Alder Lake-S PCH PCI Express Root Port #6" }, - { "8086", "7acc", "Alder Lake-S PCH I2C Controller #0" }, - { "8086", "7ad0", "Alder Lake-S HD Audio Controller" }, - { "8086", "7ae0", "Alder Lake-S PCH USB 3.2 Gen 2x2 XHCI Controller" }, - { "8086", "7ae2", "Alder Lake-S PCH SATA Controller [AHCI Mode]" }, - { "8086", "7ae8", "Alder Lake-S PCH HECI Controller #1" }, - { "8086", "7af0", "Alder Lake-S PCH CNVi WiFi" }, - { "8086", "8002", "Trusted Execution Technology Registers" }, - { "8086", "8003", "Trusted Execution Technology Registers" }, - { "8086", "8100", "US15W/US15X SCH [Poulsbo] Host Bridge" }, - { "8086", "8101", "US15L/UL11L SCH [Poulsbo] Host Bridge" }, - { "8086", "8108", "US15W/US15X SCH [Poulsbo] Graphics Controller" }, - { "8086", "8109", "US15L/UL11L SCH [Poulsbo] Graphics Controller" }, - { "8086", "8110", "US15W/US15X/US15L/UL11L SCH [Poulsbo] PCI Express Port 1" }, - { "8086", "8112", "US15W/US15X/US15L/UL11L SCH [Poulsbo] PCI Express Port 2" }, - { "8086", "8114", "US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #1" }, - { "8086", "8115", "US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #2" }, - { "8086", "8116", "US15W/US15X/US15L/UL11L SCH [Poulsbo] USB UHCI Controller #3" }, - { "8086", "8117", "US15W/US15X/US15L/UL11L SCH [Poulsbo] USB EHCI Controller" }, - { "8086", "8118", "US15W/US15X/US15L/UL11L SCH [Poulsbo] USB Client Controller" }, - { "8086", "8119", "US15W/US15X/US15L/UL11L SCH [Poulsbo] LPC Bridge" }, - { "8086", "811a", "US15W/US15X/US15L/UL11L SCH [Poulsbo] IDE Controller" }, - { "8086", "811b", "US15W/US15X/US15L/UL11L SCH [Poulsbo] HD Audio Controller" }, - { "8086", "811c", "US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #1" }, - { "8086", "811d", "US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #2" }, - { "8086", "811e", "US15W/US15X/US15L/UL11L SCH [Poulsbo] SDIO/MMC Controller #3" }, - { "8086", "8180", "Atom Processor E6xx PCI Express Port 3" }, - { "8086", "8181", "Atom Processor E6xx PCI Express Port 4" }, - { "8086", "8182", "Atom Processor E6xx Integrated Graphics Controller" }, - { "8086", "8183", "Atom Processor E6xx Configuration Unit" }, - { "8086", "8184", "Atom Processor E6xx PCI Express Port 1" }, - { "8086", "8185", "Atom Processor E6xx PCI Express Port 2" }, - { "8086", "8186", "Atom Processor E6xx LPC Bridge" }, - { "8086", "84c4", "450KX/GX [Orion] - 82454KX/GX PCI bridge" }, - { "8086", "84c5", "450KX/GX [Orion] - 82453KX/GX Memory controller" }, - { "8086", "84ca", "450NX - 82451NX Memory & I/O Controller" }, - { "8086", "84cb", "450NX - 82454NX/84460GX PCI Expander Bridge" }, - { "8086", "84e0", "460GX - 84460GX System Address Controller (SAC)" }, - { "8086", "84e1", "460GX - 84460GX System Data Controller (SDC)" }, - { "8086", "84e2", "460GX - 84460GX AGP Bridge (GXB function 2)" }, - { "8086", "84e3", "460GX - 84460GX Memory Address Controller (MAC)" }, - { "8086", "84e4", "460GX - 84460GX Memory Data Controller (MDC)" }, - { "8086", "84e6", "460GX - 82466GX Wide and fast PCI eXpander Bridge (WXB)" }, - { "8086", "84ea", "460GX - 84460GX AGP Bridge (GXB function 1)" }, - { "8086", "8500", "IXP4XX Network Processor (IXP420/421/422/425/IXC1100)" }, - { "8086", "8603", "Ice Lake-LP Dynamic Tuning Processor Participant" }, - { "8086", "87c0", "UHD Graphics 617" }, - { "8086", "8800", "Platform Controller Hub EG20T PCI Express Port" }, - { "8086", "8801", "Platform Controller Hub EG20T Packet Hub" }, - { "8086", "8802", "Platform Controller Hub EG20T Gigabit Ethernet Controller" }, - { "8086", "8803", "Platform Controller Hub EG20T General Purpose IO Controller" }, - { "8086", "8804", "Platform Controller Hub EG20T USB OHCI Controller #4" }, - { "8086", "8805", "Platform Controller Hub EG20T USB OHCI Controller #5" }, - { "8086", "8806", "Platform Controller Hub EG20T USB OHCI Controller #6" }, - { "8086", "8807", "Platform Controller Hub EG20T USB2 EHCI Controller #2" }, - { "8086", "8808", "Platform Controller Hub EG20T USB Client Controller" }, - { "8086", "8809", "Platform Controller Hub EG20T SDIO Controller #1" }, - { "8086", "880a", "Platform Controller Hub EG20T SDIO Controller #2" }, - { "8086", "880b", "Platform Controller Hub EG20T SATA AHCI Controller" }, - { "8086", "880c", "Platform Controller Hub EG20T USB OHCI Controller #1" }, - { "8086", "880d", "Platform Controller Hub EG20T USB OHCI Controller #2" }, - { "8086", "880e", "Platform Controller Hub EG20T USB OHCI Controller #3" }, - { "8086", "880f", "Platform Controller Hub EG20T USB2 EHCI Controller #1" }, - { "8086", "8810", "Platform Controller Hub EG20T DMA Controller #1" }, - { "8086", "8811", "Platform Controller Hub EG20T UART Controller 0" }, - { "8086", "8812", "Platform Controller Hub EG20T UART Controller 1" }, - { "8086", "8813", "Platform Controller Hub EG20T UART Controller 2" }, - { "8086", "8814", "Platform Controller Hub EG20T UART Controller 3" }, - { "8086", "8815", "Platform Controller Hub EG20T DMA Controller #2" }, - { "8086", "8816", "Platform Controller Hub EG20T Serial Peripheral Interface Bus" }, - { "8086", "8817", "Platform Controller Hub EG20T I2C Controller" }, - { "8086", "8818", "Platform Controller Hub EG20T Controller Area Network (CAN) Controller" }, - { "8086", "8819", "Platform Controller Hub EG20T IEEE 1588 Hardware Assist" }, - { "8086", "8a0d", "Ice Lake Thunderbolt 3 NHI #1" }, - { "8086", "8a12", "Ice Lake-LP Processor Host Bridge/DRAM Registers" }, - { "8086", "8a13", "Ice Lake Thunderbolt 3 USB Controller" }, - { "8086", "8a14", "Ice Lake Processor Host Bridge/DRAM Registers" }, - { "8086", "8a17", "Ice Lake Thunderbolt 3 NHI #0" }, - { "8086", "8a19", "Image Signal Processor" }, - { "8086", "8a1d", "Ice Lake Thunderbolt 3 PCI Express Root Port #0" }, - { "8086", "8a1f", "Ice Lake Thunderbolt 3 PCI Express Root Port #1" }, - { "8086", "8a21", "Ice Lake Thunderbolt 3 PCI Express Root Port #2" }, - { "8086", "8a23", "Ice Lake Thunderbolt 3 PCI Express Root Port #3" }, - { "8086", "8a51", "Iris Plus Graphics G7 (Ice Lake)" }, - { "8086", "8a52", "Iris Plus Graphics G7" }, - { "8086", "8a53", "Iris Plus Graphics G7" }, - { "8086", "8a56", "Iris Plus Graphics G1 (Ice Lake)" }, - { "8086", "8a5a", "Iris Plus Graphics G4 (Ice Lake)" }, - { "8086", "8a5c", "Iris Plus Graphics G4 (Ice Lake)" }, - { "8086", "8c00", "8 Series/C220 Series Chipset Family 4-port SATA Controller 1 [IDE mode]" }, - { "8086", "8c01", "8 Series Chipset Family 4-port SATA Controller 1 [IDE mode] - Mobile" }, - { "8086", "8c02", "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]" }, - { "8086", "8c03", "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]" }, - { "8086", "8c04", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c05", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c06", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c07", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c08", "8 Series/C220 Series Chipset Family 2-port SATA Controller 2 [IDE mode]" }, - { "8086", "8c09", "8 Series/C220 Series Chipset Family 2-port SATA Controller 2 [IDE mode]" }, - { "8086", "8c0e", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c0f", "8 Series/C220 Series Chipset Family SATA Controller 1 [RAID mode]" }, - { "8086", "8c10", "8 Series/C220 Series Chipset Family PCI Express Root Port #1" }, - { "8086", "8c11", "8 Series/C220 Series Chipset Family PCI Express Root Port #1" }, - { "8086", "8c12", "8 Series/C220 Series Chipset Family PCI Express Root Port #2" }, - { "8086", "8c13", "8 Series/C220 Series Chipset Family PCI Express Root Port #2" }, - { "8086", "8c14", "8 Series/C220 Series Chipset Family PCI Express Root Port #3" }, - { "8086", "8c15", "8 Series/C220 Series Chipset Family PCI Express Root Port #3" }, - { "8086", "8c16", "8 Series/C220 Series Chipset Family PCI Express Root Port #4" }, - { "8086", "8c17", "8 Series/C220 Series Chipset Family PCI Express Root Port #4" }, - { "8086", "8c18", "8 Series/C220 Series Chipset Family PCI Express Root Port #5" }, - { "8086", "8c19", "8 Series/C220 Series Chipset Family PCI Express Root Port #5" }, - { "8086", "8c1a", "8 Series/C220 Series Chipset Family PCI Express Root Port #6" }, - { "8086", "8c1b", "8 Series/C220 Series Chipset Family PCI Express Root Port #6" }, - { "8086", "8c1c", "8 Series/C220 Series Chipset Family PCI Express Root Port #7" }, - { "8086", "8c1d", "8 Series/C220 Series Chipset Family PCI Express Root Port #7" }, - { "8086", "8c1e", "8 Series/C220 Series Chipset Family PCI Express Root Port #8" }, - { "8086", "8c1f", "8 Series/C220 Series Chipset Family PCI Express Root Port #8" }, - { "8086", "8c20", "8 Series/C220 Series Chipset High Definition Audio Controller" }, - { "8086", "8c21", "8 Series/C220 Series Chipset High Definition Audio Controller" }, - { "8086", "8c22", "8 Series/C220 Series Chipset Family SMBus Controller" }, - { "8086", "8c23", "8 Series Chipset Family CHAP Counters" }, - { "8086", "8c24", "8 Series Chipset Family Thermal Management Controller" }, - { "8086", "8c26", "8 Series/C220 Series Chipset Family USB EHCI #1" }, - { "8086", "8c2d", "8 Series/C220 Series Chipset Family USB EHCI #2" }, - { "8086", "8c31", "8 Series/C220 Series Chipset Family USB xHCI" }, - { "8086", "8c33", "8 Series/C220 Series Chipset Family LAN Controller" }, - { "8086", "8c34", "8 Series/C220 Series Chipset Family NAND Controller" }, - { "8086", "8c3a", "8 Series/C220 Series Chipset Family MEI Controller #1" }, - { "8086", "8c3b", "8 Series/C220 Series Chipset Family MEI Controller #2" }, - { "8086", "8c3c", "8 Series/C220 Series Chipset Family IDE-r Controller" }, - { "8086", "8c3d", "8 Series/C220 Series Chipset Family KT Controller" }, - { "8086", "8c40", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c41", "8 Series Chipset Family Mobile Super SKU LPC Controller" }, - { "8086", "8c42", "8 Series/C220 Series Chipset Family Desktop Super SKU LPC Controller" }, - { "8086", "8c43", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c44", "Z87 Express LPC Controller" }, - { "8086", "8c45", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c46", "Z85 Express LPC Controller" }, - { "8086", "8c47", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c48", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c49", "HM86 Express LPC Controller" }, - { "8086", "8c4a", "H87 Express LPC Controller" }, - { "8086", "8c4b", "HM87 Express LPC Controller" }, - { "8086", "8c4c", "Q85 Express LPC Controller" }, - { "8086", "8c4d", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c4e", "Q87 Express LPC Controller" }, - { "8086", "8c4f", "QM87 Express LPC Controller" }, - { "8086", "8c50", "B85 Express LPC Controller" }, - { "8086", "8c51", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c52", "C222 Series Chipset Family Server Essential SKU LPC Controller" }, - { "8086", "8c53", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c54", "C224 Series Chipset Family Server Standard SKU LPC Controller" }, - { "8086", "8c55", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c56", "C226 Series Chipset Family Server Advanced SKU LPC Controller" }, - { "8086", "8c57", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c58", "8 Series/C220 Series Chipset Family WS SKU LPC Controller" }, - { "8086", "8c59", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c5a", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c5b", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c5c", "H81 Express LPC Controller" }, - { "8086", "8c5d", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c5e", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c5f", "8 Series/C220 Series Chipset Family LPC Controller" }, - { "8086", "8c80", "9 Series Chipset Family SATA Controller [IDE Mode]" }, - { "8086", "8c81", "9 Series Chipset Family SATA Controller [IDE Mode]" }, - { "8086", "8c82", "9 Series Chipset Family SATA Controller [AHCI Mode]" }, - { "8086", "8c83", "9 Series Chipset Family SATA Controller [AHCI Mode]" }, - { "8086", "8c84", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c85", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c86", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c87", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c88", "9 Series Chipset Family SATA Controller [IDE Mode]" }, - { "8086", "8c89", "9 Series Chipset Family SATA Controller [IDE Mode]" }, - { "8086", "8c8e", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c8f", "9 Series Chipset Family SATA Controller [RAID Mode]" }, - { "8086", "8c90", "9 Series Chipset Family PCI Express Root Port 1" }, - { "8086", "8c92", "9 Series Chipset Family PCI Express Root Port 2" }, - { "8086", "8c94", "9 Series Chipset Family PCI Express Root Port 3" }, - { "8086", "8c96", "9 Series Chipset Family PCI Express Root Port 4" }, - { "8086", "8c98", "9 Series Chipset Family PCI Express Root Port 5" }, - { "8086", "8c9a", "9 Series Chipset Family PCI Express Root Port 6" }, - { "8086", "8c9c", "9 Series Chipset Family PCI Express Root Port 7" }, - { "8086", "8c9e", "9 Series Chipset Family PCI Express Root Port 8" }, - { "8086", "8ca0", "9 Series Chipset Family HD Audio Controller" }, - { "8086", "8ca2", "9 Series Chipset Family SMBus Controller" }, - { "8086", "8ca4", "9 Series Chipset Family Thermal Controller" }, - { "8086", "8ca6", "9 Series Chipset Family USB EHCI Controller #1" }, - { "8086", "8cad", "9 Series Chipset Family USB EHCI Controller #2" }, - { "8086", "8cb1", "9 Series Chipset Family USB xHCI Controller" }, - { "8086", "8cb3", "9 Series Chipset Family LAN Controller" }, - { "8086", "8cba", "9 Series Chipset Family ME Interface #1" }, - { "8086", "8cbb", "9 Series Chipset Family ME Interface #2" }, - { "8086", "8cbc", "9 Series Chipset Family IDE-R Controller" }, - { "8086", "8cbd", "9 Series Chipset Family KT Controller" }, - { "8086", "8cc1", "9 Series Chipset Family LPC Controller" }, - { "8086", "8cc2", "9 Series Chipset Family LPC Controller" }, - { "8086", "8cc3", "HM97 Chipset LPC Controller" }, - { "8086", "8cc4", "Z97 Chipset LPC Controller" }, - { "8086", "8cc5", "QM97 Chipset LPC Controller" }, - { "8086", "8cc6", "H97 Chipset LPC Controller" }, - { "8086", "8d00", "C610/X99 series chipset 4-port SATA Controller [IDE mode]" }, - { "8086", "8d02", "C610/X99 series chipset 6-Port SATA Controller [AHCI mode]" }, - { "8086", "8d04", "C610/X99 series chipset SATA Controller [RAID mode]" }, - { "8086", "8d06", "C610/X99 series chipset SATA Controller [RAID mode]" }, - { "8086", "8d08", "C610/X99 series chipset 2-port SATA Controller [IDE mode]" }, - { "8086", "8d0e", "C610/X99 series chipset SATA Controller [RAID mode]" }, - { "8086", "8d10", "C610/X99 series chipset PCI Express Root Port #1" }, - { "8086", "8d11", "C610/X99 series chipset PCI Express Root Port #1" }, - { "8086", "8d12", "C610/X99 series chipset PCI Express Root Port #2" }, - { "8086", "8d13", "C610/X99 series chipset PCI Express Root Port #2" }, - { "8086", "8d14", "C610/X99 series chipset PCI Express Root Port #3" }, - { "8086", "8d15", "C610/X99 series chipset PCI Express Root Port #3" }, - { "8086", "8d16", "C610/X99 series chipset PCI Express Root Port #4" }, - { "8086", "8d17", "C610/X99 series chipset PCI Express Root Port #4" }, - { "8086", "8d18", "C610/X99 series chipset PCI Express Root Port #5" }, - { "8086", "8d19", "C610/X99 series chipset PCI Express Root Port #5" }, - { "8086", "8d1a", "C610/X99 series chipset PCI Express Root Port #6" }, - { "8086", "8d1b", "C610/X99 series chipset PCI Express Root Port #6" }, - { "8086", "8d1c", "C610/X99 series chipset PCI Express Root Port #7" }, - { "8086", "8d1d", "C610/X99 series chipset PCI Express Root Port #7" }, - { "8086", "8d1e", "C610/X99 series chipset PCI Express Root Port #8" }, - { "8086", "8d1f", "C610/X99 series chipset PCI Express Root Port #8" }, - { "8086", "8d20", "C610/X99 series chipset HD Audio Controller" }, - { "8086", "8d21", "C610/X99 series chipset HD Audio Controller" }, - { "8086", "8d22", "C610/X99 series chipset SMBus Controller" }, - { "8086", "8d24", "C610/X99 series chipset Thermal Subsystem" }, - { "8086", "8d26", "C610/X99 series chipset USB Enhanced Host Controller #1" }, - { "8086", "8d2d", "C610/X99 series chipset USB Enhanced Host Controller #2" }, - { "8086", "8d31", "C610/X99 series chipset USB xHCI Host Controller" }, - { "8086", "8d33", "C610/X99 series chipset LAN Controller" }, - { "8086", "8d34", "C610/X99 series chipset NAND Controller" }, - { "8086", "8d3a", "C610/X99 series chipset MEI Controller #1" }, - { "8086", "8d3b", "C610/X99 series chipset MEI Controller #2" }, - { "8086", "8d3c", "C610/X99 series chipset IDE-r Controller" }, - { "8086", "8d3d", "C610/X99 series chipset KT Controller" }, - { "8086", "8d40", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d41", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d42", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d43", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d44", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d45", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d46", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d47", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d48", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d49", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4a", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4b", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4c", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4d", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4e", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d4f", "C610/X99 series chipset LPC Controller" }, - { "8086", "8d60", "C610/X99 series chipset sSATA Controller [IDE mode]" }, - { "8086", "8d62", "C610/X99 series chipset sSATA Controller [AHCI mode]" }, - { "8086", "8d64", "C610/X99 series chipset sSATA Controller [RAID mode]" }, - { "8086", "8d66", "C610/X99 series chipset sSATA Controller [RAID mode]" }, - { "8086", "8d68", "C610/X99 series chipset sSATA Controller [IDE mode]" }, - { "8086", "8d6e", "C610/X99 series chipset sSATA Controller [RAID mode]" }, - { "8086", "8d7c", "C610/X99 series chipset SPSR" }, - { "8086", "8d7d", "C610/X99 series chipset MS SMBus 0" }, - { "8086", "8d7e", "C610/X99 series chipset MS SMBus 1" }, - { "8086", "8d7f", "C610/X99 series chipset MS SMBus 2" }, - { "8086", "9000", "IXP2000 Family Network Processor" }, - { "8086", "9001", "IXP2400 Network Processor" }, - { "8086", "9002", "IXP2300 Network Processor" }, - { "8086", "9004", "IXP2800 Network Processor" }, - { "8086", "9621", "Integrated RAID" }, - { "8086", "9622", "Integrated RAID" }, - { "8086", "9641", "Integrated RAID" }, - { "8086", "96a1", "Integrated RAID" }, - { "8086", "9a01", "11th Gen Core Processor PCIe Controller #1" }, - { "8086", "9a03", "TigerLake-LP Dynamic Tuning Processor Participant" }, - { "8086", "9a09", "11th Gen Core Processor PCIe Controller" }, - { "8086", "9a0b", "Volume Management Device NVMe RAID Controller" }, - { "8086", "9a0d", "Tigerlake Telemetry Aggregator Driver" }, - { "8086", "9a0f", "11th Gen Core Processor PCIe Controller #0" }, - { "8086", "9a11", "GNA Scoring Accelerator module" }, - { "8086", "9a13", "Tiger Lake-LP Thunderbolt 4 USB Controller" }, - { "8086", "9a14", "11th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9a17", "Tiger Lake-H Thunderbolt 4 USB Controller" }, - { "8086", "9a1b", "Tiger Lake-LP Thunderbolt 4 NHI #0" }, - { "8086", "9a1d", "Tiger Lake-LP Thunderbolt 4 NHI #1" }, - { "8086", "9a1f", "Tiger Lake-H Thunderbolt 4 NHI #0" }, - { "8086", "9a21", "Tiger Lake-H Thunderbolt 4 NHI #1" }, - { "8086", "9a23", "Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #0" }, - { "8086", "9a25", "Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1" }, - { "8086", "9a26", "11th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9a27", "Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2" }, - { "8086", "9a29", "Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #3" }, - { "8086", "9a2b", "Tiger Lake-H Thunderbolt 4 PCI Express Root Port #0" }, - { "8086", "9a2d", "Tiger Lake-H Thunderbolt 4 PCI Express Root Port #1" }, - { "8086", "9a2f", "Tiger Lake-H Thunderbolt 4 PCI Express Root Port #2" }, - { "8086", "9a31", "Tiger Lake-H Thunderbolt 4 PCI Express Root Port #3" }, - { "8086", "9a33", "Tiger Lake Trace Hub" }, - { "8086", "9a36", "11th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9a49", "TigerLake-LP GT2 [Iris Xe Graphics]" }, - { "8086", "9a60", "TigerLake-H GT1 [UHD Graphics]" }, - { "8086", "9a68", "TigerLake-H GT1 [UHD Graphics]" }, - { "8086", "9b33", "Comet Lake-S 6c Host Bridge/DRAM Controller" }, - { "8086", "9b41", "CometLake-U GT2 [UHD Graphics]" }, - { "8086", "9b44", "10th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9b53", "Comet Lake-S 6c Host Bridge/DRAM Controller" }, - { "8086", "9b54", "10th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9b61", "Comet Lake-U v1 4c Host Bridge/DRAM Controller" }, - { "8086", "9b63", "10th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9b64", "10th Gen Core Processor Host Bridge/DRAM Registers" }, - { "8086", "9ba8", "CometLake-S GT1 [UHD Graphics 610]" }, - { "8086", "9bc4", "CometLake-H GT2 [UHD Graphics]" }, - { "8086", "9bc5", "CometLake-S GT2 [UHD Graphics 630]" }, - { "8086", "9bc8", "CometLake-S GT2 [UHD Graphics 630]" }, - { "8086", "9bca", "Comet Lake UHD Graphics" }, - { "8086", "9c00", "8 Series SATA Controller 1 [IDE mode]" }, - { "8086", "9c01", "8 Series SATA Controller 1 [IDE mode]" }, - { "8086", "9c02", "8 Series SATA Controller 1 [AHCI mode]" }, - { "8086", "9c03", "8 Series SATA Controller 1 [AHCI mode]" }, - { "8086", "9c04", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c05", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c06", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c07", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c08", "8 Series SATA Controller 2 [IDE mode]" }, - { "8086", "9c09", "8 Series SATA Controller 2 [IDE mode]" }, - { "8086", "9c0a", "8 Series SATA Controller [Reserved]" }, - { "8086", "9c0b", "8 Series SATA Controller [Reserved]" }, - { "8086", "9c0c", "8 Series SATA Controller [Reserved]" }, - { "8086", "9c0d", "8 Series SATA Controller [Reserved]" }, - { "8086", "9c0e", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c0f", "8 Series SATA Controller 1 [RAID mode]" }, - { "8086", "9c10", "8 Series PCI Express Root Port 1" }, - { "8086", "9c11", "8 Series PCI Express Root Port 1" }, - { "8086", "9c12", "8 Series PCI Express Root Port 2" }, - { "8086", "9c13", "8 Series PCI Express Root Port 2" }, - { "8086", "9c14", "8 Series PCI Express Root Port 3" }, - { "8086", "9c15", "8 Series PCI Express Root Port 3" }, - { "8086", "9c16", "8 Series PCI Express Root Port 4" }, - { "8086", "9c17", "8 Series PCI Express Root Port 4" }, - { "8086", "9c18", "8 Series PCI Express Root Port 5" }, - { "8086", "9c19", "8 Series PCI Express Root Port 5" }, - { "8086", "9c1a", "8 Series PCI Express Root Port 6" }, - { "8086", "9c1b", "8 Series PCI Express Root Port 6" }, - { "8086", "9c1c", "8 Series PCI Express Root Port 7" }, - { "8086", "9c1d", "8 Series PCI Express Root Port 7" }, - { "8086", "9c1e", "8 Series PCI Express Root Port 8" }, - { "8086", "9c1f", "8 Series PCI Express Root Port 8" }, - { "8086", "9c20", "8 Series HD Audio Controller" }, - { "8086", "9c21", "8 Series HD Audio Controller" }, - { "8086", "9c22", "8 Series SMBus Controller" }, - { "8086", "9c23", "8 Series CHAP Counters" }, - { "8086", "9c24", "8 Series Thermal" }, - { "8086", "9c26", "8 Series USB EHCI #1" }, - { "8086", "9c2d", "8 Series USB EHCI #2" }, - { "8086", "9c31", "8 Series USB xHCI HC" }, - { "8086", "9c35", "8 Series SDIO Controller" }, - { "8086", "9c36", "8 Series Audio DSP Controller" }, - { "8086", "9c3a", "8 Series HECI #0" }, - { "8086", "9c3b", "8 Series HECI #1" }, - { "8086", "9c3c", "8 Series HECI IDER" }, - { "8086", "9c3d", "8 Series HECI KT" }, - { "8086", "9c40", "8 Series LPC Controller" }, - { "8086", "9c41", "8 Series LPC Controller" }, - { "8086", "9c42", "8 Series LPC Controller" }, - { "8086", "9c43", "8 Series LPC Controller" }, - { "8086", "9c44", "8 Series LPC Controller" }, - { "8086", "9c45", "8 Series LPC Controller" }, - { "8086", "9c46", "8 Series LPC Controller" }, - { "8086", "9c47", "8 Series LPC Controller" }, - { "8086", "9c60", "8 Series Low Power Sub-System DMA" }, - { "8086", "9c61", "8 Series I2C Controller #0" }, - { "8086", "9c62", "8 Series I2C Controller #1" }, - { "8086", "9c63", "8 Series UART Controller #0" }, - { "8086", "9c64", "8 Series UART Controller #1" }, - { "8086", "9c65", "8 Series SPI Controller #0" }, - { "8086", "9c66", "8 Series SPI Controller #1" }, - { "8086", "9c83", "Wildcat Point-LP SATA Controller [AHCI Mode]" }, - { "8086", "9c85", "Wildcat Point-LP SATA Controller [RAID Mode]" }, - { "8086", "9c87", "Wildcat Point-LP SATA Controller [RAID Mode]" }, - { "8086", "9c8f", "Wildcat Point-LP SATA Controller [RAID Mode]" }, - { "8086", "9c90", "Wildcat Point-LP PCI Express Root Port #1" }, - { "8086", "9c92", "Wildcat Point-LP PCI Express Root Port #2" }, - { "8086", "9c94", "Wildcat Point-LP PCI Express Root Port #3" }, - { "8086", "9c96", "Wildcat Point-LP PCI Express Root Port #4" }, - { "8086", "9c98", "Wildcat Point-LP PCI Express Root Port #5" }, - { "8086", "9c9a", "Wildcat Point-LP PCI Express Root Port #6" }, - { "8086", "9ca0", "Wildcat Point-LP High Definition Audio Controller" }, - { "8086", "9ca2", "Wildcat Point-LP SMBus Controller" }, - { "8086", "9ca4", "Wildcat Point-LP Thermal Management Controller" }, - { "8086", "9ca6", "Wildcat Point-LP USB EHCI Controller" }, - { "8086", "9cb1", "Wildcat Point-LP USB xHCI Controller" }, - { "8086", "9cb5", "Wildcat Point-LP Secure Digital IO Controller" }, - { "8086", "9cb6", "Wildcat Point-LP Smart Sound Technology Controller" }, - { "8086", "9cba", "Wildcat Point-LP MEI Controller #1" }, - { "8086", "9cbb", "Wildcat Point-LP MEI Controller #2" }, - { "8086", "9cbc", "Wildcat Point-LP IDE-r Controller" }, - { "8086", "9cbd", "Wildcat Point-LP KT Controller" }, - { "8086", "9cc1", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc2", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc3", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc5", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc6", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc7", "Wildcat Point-LP LPC Controller" }, - { "8086", "9cc9", "Wildcat Point-LP LPC Controller" }, - { "8086", "9ce0", "Wildcat Point-LP Serial IO DMA Controller" }, - { "8086", "9ce1", "Wildcat Point-LP Serial IO I2C Controller #0" }, - { "8086", "9ce2", "Wildcat Point-LP Serial IO I2C Controller #1" }, - { "8086", "9ce3", "Wildcat Point-LP Serial IO UART Controller #0" }, - { "8086", "9ce4", "Wildcat Point-LP Serial IO UART Controller #1" }, - { "8086", "9ce5", "Wildcat Point-LP Serial IO GSPI Controller #0" }, - { "8086", "9ce6", "Wildcat Point-LP Serial IO GSPI Controller #1" }, - { "8086", "9d03", "Sunrise Point-LP SATA Controller [AHCI mode]" }, - { "8086", "9d10", "Sunrise Point-LP PCI Express Root Port #1" }, - { "8086", "9d11", "Sunrise Point-LP PCI Express Root Port #2" }, - { "8086", "9d12", "Sunrise Point-LP PCI Express Root Port #3" }, - { "8086", "9d13", "Sunrise Point-LP PCI Express Root Port #4" }, - { "8086", "9d14", "Sunrise Point-LP PCI Express Root Port #5" }, - { "8086", "9d15", "Sunrise Point-LP PCI Express Root Port #6" }, - { "8086", "9d16", "Sunrise Point-LP PCI Express Root Port #7" }, - { "8086", "9d17", "Sunrise Point-LP PCI Express Root Port #8" }, - { "8086", "9d18", "Sunrise Point-LP PCI Express Root Port #9" }, - { "8086", "9d19", "Sunrise Point-LP PCI Express Root Port #10" }, - { "8086", "9d1a", "Sunrise Point-LP PCI Express Root Port #11" }, - { "8086", "9d21", "Sunrise Point-LP PMC" }, - { "8086", "9d23", "Sunrise Point-LP SMBus" }, - { "8086", "9d27", "Sunrise Point-LP Serial IO UART Controller #0" }, - { "8086", "9d28", "Sunrise Point-LP Serial IO UART Controller #1" }, - { "8086", "9d29", "Sunrise Point-LP Serial IO SPI Controller #0" }, - { "8086", "9d2a", "Sunrise Point-LP Serial IO SPI Controller #1" }, - { "8086", "9d2d", "Sunrise Point-LP Secure Digital IO Controller" }, - { "8086", "9d2f", "Sunrise Point-LP USB 3.0 xHCI Controller" }, - { "8086", "9d31", "Sunrise Point-LP Thermal subsystem" }, - { "8086", "9d32", "CSI-2 Host Controller" }, - { "8086", "9d35", "Sunrise Point-LP Integrated Sensor Hub" }, - { "8086", "9d3a", "Sunrise Point-LP CSME HECI #1" }, - { "8086", "9d3d", "Sunrise Point-LP Active Management Technology - SOL" }, - { "8086", "9d3e", "iTouch Controller" }, - { "8086", "9d43", "Sunrise Point-LP LPC Controller" }, - { "8086", "9d46", "LPC/eSPI Controller" }, - { "8086", "9d48", "Sunrise Point-LP LPC Controller" }, - { "8086", "9d4e", "Sunrise Point LPC Controller/eSPI Controller" }, - { "8086", "9d50", "Sunrise Point LPC Controller" }, - { "8086", "9d56", "Sunrise Point-LP LPC Controller" }, - { "8086", "9d58", "Sunrise Point-LP LPC Controller" }, - { "8086", "9d60", "Sunrise Point-LP Serial IO I2C Controller #0" }, - { "8086", "9d61", "Sunrise Point-LP Serial IO I2C Controller #1" }, - { "8086", "9d62", "Sunrise Point-LP Serial IO I2C Controller #2" }, - { "8086", "9d63", "Sunrise Point-LP Serial IO I2C Controller #3" }, - { "8086", "9d64", "Sunrise Point-LP Serial IO I2C Controller #4" }, - { "8086", "9d65", "Sunrise Point-LP Serial IO I2C Controller #5" }, - { "8086", "9d66", "Sunrise Point-LP Serial IO UART Controller #2" }, - { "8086", "9d70", "Sunrise Point-LP HD Audio" }, - { "8086", "9d71", "Sunrise Point-LP HD Audio" }, - { "8086", "9d84", "Cannon Point-LP LPC Controller" }, - { "8086", "9da3", "Cannon Point-LP SMBus Controller" }, - { "8086", "9da4", "Cannon Point-LP SPI Controller" }, - { "8086", "9da8", "Cannon Point-LP Serial IO UART Controller #2" }, - { "8086", "9daa", "Cannon Point-LP Serial IO SPI Controller" }, - { "8086", "9dab", "Cannon Point-LP Serial IO SPI Controller" }, - { "8086", "9db0", "Cannon Point-LP PCI Express Root Port #9" }, - { "8086", "9db1", "Cannon Point-LP PCI Express Root Port #10" }, - { "8086", "9db2", "Cannon Point-LP PCI Express Root Port #1" }, - { "8086", "9db4", "Cannon Point-LP PCI Express Root Port #13" }, - { "8086", "9db6", "Cannon Point-LP PCI Express Root Port #15" }, - { "8086", "9db8", "Cannon Point-LP PCI Express Root Port #1" }, - { "8086", "9dbc", "Cannon Point-LP PCI Express Root Port #5" }, - { "8086", "9dbe", "Cannon Point-LP PCI Express Root Port #7" }, - { "8086", "9dbf", "Cannon Point PCI Express Root Port #8" }, - { "8086", "9dc4", "Cannon Point-LP SD Host Controller" }, - { "8086", "9dc5", "Cannon Point-LP Serial IO I2C Host Controller" }, - { "8086", "9dc8", "Cannon Point-LP High Definition Audio Controller" }, - { "8086", "9dd3", "Cannon Point-LP SATA Controller [AHCI Mode]" }, - { "8086", "9de0", "Cannon Point-LP MEI Controller #1" }, - { "8086", "9de3", "Cannon Point-LP Keyboard and Text (KT) Redirection" }, - { "8086", "9de8", "Cannon Point-LP Serial IO I2C Controller #0" }, - { "8086", "9de9", "Cannon Point-LP Serial IO I2C Controller #1" }, - { "8086", "9ded", "Cannon Point-LP USB 3.1 xHCI Controller" }, - { "8086", "9def", "Cannon Point-LP Shared SRAM" }, - { "8086", "9df0", "Cannon Point-LP CNVi [Wireless-AC]" }, - { "8086", "9df5", "BayHubTech Integrated SD controller" }, - { "8086", "9df9", "Cannon Point-LP Thermal Controller" }, - { "8086", "9dfc", "Cannon Point-LP Integrated Sensor Hub" }, - { "8086", "a000", "Atom Processor D4xx/D5xx/N4xx/N5xx DMI Bridge" }, - { "8086", "a001", "Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller" }, - { "8086", "a002", "Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller" }, - { "8086", "a003", "Atom Processor D4xx/D5xx/N4xx/N5xx CHAPS counter" }, - { "8086", "a010", "Atom Processor D4xx/D5xx/N4xx/N5xx DMI Bridge" }, - { "8086", "a011", "Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller" }, - { "8086", "a012", "Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller" }, - { "8086", "a013", "Atom Processor D4xx/D5xx/N4xx/N5xx CHAPS counter" }, - { "8086", "a082", "Tiger Lake-LP LPC Controller" }, - { "8086", "a0a3", "Tiger Lake-LP SMBus Controller" }, - { "8086", "a0a4", "Tiger Lake-LP SPI Controller" }, - { "8086", "a0a6", "Tiger Lake-LP Trace Hub" }, - { "8086", "a0a8", "Tiger Lake-LP Serial IO UART Controller #0" }, - { "8086", "a0a9", "Tiger Lake-LP Serial IO UART Controller #1" }, - { "8086", "a0ab", "Tiger Lake-LP Serial IO SPI Controller #1" }, - { "8086", "a0b0", "Tiger Lake-LP PCI Express Root Port #9" }, - { "8086", "a0bd", "Tigerlake PCH-LP PCI Express Root Port #6" }, - { "8086", "a0bf", "Tiger Lake-LP PCI Express Root Port #8" }, - { "8086", "a0c5", "Tiger Lake-LP Serial IO I2C Controller #4" }, - { "8086", "a0c6", "Tiger Lake-LP Serial IO I2C Controller #5" }, - { "8086", "a0c8", "Tiger Lake-LP Smart Sound Technology Audio Controller" }, - { "8086", "a0e0", "Tiger Lake-LP Management Engine Interface" }, - { "8086", "a0e3", "Tiger Lake-LP Active Management Technology - SOL" }, - { "8086", "a0e8", "Tiger Lake-LP Serial IO I2C Controller #0" }, - { "8086", "a0e9", "Tiger Lake-LP Serial IO I2C Controller #1" }, - { "8086", "a0ea", "Tiger Lake-LP Serial IO I2C Controller #2" }, - { "8086", "a0eb", "Tiger Lake-LP Serial IO I2C Controller #3" }, - { "8086", "a0ed", "Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller" }, - { "8086", "a0ef", "Tiger Lake-LP Shared SRAM" }, - { "8086", "a0f0", "Wi-Fi 6 AX201" }, - { "8086", "a0fc", "Tiger Lake-LP Integrated Sensor Hub" }, - { "8086", "a102", "Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode]" }, - { "8086", "a103", "HM170/QM170 Chipset SATA Controller [AHCI Mode]" }, - { "8086", "a105", "Sunrise Point-H SATA Controller [RAID mode]" }, - { "8086", "a106", "Q170/H170/Z170/CM236 Chipset SATA Controller [RAID Mode]" }, - { "8086", "a107", "HM170/QM170 Chipset SATA Controller [RAID Mode]" }, - { "8086", "a10f", "Sunrise Point-H SATA Controller [RAID mode]" }, - { "8086", "a110", "100 Series/C230 Series Chipset Family PCI Express Root Port #1" }, - { "8086", "a111", "100 Series/C230 Series Chipset Family PCI Express Root Port #2" }, - { "8086", "a112", "100 Series/C230 Series Chipset Family PCI Express Root Port #3" }, - { "8086", "a113", "100 Series/C230 Series Chipset Family PCI Express Root Port #4" }, - { "8086", "a114", "100 Series/C230 Series Chipset Family PCI Express Root Port #5" }, - { "8086", "a115", "100 Series/C230 Series Chipset Family PCI Express Root Port #6" }, - { "8086", "a116", "100 Series/C230 Series Chipset Family PCI Express Root Port #7" }, - { "8086", "a117", "100 Series/C230 Series Chipset Family PCI Express Root Port #8" }, - { "8086", "a118", "100 Series/C230 Series Chipset Family PCI Express Root Port #9" }, - { "8086", "a119", "100 Series/C230 Series Chipset Family PCI Express Root Port #10" }, - { "8086", "a11a", "100 Series/C230 Series Chipset Family PCI Express Root Port #11" }, - { "8086", "a11b", "100 Series/C230 Series Chipset Family PCI Express Root Port #12" }, - { "8086", "a11c", "100 Series/C230 Series Chipset Family PCI Express Root Port #13" }, - { "8086", "a11d", "100 Series/C230 Series Chipset Family PCI Express Root Port #14" }, - { "8086", "a11e", "100 Series/C230 Series Chipset Family PCI Express Root Port #15" }, - { "8086", "a11f", "100 Series/C230 Series Chipset Family PCI Express Root Port #16" }, - { "8086", "a120", "100 Series/C230 Series Chipset Family P2SB" }, - { "8086", "a121", "100 Series/C230 Series Chipset Family Power Management Controller" }, - { "8086", "a122", "Sunrise Point-H cAVS" }, - { "8086", "a123", "100 Series/C230 Series Chipset Family SMBus" }, - { "8086", "a124", "100 Series/C230 Series Chipset Family SPI Controller" }, - { "8086", "a125", "100 Series/C230 Series Chipset Family Gigabit Ethernet Controller" }, - { "8086", "a126", "100 Series/C230 Series Chipset Family Trace Hub" }, - { "8086", "a127", "100 Series/C230 Series Chipset Family Serial IO UART #0" }, - { "8086", "a128", "100 Series/C230 Series Chipset Family Serial IO UART #1" }, - { "8086", "a129", "100 Series/C230 Series Chipset Family Serial IO GSPI #0" }, - { "8086", "a12a", "100 Series/C230 Series Chipset Family Serial IO GSPI #1" }, - { "8086", "a12f", "100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller" }, - { "8086", "a130", "100 Series/C230 Series Chipset Family USB Device Controller (OTG)" }, - { "8086", "a131", "100 Series/C230 Series Chipset Family Thermal Subsystem" }, - { "8086", "a133", "Sunrise Point-H Northpeak ACPI Function" }, - { "8086", "a135", "100 Series/C230 Series Chipset Family Integrated Sensor Hub" }, - { "8086", "a13a", "100 Series/C230 Series Chipset Family MEI Controller #1" }, - { "8086", "a13b", "100 Series/C230 Series Chipset Family MEI Controller #2" }, - { "8086", "a13c", "100 Series/C230 Series Chipset Family IDE Redirection" }, - { "8086", "a13d", "100 Series/C230 Series Chipset Family KT Redirection" }, - { "8086", "a13e", "100 Series/C230 Series Chipset Family MEI Controller #3" }, - { "8086", "a140", "Sunrise Point-H LPC Controller" }, - { "8086", "a141", "Sunrise Point-H LPC Controller" }, - { "8086", "a142", "Sunrise Point-H LPC Controller" }, - { "8086", "a143", "H110 Chipset LPC/eSPI Controller" }, - { "8086", "a144", "H170 Chipset LPC/eSPI Controller" }, - { "8086", "a145", "Z170 Chipset LPC/eSPI Controller" }, - { "8086", "a146", "Q170 Chipset LPC/eSPI Controller" }, - { "8086", "a147", "Q150 Chipset LPC/eSPI Controller" }, - { "8086", "a148", "B150 Chipset LPC/eSPI Controller" }, - { "8086", "a149", "C236 Chipset LPC/eSPI Controller" }, - { "8086", "a14a", "C232 Chipset LPC/eSPI Controller" }, - { "8086", "a14b", "Sunrise Point-H LPC Controller" }, - { "8086", "a14c", "Sunrise Point-H LPC Controller" }, - { "8086", "a14d", "QM170 Chipset LPC/eSPI Controller" }, - { "8086", "a14e", "HM170 Chipset LPC/eSPI Controller" }, - { "8086", "a14f", "Sunrise Point-H LPC Controller" }, - { "8086", "a150", "CM236 Chipset LPC/eSPI Controller" }, - { "8086", "a151", "Sunrise Point-H LPC Controller" }, - { "8086", "a152", "HM175 Chipset LPC/eSPI Controller" }, - { "8086", "a153", "QM175 Chipset LPC/eSPI Controller" }, - { "8086", "a154", "CM238 Chipset LPC/eSPI Controller" }, - { "8086", "a155", "Sunrise Point-H LPC Controller" }, - { "8086", "a156", "Sunrise Point-H LPC Controller" }, - { "8086", "a157", "Sunrise Point-H LPC Controller" }, - { "8086", "a158", "Sunrise Point-H LPC Controller" }, - { "8086", "a159", "Sunrise Point-H LPC Controller" }, - { "8086", "a15a", "Sunrise Point-H LPC Controller" }, - { "8086", "a15b", "Sunrise Point-H LPC Controller" }, - { "8086", "a15c", "Sunrise Point-H LPC Controller" }, - { "8086", "a15d", "Sunrise Point-H LPC Controller" }, - { "8086", "a15e", "Sunrise Point-H LPC Controller" }, - { "8086", "a15f", "Sunrise Point-H LPC Controller" }, - { "8086", "a160", "100 Series/C230 Series Chipset Family Serial IO I2C Controller #0" }, - { "8086", "a161", "100 Series/C230 Series Chipset Family Serial IO I2C Controller #1" }, - { "8086", "a162", "100 Series/C230 Series Chipset Family Serial IO I2C Controller #2" }, - { "8086", "a163", "100 Series/C230 Series Chipset Family Serial IO I2C Controller #3" }, - { "8086", "a166", "100 Series/C230 Series Chipset Family Serial IO UART Controller #2" }, - { "8086", "a167", "100 Series/C230 Series Chipset Family PCI Express Root Port #17" }, - { "8086", "a168", "100 Series/C230 Series Chipset Family PCI Express Root Port #18" }, - { "8086", "a169", "100 Series/C230 Series Chipset Family PCI Express Root Port #19" }, - { "8086", "a16a", "100 Series/C230 Series Chipset Family PCI Express Root Port #20" }, - { "8086", "a170", "100 Series/C230 Series Chipset Family HD Audio Controller" }, - { "8086", "a171", "CM238 HD Audio Controller" }, - { "8086", "a182", "C620 Series Chipset Family SATA Controller [AHCI mode]" }, - { "8086", "a186", "C620 Series Chipset Family SATA Controller [RAID mode]" }, - { "8086", "a190", "C620 Series Chipset Family PCI Express Root Port #1" }, - { "8086", "a191", "C620 Series Chipset Family PCI Express Root Port #2" }, - { "8086", "a192", "C620 Series Chipset Family PCI Express Root Port #3" }, - { "8086", "a193", "C620 Series Chipset Family PCI Express Root Port #4" }, - { "8086", "a194", "C620 Series Chipset Family PCI Express Root Port #5" }, - { "8086", "a195", "C620 Series Chipset Family PCI Express Root Port #6" }, - { "8086", "a196", "C620 Series Chipset Family PCI Express Root Port #7" }, - { "8086", "a197", "C620 Series Chipset Family PCI Express Root Port #8" }, - { "8086", "a198", "C620 Series Chipset Family PCI Express Root Port #9" }, - { "8086", "a199", "C620 Series Chipset Family PCI Express Root Port #10" }, - { "8086", "a19a", "C620 Series Chipset Family PCI Express Root Port #11" }, - { "8086", "a19b", "C620 Series Chipset Family PCI Express Root Port #12" }, - { "8086", "a19c", "C620 Series Chipset Family PCI Express Root Port #13" }, - { "8086", "a19d", "C620 Series Chipset Family PCI Express Root Port #14" }, - { "8086", "a19e", "C620 Series Chipset Family PCI Express Root Port #15" }, - { "8086", "a19f", "C620 Series Chipset Family PCI Express Root Port #16" }, - { "8086", "a1a0", "C620 Series Chipset Family P2SB" }, - { "8086", "a1a1", "C620 Series Chipset Family Power Management Controller" }, - { "8086", "a1a2", "C620 Series Chipset Family cAVS" }, - { "8086", "a1a3", "C620 Series Chipset Family SMBus" }, - { "8086", "a1a4", "C620 Series Chipset Family SPI Controller" }, - { "8086", "a1a6", "C620 Series Chipset Family Trace Hub" }, - { "8086", "a1af", "C620 Series Chipset Family USB 3.0 xHCI Controller" }, - { "8086", "a1b1", "C620 Series Chipset Family Thermal Subsystem" }, - { "8086", "a1ba", "C620 Series Chipset Family MEI Controller #1" }, - { "8086", "a1bb", "C620 Series Chipset Family MEI Controller #2" }, - { "8086", "a1bc", "C620 Series Chipset Family IDE Redirection" }, - { "8086", "a1bd", "C620 Series Chipset Family KT Redirection" }, - { "8086", "a1be", "C620 Series Chipset Family MEI Controller #3" }, - { "8086", "a1c1", "C621 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c2", "C622 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c3", "C624 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c4", "C625 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c5", "C626 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c6", "C627 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1c7", "C628 Series Chipset LPC/eSPI Controller" }, - { "8086", "a1d2", "C620 Series Chipset Family SSATA Controller [AHCI mode]" }, - { "8086", "a1d6", "C620 Series Chipset Family SSATA Controller [RAID mode]" }, - { "8086", "a1e7", "C620 Series Chipset Family PCI Express Root Port #17" }, - { "8086", "a1e8", "C620 Series Chipset Family PCI Express Root Port #18" }, - { "8086", "a1e9", "C620 Series Chipset Family PCI Express Root Port #19" }, - { "8086", "a1ea", "C620 Series Chipset Family PCI Express Root Port #20" }, - { "8086", "a1ec", "C620 Series Chipset Family MROM 0" }, - { "8086", "a1ed", "C620 Series Chipset Family MROM 1" }, - { "8086", "a1f8", "Lewisburg IE: HECI #1" }, - { "8086", "a1f9", "Lewisburg IE: HECI #2" }, - { "8086", "a1fa", "Lewisburg IE: IDE-r" }, - { "8086", "a1fb", "Lewisburg IE: KT Controller" }, - { "8086", "a1fc", "Lewisburg IE: HECI #3" }, - { "8086", "a202", "Lewisburg SATA Controller [AHCI mode]" }, - { "8086", "a206", "Lewisburg SATA Controller [RAID mode]" }, - { "8086", "a223", "Lewisburg SMBus" }, - { "8086", "a224", "Lewisburg SPI Controller" }, - { "8086", "a242", "Lewisburg LPC or eSPI Controller" }, - { "8086", "a243", "Lewisburg LPC or eSPI Controller" }, - { "8086", "a252", "Lewisburg SSATA Controller [AHCI mode]" }, - { "8086", "a256", "Lewisburg SSATA Controller [RAID mode]" }, - { "8086", "a282", "200 Series PCH SATA controller [AHCI mode]" }, - { "8086", "a286", "200 Series PCH SATA controller [RAID mode]" }, - { "8086", "a290", "200 Series PCH PCI Express Root Port #1" }, - { "8086", "a291", "200 Series PCH PCI Express Root Port #2" }, - { "8086", "a292", "200 Series PCH PCI Express Root Port #3" }, - { "8086", "a293", "200 Series PCH PCI Express Root Port #4" }, - { "8086", "a294", "200 Series PCH PCI Express Root Port #5" }, - { "8086", "a295", "200 Series PCH PCI Express Root Port #6" }, - { "8086", "a296", "200 Series PCH PCI Express Root Port #7" }, - { "8086", "a297", "200 Series PCH PCI Express Root Port #8" }, - { "8086", "a298", "200 Series PCH PCI Express Root Port #9" }, - { "8086", "a299", "200 Series PCH PCI Express Root Port #10" }, - { "8086", "a29a", "200 Series PCH PCI Express Root Port #11" }, - { "8086", "a29b", "200 Series PCH PCI Express Root Port #12" }, - { "8086", "a29c", "200 Series PCH PCI Express Root Port #13" }, - { "8086", "a29d", "200 Series PCH PCI Express Root Port #14" }, - { "8086", "a29e", "200 Series PCH PCI Express Root Port #15" }, - { "8086", "a29f", "200 Series PCH PCI Express Root Port #16" }, - { "8086", "a2a0", "200 Series/Z370 Chipset Family P2SB" }, - { "8086", "a2a1", "200 Series/Z370 Chipset Family Power Management Controller" }, - { "8086", "a2a3", "200 Series/Z370 Chipset Family SMBus Controller" }, - { "8086", "a2a4", "200 Series/Z370 Chipset Family SPI Controller" }, - { "8086", "a2a5", "200 Series/Z370 Chipset Family Gigabit Ethernet Controller" }, - { "8086", "a2a6", "200 Series/Z370 Chipset Family Trace Hub" }, - { "8086", "a2a7", "200 Series/Z370 Chipset Family Serial IO UART Controller #0" }, - { "8086", "a2a8", "200 Series/Z370 Chipset Family Serial IO UART Controller #1" }, - { "8086", "a2a9", "200 Series/Z370 Chipset Family Serial IO SPI Controller #0" }, - { "8086", "a2aa", "200 Series/Z370 Chipset Family Serial IO SPI Controller #1" }, - { "8086", "a2af", "200 Series/Z370 Chipset Family USB 3.0 xHCI Controller" }, - { "8086", "a2b1", "200 Series PCH Thermal Subsystem" }, - { "8086", "a2ba", "200 Series PCH CSME HECI #1" }, - { "8086", "a2bb", "200 Series PCH CSME HECI #2" }, - { "8086", "a2c4", "200 Series PCH LPC Controller (H270)" }, - { "8086", "a2c5", "200 Series PCH LPC Controller (Z270)" }, - { "8086", "a2c6", "200 Series PCH LPC Controller (Q270)" }, - { "8086", "a2c7", "200 Series PCH LPC Controller (Q250)" }, - { "8086", "a2c8", "200 Series PCH LPC Controller (B250)" }, - { "8086", "a2c9", "Z370 Chipset LPC/eSPI Controller" }, - { "8086", "a2d2", "X299 Chipset LPC/eSPI Controller" }, - { "8086", "a2d3", "C422 Chipset LPC/eSPI Controller" }, - { "8086", "a2e0", "200 Series PCH Serial IO I2C Controller #0" }, - { "8086", "a2e1", "200 Series PCH Serial IO I2C Controller #1" }, - { "8086", "a2e2", "200 Series PCH Serial IO I2C Controller #2" }, - { "8086", "a2e3", "200 Series PCH Serial IO I2C Controller #3" }, - { "8086", "a2e6", "200 Series PCH Serial IO UART Controller #2" }, - { "8086", "a2e7", "200 Series PCH PCI Express Root Port #17" }, - { "8086", "a2e8", "200 Series PCH PCI Express Root Port #18" }, - { "8086", "a2e9", "200 Series PCH PCI Express Root Port #19" }, - { "8086", "a2ea", "200 Series PCH PCI Express Root Port #20" }, - { "8086", "a2eb", "200 Series PCH PCI Express Root Port #21" }, - { "8086", "a2ec", "200 Series PCH PCI Express Root Port #22" }, - { "8086", "a2ed", "200 Series PCH PCI Express Root Port #23" }, - { "8086", "a2ee", "200 Series PCH PCI Express Root Port #24" }, - { "8086", "a2f0", "200 Series PCH HD Audio" }, - { "8086", "a303", "H310 Chipset LPC/eSPI Controller" }, - { "8086", "a304", "H370 Chipset LPC/eSPI Controller" }, - { "8086", "a305", "Z390 Chipset LPC/eSPI Controller" }, - { "8086", "a306", "Q370 Chipset LPC/eSPI Controller" }, - { "8086", "a309", "Cannon Point-LP LPC Controller" }, - { "8086", "a30c", "QM370 Chipset LPC/eSPI Controller" }, - { "8086", "a30d", "HM470 Chipset LPC/eSPI Controller" }, - { "8086", "a30e", "Cannon Lake LPC Controller" }, - { "8086", "a323", "Cannon Lake PCH SMBus Controller" }, - { "8086", "a324", "Cannon Lake PCH SPI Controller" }, - { "8086", "a328", "Cannon Lake PCH Serial IO UART Host Controller" }, - { "8086", "a32b", "Cannon Lake PCH SPI Host Controller" }, - { "8086", "a32c", "Cannon Lake PCH PCI Express Root Port #21" }, - { "8086", "a32d", "Cannon Lake PCH PCI Express Root Port #22" }, - { "8086", "a32e", "Cannon Lake PCH PCI Express Root Port #23" }, - { "8086", "a32f", "Cannon Lake PCH PCI Express Root Port #24" }, - { "8086", "a330", "Cannon Lake PCH PCI Express Root Port #9" }, - { "8086", "a331", "Cannon Lake PCH PCI Express Root Port #10" }, - { "8086", "a332", "Cannon Lake PCH PCI Express Root Port #11" }, - { "8086", "a333", "Cannon Lake PCH PCI Express Root Port #12" }, - { "8086", "a334", "Cannon Lake PCH PCI Express Root Port #13" }, - { "8086", "a335", "Cannon Lake PCH PCI Express Root Port #14" }, - { "8086", "a336", "Cannon Lake PCH PCI Express Root Port #15" }, - { "8086", "a337", "Cannon Lake PCH PCI Express Root Port #16" }, - { "8086", "a338", "Cannon Lake PCH PCI Express Root Port #1" }, - { "8086", "a339", "Cannon Lake PCH PCI Express Root Port #2" }, - { "8086", "a33a", "Cannon Lake PCH PCI Express Root Port #3" }, - { "8086", "a33b", "Cannon Lake PCH PCI Express Root Port #4" }, - { "8086", "a33c", "Cannon Lake PCH PCI Express Root Port #5" }, - { "8086", "a33d", "Cannon Lake PCH PCI Express Root Port #6" }, - { "8086", "a33e", "Cannon Lake PCH PCI Express Root Port #7" }, - { "8086", "a33f", "Cannon Lake PCH PCI Express Root Port #8" }, - { "8086", "a340", "Cannon Lake PCH PCI Express Root Port #17" }, - { "8086", "a341", "Cannon Lake PCH PCI Express Root Port #18" }, - { "8086", "a342", "Cannon Lake PCH PCI Express Root Port #19" }, - { "8086", "a343", "Cannon Lake PCH PCI Express Root Port #20" }, - { "8086", "a348", "Cannon Lake PCH cAVS" }, - { "8086", "a352", "Cannon Lake PCH SATA AHCI Controller" }, - { "8086", "a353", "Cannon Lake Mobile PCH SATA AHCI Controller" }, - { "8086", "a360", "Cannon Lake PCH HECI Controller" }, - { "8086", "a363", "Cannon Lake PCH Active Management Technology - SOL" }, - { "8086", "a364", "Cannon Lake PCH HECI Controller #2" }, - { "8086", "a368", "Cannon Lake PCH Serial IO I2C Controller #0" }, - { "8086", "a369", "Cannon Lake PCH Serial IO I2C Controller #1" }, - { "8086", "a36a", "Cannon Lake PCH Serial IO I2C Controller #2" }, - { "8086", "a36b", "Cannon Lake PCH Serial IO I2C Controller #3" }, - { "8086", "a36d", "Cannon Lake PCH USB 3.1 xHCI Host Controller" }, - { "8086", "a36f", "Cannon Lake PCH Shared SRAM" }, - { "8086", "a370", "Cannon Lake PCH CNVi WiFi" }, - { "8086", "a379", "Cannon Lake PCH Thermal Controller" }, - { "8086", "a382", "400 Series Chipset Family SATA AHCI Controller" }, - { "8086", "a394", "Comet Lake PCI Express Root Port #05" }, - { "8086", "a397", "Comet Lake PCI Express Root Port #08" }, - { "8086", "a398", "Comet Lake PCI Express Root Port 9" }, - { "8086", "a39a", "Comet Lake PCI Express Root Port 11" }, - { "8086", "a3a1", "Cannon Lake PCH Power Management Controller" }, - { "8086", "a3a3", "Comet Lake PCH-V SMBus Host Controller" }, - { "8086", "a3af", "Comet Lake PCH-V USB Controller" }, - { "8086", "a3b1", "Comet Lake PCH-V Thermal Subsystem" }, - { "8086", "a3ba", "Comet Lake PCH-V HECI Controller" }, - { "8086", "a3c8", "B460 Chipset LPC/eSPI Controller" }, - { "8086", "a3da", "H410 Chipset LPC/eSPI Controller" }, - { "8086", "a3eb", "Comet Lake PCI Express Root Port #21" }, - { "8086", "a3f0", "Comet Lake PCH-V cAVS" }, - { "8086", "a620", "6400/6402 Advanced Memory Buffer (AMB)" }, - { "8086", "abc0", "Omni-Path Fabric Switch Silicon 100 Series" }, - { "8086", "b152", "21152 PCI-to-PCI Bridge" }, - { "8086", "b154", "21154 PCI-to-PCI Bridge" }, - { "8086", "b555", "21555 Non transparent PCI-to-PCI Bridge" }, - { "8086", "d130", "Core Processor DMI" }, - { "8086", "d131", "Core Processor DMI" }, - { "8086", "d132", "Core Processor DMI" }, - { "8086", "d133", "Core Processor DMI" }, - { "8086", "d134", "Core Processor DMI" }, - { "8086", "d135", "Core Processor DMI" }, - { "8086", "d136", "Core Processor DMI" }, - { "8086", "d137", "Core Processor DMI" }, - { "8086", "d138", "Core Processor PCI Express Root Port 1" }, - { "8086", "d139", "Core Processor PCI Express Root Port 2" }, - { "8086", "d13a", "Core Processor PCI Express Root Port 3" }, - { "8086", "d13b", "Core Processor PCI Express Root Port 4" }, - { "8086", "d150", "Core Processor QPI Link" }, - { "8086", "d151", "Core Processor QPI Routing and Protocol Registers" }, - { "8086", "d155", "Core Processor System Management Registers" }, - { "8086", "d156", "Core Processor Semaphore and Scratchpad Registers" }, - { "8086", "d157", "Core Processor System Control and Status Registers" }, - { "8086", "d158", "Core Processor Miscellaneous Registers" }, - { "8086", "f1a5", "SSD 600P Series" }, - { "8086", "f1a6", "SSD Pro 7600p/760p/E 6100p Series" }, - { "8086", "f1a8", "SSD 660P Series" }, - { "8088", "0100", "WX1860AL-W Gigabit Ethernet Controller" }, - { "8088", "0101", "WX1860A2 Gigabit Ethernet Controller" }, - { "8088", "0102", "WX1860A2S Gigabit Ethernet Controller" }, - { "8088", "0103", "WX1860A4 Gigabit Ethernet Controller" }, - { "8088", "0104", "WX1860A4S Gigabit Ethernet Controller" }, - { "8088", "0105", "WX1860AL2 Gigabit Ethernet Controller" }, - { "8088", "0106", "WX1860AL2S Gigabit Ethernet Controller" }, - { "8088", "0107", "WX1860AL4 Gigabit Ethernet Controller" }, - { "8088", "0108", "WX1860AL4S Gigabit Ethernet Controller" }, - { "8088", "0109", "WX1860-LC Gigabit Ethernet Controller" }, - { "8088", "010a", "WX1860A1 Gigabit Ethernet Controller" }, - { "8088", "010b", "WX1860AL1 Gigabit Ethernet Controller" }, - { "8088", "0111", "WX1860A2 Ethernet Controller Virtual Function" }, - { "8088", "0113", "WX1860A4 Ethernet Controller Virtual Function" }, - { "8088", "0115", "WX1860AL2 Ethernet Controller Virtual Function" }, - { "8088", "0117", "WX1860AL4 Ethernet Controller Virtual Function" }, - { "8088", "0119", "WX1860-LC Gigabit Ethernet Controller Virtual Function" }, - { "8088", "011a", "WX1860A1 Gigabit Ethernet Controller Virtual Function" }, - { "8088", "011b", "WX1860AL1 Gigabit Ethernet Controller Virtual Function" }, - { "8088", "1000", "Ethernet Controller RP1000 Virtual Function for 10GbE SFP+" }, - { "8088", "1001", "Ethernet Controller RP1000 for 10GbE SFP+" }, - { "8088", "2000", "Ethernet Controller RP2000 Virtual Function for 10GbE SFP+" }, - { "8088", "2001", "Ethernet Controller RP2000 for 10GbE SFP+" }, - { "80ee", "beef", "VirtualBox Graphics Adapter" }, - { "80ee", "cafe", "VirtualBox Guest Service" }, - { "8686", "1010", "vSMP Foundation controller [vSMP CTL]" }, - { "8686", "1011", "vSMP Foundation MEX/FLX controller [vSMP CTL]" }, - { "8800", "2008", "Video assistant component" }, - { "8820", "2724", "Mako Front Side Motor Controller [cPCI]" }, - { "8c4a", "1980", "W89C940 misprogrammed [ne2k]" }, - { "8e2e", "3000", "ET32P2" }, - { "9004", "0078", "AHA-2940U_CN" }, - { "9004", "1078", "AIC-7810" }, - { "9004", "1160", "AIC-1160 [Family Fibre Channel Adapter]" }, - { "9004", "2178", "AIC-7821" }, - { "9004", "3860", "AHA-2930CU" }, - { "9004", "3b78", "AHA-4844W/4844UW" }, - { "9004", "5075", "AIC-755x" }, - { "9004", "5078", "AIC-7850T/7856T [AVA-2902/4/6 / AHA-2910]" }, - { "9004", "5175", "AIC-755x" }, - { "9004", "5178", "AIC-7851" }, - { "9004", "5275", "AIC-755x" }, - { "9004", "5278", "AIC-7852" }, - { "9004", "5375", "AIC-755x" }, - { "9004", "5378", "AIC-7850" }, - { "9004", "5475", "AIC-755x" }, - { "9004", "5478", "AIC-7850" }, - { "9004", "5575", "AVA-2930" }, - { "9004", "5578", "AIC-7855" }, - { "9004", "5647", "ANA-7711 TCP Offload Engine" }, - { "9004", "5675", "AIC-755x" }, - { "9004", "5678", "AIC-7856" }, - { "9004", "5775", "AIC-755x" }, - { "9004", "5778", "AIC-7850" }, - { "9004", "5800", "AIC-5800" }, - { "9004", "5900", "ANA-5910/5930/5940 ATM155 & 25 LAN Adapter" }, - { "9004", "5905", "ANA-5910A/5930A/5940A ATM Adapter" }, - { "9004", "6038", "AIC-3860" }, - { "9004", "6075", "AIC-1480 / APA-1480" }, - { "9004", "6078", "AIC-7860" }, - { "9004", "6178", "AIC-7861" }, - { "9004", "6278", "AIC-7860" }, - { "9004", "6378", "AIC-7860" }, - { "9004", "6478", "AIC-786x" }, - { "9004", "6578", "AIC-786x" }, - { "9004", "6678", "AIC-786x" }, - { "9004", "6778", "AIC-786x" }, - { "9004", "6915", "ANA620xx/ANA69011A" }, - { "9004", "7078", "AHA-294x / AIC-7870" }, - { "9004", "7178", "AIC-7870P/7871 [AHA-2940/W/S76]" }, - { "9004", "7278", "AHA-3940/3940W / AIC-7872" }, - { "9004", "7378", "AHA-3985 / AIC-7873" }, - { "9004", "7478", "AHA-2944/2944W / AIC-7874" }, - { "9004", "7578", "AHA-3944/3944W / AIC-7875" }, - { "9004", "7678", "AHA-4944W/UW / AIC-7876" }, - { "9004", "7710", "ANA-7711F Network Accelerator Card (NAC) - Optical" }, - { "9004", "7711", "ANA-7711C Network Accelerator Card (NAC) - Copper" }, - { "9004", "7778", "AIC-787x" }, - { "9004", "7810", "AIC-7810" }, - { "9004", "7815", "AIC-7815 RAID+Memory Controller IC" }, - { "9004", "7850", "AIC-7850" }, - { "9004", "7855", "AHA-2930" }, - { "9004", "7860", "AIC-7860" }, - { "9004", "7870", "AIC-7870" }, - { "9004", "7871", "AHA-2940" }, - { "9004", "7872", "AHA-3940" }, - { "9004", "7873", "AHA-3980" }, - { "9004", "7874", "AHA-2944" }, - { "9004", "7880", "AIC-7880P" }, - { "9004", "7890", "AIC-7890" }, - { "9004", "7891", "AIC-789x" }, - { "9004", "7892", "AIC-789x" }, - { "9004", "7893", "AIC-789x" }, - { "9004", "7894", "AIC-789x" }, - { "9004", "7895", "AHA-2940U/UW / AHA-39xx / AIC-7895" }, - { "9004", "7896", "AIC-789x" }, - { "9004", "7897", "AIC-789x" }, - { "9004", "8078", "AIC-7880U" }, - { "9004", "8178", "AIC-7870P/7881U [AHA-2940U/UW/D/S76]" }, - { "9004", "8278", "AHA-3940U/UW/UWD / AIC-7882U" }, - { "9004", "8378", "AHA-3940U/UW / AIC-7883U" }, - { "9004", "8478", "AHA-2944UW / AIC-7884U" }, - { "9004", "8578", "AHA-3944U/UWD / AIC-7885" }, - { "9004", "8678", "AHA-4944UW / AIC-7886" }, - { "9004", "8778", "AHA-2940UW Pro / AIC-788x" }, - { "9004", "8878", "AHA-2930UW / AIC-7888" }, - { "9004", "8b78", "ABA-1030" }, - { "9004", "ec78", "AHA-4944W/UW" }, - { "9005", "0010", "AHA-2940U2/U2W" }, - { "9005", "0011", "AHA-2930U2" }, - { "9005", "0013", "78902" }, - { "9005", "001f", "AHA-2940U2/U2W / 7890/7891" }, - { "9005", "0020", "AIC-7890" }, - { "9005", "002f", "AIC-7890" }, - { "9005", "0030", "AIC-7890" }, - { "9005", "003f", "AIC-7890" }, - { "9005", "0050", "AHA-3940U2x/395U2x" }, - { "9005", "0051", "AHA-3950U2D" }, - { "9005", "0053", "AIC-7896 SCSI Controller" }, - { "9005", "005f", "AIC-7896U2/7897U2" }, - { "9005", "0080", "AIC-7892A U160/m" }, - { "9005", "0081", "AIC-7892B U160/m" }, - { "9005", "0083", "AIC-7892D U160/m" }, - { "9005", "008f", "AIC-7892P U160/m" }, - { "9005", "0092", "AVC-2010 [VideoH!]" }, - { "9005", "0093", "AVC-2410 [VideoH!]" }, - { "9005", "00c0", "AHA-3960D / AIC-7899A U160/m" }, - { "9005", "00c1", "AIC-7899B U160/m" }, - { "9005", "00c3", "AIC-7899D U160/m" }, - { "9005", "00c5", "RAID subsystem HBA" }, - { "9005", "00cf", "AIC-7899P U160/m" }, - { "9005", "0241", "Serial ATA II RAID 1420SA" }, - { "9005", "0242", "Serial ATA II RAID 1220SA" }, - { "9005", "0243", "Serial ATA II RAID 1430SA" }, - { "9005", "0244", "eSATA II RAID 1225SA" }, - { "9005", "0250", "ServeRAID Controller" }, - { "9005", "0279", "ServeRAID 6M" }, - { "9005", "0283", "AAC-RAID" }, - { "9005", "0284", "AAC-RAID" }, - { "9005", "0285", "AAC-RAID" }, - { "9005", "0286", "AAC-RAID (Rocket)" }, - { "9005", "028b", "Series 6 - 6G SAS/PCIe 2" }, - { "9005", "028c", "Series 7 6G SAS/PCIe 3" }, - { "9005", "028d", "Series 8 12G SAS/PCIe 3" }, - { "9005", "028f", "Smart Storage PQI SAS" }, - { "9005", "0410", "AIC-9410W SAS (Razor HBA RAID)" }, - { "9005", "0412", "AIC-9410W SAS (Razor HBA non-RAID)" }, - { "9005", "0415", "ASC-58300 SAS (Razor-External HBA RAID)" }, - { "9005", "0416", "ASC-58300 SAS (Razor-External HBA non-RAID)" }, - { "9005", "041e", "AIC-9410W SAS (Razor ASIC non-RAID)" }, - { "9005", "041f", "AIC-9410W SAS (Razor ASIC RAID)" }, - { "9005", "042f", "VSC7250/7251 SAS (Aurora ASIC non-RAID)" }, - { "9005", "0430", "AIC-9405W SAS (Razor-Lite HBA RAID)" }, - { "9005", "0432", "AIC-9405W SAS (Razor-Lite HBA non-RAID)" }, - { "9005", "043e", "AIC-9405W SAS (Razor-Lite ASIC non-RAID)" }, - { "9005", "043f", "AIC-9405W SAS (Razor-Lite ASIC RAID)" }, - { "9005", "0450", "ASC-1405 Unified Serial HBA" }, - { "9005", "0500", "Obsidian chipset SCSI controller" }, - { "9005", "0503", "Scamp chipset SCSI controller" }, - { "9005", "0910", "AUA-3100B" }, - { "9005", "091e", "AUA-3100B" }, - { "9005", "8000", "ASC-29320A U320" }, - { "9005", "800f", "AIC-7901 U320" }, - { "9005", "8010", "ASC-39320 U320" }, - { "9005", "8011", "ASC-39320D" }, - { "9005", "8012", "ASC-29320 U320" }, - { "9005", "8013", "ASC-29320B U320" }, - { "9005", "8014", "ASC-29320LP U320" }, - { "9005", "8015", "ASC-39320B U320" }, - { "9005", "8016", "ASC-39320A U320" }, - { "9005", "8017", "ASC-29320ALP U320" }, - { "9005", "801c", "ASC-39320D U320" }, - { "9005", "801d", "AIC-7902B U320" }, - { "9005", "801e", "AIC-7901A U320" }, - { "9005", "801f", "AIC-7902 U320" }, - { "9005", "8080", "ASC-29320A U320 w/HostRAID" }, - { "9005", "8081", "PMC-Sierra PM8001 SAS HBA [Series 6H]" }, - { "9005", "8088", "PMC-Sierra PM8018 SAS HBA [Series 7H]" }, - { "9005", "8089", "PMC-Sierra PM8019 SAS encryption HBA [Series 7He]" }, - { "9005", "808f", "AIC-7901 U320 w/HostRAID" }, - { "9005", "8090", "ASC-39320 U320 w/HostRAID" }, - { "9005", "8091", "ASC-39320D U320 w/HostRAID" }, - { "9005", "8092", "ASC-29320 U320 w/HostRAID" }, - { "9005", "8093", "ASC-29320B U320 w/HostRAID" }, - { "9005", "8094", "ASC-29320LP U320 w/HostRAID" }, - { "9005", "8095", "ASC-39320(B) U320 w/HostRAID" }, - { "9005", "8096", "ASC-39320A U320 w/HostRAID" }, - { "9005", "8097", "ASC-29320ALP U320 w/HostRAID" }, - { "9005", "809c", "ASC-39320D(B) U320 w/HostRAID" }, - { "9005", "809d", "AIC-7902(B) U320 w/HostRAID" }, - { "9005", "809e", "AIC-7901A U320 w/HostRAID" }, - { "9005", "809f", "AIC-7902 U320 w/HostRAID" }, - { "907f", "2015", "IDE-2015PL" }, - { "9412", "6565", "6565" }, - { "9413", "6010", "SOLO6010 MPEG-4 Video encoder/decoder" }, - { "9413", "6110", "SOLO6110 H.264 Video encoder/decoder" }, - { "9618", "0001", "JusonTech Gigabit Ethernet Controller" }, - { "9699", "6565", "6565" }, - { "9710", "9250", "PCI-to-PCI bridge [MCS9250]" }, - { "9710", "9805", "PCI 1 port parallel adapter" }, - { "9710", "9815", "PCI 9815 Multi-I/O Controller" }, - { "9710", "9820", "PCI 9820 Multi-I/O Controller" }, - { "9710", "9835", "PCI 9835 Multi-I/O Controller" }, - { "9710", "9845", "PCI 9845 Multi-I/O Controller" }, - { "9710", "9855", "PCI 9855 Multi-I/O Controller" }, - { "9710", "9865", "PCI 9865 Multi-I/O Controller" }, - { "9710", "9900", "MCS9900 Multi-I/O Controller" }, - { "9710", "9901", "PCIe 9901 Multi-I/O Controller" }, - { "9710", "9904", "4-Port PCIe Serial Adapter" }, - { "9710", "9912", "PCIe 9912 Multi-I/O Controller" }, - { "9710", "9922", "MCS9922 PCIe Multi-I/O Controller" }, - { "9710", "9990", "MCS9990 PCIe to 4‐Port USB 2.0 Host Controller" }, - { "9902", "0001", "SG2010 PCI over Starfabric Bridge" }, - { "9902", "0002", "SG2010 PCI to Starfabric Gateway" }, - { "9902", "0003", "SG1010 Starfabric Switch and PCI Bridge" }, - { "9d32", "0000", "STAR1000 PCIe NVMe SSD Controller" }, - { "9d32", "1001", "STAR1000P PCIe NVMe SSD Controller" }, - { "9d32", "1201", "STAR1200C NVMe SSD" }, - { "9d32", "1202", "STAR1200I NVMe SSD" }, - { "9d32", "1203", "STAR1200L NVMe SSD" }, - { "9d32", "1204", "STAR1200E NVMe SSD" }, - { "a727", "0013", "3CRPAG175 Wireless PC Card" }, - { "a727", "6803", "3CRDAG675B Wireless 11a/b/g Adapter" }, - { "aaaa", "0001", "H1 PCIe over fiber optic host controller" }, - { "aaaa", "0002", "R1BP1 PCIe over fiber optic expansion chassis" }, - { "aecb", "6250", "VITC/LTC Timecode Reader card [PCI-VLTC/RDR]" }, - { "affe", "01e1", "PCI1E1 1-port ISDN E1 interface" }, - { "affe", "02e1", "PCI2E1 2-port ISDN E1 interface" }, - { "affe", "450e", "PCI4S0EC 4-port ISDN S0 interface" }, - { "affe", "dead", "Sirrix.PCI4S0 4-port ISDN S0 interface" }, - { "bdbd", "a106", "Multibridge Extreme" }, - { "bdbd", "a117", "Intensity Pro" }, - { "bdbd", "a11a", "DeckLink HD Extreme 2" }, - { "bdbd", "a11b", "DeckLink SDI/Duo/Quad" }, - { "bdbd", "a11c", "DeckLink HD Extreme 3" }, - { "bdbd", "a11d", "DeckLink Studio" }, - { "bdbd", "a11e", "DeckLink Optical Fibre" }, - { "bdbd", "a120", "Decklink Studio 2" }, - { "bdbd", "a121", "DeckLink HD Extreme 3D/3D+" }, - { "bdbd", "a124", "Intensity Extreme" }, - { "bdbd", "a126", "Intensity Shuttle" }, - { "bdbd", "a127", "UltraStudio Express" }, - { "bdbd", "a129", "UltraStudio Mini Recorder" }, - { "bdbd", "a12a", "UltraStudio Mini Monitor" }, - { "bdbd", "a12d", "UltraStudio 4K" }, - { "bdbd", "a12e", "DeckLink 4K Extreme" }, - { "bdbd", "a12f", "DeckLink Mini Monitor" }, - { "bdbd", "a130", "DeckLink Mini Recorder" }, - { "bdbd", "a132", "UltraStudio 4K" }, - { "bdbd", "a136", "DeckLink 4K Extreme 12G" }, - { "bdbd", "a137", "DeckLink Studio 4K" }, - { "bdbd", "a138", "Decklink SDI 4K" }, - { "bdbd", "a139", "Intensity Pro 4K" }, - { "bdbd", "a13b", "DeckLink Micro Recorder" }, - { "bdbd", "a13d", "DeckLink 4K Pro" }, - { "bdbd", "a13e", "UltraStudio 4K Extreme" }, - { "bdbd", "a13f", "DeckLink Quad 2" }, - { "bdbd", "a140", "DeckLink Duo 2" }, - { "bdbd", "a141", "UltraStudio 4K Extreme 3" }, - { "bdbd", "a142", "UltraStudio HD Mini" }, - { "bdbd", "a143", "DeckLink Mini Recorder 4K" }, - { "bdbd", "a144", "DeckLink Mini Monitor 4K" }, - { "bdbd", "a148", "DeckLink SDI Micro" }, - { "bdbd", "a14b", "DeckLink 8K Pro" }, - { "bdbd", "a14e", "DeckLink Quad HDMI Recorder" }, - { "bdbd", "a1ff", "eGPU RX580" }, - { "c0a9", "2263", "P1 NVMe PCIe SSD" }, - { "c0a9", "540a", "P2 NVMe PCIe SSD" }, - { "cace", "0001", "TurboCap Port A" }, - { "cace", "0002", "TurboCap Port B" }, - { "cace", "0023", "AirPcap N" }, - { "cafe", "0003", "Luna K3 Hardware Security Module" }, - { "cafe", "0006", "Luna PCI-e 3000 Hardware Security Module" }, - { "cafe", "0007", "Luna K6 Hardware Security Module" }, - { "cafe", "0008", "Luna K7 Hardware Security Module" }, - { "cddd", "0101", "DeepSea 1 High Speed Stereo Vision Frame Grabber" }, - { "cddd", "0200", "DeepSea 2 High Speed Stereo Vision Frame Grabber" }, - { "cf86", "0276", "Spectrum-4TOR in Flash Recovery Mode" }, - { "d161", "0120", "Wildcard TE120P single-span T1/E1/J1 card" }, - { "d161", "0205", "Wildcard TE205P/TE207P dual-span T1/E1/J1 card 5.0V" }, - { "d161", "0210", "Wildcard TE210P/TE212P dual-span T1/E1/J1 card 3.3V" }, - { "d161", "0220", "Wildcard TE220 dual-span T1/E1/J1 card 3.3V (PCI-Express)" }, - { "d161", "0405", "Wildcard TE405P/TE407P quad-span T1/E1/J1 card 5.0V" }, - { "d161", "0410", "Wildcard TE410P/TE412P quad-span T1/E1/J1 card 3.3V" }, - { "d161", "0420", "Wildcard TE420P quad-span T1/E1/J1 card 3.3V (PCI-Express)" }, - { "d161", "0800", "Wildcard TDM800P 8-port analog card" }, - { "d161", "1205", "Wildcard TE205P/TE207P dual-span T1/E1/J1 card 5.0V (u1)" }, - { "d161", "1220", "Wildcard TE220 dual-span T1/E1/J1 card 3.3V (PCI-Express) (5th gen)" }, - { "d161", "1405", "Wildcard TE405P/TE407P quad-span T1/E1/J1 card 5.0V (u1)" }, - { "d161", "1410", "Wildcard TE410P quad-span T1/E1/J1 card 3.3V (5th Gen)" }, - { "d161", "1420", "Wildcard TE420 quad-span T1/E1/J1 card 3.3V (PCI-Express) (5th gen)" }, - { "d161", "1820", "Wildcard TE820 octal-span T1/E1/J1 card 3.3V (PCI-Express)" }, - { "d161", "2400", "Wildcard TDM2400P 24-port analog card" }, - { "d161", "3400", "Wildcard TC400P transcoder base card" }, - { "d161", "8000", "Wildcard TE121 single-span T1/E1/J1 card (PCI-Express)" }, - { "d161", "8001", "Wildcard TE122 single-span T1/E1/J1 card" }, - { "d161", "8002", "Wildcard AEX800 8-port analog card (PCI-Express)" }, - { "d161", "8003", "Wildcard AEX2400 24-port analog card (PCI-Express)" }, - { "d161", "8004", "Wildcard TCE400P transcoder base card" }, - { "d161", "8005", "Wildcard TDM410 4-port analog card" }, - { "d161", "8006", "Wildcard AEX410 4-port analog card (PCI-Express)" }, - { "d161", "8007", "Hx8 Series 8-port Base Card" }, - { "d161", "8008", "Hx8 Series 8-port Base Card (PCI-Express)" }, - { "d161", "800a", "Wildcard TE133 single-span T1/E1/J1 card (PCI Express)" }, - { "d161", "800b", "Wildcard TE134 single-span T1/E1/J1 card" }, - { "d161", "800c", "Wildcard A8A 8-port analog card" }, - { "d161", "800d", "Wildcard A8B 8-port analog card (PCI-Express)" }, - { "d161", "800e", "Wildcard TE235/TE435 quad-span T1/E1/J1 card (PCI-Express)" }, - { "d161", "800f", "Wildcard A4A 4-port analog card" }, - { "d161", "8010", "Wildcard A4B 4-port analog card (PCI-Express)" }, - { "d161", "8013", "Wildcard TE236/TE436 quad-span T1/E1/J1 card" }, - { "d161", "b410", "Wildcard B410 quad-BRI card" }, - { "d209", "1500", "PAC Drive" }, - { "d209", "15a2", "SpinTrak" }, - { "d209", "1601", "AimTrak" }, - { "d4d4", "0601", "PCI Mezzanine Card" }, - { "dada", "0133", "VisionRGB-X2" }, - { "dada", "0139", "VisionRGB-E1" }, - { "dada", "0144", "VisionSD8" }, - { "dada", "0150", "VisionRGB-E2" }, - { "dada", "0151", "VisionSD4+1" }, - { "dada", "0159", "VisionAV" }, - { "dada", "0161", "DGC161" }, - { "dada", "0165", "DGC165" }, - { "dada", "0167", "DGC167" }, - { "dada", "0168", "DGC168" }, - { "dada", "1139", "VisionRGB-E1S" }, - { "dada", "1150", "VisionRGB-E2S" }, - { "dada", "1151", "VisionSD4+1S" }, - { "dada", "1153", "VisionDVI-DL" }, - { "dada", "1154", "VisionSDI2" }, - { "dcba", "0046", "PCIe Altera Cyclone IV" }, - { "dcba", "0047", "VPX-RCB" }, - { "dcba", "0048", "PMC-Biserial-III-BAE9" }, - { "dcba", "004e", "PC104p-Biserial-III-NVY5" }, - { "dcba", "004f", "PC104p-Biserial-III-NVY6" }, - { "dcba", "0052", "PCIeBiSerialDb37 BA22 LVDS IO" }, - { "dcba", "0066", "PMC-OctalUART-232" }, - { "dd01", "0003", "Octopus DVB Adapter" }, - { "dd01", "0006", "Cine V7" }, - { "dd01", "0007", "Max" }, - { "dd01", "0011", "Octopus CI DVB Adapter" }, - { "dd01", "0201", "Resi DVB-C Modulator" }, - { "deaf", "9050", "PC Weasel Virtual VGA" }, - { "deaf", "9051", "PC Weasel Serial Port" }, - { "deaf", "9052", "PC Weasel Watchdog Timer" }, - { "deda", "4001", "CB or MX camera" }, - { "deda", "4021", "MT camera" }, - { "e000", "e000", "W89C940" }, - { "e159", "0001", "Tiger3XX Modem/ISDN interface" }, - { "e159", "0002", "Tiger100APC ISDN chipset" }, - { "e4bf", "0ccd", "CCD-CALYPSO" }, - { "e4bf", "0cd1", "CD1-OPERA" }, - { "e4bf", "0cd2", "CD2-BEBOP" }, - { "e4bf", "0cd3", "CD3-JIVE" }, - { "e4bf", "50c1", "PC1-GROOVE" }, - { "e4bf", "50c2", "PC2-LIMBO" }, - { "e4bf", "53c1", "SC1-ALLEGRO" }, - { "e4bf", "cc47", "CCG-RUMBA" }, - { "e4bf", "cc4d", "CCM-BOOGIE" }, - { "ea01", "000a", "PCI-773 Temperature Card" }, - { "ea01", "0032", "PCI-730 & PC104P-30 Card" }, - { "ea01", "003e", "PCI-762 Opto-Isolator Card" }, - { "ea01", "0041", "PCI-763 Reed Relay Card" }, - { "ea01", "0043", "PCI-769 Opto-Isolator Reed Relay Combo Card" }, - { "ea01", "0046", "PCI-766 Analog Output Card" }, - { "ea01", "0052", "PCI-703 Analog I/O Card" }, - { "ea01", "0800", "PCI-800 Digital I/O Card" }, - { "ea60", "9896", "Digi32" }, - { "ea60", "9897", "Digi32 Pro" }, - { "ea60", "9898", "Digi32/8" }, - { "eace", "3100", "DAG 3.10 OC-3/OC-12" }, - { "eace", "3200", "DAG 3.2x OC-3/OC-12" }, - { "eace", "320e", "DAG 3.2E Fast Ethernet" }, - { "eace", "340e", "DAG 3.4E Fast Ethernet" }, - { "eace", "341e", "DAG 3.41E Fast Ethernet" }, - { "eace", "3500", "DAG 3.5 OC-3/OC-12" }, - { "eace", "351c", "DAG 3.5ECM Fast Ethernet" }, - { "eace", "360d", "DAG 3.6D DS3" }, - { "eace", "360e", "DAG 3.6E Fast Ethernet" }, - { "eace", "368e", "DAG 3.6E Gig Ethernet" }, - { "eace", "3707", "DAG 3.7T T1/E1/J1" }, - { "eace", "370d", "DAG 3.7D DS3/E3" }, - { "eace", "378e", "DAG 3.7G Gig Ethernet" }, - { "eace", "3800", "DAG 3.8S OC-3/OC-12" }, - { "eace", "4100", "DAG 4.10 OC-48" }, - { "eace", "4110", "DAG 4.11 OC-48" }, - { "eace", "4220", "DAG 4.2 OC-48" }, - { "eace", "422e", "DAG 4.2GE Gig Ethernet" }, - { "eace", "4230", "DAG 4.2S OC-48" }, - { "eace", "423e", "DAG 4.2GE Gig Ethernet" }, - { "eace", "4300", "DAG 4.3S OC-48" }, - { "eace", "430e", "DAG 4.3GE Gig Ethernet" }, - { "eace", "452e", "DAG 4.5G2 Gig Ethernet" }, - { "eace", "454e", "DAG 4.5G4 Gig Ethernet" }, - { "eace", "45b8", "DAG 4.5Z8 Gig Ethernet" }, - { "eace", "45be", "DAG 4.5Z2 Gig Ethernet" }, - { "eace", "520e", "DAG 5.2X 10G Ethernet" }, - { "eace", "521a", "DAG 5.2SXA 10G Ethernet/OC-192" }, - { "eace", "5400", "DAG 5.4S-12 OC-3/OC-12" }, - { "eace", "5401", "DAG 5.4SG-48 Gig Ethernet/OC-3/OC-12/OC-48" }, - { "eace", "540a", "DAG 5.4GA Gig Ethernet" }, - { "eace", "541a", "DAG 5.4SA-12 OC-3/OC-12" }, - { "eace", "542a", "DAG 5.4SGA-48 Gig Ethernet/OC-3/OC-12/OC-48" }, - { "eace", "6000", "DAG 6.0SE 10G Ethernet/OC-192" }, - { "eace", "6100", "DAG 6.1SE 10G Ethernet/OC-192" }, - { "eace", "6200", "DAG 6.2SE 10G Ethernet/OC-192" }, - { "eace", "7100", "DAG 7.1S OC-3/OC-12" }, - { "eace", "7400", "DAG 7.4S OC-3/OC-12" }, - { "eace", "7401", "DAG 7.4S48 OC-48" }, - { "eace", "752e", "DAG 7.5G2 Gig Ethernet" }, - { "eace", "754e", "DAG 7.5G4 Gig Ethernet" }, - { "eace", "8100", "DAG 8.1X 10G Ethernet" }, - { "eace", "8101", "DAG 8.1SX 10G Ethernet/OC-192" }, - { "eace", "8102", "DAG 8.1X 10G Ethernet" }, - { "eace", "820e", "DAG 8.2X 10G Ethernet" }, - { "eace", "820f", "DAG 8.2X 10G Ethernet (2nd bus)" }, - { "eace", "8400", "DAG 8.4I Infiniband x4 SDR" }, - { "eace", "8500", "DAG 8.5I Infiniband x4 DDR" }, - { "eace", "9200", "DAG 9.2SX2 10G Ethernet" }, - { "eace", "920e", "DAG 9.2X2 10G Ethernet" }, - { "eace", "9540", "DAG 9.5G4 Gig Ethernet" }, - { "eace", "954f", "DAG 9.5G4F Gig Ethernet" }, - { "eace", "a120", "DAG 10X2-P 10G Ethernet" }, - { "eace", "a12e", "DAG 10X2-S 10G Ethernet" }, - { "eace", "a140", "DAG 10X4-P 10/40G Ethernet" }, - { "eace", "a14e", "DAG 10X4-S 10/40G Ethernet" }, - { "eace", "eace", "vDAG virtual device" }, - { "ec80", "ec00", "F5D6000" }, - { "edd8", "a091", "1000PV [Stingray]" }, - { "edd8", "a099", "2000PV [Stingray]" }, - { "edd8", "a0a1", "2000MT" }, - { "edd8", "a0a9", "2000MI" }, - { "f15e", "0000", "FU740-C000 RISC-V SoC PCI Express x8 to AXI4 Bridge" }, - { "f1d0", "c0fe", "Xena HS/HD-R" }, - { "f1d0", "c0ff", "Kona/Xena 2" }, - { "f1d0", "cafe", "Kona SD" }, - { "f1d0", "cfee", "Xena LS/SD-22-DA/SD-DA" }, - { "f1d0", "dafe", "Corvid 1" }, - { "f1d0", "daff", "KONA LHi" }, - { "f1d0", "db00", "IoExpress" }, - { "f1d0", "db01", "Corvid22" }, - { "f1d0", "db02", "Kona 3G" }, - { "f1d0", "db03", "Corvid 3G" }, - { "f1d0", "db04", "Kona 3G QUAD" }, - { "f1d0", "db05", "Kona LHe+" }, - { "f1d0", "db06", "IoXT" }, - { "f1d0", "db07", "Kona 3G P2P" }, - { "f1d0", "db08", "Kona 3G QUAD P2P" }, - { "f1d0", "db09", "Corvid 24" }, - { "f1d0", "db11", "T-Tap" }, - { "f1d0", "dcaf", "Kona HD" }, - { "f1d0", "dfee", "Xena HD-DA" }, - { "f1d0", "eb07", "Io4K" }, - { "f1d0", "eb0a", "Io4K UFC" }, - { "f1d0", "eb0b", "Kona 4" }, - { "f1d0", "eb0c", "Kona 4 UFC" }, - { "f1d0", "eb0d", "Corvid 88" }, - { "f1d0", "eb0e", "Corvid 44" }, - { "f1d0", "eb16", "Corvid HEVC" }, - { "f1d0", "eb18", "Corvid HB-R" }, - { "f1d0", "eb1a", "Kona IP 1SFP" }, - { "f1d0", "eb1c", "Kona IP 2SFP" }, - { "f1d0", "eb1d", "Io4KPlus" }, - { "f1d0", "eb1e", "IoIP" }, - { "f1d0", "eb1f", "Kona 5" }, - { "f1d0", "eb23", "Kona 1" }, - { "f1d0", "eb24", "Kona HDMI" }, - { "f1d0", "eb25", "Corvid 44 12g" }, - { "f1d0", "eb26", "T-Tap Pro" }, - { "f1d0", "efac", "Xena SD-MM/SD-22-MM" }, - { "f1d0", "facd", "Xena HD-MM" }, - { "fa57", "0001", "PMC [Pattern Matching Chip]" }, - { "feda", "a0fa", "BCM4210 iLine10 HomePNA 2.0" }, - { "feda", "a10e", "BCM4230 iLine10 HomePNA 2.0" }, - { "fede", "0003", "TABIC PCI v3" }, - { "fffd", "0101", "PCI Event Channel Controller" }, - { "fffe", "0710", "Virtual SVGA" }, -}; -static const size_t pciDeviceTblSize = sizeof(pciDeviceTbl) / sizeof(pciDeviceTblData); +struct KDeviceEntry +{ + QByteArray vendorid; + QByteArray deviceid; - -static const struct usbVendorTblData { - const char* const vendorid; - const char* const vendorname; -} usbVendorTbl[] = { - { "0001", "Fry's Electronics" }, - { "0002", "Ingram" }, - { "0003", "Club Mac" }, - { "0004", "Nebraska Furniture Mart" }, - { "0011", "Unknown" }, - { "0053", "Planex" }, - { "0078", "Microntek" }, - { "0079", "DragonRise Inc." }, - { "0080", "Unknown" }, - { "0085", "Boeye Technology Co., Ltd." }, - { "0102", "miniSTREAK" }, - { "0105", "Trust International B.V." }, - { "0127", "IBP" }, - { "0145", "Unknown" }, - { "017c", "MLK" }, - { "0200", "TP-Link" }, - { "0204", "Chipsbank Microelectronics Co., Ltd" }, - { "0218", "Hangzhou Worlde" }, - { "02ad", "HUMAX Co., Ltd." }, - { "0303", "Mini Automation Controller" }, - { "0324", "OCZ Technology Inc" }, - { "0325", "OCZ Technology Inc" }, - { "0386", "LTS" }, - { "03c3", "ZWO" }, - { "03d9", "Shenzhen Sinote Tech-Electron Co., Ltd" }, - { "03da", "Bernd Walter Computer Technology" }, - { "03e7", "Intel" }, - { "03e8", "EndPoints, Inc." }, - { "03e9", "Thesys Microelectronics" }, - { "03ea", "Data Broadcasting Corp." }, - { "03eb", "Atmel Corp." }, - { "03ec", "Iwatsu America, Inc." }, - { "03ed", "Mitel Corp." }, - { "03ee", "Mitsumi" }, - { "03f0", "HP, Inc" }, - { "03f1", "Genoa Technology" }, - { "03f2", "Oak Technology, Inc." }, - { "03f3", "Adaptec, Inc." }, - { "03f4", "Diebold, Inc." }, - { "03f5", "Siemens Electromechanical" }, - { "03f8", "Epson Imaging Technology Center" }, - { "03f9", "KeyTronic Corp." }, - { "03fb", "OPTi, Inc." }, - { "03fc", "Elitegroup Computer Systems" }, - { "03fd", "Xilinx, Inc." }, - { "03fe", "Farallon Comunications" }, - { "0400", "National Semiconductor Corp." }, - { "0401", "National Registry, Inc." }, - { "0402", "ALi Corp." }, - { "0403", "Future Technology Devices International, Ltd" }, - { "0404", "NCR Corp." }, - { "0405", "Synopsys, Inc." }, - { "0406", "Fujitsu-ICL Computers" }, - { "0407", "Fujitsu Personal Systems, Inc." }, - { "0408", "Quanta Computer, Inc." }, - { "0409", "NEC Corp." }, - { "040a", "Kodak Co." }, - { "040b", "Weltrend Semiconductor" }, - { "040c", "VTech Computers, Ltd" }, - { "040d", "VIA Technologies, Inc." }, - { "040e", "MCCI" }, - { "040f", "Echo Speech Corp." }, - { "0411", "BUFFALO INC. (formerly MelCo., Inc.)" }, - { "0412", "Award Software International" }, - { "0413", "Leadtek Research, Inc." }, - { "0414", "Giga-Byte Technology Co., Ltd" }, - { "0416", "Winbond Electronics Corp." }, - { "0417", "Symbios Logic" }, - { "0418", "AST Research" }, - { "0419", "Samsung Info. Systems America, Inc." }, - { "041a", "Phoenix Technologies, Ltd" }, - { "041b", "d'TV" }, - { "041d", "S3, Inc." }, - { "041e", "Creative Technology, Ltd" }, - { "041f", "LCS Telegraphics" }, - { "0420", "Chips and Technologies" }, - { "0421", "Nokia Mobile Phones" }, - { "0422", "ADI Systems, Inc." }, - { "0423", "Computer Access Technology Corp." }, - { "0424", "Microchip Technology, Inc. (formerly SMSC)" }, - { "0425", "Motorola Semiconductors HK, Ltd" }, - { "0426", "Integrated Device Technology, Inc." }, - { "0427", "Motorola Electronics Taiwan, Ltd" }, - { "0428", "Advanced Gravis Computer Tech, Ltd" }, - { "0429", "Cirrus Logic" }, - { "042a", "Ericsson Austrian, AG" }, - { "042b", "Intel Corp." }, - { "042c", "Innovative Semiconductors, Inc." }, - { "042d", "Micronics" }, - { "042e", "Acer, Inc." }, - { "042f", "Molex, Inc." }, - { "0430", "Fujitsu Component Limited" }, - { "0431", "Itac Systems, Inc." }, - { "0432", "Unisys Corp." }, - { "0433", "Alps Electric, Inc." }, - { "0434", "Samsung Info. Systems America, Inc." }, - { "0435", "Hyundai Electronics America" }, - { "0436", "Taugagreining HF" }, - { "0437", "Framatome Connectors USA" }, - { "0438", "Advanced Micro Devices, Inc." }, - { "0439", "Voice Technologies Group" }, - { "043d", "Lexmark International, Inc." }, - { "043e", "LG Electronics USA, Inc." }, - { "043f", "RadiSys Corp." }, - { "0440", "Eizo Nanao Corp." }, - { "0441", "Winbond Systems Lab." }, - { "0442", "Ericsson, Inc." }, - { "0443", "Gateway, Inc." }, - { "0445", "Lucent Technologies, Inc." }, - { "0446", "NMB Technologies Corp." }, - { "0447", "Momentum Microsystems" }, - { "0449", "Duta Multi Robotik" }, - { "044a", "Shamrock Tech. Co., Ltd" }, - { "044b", "WSI" }, - { "044c", "CCL/ITRI" }, - { "044d", "Siemens Nixdorf AG" }, - { "044e", "Alps Electric Co., Ltd" }, - { "044f", "ThrustMaster, Inc." }, - { "0450", "DFI, Inc." }, - { "0451", "Texas Instruments, Inc." }, - { "0452", "Mitsubishi Electronics America, Inc." }, - { "0453", "CMD Technology" }, - { "0454", "Vobis Microcomputer AG" }, - { "0455", "Telematics International, Inc." }, - { "0456", "Analog Devices, Inc." }, - { "0457", "Silicon Integrated Systems Corp." }, - { "0458", "KYE Systems Corp. (Mouse Systems)" }, - { "0459", "Adobe Systems, Inc." }, - { "045a", "SONICblue, Inc." }, - { "045b", "Hitachi, Ltd" }, - { "045d", "Nortel Networks, Ltd" }, - { "045e", "Microsoft Corp." }, - { "0460", "Ace Cad Enterprise Co., Ltd" }, - { "0461", "Primax Electronics, Ltd" }, - { "0463", "MGE UPS Systems" }, - { "0464", "AMP/Tycoelectronics Corp." }, - { "0467", "AT&T Paradyne" }, - { "0468", "Wieson Technologies Co., Ltd" }, - { "046a", "Cherry GmbH" }, - { "046b", "American Megatrends, Inc." }, - { "046c", "Toshiba Corp., Digital Media Equipment" }, - { "046d", "Logitech, Inc." }, - { "046e", "Behavior Tech. Computer Corp." }, - { "046f", "Crystal Semiconductor" }, - { "0471", "Philips (or NXP)" }, - { "0472", "Chicony Electronics Co., Ltd" }, - { "0473", "Sanyo Information Business Co., Ltd" }, - { "0474", "Sanyo Electric Co., Ltd" }, - { "0475", "Relisys/Teco Information System" }, - { "0476", "AESP" }, - { "0477", "Seagate Technology, Inc." }, - { "0478", "Connectix Corp." }, - { "0479", "Advanced Peripheral Laboratories" }, - { "047a", "Semtech Corp." }, - { "047b", "Silitek Corp." }, - { "047c", "Dell Computer Corp." }, - { "047d", "Kensington" }, - { "047e", "Agere Systems, Inc. (Lucent)" }, - { "047f", "Plantronics, Inc." }, - { "0480", "Toshiba America Inc" }, - { "0481", "Zenith Data Systems" }, - { "0482", "Kyocera Corp." }, - { "0483", "STMicroelectronics" }, - { "0484", "Specialix" }, - { "0485", "Nokia Monitors" }, - { "0486", "ASUS Computers, Inc." }, - { "0487", "Stewart Connector" }, - { "0488", "Cirque Corp." }, - { "0489", "Foxconn / Hon Hai" }, - { "048a", "S-MOS Systems, Inc." }, - { "048c", "Alps Electric Ireland, Ltd" }, - { "048d", "Integrated Technology Express, Inc." }, - { "048f", "Eicon Tech." }, - { "0490", "United Microelectronics Corp." }, - { "0491", "Capetronic" }, - { "0492", "Samsung SemiConductor, Inc." }, - { "0493", "MAG Technology Co., Ltd" }, - { "0495", "ESS Technology, Inc." }, - { "0496", "Micron Electronics" }, - { "0497", "Smile International" }, - { "0498", "Capetronic (Kaohsiung) Corp." }, - { "0499", "Yamaha Corp." }, - { "049a", "Gandalf Technologies, Ltd" }, - { "049b", "Curtis Computer Products" }, - { "049c", "Acer Advanced Labs, Inc." }, - { "049d", "VLSI Technology" }, - { "049f", "Compaq Computer Corp." }, - { "04a0", "Digital Equipment Corp." }, - { "04a1", "SystemSoft Corp." }, - { "04a2", "FirePower Systems" }, - { "04a3", "Trident Microsystems, Inc." }, - { "04a4", "Hitachi, Ltd" }, - { "04a5", "Acer Peripherals Inc. (now BenQ Corp.)" }, - { "04a6", "Nokia Display Products" }, - { "04a7", "Visioneer" }, - { "04a8", "Multivideo Labs, Inc." }, - { "04a9", "Canon, Inc." }, - { "04aa", "DaeWoo Telecom, Ltd" }, - { "04ab", "Chromatic Research" }, - { "04ac", "Micro Audiometrics Corp." }, - { "04ad", "Dooin Electronics" }, - { "04af", "Winnov L.P." }, - { "04b0", "Nikon Corp." }, - { "04b1", "Pan International" }, - { "04b3", "IBM Corp." }, - { "04b4", "Cypress Semiconductor Corp." }, - { "04b5", "ROHM LSI Systems USA, LLC" }, - { "04b6", "Hint Corp." }, - { "04b7", "Compal Electronics, Inc." }, - { "04b8", "Seiko Epson Corp." }, - { "04b9", "Rainbow Technologies, Inc." }, - { "04ba", "Toucan Systems, Ltd" }, - { "04bb", "I-O Data Device, Inc." }, - { "04bd", "Toshiba Electronics Taiwan Corp." }, - { "04be", "Telia Research AB" }, - { "04bf", "TDK Corp." }, - { "04c1", "U.S. Robotics (3Com)" }, - { "04c2", "Methode Electronics Far East PTE, Ltd" }, - { "04c3", "Maxi Switch, Inc." }, - { "04c4", "Lockheed Martin Energy Research" }, - { "04c5", "Fujitsu, Ltd" }, - { "04c6", "Toshiba America Electronic Components" }, - { "04c7", "Micro Macro Technologies" }, - { "04c8", "Konica Corp." }, - { "04ca", "Lite-On Technology Corp." }, - { "04cb", "Fuji Photo Film Co., Ltd" }, - { "04cc", "ST-Ericsson" }, - { "04cd", "Tatung Co. Of America" }, - { "04ce", "ScanLogic Corp." }, - { "04cf", "Myson Century, Inc." }, - { "04d0", "Digi International" }, - { "04d1", "ITT Canon" }, - { "04d2", "Altec Lansing Technologies" }, - { "04d3", "VidUS, Inc." }, - { "04d4", "LSI Logic, Inc." }, - { "04d5", "Forte Technologies, Inc." }, - { "04d6", "Mentor Graphics" }, - { "04d7", "Oki Semiconductor" }, - { "04d8", "Microchip Technology, Inc." }, - { "04d9", "Holtek Semiconductor, Inc." }, - { "04da", "Panasonic (Matsushita)" }, - { "04db", "Hypertec Pty, Ltd" }, - { "04dc", "Huan Hsin Holdings, Ltd" }, - { "04dd", "Sharp Corp." }, - { "04de", "MindShare, Inc." }, - { "04df", "Interlink Electronics" }, - { "04e1", "Iiyama North America, Inc." }, - { "04e2", "Exar Corp." }, - { "04e3", "Zilog, Inc." }, - { "04e4", "ACC Microelectronics" }, - { "04e5", "Promise Technology" }, - { "04e6", "SCM Microsystems, Inc." }, - { "04e7", "Elo TouchSystems" }, - { "04e8", "Samsung Electronics Co., Ltd" }, - { "04e9", "PC-Tel, Inc." }, - { "04ea", "Brooktree Corp." }, - { "04eb", "Northstar Systems, Inc." }, - { "04ec", "Tokyo Electron Device, Ltd" }, - { "04ed", "Annabooks" }, - { "04ef", "Pacific Electronic International, Inc." }, - { "04f0", "Daewoo Electronics Co., Ltd" }, - { "04f1", "Victor Company of Japan, Ltd" }, - { "04f2", "Chicony Electronics Co., Ltd" }, - { "04f3", "Elan Microelectronics Corp." }, - { "04f4", "Harting Elektronik, Inc." }, - { "04f5", "Fujitsu-ICL Systems, Inc." }, - { "04f6", "Norand Corp." }, - { "04f7", "Newnex Technology Corp." }, - { "04f8", "FuturePlus Systems" }, - { "04f9", "Brother Industries, Ltd" }, - { "04fa", "Dallas Semiconductor" }, - { "04fb", "Biostar Microtech International Corp." }, - { "04fc", "Sunplus Technology Co., Ltd" }, - { "04fd", "Soliton Systems, K.K." }, - { "04fe", "PFU, Ltd" }, - { "04ff", "E-CMOS Corp." }, - { "0500", "Siam United Hi-Tech" }, - { "0501", "Fujikura DDK, Ltd" }, - { "0502", "Acer, Inc." }, - { "0503", "Hitachi America, Ltd" }, - { "0504", "Hayes Microcomputer Products" }, - { "0506", "3Com Corp." }, - { "0507", "Hosiden Corp." }, - { "0508", "Clarion Co., Ltd" }, - { "0509", "Aztech Systems, Ltd" }, - { "050a", "Cinch Connectors" }, - { "050b", "Cable System International" }, - { "050c", "InnoMedia, Inc." }, - { "050d", "Belkin Components" }, - { "050e", "Neon Technology, Inc." }, - { "050f", "KC Technology, Inc." }, - { "0510", "Sejin Electron, Inc." }, - { "0511", "N'Able (DataBook) Technologies, Inc." }, - { "0512", "Hualon Microelectronics Corp." }, - { "0513", "digital-X, Inc." }, - { "0514", "FCI Electronics" }, - { "0515", "ACTC" }, - { "0516", "Longwell Electronics" }, - { "0517", "Butterfly Communications" }, - { "0518", "EzKEY Corp." }, - { "0519", "Star Micronics Co., Ltd" }, - { "051a", "WYSE Technology" }, - { "051b", "Silicon Graphics" }, - { "051c", "Shuttle, Inc." }, - { "051d", "American Power Conversion" }, - { "051e", "Scientific Atlanta, Inc." }, - { "051f", "IO Systems (Elite Electronics), Inc." }, - { "0520", "Taiwan Semiconductor Manufacturing Co." }, - { "0521", "Airborn Connectors" }, - { "0522", "Advanced Connectek, Inc." }, - { "0523", "ATEN GmbH" }, - { "0524", "Sola Electronics" }, - { "0525", "Netchip Technology, Inc." }, - { "0526", "Temic MHS S.A." }, - { "0527", "ALTRA" }, - { "0528", "ATI Technologies, Inc." }, - { "0529", "Aladdin Knowledge Systems" }, - { "052a", "Crescent Heart Software" }, - { "052b", "Tekom Technologies, Inc." }, - { "052c", "Canon Information Systems, Inc." }, - { "052d", "Avid Electronics Corp." }, - { "052e", "Standard Microsystems Corp." }, - { "052f", "Unicore Software, Inc." }, - { "0530", "American Microsystems, Inc." }, - { "0531", "Wacom Technology Corp." }, - { "0532", "Systech Corp." }, - { "0533", "Alcatel Mobile Phones" }, - { "0534", "Motorola, Inc." }, - { "0535", "LIH TZU Electric Co., Ltd" }, - { "0536", "Hand Held Products (Welch Allyn, Inc.)" }, - { "0537", "Inventec Corp." }, - { "0538", "Caldera International, Inc. (SCO)" }, - { "0539", "Shyh Shiun Terminals Co., Ltd" }, - { "053a", "PrehKeyTec GmbH" }, - { "053b", "Global Village Communication" }, - { "053c", "Institut of Microelectronic & Mechatronic Systems" }, - { "053d", "Silicon Architect" }, - { "053e", "Mobility Electronics" }, - { "053f", "Synopsys, Inc." }, - { "0540", "UniAccess AB" }, - { "0541", "Sirf Technology, Inc." }, - { "0543", "ViewSonic Corp." }, - { "0544", "Cristie Electronics, Ltd" }, - { "0545", "Xirlink, Inc." }, - { "0546", "Polaroid Corp." }, - { "0547", "Anchor Chips, Inc." }, - { "0548", "Tyan Computer Corp." }, - { "0549", "Pixera Corp." }, - { "054a", "Fujitsu Microelectronics, Inc." }, - { "054b", "New Media Corp." }, - { "054c", "Sony Corp." }, - { "054d", "Try Corp." }, - { "054e", "Proside Corp." }, - { "054f", "WYSE Technology Taiwan" }, - { "0550", "Fuji Xerox Co., Ltd" }, - { "0551", "CompuTrend Systems, Inc." }, - { "0552", "Philips Monitors" }, - { "0553", "STMicroelectronics Imaging Division (VLSI Vision)" }, - { "0554", "Dictaphone Corp." }, - { "0555", "ANAM S&T Co., Ltd" }, - { "0556", "Asahi Kasei Microsystems Co., Ltd" }, - { "0557", "ATEN International Co., Ltd" }, - { "0558", "Truevision, Inc." }, - { "0559", "Cadence Design Systems, Inc." }, - { "055a", "Kenwood USA" }, - { "055b", "KnowledgeTek, Inc." }, - { "055c", "Proton Electronic Ind." }, - { "055d", "Samsung Electro-Mechanics Co." }, - { "055e", "CTX Opto-Electronics Corp." }, - { "055f", "Mustek Systems, Inc." }, - { "0560", "Interface Corp." }, - { "0561", "Oasis Design, Inc." }, - { "0562", "Telex Communications, Inc." }, - { "0563", "Immersion Corp." }, - { "0564", "Kodak Digital Product Center, Japan Ltd. (formerly Chinon Industries Inc.)" }, - { "0565", "Peracom Networks, Inc." }, - { "0566", "Monterey International Corp." }, - { "0567", "Xyratex International, Ltd" }, - { "0568", "Quartz Ingenierie" }, - { "0569", "SegaSoft" }, - { "056a", "Wacom Co., Ltd" }, - { "056b", "Decicon, Inc." }, - { "056c", "eTEK Labs" }, - { "056d", "EIZO Corp." }, - { "056e", "Elecom Co., Ltd" }, - { "056f", "Korea Data Systems Co., Ltd" }, - { "0570", "Epson America" }, - { "0571", "Interex, Inc." }, - { "0572", "Conexant Systems (Rockwell), Inc." }, - { "0573", "Zoran Co. Personal Media Division (Nogatech)" }, - { "0574", "City University of Hong Kong" }, - { "0575", "Philips Creative Display Solutions" }, - { "0576", "BAFO/Quality Computer Accessories" }, - { "0577", "ELSA" }, - { "0578", "Intrinsix Corp." }, - { "0579", "GVC Corp." }, - { "057a", "Samsung Electronics America" }, - { "057b", "Y-E Data, Inc." }, - { "057c", "AVM GmbH" }, - { "057d", "Shark Multimedia, Inc." }, - { "057e", "Nintendo Co., Ltd" }, - { "057f", "QuickShot, Ltd" }, - { "0580", "Denron, Inc." }, - { "0581", "Racal Data Group" }, - { "0582", "Roland Corp." }, - { "0583", "Padix Co., Ltd (Rockfire)" }, - { "0584", "RATOC System, Inc." }, - { "0585", "FlashPoint Technology, Inc." }, - { "0586", "ZyXEL Communications Corp." }, - { "0587", "America Kotobuki Electronics Industries, Inc." }, - { "0588", "Sapien Design" }, - { "0589", "Victron" }, - { "058a", "Nohau Corp." }, - { "058b", "Infineon Technologies" }, - { "058c", "In Focus Systems" }, - { "058d", "Micrel Semiconductor" }, - { "058e", "Tripath Technology, Inc." }, - { "058f", "Alcor Micro Corp." }, - { "0590", "Omron Corp." }, - { "0591", "Questra Consulting" }, - { "0592", "Powerware Corp." }, - { "0593", "Incite" }, - { "0594", "Princeton Graphic Systems" }, - { "0595", "Zoran Microelectronics, Ltd" }, - { "0596", "MicroTouch Systems, Inc." }, - { "0597", "Trisignal Communications" }, - { "0598", "Niigata Canotec Co., Inc." }, - { "0599", "Brilliance Semiconductor, Inc." }, - { "059a", "Spectrum Signal Processing, Inc." }, - { "059b", "Iomega Corp." }, - { "059c", "A-Trend Technology Co., Ltd" }, - { "059d", "Advanced Input Devices" }, - { "059e", "Intelligent Instrumentation" }, - { "059f", "LaCie, Ltd" }, - { "05a0", "Vetronix Corp." }, - { "05a1", "USC Corp." }, - { "05a2", "Fuji Film Microdevices Co., Ltd" }, - { "05a3", "ARC International" }, - { "05a4", "Ortek Technology, Inc." }, - { "05a5", "Sampo Technology Corp." }, - { "05a6", "Cisco Systems, Inc." }, - { "05a7", "Bose Corp." }, - { "05a8", "Spacetec IMC Corp." }, - { "05a9", "OmniVision Technologies, Inc." }, - { "05aa", "Utilux South China, Ltd" }, - { "05ab", "In-System Design" }, - { "05ac", "Apple, Inc." }, - { "05ad", "Y.C. Cable U.S.A., Inc." }, - { "05ae", "Synopsys, Inc." }, - { "05af", "Jing-Mold Enterprise Co., Ltd" }, - { "05b0", "Fountain Technologies, Inc." }, - { "05b1", "First International Computer, Inc." }, - { "05b4", "LG Semicon Co., Ltd" }, - { "05b5", "Dialogic Corp." }, - { "05b6", "Proxima Corp." }, - { "05b7", "Medianix Semiconductor, Inc." }, - { "05b8", "SYSGRATION" }, - { "05b9", "Philips Research Laboratories" }, - { "05ba", "DigitalPersona, Inc." }, - { "05bb", "Grey Cell Systems" }, - { "05bc", "3G Green Green Globe Co., Ltd" }, - { "05bd", "RAFI GmbH & Co. KG" }, - { "05be", "Tyco Electronics (Raychem)" }, - { "05bf", "S & S Research" }, - { "05c0", "Keil Software" }, - { "05c1", "Kawasaki Microelectronics, Inc." }, - { "05c2", "Media Phonics (Suisse) S.A." }, - { "05c5", "Digi International, Inc." }, - { "05c6", "Qualcomm, Inc." }, - { "05c7", "Qtronix Corp." }, - { "05c8", "Cheng Uei Precision Industry Co., Ltd (Foxlink)" }, - { "05c9", "Semtech Corp." }, - { "05ca", "Ricoh Co., Ltd" }, - { "05cb", "PowerVision Technologies, Inc." }, - { "05cc", "ELSA AG" }, - { "05cd", "Silicom, Ltd" }, - { "05ce", "sci-worx GmbH" }, - { "05cf", "Sung Forn Co., Ltd" }, - { "05d0", "GE Medical Systems Lunar" }, - { "05d1", "Brainboxes, Ltd" }, - { "05d2", "Wave Systems Corp." }, - { "05d3", "Tohoku Ricoh Co., Ltd" }, - { "05d5", "Super Gate Technology Co., Ltd" }, - { "05d6", "Philips Semiconductors, CICT" }, - { "05d7", "Thomas & Betts Corp." }, - { "05d8", "Ultima Electronics Corp." }, - { "05d9", "Axiohm Transaction Solutions" }, - { "05da", "Microtek International, Inc." }, - { "05db", "Sun Corp. (Suntac?)" }, - { "05dc", "Lexar Media, Inc." }, - { "05dd", "Delta Electronics, Inc." }, - { "05df", "Silicon Vision, Inc." }, - { "05e0", "Symbol Technologies" }, - { "05e1", "Syntek Semiconductor Co., Ltd" }, - { "05e2", "ElecVision, Inc." }, - { "05e3", "Genesys Logic, Inc." }, - { "05e4", "Red Wing Corp." }, - { "05e5", "Fuji Electric Co., Ltd" }, - { "05e6", "Keithley Instruments" }, - { "05e8", "ICC, Inc." }, - { "05e9", "Kawasaki LSI" }, - { "05eb", "FFC, Ltd" }, - { "05ec", "COM21, Inc." }, - { "05ee", "Cytechinfo Inc." }, - { "05ef", "AVB, Inc. [anko?]" }, - { "05f0", "Canopus Co., Ltd" }, - { "05f1", "Compass Communications" }, - { "05f2", "Dexin Corp., Ltd" }, - { "05f3", "PI Engineering, Inc." }, - { "05f5", "Unixtar Technology, Inc." }, - { "05f6", "AOC International" }, - { "05f7", "RFC Distribution(s) PTE, Ltd" }, - { "05f9", "PSC Scanning, Inc." }, - { "05fa", "Siemens Telecommunications Systems, Ltd" }, - { "05fc", "Harman" }, - { "05fd", "InterAct, Inc." }, - { "05fe", "Chic Technology Corp." }, - { "05ff", "LeCroy Corp." }, - { "0600", "Barco Display Systems" }, - { "0601", "Jazz Hipster Corp." }, - { "0602", "Vista Imaging, Inc." }, - { "0603", "Novatek Microelectronics Corp." }, - { "0604", "Jean Co., Ltd" }, - { "0605", "Anchor C&C Co., Ltd" }, - { "0606", "Royal Information Electronics Co., Ltd" }, - { "0607", "Bridge Information Co., Ltd" }, - { "0608", "Genrad Ads" }, - { "0609", "SMK Manufacturing, Inc." }, - { "060a", "Worthington Data Solutions, Inc." }, - { "060b", "Solid Year" }, - { "060c", "EEH Datalink GmbH" }, - { "060d", "Auctor Corp." }, - { "060e", "Transmonde Technologies, Inc." }, - { "060f", "Joinsoon Electronics Mfg. Co., Ltd" }, - { "0610", "Costar Electronics, Inc." }, - { "0611", "Totoku Electric Co., Ltd" }, - { "0613", "TransAct Technologies, Inc." }, - { "0614", "Bio-Rad Laboratories" }, - { "0615", "Quabbin Wire & Cable Co., Inc." }, - { "0616", "Future Techno Designs PVT, Ltd" }, - { "0617", "Swiss Federal Insitute of Technology" }, - { "0618", "MacAlly" }, - { "0619", "Seiko Instruments, Inc." }, - { "061a", "Veridicom International, Inc." }, - { "061b", "Promptus Communications, Inc." }, - { "061c", "Act Labs, Ltd" }, - { "061d", "Quatech, Inc." }, - { "061e", "Nissei Electric Co." }, - { "0620", "Alaris, Inc." }, - { "0621", "ODU-Steckverbindungssysteme GmbH & Co. KG" }, - { "0622", "Iotech, Inc." }, - { "0623", "Littelfuse, Inc." }, - { "0624", "Avocent Corp." }, - { "0625", "TiMedia Technology Co., Ltd" }, - { "0626", "Nippon Systems Development Co., Ltd" }, - { "0627", "Adomax Technology Co., Ltd" }, - { "0628", "Tasking Software, Inc." }, - { "0629", "Zida Technologies, Ltd" }, - { "062a", "MosArt Semiconductor Corp." }, - { "062b", "Greatlink Electronics Taiwan, Ltd" }, - { "062c", "Institute for Information Industry" }, - { "062d", "Taiwan Tai-Hao Enterprises Co., Ltd" }, - { "062e", "Mainsuper Enterprises Co., Ltd" }, - { "062f", "Sin Sheng Terminal & Machine, Inc." }, - { "0631", "JUJO Electronics Corp." }, - { "0633", "Cyrix Corp." }, - { "0634", "Micron Technology, Inc." }, - { "0635", "Methode Electronics, Inc." }, - { "0636", "Sierra Imaging, Inc." }, - { "0638", "Avision, Inc." }, - { "0639", "Chrontel, Inc." }, - { "063a", "Techwin Corp." }, - { "063b", "Taugagreining HF" }, - { "063c", "Yamaichi Electronics Co., Ltd (Sakura)" }, - { "063d", "Fong Kai Industrial Co., Ltd" }, - { "063e", "RealMedia Technology, Inc." }, - { "063f", "New Technology Cable, Ltd" }, - { "0640", "Hitex Development Tools" }, - { "0641", "Woods Industries, Inc." }, - { "0642", "VIA Medical Corp." }, - { "0644", "TEAC Corp." }, - { "0645", "Who? Vision Systems, Inc." }, - { "0646", "UMAX" }, - { "0647", "Acton Research Corp." }, - { "0648", "Inside Out Networks" }, - { "0649", "Weli Science Co., Ltd" }, - { "064b", "Analog Devices, Inc. (White Mountain DSP)" }, - { "064c", "Ji-Haw Industrial Co., Ltd" }, - { "064d", "TriTech Microelectronics, Ltd" }, - { "064e", "Suyin Corp." }, - { "064f", "WIBU-Systems AG" }, - { "0650", "Dynapro Systems" }, - { "0651", "Likom Technology Sdn. Bhd." }, - { "0652", "Stargate Solutions, Inc." }, - { "0653", "CNF, Inc." }, - { "0654", "Granite Microsystems, Inc." }, - { "0655", "Space Shuttle Hi-Tech Co., Ltd" }, - { "0656", "Glory Mark Electronic, Ltd" }, - { "0657", "Tekcon Electronics Corp." }, - { "0658", "Sigma Designs, Inc." }, - { "0659", "Aethra" }, - { "065a", "Optoelectronics Co., Ltd" }, - { "065b", "Tracewell Systems" }, - { "065e", "Silicon Graphics" }, - { "065f", "Good Way Technology Co., Ltd & GWC technology Inc." }, - { "0660", "TSAY-E (BVI) International, Inc." }, - { "0661", "Hamamatsu Photonics K.K." }, - { "0662", "Kansai Electric Co., Ltd" }, - { "0663", "Topmax Electronic Co., Ltd" }, - { "0664", "ET&T Technology Co., Ltd." }, - { "0665", "Cypress Semiconductor" }, - { "0667", "Aiwa Co., Ltd" }, - { "0668", "WordWand" }, - { "0669", "Oce' Printing Systems GmbH" }, - { "066a", "Total Technologies, Ltd" }, - { "066b", "Linksys, Inc." }, - { "066d", "Entrega, Inc." }, - { "066e", "Acer Semiconductor America, Inc." }, - { "066f", "SigmaTel, Inc." }, - { "0670", "Sequel Imaging" }, - { "0672", "Labtec, Inc." }, - { "0673", "HCL" }, - { "0674", "Key Mouse Electronic Enterprise Co., Ltd" }, - { "0675", "DrayTek Corp." }, - { "0676", "Teles AG" }, - { "0677", "Aiwa Co., Ltd" }, - { "0678", "ACard Technology Corp." }, - { "067b", "Prolific Technology, Inc." }, - { "067c", "Efficient Networks, Inc." }, - { "067d", "Hohner Corp." }, - { "067e", "Intermec Technologies Corp." }, - { "067f", "Virata, Ltd" }, - { "0680", "Realtek Semiconductor Corp., CPP Div. (Avance Logic)" }, - { "0681", "Siemens Information and Communication Products" }, - { "0682", "Victor Company of Japan, Ltd" }, - { "0684", "Actiontec Electronics, Inc." }, - { "0685", "ZD Incorporated" }, - { "0686", "Minolta Co., Ltd" }, - { "068a", "Pertech, Inc." }, - { "068b", "Potrans International, Inc." }, - { "068e", "CH Products, Inc." }, - { "068f", "Nihon KOHDEN" }, - { "0690", "Golden Bridge Electech, Inc." }, - { "0693", "Hagiwara Sys-Com Co., Ltd" }, - { "0694", "Lego Group" }, - { "0698", "Chuntex (CTX)" }, - { "0699", "Tektronix, Inc." }, - { "069a", "Askey Computer Corp." }, - { "069b", "Thomson, Inc." }, - { "069d", "Hughes Network Systems (HNS)" }, - { "069e", "Welcat Inc." }, - { "069f", "Allied Data Technologies BV" }, - { "06a2", "Topro Technology, Inc." }, - { "06a3", "Saitek PLC" }, - { "06a4", "Xiamen Doowell Electron Co., Ltd" }, - { "06a5", "Divio" }, - { "06a7", "MicroStore, Inc." }, - { "06a8", "Topaz Systems, Inc." }, - { "06a9", "Westell" }, - { "06aa", "Sysgration, Ltd" }, - { "06ac", "Fujitsu Laboratories of America, Inc." }, - { "06ad", "Greatland Electronics Taiwan, Ltd" }, - { "06ae", "Professional Multimedia Testing Centre" }, - { "06af", "Harting, Inc. of North America" }, - { "06b8", "Pixela Corp." }, - { "06b9", "Alcatel Telecom" }, - { "06ba", "Smooth Cord & Connector Co., Ltd" }, - { "06bb", "EDA, Inc." }, - { "06bc", "Oki Data Corp." }, - { "06bd", "AGFA-Gevaert NV" }, - { "06be", "AME Optimedia Technology Co., Ltd" }, - { "06bf", "Leoco Corp." }, - { "06c2", "Phidgets Inc. (formerly GLAB)" }, - { "06c4", "Bizlink International Corp." }, - { "06c5", "Hagenuk, GmbH" }, - { "06c6", "Infowave Software, Inc." }, - { "06c8", "SIIG, Inc." }, - { "06c9", "Taxan (Europe), Ltd" }, - { "06ca", "Newer Technology, Inc." }, - { "06cb", "Synaptics, Inc." }, - { "06cc", "Terayon Communication Systems" }, - { "06cd", "Keyspan" }, - { "06ce", "Contec" }, - { "06cf", "SpheronVR AG" }, - { "06d0", "LapLink, Inc." }, - { "06d1", "Daewoo Electronics Co., Ltd" }, - { "06d3", "Mitsubishi Electric Corp." }, - { "06d4", "Cisco Systems" }, - { "06d5", "Toshiba" }, - { "06d6", "Aashima Technology B.V." }, - { "06d7", "Network Computing Devices (NCD)" }, - { "06d8", "Technical Marketing Research, Inc." }, - { "06da", "Phoenixtec Power Co., Ltd" }, - { "06db", "Paradyne" }, - { "06dc", "Foxlink Image Technology Co., Ltd" }, - { "06de", "Heisei Electronics Co., Ltd" }, - { "06e0", "Multi-Tech Systems, Inc." }, - { "06e1", "ADS Technologies, Inc." }, - { "06e4", "Alcatel Microelectronics" }, - { "06e6", "Tiger Jet Network, Inc." }, - { "06ea", "Sirius Technologies" }, - { "06eb", "PC Expert Tech. Co., Ltd" }, - { "06ef", "I.A.C. Geometrische Ingenieurs B.V." }, - { "06f0", "T.N.C Industrial Co., Ltd" }, - { "06f1", "Opcode Systems, Inc." }, - { "06f2", "Emine Technology Co." }, - { "06f6", "Wintrend Technology Co., Ltd" }, - { "06f7", "Wailly Technology Ltd" }, - { "06f8", "Guillemot Corp." }, - { "06f9", "ASYST electronic d.o.o." }, - { "06fa", "HSD S.r.L" }, - { "06fc", "Motorola Semiconductor Products Sector" }, - { "06fd", "Boston Acoustics" }, - { "06fe", "Gallant Computer, Inc." }, - { "0701", "Supercomal Wire & Cable SDN. BHD." }, - { "0703", "Bvtech Industry, Inc." }, - { "0705", "NKK Corp." }, - { "0706", "Ariel Corp." }, - { "0707", "Standard Microsystems Corp." }, - { "0708", "Putercom Co., Ltd" }, - { "0709", "Silicon Systems, Ltd (SSL)" }, - { "070a", "Oki Electric Industry Co., Ltd" }, - { "070d", "Comoss Electronic Co., Ltd" }, - { "070e", "Excel Cell Electronic Co., Ltd" }, - { "0710", "Connect Tech, Inc." }, - { "0711", "Magic Control Technology Corp." }, - { "0713", "Interval Research Corp." }, - { "0714", "NewMotion, Inc." }, - { "0717", "ZNK Corp." }, - { "0718", "Imation Corp." }, - { "0719", "Tremon Enterprises Co., Ltd" }, - { "071b", "Domain Technologies, Inc." }, - { "071c", "Xionics Document Technologies, Inc." }, - { "071d", "Eicon Networks Corp." }, - { "071e", "Ariston Technologies" }, - { "0720", "Keyence Corp." }, - { "0723", "Centillium Communications Corp." }, - { "0726", "Vanguard International Semiconductor-America" }, - { "0729", "Amitm" }, - { "072e", "Sunix Co., Ltd" }, - { "072f", "Advanced Card Systems, Ltd" }, - { "0731", "Susteen, Inc." }, - { "0732", "Goldfull Electronics & Telecommunications Corp." }, - { "0733", "ViewQuest Technologies, Inc." }, - { "0734", "Lasat Communications A/S" }, - { "0735", "Asuscom Network" }, - { "0736", "Lorom Industrial Co., Ltd" }, - { "0738", "Mad Catz, Inc." }, - { "073a", "Chaplet Systems, Inc." }, - { "073b", "Suncom Technologies" }, - { "073c", "Industrial Electronic Engineers, Inc." }, - { "073d", "Eutron S.p.a." }, - { "073e", "NEC, Inc." }, - { "0742", "Stollmann" }, - { "0745", "Syntech Information Co., Ltd" }, - { "0746", "Onkyo Corp." }, - { "0747", "Labway Corp." }, - { "0748", "Strong Man Enterprise Co., Ltd" }, - { "0749", "EVer Electronics Corp." }, - { "074a", "Ming Fortune Industry Co., Ltd" }, - { "074b", "Polestar Tech. Corp." }, - { "074c", "C-C-C Group PLC" }, - { "074d", "Micronas GmbH" }, - { "074e", "Digital Stream Corp." }, - { "0755", "Aureal Semiconductor" }, - { "0757", "Network Technologies, Inc." }, - { "0758", "Carl Zeiss Microscopy GmbH" }, - { "075b", "Sophisticated Circuits, Inc." }, - { "0763", "M-Audio" }, - { "0764", "Cyber Power System, Inc." }, - { "0765", "X-Rite, Inc." }, - { "0766", "Jess-Link Products Co., Ltd" }, - { "0767", "Tokheim Corp." }, - { "0768", "Camtel Technology Corp." }, - { "0769", "Surecom Technology Corp." }, - { "076a", "Smart Technology Enablers, Inc." }, - { "076b", "OmniKey AG" }, - { "076c", "Partner Tech" }, - { "076d", "Denso Corp." }, - { "076e", "Kuan Tech Enterprise Co., Ltd" }, - { "076f", "Jhen Vei Electronic Co., Ltd" }, - { "0770", "Welch Allyn, Inc - Medical Division" }, - { "0771", "Observator Instruments BV" }, - { "0772", "Your data Our Care" }, - { "0774", "AmTRAN Technology Co., Ltd" }, - { "0775", "Longshine Electronics Corp." }, - { "0776", "Inalways Corp." }, - { "0777", "Comda Enterprise Corp." }, - { "0778", "Volex, Inc." }, - { "0779", "ON Semiconductor (formerly Fairchild)" }, - { "077a", "Sankyo Seiki Mfg. Co., Ltd" }, - { "077b", "Linksys" }, - { "077c", "Forward Electronics Co., Ltd" }, - { "077d", "Griffin Technology" }, - { "077e", "Softing AG" }, - { "077f", "Well Excellent & Most Corp." }, - { "0780", "Sagem Monetel GmbH" }, - { "0781", "SanDisk Corp." }, - { "0782", "Trackerball" }, - { "0783", "C3PO" }, - { "0784", "Vivitar, Inc." }, - { "0785", "NTT-ME" }, - { "0789", "Logitec Corp." }, - { "078b", "Happ Controls, Inc." }, - { "078c", "GTCO/CalComp" }, - { "078e", "Brincom, Inc." }, - { "0790", "Pro-Image Manufacturing Co., Ltd" }, - { "0791", "Copartner Wire and Cable Mfg. Corp." }, - { "0792", "Axis Communications AB" }, - { "0793", "Wha Yu Industrial Co., Ltd" }, - { "0794", "ABL Electronics Corp." }, - { "0795", "RealChip, Inc." }, - { "0796", "Certicom Corp." }, - { "0797", "Grandtech Semiconductor Corp." }, - { "0798", "Optelec" }, - { "0799", "Altera" }, - { "079b", "Sagem" }, - { "079d", "Alfadata Computer Corp." }, - { "07a1", "Digicom S.p.A." }, - { "07a2", "National Technical Systems" }, - { "07a3", "Onnto Corp." }, - { "07a4", "Be, Inc." }, - { "07a6", "ADMtek, Inc." }, - { "07aa", "Corega K.K." }, - { "07ab", "Freecom Technologies" }, - { "07af", "Microtech" }, - { "07b0", "Trust Technologies" }, - { "07b1", "IMP, Inc." }, - { "07b2", "Motorola BCS, Inc." }, - { "07b3", "Plustek, Inc." }, - { "07b4", "Olympus Optical Co., Ltd" }, - { "07b5", "Mega World International, Ltd" }, - { "07b6", "Marubun Corp." }, - { "07b7", "TIME Interconnect, Ltd" }, - { "07b8", "AboCom Systems Inc" }, - { "07bc", "Canon Computer Systems, Inc." }, - { "07bd", "Webgear, Inc." }, - { "07be", "Veridicom" }, - { "07c0", "Code Mercenaries Hard- und Software GmbH" }, - { "07c1", "Keisokugiken" }, - { "07c4", "Datafab Systems, Inc." }, - { "07c5", "APG Cash Drawer" }, - { "07c6", "ShareWave, Inc." }, - { "07c7", "Powertech Industrial Co., Ltd" }, - { "07c8", "B.U.G., Inc." }, - { "07c9", "Allied Telesyn International" }, - { "07ca", "AVerMedia Technologies, Inc." }, - { "07cb", "Kingmax Technology, Inc." }, - { "07cc", "Carry Computer Eng., Co., Ltd" }, - { "07cd", "Elektor" }, - { "07ce", "Nidec Copal" }, - { "07cf", "Casio Computer Co., Ltd" }, - { "07d0", "Dazzle" }, - { "07d1", "D-Link System" }, - { "07d2", "Aptio Products, Inc." }, - { "07d3", "Cyberdata Corp." }, - { "07d5", "Radiant Systems" }, - { "07d7", "GCC Technologies, Inc." }, - { "07da", "Arasan Chip Systems" }, - { "07de", "Diamond Multimedia" }, - { "07df", "David Electronics Co., Ltd" }, - { "07e0", "NCP engineering GmbH" }, - { "07e1", "Ambient Technologies, Inc." }, - { "07e2", "Elmeg GmbH & Co., Ltd" }, - { "07e3", "Planex Communications, Inc." }, - { "07e4", "Movado Enterprise Co., Ltd" }, - { "07e5", "QPS, Inc." }, - { "07e6", "Allied Cable Corp." }, - { "07e7", "Mirvo Toys, Inc." }, - { "07e8", "Labsystems" }, - { "07ea", "Iwatsu Electric Co., Ltd" }, - { "07eb", "Double-H Technology Co., Ltd" }, - { "07ec", "Taiyo Electric Wire & Cable Co., Ltd" }, - { "07ee", "Torex Retail (formerly Logware)" }, - { "07ef", "STSN" }, - { "07f2", "Microcomputer Applications, Inc." }, - { "07f6", "Circuit Assembly Corp." }, - { "07f7", "Century Corp." }, - { "07f9", "Dotop Technology, Inc." }, - { "07fa", "DrayTek Corp." }, - { "07fc", "Thomann" }, - { "07fd", "Mark of the Unicorn" }, - { "07ff", "Unknown" }, - { "0801", "MagTek" }, - { "0802", "Mako Technologies, LLC" }, - { "0803", "Zoom Telephonics, Inc." }, - { "0809", "Genicom Technology, Inc." }, - { "080a", "Evermuch Technology Co., Ltd" }, - { "080b", "Cross Match Technologies" }, - { "080c", "Datalogic S.p.A." }, - { "080d", "Teco Image Systems Co., Ltd" }, - { "0810", "Personal Communication Systems, Inc." }, - { "0813", "Mattel, Inc." }, - { "0819", "eLicenser" }, - { "081a", "MG Logic" }, - { "081b", "Indigita Corp." }, - { "081c", "Mipsys" }, - { "081e", "AlphaSmart, Inc." }, - { "081f", "Manta" }, - { "0822", "Reudo Corp." }, - { "0825", "GC Protronics" }, - { "0826", "Data Transit" }, - { "0827", "BroadLogic, Inc." }, - { "0828", "Sato Corp." }, - { "0829", "DirecTV Broadband, Inc. (Telocity)" }, - { "082d", "Handspring" }, - { "0830", "Palm, Inc." }, - { "0832", "Kouwell Electronics Corp." }, - { "0833", "Sourcenext Corp." }, - { "0835", "Action Star Enterprise Co., Ltd" }, - { "0836", "TrekStor" }, - { "0839", "Samsung Techwin Co., Ltd" }, - { "083a", "Accton Technology Corp." }, - { "083f", "Global Village" }, - { "0840", "Argosy Research, Inc." }, - { "0841", "Rioport.com, Inc." }, - { "0844", "Welland Industrial Co., Ltd" }, - { "0846", "NetGear, Inc." }, - { "084d", "Minton Optic Industry Co., Inc." }, - { "084e", "KB Gear" }, - { "084f", "Empeg" }, - { "0850", "Fast Point Technologies, Inc." }, - { "0851", "Macronix International Co., Ltd" }, - { "0852", "CSEM" }, - { "0853", "Topre Corporation" }, - { "0854", "ActiveWire, Inc." }, - { "0856", "B&B Electronics" }, - { "0858", "Hitachi Maxell, Ltd" }, - { "0859", "Minolta Systems Laboratory, Inc." }, - { "085a", "Xircom" }, - { "085c", "ColorVision, Inc." }, - { "0862", "Teletrol Systems, Inc." }, - { "0863", "Filanet Corp." }, - { "0864", "NetGear, Inc." }, - { "0867", "Data Translation, Inc." }, - { "086a", "Emagic Soft- und Hardware GmbH" }, - { "086c", "DeTeWe - Deutsche Telephonwerke AG & Co." }, - { "086e", "System TALKS, Inc." }, - { "086f", "MEC IMEX, Inc." }, - { "0870", "Metricom" }, - { "0871", "SanDisk, Inc." }, - { "0873", "Xpeed, Inc." }, - { "0874", "A-Tec Subsystem, Inc." }, - { "0879", "Comtrol Corp." }, - { "087c", "Adesso/Kbtek America, Inc." }, - { "087d", "Jaton Corp." }, - { "087e", "Fujitsu Computer Products of America" }, - { "087f", "QualCore Logic Inc." }, - { "0880", "APT Technologies, Inc." }, - { "0883", "Recording Industry Association of America (RIAA)" }, - { "0885", "Boca Research, Inc." }, - { "0886", "XAC Automation Corp." }, - { "0887", "Hannstar Electronics Corp." }, - { "088a", "TechTools" }, - { "088b", "MassWorks, Inc." }, - { "088c", "Swecoin AB" }, - { "088e", "iLok" }, - { "0892", "DioGraphy, Inc." }, - { "0894", "TSI Incorporated" }, - { "0897", "Lauterbach" }, - { "089c", "United Technologies Research Cntr." }, - { "089d", "Icron Technologies Corp." }, - { "089e", "NST Co., Ltd" }, - { "089f", "Primex Aerospace Co." }, - { "08a5", "e9, Inc." }, - { "08a6", "Toshiba TEC" }, - { "08a8", "Andrea Electronics" }, - { "08a9", "CWAV Inc." }, - { "08ac", "Macraigor Systems LLC" }, - { "08ae", "Macally (Mace Group, Inc.)" }, - { "08b0", "Metrohm" }, - { "08b4", "Sorenson Vision, Inc." }, - { "08b7", "NATSU" }, - { "08b8", "J. Gordon Electronic Design, Inc." }, - { "08b9", "RadioShack Corp. (Tandy)" }, - { "08bb", "Texas Instruments" }, - { "08bd", "Citizen Watch Co., Ltd" }, - { "08c3", "Precise Biometrics" }, - { "08c4", "Proxim, Inc." }, - { "08c7", "Key Nice Enterprise Co., Ltd" }, - { "08c8", "2Wire, Inc." }, - { "08c9", "Nippon Telegraph and Telephone Corp." }, - { "08ca", "Aiptek International, Inc." }, - { "08cd", "Jue Hsun Ind. Corp." }, - { "08ce", "Long Well Electronics Corp." }, - { "08cf", "Productivity Enhancement Products" }, - { "08d1", "smartBridges, Inc." }, - { "08d3", "Virtual Ink" }, - { "08d4", "Fujitsu Siemens Computers" }, - { "08d8", "IXXAT Automation GmbH" }, - { "08d9", "Increment P Corp." }, - { "08dd", "Billionton Systems, Inc." }, - { "08de", "Unknown?" }, - { "08df", "Spyrus, Inc." }, - { "08e3", "Olitec, Inc." }, - { "08e4", "Pioneer Corp." }, - { "08e5", "Litronic" }, - { "08e6", "Gemalto (was Gemplus)" }, - { "08e7", "Pan-International Wire & Cable" }, - { "08e8", "Integrated Memory Logic" }, - { "08e9", "Extended Systems, Inc." }, - { "08ea", "Ericsson, Inc., Blue Ridge Labs" }, - { "08ec", "M-Systems Flash Disk Pioneers" }, - { "08ed", "MediaTek Inc." }, - { "08ee", "CCSI/Hesso" }, - { "08f0", "Corex Technologies" }, - { "08f1", "CTI Electronics Corp." }, - { "08f2", "Gotop Information Inc." }, - { "08f5", "SysTec Co., Ltd" }, - { "08f6", "Logic 3 International, Ltd" }, - { "08f7", "Vernier" }, - { "08f8", "Keen Top International Enterprise Co., Ltd" }, - { "08f9", "Wipro Technologies" }, - { "08fa", "Caere" }, - { "08fb", "Socket Communications" }, - { "08fc", "Sicon Cable Technology Co., Ltd" }, - { "08fd", "Digianswer A/S" }, - { "08ff", "AuthenTec, Inc." }, - { "0900", "Pinnacle Systems, Inc." }, - { "0901", "VST Technologies" }, - { "0906", "Faraday Technology Corp." }, - { "0908", "Siemens AG" }, - { "0909", "Audio-Technica Corp." }, - { "090a", "Trumpion Microelectronics, Inc." }, - { "090b", "Neurosmith" }, - { "090c", "Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.)" }, - { "090d", "Multiport Computer Vertriebs GmbH" }, - { "090e", "Shining Technology, Inc." }, - { "090f", "Fujitsu Devices, Inc." }, - { "0910", "Alation Systems, Inc." }, - { "0911", "Philips Speech Processing" }, - { "0912", "Voquette, Inc." }, - { "0915", "GlobeSpan, Inc." }, - { "0917", "SmartDisk Corp." }, - { "0919", "Tiger Electronics" }, - { "091e", "Garmin International" }, - { "0920", "Echelon Co." }, - { "0921", "GoHubs, Inc." }, - { "0922", "Dymo-CoStar Corp." }, - { "0923", "IC Media Corp." }, - { "0924", "Xerox" }, - { "0925", "Lakeview Research" }, - { "0927", "Summus, Ltd" }, - { "0928", "PLX Technology, Inc. (formerly Oxford Semiconductor, Ltd)" }, - { "0929", "American Biometric Co." }, - { "092a", "Toshiba Information & Industrial Sys. And Services" }, - { "092b", "Sena Technologies, Inc." }, - { "092f", "Northern Embedded Science/CAVNEX" }, - { "0930", "Toshiba Corp." }, - { "0931", "Harmonic Data Systems, Ltd" }, - { "0932", "Crescentec Corp." }, - { "0933", "Quantum Corp." }, - { "0934", "Spirent Communications" }, - { "0936", "NuTesla" }, - { "0939", "Lumberg, Inc." }, - { "093a", "Pixart Imaging, Inc." }, - { "093b", "Plextor Corp." }, - { "093c", "Intrepid Control Systems, Inc." }, - { "093d", "InnoSync, Inc." }, - { "093e", "J.S.T. Mfg. Co., Ltd" }, - { "093f", "Olympia Telecom Vertriebs GmbH" }, - { "0940", "Japan Storage Battery Co., Ltd" }, - { "0941", "Photobit Corp." }, - { "0942", "i2Go.com, LLC" }, - { "0943", "HCL Technologies India Private, Ltd" }, - { "0944", "KORG, Inc." }, - { "0945", "Pasco Scientific" }, - { "0948", "Kronauer music in digital" }, - { "094b", "Linkup Systems Corp." }, - { "094d", "Cable Television Laboratories" }, - { "094f", "Yano" }, - { "0951", "Kingston Technology" }, - { "0954", "RPM Systems Corp." }, - { "0955", "NVIDIA Corp." }, - { "0956", "BSquare Corp." }, - { "0957", "Agilent Technologies, Inc." }, - { "0958", "CompuLink Research, Inc." }, - { "0959", "Cologne Chip AG" }, - { "095a", "Portsmith" }, - { "095b", "Medialogic Corp." }, - { "095c", "K-Tec Electronics" }, - { "095d", "Polycom, Inc." }, - { "0964", "BITRAN" }, - { "0967", "Acer NeWeb Corp." }, - { "0968", "Catalyst Enterprises, Inc." }, - { "096e", "Feitian Technologies, Inc." }, - { "0971", "Gretag-Macbeth AG" }, - { "0973", "Schlumberger" }, - { "0974", "Datagraphix, a business unit of Anacomp" }, - { "0975", "OL'E Communications, Inc." }, - { "0976", "Adirondack Wire & Cable" }, - { "0977", "Lightsurf Technologies" }, - { "0978", "Beckhoff GmbH" }, - { "0979", "Jeilin Technology Corp., Ltd" }, - { "097a", "Minds At Work LLC" }, - { "097b", "Knudsen Engineering, Ltd" }, - { "097c", "Marunix Co., Ltd" }, - { "097d", "Rosun Technologies, Inc." }, - { "097e", "Biopac Systems Inc." }, - { "097f", "Barun Electronics Co., Ltd" }, - { "0981", "Oak Technology, Ltd" }, - { "0984", "Apricorn" }, - { "0985", "cab Produkttechnik GmbH & Co KG" }, - { "0986", "Matsushita Electric Works, Ltd." }, - { "098c", "Vitana Corp." }, - { "098d", "INDesign" }, - { "098e", "Integrated Intellectual Property, Inc." }, - { "098f", "Kenwood TMI Corp." }, - { "0993", "Gemstar eBook Group, Ltd" }, - { "0996", "Integrated Telecom Express, Inc." }, - { "099a", "Zippy Technology Corp." }, - { "099e", "Trimble Navigation, Ltd" }, - { "09a3", "PairGain Technologies" }, - { "09a4", "Contech Research, Inc." }, - { "09a5", "VCON Telecommunications" }, - { "09a6", "Poinchips" }, - { "09a7", "Data Transmission Network Corp." }, - { "09a8", "Lin Shiung Enterprise Co., Ltd" }, - { "09a9", "Smart Card Technologies Co., Ltd" }, - { "09aa", "Intersil Corp." }, - { "09ab", "Japan Cash Machine Co., Ltd." }, - { "09ae", "Tripp Lite" }, - { "09b0", "Fargo" }, - { "09b2", "Franklin Electronic Publishers, Inc." }, - { "09b3", "Altius Solutions, Inc." }, - { "09b4", "MDS Telephone Systems" }, - { "09b5", "Celltrix Technology Co., Ltd" }, - { "09bc", "Grundig" }, - { "09be", "MySmart.Com" }, - { "09bf", "Auerswald GmbH & Co. KG" }, - { "09c0", "Genpix Electronics, LLC" }, - { "09c1", "Arris Interactive LLC" }, - { "09c2", "Nisca Corp." }, - { "09c3", "HID Global" }, - { "09c4", "ACTiSYS Corp." }, - { "09c5", "Memory Corp." }, - { "09ca", "BMC Messsysteme GmbH" }, - { "09cb", "FLIR Systems" }, - { "09cc", "Workbit Corp." }, - { "09cd", "Psion Dacom Home Networks, Ltd" }, - { "09ce", "City Electronics, Ltd" }, - { "09cf", "Electronics Testing Center, Taiwan" }, - { "09d1", "NeoMagic, Inc." }, - { "09d2", "Vreelin Engineering, Inc." }, - { "09d3", "Com One" }, - { "09d7", "Hexagon NovAtel Inc." }, - { "09d8", "ELATEC GmbH" }, - { "09d9", "KRF Tech, Ltd" }, - { "09da", "A4Tech Co., Ltd." }, - { "09db", "Measurement Computing Corp." }, - { "09dc", "Aimex Corp." }, - { "09dd", "Fellowes, Inc." }, - { "09df", "Addonics Technologies Corp." }, - { "09e1", "Intellon Corp." }, - { "09e5", "Jo-Dan International, Inc." }, - { "09e6", "Silutia, Inc." }, - { "09e7", "Real 3D, Inc." }, - { "09e8", "AKAI Professional M.I. Corp." }, - { "09e9", "Chen-Source, Inc." }, - { "09eb", "IM Networks, Inc." }, - { "09ef", "Xitel" }, - { "09f3", "GoFlight, Inc." }, - { "09f5", "AresCom" }, - { "09f6", "RocketChips, Inc." }, - { "09f7", "Edu-Science (H.K.), Ltd" }, - { "09f8", "SoftConnex Technologies, Inc." }, - { "09f9", "Bay Associates" }, - { "09fa", "Mtek Vision" }, - { "09fb", "Altera" }, - { "09ff", "Gain Technology Corp." }, - { "0a00", "Liquid Audio" }, - { "0a01", "ViA, Inc." }, - { "0a05", "Unknown Manufacturer" }, - { "0a07", "Ontrak Control Systems Inc." }, - { "0a0b", "Cybex Computer Products Co." }, - { "0a0d", "Servergy, Inc" }, - { "0a11", "Xentec, Inc." }, - { "0a12", "Cambridge Silicon Radio, Ltd" }, - { "0a13", "Telebyte, Inc." }, - { "0a14", "Spacelabs Medical, Inc." }, - { "0a15", "Scalar Corp." }, - { "0a16", "Trek Technology (S) PTE, Ltd" }, - { "0a17", "Pentax Corp." }, - { "0a18", "Heidelberger Druckmaschinen AG" }, - { "0a19", "Hua Geng Technologies, Inc." }, - { "0a21", "Medtronic Physio Control Corp." }, - { "0a22", "Century Semiconductor USA, Inc." }, - { "0a27", "Datacard Group" }, - { "0a2c", "AK-Modul-Bus Computer GmbH" }, - { "0a34", "TG3 Electronics, Inc." }, - { "0a35", "Radikal Technologies" }, - { "0a39", "Gilat Satellite Networks, Ltd" }, - { "0a3a", "PentaMedia Co., Ltd" }, - { "0a3c", "NTT DoCoMo, Inc." }, - { "0a3d", "Varo Vision" }, - { "0a3f", "Swissonic AG" }, - { "0a43", "Boca Systems, Inc." }, - { "0a46", "Davicom Semiconductor, Inc." }, - { "0a47", "Hirose Electric" }, - { "0a48", "I/O Interconnect" }, - { "0a4a", "Ploytec GmbH" }, - { "0a4b", "Fujitsu Media Devices, Ltd" }, - { "0a4c", "Computex Co., Ltd" }, - { "0a4d", "Evolution Electronics, Ltd" }, - { "0a4e", "Steinberg Soft-und Hardware GmbH" }, - { "0a4f", "Litton Systems, Inc." }, - { "0a50", "Mimaki Engineering Co., Ltd" }, - { "0a51", "Sony Electronics, Inc." }, - { "0a52", "Jebsee Electronics Co., Ltd" }, - { "0a53", "Portable Peripheral Co., Ltd" }, - { "0a5a", "Electronics For Imaging, Inc." }, - { "0a5b", "EAsics NV" }, - { "0a5c", "Broadcom Corp." }, - { "0a5d", "Diatrend Corp." }, - { "0a5f", "Zebra" }, - { "0a62", "MPMan" }, - { "0a66", "ClearCube Technology" }, - { "0a67", "Medeli Electronics Co., Ltd" }, - { "0a68", "Comaide Corp." }, - { "0a69", "Chroma ate, Inc." }, - { "0a6b", "Green House Co., Ltd" }, - { "0a6c", "Integrated Circuit Systems, Inc." }, - { "0a6d", "UPS Manufacturing" }, - { "0a6e", "Benwin" }, - { "0a6f", "Core Technology, Inc." }, - { "0a70", "International Game Technology" }, - { "0a71", "VIPColor Technologies USA, Inc." }, - { "0a72", "Sanwa Denshi" }, - { "0a73", "Mackie Designs" }, - { "0a7d", "NSTL, Inc." }, - { "0a7e", "Octagon Systems Corp." }, - { "0a80", "Rexon Technology Corp., Ltd" }, - { "0a81", "Chesen Electronics Corp." }, - { "0a82", "Syscan" }, - { "0a83", "NextComm, Inc." }, - { "0a84", "Maui Innovative Peripherals" }, - { "0a85", "Idexx Labs" }, - { "0a86", "NITGen Co., Ltd" }, - { "0a89", "Aktiv" }, - { "0a8d", "Picturetel" }, - { "0a8e", "Japan Aviation Electronics Industry, Ltd" }, - { "0a90", "Candy Technology Co., Ltd" }, - { "0a91", "Globlink Technology, Inc." }, - { "0a92", "EGO SYStems, Inc." }, - { "0a93", "C Technologies AB" }, - { "0a94", "Intersense" }, - { "0aa3", "Lava Computer Mfg., Inc." }, - { "0aa4", "Develco Elektronik" }, - { "0aa5", "First International Digital" }, - { "0aa6", "Perception Digital, Ltd" }, - { "0aa7", "Wincor Nixdorf International GmbH" }, - { "0aa8", "TriGem Computer, Inc." }, - { "0aa9", "Baromtec Co." }, - { "0aaa", "Japan CBM Corp." }, - { "0aab", "Vision Shape Europe SA" }, - { "0aac", "iCompression, Inc." }, - { "0aad", "Rohde & Schwarz GmbH & Co. KG" }, - { "0aae", "NEC infrontia Corp. (Nitsuko)" }, - { "0aaf", "Digitalway Co., Ltd" }, - { "0ab0", "Arrow Strong Electronics Co., Ltd" }, - { "0ab1", "FEIG ELECTRONIC GmbH" }, - { "0aba", "Ellisys" }, - { "0abe", "Stereo-Link" }, - { "0abf", "Diolan" }, - { "0ac3", "Sanyo Semiconductor Company Micro" }, - { "0ac4", "Leco Corp." }, - { "0ac5", "I & C Corp." }, - { "0ac6", "Singing Electrons, Inc." }, - { "0ac7", "Panwest Corp." }, - { "0ac8", "Z-Star Microelectronics Corp." }, - { "0ac9", "Micro Solutions, Inc." }, - { "0aca", "OPEN Networks Ltd" }, - { "0acc", "Koga Electronics Co." }, - { "0acd", "ID Tech" }, - { "0ace", "ZyDAS" }, - { "0acf", "Intoto, Inc." }, - { "0ad0", "Intellix Corp." }, - { "0ad1", "Remotec Technology, Ltd" }, - { "0ad2", "Service & Quality Technology Co., Ltd" }, - { "0ada", "Data Encryption Systems Ltd." }, - { "0ae3", "Allion Computer, Inc." }, - { "0ae4", "Taito Corp." }, - { "0ae7", "Neodym Systems, Inc." }, - { "0ae8", "System Support Co., Ltd" }, - { "0ae9", "North Shore Circuit Design L.L.P." }, - { "0aea", "SciEssence, LLC" }, - { "0aeb", "TTP Communications, Ltd" }, - { "0aec", "Neodio Technologies Corp." }, - { "0af0", "Option" }, - { "0af6", "Silver I Co., Ltd" }, - { "0af7", "B2C2, Inc." }, - { "0af9", "Hama, Inc." }, - { "0afa", "DMC Co., Ltd." }, - { "0afc", "Zaptronix Ltd" }, - { "0afd", "Tateno Dennou, Inc." }, - { "0afe", "Cummins Engine Co." }, - { "0aff", "Jump Zone Network Products, Inc." }, - { "0b00", "INGENICO" }, - { "0b05", "ASUSTek Computer, Inc." }, - { "0b0b", "Datamax-O'Neil" }, - { "0b0c", "Todos AB" }, - { "0b0d", "ProjectLab" }, - { "0b0e", "GN Netcom" }, - { "0b0f", "AVID Technology" }, - { "0b10", "Pcally" }, - { "0b11", "I Tech Solutions Co., Ltd" }, - { "0b1e", "Electronic Warfare Assoc., Inc. (EWA)" }, - { "0b1f", "Insyde Software Corp." }, - { "0b20", "TransDimension, Inc." }, - { "0b21", "Yokogawa Electric Corp." }, - { "0b22", "Japan System Development Co., Ltd" }, - { "0b23", "Pan-Asia Electronics Co., Ltd" }, - { "0b24", "Link Evolution Corp." }, - { "0b27", "Ritek Corp." }, - { "0b28", "Kenwood Corp." }, - { "0b2c", "Village Center, Inc." }, - { "0b30", "PNY Technologies, Inc." }, - { "0b33", "Contour Design, Inc." }, - { "0b37", "Hitachi ULSI Systems Co., Ltd" }, - { "0b38", "Gear Head" }, - { "0b39", "Omnidirectional Control Technology, Inc." }, - { "0b3a", "IPaxess" }, - { "0b3b", "Tekram Technology Co., Ltd" }, - { "0b3c", "Olivetti Techcenter" }, - { "0b3e", "Kikusui Electronics Corp." }, - { "0b41", "Hal Corp." }, - { "0b43", "Play.com, Inc." }, - { "0b47", "Sportbug.com, Inc." }, - { "0b48", "TechnoTrend AG" }, - { "0b49", "ASCII Corp." }, - { "0b4b", "Pine Corp. Ltd." }, - { "0b4d", "Graphtec America, Inc." }, - { "0b4e", "Musical Electronics, Ltd" }, - { "0b50", "Dumpries Co., Ltd" }, - { "0b51", "Comfort Keyboard Co." }, - { "0b52", "Colorado MicroDisplay, Inc." }, - { "0b54", "Sinbon Electronics Co., Ltd" }, - { "0b56", "TYI Systems, Ltd" }, - { "0b57", "Beijing HanwangTechnology Co., Ltd" }, - { "0b59", "Lake Communications, Ltd" }, - { "0b5a", "Corel Corp." }, - { "0b5f", "Green Electronics Co., Ltd" }, - { "0b60", "Nsine, Ltd" }, - { "0b61", "NEC Viewtechnology, Ltd" }, - { "0b62", "Orange Micro, Inc." }, - { "0b63", "ADLink Technology, Inc." }, - { "0b64", "Wonderful Wire Cable Co., Ltd" }, - { "0b65", "Expert Magnetics Corp." }, - { "0b66", "Cybiko Inc." }, - { "0b67", "Fairbanks Scales" }, - { "0b69", "CacheVision" }, - { "0b6a", "Maxim Integrated Products" }, - { "0b6f", "Nagano Japan Radio Co., Ltd" }, - { "0b70", "PortalPlayer, Inc." }, - { "0b71", "SHIN-EI Sangyo Co., Ltd" }, - { "0b72", "Embedded Wireless Technology Co., Ltd" }, - { "0b73", "Computone Corp." }, - { "0b75", "Roland DG Corp." }, - { "0b79", "Sunrise Telecom, Inc." }, - { "0b7a", "Zeevo, Inc." }, - { "0b7b", "Taiko Denki Co., Ltd" }, - { "0b7c", "ITRAN Communications, Ltd" }, - { "0b7d", "Astrodesign, Inc." }, - { "0b81", "id3 Technologies" }, - { "0b84", "Rextron Technology, Inc." }, - { "0b85", "Elkat Electronics, Sdn., Bhd." }, - { "0b86", "Exputer Systems, Inc." }, - { "0b87", "Plus-One I & T, Inc." }, - { "0b88", "Sigma Koki Co., Ltd, Technology Center" }, - { "0b89", "Advanced Digital Broadcast, Ltd" }, - { "0b8c", "SMART Technologies Inc." }, - { "0b95", "ASIX Electronics Corp." }, - { "0b96", "Sewon Telecom" }, - { "0b97", "O2 Micro, Inc." }, - { "0b98", "Playmates Toys, Inc." }, - { "0b99", "Audio International, Inc." }, - { "0b9b", "Dipl.-Ing. Stefan Kunde" }, - { "0b9d", "Softprotec Co." }, - { "0b9f", "Chippo Technologies" }, - { "0baf", "U.S. Robotics" }, - { "0bb0", "Concord Camera Corp." }, - { "0bb1", "Infinilink Corp." }, - { "0bb2", "Ambit Microsystems Corp." }, - { "0bb3", "Ofuji Technology" }, - { "0bb4", "HTC (High Tech Computer Corp.)" }, - { "0bb5", "Murata Manufacturing Co., Ltd" }, - { "0bb6", "Network Alchemy" }, - { "0bb7", "Joytech Computer Co., Ltd" }, - { "0bb8", "Hitachi Semiconductor and Devices Sales Co., Ltd" }, - { "0bb9", "Eiger M&C Co., Ltd" }, - { "0bba", "ZAccess Systems" }, - { "0bbb", "General Meters Corp." }, - { "0bbc", "Assistive Technology, Inc." }, - { "0bbd", "System Connection, Inc." }, - { "0bc0", "Knilink Technology, Inc." }, - { "0bc1", "Fuw Yng Electronics Co., Ltd" }, - { "0bc2", "Seagate RSS LLC" }, - { "0bc3", "IPWireless, Inc." }, - { "0bc4", "Microcube Corp." }, - { "0bc5", "JCN Co., Ltd" }, - { "0bc6", "ExWAY, Inc." }, - { "0bc7", "X10 Wireless Technology, Inc." }, - { "0bc8", "Telmax Communications" }, - { "0bc9", "ECI Telecom, Ltd" }, - { "0bca", "Startek Engineering, Inc." }, - { "0bcb", "Perfect Technic Enterprise Co., Ltd" }, - { "0bd7", "Andrew Pargeter & Associates" }, - { "0bda", "Realtek Semiconductor Corp." }, - { "0bdb", "Ericsson Business Mobile Networks BV" }, - { "0bdc", "Y Media Corp." }, - { "0bdd", "Orange PCS" }, - { "0be2", "Kanda Tsushin Kogyo Co., Ltd" }, - { "0be3", "TOYO Corp." }, - { "0be4", "Elka International, Ltd" }, - { "0be5", "DOME imaging systems, Inc." }, - { "0be6", "Dong Guan Humen Wonderful Wire Cable Factory" }, - { "0bed", "MEI" }, - { "0bee", "LTK Industries, Ltd" }, - { "0bef", "Way2Call Communications" }, - { "0bf0", "Pace Micro Technology PLC" }, - { "0bf1", "Intracom S.A." }, - { "0bf2", "Konexx" }, - { "0bf6", "Addonics Technologies, Inc." }, - { "0bf7", "Sunny Giken, Inc." }, - { "0bf8", "Fujitsu Siemens Computers" }, - { "0bfb", "Grass Valley Group" }, - { "0bfd", "Kvaser AB" }, - { "0c00", "FireFly Mouse Mat" }, - { "0c04", "MOTO Development Group, Inc." }, - { "0c05", "Appian Graphics" }, - { "0c06", "Hasbro Games, Inc." }, - { "0c07", "Infinite Data Storage, Ltd" }, - { "0c08", "Agate" }, - { "0c09", "Comjet Information System" }, - { "0c0a", "Highpoint Technologies, Inc." }, - { "0c0b", "Dura Micro, Inc. (Acomdata)" }, - { "0c12", "Zeroplus" }, - { "0c15", "Iris Graphics" }, - { "0c16", "Gyration, Inc." }, - { "0c17", "Cyberboard A/S" }, - { "0c18", "SynerTek Korea, Inc." }, - { "0c19", "cyberPIXIE, Inc." }, - { "0c1a", "Silicon Motion, Inc." }, - { "0c1b", "MIPS Technologies" }, - { "0c1c", "Hang Zhou Silan Electronics Co., Ltd" }, - { "0c1f", "Magicard" }, - { "0c22", "Tally Printer Corp." }, - { "0c23", "Lernout + Hauspie" }, - { "0c24", "Taiyo Yuden" }, - { "0c25", "Sampo Corp." }, - { "0c26", "Prolific Technology Inc." }, - { "0c27", "RFIDeas, Inc" }, - { "0c2e", "Metrologic Instruments" }, - { "0c30", "Mutoh Industries Ltd" }, - { "0c35", "Eagletron, Inc." }, - { "0c36", "E Ink Corp." }, - { "0c37", "e.Digital" }, - { "0c38", "Der An Electric Wire & Cable Co., Ltd" }, - { "0c39", "IFR" }, - { "0c3a", "Furui Precise Component (Kunshan) Co., Ltd" }, - { "0c3b", "Komatsu, Ltd" }, - { "0c3c", "Radius Co., Ltd" }, - { "0c3d", "Innocom, Inc." }, - { "0c3e", "Nextcell, Inc." }, - { "0c40", "ELMCU" }, - { "0c44", "Motorola iDEN" }, - { "0c45", "Microdia" }, - { "0c46", "WaveRider Communications, Inc." }, - { "0c4a", "ALGE-TIMING GmbH" }, - { "0c4b", "Reiner SCT Kartensysteme GmbH" }, - { "0c4c", "Needham's Electronics" }, - { "0c52", "Sealevel Systems, Inc." }, - { "0c53", "ViewPLUS, Inc." }, - { "0c54", "Glory, Ltd" }, - { "0c55", "Spectrum Digital, Inc." }, - { "0c56", "Billion Bright, Ltd" }, - { "0c57", "Imaginative Design Operation Co., Ltd" }, - { "0c58", "Vidar Systems Corp." }, - { "0c59", "Dong Guan Shinko Wire Co., Ltd" }, - { "0c5a", "TRS International Mfg., Inc." }, - { "0c5e", "Xytronix Research & Design" }, - { "0c60", "Apogee Electronics Corp." }, - { "0c62", "Chant Sincere Co., Ltd" }, - { "0c63", "Toko, Inc." }, - { "0c64", "Signality System Engineering Co., Ltd" }, - { "0c65", "Eminence Enterprise Co., Ltd" }, - { "0c66", "Rexon Electronics Corp." }, - { "0c67", "Concept Telecom, Ltd" }, - { "0c6a", "ACS" }, - { "0c6c", "JETI Technische Instrumente GmbH" }, - { "0c70", "MCT Elektronikladen" }, - { "0c72", "PEAK System" }, - { "0c74", "Optronic Laboratories Inc." }, - { "0c76", "JMTek, LLC." }, - { "0c77", "Sipix Group, Ltd" }, - { "0c78", "Detto Corp." }, - { "0c79", "NuConnex Technologies Pte., Ltd" }, - { "0c7a", "Wing-Span Enterprise Co., Ltd" }, - { "0c86", "NDA Technologies, Inc." }, - { "0c88", "Kyocera Wireless Corp." }, - { "0c89", "Honda Tsushin Kogyo Co., Ltd" }, - { "0c8a", "Pathway Connectivity, Inc." }, - { "0c8b", "Wavefly Corp." }, - { "0c8c", "Coactive Networks" }, - { "0c8d", "Tempo" }, - { "0c8e", "Cesscom Co., Ltd" }, - { "0c8f", "Applied Microsystems" }, - { "0c94", "Cryptera" }, - { "0c98", "Berkshire Products, Inc." }, - { "0c99", "Innochips Co., Ltd" }, - { "0c9a", "Hanwool Robotics Corp." }, - { "0c9b", "Jobin Yvon, Inc." }, - { "0c9c", "Brand Innovators BV" }, - { "0c9d", "SemTek" }, - { "0ca2", "Zyfer" }, - { "0ca3", "Sega Corp." }, - { "0ca4", "ST&T Instrument Corp." }, - { "0ca5", "BAE Systems Canada, Inc." }, - { "0ca6", "Castles Technology Co., Ltd" }, - { "0ca7", "Information Systems Laboratories" }, - { "0caa", "Allied Telesis KK." }, - { "0cad", "Motorola CGISS" }, - { "0cae", "Ascom Business Systems, Ltd" }, - { "0caf", "Buslink" }, - { "0cb0", "Flying Pig Systems" }, - { "0cb1", "Innovonics, Inc." }, - { "0cb6", "Celestix Networks, Pte., Ltd" }, - { "0cb7", "Singatron Enterprise Co., Ltd" }, - { "0cb8", "Opticis Co., Ltd" }, - { "0cba", "Trust Electronic (Shanghai) Co., Ltd" }, - { "0cbb", "Shanghai Darong Electronics Co., Ltd" }, - { "0cbc", "Palmax Technology Co., Ltd" }, - { "0cbd", "Pentel Co., Ltd (Electronics Equipment Div.)" }, - { "0cbe", "Keryx Technologies, Inc." }, - { "0cbf", "Union Genius Computer Co., Ltd" }, - { "0cc0", "Kuon Yi Industrial Corp." }, - { "0cc1", "Given Imaging, Ltd" }, - { "0cc2", "Timex Corp." }, - { "0cc3", "Rimage Corp." }, - { "0cc4", "emsys GmbH" }, - { "0cc5", "Sendo" }, - { "0cc6", "Intermagic Corp." }, - { "0cc8", "Technotools Corp." }, - { "0cc9", "BroadMAX Technologies, Inc." }, - { "0cca", "Amphenol" }, - { "0ccb", "SKNet Co., Ltd" }, - { "0ccc", "Domex Technology Corp." }, - { "0ccd", "TerraTec Electronic GmbH" }, - { "0cd4", "Bang Olufsen" }, - { "0cd5", "LabJack Corporation" }, - { "0cd6", "Scheidt & Bachmann" }, - { "0cd7", "NewChip S.r.l." }, - { "0cd8", "JS Digitech, Inc." }, - { "0cd9", "Hitachi Shin Din Cable, Ltd" }, - { "0cde", "Z-Com" }, - { "0ce5", "Validation Technologies International" }, - { "0ce9", "Pico Technology" }, - { "0cf1", "e-Conn Electronic Co., Ltd" }, - { "0cf2", "ENE Technology, Inc." }, - { "0cf3", "Qualcomm Atheros Communications" }, - { "0cf4", "Fomtex Corp." }, - { "0cf5", "Cellink Co., Ltd" }, - { "0cf6", "Compucable Corp." }, - { "0cf7", "ishoni Networks" }, - { "0cf8", "Clarisys, Inc." }, - { "0cf9", "Central System Research Co., Ltd" }, - { "0cfa", "Inviso, Inc." }, - { "0cfc", "Minolta-QMS, Inc." }, - { "0cff", "SAFA MEDIA Co., Ltd." }, - { "0d06", "telos EDV Systementwicklung GmbH" }, - { "0d08", "UTStarcom" }, - { "0d0b", "Contemporary Controls" }, - { "0d0c", "Astron Electronics Co., Ltd" }, - { "0d0d", "MKNet Corp." }, - { "0d0e", "Hybrid Networks, Inc." }, - { "0d0f", "Feng Shin Cable Co., Ltd" }, - { "0d10", "Elastic Networks" }, - { "0d11", "Maspro Denkoh Corp." }, - { "0d12", "Hansol Electronics, Inc." }, - { "0d13", "BMF Corp." }, - { "0d14", "Array Comm, Inc." }, - { "0d15", "OnStream b.v." }, - { "0d16", "Hi-Touch Imaging Technologies Co., Ltd" }, - { "0d17", "NALTEC, Inc." }, - { "0d18", "coaXmedia" }, - { "0d19", "Hank Connection Industrial Co., Ltd" }, - { "0d28", "NXP" }, - { "0d2f", "Andamiro" }, - { "0d32", "Leo Hui Electric Wire & Cable Co., Ltd" }, - { "0d33", "AirSpeak, Inc." }, - { "0d34", "Rearden Steel Technologies" }, - { "0d35", "Dah Kun Co., Ltd" }, - { "0d3a", "Posiflex Technologies, Inc." }, - { "0d3c", "Sri Cable Technology, Ltd" }, - { "0d3d", "Tangtop Technology Co., Ltd" }, - { "0d3e", "Fitcom, inc." }, - { "0d3f", "MTS Systems Corp." }, - { "0d40", "Ascor, Inc." }, - { "0d41", "Ta Yun Terminals Industrial Co., Ltd" }, - { "0d42", "Full Der Co., Ltd" }, - { "0d46", "Kobil Systems GmbH" }, - { "0d48", "Promethean Limited" }, - { "0d49", "Maxtor" }, - { "0d4a", "NF Corp." }, - { "0d4b", "Grape Systems, Inc." }, - { "0d4c", "Tedas AG" }, - { "0d4d", "Coherent, Inc." }, - { "0d4e", "Agere Systems Netherland BV" }, - { "0d4f", "EADS Airbus France" }, - { "0d50", "Cleware GmbH" }, - { "0d51", "Volex (Asia) Pte., Ltd" }, - { "0d53", "HMI Co., Ltd" }, - { "0d54", "Holon Corp." }, - { "0d55", "ASKA Technologies, Inc." }, - { "0d56", "AVLAB Technology, Inc." }, - { "0d57", "Solomon Microtech, Ltd" }, - { "0d59", "TRC Simulators b.v." }, - { "0d5c", "SMC Networks, Inc." }, - { "0d5e", "Myacom, Ltd" }, - { "0d5f", "CSI, Inc." }, - { "0d60", "IVL Technologies, Ltd" }, - { "0d61", "Meilu Electronics (Shenzhen) Co., Ltd" }, - { "0d62", "Darfon Electronics Corp." }, - { "0d63", "Fritz Gegauf AG" }, - { "0d64", "DXG Technology Corp." }, - { "0d65", "KMJP Co., Ltd" }, - { "0d66", "TMT" }, - { "0d67", "Advanet, Inc." }, - { "0d68", "Super Link Electronics Co., Ltd" }, - { "0d69", "NSI" }, - { "0d6a", "Megapower International Corp." }, - { "0d6b", "And-Or Logic" }, - { "0d70", "Try Computer Co., Ltd" }, - { "0d71", "Hirakawa Hewtech Corp." }, - { "0d72", "Winmate Communication, Inc." }, - { "0d73", "Hit's Communications, Inc." }, - { "0d76", "MFP Korea, Inc." }, - { "0d77", "Power Sentry/Newpoint" }, - { "0d78", "Japan Distributor Corp." }, - { "0d7a", "MARX Datentechnik GmbH" }, - { "0d7b", "Wellco Technology Co., Ltd" }, - { "0d7c", "Taiwan Line Tek Electronic Co., Ltd" }, - { "0d7d", "Phison Electronics Corp." }, - { "0d7e", "American Computer & Digital Components" }, - { "0d7f", "Essential Reality LLC" }, - { "0d80", "H.R. Silvine Electronics, Inc." }, - { "0d81", "TechnoVision" }, - { "0d83", "Think Outside, Inc." }, - { "0d87", "Dolby Laboratories Inc." }, - { "0d89", "Oz Software" }, - { "0d8a", "King Jim Co., Ltd" }, - { "0d8b", "Ascom Telecommunications, Ltd" }, - { "0d8c", "C-Media Electronics, Inc." }, - { "0d8d", "Promotion & Display Technology, Ltd" }, - { "0d8e", "Global Sun Technology, Inc." }, - { "0d8f", "Pitney Bowes" }, - { "0d90", "Sure-Fire Electrical Corp." }, - { "0d96", "Skanhex Technology, Inc." }, - { "0d97", "Santa Barbara Instrument Group" }, - { "0d98", "Mars Semiconductor Corp." }, - { "0d99", "Trazer Technologies, Inc." }, - { "0d9a", "RTX AS" }, - { "0d9b", "Tat Shing Electrical Co." }, - { "0d9c", "Chee Chen Hi-Technology Co., Ltd" }, - { "0d9d", "Sanwa Supply, Inc." }, - { "0d9e", "Avaya" }, - { "0d9f", "Powercom Co., Ltd" }, - { "0da0", "Danger Research" }, - { "0da1", "Suzhou Peter's Precise Industrial Co., Ltd" }, - { "0da2", "Land Instruments International, Ltd" }, - { "0da3", "Nippon Electro-Sensory Devices Corp." }, - { "0da4", "Polar Electro Oy" }, - { "0da7", "IOGear, Inc." }, - { "0da8", "softDSP Co., Ltd" }, - { "0dab", "Cubig Group" }, - { "0dad", "Westover Scientific" }, - { "0db0", "Micro Star International" }, - { "0db1", "Wen Te Electronics Co., Ltd" }, - { "0db2", "Shian Hwi Plug Parts, Plastic Factory" }, - { "0db3", "Tekram Technology Co., Ltd" }, - { "0db4", "Chung Fu Chen Yeh Enterprise Corp." }, - { "0db5", "Access IS" }, - { "0db7", "ELCON Systemtechnik" }, - { "0dba", "Digidesign" }, - { "0dbc", "A&D Medical" }, - { "0dbe", "Jiuh Shiuh Precision Industry Co., Ltd" }, - { "0dbf", "Jess-Link International" }, - { "0dc0", "G7 Solutions (formerly Great Notions)" }, - { "0dc1", "Tamagawa Seiki Co., Ltd" }, - { "0dc3", "Athena Smartcard Solutions, Inc." }, - { "0dc4", "inXtron, Inc." }, - { "0dc5", "SDK Co., Ltd" }, - { "0dc6", "Precision Squared Technology Corp." }, - { "0dc7", "First Cable Line, Inc." }, - { "0dcd", "NetworkFab Corp." }, - { "0dd0", "Access Solutions" }, - { "0dd1", "Contek Electronics Co., Ltd" }, - { "0dd2", "Power Quotient International Co., Ltd" }, - { "0dd3", "MediaQ" }, - { "0dd4", "Custom Engineering SPA" }, - { "0dd5", "California Micro Devices" }, - { "0dd7", "Kocom Co., Ltd" }, - { "0dd8", "Netac Technology Co., Ltd" }, - { "0dd9", "HighSpeed Surfing" }, - { "0dda", "Integrated Circuit Solution, Inc." }, - { "0ddb", "Tamarack, Inc." }, - { "0ddd", "Datelink Technology Co., Ltd" }, - { "0dde", "Ubicom, Inc." }, - { "0de0", "BD Consumer Healthcare" }, - { "0de7", "USBmicro" }, - { "0dea", "UTECH Electronic (D.G.) Co., Ltd." }, - { "0ded", "Novasonics" }, - { "0dee", "Lifetime Memory Products" }, - { "0def", "Full Rise Electronic Co., Ltd" }, - { "0df4", "NET&SYS" }, - { "0df6", "Sitecom Europe B.V." }, - { "0df7", "Mobile Action Technology, Inc." }, - { "0dfa", "Toyo Communication Equipment Co., Ltd" }, - { "0dfc", "GeneralTouch Technology Co., Ltd" }, - { "0e03", "Nippon Systemware Co., Ltd" }, - { "0e08", "Winbest Technology Co., Ltd" }, - { "0e0b", "Amigo Technology Inc." }, - { "0e0c", "Gesytec" }, - { "0e0d", "PicoQuant GmbH" }, - { "0e0f", "VMware, Inc." }, - { "0e16", "JMTek, LLC" }, - { "0e17", "Walex Electronic, Ltd" }, - { "0e1a", "Unisys" }, - { "0e1b", "Crewave" }, - { "0e1e", "Green Hills Software" }, - { "0e20", "Pegasus Technologies Ltd." }, - { "0e21", "Cowon Systems, Inc." }, - { "0e22", "Symbian Ltd." }, - { "0e23", "Liou Yuane Enterprise Co., Ltd" }, - { "0e25", "VinChip Systems, Inc." }, - { "0e26", "J-Phone East Co., Ltd" }, - { "0e2e", "Brady Worldwide, Inc." }, - { "0e30", "HeartMath LLC" }, - { "0e34", "Micro Computer Control Corp." }, - { "0e35", "3Pea Technologies, Inc." }, - { "0e36", "TiePie engineering" }, - { "0e38", "Stratitec, Inc." }, - { "0e39", "Smart Modular Technologies, Inc." }, - { "0e3a", "Neostar Technology Co., Ltd" }, - { "0e3b", "Mansella, Ltd" }, - { "0e41", "Line6, Inc." }, - { "0e44", "Sun-Riseful Technology Co., Ltd." }, - { "0e48", "Julia Corp., Ltd" }, - { "0e4a", "Shenzhen Bao Hing Electric Wire & Cable Mfr. Co." }, - { "0e4c", "Radica Games, Ltd" }, - { "0e50", "TechnoData Interware" }, - { "0e55", "Speed Dragon Multimedia, Ltd" }, - { "0e56", "Kingston Technology Company, Inc." }, - { "0e5a", "Active Co., Ltd" }, - { "0e5b", "Union Power Information Industrial Co., Ltd" }, - { "0e5c", "Bitland Information Technology Co., Ltd" }, - { "0e5d", "Neltron Industrial Co., Ltd" }, - { "0e5e", "Conwise Technology Co., Ltd." }, - { "0e66", "Hawking Technologies" }, - { "0e67", "Fossil, Inc." }, - { "0e6a", "Megawin Technology Co., Ltd" }, - { "0e6f", "Logic3" }, - { "0e70", "Tokyo Electronic Industry Co., Ltd" }, - { "0e72", "Hsi-Chin Electronics Co., Ltd" }, - { "0e75", "TVS Electronics, Ltd" }, - { "0e79", "Archos, Inc." }, - { "0e7b", "On-Tech Industry Co., Ltd" }, - { "0e7e", "Gmate, Inc." }, - { "0e82", "Ching Tai Electric Wire & Cable Co., Ltd" }, - { "0e83", "Shin An Wire & Cable Co." }, - { "0e8c", "Well Force Electronic Co., Ltd" }, - { "0e8d", "MediaTek Inc." }, - { "0e8f", "GreenAsia Inc." }, - { "0e90", "WiebeTech, LLC" }, - { "0e91", "VTech Engineering Canada, Ltd" }, - { "0e92", "C's Glory Enterprise Co., Ltd" }, - { "0e93", "eM Technics Co., Ltd" }, - { "0e95", "Future Technology Co., Ltd" }, - { "0e96", "Aplux Communications, Ltd" }, - { "0e97", "Fingerworks, Inc." }, - { "0e98", "Advanced Analogic Technologies, Inc." }, - { "0e99", "Parallel Dice Co., Ltd" }, - { "0e9a", "TA HSING Industries, Ltd" }, - { "0e9b", "ADTEC Corp." }, - { "0e9c", "Streamzap, Inc." }, - { "0e9f", "Tamura Corp." }, - { "0ea0", "Ours Technology, Inc." }, - { "0ea6", "Nihon Computer Co., Ltd" }, - { "0ea7", "MSL Enterprises Corp." }, - { "0ea8", "CenDyne, Inc." }, - { "0ead", "Humax Co., Ltd" }, - { "0eb0", "NovaTech" }, - { "0eb1", "WIS Technologies, Inc." }, - { "0eb2", "Y-S Electronic Co., Ltd" }, - { "0eb3", "Saint Technology Corp." }, - { "0eb7", "Endor AG" }, - { "0eb8", "Mettler Toledo" }, - { "0ebb", "Thermo Fisher Scientific" }, - { "0ebe", "VWeb Corp." }, - { "0ebf", "Omega Technology of Taiwan, Inc." }, - { "0ec0", "LHI Technology (China) Co., Ltd" }, - { "0ec1", "Abit Computer Corp." }, - { "0ec2", "Sweetray Industrial, Ltd" }, - { "0ec3", "Axell Co., Ltd" }, - { "0ec4", "Ballracing Developments, Ltd" }, - { "0ec5", "GT Information System Co., Ltd" }, - { "0ec6", "InnoVISION Multimedia, Ltd" }, - { "0ec7", "Theta Link Corp." }, - { "0ecd", "Lite-On IT Corp." }, - { "0ece", "TaiSol Electronics Co., Ltd" }, - { "0ecf", "Phogenix Imaging, LLC" }, - { "0ed1", "WinMaxGroup" }, - { "0ed2", "Kyoto Micro Computer Co., Ltd" }, - { "0ed3", "Wing-Tech Enterprise Co., Ltd" }, - { "0ed5", "Fiberbyte" }, - { "0eda", "Noriake Itron Corp." }, - { "0edf", "e-MDT Co., Ltd" }, - { "0ee0", "Shima Seiki Mfg., Ltd" }, - { "0ee1", "Sarotech Co., Ltd" }, - { "0ee2", "AMI Semiconductor, Inc." }, - { "0ee3", "ComTrue Technology Corp." }, - { "0ee4", "Sunrich Technology, Ltd" }, - { "0eee", "Digital Stream Technology, Inc." }, - { "0eef", "D-WAV Scientific Co., Ltd" }, - { "0ef0", "Hitachi Cable, Ltd" }, - { "0ef1", "Aichi Micro Intelligent Corp." }, - { "0ef2", "I/O Magic Corp." }, - { "0ef3", "Lynn Products, Inc." }, - { "0ef4", "DSI Datotech" }, - { "0ef5", "PointChips" }, - { "0ef6", "Yield Microelectronics Corp." }, - { "0ef7", "SM Tech Co., Ltd (Tulip)" }, - { "0efd", "Oasis Semiconductor" }, - { "0efe", "Wem Technology, Inc." }, - { "0f03", "Unitek UPS Systems" }, - { "0f06", "Visual Frontier Enterprise Co., Ltd" }, - { "0f08", "CSL Wire & Plug (Shen Zhen) Co." }, - { "0f0c", "CAS Corp." }, - { "0f0d", "Hori Co., Ltd" }, - { "0f0e", "Energy Full Corp." }, - { "0f0f", "Silego Technology Inc" }, - { "0f11", "LD Didactic GmbH" }, - { "0f12", "Mars Engineering Corp." }, - { "0f13", "Acetek Technology Co., Ltd" }, - { "0f14", "Ingenico" }, - { "0f18", "Finger Lakes Instrumentation" }, - { "0f19", "Oracom Co., Ltd" }, - { "0f1b", "Onset Computer Corp." }, - { "0f1c", "Funai Electric Co., Ltd" }, - { "0f1d", "Iwill Corp." }, - { "0f21", "IOI Technology Corp." }, - { "0f22", "Senior Industries, Inc." }, - { "0f23", "Leader Tech Manufacturer Co., Ltd" }, - { "0f24", "Flex-P Industries, Snd., Bhd." }, - { "0f2d", "ViPower, Inc." }, - { "0f2e", "Geniality Maple Technology Co., Ltd" }, - { "0f2f", "Priva Design Services" }, - { "0f30", "Jess Technology Co., Ltd" }, - { "0f31", "Chrysalis Development" }, - { "0f32", "YFC-BonEagle Electric Co., Ltd" }, - { "0f37", "Kokuyo Co., Ltd" }, - { "0f38", "Nien-Yi Industrial Corp." }, - { "0f39", "TG3 Electronics" }, - { "0f3d", "Airprime, Incorporated" }, - { "0f41", "RDC Semiconductor Co., Ltd" }, - { "0f42", "Nital Consulting Services, Inc." }, - { "0f44", "Polhemus" }, - { "0f49", "Evolis SA" }, - { "0f4b", "St. John Technology Co., Ltd" }, - { "0f4c", "WorldWide Cable Opto Corp." }, - { "0f4d", "Microtune, Inc." }, - { "0f4e", "Freedom Scientific" }, - { "0f52", "Wing Key Electrical Co., Ltd" }, - { "0f53", "Dongguan White Horse Cable Factory, Ltd" }, - { "0f54", "Kawai Musical Instruments Mfg. Co., Ltd" }, - { "0f55", "AmbiCom, Inc." }, - { "0f5c", "Prairiecomm, Inc." }, - { "0f5d", "NewAge International, LLC" }, - { "0f5f", "Key Technology Corp." }, - { "0f60", "NTK, Ltd" }, - { "0f61", "Varian, Inc." }, - { "0f62", "Acrox Technologies Co., Ltd" }, - { "0f63", "LeapFrog Enterprises" }, - { "0f68", "Kobe Steel, Ltd" }, - { "0f69", "Dionex Corp." }, - { "0f6a", "Vibren Technologies, Inc." }, - { "0f6e", "INTELLIGENT SYSTEMS" }, - { "0f73", "DFI" }, - { "0f78", "Guntermann & Drunck GmbH" }, - { "0f7c", "DQ Technology, Inc." }, - { "0f7d", "NetBotz, Inc." }, - { "0f7e", "Fluke Corp." }, - { "0f88", "VTech Holdings, Ltd" }, - { "0f8b", "Yazaki Corp." }, - { "0f8c", "Young Generation International Corp." }, - { "0f8d", "Uniwill Computer Corp." }, - { "0f8e", "Kingnet Technology Co., Ltd" }, - { "0f8f", "Soma Networks" }, - { "0f97", "CviLux Corp." }, - { "0f98", "CyberBank Corp." }, - { "0f9c", "Hyun Won, Inc." }, - { "0f9e", "Lucent Technologies" }, - { "0fa3", "Starconn Electronic Co., Ltd" }, - { "0fa4", "ATL Technology" }, - { "0fa5", "Sotec Co., Ltd" }, - { "0fa7", "Epox Computer Co., Ltd" }, - { "0fa8", "Logic Controls, Inc." }, - { "0faf", "Winpoint Electronic Corp." }, - { "0fb0", "Haurtian Wire & Cable Co., Ltd" }, - { "0fb1", "Inclose Design, Inc." }, - { "0fb2", "Juan-Chern Industrial Co., Ltd" }, - { "0fb6", "Heber Ltd" }, - { "0fb8", "Wistron Corp." }, - { "0fb9", "AACom Corp." }, - { "0fba", "San Shing Electronics Co., Ltd" }, - { "0fbb", "Bitwise Systems, Inc." }, - { "0fc1", "Mitac Internatinal Corp." }, - { "0fc2", "Plug and Jack Industrial, Inc." }, - { "0fc5", "Delcom Engineering" }, - { "0fc6", "Dataplus Supplies, Inc." }, - { "0fca", "Research In Motion, Ltd." }, - { "0fce", "Sony Ericsson Mobile Communications AB" }, - { "0fcf", "Dynastream Innovations, Inc." }, - { "0fd0", "Tulip Computers B.V." }, - { "0fd1", "Giant Electronics Ltd." }, - { "0fd2", "Seac Banche" }, - { "0fd4", "Tenovis GmbH & Co., KG" }, - { "0fd5", "Direct Access Technology, Inc." }, - { "0fd9", "Elgato Systems GmbH" }, - { "0fda", "Quantec Networks GmbH" }, - { "0fdc", "Micro Plus" }, - { "0fde", "Oregon Scientific" }, - { "0fe0", "Osterhout Design Group" }, - { "0fe2", "Air Techniques" }, - { "0fe4", "IN-Tech Electronics, Ltd" }, - { "0fe5", "Greenconn (U.S.A.), Inc." }, - { "0fe6", "ICS Advent" }, - { "0fe9", "DVICO" }, - { "0fea", "United Computer Accessories" }, - { "0feb", "CRS Electronic Co., Ltd" }, - { "0fec", "UMC Electronics Co., Ltd" }, - { "0fed", "Access Co., Ltd" }, - { "0fee", "Xsido Corp." }, - { "0fef", "MJ Research, Inc." }, - { "0ff6", "Core Valley Co., Ltd" }, - { "0ff7", "CHI SHING Computer Accessories Co., Ltd" }, - { "0ffc", "Clavia DMI AB" }, - { "0ffd", "EarlySense" }, - { "0fff", "Aopen, Inc." }, - { "1000", "Speed Tech Corp." }, - { "1001", "Ritronics Components (S) Pte., Ltd" }, - { "1003", "Sigma Corp." }, - { "1004", "LG Electronics, Inc." }, - { "1005", "Apacer Technology, Inc." }, - { "1006", "iRiver, Ltd." }, - { "1009", "Emuzed, Inc." }, - { "100a", "AV Chaseway, Ltd" }, - { "100b", "Chou Chin Industrial Co., Ltd" }, - { "100d", "Netopia, Inc." }, - { "1010", "Fukuda Denshi Co., Ltd" }, - { "1011", "Mobile Media Tech." }, - { "1012", "SDKM Fibres, Wires & Cables Berhad" }, - { "1013", "TST-Touchless Sensor Technology AG" }, - { "1014", "Densitron Technologies PLC" }, - { "1015", "Softronics Pty., Ltd" }, - { "1016", "Xiamen Hung's Enterprise Co., Ltd" }, - { "1017", "Speedy Industrial Supplies, Pte., Ltd" }, - { "1019", "Elitegroup Computer Systems (ECS)" }, - { "1020", "Labtec" }, - { "1022", "Shinko Shoji Co., Ltd" }, - { "1025", "Hyper-Paltek" }, - { "1026", "Newly Corp." }, - { "1027", "Time Domain" }, - { "1028", "Inovys Corp." }, - { "1029", "Atlantic Coast Telesys" }, - { "102a", "Ramos Technology Co., Ltd" }, - { "102b", "Infotronic America, Inc." }, - { "102c", "Etoms Electronics Corp." }, - { "102d", "Winic Corp." }, - { "1031", "Comax Technology, Inc." }, - { "1032", "C-One Technology Corp." }, - { "1033", "Nucam Corp." }, - { "1038", "SteelSeries ApS" }, - { "1039", "devolo AG" }, - { "103a", "PSA" }, - { "103d", "Stanton" }, - { "1043", "iCreate Technologies Corp." }, - { "1044", "Chu Yuen Enterprise Co., Ltd" }, - { "1046", "Winbond Electronics Corp. [hex]" }, - { "1048", "Targus Group International" }, - { "104b", "Mylex / Buslogic" }, - { "104c", "AMCO TEC International, Inc." }, - { "104d", "Newport Corporation" }, - { "104f", "WB Electronics" }, - { "1050", "Yubico.com" }, - { "1053", "Immanuel Electronics Co., Ltd" }, - { "1054", "BMS International Beheer N.V." }, - { "1055", "Complex Micro Interconnection Co., Ltd" }, - { "1056", "Hsin Chen Ent Co., Ltd" }, - { "1057", "ON Semiconductor" }, - { "1058", "Western Digital Technologies, Inc." }, - { "1059", "Giesecke & Devrient GmbH" }, - { "105b", "Foxconn International, Inc." }, - { "105c", "Hong Ji Electric Wire & Cable (Dongguan) Co., Ltd" }, - { "105d", "Delkin Devices, Inc." }, - { "105e", "Valence Semiconductor Design, Ltd" }, - { "105f", "Chin Shong Enterprise Co., Ltd" }, - { "1060", "Easthome Industrial Co., Ltd" }, - { "1063", "Motorola Electronics Taiwan, Ltd [hex]" }, - { "1065", "CCYU Technology" }, - { "1068", "Micropi Elettronica" }, - { "106a", "Loyal Legend, Ltd" }, - { "106c", "Curitel Communications, Inc." }, - { "106d", "San Chieh Manufacturing, Ltd" }, - { "106e", "ConectL" }, - { "106f", "Money Controls" }, - { "1076", "GCT Semiconductor, Inc." }, - { "107b", "Gateway, Inc." }, - { "107d", "Arlec Australia, Ltd" }, - { "107e", "Midoriya Electric Co., Ltd" }, - { "107f", "KidzMouse, Inc." }, - { "1082", "Shin-Etsukaken Co., Ltd" }, - { "1083", "Canon Electronics, Inc." }, - { "1084", "Pantech Co., Ltd" }, - { "108a", "Chloride Power Protection" }, - { "108b", "Grand-tek Technology Co., Ltd" }, - { "108c", "Robert Bosch GmbH" }, - { "108e", "Lotes Co., Ltd." }, - { "1091", "Numerik Jena" }, - { "1099", "Surface Optics Corp." }, - { "109a", "DATASOFT Systems GmbH" }, - { "109b", "Hisense" }, - { "109f", "eSOL Co., Ltd" }, - { "10a0", "Hirotech, Inc." }, - { "10a3", "Mitsubishi Materials Corp." }, - { "10a9", "SK Teletech Co., Ltd" }, - { "10aa", "Cables To Go" }, - { "10ab", "USI Co., Ltd" }, - { "10ac", "Honeywell, Inc." }, - { "10ae", "Princeton Technology Corp." }, - { "10af", "Liebert Corp." }, - { "10b5", "Comodo (PLX?)" }, - { "10b8", "DiBcom" }, - { "10bb", "TM Technology, Inc." }, - { "10bc", "Dinging Technology Co., Ltd" }, - { "10bd", "TMT Technology, Inc." }, - { "10bf", "SmartHome" }, - { "10c3", "Universal Laser Systems, Inc." }, - { "10c4", "Silicon Labs" }, - { "10c5", "Sanei Electric, Inc." }, - { "10c6", "Intec, Inc." }, - { "10cb", "Eratech" }, - { "10cc", "GBM Connector Co., Ltd" }, - { "10cd", "Kycon, Inc." }, - { "10ce", "Silicon Labs" }, - { "10cf", "Velleman Components, Inc." }, - { "10d1", "Hottinger Baldwin Measurement" }, - { "10d2", "RayComposer - R. Adams" }, - { "10d4", "Man Boon Manufactory, Ltd" }, - { "10d5", "Uni Class Technology Co., Ltd" }, - { "10d6", "Actions Semiconductor Co., Ltd" }, - { "10de", "Authenex, Inc." }, - { "10df", "In-Win Development, Inc." }, - { "10e0", "Post-Op Video, Inc." }, - { "10e1", "CablePlus, Ltd" }, - { "10e2", "Nada Electronics, Ltd" }, - { "10ec", "Vast Technologies, Inc." }, - { "10f0", "Nexio Co., Ltd" }, - { "10f1", "Importek" }, - { "10f5", "Turtle Beach" }, - { "10f8", "Cesys GmbH" }, - { "10fb", "Pictos Technologies, Inc." }, - { "10fd", "Anubis Electronics, Ltd" }, - { "10fe", "Thrane & Thrane" }, - { "1100", "VirTouch, Ltd" }, - { "1101", "EasyPass Industrial Co., Ltd" }, - { "1108", "Brightcom Technologies, Ltd" }, - { "110a", "Moxa Technologies Co., Ltd." }, - { "1110", "Analog Devices Canada, Ltd (Allied Telesyn)" }, - { "1111", "Pandora International Ltd." }, - { "1112", "YM ELECTRIC CO., Ltd" }, - { "1113", "Medion AG" }, - { "111e", "VSO Electric Co., Ltd" }, - { "112a", "RedRat" }, - { "112e", "Master Hill Electric Wire and Cable Co., Ltd" }, - { "112f", "Cellon International, Inc." }, - { "1130", "Tenx Technology, Inc." }, - { "1131", "Integrated System Solution Corp." }, - { "1132", "Toshiba Corp., Digital Media Equipment [hex]" }, - { "1136", "CTS Electronincs" }, - { "113c", "Arin Tech Co., Ltd" }, - { "113d", "Mapower Electronics Co., Ltd" }, - { "113f", "Integrated Biometrics, LLC" }, - { "1141", "V One Multimedia, Pte., Ltd" }, - { "1142", "CyberScan Technologies, Inc." }, - { "1145", "Japan Radio Company" }, - { "1146", "Shimane SANYO Electric Co., Ltd." }, - { "1147", "Ever Great Electric Wire and Cable Co., Ltd" }, - { "114b", "Sphairon Access Systems GmbH" }, - { "114c", "Tinius Olsen Testing Machine Co., Inc." }, - { "114d", "Alpha Imaging Technology Corp." }, - { "114f", "Wavecom" }, - { "115b", "Salix Technology Co., Ltd." }, - { "1162", "Secugen Corp." }, - { "1163", "DeLorme Publishing, Inc." }, - { "1164", "YUAN High-Tech Development Co., Ltd" }, - { "1165", "Telson Electronics Co., Ltd" }, - { "1166", "Bantam Interactive Technologies" }, - { "1167", "Salient Systems Corp." }, - { "1168", "BizConn International Corp." }, - { "116e", "Gigastorage Corp." }, - { "116f", "Silicon 10 Technology Corp." }, - { "1175", "Shengyih Steel Mold Co., Ltd" }, - { "117d", "Santa Electronic, Inc." }, - { "117e", "JNC, Inc." }, - { "1182", "Venture Corp., Ltd" }, - { "1183", "Compaq Computer Corp. [hex] (Digital Dream Unknown)" }, - { "1184", "Kyocera Elco Corp." }, - { "1188", "Bloomberg L.P." }, - { "1189", "Acer Communications & Multimedia" }, - { "118f", "You Yang Technology Co., Ltd" }, - { "1190", "Tripace" }, - { "1191", "Loyalty Founder Enterprise Co., Ltd" }, - { "1196", "Yankee Robotics, LLC" }, - { "1197", "Technoimagia Co., Ltd" }, - { "1198", "StarShine Technology Corp." }, - { "1199", "Sierra Wireless, Inc." }, - { "119a", "ZHAN QI Technology Co., Ltd" }, - { "119b", "ruwido austria GmbH" }, - { "11a0", "Chipcon AS" }, - { "11a3", "Technovas Co., Ltd" }, - { "11aa", "GlobalMedia Group, LLC" }, - { "11ab", "Exito Electronics Co., Ltd" }, - { "11ac", "Nike" }, - { "11b0", "ATECH FLASH TECHNOLOGY" }, - { "11be", "R&D International NV" }, - { "11c0", "Betop" }, - { "11c5", "Inmax" }, - { "11c9", "Nacon" }, - { "11ca", "VeriFone Inc" }, - { "11db", "Topfield Co., Ltd." }, - { "11e6", "K.I. Technology Co. Ltd." }, - { "11f5", "Siemens AG" }, - { "11f6", "Prolific" }, - { "11f7", "Alcatel (?)" }, - { "1203", "TSC Auto ID Technology Co., Ltd" }, - { "1209", "Generic" }, - { "120e", "Hudson Soft Co., Ltd" }, - { "120f", "Magellan" }, - { "1210", "DigiTech" }, - { "121e", "Jungsoft Co., Ltd" }, - { "121f", "Panini S.p.A." }, - { "1220", "TC Electronic" }, - { "1221", "Unknown manufacturer" }, - { "1222", "TiPro" }, - { "1223", "SKYCABLE ENTERPRISE. CO., LTD." }, - { "1228", "Datapaq Limited" }, - { "1230", "Chipidea-Microelectronica, S.A." }, - { "1233", "Denver Electronics" }, - { "1234", "Brain Actuated Technologies" }, - { "1235", "Focusrite-Novation" }, - { "1241", "Belkin" }, - { "1243", "Holtek Semiconductor, Inc." }, - { "124a", "AirVast" }, - { "124b", "Nyko (Honey Bee)" }, - { "124c", "MXI - Memory Experts International, Inc." }, - { "125c", "Apogee Inc." }, - { "125d", "JMicron" }, - { "125f", "A-DATA Technology Co., Ltd." }, - { "1260", "Standard Microsystems Corp." }, - { "1264", "Covidien Energy-based Devices" }, - { "1266", "Pirelli Broadband Solutions" }, - { "1267", "Logic3 / SpectraVideo plc" }, - { "126c", "Aristocrat Technologies" }, - { "126d", "Bel Stewart" }, - { "126e", "Strobe Data, Inc." }, - { "126f", "TwinMOS" }, - { "1274", "Ensoniq" }, - { "1275", "Xaxero Marine Software Engineering, Ltd." }, - { "1278", "Starlight Xpress" }, - { "1283", "zebris Medical GmbH" }, - { "1286", "Marvell Semiconductor, Inc." }, - { "1291", "Qualcomm Flarion Technologies, Inc. / Leadtek Research, Inc." }, - { "1292", "Innomedia" }, - { "1293", "Belkin Components [hex]" }, - { "1294", "RISO KAGAKU CORP." }, - { "1297", "DekTec" }, - { "129b", "CyberTAN Technology" }, - { "12a7", "Trendchip Technologies Corp." }, - { "12ab", "Honey Bee Electronic International Ltd." }, - { "12b8", "Zhejiang Xinya Electronic Technology Co., Ltd." }, - { "12b9", "E28" }, - { "12ba", "Licensed by Sony Computer Entertainment America" }, - { "12bd", "Gembird" }, - { "12c4", "Autocue Group Ltd" }, - { "12cf", "DEXIN" }, - { "12d1", "Huawei Technologies Co., Ltd." }, - { "12d2", "LINE TECH INDUSTRIAL CO., LTD." }, - { "12d3", "LINAK" }, - { "12d6", "EMS Dr. Thomas Wuensche" }, - { "12d7", "BETTER WIRE FACTORY CO., LTD." }, - { "12d8", "Araneus Information Systems Oy" }, - { "12e6", "Waldorf Music GmbH" }, - { "12ef", "Tapwave, Inc." }, - { "12f2", "ViewPlus Technologies, Inc." }, - { "12f5", "Dynamic System Electronics Corp." }, - { "12f7", "Memorex Products, Inc." }, - { "12fd", "AIN Comm. Technology Co., Ltd" }, - { "12ff", "Fascinating Electronics, Inc." }, - { "1306", "FM20 Barcode Scanner" }, - { "1307", "Transcend Information, Inc." }, - { "1308", "Shuttle, Inc." }, - { "1310", "Roper" }, - { "1312", "ICS Electronics" }, - { "1313", "ThorLabs" }, - { "131d", "Natural Point" }, - { "1325", "ams AG" }, - { "132a", "Envara Inc." }, - { "132b", "Konica Minolta" }, - { "133e", "Kemper Digital GmbH" }, - { "1342", "Mobility" }, - { "1343", "Citizen Systems" }, - { "1345", "Sino Lite Technology Corp." }, - { "1347", "Moravian Instruments" }, - { "1348", "Katsuragawa Electric Co., Ltd." }, - { "134c", "PanJit International Inc." }, - { "134e", "Digby's Bitpile, Inc. DBA D Bit" }, - { "1357", "P&E Microcomputer Systems" }, - { "135e", "Insta GmbH" }, - { "135f", "Control Development Inc." }, - { "1366", "SEGGER" }, - { "136b", "STEC" }, - { "136e", "Andor Technology Ltd." }, - { "1370", "Swissbit" }, - { "1371", "CNet Technology Inc." }, - { "1376", "Vimtron Electronics Co., Ltd." }, - { "1377", "Sennheiser electronic GmbH & Co. KG" }, - { "137b", "SCAPS GmbH" }, - { "137c", "YASKAWA ELECTRIC CORP." }, - { "1385", "Netgear, Inc" }, - { "138a", "Validity Sensors, Inc." }, - { "138e", "Jungo LTD" }, - { "1390", "TOMTOM B.V." }, - { "1391", "IdealTEK, Inc." }, - { "1395", "Sennheiser Communications" }, - { "1397", "BEHRINGER International GmbH" }, - { "1398", "Q-tec" }, - { "13ad", "Baltech" }, - { "13b0", "PerkinElmer Optoelectronics" }, - { "13b1", "Linksys" }, - { "13b2", "Alesis" }, - { "13b3", "Nippon Dics Co., Ltd." }, - { "13ba", "PCPlay" }, - { "13be", "Ricoh Printing Systems, Ltd." }, - { "13ca", "JyeTai Precision Industrial Co., Ltd." }, - { "13cf", "Wisair Ltd." }, - { "13d0", "Techsan Electronics Co., Ltd." }, - { "13d1", "A-Max Technology Macao Commercial Offshore Co. Ltd." }, - { "13d2", "Shark Multimedia" }, - { "13d3", "IMC Networks" }, - { "13d7", "Guidance Software, Inc." }, - { "13dc", "ALEREON, INC." }, - { "13dd", "i.Tech Dynamic Limited" }, - { "13e1", "Kaibo Wire & Cable (Shenzhen) Co., Ltd." }, - { "13e5", "Rane" }, - { "13e6", "TechnoScope Co., Ltd." }, - { "13ea", "Hengstler" }, - { "13ec", "Zydacron" }, - { "13ee", "MosArt" }, - { "13fd", "Initio Corporation" }, - { "13fe", "Kingston Technology Company Inc." }, - { "1400", "Axxion Group Corp." }, - { "1402", "Bowe Bell & Howell" }, - { "1403", "Sitronix" }, - { "1404", "Fundamental Software, Inc." }, - { "1409", "IDS Imaging Development Systems GmbH" }, - { "140e", "Telechips, Inc." }, - { "1410", "Novatel Wireless" }, - { "1415", "Nam Tai E&E Products Ltd. or OmniVision Technologies, Inc." }, - { "1419", "ABILITY ENTERPRISE CO., LTD." }, - { "1421", "Sensor Technology" }, - { "1424", "Posnet Polska S.A." }, - { "1429", "Vega Technologies Industrial (Austria) Co." }, - { "142a", "Thales E-Transactions" }, - { "142b", "Arbiter Systems, Inc." }, - { "1430", "RedOctane" }, - { "1431", "Pertech Resources, Inc." }, - { "1435", "Wistron NeWeb" }, - { "1436", "Denali Software, Inc." }, - { "143c", "Altek Corporation" }, - { "1443", "Digilent" }, - { "1446", "X.J.GROUP" }, - { "1451", "Force Dimension" }, - { "1452", "Dai Nippon Printing, Inc" }, - { "1453", "Radio Shack" }, - { "1456", "Extending Wire & Cable Co., Ltd." }, - { "1457", "First International Computer, Inc." }, - { "145f", "Trust" }, - { "1460", "Tatung Co." }, - { "1461", "Staccato Communications" }, - { "1462", "Micro Star International" }, - { "146b", "BigBen Interactive" }, - { "1472", "Huawei-3Com" }, - { "147a", "Formosa Industrial Computing, Inc." }, - { "147e", "Upek" }, - { "147f", "Hama GmbH & Co., KG" }, - { "1482", "Vaillant" }, - { "1484", "Elsa AG [hex]" }, - { "1485", "Silicom" }, - { "1487", "DSP Group, Ltd." }, - { "148e", "EVATRONIX SA" }, - { "148f", "Ralink Technology, Corp." }, - { "1491", "Futronic Technology Co. Ltd." }, - { "1493", "Suunto" }, - { "1497", "Panstrong Company Ltd." }, - { "1498", "Microtek International Inc." }, - { "149a", "Imagination Technologies" }, - { "14aa", "WideView Technology Inc." }, - { "14ad", "CTK Corporation" }, - { "14ae", "Printronix Inc." }, - { "14af", "ATP Electronics Inc." }, - { "14b0", "StarTech.com Ltd." }, - { "14b2", "Ralink Technology, Corp." }, - { "14c0", "Rockwell Automation, Inc." }, - { "14c2", "Gemlight Computer, Ltd" }, - { "14c8", "Zytronic" }, - { "14cd", "Super Top" }, - { "14d8", "JAMER INDUSTRIES CO., LTD." }, - { "14dd", "Raritan Computer, Inc." }, - { "14e0", "WiNRADiO Communications" }, - { "14e1", "Dialogue Technology Corp." }, - { "14e5", "SAIN Information & Communications Co., Ltd." }, - { "14ea", "Planex Communications" }, - { "14ed", "Shure Inc." }, - { "14f7", "TechniSat Digital GmbH" }, - { "1500", "Ellisys" }, - { "1501", "Pine-Tum Enterprise Co., Ltd." }, - { "1504", "Bixolon CO LTD" }, - { "1508", "Fibocom" }, - { "1509", "First International Computer, Inc." }, - { "1513", "medMobile" }, - { "1514", "Actel" }, - { "1516", "CompUSA" }, - { "1518", "Cheshire Engineering Corp." }, - { "1519", "Comneon" }, - { "151f", "Opal Kelly Incorporated" }, - { "1520", "Bitwire Corp." }, - { "1524", "ENE Technology Inc" }, - { "1527", "Silicon Portals" }, - { "1529", "UBIQUAM Co., Ltd." }, - { "152a", "Thesycon Systemsoftware & Consulting GmbH" }, - { "152b", "MIR Srl" }, - { "152d", "JMicron Technology Corp. / JMicron USA Technology Corp." }, - { "152e", "LG (HLDS)" }, - { "1532", "Razer USA, Ltd" }, - { "153b", "TerraTec Electronic GmbH" }, - { "1546", "U-Blox AG" }, - { "1547", "SG Intec Ltd & Co KG" }, - { "154a", "Celectronic GmbH" }, - { "154b", "PNY" }, - { "154d", "ConnectCounty Holdings Berhad" }, - { "154e", "D&M Holdings, Inc. (Denon/Marantz)" }, - { "154f", "SNBC CO., Ltd" }, - { "1554", "Prolink Microsystems Corp." }, - { "1557", "OQO" }, - { "1568", "Sunf Pu Technology Co., Ltd" }, - { "156f", "Quantum Corporation" }, - { "1570", "ALLTOP TECHNOLOGY CO., LTD." }, - { "157b", "Ketron SRL" }, - { "157e", "TRENDnet" }, - { "1582", "Fiberline" }, - { "1587", "SMA Technologie AG" }, - { "158d", "Oakley Inc." }, - { "158e", "JDS Uniphase Corporation (JDSU)" }, - { "1598", "Kunshan Guoji Electronics Co., Ltd." }, - { "15a2", "Freescale Semiconductor, Inc." }, - { "15a4", "Afatech Technologies, Inc." }, - { "15a8", "Teams Power Limited" }, - { "15a9", "Gemtek" }, - { "15aa", "Gearway Electronics (Dong Guan) Co., Ltd." }, - { "15ad", "VMware Inc." }, - { "15ba", "Olimex Ltd." }, - { "15c0", "XL Imaging" }, - { "15c2", "SoundGraph Inc." }, - { "15c5", "Pressure Profile Systems, Inc." }, - { "15c6", "Laboratoires MXM" }, - { "15c8", "KTF Technologies" }, - { "15c9", "D-Box Technologies" }, - { "15ca", "Textech International Ltd." }, - { "15d5", "Coulomb Electronics Ltd." }, - { "15d9", "Trust International B.V." }, - { "15dc", "Hynix Semiconductor Inc." }, - { "15e0", "Seong Ji Industrial Co., Ltd." }, - { "15e1", "RSA" }, - { "15e4", "Numark" }, - { "15e8", "SohoWare" }, - { "15e9", "Pacific Digital Corp." }, - { "15ec", "Belcarra Technologies Corp." }, - { "15f4", "HanfTek" }, - { "1604", "Tascam" }, - { "1605", "ACCES I/O Products, Inc." }, - { "1606", "Umax" }, - { "1608", "Inside Out Networks [hex]" }, - { "160a", "VIA Technologies, Inc." }, - { "160e", "INRO" }, - { "1614", "Amoi Electronics" }, - { "1617", "Sony Corp." }, - { "1619", "L & K Precision Technology Co., Ltd." }, - { "161c", "Digitech Systems" }, - { "1621", "Wionics Research" }, - { "1628", "Stonestreet One, Inc." }, - { "162a", "Airgo Networks Inc." }, - { "162f", "WiQuest Communications, Inc." }, - { "1630", "2Wire, Inc." }, - { "1631", "Good Way Technology" }, - { "1633", "AIM GmbH" }, - { "1645", "Entrega [hex]" }, - { "1649", "SofTec Microsystems" }, - { "164a", "ChipX" }, - { "164c", "Matrix Vision GmbH" }, - { "1657", "Struck Innovative Systeme GmbH" }, - { "165b", "Frontier Design Group" }, - { "165c", "Kondo Kagaku" }, - { "1660", "Creatix Polymedia GmbH" }, - { "1667", "GIGA-TMS INC." }, - { "1668", "Actiontec Electronics, Inc. [hex]" }, - { "1669", "PiKRON Ltd. [hex]" }, - { "166a", "Clipsal" }, - { "1677", "China Huada Integrated Circuit Design (Group) Co., Ltd. (CIDC Group)" }, - { "1679", "Total Phase" }, - { "167b", "Pure Digital Technologies, Inc." }, - { "1680", "Golden Bridge Electech Inc." }, - { "1681", "Prevo Technologies, Inc." }, - { "1682", "Maxwise Production Enterprise Ltd." }, - { "1684", "Godspeed Computer Corp." }, - { "1685", "Delock" }, - { "1686", "ZOOM Corporation" }, - { "1687", "Kingmax Digital Inc." }, - { "1688", "Saab AB" }, - { "1689", "Razer USA, Ltd" }, - { "168c", "Atheros Communications" }, - { "1690", "Askey Computer Corp. [hex]" }, - { "1696", "Hitachi Video and Information System, Inc." }, - { "1697", "VTec Test, Inc." }, - { "16a5", "Shenzhen Zhengerya Cable Co., Ltd." }, - { "16a6", "Unigraf" }, - { "16ab", "Global Sun Technology" }, - { "16ac", "Dongguan ChingLung Wire & Cable Co., Ltd." }, - { "16b4", "iStation" }, - { "16b5", "Persentec, Inc." }, - { "16c0", "Van Ooijen Technische Informatica" }, - { "16ca", "Wireless Cables, Inc." }, - { "16cc", "silex technology, Inc." }, - { "16d0", "MCS" }, - { "16d1", "Suprema Inc." }, - { "16d3", "Frontline Test Equipment, Inc." }, - { "16d5", "AnyDATA Corporation" }, - { "16d6", "JABLOCOM s.r.o." }, - { "16d8", "CMOTECH Co., Ltd." }, - { "16dc", "Wiener, Plein & Baus" }, - { "16de", "Telemecanique" }, - { "16df", "King Billion Electronics Co., Ltd." }, - { "16f0", "GN Hearing A/S" }, - { "16f5", "Futurelogic Inc." }, - { "1702", "FDI-MATELEC" }, - { "1706", "BlueView Technologies, Inc." }, - { "1707", "ARTIMI" }, - { "170b", "Swissonic" }, - { "170d", "Avnera" }, - { "1711", "Leica Microsystems" }, - { "1724", "Meyer Instruments (MIS)" }, - { "1725", "Vitesse Semiconductor" }, - { "1726", "Axesstel, Inc." }, - { "172f", "Waltop International Corp." }, - { "1733", "Cellink Technology Co., Ltd" }, - { "1736", "CANON IMAGING SYSTEM TECHNOLOGIES INC." }, - { "1737", "802.11g Adapter [Linksys WUSB54GC v3]" }, - { "173a", "Roche" }, - { "173d", "QSENN" }, - { "1740", "Senao" }, - { "1743", "General Atomics" }, - { "1748", "MQP Electronics" }, - { "174c", "ASMedia Technology Inc." }, - { "174f", "Syntek" }, - { "1753", "GERTEC Telecomunicacoes Ltda." }, - { "1756", "ENENSYS Technologies" }, - { "1759", "LucidPort Technology, Inc." }, - { "1761", "ASUSTek Computer, Inc. (wrong ID)" }, - { "1770", "MSI" }, - { "1772", "System Level Solutions, Inc." }, - { "1776", "Arowana" }, - { "1777", "Microscan Systems, Inc." }, - { "177f", "Sweex" }, - { "1781", "Multiple Vendors" }, - { "1782", "Spreadtrum Communications Inc." }, - { "1784", "TopSeed Technology Corp." }, - { "1787", "ATI AIB" }, - { "1788", "ShenZhen Litkconn Technology Co., Ltd." }, - { "178e", "ASUSTek Computer, Inc. (wrong ID)" }, - { "1796", "Printrex, Inc." }, - { "1797", "JALCO CO., LTD." }, - { "1799", "Thales Norway A/S" }, - { "179d", "Ricavision International, Inc." }, - { "17a0", "Samson Technologies Corp." }, - { "17a4", "Concept2" }, - { "17a5", "Advanced Connection Technology Inc." }, - { "17a7", "MICOMSOFT CO., LTD." }, - { "17a8", "Kamstrup A/S" }, - { "17b3", "Grey Innovation" }, - { "17b5", "Lunatone" }, - { "17ba", "SAURIS GmbH" }, - { "17c3", "Singim International Corp." }, - { "17cc", "Native Instruments" }, - { "17cf", "Hip Hing Cable & Plug Mfy. Ltd." }, - { "17d0", "Sanford L.P." }, - { "17d3", "Korea Techtron Co., Ltd." }, - { "17e9", "DisplayLink" }, - { "17eb", "Cornice, Inc." }, - { "17ef", "Lenovo" }, - { "17f4", "WaveSense" }, - { "17f5", "K.K. Rocky" }, - { "17f6", "Unicomp, Inc." }, - { "1809", "Advantech" }, - { "1822", "Twinhan" }, - { "1831", "Gwo Jinn Industries Co., Ltd." }, - { "1832", "Huizhou Shenghua Industrial Co., Ltd." }, - { "183d", "VIVOphone" }, - { "1843", "Vaisala" }, - { "1849", "ASRock Incorporation" }, - { "184f", "K2L GmbH" }, - { "1852", "GYROCOM C&C Co., LTD" }, - { "1854", "Memory Devices Ltd." }, - { "185b", "Compro" }, - { "1861", "Tech Technology Industrial Company" }, - { "1862", "Teridian Semiconductor Corp." }, - { "1870", "Nexio Co., Ltd" }, - { "1871", "Aveo Technology Corp." }, - { "1873", "Navilock" }, - { "187c", "Alienware Corporation" }, - { "187f", "Siano Mobile Silicon" }, - { "1892", "Vast Technologies, Inc." }, - { "1894", "Topseed" }, - { "1897", "Evertop Wire Cable Co." }, - { "189f", "3Shape A/S" }, - { "18a4", "CSSN" }, - { "18a5", "Verbatim, Ltd" }, - { "18b1", "Petalynx" }, - { "18b4", "e3C Technologies" }, - { "18b6", "Mikkon Technology Limited" }, - { "18b7", "Zotek Electronic Co., Ltd." }, - { "18c5", "AMIT Technology, Inc." }, - { "18cd", "Ecamm" }, - { "18d1", "Google Inc." }, - { "18d5", "Starline International Group Limited" }, - { "18d9", "Kaba" }, - { "18dc", "LKC Technologies, Inc." }, - { "18dd", "Planon System Solutions Inc." }, - { "18e3", "Fitipower Integrated Technology Inc" }, - { "18e8", "Qcom" }, - { "18ea", "Matrox Graphics, Inc." }, - { "18ec", "Arkmicro Technologies Inc." }, - { "18ef", "ELV Elektronik AG" }, - { "18f8", "[Maxxter]" }, - { "18fb", "Scriptel Corporation" }, - { "18fd", "FineArch Inc." }, - { "1901", "GE Healthcare" }, - { "1908", "GEMBIRD" }, - { "190d", "Motorola GSG" }, - { "1914", "Alco Digital Devices Limited" }, - { "1915", "Nordic Semiconductor ASA" }, - { "191c", "Innovative Technology LTD" }, - { "1923", "FitLinxx" }, - { "1926", "NextWindow" }, - { "1928", "Proceq SA" }, - { "192f", "Avago Technologies, Pte." }, - { "1930", "Shenzhen Xianhe Technology Co., Ltd." }, - { "1931", "Ningbo Broad Telecommunication Co., Ltd." }, - { "1934", "Feature Integration Technology Inc. (Fintek)" }, - { "1935", "Elektron Music Machines" }, - { "1938", "Meinberg Funkuhren GmbH & Co. KG" }, - { "1941", "Dream Link" }, - { "1943", "Sensoray Co., Inc." }, - { "1949", "Lab126, Inc." }, - { "194f", "PreSonus Audio Electronics, Inc." }, - { "1951", "Hyperstone AG" }, - { "1953", "Ironkey Inc." }, - { "1954", "Radiient Technologies" }, - { "195d", "Itron Technology iONE" }, - { "1963", "IK Multimedia" }, - { "1965", "Uniden Corporation" }, - { "1967", "CASIO HITACHI Mobile Communications Co., Ltd." }, - { "196b", "Wispro Technology Inc." }, - { "1970", "Dane-Elec Corp. USA" }, - { "1973", "Spectralink Corporation" }, - { "1975", "Dongguan Guneetal Wire & Cable Co., Ltd." }, - { "1976", "Chipsbrand Microelectronics (HK) Co., Ltd." }, - { "1977", "T-Logic" }, - { "197d", "Leuze electronic" }, - { "1980", "Storage Appliance Corporation" }, - { "1989", "Nuconn Technology Corp." }, - { "198f", "Beceem Communications Inc." }, - { "1990", "Acron Precision Industrial Co., Ltd." }, - { "1995", "Trillium Technology Pty. Ltd." }, - { "1996", "PixeLINK" }, - { "1997", "Shenzhen Riitek Technology Co., Ltd" }, - { "199b", "MicroStrain, Inc." }, - { "199e", "The Imaging Source Europe GmbH" }, - { "199f", "Benica Corporation" }, - { "19a5", "HARRIS Corp." }, - { "19a8", "Biforst Technology Inc." }, - { "19ab", "Bodelin" }, - { "19af", "S Life" }, - { "19b2", "Batronix" }, - { "19b4", "Celestron" }, - { "19b5", "B & W Group" }, - { "19b6", "Infotech Logistic, LLC" }, - { "19b9", "Data Robotics" }, - { "19c2", "Futuba" }, - { "19ca", "Mindtribe" }, - { "19cf", "Parrot SA" }, - { "19d1", "BYD" }, - { "19d2", "ZTE WCDMA Technologies MSM" }, - { "19db", "KFI Printers" }, - { "19e1", "WeiDuan Electronic Accessory (S.Z.) Co., Ltd." }, - { "19e8", "Industrial Technology Research Institute" }, - { "19ef", "Pak Heng Technology (Shenzhen) Co., Ltd." }, - { "19f7", "RODE Microphones" }, - { "19fa", "Gampaq Co.Ltd" }, - { "19fd", "MTI Instruments Inc." }, - { "19ff", "Dynex" }, - { "1a08", "Bellwood International, Inc." }, - { "1a0a", "USB-IF non-workshop" }, - { "1a12", "KES Co., Ltd." }, - { "1a1d", "Veho" }, - { "1a25", "Amphenol East Asia Ltd." }, - { "1a2a", "Seagate Branded Solutions" }, - { "1a2c", "China Resource Semico Co., Ltd" }, - { "1a32", "Quanta Microsystems, Inc." }, - { "1a34", "ACRUX" }, - { "1a36", "Biwin Technology Ltd." }, - { "1a40", "Terminus Technology Inc." }, - { "1a41", "Action Electronics Co., Ltd." }, - { "1a44", "VASCO Data Security International" }, - { "1a4a", "Silicon Image" }, - { "1a4b", "SafeBoot International B.V." }, - { "1a5a", "Tandberg Data" }, - { "1a61", "Abbott Diabetes Care" }, - { "1a64", "Mastervolt" }, - { "1a6a", "Spansion Inc." }, - { "1a6d", "SamYoung Electronics Co., Ltd" }, - { "1a6e", "Global Unichip Corp." }, - { "1a6f", "Sagem Orga GmbH" }, - { "1a72", "Physik Instrumente" }, - { "1a79", "Bayer Health Care LLC" }, - { "1a7b", "Lumberg Connect GmbH & Co. KG" }, - { "1a7c", "Evoluent" }, - { "1a7e", "Meltec Systementwicklung" }, - { "1a81", "Holtek Semiconductor, Inc." }, - { "1a86", "QinHeng Electronics" }, - { "1a89", "Dynalith Systems Co., Ltd." }, - { "1a8b", "SGS Taiwan Ltd." }, - { "1a8d", "BandRich, Inc." }, - { "1a98", "Leica Camera AG" }, - { "1aa4", "Data Drive Thru, Inc." }, - { "1aa5", "UBeacon Technologies, Inc." }, - { "1aa6", "eFortune Technology Corp." }, - { "1aab", "Silvercreations Software AG" }, - { "1aad", "KeeTouch" }, - { "1ab1", "Rigol Technologies" }, - { "1ab2", "Allied Vision" }, - { "1acb", "Salcomp Plc" }, - { "1acc", "Midiplus Co, Ltd." }, - { "1ad1", "Desay Wire Co., Ltd." }, - { "1ad4", "APS" }, - { "1adb", "Schweitzer Engineering Laboratories, Inc" }, - { "1ae4", "ic-design Reinhard Gottinger GmbH" }, - { "1ae7", "X-TENSIONS" }, - { "1aed", "High Top Precision Electronic Co., Ltd." }, - { "1aef", "Conntech Electronic (Suzhou) Corporation" }, - { "1af1", "Connect One Ltd." }, - { "1af3", "Kingsis Technology Corporation" }, - { "1afe", "A. Eberle GmbH & Co. KG" }, - { "1b04", "Meilhaus Electronic GmbH" }, - { "1b0e", "BLUTRONICS S.r.l." }, - { "1b12", "Eventide" }, - { "1b1c", "Corsair" }, - { "1b1e", "General Imaging / General Electric" }, - { "1b1f", "eQ-3 Entwicklung GmbH" }, - { "1b20", "MStar Semiconductor, Inc." }, - { "1b22", "WiLinx Corp." }, - { "1b24", "Telegent Systems, Inc." }, - { "1b26", "Cellex Power Products, Inc." }, - { "1b27", "Current Electronics Inc." }, - { "1b28", "NAVIsis Inc." }, - { "1b32", "Ugobe Life Forms, Inc." }, - { "1b36", "ViXS Systems, Inc." }, - { "1b3b", "iPassion Technology Inc." }, - { "1b3f", "Generalplus Technology Inc." }, - { "1b47", "Energizer Holdings, Inc." }, - { "1b48", "Plastron Precision Co., Ltd." }, - { "1b52", "ARH Inc." }, - { "1b59", "K.S. Terminals Inc." }, - { "1b5a", "Chao Zhou Kai Yuan Electric Co., Ltd." }, - { "1b65", "The Hong Kong Standards and Testing Centre Ltd." }, - { "1b71", "Fushicai" }, - { "1b72", "ATERGI TECHNOLOGY CO., LTD." }, - { "1b73", "Fresco Logic" }, - { "1b75", "Ovislink Corp." }, - { "1b76", "Legend Silicon Corp." }, - { "1b80", "Afatech" }, - { "1b86", "Dongguan Guanshang Electronics Co., Ltd." }, - { "1b88", "ShenMing Electron (Dong Guan) Co., Ltd." }, - { "1b8c", "Altium Limited" }, - { "1b8d", "e-MOVE Technology Co., Ltd." }, - { "1b8e", "Amlogic, Inc." }, - { "1b8f", "MA LABS, Inc." }, - { "1b96", "N-Trig" }, - { "1b98", "YMax Communications Corp." }, - { "1b99", "Shenzhen Yuanchuan Electronic" }, - { "1ba1", "JINQ CHERN ENTERPRISE CO., LTD." }, - { "1ba2", "Lite Metals & Plastic (Shenzhen) Co., Ltd." }, - { "1ba4", "Ember Corporation" }, - { "1ba6", "Abilis Systems" }, - { "1ba8", "China Telecommunication Technology Labs" }, - { "1bad", "Harmonix Music" }, - { "1bae", "Vuzix Corporation" }, - { "1bbb", "T & A Mobile Phones" }, - { "1bbd", "Videology Imaging Solutions, Inc." }, - { "1bc0", "Beijing Senseshield Technology Co.,Ltd." }, - { "1bc4", "Ford Motor Co." }, - { "1bc5", "AVIXE Technology (China) Ltd." }, - { "1bc7", "Telit Wireless Solutions" }, - { "1bce", "Contac Cable Industrial Limited" }, - { "1bcf", "Sunplus Innovation Technology Inc." }, - { "1bd0", "Hangzhou Riyue Electronic Co., Ltd." }, - { "1bd5", "BG Systems, Inc." }, - { "1bda", "University Of Southampton" }, - { "1bde", "P-TWO INDUSTRIES, INC." }, - { "1bef", "Shenzhen Tongyuan Network-Communication Cables Co., Ltd" }, - { "1bf0", "RealVision Inc." }, - { "1bf5", "Extranet Systems Inc." }, - { "1bf6", "Orient Semiconductor Electronics, Ltd." }, - { "1bfd", "TouchPack" }, - { "1c02", "Kreton Corporation" }, - { "1c04", "QNAP System Inc." }, - { "1c05", "Shenxhen Stager Electric" }, - { "1c0c", "Ionics EMS, Inc." }, - { "1c0d", "Relm Wireless" }, - { "1c10", "Lanterra Industrial Co., Ltd." }, - { "1c11", "Input Club Inc." }, - { "1c13", "ALECTRONIC LIMITED" }, - { "1c1a", "Datel Electronics Ltd." }, - { "1c1b", "Volkswagen of America, Inc." }, - { "1c1f", "Goldvish S.A." }, - { "1c20", "Fuji Electric Device Technology Co., Ltd." }, - { "1c21", "ADDMM LLC" }, - { "1c22", "ZHONGSHAN CHIANG YU ELECTRIC CO., LTD." }, - { "1c26", "Shanghai Haiying Electronics Co., Ltd." }, - { "1c27", "HuiYang D & S Cable Co., Ltd." }, - { "1c28", "PMD Technologies" }, - { "1c29", "Elster GmbH" }, - { "1c31", "LS Cable Ltd." }, - { "1c34", "SpringCard" }, - { "1c37", "Authorizer Technologies, Inc." }, - { "1c3d", "NONIN MEDICAL INC." }, - { "1c3e", "Wep Peripherals" }, - { "1c40", "EZPrototypes" }, - { "1c49", "Cherng Weei Technology Corp." }, - { "1c4b", "Geratherm Medical AG" }, - { "1c4f", "SiGma Micro" }, - { "1c57", "Zalman Tech Co., Ltd." }, - { "1c6b", "Philips & Lite-ON Digital Solutions Corporation" }, - { "1c6c", "Skydigital Inc." }, - { "1c71", "Humanware Inc" }, - { "1c73", "AMT" }, - { "1c75", "Arturia" }, - { "1c77", "Kaetat Industrial Co., Ltd." }, - { "1c78", "Datascope Corp." }, - { "1c79", "Unigen Corporation" }, - { "1c7a", "LighTuning Technology Inc." }, - { "1c7b", "LUXSHARE PRECISION INDUSTRY (SHENZHEN) CO., LTD." }, - { "1c82", "Atracsys" }, - { "1c83", "Schomaecker GmbH" }, - { "1c87", "2N TELEKOMUNIKACE a.s." }, - { "1c88", "Somagic, Inc." }, - { "1c89", "HONGKONG WEIDIDA ELECTRON LIMITED" }, - { "1c8e", "ASTRON INTERNATIONAL CORP." }, - { "1c98", "ALPINE ELECTRONICS, INC." }, - { "1c9e", "OMEGA TECHNOLOGY" }, - { "1ca0", "ACCARIO Inc." }, - { "1ca1", "Symwave" }, - { "1cac", "Kinstone" }, - { "1cb3", "Aces Electronic Co., Ltd." }, - { "1cb4", "OPEX CORPORATION" }, - { "1cb6", "IdeaCom Technology Inc." }, - { "1cbe", "Luminary Micro Inc." }, - { "1cbf", "FORTAT SKYMARK INDUSTRIAL COMPANY" }, - { "1cc0", "PlantSense" }, - { "1cca", "NextWave Broadband Inc." }, - { "1ccd", "Bodatong Technology (Shenzhen) Co., Ltd." }, - { "1cd4", "adp corporation" }, - { "1cd5", "Firecomms Ltd." }, - { "1cd6", "Antonio Precise Products Manufactory Ltd." }, - { "1cde", "Telecommunications Technology Association (TTA)" }, - { "1cdf", "WonTen Technology Co., Ltd." }, - { "1ce0", "EDIMAX TECHNOLOGY CO., LTD." }, - { "1ce1", "Amphenol KAE" }, - { "1cf1", "Dresden Elektronik" }, - { "1cfc", "ANDES TECHNOLOGY CORPORATION" }, - { "1cfd", "Flextronics Digital Design Japan, LTD." }, - { "1d03", "iCON" }, - { "1d07", "Solid-Motion" }, - { "1d08", "NINGBO HENTEK DRAGON ELECTRONICS CO., LTD." }, - { "1d09", "TechFaith Wireless Technology Limited" }, - { "1d0a", "Johnson Controls, Inc. The Automotive Business Unit" }, - { "1d0b", "HAN HUA CABLE & WIRE TECHNOLOGY (J.X.) CO., LTD." }, - { "1d0d", "TDKMedia" }, - { "1d0f", "Sonix Technology Co., Ltd." }, - { "1d14", "ALPHA-SAT TECHNOLOGY LIMITED" }, - { "1d17", "C-Thru Music Ltd." }, - { "1d19", "Dexatek Technology Ltd." }, - { "1d1f", "Diostech Co., Ltd." }, - { "1d20", "SAMTACK INC." }, - { "1d27", "ASUS" }, - { "1d34", "Dream Cheeky" }, - { "1d45", "Touch" }, - { "1d4d", "PEGATRON CORPORATION" }, - { "1d50", "OpenMoko, Inc." }, - { "1d57", "Xenta" }, - { "1d5b", "Smartronix, Inc." }, - { "1d5c", "Fresco Logic" }, - { "1d6b", "Linux Foundation" }, - { "1d88", "Mahr GmbH" }, - { "1d90", "Citizen" }, - { "1d9d", "Sigma Sport" }, - { "1dd2", "Leo Bodnar Electronics Ltd" }, - { "1dd3", "Dajc Inc." }, - { "1de1", "Actions Microelectronics Co." }, - { "1de6", "MICRORISC s.r.o." }, - { "1df7", "SDRplay" }, - { "1e0e", "Qualcomm / Option" }, - { "1e10", "Point Grey Research, Inc." }, - { "1e17", "Mirion Technologies Dosimetry Services Division" }, - { "1e1d", "Kanguru Solutions" }, - { "1e1f", "INVIA" }, - { "1e29", "Festo AG & Co. KG" }, - { "1e2d", "Gemalto M2M GmbH" }, - { "1e3d", "Chipsbank Microelectronics Co., Ltd" }, - { "1e41", "Cleverscope" }, - { "1e44", "SHIMANO INC." }, - { "1e4e", "Cubeternet" }, - { "1e54", "TypeMatrix" }, - { "1e68", "TrekStor GmbH & Co. KG" }, - { "1e71", "NZXT" }, - { "1e74", "Coby Electronics Corporation" }, - { "1e7b", "Zurich Instruments" }, - { "1e7d", "ROCCAT" }, - { "1e8e", "Airbus Defence and Space" }, - { "1e91", "Other World Computing" }, - { "1ea7", "SHARKOON Technologies GmbH" }, - { "1eab", "Fujian Newland Computer Co., Ltd" }, - { "1eaf", "Leaflabs" }, - { "1eb8", "Modacom Co., Ltd." }, - { "1ebb", "NuCORE Technology, Inc." }, - { "1ecb", "AMTelecom" }, - { "1ed8", "FENDER MUSICAL INSTRUMENTS CORPORATION" }, - { "1eda", "AirTies Wireless Networks" }, - { "1edb", "Blackmagic design" }, - { "1ee8", "ONDA COMMUNICATION S.p.a." }, - { "1ef6", "EADS Deutschland GmbH" }, - { "1f0c", "CMX Systems" }, - { "1f28", "Cal-Comp" }, - { "1f3a", "Allwinner Technology" }, - { "1f44", "The Neat Company" }, - { "1f48", "H-TRONIC GmbH" }, - { "1f4d", "G-Tek Electronics Group" }, - { "1f52", "Systems & Electronic Development FZCO (SEDCO)" }, - { "1f6f", "Aliph" }, - { "1f75", "Innostor Technology Corporation" }, - { "1f82", "TANDBERG" }, - { "1f84", "Alere, Inc." }, - { "1f87", "Stantum" }, - { "1f9b", "Ubiquiti Networks, Inc." }, - { "1fab", "Samsung Opto-Electroncs Co., Ltd." }, - { "1fac", "Franklin Wireless" }, - { "1fae", "Lumidigm" }, - { "1fb2", "Withings" }, - { "1fba", "DERMALOG Identification Systems GmbH" }, - { "1fbd", "Delphin Technology AG" }, - { "1fc9", "NXP Semiconductors" }, - { "1fde", "ILX Lightwave Corporation" }, - { "1fe7", "Vertex Wireless Co., Ltd." }, - { "1ff7", "CVT Electronics.Co.,Ltd" }, - { "1ffb", "Pololu Corporation" }, - { "1fff", "Ideofy Inc." }, - { "2000", "CMX Systems" }, - { "2001", "D-Link Corp." }, - { "2002", "DAP Technologies" }, - { "2003", "detectomat" }, - { "2006", "LenovoMobile" }, - { "2009", "iStorage" }, - { "200c", "Reloop" }, - { "2013", "PCTV Systems" }, - { "2018", "Deutsche Telekom AG" }, - { "2019", "PLANEX" }, - { "201e", "Haier" }, - { "203a", "PARALLELS" }, - { "203d", "Encore Electronics Inc." }, - { "2040", "Hauppauge" }, - { "2047", "Texas Instruments" }, - { "2058", "Nano River Technology" }, - { "2077", "Taicang T&W Electronics Co. Ltd" }, - { "2080", "Barnes & Noble" }, - { "2086", "SIMPASS" }, - { "2087", "Cando" }, - { "20a0", "Clay Logic" }, - { "20b1", "XMOS Ltd" }, - { "20b3", "Hanvon" }, - { "20b7", "Qi Hardware" }, - { "20bc", "ShenZhen ShanWan Technology Co., Ltd." }, - { "20ce", "Minicircuits" }, - { "20df", "Simtec Electronics" }, - { "20f0", "L3Harris Technologies" }, - { "20f1", "NET New Electronic Technology GmbH" }, - { "20f4", "TRENDnet" }, - { "20f7", "XIMEA" }, - { "2100", "RT Systems" }, - { "2101", "ActionStar" }, - { "2104", "Tobii Technology AB" }, - { "2107", "RDING TECH CO.,LTD" }, - { "2109", "VIA Labs, Inc." }, - { "2113", "Softkinetic" }, - { "2116", "KT Tech" }, - { "211f", "CELOT Corporation" }, - { "2123", "Cheeky Dream" }, - { "2125", "Fiberpro Inc." }, - { "2133", "signotec GmbH" }, - { "2149", "Advanced Silicon S.A." }, - { "214b", "Huasheng Electronics" }, - { "214e", "Swiftpoint" }, - { "2162", "Broadxent (Creative Labs)" }, - { "2166", "JVC Kenwood" }, - { "2184", "GW Instek" }, - { "2188", "No brand" }, - { "219c", "Seal One AG" }, - { "21a1", "Emotiv Systems Pty. Ltd." }, - { "21a4", "Electronic Arts Inc." }, - { "21a9", "Saleae, Inc." }, - { "21ab", "Planeta Informatica" }, - { "21b4", "AudioQuest" }, - { "21d6", "Agecodagis SARL" }, - { "2207", "Fuzhou Rockchip Electronics Company" }, - { "221a", "ZTEX GmbH" }, - { "2222", "MacAlly" }, - { "2226", "Copper Mountain technologies" }, - { "2227", "SAMWOO Enterprise" }, - { "222a", "ILI Technology Corp." }, - { "2230", "Plugable" }, - { "2232", "Silicon Motion" }, - { "2233", "RadioShack Corporation" }, - { "2237", "Kobo Inc." }, - { "2245", "Aspeed Technology, Inc." }, - { "224f", "APDM" }, - { "2256", "Faderfox" }, - { "225d", "Morpho" }, - { "226e", "DISPLAX" }, - { "228d", "8D Technologies inc." }, - { "22a4", "VERZO Technology" }, - { "22a6", "Pie Digital, Inc." }, - { "22a7", "Fortinet Technologies" }, - { "22b1", "Secret Labs LLC" }, - { "22b8", "Motorola PCS" }, - { "22b9", "eTurboTouch Technology, Inc." }, - { "22ba", "Technology Innovation Holdings, Ltd" }, - { "22c9", "StepOver GmbH" }, - { "22cd", "Kinova Robotics Inc." }, - { "22d4", "Laview Technology" }, - { "22d9", "OPPO Electronics Corp." }, - { "22db", "Phase One" }, - { "22dc", "Mellanox Technologies" }, - { "22de", "WeTelecom Incorporated" }, - { "22df", "Medicom MTD, Ltd" }, - { "22e0", "secunet Security Networks AG" }, - { "22e8", "Cambridge Audio" }, - { "2304", "Pinnacle Systems, Inc." }, - { "230d", "Teracom" }, - { "2314", "INQ Mobile" }, - { "2318", "Shining Technologies, Inc. [hex]" }, - { "2319", "Tronsmart" }, - { "232b", "Pantum Ltd." }, - { "232e", "EA Elektro-Automatik GmbH & Co. KG" }, - { "2340", "Teleepoch" }, - { "2341", "Arduino SA" }, - { "2349", "P2 Engineering Group, LLC" }, - { "234b", "Free Software Initiative of Japan" }, - { "2357", "TP-Link" }, - { "2366", "Bitmanufaktur GmbH" }, - { "2367", "Teenage Engineering" }, - { "2368", "Peterson Electro-Musical Products Inc." }, - { "236a", "SiBEAM" }, - { "2373", "Pumatronix Ltda" }, - { "2375", "Digit@lway, Inc." }, - { "2378", "OnLive" }, - { "237d", "Cradlepoint" }, - { "2386", "Raydium Corporation" }, - { "238b", "Hytera Communications" }, - { "239a", "Adafruit" }, - { "23a0", "BIFIT" }, - { "23a6", "Tronical Components GmbH" }, - { "23b4", "Dental Wings Inc." }, - { "23c7", "Gemini" }, - { "23fc", "SesKion GmbH" }, - { "2405", "Custom Computer Services, Inc" }, - { "2406", "SANHO Digital Electronics Co., Ltd." }, - { "2420", "IRiver" }, - { "242e", "Vossloh-Schwabe Deutschland GmbH" }, - { "2433", "ASETEK" }, - { "2443", "Aessent Technology Ltd" }, - { "2457", "Ocean Optics Inc." }, - { "2458", "Bluegiga Technologies" }, - { "245f", "Chord Electronics Limited" }, - { "2464", "Nest" }, - { "2466", "Fractal Audio Systems" }, - { "2476", "YEI Technology" }, - { "2478", "Tripp-Lite" }, - { "248a", "Maxxter" }, - { "249c", "M2Tech s.r.l." }, - { "24a4", "Primare AB" }, - { "24ae", "Shenzhen Rapoo Technology Co., Ltd." }, - { "24c0", "Chaney Instrument" }, - { "24c6", "ThrustMaster, Inc." }, - { "24cf", "Lytro, Inc." }, - { "24dc", "Aladdin R.D." }, - { "24e0", "Yoctopuce Sarl" }, - { "24e1", "Paratronic" }, - { "24e3", "K-Touch" }, - { "24ea", "Meva" }, - { "24ed", "Zen Group" }, - { "24f0", "Metadot" }, - { "24ff", "Acroname Inc." }, - { "2500", "Ettus Research LLC" }, - { "2516", "Cooler Master Co., Ltd." }, - { "2520", "ANA-U GmbH" }, - { "2527", "Software Bisque" }, - { "2537", "Norelsys" }, - { "2544", "Energy Micro AS" }, - { "2546", "Ravensburger" }, - { "2548", "Pulse-Eight" }, - { "254e", "SHF Communication Technologies AG" }, - { "2554", "ASSA ABLOY AB" }, - { "2555", "Basis Science Inc." }, - { "255e", "Beijing Bonxeon Technology Co., Ltd." }, - { "2560", "e-con Systems" }, - { "2563", "ShenZhen ShanWan Technology Co., Ltd." }, - { "256b", "Perreaux Industries Ltd" }, - { "256f", "3Dconnexion" }, - { "2573", "ESI Audiotechnik GmbH" }, - { "2574", "AVer Information, Inc." }, - { "2575", "Weida Hi-Tech Co., Ltd." }, - { "2576", "AFO Co., Ltd." }, - { "2578", "Pluscom" }, - { "2581", "Plug-up" }, - { "258d", "Sequans Communications" }, - { "259a", "TriQuint Semiconductor" }, - { "25a7", "Areson Technology Corp" }, - { "25b5", "FlatFrog" }, - { "25bb", "Brunner Elektronik AG" }, - { "25bf", "Elegant Invention" }, - { "25c4", "ARCAM" }, - { "25c6", "Vitus Audio (AVA Group A/S)" }, - { "25c8", "Visual Planet Ltd" }, - { "25da", "Netatmo" }, - { "25dd", "Bit4id Srl" }, - { "25e3", "Lumigon" }, - { "25f0", "ShanWan" }, - { "25fb", "Pentax Ricoh Imaging Co., Ltd" }, - { "2604", "Tenda" }, - { "2625", "MilDef AB" }, - { "2626", "Aruba Networks" }, - { "262a", "SAVITECH Corp." }, - { "2632", "TwinMOS" }, - { "2639", "Xsens" }, - { "264a", "Thermaltake" }, - { "2650", "Electronics For Imaging, Inc. [hex]" }, - { "2659", "Sundtek" }, - { "2662", "Moog Music Inc." }, - { "266e", "Silicon Integrated Systems" }, - { "2672", "GoPro" }, - { "2676", "Basler AG" }, - { "2685", "Cardo Peripheral Systems LTD" }, - { "2687", "Fitbit Inc." }, - { "2689", "StepOver International GmbH" }, - { "268b", "Dimension Engineering" }, - { "26a9", "Research Industrial Systems Engineering" }, - { "26aa", "Yaesu Musen" }, - { "26b5", "Electrocompaniet" }, - { "26bd", "Integral Memory" }, - { "26e2", "Ingenieurbuero Dietzsch und Thiele, PartG" }, - { "26f2", "Micromega" }, - { "2707", "Bardac Corporation" }, - { "270d", "Rosand Technologies" }, - { "2717", "Xiaomi Inc." }, - { "272a", "StarLeaf Ltd." }, - { "272c", "Signum Systems" }, - { "2730", "Citizen" }, - { "2735", "DigitalWay" }, - { "273f", "Hughski Limited" }, - { "2756", "Victor Hasselblad AB" }, - { "2759", "Philip Morris Products S.A." }, - { "2765", "Firstbeat Technologies, Ltd." }, - { "2766", "LifeScan" }, - { "2770", "NHJ, Ltd" }, - { "27a8", "Square, Inc." }, - { "27b8", "ThingM" }, - { "27bd", "Codethink Ltd." }, - { "27c0", "Cadwell Laboratories, Inc." }, - { "27c6", "Shenzhen Goodix Technology Co.,Ltd." }, - { "27d4", "Blackstar Amplification Limited" }, - { "27dd", "Mindeo" }, - { "27f2", "Softnautics LLP" }, - { "2803", "StarLine LLC." }, - { "2806", "SIMPASS" }, - { "2817", "Signal Hound, Inc." }, - { "2818", "Codex Digital Limited" }, - { "2821", "ASUSTek Computer Inc." }, - { "2822", "REFLEXdigital" }, - { "2833", "Oculus VR, Inc." }, - { "2836", "OUYA" }, - { "286b", "STANEO SAS" }, - { "2886", "Seeed Technology Co., Ltd." }, - { "2890", "Teknic, Inc" }, - { "2899", "Toptronic Industrial Co., Ltd" }, - { "289b", "Dracal/Raphnet technologies" }, - { "289d", "Seek Thermal, Inc." }, - { "28bd", "XP-Pen" }, - { "28c7", "Ultimaker B.V." }, - { "28d4", "Devialet" }, - { "28de", "Valve Software" }, - { "28e0", "PT. Prasimax Inovasi Teknologi" }, - { "28e9", "GDMicroelectronics" }, - { "28f3", "Clover Network, Inc." }, - { "28f9", "Profitap HQ BV" }, - { "290c", "R. Hamilton & Co. Ltd." }, - { "2912", "Audioengine" }, - { "2916", "Yota Devices" }, - { "2931", "Jolla Oy" }, - { "2939", "Zaber Technologies Inc." }, - { "2957", "Obsidian Research Corporation" }, - { "2961", "Miselu" }, - { "296b", "Xacti Corporation" }, - { "2972", "FiiO Electronics Technology" }, - { "298d", "Next Biometrics" }, - { "29bd", "Silicon Works" }, - { "29c1", "Taztag" }, - { "29c2", "Lewitt GmbH" }, - { "29c3", "Noviga" }, - { "29e2", "Huatune Technology (Shanghai) Co., Ltd." }, - { "29e7", "Brunel University" }, - { "29e8", "4Links Limited" }, - { "29ea", "Kinesis Corporation" }, - { "29f1", "Canaan Creative Co., Ltd" }, - { "2a03", "dog hunter AG" }, - { "2a0e", "Shenzhen DreamSource Technology Co., Ltd." }, - { "2a13", "Grabba International" }, - { "2a19", "Numato Systems Pvt. Ltd" }, - { "2a1d", "Oxford Nanopore Technologies, Ltd" }, - { "2a37", "RTD Embedded Technologies, Inc." }, - { "2a39", "RME" }, - { "2a3c", "Trinamic Motion Control GmbH & Co KG" }, - { "2a45", "Meizu Corp." }, - { "2a47", "Mundo Reader, S.L." }, - { "2a4b", "EMULEX Corporation" }, - { "2a62", "Flymaster Avionics" }, - { "2a6e", "Bare Conductive" }, - { "2a70", "OnePlus Technology (Shenzhen) Co., Ltd." }, - { "2a88", "DFU Technology Ltd" }, - { "2a8d", "Keysight Technologies, Inc." }, - { "2ab6", "T+A elektroakustik GmbH & Co KG, Germany" }, - { "2ac7", "Ultrahaptics Ltd." }, - { "2ad1", "Picotronic GmbH" }, - { "2ae5", "Fairphone B.V." }, - { "2aec", "Ambiq Micro, Inc." }, - { "2af4", "ROLI Ltd." }, - { "2b03", "STEREOLABS" }, - { "2b0e", "LeEco" }, - { "2b23", "Red Hat, Inc." }, - { "2b24", "KeepKey LLC" }, - { "2b3e", "NewAE Technology Inc." }, - { "2b4c", "ZUK" }, - { "2bc5", "Orbbec 3D Technology International, Inc" }, - { "2bcc", "InoTec GmbH Organisationssysteme" }, - { "2bd6", "Coroware, Inc." }, - { "2bd8", "ROPEX Industrie-Elektronik GmbH" }, - { "2c02", "Planex Communications" }, - { "2c1a", "Dolphin Peripherals" }, - { "2c23", "Supermicro Computer Incorporated" }, - { "2c4e", "Mercucys INC" }, - { "2c4f", "Canon Electronic Business Machines Co., Ltd." }, - { "2c55", "Magic Leap, Inc." }, - { "2c7c", "Quectel Wireless Solutions Co., Ltd." }, - { "2c97", "Ledger" }, - { "2c99", "Prusa" }, - { "2c9c", "Vayyar Imaging Ltd." }, - { "2c9d", "Nod Inc" }, - { "2ca3", "DJI Technology Co., Ltd." }, - { "2cb7", "Fibocom" }, - { "2cc0", "Hangzhou Zero Zero Infinity Technology Co., Ltd." }, - { "2cc2", "Lautsprecher Teufel GmbH" }, - { "2ccf", "Hypersecu" }, - { "2cd9", "Cambrionix Ltd" }, - { "2cdc", "Sea & Sun Technology GmbH" }, - { "2ce5", "InX8 Inc [AKiTiO]" }, - { "2cf0", "Nuand LLC" }, - { "2d1f", "Wacom Taiwan Information Co. Ltd." }, - { "2d25", "Kronegger GmbH." }, - { "2d2d", "proxmark.org" }, - { "2d37", "Zhuhai Poskey Technology Co.,Ltd" }, - { "2d6b", "NetUP Inc." }, - { "2d81", "Evollve Inc." }, - { "2d84", "Zhuhai Poskey Technology Co.,Ltd" }, - { "2dc8", "8BitDo" }, - { "2dcf", "Dialog Semiconductor" }, - { "2def", "Kirale Technologies" }, - { "2df2", "LIPS Corporation" }, - { "2e04", "HMD Global" }, - { "2e0e", "Hatteland Display AS" }, - { "2e24", "Hyperkin" }, - { "2e3b", "uSens Inc." }, - { "2e57", "MEGWARE Computer Vertrieb und Service GmbH" }, - { "2e69", "Swift Navigation" }, - { "2e95", "SCUF Gaming" }, - { "2f76", "KeyXentic Inc." }, - { "2fad", "Definium Technologies" }, - { "2fb0", "Infocrypt" }, - { "2fb2", "Fujitsu, Ltd" }, - { "2fc0", "Sensidyne, LP" }, - { "2fc6", "Comtrue Inc." }, - { "2fe0", "Xaptum, Inc." }, - { "2fe3", "NordicSemiconductor" }, - { "2fe7", "ELGIN S.A." }, - { "2feb", "Beijing Veikk E-Commerce Co., Ltd." }, - { "2ff4", "Quixant Plc" }, - { "3016", "Boundary Devices, LLC" }, - { "3036", "Control iD" }, - { "3037", "Beijing Chushifengmang Technology Development Co.,Ltd." }, - { "3057", "Kingsis Corporation" }, - { "308f", "Input Club" }, - { "30a4", "Blues Wireless" }, - { "30c2", "UNPARALLEL Innovation, Lda" }, - { "30c9", "Luxvisions Innotech Limited" }, - { "30ee", "Fujitsu Connected Technologies Limited" }, - { "30f2", "Varex Imaging" }, - { "3111", "Hiperscan GmbH" }, - { "3112", "Meteca SA" }, - { "3125", "Eagletron" }, - { "3136", "Navini Networks" }, - { "3145", "SafeLogic Inc." }, - { "3147", "Tanvas, Inc." }, - { "316c", "SigmaSense, LLC" }, - { "316d", "Purism, SPC" }, - { "316e", "SPECINFOSYSTEMS" }, - { "3171", "8086 Consultancy" }, - { "3176", "Whanam Electronics Co., Ltd" }, - { "3195", "Link Instruments" }, - { "3197", "Katusha" }, - { "31c9", "BeiJing LanXum Computer Technology Co., Ltd." }, - { "3200", "Alcatel-Lucent Enterprise" }, - { "3219", "Smak Tecnologia e Automacao LTDA" }, - { "321c", "Premio, Inc." }, - { "324c", "CUPRIS Ltd." }, - { "326d", "Agile Display Solutions Co., Ltd" }, - { "3275", "VidzMedia Pte Ltd" }, - { "3293", "Unhuman Inc." }, - { "32b3", "TEXA" }, - { "3310", "MUDITA Sp. z o.o." }, - { "3333", "InLine" }, - { "3334", "AEI" }, - { "3340", "Yakumo" }, - { "3344", "Leaguer Microelectronics (LME)" }, - { "3384", "System76" }, - { "348f", "ISY" }, - { "3504", "Micro Star" }, - { "3538", "Power Quotient International Co., Ltd" }, - { "3579", "DIVA" }, - { "357d", "Sharkoon" }, - { "3636", "InVibro" }, - { "3767", "Fanatec" }, - { "3838", "WEM" }, - { "3923", "National Instruments Corp." }, - { "40bb", "I-O Data" }, - { "4101", "i-rocks" }, - { "4102", "iRiver, Ltd." }, - { "413c", "Dell Computer Corp." }, - { "4146", "USBest Technology" }, - { "4168", "Targus" }, - { "4242", "USB Design by Example" }, - { "4255", "GoPro" }, - { "4317", "Broadcom Corp." }, - { "4348", "WinChipHead" }, - { "4572", "Shuttle, Inc." }, - { "4586", "Panram" }, - { "4670", "EMS Production" }, - { "46f4", "QEMU" }, - { "4752", "Miditech" }, - { "4757", "GW Instek" }, - { "4766", "Aceeca" }, - { "4855", "Memorex" }, - { "4971", "SimpleTech" }, - { "4d46", "Musical Fidelity" }, - { "5032", "Grandtec" }, - { "50c2", "Averatec (?)" }, - { "5131", "MSR" }, - { "5173", "Sweex" }, - { "5219", "I-Tetra" }, - { "5332", "Clearly Superior Technologies, Inc." }, - { "5345", "Owon" }, - { "534c", "SatoshiLabs" }, - { "534d", "MacroSilicon" }, - { "5354", "Meyer Instruments (MIS)" }, - { "544d", "Transmeta Corp." }, - { "5543", "UC-Logic Technology Corp." }, - { "5555", "Epiphan Systems Inc." }, - { "55aa", "OnSpec Electronic, Inc." }, - { "5654", "Gotview" }, - { "5656", "Uni-Trend Group Limited" }, - { "595a", "IRTOUCHSYSTEMS Co. Ltd." }, - { "5986", "Acer, Inc" }, - { "59e3", "Nonolith Labs" }, - { "5a57", "Zinwell" }, - { "6000", "Beholder International Ltd." }, - { "601a", "Ingenic Semiconductor Ltd." }, - { "6022", "Xektek" }, - { "6189", "Sitecom" }, - { "6244", "LightingSoft AG" }, - { "6253", "TwinHan Technology Co., Ltd" }, - { "636c", "CoreLogic, Inc." }, - { "6472", "Sony Corp." }, - { "6547", "Arkmicro Technologies Inc." }, - { "6557", "Emtec" }, - { "6615", "IRTOUCHSYSTEMS Co. Ltd." }, - { "6666", "Prototype product Vendor ID" }, - { "6677", "WiseGroup, Ltd." }, - { "675d", "Humanscale" }, - { "6891", "3Com" }, - { "695c", "Opera1" }, - { "6993", "Yealink Network Technology Co., Ltd." }, - { "6a75", "Shanghai Jujo Electronics Co., Ltd" }, - { "7104", "CME (Central Music Co.)" }, - { "726c", "StackFoundry LLC" }, - { "7302", "Solinftec" }, - { "734c", "TBS Technologies China" }, - { "7373", "Beijing STONE Technology Co. Ltd." }, - { "7392", "Edimax Technology Co., Ltd" }, - { "73d8", "Progeny Dental Equipment Specialists" }, - { "7669", "Venable Instruments" }, - { "7825", "Other World Computing" }, - { "8070", "ACCES I/O Products, Inc." }, - { "8086", "Intel Corp." }, - { "8087", "Intel Corp." }, - { "80ee", "VirtualBox" }, - { "8282", "Keio" }, - { "8301", "Hapurs" }, - { "8341", "EGO Systems, Inc." }, - { "8564", "Transcend Information, Inc." }, - { "8644", "Intenso GmbG" }, - { "8e06", "CH Products, Inc." }, - { "8ea3", "Doosl" }, - { "9016", "Sitecom" }, - { "9022", "TeVii Technology Ltd." }, - { "9148", "GeoLab, Ltd" }, - { "9516", "Studiologic" }, - { "9710", "MosChip Semiconductor" }, - { "9849", "Bestmedia CD Recordable GmbH & Co. KG" }, - { "9886", "Astro Gaming" }, - { "9999", "Odeon" }, - { "99fa", "Grandtec" }, - { "9ac4", "J. Westhues" }, - { "9e88", "Marvell Semiconductor, Inc." }, - { "a014", "Insignia (Best Buy)" }, - { "a108", "Ingenic Semiconductor Co.,Ltd" }, - { "a128", "AnMo Electronics Corp. / Dino-Lite (?)" }, - { "a168", "AnMo Electronics Corporation" }, - { "a466", "Haikou Xingong Electronics Co.,Ltd" }, - { "a600", "ASIX s.r.o." }, - { "a727", "3Com" }, - { "a88a", "Clas Ohlsson" }, - { "aaaa", "MXT" }, - { "ab12", "aplic" }, - { "abcd", "LogiLink" }, - { "b58e", "Blue Microphones" }, - { "ba77", "Clockmaker" }, - { "c216", "Card Device Expert Co., LTD" }, - { "c251", "Keil Software, Inc." }, - { "c502", "AGPTek" }, - { "cace", "CACE Technologies Inc." }, - { "cd12", "SMART TECHNOLOGY INDUSTRIAL LTD." }, - { "d208", "Ultimarc" }, - { "d209", "Ultimarc" }, - { "d904", "LogiLink" }, - { "e2b7", "Jie Li" }, - { "e4e4", "Xorcom Ltd." }, - { "eb03", "MakingThings" }, - { "eb1a", "eMPIA Technology, Inc." }, - { "eb2a", "KWorld" }, - { "ef18", "SMART TECHNOLOGY INDUSTRIAL LTD." }, - { "f003", "Hewlett Packard" }, - { "f007", "Teslong" }, - { "f182", "Leap Motion" }, - { "f3f0", "CCT, Inc" }, - { "f4ec", "Atten Electronics / Siglent Technologies" }, - { "f4ed", "Shenzhen Siglent Co., Ltd." }, - { "f766", "Hama" }, - { "fa11", "DyingLight" }, - { "fc08", "Conrad Electronic SE" }, - { "ff00", "Power Delivery" }, - { "ffee", "FNK Tech" }, + bool operator==(const KDeviceEntry &other) const + { return vendorid == other.vendorid && deviceid == other.deviceid; } }; -static const size_t usbVendorTblSize = sizeof(usbVendorTbl) / sizeof(usbVendorTblData); +inline uint qHash(const KDeviceEntry &kdeviceentry) +{ + return qHash(kdeviceentry.vendorid + kdeviceentry.deviceid); +} -static const struct usbDeviceTblData { - const char* const vendorid; - const char* const deviceid; - const char* const devicename; -} usbDeviceTbl[] = { - { "0001", "7778", "Counterfeit flash drive [Kingston]" }, - { "0002", "0002", "passport00" }, - { "0011", "7788", "counterfeit flash drive" }, - { "0053", "5301", "GW-US54ZGL 802.11bg" }, - { "0078", "0006", "Joystick" }, - { "0079", "0006", "PC TWIN SHOCK Gamepad" }, - { "0079", "0011", "Gamepad" }, - { "0079", "1800", "Mayflash Wii U Pro Game Controller Adapter [DirectInput]" }, - { "0079", "181b", "Venom Arcade Joystick" }, - { "0079", "1843", "Mayflash GameCube Controller Adapter" }, - { "0079", "1844", "Mayflash GameCube Controller" }, - { "0080", "a001", "JMS578 based SATA bridge" }, - { "0085", "0600", "eBook Reader" }, - { "0105", "145f", "NW-3100 802.11b/g 54Mbps Wireless Network Adapter [zd1211]" }, - { "0127", "0002", "HDM Interface" }, - { "0127", "0127", "ibp" }, - { "0145", "0112", "Card Reader" }, - { "017c", "145f", "Trust Deskset" }, - { "0200", "0201", "MA180 UMTS Modem" }, - { "0204", "6025", "CBM2080 / CBM2090 Flash drive controller" }, - { "0204", "6026", "CBM1180 Flash drive controller" }, - { "0218", "0301", "MIDI Port" }, - { "02ad", "138c", "PVR Mass Storage" }, - { "0324", "bc06", "OCZ ATV USB 2.0 Flash Drive" }, - { "0324", "bc08", "OCZ Rally2/ATV USB 2.0 Flash Drive" }, - { "0325", "ac02", "ATV Turbo / Rally2 Dual Channel USB 2.0 Flash Drive" }, - { "0386", "0001", "PSX for USB Converter" }, - { "03c3", "120e", "ASI120MC-S Planetary Camera" }, - { "03d9", "0499", "SE340D PC Remote Control" }, - { "03da", "0002", "HD44780 LCD interface" }, - { "03e7", "2150", "Myriad VPU [Movidius Neural Compute Stick]" }, - { "03e7", "2485", "Movidius MyriadX" }, - { "03e7", "f63b", "Myriad VPU [Movidius Neural Compute Stick]" }, - { "03e8", "0004", "SE401 Webcam" }, - { "03e8", "0008", "101 Ethernet [klsi]" }, - { "03e8", "0015", "ATAPI Enclosure" }, - { "03e8", "2123", "SiPix StyleCam Deluxe" }, - { "03e8", "8004", "Aox 99001" }, - { "03eb", "0902", "4-Port Hub" }, - { "03eb", "2002", "Mass Storage Device" }, - { "03eb", "2015", "at90usbkey sample firmware (HID keyboard)" }, - { "03eb", "2018", "at90usbkey sample firmware (CDC ACM)" }, - { "03eb", "2019", "stk525 sample firmware (microphone)" }, - { "03eb", "201c", "at90usbkey sample firmware (HID mouse)" }, - { "03eb", "201d", "at90usbkey sample firmware (HID generic)" }, - { "03eb", "2022", "at90usbkey sample firmware (composite device)" }, - { "03eb", "2040", "LUFA Test PID" }, - { "03eb", "2041", "LUFA Mouse Demo Application" }, - { "03eb", "2042", "LUFA Keyboard Demo Application" }, - { "03eb", "2043", "LUFA Joystick Demo Application" }, - { "03eb", "2044", "LUFA CDC Demo Application" }, - { "03eb", "2045", "LUFA Mass Storage Demo Application" }, - { "03eb", "2046", "LUFA Audio Output Demo Application" }, - { "03eb", "2047", "LUFA Audio Input Demo Application" }, - { "03eb", "2048", "LUFA MIDI Demo Application" }, - { "03eb", "2049", "Stripe Snoop Magnetic Stripe Reader" }, - { "03eb", "204a", "LUFA CDC Class Bootloader" }, - { "03eb", "204b", "LUFA USB to Serial Adapter Project" }, - { "03eb", "204c", "LUFA RNDIS Demo Application" }, - { "03eb", "204d", "LUFA Combined Mouse and Keyboard Demo Application" }, - { "03eb", "204e", "LUFA Dual CDC Demo Application" }, - { "03eb", "204f", "LUFA Generic HID Demo Application" }, - { "03eb", "2060", "Benito Programmer Project" }, - { "03eb", "2061", "LUFA Combined Mass Storage and Keyboard Demo Application" }, - { "03eb", "2062", "LUFA Combined CDC and Mouse Demo Application" }, - { "03eb", "2063", "LUFA Datalogger Device" }, - { "03eb", "2064", "Interfaceless Control-Only LUFA Devices" }, - { "03eb", "2065", "LUFA Test and Measurement Demo Application" }, - { "03eb", "2066", "LUFA Multiple Report HID Demo" }, - { "03eb", "2067", "LUFA HID Class Bootloader" }, - { "03eb", "2068", "LUFA Virtual Serial/Mass Storage Demo" }, - { "03eb", "2069", "LUFA Webserver Project" }, - { "03eb", "2103", "JTAG ICE mkII" }, - { "03eb", "2104", "AVR ISP mkII" }, - { "03eb", "2105", "AVRONE!" }, - { "03eb", "2106", "STK600 development board" }, - { "03eb", "2107", "AVR Dragon" }, - { "03eb", "2109", "STK541 ZigBee Development Board" }, - { "03eb", "210a", "AT86RF230 [RZUSBSTICK] transceiver" }, - { "03eb", "210d", "XPLAIN evaluation kit (CDC ACM)" }, - { "03eb", "2110", "AVR JTAGICE3 Debugger and Programmer" }, - { "03eb", "2111", "Xplained Pro board debugger and programmer" }, - { "03eb", "2122", "XMEGA-A1 Explained evaluation kit" }, - { "03eb", "2140", "AVR JTAGICE3 (v3.x) Debugger and Programmer" }, - { "03eb", "2141", "ICE debugger" }, - { "03eb", "2145", "ATMEGA328P-XMINI (CDC ACM)" }, - { "03eb", "2310", "EVK11xx evaluation board" }, - { "03eb", "2404", "The Micro" }, - { "03eb", "2fe4", "ATxmega32A4U DFU bootloader" }, - { "03eb", "2fe6", "Cactus V6 (DFU)" }, - { "03eb", "2fea", "Cactus RF60 (DFU)" }, - { "03eb", "2fee", "atmega8u2 DFU bootloader" }, - { "03eb", "2fef", "atmega16u2 DFU bootloader" }, - { "03eb", "2ff0", "atmega32u2 DFU bootloader" }, - { "03eb", "2ff1", "at32uc3a3 DFU bootloader" }, - { "03eb", "2ff3", "atmega16u4 DFU bootloader" }, - { "03eb", "2ff4", "atmega32u4 DFU bootloader" }, - { "03eb", "2ff6", "at32uc3b0/1 DFU bootloader" }, - { "03eb", "2ff7", "at90usb82 DFU bootloader" }, - { "03eb", "2ff8", "at32uc3a0/1 DFU bootloader" }, - { "03eb", "2ff9", "at90usb646/647 DFU bootloader" }, - { "03eb", "2ffa", "at90usb162 DFU bootloader" }, - { "03eb", "2ffb", "at90usb AVR DFU bootloader" }, - { "03eb", "2ffd", "at89c5130/c5131 DFU bootloader" }, - { "03eb", "2fff", "at89c5132/c51snd1c DFU bootloader" }, - { "03eb", "3301", "at43301 4-Port Hub" }, - { "03eb", "3312", "4-Port Hub" }, - { "03eb", "4102", "AirVast W-Buddie WN210" }, - { "03eb", "5601", "at76c510 Prism-II 802.11b Access Point" }, - { "03eb", "5603", "Cisco 7920 WiFi IP Phone" }, - { "03eb", "6119", "AT91SAM CDC Demo Application" }, - { "03eb", "6124", "at91sam SAMBA bootloader" }, - { "03eb", "6127", "AT91SAM HID Keyboard Demo Application" }, - { "03eb", "6129", "AT91SAM Mass Storage Demo Application" }, - { "03eb", "6200", "AT91SAM HID Mouse Demo Application" }, - { "03eb", "7603", "D-Link DWL-120 802.11b Wireless Adapter [Atmel at76c503a]" }, - { "03eb", "7604", "at76c503a 802.11b Adapter" }, - { "03eb", "7605", "at76c503a 802.11b Adapter" }, - { "03eb", "7606", "at76c505 802.11b Adapter" }, - { "03eb", "7611", "at76c510 rfmd2948 802.11b Access Point" }, - { "03eb", "7613", "WL-1130 USB" }, - { "03eb", "7614", "AT76c505a Wireless Adapter" }, - { "03eb", "7615", "AT76C505AMX Wireless Adapter" }, - { "03eb", "7617", "AT76C505AS Wireless Adapter" }, - { "03eb", "7800", "Mini Album" }, - { "03eb", "800c", "Airspy HF+" }, - { "03eb", "ff01", "WootingOne" }, - { "03eb", "ff02", "WootingTwo" }, - { "03eb", "ff07", "Tux Droid fish dongle" }, - { "03ee", "0000", "CD-R/RW Drive" }, - { "03ee", "2501", "eHome Infrared Receiver" }, - { "03ee", "2502", "eHome Infrared Receiver" }, - { "03ee", "5609", "Japanese Keyboard" }, - { "03ee", "641f", "WIF-0402C Bluetooth Adapter" }, - { "03ee", "6438", "Bluetooth Device" }, - { "03ee", "6440", "WML-C52APR Bluetooth Adapter" }, - { "03ee", "6901", "SmartDisk FDD" }, - { "03ee", "6902", "Floppy Disk Drive" }, - { "03ee", "7500", "CD-R/RW" }, - { "03ee", "ffff", "Dongle with BlueCore in DFU mode" }, - { "03f0", "0004", "DeskJet 895c" }, - { "03f0", "0011", "OfficeJet G55" }, - { "03f0", "0012", "DeskJet 1125C Printer Port" }, - { "03f0", "0024", "KU-0316 Keyboard" }, - { "03f0", "002a", "LaserJet P1102" }, - { "03f0", "0053", "DeskJet 2620 All-in-One Printer" }, - { "03f0", "0101", "ScanJet 4100c" }, - { "03f0", "0102", "PhotoSmart S20" }, - { "03f0", "0104", "DeskJet 880c/970c" }, - { "03f0", "0105", "ScanJet 4200c" }, - { "03f0", "0107", "CD-Writer Plus" }, - { "03f0", "010c", "Multimedia Keyboard Hub" }, - { "03f0", "0111", "G55xi Printer/Scanner/Copier" }, - { "03f0", "0117", "LaserJet 3200" }, - { "03f0", "011c", "hn210w 802.11b Adapter" }, - { "03f0", "011d", "Bluetooth 1.2 Interface [Broadcom BCM2035]" }, - { "03f0", "0121", "HP 39g+ [F2224A], 39gs [F2223A], 40gs [F2225A], 48gII [F2226A], 49g+ [F2228A], 50g [F2229A, NW240AA]" }, - { "03f0", "0122", "HID Internet Keyboard" }, - { "03f0", "0125", "DAT72 Tape" }, - { "03f0", "0139", "Barcode Scanner 4430" }, - { "03f0", "0201", "ScanJet 6200c" }, - { "03f0", "0202", "PhotoSmart S20" }, - { "03f0", "0204", "DeskJet 815c" }, - { "03f0", "0205", "ScanJet 3300c" }, - { "03f0", "0207", "CD-Writer Plus 8200e" }, - { "03f0", "020c", "Multimedia Keyboard" }, - { "03f0", "0211", "OfficeJet G85" }, - { "03f0", "0212", "DeskJet 1220C" }, - { "03f0", "0217", "LaserJet 2200" }, - { "03f0", "0218", "APOLLO P2500/2600" }, - { "03f0", "0221", "StreamSmart 400 [F2235AA]" }, - { "03f0", "0223", "Digital Drive Flash Reader" }, - { "03f0", "022a", "Laserjet CP1525nw" }, - { "03f0", "0241", "Link-5 micro dongle" }, - { "03f0", "0304", "DeskJet 810c/812c" }, - { "03f0", "0305", "ScanJet 4300c" }, - { "03f0", "0307", "CD-Writer+ CD-4e" }, - { "03f0", "0311", "OfficeJet G85xi" }, - { "03f0", "0312", "Color Inkjet CP1700" }, - { "03f0", "0314", "designjet 30/130 series" }, - { "03f0", "0317", "LaserJet 1200" }, - { "03f0", "0324", "SK-2885 keyboard" }, - { "03f0", "034a", "Elite Keyboard" }, - { "03f0", "0401", "ScanJet 5200c" }, - { "03f0", "0404", "DeskJet 830c/832c" }, - { "03f0", "0405", "ScanJet 3400cse" }, - { "03f0", "0411", "OfficeJet G95" }, - { "03f0", "0412", "Printing Support" }, - { "03f0", "0417", "LaserJet 1200 series" }, - { "03f0", "0423", "HS-COMBO Cardreader" }, - { "03f0", "042a", "LaserJet M1132 MFP" }, - { "03f0", "0441", "Prime [NW280AA, G8X92AA]" }, - { "03f0", "0504", "DeskJet 885c" }, - { "03f0", "0505", "ScanJet 2100c" }, - { "03f0", "0507", "DVD+RW" }, - { "03f0", "050c", "5219 Wireless Keyboard" }, - { "03f0", "0511", "OfficeJet K60" }, - { "03f0", "0512", "DeckJet 450" }, - { "03f0", "0517", "LaserJet 1000" }, - { "03f0", "051d", "Bluetooth Interface" }, - { "03f0", "052a", "LaserJet M1212nf MFP" }, - { "03f0", "0601", "ScanJet 6300c" }, - { "03f0", "0604", "DeskJet 840c" }, - { "03f0", "0605", "ScanJet 2200c" }, - { "03f0", "0610", "Z24i Monitor Hub" }, - { "03f0", "0611", "OfficeJet K60xi" }, - { "03f0", "0612", "business inkjet 3000" }, - { "03f0", "0624", "Bluetooth Dongle" }, - { "03f0", "0641", "X1200 Optical Mouse" }, - { "03f0", "0701", "ScanJet 5300c/5370c" }, - { "03f0", "0704", "DeskJet 825c" }, - { "03f0", "0705", "ScanJet 4400c" }, - { "03f0", "070c", "Personal Media Drive" }, - { "03f0", "0711", "OfficeJet K80" }, - { "03f0", "0712", "DeskJet 1180c" }, - { "03f0", "0714", "Printing Support" }, - { "03f0", "0741", "Prime Wireless Kit [FOK65AA]" }, - { "03f0", "0801", "ScanJet 7400c" }, - { "03f0", "0804", "DeskJet 816c" }, - { "03f0", "0805", "HP4470C" }, - { "03f0", "0811", "OfficeJet K80xi" }, - { "03f0", "0817", "LaserJet 3300" }, - { "03f0", "0901", "ScanJet 2300c" }, - { "03f0", "0904", "DeskJet 845c" }, - { "03f0", "0912", "Printing Support" }, - { "03f0", "0917", "LaserJet 3330" }, - { "03f0", "0924", "Modular Smartcard Keyboard" }, - { "03f0", "0941", "X500 Optical Mouse" }, - { "03f0", "094a", "Optical Mouse [672662-001]" }, - { "03f0", "0a01", "ScanJet 2400c" }, - { "03f0", "0a17", "color LaserJet 3700" }, - { "03f0", "0b01", "ScanJet 82x0C" }, - { "03f0", "0b0c", "Wireless Keyboard and Optical Mouse receiver" }, - { "03f0", "0b17", "LaserJet 2300d" }, - { "03f0", "0c17", "LaserJet 1010" }, - { "03f0", "0c24", "Bluetooth Dongle" }, - { "03f0", "0d12", "OfficeJet 9100 series" }, - { "03f0", "0d17", "LaserJet 1012" }, - { "03f0", "0d4a", "SK-2025 Keyboard" }, - { "03f0", "0e17", "LaserJet 1015" }, - { "03f0", "0f0c", "Wireless Keyboard and Optical Mouse receiver" }, - { "03f0", "0f11", "OfficeJet V40" }, - { "03f0", "0f12", "Printing Support" }, - { "03f0", "0f17", "LaserJet 1150" }, - { "03f0", "0f2a", "LaserJet 400 color M451dn" }, - { "03f0", "1001", "Photo Scanner 1000" }, - { "03f0", "1002", "PhotoSmart 140 series" }, - { "03f0", "1004", "DeskJet 970c/970cse" }, - { "03f0", "1005", "ScanJet 5400c" }, - { "03f0", "1011", "OfficeJet V40xi" }, - { "03f0", "1016", "Jornada 548 / iPAQ HW6515 Pocket PC" }, - { "03f0", "1017", "LaserJet 1300" }, - { "03f0", "1024", "Smart Card Keyboard" }, - { "03f0", "1027", "Virtual keyboard and mouse" }, - { "03f0", "102a", "LaserJet Professional P 1102w" }, - { "03f0", "1102", "PhotoSmart 240 series" }, - { "03f0", "1104", "DeskJet 959c" }, - { "03f0", "1105", "ScanJet 5470c/5490c" }, - { "03f0", "1111", "OfficeJet v60" }, - { "03f0", "1116", "Jornada 568 Pocket PC" }, - { "03f0", "1117", "LaserJet 1300n" }, - { "03f0", "1151", "PSC-750xi Printer/Scanner/Copier" }, - { "03f0", "1198", "HID-compliant mouse" }, - { "03f0", "1202", "PhotoSmart 320 series" }, - { "03f0", "1204", "DeskJet 930c" }, - { "03f0", "1205", "ScanJet 4500C/5550C" }, - { "03f0", "1211", "OfficeJet v60xi" }, - { "03f0", "1217", "LaserJet 2300L" }, - { "03f0", "1227", "Virtual CD-ROM" }, - { "03f0", "1302", "PhotoSmart 370 series" }, - { "03f0", "1305", "ScanJet 4570c" }, - { "03f0", "1311", "OfficeJet V30" }, - { "03f0", "1312", "DeskJet 460" }, - { "03f0", "1317", "LaserJet 1005" }, - { "03f0", "1327", "iLO Virtual Hub" }, - { "03f0", "134a", "Optical Mouse" }, - { "03f0", "1405", "ScanJet 3670" }, - { "03f0", "1411", "PSC 750" }, - { "03f0", "1424", "f2105 Monitor Hub" }, - { "03f0", "1502", "PhotoSmart 420 series" }, - { "03f0", "1504", "DeskJet 920c" }, - { "03f0", "150c", "Mood Lighting (Microchip Technology Inc.)" }, - { "03f0", "1511", "PSC 750xi" }, - { "03f0", "1512", "Printing Support" }, - { "03f0", "1517", "color LaserJet 3500" }, - { "03f0", "1524", "Smart Card Keyboard - KR" }, - { "03f0", "1539", "Mini Magnetic Stripe Reader" }, - { "03f0", "1541", "Prime [G8X92AA]" }, - { "03f0", "154a", "Laser Mouse" }, - { "03f0", "1602", "PhotoSmart 330 series" }, - { "03f0", "1604", "DeskJet 940c" }, - { "03f0", "1605", "ScanJet 5530C PhotoSmart" }, - { "03f0", "1611", "psc 780" }, - { "03f0", "1617", "LaserJet 3015" }, - { "03f0", "161d", "Wireless Rechargeable Optical Mouse (HID)" }, - { "03f0", "1624", "Smart Card Keyboard - JP" }, - { "03f0", "1647", "Z27n G2 Monitor Hub" }, - { "03f0", "1702", "PhotoSmart 380 series" }, - { "03f0", "1704", "DeskJet 948C" }, - { "03f0", "1705", "ScanJet 5590" }, - { "03f0", "1711", "psc 780xi" }, - { "03f0", "1712", "Printing Support" }, - { "03f0", "1717", "LaserJet 3020" }, - { "03f0", "171d", "Bluetooth 2.0 Interface [Broadcom BCM2045]" }, - { "03f0", "1801", "Inkjet P-2000U" }, - { "03f0", "1802", "PhotoSmart 470 series" }, - { "03f0", "1804", "DeskJet 916C" }, - { "03f0", "1805", "ScanJet 7650" }, - { "03f0", "1811", "PSC 720" }, - { "03f0", "1812", "OfficeJet Pro K550" }, - { "03f0", "1817", "LaserJet 3030" }, - { "03f0", "181d", "Bluetooth 2.0 Interface" }, - { "03f0", "1902", "PhotoSmart A430 series" }, - { "03f0", "1904", "DeskJet 3820" }, - { "03f0", "1911", "OfficeJet V45" }, - { "03f0", "1917", "LaserJet 3380" }, - { "03f0", "1a02", "PhotoSmart A510 series" }, - { "03f0", "1a11", "OfficeJet 5100 series" }, - { "03f0", "1a17", "color LaserJet 4650" }, - { "03f0", "1b02", "PhotoSmart A610 series" }, - { "03f0", "1b04", "DeskJet 3810" }, - { "03f0", "1b05", "ScanJet 4850C/4890C" }, - { "03f0", "1b07", "Premium Starter Webcam" }, - { "03f0", "1c02", "PhotoSmart A710 series" }, - { "03f0", "1c17", "Color LaserJet 2550l" }, - { "03f0", "1d02", "PhotoSmart A310 series" }, - { "03f0", "1d17", "LaserJet 1320" }, - { "03f0", "1d24", "Barcode scanner" }, - { "03f0", "1e02", "PhotoSmart A320 Printer series" }, - { "03f0", "1e11", "PSC-950" }, - { "03f0", "1e17", "LaserJet 1160 series" }, - { "03f0", "1f02", "PhotoSmart A440 Printer series" }, - { "03f0", "1f11", "PSC 920" }, - { "03f0", "1f12", "OfficeJet Pro K5300" }, - { "03f0", "1f17", "color LaserJet 5550" }, - { "03f0", "1f1d", "un2400 Gobi Wireless Modem" }, - { "03f0", "2001", "Floppy" }, - { "03f0", "2002", "Hub" }, - { "03f0", "2004", "DeskJet 640c" }, - { "03f0", "2005", "ScanJet 3570c" }, - { "03f0", "2012", "OfficeJet Pro K5400" }, - { "03f0", "201d", "un2400 Gobi Wireless Modem (QDL mode)" }, - { "03f0", "2039", "Cashdrawer" }, - { "03f0", "2102", "PhotoSmart 7345" }, - { "03f0", "2104", "DeskJet 630c" }, - { "03f0", "2112", "OfficeJet Pro L7500" }, - { "03f0", "211d", "Sierra MC5725 [ev2210]" }, - { "03f0", "2202", "PhotoSmart 7600 series" }, - { "03f0", "2205", "ScanJet 3500c" }, - { "03f0", "2212", "OfficeJet Pro L7600" }, - { "03f0", "2217", "color LaserJet 9500 MFP" }, - { "03f0", "222a", "LaserJet Pro MFP M125nw" }, - { "03f0", "2302", "PhotoSmart 7600 series" }, - { "03f0", "2304", "DeskJet 656c" }, - { "03f0", "2305", "ScanJet 3970c" }, - { "03f0", "2311", "OfficeJet d series" }, - { "03f0", "2312", "OfficeJet Pro L7700" }, - { "03f0", "2317", "LaserJet 4350" }, - { "03f0", "231d", "Broadcom 2070 Bluetooth Combo" }, - { "03f0", "2402", "PhotoSmart 7700 series" }, - { "03f0", "2404", "Deskjet F2280 series" }, - { "03f0", "2405", "ScanJet 4070 PhotoSmart" }, - { "03f0", "2417", "LaserJet 4250" }, - { "03f0", "241d", "Gobi 2000 Wireless Modem (QDL mode)" }, - { "03f0", "2424", "LP1965 19\" Monitor Hub" }, - { "03f0", "2441", "Prime G2 [2AP18AA]" }, - { "03f0", "2502", "PhotoSmart 7700 series" }, - { "03f0", "2504", "DeskJet F4200 series" }, - { "03f0", "2505", "ScanJet 3770" }, - { "03f0", "2512", "OfficeJet Pro L7300 / Compaq LA2405 series monitor" }, - { "03f0", "2514", "4-port hub" }, - { "03f0", "2517", "LaserJet 2410" }, - { "03f0", "251d", "Gobi 2000 Wireless Modem" }, - { "03f0", "2524", "LP3065 30\" Monitor Hub" }, - { "03f0", "2602", "PhotoSmart A520 series" }, - { "03f0", "2605", "ScanJet 3800c" }, - { "03f0", "2611", "OfficeJet 7100 series" }, - { "03f0", "2617", "Color LaserJet 2820 series" }, - { "03f0", "2624", "Pole Display (HP522 2 x 20 Line Display)" }, - { "03f0", "2702", "PhotoSmart A620 series" }, - { "03f0", "2704", "DeskJet 915" }, - { "03f0", "2717", "Color LaserJet 2830" }, - { "03f0", "2724", "Magnetic Stripe Reader IDRA-334133-HP" }, - { "03f0", "2805", "Scanjet G2710" }, - { "03f0", "2811", "PSC-2100" }, - { "03f0", "2817", "Color LaserJet 2840" }, - { "03f0", "2841", "OMEN MINDFRAME [3XT27AA]" }, - { "03f0", "2902", "PhotoSmart A820 series" }, - { "03f0", "2911", "PSC 2200" }, - { "03f0", "2917", "LaserJet 2420" }, - { "03f0", "2a11", "PSC 2150 series" }, - { "03f0", "2a17", "LaserJet 2430" }, - { "03f0", "2a1d", "Integrated Module with Bluetooth 2.1 Wireless technology" }, - { "03f0", "2b11", "PSC 2170 series" }, - { "03f0", "2b17", "LaserJet 1020" }, - { "03f0", "2b4a", "Business Slim Keyboard" }, - { "03f0", "2c12", "Officejet J4680" }, - { "03f0", "2c17", "LaserJet 1022" }, - { "03f0", "2c24", "Logitech M-UAL-96 Mouse" }, - { "03f0", "2d05", "Scanjet 7000" }, - { "03f0", "2d11", "OfficeJet 6110" }, - { "03f0", "2d17", "Printing Support" }, - { "03f0", "2e11", "PSC 1000" }, - { "03f0", "2e17", "LaserJet 2600n" }, - { "03f0", "2e24", "LP2275w Monitor Hub" }, - { "03f0", "2f11", "PSC 1200" }, - { "03f0", "2f17", "Color LaserJet 2605dn" }, - { "03f0", "2f24", "LP2475w Monitor Hub" }, - { "03f0", "3002", "PhotoSmart P1000" }, - { "03f0", "3004", "DeskJet 980c" }, - { "03f0", "3005", "ScanJet 4670v" }, - { "03f0", "3011", "PSC 1100 series" }, - { "03f0", "3017", "Printing Support" }, - { "03f0", "304a", "Slim Keyboard" }, - { "03f0", "3102", "PhotoSmart P1100 Printer w/ Card Reader" }, - { "03f0", "3104", "DeskJet 960c" }, - { "03f0", "3111", "OfficeJet 4100 series" }, - { "03f0", "3117", "EWS 2605dtn" }, - { "03f0", "311d", "Atheros AR9285 Malbec Bluetooth Adapter" }, - { "03f0", "312a", "LaserJet Pro M701n" }, - { "03f0", "3202", "PhotoSmart 1215" }, - { "03f0", "3207", "4 GB flash drive" }, - { "03f0", "3211", "OfficeJet 4105 series" }, - { "03f0", "3217", "LaserJet 3050" }, - { "03f0", "3302", "PhotoSmart 1218" }, - { "03f0", "3304", "DeskJet 990c" }, - { "03f0", "3307", "v125w Stick" }, - { "03f0", "3312", "OfficeJet J6410" }, - { "03f0", "3317", "LaserJet 3052" }, - { "03f0", "3402", "PhotoSmart 1115" }, - { "03f0", "3404", "DeskJet 6122" }, - { "03f0", "3417", "LaserJet 3055" }, - { "03f0", "3502", "PhotoSmart 230" }, - { "03f0", "3504", "DeskJet 6127c" }, - { "03f0", "3511", "PSC 2300" }, - { "03f0", "3517", "LaserJet 3390" }, - { "03f0", "354a", "Slim Keyboard" }, - { "03f0", "3602", "PhotoSmart 1315" }, - { "03f0", "3611", "PSC 2410 PhotoSmart" }, - { "03f0", "3612", "Officejet Pro 8000 A809" }, - { "03f0", "3617", "Color LaserJet 2605" }, - { "03f0", "3711", "PSC 2500" }, - { "03f0", "3717", "EWS UPD" }, - { "03f0", "3724", "Webcam" }, - { "03f0", "3802", "PhotoSmart 100" }, - { "03f0", "3807", "c485w Flash Drive" }, - { "03f0", "3817", "LaserJet P2015 series" }, - { "03f0", "3902", "PhotoSmart 130" }, - { "03f0", "3912", "Officejet Pro 8500" }, - { "03f0", "3917", "LaserJet P2014" }, - { "03f0", "3a02", "PhotoSmart 7150" }, - { "03f0", "3a11", "OfficeJet 5500 series" }, - { "03f0", "3a17", "Printing Support" }, - { "03f0", "3a1d", "hs2340 HSPA+ mobile broadband" }, - { "03f0", "3b02", "PhotoSmart 7150~" }, - { "03f0", "3b05", "Scanjet N8460" }, - { "03f0", "3b11", "PSC 1300 series" }, - { "03f0", "3b17", "LaserJet M1005 MFP" }, - { "03f0", "3b2a", "Color LaserJet MFP M277dw" }, - { "03f0", "3c02", "PhotoSmart 7350" }, - { "03f0", "3c05", "Scanjet Professional 1000 Mobile Scanner" }, - { "03f0", "3c11", "PSC 1358" }, - { "03f0", "3c17", "EWS UPD" }, - { "03f0", "3d02", "PhotoSmart 7350~" }, - { "03f0", "3d11", "OfficeJet 4215" }, - { "03f0", "3d17", "LaserJet P1005" }, - { "03f0", "3e02", "PhotoSmart 7550" }, - { "03f0", "3e17", "LaserJet P1006" }, - { "03f0", "3f02", "PhotoSmart 7550~" }, - { "03f0", "3f11", "PSC-1315/PSC-1317" }, - { "03f0", "3f17", "Laserjet P1505" }, - { "03f0", "4002", "PhotoSmart 635/715/720/735/935/E337 (storage)" }, - { "03f0", "4004", "CP1160" }, - { "03f0", "4102", "PhotoSmart 618" }, - { "03f0", "4105", "ScanJet 4370" }, - { "03f0", "4111", "OfficeJet 7200 series" }, - { "03f0", "4117", "LaserJet 1018" }, - { "03f0", "4202", "PhotoSmart 812" }, - { "03f0", "4205", "ScanJet G3010" }, - { "03f0", "4211", "OfficeJet 7300 series" }, - { "03f0", "4217", "EWS CM1015" }, - { "03f0", "4302", "PhotoSmart 850 (ptp)" }, - { "03f0", "4305", "ScanJet G3110" }, - { "03f0", "4311", "OfficeJet 7400 series" }, - { "03f0", "4317", "Color LaserJet CM1017" }, - { "03f0", "4402", "PhotoSmart 935 (ptp)" }, - { "03f0", "4417", "EWS UPD" }, - { "03f0", "4502", "PhotoSmart 945 (PTP mode)" }, - { "03f0", "4505", "ScanJet G4010" }, - { "03f0", "4507", "External HDD" }, - { "03f0", "4511", "PhotoSmart 2600" }, - { "03f0", "4512", "E709n [Officejet 6500 Wireless]" }, - { "03f0", "4517", "EWS UPD" }, - { "03f0", "4605", "ScanJet G4050" }, - { "03f0", "4611", "PhotoSmart 2700" }, - { "03f0", "4717", "Color LaserJet CP1215" }, - { "03f0", "4811", "PSC 1600" }, - { "03f0", "4911", "PSC 2350" }, - { "03f0", "4b11", "OfficeJet 6200" }, - { "03f0", "4c11", "PSC 1500 series" }, - { "03f0", "4c17", "EWS UPD" }, - { "03f0", "4d11", "PSC 1400" }, - { "03f0", "4d17", "EWS UPD" }, - { "03f0", "4e11", "PhotoSmart 2570 series" }, - { "03f0", "4f11", "OfficeJet 5600 (USBHUB)" }, - { "03f0", "4f17", "Color LaserJet CM1312 MFP" }, - { "03f0", "5004", "DeskJet 995c" }, - { "03f0", "5011", "PhotoSmart 3100 series" }, - { "03f0", "5017", "EWS UPD" }, - { "03f0", "5111", "PhotoSmart 3200 series" }, - { "03f0", "5211", "PhotoSmart 3300 series" }, - { "03f0", "5307", "v165w Stick" }, - { "03f0", "5311", "OfficeJet 6300" }, - { "03f0", "5312", "Officejet Pro 8500A" }, - { "03f0", "5317", "Color LaserJet CP2025 series" }, - { "03f0", "5411", "OfficeJet 4300" }, - { "03f0", "5511", "DeskJet F300 series" }, - { "03f0", "5611", "PhotoSmart C3180" }, - { "03f0", "5617", "LaserJet M1120 MFP" }, - { "03f0", "5711", "PhotoSmart C4100 series" }, - { "03f0", "5717", "LaserJet M1120n MFP" }, - { "03f0", "5811", "PhotoSmart C5100 series" }, - { "03f0", "5817", "LaserJet M1319f MFP" }, - { "03f0", "581d", "lt4112 Gobi 4G Module Network Device" }, - { "03f0", "5911", "PhotoSmart C6180" }, - { "03f0", "5912", "Officejet Pro 8600" }, - { "03f0", "5a11", "PhotoSmart C7100 series" }, - { "03f0", "5b11", "OfficeJet J2100 series" }, - { "03f0", "5b12", "Officejet Pro 8100" }, - { "03f0", "5c11", "PhotoSmart C4200 Printer series" }, - { "03f0", "5c12", "OfficeJet 6700" }, - { "03f0", "5c17", "LaserJet P2055 series" }, - { "03f0", "5d11", "PhotoSmart C5200 series" }, - { "03f0", "5e11", "PhotoSmart D7400 series" }, - { "03f0", "6004", "DeskJet 5550" }, - { "03f0", "6102", "Hewlett Packard Digital Camera" }, - { "03f0", "6104", "DeskJet 5650c" }, - { "03f0", "6117", "color LaserJet 3550" }, - { "03f0", "6202", "PhotoSmart 215" }, - { "03f0", "6204", "DeskJet 5150c" }, - { "03f0", "6217", "Color LaserJet 4700" }, - { "03f0", "6302", "PhotoSmart 318/612" }, - { "03f0", "6317", "Color LaserJet 4730mfp" }, - { "03f0", "632a", "LaserJet M203-M206" }, - { "03f0", "6402", "PhotoSmart 715 (ptp)" }, - { "03f0", "6411", "PhotoSmart C8100 series" }, - { "03f0", "6417", "LaserJet 5200" }, - { "03f0", "6502", "PhotoSmart 120 (ptp)" }, - { "03f0", "6511", "PhotoSmart C7200 series" }, - { "03f0", "6602", "PhotoSmart 320" }, - { "03f0", "6611", "PhotoSmart C4380 series" }, - { "03f0", "6617", "LaserJet 5200L" }, - { "03f0", "6702", "PhotoSmart 720 (ptp)" }, - { "03f0", "6717", "Color LaserJet 3000" }, - { "03f0", "6802", "PhotoSmart 620 (ptp)" }, - { "03f0", "6811", "PhotoSmart D5300 series" }, - { "03f0", "6817", "Color LaserJet 3800" }, - { "03f0", "6911", "PhotoSmart D7200 series" }, - { "03f0", "6917", "Color LaserJet 3600" }, - { "03f0", "6a02", "PhotoSmart 735 (ptp)" }, - { "03f0", "6a11", "PhotoSmart C6200 series" }, - { "03f0", "6a17", "LaserJet 4240" }, - { "03f0", "6b02", "PhotoSmart R707 (PTP mode)" }, - { "03f0", "6b11", "Photosmart C4500 series" }, - { "03f0", "6c11", "Photosmart C4480" }, - { "03f0", "6c17", "Color LaserJet 4610" }, - { "03f0", "6f17", "Color LaserJet CP6015 series" }, - { "03f0", "7004", "DeskJet 3320c" }, - { "03f0", "7102", "PhotoSmart 635 (PTP mode)" }, - { "03f0", "7104", "DeskJet 3420c" }, - { "03f0", "7117", "CM8060 Color MFP with Edgeline Technology" }, - { "03f0", "7202", "PhotoSmart 43x (ptp)" }, - { "03f0", "7204", "DeskJet 36xx" }, - { "03f0", "7217", "LaserJet M5035 MFP" }, - { "03f0", "7302", "PhotoSmart M307 (PTP mode)" }, - { "03f0", "7304", "DeskJet 35xx" }, - { "03f0", "7311", "Photosmart Premium C309" }, - { "03f0", "7317", "LaserJet P3005" }, - { "03f0", "7404", "Printing Support" }, - { "03f0", "7417", "LaserJet M4345 MFP" }, - { "03f0", "7504", "Printing Support" }, - { "03f0", "7517", "LaserJet M3035 MFP" }, - { "03f0", "7604", "DeskJet 3940" }, - { "03f0", "7611", "DeskJet F2492 All-in-One" }, - { "03f0", "7617", "LaserJet P3004" }, - { "03f0", "7702", "PhotoSmart R817 (PTP mode)" }, - { "03f0", "7704", "DeskJet D4100" }, - { "03f0", "7717", "CM8050 Color MFP with Edgeline Technology" }, - { "03f0", "7804", "DeskJet D1360" }, - { "03f0", "7817", "Color LaserJet CP3505" }, - { "03f0", "7917", "LaserJet M5025 MFP" }, - { "03f0", "7a02", "PhotoSmart M415 (PTP mode)" }, - { "03f0", "7a04", "DeskJet D2460" }, - { "03f0", "7a11", "Photosmart B109" }, - { "03f0", "7a17", "LaserJet M3027 MFP" }, - { "03f0", "7b02", "PhotoSmart M23 (PTP mode)" }, - { "03f0", "7b17", "Color LaserJet CP4005" }, - { "03f0", "7c17", "Color LaserJet CM6040 series" }, - { "03f0", "7d04", "DeskJet F2100 Printer series" }, - { "03f0", "7d17", "Color LaserJet CM4730 MFP" }, - { "03f0", "7e04", "DeskJet F4100 Printer series" }, - { "03f0", "8017", "LaserJet P4515" }, - { "03f0", "8104", "Printing Support" }, - { "03f0", "8117", "LaserJet P4015" }, - { "03f0", "811c", "Ethernet HN210E" }, - { "03f0", "8204", "Printing Support" }, - { "03f0", "8207", "FHA-3510 2.4GHz Wireless Optical Mobile Mouse" }, - { "03f0", "8217", "LaserJet P4014" }, - { "03f0", "8317", "LaserJet M9050 MFP" }, - { "03f0", "8404", "DeskJet 6800 series" }, - { "03f0", "8417", "LaserJet M9040 MFP" }, - { "03f0", "8504", "DeskJet 6600 series" }, - { "03f0", "8604", "DeskJet 5440" }, - { "03f0", "8607", "Optical Mobile Mouse" }, - { "03f0", "8704", "DeskJet 5940" }, - { "03f0", "8711", "Deskjet 2050 J510" }, - { "03f0", "8804", "DeskJet 6980 series" }, - { "03f0", "8904", "DeskJet 6940 series" }, - { "03f0", "8911", "Deskjet 1050 J410" }, - { "03f0", "8c07", "Digital Stereo Headset" }, - { "03f0", "8c11", "Deskjet F4500 series" }, - { "03f0", "9002", "PhotoSmart M437" }, - { "03f0", "9102", "PhotoSmart M537" }, - { "03f0", "9207", "HD-4110 Webcam" }, - { "03f0", "9302", "PhotoSmart R930 series" }, - { "03f0", "9402", "PhotoSmart R837" }, - { "03f0", "942a", "LaserJet Pro M12a" }, - { "03f0", "9502", "PhotoSmart R840 series" }, - { "03f0", "952a", "LaserJet Pro M12w" }, - { "03f0", "9602", "PhotoSmart M730 series" }, - { "03f0", "9702", "PhotoSmart R740 series" }, - { "03f0", "9802", "PhotoSmart Mz60 series" }, - { "03f0", "9902", "PhotoSmart M630 series" }, - { "03f0", "9a02", "PhotoSmart E330 series" }, - { "03f0", "9b02", "PhotoSmart M540 series" }, - { "03f0", "9b07", "Portable Drive" }, - { "03f0", "9c02", "PhotoSmart M440 series" }, - { "03f0", "a004", "DeskJet 5850c" }, - { "03f0", "a011", "Deskjet 3050A" }, - { "03f0", "a407", "Wireless Optical Comfort Mouse" }, - { "03f0", "b002", "PhotoSmart 7200 series" }, - { "03f0", "b102", "PhotoSmart 7200 series" }, - { "03f0", "b107", "v255w/c310w Flash Drive" }, - { "03f0", "b116", "Webcam" }, - { "03f0", "b202", "PhotoSmart 7600 series" }, - { "03f0", "b302", "PhotoSmart 7600 series" }, - { "03f0", "b402", "PhotoSmart 7700 series" }, - { "03f0", "b502", "PhotoSmart 7700 series" }, - { "03f0", "b602", "PhotoSmart 7900 series" }, - { "03f0", "b702", "PhotoSmart 7900 series" }, - { "03f0", "b802", "PhotoSmart 7400 series" }, - { "03f0", "b902", "PhotoSmart 7800 series" }, - { "03f0", "ba02", "PhotoSmart 8100 series" }, - { "03f0", "bb02", "PhotoSmart 8400 series" }, - { "03f0", "bc02", "PhotoSmart 8700 series" }, - { "03f0", "bc11", "Photosmart 7520 series" }, - { "03f0", "bd02", "PhotoSmart Pro B9100 series" }, - { "03f0", "bef4", "NEC Picty760" }, - { "03f0", "c002", "PhotoSmart 7800 series" }, - { "03f0", "c102", "PhotoSmart 8000 series" }, - { "03f0", "c111", "Deskjet 1510" }, - { "03f0", "c202", "PhotoSmart 8200 series" }, - { "03f0", "c211", "Deskjet 2540 series" }, - { "03f0", "c302", "DeskJet D2300" }, - { "03f0", "c402", "PhotoSmart D5100 series" }, - { "03f0", "c502", "PhotoSmart D6100 series" }, - { "03f0", "c602", "PhotoSmart D7100 series" }, - { "03f0", "c702", "PhotoSmart D7300 series" }, - { "03f0", "c802", "PhotoSmart D5060 Printer" }, - { "03f0", "d104", "Bluetooth Dongle" }, - { "03f0", "d507", "39gII [NW249AA]" }, - { "03f0", "efbe", "NEC Picty900" }, - { "03f0", "f0be", "NEC Picty920" }, - { "03f0", "f1be", "NEC Picty800" }, - { "03f3", "0020", "AWN-8020 WLAN [Intersil PRISM 2.5]" }, - { "03f3", "0080", "AVC-1100 Audio Capture" }, - { "03f3", "0083", "AVC-2200 Device" }, - { "03f3", "0087", "AVC-2210 Loader" }, - { "03f3", "0088", "AVC-2210 Device" }, - { "03f3", "008b", "AVC-2310 Loader" }, - { "03f3", "008c", "AVC-2310 Device" }, - { "03f3", "0094", "eHome Infrared Receiver" }, - { "03f3", "009b", "AVC-1410 GameBridge TV NTSC" }, - { "03f3", "2000", "USBXchange" }, - { "03f3", "2001", "USBXchange Adapter" }, - { "03f3", "2002", "USB2-Xchange" }, - { "03f3", "2003", "USB2-Xchange Adapter" }, - { "03f3", "4000", "4-port hub" }, - { "03f3", "adcc", "Composite Device Support" }, - { "03f9", "0100", "KT-2001 Keyboard" }, - { "03f9", "0101", "Keyboard" }, - { "03f9", "0102", "Keyboard Mouse" }, - { "03fd", "0008", "Platform Cable USB II" }, - { "03fd", "0050", "dfu downloader" }, - { "0400", "05dc", "Rigol Technologies DS1000USB Oscilloscope" }, - { "0400", "0807", "Bluetooth Dongle" }, - { "0400", "080a", "Bluetooth Device" }, - { "0400", "09c4", "Rigol Technologies DG1022 Arbitrary Waveform Generator" }, - { "0400", "1000", "Mustek BearPaw 1200 Scanner" }, - { "0400", "1001", "Mustek BearPaw 2400 Scanner" }, - { "0400", "1237", "Hub" }, - { "0400", "a000", "Smart Display Reference Device" }, - { "0400", "c359", "Logitech Harmony" }, - { "0400", "c35b", "Printing Support" }, - { "0400", "c55d", "Rigol Technologies DS5000USB Oscilloscope" }, - { "0402", "5462", "M5462 IDE Controller" }, - { "0402", "5602", "M5602 Video Camera Controller" }, - { "0402", "5603", "M5603 Video Camera Controller" }, - { "0402", "5606", "M5606 Video Camera Controller [UVC]" }, - { "0402", "5621", "M5621 High-Speed IDE Controller" }, - { "0402", "5623", "M5623 Scanner Controller" }, - { "0402", "5627", "Welland ME-740PS USB2 3.5\" Power Saving Enclosure" }, - { "0402", "5632", "M5632 Host-to-Host Link" }, - { "0402", "5635", "M5635 Flash Card Reader" }, - { "0402", "5636", "USB 2.0 Storage Device" }, - { "0402", "5637", "M5637 IDE Controller" }, - { "0402", "5642", "Storage Device" }, - { "0402", "5661", "M5661 MP3 player" }, - { "0402", "5667", "M5667 MP3 player" }, - { "0402", "8841", "Newmine Camera" }, - { "0402", "9665", "Gateway Webcam" }, - { "0403", "0000", "H4SMK 7 Port Hub / Bricked Counterfeit FT232 Serial (UART) IC" }, - { "0403", "0232", "Serial Converter" }, - { "0403", "1060", "JTAG adapter" }, - { "0403", "1234", "IronLogic RFID Adapter [Z-2 USB]" }, - { "0403", "1235", "Iron Logic Z-397 RS-485/422 converter" }, - { "0403", "6001", "FT232 Serial (UART) IC" }, - { "0403", "6002", "Lumel PD12" }, - { "0403", "6007", "Serial Converter" }, - { "0403", "6008", "Serial Converter" }, - { "0403", "6009", "Serial Converter" }, - { "0403", "6010", "FT2232C/D/H Dual UART/FIFO IC" }, - { "0403", "6011", "FT4232H Quad HS USB-UART/FIFO IC" }, - { "0403", "6014", "FT232H Single HS USB-UART/FIFO IC" }, - { "0403", "6015", "Bridge(I2C/SPI/UART/FIFO)" }, - { "0403", "601f", "Myriad-RF LimeSDR-Mini" }, - { "0403", "6ee0", "EZO Carrier Board" }, - { "0403", "6f70", "HB-RF-USB" }, - { "0403", "7be8", "FT232R" }, - { "0403", "8028", "Dev board JTAG (FT232H based)" }, - { "0403", "8040", "4 Port Hub" }, - { "0403", "8070", "7 Port Hub" }, - { "0403", "8140", "Vehicle Explorer Interface" }, - { "0403", "8210", "MGTimer - MGCC (Vic) Timing System" }, - { "0403", "8348", "FT232BM [SIENNA Serial Interface]" }, - { "0403", "8370", "7 Port Hub" }, - { "0403", "8371", "PS/2 Keyboard And Mouse" }, - { "0403", "8372", "FT8U100AX Serial Port" }, - { "0403", "8508", "Selectronic SP PRO" }, - { "0403", "87d0", "Cressi Dive Computer Interface" }, - { "0403", "8a28", "Rainforest Automation ZigBee Controller" }, - { "0403", "8a98", "TIAO Multi-Protocol Adapter" }, - { "0403", "8b28", "Alpermann+Velte TCI70" }, - { "0403", "8b29", "Alpermann+Velte TC60 CLS" }, - { "0403", "8b2a", "Alpermann+Velte Rubidium Q1" }, - { "0403", "8b2b", "Alpermann+Velte TCD" }, - { "0403", "8b2c", "Alpermann+Velte TCC70" }, - { "0403", "9090", "SNAP Stick 200" }, - { "0403", "9132", "LCD and Temperature Interface" }, - { "0403", "9133", "CallerID" }, - { "0403", "9134", "Virtual keyboard" }, - { "0403", "9135", "Rotary Pub alarm" }, - { "0403", "9136", "Pulsecounter" }, - { "0403", "9137", "Ledbutton interface" }, - { "0403", "9e90", "Marvell OpenRD Base/Client" }, - { "0403", "9f08", "CIB-1894 Conclusion SmartLink Box:" }, - { "0403", "9f80", "Ewert Energy Systems CANdapter" }, - { "0403", "a6d0", "Texas Instruments XDS100v2 JTAG / BeagleBone A3" }, - { "0403", "a951", "HCP HIT GSM/GPRS modem [Cinterion MC55i]" }, - { "0403", "a9a0", "FT2232D - Dual UART/FIFO IC - FTDI" }, - { "0403", "abb8", "Lego Mindstorms NXTCam" }, - { "0403", "b0c0", "microSensys RFID device" }, - { "0403", "b0c1", "microSensys RFID device" }, - { "0403", "b0c2", "iID contactless RFID device" }, - { "0403", "b0c3", "iID contactless RFID device" }, - { "0403", "b0c4", "RFID device" }, - { "0403", "b0c5", "RFID device" }, - { "0403", "b810", "US Interface Navigator (CAT and 2nd PTT lines)" }, - { "0403", "b811", "US Interface Navigator (WKEY and FSK lines)" }, - { "0403", "b812", "US Interface Navigator (RS232 and CONFIG lines)" }, - { "0403", "b9b0", "Fujitsu SK-16FX-100PMC V1.1" }, - { "0403", "baf8", "Amontec JTAGkey" }, - { "0403", "bcd8", "Stellaris Development Board" }, - { "0403", "bcd9", "Stellaris Evaluation Board" }, - { "0403", "bcda", "Stellaris ICDI Board" }, - { "0403", "bd90", "PICAXE Download Cable [AXE027]" }, - { "0403", "bdc8", "Egnite GmbH - JTAG/RS-232 adapter" }, - { "0403", "bfd8", "OpenDCC" }, - { "0403", "bfd9", "OpenDCC (Sniffer)" }, - { "0403", "bfda", "OpenDCC (Throttle)" }, - { "0403", "bfdb", "OpenDCC (Gateway)" }, - { "0403", "bfdc", "OpenDCC (GBM)" }, - { "0403", "c580", "HID UNIKEY dongle [F-Response]" }, - { "0403", "c630", "lcd2usb interface" }, - { "0403", "c631", "i2c-tiny-usb interface" }, - { "0403", "c632", "xu1541 c64 floppy drive interface" }, - { "0403", "c633", "TinyCrypt dongle" }, - { "0403", "c634", "glcd2usb interface" }, - { "0403", "c7d0", "RR-CirKits LocoBuffer-USB" }, - { "0403", "c8b8", "Alpermann+Velte MTD TCU" }, - { "0403", "c8b9", "Alpermann+Velte MTD TCU 1HE" }, - { "0403", "c8ba", "Alpermann+Velte Rubidium H1" }, - { "0403", "c8bb", "Alpermann+Velte Rubidium H3" }, - { "0403", "c8bc", "Alpermann+Velte Rubidium S1" }, - { "0403", "c8bd", "Alpermann+Velte Rubidium T1" }, - { "0403", "c8be", "Alpermann+Velte Rubidium D1" }, - { "0403", "c8bf", "Alpermann+Velte TC60 RLV" }, - { "0403", "cc48", "Tactrix OpenPort 1.3 Mitsubishi" }, - { "0403", "cc49", "Tactrix OpenPort 1.3 Subaru" }, - { "0403", "cc4a", "Tactrix OpenPort 1.3 Universal" }, - { "0403", "cff8", "Amontec JTAGkey" }, - { "0403", "d010", "SCS PTC-IIusb" }, - { "0403", "d011", "SCS Position-Tracker/TNC" }, - { "0403", "d012", "SCS DRAGON 1" }, - { "0403", "d013", "SCS DRAGON 1" }, - { "0403", "d388", "Xsens converter" }, - { "0403", "d389", "Xsens Wireless Receiver" }, - { "0403", "d38a", "Xsens serial converter" }, - { "0403", "d38b", "Xsens serial converter" }, - { "0403", "d38c", "Xsens Wireless Receiver" }, - { "0403", "d38d", "Xsens Awinda Station" }, - { "0403", "d38e", "Xsens serial converter" }, - { "0403", "d38f", "Xsens serial converter" }, - { "0403", "d491", "Zolix Omni 1509 monochromator" }, - { "0403", "d578", "Accesio USB-COM-4SM" }, - { "0403", "d6f8", "UNI Black BOX" }, - { "0403", "d738", "Propox JTAGcable II" }, - { "0403", "d739", "Propox ISPcable III" }, - { "0403", "d9a9", "Actisense USG-1 NMEA Serial Gateway" }, - { "0403", "d9aa", "Actisense NGT-1 NMEA2000 PC Interface" }, - { "0403", "d9ab", "Actisense NGT-1 NMEA2000 Gateway" }, - { "0403", "daf4", "Qundis Serial Infrared Head" }, - { "0403", "e0d0", "Total Phase Aardvark I2C/SPI Host Adapter" }, - { "0403", "e518", "IBR IMB-usb" }, - { "0403", "e521", "EVER Sinline XL Series UPS" }, - { "0403", "e6c8", "PYRAMID Computer GmbH LCD" }, - { "0403", "e700", "Elster Unicom III Optical Probe" }, - { "0403", "e729", "Segway Robotic Mobility Platforms 200" }, - { "0403", "e888", "Expert ISDN Control USB" }, - { "0403", "e889", "USB-RS232 OptoBridge" }, - { "0403", "e88a", "Expert mouseCLOCK USB II" }, - { "0403", "e88b", "Precision Clock MSF USB" }, - { "0403", "e88c", "Expert mouseCLOCK USB II HBG" }, - { "0403", "e8d8", "Aaronia AG Spectran Spectrum Analyzer" }, - { "0403", "e8dc", "Aaronia AG UBBV Preamplifier" }, - { "0403", "ea90", "Eclo 1-Wire Adapter" }, - { "0403", "ecd9", "miControl miCan-Stick" }, - { "0403", "ed71", "HAMEG HO870 Serial Port" }, - { "0403", "ed72", "HAMEG HO720 Serial Port" }, - { "0403", "ed73", "HAMEG HO730 Serial Port" }, - { "0403", "ed74", "HAMEG HO820 Serial Port" }, - { "0403", "eea2", "PCStage Lite 32 channel DMX512 Interface" }, - { "0403", "ef10", "FT1245BL" }, - { "0403", "f070", "Serial Converter 422/485 [Vardaan VEUSB422R3]" }, - { "0403", "f0c8", "SPROG Decoder Programmer" }, - { "0403", "f0c9", "SPROG-DCC CAN-USB" }, - { "0403", "f0e9", "Tagsys L-P101" }, - { "0403", "f0ee", "Tagsys Medio P200x" }, - { "0403", "f1a0", "Asix PRESTO Programmer" }, - { "0403", "f208", "Papenmeier Braille-Display" }, - { "0403", "f3c0", "4N-GALAXY Serial Converter" }, - { "0403", "f458", "ABACUS ELECTRICS Optical Probe" }, - { "0403", "f608", "CTI USB-485-Mini" }, - { "0403", "f60b", "CTI USB-Nano-485" }, - { "0403", "f680", "Suunto Sports Instrument" }, - { "0403", "f758", "GW Instek GDS-8x0 Oscilloscope" }, - { "0403", "f7c0", "ZeitControl Cardsystems TagTracer MIFARE" }, - { "0403", "f850", "USB-UIRT (Universal Infrared Receiver+Transmitter)" }, - { "0403", "f918", "Ant8 Logic Probe" }, - { "0403", "f9d9", "Wetterempfanger 147.3kHz" }, - { "0403", "fa00", "Matrix Orbital USB Serial" }, - { "0403", "fa01", "Matrix Orbital MX2 or MX3" }, - { "0403", "fa02", "Matrix Orbital MX4 or MX5" }, - { "0403", "fa03", "Matrix Orbital VK/LK202 Family" }, - { "0403", "fa04", "Matrix Orbital VK/LK204 Family" }, - { "0403", "fa20", "Ross-Tech HEX-USB" }, - { "0403", "fc08", "Crystalfontz CFA-632 USB LCD" }, - { "0403", "fc09", "Crystalfontz CFA-634 USB LCD" }, - { "0403", "fc0b", "Crystalfontz CFA-633 USB LCD" }, - { "0403", "fc0c", "Crystalfontz CFA-631 USB LCD" }, - { "0403", "fc0d", "Crystalfontz CFA-635 USB LCD" }, - { "0403", "fc82", "SEMC DSS-20/DSS-25 SyncStation" }, - { "0403", "fd48", "ShipModul MiniPlex-4xUSB NMEA Multiplexer" }, - { "0403", "fd49", "ShipModul MiniPlex-4xUSB-AIS NMEA Multiplexer" }, - { "0403", "fd4b", "ShipModul MiniPlex NMEA Multiplexer" }, - { "0403", "ff08", "ToolHouse LoopBack Adapter" }, - { "0403", "ff18", "ScienceScope Logbook ML" }, - { "0403", "ff19", "Logbook Bus" }, - { "0403", "ff1a", "Logbook Bus" }, - { "0403", "ff1b", "Logbook Bus" }, - { "0403", "ff1c", "ScienceScope Logbook LS" }, - { "0403", "ff1d", "ScienceScope Logbook HS" }, - { "0403", "ff1e", "Logbook Bus" }, - { "0403", "ff1f", "Logbook Bus" }, - { "0404", "0202", "78XX Scanner" }, - { "0404", "0203", "78XX Scanner - Embedded System" }, - { "0404", "0310", "K590 Printer, Self-Service" }, - { "0404", "0311", "7167 Printer, Receipt/Slip" }, - { "0404", "0312", "7197 Printer Receipt" }, - { "0404", "0320", "5932-USB Keyboard" }, - { "0404", "0321", "5953-USB Dynakey" }, - { "0404", "0322", "5932-USB Enhanced Keyboard" }, - { "0404", "0323", "5932-USB Enhanced Keyboard, Flash-Recovery/Download" }, - { "0404", "0324", "5953-USB Enhanced Dynakey" }, - { "0404", "0325", "5953-USB Enhanced Dynakey Flash-Recovery/Download" }, - { "0404", "0328", "K016: USB-MSR ISO 3-track MSR: POS Standard (See HID pages)" }, - { "0404", "0329", "K018: USB-MSR JIS 2-Track MSR: POS Standard" }, - { "0404", "032a", "K016: USB-MSR ISO 3-Track MSR: HID Keyboard Mode" }, - { "0404", "032b", "K016/K018: USB-MSR Flash-Recovery/Download" }, - { "0408", "0103", "FV TouchCam N1 (Audio)" }, - { "0408", "030c", "HP Webcam" }, - { "0408", "03b2", "HP Webcam" }, - { "0408", "03f4", "HP Webcam" }, - { "0408", "1030", "FV TouchCam N1 (Video)" }, - { "0408", "3000", "Optical dual-touch panel" }, - { "0408", "3001", "Optical Touch Screen" }, - { "0408", "3008", "Optical Touch Screen" }, - { "0408", "a060", "HD Webcam" }, - { "0409", "0011", "PC98 Series Layout Keyboard Mouse" }, - { "0409", "0012", "ATerm IT75DSU ISDN TA" }, - { "0409", "0014", "Japanese Keyboard" }, - { "0409", "0019", "109 Japanese Keyboard with Bus-Powered Hub" }, - { "0409", "001a", "PC98 Series Layout Keyboard with Bus-Powered Hub" }, - { "0409", "0025", "Mini Keyboard with Bus-Powered Hub" }, - { "0409", "0027", "MultiSync Monitor" }, - { "0409", "002c", "Clik!-USB Drive" }, - { "0409", "0034", "109 Japanese Keyboard with One-touch start buttons" }, - { "0409", "003f", "Wireless Keyboard with One-touch start buttons" }, - { "0409", "0040", "Floppy" }, - { "0409", "004e", "SuperScript 1400 Series" }, - { "0409", "004f", "Wireless Keyboard with One-touch start buttons" }, - { "0409", "0050", "7-port hub" }, - { "0409", "0058", "HighSpeed Hub" }, - { "0409", "0059", "HighSpeed Hub" }, - { "0409", "005a", "HighSpeed Hub" }, - { "0409", "006a", "Conceptronic USB Harddisk Box" }, - { "0409", "007d", "MINICUBE2" }, - { "0409", "007e", "PG-FP5 Flash Memory Programmer" }, - { "0409", "0081", "SuperScript 1400 Series" }, - { "0409", "0082", "SuperScript 1400 Series" }, - { "0409", "0094", "Japanese Keyboard with One-touch start buttons" }, - { "0409", "0095", "Japanese Keyboard" }, - { "0409", "00a9", "AtermIT21L 128K Support Standard" }, - { "0409", "00aa", "AtermITX72 128K Support Standard" }, - { "0409", "00ab", "AtermITX62 128K Support Standard" }, - { "0409", "00ac", "AtermIT42 128K Support Standard" }, - { "0409", "00ae", "INSMATEV70G-MAX Standard" }, - { "0409", "00af", "AtermITX70 128K Support Standard" }, - { "0409", "00b0", "AtermITX80 128K Support Standard" }, - { "0409", "00b2", "AtermITX80D 128K Support Standard" }, - { "0409", "00c0", "Wireless Remocon" }, - { "0409", "00f7", "Smart Display PK-SD10" }, - { "0409", "011d", "e228 Mobile Phone" }, - { "0409", "0193", "RVT-R Writer" }, - { "0409", "0203", "HID Audio Controls" }, - { "0409", "021d", "Aterm WL54SU2 802.11g Wireless Adapter [Atheros AR5523]" }, - { "0409", "0248", "Aterm PA-WL54GU" }, - { "0409", "0249", "Aterm WL300NU-G" }, - { "0409", "02b4", "Aterm WL300NU-AG" }, - { "0409", "02b6", "Aterm WL300NU-GS 802.11n Wireless Adapter" }, - { "0409", "02bc", "Computer Monitor" }, - { "0409", "0300", "LifeTouch Note" }, - { "0409", "0301", "LifeTouch Note (debug mode)" }, - { "0409", "55aa", "Hub" }, - { "0409", "55ab", "Hub [iMac/iTouch kbd]" }, - { "0409", "8010", "Intellibase Hub" }, - { "0409", "8011", "Intellibase Hub" }, - { "0409", "efbe", "P!cty 900 [HP DJ]" }, - { "0409", "f0be", "P!cty 920 [HP DJ 812c]" }, - { "040a", "0001", "DVC-323" }, - { "040a", "0002", "DVC-325" }, - { "040a", "0100", "DC-220" }, - { "040a", "0110", "DC-260" }, - { "040a", "0111", "DC-265" }, - { "040a", "0112", "DC-290" }, - { "040a", "0120", "DC-240" }, - { "040a", "0121", "DC-240 (PTP firmware)" }, - { "040a", "0130", "DC-280" }, - { "040a", "0131", "DC-5000" }, - { "040a", "0132", "DC-3400" }, - { "040a", "0140", "DC-4800" }, - { "040a", "0160", "DC4800" }, - { "040a", "0170", "DX3900" }, - { "040a", "0200", "Digital Camera" }, - { "040a", "0300", "EZ-200" }, - { "040a", "0400", "MC3" }, - { "040a", "0402", "Digital Camera" }, - { "040a", "0403", "Z7590" }, - { "040a", "0500", "DX3500" }, - { "040a", "0510", "DX3600" }, - { "040a", "0525", "DX3215" }, - { "040a", "0530", "DX3700" }, - { "040a", "0535", "EasyShare CX4230 Camera" }, - { "040a", "0540", "LS420" }, - { "040a", "0550", "DX4900" }, - { "040a", "0555", "DX4330" }, - { "040a", "0560", "CX4200" }, - { "040a", "0565", "CX4210" }, - { "040a", "0566", "CX4300" }, - { "040a", "0567", "LS753" }, - { "040a", "0568", "LS443" }, - { "040a", "0569", "LS663" }, - { "040a", "0570", "DX6340" }, - { "040a", "0571", "CX6330" }, - { "040a", "0572", "DX6440" }, - { "040a", "0573", "CX6230" }, - { "040a", "0574", "CX6200" }, - { "040a", "0575", "DX6490" }, - { "040a", "0576", "DX4530" }, - { "040a", "0577", "DX7630" }, - { "040a", "0578", "CX7300/CX7310" }, - { "040a", "0579", "CX7220" }, - { "040a", "057a", "CX7330" }, - { "040a", "057b", "CX7430" }, - { "040a", "057c", "CX7530" }, - { "040a", "057d", "DX7440" }, - { "040a", "057e", "C300" }, - { "040a", "057f", "DX7590" }, - { "040a", "0580", "Z730" }, - { "040a", "0581", "Digital Camera" }, - { "040a", "0582", "Digital Camera" }, - { "040a", "0583", "Digital Camera" }, - { "040a", "0584", "CX6445" }, - { "040a", "0585", "Digital Camera" }, - { "040a", "0586", "CX7525" }, - { "040a", "0587", "Digital Camera" }, - { "040a", "0588", "Digital Camera" }, - { "040a", "0589", "EasyShare C360" }, - { "040a", "058a", "C310" }, - { "040a", "058b", "Digital Camera" }, - { "040a", "058c", "C330" }, - { "040a", "058d", "C340" }, - { "040a", "058e", "V530" }, - { "040a", "058f", "V550" }, - { "040a", "0590", "Digital Camera" }, - { "040a", "0591", "Digital Camera" }, - { "040a", "0592", "Digital Camera" }, - { "040a", "0593", "Digital Camera" }, - { "040a", "0594", "Digital Camera" }, - { "040a", "0595", "Digital Camera" }, - { "040a", "0596", "Digital Camera" }, - { "040a", "0597", "Digital Camera" }, - { "040a", "0598", "EASYSHARE M1033 digital camera" }, - { "040a", "0599", "Digital Camera" }, - { "040a", "059a", "Digital Camera" }, - { "040a", "059b", "Digital Camera" }, - { "040a", "059c", "Digital Camera" }, - { "040a", "059d", "Digital Camera" }, - { "040a", "059e", "Digital Camera" }, - { "040a", "059f", "Digital Camera" }, - { "040a", "05a0", "Digital Camera" }, - { "040a", "05a1", "Digital Camera" }, - { "040a", "05a2", "Digital Camera" }, - { "040a", "05a3", "Digital Camera" }, - { "040a", "05a4", "Digital Camera" }, - { "040a", "05a5", "Digital Camera" }, - { "040a", "05a6", "Digital Camera" }, - { "040a", "05a7", "Digital Camera" }, - { "040a", "05a8", "Digital Camera" }, - { "040a", "05a9", "Digital Camera" }, - { "040a", "05aa", "Digital Camera" }, - { "040a", "05ab", "Digital Camera" }, - { "040a", "05ac", "Digital Camera" }, - { "040a", "05ad", "Digital Camera" }, - { "040a", "05ae", "Digital Camera" }, - { "040a", "05af", "Digital Camera" }, - { "040a", "05b0", "Digital Camera" }, - { "040a", "05b1", "Digital Camera" }, - { "040a", "05b2", "Digital Camera" }, - { "040a", "05b3", "EasyShare Z710 Camera" }, - { "040a", "05b4", "Digital Camera" }, - { "040a", "05b5", "Digital Camera" }, - { "040a", "05b6", "Digital Camera" }, - { "040a", "05b7", "Digital Camera" }, - { "040a", "05b8", "Digital Camera" }, - { "040a", "05b9", "Digital Camera" }, - { "040a", "05ba", "Digital Camera" }, - { "040a", "05bb", "Digital Camera" }, - { "040a", "05bc", "Digital Camera" }, - { "040a", "05bd", "Digital Camera" }, - { "040a", "05be", "Digital Camera" }, - { "040a", "05bf", "Digital Camera" }, - { "040a", "05c0", "Digital Camera" }, - { "040a", "05c1", "Digital Camera" }, - { "040a", "05c2", "Digital Camera" }, - { "040a", "05c3", "Digital Camera" }, - { "040a", "05c4", "Digital Camera" }, - { "040a", "05c5", "Digital Camera" }, - { "040a", "05c8", "EASYSHARE Z1485 IS Digital Camera" }, - { "040a", "05d3", "EasyShare M320 Camera" }, - { "040a", "05d4", "EasyShare C180 Digital Camera" }, - { "040a", "1001", "EasyShare SV811 Digital Picture Frame" }, - { "040a", "4000", "InkJet Color Printer" }, - { "040a", "4021", "Photo Printer 6800" }, - { "040a", "4022", "1400 Digital Photo Printer" }, - { "040a", "4023", "Photo Printer 8800 / 9810" }, - { "040a", "402b", "Photo Printer 6850" }, - { "040a", "402e", "605 Photo Printer" }, - { "040a", "4034", "805 Photo Printer" }, - { "040a", "4035", "7000 Photo Printer" }, - { "040a", "4037", "7010 Photo Printer" }, - { "040a", "4038", "7015 Photo Printer" }, - { "040a", "404d", "8810 Photo Printer" }, - { "040a", "404f", "305 Photo Printer" }, - { "040a", "4056", "ESP 7200 Series AiO" }, - { "040a", "4109", "EasyShare Printer Dock Series 3" }, - { "040a", "410d", "EasyShare G600 Printer Dock" }, - { "040a", "5010", "Wireless Adapter" }, - { "040a", "5012", "DBT-220 Bluetooth Adapter" }, - { "040a", "6001", "i30" }, - { "040a", "6002", "i40" }, - { "040a", "6003", "i50" }, - { "040a", "6004", "i60" }, - { "040a", "6005", "i80" }, - { "040a", "6029", "i900" }, - { "040a", "602a", "i900" }, - { "040b", "0a68", "Func MS-3 gaming mouse [WT6573F MCU]" }, - { "040b", "2000", "wired Keyboard [Dynex DX-WRK1401]" }, - { "040b", "2367", "Human Interface Device [HP CalcPad 200 Calculator and Numeric Keypad]" }, - { "040b", "6510", "Weltrend Bar Code Reader" }, - { "040b", "6520", "Xploder Xbox Memory Unit (8MB)" }, - { "040b", "6533", "Speed-Link Competition Pro" }, - { "040b", "6543", "Manhattan Magnetic Card Strip Reader" }, - { "040d", "3184", "VNT VT6656 USB-802.11 Wireless LAN Adapter" }, - { "040d", "340f", "Audinst HUD-mx2" }, - { "040d", "6205", "USB 2.0 Card Reader" }, - { "0411", "0001", "LUA-TX Ethernet [pegasus]" }, - { "0411", "0005", "LUA-TX Ethernet" }, - { "0411", "0006", "WLI-USB-L11 Wireless LAN Adapter" }, - { "0411", "0009", "LUA2-TX Ethernet" }, - { "0411", "000b", "WLI-USB-L11G-WR Wireless LAN Adapter" }, - { "0411", "000d", "WLI-USB-L11G Wireless LAN Adapter" }, - { "0411", "0012", "LUA-KTX Ethernet" }, - { "0411", "0013", "USB2-IDE Adapter" }, - { "0411", "0016", "WLI-USB-S11 802.11b Adapter" }, - { "0411", "0018", "USB2-IDE Adapter" }, - { "0411", "001c", "USB-IDE Bridge: DUB-PxxG" }, - { "0411", "0027", "WLI-USB-KS11G 802.11b Adapter" }, - { "0411", "002a", "SMSC USB97C202 \"HD-HB300V2-EU\"" }, - { "0411", "003d", "LUA-U2-KTX Ethernet" }, - { "0411", "0044", "WLI-USB-KB11 Wireless LAN Adapter" }, - { "0411", "004b", "WLI-USB-G54 802.11g Adapter [Broadcom 4320 USB]" }, - { "0411", "004d", "WLI-USB-B11 Wireless LAN Adapter" }, - { "0411", "0050", "WLI2-USB2-G54 Wireless LAN Adapter" }, - { "0411", "005e", "WLI-U2-KG54-YB WLAN" }, - { "0411", "0065", "Python2 WDM Encoder" }, - { "0411", "0066", "WLI-U2-KG54 WLAN" }, - { "0411", "0067", "WLI-U2-KG54-AI WLAN" }, - { "0411", "006e", "LUA-U2-GT 10/100/1000 Ethernet Adapter" }, - { "0411", "0089", "RUF-C/U2 Flash Drive" }, - { "0411", "008b", "Nintendo Wi-Fi" }, - { "0411", "0091", "WLI-U2-KAMG54 Wireless LAN Adapter" }, - { "0411", "0092", "WLI-U2-KAMG54 Bootloader" }, - { "0411", "0097", "WLI-U2-KG54-BB" }, - { "0411", "00a9", "WLI-U2-AMG54HP Wireless LAN Adapter" }, - { "0411", "00aa", "WLI-U2-AMG54HP Bootloader" }, - { "0411", "00b3", "PC-OP-RS1 RemoteStation" }, - { "0411", "00bc", "WLI-U2-KG125S 802.11g Adapter [Broadcom 4320 USB]" }, - { "0411", "00ca", "802.11n Network Adapter" }, - { "0411", "00cb", "WLI-U2-G300N 802.11n Adapter" }, - { "0411", "00d8", "WLI-U2-SG54HP" }, - { "0411", "00d9", "WLI-U2-G54HP" }, - { "0411", "00da", "WLI-U2-KG54L 802.11bg [ZyDAS ZD1211B]" }, - { "0411", "00db", "External Hard Drive HD-PF32OU2 [Buffalo Ministation]" }, - { "0411", "00e8", "WLI-UC-G300N Wireless LAN Adapter [Ralink RT2870]" }, - { "0411", "00f9", "Portable DVD Writer (DVSM-PL58U2)" }, - { "0411", "0105", "External Hard Drive HD-CEU2 [Drive Station]" }, - { "0411", "012c", "SATA Bridge" }, - { "0411", "012e", "WLI-UC-AG300N Wireless LAN Adapter" }, - { "0411", "0148", "WLI-UC-G300HP Wireless LAN Adapter" }, - { "0411", "0150", "WLP-UC-AG300 Wireless LAN Adapter" }, - { "0411", "0157", "External Hard Drive HD-PEU2" }, - { "0411", "0158", "WLI-UC-GNHP Wireless LAN Adapter" }, - { "0411", "015d", "WLI-UC-GN Wireless LAN Adapter [Ralink RT3070]" }, - { "0411", "016f", "WLI-UC-G301N Wireless LAN Adapter [Ralink RT3072]" }, - { "0411", "017f", "Sony UWA-BR100 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]" }, - { "0411", "019e", "WLI-UC-GNP Wireless LAN Adapter" }, - { "0411", "01a1", "MiniStation Metro" }, - { "0411", "01a2", "WLI-UC-GNM Wireless LAN Adapter [Ralink RT8070]" }, - { "0411", "01ba", "SATA Bridge" }, - { "0411", "01dc", "Ultra-Slim Portable DVD Writer (DVSM-PC58U2V)" }, - { "0411", "01de", "External Hard Drive HD-PCTU3 [Buffalo MiniStation]" }, - { "0411", "01ea", "SATA Bridge" }, - { "0411", "01ee", "WLI-UC-GNM2 Wireless LAN Adapter [Ralink RT3070]" }, - { "0411", "01f1", "SATA Adapter [HD-LBU3]" }, - { "0411", "01fd", "WLI-UC-G450 Wireless LAN Adapter" }, - { "0411", "027e", "HD-LCU3" }, - { "0413", "1310", "WinFast TV - NTSC + FM" }, - { "0413", "1311", "WinFast TV - NTSC + MTS + FM" }, - { "0413", "1312", "WinFast TV - PAL BG + FM" }, - { "0413", "1313", "WinFast TV - PAL BG+TXT + FM" }, - { "0413", "1314", "WinFast TV Audio - PHP PAL I" }, - { "0413", "1315", "WinFast TV Audio - PHP PAL I+TXT" }, - { "0413", "1316", "WinFast TV Audio - PHP PAL DK" }, - { "0413", "1317", "WinFast TV Audio - PHP PAL DK+TXT" }, - { "0413", "1318", "WinFast TV - PAL I/DK + FM" }, - { "0413", "1319", "WinFast TV - PAL N + FM" }, - { "0413", "131a", "WinFast TV Audio - PHP SECAM LL" }, - { "0413", "131b", "WinFast TV Audio - PHP SECAM LL+TXT" }, - { "0413", "131c", "WinFast TV Audio - PHP SECAM DK" }, - { "0413", "131d", "WinFast TV - SECAM DK + TXT + FM" }, - { "0413", "131e", "WinFast TV - NTSC Japan + FM" }, - { "0413", "1320", "WinFast TV - NTSC" }, - { "0413", "1321", "WinFast TV - NTSC + MTS" }, - { "0413", "1322", "WinFast TV - PAL BG" }, - { "0413", "1323", "WinFast TV - PAL BG+TXT" }, - { "0413", "1324", "WinFast TV Audio - PHP PAL I" }, - { "0413", "1325", "WinFast TV Audio - PHP PAL I+TXT" }, - { "0413", "1326", "WinFast TV Audio - PHP PAL DK" }, - { "0413", "1327", "WinFast TV Audio - PHP PAL DK+TXT" }, - { "0413", "1328", "WinFast TV - PAL I/DK" }, - { "0413", "1329", "WinFast TV - PAL N" }, - { "0413", "132a", "WinFast TV Audio - PHP SECAM LL" }, - { "0413", "132b", "WinFast TV Audio - PHP SECAM LL+TXT" }, - { "0413", "132c", "WinFast TV Audio - PHP SECAM DK" }, - { "0413", "132d", "WinFast TV - SECAM DK + TXT" }, - { "0413", "132e", "WinFast TV - NTSC Japan" }, - { "0413", "6023", "EMP Audio Device" }, - { "0413", "6024", "WinFast PalmTop/Novo TV Video" }, - { "0413", "6025", "WinFast DTV Dongle (cold state)" }, - { "0413", "6026", "WinFast DTV Dongle (warm state)" }, - { "0413", "6029", "WinFast DTV Dongle Gold" }, - { "0413", "6125", "WinFast DTV Dongle" }, - { "0413", "6126", "WinFast DTV Dongle BDA Driver" }, - { "0413", "6a03", "RTL2832 [WinFast DTV Dongle Mini]" }, - { "0413", "6f00", "WinFast DTV Dongle (STK7700P based)" }, - { "0416", "0035", "W89C35 802.11bg WLAN Adapter" }, - { "0416", "0101", "Hub" }, - { "0416", "0961", "AVL Flash Card Reader" }, - { "0416", "3810", "Smart Card Controller" }, - { "0416", "3811", "Generic Controller - Single interface" }, - { "0416", "3812", "Smart Card Controller_2Interface" }, - { "0416", "3813", "Panel Display" }, - { "0416", "5011", "Virtual Com Port" }, - { "0416", "511b", "Nuvoton Nu-Link1 ICE" }, - { "0416", "511c", "Nuvoton Nu-Link1 ICE" }, - { "0416", "511d", "Nuvoton Nu-Link1 ICE/VCOM" }, - { "0416", "511e", "Nuvoton Nu-Link1 MSC/VCOM" }, - { "0416", "5200", "Nuvoton Nu-Link2-ME ICE/MSC/VCOM" }, - { "0416", "5201", "Nuvoton Nu-Link2-Pro ICE/MSC/VCOM" }, - { "0416", "5210", "Nuvoton Nu-Link2 MSC FW UPGRADE" }, - { "0416", "5211", "Nuvoton Nu-Link2 HID FW UPGRADE" }, - { "0416", "5518", "4-Port Hub" }, - { "0416", "551a", "PC Sync Keypad" }, - { "0416", "551b", "PC Async Keypad" }, - { "0416", "551c", "Sync Tenkey" }, - { "0416", "551d", "Async Tenkey" }, - { "0416", "551e", "Keyboard" }, - { "0416", "551f", "Keyboard w/ Sys and Media" }, - { "0416", "5521", "Keyboard" }, - { "0416", "6481", "16-bit Scanner" }, - { "0416", "7721", "Memory Stick Reader/Writer" }, - { "0416", "7722", "Memory Stick Reader/Writer" }, - { "0416", "7723", "SD Card Reader" }, - { "0416", "b23c", "KT108 keyboard" }, - { "0416", "c141", "Barcode Scanner" }, - { "0419", "0001", "IrDA Remote Controller / Creative Cordless Mouse" }, - { "0419", "0600", "Desktop Wireless 6000" }, - { "0419", "2694", "Laila" }, - { "0419", "3001", "Xerox P1202 Laser Printer" }, - { "0419", "3003", "Olivetti PG L12L" }, - { "0419", "3201", "Docuprint P8ex" }, - { "0419", "3404", "SCX-5x12 series" }, - { "0419", "3406", "MFP 830 series" }, - { "0419", "3407", "ML-912" }, - { "0419", "3601", "InkJet Color Printer" }, - { "0419", "3602", "InkJet Color Printer" }, - { "0419", "4602", "Remote NDIS Network Device" }, - { "0419", "8001", "Hub" }, - { "0419", "8002", "SyncMaster HID Monitor Control" }, - { "0419", "aa03", "SDAS-3 MP3 Player" }, - { "041e", "0414", "HS-720 Headset" }, - { "041e", "1002", "Nomad II" }, - { "041e", "1003", "Blaster GamePad Cobra" }, - { "041e", "1050", "GamePad Cobra" }, - { "041e", "1053", "Mouse Gamer HD7600L" }, - { "041e", "200c", "MuVo V100" }, - { "041e", "2020", "Zen X-Fi 2" }, - { "041e", "2029", "ZiiO" }, - { "041e", "2801", "Prodikeys PC-MIDI multifunction keyboard" }, - { "041e", "3000", "SoundBlaster Extigy" }, - { "041e", "3002", "SB External Composite Device" }, - { "041e", "3010", "SoundBlaster MP3+" }, - { "041e", "3014", "SB External Composite Device" }, - { "041e", "3015", "Sound Blaster Digital Music LX" }, - { "041e", "3020", "SoundBlaster Audigy 2 NX" }, - { "041e", "3030", "SB External Composite Device" }, - { "041e", "3040", "SoundBlaster Live! 24-bit External SB0490" }, - { "041e", "3060", "Sound Blaster Audigy 2 ZS External" }, - { "041e", "3061", "SoundBlaster Audigy 2 ZS Video Editor" }, - { "041e", "3090", "Sound Blaster Digital Music SX" }, - { "041e", "30d0", "Xmod" }, - { "041e", "30d3", "Sound Blaster Play!" }, - { "041e", "3100", "IR Receiver (SB0540)" }, - { "041e", "3121", "WoW tap chat" }, - { "041e", "3220", "Sound Blaster Tactic(3D) Sigma sound card" }, - { "041e", "3232", "Sound Blaster Premium HD [SBX]" }, - { "041e", "3237", "SB X-Fi Surround 5.1 Pro" }, - { "041e", "3241", "Sound Blaster JAM" }, - { "041e", "3263", "SB X-Fi Surround 5.1 Pro" }, - { "041e", "3f00", "E-Mu Xboard 25 MIDI Controller" }, - { "041e", "3f02", "E-Mu 0202" }, - { "041e", "3f04", "E-Mu 0404" }, - { "041e", "3f07", "E-Mu Xmidi 1x1" }, - { "041e", "3f0e", "Xmidi 1x1 Tab" }, - { "041e", "4003", "VideoBlaster Webcam Go Plus [W9967CF]" }, - { "041e", "4004", "Nomad II MG" }, - { "041e", "4005", "Webcam Blaster Go ES" }, - { "041e", "4007", "Go Mini" }, - { "041e", "400a", "PC-Cam 300" }, - { "041e", "400b", "PC-Cam 600" }, - { "041e", "400c", "Webcam 5 [pwc]" }, - { "041e", "400d", "Webcam PD1001" }, - { "041e", "400f", "PC-CAM 550 (Composite)" }, - { "041e", "4011", "Webcam PRO eX" }, - { "041e", "4012", "PC-CAM350" }, - { "041e", "4013", "PC-Cam 750" }, - { "041e", "4015", "CardCam Value" }, - { "041e", "4016", "CardCam" }, - { "041e", "4017", "Webcam Mobile [PD1090]" }, - { "041e", "4018", "Webcam Vista [PD1100]" }, - { "041e", "4019", "Audio Device" }, - { "041e", "401a", "Webcam Vista [PD1100]" }, - { "041e", "401c", "Webcam NX [PD1110]" }, - { "041e", "401d", "Webcam NX Ultra" }, - { "041e", "401e", "Webcam NX Pro" }, - { "041e", "401f", "Webcam Notebook [PD1171]" }, - { "041e", "4020", "Webcam NX" }, - { "041e", "4021", "Webcam NX Ultra" }, - { "041e", "4022", "Webcam NX Pro" }, - { "041e", "4028", "Vista Plus cam [VF0090]" }, - { "041e", "4029", "Webcam Live!" }, - { "041e", "402f", "DC-CAM 3000Z" }, - { "041e", "4034", "Webcam Instant" }, - { "041e", "4035", "Webcam Instant" }, - { "041e", "4036", "Webcam Live!/Live! Pro" }, - { "041e", "4037", "Webcam Live!" }, - { "041e", "4038", "ORITE CCD Webcam [PC370R]" }, - { "041e", "4039", "Webcam Live! Effects" }, - { "041e", "403a", "Webcam NX Pro 2" }, - { "041e", "403b", "Creative Webcam Vista [VF0010]" }, - { "041e", "403c", "Webcam Live! Ultra" }, - { "041e", "403d", "Webcam Notebook Ultra" }, - { "041e", "403e", "Webcam Vista Plus" }, - { "041e", "4041", "Webcam Live! Motion" }, - { "041e", "4043", "Vibra Plus Webcam" }, - { "041e", "4045", "Live! Cam Voice" }, - { "041e", "4049", "Live! Cam Voice" }, - { "041e", "4051", "Live! Cam Notebook Pro [VF0250]" }, - { "041e", "4052", "Live! Cam Vista IM" }, - { "041e", "4053", "Live! Cam Video IM" }, - { "041e", "4054", "Live! Cam Video IM" }, - { "041e", "4055", "Live! Cam Video IM Pro" }, - { "041e", "4056", "Live! Cam Video IM Pro" }, - { "041e", "4057", "Live! Cam Optia" }, - { "041e", "4058", "Live! Cam Optia AF" }, - { "041e", "405f", "WebCam Vista (VF0330)" }, - { "041e", "4061", "Live! Cam Notebook Pro [VF0400]" }, - { "041e", "4063", "Live! Cam Video IM Pro" }, - { "041e", "4068", "Live! Cam Notebook [VF0470]" }, - { "041e", "406c", "Live! Cam Sync [VF0520]" }, - { "041e", "4083", "Live! Cam Socialize [VF0640]" }, - { "041e", "4087", "Live! Cam Socialize HD 1080 [VF0680]" }, - { "041e", "4088", "Live! Cam Chat HD [VF0700]" }, - { "041e", "4095", "Live! Cam Sync HD [VF0770]" }, - { "041e", "4097", "Live! Cam Chat HD [VF0700]" }, - { "041e", "4099", "Creative VF0800 [RealSense Camera SR300]" }, - { "041e", "4100", "Nomad Jukebox 2" }, - { "041e", "4101", "Nomad Jukebox 3" }, - { "041e", "4102", "NOMAD MuVo^2" }, - { "041e", "4106", "Nomad MuVo" }, - { "041e", "4107", "NOMAD MuVo" }, - { "041e", "4108", "Nomad Jukebox Zen" }, - { "041e", "4109", "Nomad Jukebox Zen NX" }, - { "041e", "410b", "Nomad Jukebox Zen USB 2.0" }, - { "041e", "410c", "Nomad MuVo NX" }, - { "041e", "410f", "NOMAD MuVo^2 (Flash)" }, - { "041e", "4110", "Nomad Jukebox Zen Xtra" }, - { "041e", "4111", "Dell Digital Jukebox" }, - { "041e", "4116", "MuVo^2" }, - { "041e", "4117", "Nomad MuVo TX" }, - { "041e", "411b", "Zen Touch" }, - { "041e", "411c", "Nomad MuVo USB 2.0" }, - { "041e", "411d", "Zen" }, - { "041e", "411e", "Zen Micro" }, - { "041e", "4120", "Nomad MuVo TX FM" }, - { "041e", "4123", "Zen Portable Media Center" }, - { "041e", "4124", "MuVo^2 FM (uHDD)" }, - { "041e", "4126", "Dell DJ (2nd gen)" }, - { "041e", "4127", "Dell DJ" }, - { "041e", "4128", "NOMAD Jukebox Zen Xtra (mtp)" }, - { "041e", "412b", "MuVo N200 with FM radio" }, - { "041e", "412f", "Dell Digital Jukebox 2.Gen" }, - { "041e", "4130", "Zen Micro (mtp)" }, - { "041e", "4131", "DAP-HD0014 [Zen Touch] (MTP)" }, - { "041e", "4133", "Mass Storage Device" }, - { "041e", "4134", "Zen Neeon" }, - { "041e", "4136", "Zen Sleek" }, - { "041e", "4137", "Zen Sleek (mtp)" }, - { "041e", "4139", "Zen Nano Plus" }, - { "041e", "413c", "Zen MicroPhoto" }, - { "041e", "4150", "Zen V (MTP)" }, - { "041e", "4151", "Zen Vision:M (mtp)" }, - { "041e", "4152", "Zen V Plus" }, - { "041e", "4153", "Zen Vision W" }, - { "041e", "4154", "Zen Stone" }, - { "041e", "4155", "Zen Stone plus" }, - { "041e", "4157", "Zen (MTP)" }, - { "041e", "500f", "Broadband Blaster 8012U-V" }, - { "041e", "5015", "TECOM Bluetooth Device" }, - { "041e", "ffff", "Webcam Live! Ultra" }, - { "0420", "1307", "Celly SIM Card Reader" }, - { "0421", "0001", "E61i (PC Suite mode)" }, - { "0421", "0018", "6288 GSM Smartphone" }, - { "0421", "0019", "6288 GSM Smartphone (imaging mode)" }, - { "0421", "001a", "6288 GSM Smartphone (file transfer mode)" }, - { "0421", "0024", "5610 XpressMusic (Storage mode)" }, - { "0421", "0025", "5610 XpressMusic (PC Suite mode)" }, - { "0421", "0028", "5610 XpressMusic (Imaging mode)" }, - { "0421", "002d", "6120 Phone (Mass storage mode)" }, - { "0421", "002e", "6120 Phone (Media-Player mode)" }, - { "0421", "002f", "6120 Phone (PC-Suite mode)" }, - { "0421", "0042", "E51 (PC Suite mode)" }, - { "0421", "0064", "3109c GSM Phone" }, - { "0421", "006b", "5310 Xpress Music (PC Suite mode)" }, - { "0421", "006c", "5310 Xpress music (Storage mode)" }, - { "0421", "006d", "N95 (Storage mode)" }, - { "0421", "006e", "N95 (Multimedia mode)" }, - { "0421", "006f", "N95 (Printing mode)" }, - { "0421", "0070", "N95 (PC Suite mode)" }, - { "0421", "0096", "N810 Internet Tablet" }, - { "0421", "00aa", "E71 (Mass storage mode)" }, - { "0421", "00ab", "E71 (PC Suite mode)" }, - { "0421", "00e4", "E71 (Media transfer mode)" }, - { "0421", "0103", "ADL Flashing Engine AVALON Parent" }, - { "0421", "0104", "ADL Re-Flashing Engine Parent" }, - { "0421", "0105", "Nokia Firmware Upgrade Mode" }, - { "0421", "0106", "ROM Parent" }, - { "0421", "010d", "E75 (Storage Mode)" }, - { "0421", "010e", "E75 (PC Suite mode)" }, - { "0421", "010f", "E75 (Media transfer mode)" }, - { "0421", "0110", "E75 (Imaging Mode)" }, - { "0421", "0154", "5800 XpressMusic (PC Suite mode)" }, - { "0421", "0155", "5800 XpressMusic (Multimedia mode)" }, - { "0421", "0156", "5800 XpressMusic (Storage mode)" }, - { "0421", "0157", "5800 XpressMusic (Imaging mode)" }, - { "0421", "0189", "N810 Internet Tablet WiMAX" }, - { "0421", "0199", "6700 Classic (msc)" }, - { "0421", "019a", "6700 Classic (PC Suite)" }, - { "0421", "019b", "6700 Classic (mtp)" }, - { "0421", "01b0", "6303 classic Phone (PC Suite mode)" }, - { "0421", "01b1", "6303 classic Phone (Mass storage mode)" }, - { "0421", "01b2", "6303 classic Phone (Printing and media mode)" }, - { "0421", "01c7", "N900 (Storage Mode)" }, - { "0421", "01c8", "N900/N950 (PC-Suite Mode)" }, - { "0421", "0228", "5530 XpressMusic" }, - { "0421", "023a", "6730 Classic" }, - { "0421", "026a", "N97 (mass storage)" }, - { "0421", "026b", "N97 (Multimedia)" }, - { "0421", "026c", "N97 (PC Suite)" }, - { "0421", "026d", "N97 (Pictures)" }, - { "0421", "0295", "660i/6600i Slide Phone (Mass Storage)" }, - { "0421", "0297", "660i/6600i Slide Phone (Still Image)" }, - { "0421", "02e1", "5230 (Storage mode)" }, - { "0421", "02e2", "5230 (Multimedia mode)" }, - { "0421", "02e3", "5230 (PC-Suite mode)" }, - { "0421", "02e4", "5230 (Imaging mode)" }, - { "0421", "0360", "C1-01 Ovi Suite Mode" }, - { "0421", "0396", "C7-00 (Modem mode)" }, - { "0421", "03a4", "C5 (Storage mode)" }, - { "0421", "03c0", "C7-00 (Mass storage mode)" }, - { "0421", "03c1", "C7-00 (Media transfer mode)" }, - { "0421", "03c2", "Sim" }, - { "0421", "03cd", "C7-00 (Nokia Suite mode)" }, - { "0421", "03d1", "N950 (Storage Mode)" }, - { "0421", "03d2", "N950 (PC Suite mode)" }, - { "0421", "0400", "7600 Phone Parent" }, - { "0421", "0401", "6650 GSM Phone" }, - { "0421", "0402", "6255 Phone Parent" }, - { "0421", "0404", "5510" }, - { "0421", "0405", "9500 GSM Communicator" }, - { "0421", "0407", "Music Player HDR-1(tm)" }, - { "0421", "040b", "N-Gage GSM Phone" }, - { "0421", "040d", "6620 Phone Parent" }, - { "0421", "040e", "6651 Phone Parent" }, - { "0421", "040f", "6230 GSM Phone" }, - { "0421", "0410", "6630 Imaging Smartphone" }, - { "0421", "0411", "7610 Phone Parent" }, - { "0421", "0413", "6260 Phone Parent" }, - { "0421", "0414", "7370" }, - { "0421", "0415", "9300 GSM Smartphone" }, - { "0421", "0416", "6170 Phone Parent" }, - { "0421", "0417", "7270 Phone Parent" }, - { "0421", "0418", "E70 (PC Suite mode)" }, - { "0421", "0419", "E60 (PC Suite mode)" }, - { "0421", "041a", "9500 GSM Communicator (RNDIS)" }, - { "0421", "041b", "9300 GSM Smartphone (RNDIS)" }, - { "0421", "041c", "7710 Phone Parent" }, - { "0421", "041d", "6670 Phone Parent" }, - { "0421", "041e", "6680" }, - { "0421", "041f", "6235 Phone Parent" }, - { "0421", "0421", "3230 Phone Parent" }, - { "0421", "0422", "6681 Phone Parent" }, - { "0421", "0423", "6682 Phone Parent" }, - { "0421", "0428", "6230i Modem" }, - { "0421", "0429", "6230i MultiMedia Card" }, - { "0421", "0431", "770/N800 Internet Tablet" }, - { "0421", "0432", "N90 Phone Parent" }, - { "0421", "0435", "E70 (IP Passthrough/RNDIS mode)" }, - { "0421", "0436", "E60 (IP Passthrough/RNDIS mode)" }, - { "0421", "0437", "6265 Phone Parent" }, - { "0421", "043a", "N70 USB Phone Parent" }, - { "0421", "043b", "3155 Phone Parent" }, - { "0421", "043c", "6155 Phone Parent" }, - { "0421", "043d", "6270 Phone Parent" }, - { "0421", "0443", "N70 Phone Parent" }, - { "0421", "0444", "N91" }, - { "0421", "044c", "NM850iG Phone Parent" }, - { "0421", "044d", "E61 (PC Suite mode)" }, - { "0421", "044e", "E61 (Data Exchange mode)" }, - { "0421", "044f", "E61 (IP Passthrough/RNDIS mode)" }, - { "0421", "0453", "9300 Phone Parent" }, - { "0421", "0456", "6111 Phone Parent" }, - { "0421", "0457", "6111 Phone (Printing mode)" }, - { "0421", "045a", "6280 Phone Parent" }, - { "0421", "045d", "6282 Phone Parent" }, - { "0421", "046e", "6110 Navigator" }, - { "0421", "0471", "6110 Navigator" }, - { "0421", "0485", "MTP Device" }, - { "0421", "04b9", "5300" }, - { "0421", "04bc", "5200 (Nokia mode)" }, - { "0421", "04bd", "5200 (Storage mode)" }, - { "0421", "04be", "5200 (MTP mode)" }, - { "0421", "04c3", "N800 Internet Tablet" }, - { "0421", "04ce", "E90 Communicator (PC Suite mode)" }, - { "0421", "04cf", "E90 Communicator (Storage mode)" }, - { "0421", "04f0", "Nokia N95 (PC Suite mode)" }, - { "0421", "04f9", "6300 (PC Suite mode)" }, - { "0421", "0508", "E65 (PC Suite mode)" }, - { "0421", "0509", "E65 (Storage mode)" }, - { "0421", "0518", "N9 (Storage mode)" }, - { "0421", "0519", "N9 (RNDIS/Ethernet mode)" }, - { "0421", "051a", "N9 (PC Suite mode)" }, - { "0421", "054d", "C2-01" }, - { "0421", "0600", "Digital Pen SU-1B" }, - { "0421", "0610", "CS-15 (Internet Stick 3G modem)" }, - { "0421", "0661", "Lumia 620/920" }, - { "0421", "0662", "301 Dual SIM (Mass Storage)" }, - { "0421", "0663", "301 Dual SIM" }, - { "0421", "069a", "130 [RM-1035] (Charging only)" }, - { "0421", "06fc", "Lumia 640 Phone" }, - { "0421", "0720", "X (RM-980)" }, - { "0421", "0800", "Connectivity Cable DKU-5" }, - { "0421", "0801", "Data Cable DKU-6" }, - { "0421", "0802", "CA-42 Phone Parent" }, - { "0423", "000a", "NetMate Ethernet" }, - { "0423", "000c", "NetMate2 Ethernet" }, - { "0423", "000d", "USB Chief Analyzer" }, - { "0423", "0100", "Generic Universal Protocol Analyzer" }, - { "0423", "0101", "UPA USBTracer" }, - { "0423", "0200", "Generic 10K Universal Protocol Analyzer" }, - { "0423", "020a", "PETracer ML" }, - { "0423", "0300", "Generic Universal Protocol Analyzer" }, - { "0423", "0301", "2500H Tracer Trainer" }, - { "0423", "030a", "PETracer x1" }, - { "0423", "1237", "Andromeda Hub" }, - { "0424", "0001", "Integrated Hub" }, - { "0424", "0140", "LPC47M14x hub" }, - { "0424", "0acd", "Sitecom Internal Multi Memory reader/writer MD-005" }, - { "0424", "0fdc", "Floppy" }, - { "0424", "10cd", "Sitecom Internal Multi Memory reader/writer MD-005" }, - { "0424", "2020", "USB Hub" }, - { "0424", "20cd", "Sitecom Internal Multi Memory reader/writer MD-005" }, - { "0424", "20fc", "6-in-1 Card Reader" }, - { "0424", "2134", "Hub" }, - { "0424", "2228", "9-in-2 Card Reader" }, - { "0424", "223a", "8-in-1 Card Reader" }, - { "0424", "2412", "Hub" }, - { "0424", "2503", "USB 2.0 Hub" }, - { "0424", "2504", "Hub" }, - { "0424", "2507", "hub" }, - { "0424", "2512", "USB 2.0 Hub" }, - { "0424", "2513", "2.0 Hub" }, - { "0424", "2514", "USB 2.0 Hub" }, - { "0424", "2517", "Hub" }, - { "0424", "2524", "USB MultiSwitch Hub" }, - { "0424", "2602", "USB 2.0 Hub" }, - { "0424", "2640", "USB 2.0 Hub" }, - { "0424", "2660", "Hub" }, - { "0424", "2744", "Hub" }, - { "0424", "274d", "HTC Hub Controller" }, - { "0424", "2807", "Hub" }, - { "0424", "3fc7", "RME Babyface audio system" }, - { "0424", "3fcc", "RME MADIface" }, - { "0424", "4041", "Hub and media card controller" }, - { "0424", "4060", "Ultra Fast Media Reader" }, - { "0424", "4064", "Ultra Fast Media Reader" }, - { "0424", "4712", "USB4712 high-speed hub" }, - { "0424", "4713", "USB4715 high-speed hub (2 ports disabled)" }, - { "0424", "4714", "USB4715 high-speed hub (1 port disabled)" }, - { "0424", "4715", "USB4715 high-speed hub" }, - { "0424", "4910", "USB491x hub integrated functions (primary)" }, - { "0424", "4912", "USB4912 high-speed hub (1 port disabled)" }, - { "0424", "4914", "USB4914 high-speed hub" }, - { "0424", "4916", "USB4916 high-speed hub" }, - { "0424", "4920", "USB491x hub integrated functions (secondary)" }, - { "0424", "4925", "USB4925 high-speed hub (primary upstream)" }, - { "0424", "4927", "USB4927 high-speed hub (primary upstream)" }, - { "0424", "4931", "USB4925/4927 high-speed hub (secondary upstream)" }, - { "0424", "4940", "USB47xx/49xx hub integrated WinUSB" }, - { "0424", "4942", "USB47xx/49xx hub integrated I2S audio port" }, - { "0424", "4943", "USB47xx/49xx hub integrated I2S audio + HID port" }, - { "0424", "4944", "USB47xx/49xx hub integrated serial port" }, - { "0424", "4946", "USB47xx/49xx hub integrated serial + I2S audio port" }, - { "0424", "4947", "USB47xx/49xx hub integrated serial + I2S audio + HID port" }, - { "0424", "494a", "USB47xx/49xx hub integrated WinUSB + I2S audio port" }, - { "0424", "494b", "USB47xx/49xx hub integrated WinUSB + I2S audio + HID port" }, - { "0424", "494c", "USB47xx/49xx hub integrated WinUSB + serial port" }, - { "0424", "494e", "USB47xx/49xx hub integrated WinUSB + serial + I2S audio port" }, - { "0424", "494f", "USB47xx/49xx hub integrated WinUSB + serial + I2S audio + HID port" }, - { "0424", "5434", "Hub" }, - { "0424", "5534", "Hub" }, - { "0424", "5744", "Hub" }, - { "0424", "5807", "Hub" }, - { "0424", "7500", "LAN7500 Ethernet 10/100/1000 Adapter" }, - { "0424", "9500", "LAN9500/LAN9500i" }, - { "0424", "9512", "SMC9512/9514 USB Hub" }, - { "0424", "9514", "SMC9514 Hub" }, - { "0424", "9904", "LAN9512/LAN9514 Ethernet 10/100 Adapter (SAL10)" }, - { "0424", "9e00", "LAN9500A/LAN9500Ai" }, - { "0424", "a700", "2 Port Hub" }, - { "0424", "ec00", "SMSC9512/9514 Fast Ethernet Adapter" }, - { "0425", "0101", "G-Tech Wireless Mouse & Keyboard" }, - { "0425", "f102", "G-Tech U+P Wireless Mouse" }, - { "0426", "0426", "WDM Driver" }, - { "0428", "4001", "GamePad Pro" }, - { "042b", "9316", "8x931Hx Customer Hub" }, - { "042e", "0380", "MP3 Player" }, - { "0430", "0002", "109 Keyboard" }, - { "0430", "0005", "Type 6 Keyboard" }, - { "0430", "000a", "109 Japanese Keyboard" }, - { "0430", "000b", "109 Japanese Keyboard" }, - { "0430", "0082", "109 Japanese Keyboard" }, - { "0430", "0083", "109 Japanese Keyboard" }, - { "0430", "00a2", "Type 7 Keyboard" }, - { "0430", "0100", "3-button Mouse" }, - { "0430", "0502", "Panasonic CF-19 HID Touch Panel" }, - { "0430", "100e", "24.1\" LCD Monitor v4 / FID-638 Mouse" }, - { "0430", "36ba", "Bus Powered Hub" }, - { "0430", "a101", "remote key/mouse for P3 chip" }, - { "0430", "a102", "remote key/mouse/storage for P3 chip" }, - { "0430", "a103", "remote storage for P3 chip" }, - { "0430", "a111", "remote keyboard for P4 chip" }, - { "0430", "a112", "remote mouse for P4 chip" }, - { "0430", "a113", "remote storage for P4 chip" }, - { "0430", "a4a2", "Ethernet (RNDIS and CDC ethernet)" }, - { "0430", "cdab", "Raritan KVM dongle" }, - { "0431", "0100", "Mouse-Trak 3-button Track Ball" }, - { "0432", "0031", "Document Processor" }, - { "0433", "1101", "IBM Game Controller" }, - { "0433", "abab", "Keyboard" }, - { "0436", "0005", "CameraMate (DPCM_USB)" }, - { "0438", "7900", "Root Hub" }, - { "043d", "0001", "Laser Printer" }, - { "043d", "0002", "Optra E310 Printer" }, - { "043d", "0003", "Laser Printer" }, - { "043d", "0004", "Laser Printer" }, - { "043d", "0005", "Laser Printer" }, - { "043d", "0006", "Laser Printer" }, - { "043d", "0007", "Laser Printer" }, - { "043d", "0008", "Inkjet Color Printer" }, - { "043d", "0009", "Optra S2450 Printer" }, - { "043d", "000a", "Laser Printer" }, - { "043d", "000b", "Inkjet Color Printer" }, - { "043d", "000c", "Optra E312 Printer" }, - { "043d", "000d", "Laser Printer" }, - { "043d", "000e", "Laser Printer" }, - { "043d", "000f", "Laser Printer" }, - { "043d", "0010", "Laser Printer" }, - { "043d", "0011", "Laser Printer" }, - { "043d", "0012", "Inkjet Color Printer" }, - { "043d", "0013", "Inkjet Color Printer" }, - { "043d", "0014", "InkJet Color Printer" }, - { "043d", "0015", "InkJet Color Printer" }, - { "043d", "0016", "Z12 Color Jetprinter" }, - { "043d", "0017", "Z32 printer" }, - { "043d", "0018", "Z52 Printer" }, - { "043d", "0019", "Forms Printer" }, - { "043d", "001a", "Z65 Printer" }, - { "043d", "001b", "InkJet Photo Printer" }, - { "043d", "001c", "Kodak Personal Picture Maker 200 Printer" }, - { "043d", "001d", "InkJet Color Printer" }, - { "043d", "001e", "InkJet Photo Printer" }, - { "043d", "001f", "Kodak Personal Picture Maker 200 Card Reader" }, - { "043d", "0020", "Z51 Printer" }, - { "043d", "0021", "Z33 Printer" }, - { "043d", "0022", "InkJet Color Printer" }, - { "043d", "0023", "Laser Printer" }, - { "043d", "0024", "Laser Printer" }, - { "043d", "0025", "InkJet Color Printer" }, - { "043d", "0026", "InkJet Color Printer" }, - { "043d", "0027", "InkJet Color Printer" }, - { "043d", "0028", "InkJet Color Printer" }, - { "043d", "0029", "Scan Print Copy" }, - { "043d", "002a", "Scan Print Copy" }, - { "043d", "002b", "Scan Print Copy" }, - { "043d", "002c", "Scan Print Copy" }, - { "043d", "002d", "X70/X73 Scan/Print/Copy" }, - { "043d", "002e", "Scan Print Copy" }, - { "043d", "002f", "Scan Print Copy" }, - { "043d", "0030", "Scan Print Copy" }, - { "043d", "0031", "Scan Print Copy" }, - { "043d", "0032", "Scan Print Copy" }, - { "043d", "0033", "Scan Print Copy" }, - { "043d", "0034", "Scan Print Copy" }, - { "043d", "0035", "Scan Print Copy" }, - { "043d", "0036", "Scan Print Copy" }, - { "043d", "0037", "Scan Print Copy" }, - { "043d", "0038", "Scan Print Copy" }, - { "043d", "0039", "Scan Print Copy" }, - { "043d", "003a", "Scan Print Copy" }, - { "043d", "003b", "Scan Print Copy" }, - { "043d", "003c", "Scan Print Copy" }, - { "043d", "003d", "X83 Scan/Print/Copy" }, - { "043d", "003e", "Scan Print Copy" }, - { "043d", "003f", "Scan Print Copy" }, - { "043d", "0040", "Scan Print Copy" }, - { "043d", "0041", "Scan Print Copy" }, - { "043d", "0042", "Scan Print Copy" }, - { "043d", "0043", "Scan Print Copy" }, - { "043d", "0044", "Scan Print Copy" }, - { "043d", "0045", "Scan Print Copy" }, - { "043d", "0046", "Scan Print Copy" }, - { "043d", "0047", "Scan Print Copy" }, - { "043d", "0048", "Scan Print Copy" }, - { "043d", "0049", "Scan Print Copy" }, - { "043d", "004a", "Scan Print Copy" }, - { "043d", "004b", "Scan Print Copy" }, - { "043d", "004c", "Scan Print Copy" }, - { "043d", "004d", "Laser Printer" }, - { "043d", "004e", "Laser Printer" }, - { "043d", "004f", "InkJet Color Printer" }, - { "043d", "0050", "InkJet Color Printer" }, - { "043d", "0051", "Laser Printer" }, - { "043d", "0052", "Laser Printer" }, - { "043d", "0053", "InkJet Color Printer" }, - { "043d", "0054", "InkJet Color Printer" }, - { "043d", "0057", "Z35 Printer" }, - { "043d", "0058", "Laser Printer" }, - { "043d", "005a", "X63" }, - { "043d", "005c", "InkJet Color Printer" }, - { "043d", "0060", "X74/X75 Scanner" }, - { "043d", "0061", "X74 Hub" }, - { "043d", "0065", "X5130" }, - { "043d", "0069", "X74/X75 Printer" }, - { "043d", "006d", "X125" }, - { "043d", "006e", "C510" }, - { "043d", "0072", "X6170 Printer" }, - { "043d", "0073", "InkJet Color Printer" }, - { "043d", "0078", "InkJet Color Printer" }, - { "043d", "0079", "InkJet Color Printer" }, - { "043d", "007a", "Generic Hub" }, - { "043d", "007b", "InkJet Color Printer" }, - { "043d", "007c", "X1110/X1130/X1140/X1150/X1170/X1180/X1185" }, - { "043d", "007d", "Photo 3150" }, - { "043d", "008a", "4200 series" }, - { "043d", "008b", "InkJet Color Printer" }, - { "043d", "008c", "to CF/SM/SD/MS Card Reader" }, - { "043d", "008e", "InkJet Color Printer" }, - { "043d", "008f", "X422" }, - { "043d", "0091", "Laser Printer E232" }, - { "043d", "0093", "X5250" }, - { "043d", "0095", "E220 Printer" }, - { "043d", "0096", "2200 series" }, - { "043d", "0097", "P6250" }, - { "043d", "0098", "7100 series" }, - { "043d", "009e", "P910 series Human Interface Device" }, - { "043d", "009f", "InkJet Color Printer" }, - { "043d", "00a9", "IBM Infoprint 1410 MFP" }, - { "043d", "00ab", "InkJet Color Printer" }, - { "043d", "00b2", "3300 series" }, - { "043d", "00b8", "7300 series" }, - { "043d", "00b9", "8300 series" }, - { "043d", "00ba", "InkJet Color Printer" }, - { "043d", "00bb", "2300 series" }, - { "043d", "00bd", "Printing Support" }, - { "043d", "00be", "Printing Support" }, - { "043d", "00bf", "Printing Support" }, - { "043d", "00c0", "6300 series" }, - { "043d", "00c1", "4300 series" }, - { "043d", "00c7", "Printing Support" }, - { "043d", "00c8", "Printing Support" }, - { "043d", "00c9", "Printing Support" }, - { "043d", "00cb", "Printing Support" }, - { "043d", "00cc", "E120(n)" }, - { "043d", "00d0", "9300 series" }, - { "043d", "00d3", "X340 Scanner" }, - { "043d", "00d4", "X342n Scanner" }, - { "043d", "00d5", "Printing Support" }, - { "043d", "00d6", "X340 Scanner" }, - { "043d", "00e8", "X642e" }, - { "043d", "00e9", "2400 series" }, - { "043d", "00f6", "3400 series" }, - { "043d", "00f7", "InkJet Color Printer" }, - { "043d", "00ff", "InkJet Color Printer" }, - { "043d", "010b", "2500 series" }, - { "043d", "010d", "3500-4500 series" }, - { "043d", "010f", "6500 series" }, - { "043d", "0142", "X3650 (Printer, Scanner, Copier)" }, - { "043d", "01fa", "S310 series" }, - { "043d", "4303", "Xerox WorkCentre Pro 412" }, - { "043e", "3001", "AN-WF100 802.11abgn Wireless Adapter [Broadcom BCM4323]" }, - { "043e", "3004", "TWFM-B003D 802.11abgn Wireless Module [Broadcom BCM43236B]" }, - { "043e", "3009", "VC400" }, - { "043e", "3101", "AN-WF500 802.11abgn + BT Wireless Adapter [Broadcom BCM43242]" }, - { "043e", "42bd", "Flatron 795FT Plus Monitor" }, - { "043e", "4a4d", "Flatron 915FT Plus Monitor" }, - { "043e", "7001", "MF-PD100 Soul Digital MP3 Player" }, - { "043e", "7013", "MP3 Player" }, - { "043e", "70d7", "Mouse Scanner LSM-150 [LG Smart Scan Mouse]" }, - { "043e", "70f5", "External HDD" }, - { "043e", "8484", "LPC-U30 Webcam II" }, - { "043e", "8585", "LPC-UC35 Webcam" }, - { "043e", "8888", "Electronics VCS Camera II(LPC-U20)" }, - { "043e", "9800", "Remote Control Receiver_iMON" }, - { "043e", "9803", "eHome Infrared Receiver" }, - { "043e", "9804", "DMB Receiver Control" }, - { "043e", "9c01", "LGE Sync" }, - { "0441", "1456", "Hub" }, - { "0442", "abba", "Bluetooth Device" }, - { "0443", "000e", "Multimedia Keyboard" }, - { "0443", "002e", "Millennium Keyboard" }, - { "0446", "6781", "Keyboard with PS/2 Mouse Port" }, - { "0446", "6782", "Keyboard" }, - { "0449", "0128", "Menengah" }, - { "0449", "0210", "Dasar" }, - { "0449", "0612", "Lanjutan" }, - { "044e", "1104", "Japanese Keyboard" }, - { "044e", "2002", "MD-5500 Printer" }, - { "044e", "2014", "Bluetooth Device" }, - { "044e", "3001", "UGTZ4 Bluetooth" }, - { "044e", "3002", "Bluetooth Device" }, - { "044e", "3003", "Bluetooth Device" }, - { "044e", "3004", "Bluetooth Adapter" }, - { "044e", "3005", "Integrated Bluetooth Device" }, - { "044e", "3006", "Bluetooth Adapter" }, - { "044e", "3007", "Bluetooth Controller (ALPS/UGX)" }, - { "044e", "300c", "Bluetooth Controller (ALPS/UGPZ6)" }, - { "044e", "300d", "Bluetooth Controller (ALPS/UGPZ6)" }, - { "044e", "3010", "Bluetooth Adapter" }, - { "044e", "3017", "BCM2046 Bluetooth Device" }, - { "044e", "ffff", "Compaq Bluetooth Multiport Module" }, - { "044f", "0400", "HOTAS Cougar" }, - { "044f", "0402", "HOTAS Warthog Joystick" }, - { "044f", "0404", "HOTAS Warthog Throttle" }, - { "044f", "044f", "GP XID" }, - { "044f", "0f00", "Steering Wheel for Xbox" }, - { "044f", "0f03", "Steering Wheel for Xbox" }, - { "044f", "0f07", "Controller for Xbox" }, - { "044f", "0f0c", "Xbox Memory Unit (8MB)" }, - { "044f", "0f10", "Modena GT Wheel" }, - { "044f", "a003", "Rage 3D Game Pad" }, - { "044f", "a01b", "PK-GP301 Driving Wheel" }, - { "044f", "a0a0", "Top Gun Joystick" }, - { "044f", "a0a1", "Top Gun Joystick (rev2)" }, - { "044f", "a0a3", "Fusion Digital GamePad" }, - { "044f", "a201", "PK-GP201 PlayStick" }, - { "044f", "b108", "T-Flight Hotas X Flight Stick" }, - { "044f", "b10a", "T.16000M Joystick" }, - { "044f", "b203", "360 Modena Pro Wheel" }, - { "044f", "b300", "Firestorm Dual Power" }, - { "044f", "b303", "FireStorm Dual Analog 2" }, - { "044f", "b304", "Firestorm Dual Power" }, - { "044f", "b307", "vibrating Upad" }, - { "044f", "b30b", "Wireless VibrationPad" }, - { "044f", "b315", "Firestorm Dual Analog 3" }, - { "044f", "b320", "Dual Trigger gamepad PC/PS2 2.0" }, - { "044f", "b323", "Dual Trigger 3-in-1 (PC Mode)" }, - { "044f", "b324", "Dual Trigger 3-in-1 (PS3 Mode)" }, - { "044f", "b326", "Gamepad GP XID" }, - { "044f", "b351", "F16 MFD 1" }, - { "044f", "b352", "F16 MFD 2" }, - { "044f", "b365", "UbiSoft UbiConnect" }, - { "044f", "b603", "force feedback Wheel" }, - { "044f", "b605", "force feedback Racing Wheel" }, - { "044f", "b651", "Ferrari GT Rumble Force Wheel" }, - { "044f", "b653", "RGT Force Feedback Clutch Racing Wheel" }, - { "044f", "b654", "Ferrari GT Force Feedback Wheel" }, - { "044f", "b677", "T150 Racing Wheel" }, - { "044f", "b678", "T.Flight Rudder Pedals" }, - { "044f", "b679", "T-Rudder" }, - { "044f", "b687", "TWCS Throttle" }, - { "044f", "b700", "Tacticalboard" }, - { "0451", "0422", "TUSB422 Port Controller with Power Delivery" }, - { "0451", "1234", "Bluetooth Device" }, - { "0451", "1428", "Hub" }, - { "0451", "1446", "TUSB2040/2070 Hub" }, - { "0451", "16a2", "CC Debugger" }, - { "0451", "16a6", "BM-USBD1 BlueRobin RF heart rate sensor receiver" }, - { "0451", "16a8", "CC2531 ZigBee" }, - { "0451", "16ae", "CC2531 Dongle" }, - { "0451", "2036", "TUSB2036 Hub" }, - { "0451", "2046", "TUSB2046 Hub" }, - { "0451", "2077", "TUSB2077 Hub" }, - { "0451", "2f90", "SM-USB-DIG" }, - { "0451", "3200", "TUSB3200 Boot Loader" }, - { "0451", "3410", "TUSB3410 Microcontroller" }, - { "0451", "3f00", "OMAP1610" }, - { "0451", "3f02", "SMC WSKP100 Wi-Fi Phone" }, - { "0451", "505f", "TUSB5052 Serial" }, - { "0451", "5153", "TUSB5052 Hub" }, - { "0451", "5409", "Frontier Labs NEX IA+ Digital Audio Player" }, - { "0451", "6000", "AU5 ADSL Modem (pre-reenum)" }, - { "0451", "6001", "AU5 ADSL Modem" }, - { "0451", "6060", "RNDIS/BeWAN ADSL2+" }, - { "0451", "6070", "RNDIS/BeWAN ADSL2+" }, - { "0451", "625f", "TUSB6250 ATA Bridge" }, - { "0451", "8041", "Hub" }, - { "0451", "8042", "Hub" }, - { "0451", "8043", "Hub" }, - { "0451", "8140", "TUSB8041 4-Port Hub" }, - { "0451", "8142", "TUSB8041 4-Port Hub" }, - { "0451", "9261", "TUSB9261 SerialATA-Bridge" }, - { "0451", "926b", "TUSB9260 Boot Loader" }, - { "0451", "bef3", "CC1352R1 Launchpad" }, - { "0451", "dbc0", "Device Bay Controller" }, - { "0451", "e001", "GraphLink [SilverLink]" }, - { "0451", "e003", "TI-84 Plus Calculator" }, - { "0451", "e004", "TI-89 Titanium Calculator" }, - { "0451", "e008", "TI-84 Plus Silver Calculator" }, - { "0451", "e00e", "TI-89 Titanium Presentation Link" }, - { "0451", "e00f", "TI-84 Plus Presentation Link" }, - { "0451", "e010", "TI SmartPad Keyboard" }, - { "0451", "e011", "Nspire CAS+ prototype" }, - { "0451", "e012", "TI-Nspire Calculator" }, - { "0451", "e013", "Network Bridge" }, - { "0451", "e01c", "Data Collection Sled [Nspire Lab Cradle, Nspire Datatracker Cradle]" }, - { "0451", "e01e", "Nspire CX Navigator Access Point" }, - { "0451", "e01f", "Python Adapter (firmware install mode)" }, - { "0451", "e020", "Python Adapter" }, - { "0451", "e022", "Nspire CX II" }, - { "0451", "f430", "MSP-FET430UIF JTAG Tool" }, - { "0451", "f432", "eZ430 Development Tool" }, - { "0451", "ffff", "Bluetooth Device" }, - { "0452", "0021", "HID Monitor Controls" }, - { "0452", "0050", "Diamond Pro 900u CRT Monitor" }, - { "0452", "0051", "Integrated Hub" }, - { "0452", "0100", "Control Panel for Leica TCS SP5" }, - { "0453", "6781", "NMB Keyboard" }, - { "0453", "6783", "Chicony Composite Keyboard" }, - { "0456", "f000", "FT2232 JTAG ICE [gnICE]" }, - { "0456", "f001", "FT2232H Hi-Speed JTAG ICE [gnICE+]" }, - { "0457", "0150", "Super Talent 1GB Flash Drive" }, - { "0457", "0151", "Super Flash 1GB / GXT 64MB Flash Drive" }, - { "0457", "0162", "SiS162 usb Wireless LAN Adapter" }, - { "0457", "0163", "SiS163U 802.11 Wireless LAN Adapter" }, - { "0457", "0817", "SiS-184-ASUS-4352.17 touch panel" }, - { "0457", "10e1", "HID Touch Controller" }, - { "0457", "5401", "Wireless Adapter RO80211GS-USB" }, - { "0458", "0001", "Mouse" }, - { "0458", "0002", "Genius NetMouse Pro" }, - { "0458", "0003", "Genius NetScroll+" }, - { "0458", "0006", "Easy Mouse+" }, - { "0458", "0007", "Trackbar Emotion" }, - { "0458", "000b", "NetMouse Wheel(P+U)" }, - { "0458", "000c", "TACOMA Fingerprint V1.06.01" }, - { "0458", "000e", "Genius NetScroll Optical" }, - { "0458", "0013", "TACOMA Fingerprint Mouse V1.06.01" }, - { "0458", "001a", "Genius WebScroll+" }, - { "0458", "002e", "NetScroll + Traveler / NetScroll 110" }, - { "0458", "0036", "Pocket Mouse LE" }, - { "0458", "0039", "NetScroll+ Superior" }, - { "0458", "003a", "NetScroll+ Mini Traveler / Genius NetScroll 120" }, - { "0458", "004c", "Slimstar Pro Keyboard" }, - { "0458", "0056", "Ergo 300 Mouse" }, - { "0458", "0057", "Enhanced Gaming Device" }, - { "0458", "0059", "Enhanced Laser Device" }, - { "0458", "005a", "Enhanced Device" }, - { "0458", "005b", "Enhanced Device" }, - { "0458", "005c", "Enhanced Laser Gaming Device" }, - { "0458", "005d", "Enhanced Device" }, - { "0458", "0061", "Bluetooth Dongle" }, - { "0458", "0066", "Genius Traveler 1000 Wireless Mouse" }, - { "0458", "0072", "Navigator 335" }, - { "0458", "0083", "Bluetooth Dongle" }, - { "0458", "0087", "Ergo 525V Laser Mouse" }, - { "0458", "0088", "Genius Traveler 515 Laser" }, - { "0458", "0089", "Genius Traveler 350" }, - { "0458", "00ca", "Pen Mouse" }, - { "0458", "0100", "EasyPen Tablet" }, - { "0458", "0101", "CueCat" }, - { "0458", "011b", "NetScroll T220" }, - { "0458", "0186", "Genius DX-120 Mouse" }, - { "0458", "1001", "Joystick" }, - { "0458", "1002", "Game Pad" }, - { "0458", "1003", "Genius VideoCam" }, - { "0458", "1004", "Flight2000 F-23 Joystick" }, - { "0458", "100a", "Aashima Technology Trust Sight Fighter Vibration Feedback Joystick" }, - { "0458", "2001", "ColorPage-Vivid Pro Scanner" }, - { "0458", "2004", "ColorPage-HR6 V1 Scanner" }, - { "0458", "2005", "ColorPage-HR6/Vivid3" }, - { "0458", "2007", "ColorPage-HR6 V2 Scanner" }, - { "0458", "2008", "ColorPage-HR6 V2 Scanner" }, - { "0458", "2009", "ColorPage-HR6A Scanner" }, - { "0458", "2011", "ColorPage-Vivid3x Scanner" }, - { "0458", "2012", "Plustek Scanner" }, - { "0458", "2013", "ColorPage-HR7 Scanner" }, - { "0458", "2014", "ColorPage-Vivid4" }, - { "0458", "2015", "ColorPage-HR7LE Scanner" }, - { "0458", "2016", "ColorPage-HR6X Scanner" }, - { "0458", "2017", "ColorPage-Vivid3xe" }, - { "0458", "2018", "ColorPage-HR7X" }, - { "0458", "2019", "ColorPage-HR6X Slim" }, - { "0458", "201a", "ColorPage-Vivid4xe" }, - { "0458", "201b", "ColorPage-Vivid4x" }, - { "0458", "201c", "ColorPage-HR8" }, - { "0458", "201d", "ColorPage-Vivid 1200 X" }, - { "0458", "201e", "ColorPage-Slim 1200" }, - { "0458", "201f", "ColorPage-Vivid 1200 XE" }, - { "0458", "2020", "ColorPage-Slim 1200 USB2" }, - { "0458", "2021", "ColorPage-SF600" }, - { "0458", "3017", "SPEED WHEEL 3 Vibration" }, - { "0458", "3018", "Wireless 2.4Ghz Game Pad" }, - { "0458", "3019", "10-Button USB Joystick with Vibration" }, - { "0458", "301a", "MaxFire G-12U Vibration" }, - { "0458", "301c", "Genius MaxFighter F-16U" }, - { "0458", "301d", "Genius MaxFire MiniPad" }, - { "0458", "400f", "Genius TVGo DVB-T02Q MCE" }, - { "0458", "4012", "TVGo DVB-T03 [AF9015]" }, - { "0458", "5003", "G-pen 560 Tablet" }, - { "0458", "5004", "G-pen Tablet" }, - { "0458", "5005", "Genius EasyPen M406" }, - { "0458", "5012", "Genius EasyPen M406W" }, - { "0458", "5014", "Genius EasyPen 340" }, - { "0458", "505e", "Genius iSlim 330" }, - { "0458", "6001", "GF3000F Ethernet Adapter" }, - { "0458", "7004", "VideoCAM Express V2" }, - { "0458", "7006", "Dsc 1.3 Smart Camera Device" }, - { "0458", "7007", "VideoCAM Web" }, - { "0458", "7009", "G-Shot G312 Still Camera Device" }, - { "0458", "700c", "VideoCAM Web V3" }, - { "0458", "700d", "G-Shot G511 Composite Device" }, - { "0458", "700f", "VideoCAM Web" }, - { "0458", "7012", "WebCAM USB2.0" }, - { "0458", "7014", "VideoCAM Live V3" }, - { "0458", "701c", "G-Shot G512 Still Camera" }, - { "0458", "7020", "Sim 321C" }, - { "0458", "7025", "Eye 311Q Camera" }, - { "0458", "7029", "Genius Look 320s (SN9C201 + HV7131R)" }, - { "0458", "702f", "Genius Slim 322" }, - { "0458", "7035", "i-Look 325T Camera" }, - { "0458", "7045", "Genius Look 1320 V2" }, - { "0458", "704c", "Genius i-Look 1321" }, - { "0458", "704d", "Slim 1322AF" }, - { "0458", "7055", "Slim 2020AF camera" }, - { "0458", "705a", "Asus USB2.0 Webcam" }, - { "0458", "705c", "Genius iSlim 1300AF" }, - { "0458", "7061", "Genius iLook 1321 V2" }, - { "0458", "7066", "Acer Crystal Eye Webcam" }, - { "0458", "7067", "Genius iSlim 1300AF V2" }, - { "0458", "7068", "Genius eFace 1325R" }, - { "0458", "706d", "Genius iSlim 2000AF V2" }, - { "0458", "7076", "Genius FaceCam 312" }, - { "0458", "7079", "FaceCam 2025R" }, - { "0458", "707f", "TVGo DVB-T03 [RTL2832]" }, - { "0458", "7088", "WideCam 1050" }, - { "0458", "7089", "Genius FaceCam 320" }, - { "0458", "708c", "Genius WideCam F100" }, - { "045a", "07da", "Supra Express 56K modem" }, - { "045a", "0b4a", "SupraMax 2890 56K Modem [Lucent Atlas]" }, - { "045a", "0b68", "SupraMax 56K Modem" }, - { "045a", "5001", "Rio 600 MP3 Player" }, - { "045a", "5002", "Rio 800 MP3 Player" }, - { "045a", "5003", "Nike Psa/Play MP3 Player" }, - { "045a", "5005", "Rio S10 MP3 Player" }, - { "045a", "5006", "Rio S50 MP3 Player" }, - { "045a", "5007", "Rio S35 MP3 Player" }, - { "045a", "5008", "Rio 900 MP3 Player" }, - { "045a", "5009", "Rio S30 MP3 Player" }, - { "045a", "500d", "Fuse MP3 Player" }, - { "045a", "500e", "Chiba MP3 Player" }, - { "045a", "500f", "Cali MP3 Player" }, - { "045a", "5010", "Rio S11 MP3 Player" }, - { "045a", "501c", "Virgin MPF-1000" }, - { "045a", "501d", "Rio Fuse" }, - { "045a", "501e", "Rio Chiba" }, - { "045a", "501f", "Rio Cali" }, - { "045a", "503f", "Cali256 MP3 Player" }, - { "045a", "5042", "Rio Forge" }, - { "045a", "5202", "Rio Riot MP3 Player" }, - { "045a", "5210", "Rio Karma Music Player" }, - { "045a", "5220", "Rio Nitrus MP3 Player" }, - { "045a", "5221", "Rio Eigen" }, - { "045b", "0053", "RX610 RX-Stick" }, - { "045b", "0229", "mSATA Adapter [renkforce Pi-102]" }, - { "045e", "0007", "SideWinder Game Pad" }, - { "045e", "0008", "SideWinder Precision Pro" }, - { "045e", "0009", "IntelliMouse" }, - { "045e", "000b", "Natural Keyboard Elite" }, - { "045e", "000e", "SideWinder® Freestyle Pro" }, - { "045e", "0014", "Digital Sound System 80" }, - { "045e", "001a", "SideWinder Precision Racing Wheel" }, - { "045e", "001b", "SideWinder Force Feedback 2 Joystick" }, - { "045e", "001c", "Internet Keyboard Pro" }, - { "045e", "001d", "Natural Keyboard Pro" }, - { "045e", "001e", "IntelliMouse Explorer" }, - { "045e", "0023", "Trackball Optical" }, - { "045e", "0024", "Trackball Explorer" }, - { "045e", "0025", "IntelliEye Mouse" }, - { "045e", "0026", "SideWinder GamePad Pro" }, - { "045e", "0027", "SideWinder PnP GamePad" }, - { "045e", "0028", "SideWinder Dual Strike" }, - { "045e", "0029", "IntelliMouse Optical" }, - { "045e", "002b", "Internet Keyboard Pro" }, - { "045e", "002d", "Internet Keyboard" }, - { "045e", "002f", "Integrated Hub" }, - { "045e", "0033", "Sidewinder Strategic Commander" }, - { "045e", "0034", "SideWinder Force Feedback Wheel" }, - { "045e", "0038", "SideWinder Precision 2" }, - { "045e", "0039", "IntelliMouse Optical" }, - { "045e", "003b", "SideWinder Game Voice" }, - { "045e", "003c", "SideWinder Joystick" }, - { "045e", "0040", "Wheel Mouse Optical" }, - { "045e", "0047", "IntelliMouse Explorer 3.0" }, - { "045e", "0048", "Office Keyboard 1.0A" }, - { "045e", "0053", "Optical Mouse" }, - { "045e", "0059", "Wireless IntelliMouse Explorer" }, - { "045e", "005c", "Office Keyboard (106/109)" }, - { "045e", "005f", "Wireless MultiMedia Keyboard" }, - { "045e", "0061", "Wireless MultiMedia Keyboard (106/109)" }, - { "045e", "0063", "Wireless Natural MultiMedia Keyboard" }, - { "045e", "0065", "Wireless Natural MultiMedia Keyboard (106/109)" }, - { "045e", "006a", "Wireless Optical Mouse (IntelliPoint)" }, - { "045e", "006d", "eHome Remote Control Keyboard keys" }, - { "045e", "006e", "MN-510 802.11b Wireless Adapter [Intersil ISL3873B]" }, - { "045e", "006f", "Smart Display Reference Device" }, - { "045e", "0070", "Wireless MultiMedia Keyboard" }, - { "045e", "0071", "Wireless MultiMedia Keyboard (106/109)" }, - { "045e", "0072", "Wireless Natural MultiMedia Keyboard" }, - { "045e", "0073", "Wireless Natural MultiMedia Keyboard (106/109)" }, - { "045e", "0079", "IXI Ogo CT-17 handheld device" }, - { "045e", "007a", "10/100 USB NIC" }, - { "045e", "007d", "Notebook Optical Mouse" }, - { "045e", "007e", "Wireless Transceiver for Bluetooth" }, - { "045e", "0080", "Digital Media Pro Keyboard" }, - { "045e", "0083", "Basic Optical Mouse" }, - { "045e", "0084", "Basic Optical Mouse" }, - { "045e", "008a", "Wireless Optical Desktop Receiver 2.0A" }, - { "045e", "008b", "Dual Receiver Wireless Mouse (IntelliPoint)" }, - { "045e", "008c", "Wireless Intellimouse Explorer 2.0" }, - { "045e", "0095", "IntelliMouse Explorer 4.0 (IntelliPoint)" }, - { "045e", "009c", "Wireless Transceiver for Bluetooth 2.0" }, - { "045e", "009d", "Wireless Optical Desktop 3.0" }, - { "045e", "00a0", "eHome Infrared Receiver" }, - { "045e", "00a4", "Compact Optical Mouse, model 1016" }, - { "045e", "00b0", "Digital Media Pro Keyboard" }, - { "045e", "00b4", "Digital Media Keyboard 1.0A" }, - { "045e", "00b9", "Wireless Optical Mouse 3.0" }, - { "045e", "00bb", "Fingerprint Reader" }, - { "045e", "00bc", "Fingerprint Reader" }, - { "045e", "00bd", "Fingerprint Reader" }, - { "045e", "00c2", "MN-710 802.11g Wireless Adapter [Intersil ISL3886]" }, - { "045e", "00c9", "MTP Device" }, - { "045e", "00ca", "Fingerprint Reader" }, - { "045e", "00cb", "Basic Optical Mouse v2.0" }, - { "045e", "00ce", "Generic PPC Flash device" }, - { "045e", "00d1", "Optical Mouse with Tilt Wheel" }, - { "045e", "00d2", "Notebook Optical Mouse with Tilt Wheel" }, - { "045e", "00da", "eHome Infrared Receiver" }, - { "045e", "00db", "Natural Ergonomic Keyboard 4000 V1.0" }, - { "045e", "00dd", "Comfort Curve Keyboard 2000 V1.0" }, - { "045e", "00e1", "Wireless Laser Mouse 6000 Receiver" }, - { "045e", "00f4", "LifeCam VX-6000 (SN9C20x + OV9650)" }, - { "045e", "00f5", "LifeCam VX-3000" }, - { "045e", "00f6", "Comfort Optical Mouse 1000" }, - { "045e", "00f7", "LifeCam VX-1000" }, - { "045e", "00f8", "LifeCam NX-6000" }, - { "045e", "00f9", "Wireless Desktop Receiver 3.1" }, - { "045e", "0202", "Xbox Controller" }, - { "045e", "0280", "Xbox Memory Unit (8MB)" }, - { "045e", "0283", "Xbox Communicator" }, - { "045e", "0284", "Xbox DVD Playback Kit" }, - { "045e", "0285", "Xbox Controller S" }, - { "045e", "0288", "Xbox Controller S Hub" }, - { "045e", "0289", "Xbox Controller S" }, - { "045e", "028b", "Xbox360 DVD Emulator" }, - { "045e", "028d", "Xbox360 Memory Unit 64MB" }, - { "045e", "028e", "Xbox360 Controller" }, - { "045e", "028f", "Xbox360 Wireless Controller" }, - { "045e", "0290", "Xbox360 Performance Pipe (PIX)" }, - { "045e", "0291", "Xbox 360 Wireless Receiver for Windows" }, - { "045e", "0292", "Xbox360 Wireless Networking Adapter" }, - { "045e", "029c", "Xbox360 HD-DVD Drive" }, - { "045e", "029d", "Xbox360 HD-DVD Drive" }, - { "045e", "029e", "Xbox360 HD-DVD Memory Unit" }, - { "045e", "02a0", "Xbox360 Big Button IR" }, - { "045e", "02a1", "Xbox 360 Wireless Receiver for Windows" }, - { "045e", "02a8", "Xbox360 Wireless N Networking Adapter [Atheros AR7010+AR9280]" }, - { "045e", "02ad", "Xbox NUI Audio" }, - { "045e", "02ae", "Xbox NUI Camera" }, - { "045e", "02b0", "Xbox NUI Motor" }, - { "045e", "02b6", "Xbox360 Bluetooth Wireless Headset" }, - { "045e", "02bb", "Kinect Audio" }, - { "045e", "02be", "Kinect for Windows NUI Audio" }, - { "045e", "02bf", "Kinect for Windows NUI Camera" }, - { "045e", "02c2", "Kinect for Windows NUI Motor" }, - { "045e", "02d1", "Xbox One Controller" }, - { "045e", "02d5", "Xbox One Digital TV Tuner" }, - { "045e", "02dd", "Xbox One Controller (Firmware 2015)" }, - { "045e", "02e3", "Xbox One Elite Controller" }, - { "045e", "02e6", "Wireless XBox Controller Dongle" }, - { "045e", "02ea", "Xbox One S Controller" }, - { "045e", "02fd", "Xbox One S Controller [Bluetooth]" }, - { "045e", "0400", "Windows Powered Pocket PC 2002" }, - { "045e", "0401", "Windows Powered Pocket PC 2002" }, - { "045e", "0402", "Windows Powered Pocket PC 2002" }, - { "045e", "0403", "Windows Powered Pocket PC 2002" }, - { "045e", "0404", "Windows Powered Pocket PC 2002" }, - { "045e", "0405", "Windows Powered Pocket PC 2002" }, - { "045e", "0406", "Windows Powered Pocket PC 2002" }, - { "045e", "0407", "Windows Powered Pocket PC 2002" }, - { "045e", "0408", "Windows Powered Pocket PC 2002" }, - { "045e", "0409", "Windows Powered Pocket PC 2002" }, - { "045e", "040a", "Windows Powered Pocket PC 2002" }, - { "045e", "040b", "Windows Powered Pocket PC 2002" }, - { "045e", "040c", "Windows Powered Pocket PC 2002" }, - { "045e", "040d", "Windows Powered Pocket PC 2002" }, - { "045e", "040e", "Windows Powered Pocket PC 2002" }, - { "045e", "040f", "Windows Powered Pocket PC 2002" }, - { "045e", "0410", "Windows Powered Pocket PC 2002" }, - { "045e", "0411", "Windows Powered Pocket PC 2002" }, - { "045e", "0412", "Windows Powered Pocket PC 2002" }, - { "045e", "0413", "Windows Powered Pocket PC 2002" }, - { "045e", "0414", "Windows Powered Pocket PC 2002" }, - { "045e", "0415", "Windows Powered Pocket PC 2002" }, - { "045e", "0416", "Windows Powered Pocket PC 2002" }, - { "045e", "0417", "Windows Powered Pocket PC 2002" }, - { "045e", "0432", "Windows Powered Pocket PC 2003" }, - { "045e", "0433", "Windows Powered Pocket PC 2003" }, - { "045e", "0434", "Windows Powered Pocket PC 2003" }, - { "045e", "0435", "Windows Powered Pocket PC 2003" }, - { "045e", "0436", "Windows Powered Pocket PC 2003" }, - { "045e", "0437", "Windows Powered Pocket PC 2003" }, - { "045e", "0438", "Windows Powered Pocket PC 2003" }, - { "045e", "0439", "Windows Powered Pocket PC 2003" }, - { "045e", "043a", "Windows Powered Pocket PC 2003" }, - { "045e", "043b", "Windows Powered Pocket PC 2003" }, - { "045e", "043c", "Windows Powered Pocket PC 2003" }, - { "045e", "043d", "Becker Traffic Assist Highspeed 7934" }, - { "045e", "043e", "Windows Powered Pocket PC 2003" }, - { "045e", "043f", "Windows Powered Pocket PC 2003" }, - { "045e", "0440", "Windows Powered Pocket PC 2003" }, - { "045e", "0441", "Windows Powered Pocket PC 2003" }, - { "045e", "0442", "Windows Powered Pocket PC 2003" }, - { "045e", "0443", "Windows Powered Pocket PC 2003" }, - { "045e", "0444", "Windows Powered Pocket PC 2003" }, - { "045e", "0445", "Windows Powered Pocket PC 2003" }, - { "045e", "0446", "Windows Powered Pocket PC 2003" }, - { "045e", "0447", "Windows Powered Pocket PC 2003" }, - { "045e", "0448", "Windows Powered Pocket PC 2003" }, - { "045e", "0449", "Windows Powered Pocket PC 2003" }, - { "045e", "044a", "Windows Powered Pocket PC 2003" }, - { "045e", "044b", "Windows Powered Pocket PC 2003" }, - { "045e", "044c", "Windows Powered Pocket PC 2003" }, - { "045e", "044d", "Windows Powered Pocket PC 2003" }, - { "045e", "044e", "Windows Powered Pocket PC 2003" }, - { "045e", "044f", "Windows Powered Pocket PC 2003" }, - { "045e", "0450", "Windows Powered Pocket PC 2003" }, - { "045e", "0451", "Windows Powered Pocket PC 2003" }, - { "045e", "0452", "Windows Powered Pocket PC 2003" }, - { "045e", "0453", "Windows Powered Pocket PC 2003" }, - { "045e", "0454", "Windows Powered Pocket PC 2003" }, - { "045e", "0455", "Windows Powered Pocket PC 2003" }, - { "045e", "0456", "Windows Powered Pocket PC 2003" }, - { "045e", "0457", "Windows Powered Pocket PC 2003" }, - { "045e", "0458", "Windows Powered Pocket PC 2003" }, - { "045e", "0459", "Windows Powered Pocket PC 2003" }, - { "045e", "045a", "Windows Powered Pocket PC 2003" }, - { "045e", "045b", "Windows Powered Pocket PC 2003" }, - { "045e", "045c", "Windows Powered Pocket PC 2003" }, - { "045e", "045d", "Windows Powered Pocket PC 2003" }, - { "045e", "045e", "Windows Powered Pocket PC 2003" }, - { "045e", "045f", "Windows Powered Pocket PC 2003" }, - { "045e", "0460", "Windows Powered Pocket PC 2003" }, - { "045e", "0461", "Windows Powered Pocket PC 2003" }, - { "045e", "0462", "Windows Powered Pocket PC 2003" }, - { "045e", "0463", "Windows Powered Pocket PC 2003" }, - { "045e", "0464", "Windows Powered Pocket PC 2003" }, - { "045e", "0465", "Windows Powered Pocket PC 2003" }, - { "045e", "0466", "Windows Powered Pocket PC 2003" }, - { "045e", "0467", "Windows Powered Pocket PC 2003" }, - { "045e", "0468", "Windows Powered Pocket PC 2003" }, - { "045e", "0469", "Windows Powered Pocket PC 2003" }, - { "045e", "046a", "Windows Powered Pocket PC 2003" }, - { "045e", "046b", "Windows Powered Pocket PC 2003" }, - { "045e", "046c", "Windows Powered Pocket PC 2003" }, - { "045e", "046d", "Windows Powered Pocket PC 2003" }, - { "045e", "046e", "Windows Powered Pocket PC 2003" }, - { "045e", "046f", "Windows Powered Pocket PC 2003" }, - { "045e", "0470", "Windows Powered Pocket PC 2003" }, - { "045e", "0471", "Windows Powered Pocket PC 2003" }, - { "045e", "0472", "Windows Powered Pocket PC 2003" }, - { "045e", "0473", "Windows Powered Pocket PC 2003" }, - { "045e", "0474", "Windows Powered Pocket PC 2003" }, - { "045e", "0475", "Windows Powered Pocket PC 2003" }, - { "045e", "0476", "Windows Powered Pocket PC 2003" }, - { "045e", "0477", "Windows Powered Pocket PC 2003" }, - { "045e", "0478", "Windows Powered Pocket PC 2003" }, - { "045e", "0479", "Windows Powered Pocket PC 2003" }, - { "045e", "047a", "Windows Powered Pocket PC 2003" }, - { "045e", "047b", "Windows Powered Pocket PC 2003" }, - { "045e", "04c8", "Windows Powered Smartphone 2002" }, - { "045e", "04c9", "Windows Powered Smartphone 2002" }, - { "045e", "04ca", "Windows Powered Smartphone 2002" }, - { "045e", "04cb", "Windows Powered Smartphone 2002" }, - { "045e", "04cc", "Windows Powered Smartphone 2002" }, - { "045e", "04cd", "Windows Powered Smartphone 2002" }, - { "045e", "04ce", "Windows Powered Smartphone 2002" }, - { "045e", "04d7", "Windows Powered Smartphone 2003" }, - { "045e", "04d8", "Windows Powered Smartphone 2003" }, - { "045e", "04d9", "Windows Powered Smartphone 2003" }, - { "045e", "04da", "Windows Powered Smartphone 2003" }, - { "045e", "04db", "Windows Powered Smartphone 2003" }, - { "045e", "04dc", "Windows Powered Smartphone 2003" }, - { "045e", "04dd", "Windows Powered Smartphone 2003" }, - { "045e", "04de", "Windows Powered Smartphone 2003" }, - { "045e", "04df", "Windows Powered Smartphone 2003" }, - { "045e", "04e0", "Windows Powered Smartphone 2003" }, - { "045e", "04e1", "Windows Powered Smartphone 2003" }, - { "045e", "04e2", "Windows Powered Smartphone 2003" }, - { "045e", "04e3", "Windows Powered Smartphone 2003" }, - { "045e", "04e4", "Windows Powered Smartphone 2003" }, - { "045e", "04e5", "Windows Powered Smartphone 2003" }, - { "045e", "04e6", "Windows Powered Smartphone 2003" }, - { "045e", "04e7", "Windows Powered Smartphone 2003" }, - { "045e", "04e8", "Windows Powered Smartphone 2003" }, - { "045e", "04e9", "Windows Powered Smartphone 2003" }, - { "045e", "04ea", "Windows Powered Smartphone 2003" }, - { "045e", "04ec", "Windows Phone (Zune)" }, - { "045e", "063e", "Zune HD Media Player" }, - { "045e", "0640", "KIN Phone" }, - { "045e", "0641", "KIN Phone" }, - { "045e", "0642", "KIN Phone" }, - { "045e", "0707", "Wireless Laser Mouse 8000" }, - { "045e", "0708", "Transceiver v 3.0 for Bluetooth" }, - { "045e", "070a", "Charon Bluetooth Dongle (DFU)" }, - { "045e", "070f", "LifeChat LX-3000 Headset" }, - { "045e", "0710", "Zune Media Player" }, - { "045e", "0713", "Wireless Presenter Mouse 8000" }, - { "045e", "0719", "Xbox 360 Wireless Adapter" }, - { "045e", "071f", "Mouse/Keyboard 2.4GHz Transceiver V2.0" }, - { "045e", "0721", "LifeCam NX-3000 (UVC-compliant)" }, - { "045e", "0723", "LifeCam VX-7000 (UVC-compliant)" }, - { "045e", "0724", "SideWinder Mouse" }, - { "045e", "0728", "LifeCam VX-5000" }, - { "045e", "0730", "Digital Media Keyboard 3000" }, - { "045e", "0734", "Wireless Optical Desktop 700" }, - { "045e", "0736", "Sidewinder X5 Mouse" }, - { "045e", "0737", "Compact Optical Mouse 500" }, - { "045e", "0745", "Nano Transceiver v1.0 for Bluetooth" }, - { "045e", "074a", "LifeCam VX-500 [1357]" }, - { "045e", "0750", "Wired Keyboard 600" }, - { "045e", "0752", "Wired Keyboard 400" }, - { "045e", "075d", "LifeCam Cinema" }, - { "045e", "0761", "LifeCam VX-2000" }, - { "045e", "0765", "Xbox360 Slim Internal Wireless Module (1400) [Marvell 88W8786U]" }, - { "045e", "0766", "LifeCam VX-800" }, - { "045e", "0768", "Sidewinder X4" }, - { "045e", "076c", "Comfort Mouse 4500" }, - { "045e", "076d", "LifeCam HD-5000" }, - { "045e", "0770", "LifeCam VX-700" }, - { "045e", "0772", "LifeCam Studio" }, - { "045e", "0779", "LifeCam HD-3000" }, - { "045e", "077f", "LifeChat LX-6000 Headset" }, - { "045e", "0780", "Comfort Curve Keyboard 3000" }, - { "045e", "0797", "Optical Mouse 200" }, - { "045e", "0799", "Surface Pro embedded keyboard" }, - { "045e", "07a5", "Wireless Receiver 1461C" }, - { "045e", "07b2", "2.4GHz Transceiver v8.0 used by mouse Wireless Desktop 900" }, - { "045e", "07b6", "Comfort Curve Keyboard 3000" }, - { "045e", "07b9", "Wired Keyboard 200" }, - { "045e", "07c6", "RTL8153 GigE [Surface Ethernet Adapter]" }, - { "045e", "07ca", "Surface Pro 3 Docking Station Audio Device" }, - { "045e", "07cd", "Surface Keyboard" }, - { "045e", "07f8", "Wired Keyboard 600 (model 1576)" }, - { "045e", "07fd", "Nano Transceiver 1.1" }, - { "045e", "0800", "Wireless keyboard (All-in-One-Media)" }, - { "045e", "0810", "LifeCam HD-3000" }, - { "045e", "0823", "Classic IntelliMouse" }, - { "045e", "0900", "Surface Dock Hub" }, - { "045e", "0901", "Surface Dock Hub" }, - { "045e", "0902", "Surface Dock Hub" }, - { "045e", "0903", "Surface Dock Hub" }, - { "045e", "0904", "Surface Dock Extender" }, - { "045e", "0905", "Surface Dock Audio" }, - { "045e", "090b", "Hub" }, - { "045e", "090c", "SD Card" }, - { "045e", "091a", "Hub" }, - { "045e", "0927", "RTL8153B GigE [Surface Ethernet Adapter]" }, - { "045e", "0955", "Hub" }, - { "045e", "0957", "Hub" }, - { "045e", "09a0", "RTL8153B GigE [Surface Ethernet Adapter]" }, - { "045e", "09c0", "Surface Type Cover" }, - { "045e", "0a00", "Lumia 950 Dual SIM (RM-1118)" }, - { "045e", "0b12", "Xbox Wireless Controller (model 1914)" }, - { "045e", "930a", "ISOUSB.SYS Intel 82930 Isochronous IO Test Board" }, - { "045e", "ffca", "Catalina" }, - { "045e", "fff8", "Keyboard" }, - { "045e", "ffff", "Windows CE Mass Storage" }, - { "0460", "0004", "Tablet (5x3.75)" }, - { "0460", "0006", "LCD Tablet (12x9)" }, - { "0460", "0008", "Tablet (3x2.25)" }, - { "0461", "0010", "HP PR1101U / Primax PMX-KPR1101U Keyboard" }, - { "0461", "0300", "G2-300 Scanner" }, - { "0461", "0301", "G2E-300 Scanner" }, - { "0461", "0302", "G2-300 #2 Scanner" }, - { "0461", "0303", "G2E-300 #2 Scanner" }, - { "0461", "0340", "Colorado 9600 Scanner" }, - { "0461", "0341", "Colorado 600u Scanner" }, - { "0461", "0345", "Visioneer 6200 Scanner" }, - { "0461", "0346", "Memorex Maxx 6136u Scanner" }, - { "0461", "0347", "Primascan Colorado 2600u/Visioneer 4400 Scanner" }, - { "0461", "0360", "Colorado 19200 Scanner" }, - { "0461", "0361", "Colorado 1200u Scanner" }, - { "0461", "0363", "VistaScan Astra 3600(ENG)" }, - { "0461", "0364", "LG Electronics Scanworks 600U Scanner" }, - { "0461", "0365", "VistaScan Astra 3600(ENG)" }, - { "0461", "0366", "6400" }, - { "0461", "0367", "VistaScan Astra 3600(ENG)" }, - { "0461", "0371", "Visioneer Onetouch 8920 Scanner" }, - { "0461", "0374", "UMAX Astra 2500" }, - { "0461", "0375", "VistaScan Astra 3600(ENG)" }, - { "0461", "0377", "Medion MD 5345 Scanner" }, - { "0461", "0378", "VistaScan Astra 3600(ENG)" }, - { "0461", "037b", "Medion MD 6190 Scanner" }, - { "0461", "037c", "VistaScan Astra 3600(ENG)" }, - { "0461", "0380", "G2-600 Scanner" }, - { "0461", "0381", "ReadyScan 636i Scanner" }, - { "0461", "0382", "G2-600 #2 Scanner" }, - { "0461", "0383", "G2E-600 Scanner" }, - { "0461", "038a", "UMAX Astra 3000/3600" }, - { "0461", "038b", "Xerox 2400 Onetouch" }, - { "0461", "038c", "UMAX Astra 4100" }, - { "0461", "0392", "Medion/Lifetec/Tevion/Cytron MD 6190" }, - { "0461", "03a8", "9420M" }, - { "0461", "0813", "IBM UltraPort Camera" }, - { "0461", "0815", "Micro Innovations IC200 Webcam" }, - { "0461", "0819", "Fujifilm IX-30 Camera [webcam mode]" }, - { "0461", "081a", "Fujifilm IX-30 Camera [storage mode]" }, - { "0461", "081c", "Elitegroup ECS-C11 Camera" }, - { "0461", "081d", "Elitegroup ECS-C11 Storage" }, - { "0461", "0a00", "Micro Innovations Web Cam 320" }, - { "0461", "4d01", "Comfort Keyboard / Kensington Orbit Elite" }, - { "0461", "4d02", "Mouse-in-a-Box" }, - { "0461", "4d03", "Kensington Mouse-in-a-box" }, - { "0461", "4d04", "Mouse" }, - { "0461", "4d06", "Balless Mouse (HID)" }, - { "0461", "4d0f", "HP Optical Mouse" }, - { "0461", "4d15", "Dell Optical Mouse" }, - { "0461", "4d17", "Optical Mouse" }, - { "0461", "4d20", "HP Optical Mouse" }, - { "0461", "4d2a", "PoPo Elixir Mouse (HID)" }, - { "0461", "4d2b", "Wireless Laser Mini Mouse (HID)" }, - { "0461", "4d2c", "PoPo Mini Pointer Mouse (HID)" }, - { "0461", "4d2e", "Optical Mobile Mouse (HID)" }, - { "0461", "4d51", "0Y357C PMX-MMOCZUL (B) [Dell Laser Mouse]" }, - { "0461", "4d62", "HP Laser Mobile Mini Mouse" }, - { "0461", "4d75", "Rocketfish RF-FLBTAD Bluetooth Adapter" }, - { "0461", "4d81", "Dell N889 Optical Mouse" }, - { "0461", "4d8a", "HP Multimedia Keyboard" }, - { "0461", "4d91", "Laser mouse M-D16DL" }, - { "0461", "4d92", "Optical mouse M-D17DR" }, - { "0461", "4db1", "Dell Laptop Integrated Webcam 2Mpix" }, - { "0461", "4de3", "HP 5-Button Optical Comfort Mouse" }, - { "0461", "4de7", "webcam" }, - { "0461", "4e04", "Lenovo Keyboard KB1021" }, - { "0461", "4e22", "Dell Mouse, 2 Buttons, Modell: MS111-P" }, - { "0461", "4e6f", "Acer Wired Keyboard Model KBAY211" }, - { "0461", "4e72", "Acer Wired Keyboard Model KBAY211" }, - { "0463", "0001", "UPS" }, - { "0463", "ffff", "UPS" }, - { "046a", "0001", "Keyboard" }, - { "046a", "0003", "My3000 Hub" }, - { "046a", "0004", "CyBoard Keyboard" }, - { "046a", "0005", "XX33 SmartCard Reader Keyboard" }, - { "046a", "0008", "Wireless Keyboard and Mouse" }, - { "046a", "0010", "SmartBoard XX44" }, - { "046a", "0011", "G83 (RS 6000) Keyboard" }, - { "046a", "0021", "CyMotion Expert Combo" }, - { "046a", "0023", "Keyboard" }, - { "046a", "0027", "CyMotion Master Solar Keyboard" }, - { "046a", "002a", "Wireless Mouse & Keyboard" }, - { "046a", "002d", "SmartTerminal XX44" }, - { "046a", "003c", "Raptor Gaming Keyboard" }, - { "046a", "003d", "Raptor Gaming Keyboard Integrated Hub" }, - { "046a", "003e", "SmartTerminal ST-2xxx" }, - { "046a", "0041", "G86 6240 Keyboard" }, - { "046a", "0080", "eHealth Terminal ST 1503" }, - { "046a", "0081", "eHealth Keyboard G87 1504" }, - { "046a", "00a1", "SmartCard Reader Keyboard KC 1000 SC" }, - { "046a", "0106", "R-300 Wireless Mouse Receiver" }, - { "046a", "010d", "MX-Board 3.0 Keyboard" }, - { "046a", "0180", "Strait 3.0" }, - { "046a", "b090", "Keyboard" }, - { "046a", "b091", "Mouse" }, - { "046b", "0001", "Keyboard" }, - { "046b", "0101", "PS/2 Keyboard, Mouse & Joystick Ports" }, - { "046b", "0301", "USB 1.0 Hub" }, - { "046b", "0500", "Serial & Parallel Ports" }, - { "046b", "ff10", "Virtual Keyboard and Mouse" }, - { "046d", "0082", "Acer Aspire 5672 Webcam" }, - { "046d", "0200", "WingMan Extreme Joystick" }, - { "046d", "0203", "M2452 Keyboard" }, - { "046d", "0242", "Chillstream for Xbox 360" }, - { "046d", "0301", "M4848 Mouse" }, - { "046d", "0401", "HP PageScan" }, - { "046d", "0402", "NEC PageScan" }, - { "046d", "040f", "Logitech/Storm PageScan" }, - { "046d", "0430", "Mic (Cordless)" }, - { "046d", "0801", "QuickCam Home" }, - { "046d", "0802", "Webcam C200" }, - { "046d", "0804", "Webcam C250" }, - { "046d", "0805", "Webcam C300" }, - { "046d", "0807", "Webcam B500" }, - { "046d", "0808", "Webcam C600" }, - { "046d", "0809", "Webcam Pro 9000" }, - { "046d", "080a", "Portable Webcam C905" }, - { "046d", "080f", "Webcam C120" }, - { "046d", "0810", "QuickCam Pro" }, - { "046d", "0819", "Webcam C210" }, - { "046d", "081a", "Webcam C260" }, - { "046d", "081b", "Webcam C310" }, - { "046d", "081d", "HD Webcam C510" }, - { "046d", "0820", "QuickCam VC" }, - { "046d", "0821", "HD Webcam C910" }, - { "046d", "0823", "HD Webcam B910" }, - { "046d", "0825", "Webcam C270" }, - { "046d", "0826", "HD Webcam C525" }, - { "046d", "0828", "HD Webcam B990" }, - { "046d", "082b", "Webcam C170" }, - { "046d", "082c", "HD Webcam C615" }, - { "046d", "082d", "HD Pro Webcam C920" }, - { "046d", "0830", "QuickClip" }, - { "046d", "0836", "B525 HD Webcam" }, - { "046d", "0837", "BCC950 ConferenceCam" }, - { "046d", "0840", "QuickCam Express" }, - { "046d", "0843", "Webcam C930e" }, - { "046d", "0845", "ConferenceCam CC3000e Camera" }, - { "046d", "0846", "ConferenceCam CC3000e Speakerphone" }, - { "046d", "084b", "ConferenceCam Connect Video" }, - { "046d", "084c", "ConferenceCam Connect Audio" }, - { "046d", "084e", "ConferenceCam Connect" }, - { "046d", "0850", "QuickCam Web" }, - { "046d", "0857", "Logi Group Speakerphone" }, - { "046d", "085c", "C922 Pro Stream Webcam" }, - { "046d", "085e", "BRIO Ultra HD Webcam" }, - { "046d", "0870", "QuickCam Express" }, - { "046d", "0882", "Logi Group Speakerphone" }, - { "046d", "0890", "QuickCam Traveler" }, - { "046d", "0892", "C920 HD Pro Webcam" }, - { "046d", "0893", "StreamCam" }, - { "046d", "0894", "CrystalCam" }, - { "046d", "0895", "QuickCam for Dell Notebooks" }, - { "046d", "0896", "OrbiCam" }, - { "046d", "0897", "QuickCam for Dell Notebooks" }, - { "046d", "0899", "QuickCam for Dell Notebooks" }, - { "046d", "089d", "QuickCam E2500 series" }, - { "046d", "08a0", "QuickCam IM" }, - { "046d", "08a1", "QuickCam IM with sound" }, - { "046d", "08a2", "Labtec Webcam Pro" }, - { "046d", "08a3", "QuickCam QuickCam Chat" }, - { "046d", "08a6", "QuickCam IM" }, - { "046d", "08a7", "QuickCam Image" }, - { "046d", "08a9", "Notebook Deluxe" }, - { "046d", "08aa", "Labtec Notebooks" }, - { "046d", "08ac", "QuickCam Cool" }, - { "046d", "08ad", "QuickCam Communicate STX" }, - { "046d", "08ae", "QuickCam for Notebooks" }, - { "046d", "08af", "QuickCam Easy/Cool" }, - { "046d", "08b0", "QuickCam 3000 Pro [pwc]" }, - { "046d", "08b1", "QuickCam Notebook Pro" }, - { "046d", "08b2", "QuickCam Pro 4000" }, - { "046d", "08b3", "QuickCam Zoom" }, - { "046d", "08b4", "QuickCam Zoom" }, - { "046d", "08b5", "QuickCam Sphere" }, - { "046d", "08b9", "QuickCam IM" }, - { "046d", "08bd", "Microphone (Pro 4000)" }, - { "046d", "08c0", "QuickCam Pro 3000" }, - { "046d", "08c1", "QuickCam Fusion" }, - { "046d", "08c2", "QuickCam PTZ" }, - { "046d", "08c3", "Camera (Notebooks Pro)" }, - { "046d", "08c5", "QuickCam Pro 5000" }, - { "046d", "08c6", "QuickCam for DELL Notebooks" }, - { "046d", "08c7", "QuickCam OEM Cisco VT Camera II" }, - { "046d", "08c9", "QuickCam Ultra Vision" }, - { "046d", "08ca", "Mic (Fusion)" }, - { "046d", "08cb", "Mic (Notebooks Pro)" }, - { "046d", "08cc", "Mic (PTZ)" }, - { "046d", "08ce", "QuickCam Pro 5000" }, - { "046d", "08cf", "QuickCam UpdateMe" }, - { "046d", "08d0", "QuickCam Express" }, - { "046d", "08d7", "QuickCam Communicate STX" }, - { "046d", "08d8", "QuickCam for Notebook Deluxe" }, - { "046d", "08d9", "QuickCam IM/Connect" }, - { "046d", "08da", "QuickCam Messenger" }, - { "046d", "08dd", "QuickCam for Notebooks" }, - { "046d", "08e0", "QuickCam Express" }, - { "046d", "08e1", "Labtec Webcam" }, - { "046d", "08e5", "C920 PRO HD Webcam" }, - { "046d", "08f0", "QuickCam Messenger" }, - { "046d", "08f1", "QuickCam Express" }, - { "046d", "08f2", "Microphone (Messenger)" }, - { "046d", "08f3", "QuickCam Express" }, - { "046d", "08f4", "Labtec Webcam" }, - { "046d", "08f5", "QuickCam Messenger Communicate" }, - { "046d", "08f6", "QuickCam Messenger Plus" }, - { "046d", "0900", "ClickSmart 310" }, - { "046d", "0901", "ClickSmart 510" }, - { "046d", "0903", "ClickSmart 820" }, - { "046d", "0905", "ClickSmart 820" }, - { "046d", "0910", "QuickCam Cordless" }, - { "046d", "0920", "QuickCam Express" }, - { "046d", "0921", "Labtec Webcam" }, - { "046d", "0922", "QuickCam Live" }, - { "046d", "0928", "QuickCam Express" }, - { "046d", "0929", "Labtec Webcam Pro" }, - { "046d", "092a", "QuickCam for Notebooks" }, - { "046d", "092b", "Labtec Webcam Plus" }, - { "046d", "092c", "QuickCam Chat" }, - { "046d", "092d", "QuickCam Express / Go" }, - { "046d", "092e", "QuickCam Chat" }, - { "046d", "092f", "QuickCam Express Plus" }, - { "046d", "0950", "Pocket Camera" }, - { "046d", "0960", "ClickSmart 420" }, - { "046d", "0970", "Pocket750" }, - { "046d", "0990", "QuickCam Pro 9000" }, - { "046d", "0991", "QuickCam Pro for Notebooks" }, - { "046d", "0992", "QuickCam Communicate Deluxe" }, - { "046d", "0994", "QuickCam Orbit/Sphere AF" }, - { "046d", "09a1", "QuickCam Communicate MP/S5500" }, - { "046d", "09a2", "QuickCam Communicate Deluxe/S7500" }, - { "046d", "09a4", "QuickCam E 3500" }, - { "046d", "09a5", "Quickcam 3000 For Business" }, - { "046d", "09a6", "QuickCam Vision Pro" }, - { "046d", "09b0", "Acer OrbiCam" }, - { "046d", "09b2", "Fujitsu Webcam" }, - { "046d", "09c0", "QuickCam for Dell Notebooks Mic" }, - { "046d", "09c1", "QuickCam Deluxe for Notebooks" }, - { "046d", "0a01", "USB Headset" }, - { "046d", "0a02", "Premium Stereo USB Headset 350" }, - { "046d", "0a03", "Logitech USB Microphone" }, - { "046d", "0a04", "V20 portable speakers (USB powered)" }, - { "046d", "0a07", "Z-10 Speakers" }, - { "046d", "0a0b", "ClearChat Pro USB" }, - { "046d", "0a0c", "Clear Chat Comfort USB Headset" }, - { "046d", "0a10", "V10 Notebook Speakers" }, - { "046d", "0a13", "Z-5 Speakers" }, - { "046d", "0a14", "USB Headset" }, - { "046d", "0a15", "G35 Headset" }, - { "046d", "0a17", "G330 Headset" }, - { "046d", "0a1f", "G930" }, - { "046d", "0a29", "H600 [Wireless Headset]" }, - { "046d", "0a37", "USB Headset H540" }, - { "046d", "0a38", "Headset H340" }, - { "046d", "0a44", "Headset H390" }, - { "046d", "0a45", "960 Headset" }, - { "046d", "0a4d", "G430 Surround Sound Gaming Headset" }, - { "046d", "0a5b", "G933 Wireless Headset Dongle" }, - { "046d", "0a5d", "G933 Headset Battery Charger" }, - { "046d", "0a66", "[G533 Wireless Headset Dongle]" }, - { "046d", "0a8f", "H390 headset with microphone" }, - { "046d", "0aaa", "Logitech G PRO X Gaming Headset" }, - { "046d", "0b02", "C-UV35 [Bluetooth Mini-Receiver] (HID proxy mode)" }, - { "046d", "8801", "Video Camera" }, - { "046d", "b014", "Bluetooth Mouse M336/M337/M535" }, - { "046d", "b305", "BT Mini-Receiver" }, - { "046d", "bfe4", "Premium Optical Wheel Mouse" }, - { "046d", "c000", "N43 [Pilot Mouse]" }, - { "046d", "c001", "N48/M-BB48/M-UK96A [FirstMouse Plus]" }, - { "046d", "c002", "M-BA47 [MouseMan Plus]" }, - { "046d", "c003", "MouseMan" }, - { "046d", "c004", "WingMan Gaming Mouse" }, - { "046d", "c005", "WingMan Gaming Wheel Mouse" }, - { "046d", "c00b", "MouseMan Wheel" }, - { "046d", "c00c", "Optical Wheel Mouse" }, - { "046d", "c00d", "MouseMan Wheel+" }, - { "046d", "c00e", "M-BJ58/M-BJ69 Optical Wheel Mouse" }, - { "046d", "c00f", "MouseMan Traveler/Mobile" }, - { "046d", "c011", "Optical MouseMan" }, - { "046d", "c012", "Mouseman Dual Optical" }, - { "046d", "c014", "Corded Workstation Mouse" }, - { "046d", "c015", "Corded Workstation Mouse" }, - { "046d", "c016", "Optical Wheel Mouse" }, - { "046d", "c018", "Optical Wheel Mouse" }, - { "046d", "c019", "Optical Tilt Wheel Mouse" }, - { "046d", "c01a", "M-BQ85 Optical Wheel Mouse" }, - { "046d", "c01b", "MX310 Optical Mouse" }, - { "046d", "c01c", "Optical Mouse" }, - { "046d", "c01d", "MX510 Optical Mouse" }, - { "046d", "c01e", "MX518 Optical Mouse" }, - { "046d", "c024", "MX300 Optical Mouse" }, - { "046d", "c025", "MX500 Optical Mouse" }, - { "046d", "c030", "iFeel Mouse" }, - { "046d", "c031", "iFeel Mouse+" }, - { "046d", "c032", "MouseMan iFeel" }, - { "046d", "c033", "iFeel MouseMan+" }, - { "046d", "c034", "MouseMan Optical" }, - { "046d", "c035", "Mouse" }, - { "046d", "c036", "Mouse" }, - { "046d", "c037", "Mouse" }, - { "046d", "c038", "Mouse" }, - { "046d", "c03d", "M-BT96a Pilot Optical Mouse" }, - { "046d", "c03e", "Premium Optical Wheel Mouse (M-BT58)" }, - { "046d", "c03f", "M-BT85 [UltraX Optical Mouse]" }, - { "046d", "c040", "Corded Tilt-Wheel Mouse" }, - { "046d", "c041", "G5 Laser Mouse" }, - { "046d", "c042", "G3 Laser Mouse" }, - { "046d", "c043", "MX320/MX400 Laser Mouse" }, - { "046d", "c044", "LX3 Optical Mouse" }, - { "046d", "c045", "Optical Mouse" }, - { "046d", "c046", "RX1000 Laser Mouse" }, - { "046d", "c047", "Laser Mouse M-UAL120" }, - { "046d", "c048", "G9 Laser Mouse" }, - { "046d", "c049", "G5 Laser Mouse" }, - { "046d", "c050", "RX 250 Optical Mouse" }, - { "046d", "c051", "G3 (MX518) Optical Mouse" }, - { "046d", "c053", "Laser Mouse" }, - { "046d", "c054", "Bluetooth mini-receiver" }, - { "046d", "c058", "M115 Mouse" }, - { "046d", "c05a", "M90/M100 Optical Mouse" }, - { "046d", "c05b", "M-U0004 810-001317 [B110 Optical USB Mouse]" }, - { "046d", "c05d", "Optical Mouse" }, - { "046d", "c05f", "M115 Optical Mouse" }, - { "046d", "c061", "RX1500 Laser Mouse" }, - { "046d", "c062", "M-UAS144 [LS1 Laser Mouse]" }, - { "046d", "c063", "DELL Laser Mouse" }, - { "046d", "c064", "M110 corded optical mouse (M-B0001)" }, - { "046d", "c066", "G9x Laser Mouse" }, - { "046d", "c068", "G500 Laser Mouse" }, - { "046d", "c069", "M-U0007 [Corded Mouse M500]" }, - { "046d", "c06a", "USB Optical Mouse" }, - { "046d", "c06b", "G700 Wireless Gaming Mouse" }, - { "046d", "c06c", "Optical Mouse" }, - { "046d", "c077", "Mouse" }, - { "046d", "c07c", "M-R0017 [G700s Rechargeable Gaming Mouse]" }, - { "046d", "c07d", "G502 Mouse" }, - { "046d", "c07e", "G402 Gaming Mouse" }, - { "046d", "c080", "G303 Gaming Mouse" }, - { "046d", "c083", "G403 Prodigy Gaming Mouse" }, - { "046d", "c084", "G203 Gaming Mouse" }, - { "046d", "c08b", "G502 SE HERO Gaming Mouse" }, - { "046d", "c092", "G102/G203 LIGHTSYNC Gaming Mouse" }, - { "046d", "c101", "UltraX Media Remote" }, - { "046d", "c110", "Harmony 785/880/885 Remote" }, - { "046d", "c111", "Harmony 525 Remote" }, - { "046d", "c112", "Harmony 890 Remote" }, - { "046d", "c11f", "Harmony 900/1100 Remote" }, - { "046d", "c121", "Harmony One Remote" }, - { "046d", "c122", "Harmony 650/700 Remote" }, - { "046d", "c124", "Harmony 300/350 Remote" }, - { "046d", "c125", "Harmony 200 Remote" }, - { "046d", "c126", "Harmony Link" }, - { "046d", "c129", "Harmony Hub" }, - { "046d", "c12b", "Harmony Touch/Ultimate Remote" }, - { "046d", "c201", "WingMan Extreme Joystick with Throttle" }, - { "046d", "c202", "WingMan Formula" }, - { "046d", "c207", "WingMan Extreme Digital 3D" }, - { "046d", "c208", "WingMan Gamepad Extreme" }, - { "046d", "c209", "WingMan Gamepad" }, - { "046d", "c20a", "WingMan RumblePad" }, - { "046d", "c20b", "WingMan Action Pad" }, - { "046d", "c20c", "WingMan Precision" }, - { "046d", "c20d", "WingMan Attack 2" }, - { "046d", "c20e", "WingMan Formula GP" }, - { "046d", "c211", "iTouch Cordless Receiver" }, - { "046d", "c212", "WingMan Extreme Digital 3D" }, - { "046d", "c213", "J-UH16 (Freedom 2.4 Cordless Joystick)" }, - { "046d", "c214", "ATK3 (Attack III Joystick)" }, - { "046d", "c215", "Extreme 3D Pro" }, - { "046d", "c216", "F310 Gamepad [DirectInput Mode]" }, - { "046d", "c218", "F510 Gamepad [DirectInput Mode]" }, - { "046d", "c219", "F710 Gamepad [DirectInput Mode]" }, - { "046d", "c21a", "Precision Gamepad" }, - { "046d", "c21c", "G13 Advanced Gameboard" }, - { "046d", "c21d", "F310 Gamepad [XInput Mode]" }, - { "046d", "c21e", "F510 Gamepad [XInput Mode]" }, - { "046d", "c21f", "F710 Wireless Gamepad [XInput Mode]" }, - { "046d", "c221", "G11/G15 Keyboard / Keyboard" }, - { "046d", "c222", "G15 Keyboard / LCD" }, - { "046d", "c223", "G11/G15 Keyboard / USB Hub" }, - { "046d", "c225", "G11/G15 Keyboard / G keys" }, - { "046d", "c226", "G15 Refresh Keyboard" }, - { "046d", "c227", "G15 Refresh Keyboard" }, - { "046d", "c228", "G19 Gaming Keyboard" }, - { "046d", "c229", "G19 Gaming Keyboard Macro Interface" }, - { "046d", "c22a", "Gaming Keyboard G110" }, - { "046d", "c22b", "Gaming Keyboard G110 G-keys" }, - { "046d", "c22d", "G510 Gaming Keyboard" }, - { "046d", "c22e", "G510 Gaming Keyboard onboard audio" }, - { "046d", "c231", "G13 Virtual Mouse" }, - { "046d", "c232", "Gaming Virtual Keyboard" }, - { "046d", "c245", "G400 Optical Mouse" }, - { "046d", "c246", "Gaming Mouse G300" }, - { "046d", "c247", "G100S Optical Gaming Mouse" }, - { "046d", "c248", "G105 Gaming Keyboard" }, - { "046d", "c24a", "G600 Gaming Mouse" }, - { "046d", "c24c", "G400s Optical Mouse" }, - { "046d", "c24d", "G710 Gaming Keyboard" }, - { "046d", "c24e", "G500s Laser Gaming Mouse" }, - { "046d", "c24f", "G29 Driving Force Racing Wheel [PS3]" }, - { "046d", "c260", "G29 Driving Force Racing Wheel [PS4]" }, - { "046d", "c262", "G920 Driving Force Racing Wheel" }, - { "046d", "c281", "WingMan Force" }, - { "046d", "c283", "WingMan Force 3D" }, - { "046d", "c285", "WingMan Strike Force 3D" }, - { "046d", "c286", "Force 3D Pro" }, - { "046d", "c287", "Flight System G940" }, - { "046d", "c291", "WingMan Formula Force" }, - { "046d", "c293", "WingMan Formula Force GP" }, - { "046d", "c294", "Driving Force" }, - { "046d", "c295", "Momo Force Steering Wheel" }, - { "046d", "c298", "Driving Force Pro" }, - { "046d", "c299", "G25 Racing Wheel" }, - { "046d", "c29b", "G27 Racing Wheel" }, - { "046d", "c29c", "Speed Force Wireless Wheel for Wii" }, - { "046d", "c2a0", "Wingman Force Feedback Mouse" }, - { "046d", "c2a1", "WingMan Force Feedback Mouse" }, - { "046d", "c2ab", "G13 Joystick" }, - { "046d", "c301", "iTouch Keyboard" }, - { "046d", "c302", "iTouch Pro Keyboard" }, - { "046d", "c303", "iTouch Keyboard" }, - { "046d", "c305", "Internet Keyboard" }, - { "046d", "c307", "Internet Keyboard" }, - { "046d", "c308", "Internet Navigator Keyboard" }, - { "046d", "c309", "Y-BF37 [Internet Navigator Keyboard]" }, - { "046d", "c30a", "iTouch Composite" }, - { "046d", "c30b", "NetPlay Keyboard" }, - { "046d", "c30c", "Internet Keys (X)" }, - { "046d", "c30d", "Internet Keys" }, - { "046d", "c30e", "UltraX Keyboard (Y-BL49)" }, - { "046d", "c30f", "Logicool HID-Compliant Keyboard (106 key)" }, - { "046d", "c311", "Y-UF49 [Internet Pro Keyboard]" }, - { "046d", "c312", "DeLuxe 250 Keyboard" }, - { "046d", "c313", "Internet 350 Keyboard" }, - { "046d", "c315", "Classic Keyboard 200" }, - { "046d", "c316", "HID-Compliant Keyboard" }, - { "046d", "c317", "Wave Corded Keyboard" }, - { "046d", "c318", "Illuminated Keyboard" }, - { "046d", "c31a", "Comfort Wave 450" }, - { "046d", "c31b", "Compact Keyboard K300" }, - { "046d", "c31c", "Keyboard K120" }, - { "046d", "c31d", "Media Keyboard K200" }, - { "046d", "c31f", "Comfort Keyboard K290" }, - { "046d", "c326", "Washable Keyboard K310" }, - { "046d", "c328", "Corded Keyboard K280e" }, - { "046d", "c32b", "G910 Orion Spark Mechanical Keyboard" }, - { "046d", "c332", "G502 Proteus Spectrum Optical Mouse" }, - { "046d", "c335", "G910 Orion Spectrum Mechanical Keyboard" }, - { "046d", "c336", "G213 Prodigy Gaming Keyboard" }, - { "046d", "c33a", "G413 Gaming Keyboard" }, - { "046d", "c33f", "G815 Mechanical Keyboard" }, - { "046d", "c401", "TrackMan Marble Wheel" }, - { "046d", "c402", "Marble Mouse (2-button)" }, - { "046d", "c403", "Turbo TrackMan Marble FX" }, - { "046d", "c404", "TrackMan Wheel" }, - { "046d", "c408", "Marble Mouse (4-button)" }, - { "046d", "c501", "Cordless Mouse Receiver" }, - { "046d", "c502", "Cordless Mouse & iTouch Keys" }, - { "046d", "c503", "Cordless Mouse+Keyboard Receiver" }, - { "046d", "c504", "Cordless Mouse+Keyboard Receiver" }, - { "046d", "c505", "Cordless Mouse+Keyboard Receiver" }, - { "046d", "c506", "MX700 Cordless Mouse Receiver" }, - { "046d", "c508", "Cordless Trackball" }, - { "046d", "c509", "Cordless Keyboard & Mouse" }, - { "046d", "c50a", "Cordless Mouse" }, - { "046d", "c50b", "Cordless Desktop Optical" }, - { "046d", "c50c", "Cordless Desktop S510" }, - { "046d", "c50d", "Cordless Mouse" }, - { "046d", "c50e", "Cordless Mouse Receiver" }, - { "046d", "c510", "Cordless Mouse" }, - { "046d", "c512", "LX-700 Cordless Desktop Receiver" }, - { "046d", "c513", "MX3000 Cordless Desktop Receiver" }, - { "046d", "c514", "Cordless Mouse" }, - { "046d", "c515", "Cordless 2.4 GHz Presenter Presentation remote control" }, - { "046d", "c517", "LX710 Cordless Desktop Laser" }, - { "046d", "c518", "MX610 Laser Cordless Mouse" }, - { "046d", "c51a", "MX Revolution/G7 Cordless Mouse" }, - { "046d", "c51b", "V220 Cordless Optical Mouse for Notebooks" }, - { "046d", "c521", "Cordless Mouse Receiver" }, - { "046d", "c525", "MX Revolution Cordless Mouse" }, - { "046d", "c526", "Nano Receiver" }, - { "046d", "c529", "Logitech Keyboard + Mice" }, - { "046d", "c52b", "Unifying Receiver" }, - { "046d", "c52d", "R700 Remote Presenter receiver" }, - { "046d", "c52e", "MK260 Wireless Combo Receiver" }, - { "046d", "c52f", "Unifying Receiver" }, - { "046d", "c531", "C-U0007 [Unifying Receiver]" }, - { "046d", "c532", "Unifying Receiver" }, - { "046d", "c534", "Unifying Receiver" }, - { "046d", "c537", "Cordless Mouse Receiver" }, - { "046d", "c539", "Cordless Mouse Receiver" }, - { "046d", "c53a", "PowerPlay Wireless Charging System" }, - { "046d", "c53d", "G631 Keyboard" }, - { "046d", "c603", "3Dconnexion Spacemouse Plus XT" }, - { "046d", "c605", "3Dconnexion CADman" }, - { "046d", "c606", "3Dconnexion Spacemouse Classic" }, - { "046d", "c621", "3Dconnexion Spaceball 5000" }, - { "046d", "c623", "3Dconnexion Space Traveller 3D Mouse" }, - { "046d", "c625", "3Dconnexion Space Pilot 3D Mouse" }, - { "046d", "c626", "3Dconnexion Space Navigator 3D Mouse" }, - { "046d", "c627", "3Dconnexion Space Explorer 3D Mouse" }, - { "046d", "c628", "3Dconnexion Space Navigator for Notebooks" }, - { "046d", "c629", "3Dconnexion SpacePilot Pro 3D Mouse" }, - { "046d", "c62b", "3Dconnexion Space Mouse Pro" }, - { "046d", "c640", "NuLOOQ navigator" }, - { "046d", "c702", "Cordless Presenter" }, - { "046d", "c703", "Elite Keyboard Y-RP20 + Mouse MX900 (Bluetooth)" }, - { "046d", "c704", "diNovo Wireless Desktop" }, - { "046d", "c705", "MX900 Bluetooth Wireless Hub (C-UJ16A)" }, - { "046d", "c707", "Bluetooth wireless hub" }, - { "046d", "c708", "Bluetooth wireless hub" }, - { "046d", "c709", "BT Mini-Receiver (HCI mode)" }, - { "046d", "c70a", "MX5000 Cordless Desktop" }, - { "046d", "c70b", "BT Mini-Receiver (HID proxy mode)" }, - { "046d", "c70c", "BT Mini-Receiver (HID proxy mode)" }, - { "046d", "c70d", "Bluetooth wireless hub" }, - { "046d", "c70e", "MX1000 Bluetooth Laser Mouse" }, - { "046d", "c70f", "Bluetooth wireless hub" }, - { "046d", "c712", "Bluetooth wireless hub" }, - { "046d", "c714", "diNovo Edge Keyboard" }, - { "046d", "c715", "Bluetooth wireless hub" }, - { "046d", "c71a", "Bluetooth wireless hub" }, - { "046d", "c71d", "Bluetooth wireless hub" }, - { "046d", "c71f", "diNovo Mini Wireless Keyboard" }, - { "046d", "c720", "Bluetooth wireless hub" }, - { "046d", "ca03", "MOMO Racing" }, - { "046d", "ca04", "Formula Vibration Feedback Wheel" }, - { "046d", "ca84", "Cordless Controller for Xbox" }, - { "046d", "ca88", "Thunderpad for Xbox" }, - { "046d", "ca8a", "Precision Vibration Feedback Wheel for Xbox" }, - { "046d", "caa3", "DriveFX Racing Wheel" }, - { "046d", "cab1", "Cordless Keyboard for Wii HID Receiver" }, - { "046d", "d001", "QuickCam Pro" }, - { "046d", "f301", "Controller" }, - { "046e", "0100", "Keyboard" }, - { "046e", "3001", "Mass Storage Device" }, - { "046e", "3002", "Mass Storage Device" }, - { "046e", "3003", "Mass Storage Device" }, - { "046e", "3005", "Mass Storage Device" }, - { "046e", "3008", "Mass Storage Device" }, - { "046e", "5250", "KeyMaestro Multimedia Keyboard" }, - { "046e", "5273", "KeyMaestro Multimedia Keyboard" }, - { "046e", "52e6", "Cordless Mouse" }, - { "046e", "5308", "KeyMaestro Keyboard" }, - { "046e", "5408", "KeyMaestro Multimedia Keyboard/Hub" }, - { "046e", "5500", "Portable Keyboard 86+9 keys (Model 6100C US)" }, - { "046e", "5550", "5 button optical mouse model M873U" }, - { "046e", "5720", "Smart Card Reader" }, - { "046e", "6782", "BTC 7932 mouse+keyboard" }, - { "0471", "0101", "DSS350 Digital Speaker System" }, - { "0471", "0104", "DSS330 Digital Speaker System [uda1321]" }, - { "0471", "0105", "UDA1321" }, - { "0471", "014f", "GoGear SA9200" }, - { "0471", "0160", "MP3 Player" }, - { "0471", "0161", "MP3 Player" }, - { "0471", "0163", "GoGear SA1100" }, - { "0471", "0164", "GoGear SA1110/02" }, - { "0471", "0165", "GoGear SA1330" }, - { "0471", "0201", "Hub" }, - { "0471", "0222", "Creative Nomad Jukebox" }, - { "0471", "0302", "PCA645VC Webcam [pwc]" }, - { "0471", "0303", "PCA646VC Webcam [pwc]" }, - { "0471", "0304", "Askey VC010 Webcam [pwc]" }, - { "0471", "0307", "PCVC675K Webcam [pwc]" }, - { "0471", "0308", "PCVC680K Webcam [pwc]" }, - { "0471", "030b", "PC VGA Camera (Vesta Fun)" }, - { "0471", "030c", "PCVC690K Webcam [pwc]" }, - { "0471", "0310", "PCVC730K Webcam [pwc]" }, - { "0471", "0311", "PCVC740K ToUcam Pro [pwc]" }, - { "0471", "0312", "PCVC750K Webcam [pwc]" }, - { "0471", "0314", "DMVC 1000K" }, - { "0471", "0316", "DMVC 2000K Video Capture" }, - { "0471", "0321", "FunCam" }, - { "0471", "0322", "DMVC1300K PC Camera" }, - { "0471", "0325", "SPC 200NC PC Camera" }, - { "0471", "0326", "SPC 300NC PC Camera" }, - { "0471", "0327", "Webcam SPC 6000 NC (Webcam w/ mic)" }, - { "0471", "0328", "SPC 700NC PC Camera" }, - { "0471", "0329", "SPC 900NC PC Camera / ORITE CCD Webcam(PC370R)" }, - { "0471", "032d", "SPC 210NC PC Camera" }, - { "0471", "032e", "SPC 315NC PC Camera" }, - { "0471", "0330", "SPC 710NC PC Camera" }, - { "0471", "0331", "SPC 1300NC PC Camera" }, - { "0471", "0332", "SPC 1000NC PC Camera" }, - { "0471", "0333", "SPC 620NC PC Camera" }, - { "0471", "0334", "SPC 520/525NC PC Camera" }, - { "0471", "0401", "Semiconductors CICT Keyboard" }, - { "0471", "0402", "PS/2 Mouse on Semiconductors CICT Keyboard" }, - { "0471", "0406", "15 inch Detachable Monitor" }, - { "0471", "0407", "10 inch Mobile Monitor" }, - { "0471", "0408", "SG3WA1/74 802.11b WLAN Adapter [Atmel AT76C503A]" }, - { "0471", "0471", "Digital Speaker System" }, - { "0471", "0601", "OVU1020 IR Dongle (Kbd+Mouse)" }, - { "0471", "0602", "ATI Remote Wonder II Input Device" }, - { "0471", "0603", "ATI Remote Wonder II Controller" }, - { "0471", "0608", "eHome Infrared Receiver" }, - { "0471", "060a", "TSU9600 Remote Control" }, - { "0471", "060c", "Consumer Infrared Transceiver (HP)" }, - { "0471", "060d", "Consumer Infrared Transceiver (SRM5100)" }, - { "0471", "060e", "RF Dongle" }, - { "0471", "060f", "Consumer Infrared Transceiver" }, - { "0471", "0613", "Infrared Transceiver" }, - { "0471", "0617", "IEEE802.15.4 RF Dongle" }, - { "0471", "0619", "TSU9400 Remote Control" }, - { "0471", "0666", "Hantek DDS-3005 Arbitrary Waveform Generator" }, - { "0471", "0700", "Semiconductors CICT Hub" }, - { "0471", "0701", "150P1 TFT Display" }, - { "0471", "0809", "AVNET Bluetooth Device" }, - { "0471", "0811", "JR24 CDRW" }, - { "0471", "0814", "DCCX38/P data cable" }, - { "0471", "0815", "eHome Infrared Receiver" }, - { "0471", "0844", "SA2111/02 1GB Flash Audio Player" }, - { "0471", "084a", "GoGear SA3125" }, - { "0471", "084e", "GoGear SA60xx (mtp)" }, - { "0471", "0888", "Hantek DDS-3005 Arbitrary Waveform Generator" }, - { "0471", "1103", "Digital Speaker System" }, - { "0471", "1120", "Creative Rhomba MP3 player" }, - { "0471", "1125", "Nike psa[128max Player" }, - { "0471", "1137", "HDD065 MP3 player" }, - { "0471", "1201", "Arima Bluetooth Device" }, - { "0471", "1230", "Wireless Adapter 11g" }, - { "0471", "1232", "SNU6500 Wireless Adapter" }, - { "0471", "1233", "Wireless Adapter Bootloader Download" }, - { "0471", "1236", "SNU5600 802.11bg" }, - { "0471", "1237", "TalkTalk SNU5630NS/05 802.11bg" }, - { "0471", "1552", "ISP 1581 Hi-Speed USB MPEG2 Encoder Reference Kit" }, - { "0471", "1801", "Diva MP3 player" }, - { "0471", "200a", "Wireless Network Adapter" }, - { "0471", "200f", "802.11n Wireless Adapter" }, - { "0471", "2021", "SDE3273FC/97 2.5\" SATA HDD Enclosure [INIC-1608L]" }, - { "0471", "2022", "GoGear SA52XX" }, - { "0471", "2034", "Webcam SPC530NC" }, - { "0471", "2036", "Webcam SPC1030NC" }, - { "0471", "203f", "TSU9200 Remote Control" }, - { "0471", "2046", "TSU9800 Remote Control" }, - { "0471", "204e", "GoGear RaGa (SA1942/02)" }, - { "0471", "205e", "TSU9300 Remote Control" }, - { "0471", "206c", "MCE IR Receiver - Spinel plusf0r ASUS" }, - { "0471", "2070", "GoGear Mix" }, - { "0471", "2076", "GoGear Aria" }, - { "0471", "2079", "GoGear Opus" }, - { "0471", "2088", "MCE IR Receiver with ALS- Spinel plus for ASUS" }, - { "0471", "209e", "PTA01 Wireless Adapter" }, - { "0471", "20b6", "GoGear Vibe" }, - { "0471", "20d0", "SPZ2000 Webcam [PixArt PAC7332]" }, - { "0471", "20e3", "GoGear Raga" }, - { "0471", "20e4", "GoGear ViBE 8GB" }, - { "0471", "2160", "Mio LINK Heart Rate Monitor" }, - { "0471", "21e0", "GoGEAR Raga" }, - { "0471", "262c", "SPC230NC Webcam" }, - { "0471", "2721", "PTA 317 TV Camera" }, - { "0471", "485d", "Senselock SenseIV v2.x" }, - { "0471", "df55", "LPCXpresso LPC-Link" }, - { "0472", "0065", "PFU-65 Keyboard [Chicony]" }, - { "0472", "b086", "Asus USB2.0 Webcam" }, - { "0472", "b091", "Webcam" }, - { "0474", "0110", "Digital Voice Recorder R200" }, - { "0474", "0217", "Xacti J2" }, - { "0474", "022f", "C5 Digital Media Camera (mass storage mode)" }, - { "0474", "0230", "C5 Digital Media Camera (PictBridge mode)" }, - { "0474", "0231", "C5 Digital Media Camera (PC control mode)" }, - { "0474", "0401", "Optical Drive" }, - { "0474", "0701", "SCP-4900 Cellphone" }, - { "0474", "071f", "Usb Com Port Enumerator" }, - { "0474", "0722", "W33SA Camera" }, - { "0475", "0100", "NEC Petiscan" }, - { "0475", "0103", "Eclipse 1200U/Episode" }, - { "0475", "0210", "Scorpio Ultra 3" }, - { "0478", "0001", "QuickCam" }, - { "0478", "0002", "QuickClip" }, - { "0478", "0003", "QuickCam Pro" }, - { "047a", "0004", "ScreenCoder UR7HCTS2-USB" }, - { "047b", "0001", "Keyboard" }, - { "047b", "0002", "Keyboard and Mouse" }, - { "047b", "0011", "SK-1688U Keyboard" }, - { "047b", "00f9", "SK-1789u Keyboard" }, - { "047b", "0101", "BlueTooth Keyboard and Mouse" }, - { "047b", "020b", "SK-3105 SmartCard Reader" }, - { "047b", "050e", "Internet Compact Keyboard" }, - { "047b", "1000", "Trust Office Scan USB 19200" }, - { "047b", "1002", "HP ScanJet 4300c Parallel Port" }, - { "047c", "ffff", "UPS Tower 500W LV" }, - { "047d", "1001", "Mouse*in*a*Box" }, - { "047d", "1002", "Expert Mouse Pro" }, - { "047d", "1003", "Orbit TrackBall" }, - { "047d", "1004", "MouseWorks" }, - { "047d", "1005", "TurboBall" }, - { "047d", "1006", "TurboRing" }, - { "047d", "1009", "Orbit TrackBall for Mac" }, - { "047d", "1012", "PocketMouse" }, - { "047d", "1013", "Mouse*in*a*Box Optical Pro" }, - { "047d", "1014", "Expert Mouse Pro Wireless" }, - { "047d", "1015", "Expert Mouse" }, - { "047d", "1016", "ADB/USB Orbit" }, - { "047d", "1018", "Studio Mouse" }, - { "047d", "101d", "Mouse*in*a*Box Optical Pro" }, - { "047d", "101e", "Studio Mouse Wireless" }, - { "047d", "101f", "PocketMouse Pro" }, - { "047d", "1020", "Expert Mouse Trackball" }, - { "047d", "1021", "Expert Mouse Wireless" }, - { "047d", "1022", "Orbit Optical" }, - { "047d", "1023", "Pocket Mouse Pro Wireless" }, - { "047d", "1024", "PocketMouse" }, - { "047d", "1025", "Mouse*in*a*Box Optical Elite Wireless" }, - { "047d", "1026", "Pocket Mouse Pro" }, - { "047d", "1027", "StudioMouse" }, - { "047d", "1028", "StudioMouse Wireless" }, - { "047d", "1029", "Mouse*in*a*Box Optical Elite" }, - { "047d", "102a", "Mouse*in*a*Box Optical" }, - { "047d", "102b", "PocketMouse" }, - { "047d", "102c", "Iridio" }, - { "047d", "102d", "Pilot Optical" }, - { "047d", "102e", "Pilot Optical Pro" }, - { "047d", "102f", "Pilot Optical Pro Wireless" }, - { "047d", "1042", "Ci25m Notebook Optical Mouse [Diamond Eye Precision]" }, - { "047d", "1043", "Ci65m Wireless Notebook Optical Mouse" }, - { "047d", "104a", "PilotMouse Mini Retractable" }, - { "047d", "105d", "PocketMouse Bluetooth" }, - { "047d", "105e", "Bluetooth EDR Dongle" }, - { "047d", "1061", "PocketMouse Grip" }, - { "047d", "1062", "PocketMouse Max" }, - { "047d", "1063", "PocketMouse Max Wireless" }, - { "047d", "1064", "PocketMouse 2.0 Wireless" }, - { "047d", "1065", "PocketMouse 2.0" }, - { "047d", "1066", "PocketMouse Max Glow" }, - { "047d", "1067", "ValueMouse" }, - { "047d", "1068", "ValueOpt White" }, - { "047d", "1069", "ValueOpt Black" }, - { "047d", "106a", "PilotMouse Laser Wireless Mini" }, - { "047d", "106b", "PilotMouse Laser - 3 Button" }, - { "047d", "106c", "PilotMouse Laser - Gaming" }, - { "047d", "106d", "PilotMouse Laser - Wired" }, - { "047d", "106e", "PilotMouse Micro Laser" }, - { "047d", "1070", "ValueOpt Travel" }, - { "047d", "1071", "ValueOpt RF TX" }, - { "047d", "1072", "PocketMouse Colour" }, - { "047d", "1073", "PilotMouse Laser - 6 Button" }, - { "047d", "1074", "PilotMouse Laser Wireless Mini" }, - { "047d", "1075", "SlimBlade Presenter Media Mouse" }, - { "047d", "1076", "SlimBlade Media Mouse" }, - { "047d", "1077", "SlimBlade Presenter Mouse" }, - { "047d", "1152", "Bluetooth EDR Dongle" }, - { "047d", "2002", "Optical Elite Wireless" }, - { "047d", "2010", "Wireless Presentation Remote" }, - { "047d", "2012", "Wireless Presenter with Laser Pointer" }, - { "047d", "2021", "PilotBoard Wireless" }, - { "047d", "2030", "PilotBoard Wireless" }, - { "047d", "2034", "SlimBlade Media Notebook Set" }, - { "047d", "2041", "SlimBlade Trackball" }, - { "047d", "2048", "Orbit Trackball with Scroll Ring" }, - { "047d", "4003", "Gravis Xterminator Digital Gamepad" }, - { "047d", "4005", "Gravis Eliminator GamePad Pro" }, - { "047d", "4006", "Gravis Eliminator AfterShock" }, - { "047d", "4007", "Gravis Xterminator Force" }, - { "047d", "4008", "Gravis Destroyer TiltPad" }, - { "047d", "5001", "Cabo I Camera" }, - { "047d", "5002", "VideoCam CABO II" }, - { "047d", "5003", "VideoCam" }, - { "047d", "8018", "Expert Wireless Trackball Mouse (K72359WW)" }, - { "047d", "8068", "Pro Fit Ergo Vertical Wireless Trackball" }, - { "047e", "0300", "ORiNOCO Card" }, - { "047e", "1001", "USS720 Parallel Port" }, - { "047e", "2892", "Systems Soft Modem" }, - { "047e", "bad1", "Lucent 56k Modem" }, - { "047e", "f101", "Atlas Modem" }, - { "047f", "0101", "Bulk Driver" }, - { "047f", "02ee", "BT600" }, - { "047f", "0301", "Bulk Driver" }, - { "047f", "0411", "Savi Office Base Station" }, - { "047f", "0ca1", "USB DSP v4 Audio Interface" }, - { "047f", "4254", "BUA-100 Bluetooth Adapter" }, - { "047f", "aa05", "DA45" }, - { "047f", "ac01", "Savi 7xx" }, - { "047f", "ad01", "GameCom 777 5.1 Headset" }, - { "047f", "af01", "DA80" }, - { "047f", "c008", "Audio 655 DSP" }, - { "047f", "c00e", "Blackwire C310 headset" }, - { "047f", "c03b", "HD1" }, - { "047f", "ca01", "Calisto 800 Series" }, - { "047f", "da60", "DA60" }, - { "0480", "0001", "InTouch Module" }, - { "0480", "0004", "InTouch Module" }, - { "0480", "0011", "InTouch Module" }, - { "0480", "0014", "InTouch Module" }, - { "0480", "0100", "Stor.E Slim USB 3.0" }, - { "0480", "0200", "External Disk" }, - { "0480", "0212", "Toshiba Canvio Connect II 500GB Portable Hard Drive" }, - { "0480", "0820", "Canvio Advance Disk" }, - { "0480", "0821", "Canvio Advance 2TB model DTC920" }, - { "0480", "0900", "MQ04UBF100" }, - { "0480", "a006", "External Disk 1.5TB" }, - { "0480", "a007", "External Disk USB 3.0" }, - { "0480", "a009", "Stor.E Basics" }, - { "0480", "a00d", "STOR.E BASICS 500GB" }, - { "0480", "a100", "Canvio Alu 2TB 2.5\" Black External Disk Model HDTH320EK3CA" }, - { "0480", "a102", "Canvio Alu 2TB 2.5\" Black External Disk Model HDTH320EK3CA" }, - { "0480", "a202", "Canvio Basics HDD" }, - { "0480", "a208", "Canvio Basics 2TB USB 3.0 Portable Hard Drive" }, - { "0480", "b001", "Stor.E Partner" }, - { "0480", "b207", "Canvio Ready" }, - { "0480", "d000", "External Disk 2TB Model DT01ABA200" }, - { "0480", "d010", "External Disk 3TB" }, - { "0480", "d011", "Canvio Desk" }, - { "0482", "000e", "FS-1020D Printer" }, - { "0482", "000f", "FS-1920 Mono Printer" }, - { "0482", "0015", "FS-1030D printer" }, - { "0482", "0100", "Finecam S3x" }, - { "0482", "0101", "Finecam S4" }, - { "0482", "0103", "Finecam S5" }, - { "0482", "0105", "Finecam L3" }, - { "0482", "0106", "Finecam" }, - { "0482", "0107", "Digital Camera Device" }, - { "0482", "0108", "Digital Camera Device" }, - { "0482", "0203", "AH-K3001V" }, - { "0482", "0204", "iBurst Terminal" }, - { "0482", "0408", "FS-1320D Printer" }, - { "0482", "0640", "ECOSYS M6026cdn" }, - { "0482", "069b", "ECOSYS M2635dn" }, - { "0482", "06b4", "ECOSYS M5526cdw" }, - { "0483", "0102", "Remote NDIS Network device with Android debug (ADB)" }, - { "0483", "0103", "Remote NDIS Network device" }, - { "0483", "0104", "MTP device with Android debug (ADB)" }, - { "0483", "0105", "MTP device" }, - { "0483", "0106", "PTP device with Android debug (ADB)" }, - { "0483", "0107", "PTP device" }, - { "0483", "0137", "BeWAN ADSL USB ST (blue or green)" }, - { "0483", "0138", "Unicorn II (ST70138B + MTC-20174TQ chipset)" }, - { "0483", "0adb", "Android Debug Bridge (ADB) device" }, - { "0483", "0afb", "Android Fastboot device" }, - { "0483", "1307", "Cytronix 6in1 Card Reader" }, - { "0483", "163d", "Cool Icam Digi-MP3" }, - { "0483", "2015", "TouchChip® Fingerprint Reader" }, - { "0483", "2016", "Fingerprint Reader" }, - { "0483", "2017", "Biometric Smart Card Reader" }, - { "0483", "2018", "BioSimKey" }, - { "0483", "2302", "Portable Flash Device (PFD)" }, - { "0483", "3744", "ST-LINK/V1" }, - { "0483", "3747", "ST Micro Connect Lite" }, - { "0483", "3748", "ST-LINK/V2" }, - { "0483", "374b", "ST-LINK/V2.1" }, - { "0483", "374d", "STLINK-V3 Loader" }, - { "0483", "374e", "STLINK-V3" }, - { "0483", "374f", "STLINK-V3" }, - { "0483", "3752", "ST-LINK/V2.1" }, - { "0483", "3753", "STLINK-V3" }, - { "0483", "4810", "ISDN adapter" }, - { "0483", "481d", "BT Digital Access adapter" }, - { "0483", "5000", "ST Micro/Ergenic ERG BT-002 Bluetooth Adapter" }, - { "0483", "5001", "ST Micro Bluetooth Device" }, - { "0483", "5710", "Joystick in FS Mode" }, - { "0483", "5720", "Mass Storage Device" }, - { "0483", "5721", "Interrupt Demo" }, - { "0483", "5722", "Bulk Demo" }, - { "0483", "5730", "Audio Speaker" }, - { "0483", "5731", "Microphone" }, - { "0483", "5740", "Virtual COM Port" }, - { "0483", "5750", "LED badge -- mini LED display -- 11x44" }, - { "0483", "7270", "ST Micro Serial Bridge" }, - { "0483", "7554", "56k SoftModem" }, - { "0483", "8213", "ThermaData Logger Cradle" }, - { "0483", "8259", "Probe" }, - { "0483", "91d1", "Sensor Hub" }, - { "0483", "a171", "ThermaData WiFi" }, - { "0483", "a2e0", "BMeasure instrument" }, - { "0483", "df11", "STM Device in DFU Mode" }, - { "0483", "ff10", "Swann ST56 Modem" }, - { "0486", "0185", "EeePC T91MT HID Touch Panel" }, - { "0489", "0502", "SmartMedia Card Reader Firmware Loader" }, - { "0489", "0503", "SmartMedia Card Reader" }, - { "0489", "d00c", "Rollei Compactline (Storage Mode)" }, - { "0489", "d00e", "Rollei Compactline (Video Mode)" }, - { "0489", "e000", "T-Com TC 300" }, - { "0489", "e003", "Pirelli DP-L10" }, - { "0489", "e00d", "Broadcom Bluetooth 2.1 Device" }, - { "0489", "e00f", "Foxconn T77H114 BCM2070 [Single-Chip Bluetooth 2.1 + EDR Adapter]" }, - { "0489", "e011", "Acer Bluetooth module" }, - { "0489", "e016", "Ubee PXU1900 WiMAX Adapter [Beceem BCSM250]" }, - { "0489", "e02c", "Atheros AR5BBU12 Bluetooth Device" }, - { "0489", "e032", "Broadcom BCM20702 Bluetooth" }, - { "0489", "e042", "Broadcom BCM20702 Bluetooth" }, - { "0489", "e04d", "Atheros AR3012 Bluetooth" }, - { "0489", "e055", "BCM43142A0 broadcom bluetooth" }, - { "048d", "1165", "IT1165 Flash Controller" }, - { "048d", "1172", "Flash Drive" }, - { "048d", "1234", "Chipsbank CBM2199 Flash Drive" }, - { "048d", "1336", "SD/MMC Cardreader" }, - { "048d", "1345", "Multi Cardreader" }, - { "048d", "8297", "IT8297 RGB LED Controller" }, - { "048d", "9006", "IT9135 BDA Afatech DVB-T HDTV Dongle" }, - { "048d", "9009", "Zolid HD DVD Maker" }, - { "048d", "9135", "Zolid Mini DVB-T Stick" }, - { "048d", "9306", "IT930x DVB stick" }, - { "048d", "9503", "ITE it9503 feature-limited DVB-T transmission chip [ccHDtv]" }, - { "048d", "9507", "ITE it9507 full featured DVB-T transmission chip [ccHDtv]" }, - { "048d", "9910", "IT9910 chipset based grabber" }, - { "048d", "ff59", "Hdmi-CEC Bridge" }, - { "0491", "0003", "Taxan Monitor Control" }, - { "0492", "0140", "MP3 player" }, - { "0492", "0141", "MP3 Player" }, - { "0497", "c001", "Camera Device" }, - { "0499", "1000", "UX256 MIDI I/F" }, - { "0499", "1001", "MU1000" }, - { "0499", "1002", "MU2000" }, - { "0499", "1003", "MU500" }, - { "0499", "1004", "UW500" }, - { "0499", "1005", "MOTIF6" }, - { "0499", "1006", "MOTIF7" }, - { "0499", "1007", "MOTIF8" }, - { "0499", "1008", "UX96 MIDI I/F" }, - { "0499", "1009", "UX16 MIDI I/F" }, - { "0499", "100a", "EOS BX" }, - { "0499", "100c", "UC-MX" }, - { "0499", "100d", "UC-KX" }, - { "0499", "100e", "S08" }, - { "0499", "100f", "CLP-150" }, - { "0499", "1010", "CLP-170" }, - { "0499", "1011", "P-250" }, - { "0499", "1012", "TYROS" }, - { "0499", "1013", "PF-500" }, - { "0499", "1014", "S90" }, - { "0499", "1015", "MOTIF-R" }, - { "0499", "1016", "MDP-5" }, - { "0499", "1017", "CVP-204" }, - { "0499", "1018", "CVP-206" }, - { "0499", "1019", "CVP-208" }, - { "0499", "101a", "CVP-210" }, - { "0499", "101b", "PSR-1100" }, - { "0499", "101c", "PSR-2100" }, - { "0499", "101d", "CLP-175" }, - { "0499", "101e", "PSR-K1" }, - { "0499", "101f", "EZ-J24" }, - { "0499", "1020", "EZ-250i" }, - { "0499", "1021", "MOTIF ES 6" }, - { "0499", "1022", "MOTIF ES 7" }, - { "0499", "1023", "MOTIF ES 8" }, - { "0499", "1024", "CVP-301" }, - { "0499", "1025", "CVP-303" }, - { "0499", "1026", "CVP-305" }, - { "0499", "1027", "CVP-307" }, - { "0499", "1028", "CVP-309" }, - { "0499", "1029", "CVP-309GP" }, - { "0499", "102a", "PSR-1500" }, - { "0499", "102b", "PSR-3000" }, - { "0499", "102e", "ELS-01/01C" }, - { "0499", "1030", "PSR-295/293" }, - { "0499", "1031", "DGX-205/203" }, - { "0499", "1032", "DGX-305" }, - { "0499", "1033", "DGX-505" }, - { "0499", "1037", "PSR-E403" }, - { "0499", "103c", "MOTIF-RACK ES" }, - { "0499", "1054", "S90XS Keyboard/Music Synthesizer" }, - { "0499", "160f", "P-105" }, - { "0499", "1613", "Clavinova CLP535" }, - { "0499", "1617", "PSR-E353 digital keyboard" }, - { "0499", "1704", "Steinberg UR44" }, - { "0499", "2000", "DGP-7" }, - { "0499", "2001", "DGP-5" }, - { "0499", "3001", "YST-MS55D USB Speaker" }, - { "0499", "3003", "YST-M45D USB Speaker" }, - { "0499", "4000", "NetVolante RTA54i Broadband&ISDN Router" }, - { "0499", "4001", "NetVolante RTW65b Broadband Wireless Router" }, - { "0499", "4002", "NetVolante RTW65i Broadband&ISDN Wireless Router" }, - { "0499", "4004", "NetVolante RTA55i Broadband VoIP Router" }, - { "0499", "5000", "CS1D" }, - { "0499", "5001", "DSP1D" }, - { "0499", "5002", "DME32" }, - { "0499", "5003", "DM2000" }, - { "0499", "5004", "02R96" }, - { "0499", "5005", "ACU16-C" }, - { "0499", "5006", "NHB32-C" }, - { "0499", "5007", "DM1000" }, - { "0499", "5008", "01V96" }, - { "0499", "5009", "SPX2000" }, - { "0499", "500a", "PM5D" }, - { "0499", "500b", "DME64N" }, - { "0499", "500c", "DME24N" }, - { "0499", "6001", "CRW2200UX Lightspeed 2 External CD-RW Drive" }, - { "0499", "7000", "DTX" }, - { "0499", "7010", "UB99" }, - { "049c", "0002", "Keyboard (Unknown?)" }, - { "049f", "0002", "InkJet Color Printer" }, - { "049f", "0003", "iPAQ PocketPC" }, - { "049f", "000e", "Internet Keyboard" }, - { "049f", "0012", "InkJet Color Printer" }, - { "049f", "0018", "PA-1/PA-2 MP3 Player" }, - { "049f", "0019", "InkJet Color Printer" }, - { "049f", "001a", "S4 100 Scanner" }, - { "049f", "001e", "IJ650 Inkjet Printer" }, - { "049f", "001f", "WL215 Adapter" }, - { "049f", "0021", "S200 Scanner" }, - { "049f", "0027", "Bluetooth Multiport Module by Compaq" }, - { "049f", "002a", "1400P Inkjet Printer" }, - { "049f", "002b", "A3000" }, - { "049f", "002c", "Lexmark X125" }, - { "049f", "0032", "802.11b Adapter [ipaq h5400]" }, - { "049f", "0033", "Wireless LAN MultiPort W100 [Intersil PRISM 2.5]" }, - { "049f", "0036", "Bluetooth Multiport Module" }, - { "049f", "0051", "KU-0133 Easy Access Interner Keyboard" }, - { "049f", "0076", "Wireless LAN MultiPort W200" }, - { "049f", "0080", "GPRS Multiport" }, - { "049f", "0086", "Bluetooth Device" }, - { "049f", "504a", "Personal Jukebox PJB100" }, - { "049f", "505a", "Linux-USB \"CDC Subset\" Device, or Itsy (experimental)" }, - { "049f", "8511", "iPAQ Networking 10/100 Ethernet [pegasus2]" }, - { "04a1", "fff0", "Telex Composite Device" }, - { "04a4", "0004", "DVD-CAM DZ-MV100A Camcorder" }, - { "04a4", "001e", "DVDCAM USB HS Interface" }, - { "04a5", "0001", "Keyboard" }, - { "04a5", "0002", "API Ergo K/B" }, - { "04a5", "0003", "API Generic K/B Mouse" }, - { "04a5", "12a6", "AcerScan C310U" }, - { "04a5", "1a20", "Prisa 310U" }, - { "04a5", "1a2a", "Prisa 620U" }, - { "04a5", "2022", "Prisa 320U/340U" }, - { "04a5", "2040", "Prisa 620UT" }, - { "04a5", "205e", "ScanPrisa 640BU" }, - { "04a5", "2060", "Prisa 620U+/640U" }, - { "04a5", "207e", "Prisa 640BU" }, - { "04a5", "209e", "ScanPrisa 640BT" }, - { "04a5", "20ae", "S2W 3000U" }, - { "04a5", "20b0", "S2W 3300U/4300U" }, - { "04a5", "20be", "Prisa 640BT" }, - { "04a5", "20c0", "Prisa 1240UT" }, - { "04a5", "20de", "S2W 4300U+" }, - { "04a5", "20f8", "Benq 5000" }, - { "04a5", "20fc", "Benq 5000" }, - { "04a5", "20fe", "SW2 5300U" }, - { "04a5", "2137", "Benq 5150/5250" }, - { "04a5", "2202", "Benq 7400UT" }, - { "04a5", "2311", "Benq 5560" }, - { "04a5", "3003", "Benq Webcam" }, - { "04a5", "3008", "Benq 1500" }, - { "04a5", "300a", "Benq 3410" }, - { "04a5", "300c", "Benq 1016" }, - { "04a5", "3019", "Benq DC C40" }, - { "04a5", "4000", "P30 Composite Device" }, - { "04a5", "4013", "BenQ-Siemens EF82/SL91" }, - { "04a5", "4044", "BenQ-Siemens SF71" }, - { "04a5", "4045", "BenQ-Siemens E81" }, - { "04a5", "4048", "BenQ M7" }, - { "04a5", "6001", "Mass Storage Device" }, - { "04a5", "6002", "Mass Storage Device" }, - { "04a5", "6003", "ATA/ATAPI Adapter" }, - { "04a5", "6004", "Mass Storage Device" }, - { "04a5", "6005", "Mass Storage Device" }, - { "04a5", "6006", "Mass Storage Device" }, - { "04a5", "6007", "Mass Storage Device" }, - { "04a5", "6008", "Mass Storage Device" }, - { "04a5", "6009", "Mass Storage Device" }, - { "04a5", "600a", "Mass Storage Device" }, - { "04a5", "600b", "Mass Storage Device" }, - { "04a5", "600c", "Mass Storage Device" }, - { "04a5", "600d", "Mass Storage Device" }, - { "04a5", "600e", "Mass Storage Device" }, - { "04a5", "600f", "Mass Storage Device" }, - { "04a5", "6010", "Mass Storage Device" }, - { "04a5", "6011", "Mass Storage Device" }, - { "04a5", "6012", "Mass Storage Device" }, - { "04a5", "6013", "Mass Storage Device" }, - { "04a5", "6014", "Mass Storage Device" }, - { "04a5", "6015", "Mass Storage Device" }, - { "04a5", "6125", "MP3 Player" }, - { "04a5", "6180", "MP3 Player" }, - { "04a5", "6200", "MP3 Player" }, - { "04a5", "7500", "Hi-Speed Mass Storage Device" }, - { "04a5", "8001", "BenQ ZOWIE Gaming Mouse" }, - { "04a5", "9000", "AWL300 Wireless Adapter" }, - { "04a5", "9001", "AWL400 Wireless Adapter" }, - { "04a5", "9213", "Kbd Hub" }, - { "04a6", "00b9", "Audio" }, - { "04a6", "0180", "Hub Type P" }, - { "04a6", "0181", "HID Monitor Controls" }, - { "04a7", "0100", "StrobePro" }, - { "04a7", "0101", "Strobe Pro Scanner (1.01)" }, - { "04a7", "0102", "StrobePro Scanner" }, - { "04a7", "0211", "OneTouch 7600 Scanner" }, - { "04a7", "0221", "OneTouch 5300 Scanner" }, - { "04a7", "0223", "OneTouch 8200" }, - { "04a7", "0224", "OneTouch 4800 USB/Microtek Scanport 3000" }, - { "04a7", "0225", "VistaScan Astra 3600(ENG)" }, - { "04a7", "0226", "OneTouch 5300 USB" }, - { "04a7", "0229", "OneTouch 7100" }, - { "04a7", "022a", "OneTouch 6600" }, - { "04a7", "022c", "OneTouch 9000/9020" }, - { "04a7", "0231", "6100 Scanner" }, - { "04a7", "0311", "6200 EPP/USB Scanner" }, - { "04a7", "0321", "OneTouch 8100 EPP/USB Scanner" }, - { "04a7", "0331", "OneTouch 8600 EPP/USB Scanner" }, - { "04a7", "0341", "6400" }, - { "04a7", "0361", "VistaScan Astra 3600(ENG)" }, - { "04a7", "0362", "OneTouch 9320" }, - { "04a7", "0371", "OneTouch 8700/8920" }, - { "04a7", "0380", "OneTouch 7700" }, - { "04a7", "0382", "Photo Port 7700" }, - { "04a7", "0390", "9650" }, - { "04a7", "03a0", "Xerox 4800 One Touch" }, - { "04a7", "0410", "OneTouch Pro 8800/8820" }, - { "04a7", "0421", "9450 USB" }, - { "04a7", "0423", "9750 Scanner" }, - { "04a7", "0424", "Strobe XP 450" }, - { "04a7", "0425", "Strobe XP 100" }, - { "04a7", "0426", "Strobe XP 200" }, - { "04a7", "0427", "Strobe XP 100" }, - { "04a7", "0444", "OneTouch 7300" }, - { "04a7", "0445", "CardReader 100" }, - { "04a7", "0446", "Xerox DocuMate 510" }, - { "04a7", "0447", "XEROX DocuMate 520" }, - { "04a7", "0448", "XEROX DocuMate 250" }, - { "04a7", "0449", "Xerox DocuMate 252" }, - { "04a7", "044a", "Xerox 6400" }, - { "04a7", "044c", "Xerox DocuMate 262" }, - { "04a7", "0474", "Strobe XP 300" }, - { "04a7", "0475", "Xerox DocuMate 272" }, - { "04a7", "0478", "Strobe XP 220" }, - { "04a7", "0479", "Strobe XP 470" }, - { "04a7", "047a", "9450" }, - { "04a7", "047b", "9650" }, - { "04a7", "047d", "9420" }, - { "04a7", "0480", "9520" }, - { "04a7", "048f", "Strobe XP 470" }, - { "04a7", "0491", "Strobe XP 450" }, - { "04a7", "0493", "9750" }, - { "04a7", "0494", "Strobe XP 120" }, - { "04a7", "0497", "Patriot 430" }, - { "04a7", "0498", "Patriot 680" }, - { "04a7", "0499", "Patriot 780" }, - { "04a7", "049b", "Strobe XP 100" }, - { "04a7", "04a0", "7400" }, - { "04a7", "04ac", "Xerox Travel Scanner 100" }, - { "04a7", "04bb", "strobe 400 scanner" }, - { "04a7", "04cd", "Xerox Travel Scanner 150" }, - { "04a7", "04ee", "Duplex Combo Scanner" }, - { "04a8", "0101", "Hub" }, - { "04a8", "0303", "Peripheral Switch" }, - { "04a8", "0404", "Peripheral Switch" }, - { "04a9", "1005", "BJ Printer Hub" }, - { "04a9", "1035", "PD Printer Storage" }, - { "04a9", "1050", "BJC-8200" }, - { "04a9", "1051", "BJC-3000 Color Printer" }, - { "04a9", "1052", "BJC-6100" }, - { "04a9", "1053", "BJC-6200" }, - { "04a9", "1054", "BJC-6500" }, - { "04a9", "1055", "BJC-85" }, - { "04a9", "1056", "BJC-2110 Color Printer" }, - { "04a9", "1057", "LR1" }, - { "04a9", "105a", "BJC-55" }, - { "04a9", "105b", "S600 Printer" }, - { "04a9", "105c", "S400" }, - { "04a9", "105d", "S450 Printer" }, - { "04a9", "105e", "S800" }, - { "04a9", "1062", "S500 Printer" }, - { "04a9", "1063", "S4500" }, - { "04a9", "1064", "S300 Printer" }, - { "04a9", "1065", "S100" }, - { "04a9", "1066", "S630" }, - { "04a9", "1067", "S900" }, - { "04a9", "1068", "S9000" }, - { "04a9", "1069", "S820" }, - { "04a9", "106a", "S200 Printer" }, - { "04a9", "106b", "S520 Printer" }, - { "04a9", "106d", "S750 Printer" }, - { "04a9", "106e", "S820D" }, - { "04a9", "1070", "S530D" }, - { "04a9", "1072", "I850 Printer" }, - { "04a9", "1073", "I550 Printer" }, - { "04a9", "1074", "S330 Printer" }, - { "04a9", "1076", "i70" }, - { "04a9", "1077", "i950" }, - { "04a9", "107a", "S830D" }, - { "04a9", "107b", "i320" }, - { "04a9", "107c", "i470D" }, - { "04a9", "107d", "i9100" }, - { "04a9", "107e", "i450" }, - { "04a9", "107f", "i860" }, - { "04a9", "1082", "i350" }, - { "04a9", "1084", "i250" }, - { "04a9", "1085", "i255" }, - { "04a9", "1086", "i560" }, - { "04a9", "1088", "i965" }, - { "04a9", "108a", "i455" }, - { "04a9", "108b", "i900D" }, - { "04a9", "108c", "i475D" }, - { "04a9", "108d", "PIXMA iP2000" }, - { "04a9", "108f", "i80" }, - { "04a9", "1090", "i9900 Photo Printer" }, - { "04a9", "1091", "PIXMA iP1500" }, - { "04a9", "1093", "PIXMA iP4000" }, - { "04a9", "1094", "PIXMA iP3000x Printer" }, - { "04a9", "1095", "PIXMA iP6000D" }, - { "04a9", "1097", "PIXMA iP5000" }, - { "04a9", "1098", "PIXMA iP1000" }, - { "04a9", "1099", "PIXMA iP8500" }, - { "04a9", "109c", "PIXMA iP4000R" }, - { "04a9", "109d", "iP90" }, - { "04a9", "10a0", "PIXMA iP1600 Printer" }, - { "04a9", "10a2", "iP4200" }, - { "04a9", "10a4", "iP5200R" }, - { "04a9", "10a5", "iP5200" }, - { "04a9", "10a7", "iP6210D" }, - { "04a9", "10a8", "iP6220D" }, - { "04a9", "10a9", "iP6600D" }, - { "04a9", "10b6", "PIXMA iP4300 Printer" }, - { "04a9", "10b7", "PIXMA iP5300 Printer" }, - { "04a9", "10c2", "PIXMA iP1800 Printer" }, - { "04a9", "10c4", "Pixma iP4500 Printer" }, - { "04a9", "10c9", "PIXMA iP4600 Printer" }, - { "04a9", "10ca", "PIXMA iP3600 Printer" }, - { "04a9", "10e3", "PIXMA iX6850 Printer" }, - { "04a9", "12fe", "Printer in service mode" }, - { "04a9", "1404", "W6400PG" }, - { "04a9", "1405", "W8400PG" }, - { "04a9", "150f", "BIJ2350 PCL" }, - { "04a9", "1510", "BIJ1350 PCL" }, - { "04a9", "1512", "BIJ1350D PCL" }, - { "04a9", "1601", "DR-2080C Scanner" }, - { "04a9", "1607", "DR-6080 Scanner" }, - { "04a9", "1608", "DR-2580C Scanner" }, - { "04a9", "1609", "DR-3080CII" }, - { "04a9", "160a", "DR-2050C Scanner" }, - { "04a9", "1700", "PIXMA MP110 Scanner" }, - { "04a9", "1701", "PIXMA MP130 Scanner" }, - { "04a9", "1702", "MP410 Composite" }, - { "04a9", "1703", "MP430 Composite" }, - { "04a9", "1704", "MP330 Composite" }, - { "04a9", "1706", "PIXMA MP750 Scanner" }, - { "04a9", "1707", "PIXMA MP780/MP790" }, - { "04a9", "1708", "PIXMA MP760/MP770" }, - { "04a9", "1709", "PIXMA MP150 Scanner" }, - { "04a9", "170a", "PIXMA MP170 Scanner" }, - { "04a9", "170b", "PIXMA MP450 Scanner" }, - { "04a9", "170c", "PIXMA MP500 Scanner" }, - { "04a9", "170d", "PIXMA MP800 Scanner" }, - { "04a9", "170e", "PIXMA MP800R" }, - { "04a9", "1710", "MP950" }, - { "04a9", "1712", "PIXMA MP530" }, - { "04a9", "1713", "PIXMA MP830 Scanner" }, - { "04a9", "1714", "MP160" }, - { "04a9", "1715", "PIXMA MP180" }, - { "04a9", "1716", "PIXMA MP460" }, - { "04a9", "1717", "PIXMA MP510" }, - { "04a9", "1718", "PIXMA MP600" }, - { "04a9", "1719", "PIXMA MP600R" }, - { "04a9", "171a", "PIXMA MP810" }, - { "04a9", "171b", "PIXMA MP960" }, - { "04a9", "171c", "PIXMA MX7600" }, - { "04a9", "1721", "PIXMA MP210" }, - { "04a9", "1722", "PIXMA MP220" }, - { "04a9", "1723", "PIXMA MP470" }, - { "04a9", "1724", "PIXMA MP520 series" }, - { "04a9", "1725", "PIXMA MP610" }, - { "04a9", "1726", "PIXMA MP970" }, - { "04a9", "1727", "PIXMA MX300" }, - { "04a9", "1728", "PIXMA MX310 series" }, - { "04a9", "1729", "PIXMA MX700" }, - { "04a9", "172b", "MP140 ser" }, - { "04a9", "172c", "PIXMA MX850" }, - { "04a9", "172d", "PIXMA MP980" }, - { "04a9", "172e", "PIXMA MP630" }, - { "04a9", "172f", "PIXMA MP620" }, - { "04a9", "1730", "PIXMA MP540" }, - { "04a9", "1731", "PIXMA MP480" }, - { "04a9", "1732", "PIXMA MP240" }, - { "04a9", "1733", "PIXMA MP260" }, - { "04a9", "1734", "PIXMA MP190" }, - { "04a9", "1735", "PIXMA MX860" }, - { "04a9", "1736", "PIXMA MX320 series" }, - { "04a9", "1737", "PIXMA MX330" }, - { "04a9", "173a", "PIXMA MP250" }, - { "04a9", "173b", "PIXMA MP270 All-In-One Printer" }, - { "04a9", "173c", "PIXMA MP490" }, - { "04a9", "173d", "PIXMA MP550" }, - { "04a9", "173e", "PIXMA MP560" }, - { "04a9", "173f", "PIXMA MP640" }, - { "04a9", "1740", "PIXMA MP990" }, - { "04a9", "1741", "PIXMA MX340" }, - { "04a9", "1742", "PIXMA MX350" }, - { "04a9", "1743", "PIXMA MX870" }, - { "04a9", "1746", "PIXMA MP280" }, - { "04a9", "1747", "PIXMA MP495" }, - { "04a9", "1748", "PIXMA MG5100 Series" }, - { "04a9", "1749", "PIXMA MG5200 Series" }, - { "04a9", "174a", "PIXMA MG6100 Series" }, - { "04a9", "174b", "PIXMA MG8100 Series" }, - { "04a9", "174d", "PIXMA MX360" }, - { "04a9", "174e", "PIXMA MX410" }, - { "04a9", "174f", "PIXMA MX420" }, - { "04a9", "1750", "PIXMA MX880 Series" }, - { "04a9", "1752", "PIXMA MG3100 Series" }, - { "04a9", "1753", "PIXMA MG4100 Series" }, - { "04a9", "1754", "PIXMA MG5300 Series" }, - { "04a9", "1755", "PIXMA MG6200 Series" }, - { "04a9", "1756", "PIXMA MG8200 Series" }, - { "04a9", "1757", "PIXMA MP493" }, - { "04a9", "1759", "PIXMA MX370 Series" }, - { "04a9", "175b", "PIXMA MX430 Series" }, - { "04a9", "175c", "PIXMA MX510 Series" }, - { "04a9", "175d", "PIXMA MX710 Series" }, - { "04a9", "175e", "PIXMA MX890 Series" }, - { "04a9", "175f", "PIXMA MP230" }, - { "04a9", "1762", "PIXMA MG3200 Series" }, - { "04a9", "1763", "PIXMA MG4200 Series" }, - { "04a9", "1764", "PIXMA MG5400 Series" }, - { "04a9", "1765", "PIXMA MG6300 Series" }, - { "04a9", "1766", "PIXMA MX390 Series" }, - { "04a9", "1768", "PIXMA MX450 Series" }, - { "04a9", "1769", "PIXMA MX520 Series" }, - { "04a9", "176a", "PIXMA MX720 Series" }, - { "04a9", "176b", "PIXMA MX920 Series" }, - { "04a9", "176d", "PIXMA MG2500 Series" }, - { "04a9", "176e", "PIXMA MG3500 Series" }, - { "04a9", "176f", "PIXMA MG6500 Series" }, - { "04a9", "1770", "PIXMA MG6400 Series" }, - { "04a9", "1771", "PIXMA MG5500 Series" }, - { "04a9", "1772", "PIXMA MG7100 Series" }, - { "04a9", "1774", "PIXMA MX470 Series" }, - { "04a9", "1775", "PIXMA MX530 Series" }, - { "04a9", "177c", "PIXMA MG7500 Series" }, - { "04a9", "177e", "PIXMA MG6600 Series" }, - { "04a9", "177f", "PIXMA MG5600 Series" }, - { "04a9", "1780", "PIXMA MG2900 Series" }, - { "04a9", "1787", "PIXMA MX490 Series" }, - { "04a9", "178a", "PIXMA MG3600 Series" }, - { "04a9", "178d", "PIXMA MG6853" }, - { "04a9", "180b", "PIXMA MG3000 series" }, - { "04a9", "1856", "PIXMA TS6250" }, - { "04a9", "1900", "CanoScan LiDE 90" }, - { "04a9", "1901", "CanoScan 8800F" }, - { "04a9", "1904", "CanoScan LiDE 100" }, - { "04a9", "1905", "CanoScan LiDE 200" }, - { "04a9", "1906", "CanoScan 5600F" }, - { "04a9", "1907", "CanoScan LiDE 700F" }, - { "04a9", "1909", "CanoScan LiDE 110" }, - { "04a9", "190a", "CanoScan LiDE 210" }, - { "04a9", "190d", "CanoScan 9000F Mark II" }, - { "04a9", "190e", "CanoScan LiDE 120" }, - { "04a9", "190f", "CanoScan LiDE 220" }, - { "04a9", "1913", "CanoScan LiDE 300" }, - { "04a9", "2200", "CanoScan LiDE 25" }, - { "04a9", "2201", "CanoScan FB320U" }, - { "04a9", "2202", "CanoScan FB620U" }, - { "04a9", "2204", "CanoScan FB630U" }, - { "04a9", "2205", "CanoScan FB1210U" }, - { "04a9", "2206", "CanoScan N650U/N656U" }, - { "04a9", "2207", "CanoScan 1220U" }, - { "04a9", "2208", "CanoScan D660U" }, - { "04a9", "220a", "CanoScan D2400UF" }, - { "04a9", "220b", "CanoScan D646U" }, - { "04a9", "220c", "CanoScan D1250U2" }, - { "04a9", "220d", "CanoScan N670U/N676U/LiDE 20" }, - { "04a9", "220e", "CanoScan N1240U/LiDE 30" }, - { "04a9", "220f", "CanoScan 8000F" }, - { "04a9", "2210", "CanoScan 9900F" }, - { "04a9", "2212", "CanoScan 5000F" }, - { "04a9", "2213", "CanoScan LiDE 50/LiDE 35/LiDE 40" }, - { "04a9", "2214", "CanoScan LiDE 80" }, - { "04a9", "2215", "CanoScan 3000/3000F/3000ex" }, - { "04a9", "2216", "CanoScan 3200F" }, - { "04a9", "2217", "CanoScan 5200F" }, - { "04a9", "2219", "CanoScan 9950F" }, - { "04a9", "221b", "CanoScan 4200F" }, - { "04a9", "221c", "CanoScan LiDE 60" }, - { "04a9", "221e", "CanoScan 8400F" }, - { "04a9", "221f", "CanoScan LiDE 500F" }, - { "04a9", "2220", "CanoScan LIDE 25" }, - { "04a9", "2224", "CanoScan LiDE 600F" }, - { "04a9", "2225", "CanoScan LiDE 70" }, - { "04a9", "2228", "CanoScan 4400F" }, - { "04a9", "2229", "CanoScan 8600F" }, - { "04a9", "2602", "MultiPASS C555" }, - { "04a9", "2603", "MultiPASS C755" }, - { "04a9", "260a", "LBP810" }, - { "04a9", "260e", "LBP-2000" }, - { "04a9", "2610", "MPC600F" }, - { "04a9", "2611", "SmartBase MPC400" }, - { "04a9", "2612", "MultiPASS C855" }, - { "04a9", "2617", "LBP1210" }, - { "04a9", "261a", "iR1600" }, - { "04a9", "261b", "iR1610" }, - { "04a9", "261c", "iC2300" }, - { "04a9", "261f", "MPC200 Printer" }, - { "04a9", "2621", "iR2000" }, - { "04a9", "2622", "iR2010" }, - { "04a9", "2623", "FAX-B180C" }, - { "04a9", "2629", "FAXPHONE L75" }, - { "04a9", "262b", "LaserShot LBP-1120 Printer" }, - { "04a9", "262c", "imageCLASS D300" }, - { "04a9", "262d", "iR C3200" }, - { "04a9", "262f", "PIXMA MP730" }, - { "04a9", "2630", "PIXMA MP700" }, - { "04a9", "2631", "LASER CLASS 700" }, - { "04a9", "2632", "FAX-L2000" }, - { "04a9", "2633", "LASERCLASS 500" }, - { "04a9", "2634", "PC-D300/FAX-L400/ICD300" }, - { "04a9", "2635", "MPC190" }, - { "04a9", "2636", "LBP3200" }, - { "04a9", "2637", "iR C6800" }, - { "04a9", "2638", "iR C3100" }, - { "04a9", "263c", "PIXMA MP360" }, - { "04a9", "263d", "PIXMA MP370" }, - { "04a9", "263e", "PIXMA MP390" }, - { "04a9", "263f", "PIXMA MP375R" }, - { "04a9", "2646", "MF5530 Scanner Device V1.9.1" }, - { "04a9", "2647", "MF5550 Composite" }, - { "04a9", "264c", "PIXMA MP740" }, - { "04a9", "264d", "PIXMA MP710" }, - { "04a9", "264e", "MF5630" }, - { "04a9", "264f", "MF5650 (FAX)" }, - { "04a9", "2650", "iR 6800C EUR" }, - { "04a9", "2651", "iR 3100C EUR" }, - { "04a9", "2654", "LBP3600" }, - { "04a9", "2655", "FP-L170/MF350/L380/L398" }, - { "04a9", "2656", "iR1510-1670 CAPT Printer" }, - { "04a9", "2657", "LBP3210" }, - { "04a9", "2659", "MF8100" }, - { "04a9", "265b", "CAPT Printer" }, - { "04a9", "265c", "iR C3220" }, - { "04a9", "265d", "MF5730" }, - { "04a9", "265e", "MF5750" }, - { "04a9", "265f", "MF5770" }, - { "04a9", "2660", "MF3110" }, - { "04a9", "2663", "iR3570/iR4570" }, - { "04a9", "2664", "iR2270/iR2870" }, - { "04a9", "2665", "iR C2620" }, - { "04a9", "2666", "iR C5800" }, - { "04a9", "2667", "iR85PLUS" }, - { "04a9", "2669", "iR105PLUS" }, - { "04a9", "266a", "LBP3000" }, - { "04a9", "266b", "iR8070" }, - { "04a9", "266c", "iR9070" }, - { "04a9", "266d", "iR 5800C EUR" }, - { "04a9", "266e", "CAPT Device" }, - { "04a9", "266f", "iR2230" }, - { "04a9", "2670", "iR3530" }, - { "04a9", "2671", "iR5570/iR6570" }, - { "04a9", "2672", "iR C3170" }, - { "04a9", "2673", "iR 3170C EUR" }, - { "04a9", "2674", "FAX-L120" }, - { "04a9", "2675", "iR2830" }, - { "04a9", "2676", "LBP2900" }, - { "04a9", "2677", "iR C2570" }, - { "04a9", "2678", "iR 2570C EUR" }, - { "04a9", "2679", "LBP5000" }, - { "04a9", "267a", "iR2016" }, - { "04a9", "267b", "iR2020" }, - { "04a9", "267d", "MF7100 series" }, - { "04a9", "267e", "LBP3300" }, - { "04a9", "2684", "MF3200 series" }, - { "04a9", "2686", "MF6500 series" }, - { "04a9", "2687", "iR4530" }, - { "04a9", "2688", "LBP3460" }, - { "04a9", "2689", "FAX-L180/L380S/L398S" }, - { "04a9", "268a", "LC310/L390/L408S" }, - { "04a9", "268b", "LBP3500" }, - { "04a9", "268c", "iR C6870" }, - { "04a9", "268d", "iR 6870C EUR" }, - { "04a9", "268e", "iR C5870" }, - { "04a9", "268f", "iR 5870C EUR" }, - { "04a9", "2691", "iR7105" }, - { "04a9", "26a1", "LBP5300" }, - { "04a9", "26a3", "MF4100 series" }, - { "04a9", "26a4", "LBP5100" }, - { "04a9", "26b0", "MF4600 series" }, - { "04a9", "26b4", "MF4010 series" }, - { "04a9", "26b5", "MF4200 series" }, - { "04a9", "26b6", "FAX-L140/L130" }, - { "04a9", "26b9", "LBP3310" }, - { "04a9", "26ba", "LBP5050" }, - { "04a9", "26da", "LBP3010/LBP3018/LBP3050" }, - { "04a9", "26db", "LBP3100/LBP3108/LBP3150" }, - { "04a9", "26e6", "iR1024" }, - { "04a9", "26ea", "LBP9100C" }, - { "04a9", "26ee", "MF4320-4350" }, - { "04a9", "26f1", "LBP7200C" }, - { "04a9", "26ff", "LBP6300" }, - { "04a9", "271a", "LBP6000" }, - { "04a9", "271b", "LBP6200" }, - { "04a9", "271c", "LBP7010C/7018C" }, - { "04a9", "2736", "I-SENSYS MF4550d" }, - { "04a9", "2737", "MF4410" }, - { "04a9", "2742", "imageRUNNER1133 series" }, - { "04a9", "2771", "LBP6020" }, - { "04a9", "2796", "LBP6230/6240" }, - { "04a9", "3041", "PowerShot S10" }, - { "04a9", "3042", "CanoScan FS4000US Film Scanner" }, - { "04a9", "3043", "PowerShot S20" }, - { "04a9", "3044", "EOS D30" }, - { "04a9", "3045", "PowerShot S100" }, - { "04a9", "3046", "IXY Digital" }, - { "04a9", "3047", "Digital IXUS" }, - { "04a9", "3048", "PowerShot G1" }, - { "04a9", "3049", "PowerShot Pro90 IS" }, - { "04a9", "304a", "CP-10" }, - { "04a9", "304b", "IXY Digital 300" }, - { "04a9", "304c", "PowerShot S300" }, - { "04a9", "304d", "Digital IXUS 300" }, - { "04a9", "304e", "PowerShot A20" }, - { "04a9", "304f", "PowerShot A10" }, - { "04a9", "3050", "PowerShot unknown 1" }, - { "04a9", "3051", "PowerShot S110" }, - { "04a9", "3052", "Digital IXUS V" }, - { "04a9", "3055", "PowerShot G2" }, - { "04a9", "3056", "PowerShot S40" }, - { "04a9", "3057", "PowerShot S30" }, - { "04a9", "3058", "PowerShot A40" }, - { "04a9", "3059", "PowerShot A30" }, - { "04a9", "305b", "ZR45MC Digital Camcorder" }, - { "04a9", "305c", "PowerShot unknown 2" }, - { "04a9", "3060", "EOS D60" }, - { "04a9", "3061", "PowerShot A100" }, - { "04a9", "3062", "PowerShot A200" }, - { "04a9", "3063", "CP-100" }, - { "04a9", "3065", "PowerShot S200" }, - { "04a9", "3066", "Digital IXUS 330" }, - { "04a9", "3067", "MV550i Digital Video Camera" }, - { "04a9", "3069", "PowerShot G3" }, - { "04a9", "306a", "Digital unknown 3" }, - { "04a9", "306b", "MVX2i Digital Video Camera" }, - { "04a9", "306c", "PowerShot S45" }, - { "04a9", "306d", "PowerShot S45 PtP Mode" }, - { "04a9", "306e", "PowerShot G3 (normal mode)" }, - { "04a9", "306f", "PowerShot G3 (ptp)" }, - { "04a9", "3070", "PowerShot S230" }, - { "04a9", "3071", "PowerShot S230 (ptp)" }, - { "04a9", "3072", "PowerShot SD100 / Digital IXUS II (ptp)" }, - { "04a9", "3073", "PowerShot A70 (ptp)" }, - { "04a9", "3074", "PowerShot A60 (ptp)" }, - { "04a9", "3075", "IXUS 400 Camera" }, - { "04a9", "3076", "PowerShot A300" }, - { "04a9", "3077", "PowerShot S50" }, - { "04a9", "3078", "ZR70MC Digital Camcorder" }, - { "04a9", "307a", "MV650i (normal mode)" }, - { "04a9", "307b", "MV630i Digital Video Camera" }, - { "04a9", "307c", "CP-200" }, - { "04a9", "307d", "CP-300" }, - { "04a9", "307f", "Optura 20" }, - { "04a9", "3080", "MVX150i (normal mode) / Optura 20 (normal mode)" }, - { "04a9", "3081", "Optura 10" }, - { "04a9", "3082", "MVX100i / Optura 10" }, - { "04a9", "3083", "EOS 10D" }, - { "04a9", "3084", "EOS 300D / EOS Digital Rebel" }, - { "04a9", "3085", "PowerShot G5" }, - { "04a9", "3087", "Elura 50 (PTP mode)" }, - { "04a9", "3088", "Elura 50 (normal mode)" }, - { "04a9", "308d", "MVX3i" }, - { "04a9", "308e", "FV M1 (normal mode) / MVX 3i (normal mode) / Optura Xi (normal mode)" }, - { "04a9", "3093", "Optura 300" }, - { "04a9", "3096", "IXY DV M2 (normal mode) / MVX 10i (normal mode)" }, - { "04a9", "3099", "EOS 300D (ptp)" }, - { "04a9", "309a", "PowerShot A80" }, - { "04a9", "309b", "Digital IXUS (ptp)" }, - { "04a9", "309c", "PowerShot S1 IS" }, - { "04a9", "309d", "Powershot Pro 1" }, - { "04a9", "309f", "Camera" }, - { "04a9", "30a0", "Camera" }, - { "04a9", "30a1", "Camera" }, - { "04a9", "30a2", "Camera" }, - { "04a9", "30a8", "Elura 60E/Optura 40 (ptp)" }, - { "04a9", "30a9", "MVX25i (normal mode) / Optura 40 (normal mode)" }, - { "04a9", "30b1", "PowerShot S70 (normal mode) / PowerShot S70 (PTP mode)" }, - { "04a9", "30b2", "PowerShot S60 (normal mode) / PowerShot S60 (PTP mode)" }, - { "04a9", "30b3", "PowerShot G6 (normal mode) / PowerShot G6 (PTP mode)" }, - { "04a9", "30b4", "PowerShot S500" }, - { "04a9", "30b5", "PowerShot A75" }, - { "04a9", "30b6", "Digital IXUS II2 / Digital IXUS II2 (PTP mode) / PowerShot SD110 (PTP mode) / PowerShot SD110 Digital ELPH" }, - { "04a9", "30b7", "PowerShot A400 / PowerShot A400 (PTP mode)" }, - { "04a9", "30b8", "PowerShot A310 / PowerShot A310 (PTP mode)" }, - { "04a9", "30b9", "Powershot A85" }, - { "04a9", "30ba", "PowerShot S410 Digital Elph" }, - { "04a9", "30bb", "PowerShot A95" }, - { "04a9", "30bd", "CP-220" }, - { "04a9", "30be", "CP-330" }, - { "04a9", "30bf", "Digital IXUS 40" }, - { "04a9", "30c0", "Digital IXUS 30 (PTP mode) / PowerShot SD200 (PTP mode)" }, - { "04a9", "30c1", "Digital IXUS 50 (normal mode) / IXY Digital 55 (normal mode) / PowerShot A520 (PTP mode) / PowerShot SD400 (normal mode)" }, - { "04a9", "30c2", "PowerShot A510 (normal mode) / PowerShot A510 (PTP mode)" }, - { "04a9", "30c4", "Digital IXUS i5 (normal mode) / IXY Digital L2 (normal mode) / PowerShot SD20 (normal mode)" }, - { "04a9", "30ea", "EOS 1D Mark II (PTP mode)" }, - { "04a9", "30eb", "EOS 20D" }, - { "04a9", "30ec", "EOS 20D (ptp)" }, - { "04a9", "30ee", "EOS 350D" }, - { "04a9", "30ef", "EOS 350D (ptp)" }, - { "04a9", "30f0", "PowerShot S2 IS (PTP mode)" }, - { "04a9", "30f2", "Digital IXUS 700 (normal mode) / Digital IXUS 700 (PTP mode) / IXY Digital 600 (normal mode) / PowerShot SD500 (normal mode) / PowerShot SD500 (PTP mode)" }, - { "04a9", "30f4", "PowerShot SD30 / Ixus iZoom / IXY DIGITAL L3" }, - { "04a9", "30f5", "SELPHY CP500" }, - { "04a9", "30f6", "SELPHY CP400" }, - { "04a9", "30f8", "Powershot A430" }, - { "04a9", "30f9", "PowerShot A410 (PTP mode)" }, - { "04a9", "30fa", "PowerShot S80" }, - { "04a9", "30fc", "PowerShot A620 (PTP mode)" }, - { "04a9", "30fd", "PowerShot A610 (normal mode)/PowerShot A610 (PTP mode)" }, - { "04a9", "30fe", "Digital IXUS 65 (PTP mode)/PowerShot SD630 (PTP mode)" }, - { "04a9", "30ff", "Digital IXUS 55 (PTP mode)/PowerShot SD450 (PTP mode)" }, - { "04a9", "3100", "PowerShot TX1" }, - { "04a9", "310b", "SELPHY CP600" }, - { "04a9", "310e", "Digital IXUS 50 (PTP mode)" }, - { "04a9", "310f", "PowerShot A420" }, - { "04a9", "3110", "EOS Digital Rebel XTi" }, - { "04a9", "3115", "PowerShot SD900 / Digital IXUS 900 Ti / IXY DIGITAL 1000" }, - { "04a9", "3116", "Digital IXUS 750 / PowerShot SD550 (PTP mode)" }, - { "04a9", "3117", "PowerShot A700" }, - { "04a9", "3119", "PowerShot SD700 IS / Digital IXUS 800 IS / IXY Digital 800 IS" }, - { "04a9", "311a", "PowerShot S3 IS" }, - { "04a9", "311b", "PowerShot A540" }, - { "04a9", "311c", "PowerShot SD600 DIGITAL ELPH / DIGITAL IXUS 60 / IXY DIGITAL 70" }, - { "04a9", "3125", "PowerShot G7" }, - { "04a9", "3126", "PowerShot A530" }, - { "04a9", "3127", "SELPHY CP710" }, - { "04a9", "3128", "SELPHY CP510" }, - { "04a9", "312d", "Elura 100" }, - { "04a9", "3136", "PowerShot SD800 IS / Digital IXUS 850 IS / IXY DIGITAL 900 IS" }, - { "04a9", "3137", "PowerShot SD40 / Digital IXUS i7 IXY / DIGITAL L4" }, - { "04a9", "3138", "PowerShot A710 IS" }, - { "04a9", "3139", "PowerShot A640" }, - { "04a9", "313a", "PowerShot A630" }, - { "04a9", "3141", "SELPHY ES1" }, - { "04a9", "3142", "SELPHY CP730" }, - { "04a9", "3143", "SELPHY CP720" }, - { "04a9", "3145", "EOS 450D" }, - { "04a9", "3146", "EOS 40D" }, - { "04a9", "3147", "EOS 1Ds Mark III" }, - { "04a9", "3148", "PowerShot S5 IS" }, - { "04a9", "3149", "PowerShot A460" }, - { "04a9", "314b", "PowerShot SD850 IS DIGITAL ELPH / Digital IXUS 950 IS / IXY DIGITAL 810 IS" }, - { "04a9", "314c", "PowerShot A570 IS" }, - { "04a9", "314d", "PowerShot A560" }, - { "04a9", "314e", "PowerShot SD750 DIGITAL ELPH / DIGITAL IXUS 75 / IXY DIGITAL 90" }, - { "04a9", "314f", "PowerShot SD1000 DIGITAL ELPH / DIGITAL IXUS 70 / IXY DIGITAL 10" }, - { "04a9", "3150", "PowerShot A550" }, - { "04a9", "3155", "PowerShot A450" }, - { "04a9", "315a", "PowerShot G9" }, - { "04a9", "315b", "PowerShot A650 IS" }, - { "04a9", "315d", "PowerShot A720" }, - { "04a9", "315e", "PowerShot SX100 IS" }, - { "04a9", "315f", "PowerShot SD950 IS DIGITAL ELPH / DIGITAL IXUS 960 IS / IXY DIGITAL 2000 IS" }, - { "04a9", "3160", "Digital IXUS 860 IS" }, - { "04a9", "3170", "SELPHY CP750" }, - { "04a9", "3171", "SELPHY CP740" }, - { "04a9", "3172", "SELPHY CP520" }, - { "04a9", "3173", "PowerShot SD890 IS DIGITAL ELPH / Digital IXUS 970 IS / IXY DIGITAL 820 IS" }, - { "04a9", "3174", "PowerShot SD790 IS DIGITAL ELPH / Digital IXUS 90 IS / IXY DIGITAL 95 IS" }, - { "04a9", "3175", "IXY Digital 25 IS" }, - { "04a9", "3176", "PowerShot A590" }, - { "04a9", "3177", "PowerShot A580" }, - { "04a9", "317a", "PC1267 [Powershot A470]" }, - { "04a9", "3184", "Digital IXUS 80 IS (PTP mode)" }, - { "04a9", "3185", "SELPHY ES2" }, - { "04a9", "3186", "SELPHY ES20" }, - { "04a9", "318d", "PowerShot SX100 IS" }, - { "04a9", "318e", "PowerShot A1000 IS" }, - { "04a9", "318f", "PowerShot G10" }, - { "04a9", "3191", "PowerShot A2000 IS" }, - { "04a9", "3192", "PowerShot SX110 IS" }, - { "04a9", "3193", "PowerShot SD990 IS DIGITAL ELPH / Digital IXUS 980 IS / IXY DIGITAL 3000 IS" }, - { "04a9", "3195", "PowerShot SX1 IS" }, - { "04a9", "3196", "PowerShot SD880 IS DIGITAL ELPH / Digital IXUS 870 IS / IXY DIGITAL 920 IS" }, - { "04a9", "3199", "EOS 5D Mark II" }, - { "04a9", "319a", "EOS 7D" }, - { "04a9", "319b", "EOS 50D" }, - { "04a9", "31aa", "SELPHY CP770" }, - { "04a9", "31ab", "SELPHY CP760" }, - { "04a9", "31ad", "PowerShot E1" }, - { "04a9", "31af", "SELPHY ES3" }, - { "04a9", "31b0", "SELPHY ES30" }, - { "04a9", "31b1", "SELPHY CP530" }, - { "04a9", "31bc", "PowerShot D10" }, - { "04a9", "31bd", "PowerShot SD960 IS DIGITAL ELPH / Digital IXUS 110 IS / IXY DIGITAL 510 IS" }, - { "04a9", "31be", "PowerShot A2100 IS" }, - { "04a9", "31bf", "PowerShot A480" }, - { "04a9", "31c0", "PowerShot SX200 IS" }, - { "04a9", "31c1", "PowerShot SD970 IS DIGITAL ELPH / Digital IXUS 990 IS / IXY DIGITAL 830 IS" }, - { "04a9", "31c2", "PowerShot SD780 IS DIGITAL ELPH / Digital IXUS 100 IS / IXY DIGITAL 210 IS" }, - { "04a9", "31c3", "PowerShot A1100 IS" }, - { "04a9", "31c4", "PowerShot SD1200 IS DIGITAL ELPH / Digital IXUS 95 IS / IXY DIGITAL 110 IS" }, - { "04a9", "31cf", "EOS Rebel T1i / EOS 500D / EOS Kiss X3" }, - { "04a9", "31dd", "SELPHY CP780" }, - { "04a9", "31df", "PowerShot G11" }, - { "04a9", "31e0", "PowerShot SX120 IS" }, - { "04a9", "31e1", "PowerShot S90" }, - { "04a9", "31e4", "PowerShot SX20 IS" }, - { "04a9", "31e5", "Digital IXUS 200 IS" }, - { "04a9", "31e6", "PowerShot SD940 IS DIGITAL ELPH / Digital IXUS 120 IS / IXY DIGITAL 220 IS" }, - { "04a9", "31e7", "SELPHY CP790" }, - { "04a9", "31ea", "EOS Rebel T2i / EOS 550D / EOS Kiss X4" }, - { "04a9", "31ee", "SELPHY ES40" }, - { "04a9", "31ef", "PowerShot A495" }, - { "04a9", "31f0", "PowerShot A490" }, - { "04a9", "31f1", "PowerShot A3100 IS / PowerShot A3150 IS" }, - { "04a9", "31f2", "PowerShot A3000 IS" }, - { "04a9", "31f3", "PowerShot Digital ELPH SD1400 IS" }, - { "04a9", "31f4", "PowerShot SD1300 IS / IXUS 105" }, - { "04a9", "31f5", "Powershot SD3500 IS / IXUS 210 IS" }, - { "04a9", "31f6", "PowerShot SX210 IS" }, - { "04a9", "31f7", "Powershot SD4000 IS / IXUS 300 HS / IXY 30S" }, - { "04a9", "31f8", "Powershot SD4500 IS / IXUS 1000 HS / IXY 50S" }, - { "04a9", "31ff", "Digital IXUS 55" }, - { "04a9", "3209", "Vixia HF S21 A" }, - { "04a9", "320f", "PowerShot G12" }, - { "04a9", "3210", "Powershot SX30 IS" }, - { "04a9", "3211", "PowerShot SX130 IS" }, - { "04a9", "3212", "Powershot S95" }, - { "04a9", "3214", "SELPHY CP800" }, - { "04a9", "3215", "EOS 60D" }, - { "04a9", "3218", "EOS 600D / Rebel T3i (ptp)" }, - { "04a9", "3219", "EOS 1D X" }, - { "04a9", "3223", "PowerShot A3300 IS" }, - { "04a9", "3224", "PowerShot A3200 IS" }, - { "04a9", "3225", "PowerShot ELPH 500 HS / IXUS 310 HS" }, - { "04a9", "3226", "PowerShow A800" }, - { "04a9", "3227", "PowerShot ELPH 100 HS / IXUS 115 HS" }, - { "04a9", "3228", "PowerShot SX230 HS" }, - { "04a9", "3229", "PowerShot ELPH 300 HS / IXUS 220 HS" }, - { "04a9", "322a", "PowerShot A2200" }, - { "04a9", "322b", "Powershot A1200" }, - { "04a9", "322c", "PowerShot SX220 HS" }, - { "04a9", "3233", "PowerShot G1 X" }, - { "04a9", "3234", "PowerShot SX150 IS" }, - { "04a9", "3235", "PowerShot ELPH 510 HS / IXUS 1100 HS" }, - { "04a9", "3236", "PowerShot S100" }, - { "04a9", "3237", "PowerShot ELPH 310 HS / IXUS 230 HS" }, - { "04a9", "3238", "PowerShot SX40 HS" }, - { "04a9", "323a", "EOS 5D Mark III" }, - { "04a9", "323b", "EOS Rebel T4i" }, - { "04a9", "323d", "EOS M" }, - { "04a9", "323e", "PowerShot A1300" }, - { "04a9", "323f", "PowerShot A810" }, - { "04a9", "3240", "PowerShot ELPH 320 HS / IXUS 240 HS" }, - { "04a9", "3241", "PowerShot ELPH 110 HS / IXUS 125 HS" }, - { "04a9", "3242", "PowerShot D20" }, - { "04a9", "3243", "PowerShot A4000 IS" }, - { "04a9", "3244", "PowerShot SX260 HS" }, - { "04a9", "3245", "PowerShot SX240 HS" }, - { "04a9", "3246", "PowerShot ELPH 530 HS / IXUS 510 HS" }, - { "04a9", "3247", "PowerShot ELPH 520 HS / IXUS 500 HS" }, - { "04a9", "3248", "PowerShot A3400 IS" }, - { "04a9", "3249", "PowerShot A2400 IS" }, - { "04a9", "324a", "PowerShot A2300" }, - { "04a9", "3250", "EOS 6D" }, - { "04a9", "3252", "EOS 1D C" }, - { "04a9", "3253", "EOS 70D" }, - { "04a9", "3255", "SELPHY CP900" }, - { "04a9", "3256", "SELPHY CP810" }, - { "04a9", "3258", "PowerShot G15" }, - { "04a9", "3259", "PowerShot SX50 HS" }, - { "04a9", "325a", "PowerShot SX160 IS" }, - { "04a9", "325b", "PowerShot S110" }, - { "04a9", "325c", "PowerShot SX500 IS" }, - { "04a9", "325e", "PowerShot N" }, - { "04a9", "325f", "PowerShot SX280 HS" }, - { "04a9", "3260", "PowerShot SX270 HS" }, - { "04a9", "3261", "PowerShot A3500 IS" }, - { "04a9", "3262", "PowerShot A2600" }, - { "04a9", "3263", "PowerShot SX275 HS" }, - { "04a9", "3264", "PowerShot A1400" }, - { "04a9", "3265", "Powershot ELPH 130 IS / IXUS 140" }, - { "04a9", "3266", "Powershot ELPH 120 IS / IXUS 135" }, - { "04a9", "3268", "PowerShot ELPH 330 HS / IXUS 255 HS" }, - { "04a9", "326f", "EOS 7D Mark II" }, - { "04a9", "3270", "EOS 100D" }, - { "04a9", "3271", "PowerShot A2500" }, - { "04a9", "3272", "EOS 700D" }, - { "04a9", "3274", "PowerShot G16" }, - { "04a9", "3275", "PowerShot S120" }, - { "04a9", "3276", "PowerShot SX170 IS" }, - { "04a9", "3277", "PowerShot SX510 HS" }, - { "04a9", "3278", "PowerShot S200" }, - { "04a9", "327a", "SELPHY CP910" }, - { "04a9", "327b", "SELPHY CP820" }, - { "04a9", "327d", "Powershot ELPH 115 IS / IXUS 132" }, - { "04a9", "327f", "EOS Rebel T5 / EOS 1200D / EOS Kiss X70" }, - { "04a9", "3284", "PowerShot D30" }, - { "04a9", "3285", "PowerShot SX700 HS" }, - { "04a9", "3286", "PowerShot SX600 HS" }, - { "04a9", "3287", "PowerShot ELPH 140 IS / IXUS 150" }, - { "04a9", "3288", "Powershot ELPH 135 / IXUS 145" }, - { "04a9", "3289", "PowerShot ELPH 340 HS / IXUS 265 HS" }, - { "04a9", "328a", "PowerShot ELPH 150 IS / IXUS 155" }, - { "04a9", "328b", "PowerShot N Facebook(R) Ready" }, - { "04a9", "3299", "EOS M3" }, - { "04a9", "329a", "PowerShot SX60 HS" }, - { "04a9", "329b", "PowerShot SX520 HS" }, - { "04a9", "329c", "PowerShot SX400 IS" }, - { "04a9", "329d", "PowerShot G7 X" }, - { "04a9", "329f", "PowerShot SX530 HS" }, - { "04a9", "32a0", "EOS M10" }, - { "04a9", "32a6", "PowerShot SX710 HS" }, - { "04a9", "32a7", "PowerShot SX610 HS" }, - { "04a9", "32a8", "PowerShot G3 X" }, - { "04a9", "32aa", "Powershot ELPH 160 / IXUS 160" }, - { "04a9", "32ab", "PowerShot ELPH 350HS / IXUS 275 HS" }, - { "04a9", "32ac", "PowerShot ELPH 170 IS / IXUS 170" }, - { "04a9", "32ad", "PowerShot SX410 IS" }, - { "04a9", "32b1", "SELPHY CP1200" }, - { "04a9", "32b2", "PowerShot G9 X" }, - { "04a9", "32b3", "PowerShot G5 X" }, - { "04a9", "32b4", "EOS Rebel T6" }, - { "04a9", "32bb", "EOS M5" }, - { "04a9", "32bf", "PowerShot SX420 IS" }, - { "04a9", "32c0", "PowerShot ELPH 190IS" }, - { "04a9", "32c1", "PowerShot ELPH 180 / IXUS 175" }, - { "04a9", "32c2", "PowerShot SX720 HS" }, - { "04a9", "32c5", "EOS M6" }, - { "04a9", "32cc", "EOS 200D" }, - { "04a9", "32d1", "EOS M100" }, - { "04a9", "32d2", "EOS M50" }, - { "04a9", "32d4", "Powershot ELPH 185 / IXUS 185 / IXY 200" }, - { "04a9", "32d5", "PowerShot SX430 IS" }, - { "04a9", "32db", "SELPHY CP1300" }, - { "04ad", "2501", "Bluetooth Device" }, - { "04b0", "0102", "Coolpix 990" }, - { "04b0", "0103", "Coolpix 880" }, - { "04b0", "0104", "Coolpix 995" }, - { "04b0", "0106", "Coolpix 775" }, - { "04b0", "0107", "Coolpix 5000" }, - { "04b0", "0108", "Coolpix 2500" }, - { "04b0", "0109", "Coolpix 2500 (ptp)" }, - { "04b0", "010a", "Coolpix 4500" }, - { "04b0", "010b", "Coolpix 4500 (ptp)" }, - { "04b0", "010d", "Coolpix 5700 (ptp)" }, - { "04b0", "010e", "Coolpix 4300 (storage)" }, - { "04b0", "010f", "Coolpix 4300 (ptp)" }, - { "04b0", "0110", "Coolpix 3500 (Sierra Mode)" }, - { "04b0", "0111", "Coolpix 3500 (ptp)" }, - { "04b0", "0112", "Coolpix 885 (ptp)" }, - { "04b0", "0113", "Coolpix 5000 (ptp)" }, - { "04b0", "0114", "Coolpix 3100 (storage)" }, - { "04b0", "0115", "Coolpix 3100 (ptp)" }, - { "04b0", "0117", "Coolpix 2100 (ptp)" }, - { "04b0", "0119", "Coolpix 5400 (ptp)" }, - { "04b0", "011d", "Coolpix 3700 (ptp)" }, - { "04b0", "0121", "Coolpix 3200 (ptp)" }, - { "04b0", "0122", "Coolpix 2200 (ptp)" }, - { "04b0", "0124", "Coolpix 8400 (mass storage mode)" }, - { "04b0", "0125", "Coolpix 8400 (ptp)" }, - { "04b0", "0126", "Coolpix 8800" }, - { "04b0", "0129", "Coolpix 4800 (ptp)" }, - { "04b0", "012c", "Coolpix 4100 (storage)" }, - { "04b0", "012d", "Coolpix 4100 (ptp)" }, - { "04b0", "012e", "Coolpix 5600 (ptp)" }, - { "04b0", "0130", "Coolpix 4600 (ptp)" }, - { "04b0", "0135", "Coolpix 5900 (ptp)" }, - { "04b0", "0136", "Coolpix 7900 (storage)" }, - { "04b0", "0137", "Coolpix 7900 (ptp)" }, - { "04b0", "013a", "Coolpix 100 (storage)" }, - { "04b0", "013b", "Coolpix 100 (ptp)" }, - { "04b0", "0141", "Coolpix P2 (storage)" }, - { "04b0", "0142", "Coolpix P2 (ptp)" }, - { "04b0", "0163", "Coolpix P5100 (ptp)" }, - { "04b0", "0169", "Coolpix P50 (ptp)" }, - { "04b0", "0202", "Coolpix SQ (ptp)" }, - { "04b0", "0203", "Coolpix 4200 (mass storage mode)" }, - { "04b0", "0204", "Coolpix 4200 (ptp)" }, - { "04b0", "0205", "Coolpix 5200 (storage)" }, - { "04b0", "0206", "Coolpix 5200 (ptp)" }, - { "04b0", "0301", "Coolpix 2000 (storage)" }, - { "04b0", "0302", "Coolpix 2000 (ptp)" }, - { "04b0", "0317", "Coolpix L20 (ptp)" }, - { "04b0", "0402", "DSC D100 (ptp)" }, - { "04b0", "0403", "D2H (mass storage mode)" }, - { "04b0", "0404", "D2H SLR (ptp)" }, - { "04b0", "0405", "D70 (mass storage mode)" }, - { "04b0", "0406", "DSC D70 (ptp)" }, - { "04b0", "0408", "D2X SLR (ptp)" }, - { "04b0", "0409", "D50 digital camera" }, - { "04b0", "040a", "D50 (ptp)" }, - { "04b0", "040c", "D2Hs" }, - { "04b0", "040e", "DSC D70s (ptp)" }, - { "04b0", "040f", "D200 (mass storage mode)" }, - { "04b0", "0410", "D200 (ptp)" }, - { "04b0", "0411", "D80 (mass storage mode)" }, - { "04b0", "0412", "D80 (MTP/PTP mode)" }, - { "04b0", "0413", "D40 (mass storage mode)" }, - { "04b0", "041e", "D60 digital camera (mass storage mode)" }, - { "04b0", "0422", "D700 (ptp)" }, - { "04b0", "0423", "D5000" }, - { "04b0", "0424", "D3000" }, - { "04b0", "0425", "D300S" }, - { "04b0", "0428", "D7000" }, - { "04b0", "0429", "D5100" }, - { "04b0", "042a", "D800 (ptp)" }, - { "04b0", "0430", "D7100" }, - { "04b0", "0436", "D810" }, - { "04b0", "043f", "D5600" }, - { "04b0", "0f03", "PD-10 Wireless Printer Adapter" }, - { "04b0", "4000", "Coolscan LS 40 ED" }, - { "04b0", "4001", "LS 50 ED/Coolscan V ED" }, - { "04b0", "4002", "Super Coolscan LS-5000 ED" }, - { "04b3", "3003", "Rapid Access III Keyboard" }, - { "04b3", "3004", "Media Access Pro Keyboard" }, - { "04b3", "300a", "Rapid Access IIIe Keyboard" }, - { "04b3", "3016", "UltraNav Keyboard Hub" }, - { "04b3", "3018", "UltraNav Keyboard" }, - { "04b3", "301a", "2-port low-power hub" }, - { "04b3", "301b", "SK-8815 Keyboard" }, - { "04b3", "301c", "Enhanced Performance Keyboard" }, - { "04b3", "3020", "Enhanced Performance Keyboard" }, - { "04b3", "3025", "NetVista Full Width Keyboard" }, - { "04b3", "3100", "NetVista Mouse" }, - { "04b3", "3103", "ScrollPoint Pro Mouse" }, - { "04b3", "3104", "ScrollPoint Wireless Mouse" }, - { "04b3", "3105", "ScrollPoint Optical (HID)" }, - { "04b3", "3107", "ThinkPad 800dpi Optical Travel Mouse" }, - { "04b3", "3108", "800dpi Optical Mouse w/ Scroll Point" }, - { "04b3", "3109", "Optical ScrollPoint Pro Mouse" }, - { "04b3", "310b", "Red Wheel Mouse" }, - { "04b3", "310c", "Wheel Mouse" }, - { "04b3", "4427", "Portable CD ROM" }, - { "04b3", "4482", "Serial Converter" }, - { "04b3", "4484", "SMSC USB20H04 3-Port Hub [ThinkPad X4 UltraBase, Wistron S Note-3 Media Slice]" }, - { "04b3", "4485", "ThinkPad Dock Hub" }, - { "04b3", "4524", "40 Character Vacuum Fluorescent Display" }, - { "04b3", "4525", "Double sided CRT" }, - { "04b3", "4535", "4610 Suremark Printer" }, - { "04b3", "4550", "NVRAM (128 KB)" }, - { "04b3", "4554", "Cash Drawer" }, - { "04b3", "4580", "Hub w/ NVRAM" }, - { "04b3", "4581", "4800-2xx Hub w/ Cash Drawer" }, - { "04b3", "4604", "Keyboard w/ Card Reader" }, - { "04b3", "4671", "4820 LCD w/ MSR/KB" }, - { "04b4", "0001", "Mouse" }, - { "04b4", "0002", "CY7C63x0x Thermometer" }, - { "04b4", "0008", "CDC ACM serial port" }, - { "04b4", "0033", "Mouse" }, - { "04b4", "0060", "Wireless optical mouse" }, - { "04b4", "00f3", "FX3 micro-controller (DFU mode)" }, - { "04b4", "0100", "Cino FuzzyScan F760-B" }, - { "04b4", "0101", "Keyboard/Hub" }, - { "04b4", "0102", "Keyboard with APM" }, - { "04b4", "0130", "MyIRC Remote Receiver" }, - { "04b4", "0306", "Telephone Receiver" }, - { "04b4", "0407", "Optical Skype Mouse" }, - { "04b4", "0818", "AE-SMKD92-* [Thumb Keyboard]" }, - { "04b4", "0bad", "MetaGeek Wi-Spy" }, - { "04b4", "1002", "CY7C63001 R100 FM Radio" }, - { "04b4", "1006", "Human Interface Device" }, - { "04b4", "2050", "hub" }, - { "04b4", "2830", "Opera1 DVB-S (cold state)" }, - { "04b4", "3813", "NANO BIOS Programmer" }, - { "04b4", "4235", "Monitor 02 Driver" }, - { "04b4", "4381", "SCAPS USC-1 Scanner Controller" }, - { "04b4", "4611", "Storage Adapter FX2 (CY)" }, - { "04b4", "4616", "Flash Disk (TPP)" }, - { "04b4", "4624", "DS-Xtreme Flash Card" }, - { "04b4", "4717", "West Bridge" }, - { "04b4", "5201", "Combi Keyboard-Hub (Hub)" }, - { "04b4", "5202", "Combi Keyboard-Hub (Keyboard)" }, - { "04b4", "5500", "HID->COM RS232 Adapter" }, - { "04b4", "5a9b", "Dacal CD/DVD Library D-101/DC-300/DC-016RW" }, - { "04b4", "6022", "Hantek DSO-6022BE" }, - { "04b4", "602a", "Hantek DSO-6022BL" }, - { "04b4", "6370", "ViewMate Desktop Mouse CC2201" }, - { "04b4", "6502", "CY4609" }, - { "04b4", "6506", "CY4603" }, - { "04b4", "650a", "CY4613" }, - { "04b4", "6560", "CY7C65640 USB-2.0 \"TetraHub\"" }, - { "04b4", "6570", "Unprogrammed CY7C65632/34 hub HX2VL" }, - { "04b4", "6572", "Unprogrammed CY7C65642 hub" }, - { "04b4", "6830", "CY7C68300A EZ-USB AT2 USB 2.0 to ATA/ATAPI" }, - { "04b4", "6831", "Storage Adapter ISD-300LP (CY)" }, - { "04b4", "7417", "Wireless PC Lock/Ultra Mouse" }, - { "04b4", "8329", "USB To keyboard/Mouse Converter" }, - { "04b4", "8613", "CY7C68013 EZ-USB FX2 USB 2.0 Development Kit" }, - { "04b4", "8614", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "04b4", "861f", "Anysee E30 USB 2.0 DVB-T Receiver" }, - { "04b4", "bca1", "Barcode Reader" }, - { "04b4", "cc04", "Centor USB RACIA-ALVAR USB PORT" }, - { "04b4", "cc06", "Centor-P RACIA-ALVAR USB PORT" }, - { "04b4", "d5d5", "CY7C63x0x Zoltrix Z-Boxer GamePad" }, - { "04b4", "de61", "Barcode Reader" }, - { "04b4", "de64", "Barcode Reader" }, - { "04b4", "f000", "CY30700 Licorice evaluation board" }, - { "04b4", "f111", "CY8CKIT-002 PSoC MiniProg3 Rev A Program and debug kit" }, - { "04b4", "f115", "PSoC FirstTouch Programmer" }, - { "04b4", "f139", "KitProg" }, - { "04b4", "f231", "DELLY Changer 4in1 universal IR remote" }, - { "04b4", "f232", "Mono embedded computer" }, - { "04b4", "fd10", "Gembird MSIS-PM" }, - { "04b4", "fd13", "Energenie EG-PMS" }, - { "04b4", "fd15", "Energenie EG-PMS2" }, - { "04b5", "3064", "Hantek DSO-3064" }, - { "04b5", "6022", "Hantek DSO-6022BE" }, - { "04b5", "602a", "Hantek DSO-6022BL" }, - { "04b8", "0001", "Stylus Color 740 / Photo 750" }, - { "04b8", "0002", "ISD Smart Cable for Mac" }, - { "04b8", "0003", "ISD Smart Cable" }, - { "04b8", "0004", "Printer" }, - { "04b8", "0005", "Printer" }, - { "04b8", "0006", "Printer" }, - { "04b8", "0007", "Printer" }, - { "04b8", "0015", "Stylus Photo R3000" }, - { "04b8", "0080", "SC-P400 Series" }, - { "04b8", "0101", "GT-7000U [Perfection 636]" }, - { "04b8", "0102", "GT-2200" }, - { "04b8", "0103", "GT-6600U [Perfection 610]" }, - { "04b8", "0104", "GT-7600UF [Perfection 1200U/1200U Photo]" }, - { "04b8", "0105", "Stylus Scan 2000" }, - { "04b8", "0106", "Stylus Scan 2500" }, - { "04b8", "0107", "ES-2000 [Expression 1600U]" }, - { "04b8", "0108", "CC-700" }, - { "04b8", "0109", "ES-8500 [Expression 1640 XL]" }, - { "04b8", "010a", "GT-8700/GT-8700F [Perfection 1640SU/1640SU PHOTO]" }, - { "04b8", "010b", "GT-7700U [Perfection 1240U]" }, - { "04b8", "010c", "GT-6700U [Perfection 640]" }, - { "04b8", "010d", "CC-500L" }, - { "04b8", "010e", "ES-2200 [Perfection 1680]" }, - { "04b8", "010f", "GT-7200U [Perfection 1250/1250 PHOTO]" }, - { "04b8", "0110", "GT-8200U/GT-8200UF [Perfection 1650/1650 PHOTO]" }, - { "04b8", "0112", "GT-9700F [Perfection 2450 PHOTO]" }, - { "04b8", "0114", "Perfection 660" }, - { "04b8", "0116", "GT-9400UF [Perfection 3170]" }, - { "04b8", "0118", "GT-F600 [Perfection 4180]" }, - { "04b8", "0119", "GT-X750 [Perfection 4490 Photo]" }, - { "04b8", "011a", "CC-550L [1000 ICS]" }, - { "04b8", "011b", "GT-9300UF [Perfection 2400 PHOTO]" }, - { "04b8", "011c", "GT-9800F [Perfection 3200]" }, - { "04b8", "011d", "GT-7300U [Perfection 1260/1260 PHOTO]" }, - { "04b8", "011e", "GT-8300UF [Perfection 1660 PHOTO]" }, - { "04b8", "011f", "GT-8400UF [Perfection 1670/1670 PHOTO]" }, - { "04b8", "0120", "GT-7400U [Perfection 1270]" }, - { "04b8", "0121", "GT-F500/GT-F550 [Perfection 2480/2580 PHOTO]" }, - { "04b8", "0122", "GT-F520/GT-F570 [Perfection 3590 PHOTO]" }, - { "04b8", "0126", "ES-7000H [GT-15000]" }, - { "04b8", "0128", "GT-X700 [Perfection 4870]" }, - { "04b8", "0129", "ES-10000G [Expression 10000XL]" }, - { "04b8", "012a", "GT-X800 [Perfection 4990 PHOTO]" }, - { "04b8", "012b", "ES-H300 [GT-2500]" }, - { "04b8", "012c", "GT-X900 [Perfection V700/V750 Photo]" }, - { "04b8", "012d", "GT-F650 [GT-S600/Perfection V10/V100]" }, - { "04b8", "012e", "GT-F670 [Perfection V200 Photo]" }, - { "04b8", "012f", "GT-F700 [Perfection V350]" }, - { "04b8", "0130", "GT-X770 [Perfection V500]" }, - { "04b8", "0131", "GT-F720 [GT-S620/Perfection V30/V300 Photo]" }, - { "04b8", "0133", "GT-1500 [GT-D1000]" }, - { "04b8", "0135", "GT-X970" }, - { "04b8", "0136", "ES-D400 [GT-S80]" }, - { "04b8", "0137", "ES-D200 [GT-S50]" }, - { "04b8", "0138", "ES-H7200 [GT-20000]" }, - { "04b8", "013a", "GT-X820 [Perfection V600 Photo]" }, - { "04b8", "0142", "GT-F730 [GT-S630/Perfection V33/V330 Photo]" }, - { "04b8", "0143", "GT-S55" }, - { "04b8", "0144", "GT-S85" }, - { "04b8", "0151", "Perfection V800 Photo" }, - { "04b8", "0202", "Interface Card UB-U05 for Thermal Receipt Printers [M129C/TM-T70/TM-T88IV]" }, - { "04b8", "0401", "CP 800 Digital Camera" }, - { "04b8", "0402", "PhotoPC 850z" }, - { "04b8", "0403", "PhotoPC 3000z" }, - { "04b8", "0509", "JVC PIX-MC10" }, - { "04b8", "0601", "Stylus Photo 875DC Card Reader" }, - { "04b8", "0602", "Stylus Photo 895 Card Reader" }, - { "04b8", "0801", "CC-600PX [Stylus CX5200/CX5400/CX6600]" }, - { "04b8", "0802", "CC-570L [Stylus CX3100/CX3200]" }, - { "04b8", "0803", "Printer (Composite Device)" }, - { "04b8", "0804", "Storage Device" }, - { "04b8", "0805", "Stylus CX6300/CX6400" }, - { "04b8", "0806", "PM-A850 [Stylus Photo RX600/610]" }, - { "04b8", "0807", "Stylus Photo RX500/510" }, - { "04b8", "0808", "Stylus CX5200/CX5300/CX5400" }, - { "04b8", "0809", "Storage Device" }, - { "04b8", "080a", "F-3200" }, - { "04b8", "080c", "ME100 [Stylus CX1500]" }, - { "04b8", "080d", "Stylus CX4500/4600" }, - { "04b8", "080e", "PX-A550 [CX-3500/3600/3650 MFP]" }, - { "04b8", "080f", "Stylus Photo RX420/RX425/RX430" }, - { "04b8", "0810", "PM-A900 [Stylus Photo RX700]" }, - { "04b8", "0811", "PM-A870 [Stylus Photo RX620/RX630]" }, - { "04b8", "0812", "MFP Composite Device" }, - { "04b8", "0813", "Stylus CX6500/6600" }, - { "04b8", "0814", "PM-A700" }, - { "04b8", "0815", "LP-A500 [AcuLaser CX1]" }, - { "04b8", "0816", "Printer (Composite Device)" }, - { "04b8", "0817", "LP-M5500/LP-M5500F" }, - { "04b8", "0818", "Stylus CX3700/CX3800/DX3800" }, - { "04b8", "0819", "PX-A650 [Stylus CX4700/CX4800/DX4800/DX4850]" }, - { "04b8", "081a", "PM-A750 [Stylus Photo RX520/RX530]" }, - { "04b8", "081b", "MFP Composite Device" }, - { "04b8", "081c", "PM-A890 [Stylus Photo RX640/RX650]" }, - { "04b8", "081d", "PM-A950" }, - { "04b8", "081e", "MFP Composite Device" }, - { "04b8", "081f", "Stylus CX7700/7800" }, - { "04b8", "0820", "Stylus CX4100/CX4200/DX4200" }, - { "04b8", "0821", "Stylus CX5700F/CX5800F" }, - { "04b8", "0822", "Storage Device" }, - { "04b8", "0823", "MFP Composite Device" }, - { "04b8", "0824", "Storage Device" }, - { "04b8", "0825", "MFP Composite Device" }, - { "04b8", "0826", "Storage Device" }, - { "04b8", "0827", "PM-A820 [Stylus Photo RX560/RX580/RX585/RX590]" }, - { "04b8", "0828", "PM-A970" }, - { "04b8", "0829", "PM-T990" }, - { "04b8", "082a", "PM-A920" }, - { "04b8", "082b", "Stylus CX5900/CX5000/DX5000/DX5050" }, - { "04b8", "082c", "Storage Device" }, - { "04b8", "082d", "Storage Device" }, - { "04b8", "082e", "PX-A720 [Stylus CX5900/CX6000/DX6000]" }, - { "04b8", "082f", "PX-A620 [Stylus CX3900/DX4000/DX4050]" }, - { "04b8", "0830", "ME 200 [Stylus CX2800/CX2900]" }, - { "04b8", "0831", "Stylus CX6900F/CX7000F/DX7000F" }, - { "04b8", "0832", "MFP Composite Device" }, - { "04b8", "0833", "LP-M5600" }, - { "04b8", "0834", "LP-M6000" }, - { "04b8", "0835", "AcuLaser CX21" }, - { "04b8", "0836", "PM-T960" }, - { "04b8", "0837", "PM-A940 [Stylus Photo RX680/RX685/RX690]" }, - { "04b8", "0838", "PX-A640 [CX7300/CX7400/DX7400]" }, - { "04b8", "0839", "PX-A740 [CX8300/CX8400/DX8400]" }, - { "04b8", "083a", "PX-FA700 [CX9300F/CX9400Fax/DX9400F]" }, - { "04b8", "083b", "MFP Composite Device" }, - { "04b8", "083c", "PM-A840S [Stylus Photo RX595/RX610]" }, - { "04b8", "083d", "MFP Composite Device" }, - { "04b8", "083e", "MFP Composite Device" }, - { "04b8", "083f", "Stylus CX4300/CX4400/CX5500/CX5600/DX4400/DX4450" }, - { "04b8", "0841", "PX-401A [ME 300/Stylus NX100]" }, - { "04b8", "0843", "LP-M5000" }, - { "04b8", "0844", "EP-901A/EP-901F [Artisan 800/Stylus Photo PX800FW]" }, - { "04b8", "0846", "EP-801A [Artisan 700/Stylus Photo PX700W/TX700W]" }, - { "04b8", "0847", "PX-601F [ME Office 700FW/Stylus Office BX600FW/TX600FW]" }, - { "04b8", "0848", "ME Office 600F/Stylus Office BX300F/TX300F" }, - { "04b8", "0849", "Stylus SX205" }, - { "04b8", "084a", "PX-501A [Stylus NX400]" }, - { "04b8", "084d", "PX-402A [Stylus SX115/Stylus NX110 Series]" }, - { "04b8", "084f", "Multifunctional Printer Scanner [ME Office 510 / Epson Stylus SX215]" }, - { "04b8", "0850", "EP-702A [Stylus Photo PX650/TX650 Series]" }, - { "04b8", "0851", "Stylus SX410" }, - { "04b8", "0852", "EP-802A [Artisan 710 Series/Stylus Photo PX710W/TX720W Series]" }, - { "04b8", "0853", "EP-902A [Artisan 810 Series/Stylus Photo PX810FW Series]" }, - { "04b8", "0854", "ME OFFICE 650FN Series/Stylus Office BX310FN/TX520FN Series" }, - { "04b8", "0855", "PX-602F [Stylus Office BX610FW/TX620FW Series]" }, - { "04b8", "0856", "PX-502A [Stylus SX515W]" }, - { "04b8", "085c", "ME 320/330 Series [Stylus SX125]" }, - { "04b8", "085d", "PX-603F [ME OFFICE 960FWD Series/Stylus Office BX625FWD/TX620FWD Series]" }, - { "04b8", "085e", "PX-503A [ME OFFICE 900WD Series/Stylus Office BX525WD]" }, - { "04b8", "085f", "Stylus Office BX320FW/TX525FW Series" }, - { "04b8", "0860", "EP-903A/EP-903F [Artisan 835/Stylus Photo PX820FWD Series]" }, - { "04b8", "0861", "EP-803A/EP-803AW [Artisan 725/Stylus Photo PX720WD/TX720WD Series]" }, - { "04b8", "0862", "EP-703A [Stylus Photo PX660 Series]" }, - { "04b8", "0863", "ME OFFICE 620F Series/Stylus Office BX305F/BX305FW/TX320F" }, - { "04b8", "0864", "ME OFFICE 560W Series" }, - { "04b8", "0865", "ME OFFICE 520 Series" }, - { "04b8", "0866", "AcuLaser MX20DN/MX20DNF/MX21DNF" }, - { "04b8", "0869", "PX-1600F" }, - { "04b8", "086a", "PX-673F [Stylus Office BX925FWD]" }, - { "04b8", "0870", "Stylus Office BX305FW Plus" }, - { "04b8", "0871", "K200 Series" }, - { "04b8", "0872", "K300 Series" }, - { "04b8", "0873", "L200 Series" }, - { "04b8", "0878", "EP-704A" }, - { "04b8", "0879", "EP-904A/EP-904F [Artisan 837/Stylus Photo PX830FWD Series]" }, - { "04b8", "087b", "EP-804A/EP-804AR/EP-804AW [Stylus Photo PX730WD/Artisan 730 Series]" }, - { "04b8", "087c", "PX-1700F" }, - { "04b8", "087d", "PX-B750F/WP-4525 Series" }, - { "04b8", "087f", "PX-403A" }, - { "04b8", "0880", "PX-434A [Stylus NX330 Series]" }, - { "04b8", "0881", "PX-404A [ME OFFICE 535]" }, - { "04b8", "0883", "ME 340 Series/Stylus NX130 Series" }, - { "04b8", "0884", "Stylus NX430W Series" }, - { "04b8", "0885", "Stylus NX230/SX235W Series" }, - { "04b8", "088f", "Stylus Office BX635FWD" }, - { "04b8", "0890", "ME OFFICE 940FW Series/Stylus Office BX630FW Series" }, - { "04b8", "0891", "Stylus Office BX535WD" }, - { "04b8", "0892", "Stylus Office BX935FWD" }, - { "04b8", "0893", "EP-774A" }, - { "04b8", "0e03", "Thermal Receipt Printer [TM-T20]" }, - { "04b8", "1114", "XP-440 [Expression Home Small-in-One Printer]" }, - { "04b8", "1129", "ET-4750 [WorkForce ET-4750 EcoTank All-in-One]" }, - { "04b8", "1168", "Workforce WF-7820/7840 Series" }, - { "04b9", "0300", "SafeNet USB SuperPro/UltraPro" }, - { "04b9", "1000", "iKey 1000 Token" }, - { "04b9", "1001", "iKey 1200 Token" }, - { "04b9", "1002", "iKey Token" }, - { "04b9", "1003", "iKey Token" }, - { "04b9", "1004", "iKey Token" }, - { "04b9", "1005", "iKey Token" }, - { "04b9", "1006", "iKey Token" }, - { "04b9", "1200", "iKey 2000 Token" }, - { "04b9", "1201", "iKey Token" }, - { "04b9", "1202", "iKey 2032 Token" }, - { "04b9", "1203", "iKey Token" }, - { "04b9", "1204", "iKey Token" }, - { "04b9", "1205", "iKey Token" }, - { "04b9", "1206", "iKey 4000 Token" }, - { "04b9", "1300", "iKey 3000 Token" }, - { "04b9", "1301", "iKey 3000" }, - { "04b9", "1302", "iKey Token" }, - { "04b9", "1303", "iKey Token" }, - { "04b9", "1304", "iKey Token" }, - { "04b9", "1305", "iKey Token" }, - { "04b9", "1306", "iKey Token" }, - { "04b9", "8000", "SafeNet Sentinel Hardware Key" }, - { "04bb", "0101", "USB2-IDE/ATAPI Bridge Adapter" }, - { "04bb", "014a", "HDCL-UT" }, - { "04bb", "0201", "USB2-IDE/ATAPI Bridge Adapter" }, - { "04bb", "0204", "DVD Multi-plus unit iU-CD2" }, - { "04bb", "0206", "DVD Multi-plus unit DVR-UEH8" }, - { "04bb", "0301", "Storage Device" }, - { "04bb", "0314", "USB-SSMRW SD-card" }, - { "04bb", "0319", "USB2-IDE/ATAPI Bridge Adapter" }, - { "04bb", "031a", "USB2-IDE/ATAPI Bridge Adapter" }, - { "04bb", "031b", "USB2-IDE/ATAPI Bridge Adapter" }, - { "04bb", "031e", "USB-SDRW SD-card" }, - { "04bb", "0502", "Nogatech Live! (BT)" }, - { "04bb", "0528", "GV-USB Video Capture" }, - { "04bb", "0901", "USB ETT" }, - { "04bb", "0904", "ET/TX Ethernet [pegasus]" }, - { "04bb", "0913", "ET/TX-S Ethernet [pegasus2]" }, - { "04bb", "0919", "USB WN-B11" }, - { "04bb", "0922", "IOData AirPort WN-B11/USBS 802.11b" }, - { "04bb", "0930", "ETG-US2" }, - { "04bb", "0937", "WN-WAG/USL Wireless LAN Adapter" }, - { "04bb", "0938", "WN-G54/USL Wireless LAN Adapter" }, - { "04bb", "093b", "WN-GDN/USB" }, - { "04bb", "093f", "WNGDNUS2 802.11n" }, - { "04bb", "0944", "WHG-AGDN/US Wireless LAN Adapter" }, - { "04bb", "0945", "WN-GDN/US3 Wireless LAN Adapter" }, - { "04bb", "0947", "WN-G150U Wireless LAN Adapter" }, - { "04bb", "0948", "WN-G300U Wireless LAN Adapter" }, - { "04bb", "0a03", "Serial USB-RSAQ1" }, - { "04bb", "0a07", "USB2-iCN Adapter" }, - { "04bb", "0a08", "USB2-iCN Adapter" }, - { "04bb", "0c01", "FM-10 Pro Disk" }, - { "04bf", "0100", "MediaReader CF" }, - { "04bf", "0115", "USB-PDC Adapter UPA9664" }, - { "04bf", "0116", "USB-cdmaOne Adapter UCA1464" }, - { "04bf", "0117", "USB-PHS Adapter UHA6400" }, - { "04bf", "0118", "USB-PHS Adapter UPA6400" }, - { "04bf", "0135", "MediaReader Dual" }, - { "04bf", "0202", "73S1121F Smart Card Reader-" }, - { "04bf", "0309", "Bluetooth USB dongle" }, - { "04bf", "030a", "IBM Bluetooth Ultraport Module" }, - { "04bf", "030b", "Bluetooth Device" }, - { "04bf", "030c", "Ultraport Bluetooth Device" }, - { "04bf", "0310", "Integrated Bluetooth" }, - { "04bf", "0311", "Integrated Bluetooth Device" }, - { "04bf", "0317", "Bluetooth UltraPort Module from IBM" }, - { "04bf", "0318", "IBM Integrated Bluetooth" }, - { "04bf", "0319", "Bluetooth Adapter" }, - { "04bf", "0320", "Bluetooth Adapter" }, - { "04bf", "0321", "Bluetooth Device" }, - { "04bf", "0a28", "INDI AV-IN Device" }, - { "04c1", "0020", "56K Voice Pro" }, - { "04c1", "0022", "56K Voice Pro" }, - { "04c1", "007e", "ISDN TA" }, - { "04c1", "0082", "OfficeConnect Analog Modem" }, - { "04c1", "008f", "Pro ISDN TA" }, - { "04c1", "0097", "OfficeConnect Analog" }, - { "04c1", "009d", "HomeConnect Webcam [vicam]" }, - { "04c1", "00a9", "ISDN Pro TA-U" }, - { "04c1", "00b9", "HomeConnect IDSL Modem" }, - { "04c1", "3021", "56k Voice FaxModem Pro" }, - { "04c3", "1102", "Mouse" }, - { "04c3", "2102", "Mouse" }, - { "04c5", "1029", "fi-4010c Scanner" }, - { "04c5", "1033", "fi-4110CU" }, - { "04c5", "1041", "fi-4120c Scanner" }, - { "04c5", "1042", "fi-4220c Scanner" }, - { "04c5", "105b", "AH-F401U Air H device" }, - { "04c5", "1084", "PalmSecure Sensor V2" }, - { "04c5", "1096", "fi-5110EOX" }, - { "04c5", "1097", "fi-5110C" }, - { "04c5", "10ae", "fi-4120C2" }, - { "04c5", "10af", "fi-4220C2" }, - { "04c5", "10c7", "fi-60f scanner" }, - { "04c5", "10e0", "fi-5120c Scanner" }, - { "04c5", "10e1", "fi-5220C" }, - { "04c5", "10e7", "fi-5900C" }, - { "04c5", "10fe", "S500" }, - { "04c5", "1104", "KD02906 Line Thermal Printer" }, - { "04c5", "114f", "fi-6130" }, - { "04c5", "1150", "fi-6230" }, - { "04c5", "11f3", "fi-6130Z" }, - { "04c5", "125a", "PalmSecure Sensor Device - MP" }, - { "04c5", "132e", "fi-7160" }, - { "04c5", "159f", "ScanSnap iX1500" }, - { "04c5", "200f", "Sigma DP2 (Mass Storage)" }, - { "04c5", "2010", "Sigma DP2 (PictBridge)" }, - { "04c5", "201d", "SATA 3.0 6Gbit/s Adaptor [GROOVY]" }, - { "04c8", "0720", "Digital Color Camera" }, - { "04c8", "0721", "e-miniD Camera" }, - { "04c8", "0722", "e-mini" }, - { "04c8", "0723", "KD-200Z Camera" }, - { "04c8", "0726", "KD-310Z Camera" }, - { "04c8", "0728", "Revio C2 Mass Storage Device" }, - { "04c8", "0729", "Revio C2 Digital Camera" }, - { "04c8", "072c", "Revio KD20M" }, - { "04c8", "072d", "Revio KD410Z" }, - { "04ca", "0020", "USB Keyboard" }, - { "04ca", "004b", "Keyboard" }, - { "04ca", "004f", "SK-9020 keyboard" }, - { "04ca", "008a", "Acer Wired Mouse Model SM-9023" }, - { "04ca", "1766", "HID Monitor Controls" }, - { "04ca", "2004", "Bluetooth 4.0 [Broadcom BCM20702A0]" }, - { "04ca", "2006", "Broadcom BCM43142A0 Bluetooth Device" }, - { "04ca", "2007", "Broadcom BCM43142A0 Bluetooth Device" }, - { "04ca", "3005", "Atheros Bluetooth" }, - { "04ca", "300b", "Atheros AR3012 Bluetooth" }, - { "04ca", "300d", "Atheros AR3012 Bluetooth" }, - { "04ca", "300f", "Atheros AR3012 Bluetooth" }, - { "04ca", "3014", "Qualcomm Atheros Bluetooth" }, - { "04ca", "3015", "Qualcomm Atheros QCA9377 Bluetooth" }, - { "04ca", "7022", "HP HD Webcam" }, - { "04ca", "7025", "HP HD Webcam" }, - { "04ca", "7046", "TOSHIBA Web Camera - HD" }, - { "04ca", "7054", "HP HD Webcam" }, - { "04ca", "9304", "Hub" }, - { "04ca", "f01c", "TT1280DA DVB-T TV Tuner" }, - { "04cb", "0100", "FinePix 30i/40i/50i, A101/201, 1300/2200, 1400/2400/2600/2800/4500/4700/4800/4900/6800/6900 Zoom" }, - { "04cb", "0103", "FinePix NX-500/NX-700 printer" }, - { "04cb", "0104", "FinePix A101, 2600/2800/4800/6800 Zoom (PC CAM)" }, - { "04cb", "0108", "FinePix F601 Zoom (DSC)" }, - { "04cb", "0109", "FinePix F601 Zoom (PC CAM)" }, - { "04cb", "010a", "FinePix S602 (Pro) Zoom (DSC)" }, - { "04cb", "010b", "FinePix S602 (Pro) Zoom (PC CAM)" }, - { "04cb", "010d", "FinePix S2 pro" }, - { "04cb", "010e", "FinePix F402 Zoom (DSC)" }, - { "04cb", "010f", "FinePix F402 Zoom (PC CAM)" }, - { "04cb", "0110", "FinePix M603 Zoom (DSC)" }, - { "04cb", "0111", "FinePix M603 Zoom (PC CAM)" }, - { "04cb", "0112", "FinePix A202, A200 Zoom (DSC)" }, - { "04cb", "0113", "FinePix A202, A200 Zoom (PC CAM)" }, - { "04cb", "0114", "FinePix F401 Zoom (DSC)" }, - { "04cb", "0115", "FinePix F401 Zoom (PC CAM)" }, - { "04cb", "0116", "FinePix A203 Zoom (DSC)" }, - { "04cb", "0117", "FinePix A203 Zoom (PC CAM)" }, - { "04cb", "0118", "FinePix A303 Zoom (DSC)" }, - { "04cb", "0119", "FinePix A303 Zoom (PC CAM)" }, - { "04cb", "011a", "FinePix S304/3800 Zoom (DSC)" }, - { "04cb", "011b", "FinePix S304/3800 Zoom (PC CAM)" }, - { "04cb", "011c", "FinePix A204/2650 Zoom (DSC)" }, - { "04cb", "011d", "FinePix A204/2650 Zoom (PC CAM)" }, - { "04cb", "0120", "FinePix F700 Zoom (DSC)" }, - { "04cb", "0121", "FinePix F700 Zoom (PC CAM)" }, - { "04cb", "0122", "FinePix F410 Zoom (DSC)" }, - { "04cb", "0123", "FinePix F410 Zoom (PC CAM)" }, - { "04cb", "0124", "FinePix A310 Zoom (DSC)" }, - { "04cb", "0125", "FinePix A310 Zoom (PC CAM)" }, - { "04cb", "0126", "FinePix A210 Zoom (DSC)" }, - { "04cb", "0127", "FinePix A210 Zoom (PC CAM)" }, - { "04cb", "0128", "FinePix A205(S) Zoom (DSC)" }, - { "04cb", "0129", "FinePix A205(S) Zoom (PC CAM)" }, - { "04cb", "012a", "FinePix F610 Zoom (DSC)" }, - { "04cb", "012b", "FinePix Digital Camera 030513" }, - { "04cb", "012c", "FinePix S7000 Zoom (DSC)" }, - { "04cb", "012d", "FinePix S7000 Zoom (PC CAM)" }, - { "04cb", "012f", "FinePix Digital Camera 030731" }, - { "04cb", "0130", "FinePix S5000 Zoom (DSC)" }, - { "04cb", "0131", "FinePix S5000 Zoom (PC CAM)" }, - { "04cb", "013b", "FinePix Digital Camera 030722" }, - { "04cb", "013c", "FinePix S3000 Zoom (DSC)" }, - { "04cb", "013d", "FinePix S3000 Zoom (PC CAM)" }, - { "04cb", "013e", "FinePix F420 Zoom (DSC)" }, - { "04cb", "013f", "FinePix F420 Zoom (PC CAM)" }, - { "04cb", "0142", "FinePix S7000 Zoom (PTP)" }, - { "04cb", "0148", "FinePix A330 Zoom (DSC)" }, - { "04cb", "0149", "FinePix A330 Zoom (UVC)" }, - { "04cb", "014a", "FinePix A330 Zoom (PTP)" }, - { "04cb", "014b", "FinePix A340 Zoom (DSC)" }, - { "04cb", "014c", "FinePix A340 Zoom (UVC)" }, - { "04cb", "0159", "FinePix F710 Zoom (DSC)" }, - { "04cb", "0165", "FinePix S3500 Zoom (DSC)" }, - { "04cb", "0168", "FinePix E500 Zoom (DSC)" }, - { "04cb", "0169", "FinePix E500 Zoom (UVC)" }, - { "04cb", "016b", "FinePix E510 Zoom (DSC)" }, - { "04cb", "016c", "FinePix E510 Zoom (PC CAM)" }, - { "04cb", "016e", "FinePix S5500 Zoom (DSC)" }, - { "04cb", "016f", "FinePix S5500 Zoom (UVC)" }, - { "04cb", "0171", "FinePix E550 Zoom (DSC)" }, - { "04cb", "0172", "FinePix E550 Zoom (UVC)" }, - { "04cb", "0177", "FinePix F10 (DSC)" }, - { "04cb", "0179", "Finepix F10 (PTP)" }, - { "04cb", "0186", "FinePix S5200/S5600 Zoom (DSC)" }, - { "04cb", "0188", "FinePix S5200/S5600 Zoom (PTP)" }, - { "04cb", "018e", "FinePix S9500 Zoom (DSC)" }, - { "04cb", "018f", "FinePix S9500 Zoom (PTP)" }, - { "04cb", "0192", "FinePix E900 Zoom (DSC)" }, - { "04cb", "0193", "FinePix E900 Zoom (PTP)" }, - { "04cb", "019b", "FinePix F30 (PTP)" }, - { "04cb", "01af", "FinePix A700 (PTP)" }, - { "04cb", "01bf", "FinePix F6000fd/S6500fd Zoom (PTP)" }, - { "04cb", "01c0", "FinePix F20 (PTP)" }, - { "04cb", "01c1", "FinePix F31fd (PTP)" }, - { "04cb", "01c3", "FinePix S5 Pro" }, - { "04cb", "01c4", "FinePix S5700 Zoom (PTP)" }, - { "04cb", "01c5", "FinePix F40fd (PTP)" }, - { "04cb", "01c6", "FinePix A820 Zoom (PTP)" }, - { "04cb", "01d2", "FinePix A800 Zoom (PTP)" }, - { "04cb", "01d3", "FinePix A920 (PTP)" }, - { "04cb", "01d4", "FinePix F50fd (PTP)" }, - { "04cb", "01d5", "FinePix F47 (PTP)" }, - { "04cb", "01e7", "Fujifilm A850 Digital Camera" }, - { "04cb", "01f7", "FinePix J250 (PTP)" }, - { "04cb", "01fd", "A160" }, - { "04cb", "023e", "FinePix AX300" }, - { "04cb", "0240", "FinePix S2950 Digital Camera" }, - { "04cb", "0241", "FinePix S3200 Digital Camera" }, - { "04cb", "0278", "FinePix JV300" }, - { "04cb", "02c5", "FinePix S9900W Digital Camera (PTP)" }, - { "04cb", "02e0", "X-T200 Digital Camera" }, - { "04cb", "5006", "ASK-300" }, - { "04cb", "5007", "DX100" }, - { "04cc", "1122", "Hub" }, - { "04cc", "1520", "USB 2.0 Hub (Avocent KVM)" }, - { "04cc", "1521", "USB 2.0 Hub" }, - { "04cc", "1a62", "GW Instek GSP-830 Spectrum Analyzer (HID)" }, - { "04cc", "2323", "Ux500 serial debug port" }, - { "04cc", "2533", "NFC device (PN533)" }, - { "04cc", "8116", "Camera" }, - { "04ce", "0002", "SL11R-IDE IDE Bridge" }, - { "04ce", "0100", "USB2PRN Printer Class" }, - { "04ce", "0300", "Phantom 336CX - C3 scanner" }, - { "04ce", "04ce", "SL11DEMO, VID: 0x4ce, PID: 0x4ce" }, - { "04ce", "07d1", "SL11R, VID: 0x4ce, PID: 0x07D1" }, - { "04cf", "0022", "OCZ Alchemy Series Elixir II Keyboard" }, - { "04cf", "0800", "MTP800 Mass Storage Device" }, - { "04cf", "8810", "CS8810 Mass Storage Device" }, - { "04cf", "8811", "CS8811 Mass Storage Device" }, - { "04cf", "8813", "CS8813 Mass Storage Device" }, - { "04cf", "8818", "USB2.0 to ATAPI Bridge Controller" }, - { "04cf", "8819", "USB 2.0 SD/MMC Reader" }, - { "04cf", "9920", "CS8819A2-114 Mass Storage Device" }, - { "04d2", "0070", "ADA70 Speakers" }, - { "04d2", "0305", "Non-Compliant Audio Device" }, - { "04d2", "0311", "ADA-310 Speakers" }, - { "04d2", "2060", "Claritel-i750 - vp" }, - { "04d2", "ff05", "ADA-305 Speakers" }, - { "04d2", "ff47", "Lansing HID Audio Controls" }, - { "04d2", "ff49", "Lansing HID Audio Controls" }, - { "04d7", "1be4", "Bluetooth Device" }, - { "04d8", "0002", "PicoLCD 20x2" }, - { "04d8", "0003", "PICkit 2 Microcontroller Programmer" }, - { "04d8", "000a", "CDC RS-232 Emulation Demo" }, - { "04d8", "000b", "PIC18F2550 (32K Flashable 10 Channel, 10 Bit A/D USB Microcontroller)" }, - { "04d8", "0032", "PICkit1" }, - { "04d8", "0033", "PICkit2" }, - { "04d8", "0036", "PICkit Serial Analyzer" }, - { "04d8", "00e0", "PIC32 Starter Board" }, - { "04d8", "04cd", "28Cxxx EEPROM Programmer" }, - { "04d8", "0a04", "AGP LIN Serial Analyzer" }, - { "04d8", "8000", "In-Circuit Debugger" }, - { "04d8", "8001", "ICD2 in-circuit debugger" }, - { "04d8", "8101", "PIC24F Starter Kit" }, - { "04d8", "8107", "Microstick II" }, - { "04d8", "8108", "ChipKit Pro MX7 (PIC32MX)" }, - { "04d8", "9004", "Microchip REAL ICE" }, - { "04d8", "9009", "ICD3" }, - { "04d8", "900a", "PICkit3" }, - { "04d8", "9012", "PICkit4" }, - { "04d8", "9015", "ICD 4 In-Circuit Debugger" }, - { "04d8", "c001", "PicoLCD 20x4" }, - { "04d8", "e11c", "TL866CS EEPROM Programmer [MiniPRO]" }, - { "04d8", "ed16", "BeamiRC 2.0 CNC remote controller analoge" }, - { "04d8", "edb4", "micro PLC (ATSAMD51G19A) [Black Brix ECU II]" }, - { "04d8", "edb5", "ATMEGA32U4 [Black Brix ECU]" }, - { "04d8", "f2c4", "Macareux-labs Hygrometry Temperature Sensor" }, - { "04d8", "f2f7", "Yepkit YKUSH" }, - { "04d8", "f3aa", "Macareux-labs Usbce Bootloader mode" }, - { "04d8", "f437", "SBE Tech Ultrasonic Anemometer" }, - { "04d8", "f4b5", "SmartScope" }, - { "04d8", "f5fe", "TrueRNG" }, - { "04d8", "f8da", "Hughski Ltd. ColorHug" }, - { "04d8", "f8e8", "Harmony 300/350 Remote" }, - { "04d8", "f91c", "SPROG IIv3" }, - { "04d8", "faff", "Dangerous Prototypes BusPirate v4 Bootloader mode" }, - { "04d8", "fb00", "Dangerous Prototypes BusPirate v4" }, - { "04d8", "fbb2", "GCUSB-nStep stepper motor controller" }, - { "04d8", "fbba", "DiscFerret Magnetic Disc Analyser (bootloader mode)" }, - { "04d8", "fbbb", "DiscFerret Magnetic Disc Analyser (active mode)" }, - { "04d8", "fc1e", "Bachrus Speedometer Interface" }, - { "04d8", "fc92", "Open Bench Logic Sniffer" }, - { "04d8", "ffee", "Devantech USB-ISS" }, - { "04d8", "ffef", "PICoPLC [APStech]" }, - { "04d9", "0006", "Wired Keyboard (78/79 key) [RPI Wired Keyboard 5]" }, - { "04d9", "0022", "Portable Keyboard" }, - { "04d9", "0129", "Keyboard [KBPV8000]" }, - { "04d9", "0348", "Keyboard" }, - { "04d9", "0407", "Keyboard [TEX Shinobi]" }, - { "04d9", "048e", "Optical Mouse" }, - { "04d9", "0499", "Optical Mouse" }, - { "04d9", "1135", "Mouse [MGK-15BU/MLK-15BU]" }, - { "04d9", "1203", "Keyboard" }, - { "04d9", "1400", "PS/2 keyboard + mouse controller" }, - { "04d9", "1503", "Keyboard" }, - { "04d9", "1603", "Keyboard" }, - { "04d9", "1702", "Keyboard LKS02" }, - { "04d9", "1818", "Keyboard [Diatec Filco Majestouch 2]" }, - { "04d9", "2011", "Keyboard [Diatec Filco Majestouch 1]" }, - { "04d9", "2013", "Keyboard [Das Keyboard]" }, - { "04d9", "2206", "Fujitsu Siemens Mouse Esprimo Q" }, - { "04d9", "2221", "Keyboard" }, - { "04d9", "2323", "Keyboard" }, - { "04d9", "2519", "Shenzhen LogoTech 2.4GHz receiver" }, - { "04d9", "2832", "HT82A832R Audio MCU" }, - { "04d9", "2834", "HT82A834R Audio MCU" }, - { "04d9", "4545", "Keyboard [Diatec Majestouch 2 Tenkeyless]" }, - { "04d9", "a01c", "wireless multimedia keyboard with trackball [Trust ADURA 17911]" }, - { "04d9", "a050", "Chatman V1" }, - { "04d9", "a052", "USB-zyTemp" }, - { "04d9", "a055", "Keyboard" }, - { "04d9", "a075", "Optical Gaming Mouse" }, - { "04d9", "a096", "Keyboard" }, - { "04d9", "a09f", "E-Signal LUOM G10 Mechanical Gaming Mouse" }, - { "04d9", "a100", "Mouse [HV-MS735]" }, - { "04d9", "a11b", "Mouse [MX-3200]" }, - { "04d9", "a153", "Optical Gaming Mouse" }, - { "04d9", "a29f", "Microarray fingerprint reader" }, - { "04d9", "b534", "LGT8F328P Microprocessor" }, - { "04d9", "e002", "MCU" }, - { "04d9", "fc2a", "Gaming Mouse [Redragon M709]" }, - { "04d9", "fc30", "Gaming Mouse [Redragon M711]" }, - { "04d9", "fc38", "Gaming Mouse [Redragon M602-RGB]" }, - { "04d9", "fc4d", "Gaming Mouse [Redragon M908]" }, - { "04d9", "fc55", "Venus MMO Gaming Mouse" }, - { "04da", "0901", "LS-120 Camera" }, - { "04da", "0912", "SDR-S10" }, - { "04da", "0b01", "CD-R/RW Drive" }, - { "04da", "0b03", "SuperDisk 240MB" }, - { "04da", "0d01", "CD-R Drive KXL-840AN" }, - { "04da", "0d09", "CD-R Drive KXL-RW32AN" }, - { "04da", "0d0a", "CD-R Drive KXL-CB20AN" }, - { "04da", "0d0d", "CDRCB03" }, - { "04da", "0d0e", "DVD-ROM & CD-R/RW" }, - { "04da", "0d14", "DVD-RAM MLT08" }, - { "04da", "0f07", "KX-MB2030 Multifunction Laser Printer" }, - { "04da", "0f40", "Printer" }, - { "04da", "104d", "Elite Panaboard UB-T880 (HID)" }, - { "04da", "104e", "Elite Panaboard Pen Adaptor (HID)" }, - { "04da", "1500", "MFSUSB Driver" }, - { "04da", "1800", "DY-WL10 802.11abgn Adapter [Broadcom BCM4323]" }, - { "04da", "1b00", "MultiMediaCard" }, - { "04da", "2121", "EB-VS6" }, - { "04da", "2316", "DVC Mass Storage Device" }, - { "04da", "2317", "DVC USB-SERIAL Driver for WinXP" }, - { "04da", "2318", "NV-GS11/230/250 (webcam mode)" }, - { "04da", "2319", "NV-GS15 (webcam mode)" }, - { "04da", "231a", "NV-GS11/230/250 (DV mode)" }, - { "04da", "231d", "DVC Web Camera Device" }, - { "04da", "231e", "DVC DV Stream Device" }, - { "04da", "2372", "Lumix Camera (Storage mode)" }, - { "04da", "2374", "Lumix Camera (PTP mode)" }, - { "04da", "2451", "HDC-SD9" }, - { "04da", "245b", "HC-X920K (3MOS Full HD video camcorder)" }, - { "04da", "2477", "SDR-H85 Camcorder (PC mode)" }, - { "04da", "2478", "SDR-H85 Camcorder (recorder mode - SD card)" }, - { "04da", "2479", "SDR-H85 Camcorder (recorder mode - HDD)" }, - { "04da", "2497", "HDC-TM700" }, - { "04da", "250c", "Gobi Wireless Modem (QDL mode)" }, - { "04da", "250d", "Gobi Wireless Modem" }, - { "04da", "3904", "N5HBZ0000055 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]" }, - { "04da", "3908", "N5HBZ0000062 802.11abgn Wireless Adapter [Atheros AR9374v1.1]" }, - { "04da", "3c04", "JT-P100MR-20 [ePassport Reader]" }, - { "04dd", "13a6", "MFC2000" }, - { "04dd", "6006", "AL-1216" }, - { "04dd", "6007", "AL-1045" }, - { "04dd", "6008", "AL-1255" }, - { "04dd", "6009", "AL-1530CS" }, - { "04dd", "600a", "AL-1540CS" }, - { "04dd", "600b", "AL-1456" }, - { "04dd", "600c", "AL-1555" }, - { "04dd", "600d", "AL-1225" }, - { "04dd", "600e", "AL-1551CS" }, - { "04dd", "600f", "AR-122E" }, - { "04dd", "6010", "AR-152E" }, - { "04dd", "6011", "AR-157E" }, - { "04dd", "6012", "SN-1045" }, - { "04dd", "6013", "SN-1255" }, - { "04dd", "6014", "SN-1456" }, - { "04dd", "6015", "SN-1555" }, - { "04dd", "6016", "AR-153E" }, - { "04dd", "6017", "AR-122E N" }, - { "04dd", "6018", "AR-153E N" }, - { "04dd", "6019", "AR-152E N" }, - { "04dd", "601a", "AR-157E N" }, - { "04dd", "601b", "AL-1217" }, - { "04dd", "601c", "AL-1226" }, - { "04dd", "601d", "AR-123E" }, - { "04dd", "6021", "IS01" }, - { "04dd", "7002", "DVC Ver.1.0" }, - { "04dd", "7004", "VE-CG40U Digital Still Camera" }, - { "04dd", "7005", "VE-CG30 Digital Still Camera" }, - { "04dd", "7007", "VL-Z7S Digital Camcorder" }, - { "04dd", "8004", "Zaurus SL-5000D/SL-5500 PDA" }, - { "04dd", "8005", "Zaurus A-300" }, - { "04dd", "8006", "Zaurus SL-B500/SL-5600 PDA" }, - { "04dd", "8007", "Zaurus C-700 PDA" }, - { "04dd", "9009", "AR-M160" }, - { "04dd", "9014", "IM-DR80 Portable NetMD Player" }, - { "04dd", "9031", "Zaurus C-750/C-760/C-860/SL-C3000 PDA" }, - { "04dd", "9032", "Zaurus SL-6000" }, - { "04dd", "903a", "GSM GPRS" }, - { "04dd", "9050", "Zaurus C-860 PDA" }, - { "04dd", "9056", "Viewcam Z" }, - { "04dd", "9073", "AM-900" }, - { "04dd", "9074", "GSM GPRS" }, - { "04dd", "90a9", "Sharp Composite" }, - { "04dd", "90d0", "USB-to-Serial Comm. Port" }, - { "04dd", "90f2", "Sharp 3G GSM USB Control" }, - { "04dd", "9120", "WS004SH" }, - { "04dd", "9122", "WS007SH" }, - { "04dd", "9123", "W-ZERO3 ES Smartphone" }, - { "04dd", "91a3", "922SH Internet Machine" }, - { "04dd", "939a", "IS03" }, - { "04e1", "0201", "Monitor Hub" }, - { "04e2", "1410", "XR21V1410 USB-UART IC" }, - { "04e6", "0001", "E-USB ATA Bridge" }, - { "04e6", "0002", "eUSCSI SCSI Bridge" }, - { "04e6", "0003", "eUSB SmartMedia Card Reader" }, - { "04e6", "0005", "eUSB SmartMedia/CompactFlash Card Reader" }, - { "04e6", "0006", "eUSB SmartMedia Card Reader" }, - { "04e6", "0007", "Hifd" }, - { "04e6", "0009", "eUSB ATA/ATAPI Adapter" }, - { "04e6", "000a", "eUSB CompactFlash Adapter" }, - { "04e6", "000b", "eUSCSI Bridge" }, - { "04e6", "000c", "eUSCSI Bridge" }, - { "04e6", "000d", "Dazzle MS" }, - { "04e6", "0012", "Dazzle SD/MMC" }, - { "04e6", "0101", "eUSB ATA Bridge (Sony Spressa USB CDRW)" }, - { "04e6", "0311", "Dazzle DM-CF" }, - { "04e6", "0312", "Dazzle DM-SD/MMC" }, - { "04e6", "0313", "Dazzle SM" }, - { "04e6", "0314", "Dazzle MS" }, - { "04e6", "0322", "e-Film Reader-5" }, - { "04e6", "0325", "eUSB ORCA Quad Reader" }, - { "04e6", "0327", "Digital Media Reader" }, - { "04e6", "03fe", "DMHS2 DFU Adapter" }, - { "04e6", "0406", "eUSB SmartDM Reader" }, - { "04e6", "04e6", "eUSB DFU Adapter" }, - { "04e6", "04e7", "STCII DFU Adapter" }, - { "04e6", "04e8", "eUSBDM DFU Adapter" }, - { "04e6", "04e9", "DM-E DFU Adapter" }, - { "04e6", "0500", "Veridicom 5thSense Fingerprint Sensor and eUSB SmartCard" }, - { "04e6", "0701", "DCS200 Loader Device" }, - { "04e6", "0702", "DVD Creation Station 200" }, - { "04e6", "0703", "DVC100 Loader Device" }, - { "04e6", "0704", "Digital Video Creator 100" }, - { "04e6", "1001", "SCR300 Smart Card Reader" }, - { "04e6", "1010", "USBAT-2 CompactFlash Card Reader" }, - { "04e6", "1014", "e-Film Reader-3" }, - { "04e6", "1020", "USBAT ATA/ATAPI Adapter" }, - { "04e6", "2007", "RSA SecurID ComboReader" }, - { "04e6", "2009", "Citibank Smart Card Reader" }, - { "04e6", "200a", "Reflex v.2 Smart Card Reader" }, - { "04e6", "200d", "STR391 Reader" }, - { "04e6", "5111", "SCR331-DI SmartCard Reader" }, - { "04e6", "5113", "SCR333 SmartCard Reader" }, - { "04e6", "5114", "SCR331-DI SmartCard Reader" }, - { "04e6", "5115", "SCR335 SmartCard Reader" }, - { "04e6", "5116", "SCR331-LC1 / SCR3310 SmartCard Reader" }, - { "04e6", "5117", "SCR3320 - Smart Card Reader" }, - { "04e6", "5118", "Expresscard SIM Card Reader" }, - { "04e6", "5119", "SCR3340 - ExpressCard54 Smart Card Reader" }, - { "04e6", "511b", "SmartCard Reader" }, - { "04e6", "511d", "SCR3311 Smart Card Reader" }, - { "04e6", "5120", "SCR331-DI SmartCard Reader" }, - { "04e6", "5121", "SDI010 Smart Card Reader" }, - { "04e6", "5151", "SCR338 Keyboard Smart Card Reader" }, - { "04e6", "5292", "SCL011 RFID reader" }, - { "04e6", "5410", "SCR35xx Smart Card Reader" }, - { "04e6", "5591", "SCL3711-NFC&RW" }, - { "04e6", "5810", "uTrust 2700 R Smart Card Reader" }, - { "04e6", "e000", "SCRx31 Reader" }, - { "04e6", "e001", "SCR331 SmartCard Reader" }, - { "04e6", "e003", "SPR532 PinPad SmartCard Reader" }, - { "04e7", "0001", "TouchScreen" }, - { "04e7", "0002", "Touchmonitor Interface 2600 Rev 2" }, - { "04e7", "0004", "4000U CarrollTouch® Touchmonitor Interface" }, - { "04e7", "0007", "2500U IntelliTouch® Touchmonitor Interface" }, - { "04e7", "0008", "3000U AccuTouch® Touchmonitor Interface" }, - { "04e7", "0009", "4000U CarrollTouch® Touchmonitor Interface" }, - { "04e7", "0020", "Touchscreen Interface (2700)" }, - { "04e7", "0021", "Touchmonitor Interface" }, - { "04e7", "0030", "4500U CarrollTouch® Touchmonitor Interface" }, - { "04e7", "0032", "Touchmonitor Interface" }, - { "04e7", "0033", "Touchmonitor Interface" }, - { "04e7", "0041", "5010 Surface Capacitive Touchmonitor Interface" }, - { "04e7", "0042", "Touchmonitor Interface" }, - { "04e7", "0050", "2216 AccuTouch® Touchmonitor Interface" }, - { "04e7", "0071", "Touchmonitor Interface" }, - { "04e7", "0072", "Touchmonitor Interface" }, - { "04e7", "0081", "Touchmonitor Interface" }, - { "04e7", "0082", "Touchmonitor Interface" }, - { "04e7", "00ff", "Touchmonitor Interface" }, - { "04e8", "0001", "Printer Bootloader" }, - { "04e8", "0100", "Kingston Flash Drive (128MB)" }, - { "04e8", "0110", "Connect3D Flash Drive" }, - { "04e8", "0111", "Connect3D Flash Drive" }, - { "04e8", "0300", "E2530 / GT-C3350 Phones (Mass storage mode)" }, - { "04e8", "04e8", "Galaxy (MIDI mode)" }, - { "04e8", "1003", "MP3 Player and Recorder" }, - { "04e8", "1006", "SDC-200Z" }, - { "04e8", "130c", "NX100" }, - { "04e8", "1323", "WB700 Camera" }, - { "04e8", "1f05", "S2 Portable [JMicron] (500GB)" }, - { "04e8", "1f06", "HX-MU064DA portable harddisk" }, - { "04e8", "2018", "WIS09ABGN LinkStick Wireless LAN Adapter" }, - { "04e8", "2035", "Digital Photo Frame Mass Storage" }, - { "04e8", "2036", "Digital Photo Frame Mini Monitor" }, - { "04e8", "3004", "ML-4600" }, - { "04e8", "3005", "Docuprint P1210" }, - { "04e8", "3008", "ML-6060 laser printer" }, - { "04e8", "300c", "ML-1210 Printer" }, - { "04e8", "300e", "Laser Printer" }, - { "04e8", "3104", "ML-3550N" }, - { "04e8", "3210", "ML-5200A Laser Printer" }, - { "04e8", "3226", "Laser Printer" }, - { "04e8", "3228", "Laser Printer" }, - { "04e8", "322a", "Laser Printer" }, - { "04e8", "322c", "Laser Printer" }, - { "04e8", "3230", "ML-1440" }, - { "04e8", "3232", "Laser Printer" }, - { "04e8", "3236", "ML-1450" }, - { "04e8", "3238", "ML-1430" }, - { "04e8", "323a", "ML-1710 Printer" }, - { "04e8", "323b", "Phaser 3130" }, - { "04e8", "323c", "Laser Printer" }, - { "04e8", "323d", "Phaser 3120" }, - { "04e8", "323e", "Laser Printer" }, - { "04e8", "3240", "Laser Printer" }, - { "04e8", "3242", "ML-1510 Laser Printer" }, - { "04e8", "3248", "Color Laser Printer" }, - { "04e8", "324a", "Laser Printer" }, - { "04e8", "324c", "ML-1740 Printer" }, - { "04e8", "324d", "Phaser 3121" }, - { "04e8", "3256", "ML-1520 Laser Printer" }, - { "04e8", "325b", "Xerox Phaser 3117 Laser Printer" }, - { "04e8", "325f", "Phaser 3425 Laser Printer" }, - { "04e8", "3260", "CLP-510 Color Laser Printer" }, - { "04e8", "3268", "ML-1610 Mono Laser Printer" }, - { "04e8", "326c", "ML-2010P Mono Laser Printer" }, - { "04e8", "3276", "ML-3050/ML-3051 Laser Printer" }, - { "04e8", "327e", "ML-2510 Series" }, - { "04e8", "328e", "CLP-310 Color Laser Printer" }, - { "04e8", "3292", "ML-1640 Series Laser Printer" }, - { "04e8", "3296", "ML-2580N Mono Laser Printer" }, - { "04e8", "3297", "ML-191x/ML-252x Laser Printer" }, - { "04e8", "329f", "CLP-325 Color Laser Printer" }, - { "04e8", "3301", "ML-1660 Series" }, - { "04e8", "330c", "ML-1865" }, - { "04e8", "330f", "ML-216x Series Laser Printer" }, - { "04e8", "3310", "ML-331x Series Laser Printer" }, - { "04e8", "3315", "ML-2540 Series Laser Printer" }, - { "04e8", "331e", "M262x/M282x Xpress Series Laser Printer" }, - { "04e8", "3409", "SCX-4216F Scanner" }, - { "04e8", "340c", "SCX-5x15 series" }, - { "04e8", "340d", "SCX-6x20 series" }, - { "04e8", "340e", "MFP 560 series" }, - { "04e8", "340f", "Printing Support" }, - { "04e8", "3412", "SCX-4x20 series" }, - { "04e8", "3413", "SCX-4100 Scanner" }, - { "04e8", "3415", "Composite Device" }, - { "04e8", "3419", "Composite Device" }, - { "04e8", "341a", "Printing Support" }, - { "04e8", "341b", "SCX-4200 series" }, - { "04e8", "341c", "Composite Device" }, - { "04e8", "341d", "Composite Device" }, - { "04e8", "341f", "Composite Device" }, - { "04e8", "3420", "Composite Device" }, - { "04e8", "3426", "SCX-4500 Laser Printer" }, - { "04e8", "342d", "SCX-4x28 Series" }, - { "04e8", "344f", "SCX-3400 Series" }, - { "04e8", "347e", "C48x Series Color Laser Multifunction Printer" }, - { "04e8", "3605", "InkJet Color Printer" }, - { "04e8", "3606", "InkJet Color Printer" }, - { "04e8", "3609", "InkJet Color Printer" }, - { "04e8", "3902", "InkJet Color Printer" }, - { "04e8", "3903", "Xerox WorkCentre XK50cx" }, - { "04e8", "390f", "InkJet Color Printer" }, - { "04e8", "3911", "SCX-1020 series" }, - { "04e8", "4001", "PSSD T7" }, - { "04e8", "4005", "GT-S8000 Jet (msc)" }, - { "04e8", "4f1f", "GT-S8000 Jet (mtp)" }, - { "04e8", "5000", "YP-MF series" }, - { "04e8", "5001", "YP-100" }, - { "04e8", "5002", "YP-30" }, - { "04e8", "5003", "YP-700" }, - { "04e8", "5004", "YP-30" }, - { "04e8", "5005", "YP-300" }, - { "04e8", "5006", "YP-750" }, - { "04e8", "500d", "MP3 Player" }, - { "04e8", "5010", "Yepp YP-35" }, - { "04e8", "5011", "YP-780" }, - { "04e8", "5013", "YP-60" }, - { "04e8", "5015", "yepp upgrade" }, - { "04e8", "501b", "MP3 Player" }, - { "04e8", "5021", "Yepp YP-ST5" }, - { "04e8", "5026", "YP-MT6V" }, - { "04e8", "5027", "YP-T7" }, - { "04e8", "502b", "YP-F1" }, - { "04e8", "5032", "YP-J70" }, - { "04e8", "503b", "YP-U1 MP3 Player" }, - { "04e8", "503d", "YP-T7F" }, - { "04e8", "5041", "YP-Z5" }, - { "04e8", "5050", "YP-U2 MP3 Player" }, - { "04e8", "5051", "YP-F2R" }, - { "04e8", "5055", "YP-T9" }, - { "04e8", "507d", "YP-U3 (mtp)" }, - { "04e8", "507f", "YP-T9J" }, - { "04e8", "5080", "Yepp YP-K3 (msc)" }, - { "04e8", "5081", "Yepp YP-K3 (mtp)" }, - { "04e8", "5082", "YP-P2 (msc)" }, - { "04e8", "5083", "YP-P2 (mtp)" }, - { "04e8", "508a", "YP-T10" }, - { "04e8", "508b", "YP-S5 MP3 Player" }, - { "04e8", "508c", "YP-S5" }, - { "04e8", "5090", "YP-S3 (msc)" }, - { "04e8", "5091", "YP-S3 (mtp)" }, - { "04e8", "5092", "YP-U4 (msc)" }, - { "04e8", "5093", "YP-U4 (mtp)" }, - { "04e8", "5095", "YP-S2" }, - { "04e8", "510f", "YP-R1" }, - { "04e8", "5119", "Yepp YP-P3" }, - { "04e8", "511c", "YP-Q2" }, - { "04e8", "5121", "YP-U5" }, - { "04e8", "5123", "Yepp YP-M1" }, - { "04e8", "5a00", "YP-NEU" }, - { "04e8", "5a01", "YP-NDU" }, - { "04e8", "5a03", "Yepp MP3 Player" }, - { "04e8", "5a04", "YP-800" }, - { "04e8", "5a08", "YP-90" }, - { "04e8", "5a0f", "Meizu M6 MiniPlayer" }, - { "04e8", "5b01", "Memory Stick Reader/Writer" }, - { "04e8", "5b02", "Memory Stick Reader/Writer" }, - { "04e8", "5b03", "Memory Stick Reader/Writer" }, - { "04e8", "5b04", "Memory Stick Reader/Writer" }, - { "04e8", "5b05", "Memory Stick Reader/Writer" }, - { "04e8", "5b11", "SEW-2001u Card" }, - { "04e8", "5f00", "NEXiO Sync" }, - { "04e8", "5f01", "NEXiO Sync" }, - { "04e8", "5f02", "NEXiO Sync" }, - { "04e8", "5f03", "NEXiO Sync" }, - { "04e8", "5f04", "NEXiO Sync" }, - { "04e8", "5f05", "STORY Station 1TB" }, - { "04e8", "6032", "G2 Portable hard drive" }, - { "04e8", "6033", "G2 Portable device" }, - { "04e8", "6034", "G2 Portable hard drive" }, - { "04e8", "60b3", "M2 Portable Hard Drive" }, - { "04e8", "60c4", "M2 Portable Hard Drive USB 3.0" }, - { "04e8", "6124", "D3 Station External Hard Drive" }, - { "04e8", "6125", "D3 Station External Hard Drive" }, - { "04e8", "61b5", "M3 Portable Hard Drive 2TB" }, - { "04e8", "61b6", "M3 Portable Hard Drive 1TB" }, - { "04e8", "61b7", "M3 Portable Hard Drive 4TB" }, - { "04e8", "61f3", "Portable SSD T3 (MU-PT250B, MU-PT500B)" }, - { "04e8", "61f5", "Portable SSD T5" }, - { "04e8", "6601", "Mobile Phone" }, - { "04e8", "6602", "Galaxy" }, - { "04e8", "6603", "Galaxy" }, - { "04e8", "6611", "MITs Sync" }, - { "04e8", "6613", "MITs Sync" }, - { "04e8", "6615", "MITs Sync" }, - { "04e8", "6617", "MITs Sync" }, - { "04e8", "6619", "MITs Sync" }, - { "04e8", "661b", "MITs Sync" }, - { "04e8", "661e", "Handheld" }, - { "04e8", "6620", "Handheld" }, - { "04e8", "6622", "Handheld" }, - { "04e8", "6624", "Handheld" }, - { "04e8", "662e", "MITs Sync" }, - { "04e8", "6630", "MITs Sync" }, - { "04e8", "6632", "MITs Sync" }, - { "04e8", "663e", "D900e/B2100 Phone" }, - { "04e8", "663f", "SGH-E720/SGH-E840" }, - { "04e8", "6640", "Usb Modem Enumerator" }, - { "04e8", "6651", "i8510 Innov8" }, - { "04e8", "6702", "X830" }, - { "04e8", "6708", "U600 Phone" }, - { "04e8", "6709", "U600" }, - { "04e8", "6734", "Juke" }, - { "04e8", "6759", "D900e/B2100 Media Player" }, - { "04e8", "675a", "D900e/B2100 Mass Storage" }, - { "04e8", "675b", "D900e Camera" }, - { "04e8", "6772", "Standalone LTE device (Trial)" }, - { "04e8", "6795", "S5230" }, - { "04e8", "6802", "Standalone HSPA device" }, - { "04e8", "6806", "Composite LTE device (Trial)" }, - { "04e8", "6807", "Composite HSPA device" }, - { "04e8", "681c", "Galaxy Portal/Spica/S" }, - { "04e8", "681d", "Galaxy Portal/Spica Android Phone" }, - { "04e8", "6843", "E2530 Phone (Samsung Kies mode)" }, - { "04e8", "684e", "Wave (GT-S8500)" }, - { "04e8", "685b", "GT-I9100 Phone [Galaxy S II] (mass storage mode)" }, - { "04e8", "685c", "GT-I9250 Phone [Galaxy Nexus] (Mass storage mode)" }, - { "04e8", "685d", "GT-I9100 Phone [Galaxy S II] (Download mode)" }, - { "04e8", "685e", "GT-I9100 / GT-C3350 Phones (USB Debugging mode)" }, - { "04e8", "6860", "Galaxy A5 (MTP)" }, - { "04e8", "6863", "Galaxy series, misc. (tethering mode)" }, - { "04e8", "6864", "GT-I9070 (network tethering, USB debugging enabled)" }, - { "04e8", "6865", "Galaxy (PTP mode)" }, - { "04e8", "6866", "Galaxy (debugging mode)" }, - { "04e8", "6868", "Escape Composite driver for Android Phones: Modem+Diagnostic+ADB" }, - { "04e8", "6875", "GT-B3710 Standalone LTE device (Commercial)" }, - { "04e8", "6876", "GT-B3710 LTE Modem" }, - { "04e8", "6877", "Galaxy S" }, - { "04e8", "687a", "GT-E2370 mobile phone" }, - { "04e8", "6888", "GT-B3730 Composite LTE device (Commercial)" }, - { "04e8", "6889", "GT-B3730 Composite LTE device (Commercial)" }, - { "04e8", "689a", "LTE Storage Driver [CMC2xx]" }, - { "04e8", "689e", "GT-S5670 [Galaxy Fit]" }, - { "04e8", "68aa", "Reality" }, - { "04e8", "7011", "SEW-2003U Card" }, - { "04e8", "7021", "Bluetooth Device" }, - { "04e8", "7061", "eHome Infrared Receiver" }, - { "04e8", "7080", "Anycall SCH-W580" }, - { "04e8", "7081", "Human Interface Device" }, - { "04e8", "7301", "Fingerprint Device" }, - { "04e8", "8001", "Handheld" }, - { "04e8", "8002", "Portable SSD 500GB Model Number: MU - P8500B" }, - { "04e8", "8003", "Portable SSD T1" }, - { "04e8", "d003", "GT-I9003" }, - { "04e8", "e020", "SERI E02 SCOM 6200 UMTS Phone" }, - { "04e8", "e021", "SERI E02 SCOM 6200 Virtual UARTs" }, - { "04e8", "e022", "SERI E02 SCOM 6200 Flash Load Disk" }, - { "04e8", "f000", "Intensity 3 (Mass Storage Mode)" }, - { "04e8", "ff30", "SG_iMON" }, - { "04eb", "e004", "eHome Infrared Transceiver" }, - { "04f1", "0001", "GC-QX3 Digital Still Camera" }, - { "04f1", "0004", "GR-DVL815U Digital Video Camera" }, - { "04f1", "0006", "DV Camera Storage" }, - { "04f1", "0008", "GZ-MG30AA/MC500E Digital Video Camera" }, - { "04f1", "0009", "GR-DX25EK Digital Video Camera" }, - { "04f1", "000a", "GR-D72 Digital Video Camera" }, - { "04f1", "1001", "GC-A50 Camera Device" }, - { "04f1", "3008", "MP-PRX1 Ethernet" }, - { "04f1", "3009", "MP-XP7250 WLAN Adapter" }, - { "04f2", "0001", "KU-8933 Keyboard" }, - { "04f2", "0002", "NT68P81 Keyboard" }, - { "04f2", "0110", "KU-2971 Keyboard" }, - { "04f2", "0111", "KU-9908 Keyboard" }, - { "04f2", "0112", "KU-8933 Keyboard with PS/2 Mouse port" }, - { "04f2", "0116", "KU-2971/KU-0325 Keyboard" }, - { "04f2", "0200", "KBR-0108" }, - { "04f2", "0201", "Gaming Keyboard KPD0250" }, - { "04f2", "0220", "Wireless HID Receiver" }, - { "04f2", "0402", "Genius LuxeMate i200 Keyboard" }, - { "04f2", "0403", "KU-0420 keyboard" }, - { "04f2", "0418", "KU-0418 Tactical Pad" }, - { "04f2", "0618", "RG-0618U Wireless HID Receiver & KG-0609 Wireless Keyboard with Touchpad" }, - { "04f2", "0718", "wired mouse" }, - { "04f2", "0760", "Acer KU-0760 Keyboard" }, - { "04f2", "0833", "KU-0833 Keyboard" }, - { "04f2", "0841", "HP Multimedia Keyboard" }, - { "04f2", "0860", "2.4G Multimedia Wireless Kit" }, - { "04f2", "0939", "Amazon Basics mouse" }, - { "04f2", "1061", "HP KG-1061 Wireless Keyboard+Mouse" }, - { "04f2", "1121", "Periboard 717 Mini Wireless Keyboard" }, - { "04f2", "a001", "E-Video DC-100 Camera" }, - { "04f2", "a120", "ORITE CCD Webcam(PC370R)" }, - { "04f2", "a121", "ORITE CCD Webcam(PC370R)" }, - { "04f2", "a122", "ORITE CCD Webcam(PC370R)" }, - { "04f2", "a123", "ORITE CCD Webcam(PC370R)" }, - { "04f2", "a124", "ORITE CCD Webcam(PC370R)" }, - { "04f2", "a128", "PC Camera (SN9C202 + OV7663 + EEPROM)" }, - { "04f2", "a133", "Gateway Webcam" }, - { "04f2", "a136", "LabTec Webcam 5500" }, - { "04f2", "a147", "Medion Webcam" }, - { "04f2", "a204", "DSC WIA Device (1300)" }, - { "04f2", "a208", "DSC WIA Device (2320)" }, - { "04f2", "a209", "Labtec DC-2320" }, - { "04f2", "a20a", "DSC WIA Device (3310)" }, - { "04f2", "a20c", "DSC WIA Device (3320)" }, - { "04f2", "a210", "Audio Device" }, - { "04f2", "b008", "USB 2.0 Camera" }, - { "04f2", "b009", "Integrated Camera" }, - { "04f2", "b010", "Integrated Camera" }, - { "04f2", "b012", "1.3 MPixel UVC Webcam" }, - { "04f2", "b013", "USB 2.0 Camera" }, - { "04f2", "b015", "VGA 24fps UVC Webcam" }, - { "04f2", "b016", "VGA 30fps UVC Webcam" }, - { "04f2", "b018", "2M UVC Webcam" }, - { "04f2", "b021", "ViewSonic 1.3M, USB2.0 Webcam" }, - { "04f2", "b022", "Gateway USB 2.0 Webcam" }, - { "04f2", "b023", "Gateway USB 2.0 Webcam" }, - { "04f2", "b024", "USB 2.0 Webcam" }, - { "04f2", "b025", "Camera" }, - { "04f2", "b027", "Gateway USB 2.0 Webcam" }, - { "04f2", "b028", "VGA UVC Webcam" }, - { "04f2", "b029", "1.3M UVC Webcam" }, - { "04f2", "b036", "Asus Integrated 0.3M UVC Webcam" }, - { "04f2", "b044", "Acer CrystalEye Webcam" }, - { "04f2", "b057", "integrated USB webcam" }, - { "04f2", "b059", "CKF7037 HP webcam" }, - { "04f2", "b064", "CNA7137 Integrated Webcam" }, - { "04f2", "b070", "Camera" }, - { "04f2", "b071", "2.0M UVC Webcam / CNF7129" }, - { "04f2", "b083", "CKF7063 Webcam (HP)" }, - { "04f2", "b091", "Webcam" }, - { "04f2", "b104", "CNF7069 Webcam" }, - { "04f2", "b107", "CNF7070 Webcam" }, - { "04f2", "b14c", "CNF8050 Webcam" }, - { "04f2", "b159", "CNF8243 Webcam" }, - { "04f2", "b15c", "Sony Vaio Integrated Camera" }, - { "04f2", "b175", "4-Port Hub" }, - { "04f2", "b1aa", "Webcam-101" }, - { "04f2", "b1ac", "HP Laptop Integrated Webcam [2 MP Fixed]" }, - { "04f2", "b1b4", "Lenovo Integrated Camera" }, - { "04f2", "b1b9", "Asus Integrated Webcam" }, - { "04f2", "b1bb", "2.0M UVC WebCam" }, - { "04f2", "b1cf", "Lenovo Integrated Camera" }, - { "04f2", "b1d6", "CNF9055 Toshiba Webcam" }, - { "04f2", "b1d8", "1.3M Webcam" }, - { "04f2", "b1e4", "Toshiba Integrated Webcam" }, - { "04f2", "b213", "Fujitsu Integrated Camera" }, - { "04f2", "b217", "Lenovo Integrated Camera (0.3MP)" }, - { "04f2", "b221", "integrated camera" }, - { "04f2", "b230", "Integrated HP HD Webcam" }, - { "04f2", "b249", "HP Integrated Webcam" }, - { "04f2", "b257", "Lenovo Integrated Camera" }, - { "04f2", "b26b", "Sony Visual Communication Camera" }, - { "04f2", "b272", "Lenovo EasyCamera" }, - { "04f2", "b2b0", "Camera" }, - { "04f2", "b2b9", "Lenovo Integrated Camera UVC" }, - { "04f2", "b2da", "thinkpad t430s camera" }, - { "04f2", "b2db", "Thinkpad T430 camera" }, - { "04f2", "b2ea", "Integrated Camera [ThinkPad]" }, - { "04f2", "b2f4", "HP Webcam-50" }, - { "04f2", "b330", "Asus 720p CMOS webcam" }, - { "04f2", "b354", "UVC 1.00 device HD UVC WebCam" }, - { "04f2", "b394", "Integrated Camera" }, - { "04f2", "b3eb", "HP 720p HD Monitor Webcam" }, - { "04f2", "b3f6", "HD WebCam (Acer)" }, - { "04f2", "b3fd", "HD WebCam (Asus N-series)" }, - { "04f2", "b40e", "HP Truevision HD camera" }, - { "04f2", "b420", "Lenovo EasyCamera" }, - { "04f2", "b444", "Lenovo Integrated Webcam" }, - { "04f2", "b49f", "Bluetooth (RTL8723BE)" }, - { "04f2", "b563", "Integrated Camera" }, - { "04f2", "b5ab", "Integrated Camera" }, - { "04f2", "b5ac", "Integrated IR Camera" }, - { "04f2", "b5ce", "Integrated Camera" }, - { "04f2", "b5cf", "Integrated IR Camera" }, - { "04f2", "b5db", "HP Webcam" }, - { "04f2", "b604", "Integrated Camera (1280x720@30)" }, - { "04f2", "b681", "ThinkPad T490 Webcam" }, - { "04f3", "000a", "Touchscreen" }, - { "04f3", "0103", "ActiveJet K-2024 Multimedia Keyboard" }, - { "04f3", "016f", "Touchscreen" }, - { "04f3", "01a4", "Wireless Keyboard" }, - { "04f3", "0201", "Touchscreen" }, - { "04f3", "0210", "Optical Mouse" }, - { "04f3", "0212", "Laser Mouse" }, - { "04f3", "0214", "Lynx M9 Optical Mouse" }, - { "04f3", "0230", "3D Optical Mouse" }, - { "04f3", "0232", "Mouse" }, - { "04f3", "0234", "Optical Mouse" }, - { "04f3", "0235", "Optical Mouse" }, - { "04f3", "02f4", "2.4G Cordless Mouse" }, - { "04f3", "0381", "Touchscreen" }, - { "04f3", "04a0", "Dream Cheeky Stress/Panic Button" }, - { "04f3", "0c28", "fingerprint sensor [FeinTech FPS00200]" }, - { "04f3", "2234", "Touchscreen" }, - { "04f9", "0002", "HL-1050 Laser Printer" }, - { "04f9", "0005", "Printer" }, - { "04f9", "0006", "HL-1240 Laser Printer" }, - { "04f9", "0007", "HL-1250 Laser Printer" }, - { "04f9", "0008", "HL-1270 Laser Printer" }, - { "04f9", "0009", "Printer" }, - { "04f9", "000a", "P2500 series" }, - { "04f9", "000b", "Printer" }, - { "04f9", "000c", "Printer" }, - { "04f9", "000d", "HL-1440 Laser Printer" }, - { "04f9", "000e", "HL-1450 series" }, - { "04f9", "000f", "HL-1470N series" }, - { "04f9", "0010", "Printer" }, - { "04f9", "0011", "Printer" }, - { "04f9", "0012", "Printer" }, - { "04f9", "0013", "Printer" }, - { "04f9", "0014", "Printer" }, - { "04f9", "0015", "Printer" }, - { "04f9", "0016", "Printer" }, - { "04f9", "0017", "Printer" }, - { "04f9", "0018", "Printer" }, - { "04f9", "001a", "HL-1430 Laser Printer" }, - { "04f9", "001c", "Printer" }, - { "04f9", "001e", "Printer" }, - { "04f9", "0020", "HL-5130 series" }, - { "04f9", "0021", "HL-5140 series" }, - { "04f9", "0022", "HL-5150D series" }, - { "04f9", "0023", "HL-5170DN series" }, - { "04f9", "0024", "Printer" }, - { "04f9", "0025", "Printer" }, - { "04f9", "0027", "HL-2030 Laser Printer" }, - { "04f9", "0028", "Printer" }, - { "04f9", "0029", "Printer" }, - { "04f9", "002a", "HL-52x0 series" }, - { "04f9", "002b", "HL-5250DN Printer" }, - { "04f9", "002c", "Printer" }, - { "04f9", "002d", "Printer" }, - { "04f9", "0037", "HL-3040CN series" }, - { "04f9", "0038", "HL-3070CW series" }, - { "04f9", "0039", "HL-5340 series" }, - { "04f9", "0041", "HL-2250DN Laser Printer" }, - { "04f9", "0042", "HL-2270DW Laser Printer" }, - { "04f9", "004d", "HL-6180DW series" }, - { "04f9", "0080", "HL-L6250DN series" }, - { "04f9", "0100", "MFC8600/9650 series" }, - { "04f9", "0101", "MFC9600/9870 series" }, - { "04f9", "0102", "MFC9750/1200 series" }, - { "04f9", "0104", "MFC-8300J" }, - { "04f9", "0105", "MFC-9600J" }, - { "04f9", "0106", "MFC-7300C" }, - { "04f9", "0107", "MFC-7400C" }, - { "04f9", "0108", "MFC-9200C" }, - { "04f9", "0109", "MFC-830" }, - { "04f9", "010a", "MFC-840" }, - { "04f9", "010b", "MFC-860" }, - { "04f9", "010c", "MFC-7400J" }, - { "04f9", "010d", "MFC-9200J" }, - { "04f9", "010e", "MFC-3100C Scanner" }, - { "04f9", "010f", "MFC-5100C" }, - { "04f9", "0110", "MFC-4800 Scanner" }, - { "04f9", "0111", "MFC-6800" }, - { "04f9", "0112", "DCP1000 Port(FaxModem)" }, - { "04f9", "0113", "MFC-8500" }, - { "04f9", "0114", "MFC9700 Port(FaxModem)" }, - { "04f9", "0115", "MFC-9800 Scanner" }, - { "04f9", "0116", "DCP1400 Scanner" }, - { "04f9", "0119", "MFC-9660" }, - { "04f9", "011a", "MFC-9860" }, - { "04f9", "011b", "MFC-9880" }, - { "04f9", "011c", "MFC-9760" }, - { "04f9", "011d", "MFC-9070" }, - { "04f9", "011e", "MFC-9180" }, - { "04f9", "011f", "MFC-9160" }, - { "04f9", "0120", "MFC580 Port(FaxModem)" }, - { "04f9", "0121", "MFC-590" }, - { "04f9", "0122", "MFC-5100J" }, - { "04f9", "0124", "MFC-4800J" }, - { "04f9", "0125", "MFC-6800J" }, - { "04f9", "0127", "MFC-9800J" }, - { "04f9", "0128", "MFC-8500J" }, - { "04f9", "0129", "Imagistics 2500 (MFC-8640D clone)" }, - { "04f9", "012b", "MFC-9030" }, - { "04f9", "012e", "FAX4100e IntelliFax 4100e" }, - { "04f9", "012f", "FAX-4750e" }, - { "04f9", "0130", "FAX-5750e" }, - { "04f9", "0132", "MFC-5200C RemovableDisk" }, - { "04f9", "0135", "MFC-100 Scanner" }, - { "04f9", "0136", "MFC-150CL Scanner" }, - { "04f9", "013c", "MFC-890 Port" }, - { "04f9", "013d", "MFC-5200J" }, - { "04f9", "013e", "MFC-4420C RemovableDisk" }, - { "04f9", "013f", "MFC-4820C RemovableDisk" }, - { "04f9", "0140", "DCP-8020" }, - { "04f9", "0141", "DCP-8025D" }, - { "04f9", "0142", "MFC-8420" }, - { "04f9", "0143", "MFC-8820D" }, - { "04f9", "0144", "DCP-4020C RemovableDisk" }, - { "04f9", "0146", "MFC-3220C" }, - { "04f9", "0147", "FAX-1820C Printer" }, - { "04f9", "0148", "MFC-3320CN" }, - { "04f9", "0149", "FAX-1920CN Printer" }, - { "04f9", "014a", "MFC-3420C" }, - { "04f9", "014b", "MFC-3820CN" }, - { "04f9", "014c", "DCP-3020C" }, - { "04f9", "014d", "FAX-1815C Printer" }, - { "04f9", "014e", "MFC-8820J" }, - { "04f9", "014f", "DCP-8025J" }, - { "04f9", "0150", "MFC-8220 Port(FaxModem)" }, - { "04f9", "0151", "MFC-8210J" }, - { "04f9", "0153", "DCP-1000J" }, - { "04f9", "0157", "MFC-3420J Printer" }, - { "04f9", "0158", "MFC-3820JN Port(FaxModem)" }, - { "04f9", "015d", "MFC Composite Device" }, - { "04f9", "015e", "DCP-8045D" }, - { "04f9", "015f", "MFC-8440" }, - { "04f9", "0160", "MFC-8840D" }, - { "04f9", "0161", "MFC-210C" }, - { "04f9", "0162", "MFC-420CN Remote Setup Port" }, - { "04f9", "0163", "MFC-410CN RemovableDisk" }, - { "04f9", "0165", "MFC-620CN" }, - { "04f9", "0166", "MFC-610CLN RemovableDisk" }, - { "04f9", "0168", "MFC-620CLN" }, - { "04f9", "0169", "DCP-110C RemovableDisk" }, - { "04f9", "016b", "DCP-310CN RemovableDisk" }, - { "04f9", "016c", "FAX-2440C Printer" }, - { "04f9", "016d", "MFC-5440CN" }, - { "04f9", "016e", "MFC-5840CN Remote Setup Port" }, - { "04f9", "0170", "FAX-1840C Printer" }, - { "04f9", "0171", "FAX-1835C Printer" }, - { "04f9", "0172", "FAX-1940CN Printer" }, - { "04f9", "0173", "MFC-3240C Remote Setup Port" }, - { "04f9", "0174", "MFC-3340CN RemovableDisk" }, - { "04f9", "017b", "Imagistics sx2100" }, - { "04f9", "0180", "MFC-7420" }, - { "04f9", "0181", "MFC-7820N Port(FaxModem)" }, - { "04f9", "0182", "DCP-7010" }, - { "04f9", "0183", "DCP-7020" }, - { "04f9", "0184", "DCP-7025 Printer" }, - { "04f9", "0185", "MFC-7220 Printer" }, - { "04f9", "0186", "Composite Device" }, - { "04f9", "0187", "FAX-2820 Printer" }, - { "04f9", "0188", "FAX-2920 Printer" }, - { "04f9", "018a", "MFC-9420CN" }, - { "04f9", "018c", "DCP-115C" }, - { "04f9", "018d", "DCP-116C" }, - { "04f9", "018e", "DCP-117C" }, - { "04f9", "018f", "DCP-118C" }, - { "04f9", "0190", "DCP-120C" }, - { "04f9", "0191", "DCP-315CN" }, - { "04f9", "0192", "DCP-340CW" }, - { "04f9", "0193", "MFC-215C" }, - { "04f9", "0194", "MFC-425CN" }, - { "04f9", "0195", "MFC-820CW Remote Setup Port" }, - { "04f9", "0196", "MFC-820CN Remote Setup Port" }, - { "04f9", "0197", "MFC-640CW" }, - { "04f9", "019a", "MFC-840CLN Remote Setup Port" }, - { "04f9", "01a2", "MFC-8640D" }, - { "04f9", "01a3", "Composite Device" }, - { "04f9", "01a4", "DCP-8065DN Printer" }, - { "04f9", "01a5", "MFC-8460N Port(FaxModem)" }, - { "04f9", "01a6", "MFC-8860DN Port(FaxModem)" }, - { "04f9", "01a7", "MFC-8870DW Printer" }, - { "04f9", "01a8", "DCP-130C" }, - { "04f9", "01a9", "DCP-330C" }, - { "04f9", "01aa", "DCP-540CN" }, - { "04f9", "01ab", "MFC-240C" }, - { "04f9", "01ae", "DCP-750CW RemovableDisk" }, - { "04f9", "01af", "MFC-440CN" }, - { "04f9", "01b0", "MFC-660CN" }, - { "04f9", "01b1", "MFC-665CW" }, - { "04f9", "01b2", "MFC-845CW" }, - { "04f9", "01b4", "MFC-460CN" }, - { "04f9", "01b5", "MFC-630CD" }, - { "04f9", "01b6", "MFC-850CDN" }, - { "04f9", "01b7", "MFC-5460CN" }, - { "04f9", "01b8", "MFC-5860CN" }, - { "04f9", "01ba", "MFC-3360C" }, - { "04f9", "01bd", "MFC-8660DN" }, - { "04f9", "01be", "DCP-750CN RemovableDisk" }, - { "04f9", "01bf", "MFC-860CDN" }, - { "04f9", "01c0", "DCP-128C" }, - { "04f9", "01c1", "DCP-129C" }, - { "04f9", "01c2", "DCP-131C" }, - { "04f9", "01c3", "DCP-329C" }, - { "04f9", "01c4", "DCP-331C" }, - { "04f9", "01c5", "MFC-239C" }, - { "04f9", "01c9", "DCP-9040CN" }, - { "04f9", "01ca", "MFC-9440CN" }, - { "04f9", "01cb", "DCP-9045CDN" }, - { "04f9", "01cc", "MFC-9840CDW" }, - { "04f9", "01ce", "DCP-135C" }, - { "04f9", "01cf", "DCP-150C" }, - { "04f9", "01d0", "DCP-350C" }, - { "04f9", "01d1", "DCP-560CN" }, - { "04f9", "01d2", "DCP-770CW" }, - { "04f9", "01d3", "DCP-770CN" }, - { "04f9", "01d4", "MFC-230C" }, - { "04f9", "01d5", "MFC-235C" }, - { "04f9", "01d6", "MFC-260C" }, - { "04f9", "01d7", "MFC-465CN" }, - { "04f9", "01d8", "MFC-680CN" }, - { "04f9", "01d9", "MFC-685CW" }, - { "04f9", "01da", "MFC-885CW" }, - { "04f9", "01db", "MFC-480CN" }, - { "04f9", "01dc", "MFC-650CD" }, - { "04f9", "01dd", "MFC-870CDN" }, - { "04f9", "01de", "MFC-880CDN" }, - { "04f9", "01df", "DCP-155C" }, - { "04f9", "01e0", "MFC-265C" }, - { "04f9", "01e1", "DCP-153C" }, - { "04f9", "01e2", "DCP-157C" }, - { "04f9", "01e3", "DCP-353C" }, - { "04f9", "01e4", "DCP-357C" }, - { "04f9", "01e7", "MFC-7340" }, - { "04f9", "01e9", "DCP-7040" }, - { "04f9", "01ea", "DCP-7030" }, - { "04f9", "01eb", "MFC-7320" }, - { "04f9", "01ec", "MFC-9640CW" }, - { "04f9", "01f4", "MFC-5890CN" }, - { "04f9", "0204", "DCP-165C" }, - { "04f9", "020a", "MFC-8670DN" }, - { "04f9", "020c", "DCP-9042CDN" }, - { "04f9", "020d", "MFC-9450CDN" }, - { "04f9", "0216", "MFC-8880DN" }, - { "04f9", "0217", "MFC-8480DN" }, - { "04f9", "0219", "MFC-8380DN" }, - { "04f9", "021a", "MFC-8370DN" }, - { "04f9", "021b", "DCP-8070D" }, - { "04f9", "021c", "MFC-9320CW" }, - { "04f9", "021d", "MFC-9120CN" }, - { "04f9", "021e", "DCP-9010CN" }, - { "04f9", "021f", "DCP-8085DN" }, - { "04f9", "0220", "MFC-9010CN" }, - { "04f9", "0222", "DCP-195C" }, - { "04f9", "0223", "DCP-365CN" }, - { "04f9", "0224", "DCP-375CW" }, - { "04f9", "0225", "DCP-395CN" }, - { "04f9", "0227", "DCP-595CN" }, - { "04f9", "0228", "MFC-255CW" }, - { "04f9", "0229", "MFC-295CN" }, - { "04f9", "022a", "MFC-495CW" }, - { "04f9", "022b", "MFC-495CN" }, - { "04f9", "022c", "MFC-795CW" }, - { "04f9", "022d", "MFC-675CD" }, - { "04f9", "022e", "MFC-695CDN" }, - { "04f9", "022f", "MFC-735CD" }, - { "04f9", "0230", "MFC-935CDN" }, - { "04f9", "0234", "DCP-373CW" }, - { "04f9", "0235", "DCP-377CW" }, - { "04f9", "0236", "DCP-390CN" }, - { "04f9", "0239", "MFC-253CW" }, - { "04f9", "023a", "MFC-257CW" }, - { "04f9", "023e", "DCP-197C" }, - { "04f9", "023f", "MFC-8680DN" }, - { "04f9", "0240", "MFC-J950DN" }, - { "04f9", "0245", "MFC-9560CDW" }, - { "04f9", "0248", "DCP-7055 scanner/printer" }, - { "04f9", "024e", "MFC-7460DN" }, - { "04f9", "0253", "DCP-J125" }, - { "04f9", "0254", "DCP-J315W" }, - { "04f9", "0255", "DCP-J515W" }, - { "04f9", "0256", "DCP-J515N" }, - { "04f9", "0257", "DCP-J715W" }, - { "04f9", "0258", "DCP-J715N" }, - { "04f9", "0259", "MFC-J220" }, - { "04f9", "025a", "MFC-J410" }, - { "04f9", "025b", "MFC-J265W" }, - { "04f9", "025c", "MFC-J415W" }, - { "04f9", "025d", "MFC-J615W" }, - { "04f9", "025e", "MFC-J615N" }, - { "04f9", "025f", "MFC-J700D" }, - { "04f9", "0260", "MFC-J800D" }, - { "04f9", "0261", "MFC-J850DN" }, - { "04f9", "026b", "MFC-J630W" }, - { "04f9", "026d", "MFC-J805D" }, - { "04f9", "026e", "MFC-J855DN" }, - { "04f9", "026f", "MFC-J270W" }, - { "04f9", "0270", "MFC-7360N" }, - { "04f9", "0273", "DCP-7057 scanner/printer" }, - { "04f9", "0276", "MFC-5895CW" }, - { "04f9", "0278", "MFC-J410W" }, - { "04f9", "0279", "DCP-J525W" }, - { "04f9", "027a", "DCP-J525N" }, - { "04f9", "027b", "DCP-J725DW" }, - { "04f9", "027c", "DCP-J725N" }, - { "04f9", "027d", "DCP-J925DW" }, - { "04f9", "027e", "MFC-J955DN" }, - { "04f9", "027f", "MFC-J280W" }, - { "04f9", "0280", "MFC-J435W" }, - { "04f9", "0281", "MFC-J430W" }, - { "04f9", "0282", "MFC-J625DW" }, - { "04f9", "0283", "MFC-J825DW" }, - { "04f9", "0284", "MFC-J825N" }, - { "04f9", "0285", "MFC-J705D" }, - { "04f9", "0287", "MFC-J860DN" }, - { "04f9", "0288", "MFC-J5910DW" }, - { "04f9", "0289", "MFC-J5910CDW" }, - { "04f9", "028a", "DCP-J925N" }, - { "04f9", "028d", "MFC-J835DW" }, - { "04f9", "028f", "MFC-J425W" }, - { "04f9", "0290", "MFC-J432W" }, - { "04f9", "0291", "DCP-8110DN" }, - { "04f9", "0292", "DCP-8150DN" }, - { "04f9", "0293", "DCP-8155DN" }, - { "04f9", "0294", "DCP-8250DN" }, - { "04f9", "0295", "MFC-8510DN" }, - { "04f9", "0296", "MFC-8520DN" }, - { "04f9", "0298", "MFC-8910DW" }, - { "04f9", "0299", "MFC-8950DW" }, - { "04f9", "029a", "MFC-8690DW" }, - { "04f9", "029c", "MFC-8515DN" }, - { "04f9", "029e", "MFC-9125CN" }, - { "04f9", "029f", "MFC-9325CW" }, - { "04f9", "02a0", "DCP-J140W" }, - { "04f9", "02a5", "MFC-7240" }, - { "04f9", "02a6", "FAX-2940" }, - { "04f9", "02a7", "FAX-2950" }, - { "04f9", "02a8", "MFC-7290" }, - { "04f9", "02ab", "FAX-2990" }, - { "04f9", "02ac", "DCP-8110D" }, - { "04f9", "02ad", "MFC-9130CW" }, - { "04f9", "02ae", "MFC-9140CDN" }, - { "04f9", "02af", "MFC-9330CDW" }, - { "04f9", "02b0", "MFC-9340CDW" }, - { "04f9", "02b1", "DCP-9020CDN" }, - { "04f9", "02b2", "MFC-J810DN" }, - { "04f9", "02b3", "MFC-J4510DW" }, - { "04f9", "02b4", "MFC-J4710DW" }, - { "04f9", "02b5", "DCP-8112DN" }, - { "04f9", "02b6", "DCP-8152DN" }, - { "04f9", "02b7", "DCP-8157DN" }, - { "04f9", "02b8", "MFC-8512DN" }, - { "04f9", "02ba", "MFC-8912DW" }, - { "04f9", "02bb", "MFC-8952DW" }, - { "04f9", "02bc", "DCP-J540N" }, - { "04f9", "02bd", "DCP-J740N" }, - { "04f9", "02be", "MFC-J710D" }, - { "04f9", "02bf", "MFC-J840N" }, - { "04f9", "02c0", "DCP-J940N" }, - { "04f9", "02c1", "MFC-J960DN" }, - { "04f9", "02c2", "DCP-J4110DW" }, - { "04f9", "02c3", "MFC-J4310DW" }, - { "04f9", "02c4", "MFC-J4410DW" }, - { "04f9", "02c5", "MFC-J4610DW" }, - { "04f9", "02c6", "DCP-J4210N" }, - { "04f9", "02c7", "MFC-J4510N" }, - { "04f9", "02c8", "MFC-J4910CDW" }, - { "04f9", "02c9", "MFC-J4810DN" }, - { "04f9", "02ca", "MFC-8712DW" }, - { "04f9", "02cb", "MFC-8710DW" }, - { "04f9", "02cc", "MFC-J2310" }, - { "04f9", "02cd", "MFC-J2510" }, - { "04f9", "02ce", "DCP-7055W" }, - { "04f9", "02cf", "DCP-7057W" }, - { "04f9", "02d0", "DCP-1510" }, - { "04f9", "02d1", "MFC-1810" }, - { "04f9", "02d3", "DCP-9020CDW" }, - { "04f9", "02d4", "MFC-8810DW" }, - { "04f9", "02dd", "DCP-J4215N" }, - { "04f9", "02de", "DCP-J132W" }, - { "04f9", "02df", "DCP-J152W" }, - { "04f9", "02e0", "DCP-J152N" }, - { "04f9", "02e1", "DCP-J172W" }, - { "04f9", "02e2", "DCP-J552DW" }, - { "04f9", "02e3", "DCP-J552N" }, - { "04f9", "02e4", "DCP-J752DW" }, - { "04f9", "02e5", "DCP-J752N" }, - { "04f9", "02e6", "DCP-J952N" }, - { "04f9", "02e7", "MFC-J245" }, - { "04f9", "02e8", "MFC-J470DW" }, - { "04f9", "02e9", "MFC-J475DW" }, - { "04f9", "02ea", "MFC-J285DW" }, - { "04f9", "02eb", "MFC-J650DW" }, - { "04f9", "02ec", "MFC-J870DW" }, - { "04f9", "02ed", "MFC-J870N" }, - { "04f9", "02ee", "MFC-J720D" }, - { "04f9", "02ef", "MFC-J820DN" }, - { "04f9", "02f0", "MFC-J980DN" }, - { "04f9", "02f1", "MFC-J890DN" }, - { "04f9", "02f2", "MFC-J6520DW" }, - { "04f9", "02f3", "MFC-J6570CDW" }, - { "04f9", "02f4", "MFC-J6720DW" }, - { "04f9", "02f5", "MFC-J6920DW" }, - { "04f9", "02f6", "MFC-J6970CDW" }, - { "04f9", "02f7", "MFC-J6975CDW" }, - { "04f9", "02f8", "MFC-J6770CDW" }, - { "04f9", "02f9", "DCP-J132N" }, - { "04f9", "02fa", "MFC-J450DW" }, - { "04f9", "02fb", "MFC-J875DW" }, - { "04f9", "02fc", "DCP-J100" }, - { "04f9", "02fd", "DCP-J105" }, - { "04f9", "02fe", "MFC-J200" }, - { "04f9", "02ff", "MFC-J3520" }, - { "04f9", "0300", "MFC-J3720" }, - { "04f9", "030f", "DCP-L8400CDN" }, - { "04f9", "0310", "DCP-L8450CDW" }, - { "04f9", "0311", "MFC-L8600CDW" }, - { "04f9", "0312", "MFC-L8650CDW" }, - { "04f9", "0313", "MFC-L8850CDW" }, - { "04f9", "0314", "MFC-L9550CDW" }, - { "04f9", "0318", "MFC-7365DN" }, - { "04f9", "0320", "MFC-L2740DW" }, - { "04f9", "0321", "DCP-L2500D" }, - { "04f9", "0322", "DCP-L2520DW" }, - { "04f9", "0324", "DCP-L2520D" }, - { "04f9", "0326", "DCP-L2540DN" }, - { "04f9", "0328", "DCP-L2540DW" }, - { "04f9", "0329", "DCP-L2560DW" }, - { "04f9", "0330", "HL-L2380DW" }, - { "04f9", "0331", "MFC-L2700DW" }, - { "04f9", "0335", "FAX-L2700DN" }, - { "04f9", "0337", "MFC-L2720DW" }, - { "04f9", "0338", "MFC-L2720DN" }, - { "04f9", "0339", "DCP-J4120DW" }, - { "04f9", "033a", "MFC-J4320DW" }, - { "04f9", "033c", "MFC-J2320" }, - { "04f9", "033d", "MFC-J4420DW" }, - { "04f9", "0340", "MFC-J4620DW" }, - { "04f9", "0341", "MFC-J2720" }, - { "04f9", "0342", "MFC-J4625DW" }, - { "04f9", "0343", "MFC-J5320DW" }, - { "04f9", "0346", "MFC-J5620DW" }, - { "04f9", "0347", "MFC-J5720DW" }, - { "04f9", "0349", "DCP-J4220N" }, - { "04f9", "034b", "MFC-J4720N" }, - { "04f9", "034e", "MFC-J5720CDW" }, - { "04f9", "034f", "MFC-J5820DN" }, - { "04f9", "0350", "MFC-J5620CDW" }, - { "04f9", "0351", "DCP-J137N" }, - { "04f9", "0353", "DCP-J557N" }, - { "04f9", "0354", "DCP-J757N" }, - { "04f9", "0355", "DCP-J957N" }, - { "04f9", "0356", "MFC-J877N" }, - { "04f9", "0357", "MFC-J727D" }, - { "04f9", "0358", "MFC-J987DN" }, - { "04f9", "0359", "MFC-J827DN" }, - { "04f9", "035a", "MFC-J897DN" }, - { "04f9", "035b", "DCP-1610W" }, - { "04f9", "035c", "DCP-1610NW" }, - { "04f9", "035d", "MFC-1910W" }, - { "04f9", "035e", "MFC-1910NW" }, - { "04f9", "0360", "DCP-1618W" }, - { "04f9", "0361", "MFC-1919NW" }, - { "04f9", "0364", "MFC-J5625DW" }, - { "04f9", "0365", "MFC-J4520DW" }, - { "04f9", "0366", "MFC-J5520DW" }, - { "04f9", "0367", "DCP-7080D" }, - { "04f9", "0368", "DCP-7080" }, - { "04f9", "0369", "DCP-7180DN" }, - { "04f9", "036a", "DCP-7189DW" }, - { "04f9", "036b", "MFC-7380" }, - { "04f9", "036c", "MFC-7480D" }, - { "04f9", "036d", "MFC-7880DN" }, - { "04f9", "036e", "MFC-7889DW" }, - { "04f9", "036f", "DCP-9022CDW" }, - { "04f9", "0370", "MFC-9142CDN" }, - { "04f9", "0371", "MFC-9332CDW" }, - { "04f9", "0372", "MFC-9342CDW" }, - { "04f9", "0373", "MFC-L2700D" }, - { "04f9", "0376", "DCP-1600" }, - { "04f9", "0377", "MFC-1900" }, - { "04f9", "0378", "DCP-1608" }, - { "04f9", "0379", "DCP-1619" }, - { "04f9", "037a", "MFC-1906" }, - { "04f9", "037b", "MFC-1908" }, - { "04f9", "037c", "ADS-2000e" }, - { "04f9", "037d", "ADS-2100e" }, - { "04f9", "037e", "ADS-2500We" }, - { "04f9", "037f", "ADS-2600We" }, - { "04f9", "0380", "DCP-J562DW" }, - { "04f9", "0381", "DCP-J562N" }, - { "04f9", "0383", "DCP-J962N" }, - { "04f9", "0384", "MFC-J480DW" }, - { "04f9", "0385", "MFC-J485DW" }, - { "04f9", "0386", "MFC-J460DW" }, - { "04f9", "0388", "MFC-J680DW" }, - { "04f9", "0389", "MFC-J880DW" }, - { "04f9", "038a", "MFC-J885DW" }, - { "04f9", "038b", "MFC-J880N" }, - { "04f9", "038c", "MFC-J730DN" }, - { "04f9", "038d", "MFC-J990DN" }, - { "04f9", "038e", "MFC-J830DN" }, - { "04f9", "038f", "MFC-J900DN" }, - { "04f9", "0390", "MFC-J5920DW" }, - { "04f9", "0392", "MFC-L2705DW" }, - { "04f9", "0393", "DCP-T300" }, - { "04f9", "0394", "DCP-T500W" }, - { "04f9", "0395", "DCP-T700W" }, - { "04f9", "0396", "MFC-T800W" }, - { "04f9", "0397", "DCP-J963N" }, - { "04f9", "03b3", "MFC-J6925DW" }, - { "04f9", "03b4", "MFC-J6573CDW" }, - { "04f9", "03b5", "MFC-J6973CDW" }, - { "04f9", "03b6", "MFC-J6990CDW" }, - { "04f9", "03bb", "MFC-L2680W" }, - { "04f9", "03bc", "MFC-L2700DN" }, - { "04f9", "03bd", "DCP-J762N" }, - { "04f9", "03fd", "ADS-2700W" }, - { "04f9", "043f", "MFC-L3770CDW" }, - { "04f9", "0440", "MFC-9350CDW" }, - { "04f9", "0441", "MFC-L3750CDW" }, - { "04f9", "0442", "MFC-L3745CDW" }, - { "04f9", "0443", "MFC-L3735CDN" }, - { "04f9", "0444", "MFC-9150CDN" }, - { "04f9", "0445", "MFC-L3730CDN" }, - { "04f9", "0446", "MFC-L3710CW" }, - { "04f9", "0447", "DCP-9030CDN" }, - { "04f9", "0448", "DCP-L3550CDW" }, - { "04f9", "044a", "HL-L3290CDW" }, - { "04f9", "044b", "DCP-L3510CDW" }, - { "04f9", "044c", "DCP-L3551CDW" }, - { "04f9", "1000", "Printer" }, - { "04f9", "1002", "Printer" }, - { "04f9", "2002", "PTUSB Printing" }, - { "04f9", "2004", "PT-2300/2310 p-Touch Laber Printer" }, - { "04f9", "2007", "PT-2420PC P-touch Label Printer" }, - { "04f9", "2015", "QL-500 label printer" }, - { "04f9", "2016", "QL-550 printer" }, - { "04f9", "201a", "PT-18R P-touch label printer" }, - { "04f9", "201b", "QL-650TD Label Printer" }, - { "04f9", "2020", "QL-1050 Label Printer" }, - { "04f9", "2027", "QL-560 Label Printer" }, - { "04f9", "2028", "QL-570 Label Printer" }, - { "04f9", "202a", "QL-1060N Label Printer" }, - { "04f9", "202b", "PT-7600 P-touch Label Printer" }, - { "04f9", "202c", "PT-1230PC P-touch Label Printer E mode" }, - { "04f9", "202d", "PT-2430PC P-touch Label Printer" }, - { "04f9", "2030", "PT-1230PC P-touch Label Printer EL mode" }, - { "04f9", "2041", "PT-2730 P-touch Label Printer" }, - { "04f9", "2042", "QL-700 Label Printer" }, - { "04f9", "2043", "QL-710W Label Printer" }, - { "04f9", "2044", "QL-720NW Label Printer" }, - { "04f9", "204d", "QL-720NW Label Printer (mass storage mode)" }, - { "04f9", "2061", "PT-P700 P-touch Label Printer" }, - { "04f9", "2064", "PT-P700 P-touch Label Printer RemovableDisk" }, - { "04f9", "2074", "PT-D600 P-touch Label Printer" }, - { "04f9", "209b", "QL-800 Label Printer" }, - { "04f9", "209c", "QL-810W Label Printer" }, - { "04f9", "209d", "QL-820NWB Label Printer" }, - { "04f9", "20a7", "QL-1100 Label Printer" }, - { "04f9", "20a8", "QL-1110NWB Label Printer" }, - { "04f9", "20a9", "QL-1100 Label Printer (mass storage)" }, - { "04f9", "20aa", "QL-1110NWB Label Printer (mass storage)" }, - { "04f9", "20ab", "QL-1115NWB Label Printer" }, - { "04f9", "20ac", "QL-1115NWB Label Printer (mass storage)" }, - { "04f9", "20c0", "QL-600 Label Printer" }, - { "04f9", "2100", "Card Reader Writer" }, - { "04f9", "2102", "Sewing machine" }, - { "04f9", "60a0", "ADS-2000" }, - { "04f9", "60a1", "ADS-2100" }, - { "04f9", "60a4", "ADS-2500W" }, - { "04f9", "60a5", "ADS-2600W" }, - { "04f9", "60a6", "ADS-1000W" }, - { "04f9", "60a7", "ADS-1100W" }, - { "04f9", "60a8", "ADS-1500W" }, - { "04f9", "60a9", "ADS-1600W" }, - { "04fa", "2490", "DS1490F 2-in-1 Fob, 1-Wire adapter" }, - { "04fa", "4201", "DS4201 Audio DAC" }, - { "04fc", "0003", "CM1092 / Wintech CM-5098 Optical Mouse" }, - { "04fc", "0005", "USB OpticalWheel Mouse" }, - { "04fc", "0013", "ViewMate Desktop Mouse CC2201" }, - { "04fc", "0015", "ViewMate Desktop Mouse CC2201" }, - { "04fc", "00d3", "00052486 / Laser Mouse M1052 [hama]" }, - { "04fc", "0171", "SPCA1527A/SPCA1528 SD card camera (Mass Storage mode)" }, - { "04fc", "0201", "SPCP825 RS232C Adapter" }, - { "04fc", "0232", "Fingerprint" }, - { "04fc", "0538", "Wireless Optical Mouse 2.4G [Bright]" }, - { "04fc", "0561", "Flexcam 100" }, - { "04fc", "05d8", "Wireless keyboard/mouse" }, - { "04fc", "05da", "SPEEDLINK SNAPPY Wireless Mouse Nano" }, - { "04fc", "0c15", "SPIF215A SATA bridge" }, - { "04fc", "0c25", "SATALink SPIF225A" }, - { "04fc", "1528", "SPCA1527A/SPCA1528 SD card camera (webcam mode)" }, - { "04fc", "1533", "Mass Storage" }, - { "04fc", "2080", "ASUS Webcam" }, - { "04fc", "500c", "CA500C Digital Camera" }, - { "04fc", "504a", "Aiptek Mini PenCam 1.3" }, - { "04fc", "504b", "Aiptek Mega PockerCam 1.3/Maxell MaxPocket LE 1.3" }, - { "04fc", "5330", "Digitrex 2110" }, - { "04fc", "5331", "Vivitar Vivicam 10" }, - { "04fc", "5360", "Sunplus Generic Digital Camera" }, - { "04fc", "5563", "Digital Media Player MP3/WMA [The Sharper Image]" }, - { "04fc", "5720", "Card Reader Driver" }, - { "04fc", "6333", "Siri A9 UVC chipset" }, - { "04fc", "7333", "Finet Technology Palmpix DC-85" }, - { "04fc", "757a", "Aiptek, MP315 MP3 Player" }, - { "04fc", "ffff", "PureDigital Ritz Disposable" }, - { "04fd", "0003", "Smart Card Reader II" }, - { "04fe", "0006", "Happy Hacking Keyboard Lite2" }, - { "0500", "0001", "DART Keyboard Mouse" }, - { "0500", "0002", "DART-2 Keyboard" }, - { "0502", "0001", "Handheld" }, - { "0502", "0736", "Handheld" }, - { "0502", "15b1", "PDA n311" }, - { "0502", "1631", "c10 Series" }, - { "0502", "1632", "c20 Series" }, - { "0502", "16e1", "n10 Handheld Sync" }, - { "0502", "16e2", "n20 Pocket PC Sync" }, - { "0502", "16e3", "n30 Handheld Sync" }, - { "0502", "2008", "Liquid Gallant Duo E350 (preloader)" }, - { "0502", "3202", "Liquid" }, - { "0502", "3203", "Liquid (Debug mode)" }, - { "0502", "3230", "BeTouch E120" }, - { "0502", "3317", "Liquid" }, - { "0502", "3325", "Iconia tablet A500" }, - { "0502", "3341", "Iconia tablet A500" }, - { "0502", "33c3", "Liquid Gallant Duo E350" }, - { "0502", "33c4", "Liquid Gallant Duo E350 (debug mode)" }, - { "0502", "33c7", "Liquid Gallant Duo E350 (USB tethering)" }, - { "0502", "33c8", "Liquid Gallant Duo E350 (debug mode, USB tethering)" }, - { "0502", "d001", "Divio NW801/DVC-V6+ Digital Camera" }, - { "0506", "009d", "HomeConnect Camera" }, - { "0506", "00a0", "3CREB96 Bluetooth Adapter" }, - { "0506", "00a1", "Bluetooth Device" }, - { "0506", "00a2", "Bluetooth Device" }, - { "0506", "00df", "3Com Home Connect lite" }, - { "0506", "0100", "HomeConnect ADSL Modem Driver" }, - { "0506", "03e8", "3C19250 Ethernet [klsi]" }, - { "0506", "0a01", "3CRSHEW696 Wireless Adapter" }, - { "0506", "0a11", "3CRWE254G72 802.11g Adapter" }, - { "0506", "11f8", "HomeConnect 3C460" }, - { "0506", "2922", "HomeConnect Cable Modem External with" }, - { "0506", "3021", "U.S.Robotics 56000 Voice FaxModem Pro" }, - { "0506", "4601", "3C460B 10/100 Ethernet Adapter" }, - { "0506", "f002", "3CP4218 ADSL Modem (pre-init)" }, - { "0506", "f003", "3CP4218 ADSL Modem" }, - { "0506", "f100", "3CP4218 ADSL Modem (pre-init)" }, - { "0507", "0011", "Konami ParaParaParadise Controller" }, - { "0509", "0801", "ADSL Modem" }, - { "0509", "0802", "ADSL Modem (RFC1483)" }, - { "0509", "0806", "DSL Modem" }, - { "0509", "080f", "Binatone ADSL500 Modem Network Interface" }, - { "0509", "0812", "Pirelli ADSL Modem Network Interface" }, - { "050d", "0004", "Direct Connect" }, - { "050d", "0012", "F8T012 Bluetooth Adapter" }, - { "050d", "0013", "F8T013 Bluetooth Adapter" }, - { "050d", "0017", "B8T017 Bluetooth+EDR 2.1 / F4U017 USB 2.0 7-port Hub" }, - { "050d", "003a", "Universal Media Reader" }, - { "050d", "0050", "F5D6050 802.11b Wireless Adapter v2000 [Atmel at76c503a]" }, - { "050d", "0081", "F8T001v2 Bluetooth" }, - { "050d", "0083", "Bluetooth Device" }, - { "050d", "0084", "F8T003v2 Bluetooth" }, - { "050d", "0102", "Flip KVM" }, - { "050d", "0103", "F5U103 Serial Adapter [etek]" }, - { "050d", "0106", "VideoBus II Adapter, Video" }, - { "050d", "0108", "F1DE108B KVM" }, - { "050d", "0109", "F5U109/F5U409 PDA Adapter" }, - { "050d", "0115", "SCSI Adapter" }, - { "050d", "0119", "F5U120-PC Dual PS/2 Ports / F5U118-UNV ADB Adapter" }, - { "050d", "0121", "F5D5050 100Mbps Ethernet" }, - { "050d", "0122", "Ethernet Adapter" }, - { "050d", "0131", "Bluetooth Device with trace filter" }, - { "050d", "016a", "Bluetooth Mini Dongle" }, - { "050d", "0200", "Nostromo SpeedPad n52te Gaming Keyboard" }, - { "050d", "0201", "Peripheral Switch" }, - { "050d", "0208", "USBView II Video Adapter [nt1004]" }, - { "050d", "0210", "F5U228 Hi-Speed USB 2.0 DVD Creator" }, - { "050d", "0211", "F5U211 USB 2.0 15-in-1 Media Reader & Writer" }, - { "050d", "0224", "F5U224 USB 2.0 4-Port Hub" }, - { "050d", "0234", "F5U234 USB 2.0 4-Port Hub" }, - { "050d", "0237", "F5U237 USB 2.0 7-Port Hub" }, - { "050d", "0240", "F5U240 USB 2.0 CF Card Reader" }, - { "050d", "0249", "USB 2 Flash Media Device" }, - { "050d", "0257", "F5U257 Serial" }, - { "050d", "0304", "FSU304 USB 2.0 - 4 Ports Hub" }, - { "050d", "0307", "USB 2.0 - 7 ports Hub [FSU307]" }, - { "050d", "038c", "F2CU038 HDMI Adapter" }, - { "050d", "0409", "F5U409 Serial" }, - { "050d", "0416", "Staples 12416 7 port desktop hub" }, - { "050d", "0551", "F6C550-AVR UPS" }, - { "050d", "065a", "F8T065BF Mini Bluetooth 4.0 Adapter" }, - { "050d", "0706", "2-N-1 7-Port Hub (Lower half)" }, - { "050d", "0802", "Nostromo n40 Gamepad" }, - { "050d", "0803", "Nostromo 1745 GamePad" }, - { "050d", "0805", "Nostromo N50 GamePad" }, - { "050d", "0815", "Nostromo n52 HID SpeedPad Mouse Wheel" }, - { "050d", "0826", "ErgoFit Wireless Optical Mouse (HID)" }, - { "050d", "0980", "HID UPS Battery" }, - { "050d", "1004", "F9L1004 802.11n Surf N300 XR Wireless Adapter [Realtek RTL8192CU]" }, - { "050d", "1102", "F7D1102 N150/Surf Micro Wireless Adapter v1000 [Realtek RTL8188CUS]" }, - { "050d", "1103", "F9L1103 N750 DB 802.11abgn 2x3:3 [Ralink RT3573]" }, - { "050d", "1106", "F9L1106v1 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526]" }, - { "050d", "1109", "F9L1109v1 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU]" }, - { "050d", "110a", "F9L1101v2 802.11abgn Wireless Adapter [Realtek RTL8192DU]" }, - { "050d", "11f2", "ISY Wireless Micro Adapter IWL 2000 [RTL8188CUS]" }, - { "050d", "1202", "F5U120-PC Parallel Printer Port" }, - { "050d", "1203", "F5U120-PC Serial Port" }, - { "050d", "2103", "F7D2102 802.11n N300 Micro Wireless Adapter v3000 [Realtek RTL8192CU]" }, - { "050d", "21f1", "N300 WLAN N Adapter [ISY]" }, - { "050d", "21f2", "RTL8192CU 802.11n WLAN Adapter [ISY IWL 4000]" }, - { "050d", "258a", "F5U258 Host to Host cable" }, - { "050d", "3101", "F1DF102U/F1DG102U Flip Hub" }, - { "050d", "3201", "F1DF102U/F1DG102U Flip KVM" }, - { "050d", "4050", "ZD1211B" }, - { "050d", "5055", "F5D5055 Gigabit Network Adapter [AX88xxx]" }, - { "050d", "6050", "F6D6050 802.11abgn Wireless Adapter [Broadcom BCM4323]" }, - { "050d", "6051", "F5D6051 802.11b Wireless Network Adapter [ZyDAS ZD1201]" }, - { "050d", "615a", "F7D4101 / F9L1101v1 802.11abgn Wireless Adapter [Broadcom BCM4323]" }, - { "050d", "7050", "F5D7050 Wireless G Adapter v1000/v2000 [Intersil ISL3887]" }, - { "050d", "7051", "F5D7051 802.11g Adapter v1000 [Broadcom 4320 USB]" }, - { "050d", "705a", "F5D7050 Wireless G Adapter v3000 [Ralink RT2571W]" }, - { "050d", "705b", "Wireless G Adapter" }, - { "050d", "705c", "F5D7050 Wireless G Adapter v4000 [Zydas ZD1211B]" }, - { "050d", "705e", "F5D7050 Wireless G Adapter v5000 [Realtek RTL8187B]" }, - { "050d", "706a", "2-N-1 7-Port Hub (Upper half)" }, - { "050d", "8053", "F5D8053 N Wireless USB Adapter v1000/v4000 [Ralink RT2870]" }, - { "050d", "805c", "F5D8053 N Wireless Adapter v3000 [Ralink RT2870]" }, - { "050d", "805e", "F5D8053 N Wireless USB Adapter v5000 [Realtek RTL8192U]" }, - { "050d", "815c", "F5D8053 N Wireless USB Adapter v3000 [Ralink RT2870]" }, - { "050d", "815f", "F5D8053 N Wireless USB Adapter v6000 [Realtek RTL8192SU]" }, - { "050d", "825a", "F5D8055 N+ Wireless Adapter v1000 [Ralink RT2870]" }, - { "050d", "825b", "F5D8055 N+ Wireless Adapter v2000 [Ralink RT3072]" }, - { "050d", "845a", "F7D2101 802.11n Surf & Share Wireless Adapter v1000 [Realtek RTL8192SU]" }, - { "050d", "905b", "F5D9050 Wireless G+ MIMO Network Adapter v3000 [Ralink RT2573]" }, - { "050d", "905c", "F5D9050 Wireless G+ MIMO Network Adapter v4000 [Ralink RT2573]" }, - { "050d", "935a", "F6D4050 N150 Enhanced Wireless Network Adapter v1000 [Ralink RT3070]" }, - { "050d", "935b", "F6D4050 N150 Enhanced Wireless Network Adapter v2000 [Ralink RT3070]" }, - { "050d", "945a", "F7D1101 v1 Basic Wireless Adapter [Realtek RTL8188SU]" }, - { "050d", "945b", "F7D1101 v2 Basic Wireless Adapter [Ralink RT3370]" }, - { "050d", "d321", "Dynex DX-NUSB 802.11bgn Wireless Adapter [Broadcom BCM43231]" }, - { "050f", "0001", "Hub" }, - { "050f", "0003", "KC82C160S Hub" }, - { "050f", "0180", "KC-180 IrDA Dongle" }, - { "050f", "0190", "KC2190 USB Host-to-Host cable" }, - { "0510", "0001", "Keyboard" }, - { "0510", "1000", "Keyboard with PS/2 Mouse Port" }, - { "0510", "e001", "Mouse" }, - { "0511", "002b", "AOC DVB" }, - { "0518", "0001", "USB to PS2 Adaptor v1.09" }, - { "0518", "0002", "EZ-9900C Keyboard" }, - { "0519", "0003", "TSP100ECO/TSP100II" }, - { "0519", "c002", "Xlive Bluetooth XBM-100S MP3 Player" }, - { "051a", "a005", "Smart Display Version 9973" }, - { "051c", "0005", "VFD Module" }, - { "051c", "c001", "eHome Infrared Receiver" }, - { "051c", "c002", "eHome Infrared Receiver" }, - { "051d", "0001", "UPS" }, - { "051d", "0002", "Uninterruptible Power Supply" }, - { "051d", "0003", "UPS" }, - { "0525", "100d", "RFMD Bluetooth Device" }, - { "0525", "1080", "NET1080 USB-USB Bridge" }, - { "0525", "1200", "SSDC Adapter II" }, - { "0525", "1265", "File-backed Storage Gadget" }, - { "0525", "3424", "V30x/V4xx fingerprint sensor [Lumidigm]" }, - { "0525", "a0f0", "Cambridge Electronic Devices Power1401 mk 2" }, - { "0525", "a140", "USB Clik! 40" }, - { "0525", "a141", "(OME) PocketZip 40 MP3 Player Driver" }, - { "0525", "a220", "GVC Bluetooth Wireless Adapter" }, - { "0525", "a4a0", "Linux-USB \"Gadget Zero\"" }, - { "0525", "a4a1", "Linux-USB Ethernet Gadget" }, - { "0525", "a4a2", "Linux-USB Ethernet/RNDIS Gadget" }, - { "0525", "a4a3", "Linux-USB user-mode isochronous source/sink" }, - { "0525", "a4a4", "Linux-USB user-mode bulk source/sink" }, - { "0525", "a4a5", "Linux-USB File-backed Storage Gadget" }, - { "0525", "a4a6", "Linux-USB Serial Gadget" }, - { "0525", "a4a7", "Linux-USB Serial Gadget (CDC ACM mode)" }, - { "0525", "a4a8", "Linux-USB Printer Gadget" }, - { "0525", "a4a9", "Linux-USB OBEX Gadget" }, - { "0525", "a4aa", "Linux-USB CDC Composite Gadge (Ethernet and ACM)" }, - { "0525", "a4ab", "Linux-USB Multifunction Composite Gadget" }, - { "0525", "a4ac", "Linux-USB HID Gadget" }, - { "0528", "7561", "TV Wonder" }, - { "0528", "7562", "TV Wonder, Edition (FN5)" }, - { "0528", "7563", "TV Wonder, Edition (FI)" }, - { "0528", "7564", "TV Wonder, Edition (FQ)" }, - { "0528", "7565", "TV Wonder, Edition (NTSC+)" }, - { "0528", "7566", "TV Wonder, Edition (FN5)" }, - { "0528", "7567", "TV Wonder, Edition (FI)" }, - { "0528", "7568", "TV Wonder, Edition (FQ)" }, - { "0528", "7569", "Live! Pro (A)" }, - { "0528", "756a", "Live! Pro Audio (O)" }, - { "0529", "0001", "HASP copy protection dongle" }, - { "0529", "030b", "eToken R1 v3.1.3.x" }, - { "0529", "0313", "eToken R1 v3.2.3.x" }, - { "0529", "031b", "eToken R1 v3.3.3.x" }, - { "0529", "0323", "eToken R1 v3.4.3.x" }, - { "0529", "0412", "eToken R2 v2.2.4.x" }, - { "0529", "041a", "eToken R2 v2.2.4.x" }, - { "0529", "0422", "eToken R2 v2.4.4.x" }, - { "0529", "042a", "eToken R2 v2.5.4.x" }, - { "0529", "050c", "eToken Pro v4.1.5.x" }, - { "0529", "0514", "eToken Pro v4.2.5.4" }, - { "0529", "0600", "eToken Pro 64k (4.2)" }, - { "0529", "0620", "Token JC" }, - { "052b", "0102", "Ca508A HP1020 Camera v.1.3.1.6" }, - { "052b", "0801", "Yakumo MegaImage 37" }, - { "052b", "1512", "Yakumo MegaImage IV" }, - { "052b", "1513", "Aosta CX100 Webcam" }, - { "052b", "1514", "Aosta CX100 Webcam Storage" }, - { "052b", "1905", "Yakumo MegaImage 47" }, - { "052b", "1911", "Yakumo MegaImage 47 SL" }, - { "052b", "2202", "WDM Still Image Capture" }, - { "052b", "2203", "Sound Vision Stream Driver" }, - { "052b", "3a06", "DigiLife DDV-5120A" }, - { "052b", "d001", "P35U Camera Capture" }, - { "0536", "01a0", "PDT" }, - { "053a", "0b00", "Hub" }, - { "053a", "0b01", "Preh MCI 3100" }, - { "0540", "0101", "Panache Surf ISDN TA" }, - { "0543", "00fe", "G773 Monitor Hub" }, - { "0543", "00ff", "P815 Monitor Hub" }, - { "0543", "0bf2", "airpanel V150 Wireless Smart Display" }, - { "0543", "0bf3", "airpanel V110 Wireless Smart Display" }, - { "0543", "0ed9", "Color Pocket PC V35" }, - { "0543", "0f01", "airsync Wi-Fi Wireless Adapter" }, - { "0543", "1527", "Color Pocket PC V36" }, - { "0543", "1529", "Color Pocket PC V37" }, - { "0543", "152b", "Color Pocket PC V38" }, - { "0543", "152e", "Pocket PC" }, - { "0543", "1921", "Communicator Pocket PC" }, - { "0543", "1922", "Smartphone" }, - { "0543", "1923", "Pocket PC V30" }, - { "0543", "1a11", "Wireless 802.11g Adapter" }, - { "0543", "1e60", "TA310 - ATSC/NTSC/PAL Driver(PCM4)" }, - { "0543", "4153", "ViewSonic G773 Control (?)" }, - { "0545", "7333", "Trution Web Camera" }, - { "0545", "8002", "IBM NetCamera" }, - { "0545", "8009", "Veo PC Camera" }, - { "0545", "800c", "Veo Stingray" }, - { "0545", "800d", "Veo PC Camera" }, - { "0545", "8080", "IBM C-It Webcam" }, - { "0545", "808a", "Veo PC Camera" }, - { "0545", "808b", "Veo Stingray" }, - { "0545", "808d", "Veo PC Camera" }, - { "0545", "810a", "Veo Advanced Connect Webcam" }, - { "0545", "810b", "Veo PC Camera" }, - { "0545", "810c", "Veo PC Camera" }, - { "0545", "8135", "Veo Mobile/Advanced Web Camera" }, - { "0545", "813a", "Veo PC Camera" }, - { "0545", "813b", "Veo PC Camera" }, - { "0545", "813c", "Veo Mobile/Advanced Web Camera" }, - { "0545", "8333", "Veo Stingray/Connect Web Camera" }, - { "0545", "888c", "eVision 123 digital camera" }, - { "0545", "888d", "eVision 123 digital camera" }, - { "0546", "0daf", "PDC 2300Z" }, - { "0546", "1bed", "PDC 1320 Camera" }, - { "0546", "3097", "PDC 310" }, - { "0546", "3155", "PDC 3070 Camera" }, - { "0546", "3187", "Digital Camera" }, - { "0546", "3191", "Ion 80 Camera" }, - { "0546", "3273", "PDC 2030 Camera" }, - { "0546", "3304", "a500 Digital Camera" }, - { "0546", "dccf", "Sound Vision Stream Driver" }, - { "0547", "0001", "ICSI Bluetooth Device" }, - { "0547", "0080", "I3SYSTEM HYUNY" }, - { "0547", "1002", "Python2 WDM Encoder" }, - { "0547", "1006", "Hantek DSO-2100 UF" }, - { "0547", "2131", "AN2131 EZUSB Microcontroller" }, - { "0547", "2235", "AN2235 EZUSB-FX Microcontroller" }, - { "0547", "2710", "EZ-Link Loader (EZLNKLDR.SYS)" }, - { "0547", "2720", "AN2720 USB-USB Bridge" }, - { "0547", "2727", "Xircom PGUNET USB-USB Bridge" }, - { "0547", "2750", "EZ-Link (EZLNKUSB.SYS)" }, - { "0547", "2810", "Cypress ATAPI Bridge" }, - { "0547", "4018", "AmScope MU1803" }, - { "0547", "4d90", "AmScope MD1900 camera" }, - { "0547", "6010", "AmScope MU1000 camera" }, - { "0547", "6510", "Touptek UCMOS05100KPA" }, - { "0547", "7000", "PowerSpec MCE460 Front Panel LED Display" }, - { "0547", "7777", "Bluetooth Device" }, - { "0547", "9999", "AN2131 uninitialized (?)" }, - { "0548", "1005", "EZ Cart II GameBoy Flash Programmer" }, - { "054c", "0001", "HUB" }, - { "054c", "0002", "Standard HUB" }, - { "054c", "0010", "Cyber-shot, Mavica (msc)" }, - { "054c", "0014", "Nogatech USBVision (SY)" }, - { "054c", "0022", "Storage Adapter V2 (TPP)" }, - { "054c", "0023", "CD Writer" }, - { "054c", "0024", "Mavica CD-1000 Camera" }, - { "054c", "0025", "NW-MS7 Walkman MemoryStick Reader" }, - { "054c", "002b", "Portable USB Harddrive V2" }, - { "054c", "002c", "USB Floppy Disk Drive" }, - { "054c", "002d", "MSAC-US1 MemoryStick Reader" }, - { "054c", "002e", "HandyCam MemoryStick Reader" }, - { "054c", "0030", "Storage Adapter V2 (TPP)" }, - { "054c", "0032", "MemoryStick MSC-U01 Reader" }, - { "054c", "0035", "Network Walkman (E)" }, - { "054c", "0036", "Net MD" }, - { "054c", "0037", "MG Memory Stick Reader/Writer" }, - { "054c", "0038", "Clie PEG-S300/D PalmOS PDA" }, - { "054c", "0039", "Network Walkman (MS)" }, - { "054c", "003c", "VAIO-MX LCD Control" }, - { "054c", "0045", "Digital Imaging Video" }, - { "054c", "0046", "Network Walkman" }, - { "054c", "0049", "UP-D895" }, - { "054c", "004a", "Memory Stick Hi-Fi System" }, - { "054c", "004b", "Memory Stick Reader/Writer" }, - { "054c", "004e", "DSC-xxx (ptp)" }, - { "054c", "0056", "MG Memory Stick Reader/Writer" }, - { "054c", "0058", "Clie PEG-N7x0C PalmOS PDA Mass Storage" }, - { "054c", "0066", "Clie PEG-N7x0C/PEG-T425 PalmOS PDA Serial" }, - { "054c", "0067", "CMR-PC3 Webcam" }, - { "054c", "0069", "Memorystick MSC-U03 Reader" }, - { "054c", "006c", "FeliCa S310 [PaSoRi]" }, - { "054c", "006d", "Clie PEG-T425 PDA Mass Storage" }, - { "054c", "006f", "Network Walkman (EV)" }, - { "054c", "0073", "Storage CRX1750U" }, - { "054c", "0075", "Net MD" }, - { "054c", "0076", "Storage Adapter ACR-U20" }, - { "054c", "007c", "Net MD" }, - { "054c", "007f", "IC Recorder (MS)" }, - { "054c", "0080", "Net MD" }, - { "054c", "0081", "Net MD" }, - { "054c", "0084", "Net MD" }, - { "054c", "0085", "Net MD" }, - { "054c", "0086", "Net MD" }, - { "054c", "008b", "Micro Vault 64M Mass Storage" }, - { "054c", "0095", "Clie s360" }, - { "054c", "0099", "Clie NR70 PDA Mass Storage" }, - { "054c", "009a", "Clie NR70 PDA Serial" }, - { "054c", "00ab", "Visual Communication Camera (PCGA-UVC10)" }, - { "054c", "00af", "DPP-EX Series Digital Photo Printer" }, - { "054c", "00bf", "IC Recorder (S)" }, - { "054c", "00c0", "Handycam DCR-30" }, - { "054c", "00c6", "Net MD" }, - { "054c", "00c7", "Net MD" }, - { "054c", "00c8", "MZ-N710 Minidisc Walkman" }, - { "054c", "00c9", "Net MD" }, - { "054c", "00ca", "MZ-DN430 Minidisc Walkman" }, - { "054c", "00cb", "MSAC-US20 Memory Stick Reader" }, - { "054c", "00da", "Clie nx60" }, - { "054c", "00e8", "Network Walkman (MS)" }, - { "054c", "00e9", "Handheld" }, - { "054c", "00eb", "Net MD" }, - { "054c", "0101", "Net MD" }, - { "054c", "0103", "IC Recorder (ST)" }, - { "054c", "0105", "Micro Vault Hub" }, - { "054c", "0107", "VCC-U01 Visual Communication Camera" }, - { "054c", "0110", "Digital Imaging Video" }, - { "054c", "0113", "Net MD" }, - { "054c", "0116", "IC Recorder (P)" }, - { "054c", "0144", "Clie PEG-TH55 PDA" }, - { "054c", "0147", "Visual Communication Camera (PCGA-UVC11)" }, - { "054c", "014c", "Aiwa AM-NX9 Net MD Music Recorder MDLP" }, - { "054c", "014d", "Memory Stick Reader/Writer" }, - { "054c", "0154", "Eyetoy Audio Device" }, - { "054c", "0155", "Eyetoy Video Device" }, - { "054c", "015f", "IC Recorder (BM)" }, - { "054c", "0169", "Clie PEG-TJ35 PDA Serial" }, - { "054c", "016a", "Clie PEG-TJ35 PDA Mass Storage" }, - { "054c", "016b", "Mobile HDD" }, - { "054c", "016d", "IC Recorder (SX)" }, - { "054c", "016e", "DPP-EX50 Digital Photo Printer" }, - { "054c", "0171", "Fingerprint Sensor 3500" }, - { "054c", "017e", "Net MD" }, - { "054c", "017f", "Hi-MD WALKMAN" }, - { "054c", "0180", "Net MD" }, - { "054c", "0181", "Hi-MD WALKMAN" }, - { "054c", "0182", "Net MD" }, - { "054c", "0183", "Hi-MD WALKMAN" }, - { "054c", "0184", "Net MD" }, - { "054c", "0185", "Hi-MD WALKMAN" }, - { "054c", "0186", "Net MD" }, - { "054c", "0187", "Hi-MD MZ-NH600 WALKMAN" }, - { "054c", "0188", "Net MD" }, - { "054c", "018a", "Net MD" }, - { "054c", "018b", "Hi-MD SOUND GATE" }, - { "054c", "019e", "Micro Vault 1.0G Mass Storage" }, - { "054c", "01ad", "ATRAC HDD PA" }, - { "054c", "01bb", "FeliCa S320 [PaSoRi]" }, - { "054c", "01bd", "MRW62E Multi-Card Reader/Writer" }, - { "054c", "01c3", "NW-E55 Network Walkman" }, - { "054c", "01c6", "MEMORY P-AUDIO" }, - { "054c", "01c7", "Printing Support" }, - { "054c", "01c8", "PSP Type A" }, - { "054c", "01c9", "PSP Type B" }, - { "054c", "01d0", "DVD+RW External Drive DRU-700A" }, - { "054c", "01d5", "IC RECORDER" }, - { "054c", "01de", "VRD-VC10 [Video Capture]" }, - { "054c", "01e7", "UP-D897" }, - { "054c", "01e8", "UP-DR150 Photo Printer" }, - { "054c", "01e9", "Net MD" }, - { "054c", "01ea", "Hi-MD WALKMAN" }, - { "054c", "01ee", "IC RECORDER" }, - { "054c", "01fa", "IC Recorder (P)" }, - { "054c", "01fb", "NW-E405 Network Walkman" }, - { "054c", "020f", "Device" }, - { "054c", "0210", "ATRAC HDD PA" }, - { "054c", "0219", "Net MD" }, - { "054c", "021a", "Hi-MD WALKMAN" }, - { "054c", "021b", "Net MD" }, - { "054c", "021c", "Hi-MD WALKMAN" }, - { "054c", "021d", "Net MD" }, - { "054c", "0226", "UP-CR10L" }, - { "054c", "0227", "Printing Support" }, - { "054c", "022c", "Net MD" }, - { "054c", "022d", "Hi-MD AUDIO" }, - { "054c", "0233", "ATRAC HDD PA" }, - { "054c", "0236", "Mobile HDD" }, - { "054c", "023b", "DVD+RW External Drive DRU-800UL" }, - { "054c", "023c", "Net MD" }, - { "054c", "023d", "Hi-MD WALKMAN" }, - { "054c", "0243", "MicroVault Flash Drive" }, - { "054c", "024b", "Vaio VGX Mouse" }, - { "054c", "0257", "IFU-WLM2 USB Wireless LAN Module (Wireless Mode)" }, - { "054c", "0258", "IFU-WLM2 USB Wireless LAN Module (Memory Mode)" }, - { "054c", "0259", "IC RECORDER" }, - { "054c", "0267", "Tachikoma Device" }, - { "054c", "0268", "Batoh Device / PlayStation 3 Controller" }, - { "054c", "0269", "HDD WALKMAN" }, - { "054c", "026a", "HDD WALKMAN" }, - { "054c", "0271", "IC Recorder (P)" }, - { "054c", "027c", "NETWORK WALKMAN" }, - { "054c", "027e", "SONY Communicator" }, - { "054c", "027f", "IC RECORDER" }, - { "054c", "0286", "Net MD" }, - { "054c", "0287", "Hi-MD WALKMAN" }, - { "054c", "0290", "VGP-UVC100 Visual Communication Camera" }, - { "054c", "029b", "PRS-500 eBook reader" }, - { "054c", "02a5", "MicroVault Flash Drive" }, - { "054c", "02af", "Handycam DCR-DVD306E" }, - { "054c", "02c4", "Device" }, - { "054c", "02d1", "DVD RW" }, - { "054c", "02d2", "PSP Slim" }, - { "054c", "02d4", "UP-CX1" }, - { "054c", "02d8", "SBAC-US10 SxS PRO memory card reader/writer" }, - { "054c", "02e1", "FeliCa S330 [PaSoRi]" }, - { "054c", "02ea", "PlayStation 3 Memory Card Adaptor" }, - { "054c", "02f9", "DSC-H9" }, - { "054c", "0317", "WALKMAN" }, - { "054c", "031a", "Walkman NWD-B103F" }, - { "054c", "031e", "PRS-300/PRS-505 eBook reader" }, - { "054c", "0325", "NWZ-A818" }, - { "054c", "033e", "DSC-W120/W290" }, - { "054c", "0346", "Handycam DCR-SR55E" }, - { "054c", "0348", "HandyCam HDR-TG3E" }, - { "054c", "035b", "Walkman NWZ-A828" }, - { "054c", "035c", "NWZ-A726/A728/A729" }, - { "054c", "035f", "UP-DR200 Photo Printer" }, - { "054c", "0360", "M2 Card Reader" }, - { "054c", "0382", "Memory Stick PRO-HG Duo Adaptor (MSAC-UAH1)" }, - { "054c", "0385", "Walkman NWZ-E436F" }, - { "054c", "0387", "IC Recorder (P)" }, - { "054c", "03bc", "Webbie HD - MHS-CM1" }, - { "054c", "03c3", "UP-DR80MD" }, - { "054c", "03c4", "Stryker SDP1000" }, - { "054c", "03c5", "UP-DR80" }, - { "054c", "03cc", "SD Card Reader" }, - { "054c", "03d1", "DPF-X95" }, - { "054c", "03d3", "DR-BT100CX" }, - { "054c", "03d5", "PlayStation Move motion controller" }, - { "054c", "03fc", "WALKMAN [NWZ-E345]" }, - { "054c", "03fd", "Walkman NWZ-E443" }, - { "054c", "042f", "PlayStation Move navigation controller" }, - { "054c", "0440", "DSC-H55" }, - { "054c", "0485", "MHS-PM5 HD camcorder" }, - { "054c", "04cb", "WALKMAN NWZ-E354" }, - { "054c", "0541", "DSC-HX100V [Cybershot Digital Still Camera]" }, - { "054c", "05c4", "DualShock 4 [CUH-ZCT1x]" }, - { "054c", "0689", "Walkman NWZ-B173F" }, - { "054c", "06bb", "WALKMAN NWZ-F805" }, - { "054c", "06c3", "RC-S380" }, - { "054c", "07c3", "ILCE-6000 (aka Alpha-6000) in Mass Storage mode" }, - { "054c", "07c4", "ILCE-6000 (aka Alpha-6000) in Mass Storage mode" }, - { "054c", "082f", "Walkman NWZW Series" }, - { "054c", "0847", "WG-C10 Portable Wireless Server" }, - { "054c", "0873", "UP-971AD" }, - { "054c", "0877", "UP-D898/X898 series" }, - { "054c", "0884", "MDR-ZX770BN [Wireless Noise Canceling Stereo Headset]" }, - { "054c", "088c", "Portable Headphone Amplifier" }, - { "054c", "08b7", "ILCE-6000 (aka Alpha-6000) in MTP mode" }, - { "054c", "094e", "ILCE-6000 (aka Alpha-6000) in PC Remote mode" }, - { "054c", "0994", "ILCE-6000 (aka Alpha-6000) in charging mode" }, - { "054c", "09cc", "DualShock 4 [CUH-ZCT2x]" }, - { "054c", "0ba0", "Dualshock4 Wireless Adaptor" }, - { "054c", "0bb5", "Headset MDR-1000X" }, - { "054c", "0c02", "ILCE-7M3 [A7III] in Mass Storage mode" }, - { "054c", "0c03", "ILCE-7M3 [A7III] in MTP mode" }, - { "054c", "0c34", "ILCE-7M3 [A7III] in PC Remote mode" }, - { "054c", "0c7f", "WH-CH700N [Wireless Noise-Canceling Headphones]" }, - { "054c", "0cd3", "WH-1000XM3 [Wireless Noise-Canceling Headphones]" }, - { "054c", "0cda", "PlayStation Classic controller" }, - { "054c", "0ce0", "WF-1000XM3 [Wireless Noise-Canceling Headphones]" }, - { "054c", "0ce6", "DualSense wireless controller (PS5)" }, - { "054c", "0cf0", "MRW-G1" }, - { "054c", "0d58", "WH-1000XM4 [Wireless Noise-Canceling Headphones]" }, - { "054c", "1000", "Wireless Buzz! Receiver" }, - { "0550", "0002", "InkJet Color Printer" }, - { "0550", "0004", "InkJet Color Printer" }, - { "0550", "0005", "InkJet Color Printer" }, - { "0550", "000b", "Workcentre 24" }, - { "0550", "014e", "CM215b Printer" }, - { "0550", "0165", "DocuPrint M215b" }, - { "0553", "0001", "TerraCAM" }, - { "0553", "0002", "CPiA Webcam" }, - { "0553", "0100", "STV0672 Camera" }, - { "0553", "0140", "Video Camera" }, - { "0553", "0150", "CDE CAM 100" }, - { "0553", "0151", "Digital Blue QX5 Microscope" }, - { "0553", "0200", "Dual-mode Camera0" }, - { "0553", "0201", "Dual-mode Camera1" }, - { "0553", "0202", "STV0680 Camera" }, - { "0553", "0674", "Multi-mode Camera" }, - { "0553", "0679", "NMS Video Camera (Webcam)" }, - { "0553", "1002", "Che-ez! Splash" }, - { "0556", "0001", "AK5370 I/F A/D Converter" }, - { "0557", "2001", "UC-1284 Printer Port" }, - { "0557", "2002", "10Mbps Ethernet [klsi]" }, - { "0557", "2004", "UC-100KM PS/2 Mouse and Keyboard adapter" }, - { "0557", "2006", "UC-1284B Printer Port" }, - { "0557", "2007", "UC-110T 100Mbps Ethernet [pegasus]" }, - { "0557", "2008", "UC-232A Serial Port [pl2303]" }, - { "0557", "2009", "UC-210T Ethernet" }, - { "0557", "2011", "UC-2324 4xSerial Ports [mos7840]" }, - { "0557", "2202", "CS124U Miniview II KVM Switch" }, - { "0557", "2212", "Keyboard/Mouse" }, - { "0557", "2213", "CS682 2-Port USB 2.0 DVI KVM Switch" }, - { "0557", "2221", "Winbond Hermon" }, - { "0557", "2404", "4-port switch" }, - { "0557", "2419", "Virtual mouse/keyboard device" }, - { "0557", "2600", "IDE Bridge" }, - { "0557", "2701", "CE700A KVM Extender" }, - { "0557", "4000", "DSB-650 10Mbps Ethernet [klsi]" }, - { "0557", "7000", "Hub" }, - { "0557", "7820", "UC-2322 2xSerial Ports [mos7820]" }, - { "0557", "8021", "Hub" }, - { "0558", "1009", "GW Instek GDS-1000 Oscilloscope" }, - { "0558", "100a", "GW Instek GDS-1000A Oscilloscope" }, - { "0558", "2009", "GW Instek GDS-2000 Oscilloscope" }, - { "055d", "0001", "Keyboard" }, - { "055d", "0bb1", "Bluetooth Device" }, - { "055d", "1030", "Optical Wheel Mouse (OMS3CB/OMGB30)" }, - { "055d", "1031", "Optical Wheel Mouse (OMA3CB/OMGI30)" }, - { "055d", "1040", "Mouse HID Device" }, - { "055d", "1050", "E-Mail Optical Wheel Mouse (OMS3CE)" }, - { "055d", "1080", "Optical Wheel Mouse (OMS3CH)" }, - { "055d", "2020", "Floppy Disk Drive" }, - { "055d", "6780", "Keyboard V1" }, - { "055d", "6781", "Keyboard Mouse" }, - { "055d", "8001", "E.M. Hub" }, - { "055d", "9000", "AnyCam [pwc]" }, - { "055d", "9001", "MPC-C30 AnyCam Premium for Notebooks [pwc]" }, - { "055d", "a000", "SWL-2100U" }, - { "055d", "a010", "WLAN Adapter(SWL-2300)" }, - { "055d", "a011", "Boot Device" }, - { "055d", "a012", "WLAN Adapter(SWL-2300)" }, - { "055d", "a013", "WLAN Adapter(SWL-2350)" }, - { "055d", "a230", "Boot Device" }, - { "055d", "b000", "11Mbps WLAN Mini Adapter" }, - { "055d", "b230", "Netopia 802.11b WLAN Adapter" }, - { "055d", "b231", "LG Wireless LAN 11b Adapter" }, - { "055f", "0001", "ScanExpress 1200 CU" }, - { "055f", "0002", "ScanExpress 600 CU" }, - { "055f", "0003", "ScanExpress 1200 USB" }, - { "055f", "0006", "ScanExpress 1200 UB" }, - { "055f", "0007", "ScanExpress 1200 USB Plus" }, - { "055f", "0008", "ScanExpress 1200 CU Plus" }, - { "055f", "0010", "BearPaw 1200F" }, - { "055f", "0210", "ScanExpress A3 USB" }, - { "055f", "0218", "BearPaw 2400 TA" }, - { "055f", "0219", "BearPaw 2400 TA Plus" }, - { "055f", "021a", "BearPaw 2448 TA Plus" }, - { "055f", "021b", "BearPaw 1200 CU Plus" }, - { "055f", "021c", "BearPaw 1200 CU Plus" }, - { "055f", "021d", "BearPaw 2400 CU Plus" }, - { "055f", "021e", "BearPaw 1200 TA/CS" }, - { "055f", "021f", "SNAPSCAN e22" }, - { "055f", "0400", "BearPaw 2400 TA Pro" }, - { "055f", "0401", "P 3600 A3 Pro" }, - { "055f", "0408", "BearPaw 2448 CU Pro" }, - { "055f", "0409", "BearPaw 2448 TA Pro" }, - { "055f", "040b", "ScanExpress A3 USB 1200 PRO" }, - { "055f", "0501", "ScanExpress A3 2400 Pro" }, - { "055f", "0873", "ScanExpress 600 USB" }, - { "055f", "1000", "BearPaw 4800 TA Pro" }, - { "055f", "a350", "gSmart 350 Camera" }, - { "055f", "a800", "MDC 800 Camera" }, - { "055f", "b500", "MDC 3000 Camera" }, - { "055f", "c005", "PC CAM 300A" }, - { "055f", "c200", "gSmart 300" }, - { "055f", "c211", "Kowa Bs888e Microcamera" }, - { "055f", "c220", "gSmart mini" }, - { "055f", "c230", "Digicam 330K" }, - { "055f", "c232", "MDC3500 Camera" }, - { "055f", "c360", "DV 4000 Camera" }, - { "055f", "c420", "gSmart mini 2 Camera" }, - { "055f", "c430", "gSmart LCD 2 Camera" }, - { "055f", "c440", "DV 3000 Camera" }, - { "055f", "c520", "gSmart mini 3 Camera" }, - { "055f", "c530", "gSmart LCD 2 Camera" }, - { "055f", "c540", "gSmart D30 Camera" }, - { "055f", "c630", "MDC 4000 Camera" }, - { "055f", "c631", "MDC 4000 Camera" }, - { "055f", "c650", "MDC 5500Z Camera" }, - { "055f", "d001", "WCam 300" }, - { "055f", "d003", "WCam 300A" }, - { "055f", "d004", "WCam 300AN" }, - { "0562", "0001", "Enhanced Microphone" }, - { "0562", "0002", "Telex Microphone" }, - { "0565", "0001", "Serial Port [etek]" }, - { "0565", "0002", "Enet Ethernet [klsi]" }, - { "0565", "0003", "@Home Networks Ethernet [klsi]" }, - { "0565", "0005", "Enet2 Ethernet [klsi]" }, - { "0565", "0041", "Peracom Remote NDIS Ethernet Adapter" }, - { "0566", "0110", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1001", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1002", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1003", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1004", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1005", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1006", "ViewMate Desktop Mouse CC2201" }, - { "0566", "1007", "ViewMate Desktop Mouse CC2201" }, - { "0566", "2800", "MIC K/B" }, - { "0566", "2801", "MIC K/B Mouse" }, - { "0566", "2802", "Kbd Hub" }, - { "0566", "3002", "Keyboard" }, - { "0566", "3004", "Genius KB-29E" }, - { "0566", "3013", "BakkerElkhuizen Wired Keyboard S-board 840 Design" }, - { "0566", "3020", "BakkerElkhuizen Wired Keyboard S-board 840 Design USB-Hub" }, - { "0566", "3027", "Sun-Flex ProTouch" }, - { "0566", "3107", "Keyboard" }, - { "0566", "3132", "Optical mouse M-DY4DR / M-DY6DR" }, - { "0566", "4006", "FID 638 Mouse (Sun Microsystems)" }, - { "056a", "0000", "PenPartner" }, - { "056a", "0001", "PenPartner 4x5" }, - { "056a", "0002", "PenPartner 6x8" }, - { "056a", "0003", "PTU-600 [Cintiq Partner]" }, - { "056a", "0010", "ET-0405 [Graphire]" }, - { "056a", "0011", "ET-0405A [Graphire2 (4x5)]" }, - { "056a", "0012", "ET-0507A [Graphire2 (5x7)]" }, - { "056a", "0013", "CTE-430 [Graphire3 (4x5)]" }, - { "056a", "0014", "CTE-630 [Graphire3 (6x8)]" }, - { "056a", "0015", "CTE-440 [Graphire4 (4x5)]" }, - { "056a", "0016", "CTE-640 [Graphire4 (6x8)]" }, - { "056a", "0017", "CTE-450 [Bamboo Fun (small)]" }, - { "056a", "0018", "CTE-650 [Bamboo Fun (medium)]" }, - { "056a", "0019", "CTE-631 [Bamboo One]" }, - { "056a", "0020", "GD-0405 [Intuos (4x5)]" }, - { "056a", "0021", "GD-0608 [Intuos (6x8)]" }, - { "056a", "0022", "GD-0912 [Intuos (9x12)]" }, - { "056a", "0023", "GD-1212 [Intuos (12x12)]" }, - { "056a", "0024", "GD-1218 [Intuos (12x18)]" }, - { "056a", "0026", "PTH-450 [Intuos5 touch (S)]" }, - { "056a", "0027", "PTH-650 [Intuos5 touch (M)]" }, - { "056a", "0028", "PTH-850 [Intuos5 touch (L)]" }, - { "056a", "0029", "PTK-450 [Intuos5 (S)]" }, - { "056a", "002a", "PTK-650 [Intuos5 (M)]" }, - { "056a", "0030", "PL400" }, - { "056a", "0031", "PL500" }, - { "056a", "0032", "PL600" }, - { "056a", "0033", "PL600SX" }, - { "056a", "0034", "PL550" }, - { "056a", "0035", "PL800" }, - { "056a", "0037", "PL700" }, - { "056a", "0038", "PL510" }, - { "056a", "0039", "DTU-710" }, - { "056a", "003a", "DTI-520" }, - { "056a", "003b", "Integrated Hub" }, - { "056a", "003f", "DTZ-2100 [Cintiq 21UX]" }, - { "056a", "0041", "XD-0405-U [Intuos2 (4x5)]" }, - { "056a", "0042", "XD-0608-U [Intuos2 (6x8)]" }, - { "056a", "0043", "XD-0912-U [Intuos2 (9x12)]" }, - { "056a", "0044", "XD-1212-U [Intuos2 (12x12)]" }, - { "056a", "0045", "XD-1218-U [Intuos2 (12x18)]" }, - { "056a", "0047", "Intuos2 6x8" }, - { "056a", "0057", "DTK-2241" }, - { "056a", "0059", "DTH-2242 tablet" }, - { "056a", "005b", "DTH-2200 [Cintiq 22HD Touch] tablet" }, - { "056a", "005d", "DTH-2242 touchscreen" }, - { "056a", "005e", "DTH-2200 [Cintiq 22HD Touch] touchscreen" }, - { "056a", "0060", "FT-0405 [Volito, PenPartner, PenStation (4x5)]" }, - { "056a", "0061", "FT-0203 [Volito, PenPartner, PenStation (2x3)]" }, - { "056a", "0062", "CTF-420 [Volito2]" }, - { "056a", "0063", "CTF-220 [BizTablet]" }, - { "056a", "0064", "CTF-221 [PenPartner2]" }, - { "056a", "0065", "MTE-450 [Bamboo]" }, - { "056a", "0069", "CTF-430 [Bamboo One]" }, - { "056a", "006a", "CTE-460 [Bamboo One Pen (S)]" }, - { "056a", "006b", "CTE-660 [Bamboo One Pen (M)]" }, - { "056a", "0081", "CTE-630BT [Graphire Wireless (6x8)]" }, - { "056a", "0084", "ACK-40401 [Wireless Accessory Kit]" }, - { "056a", "0090", "TPC90" }, - { "056a", "0093", "TPC93" }, - { "056a", "0097", "TPC97" }, - { "056a", "009a", "TPC9A" }, - { "056a", "00a2", "STU-300B [LCD signature pad]" }, - { "056a", "00b0", "PTZ-430 [Intuos3 (4x5)]" }, - { "056a", "00b1", "PTZ-630 [Intuos3 (6x8)]" }, - { "056a", "00b2", "PTZ-930 [Intuos3 (9x12)]" }, - { "056a", "00b3", "PTZ-1230 [Intuos3 (12x12)]" }, - { "056a", "00b4", "PTZ-1231W [Intuos3 (12x19)]" }, - { "056a", "00b5", "PTZ-631W [Intuos3 (6x11)]" }, - { "056a", "00b7", "PTZ-431W [Intuos3 (4x6)]" }, - { "056a", "00b8", "PTK-440 [Intuos4 (4x6)]" }, - { "056a", "00b9", "PTK-640 [Intuos4 (6x9)]" }, - { "056a", "00ba", "PTK-840 [Intuos4 (8x13)]" }, - { "056a", "00bb", "PTK-1240 [Intuos4 (12x19)]" }, - { "056a", "00c0", "DTF-521" }, - { "056a", "00c4", "DTF-720" }, - { "056a", "00c5", "DTZ-2000W [Cintiq 20WSX]" }, - { "056a", "00c6", "DTZ-1200W [Cintiq 12WX]" }, - { "056a", "00c7", "DTU-1931" }, - { "056a", "00cc", "DTK-2100 [Cintiq 21UX]" }, - { "056a", "00ce", "DTU-2231" }, - { "056a", "00d0", "CTT-460 [Bamboo Touch]" }, - { "056a", "00d1", "CTH-460 [Bamboo Pen & Touch]" }, - { "056a", "00d2", "CTH-461 [Bamboo Fun/Craft/Comic Pen & Touch (S)]" }, - { "056a", "00d3", "CTH-661 [Bamboo Fun/Comic Pen & Touch (M)]" }, - { "056a", "00d4", "CTL-460 [Bamboo Pen (S)]" }, - { "056a", "00d5", "CTL-660 [Bamboo Pen (M)]" }, - { "056a", "00d6", "CTH-460 [Bamboo Pen & Touch]" }, - { "056a", "00d7", "CTH-461 [Bamboo Fun/Craft/Comic Pen & Touch (S)]" }, - { "056a", "00d8", "CTH-661 [Bamboo Fun/Comic Pen & Touch (M)]" }, - { "056a", "00d9", "CTT-460 [Bamboo Touch]" }, - { "056a", "00da", "CTH-461SE [Bamboo Pen & Touch Special Edition (S)]" }, - { "056a", "00db", "CTH-661SE [Bamboo Pen & Touch Special Edition (M)]" }, - { "056a", "00dc", "CTT-470 [Bamboo Touch]" }, - { "056a", "00dd", "CTL-470 [Bamboo Connect]" }, - { "056a", "00de", "CTH-470 [Bamboo Fun Pen & Touch]" }, - { "056a", "00df", "CTH-670 [Bamboo Create/Fun]" }, - { "056a", "00e2", "TPCE2" }, - { "056a", "00e3", "TPCE3" }, - { "056a", "00e5", "TPCE5" }, - { "056a", "00e6", "TPCE6" }, - { "056a", "00ec", "TPCEC" }, - { "056a", "00ed", "TPCED" }, - { "056a", "00ef", "TPCEF" }, - { "056a", "00f0", "DTU-1631" }, - { "056a", "00f4", "DTK-2400 [Cintiq 24HD] tablet" }, - { "056a", "00f6", "DTH-2400 [Cintiq 24HD touch] touchscreen" }, - { "056a", "00f8", "DTH-2400 [Cintiq 24HD touch] tablet" }, - { "056a", "00f9", "DTK-2200 [Cintiq 22HD] hub" }, - { "056a", "00fa", "DTK-2200 [Cintiq 22HD] tablet" }, - { "056a", "00fb", "DTU-1031" }, - { "056a", "0100", "TPC100" }, - { "056a", "0101", "TPC101" }, - { "056a", "010d", "TPC10D" }, - { "056a", "010e", "TPC10E" }, - { "056a", "010f", "TPC10F" }, - { "056a", "0116", "TPC116" }, - { "056a", "012c", "TPC12C" }, - { "056a", "0221", "MDP-123 [Inkling]" }, - { "056a", "0300", "CTL-471 [Bamboo Splash, One by Wacom (S)]" }, - { "056a", "0301", "CTL-671 [One by Wacom (M)]" }, - { "056a", "0302", "CTH-480 [Intuos Pen & Touch (S)]" }, - { "056a", "0303", "CTH-680 [Intuos Pen & Touch (M)]" }, - { "056a", "0304", "DTK-1300 [Cintiq 13HD]" }, - { "056a", "0307", "DTH-A1300 [Cintiq Companion Hybrid] tablet" }, - { "056a", "0309", "DTH-A1300 [Cintiq Companion Hybrid] touchscreen" }, - { "056a", "030e", "CTL-480 [Intuos Pen (S)]" }, - { "056a", "0314", "PTH-451 [Intuos pro (S)]" }, - { "056a", "0315", "PTH-651 [Intuos pro (M)]" }, - { "056a", "0317", "PTH-851 [Intuos pro (L)]" }, - { "056a", "0318", "CTH-301 [Bamboo]" }, - { "056a", "0319", "CTH-300 [Bamboo Pad wireless]" }, - { "056a", "0323", "CTL-680 [Intuos Pen (M)]" }, - { "056a", "032a", "DTK-2700 [Cintiq 27QHD]" }, - { "056a", "032b", "DTH-2700 [Cintiq 27QHD touch] tablet" }, - { "056a", "032c", "DTH-2700 [Cintiq 27QHD touch] touchscreen" }, - { "056a", "032f", "DTU-1031X" }, - { "056a", "0331", "ACK-411050 [ExpressKey Remote]" }, - { "056a", "0333", "DTH-1300 [Cintiq 13HD Touch] tablet" }, - { "056a", "0335", "DTH-1300 [Cintiq 13HD Touch] touchscreen" }, - { "056a", "0336", "DTU-1141" }, - { "056a", "033b", "CTL-490 [Intuos Draw (S)]" }, - { "056a", "033c", "CTH-490 [Intuos Art/Photo/Comic (S)]" }, - { "056a", "033d", "CTL-690 [Intuos Draw (M)]" }, - { "056a", "033e", "CTH-690 [Intuos Art (M)]" }, - { "056a", "0343", "DTK-1651" }, - { "056a", "0347", "DTH-W1620 [MobileStudio Pro 16] internal hub" }, - { "056a", "0348", "DTH-W1620 [MobileStudio Pro 16] external hub" }, - { "056a", "034a", "DTH-W1320 [MobileStudio Pro 13] touchscreen" }, - { "056a", "034b", "DTH-W1620 [MobileStudio Pro 16] touchscreen" }, - { "056a", "034d", "DTH-W1320 [MobileStudio Pro 13] tablet" }, - { "056a", "034e", "DTH-W1620 [MobileStudio Pro 16] tablet" }, - { "056a", "034f", "DTH-1320 [Cintiq Pro 13] tablet" }, - { "056a", "0350", "DTH-1620 [Cintiq Pro 16] tablet" }, - { "056a", "0351", "DTH-2420 [Cintiq Pro 24 PT] tablet" }, - { "056a", "0352", "DTH-3220 [Cintiq Pro 32] tablet" }, - { "056a", "0353", "DTH-1320 [Cintiq Pro 13] touchscreen" }, - { "056a", "0354", "DTH-1620 [Cintiq Pro 16] touchscreen" }, - { "056a", "0355", "DTH-2420 [Cintiq Pro 24 PT] touchscreen" }, - { "056a", "0356", "DTH-3220 [Cintiq Pro 32] touchscreen" }, - { "056a", "0357", "PTH-660 [Intuos Pro (M)]" }, - { "056a", "0358", "PTH-860 [Intuos Pro (L)]" }, - { "056a", "0359", "DTU-1141B" }, - { "056a", "035a", "DTH-1152 tablet" }, - { "056a", "0368", "DTH-1152 touchscreen" }, - { "056a", "0374", "CTL-4100 [Intuos (S)]" }, - { "056a", "0375", "CTL-6100 [Intuos (M)]" }, - { "056a", "0376", "CTL-4100WL [Intuos BT (S)]" }, - { "056a", "0378", "CTL-6100WL [Intuos BT (M)]" }, - { "056a", "037a", "CTL-472 [One by Wacom (S)]" }, - { "056a", "037b", "CTL-672 [One by Wacom (M)]" }, - { "056a", "037c", "DTK-2420 [Cintiq Pro 24 P]" }, - { "056a", "037d", "DTH-2452 tablet" }, - { "056a", "037e", "DTH-2452 touchscreen" }, - { "056a", "0382", "DTK-2451 tablet" }, - { "056a", "038a", "DTH-3220 [Cintiq Pro 32] internal hub" }, - { "056a", "038d", "DTH-3220 [Cintiq Pro 32] internal hub" }, - { "056a", "038e", "DTH-3220 [Cintiq Pro 32] external hub" }, - { "056a", "038f", "DTH-3220 [Cintiq Pro 32] internal hub" }, - { "056a", "0390", "DTK-1660 [Cintiq 16]" }, - { "056a", "0392", "PTH-460 [Intuos Pro (S)]" }, - { "056a", "0396", "DTK-1660E" }, - { "056a", "0398", "DTH-W1320 [MobileStudio Pro 13] tablet" }, - { "056a", "0399", "DTH-W1620 [MobileStudio Pro 16] tablet" }, - { "056a", "039a", "DTH-W1320 [MobileStudio Pro 13] touchscreen" }, - { "056a", "039b", "DTH-W1620 [MobileStudio Pro 16] touchscreen" }, - { "056a", "039c", "DTH-W1320 [MobileStudio Pro 16] external hub" }, - { "056a", "039d", "DTH-W1320 [MobileStudio Pro 16] internal hub" }, - { "056a", "03aa", "DTH-W1620 [MobileStudio Pro 16] tablet" }, - { "056a", "03ac", "DTH-W1620 [MobileStudio Pro 16] touchscreen" }, - { "056a", "03c5", "CTL-4100WL [Intuos BT (S)]" }, - { "056a", "03c7", "CTL-6100WL [Intuos BT (M)]" }, - { "056a", "0400", "PenPartner 4x5" }, - { "056a", "4001", "TPC4001" }, - { "056a", "4004", "TPC4004" }, - { "056a", "4850", "PenPartner 6x8" }, - { "056a", "5000", "TPC5000" }, - { "056a", "5002", "TPC5002" }, - { "056a", "5010", "TPC5010" }, - { "056c", "0006", "KwikLink Host-Host Connector" }, - { "056c", "8007", "Kwik232 Serial Port" }, - { "056c", "8100", "KwikLink Host-Host Connector" }, - { "056c", "8101", "KwikLink USB-USB Bridge" }, - { "056d", "0000", "Hub" }, - { "056d", "0001", "Monitor" }, - { "056d", "0002", "HID Monitor Controls" }, - { "056d", "0003", "Device Bay Controller" }, - { "056d", "4000", "FlexScan EV3237" }, - { "056d", "4001", "Monitor" }, - { "056d", "4002", "USB HID Monitor" }, - { "056d", "4014", "FlexScan EV2750" }, - { "056d", "4026", "FlexScan EV2451" }, - { "056d", "4027", "FlexScan EV2456" }, - { "056d", "4036", "FlexScan EV2785" }, - { "056d", "4037", "FlexScan EV3285" }, - { "056d", "4044", "FlexScan EV2457" }, - { "056d", "4059", "FlexScan EV2760" }, - { "056d", "405b", "FlexScan EV2460" }, - { "056d", "405f", "FlexScan EV2795" }, - { "056d", "4065", "FlexScan EV3895" }, - { "056e", "0002", "29UO Mouse" }, - { "056e", "0057", "Micro Grast Pop M-PGDL" }, - { "056e", "005c", "Micro Grast Pop M-PG2DL" }, - { "056e", "005d", "Micro Grast Fit M-FGDL" }, - { "056e", "005e", "Micro Grast Fit M-FG2DL" }, - { "056e", "0062", "Optical mouse M-D18DR" }, - { "056e", "0063", "Laser mouse M-SODL" }, - { "056e", "0069", "Laser mouse M-GE1UL" }, - { "056e", "0071", "Laser mouse M-GE3DL" }, - { "056e", "0072", "Laser mouse M-LS6UL" }, - { "056e", "0073", "Laser mouse M-LS7UL" }, - { "056e", "0074", "Optical mouse M-FW1UL" }, - { "056e", "0075", "Laser mouse M-FW2DL" }, - { "056e", "0077", "Laser mouse M-LY2UL" }, - { "056e", "0079", "Laser mouse M-D21DL" }, - { "056e", "007b", "Laser mouse M-D20DR" }, - { "056e", "007c", "Laser Bluetooth mouse M-BT5BL" }, - { "056e", "007e", "Option mouse M-M8UR" }, - { "056e", "007f", "Option mouse M-M9UR" }, - { "056e", "0081", "Option mouse M-DY6DR" }, - { "056e", "0082", "Laser mouse M-D22DR" }, - { "056e", "0088", "Micro Grast2 Bit M-BG3DL" }, - { "056e", "0089", "Micro Grast2 Pop M-PG3DL" }, - { "056e", "008c", "M-NE3DL Mouse" }, - { "056e", "008d", "ORIME M-NE4DR" }, - { "056e", "008f", "M-BT8BL Bluetooth Mouse" }, - { "056e", "0092", "Wireless BlueLED Mouse (M-BL2DB)" }, - { "056e", "009c", "IR Mouse M-IR02DR" }, - { "056e", "009d", "IR Mouse M-IR03DR" }, - { "056e", "009f", "BlueLED Mouse M-HS1DB" }, - { "056e", "00a1", "IR Mouse M-IR05DR" }, - { "056e", "00a4", "Blue LED Mouse M-BL06DB" }, - { "056e", "00a5", "M-NV1BR Bluetooth Mouse" }, - { "056e", "00a7", "Blue LED Mouse M-BL08DB" }, - { "056e", "00a8", "M-BL09DB Mouse" }, - { "056e", "00a9", "M-BL10UB Mouse" }, - { "056e", "00aa", "M-BL11DB Mouse" }, - { "056e", "00ac", "M-A-BL01UL / M-BL15DB Mouse" }, - { "056e", "00b4", "Track on Glass Mouse M-TG02DL" }, - { "056e", "00b5", "Track on Glass Mouse M-TG03UL" }, - { "056e", "00b6", "Track on Glass Mouse M-TG04DL" }, - { "056e", "00b8", "M-A-BL01UL or M-ASKL2 Mouse" }, - { "056e", "00b9", "M-A-BL02DB or M-ASKL Mouse" }, - { "056e", "00cb", "M-BL21DB Mouse" }, - { "056e", "00cd", "M-XG1UB Mouse" }, - { "056e", "00ce", "M-XG1DB Mouse" }, - { "056e", "00cf", "M-XG1BB Bluetooth Mouse" }, - { "056e", "00d0", "M-XG2UB Mouse" }, - { "056e", "00d1", "M-XG2DB Mouse" }, - { "056e", "00d2", "M-XG2BB Bluetooth Mouse" }, - { "056e", "00d3", "M-XG3DL Mouse" }, - { "056e", "00d4", "M-LS11DL Mouse" }, - { "056e", "00da", "M-XG4UB Mouse" }, - { "056e", "00db", "M-XG4DB Mouse" }, - { "056e", "00dc", "M-XG4BB Bluetooth Mouse" }, - { "056e", "00dd", "M-LS12UL Mouse" }, - { "056e", "00de", "M-LS13UL Mouse" }, - { "056e", "00df", "M-BL22DB Mouse" }, - { "056e", "00e1", "M-WK01DB or M-A-BL04DB" }, - { "056e", "00e2", "M-A-BL03DB" }, - { "056e", "00e3", "M-XGx10UB" }, - { "056e", "00e4", "M-XGx10DB" }, - { "056e", "00e5", "M-XGx10BB" }, - { "056e", "00e6", "M-XGx20DL or M-XGx20DB UltimateLaser Mouse" }, - { "056e", "00f1", "M-XT1DRBK USB EX-G Wireless Optical TrackBall" }, - { "056e", "00f2", "M-XT1URBK EX-G Optical Trackball" }, - { "056e", "00f3", "M-BL23DB" }, - { "056e", "00f4", "M-BT13BL LBT-UAN05C2" }, - { "056e", "00f7", "M-KN1DB" }, - { "056e", "00f8", "M-BL22DB Mouse (other version)" }, - { "056e", "00f9", "M-XT2URBK EX-G Optical TrackBall" }, - { "056e", "00fa", "M-XT2DRBK EX-G Wireless Optical TrackBall" }, - { "056e", "00fb", "M-XT3URBK EX-G Optical TrackBall" }, - { "056e", "00fc", "M-XT3DRBK EX-G Wireless Optical TrackBall" }, - { "056e", "00fd", "M-XT4DRBK EX-G Wireless Optical TrackBall" }, - { "056e", "00fe", "M-DT1URBK or M-DT2URBK DEFT Optical TrackBall" }, - { "056e", "00ff", "M-DT1DRBK or M-DT2DRBK DEFT Wireless Optical Mouse" }, - { "056e", "0101", "M-BL25UBS" }, - { "056e", "0103", "M-BT16BBS" }, - { "056e", "0104", "M-BL26UBC" }, - { "056e", "0105", "M-BL26DBC" }, - { "056e", "0107", "M-LS15UL" }, - { "056e", "0108", "M-LS15DL" }, - { "056e", "0109", "M-LS16UL Mouse" }, - { "056e", "010a", "M-LS16DL / M-KN2DLS" }, - { "056e", "010b", "M-BL21DB Mouse" }, - { "056e", "010c", "M-HT1URBK HUGE Optical TrackBall" }, - { "056e", "010d", "M-HT1DRBK HUGE Wireless Optical TrackBall" }, - { "056e", "010e", "M-KS1DBS / M-FPG3DBS" }, - { "056e", "010f", "M-FBG3DB" }, - { "056e", "0115", "M-BT13BL" }, - { "056e", "0121", "M-ED01DB" }, - { "056e", "0122", "M-NK01DB" }, - { "056e", "0124", "Dual connect Mouse M-DC01MB Bluetooth" }, - { "056e", "0128", "TrackBall Mouse M-XPT1MR Wired" }, - { "056e", "0129", "TrackBall Mouse M-XPT1MR Wireless" }, - { "056e", "0130", "TrackBall Mouse M-XPT1MR Bluetooth" }, - { "056e", "0131", "TrackBall Mouse M-DPT1MR Wired" }, - { "056e", "0132", "TrackBall Mouse M-DPT1MR Wireless" }, - { "056e", "0133", "TrackBall Mouse M-DPT1MR Bluetooth" }, - { "056e", "0136", "M-BT20BB" }, - { "056e", "0137", "BlueTooth 4.0 Mouse M-BT21BB" }, - { "056e", "0138", "M-A-BL07DB" }, - { "056e", "0140", "M-G01UR" }, - { "056e", "0141", "M-Y9UB" }, - { "056e", "0142", "M-DY13DB" }, - { "056e", "0144", "M-FBL01DB" }, - { "056e", "1055", "TK-DCP03 WIRED" }, - { "056e", "1057", "TK-DCP03 BT" }, - { "056e", "2003", "JC-U3613M" }, - { "056e", "2004", "JC-U3613M" }, - { "056e", "200c", "LD-USB/TX" }, - { "056e", "200f", "JC-U4013S Gamepad" }, - { "056e", "2012", "JC-U4013S Gamepad" }, - { "056e", "4002", "Laneed 100Mbps Ethernet LD-USB/TX [pegasus]" }, - { "056e", "4005", "LD-USBL/TX" }, - { "056e", "400b", "LD-USB/TX" }, - { "056e", "4010", "LD-USB20" }, - { "056e", "5003", "UC-SGT" }, - { "056e", "5004", "UC-SGT" }, - { "056e", "6008", "Flash Disk" }, - { "056e", "abc1", "LD-USB/TX" }, - { "056f", "cd00", "CDM-751 CD organizer" }, - { "0571", "0002", "echoFX InterView Lite" }, - { "0572", "0001", "Ezcam II Webcam" }, - { "0572", "0002", "Ezcam II Webcam" }, - { "0572", "0040", "Wondereye CP-115 Webcam" }, - { "0572", "0041", "Webcam Notebook" }, - { "0572", "0042", "Webcam Notebook" }, - { "0572", "0320", "DVBSky T330 DVB-T2/C tuner" }, - { "0572", "1232", "V.90 modem" }, - { "0572", "1234", "Typhoon Redfun Modem V90 56k" }, - { "0572", "1252", "HCF V90 Data Fax Voice Modem" }, - { "0572", "1253", "Zoom V.92 Faxmodem" }, - { "0572", "1300", "SoftK56 Data Fax Voice CARP" }, - { "0572", "1301", "Modem Enumerator" }, - { "0572", "1328", "TrendNet TFM-561 modem" }, - { "0572", "1804", "HP Dock Audio" }, - { "0572", "2000", "SoftGate 802.11 Adapter" }, - { "0572", "2002", "SoftGate 802.11 Adapter" }, - { "0572", "262a", "tm5600 Video & Audio Grabber Capture" }, - { "0572", "680c", "DVBSky T680C DVB-T2/C tuner" }, - { "0572", "6831", "DVBSky S960 DVB-S2 tuner" }, - { "0572", "8390", "WinFast PalmTop/Novo TV Video" }, - { "0572", "8392", "WinFast PalmTop/Novo TV Video" }, - { "0572", "960c", "DVBSky S960C DVB-S2 tuner" }, - { "0572", "c686", "Geniatech T220A DVB-T2 TV Stick" }, - { "0572", "c688", "Geniatech T230 DVB-T2 TV Stick" }, - { "0572", "cafc", "CX861xx ROM Boot Loader" }, - { "0572", "cafd", "CX82310 ROM Boot Loader" }, - { "0572", "cafe", "AccessRunner ADSL Modem" }, - { "0572", "cb00", "ADSL Modem" }, - { "0572", "cb01", "ADSL Modem" }, - { "0572", "cb06", "StarModem Network Interface" }, - { "0573", "0003", "USBGear USBG-V1" }, - { "0573", "0400", "D-Link V100" }, - { "0573", "0600", "Dazzle USBVision (1006)" }, - { "0573", "1300", "leadtek USBVision (1006)" }, - { "0573", "2000", "X10 va10a Wireless Camera" }, - { "0573", "2001", "Dazzle EmMe (2001)" }, - { "0573", "2101", "Zoran Co. PMD (Nogatech) AV-grabber Manhattan" }, - { "0573", "2d00", "Osprey 50" }, - { "0573", "2d01", "Hauppauge USB-Live Model 600" }, - { "0573", "3000", "Dazzle MicroCam (NTSC)" }, - { "0573", "3001", "Dazzle MicroCam (PAL)" }, - { "0573", "4000", "Nogatech TV! (NTSC)" }, - { "0573", "4001", "Nogatech TV! (PAL)" }, - { "0573", "4002", "Nogatech TV! (PAL-I-)" }, - { "0573", "4003", "Nogatech TV! (MF-)" }, - { "0573", "4008", "Nogatech TV! (NTSC) (T)" }, - { "0573", "4009", "Nogatech TV! (PAL) (T)" }, - { "0573", "4010", "Nogatech TV! (NTSC) (A)" }, - { "0573", "4100", "USB-TV FM (NTSC)" }, - { "0573", "4110", "PNY USB-TV (NTSC) FM" }, - { "0573", "4400", "Nogatech TV! Pro (NTSC)" }, - { "0573", "4401", "Nogatech TV! Pro (PAL)" }, - { "0573", "4450", "PixelView PlayTv-USB PRO (PAL) FM" }, - { "0573", "4451", "Nogatech TV! Pro (PAL+)" }, - { "0573", "4452", "Nogatech TV! Pro (PAL-I+)" }, - { "0573", "4500", "Nogatech TV! Pro (NTSC)" }, - { "0573", "4501", "Nogatech TV! Pro (PAL)" }, - { "0573", "4550", "ZTV ZT-721 2.4GHz A/V Receiver" }, - { "0573", "4551", "Dazzle TV! Pro Audio (P+)" }, - { "0573", "4d00", "Hauppauge WinTV-USB USA" }, - { "0573", "4d01", "Hauppauge WinTV-USB" }, - { "0573", "4d02", "Hauppauge WinTV-USB UK" }, - { "0573", "4d03", "Hauppauge WinTV-USB France" }, - { "0573", "4d04", "Hauppauge WinTV (PAL D/K)" }, - { "0573", "4d10", "Hauppauge WinTV-USB with FM USA radio" }, - { "0573", "4d11", "Hauppauge WinTV-USB (PAL) with FM radio" }, - { "0573", "4d12", "Hauppauge WinTV-USB UK with FM Radio" }, - { "0573", "4d14", "Hauppauge WinTV (PAL D/K FM)" }, - { "0573", "4d20", "Hauppauge WinTV-USB II (PAL) with FM radio" }, - { "0573", "4d21", "Hauppauge WinTV-USB II (PAL)" }, - { "0573", "4d22", "Hauppauge WinTV-USB II (PAL) Model 566" }, - { "0573", "4d23", "Hauppauge WinTV-USB France 4D23" }, - { "0573", "4d24", "Hauppauge WinTV Pro (PAL D/K)" }, - { "0573", "4d25", "Hauppauge WinTV-USB Model 40209 rev B234" }, - { "0573", "4d26", "Hauppauge WinTV-USB Model 40209 rev B243" }, - { "0573", "4d27", "Hauppauge WinTV-USB Model 40204 Rev B281" }, - { "0573", "4d28", "Hauppauge WinTV-USB Model 40204 rev B283" }, - { "0573", "4d29", "Hauppauge WinTV-USB Model 40205 rev B298" }, - { "0573", "4d2a", "Hauppague WinTV-USB Model 602 Rev B285" }, - { "0573", "4d2b", "Hauppague WinTV-USB Model 602 Rev B282" }, - { "0573", "4d2c", "Hauppauge WinTV Pro (PAL/SECAM)" }, - { "0573", "4d30", "Hauppauge WinTV-USB FM Model 40211 Rev B123" }, - { "0573", "4d31", "Hauppauge WinTV-USB III (PAL) with FM radio Model 568" }, - { "0573", "4d32", "Hauppauge WinTV-USB III (PAL) FM Model 573" }, - { "0573", "4d34", "Hauppauge WinTV Pro (PAL D/K FM)" }, - { "0573", "4d35", "Hauppauge WinTV-USB III (PAL) FM Model 597" }, - { "0573", "4d36", "Hauppauge WinTV Pro (PAL B/G FM)" }, - { "0573", "4d37", "Hauppauge WinTV-USB Model 40219 rev E189" }, - { "0573", "4d38", "Hauppauge WinTV Pro (NTSC FM)" }, - { "057b", "0000", "FlashBuster-U Floppy" }, - { "057b", "0001", "Tri-Media Reader Floppy" }, - { "057b", "0006", "Tri-Media Reader Card Reader" }, - { "057b", "0010", "Memory Stick Reader Writer" }, - { "057b", "0020", "HEXA Media Drive 6-in-1 Card Reader Writer" }, - { "057b", "0030", "Memory Card Viewer (TV)" }, - { "057c", "0b00", "ISDN-Controller B1 Family" }, - { "057c", "0c00", "ISDN-Controller FRITZ!Card" }, - { "057c", "1000", "ISDN-Controller FRITZ!Card v2.0" }, - { "057c", "1900", "ISDN-Controller FRITZ!Card v2.1" }, - { "057c", "2000", "ISDN-Connector FRITZ!X" }, - { "057c", "2200", "BlueFRITZ!" }, - { "057c", "2300", "Teledat X130 DSL" }, - { "057c", "2800", "Teledat 2a/b / X120 / NetXXL ISDN Terminal Adapter" }, - { "057c", "3200", "Teledat X130 DSL" }, - { "057c", "3500", "FRITZ!Card DSL SL" }, - { "057c", "3701", "FRITZ!Box SL" }, - { "057c", "3702", "FRITZ!Box" }, - { "057c", "3800", "BlueFRITZ! Bluetooth Stick" }, - { "057c", "3a00", "FRITZ!Box Fon" }, - { "057c", "3c00", "FRITZ!Box WLAN" }, - { "057c", "3d00", "FRITZ!Box Fon WLAN 7050/7140/7170/IAD3331" }, - { "057c", "3e01", "FRITZ!Box (Annex A)" }, - { "057c", "4001", "FRITZ!Box Fon (Annex A)" }, - { "057c", "4101", "FRITZ!Box WLAN (Annex A)" }, - { "057c", "4201", "FRITZ!Box Fon WLAN (Annex A)" }, - { "057c", "4601", "Eumex 5520PC (WinXP/2000)" }, - { "057c", "4602", "Eumex 400 (WinXP/2000)" }, - { "057c", "4701", "AVM FRITZ!Box Fon ata" }, - { "057c", "5401", "Eumex 300 IP" }, - { "057c", "5601", "AVM Fritz!WLAN [Texas Instruments TNETW1450]" }, - { "057c", "6201", "AVM Fritz!WLAN v1.1 [Texas Instruments TNETW1450]" }, - { "057c", "62ff", "AVM Fritz!WLAN USB (in CD-ROM-mode)" }, - { "057c", "8401", "Fritz!WLAN N [Atheros AR9001U]" }, - { "057c", "8402", "Fritz!WLAN N 2.4 [Atheros AR9001U]" }, - { "057c", "8403", "Fritz!WLAN N v2 [Atheros AR9271]" }, - { "057c", "84ff", "AVM Fritz!WLAN USB N (in CD-ROM-mode)" }, - { "057c", "8501", "FRITZ WLAN N v2 [RT5572/rt2870.bin]" }, - { "057e", "0300", "USB-EXI Adapter (GCP-2000)" }, - { "057e", "0304", "RVT-H Reader" }, - { "057e", "0305", "Broadcom BCM2045A Bluetooth Radio [Nintendo Wii]" }, - { "057e", "0306", "Wii Remote Controller RVL-003" }, - { "057e", "0337", "Wii U GameCube Controller Adapter" }, - { "057e", "2000", "Switch" }, - { "057e", "2006", "Joy-Con L" }, - { "057e", "2007", "Joy-Con R" }, - { "057e", "2009", "Switch Pro Controller" }, - { "057e", "200e", "Joy-Con Charging Grip" }, - { "057e", "3000", "SDK Debugger" }, - { "057f", "6238", "USB StrikePad" }, - { "0581", "0107", "Tera Barcode Scanner 2.4 GHz Receiver" }, - { "0581", "020c", "Tera 2D Barcode Scanner EVHK0012" }, - { "0582", "0000", "UA-100(G)" }, - { "0582", "0002", "UM-4/MPU-64 MIDI Interface" }, - { "0582", "0003", "SoundCanvas SC-8850" }, - { "0582", "0004", "U-8" }, - { "0582", "0005", "UM-2(C/EX)" }, - { "0582", "0007", "SoundCanvas SC-8820" }, - { "0582", "0008", "PC-300" }, - { "0582", "0009", "UM-1(E/S/X)" }, - { "0582", "000b", "SK-500" }, - { "0582", "000c", "SC-D70" }, - { "0582", "0010", "EDIROL UA-5" }, - { "0582", "0011", "Edirol UA-5 Sound Capture" }, - { "0582", "0012", "XV-5050" }, - { "0582", "0013", "XV-5050" }, - { "0582", "0014", "EDIROL UM-880 MIDI I/F (native)" }, - { "0582", "0015", "EDIROL UM-880 MIDI I/F (generic)" }, - { "0582", "0016", "EDIROL SD-90" }, - { "0582", "0017", "EDIROL SD-90" }, - { "0582", "0018", "UA-1A" }, - { "0582", "001b", "MMP-2" }, - { "0582", "001c", "MMP-2" }, - { "0582", "001d", "V-SYNTH" }, - { "0582", "001e", "V-SYNTH" }, - { "0582", "0023", "EDIROL UM-550" }, - { "0582", "0024", "EDIROL UM-550" }, - { "0582", "0025", "EDIROL UA-20" }, - { "0582", "0026", "EDIROL UA-20" }, - { "0582", "0027", "EDIROL SD-20" }, - { "0582", "0028", "EDIROL SD-20" }, - { "0582", "0029", "EDIROL SD-80" }, - { "0582", "002a", "EDIROL SD-80" }, - { "0582", "002b", "EDIROL UA-700" }, - { "0582", "002c", "EDIROL UA-700" }, - { "0582", "002d", "XV-2020 Synthesizer" }, - { "0582", "002e", "XV-2020 Synthesizer" }, - { "0582", "002f", "VariOS" }, - { "0582", "0030", "VariOS" }, - { "0582", "0033", "EDIROL PCR" }, - { "0582", "0034", "EDIROL PCR" }, - { "0582", "0035", "M-1000" }, - { "0582", "0037", "Digital Piano" }, - { "0582", "0038", "Digital Piano" }, - { "0582", "003b", "BOSS GS-10" }, - { "0582", "003c", "BOSS GS-10" }, - { "0582", "0040", "GI-20" }, - { "0582", "0041", "GI-20" }, - { "0582", "0042", "RS-70" }, - { "0582", "0043", "RS-70" }, - { "0582", "0044", "EDIROL UA-1000" }, - { "0582", "0047", "EDIROL UR-80 WAVE" }, - { "0582", "0048", "EDIROL UR-80 MIDI" }, - { "0582", "0049", "EDIROL UR-80 WAVE" }, - { "0582", "004a", "EDIROL UR-80 MIDI" }, - { "0582", "004b", "EDIROL M-100FX" }, - { "0582", "004c", "EDIROL PCR-A WAVE" }, - { "0582", "004d", "EDIROL PCR-A MIDI" }, - { "0582", "004e", "EDIROL PCR-A WAVE" }, - { "0582", "004f", "EDIROL PCR-A MIDI" }, - { "0582", "0050", "EDIROL UA-3FX" }, - { "0582", "0052", "EDIROL UM-1SX" }, - { "0582", "0054", "Digital Piano" }, - { "0582", "0060", "EXR Series" }, - { "0582", "0064", "EDIROL PCR-1 WAVE" }, - { "0582", "0065", "EDIROL PCR-1 MIDI" }, - { "0582", "0066", "EDIROL PCR-1 WAVE" }, - { "0582", "0067", "EDIROL PCR-1 MIDI" }, - { "0582", "006a", "SP-606" }, - { "0582", "006b", "SP-606" }, - { "0582", "006d", "FANTOM-X" }, - { "0582", "006e", "FANTOM-X" }, - { "0582", "0073", "EDIROL UA-25" }, - { "0582", "0074", "EDIROL UA-25" }, - { "0582", "0075", "BOSS DR-880" }, - { "0582", "0076", "BOSS DR-880" }, - { "0582", "007a", "RD" }, - { "0582", "007b", "RD" }, - { "0582", "007d", "EDIROL UA-101" }, - { "0582", "0080", "G-70" }, - { "0582", "0081", "G-70" }, - { "0582", "0084", "V-SYNTH XT" }, - { "0582", "0089", "BOSS GT-PRO" }, - { "0582", "008b", "EDIROL PC-50" }, - { "0582", "008c", "EDIROL PC-50" }, - { "0582", "008d", "EDIROL UA-101 USB1" }, - { "0582", "0092", "EDIROL PC-80 WAVE" }, - { "0582", "0093", "EDIROL PC-80 MIDI" }, - { "0582", "0096", "EDIROL UA-1EX" }, - { "0582", "009a", "EDIROL UM-3EX" }, - { "0582", "009d", "EDIROL UM-1" }, - { "0582", "00a0", "MD-P1" }, - { "0582", "00a2", "Digital Piano" }, - { "0582", "00a3", "EDIROL UA-4FX" }, - { "0582", "00a6", "Juno-G" }, - { "0582", "00a9", "MC-808" }, - { "0582", "00ad", "SH-201" }, - { "0582", "00b2", "VG-99" }, - { "0582", "00b3", "VG-99" }, - { "0582", "00b7", "BK-7m/VIMA JM-5/8" }, - { "0582", "00c2", "SonicCell" }, - { "0582", "00c4", "EDIROL M-16DX" }, - { "0582", "00c5", "SP-555" }, - { "0582", "00c7", "V-Synth GT" }, - { "0582", "00d1", "Music Atelier" }, - { "0582", "00d3", "M-380/400" }, - { "0582", "00da", "BOSS GT-10" }, - { "0582", "00db", "BOSS GT-10 Guitar Effects Processor" }, - { "0582", "00dc", "BOSS GT-10B" }, - { "0582", "00de", "Fantom G" }, - { "0582", "00e6", "EDIROL UA-25EX (Advanced mode)" }, - { "0582", "00e7", "EDIROL UA-25EX" }, - { "0582", "00e9", "UA-1G" }, - { "0582", "00eb", "VS-100" }, - { "0582", "00f6", "GW-8/AX-Synth" }, - { "0582", "00f8", "JUNO Series" }, - { "0582", "00fc", "VS-700C" }, - { "0582", "00fd", "VS-700" }, - { "0582", "00fe", "VS-700 M1" }, - { "0582", "00ff", "VS-700 M2" }, - { "0582", "0100", "VS-700" }, - { "0582", "0101", "VS-700 M2" }, - { "0582", "0102", "VB-99" }, - { "0582", "0104", "UM-1G" }, - { "0582", "0106", "UM-2G" }, - { "0582", "0108", "UM-3G" }, - { "0582", "0109", "eBand JS-8" }, - { "0582", "010d", "A-500S" }, - { "0582", "010f", "A-PRO" }, - { "0582", "0110", "A-PRO" }, - { "0582", "0111", "GAIA SH-01" }, - { "0582", "0113", "ME-25" }, - { "0582", "0114", "SD-50" }, - { "0582", "0116", "WAVE/MP3 RECORDER R-05" }, - { "0582", "0117", "VS-20" }, - { "0582", "0119", "OCTAPAD SPD-30" }, - { "0582", "011c", "Lucina AX-09" }, - { "0582", "011e", "BR-800" }, - { "0582", "0120", "OCTA-CAPTURE" }, - { "0582", "0121", "OCTA-CAPTURE" }, - { "0582", "0123", "JUNO-Gi" }, - { "0582", "0124", "M-300" }, - { "0582", "0127", "GR-55" }, - { "0582", "012a", "UM-ONE" }, - { "0582", "012b", "DUO-CAPTURE" }, - { "0582", "012f", "QUAD-CAPTURE" }, - { "0582", "0130", "MICRO BR BR-80" }, - { "0582", "0132", "TRI-CAPTURE" }, - { "0582", "0134", "V-Mixer" }, - { "0582", "0138", "Boss RC-300 (Audio mode)" }, - { "0582", "0139", "Boss RC-300 (Storage mode)" }, - { "0582", "013a", "JUPITER-80" }, - { "0582", "013e", "R-26" }, - { "0582", "0145", "SPD-SX" }, - { "0582", "014b", "eBand JS-10" }, - { "0582", "014d", "GT-100" }, - { "0582", "0150", "TD-15" }, - { "0582", "0151", "TD-11" }, - { "0582", "0154", "JUPITER-50" }, - { "0582", "0156", "A-Series" }, - { "0582", "0158", "TD-30" }, - { "0582", "0159", "DUO-CAPTURE EX" }, - { "0582", "015b", "INTEGRA-7" }, - { "0582", "015d", "R-88" }, - { "0582", "01b5", "Boutique Series Synthesizer (Normal mode)" }, - { "0582", "01b6", "Boutique Series Synthesizer (Storage mode)" }, - { "0582", "01df", "Rubix22" }, - { "0582", "01e0", "Rubix24" }, - { "0582", "01e1", "Rubix44" }, - { "0582", "01ef", "Go:KEYS MIDI" }, - { "0582", "0505", "EDIROL UA-101" }, - { "0583", "0001", "4 Axis 12 button +POV" }, - { "0583", "0002", "4 Axis 12 button +POV" }, - { "0583", "2030", "RM-203 USB Nest [mode 1]" }, - { "0583", "2031", "RM-203 USB Nest [mode 2]" }, - { "0583", "2032", "RM-203 USB Nest [mode 3]" }, - { "0583", "2033", "RM-203 USB Nest [mode 4]" }, - { "0583", "2050", "PX-205 PSX Bridge" }, - { "0583", "205f", "PSX/USB converter" }, - { "0583", "2060", "2-axis 8-button gamepad" }, - { "0583", "206f", "USB, 2-axis 8-button gamepad" }, - { "0583", "3050", "QF-305u Gamepad" }, - { "0583", "3379", "Rockfire X-Force" }, - { "0583", "337f", "Rockfire USB RacingStar Vibra" }, - { "0583", "509f", "USB,4-Axis,12-Button with POV" }, - { "0583", "5259", "Rockfire USB SkyShuttle Vibra" }, - { "0583", "525f", "USB Vibration Pad" }, - { "0583", "5308", "USB Wireless VibrationPad" }, - { "0583", "5359", "Rockfire USB SkyShuttle Pro" }, - { "0583", "535f", "USB,real VibrationPad" }, - { "0583", "5659", "Rockfire USB SkyShuttle Vibra" }, - { "0583", "565f", "USB VibrationPad" }, - { "0583", "6009", "Revenger" }, - { "0583", "600f", "USB,GameBoard II" }, - { "0583", "6258", "USB, 4-axis, 6-button joystick w/view finder" }, - { "0583", "6889", "Windstorm Pro" }, - { "0583", "688f", "QF-688uv Windstorm Pro Joystick" }, - { "0583", "7070", "QF-707u Bazooka Joystick" }, - { "0583", "a000", "MaxFire G-08XU Gamepad" }, - { "0583", "a015", "4-Axis,16-Button with POV" }, - { "0583", "a019", "USB, Vibration ,4-axis, 8-button joystick w/view finder" }, - { "0583", "a020", "USB,4-Axis,10-Button with POV" }, - { "0583", "a021", "USB,4-Axis,12-Button with POV" }, - { "0583", "a022", "USB,4-Axis,14-Button with POV" }, - { "0583", "a023", "USB,4-Axis,16-Button with POV" }, - { "0583", "a024", "4axis,12button vibrition audio gamepad" }, - { "0583", "a025", "4axis,12button vibrition audio gamepad" }, - { "0583", "a130", "USB Wireless 2.4GHz Gamepad" }, - { "0583", "a131", "USB Wireless 2.4GHz Joystick" }, - { "0583", "a132", "USB Wireless 2.4GHz Wheelpad" }, - { "0583", "a133", "USB Wireless 2.4GHz Wheel&Gamepad" }, - { "0583", "a202", "ForceFeedbackWheel" }, - { "0583", "a209", "MetalStrike FF" }, - { "0583", "b000", "USB,4-Axis,12-Button with POV" }, - { "0583", "b001", "USB,4-Axis,12-Button with POV" }, - { "0583", "b002", "Vibration,12-Button USB Wheel" }, - { "0583", "b005", "USB,12-Button Wheel" }, - { "0583", "b008", "USB Wireless 2.4GHz Wheel" }, - { "0583", "b009", "USB,12-Button Wheel" }, - { "0583", "b00a", "PSX/USB converter" }, - { "0583", "b00b", "PSX/USB converter" }, - { "0583", "b00c", "PSX/USB converter" }, - { "0583", "b00d", "PSX/USB converter" }, - { "0583", "b00e", "4-Axis,12-Button with POV" }, - { "0583", "b00f", "USB,5-Axis,10-Button with POV" }, - { "0583", "b010", "MetalStrike Pro" }, - { "0583", "b012", "Wireless MetalStrike" }, - { "0583", "b013", "USB,Wiress 2.4GHZ Joystick" }, - { "0583", "b016", "USB,5-Axis,10-Button with POV" }, - { "0583", "b018", "TW6 Wheel" }, - { "0583", "ff60", "USB Wireless VibrationPad" }, - { "0584", "0008", "Fujifilm MemoryCard ReaderWriter" }, - { "0584", "0220", "U2SCX SCSI Converter" }, - { "0584", "0304", "U2SCX-LVD (SCSI Converter)" }, - { "0584", "b000", "REX-USB60" }, - { "0584", "b020", "REX-USB60F" }, - { "0585", "0001", "Digital Camera" }, - { "0585", "0002", "Digital Camera" }, - { "0585", "0003", "Digital Camera" }, - { "0585", "0004", "Digital Camera" }, - { "0585", "0005", "Digital Camera" }, - { "0585", "0006", "Digital Camera" }, - { "0585", "0007", "Digital Camera" }, - { "0585", "0008", "Digital Camera" }, - { "0585", "0009", "Digital Camera" }, - { "0585", "000a", "Digital Camera" }, - { "0585", "000b", "Digital Camera" }, - { "0585", "000c", "Digital Camera" }, - { "0585", "000d", "Digital Camera" }, - { "0585", "000e", "Digital Camera" }, - { "0585", "000f", "Digital Camera" }, - { "0586", "0025", "802.11b/g/n USB Wireless Network Adapter" }, - { "0586", "0100", "omni.net" }, - { "0586", "0102", "omni.net II ISDN TA [HFC-S]" }, - { "0586", "0110", "omni.net Plus" }, - { "0586", "1000", "omni.net LCD Plus - ISDN TA" }, - { "0586", "1500", "Omni 56K Plus" }, - { "0586", "2011", "Scorpion-980N keyboard" }, - { "0586", "3304", "LAN Modem" }, - { "0586", "3309", "ADSL Modem Prestige 600 series" }, - { "0586", "330a", "ADSL Modem Interface" }, - { "0586", "330e", "USB Broadband ADSL Modem Rev 1.10" }, - { "0586", "3400", "ZyAIR B-220 IEEE 802.11b Adapter" }, - { "0586", "3401", "ZyAIR G-220 802.11bg" }, - { "0586", "3402", "ZyAIR G-220F 802.11bg" }, - { "0586", "3403", "AG-200 802.11abg Wireless Adapter [Atheros AR5523]" }, - { "0586", "3407", "G-200 v2 802.11bg" }, - { "0586", "3408", "G-260 802.11bg" }, - { "0586", "3409", "AG-225H 802.11bg" }, - { "0586", "340a", "M-202 802.11bg" }, - { "0586", "340c", "G-270S 802.11bg Wireless Adapter [Atheros AR5523]" }, - { "0586", "340f", "G-220 v2 802.11bg" }, - { "0586", "3410", "ZyAIR G-202 802.11bg" }, - { "0586", "3412", "802.11bg" }, - { "0586", "3413", "ZyAIR AG-225H v2 802.11bg" }, - { "0586", "3415", "G-210H 802.11g Wireless Adapter" }, - { "0586", "3416", "NWD-210N 802.11b/g/n-draft wireless adapter" }, - { "0586", "3417", "NWD271N 802.11n Wireless Adapter [Atheros AR9001U-(2)NG]" }, - { "0586", "3418", "NWD211AN 802.11abgn Wireless Adapter [Ralink RT2870]" }, - { "0586", "3419", "G-220 v3 802.11bg Wireless Adapter [ZyDAS ZD1211B]" }, - { "0586", "341a", "NWD-270N Wireless N-lite USB Adapter" }, - { "0586", "341e", "NWD2105 802.11bgn Wireless Adapter [Ralink RT3070]" }, - { "0586", "341f", "NWD2205 802.11n Wireless N Adapter [Realtek RTL8192CU]" }, - { "0586", "3425", "NWD6505 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7610U]" }, - { "0586", "343e", "N220 802.11bgn Wireless Adapter" }, - { "058b", "0015", "Flash Loader utility" }, - { "058b", "001c", "Flash Drive" }, - { "058b", "0041", "Flash Loader utility" }, - { "058c", "0007", "Flash" }, - { "058c", "0008", "LP130" }, - { "058c", "000a", "LP530" }, - { "058c", "0010", "Projector" }, - { "058c", "0011", "Projector" }, - { "058c", "0012", "Projector" }, - { "058c", "0013", "Projector" }, - { "058c", "0014", "Projector" }, - { "058c", "0015", "Projector" }, - { "058c", "0016", "Projector" }, - { "058c", "0017", "Projector" }, - { "058c", "0018", "Projector" }, - { "058c", "0019", "Projector" }, - { "058c", "001a", "Projector" }, - { "058c", "001b", "Projector" }, - { "058c", "001c", "Projector" }, - { "058c", "001d", "Projector" }, - { "058c", "001e", "Projector" }, - { "058c", "001f", "Projector" }, - { "058c", "ffe5", "IN34 Projector" }, - { "058c", "ffeb", "Projector IN76" }, - { "058f", "1234", "Flash Drive" }, - { "058f", "198b", "Webcam (Gigatech P-09)" }, - { "058f", "2412", "SCard R/W CSR-145" }, - { "058f", "2802", "Monterey Keyboard" }, - { "058f", "5492", "Hub" }, - { "058f", "6232", "Hi-Speed 16-in-1 Flash Card Reader/Writer" }, - { "058f", "6254", "USB Hub" }, - { "058f", "6331", "SD/MMC/MS Card Reader" }, - { "058f", "6332", "Multi-Function Card Reader" }, - { "058f", "6335", "SD/MMC Card Reader" }, - { "058f", "6360", "Multimedia Card Reader" }, - { "058f", "6361", "Multimedia Card Reader" }, - { "058f", "6362", "Flash Card Reader/Writer" }, - { "058f", "6364", "AU6477 Card Reader Controller" }, - { "058f", "6366", "Multi Flash Reader" }, - { "058f", "6377", "AU6375 4-LUN card reader" }, - { "058f", "6386", "Memory Card" }, - { "058f", "6387", "Flash Drive" }, - { "058f", "6390", "USB 2.0-IDE bridge" }, - { "058f", "6391", "IDE Bridge" }, - { "058f", "6998", "AU6998 Flash Disk Controller" }, - { "058f", "9213", "MacAlly Kbd Hub" }, - { "058f", "9215", "AU9814 Hub" }, - { "058f", "9254", "Hub" }, - { "058f", "9310", "Mass Storage (UID4/5A & UID7A)" }, - { "058f", "9320", "Micro Storage Driver for Win98" }, - { "058f", "9321", "Micro Storage Driver for Win98" }, - { "058f", "9330", "SD Reader" }, - { "058f", "9331", "Micro Storage Driver for Win98" }, - { "058f", "9340", "Delkin eFilm Reader-32" }, - { "058f", "9350", "Delkin eFilm Reader-32" }, - { "058f", "9360", "8-in-1 Media Card Reader" }, - { "058f", "9361", "Multimedia Card Reader" }, - { "058f", "9368", "Multimedia Card Reader" }, - { "058f", "9380", "Flash Drive" }, - { "058f", "9381", "Flash Drive" }, - { "058f", "9382", "Acer/Sweex Flash drive" }, - { "058f", "9384", "qdi U2Disk T209M" }, - { "058f", "9410", "Keyboard" }, - { "058f", "9472", "Keyboard Hub" }, - { "058f", "9510", "ChunghwaTL USB02 Smartcard Reader" }, - { "058f", "9520", "Watchdata W 1981" }, - { "058f", "9540", "AU9540 Smartcard Reader" }, - { "058f", "9720", "USB-Serial Adapter" }, - { "058f", "a014", "Asus Integrated Webcam" }, - { "058f", "b002", "Acer Integrated Webcam" }, - { "0590", "0004", "Cable Modem" }, - { "0590", "000b", "MR56SVS" }, - { "0590", "0028", "HJ-720IT / HEM-7080IT-E / HEM-790IT" }, - { "0590", "0051", "FT232BM [E58CIFQ1 with FTDI USB2Serial Converter]" }, - { "0592", "0002", "UPS (X-Slot)" }, - { "0595", "1001", "Digitrex DSC-1300/DSC-2100 (mass storage mode)" }, - { "0595", "2002", "DIGITAL STILL CAMERA 6M 4X" }, - { "0595", "4343", "Digital Camera EX-20 DSC" }, - { "0596", "0001", "Touchscreen" }, - { "0596", "0002", "Touch Screen Controller" }, - { "0596", "0500", "PCT Multitouch HID Controller" }, - { "0596", "0543", "DELL XPS touchscreen" }, - { "059b", "0001", "Zip 100 (Type 1)" }, - { "059b", "000b", "Zip 100 (Type 2)" }, - { "059b", "0021", "Win98 Disk Controller" }, - { "059b", "0030", "Zip 250 (Ver 1)" }, - { "059b", "0031", "Zip 100 (Type 3)" }, - { "059b", "0032", "Zip 250 (Ver 2)" }, - { "059b", "0034", "Zip 100 Driver" }, - { "059b", "0037", "Zip 750 MB" }, - { "059b", "0040", "SCSI Bridge" }, - { "059b", "0042", "Rev 70 GB" }, - { "059b", "0050", "Zip CD 650 Writer" }, - { "059b", "0053", "CDRW55292EXT CD-RW External Drive" }, - { "059b", "0056", "External CD-RW Drive Enclosure" }, - { "059b", "0057", "Mass Storage Device" }, - { "059b", "005d", "Mass Storage Device" }, - { "059b", "005f", "CDRW64892EXT3-C CD-RW 52x24x52x External Drive" }, - { "059b", "0060", "PCMCIA PocketZip Dock" }, - { "059b", "0061", "Varo PocketZip 40 MP3 Player" }, - { "059b", "006d", "HipZip MP3 Player" }, - { "059b", "0070", "eGo Portable Hard Drive" }, - { "059b", "007c", "Ultra Max USB/1394" }, - { "059b", "007d", "HTC42606 0G9AT00 [Iomega HDD]" }, - { "059b", "007e", "Mini 256MB/512MB Flash Drive [IOM2D5]" }, - { "059b", "00db", "FotoShow Zip 250 Driver" }, - { "059b", "0150", "Mass Storage Device" }, - { "059b", "015d", "Super DVD Writer" }, - { "059b", "0173", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "0174", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "0176", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "0177", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "0178", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "0179", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "059b", "017a", "HDD" }, - { "059b", "017b", "HDD/1394A" }, - { "059b", "017c", "HDD/1394B" }, - { "059b", "0251", "Optical" }, - { "059b", "0252", "Optical" }, - { "059b", "0275", "ST332082 0A" }, - { "059b", "0278", "LDHD-UPS [Professional Desktop Hard Drive eSATA / USB2.0]" }, - { "059b", "027a", "LPHD250-U [Portable Hard Drive Silver Series 250 Go]" }, - { "059b", "0470", "Prestige Portable Hard Drive" }, - { "059b", "047a", "Select Portable Hard Drive" }, - { "059b", "0571", "Prestige Portable Hard Drive" }, - { "059b", "0579", "eGo Portable Hard Drive" }, - { "059b", "1052", "DVD+RW External Drive" }, - { "059f", "0201", "StudioDrive USB2" }, - { "059f", "0202", "StudioDrive USB2" }, - { "059f", "0203", "StudioDrive USB2" }, - { "059f", "0211", "PocketDrive" }, - { "059f", "0212", "PocketDrive" }, - { "059f", "0213", "PocketDrive USB2" }, - { "059f", "0323", "LaCie d2 Drive USB2" }, - { "059f", "0421", "Big Disk G465" }, - { "059f", "0525", "BigDisk Extreme 500" }, - { "059f", "0641", "Mobile Hard Drive" }, - { "059f", "0828", "d2 Quadra" }, - { "059f", "0829", "BigDisk Extreme+" }, - { "059f", "1004", "Little Disk 20 GB" }, - { "059f", "100c", "Rugged Triple Interface Mobile Hard Drive" }, - { "059f", "1010", "Desktop Hard Drive" }, - { "059f", "1016", "Desktop Hard Drive" }, - { "059f", "1018", "Desktop Hard Drive" }, - { "059f", "1019", "Desktop Hard Drive" }, - { "059f", "1021", "Little Disk" }, - { "059f", "1027", "iamaKey V2" }, - { "059f", "102a", "Rikiki Hard Drive" }, - { "059f", "103d", "D2" }, - { "059f", "1049", "rikiki Harddrive" }, - { "059f", "1052", "P'9220 Mobile Drive" }, - { "059f", "1053", "P'9230 2TB [Porsche Design Desktop Drive 2TB]" }, - { "059f", "1061", "Rugged USB3-FW" }, - { "059f", "1064", "Rugged 16 and 32 GB" }, - { "059f", "106b", "Rugged Mini HDD" }, - { "059f", "106d", "Porsche Design Mobile Drive" }, - { "059f", "106e", "Porsche Design Desktop Drive" }, - { "059f", "1094", "Rugged THB" }, - { "059f", "1095", "Rugged" }, - { "059f", "a601", "HardDrive" }, - { "059f", "a602", "CD R/W" }, - { "05a3", "8388", "Marvell 88W8388 802.11a/b/g WLAN" }, - { "05a3", "9230", "Camera" }, - { "05a3", "9320", "Camera" }, - { "05a3", "9331", "Camera" }, - { "05a3", "9332", "Camera - 1080p" }, - { "05a3", "9422", "Camera" }, - { "05a3", "9520", "Camera" }, - { "05a4", "1000", "WKB-1000S Wireless Ergo Keyboard with Touchpad" }, - { "05a4", "2000", "WKB-2000 Wireless Keyboard with Touchpad" }, - { "05a4", "9720", "Keyboard Mouse" }, - { "05a4", "9722", "Keyboard" }, - { "05a4", "9731", "MCK-600W/MCK-800USB Keyboard" }, - { "05a4", "9783", "Wireless Keypad" }, - { "05a4", "9837", "Targus Number Keypad" }, - { "05a4", "9862", "Targus Number Keypad (Composite Device)" }, - { "05a4", "9881", "IR receiver [VRC-1100 Vista MCE Remote Control]" }, - { "05a6", "0001", "CVA124 Cable Voice Adapter (WDM)" }, - { "05a6", "0002", "CVA122 Cable Voice Adapter (WDM)" }, - { "05a6", "0003", "CVA124E Cable Voice Adapter (WDM)" }, - { "05a6", "0004", "CVA122E Cable Voice Adapter (WDM)" }, - { "05a6", "0008", "STA1520 Tuning Adapter" }, - { "05a6", "0a00", "Integrated Management Controller Hub" }, - { "05a6", "0a01", "Virtual Keyboard/Mouse" }, - { "05a6", "0a02", "Virtual Mass Storage" }, - { "05a6", "0a03", "Virtual Ethernet/RNDIS" }, - { "05a7", "4000", "Bluetooth Headset" }, - { "05a7", "4001", "Bluetooth Headset in DFU mode" }, - { "05a7", "4002", "Bluetooth Headset Series 2" }, - { "05a7", "4003", "Bluetooth Headset Series 2 in DFU mode" }, - { "05a7", "400d", "SoundLink Color II speaker in DFU mode" }, - { "05a7", "40fe", "SoundLink Color II speaker" }, - { "05a7", "bc50", "SoundLink Wireless Mobile speaker" }, - { "05a7", "bc51", "SoundLink Wireless Mobile speaker in DFU mode" }, - { "05a9", "0511", "OV511 Webcam" }, - { "05a9", "0518", "OV518 Webcam" }, - { "05a9", "0519", "OV519 Microphone" }, - { "05a9", "1550", "VEHO Filmscanner" }, - { "05a9", "2640", "OV2640 Webcam" }, - { "05a9", "2642", "Integrated Webcam for Dell XPS 2010" }, - { "05a9", "2643", "Monitor Webcam" }, - { "05a9", "264b", "Monitor Webcam" }, - { "05a9", "2800", "SuperCAM" }, - { "05a9", "4519", "Webcam Classic" }, - { "05a9", "7670", "OV7670 Webcam" }, - { "05a9", "8065", "GAIA Sensor FPGA Demo Board" }, - { "05a9", "8519", "OV519 Webcam" }, - { "05a9", "a511", "OV511+ Webcam" }, - { "05a9", "a518", "D-Link DSB-C310 Webcam" }, - { "05ab", "0002", "Parallel Port" }, - { "05ab", "0030", "Storage Adapter V2 (TPP)" }, - { "05ab", "0031", "ATA Bridge" }, - { "05ab", "0060", "USB 2.0 ATA Bridge" }, - { "05ab", "0061", "Storage Adapter V3 (TPP-I)" }, - { "05ab", "0101", "Storage Adapter (TPP)" }, - { "05ab", "0130", "Compact Flash and Microdrive Reader (TPP)" }, - { "05ab", "0200", "USS725 ATA Bridge" }, - { "05ab", "0201", "Storage Adapter (TPP)" }, - { "05ab", "0202", "ATA Bridge" }, - { "05ab", "0300", "Portable Hard Drive (TPP)" }, - { "05ab", "0301", "Portable Hard Drive V2" }, - { "05ab", "0350", "Portable Hard Drive (TPP)" }, - { "05ab", "0351", "Portable Hard Drive V2" }, - { "05ab", "081a", "ATA Bridge" }, - { "05ab", "0cda", "ATA Bridge for CD-R/RW" }, - { "05ab", "1001", "BAYI Printer Class Support" }, - { "05ab", "5700", "Storage Adapter V2 (TPP)" }, - { "05ab", "5701", "USB Storage Adapter V2" }, - { "05ab", "5901", "Smart Board (TPP)" }, - { "05ab", "5a01", "ATI Storage Adapter (TPP)" }, - { "05ab", "5d01", "DataBook Adapter (TPP)" }, - { "05ac", "0201", "USB Keyboard [Alps or Logitech, M2452]" }, - { "05ac", "0202", "Keyboard [ALPS]" }, - { "05ac", "0205", "Extended Keyboard [Mitsumi]" }, - { "05ac", "0206", "Extended Keyboard [Mitsumi]" }, - { "05ac", "020b", "Pro Keyboard [Mitsumi, A1048/US layout]" }, - { "05ac", "020c", "Extended Keyboard [Mitsumi]" }, - { "05ac", "020d", "Pro Keyboard [Mitsumi, A1048/JIS layout]" }, - { "05ac", "020e", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "020f", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0214", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0215", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0216", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "0217", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0218", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0219", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "021a", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "021b", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "021c", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "021d", "Aluminum Mini Keyboard (ANSI)" }, - { "05ac", "021e", "Aluminum Mini Keyboard (ISO)" }, - { "05ac", "021f", "Aluminum Mini Keyboard (JIS)" }, - { "05ac", "0220", "Aluminum Keyboard (ANSI)" }, - { "05ac", "0221", "Aluminum Keyboard (ISO)" }, - { "05ac", "0222", "Aluminum Keyboard (JIS)" }, - { "05ac", "0223", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0224", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0225", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "0229", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "022a", "Internal Keyboard/Trackpad (MacBook Pro) (ISO)" }, - { "05ac", "022b", "Internal Keyboard/Trackpad (MacBook Pro) (JIS)" }, - { "05ac", "0230", "Internal Keyboard/Trackpad (MacBook Pro 4,1) (ANSI)" }, - { "05ac", "0231", "Internal Keyboard/Trackpad (MacBook Pro 4,1) (ISO)" }, - { "05ac", "0232", "Internal Keyboard/Trackpad (MacBook Pro 4,1) (JIS)" }, - { "05ac", "0236", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0237", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0238", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "023f", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0240", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0241", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "0242", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0243", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0244", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "0245", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0246", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0247", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "024a", "Internal Keyboard/Trackpad (MacBook Air) (ISO)" }, - { "05ac", "024d", "Internal Keyboard/Trackpad (MacBook Air) (ISO)" }, - { "05ac", "024f", "Aluminium Keyboard (ANSI)" }, - { "05ac", "0250", "Aluminium Keyboard (ISO)" }, - { "05ac", "0252", "Internal Keyboard/Trackpad (ANSI)" }, - { "05ac", "0253", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0254", "Internal Keyboard/Trackpad (JIS)" }, - { "05ac", "0259", "Internal Keyboard/Trackpad" }, - { "05ac", "025a", "Internal Keyboard/Trackpad" }, - { "05ac", "0263", "Apple Internal Keyboard / Trackpad (MacBook Retina)" }, - { "05ac", "0267", "Magic Keyboard A1644" }, - { "05ac", "0269", "Magic Mouse 2 (Lightning connector)" }, - { "05ac", "0273", "Internal Keyboard/Trackpad (ISO)" }, - { "05ac", "0301", "USB Mouse [Mitsumi, M4848]" }, - { "05ac", "0302", "Optical Mouse [Fujitsu]" }, - { "05ac", "0304", "Mighty Mouse [Mitsumi, M1152]" }, - { "05ac", "0306", "Optical USB Mouse [Fujitsu]" }, - { "05ac", "030a", "Internal Trackpad" }, - { "05ac", "030b", "Internal Trackpad" }, - { "05ac", "030d", "Magic Mouse" }, - { "05ac", "030e", "MC380Z/A [Magic Trackpad]" }, - { "05ac", "1000", "Bluetooth HCI MacBookPro (HID mode)" }, - { "05ac", "1001", "Keyboard Hub [ALPS]" }, - { "05ac", "1002", "Extended Keyboard Hub [Mitsumi]" }, - { "05ac", "1003", "Hub in Pro Keyboard [Mitsumi, A1048]" }, - { "05ac", "1006", "Hub in Aluminum Keyboard" }, - { "05ac", "1008", "Mini DisplayPort to Dual-Link DVI Adapter" }, - { "05ac", "1101", "Speakers" }, - { "05ac", "1105", "Audio in LED Cinema Display" }, - { "05ac", "1107", "Thunderbolt Display Audio" }, - { "05ac", "1112", "FaceTime HD Camera (Display)" }, - { "05ac", "1201", "3G iPod" }, - { "05ac", "1202", "iPod 2G" }, - { "05ac", "1203", "iPod 4.Gen Grayscale 40G" }, - { "05ac", "1204", "iPod [Photo]" }, - { "05ac", "1205", "iPod Mini 1.Gen/2.Gen" }, - { "05ac", "1206", "iPod '06'" }, - { "05ac", "1207", "iPod '07'" }, - { "05ac", "1208", "iPod '08'" }, - { "05ac", "1209", "iPod Video" }, - { "05ac", "120a", "iPod Nano" }, - { "05ac", "1223", "iPod Classic/Nano 3.Gen (DFU mode)" }, - { "05ac", "1224", "iPod Nano 3.Gen (DFU mode)" }, - { "05ac", "1225", "iPod Nano 4.Gen (DFU mode)" }, - { "05ac", "1227", "Mobile Device (DFU Mode)" }, - { "05ac", "1231", "iPod Nano 5.Gen (DFU mode)" }, - { "05ac", "1240", "iPod Nano 2.Gen (DFU mode)" }, - { "05ac", "1242", "iPod Nano 3.Gen (WTF mode)" }, - { "05ac", "1243", "iPod Nano 4.Gen (WTF mode)" }, - { "05ac", "1245", "iPod Classic 3.Gen (WTF mode)" }, - { "05ac", "1246", "iPod Nano 5.Gen (WTF mode)" }, - { "05ac", "1255", "iPod Nano 4.Gen (DFU mode)" }, - { "05ac", "1260", "iPod Nano 2.Gen" }, - { "05ac", "1261", "iPod Classic" }, - { "05ac", "1262", "iPod Nano 3.Gen" }, - { "05ac", "1263", "iPod Nano 4.Gen" }, - { "05ac", "1265", "iPod Nano 5.Gen" }, - { "05ac", "1266", "iPod Nano 6.Gen" }, - { "05ac", "1267", "iPod Nano 7.Gen" }, - { "05ac", "1281", "Apple Mobile Device [Recovery Mode]" }, - { "05ac", "1290", "iPhone" }, - { "05ac", "1291", "iPod Touch 1.Gen" }, - { "05ac", "1292", "iPhone 3G" }, - { "05ac", "1293", "iPod Touch 2.Gen" }, - { "05ac", "1294", "iPhone 3GS" }, - { "05ac", "1296", "iPod Touch 3.Gen (8GB)" }, - { "05ac", "1297", "iPhone 4" }, - { "05ac", "1299", "iPod Touch 3.Gen" }, - { "05ac", "129a", "iPad" }, - { "05ac", "129c", "iPhone 4(CDMA)" }, - { "05ac", "129e", "iPod Touch 4.Gen" }, - { "05ac", "129f", "iPad 2" }, - { "05ac", "12a0", "iPhone 4S" }, - { "05ac", "12a2", "iPad 2 (3G; 64GB)" }, - { "05ac", "12a3", "iPad 2 (CDMA)" }, - { "05ac", "12a4", "iPad 3 (wifi)" }, - { "05ac", "12a5", "iPad 3 (CDMA)" }, - { "05ac", "12a6", "iPad 3 (3G, 16 GB)" }, - { "05ac", "12a8", "iPhone 5/5C/5S/6/SE" }, - { "05ac", "12a9", "iPad 2" }, - { "05ac", "12aa", "iPod Touch 5.Gen [A1421]" }, - { "05ac", "12ab", "iPad 4/Mini1" }, - { "05ac", "1300", "iPod Shuffle" }, - { "05ac", "1301", "iPod Shuffle 2.Gen" }, - { "05ac", "1302", "iPod Shuffle 3.Gen" }, - { "05ac", "1303", "iPod Shuffle 4.Gen" }, - { "05ac", "1392", "Apple Watch charger" }, - { "05ac", "1393", "AirPods case" }, - { "05ac", "1395", "Smart Battery Case [iPhone 6]" }, - { "05ac", "1398", "Smart Battery Case" }, - { "05ac", "1401", "Modem" }, - { "05ac", "1402", "Ethernet Adapter [A1277]" }, - { "05ac", "1500", "SuperDrive [A1379]" }, - { "05ac", "8005", "OHCI Root Hub Simulation" }, - { "05ac", "8006", "EHCI Root Hub Simulation" }, - { "05ac", "8007", "XHCI Root Hub USB 2.0 Simulation" }, - { "05ac", "8202", "HCF V.90 Data/Fax Modem" }, - { "05ac", "8203", "Bluetooth HCI" }, - { "05ac", "8204", "Built-in Bluetooth 2.0+EDR HCI" }, - { "05ac", "8205", "Bluetooth HCI" }, - { "05ac", "8206", "Bluetooth HCI" }, - { "05ac", "8207", "Built-in Bluetooth" }, - { "05ac", "820a", "Bluetooth HID Keyboard" }, - { "05ac", "820b", "Bluetooth HID Mouse" }, - { "05ac", "820f", "Bluetooth HCI" }, - { "05ac", "8213", "Bluetooth Host Controller" }, - { "05ac", "8215", "Built-in Bluetooth 2.0+EDR HCI" }, - { "05ac", "8216", "Bluetooth USB Host Controller" }, - { "05ac", "8217", "Bluetooth USB Host Controller" }, - { "05ac", "8218", "Bluetooth Host Controller" }, - { "05ac", "821a", "Bluetooth Host Controller" }, - { "05ac", "821f", "Built-in Bluetooth 2.0+EDR HCI" }, - { "05ac", "8233", "iBridge" }, - { "05ac", "8240", "Built-in IR Receiver" }, - { "05ac", "8241", "Built-in IR Receiver" }, - { "05ac", "8242", "Built-in IR Receiver" }, - { "05ac", "8281", "Bluetooth Host Controller" }, - { "05ac", "8286", "Bluetooth Host Controller" }, - { "05ac", "8289", "Bluetooth Host Controller" }, - { "05ac", "828c", "Bluetooth Host Controller" }, - { "05ac", "8290", "Bluetooth Host Controller" }, - { "05ac", "8300", "Built-in iSight (no firmware loaded)" }, - { "05ac", "8403", "Internal Memory Card Reader" }, - { "05ac", "8404", "Internal Memory Card Reader" }, - { "05ac", "8406", "Internal Memory Card Reader" }, - { "05ac", "8501", "Built-in iSight [Micron]" }, - { "05ac", "8502", "Built-in iSight" }, - { "05ac", "8505", "Built-in iSight" }, - { "05ac", "8507", "Built-in iSight" }, - { "05ac", "8508", "iSight in LED Cinema Display" }, - { "05ac", "8509", "FaceTime HD Camera" }, - { "05ac", "850a", "FaceTime Camera" }, - { "05ac", "8510", "FaceTime HD Camera (Built-in)" }, - { "05ac", "8511", "FaceTime HD Camera (Built-in)" }, - { "05ac", "8600", "iBridge" }, - { "05ac", "911c", "Hub in A1082 [Cinema HD Display 23\"]" }, - { "05ac", "9127", "Hub in Thunderbolt Display" }, - { "05ac", "912f", "Hub in 30\" Cinema Display" }, - { "05ac", "9210", "Studio Display 21\"" }, - { "05ac", "9215", "Studio Display 15\"" }, - { "05ac", "9217", "Studio Display 17\"" }, - { "05ac", "9218", "Cinema Display 23\"" }, - { "05ac", "9219", "Cinema Display 20\"" }, - { "05ac", "921c", "A1082 [Cinema HD Display 23\"]" }, - { "05ac", "921e", "Cinema Display 24\"" }, - { "05ac", "9221", "30\" Cinema Display" }, - { "05ac", "9226", "LED Cinema Display" }, - { "05ac", "9227", "Thunderbolt Display" }, - { "05ac", "9232", "Cinema HD Display 30\"" }, - { "05ac", "ffff", "Bluetooth in DFU mode - Driver" }, - { "05af", "0806", "HP SK806A Keyboard" }, - { "05af", "0809", "Wireless Keyboard and Mouse" }, - { "05af", "0821", "IDE to" }, - { "05af", "3062", "Cordless Keyboard" }, - { "05af", "9167", "KB 9151B - 678" }, - { "05af", "9267", "KB 9251B - 678 Mouse" }, - { "05b1", "1389", "Bluetooth Wireless Adapter" }, - { "05b4", "4857", "M-Any DAH-210" }, - { "05b4", "6001", "HYUNDAI GDS30C6001 SSFDC / MMC I/F Controller" }, - { "05b8", "3002", "Scroll Mouse" }, - { "05b8", "3126", "APT-905 Wireless presenter" }, - { "05b8", "3223", "ISY Wireless Presenter" }, - { "05ba", "0007", "Fingerprint Reader" }, - { "05ba", "0008", "Fingerprint Reader" }, - { "05ba", "000a", "Fingerprint Reader" }, - { "05bc", "0004", "Trackball" }, - { "05c5", "0002", "AccelePort USB 2" }, - { "05c5", "0004", "AccelePort USB 4" }, - { "05c5", "0008", "AccelePort USB 8" }, - { "05c6", "0114", "Select RW-200 CDMA Wireless Modem" }, - { "05c6", "0a02", "Jolla Device Developer Mode" }, - { "05c6", "0a07", "Jolla Device MTP" }, - { "05c6", "0afe", "Jolla Device Charging Only" }, - { "05c6", "1000", "Mass Storage Device" }, - { "05c6", "3100", "CDMA Wireless Modem/Phone" }, - { "05c6", "3196", "CDMA Wireless Modem" }, - { "05c6", "3197", "CDMA Wireless Modem/Phone" }, - { "05c6", "6000", "Siemens SG75" }, - { "05c6", "6503", "AnyData APE-540H" }, - { "05c6", "6613", "Onda H600/N501HS ZTE MF330" }, - { "05c6", "6764", "A0001 Phone [OnePlus One]" }, - { "05c6", "9000", "SIMCom SIM5218 modem" }, - { "05c6", "9001", "Gobi Wireless Modem" }, - { "05c6", "9002", "Gobi Wireless Modem" }, - { "05c6", "9003", "Quectel UC20" }, - { "05c6", "9008", "Gobi Wireless Modem (QDL mode)" }, - { "05c6", "9018", "Qualcomm HSUSB Device" }, - { "05c6", "9025", "HSUSB Device" }, - { "05c6", "9090", "Quectel UC15" }, - { "05c6", "9091", "Intex Aqua Fish & Jolla C Diagnostic Mode" }, - { "05c6", "9092", "Nokia 8110 4G" }, - { "05c6", "90ba", "Audio 1.0 device" }, - { "05c6", "90bb", "Snapdragon interface (MIDI + ADB)" }, - { "05c6", "90dc", "Fairphone 2 (Charging & ADB)" }, - { "05c6", "9201", "Gobi Wireless Modem (QDL mode)" }, - { "05c6", "9202", "Gobi Wireless Modem" }, - { "05c6", "9203", "Gobi Wireless Modem" }, - { "05c6", "9205", "Gobi 2000" }, - { "05c6", "9211", "Acer Gobi Wireless Modem (QDL mode)" }, - { "05c6", "9212", "Acer Gobi Wireless Modem" }, - { "05c6", "9214", "Acer Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9215", "Quectel EC20 LTE modem / Acer Gobi 2000 Wireless Modem" }, - { "05c6", "9221", "Gobi Wireless Modem (QDL mode)" }, - { "05c6", "9222", "Gobi Wireless Modem" }, - { "05c6", "9224", "Sony Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9225", "Sony Gobi 2000 Wireless Modem" }, - { "05c6", "9231", "Gobi Wireless Modem (QDL mode)" }, - { "05c6", "9234", "Top Global Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9235", "Top Global Gobi 2000 Wireless Modem" }, - { "05c6", "9244", "Samsung Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9245", "Samsung Gobi 2000 Wireless Modem" }, - { "05c6", "9264", "Asus Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9265", "Asus Gobi 2000 Wireless Modem" }, - { "05c6", "9274", "iRex Technologies Gobi 2000 Wireless Modem (QDL mode)" }, - { "05c6", "9275", "iRex Technologies Gobi 2000 Wireless Modem" }, - { "05c6", "f000", "TA-1004 [Nokia 8]" }, - { "05c6", "f003", "Nokia 8110 4G" }, - { "05c7", "0113", "PC Line Mouse" }, - { "05c7", "1001", "Lynx Mouse" }, - { "05c7", "2001", "Keyboard" }, - { "05c7", "2011", "SCorpius Keyboard" }, - { "05c7", "6001", "Ten-Keypad" }, - { "05c8", "0103", "FO13FF-65 PC-CAM" }, - { "05c8", "010b", "Webcam (UVC)" }, - { "05c8", "021a", "HP Webcam" }, - { "05c8", "0233", "HP Webcam" }, - { "05c8", "0318", "Webcam" }, - { "05c8", "0361", "SunplusIT INC. HP Truevision HD Webcam" }, - { "05c8", "036e", "Webcam" }, - { "05c8", "0374", "HP EliteBook integrated HD Webcam" }, - { "05c8", "038e", "HP Wide Vision HD integrated webcam" }, - { "05c8", "03a1", "XiaoMi Webcam" }, - { "05c8", "03b1", "Webcam" }, - { "05c8", "03bc", "HP Wide Vision HD Integrated Webcam" }, - { "05c8", "03cb", "HP Wide Vision HD Integrated Webcam" }, - { "05c8", "0403", "Webcam" }, - { "05c8", "041b", "HP 2.0MP High Definition Webcam" }, - { "05ca", "0101", "RDC-5300 Camera" }, - { "05ca", "0325", "Caplio GX (ptp)" }, - { "05ca", "032d", "Caplio GX 8 (ptp)" }, - { "05ca", "032f", "Caplio R3 (ptp)" }, - { "05ca", "03a1", "IS200e" }, - { "05ca", "0403", "Printing Support" }, - { "05ca", "0405", "Type 101" }, - { "05ca", "0406", "Type 102" }, - { "05ca", "0437", "Aficio SP 3510SF" }, - { "05ca", "044e", "SP C250SF (multifunction device: printer, scanner, fax)" }, - { "05ca", "1803", "V5 camera [R5U870]" }, - { "05ca", "1810", "Pavilion Webcam [R5U870]" }, - { "05ca", "1812", "Pavilion Webcam" }, - { "05ca", "1814", "HD Webcam" }, - { "05ca", "1815", "Dell Laptop Integrated Webcam" }, - { "05ca", "1820", "Integrated Webcam" }, - { "05ca", "1830", "Visual Communication Camera VGP-VCC2 [R5U870]" }, - { "05ca", "1832", "Visual Communication Camera VGP-VCC3 [R5U870]" }, - { "05ca", "1833", "Visual Communication Camera VGP-VCC2 [R5U870]" }, - { "05ca", "1834", "Visual Communication Camera VGP-VCC2 [R5U870]" }, - { "05ca", "1835", "Visual Communication Camera VGP-VCC5 [R5U870]" }, - { "05ca", "1836", "Visual Communication Camera VGP-VCC4 [R5U870]" }, - { "05ca", "1837", "Visual Communication Camera VGP-VCC4 [R5U870]" }, - { "05ca", "1839", "Visual Communication Camera VGP-VCC6 [R5U870]" }, - { "05ca", "183a", "Visual Communication Camera VGP-VCC7 [R5U870]" }, - { "05ca", "183b", "Visual Communication Camera VGP-VCC8 [R5U870]" }, - { "05ca", "183d", "Sony Vaio Integrated Webcam" }, - { "05ca", "183e", "Visual Communication Camera VGP-VCC9 [R5U870]" }, - { "05ca", "183f", "Sony Visual Communication Camera Integrated Webcam" }, - { "05ca", "1841", "Fujitsu F01/ Lifebook U810 [R5U870]" }, - { "05ca", "1870", "Webcam 1000" }, - { "05ca", "1880", "R5U880" }, - { "05ca", "18b0", "Sony Vaio Integrated Webcam" }, - { "05ca", "18b1", "Sony Vaio Integrated Webcam" }, - { "05ca", "18b3", "Sony Vaio Integrated Webcam" }, - { "05ca", "18b5", "Sony Vaio Integrated Webcam" }, - { "05ca", "2201", "RDC-7 Camera" }, - { "05ca", "2202", "Caplio RR30" }, - { "05ca", "2203", "Caplio 300G" }, - { "05ca", "2204", "Caplio G3" }, - { "05ca", "2205", "Caplio RR30 / Medion MD 6126 Camera" }, - { "05ca", "2206", "Konica DG-3Z" }, - { "05ca", "2207", "Caplio Pro G3" }, - { "05ca", "2208", "Caplio G4" }, - { "05ca", "2209", "Caplio 400G wide" }, - { "05ca", "220a", "KONICA MINOLTA DG-4Wide" }, - { "05ca", "220b", "Caplio RX" }, - { "05ca", "220c", "Caplio GX" }, - { "05ca", "220d", "Caplio R1/RZ1" }, - { "05ca", "220e", "Sea & Sea 5000G" }, - { "05ca", "220f", "Rollei dr5 / Rollei dr5 (PTP mode)" }, - { "05ca", "2211", "Caplio R1S" }, - { "05ca", "2212", "Caplio R1v Camera" }, - { "05ca", "2213", "Caplio R2" }, - { "05ca", "2214", "Caplio GX 8" }, - { "05ca", "2215", "DSC 725" }, - { "05ca", "2216", "Caplio R3" }, - { "05ca", "2222", "RDC-i500" }, - { "05cb", "1483", "PV8630 interface (scanners, webcams)" }, - { "05cc", "2100", "MicroLink ISDN Office" }, - { "05cc", "2219", "MicroLink ISDN" }, - { "05cc", "2265", "MicroLink 56k" }, - { "05cc", "2267", "MicroLink 56k (V.250)" }, - { "05cc", "2280", "MicroLink 56k Fun" }, - { "05cc", "3000", "Micolink USB2Ethernet [pegasus]" }, - { "05cc", "3100", "AirLancer USB-11" }, - { "05cc", "3363", "MicroLink ADSL Fun" }, - { "05d1", "0003", "Bluetooth Adapter BL-554" }, - { "05d7", "0099", "10Mbps Ethernet [klsi]" }, - { "05d8", "4001", "Artec Ultima 2000" }, - { "05d8", "4002", "Artec Ultima 2000 (GT6801 based)/Lifetec LT9385/ScanMagic 1200 UB Plus Scanner" }, - { "05d8", "4003", "Artec E+ 48U" }, - { "05d8", "4004", "Artec E+ Pro" }, - { "05d8", "4005", "MEM48U" }, - { "05d8", "4006", "TRUST EASY WEBSCAN 19200" }, - { "05d8", "4007", "TRUST 240H EASY WEBSCAN GOLD" }, - { "05d8", "4008", "Trust Easy Webscan 19200" }, - { "05d8", "4009", "Umax Astraslim" }, - { "05d8", "4013", "IT Scan 1200" }, - { "05d8", "8105", "Artec T1 USB TVBOX (cold)" }, - { "05d8", "8106", "Artec T1 USB TVBOX (warm)" }, - { "05d8", "8107", "Artec T1 USB TVBOX with AN2235 (cold)" }, - { "05d8", "8108", "Artec T1 USB TVBOX with AN2235 (warm)" }, - { "05d8", "8109", "Artec T1 USB2.0 TVBOX (cold" }, - { "05d9", "a225", "A225 Printer" }, - { "05d9", "a758", "A758 Printer" }, - { "05d9", "a794", "A794 Printer" }, - { "05da", "0091", "ScanMaker X6u" }, - { "05da", "0093", "ScanMaker V6USL" }, - { "05da", "0094", "Phantom 336CX/C3" }, - { "05da", "0099", "ScanMaker X6/X6U" }, - { "05da", "009a", "Phantom C6" }, - { "05da", "00a0", "Phantom 336CX/C3 (#2)" }, - { "05da", "00a3", "ScanMaker V6USL" }, - { "05da", "00ac", "ScanMaker V6UL" }, - { "05da", "00b6", "ScanMaker V6UPL" }, - { "05da", "00ef", "ScanMaker V6UPL" }, - { "05da", "1006", "Jenoptik JD350 entrance" }, - { "05da", "1011", "NHJ Che-ez! Kiss Digital Camera" }, - { "05da", "1018", "Digital Dream Enigma 1.3" }, - { "05da", "1020", "Digital Dream l'espion xtra" }, - { "05da", "1025", "Take-it Still Camera Device" }, - { "05da", "1026", "Take-it" }, - { "05da", "1043", "Take-It 1300 DSC Bulk Driver" }, - { "05da", "1045", "Take-it D1" }, - { "05da", "1047", "Take-it Camera Composite Device" }, - { "05da", "1048", "Take-it Q3" }, - { "05da", "1049", "3M Still Camera Device" }, - { "05da", "1051", "Camcorder Series" }, - { "05da", "1052", "Mass Storage Device" }, - { "05da", "1053", "Take-it DV Composite Device" }, - { "05da", "1054", "Mass Storage Device" }, - { "05da", "1055", "Digital Camera Series(536)" }, - { "05da", "1056", "Mass Storage Device" }, - { "05da", "1057", "Take-it DSC Camera Device(536)" }, - { "05da", "1058", "Mass Storage Device" }, - { "05da", "1059", "Camcorder DSC Series" }, - { "05da", "1060", "Microtek Take-it MV500" }, - { "05da", "2007", "ArtixScan DI 1210" }, - { "05da", "200c", "1394_USB2 Scanner" }, - { "05da", "200e", "ArtixScan DI 810" }, - { "05da", "2017", "UF ICE Scanner" }, - { "05da", "201c", "4800 Scanner" }, - { "05da", "201d", "ArtixScan DI 1610" }, - { "05da", "201f", "4800 Scanner-ICE" }, - { "05da", "202e", "ArtixScan DI 2020" }, - { "05da", "208b", "ScanMaker 6800" }, - { "05da", "208f", "ArtixScan DI 2010" }, - { "05da", "209e", "ScanMaker 4700LP" }, - { "05da", "20a7", "ScanMaker 5600" }, - { "05da", "20b0", "ScanMaker X12USL" }, - { "05da", "20b1", "ScanMaker 8700" }, - { "05da", "20b4", "ScanMaker 4700" }, - { "05da", "20bd", "ScanMaker 5700" }, - { "05da", "20c9", "ScanMaker 6700" }, - { "05da", "20d2", "Microtek ArtixScan 1800f" }, - { "05da", "20d6", "PS4000" }, - { "05da", "20de", "ScanMaker 9800XL" }, - { "05da", "20e0", "ScanMaker 9700XL" }, - { "05da", "20ed", "ScanMaker 4700" }, - { "05da", "20ee", "Micortek ScanMaker X12USL" }, - { "05da", "2838", "RT2832U" }, - { "05da", "3008", "Scanner" }, - { "05da", "300a", "4800 ICE Scanner" }, - { "05da", "300b", "4800 Scanner" }, - { "05da", "300f", "MiniScan C5" }, - { "05da", "3020", "4800dpi Scanner" }, - { "05da", "3021", "1200dpi Scanner" }, - { "05da", "3022", "Scanner 4800dpi" }, - { "05da", "3023", "USB1200II Scanner" }, - { "05da", "3025", "ScanMaker S460" }, - { "05da", "30c1", "USB600 Scanner" }, - { "05da", "30ce", "ScanMaker 3800" }, - { "05da", "30cf", "ScanMaker 4800" }, - { "05da", "30d4", "USB1200 Scanner" }, - { "05da", "30d8", "Scanner" }, - { "05da", "30d9", "USB2400 Scanner" }, - { "05da", "30e4", "ScanMaker 4100" }, - { "05da", "30e5", "USB3200 Scanner" }, - { "05da", "30e6", "ScanMaker i320" }, - { "05da", "40b3", "ScanMaker 3600" }, - { "05da", "40b8", "ScanMaker 3700" }, - { "05da", "40c7", "ScanMaker 4600" }, - { "05da", "40ca", "ScanMaker 3600" }, - { "05da", "40cb", "ScanMaker 3700" }, - { "05da", "40dd", "ScanMaker 3750i" }, - { "05da", "40ff", "ScanMaker 3600" }, - { "05da", "5003", "Goya" }, - { "05da", "5013", "3200 Scanner" }, - { "05da", "6072", "XT-3500 A4 HD Scanner" }, - { "05da", "80a3", "ScanMaker V6USL (#2)" }, - { "05da", "80ac", "ScanMaker V6UL/SpicyU" }, - { "05db", "0003", "SUNTAC U-Cable type D2" }, - { "05db", "0005", "SUNTAC U-Cable type P1" }, - { "05db", "0009", "SUNTAC Slipper U" }, - { "05db", "000a", "SUNTAC Ir-Trinity" }, - { "05db", "000b", "SUNTAC U-Cable type A3" }, - { "05db", "0011", "SUNTAC U-Cable type A4" }, - { "05dc", "0001", "jumpSHOT CompactFlash Reader" }, - { "05dc", "0002", "JumpShot" }, - { "05dc", "0003", "JumpShot" }, - { "05dc", "0080", "Jumpdrive Secure 64MB" }, - { "05dc", "0081", "RBC Compact Flash Drive" }, - { "05dc", "00a7", "JumpDrive Impact" }, - { "05dc", "0100", "JumpDrive PRO" }, - { "05dc", "0200", "JumpDrive 2.0 Pro" }, - { "05dc", "0300", "Jumpdrive Geysr" }, - { "05dc", "0301", "JumpDrive Classic" }, - { "05dc", "0302", "JD Micro" }, - { "05dc", "0303", "JD Micro Pro" }, - { "05dc", "0304", "JD Secure II" }, - { "05dc", "0310", "JumpDrive" }, - { "05dc", "0311", "JumpDrive Classic" }, - { "05dc", "0312", "JD Micro" }, - { "05dc", "0313", "JD Micro Pro" }, - { "05dc", "0320", "JumpDrive" }, - { "05dc", "0321", "JD Micro" }, - { "05dc", "0322", "JD Micro Pro" }, - { "05dc", "0323", "UFC" }, - { "05dc", "0330", "JumpDrive Expression" }, - { "05dc", "0340", "JumpDrive TAD" }, - { "05dc", "0350", "Express Card" }, - { "05dc", "0400", "UFDC" }, - { "05dc", "0401", "UFDC" }, - { "05dc", "0403", "Locked B Device" }, - { "05dc", "0405", "Locked C Device" }, - { "05dc", "0407", "Locked D Device" }, - { "05dc", "0409", "Locked E Device" }, - { "05dc", "040b", "Locked F Device" }, - { "05dc", "040d", "Locked G Device" }, - { "05dc", "040f", "Locked H Device" }, - { "05dc", "0410", "JumpDrive" }, - { "05dc", "0411", "JumpDrive" }, - { "05dc", "0413", "Locked J Device" }, - { "05dc", "0415", "Locked K Device" }, - { "05dc", "0417", "Locked L Device" }, - { "05dc", "0419", "Locked M Device" }, - { "05dc", "041b", "Locked N Device" }, - { "05dc", "041d", "Locked O Device" }, - { "05dc", "041f", "Locked P Device" }, - { "05dc", "0420", "JumpDrive" }, - { "05dc", "0421", "JumpDrive" }, - { "05dc", "0423", "Locked R Device" }, - { "05dc", "0425", "Locked S Device" }, - { "05dc", "0427", "Locked T Device" }, - { "05dc", "0429", "Locked U Device" }, - { "05dc", "042b", "Locked V Device" }, - { "05dc", "042d", "Locked W Device" }, - { "05dc", "042f", "Locked X Device" }, - { "05dc", "0431", "Locked Y Device" }, - { "05dc", "0433", "Locked Z Device" }, - { "05dc", "4d02", "MP3 Player" }, - { "05dc", "4d12", "MP3 Player" }, - { "05dc", "4d30", "MP3 Player" }, - { "05dc", "a201", "JumpDrive S70 4GB" }, - { "05dc", "a209", "JumpDrive S70" }, - { "05dc", "a300", "JumpDrive2" }, - { "05dc", "a400", "JumpDrive trade; Pro 40-501" }, - { "05dc", "a410", "JumpDrive 128MB/256MB" }, - { "05dc", "a411", "JumpDrive Traveler" }, - { "05dc", "a420", "JumpDrive Pro" }, - { "05dc", "a421", "JumpDrive Pro II" }, - { "05dc", "a422", "JumpDrive Micro Pro" }, - { "05dc", "a430", "JumpDrive Secure" }, - { "05dc", "a431", "JumpDrive Secure II" }, - { "05dc", "a432", "JumpDrive Classic" }, - { "05dc", "a440", "JumpDrive Lightning" }, - { "05dc", "a450", "JumpDrive TouchGuard" }, - { "05dc", "a460", "JD Mercury" }, - { "05dc", "a501", "JumpDrive Classic" }, - { "05dc", "a510", "JumpDrive Sport" }, - { "05dc", "a530", "JumpDrive Expression" }, - { "05dc", "a531", "JumpDrive Secure II" }, - { "05dc", "a560", "JumpDrive FireFly" }, - { "05dc", "a701", "JumpDrive FireFly" }, - { "05dc", "a731", "JumpDrive FireFly" }, - { "05dc", "a762", "JumpDrive FireFly" }, - { "05dc", "a768", "JumpDrive Retrax" }, - { "05dc", "a790", "JumpDrive 2GB" }, - { "05dc", "a811", "16GB Gizmo!" }, - { "05dc", "a813", "16gB flash thumb drive" }, - { "05dc", "a815", "JumpDrive V10" }, - { "05dc", "a81d", "LJDTT16G [JumpDrive 16GB]" }, - { "05dc", "a833", "JumpDrive S23 64GB" }, - { "05dc", "a838", "JumpDrive Tough" }, - { "05dc", "b002", "USB CF Reader" }, - { "05dc", "b018", "Multi-Card Reader" }, - { "05dc", "b047", "SDHC Reader [RW047-7000]" }, - { "05dc", "b051", "microSD RDR UHS-I Card Reader [LRWM03U-7000]" }, - { "05dc", "ba02", "Workflow CFR1" }, - { "05dc", "ba0a", "Workflow DD512" }, - { "05dc", "c753", "JumpDrive TwistTurn" }, - { "05dc", "c75c", "JumpDrive V10" }, - { "05dd", "a011", "HID UPS Battery" }, - { "05dd", "ff31", "AWU-120" }, - { "05dd", "ff32", "FriendlyNET AeroLAN AL2011" }, - { "05dd", "ff35", "PCW 100 - Wireless 802.11b Adapter" }, - { "05dd", "ff91", "2Wire PC Port Phoneline 10Mbps Adapter" }, - { "05e0", "0700", "Bar Code Scanner (CS1504)" }, - { "05e0", "0800", "Spectrum24 Wireless LAN Adapter" }, - { "05e0", "1200", "Bar Code Scanner" }, - { "05e0", "1701", "Bar Code Scanner (CDC)" }, - { "05e0", "1900", "SNAPI Imaging Device" }, - { "05e0", "1a00", "CS4070 Barcode Scanner" }, - { "05e0", "2000", "MC3090 Rugged Mobile Computer" }, - { "05e0", "200d", "MC70 Rugged Mobile Computer" }, - { "05e1", "0100", "802.11g + Bluetooth Wireless Adapter" }, - { "05e1", "0408", "STK1160 Video Capture Device" }, - { "05e1", "0500", "DC-112X Webcam" }, - { "05e1", "0501", "DC-1125 Webcam" }, - { "05e1", "0890", "STK011 Camera" }, - { "05e1", "0892", "STK013 Camera" }, - { "05e1", "0895", "STK016 Camera" }, - { "05e1", "0896", "STK017 Camera" }, - { "05e1", "2010", "ARCTIC Sound P261 Headphones" }, - { "05e3", "000a", "Keyboard with PS/2 Port" }, - { "05e3", "000b", "Mouse" }, - { "05e3", "0100", "Nintendo Game Boy Advance SP" }, - { "05e3", "0120", "Pacific Image Electronics PrimeFilm 1800u slide/negative scanner" }, - { "05e3", "0131", "CF/SM Reader/Writer" }, - { "05e3", "0142", "Multiple Slides Scanner-3600" }, - { "05e3", "0143", "Multiple Frames Film Scanner-36series" }, - { "05e3", "0145", "Reflecta CrystalScan 7200 Photo-Scanner" }, - { "05e3", "0180", "Plustek Scanner" }, - { "05e3", "0182", "Wize Media 1000" }, - { "05e3", "0189", "ScanJet 4600 series" }, - { "05e3", "018a", "Xerox 6400" }, - { "05e3", "0300", "GLUSB98PT Parallel Port" }, - { "05e3", "0301", "USB2LPT Cable Release2" }, - { "05e3", "0406", "Hub" }, - { "05e3", "0501", "GL620USB Host-Host interface" }, - { "05e3", "0502", "GL620USB-A GeneLink USB-USB Bridge" }, - { "05e3", "0503", "Webcam" }, - { "05e3", "0504", "HID Keyboard Filter" }, - { "05e3", "0510", "Camera" }, - { "05e3", "0604", "USB 1.1 Hub" }, - { "05e3", "0605", "Hub" }, - { "05e3", "0606", "USB 2.0 Hub / D-Link DUB-H4 USB 2.0 Hub" }, - { "05e3", "0607", "Logitech G110 Hub" }, - { "05e3", "0608", "Hub" }, - { "05e3", "0610", "Hub" }, - { "05e3", "0612", "Hub" }, - { "05e3", "0616", "hub" }, - { "05e3", "0618", "Hub" }, - { "05e3", "0620", "GL3523 Hub" }, - { "05e3", "0626", "Hub" }, - { "05e3", "0660", "USB 2.0 Hub" }, - { "05e3", "0700", "SIIG US2256 CompactFlash Card Reader" }, - { "05e3", "0701", "USB 2.0 IDE Adapter" }, - { "05e3", "0702", "USB 2.0 IDE Adapter [GL811E]" }, - { "05e3", "0703", "Card Reader" }, - { "05e3", "0704", "Card Reader" }, - { "05e3", "0705", "Card Reader" }, - { "05e3", "0706", "Card Reader" }, - { "05e3", "0707", "Card Reader" }, - { "05e3", "0708", "Card Reader" }, - { "05e3", "0709", "Card Reader" }, - { "05e3", "070a", "Pen Flash" }, - { "05e3", "070b", "DMHS1B Rev 3 DFU Adapter" }, - { "05e3", "070e", "USB 2.0 Card Reader" }, - { "05e3", "070f", "Pen Flash" }, - { "05e3", "0710", "USB 2.0 33-in-1 Card Reader" }, - { "05e3", "0711", "Card Reader" }, - { "05e3", "0712", "Delkin Mass Storage Device" }, - { "05e3", "0715", "USB 2.0 microSD Reader" }, - { "05e3", "0716", "Multislot Card Reader/Writer" }, - { "05e3", "0717", "All-in-1 Card Reader" }, - { "05e3", "0718", "IDE/SATA Adapter" }, - { "05e3", "0719", "SATA adapter" }, - { "05e3", "0722", "SD/MMC card reader" }, - { "05e3", "0723", "GL827L SD/MMC/MS Flash Card Reader" }, - { "05e3", "0726", "SD Card Reader" }, - { "05e3", "0727", "microSD Reader/Writer" }, - { "05e3", "0731", "GL3310 SATA 3Gb/s Bridge Controller" }, - { "05e3", "0732", "All-in-One Cardreader" }, - { "05e3", "0736", "Colour arc SD Card Reader [PISEN]" }, - { "05e3", "0738", "Card reader" }, - { "05e3", "0741", "microSD Card Reader" }, - { "05e3", "0743", "SDXC and microSDXC CardReader" }, - { "05e3", "0745", "Logilink CR0012" }, - { "05e3", "0748", "All-in-One Cardreader" }, - { "05e3", "0749", "SD Card Reader and Writer" }, - { "05e3", "0751", "microSD Card Reader" }, - { "05e3", "0752", "micros Reader" }, - { "05e3", "0760", "USB 2.0 Card Reader/Writer" }, - { "05e3", "0761", "Genesys Mass Storage Device" }, - { "05e3", "0780", "USBFS DFU Adapter" }, - { "05e3", "07a0", "Pen Flash" }, - { "05e3", "0880", "Wasp (SL-6612)" }, - { "05e3", "0927", "Card Reader" }, - { "05e3", "1205", "Afilias Optical Mouse H3003 / Trust Optical USB MultiColour Mouse MI-2330" }, - { "05e3", "a700", "Pen Flash" }, - { "05e3", "f102", "VX7012 TV Box" }, - { "05e3", "f103", "VX7012 TV Box" }, - { "05e3", "f104", "VX7012 TV Box" }, - { "05e3", "f12a", "Digital Microscope" }, - { "05e3", "fd21", "3M TL20 Temperature Logger" }, - { "05e3", "fe00", "Razer Mouse" }, - { "05e9", "0008", "KL5KUSB101B Ethernet [klsi]" }, - { "05e9", "0009", "Sony 10Mbps Ethernet [pegasus]" }, - { "05e9", "000c", "USB-to-RS-232" }, - { "05e9", "000d", "USB-to-RS-232" }, - { "05e9", "0014", "RS-232 J104" }, - { "05e9", "0040", "Ethernet Adapter" }, - { "05e9", "2008", "Ethernet Adapter" }, - { "05ef", "020a", "Top Shot Pegasus Joystick" }, - { "05ef", "8884", "Mag Turbo Force Wheel" }, - { "05ef", "8888", "Top Shot Force Feedback Racing Wheel" }, - { "05f0", "0101", "DA-Port DAC" }, - { "05f2", "0010", "AQ Mouse" }, - { "05f3", "0007", "Kinesis Advantage PRO MPC/USB Keyboard" }, - { "05f3", "0081", "Kinesis Integrated Hub" }, - { "05f3", "00ff", "VEC Footpedal" }, - { "05f3", "0203", "Y-mouse Keyboard & Mouse Adapter" }, - { "05f3", "020b", "PS2 Adapter" }, - { "05f3", "0232", "X-Keys Switch Interface, Programming Mode" }, - { "05f3", "0261", "X-Keys Switch Interface, SPLAT Mode" }, - { "05f3", "0264", "X-Keys Switch Interface, Composite Mode" }, - { "05f9", "1104", "Magellan 2200VS" }, - { "05f9", "1206", "Gryphon series (OEM mode)" }, - { "05f9", "120c", "Gryphon GD4430-BK" }, - { "05f9", "2202", "Point of Sale Handheld Scanner" }, - { "05f9", "2206", "Gryphon series (keyboard emulation mode)" }, - { "05f9", "220c", "Datalogic Gryphon GD4430" }, - { "05f9", "2601", "Datalogic Magellan 1000i Barcode Scanner" }, - { "05f9", "2602", "Datalogic Magellan 1100i Barcode Scanner" }, - { "05f9", "4204", "Gryphon series (RS-232 emulation mode)" }, - { "05f9", "5204", "Datalogic Gryphon GFS4170 (config mode)" }, - { "05fa", "3301", "Keyboard with PS/2 Mouse Port" }, - { "05fa", "3302", "Keyboard" }, - { "05fa", "3303", "Keyboard with PS/2 Mouse Port" }, - { "05fc", "0001", "Soundcraft Si Multi Digital Card" }, - { "05fc", "0010", "Soundcraft Si MADI combo card" }, - { "05fc", "0021", "Soundcraft Signature 12 MTK" }, - { "05fc", "7849", "Harman/Kardon SoundSticks" }, - { "05fd", "0239", "SV-239 HammerHead Digital" }, - { "05fd", "0251", "Raider Pro" }, - { "05fd", "0253", "ProPad 8 Digital" }, - { "05fd", "0286", "SV-286 Cyclone Digital" }, - { "05fd", "1007", "Mad Catz Controller" }, - { "05fd", "107a", "PowerPad Pro X-Box pad" }, - { "05fd", "262a", "3dfx HammerHead FX" }, - { "05fd", "262f", "HammerHead Fx" }, - { "05fd", "daae", "Game Shark" }, - { "05fd", "dbae", "Datel XBoxMC" }, - { "05fe", "0001", "Mouse" }, - { "05fe", "0003", "Cypress USB Mouse" }, - { "05fe", "0005", "Viewmaster 4D Browser Mouse" }, - { "05fe", "0007", "Twinhead Mouse" }, - { "05fe", "0009", "Inland Pro 4500/5000 Mouse" }, - { "05fe", "0011", "Browser Mouse" }, - { "05fe", "0014", "Gamepad" }, - { "05fe", "1010", "Optical Wireless" }, - { "05fe", "2001", "Microsoft Wireless Receiver 700" }, - { "05fe", "3030", "Controller" }, - { "05fe", "3031", "Controller" }, - { "0601", "0003", "Internet Security Co., Ltd. SecureKey" }, - { "0602", "1001", "ViCam Webcam" }, - { "0603", "0002", "Sino Wealth keyboard/mouse 2.4 GHz receiver" }, - { "0603", "00f1", "Keyboard (Labtec Ultra Flat Keyboard)" }, - { "0603", "00f2", "Keyboard (Labtec Ultra Flat Keyboard)" }, - { "0603", "1002", "Mobius actioncam (webcam mode)" }, - { "0603", "6871", "Mouse" }, - { "0603", "8611", "NTK96550 based camera" }, - { "0609", "031d", "eHome Infrared Receiver" }, - { "0609", "0322", "eHome Infrared Receiver" }, - { "0609", "0334", "eHome Infrared Receiver" }, - { "0609", "ff12", "SMK Bluetooth Device" }, - { "060b", "0001", "MacAlly Keyboard" }, - { "060b", "0230", "KSK-8003 UX Keyboard" }, - { "060b", "0540", "DeltaCo TB-106U Keyboard" }, - { "060b", "1006", "Japanese Keyboard - 260U" }, - { "060b", "2101", "Keyboard" }, - { "060b", "2231", "KSK-6001 UELX Keyboard" }, - { "060b", "2270", "Gigabyte K8100 Aivia Gaming Keyboard" }, - { "060b", "500a", "Cougar 500k Gaming Keyboard" }, - { "060b", "5253", "Thermaltake MEKA G-Unit Gaming Keyboard" }, - { "060b", "5811", "ACK-571U Wireless Keyboard" }, - { "060b", "5903", "Japanese Keyboard - 595U" }, - { "060b", "6001", "SolidTek USB 2p HUB" }, - { "060b", "6002", "SolidTek USB Keyboard" }, - { "060b", "6003", "Japanese Keyboard - 600HM" }, - { "060b", "6231", "Thermaltake eSPORTS Meka Keyboard" }, - { "060b", "8007", "P-W1G1F12 VER:1 [Macally MegaCam]" }, - { "060b", "a001", "Maxwell Compact Pc PM3" }, - { "0617", "000a", "Thymio-II" }, - { "0617", "000c", "Thymio-II Wireless" }, - { "0618", "0101", "Mouse" }, - { "0619", "0101", "SLP-100 Driver" }, - { "0619", "0102", "SLP-200 Driver" }, - { "0619", "0103", "SLP-100N Driver" }, - { "0619", "0104", "SLP-200N Driver" }, - { "0619", "0105", "SLP-240 Driver" }, - { "0619", "0501", "SLP-440 Driver" }, - { "0619", "0502", "SLP-450 Driver" }, - { "061a", "0110", "5thSense Fingerprint Sensor" }, - { "061a", "0200", "FPS200 Fingerprint Sensor" }, - { "061a", "8200", "VKI-A Fingerprint Sensor/Flash Storage (dumb)" }, - { "061a", "9200", "VKI-B Fingerprint Sensor/Flash Storage (smart)" }, - { "061d", "c020", "SSU-100" }, - { "061e", "0001", "nissei 128DE-USB -" }, - { "061e", "0010", "nissei 128DE-PNA -" }, - { "0620", "0004", "QuickVideo weeCam" }, - { "0620", "0007", "QuickVideo weeCam" }, - { "0620", "000a", "QuickVideo weeCam" }, - { "0620", "000b", "QuickVideo weeCam" }, - { "0624", "0013", "SC Secure KVM" }, - { "0624", "0248", "Virtual Hub" }, - { "0624", "0249", "Virtual Keyboard/Mouse" }, - { "0624", "0251", "Virtual Mass Storage" }, - { "0624", "0252", "Virtual SD card reader" }, - { "0624", "0294", "Dell 03R874 KVM dongle" }, - { "0624", "0402", "Cisco Virtual Keyboard and Mouse" }, - { "0624", "0403", "Cisco Virtual Mass Storage" }, - { "0624", "1774", "Cybex SC985" }, - { "062a", "0000", "Optical mouse" }, - { "062a", "0001", "Notebook Optical Mouse" }, - { "062a", "0020", "Logic3 Gamepad" }, - { "062a", "0033", "Competition Pro Steering Wheel" }, - { "062a", "0102", "Wireless Keyboard/Mouse Combo [MK1152WC]" }, - { "062a", "0201", "Defender Office Keyboard (K7310) S Zodiak KM-9010" }, - { "062a", "0252", "Emerge Uni-retractable Laser Mouse" }, - { "062a", "2410", "Wireless PS3 gamepad" }, - { "062a", "3286", "Nano Receiver [Sandstrom Laser Mouse SMWLL11]" }, - { "062a", "4101", "Wireless Keyboard/Mouse" }, - { "062a", "4102", "Wireless Mouse" }, - { "062a", "4106", "Wireless Mouse 2.4G" }, - { "062a", "4c01", "2,4Ghz Wireless Transceiver [for Delux M618 Plus Wireless Vertical Mouse]" }, - { "062a", "6301", "Trust Wireless Optical Mouse MI-4150K" }, - { "062a", "9003", "VoIP Conference Hub (A16GH)" }, - { "062a", "9004", "USR9602 USB Internet Mini Phone" }, - { "0634", "0655", "Embedded Mass Storage Drive [RealSSD]" }, - { "0636", "0003", "Vivicam 35Xx" }, - { "0638", "0268", "iVina 1200U Scanner" }, - { "0638", "026a", "Minolta Dimage Scan Dual II AF-2820U (2886)" }, - { "0638", "0a10", "iVina FB1600/UMAX Astra 4500" }, - { "0638", "0a13", "AV600U" }, - { "0638", "0a15", "Konica Minolta SC-110" }, - { "0638", "0a16", "Konica Minolta SC-215" }, - { "0638", "0a2a", "AV220 C2" }, - { "0638", "0a30", "UMAX Astra 6700 Scanner" }, - { "0638", "0a41", "Avision AM3000/MF3000 Series" }, - { "0638", "0f01", "fi-4010CU" }, - { "0638", "4004", "Minolta Dimage Scan Elite II AF-2920 (2888)" }, - { "0640", "0026", "LPC-Stick" }, - { "0644", "0000", "Floppy" }, - { "0644", "0200", "All-In-One Multi-Card Reader CA200/B/S" }, - { "0644", "1000", "CD-ROM Drive" }, - { "0644", "800d", "TASCAM Portastudio DP-01FX" }, - { "0644", "800e", "TASCAM US-122L" }, - { "0644", "801d", "TASCAM DR-100" }, - { "0644", "8021", "TASCAM US-122mkII" }, - { "0644", "d001", "CD-R/RW Unit" }, - { "0644", "d002", "CD-R/RW Unit" }, - { "0644", "d010", "CD-RW/DVD Unit" }, - { "0647", "0100", "ARC SpectraPro UV/VIS/IR Monochromator/Spectrograph" }, - { "0647", "0101", "ARC AM-VM Mono Airpath/Vacuum Monochromator/Spectrograph" }, - { "0647", "0102", "ARC Inspectrum Mono" }, - { "0647", "0103", "ARC Filterwheel" }, - { "0647", "03e9", "Inspectrum 128x1024 F VIS Spectrograph" }, - { "0647", "03ea", "Inspectrum 256x1024 F VIS Spectrograph" }, - { "0647", "03eb", "Inspectrum 128x1024 B VIS Spectrograph" }, - { "0647", "03ec", "Inspectrum 256x1024 B VIS Spectrograph" }, - { "064b", "0165", "Blackfin 535 [ADZS HPUSB ICE]" }, - { "064e", "2100", "Sony Visual Communication Camera" }, - { "064e", "3410", "RGBIR Camera" }, - { "064e", "9700", "Asus Integrated Webcam" }, - { "064e", "a100", "Acer OrbiCam" }, - { "064e", "a101", "Acer CrystalEye Webcam" }, - { "064e", "a102", "Acer/Lenovo Webcam [CN0316]" }, - { "064e", "a103", "Acer/HP Integrated Webcam [CN0314]" }, - { "064e", "a110", "HP Webcam" }, - { "064e", "a114", "Lemote Webcam" }, - { "064e", "a116", "UVC 1.3MPixel WebCam" }, - { "064e", "a127", "HP Integrated Webcam" }, - { "064e", "a136", "Asus Integrated Webcam [CN031B]" }, - { "064e", "a219", "1.3M WebCam (notebook emachines E730, Acer sub-brand)" }, - { "064e", "c107", "HP webcam [dv6-1190en]" }, - { "064e", "c335", "HP TrueVision HD" }, - { "064e", "d101", "Acer CrystalEye Webcam" }, - { "064e", "d213", "UVC HD Webcam" }, - { "064e", "d217", "HP TrueVision HD" }, - { "064e", "e201", "Lenovo Integrated Webcam" }, - { "064e", "e203", "Lenovo Integrated Webcam" }, - { "064e", "e258", "HP TrueVision HD Integrated Webcam" }, - { "064e", "e263", "HP TrueVision HD Integrated Webcam" }, - { "064e", "f102", "Lenovo Integrated Webcam [R5U877]" }, - { "064e", "f103", "Lenovo Integrated Webcam [R5U877]" }, - { "064e", "f207", "Lenovo EasyCamera Integrated Webcam" }, - { "064e", "f209", "HP Webcam" }, - { "064e", "f300", "UVC 0.3M Webcam" }, - { "064f", "03e9", "CmStick (MSD, article no. 1001-xx-xxx)" }, - { "064f", "03f2", "CmStick/M (MSD, article no. 1010-xx-xxx)" }, - { "064f", "03f3", "CmStick/M (MSD, article no. 1011-xx-xxx)" }, - { "064f", "0bd7", "Wibu-Box/U (article no. 3031-xx-xxx)" }, - { "064f", "0bd8", "Wibu-Box/RU (article no. 3032-xx-xxx)" }, - { "064f", "2af9", "CmStick (HID, article no. 1001-xx-xxx)" }, - { "064f", "2b03", "CmStick/M (HID, article no. 1011-xx-xxx)" }, - { "064f", "5213", "CmStick/M (COMPOSITE, article no. 1011-xx-xxx)" }, - { "0654", "0005", "Device Bay Controller" }, - { "0654", "0006", "Hub" }, - { "0654", "0007", "Device Bay Controller" }, - { "0654", "0016", "Hub" }, - { "0658", "0200", "Aeotec Z-Stick Gen5 (ZW090) - UZB" }, - { "065a", "0001", "Opticon OPR-2001 / NLV-1001 (keyboard mode)" }, - { "065a", "0009", "NLV-1001 (serial mode) / OPN-2001 [Opticon]" }, - { "0663", "0103", "CobraPad" }, - { "0664", "0301", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0302", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0303", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0304", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0305", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0306", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0307", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0664", "0309", "Groovy Technology Corp. GTouch Touch Screen" }, - { "0665", "5161", "USB to Serial" }, - { "0667", "0fa1", "TD-U8000 Tape Drive" }, - { "066b", "0105", "SCM eUSB SmartMedia Card Reader" }, - { "066b", "010a", "Melco MCR-U2 SmartMedia / CompactFlash Reader" }, - { "066b", "200c", "USB10TX" }, - { "066b", "2202", "USB10TX Ethernet [pegasus]" }, - { "066b", "2203", "USB100TX Ethernet [pegasus]" }, - { "066b", "2204", "USB100TX HomePNA Ethernet [pegasus]" }, - { "066b", "2206", "USB Ethernet [pegasus]" }, - { "066b", "2207", "HomeLink Phoneline 10M Network Adapter" }, - { "066b", "2211", "WUSB11 802.11b Adapter" }, - { "066b", "2212", "WUSB11v2.5 802.11b Adapter" }, - { "066b", "2213", "WUSB12v1.1 802.11b Adapter" }, - { "066b", "2219", "Instant Wireless Network Adapter" }, - { "066b", "400b", "USB10TX" }, - { "066f", "003b", "MP3 Player" }, - { "066f", "003e", "MP3 Player" }, - { "066f", "003f", "MP3 Player" }, - { "066f", "0040", "MP3 Player" }, - { "066f", "0041", "MP3 Player" }, - { "066f", "0042", "MP3 Player" }, - { "066f", "0043", "MP3 Player" }, - { "066f", "004b", "A-Max PA11 MP3 Player" }, - { "066f", "3400", "STMP3400 D-Major MP3 Player" }, - { "066f", "3410", "STMP3410 D-Major MP3 Player" }, - { "066f", "3500", "Player Recovery Device" }, - { "066f", "3780", "STMP3780/i.MX23 SystemOnChip in RecoveryMode" }, - { "066f", "4200", "STIr4200 IrDA Bridge" }, - { "066f", "4210", "STIr4210 IrDA Bridge" }, - { "066f", "8000", "MSCN MP3 Player" }, - { "066f", "8001", "SigmaTel MSCN Audio Player" }, - { "066f", "8004", "MSCNMMC MP3 Player" }, - { "066f", "8008", "i-Bead 100 MP3 Player" }, - { "066f", "8020", "MP3 Player" }, - { "066f", "8034", "MP3 Player" }, - { "066f", "8036", "MP3 Player" }, - { "066f", "8038", "MP3 Player" }, - { "066f", "8056", "MP3 Player" }, - { "066f", "8060", "MP3 Player" }, - { "066f", "8066", "MP3 Player" }, - { "066f", "807e", "MP3 Player" }, - { "066f", "8092", "MP3 Player" }, - { "066f", "8096", "MP3 Player" }, - { "066f", "809a", "MP3 Player" }, - { "066f", "80aa", "MP3 Player" }, - { "066f", "80ac", "MP3 Player" }, - { "066f", "80b8", "MP3 Player" }, - { "066f", "80ba", "MP3 Player" }, - { "066f", "80bc", "MP3 Player" }, - { "066f", "80bf", "MP3 Player" }, - { "066f", "80c5", "MP3 Player" }, - { "066f", "80c8", "MP3 Player" }, - { "066f", "80ca", "MP3 Player" }, - { "066f", "80cc", "MP3 Player" }, - { "066f", "8104", "MP3 Player" }, - { "066f", "8106", "MP3 Player" }, - { "066f", "8108", "MP3 Player" }, - { "066f", "810a", "MP3 Player" }, - { "066f", "810c", "MP3 Player" }, - { "066f", "8122", "MP3 Player" }, - { "066f", "8124", "MP3 Player" }, - { "066f", "8126", "MP3 Player" }, - { "066f", "8128", "MP3 Player" }, - { "066f", "8134", "MP3 Player" }, - { "066f", "8136", "MP3 Player" }, - { "066f", "8138", "MP3 Player" }, - { "066f", "813a", "MP3 Player" }, - { "066f", "813e", "MP3 Player" }, - { "066f", "8140", "MP3 Player" }, - { "066f", "8142", "MP3 Player" }, - { "066f", "8144", "MP3 Player" }, - { "066f", "8146", "MP3 Player" }, - { "066f", "8148", "MP3 Player" }, - { "066f", "814c", "MP3 Player" }, - { "066f", "8201", "MP3 Player" }, - { "066f", "8202", "Jens of Sweden / I-BEAD 150M/150H MP3 player" }, - { "066f", "8203", "MP3 Player" }, - { "066f", "8204", "MP3 Player" }, - { "066f", "8205", "MP3 Player" }, - { "066f", "8206", "Digital MP3 Music Player" }, - { "066f", "8207", "MP3 Player" }, - { "066f", "8208", "MP3 Player" }, - { "066f", "8209", "MP3 Player" }, - { "066f", "820a", "MP3 Player" }, - { "066f", "820b", "MP3 Player" }, - { "066f", "820c", "MP3 Player" }, - { "066f", "820d", "MP3 Player" }, - { "066f", "820e", "MP3 Player" }, - { "066f", "820f", "MP3 Player" }, - { "066f", "8210", "MP3 Player" }, - { "066f", "8211", "MP3 Player" }, - { "066f", "8212", "MP3 Player" }, - { "066f", "8213", "MP3 Player" }, - { "066f", "8214", "MP3 Player" }, - { "066f", "8215", "MP3 Player" }, - { "066f", "8216", "MP3 Player" }, - { "066f", "8217", "MP3 Player" }, - { "066f", "8218", "MP3 Player" }, - { "066f", "8219", "MP3 Player" }, - { "066f", "821a", "MP3 Player" }, - { "066f", "821b", "MP3 Player" }, - { "066f", "821c", "MP3 Player" }, - { "066f", "821d", "MP3 Player" }, - { "066f", "821e", "MP3 Player" }, - { "066f", "821f", "MP3 Player" }, - { "066f", "8220", "MP3 Player" }, - { "066f", "8221", "MP3 Player" }, - { "066f", "8222", "MP3 Player" }, - { "066f", "8223", "MP3 Player" }, - { "066f", "8224", "MP3 Player" }, - { "066f", "8225", "MP3 Player" }, - { "066f", "8226", "MP3 Player" }, - { "066f", "8227", "MP3 Player" }, - { "066f", "8228", "MP3 Player" }, - { "066f", "8229", "MP3 Player" }, - { "066f", "8230", "MP3 Player" }, - { "066f", "829c", "MP3 Player" }, - { "066f", "82e0", "MP3 Player" }, - { "066f", "8320", "TrekStor i.Beat fun" }, - { "066f", "835d", "MP3 Player" }, - { "066f", "83b5", "Transcend T.sonic 530 MP3 Player" }, - { "066f", "9000", "MP3 Player" }, - { "066f", "9001", "MP3 Player" }, - { "066f", "9002", "MP3 Player" }, - { "0670", "0001", "Calibrator" }, - { "0670", "0005", "Enable Cable" }, - { "0672", "1041", "LCS1040 Speaker System" }, - { "0672", "5000", "SpaceBall 4000 FLX" }, - { "0673", "5000", "Keyboard" }, - { "0675", "0110", "Vigor 128 ISDN TA" }, - { "0675", "0530", "Vigor530 IEEE 802.11G Adapter (ISL3880+NET2280)" }, - { "0675", "0550", "Vigor550" }, - { "0675", "1688", "miniVigor 128 ISDN TA [HFC-S]" }, - { "0675", "6694", "miniVigor 128 ISDN TA" }, - { "0677", "07d5", "TM-ED1285(USB)" }, - { "0677", "0fa1", "TD-U8000 Tape Drive" }, - { "067b", "0000", "PL2301 USB-USB Bridge" }, - { "067b", "0001", "PL2302 USB-USB Bridge" }, - { "067b", "0307", "Motorola Serial Adapter" }, - { "067b", "04bb", "PL2303 Serial (IODATA USB-RSAQ2)" }, - { "067b", "0600", "IDE Bridge" }, - { "067b", "0610", "Onext EG210U MODEM" }, - { "067b", "0611", "AlDiga AL-11U Quad-band GSM/GPRS/EDGE modem" }, - { "067b", "1231", "Orico SATA External Hard Disk Drive Lay-Flat Docking Station with USB 3.0 & eSATA interfaces." }, - { "067b", "2303", "PL2303 Serial Port / Mobile Action MA-8910P" }, - { "067b", "2305", "PL2305 Parallel Port" }, - { "067b", "2306", "Raylink Bridge Controller" }, - { "067b", "2307", "PL2307 USB-ATAPI4 Bridge" }, - { "067b", "2313", "FITEL PHS U Cable Adaptor" }, - { "067b", "2315", "Flash Disk Embedded Hub" }, - { "067b", "2316", "Flash Disk Security Device" }, - { "067b", "2317", "Mass Storage Device" }, - { "067b", "2501", "PL2501 USB-USB Bridge (USB 2.0)" }, - { "067b", "2506", "Kaser 8gB micro hard drive" }, - { "067b", "2507", "PL2507 Hi-speed USB to IDE bridge controller" }, - { "067b", "2515", "Flash Disk Embedded Hub" }, - { "067b", "2517", "Flash Disk Mass Storage Device" }, - { "067b", "2528", "Storage device (8gB thumb drive)" }, - { "067b", "2571", "LG Electronics GE24LU21" }, - { "067b", "25a1", "PL25A1 Host-Host Bridge" }, - { "067b", "2773", "PL2773 SATAII bridge controller" }, - { "067b", "3400", "Hi-Speed Flash Disk with TruePrint AES3400" }, - { "067b", "3500", "Hi-Speed Flash Disk with TruePrint AES3500" }, - { "067b", "3507", "PL3507 ATAPI6 Bridge" }, - { "067b", "aaa0", "Prolific Pharos" }, - { "067b", "aaa2", "PL2303 Serial Adapter (IODATA USB-RSAQ3)" }, - { "067b", "aaa3", "PL2303x Serial Adapter" }, - { "067c", "1001", "Siemens SpeedStream 100MBps Ethernet" }, - { "067c", "1022", "Siemens SpeedStream 1022 802.11b Adapter" }, - { "067c", "1023", "SpeedStream Wireless" }, - { "067c", "4020", "SpeedStream 4020 ATM/ADSL Installer" }, - { "067c", "4031", "Efficient ADSL Modem" }, - { "067c", "4032", "SpeedStream 4031 ATM/ADSL Installer" }, - { "067c", "4033", "SpeedStream 4031 ATM/ADSL Installer" }, - { "067c", "4060", "Alcatel Speedstream 4060 ADSL Modem" }, - { "067c", "4062", "Efficient Networks 4060 Loader" }, - { "067c", "5667", "Efficient Networks Virtual Bus for ADSL Modem" }, - { "067c", "c031", "SpeedStream 4031 ATM/ADSL Installer" }, - { "067c", "c032", "SpeedStream 4031 ATM/ADSL Installer" }, - { "067c", "c033", "SpeedStream 4031 ATM/ADSL Installer" }, - { "067c", "c060", "SpeedStream 4060 Miniport ATM/ADSL Adapter" }, - { "067c", "d667", "Efficient Networks Virtual Bus for ADSL Modem" }, - { "067c", "e240", "Speedstream Ethernet Adapter E240" }, - { "067c", "e540", "Speedstream Ethernet Adapter E240" }, - { "067e", "0801", "HID Keyboard, Barcode scanner" }, - { "067e", "0803", "VCP, Barcode scanner" }, - { "067e", "0805", "VCP + UVC, Barcode scanner" }, - { "067e", "1001", "Mobile Computer" }, - { "067f", "4552", "DSL-200 ADSL Modem" }, - { "067f", "6542", "DSL Modem" }, - { "067f", "6549", "DSL Modem" }, - { "067f", "7541", "DSL Modem" }, - { "0680", "0002", "Arowana Optical Wheel Mouse MSOP-01" }, - { "0681", "0001", "Dect Base" }, - { "0681", "0002", "Gigaset 3075 Passive ISDN" }, - { "0681", "0005", "ID-Mouse with Fingerprint Reader" }, - { "0681", "0012", "I-Gate 802.11b Adapter" }, - { "0681", "001b", "WLL013" }, - { "0681", "001d", "Hipath 1000" }, - { "0681", "0022", "Gigaset SX353 ISDN" }, - { "0681", "0026", "DECT Data - Gigaset M34" }, - { "0681", "002b", "A-100-I ADSL Modem" }, - { "0681", "002e", "ADSL Router_S-141" }, - { "0681", "0034", "GSM module MC35/ES75 USB Modem" }, - { "0681", "3c06", "54g USB Network Adapter" }, - { "0685", "7000", "HSDPA Modem" }, - { "0686", "2001", "PagePro 4110W" }, - { "0686", "2004", "PagePro 1200W" }, - { "0686", "2005", "Magicolor 2300 DL" }, - { "0686", "3001", "PagePro 4100" }, - { "0686", "3005", "PagePro 1250E" }, - { "0686", "3006", "PagePro 1250W" }, - { "0686", "3009", "Magicolor 2300W" }, - { "0686", "300b", "PagePro 1350W" }, - { "0686", "300c", "PagePro 1300W" }, - { "0686", "301b", "Develop D 1650iD" }, - { "0686", "3023", "Develop D 2050iD" }, - { "0686", "302e", "Develop D 1650iD PCL" }, - { "0686", "3034", "Develop D 2050iD PCL" }, - { "0686", "4001", "Dimage 2300" }, - { "0686", "4003", "Dimage 2330 Zoom Camera" }, - { "0686", "4004", "Dimage Scan Elite II AF-2920 (2888)" }, - { "0686", "4005", "Minolta DiMAGE E201 Mass Storage Device" }, - { "0686", "4006", "Dimage 7 Camera" }, - { "0686", "4007", "Dimage S304 Camera" }, - { "0686", "4008", "Dimage 5 Camera" }, - { "0686", "4009", "Dimage X Camera" }, - { "0686", "400a", "Dimage S404 Camera" }, - { "0686", "400b", "Dimage 7i Camera" }, - { "0686", "400c", "Dimage F100 Camera" }, - { "0686", "400d", "Dimage Scan Dual III AF-2840 (2889)" }, - { "0686", "400e", "Dimage Scan Elite 5400 (2890)" }, - { "0686", "400f", "Dimage 7Hi Camera" }, - { "0686", "4010", "Dimage Xi Camera" }, - { "0686", "4011", "Dimage F300 Camera" }, - { "0686", "4012", "Dimage F200 Camera" }, - { "0686", "4014", "Dimage S414 Camera" }, - { "0686", "4015", "Dimage XT Camera [storage]" }, - { "0686", "4016", "Dimage XT Camera [remote mode]" }, - { "0686", "4017", "Dimage E223" }, - { "0686", "4018", "Dimage Z1 Camera" }, - { "0686", "4019", "Dimage A1 Camera [remote mode]" }, - { "0686", "401a", "Dimage A1 Camera [storage]" }, - { "0686", "401c", "Dimage X20 Camera" }, - { "0686", "401e", "Dimage E323 Camera" }, - { "068e", "00d3", "OEM 3 axis 5 button joystick" }, - { "068e", "00e2", "HFX OEM Joystick" }, - { "068e", "00f0", "Multi-Function Panel" }, - { "068e", "00f1", "Pro Throttle" }, - { "068e", "00f2", "Flight Sim Pedals" }, - { "068e", "00f3", "Fighterstick" }, - { "068e", "00f4", "Combatstick" }, - { "068e", "00fa", "Ch Throttle Quadrant" }, - { "068e", "00ff", "Flight Sim Yoke" }, - { "068e", "0500", "GameStick 3D" }, - { "068e", "0501", "CH Pro Pedals" }, - { "068e", "0504", "F-16 Combat Stick" }, - { "068f", "c00d", "MEK-6500" }, - { "0693", "0002", "FlashGate SmartMedia Card Reader" }, - { "0693", "0003", "FlashGate CompactFlash Card Reader" }, - { "0693", "0005", "FlashGate" }, - { "0693", "0006", "SM PCCard R/W and SPD" }, - { "0693", "0007", "FlashGate ME (Authenticated)" }, - { "0693", "000a", "SDCard/MMC Reader/Writer" }, - { "0694", "0001", "Mindstorms Tower" }, - { "0694", "0002", "Mindstorms NXT" }, - { "0694", "0005", "Mindstorms EV3" }, - { "0694", "0006", "Mindstorms EV3 Firmware Update" }, - { "0698", "1786", "1300ex Monitor" }, - { "0698", "2003", "CTX M730V built in Camera" }, - { "0698", "9999", "VLxxxx Monitor+Hub" }, - { "0699", "0347", "AFG 3022B" }, - { "0699", "0365", "TDS 2004B" }, - { "0699", "036a", "TDS 2024B" }, - { "069a", "0001", "VC010 Webcam [pwc]" }, - { "069a", "0303", "Cable Modem" }, - { "069a", "0311", "ADSL Router Remote NDIS Device" }, - { "069a", "0318", "Remote NDIS Device" }, - { "069a", "0319", "220V Remote NDIS Device" }, - { "069a", "0320", "IEEE 802.11b Wireless LAN Card" }, - { "069a", "0321", "Dynalink WLL013 / Compex WLU11A 802.11b Adapter" }, - { "069a", "0402", "Scientific Atlanta WebSTAR 100 & 200 series Cable Modem" }, - { "069a", "0811", "BT Virtual Bus for Helium" }, - { "069a", "0821", "BT Voyager 1010 802.11b Adapter" }, - { "069a", "4402", "Scientific Atlanta WebSTAR 2000 series Cable Modem" }, - { "069a", "4403", "Scientific Atlanta WebSTAR 300 series Cable Modem" }, - { "069a", "4501", "Scientific-Atlanta WebSTAR 2000 series Cable Modem" }, - { "069b", "0704", "DCM245 Cable Modem" }, - { "069b", "0705", "THG540K Cable Modem" }, - { "069b", "0709", "Lyra PDP2424" }, - { "069b", "070c", "MP3 Player" }, - { "069b", "070d", "MP3 Player" }, - { "069b", "070e", "MP3 Player" }, - { "069b", "070f", "RCA Lyra RD1071 MP3 Player" }, - { "069b", "0731", "Lyra M200E256" }, - { "069b", "0761", "RCA H100A" }, - { "069b", "0778", "PEARL USB Device" }, - { "069b", "2220", "RCA Kazoo RD1000 MP3 Player" }, - { "069b", "300a", "RCA Lyra MP3 Player" }, - { "069b", "3012", "MP3 Player" }, - { "069b", "3013", "MP3 Player" }, - { "069b", "5557", "RCA CDS6300" }, - { "069d", "0001", "Satellite Receiver Device" }, - { "069d", "0002", "Satellite Device" }, - { "069e", "0005", "Marx CryptoBox v1.2" }, - { "069f", "0010", "Tornado Speakerphone FaxModem 56.0" }, - { "069f", "0011", "Tornado Speakerphone FaxModem 56.0" }, - { "069f", "1000", "ADT VvBus for CopperJet" }, - { "069f", "1004", "CopperJet 821 RouterPlus" }, - { "06a2", "0033", "USB Mouse" }, - { "06a3", "0006", "Cyborg Gold Joystick" }, - { "06a3", "0109", "P880 Pad" }, - { "06a3", "0160", "ST290 Pro" }, - { "06a3", "0200", "Racing Wheel" }, - { "06a3", "0201", "Adrenalin Gamepad" }, - { "06a3", "0241", "Xbox Adrenalin Gamepad" }, - { "06a3", "0255", "X52 Flight Controller" }, - { "06a3", "040b", "P990 Dual Analog Pad" }, - { "06a3", "040c", "P2900 Wireless Pad" }, - { "06a3", "0422", "ST90 Joystick" }, - { "06a3", "0460", "ST290 Pro Flight Stick" }, - { "06a3", "0463", "ST290" }, - { "06a3", "0464", "Cyborg Evo" }, - { "06a3", "0471", "Cyborg Graphite Stick" }, - { "06a3", "0501", "R100 Sports Wheel" }, - { "06a3", "0502", "ST200 Stick" }, - { "06a3", "0506", "R220 Digital Wheel" }, - { "06a3", "051e", "Cyborg Digital II Stick" }, - { "06a3", "052d", "P750 Gamepad" }, - { "06a3", "053c", "X45 Flight Controller" }, - { "06a3", "053f", "X36F Flightstick" }, - { "06a3", "056c", "P2000 Tilt Pad" }, - { "06a3", "056f", "P2000 Tilt Pad" }, - { "06a3", "05d2", "PC Dash 2" }, - { "06a3", "075c", "X52 Flight Controller" }, - { "06a3", "0762", "Saitek X52 Pro Flight Control System" }, - { "06a3", "0763", "Pro Flight Rudder Pedals" }, - { "06a3", "0764", "Flight Pro Combat Rudder" }, - { "06a3", "0805", "R440 Force Wheel" }, - { "06a3", "0b4e", "Pro Flight Backlit Information Panel" }, - { "06a3", "0bac", "Pro Flight Yoke" }, - { "06a3", "0c2d", "Pro Flight Quadrant" }, - { "06a3", "0d05", "Pro Flight Radio Panel" }, - { "06a3", "0d06", "Flight Pro Multi Panel" }, - { "06a3", "0d67", "Pro Flight Switch Panel" }, - { "06a3", "1003", "GM2 Action Pad" }, - { "06a3", "1009", "Action Pad" }, - { "06a3", "100a", "SP550 Pad and Joystick Combo" }, - { "06a3", "100b", "SP550 Pad" }, - { "06a3", "1509", "P3000 Wireless Pad" }, - { "06a3", "1589", "P3000 Wireless Pad" }, - { "06a3", "2541", "X45 Flight Controller" }, - { "06a3", "3509", "P3000 RF GamePad" }, - { "06a3", "353e", "Cyborg Evo Wireless" }, - { "06a3", "3589", "P3000 Wireless Pad" }, - { "06a3", "35be", "Cyborg Evo" }, - { "06a3", "5509", "P3000 Wireless Pad" }, - { "06a3", "712c", "Pro Flight Yoke integrated hub" }, - { "06a3", "8000", "Gamers' Keyboard" }, - { "06a3", "801e", "Cyborg 3D Digital Stick II" }, - { "06a3", "8020", "Eclipse Keyboard" }, - { "06a3", "8021", "Eclipse II Keyboard" }, - { "06a3", "802d", "P750 Pad" }, - { "06a3", "803f", "X36 Flight Controller" }, - { "06a3", "806f", "P2000 Tilt Pad" }, - { "06a3", "80c0", "Pro Gamer Command Unit" }, - { "06a3", "80c1", "Cyborg Command Pad Unit" }, - { "06a3", "a2ae", "Pro Flight Instrument Panel" }, - { "06a3", "a502", "Gaming Mouse" }, - { "06a3", "f518", "P3200 Rumble Force Game Pad" }, - { "06a3", "f51a", "P3600" }, - { "06a3", "ff04", "R440 Force Wheel" }, - { "06a3", "ff0c", "Cyborg Force Rumble Pad" }, - { "06a3", "ff0d", "P2600 Rumble Force Pad" }, - { "06a3", "ff12", "Cyborg 3D Force Stick" }, - { "06a3", "ff17", "ST 330 Rumble Force Stick" }, - { "06a3", "ff52", "Cyborg 3D Rumble Force Joystick" }, - { "06a3", "ffb5", "Cyborg Evo Force Joystick" }, - { "06a5", "0000", "Typhoon Webcam 100k [nw8000]" }, - { "06a5", "d001", "ProLink DS3303u Webcam" }, - { "06a5", "d800", "Chicony TwinkleCam" }, - { "06a5", "d820", "Wize Media 1000" }, - { "06a8", "0042", "SignatureGem 1X5 Pad" }, - { "06a8", "0043", "SignatureGem 1X5-HID Pad" }, - { "06a9", "0005", "WireSpeed Dual Connect Modem" }, - { "06a9", "0006", "WireSpeed Dual Connect Modem" }, - { "06a9", "000a", "WireSpeed Dual Connect Modem" }, - { "06a9", "000b", "WireSpeed Dual Connect Modem" }, - { "06a9", "000e", "A90-211WG-01 802.11g Adapter [Intersil ISL3887]" }, - { "06b9", "0120", "SpeedTouch 120g 802.11g Wireless Adapter [Intersil ISL3886]" }, - { "06b9", "0121", "SpeedTouch 121g Wireless Dongle" }, - { "06b9", "2001", "SPEED TOUCH Card" }, - { "06b9", "4061", "SpeedTouch ISDN or ADSL Modem" }, - { "06b9", "4062", "SpeedTouch ISDN or ADSL router" }, - { "06b9", "a5a5", "DynaMiTe Modem" }, - { "06bc", "000b", "Okipage 14ex Printer" }, - { "06bc", "0027", "Okipage 14e" }, - { "06bc", "00f7", "OKI B4600 Mono Printer" }, - { "06bc", "015e", "OKIPOS 411/412 POS Printer" }, - { "06bc", "01c9", "OKI B430 Mono Printer" }, - { "06bc", "01db", "MC860 Multifunction Printer" }, - { "06bc", "01dc", "MC860 Multifunction Printer" }, - { "06bc", "01dd", "MC860 Multifunction Printer" }, - { "06bc", "01de", "MC860 Multifunction Printer" }, - { "06bc", "01df", "CX2633 Multifunction Printer" }, - { "06bc", "01e0", "ES8460 Multifunction Printer" }, - { "06bc", "020b", "OKI ES4140 Mono Printer" }, - { "06bc", "021f", "ES8460 Multifunction Printer" }, - { "06bc", "026f", "MC351 Multifunction Printer" }, - { "06bc", "0270", "MC351 Multifunction Printer" }, - { "06bc", "0271", "MC351 Multifunction Printer" }, - { "06bc", "0272", "MC351 Multifunction Printer" }, - { "06bc", "0273", "MC351 Multifunction Printer" }, - { "06bc", "0274", "ES3451 Multifunction Printer" }, - { "06bc", "0275", "MC351 Multifunction Printer" }, - { "06bc", "0276", "MC351 Multifunction Printer" }, - { "06bc", "0277", "MC351 Multifunction Printer" }, - { "06bc", "0278", "MC351 Multifunction Printer" }, - { "06bc", "0279", "MC361 Multifunction Printer" }, - { "06bc", "027a", "MC361 Multifunction Printer" }, - { "06bc", "027b", "MC361 Multifunction Printer" }, - { "06bc", "027c", "MC361 Multifunction Printer" }, - { "06bc", "027d", "MC361 Multifunction Printer" }, - { "06bc", "027e", "ES3461 Multifunction Printer" }, - { "06bc", "027f", "MC361 Multifunction Printer" }, - { "06bc", "0280", "MC361 Multifunction Printer" }, - { "06bc", "0281", "MC361 Multifunction Printer" }, - { "06bc", "0282", "MC361 Multifunction Printer" }, - { "06bc", "0283", "MC561 Multifunction Printer" }, - { "06bc", "0284", "MC561 Multifunction Printer" }, - { "06bc", "0285", "MC561 Multifunction Printer" }, - { "06bc", "0286", "MC561 Multifunction Printer" }, - { "06bc", "0287", "CX2731 Multifunction Printer" }, - { "06bc", "0288", "ES5461 Multifunction Printer" }, - { "06bc", "0289", "ES5461 Multifunction Printer" }, - { "06bc", "028a", "MC561 Multifunction Printer" }, - { "06bc", "028b", "MC561 Multifunction Printer" }, - { "06bc", "028c", "MC561 Multifunction Printer" }, - { "06bc", "02b4", "MC861 Multifunction Printer" }, - { "06bc", "02b5", "ES8461 Multifunction Printer" }, - { "06bc", "02b6", "MC851 Multifunction Printer" }, - { "06bc", "02b7", "ES8451 Multifunction Printer" }, - { "06bc", "02bb", "OKI PT390 POS Printer" }, - { "06bc", "02bd", "MB461 Multifunction Printer" }, - { "06bc", "02be", "MB471 Multifunction Printer" }, - { "06bc", "02bf", "MB491 Multifunction Printer" }, - { "06bc", "02ca", "ES4161 Multifunction Printer" }, - { "06bc", "02cb", "ES4191 Multifunction Printer" }, - { "06bc", "02d4", "MPS4200mb Multifunction Printer" }, - { "06bc", "02e7", "MC352 Multifunction Printer" }, - { "06bc", "02e8", "MC362 Multifunction Printer" }, - { "06bc", "02e9", "MC562 Multifunction Printer" }, - { "06bc", "02ea", "ES3452 Multifunction Printer" }, - { "06bc", "02eb", "ES5462 Multifunction Printer" }, - { "06bc", "02ee", "MB451 Multifunction Printer" }, - { "06bc", "0383", "MC563 Multifunction Printer" }, - { "06bc", "0a91", "B2500MFP (printer+scanner)" }, - { "06bc", "3801", "B6100 Laser Printer" }, - { "06bd", "0001", "SnapScan 1212U" }, - { "06bd", "0002", "SnapScan 1236U" }, - { "06bd", "0100", "SnapScan Touch" }, - { "06bd", "0101", "SNAPSCAN ELITE" }, - { "06bd", "0200", "ScanMaker 8700" }, - { "06bd", "02bf", "DUOSCAN f40" }, - { "06bd", "0400", "CL30" }, - { "06bd", "0401", "Mass Storage" }, - { "06bd", "0403", "ePhoto CL18 Camera" }, - { "06bd", "0404", "ePhoto CL20 Camera" }, - { "06bd", "2061", "SnapScan 1212U (?)" }, - { "06bd", "208d", "Snapscan e40" }, - { "06bd", "208f", "SnapScan e50" }, - { "06bd", "2091", "SnapScan e20" }, - { "06bd", "2093", "SnapScan e10" }, - { "06bd", "2095", "SnapScan e25" }, - { "06bd", "2097", "SnapScan e26" }, - { "06bd", "20fd", "SnapScan e52" }, - { "06bd", "20ff", "SnapScan e42" }, - { "06be", "0800", "Optimedia Camera" }, - { "06be", "1005", "Dazzle DPVM! (1005)" }, - { "06be", "d001", "P35U Camera Capture" }, - { "06c2", "0030", "PhidgetRFID" }, - { "06c2", "0031", "RFID reader" }, - { "06c2", "0038", "4-Motor PhidgetServo v3.0" }, - { "06c2", "0039", "1-Motor PhidgetServo v3.0" }, - { "06c2", "003a", "8-Motor PhidgetAvancedServo" }, - { "06c2", "0040", "PhidgetInterface Kit 0-0-4" }, - { "06c2", "0044", "PhidgetInterface Kit 0-16-16" }, - { "06c2", "0045", "PhidgetInterface Kit 8-8-8" }, - { "06c2", "0048", "PhidgetStepper (Under Development)" }, - { "06c2", "0049", "PhidgetTextLED Ver 1.0" }, - { "06c2", "004a", "PhidgetLED Ver 1.0" }, - { "06c2", "004b", "PhidgetEncoder Ver 1.0" }, - { "06c2", "0051", "PhidgetInterface Kit 0-5-7 (Custom)" }, - { "06c2", "0052", "PhidgetTextLCD" }, - { "06c2", "0053", "PhidgetInterfaceKit 0-8-8" }, - { "06c2", "0058", "PhidgetMotorControl Ver 1.0" }, - { "06c2", "0070", "PhidgetTemperatureSensor Ver 1.0" }, - { "06c2", "0071", "PhidgetAccelerometer Ver 1.0" }, - { "06c2", "0072", "PhidgetWeightSensor Ver 1.0" }, - { "06c2", "0073", "PhidgetHumiditySensor" }, - { "06c2", "0074", "PhidgetPHSensor" }, - { "06c2", "0075", "PhidgetGyroscope" }, - { "06c9", "0005", "Monitor Control" }, - { "06c9", "0007", "Monitor Control" }, - { "06c9", "0009", "Monitor Control" }, - { "06ca", "2003", "uSCSI" }, - { "06cb", "0001", "TouchPad" }, - { "06cb", "0002", "Integrated TouchPad" }, - { "06cb", "0003", "cPad" }, - { "06cb", "0005", "Touchpad/FPS" }, - { "06cb", "0006", "TouchScreen" }, - { "06cb", "0007", "USB Styk" }, - { "06cb", "0008", "WheelPad" }, - { "06cb", "0009", "Composite TouchPad and TrackPoint" }, - { "06cb", "000e", "HID Device" }, - { "06cb", "0010", "Wireless TouchPad" }, - { "06cb", "0013", "DisplayPad" }, - { "06cb", "009a", "Metallica MIS Touch Fingerprint Reader" }, - { "06cb", "00a2", "Metallica MOH Touch Fingerprint Reader" }, - { "06cb", "00bd", "Prometheus MIS Touch Fingerprint Reader" }, - { "06cb", "2970", "touchpad" }, - { "06cc", "0101", "Cable Modem" }, - { "06cc", "0102", "Cable Modem" }, - { "06cc", "0103", "Cable Modem" }, - { "06cc", "0104", "Cable Modem" }, - { "06cc", "0304", "Cable Modem" }, - { "06cd", "0101", "USA-28 PDA [no firmware]" }, - { "06cd", "0102", "USA-28X PDA [no firmware]" }, - { "06cd", "0103", "USA-19 PDA [no firmware]" }, - { "06cd", "0104", "PDA [prerenum]" }, - { "06cd", "0105", "USA-18X PDA [no firmware]" }, - { "06cd", "0106", "USA-19W PDA [no firmware]" }, - { "06cd", "0107", "USA-19 PDA" }, - { "06cd", "0108", "USA-19W PDA" }, - { "06cd", "0109", "USA-49W serial adapter [no firmware]" }, - { "06cd", "010a", "USA-49W serial adapter" }, - { "06cd", "010b", "USA-19Qi serial adapter [no firmware]" }, - { "06cd", "010c", "USA-19Qi serial adapter" }, - { "06cd", "010d", "USA-19Q serial Adapter (no firmware)" }, - { "06cd", "010e", "USA-19Q serial Adapter" }, - { "06cd", "010f", "USA-28 PDA" }, - { "06cd", "0110", "USA-28Xb PDA" }, - { "06cd", "0111", "USA-18 serial Adapter" }, - { "06cd", "0112", "USA-18X PDA" }, - { "06cd", "0113", "USA-28Xb PDA [no firmware]" }, - { "06cd", "0114", "USA-28Xa PDA [no firmware]" }, - { "06cd", "0115", "USA-28Xa PDA" }, - { "06cd", "0116", "USA-18XA serial Adapter (no firmware)" }, - { "06cd", "0117", "USA-18XA serial Adapter" }, - { "06cd", "0118", "USA-19QW PDA [no firmware]" }, - { "06cd", "0119", "USA-19QW PDA" }, - { "06cd", "011a", "USA-49Wlc serial adapter [no firmware]" }, - { "06cd", "011b", "MPR Serial Preloader (MPRQI)" }, - { "06cd", "011c", "MPR Serial (MPRQI)" }, - { "06cd", "011d", "MPR Serial Preloader (MPRQ)" }, - { "06cd", "011e", "MPR Serial (MPRQ)" }, - { "06cd", "0121", "USA-19hs serial adapter" }, - { "06cd", "012a", "USA-49Wlc serial adapter" }, - { "06cd", "0201", "UIA-10 Digital Media Remote [Cypress AN2131SC]" }, - { "06cd", "0202", "UIA-11 Digital Media Remote" }, - { "06ce", "8311", "COM-1(USB)H" }, - { "06cf", "1010", "PanoCam 10" }, - { "06cf", "1012", "PanoCam 12/12X" }, - { "06d0", "0622", "LapLink Gold USB-USB Bridge [net1080]" }, - { "06d3", "0284", "FX-USB-AW/-BD RS482 Converters" }, - { "06d3", "0380", "CP8000D Port" }, - { "06d3", "0381", "CP770D Port" }, - { "06d3", "0385", "CP900D Port" }, - { "06d3", "0387", "CP980D Port" }, - { "06d3", "038b", "CP3020D Port" }, - { "06d3", "038c", "CP900DW(ID) Port" }, - { "06d3", "0393", "CP9500D/DW Port" }, - { "06d3", "0394", "CP9000D/DW Port" }, - { "06d3", "0398", "P93D" }, - { "06d3", "03a1", "CP9550D/DW Port" }, - { "06d3", "03a5", "CP9550DW-S" }, - { "06d3", "03a9", "CP-9600DW" }, - { "06d3", "03aa", "CP3020DA" }, - { "06d3", "03ad", "CP-9800D/DW" }, - { "06d3", "03ae", "CP-9800DW-S" }, - { "06d3", "0f10", "Hori/Namco FlightStick 2" }, - { "06d3", "3b10", "P95D" }, - { "06d3", "3b21", "CP-9810D/DW" }, - { "06d3", "3b30", "CP-D70DW / CP-D707DW" }, - { "06d3", "3b31", "CP-K60DW-S" }, - { "06d3", "3b36", "CP-D80DW" }, - { "06d3", "3b50", "CP-W5000DW" }, - { "06d3", "3b60", "CP-D90DW" }, - { "06d3", "3b80", "CP-M1" }, - { "06d5", "4000", "Japanese Keyboard" }, - { "06d6", "0025", "Gamepad" }, - { "06d6", "0026", "Predator TH 400 Gamepad" }, - { "06d6", "002d", "Trust PowerC@m 350FT" }, - { "06d6", "002e", "Trust PowerC@m 350FS" }, - { "06d6", "0030", "Trust 710 LCD POWERC@M ZOOM - MSD" }, - { "06d6", "0031", "Trust 610/710 LCD POWERC@M ZOOM" }, - { "06d6", "003a", "Trust PowerC@m 770Z (mass storage mode)" }, - { "06d6", "003b", "Trust PowerC@m 770Z (webcam mode)" }, - { "06d6", "003c", "Trust 910z PowerC@m" }, - { "06d6", "003f", "Trust 735S POWERC@M ZOOM, WDM DSC Bulk Driver" }, - { "06d6", "0050", "Trust 738AV LCD PV Digital Camera" }, - { "06d6", "0062", "TRUST 782AV LCD P. V. Video Capture" }, - { "06d6", "0066", "TRUST Digital PCTV and Movie Editor" }, - { "06d6", "0067", "Trust 350FS POWERC@M FLASH" }, - { "06d6", "006b", "TRUST AUDIO VIDEO EDITOR" }, - { "06da", "0002", "UPS" }, - { "06da", "0003", "1300VA UPS" }, - { "06dc", "0012", "Scan 1200c Scanner" }, - { "06dc", "0014", "Prolink Winscan Pro 2448U" }, - { "06e0", "0319", "MT9234ZBA-USB MultiModem ZBA" }, - { "06e0", "f101", "MT5634ZBA-USB MultiModemUSB (old firmware)" }, - { "06e0", "f103", "MT5634MU MultiMobileUSB" }, - { "06e0", "f104", "MT5634ZBA-USB MultiModemUSB (new firmware)" }, - { "06e0", "f107", "MT5634ZBA-USB-V92 MultiModemUSB" }, - { "06e0", "f120", "MT9234ZBA-USB-CDC-ACM-XR MultiModem ZBA CDC-ACM-XR" }, - { "06e1", "0008", "UBS-10BT Ethernet [klsi]" }, - { "06e1", "0009", "UBS-10BT Ethernet" }, - { "06e1", "0833", "Mass Storage Device" }, - { "06e1", "a155", "FM Radio Receiver/Instant FM Music (RDX-155-EF)" }, - { "06e1", "a160", "Instant Video-To-Go RDX-160 (no firmware)" }, - { "06e1", "a161", "Instant Video-To-Go RDX-160" }, - { "06e1", "a190", "Instand VCD Capture" }, - { "06e1", "a191", "Instant VideoXpress" }, - { "06e1", "a337", "Mini DigitalTV" }, - { "06e1", "a701", "DVD Xpress" }, - { "06e1", "a708", "saa7114H video input card (Instant VideoMPX)" }, - { "06e1", "b337", "Mini DigitalTV" }, - { "06e1", "b701", "DVD Xpress B" }, - { "06e6", "0200", "Internet Phone" }, - { "06e6", "0201", "Internet Phone" }, - { "06e6", "0202", "Composite Device" }, - { "06e6", "0203", "Internet Phone" }, - { "06e6", "0210", "Composite Device" }, - { "06e6", "0211", "Internet Phone" }, - { "06e6", "0212", "Internet Phone" }, - { "06e6", "031c", "Internet Phone" }, - { "06e6", "031d", "Internet Phone" }, - { "06e6", "031e", "Internet Phone" }, - { "06e6", "3200", "Composite Device" }, - { "06e6", "3201", "Internet Phone" }, - { "06e6", "3202", "Composite Device" }, - { "06e6", "3203", "Composite Device" }, - { "06e6", "7200", "Composite Device" }, - { "06e6", "7210", "Composite Device" }, - { "06e6", "7250", "Composite Device" }, - { "06e6", "825c", "Internet Phone" }, - { "06e6", "831c", "Internet Phone" }, - { "06e6", "831d", "Composite Device" }, - { "06e6", "831e", "Composite Device" }, - { "06e6", "b200", "Composite Device" }, - { "06e6", "b201", "Composite Device" }, - { "06e6", "b202", "Internet Phone" }, - { "06e6", "b210", "Internet Phone" }, - { "06e6", "b211", "Composite Device" }, - { "06e6", "b212", "Composite Device" }, - { "06e6", "b250", "Composite Device" }, - { "06e6", "b251", "Internet Phone" }, - { "06e6", "b252", "Internet Phone" }, - { "06e6", "c200", "Internet Phone" }, - { "06e6", "c201", "Internet Phone" }, - { "06e6", "c202", "Composite Device" }, - { "06e6", "c203", "Internet Phone" }, - { "06e6", "c210", "Personal PhoneGateway" }, - { "06e6", "c211", "Personal PhoneGateway" }, - { "06e6", "c212", "Personal PhoneGateway" }, - { "06e6", "c213", "PPG Device" }, - { "06e6", "c25c", "Composite Device" }, - { "06e6", "c290", "PPG Device" }, - { "06e6", "c291", "PPG Device" }, - { "06e6", "c292", "PPG Device" }, - { "06e6", "c293", "Personal PhoneGateway" }, - { "06e6", "c31c", "Composite Device" }, - { "06e6", "c39c", "Personal PhoneGateway" }, - { "06e6", "c39d", "PPG Device" }, - { "06e6", "c39e", "PPG Device" }, - { "06e6", "c39f", "PPG Device" }, - { "06e6", "c700", "Internet Phone" }, - { "06e6", "c701", "Internet Phone" }, - { "06e6", "c702", "Composite Device" }, - { "06e6", "c703", "Internet Phone" }, - { "06e6", "c710", "VoIP Combo Device" }, - { "06e6", "c711", "VoIP Combo" }, - { "06e6", "c712", "VoIP Combo Device" }, - { "06e6", "c713", "VoIP Combo Device" }, - { "06e6", "cf00", "Composite Device" }, - { "06e6", "cf01", "Internet Phone" }, - { "06e6", "cf02", "Internet Phone" }, - { "06e6", "cf03", "Composite Device" }, - { "06e6", "d210", "Personal PhoneGateway" }, - { "06e6", "d211", "PPG Device" }, - { "06e6", "d212", "PPG Device" }, - { "06e6", "d213", "Personal PhoneGateway" }, - { "06e6", "d700", "Composite Device" }, - { "06e6", "d701", "Composite Device" }, - { "06e6", "d702", "Internet Phone" }, - { "06e6", "d703", "Composite Device" }, - { "06e6", "d710", "VoIP Combo" }, - { "06e6", "d711", "VoIP Combo Device" }, - { "06e6", "d712", "VoIP Combo" }, - { "06e6", "d713", "VoIP Combo" }, - { "06e6", "df00", "Composite Device" }, - { "06e6", "df01", "Composite Device" }, - { "06e6", "df02", "Internet Phone" }, - { "06e6", "df03", "Internet Phone" }, - { "06e6", "f200", "Internet Phone" }, - { "06e6", "f201", "Internet Phone" }, - { "06e6", "f202", "Composite Device" }, - { "06e6", "f203", "Composite Device" }, - { "06e6", "f210", "Internet Phone" }, - { "06e6", "f250", "Composite Device" }, - { "06e6", "f252", "Internet Phone" }, - { "06e6", "f310", "Internet Phone" }, - { "06e6", "f350", "Composite Device" }, - { "06ea", "0001", "NetCom Roadster II 56k" }, - { "06ea", "0002", "Roadster II 56k" }, - { "06f0", "de01", "DualCam Video Camera" }, - { "06f0", "de02", "DualCam Still Camera" }, - { "06f1", "a011", "SonicPort" }, - { "06f1", "a021", "SonicPort Optical" }, - { "06f2", "0011", "KVM Switch Keyboard" }, - { "06f7", "0003", "USB->Din 4 Adaptor" }, - { "06f8", "3002", "Hercules Blog Webcam" }, - { "06f8", "3004", "Hercules Classic Silver" }, - { "06f8", "3005", "Hercules Dualpix Exchange" }, - { "06f8", "3007", "Hercules Dualpix Chat and Show" }, - { "06f8", "3020", "Hercules Webcam EC300" }, - { "06f8", "a300", "Dual Analog Leader GamePad" }, - { "06f8", "b000", "Hercules DJ Console" }, - { "06f8", "b121", "Hercules P32 DJ" }, - { "06f8", "c000", "Hercules Muse Pocket" }, - { "06f8", "d002", "Hercules DJ Console" }, - { "06f8", "e000", "HWGUSB2-54 WLAN" }, - { "06f8", "e010", "HWGUSB2-54-LB" }, - { "06f8", "e020", "HWGUSB2-54V2-AP" }, - { "06f8", "e031", "Hercules HWNUm-300 Wireless N mini [Realtek RTL8191SU]" }, - { "06f8", "e032", "HWGUm-54 [Hercules Wireless G Ultra Mini Key]" }, - { "06f8", "e033", "Hercules HWNUp-150 802.11n Wireless N Pico [Realtek RTL8188CUS]" }, - { "06fd", "0101", "Audio Device" }, - { "06fd", "0102", "Audio Device" }, - { "06fd", "0201", "2-piece Audio Device" }, - { "0707", "0100", "2202 Ethernet [klsi]" }, - { "0707", "0200", "2202 Ethernet [pegasus]" }, - { "0707", "0201", "EZ Connect USB Ethernet" }, - { "0707", "ee04", "SMCWUSB32 802.11b Wireless LAN Card" }, - { "0707", "ee06", "SMC2862W-G v1 EZ Connect 802.11g Adapter [Intersil ISL3886]" }, - { "0707", "ee13", "SMC2862W-G v2 EZ Connect 802.11g Adapter [Intersil ISL3887]" }, - { "0708", "047e", "USB-1284 BRIDGE" }, - { "070a", "4002", "Bluetooth Device" }, - { "070a", "4003", "Bluetooth Device" }, - { "0710", "0001", "WhiteHeat (fake ID)" }, - { "0710", "8001", "WhiteHeat" }, - { "0711", "0100", "Hub" }, - { "0711", "0180", "IRXpress Infrared Device" }, - { "0711", "0181", "IRXpress Infrared Device" }, - { "0711", "0200", "BAY-3U1S1P Serial Port" }, - { "0711", "0210", "MCT1S Serial Port" }, - { "0711", "0230", "MCT-232 Serial Port" }, - { "0711", "0231", "PS/2 Mouse Port" }, - { "0711", "0232", "Serial On Port" }, - { "0711", "0240", "PS/2 to USB Converter" }, - { "0711", "0260", "PS/2 Keyboard and Mouse" }, - { "0711", "0300", "BAY-3U1S1P Parallel Port" }, - { "0711", "0302", "Parallel Port" }, - { "0711", "0900", "SVGA Adapter" }, - { "0711", "5001", "Trigger UV-002BD[Startech USBVGAE]" }, - { "0711", "5100", "Magic Control Technology Corp. (USB2VGA dongle)" }, - { "0714", "0003", "ADB converter" }, - { "0718", "0002", "SuperDisk 120MB" }, - { "0718", "0003", "SuperDisk 120MB (Authenticated)" }, - { "0718", "0060", "Flash Drive" }, - { "0718", "0061", "Flash Drive" }, - { "0718", "0062", "Flash Drive" }, - { "0718", "0063", "Swivel Flash Drive" }, - { "0718", "0064", "Flash Drive" }, - { "0718", "0065", "Flash Drive" }, - { "0718", "0066", "Flash Drive" }, - { "0718", "0067", "Flash Drive" }, - { "0718", "0068", "Flash Drive" }, - { "0718", "0084", "Flash Drive Mini" }, - { "0718", "043c", "Flash drive 16GB [Nano Pro]" }, - { "0718", "0582", "Revo Flash Drive" }, - { "0718", "0622", "TDK Trans-It 4GB" }, - { "0718", "0624", "TDK Trans-It 16GB" }, - { "0718", "1120", "RDX External dock (redbud)" }, - { "0718", "4006", "8x Slim DVD Multi-Format Recorder External" }, - { "0718", "d000", "Disc Stakka CD/DVD Manager" }, - { "071b", "0002", "DTI-56362-USB Digital Interface Unit" }, - { "071b", "0101", "Audio4-USB DSP Data Acquisition Unit" }, - { "071b", "0184", "Archos 2 8GB EM184RB" }, - { "071b", "0201", "Audio4-5410 DSP Data Acquisition Unit" }, - { "071b", "0301", "SB-USB JTAG Emulator" }, - { "071b", "3203", "Rockchip Media Player" }, - { "071b", "32bb", "Music Mediatouch" }, - { "071d", "1000", "Diva 2.01 S/T [PSB2115F]" }, - { "071d", "1003", "Diva ISDN 2.0" }, - { "071d", "1005", "Diva ISDN 4.0 [HFC-S]" }, - { "071d", "2000", "Teledat Surf" }, - { "0720", "8001", "LJ-V7001" }, - { "0723", "0002", "Palladia 300/400 Adsl Modem" }, - { "0729", "1000", "USC-1000 Serial Port" }, - { "072f", "0001", "AC1030-based SmartCard Reader" }, - { "072f", "0008", "ACR 80 Smart Card Reader" }, - { "072f", "0100", "AET65" }, - { "072f", "0101", "AET65" }, - { "072f", "0102", "AET62" }, - { "072f", "0103", "AET62" }, - { "072f", "0901", "ACR1281U-C4 (BSI)" }, - { "072f", "1000", "PLDT Drive" }, - { "072f", "1001", "PLDT Drive" }, - { "072f", "2011", "ACR88U" }, - { "072f", "2100", "ACR128U" }, - { "072f", "2200", "ACR122U" }, - { "072f", "220a", "ACR1281U-C5 (BSI)" }, - { "072f", "220c", "ACR1283 Bootloader" }, - { "072f", "220f", "ACR1281U-C2 (qPBOC)" }, - { "072f", "2211", "ACR1261 1S Dual Reader" }, - { "072f", "2214", "ACR1222 1SAM PICC Reader" }, - { "072f", "2215", "ACR1281 2S CL Reader" }, - { "072f", "221a", "ACR1251U-A1" }, - { "072f", "221b", "ACR1251U-C" }, - { "072f", "2224", "ACR1281 1S Dual Reader" }, - { "072f", "222b", "ACR1222U-C8" }, - { "072f", "222c", "ACR1283L-D2" }, - { "072f", "222d", "[OEM Reader]" }, - { "072f", "222e", "ACR123U" }, - { "072f", "2242", "ACR1251 1S Dual Reader" }, - { "072f", "8002", "AET63 BioTRUSTKey" }, - { "072f", "8003", "ACR120" }, - { "072f", "8103", "ACR120" }, - { "072f", "8201", "APG8201" }, - { "072f", "8900", "ACR89U-A1" }, - { "072f", "8901", "ACR89U-A2" }, - { "072f", "8902", "ACR89U-A3" }, - { "072f", "9000", "ACR38 AC1038-based Smart Card Reader" }, - { "072f", "9006", "CryptoMate" }, - { "072f", "90cc", "ACR38 SmartCard Reader" }, - { "072f", "90ce", "[OEM Reader]" }, - { "072f", "90cf", "ACR38 SAM Smart Card Reader" }, - { "072f", "90d0", "PertoSmart EMV - Card Reader" }, - { "072f", "90d2", "ACR83U" }, - { "072f", "90d8", "ACR3801" }, - { "072f", "90db", "CryptoMate64" }, - { "072f", "b000", "ACR3901U" }, - { "072f", "b100", "ACR39U" }, - { "072f", "b101", "ACR39K" }, - { "072f", "b102", "ACR39T" }, - { "072f", "b103", "ACR39F" }, - { "072f", "b104", "ACR39U-SAM" }, - { "072f", "b106", "ACOS5T2" }, - { "072f", "b200", "ACOS5T1" }, - { "072f", "b301", "ACR32-A1" }, - { "0731", "0528", "SonyEricsson DCU-11 Cable" }, - { "0733", "0101", "Digital Video Camera" }, - { "0733", "0110", "VQ110 Video Camera" }, - { "0733", "0401", "CS330 Webcam" }, - { "0733", "0402", "M-318B Webcam" }, - { "0733", "0430", "Intel Pro Share Webcam" }, - { "0733", "0630", "VQ630 Dual Mode Digital Camera(Bulk)" }, - { "0733", "0631", "Hercules Dualpix" }, - { "0733", "0780", "Smart Cam Deluxe(composite)" }, - { "0733", "1310", "Epsilon 1.3/Jenoptik JD C1.3/UMAX AstraPix 470 (mass storage mode)" }, - { "0733", "1311", "Epsilon 1.3/Jenoptik JD C1.3/UMAX AstraPix 470 (PC Cam mode)" }, - { "0733", "1314", "Mercury 2.1MEG Deluxe Classic Cam" }, - { "0733", "2211", "Jenoptik jdc 21 LCD Camera" }, - { "0733", "2221", "Mercury Digital Pro 3.1p" }, - { "0733", "3261", "Concord 3045 spca536a Camera" }, - { "0733", "3281", "Cyberpix S550V" }, - { "0734", "0001", "560V Modem" }, - { "0734", "0002", "Lasat 560V Modem" }, - { "0734", "043a", "DVS Audio" }, - { "0734", "043b", "3DeMon USB Capture" }, - { "0735", "2100", "ISDN Adapter" }, - { "0735", "2101", "ISDN Adapter" }, - { "0735", "6694", "ISDNlink 128K" }, - { "0735", "c541", "ISDN TA 280" }, - { "0738", "2215", "X-55 Rhino Stick" }, - { "0738", "2237", "V.1 Stick" }, - { "0738", "4506", "Wireless Controller" }, - { "0738", "4507", "XBox Device" }, - { "0738", "4516", "Control Pad" }, - { "0738", "4520", "Control Pad Pro" }, - { "0738", "4522", "LumiCON" }, - { "0738", "4526", "Control Pad Pro" }, - { "0738", "4530", "Universal MC2 Racing Wheel and Pedals" }, - { "0738", "4536", "MicroCON" }, - { "0738", "4540", "Beat Pad" }, - { "0738", "4556", "Lynx Wireless Controller" }, - { "0738", "4566", "XBox Device" }, - { "0738", "4576", "XBox Device" }, - { "0738", "4586", "MicroCON Wireless Controller" }, - { "0738", "4588", "Blaster" }, - { "0738", "45ff", "Beat Pad" }, - { "0738", "4716", "Wired Xbox 360 Controller" }, - { "0738", "4718", "Street Fighter IV FightStick SE for Xbox 360" }, - { "0738", "4726", "Xbox 360 Controller" }, - { "0738", "4728", "Street Fighter IV FightPad for Xbox 360" }, - { "0738", "4730", "MC2 Racing Wheel for Xbox 360" }, - { "0738", "4736", "MicroCON for Xbox 360" }, - { "0738", "4738", "Street Fighter IV Wired Controller for Xbox 360" }, - { "0738", "4740", "Beat Pad for Xbox 360" }, - { "0738", "4743", "Beat Pad Pro" }, - { "0738", "4758", "Arcade Game Stick" }, - { "0738", "4a01", "FightStick TE 2 for Xbox One" }, - { "0738", "6040", "Beat Pad Pro" }, - { "0738", "8818", "Street Fighter IV Arcade FightStick (PS3)" }, - { "0738", "9871", "Portable Drum Kit" }, - { "0738", "a109", "S.T.R.I.K.E.7 Keyboard" }, - { "0738", "a215", "X-55 Rhino Throttle" }, - { "0738", "b726", "Modern Warfare 2 Controller for Xbox 360" }, - { "0738", "b738", "Marvel VS Capcom 2 TE FightStick for Xbox 360" }, - { "0738", "beef", "Joytech Neo SE Advanced Gamepad" }, - { "0738", "cb02", "Saitek Cyborg Rumble Pad" }, - { "0738", "cb03", "Saitek P3200 Rumble Pad" }, - { "0738", "cb29", "Saitek Aviator Stick AV8R02" }, - { "0738", "f738", "Super Street Fighter IV FightStick TE S for Xbox 360" }, - { "073a", "2230", "infrared dongle for remote" }, - { "073c", "0305", "Pole Display (PC305-3415 2 x 20 Line Display)" }, - { "073c", "0322", "Pole Display (PC322-3415 2 x 20 Line Display)" }, - { "073c", "0324", "Pole Display (LB324-USB 4 x 20 Line Display)" }, - { "073c", "0330", "Pole Display (P330-3415 2 x 20 Line Display)" }, - { "073c", "0424", "Pole Display (SP324-4415 4 x 20 Line Display)" }, - { "073c", "0450", "Pole Display (L450-USB Graphic Line Display)" }, - { "073c", "0505", "Pole Display (SPC505-3415 2 x 20 Line Display)" }, - { "073c", "0522", "Pole Display (SPC522-3415 2 x 20 Line Display)" }, - { "073c", "0624", "Pole Display (SP324-3415 4 x 20 Line Display)" }, - { "073d", "0000", "SmartKey" }, - { "073d", "0005", "Crypto Token" }, - { "073d", "0007", "CryptoIdentity CCID" }, - { "073d", "0025", "SmartKey 3" }, - { "073d", "0c00", "Pocket Reader" }, - { "073d", "0d00", "StarSign Bio Token 3.0 EU" }, - { "073e", "0301", "Game Pad" }, - { "0742", "2008", "ISDN TA [HFC-S]" }, - { "0742", "2009", "ISDN TA [HFC-S]" }, - { "0742", "200a", "ISDN TA [HFC-S]" }, - { "0746", "4700", "Integra MZA-4.7" }, - { "0746", "5500", "SE-U55 Audio Device" }, - { "074d", "3553", "Composite USB-Device" }, - { "074d", "3554", "Composite USB-Device" }, - { "074d", "3556", "Composite USB-Device" }, - { "074e", "0001", "PS/2 Adapter" }, - { "074e", "0002", "PS/2 Adapter" }, - { "0757", "0a00", "SUN Adapter" }, - { "075b", "0001", "Kick-off! Watchdog" }, - { "0763", "0115", "O2 / KeyRig 25" }, - { "0763", "0117", "Trigger Finger" }, - { "0763", "0119", "MidAir" }, - { "0763", "0150", "M-Audio Uno" }, - { "0763", "0160", "M-Audio 1x1" }, - { "0763", "0192", "M-Audio Keystation 88es" }, - { "0763", "0193", "ProKeys 88" }, - { "0763", "0194", "ProKeys 88sx" }, - { "0763", "0195", "Oxygen 8 v2" }, - { "0763", "0196", "Oxygen 49" }, - { "0763", "0197", "Oxygen 61" }, - { "0763", "0198", "Axiom 25" }, - { "0763", "0199", "Axiom 49" }, - { "0763", "019a", "Axiom 61" }, - { "0763", "019b", "KeyRig 49" }, - { "0763", "019c", "KeyStudio" }, - { "0763", "1001", "MidiSport 2x2" }, - { "0763", "1002", "MidiSport 2x2" }, - { "0763", "1003", "MidiSport 2x2" }, - { "0763", "1010", "MidiSport 1x1" }, - { "0763", "1011", "MidiSport 1x1" }, - { "0763", "1014", "M-Audio Keystation Loader" }, - { "0763", "1015", "M-Audio Keystation" }, - { "0763", "1020", "Midisport 4x4" }, - { "0763", "1021", "MidiSport 4x4" }, - { "0763", "1030", "M-Audio MIDISPORT 8x8" }, - { "0763", "1031", "MidiSport 8x8/s Loader" }, - { "0763", "1033", "MidiSport 8x8/s" }, - { "0763", "1040", "M-Audio MidiSport 2x4 Loader" }, - { "0763", "1041", "M-Audio MidiSport 2x4" }, - { "0763", "1110", "MidiSport 1x1" }, - { "0763", "2001", "M Audio Quattro" }, - { "0763", "2002", "M Audio Duo" }, - { "0763", "2003", "M Audio AudioPhile" }, - { "0763", "2004", "M-Audio MobilePre" }, - { "0763", "2006", "M-Audio Transit" }, - { "0763", "2007", "M-Audio Sonica Theater" }, - { "0763", "2008", "M-Audio Ozone" }, - { "0763", "200d", "M-Audio OmniStudio" }, - { "0763", "200f", "M-Audio MobilePre" }, - { "0763", "2010", "M-Audio Fast Track" }, - { "0763", "2012", "M-Audio Fast Track Pro" }, - { "0763", "2013", "M-Audio JamLab" }, - { "0763", "2015", "M-Audio RunTime DFU" }, - { "0763", "2016", "M-Audio RunTime DFU" }, - { "0763", "2019", "M-Audio Ozone Academic" }, - { "0763", "201a", "M-Audio Micro" }, - { "0763", "201b", "M-Audio RunTime DFU" }, - { "0763", "201d", "M-Audio Producer" }, - { "0763", "2024", "M-Audio Fast Track MKII" }, - { "0763", "2080", "M-Audio Fast Track Ultra" }, - { "0763", "2081", "M-Audio RunTime DFU / Fast Track Ultra 8R" }, - { "0763", "2803", "M-Audio Audiophile DFU" }, - { "0763", "2804", "M-Audio MobilePre DFU" }, - { "0763", "2806", "M-Audio Transit DFU" }, - { "0763", "2815", "M-Audio DFU" }, - { "0763", "2816", "M-Audio DFU" }, - { "0763", "281b", "M-Audio DFU" }, - { "0763", "2880", "M-Audio DFU" }, - { "0763", "2881", "M-Audio DFU" }, - { "0764", "0005", "Cyber Power UPS" }, - { "0764", "0501", "CP1500 AVR UPS" }, - { "0764", "0601", "PR1500LCDRT2U UPS" }, - { "0765", "5001", "Huey PRO Colorimeter" }, - { "0765", "5010", "X-Rite Pantone Color Sensor" }, - { "0765", "5020", "i1 Display Pro" }, - { "0765", "6003", "ColorMunki Smile" }, - { "0765", "d094", "X-Rite DTP94 [Quato Silver Haze Pro]" }, - { "0766", "0017", "Packard Bell Carbon" }, - { "0766", "001b", "Packard Bell Go" }, - { "0766", "0204", "TopSpeed Cyberlink Remote Control" }, - { "0768", "0006", "Camtel Technology USB TV Genie Pro FM Model TVB330" }, - { "0768", "0023", "eHome Infrared Receiver" }, - { "0769", "11f2", "EP-9001-g 802.11g 54M WLAN Adapter" }, - { "0769", "11f3", "RT2570" }, - { "0769", "11f7", "802.11g 54M WLAN Adapter" }, - { "0769", "31f3", "RT2573" }, - { "076b", "0596", "CardMan 2020" }, - { "076b", "1021", "CardMan 1021" }, - { "076b", "1221", "CardMan 1221" }, - { "076b", "1784", "CardMan 6020" }, - { "076b", "3021", "CardMan 3021 / 3121" }, - { "076b", "3022", "CardMan 3121 (HID Technologies)" }, - { "076b", "3610", "CardMan 3620" }, - { "076b", "3621", "CardMan 3621" }, - { "076b", "3821", "CardMan 3821" }, - { "076b", "4321", "CardMan 4321" }, - { "076b", "5121", "CardMan 5121" }, - { "076b", "5125", "CardMan 5125" }, - { "076b", "5321", "CardMan 5321" }, - { "076b", "5340", "CardMan 5021 CL" }, - { "076b", "6622", "CardMan 6121" }, - { "076b", "a011", "CCID Smart Card Reader Keyboard" }, - { "076b", "a021", "CCID Smart Card Reader" }, - { "076b", "a022", "CardMan Smart@Link" }, - { "076b", "c000", "CardMan 3x21 CS" }, - { "076b", "c001", "CardMan 5121 CS" }, - { "076c", "0204", "CD7220 Communications Port" }, - { "076c", "0302", "RP-600" }, - { "0771", "4455", "OMC45III" }, - { "0771", "ae0f", "OMC45III" }, - { "0779", "0133", "FUSB307B" }, - { "0779", "0134", "FUSB308B" }, - { "077b", "08be", "BEFCMU10 v4 Cable Modem" }, - { "077b", "2219", "WUSB11 V2.6 802.11b Adapter" }, - { "077b", "2226", "USB200M 100baseTX Adapter" }, - { "077b", "2227", "Network Everywhere NWU11B" }, - { "077c", "0005", "NEC Keyboard" }, - { "077d", "0223", "IMic Audio In/Out" }, - { "077d", "0405", "iMate, ADB Adapter" }, - { "077d", "0410", "PowerMate" }, - { "077d", "041a", "PowerWave" }, - { "077d", "04aa", "SoundKnob" }, - { "077d", "07af", "iMic" }, - { "077d", "1016", "AirClick" }, - { "077d", "627a", "Radio SHARK" }, - { "077e", "008a", "NetLink Compact MPI/Profibus adapter" }, - { "077e", "0160", "EDICblue" }, - { "077e", "0220", "VAS5054A" }, - { "0780", "1202", "ORGA 900 Smart Card Terminal Virtual Com Port" }, - { "0780", "1302", "ORGA 6000 Smart Card Terminal Virtual Com Port" }, - { "0780", "1303", "ORGA 6000 Smart Card Terminal USB RNDIS" }, - { "0780", "df55", "ORGA 900/6000 Smart Card Terminal DFU" }, - { "0781", "0001", "SDDR-05a ImageMate CompactFlash Reader" }, - { "0781", "0002", "SDDR-31 ImageMate II CompactFlash Reader" }, - { "0781", "0005", "SDDR-05b (CF II) ImageMate CompactFlash Reader" }, - { "0781", "0100", "ImageMate SDDR-12" }, - { "0781", "0200", "SDDR-09 (SSFDC) ImageMate SmartMedia Reader [eusb]" }, - { "0781", "0400", "SecureMate SD/MMC Reader" }, - { "0781", "0621", "SDDR-86 Imagemate 6-in-1 Reader" }, - { "0781", "0720", "Sansa C200 series in recovery mode" }, - { "0781", "0729", "Sansa E200 series in recovery mode" }, - { "0781", "0810", "SDDR-75 ImageMate CF-SM Reader" }, - { "0781", "0830", "ImageMate CF/MMC/SD Reader" }, - { "0781", "1234", "Cruzer Mini Flash Drive" }, - { "0781", "5150", "SDCZ2 Cruzer Mini Flash Drive (thin)" }, - { "0781", "5151", "Cruzer Micro Flash Drive" }, - { "0781", "5153", "Cruzer Flash Drive" }, - { "0781", "5204", "Cruzer Crossfire" }, - { "0781", "5402", "U3 Cruzer Micro" }, - { "0781", "5406", "Cruzer Micro U3" }, - { "0781", "5408", "Cruzer Titanium U3" }, - { "0781", "540e", "Cruzer Contour Flash Drive" }, - { "0781", "5530", "Cruzer" }, - { "0781", "5567", "Cruzer Blade" }, - { "0781", "556b", "Cruzer Edge" }, - { "0781", "556c", "Ultra" }, - { "0781", "556d", "Memory Vault" }, - { "0781", "5571", "Cruzer Fit" }, - { "0781", "5575", "Cruzer Glide" }, - { "0781", "5576", "Cruzer Facet" }, - { "0781", "5577", "Cruzer Pop (8GB)" }, - { "0781", "557d", "Cruzer Force" }, - { "0781", "5580", "SDCZ80 Flash Drive" }, - { "0781", "5581", "Ultra" }, - { "0781", "5583", "Ultra Fit" }, - { "0781", "5588", "Extreme Pro" }, - { "0781", "5589", "SD8SB8U512G[Extreme 500]" }, - { "0781", "558c", "Extreme Portable SSD" }, - { "0781", "5590", "Ultra Dual" }, - { "0781", "5591", "Ultra Flair" }, - { "0781", "5e10", "Encrypted" }, - { "0781", "6100", "Ultra II SD Plus 2GB" }, - { "0781", "6500", "uSSD 5000" }, - { "0781", "7100", "Cruzer Mini" }, - { "0781", "7101", "Pen Flash" }, - { "0781", "7102", "Cruzer Mini" }, - { "0781", "7103", "Cruzer Mini" }, - { "0781", "7104", "Cruzer Micro Mini 256MB Flash Drive" }, - { "0781", "7105", "Cruzer Mini" }, - { "0781", "7106", "Cruzer Mini" }, - { "0781", "7112", "Cruzer Micro 128MB Flash Drive" }, - { "0781", "7113", "Cruzer Micro 256MB Flash Drive" }, - { "0781", "7114", "Cruzer Mini" }, - { "0781", "7115", "Cruzer Mini" }, - { "0781", "7301", "Sansa e100 series (mtp)" }, - { "0781", "7302", "Sansa e100 series (msc)" }, - { "0781", "7400", "Sansa M200 series (mtp)" }, - { "0781", "7401", "Sansa M200 series (msc)" }, - { "0781", "7420", "Sansa E200 series (mtp)" }, - { "0781", "7421", "Sansa E200 Series (msc)" }, - { "0781", "7422", "Sansa E200 series v2 (mtp)" }, - { "0781", "7423", "Sansa E200 series v2 (msc)" }, - { "0781", "7430", "Sansa M200 series" }, - { "0781", "7431", "Sansa M200 series V4 (msc)" }, - { "0781", "7432", "Sansa Clip (mtp)" }, - { "0781", "7433", "Sansa Clip (msc)" }, - { "0781", "7434", "Sansa Clip V2 (mtp)" }, - { "0781", "7435", "Sansa Clip V2 (msc)" }, - { "0781", "7450", "Sansa C250" }, - { "0781", "7451", "Sansa C240" }, - { "0781", "7460", "Sansa Express" }, - { "0781", "7480", "Sansa Connect" }, - { "0781", "7481", "Sansa Connect (in recovery mode)" }, - { "0781", "74b0", "Sansa View (msc)" }, - { "0781", "74b1", "Sansa View (mtp)" }, - { "0781", "74c0", "Sansa Fuze (mtp)" }, - { "0781", "74c1", "Sansa Fuze (msc)" }, - { "0781", "74c2", "Sansa Fuze V2 (mtp)" }, - { "0781", "74c3", "Sansa Fuze V2 (msc)" }, - { "0781", "74d0", "Sansa Clip+ (mtp)" }, - { "0781", "74d1", "Sansa Clip+ (msc)" }, - { "0781", "74e5", "Sansa Clip Zip" }, - { "0781", "8181", "Pen Flash" }, - { "0781", "8183", "Hi-Speed Mass Storage Device" }, - { "0781", "8185", "SDCZ2 Cruzer Mini Flash Drive (older, thick)" }, - { "0781", "8888", "Card Reader" }, - { "0781", "8889", "SDDR-88 Imagemate 8-in-1 Reader" }, - { "0781", "8919", "Card Reader" }, - { "0781", "8989", "ImageMate 12-in-1 Reader" }, - { "0781", "9191", "ImageMate CF" }, - { "0781", "9219", "Card Reader" }, - { "0781", "9292", "ImageMate CF Reader/Writer" }, - { "0781", "9393", "ImageMate SD-MMC" }, - { "0781", "9595", "ImageMate xD-SM" }, - { "0781", "9797", "ImageMate MS-PRO" }, - { "0781", "9919", "Card Reader" }, - { "0781", "9999", "SDDR-99 5-in-1 Reader" }, - { "0781", "a7c1", "Storage device (SD card reader)" }, - { "0781", "a7e8", "SDDR-113 MicroMate SDHC Reader" }, - { "0781", "b2b3", "SDDR-103 MobileMate SD+ Reader" }, - { "0781", "b2b5", "SDDR-104 MobileMate SD+ Reader" }, - { "0781", "b4b5", "SDDR-89 V4 ImageMate 12-in-1 Reader" }, - { "0781", "b6b7", "SDDR-99 V4 ImageMate 5-in-1 Reader" }, - { "0781", "b6ba", "CF SDDR-289" }, - { "0781", "cfc9", "SDDR-489 ImageMate Pro Reader" }, - { "0783", "0003", "LTC31 SmartCard Reader" }, - { "0783", "0006", "LTC31v2" }, - { "0783", "0009", "KBR36" }, - { "0783", "0010", "LTC32" }, - { "0784", "0100", "Vivicam 2655" }, - { "0784", "1310", "Vivicam 3305" }, - { "0784", "1688", "Vivicam 3665" }, - { "0784", "1689", "Gateway DC-M42/Labtec DC-505/Vivitar Vivicam 3705" }, - { "0784", "2620", "AOL Photocam Plus" }, - { "0784", "2888", "Polaroid DC700" }, - { "0784", "3330", "Nytec ND-3200 Camera" }, - { "0784", "4300", "Traveler D1" }, - { "0784", "5260", "Werlisa Sport PX 100 / JVC GC-A33 Camera" }, - { "0784", "5300", "Pretec dc530" }, - { "0785", "0001", "MN128mini-V ISDN TA" }, - { "0785", "0003", "MN128mini-J ISDN TA" }, - { "0789", "0026", "LHD Device" }, - { "0789", "0033", "DVD Multi-plus unit LDR-H443SU2" }, - { "0789", "0063", "LDR Device" }, - { "0789", "0064", "LDR-R Device" }, - { "0789", "00b3", "DVD Multi-plus unit LDR-H443U2" }, - { "0789", "00cc", "LHD Device" }, - { "0789", "0105", "LAN-TX/U1H2 10/100 Ethernet Adapter [pegasus II]" }, - { "0789", "010c", "Realtek RTL8187 Wireless 802.11g 54Mbps Network Adapter" }, - { "0789", "0160", "LAN-GTJ/U2A" }, - { "0789", "0162", "LAN-WN22/U2 Wireless LAN Adapter" }, - { "0789", "0163", "LAN-WN12/U2 Wireless LAN Adapter" }, - { "0789", "0164", "LAN-W150/U2M Wireless LAN Adapter" }, - { "0789", "0166", "LAN-W300N/U2 Wireless LAN Adapter" }, - { "0789", "0168", "LAN-W150N/U2 Wireless LAN Adapter" }, - { "0789", "0170", "LAN-W300AN/U2 Wireless LAN Adapter" }, - { "078b", "0010", "Driving UGCI" }, - { "078b", "0020", "Flying UGCI" }, - { "078b", "0030", "Fighting UGCI" }, - { "078c", "0090", "Tablet Adapter" }, - { "078c", "0100", "Tablet Adapter" }, - { "078c", "0200", "Tablet Adapter" }, - { "078c", "0300", "Tablet Adapter" }, - { "078c", "0400", "Digitizer (Whiteboard)" }, - { "0797", "6801", "Flatbed Scanner" }, - { "0797", "6802", "InkJet Color Printer" }, - { "0797", "8001", "SmartCam" }, - { "0797", "801a", "Typhoon StyloCam" }, - { "0797", "801c", "Meade Binoculars/Camera" }, - { "0797", "8901", "ScanHex SX-35a" }, - { "0797", "8909", "ScanHex SX-35b" }, - { "0797", "8911", "ScanHex SX-35c" }, - { "0798", "0001", "Braille Voyager" }, - { "0798", "0640", "BC640" }, - { "0798", "0680", "BC680" }, - { "0799", "7651", "Programming Unit" }, - { "079b", "0024", "MSO300/MSO301 Fingerprint Sensor" }, - { "079b", "0026", "MSO350/MSO351 Fingerprint Sensor & SmartCard Reader" }, - { "079b", "0027", "USB-Serial Controller" }, - { "079b", "002f", "Mobile" }, - { "079b", "0030", "Mobile Communication Device" }, - { "079b", "0042", "Mobile" }, - { "079b", "0047", "CBM/MSO1300 Fingerprint Sensor" }, - { "079b", "004a", "XG-760A 802.11bg" }, - { "079b", "004b", "Wi-Fi 11g adapter" }, - { "079b", "0052", "MSO1350 Fingerprint Sensor & SmartCard Reader" }, - { "079b", "0056", "Agfa AP1100 Photo Printer" }, - { "079b", "005d", "Mobile Mass Storage" }, - { "079b", "0062", "XG-76NA 802.11bg" }, - { "079b", "0078", "Laser Pro Monochrome MFP" }, - { "079d", "0201", "GamePort Adapter" }, - { "07a1", "d952", "Palladio USB V.92 Modem" }, - { "07a6", "07c2", "AN986A Ethernet" }, - { "07a6", "0986", "AN986 Pegasus Ethernet" }, - { "07a6", "8266", "Infineon WildCard-USB Wireless LAN Adapter" }, - { "07a6", "8511", "ADM8511 Pegasus II Ethernet" }, - { "07a6", "8513", "ADM8513 Pegasus II Ethernet" }, - { "07a6", "8515", "ADM8515 Pegasus II Ethernet" }, - { "07aa", "0001", "Ether USB-T Ethernet [klsi]" }, - { "07aa", "0004", "FEther USB-TX Ethernet [pegasus]" }, - { "07aa", "000c", "WirelessLAN USB-11" }, - { "07aa", "000d", "FEther USB-TXS" }, - { "07aa", "0011", "Wireless LAN USB-11 mini" }, - { "07aa", "0012", "Stick-11 802.11b Adapter" }, - { "07aa", "0017", "FEther USB2-TX" }, - { "07aa", "0018", "Wireless LAN USB-11 mini 2" }, - { "07aa", "001a", "ULUSB-11 Key" }, - { "07aa", "001c", "CG-WLUSB2GT 802.11g Wireless Adapter [Intersil ISL3880]" }, - { "07aa", "0020", "CG-WLUSB2GTST 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "07aa", "002e", "CG-WLUSB2GPX [Ralink RT2571W]" }, - { "07aa", "002f", "CG-WLUSB2GNL" }, - { "07aa", "0031", "CG-WLUSB2GS 802.11bg [Atheros AR5523]" }, - { "07aa", "003c", "CG-WLUSB2GNL" }, - { "07aa", "003f", "CG-WLUSB300AGN" }, - { "07aa", "0041", "CG-WLUSB300GNS" }, - { "07aa", "0042", "CG-WLUSB300GNM" }, - { "07aa", "0043", "CG-WLUSB300N rev A2 [Realtek RTL8192U]" }, - { "07aa", "0047", "CG-WLUSBNM" }, - { "07aa", "0051", "CG-WLUSB300NM" }, - { "07aa", "7613", "Stick-11 V2 802.11b Adapter" }, - { "07aa", "9601", "FEther USB-TXC" }, - { "07ab", "fc01", "IDE bridge" }, - { "07ab", "fc02", "Cable II USB-2" }, - { "07ab", "fc03", "USB2-IDE IDE bridge" }, - { "07ab", "fc77", "Quattro 3.0" }, - { "07ab", "fcd6", "Freecom HD Classic" }, - { "07ab", "fcf6", "DataBar" }, - { "07ab", "fcf8", "Freecom Classic SL Network Drive" }, - { "07ab", "fcfe", "Hard Drive 80GB" }, - { "07af", "0004", "SCSI-DB25 SCSI Bridge [shuttle]" }, - { "07af", "0005", "SCSI-HD50 SCSI Bridge [shuttle]" }, - { "07af", "0006", "CameraMate SmartMedia and CompactFlash Card Reader [eusb/shuttle]" }, - { "07af", "fc01", "Freecom USB-IDE" }, - { "07b0", "0001", "ISDN TA" }, - { "07b0", "0002", "ISDN TA128 Plus" }, - { "07b0", "0003", "ISDN TA128 Deluxe" }, - { "07b0", "0005", "ISDN TA128 SE" }, - { "07b0", "0006", "ISDN TA 128 [HFC-S]" }, - { "07b0", "0007", "ISDN TA [HFC-S]" }, - { "07b0", "0008", "ISDN TA" }, - { "07b2", "0100", "SURFboard Voice over IP Cable Modem" }, - { "07b2", "0900", "SURFboard Gateway" }, - { "07b2", "0950", "SURFboard SBG950 Gateway" }, - { "07b2", "1000", "SURFboard SBG1000 Gateway" }, - { "07b2", "4100", "SurfBoard SB4100 Cable Modem" }, - { "07b2", "4200", "SurfBoard SB4200 Cable Modem" }, - { "07b2", "4210", "SurfBoard 4210 Cable Modem" }, - { "07b2", "4220", "SURFboard SB4220 Cable Modem" }, - { "07b2", "4500", "CG4500 Communications Gateway" }, - { "07b2", "450b", "CG4501 Communications Gateway" }, - { "07b2", "450e", "CG4500E Communications Gateway" }, - { "07b2", "5100", "SurfBoard SB5100 Cable Modem" }, - { "07b2", "5101", "SurfBoard SB5101 Cable Modem" }, - { "07b2", "5120", "SurfBoard SB5120 Cable Modem (RNDIS)" }, - { "07b2", "5121", "Surfboard 5121 Cable Modem" }, - { "07b2", "6002", "MTR7000 Cable Tuning Adapter" }, - { "07b2", "7030", "WU830G 802.11bg Wireless Adapter [Envara WiND512]" }, - { "07b3", "0001", "OpticPro 1212U Scanner" }, - { "07b3", "0003", "Scanner" }, - { "07b3", "0010", "OpticPro U12 Scanner" }, - { "07b3", "0011", "OpticPro U24 Scanner" }, - { "07b3", "0013", "OpticPro UT12 Scanner" }, - { "07b3", "0014", "Scanner" }, - { "07b3", "0015", "OpticPro U24 Scanner" }, - { "07b3", "0017", "OpticPro UT12/16/24 Scanner" }, - { "07b3", "0204", "Scanner" }, - { "07b3", "0400", "OpticPro 1248U Scanner" }, - { "07b3", "0401", "OpticPro 1248U Scanner #2" }, - { "07b3", "0403", "OpticPro U16B Scanner" }, - { "07b3", "0404", "Scanner" }, - { "07b3", "0405", "A8 Namecard-s Controller" }, - { "07b3", "0406", "A8 Namecard-D Controller" }, - { "07b3", "0410", "Scanner" }, - { "07b3", "0412", "Scanner" }, - { "07b3", "0413", "OpticSlim 1200 Scanner" }, - { "07b3", "0601", "OpticPro ST24 Scanner" }, - { "07b3", "0800", "OpticPro ST48 Scanner" }, - { "07b3", "0807", "OpticFilm 7200 scanner" }, - { "07b3", "0900", "OpticBook 3600 Scanner" }, - { "07b3", "090c", "OpticBook 3600 Plus Scanner" }, - { "07b3", "0a06", "TVcam VD100" }, - { "07b3", "0b00", "SmartPhoto F50" }, - { "07b3", "0c00", "OpticPro ST64 Scanner" }, - { "07b3", "0c03", "OpticPro ST64+ Scanner" }, - { "07b3", "0c04", "Optic Film 7200i scanner" }, - { "07b3", "0c0c", "PL806 Scanner" }, - { "07b3", "0c26", "OpticBook 4600 Scanner" }, - { "07b3", "0c2b", "Mobile Office D428 Scanner" }, - { "07b3", "0e08", "OpticBook A300 Scanner" }, - { "07b3", "1300", "OpticBook 3800 Scanner" }, - { "07b3", "1301", "OpticBook 4800 Scanner" }, - { "07b3", "130f", "Bookreader v200" }, - { "07b4", "0100", "Camedia C-2100/C-3000 Ultra Zoom Camera" }, - { "07b4", "0102", "Camedia E-10/C-220/C-50 Camera" }, - { "07b4", "0105", "Camedia C-310Z/C-700/C-750UZ/C-755/C-765UZ/C-3040/C-4000/C-5050Z/D-560/C-3020Z Zoom Camera" }, - { "07b4", "0109", "C-370Z/C-500Z/D-535Z/X-450" }, - { "07b4", "010a", "MAUSB-10 xD and SmartMedia Card Reader" }, - { "07b4", "0112", "MAUSB-100 xD Card Reader" }, - { "07b4", "0113", "Mju 500 / Stylus Digital Camera (PTP)" }, - { "07b4", "0114", "C-350Z Camera" }, - { "07b4", "0118", "Mju Mini Digital/Mju Digital 500 Camera / Stylus 850 SW" }, - { "07b4", "0125", "Tough TG-1 Camera" }, - { "07b4", "0126", "VR340/D750 Digital Camera" }, - { "07b4", "0184", "P-S100 port" }, - { "07b4", "0202", "Foot Switch RS-26" }, - { "07b4", "0203", "Digital Voice Recorder DW-90" }, - { "07b4", "0206", "Digital Voice Recorder DS-330" }, - { "07b4", "0207", "Digital Voice Recorder & Camera W-10" }, - { "07b4", "0209", "Digital Voice Recorder DM-20" }, - { "07b4", "020b", "Digital Voice Recorder DS-4000" }, - { "07b4", "020d", "Digital Voice Recorder VN-240PC" }, - { "07b4", "0211", "Digital Voice Recorder DS-2300" }, - { "07b4", "0218", "Foot Switch RS-28" }, - { "07b4", "0244", "Digital Voice Recorder VN-8500PC" }, - { "07b4", "024f", "Digital Voice Recorder DS-7000" }, - { "07b4", "0280", "m:robe 100" }, - { "07b4", "0295", "Digital Voice Recorder VN-541PC" }, - { "07b5", "0017", "Joystick" }, - { "07b5", "0213", "Thrustmaster Firestorm Digital 3 Gamepad" }, - { "07b5", "0312", "Gamepad" }, - { "07b5", "9902", "GamePad" }, - { "07b8", "110c", "XX1" }, - { "07b8", "1201", "IEEE 802.11b Adapter" }, - { "07b8", "200c", "XX2" }, - { "07b8", "2573", "Wireless LAN Card" }, - { "07b8", "2770", "802.11n/b/g Mini Wireless LAN USB2.0 Adapter" }, - { "07b8", "2870", "802.11n/b/g Wireless LAN USB2.0 Adapter" }, - { "07b8", "3070", "802.11n/b/g Mini Wireless LAN USB2.0 Adapter" }, - { "07b8", "3071", "802.11n/b/g Mini Wireless LAN USB2.0 Adapter" }, - { "07b8", "3072", "802.11n/b/g Mini Wireless LAN USB2.0 Adapter" }, - { "07b8", "4000", "DU-E10 Ethernet [klsi]" }, - { "07b8", "4002", "DU-E100 Ethernet [pegasus]" }, - { "07b8", "4003", "1/10/100 Ethernet Adapter" }, - { "07b8", "4004", "XX4" }, - { "07b8", "4007", "XX5" }, - { "07b8", "400b", "XX6" }, - { "07b8", "400c", "XX7" }, - { "07b8", "401a", "RTL8151" }, - { "07b8", "4102", "USB 1.1 10/100M Fast Ethernet Adapter" }, - { "07b8", "4104", "XX9" }, - { "07b8", "420a", "UF200 Ethernet" }, - { "07b8", "5301", "GW-US54ZGL 802.11bg" }, - { "07b8", "6001", "WUG2690 802.11bg Wireless Module [ZyDAS ZD1211+AL2230]" }, - { "07b8", "8188", "AboCom Systems Inc [WN2001 Prolink Wireless-N Nano Adapter]" }, - { "07b8", "a001", "WUG2200 802.11g Wireless Adapter [Envara WiND512]" }, - { "07b8", "abc1", "DU-E10 Ethernet [pegasus]" }, - { "07b8", "b000", "BWU613" }, - { "07b8", "b02a", "AboCom Bluetooth Device" }, - { "07b8", "b02b", "Bluetooth dongle" }, - { "07b8", "b02c", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b02d", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b02e", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b030", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b031", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b032", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b033", "BCM92045DG-Flash with trace filter" }, - { "07b8", "b21a", "WUG2400 802.11g Wireless Adapter [Texas Instruments TNETW1450]" }, - { "07b8", "b21b", "HWU54DM" }, - { "07b8", "b21c", "RT2573" }, - { "07b8", "b21d", "RT2573" }, - { "07b8", "b21e", "RT2573" }, - { "07b8", "b21f", "WUG2700" }, - { "07b8", "d011", "MP3 Player" }, - { "07b8", "e001", "Mass Storage Device" }, - { "07b8", "e002", "Mass Storage Device" }, - { "07b8", "e003", "Mass Storage Device" }, - { "07b8", "e004", "Mass Storage Device" }, - { "07b8", "e005", "Mass Storage Device" }, - { "07b8", "e006", "Mass Storage Device" }, - { "07b8", "e007", "Mass Storage Device" }, - { "07b8", "e008", "Mass Storage Device" }, - { "07b8", "e009", "Mass Storage Device" }, - { "07b8", "e00a", "Mass Storage Device" }, - { "07b8", "e4f0", "Card Reader Driver" }, - { "07b8", "f101", "DSB-560 Modem [atlas]" }, - { "07be", "1935", "Elektron Music Machines" }, - { "07c0", "1113", "JoyWarrior24F8" }, - { "07c0", "1116", "JoyWarrior24F14" }, - { "07c0", "1121", "The Claw" }, - { "07c0", "1500", "IO-Warrior 40" }, - { "07c0", "1501", "IO-Warrior 24" }, - { "07c0", "1502", "IO-Warrior 48" }, - { "07c0", "1503", "IO-Warrior 28" }, - { "07c0", "1511", "IO-Warrior 24 Power Vampire" }, - { "07c0", "1512", "IO-Warrior 24 Power Vampire" }, - { "07c1", "0068", "HKS-0200 USBDAQ" }, - { "07c4", "0102", "USB to LS120" }, - { "07c4", "0103", "USB to IDE" }, - { "07c4", "1234", "USB to ATAPI" }, - { "07c4", "a000", "CompactFlash Card Reader" }, - { "07c4", "a001", "CompactFlash & SmartMedia Card Reader [eusb]" }, - { "07c4", "a002", "Disk Drive" }, - { "07c4", "a003", "Datafab-based Reader" }, - { "07c4", "a004", "USB to MMC Class Drive" }, - { "07c4", "a005", "CompactFlash & SmartMedia Card Reader" }, - { "07c4", "a006", "SmartMedia Card Reader" }, - { "07c4", "a007", "Memory Stick Class Drive" }, - { "07c4", "a103", "MDSM-B reader" }, - { "07c4", "a107", "USB to Memory Stick (LC1) Drive" }, - { "07c4", "a109", "LC1 CompactFlash & SmartMedia Card Reader" }, - { "07c4", "a10b", "USB to CF+MS(LC1)" }, - { "07c4", "a200", "DF-UT-06 Hama MMC/SD Reader" }, - { "07c4", "a400", "CompactFlash & Microdrive Reader" }, - { "07c4", "a600", "Card Reader" }, - { "07c4", "a604", "12-in-1 Card Reader" }, - { "07c4", "ad01", "Mass Storage Device" }, - { "07c4", "ae01", "Mass Storage Device" }, - { "07c4", "af01", "Mass Storage Device" }, - { "07c4", "b000", "USB to CF(LC1)" }, - { "07c4", "b001", "USB to CF+PCMCIA" }, - { "07c4", "b004", "MMC/SD Reader" }, - { "07c4", "b006", "USB to PCMCIA" }, - { "07c4", "b00a", "USB to CF+SD Drive(LC1)" }, - { "07c4", "b00b", "USB to Memory Stick(LC1)" }, - { "07c4", "c010", "Kingston FCR-HS2/ATA Card Reader" }, - { "07c5", "0500", "Cash Drawer" }, - { "07c6", "0002", "Bodega Wireless Access Point" }, - { "07c6", "0003", "Bodega Wireless Network Adapter" }, - { "07c8", "0202", "MN128-SOHO PAL" }, - { "07c9", "b100", "AT-USB100" }, - { "07ca", "0002", "AVerTV PVR USB/EZMaker Pro Device" }, - { "07ca", "0026", "AVerTV" }, - { "07ca", "0337", "A867 DVB-T dongle" }, - { "07ca", "0837", "H837 Hybrid ATSC/QAM" }, - { "07ca", "1228", "MPEG-2 Capture Device (M038)" }, - { "07ca", "1830", "AVerTV Volar Video Capture (H830)" }, - { "07ca", "1871", "TD310 DVB-T/T2/C dongle" }, - { "07ca", "3835", "AVerTV Volar Green HD (A835B)" }, - { "07ca", "850a", "AverTV Volar Black HD (A850)" }, - { "07ca", "850b", "AverTV Red HD+ (A850T)" }, - { "07ca", "a309", "AVerTV DVB-T (A309)" }, - { "07ca", "a801", "AVerTV DVB-T (A800)" }, - { "07ca", "a815", "AVerTV DVB-T Volar X (A815)" }, - { "07ca", "a827", "AVerTV Hybrid Volar HX (A827)" }, - { "07ca", "a867", "AVerTV DVB-T (A867)" }, - { "07ca", "b300", "A300 DVB-T TV receiver" }, - { "07ca", "b800", "MR800 FM Radio" }, - { "07ca", "e880", "MPEG-2 Capture Device (E880)" }, - { "07ca", "e882", "MPEG-2 Capture Device (E882)" }, - { "07cc", "0000", "CF Card Reader" }, - { "07cc", "0001", "Reader (UICSE)" }, - { "07cc", "0002", "Reader (UIS)" }, - { "07cc", "0003", "SM Card Reader" }, - { "07cc", "0004", "SM/CF/PCMCIA Card Reader" }, - { "07cc", "0005", "Reader (UISA2SE)" }, - { "07cc", "0006", "SM/CF/PCMCIA Card Reader" }, - { "07cc", "0007", "Reader (UISA6SE)" }, - { "07cc", "000c", "SM/CF Card Reader" }, - { "07cc", "000d", "SM/CF Card Reader" }, - { "07cc", "000e", "Reader (UISDA)" }, - { "07cc", "000f", "Reader (UICLIK)" }, - { "07cc", "0010", "Reader (UISMA)" }, - { "07cc", "0012", "Reader (UISC6SE-FLASH)" }, - { "07cc", "0014", "Litronic Fortezza Reader" }, - { "07cc", "0030", "Mass Storage (UISDMC12S)" }, - { "07cc", "0040", "Mass Storage (UISDMC13S)" }, - { "07cc", "0100", "Reader (UID)" }, - { "07cc", "0101", "Reader (UIM)" }, - { "07cc", "0102", "Reader (UISDMA)" }, - { "07cc", "0103", "Reader (UISDMC)" }, - { "07cc", "0104", "Reader (UISDM)" }, - { "07cc", "0200", "6-in-1 Card Reader" }, - { "07cc", "0201", "Mass Storage (UISDMC1S & UISDMC3S)" }, - { "07cc", "0202", "Mass Storage (UISDMC5S)" }, - { "07cc", "0203", "Mass Storage (UISMC5S)" }, - { "07cc", "0204", "Mass Storage (UIM4/5S & UIM7S)" }, - { "07cc", "0205", "Mass Storage (UIS4/5S & UIS7S)" }, - { "07cc", "0206", "Mass Storage (UISDMC10S & UISDMC11S)" }, - { "07cc", "0207", "Mass Storage (UPIDMA)" }, - { "07cc", "0208", "Mass Storage (UCFC II)" }, - { "07cc", "0210", "Mass Storage (UPIXXA)" }, - { "07cc", "0213", "Mass Storage (UPIDA)" }, - { "07cc", "0214", "Mass Storage (UPIMA)" }, - { "07cc", "0215", "Mass Storage (UPISA)" }, - { "07cc", "0217", "Mass Storage (UPISDMA)" }, - { "07cc", "0223", "Mass Storage (UCIDA)" }, - { "07cc", "0224", "Mass Storage (UCIMA)" }, - { "07cc", "0225", "Mass Storage (UIS7S)" }, - { "07cc", "0227", "Mass Storage (UCIDMA)" }, - { "07cc", "0234", "Mass Storage (UIM7S)" }, - { "07cc", "0235", "Mass Storage (UIS4S-S)" }, - { "07cc", "0237", "Velper (UISDMC4S)" }, - { "07cc", "0300", "6-in-1 Card Reader" }, - { "07cc", "0301", "6-in-1 Card Reader" }, - { "07cc", "0303", "Mass Storage (UID10W)" }, - { "07cc", "0304", "Mass Storage (UIM10W)" }, - { "07cc", "0305", "Mass Storage (UIS10W)" }, - { "07cc", "0308", "Mass Storage (UIC10W)" }, - { "07cc", "0309", "Mass Storage (UISC3W)" }, - { "07cc", "0310", "Mass Storage (UISDMA2W)" }, - { "07cc", "0311", "Mass Storage (UISDMC14W)" }, - { "07cc", "0320", "Mass Storage (UISDMC4W)" }, - { "07cc", "0321", "Mass Storage (UISDMC37W)" }, - { "07cc", "0330", "WINTERREADER Reader" }, - { "07cc", "0350", "9-in-1 Card Reader" }, - { "07cc", "0500", "Mass Storage" }, - { "07cc", "0501", "Mass Storage" }, - { "07cd", "0001", "USBuart Serial Port" }, - { "07ce", "c007", "DPB-4000" }, - { "07ce", "c009", "DPB-6000" }, - { "07ce", "c010", "CPB-7000" }, - { "07cf", "1001", "QV-8000SX/5700/3000EX Digicam; Exilim EX-M20" }, - { "07cf", "1003", "Exilim EX-S500" }, - { "07cf", "1004", "Exilim EX-Z120" }, - { "07cf", "1011", "USB-CASIO PC CAMERA" }, - { "07cf", "1116", "EXILIM EX-Z19" }, - { "07cf", "1125", "Exilim EX-H10 Digital Camera (mass storage mode)" }, - { "07cf", "1133", "Exilim EX-Z350 Digital Camera (mass storage mode)" }, - { "07cf", "1225", "Exilim EX-H10 Digital Camera (PictBridge mode)" }, - { "07cf", "1233", "Exilim EX-Z350 Digital Camera (PictBridge mode)" }, - { "07cf", "2002", "E-125 Cassiopeia Pocket PC" }, - { "07cf", "3801", "WMP-1 MP3-Watch" }, - { "07cf", "4001", "Label Printer KL-P1000" }, - { "07cf", "4007", "CW50 Device" }, - { "07cf", "4104", "Cw75 Device" }, - { "07cf", "4107", "CW-L300 Device" }, - { "07cf", "4500", "LV-20 Digital Camera" }, - { "07cf", "6101", "fx-9750gII" }, - { "07cf", "6102", "fx-CP400" }, - { "07cf", "6801", "PL-40R" }, - { "07cf", "6802", "MIDI Keyboard" }, - { "07cf", "6803", "CTK-3500 (MIDI keyboard)" }, - { "07d0", "0001", "Digital Video Creator I" }, - { "07d0", "0002", "Global Village VideoFX Grabber" }, - { "07d0", "0003", "Fusion Model DVC-50 Rev 1 (NTSC)" }, - { "07d0", "0004", "DVC-800 (PAL) Grabber" }, - { "07d0", "0005", "Fusion Video and Audio Ports" }, - { "07d0", "0006", "DVC 150 Loader Device" }, - { "07d0", "0007", "DVC 150" }, - { "07d0", "0327", "Fusion Digital Media Reader" }, - { "07d0", "1001", "DM-FLEX DFU Adapter" }, - { "07d0", "1002", "DMHS2 DFU Adapter" }, - { "07d0", "1102", "CF Reader/Writer" }, - { "07d0", "1103", "SD Reader/Writer" }, - { "07d0", "1104", "SM Reader/Writer" }, - { "07d0", "1105", "MS Reader/Writer" }, - { "07d0", "1106", "xD/SM Reader/Writer" }, - { "07d0", "1202", "MultiSlot Reader/Writer" }, - { "07d0", "2000", "FX2 DFU Adapter" }, - { "07d0", "2001", "eUSB CompactFlash Reader" }, - { "07d0", "4100", "Kingsun SF-620 Infrared Adapter" }, - { "07d0", "4101", "Connectivity Cable (CA-42 clone)" }, - { "07d0", "4959", "Kingsun KS-959 Infrared Adapter" }, - { "07d1", "13ec", "VvBus for Helium 2xx" }, - { "07d1", "13ed", "VvBus for Helium 2xx" }, - { "07d1", "13f1", "DSL-302G Modem" }, - { "07d1", "13f2", "DSL-502G Router" }, - { "07d1", "3300", "DWA-130 802.11n Wireless N Adapter(rev.E) [Realtek RTL8191SU]" }, - { "07d1", "3302", "DWA-130 802.11n Wireless N Adapter(rev.C2) [Realtek RTL8191SU]" }, - { "07d1", "3303", "DWA-131 802.11n Wireless N Nano Adapter(rev.A1) [Realtek RTL8192SU]" }, - { "07d1", "3304", "FR-300USB 802.11bgn Wireless Adapter" }, - { "07d1", "3a07", "WUA-2340 RangeBooster G Adapter(rev.A) [Atheros AR5523]" }, - { "07d1", "3a08", "WUA-2340 RangeBooster G Adapter(rev.A) (no firmware) [Atheros AR5523]" }, - { "07d1", "3a09", "DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A2) [Atheros AR9170+AR9104]" }, - { "07d1", "3a0d", "DWA-120 802.11g Wireless 108G Adapter [Atheros AR5523]" }, - { "07d1", "3a0f", "DWA-130 802.11n Wireless N Adapter(rev.D) [Atheros AR9170+AR9102]" }, - { "07d1", "3a10", "DWA-126 802.11n Wireless Adapter [Atheros AR9271]" }, - { "07d1", "3b01", "AirPlus G DWL-G122 Wireless Adapter(rev.D) [Marvell 88W8338+88W8010]" }, - { "07d1", "3b10", "DWA-142 RangeBooster N Adapter [Marvell 88W8362+88W8060]" }, - { "07d1", "3b11", "DWA-130 802.11n Wireless N Adapter(rev.A1) [Marvell 88W8362+88W8060]" }, - { "07d1", "3c03", "AirPlus G DWL-G122 Wireless Adapter(rev.C1) [Ralink RT2571W]" }, - { "07d1", "3c04", "WUA-1340" }, - { "07d1", "3c05", "EH103 Wireless G Adapter" }, - { "07d1", "3c06", "DWA-111 802.11bg Wireless Adapter [Ralink RT2571W]" }, - { "07d1", "3c07", "DWA-110 Wireless G Adapter(rev.A1) [Ralink RT2571W]" }, - { "07d1", "3c09", "DWA-140 RangeBooster N Adapter(rev.B1) [Ralink RT2870]" }, - { "07d1", "3c0a", "DWA-140 RangeBooster N Adapter(rev.B2) [Ralink RT3072]" }, - { "07d1", "3c0b", "DWA-110 Wireless G Adapter(rev.B) [Ralink RT2870]" }, - { "07d1", "3c0d", "DWA-125 Wireless N 150 Adapter(rev.A1) [Ralink RT3070]" }, - { "07d1", "3c0e", "WUA-2340 RangeBooster G Adapter(rev.B) [Ralink RT2070]" }, - { "07d1", "3c0f", "AirPlus G DWL-G122 Wireless Adapter(rev.E1) [Ralink RT2070]" }, - { "07d1", "3c10", "DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.A1) [Atheros AR9170+AR9104]" }, - { "07d1", "3c11", "DWA-160 Xtreme N Dual Band USB Adapter(rev.B) [Ralink RT2870]" }, - { "07d1", "3c13", "DWA-130 802.11n Wireless N Adapter(rev.B) [Ralink RT2870]" }, - { "07d1", "3c15", "DWA-140 RangeBooster N Adapter(rev.B3) [Ralink RT2870]" }, - { "07d1", "3c16", "DWA-125 Wireless N 150 Adapter(rev.A2) [Ralink RT3070]" }, - { "07d1", "3e02", "DWM-156 3.75G HSUPA Adapter" }, - { "07d1", "5100", "Remote NDIS Device" }, - { "07d1", "a800", "DWM-152 3.75G HSUPA Adapter" }, - { "07d1", "f101", "DBT-122 Bluetooth" }, - { "07d1", "fc01", "DBT-120 Bluetooth Adapter" }, - { "07de", "2820", "VC500 Video Capture Dongle" }, - { "07e0", "4742", "VPN GovNet Box" }, - { "07e1", "5201", "V.90 Modem" }, - { "07e4", "0967", "SCard R/W CSR-145" }, - { "07e4", "0968", "SCard R/W CSR-145" }, - { "07e5", "05c2", "IDE-to-USB2.0 PCA" }, - { "07e5", "5c01", "Que! CDRW" }, - { "07ee", "0002", "Cash Drawer I/F" }, - { "07ef", "0001", "Internet Access Device" }, - { "07f2", "0001", "KEYLOK II" }, - { "07f7", "0005", "ScanLogic/Century Corporation uATA" }, - { "07f7", "011e", "Century USB Disk Enclosure" }, - { "07fa", "0778", "miniVigor 128 ISDN TA" }, - { "07fa", "0846", "ISDN TA [HFC-S]" }, - { "07fa", "0847", "ISDN TA [HFC-S]" }, - { "07fa", "1012", "BeWAN ADSL USB ST (grey)" }, - { "07fa", "1196", "BWIFI-USB54AR 802.11bg" }, - { "07fa", "a904", "BeWAN ADSL" }, - { "07fa", "a905", "BeWAN ADSL ST" }, - { "07fc", "1113", "SWISSONIC EasyKeys61 Midikeyboard" }, - { "07fd", "0000", "FastLane MIDI Interface" }, - { "07fd", "0001", "MIDI Interface" }, - { "07fd", "0002", "MOTU Audio for 64 bit" }, - { "07fd", "0004", "MicroBook" }, - { "07fd", "0008", "M Series" }, - { "07ff", "00ff", "Portable Hard Drive" }, - { "07ff", "ffff", "Mad Catz Gamepad" }, - { "0801", "0001", "Mini Swipe Reader (Keyboard Emulation)" }, - { "0801", "0002", "Mini Swipe Reader" }, - { "0801", "0003", "Magstripe Insert Reader" }, - { "0803", "1300", "V92 Faxmodem" }, - { "0803", "3095", "V.92 56K Mini External Modem Model 3095" }, - { "0803", "4310", "4410a Wireless-G Adapter [Intersil ISL3887]" }, - { "0803", "4410", "4410b Wireless-G Adapter [ZyDAS ZD1211B]" }, - { "0803", "5241", "Cable Modem" }, - { "0803", "5551", "DSL Modem" }, - { "0803", "9700", "2986L FaxModem" }, - { "0803", "9800", "Cable Modem" }, - { "0803", "a312", "Wireless-G" }, - { "080b", "0002", "Fingerprint Scanner (After ReNumeration)" }, - { "080b", "0010", "300LC Series Fingerprint Scanner (Before ReNumeration)" }, - { "080c", "0300", "Gryphon D120 Barcode Scanner" }, - { "080c", "0400", "Gryphon D120 Barcode Scanner" }, - { "080c", "0500", "Gryphon D120 Barcode Scanner" }, - { "080c", "0600", "Gryphon M100 Barcode Scanner" }, - { "080d", "0102", "Hercules Scan@home 48" }, - { "080d", "0104", "3.2Slim" }, - { "080d", "0110", "UMAX AstraSlim 1200 Scanner" }, - { "0810", "0001", "Dual PSX Adaptor" }, - { "0810", "0002", "Dual PCS Adaptor" }, - { "0810", "0003", "PlayStation Gamepad" }, - { "0810", "e001", "Twin controller" }, - { "0810", "e501", "SNES Gamepad" }, - { "0813", "0001", "Intel Play QX3 Microscope" }, - { "0813", "0002", "Dual Mode Camera Plus" }, - { "0819", "0101", "License Management and Copy Protection" }, - { "081a", "1000", "Duo Pen Tablet" }, - { "081b", "0600", "Storage Adapter" }, - { "081b", "0601", "Storage Adapter" }, - { "081e", "df00", "Handheld" }, - { "081f", "e401", "MM812" }, - { "0822", "2001", "IRXpress Infrared Device" }, - { "082d", "0100", "Visor" }, - { "082d", "0200", "Treo" }, - { "082d", "0300", "Treo 600" }, - { "082d", "0400", "Handheld" }, - { "082d", "0500", "Handheld" }, - { "082d", "0600", "Handheld" }, - { "0830", "0001", "m500" }, - { "0830", "0002", "m505" }, - { "0830", "0003", "m515" }, - { "0830", "0004", "Handheld" }, - { "0830", "0005", "Handheld" }, - { "0830", "0006", "Handheld" }, - { "0830", "0010", "Handheld" }, - { "0830", "0011", "Handheld" }, - { "0830", "0012", "Handheld" }, - { "0830", "0013", "Handheld" }, - { "0830", "0014", "Handheld" }, - { "0830", "0020", "i705" }, - { "0830", "0021", "Handheld" }, - { "0830", "0022", "Handheld" }, - { "0830", "0023", "Handheld" }, - { "0830", "0024", "Handheld" }, - { "0830", "0030", "Handheld" }, - { "0830", "0031", "Tungsten W" }, - { "0830", "0032", "Handheld" }, - { "0830", "0033", "Handheld" }, - { "0830", "0034", "Handheld" }, - { "0830", "0040", "m125" }, - { "0830", "0041", "Handheld" }, - { "0830", "0042", "Handheld" }, - { "0830", "0043", "Handheld" }, - { "0830", "0044", "Handheld" }, - { "0830", "0050", "m130" }, - { "0830", "0051", "Handheld" }, - { "0830", "0052", "Handheld" }, - { "0830", "0053", "Handheld" }, - { "0830", "0054", "Handheld" }, - { "0830", "0060", "Tungsten C/E/T/T2/T3 / Zire 71" }, - { "0830", "0061", "Lifedrive / Treo 650/680 / Tunsten E2/T5/TX / Centro / Zire 21/31/72 / Z22" }, - { "0830", "0062", "Handheld" }, - { "0830", "0063", "Handheld" }, - { "0830", "0064", "Handheld" }, - { "0830", "0070", "Zire" }, - { "0830", "0071", "Handheld" }, - { "0830", "0072", "Handheld" }, - { "0830", "0080", "Serial Adapter [for Palm III]" }, - { "0830", "0081", "Handheld" }, - { "0830", "0082", "Handheld" }, - { "0830", "00a0", "Treo 800w" }, - { "0830", "0101", "Pre" }, - { "0832", "5850", "Cable" }, - { "0833", "012e", "KeikaiDenwa 8 with charger" }, - { "0833", "039f", "KeikaiDenwa 8" }, - { "0836", "2836", "i.Beat mood" }, - { "0839", "0005", "Digimax Camera" }, - { "0839", "0008", "Digimax 230 Camera" }, - { "0839", "0009", "Digimax 340" }, - { "0839", "000a", "Digimax 410" }, - { "0839", "000e", "Digimax 360" }, - { "0839", "0010", "Digimax 300" }, - { "0839", "1003", "Digimax 210SE" }, - { "0839", "1005", "Digimax 220" }, - { "0839", "1009", "Digimax V4" }, - { "0839", "1012", "6500 Document Camera" }, - { "0839", "103f", "Digimax S500" }, - { "0839", "1058", "S730 Camera" }, - { "0839", "1064", "Digimax D830 Camera" }, - { "0839", "1542", "Digimax 50 Duo" }, - { "0839", "3000", "Digimax 35 MP3" }, - { "083a", "1046", "10/100 Ethernet [pegasus]" }, - { "083a", "1060", "HomeLine Adapter" }, - { "083a", "1f4d", "SMC8013WG Broadband Remote NDIS Device" }, - { "083a", "3046", "10/100 Series Adapter" }, - { "083a", "3060", "1/10/100 Adapter" }, - { "083a", "3501", "2664W" }, - { "083a", "3502", "WN3501D Wireless Adapter" }, - { "083a", "3503", "T-Sinus 111 Wireless Adapter" }, - { "083a", "4501", "T-Sinus 154data" }, - { "083a", "4502", "Siemens S30853-S1016-R107 802.11g Wireless Adapter [Intersil ISL3886]" }, - { "083a", "4505", "SMCWUSB-G 802.11bg" }, - { "083a", "4507", "SMCWUSBT-G2 802.11g Wireless Adapter [Atheros AR5523]" }, - { "083a", "4521", "Siemens S30863-S1016-R107-2 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "083a", "4531", "T-Com Sinus 154 data II [Intersil ISL3887]" }, - { "083a", "5046", "SpeedStream 10/100 Ethernet [pegasus]" }, - { "083a", "5501", "Wireless Adapter 11g" }, - { "083a", "6500", "Cable Modem" }, - { "083a", "6618", "802.11n Wireless Adapter" }, - { "083a", "7511", "Arcadyan 802.11N Wireless Adapter" }, - { "083a", "7512", "Arcadyan 802.11N Wireless Adapter" }, - { "083a", "7522", "Arcadyan 802.11N Wireless Adapter" }, - { "083a", "8522", "Arcadyan 802.11N Wireless Adapter" }, - { "083a", "8541", "WN4501F 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "083a", "a512", "Arcadyan 802.11N Wireless Adapter" }, - { "083a", "a618", "SMCWUSBS-N EZ Connect N Draft 11n Wireless Adapter [Ralink RT2870]" }, - { "083a", "a701", "SMCWUSBS-N3 EZ Connect N Wireless Adapter [Ralink RT3070]" }, - { "083a", "b004", "CPWUE001 USB/Ethernet Adapter" }, - { "083a", "b522", "SMCWUSBS-N2 EZ Connect N Wireless Adapter [Ralink RT2870]" }, - { "083a", "bb01", "BlueExpert Bluetooth Device" }, - { "083a", "c003", "802.11b Wireless Adapter" }, - { "083a", "c501", "Zoom 4410 Wireless-G [Intersil ISL3887]" }, - { "083a", "c561", "802.11a/g Wireless Adapter" }, - { "083a", "d522", "Speedport W 102 Stick IEEE 802.11n USB 2.0 Adapter" }, - { "083a", "e501", "ZD1211B" }, - { "083a", "e503", "Arcadyan WN4501 802.11b/g" }, - { "083a", "e506", "WUS-201 802.11bg" }, - { "083a", "f501", "802.11g Wireless Adapter" }, - { "083a", "f502", "802.11g Wireless Adapter" }, - { "083a", "f522", "Arcadyan WN7512 802.11n" }, - { "083f", "b100", "TelePort V.90 Fax/Modem" }, - { "0840", "0060", "Storage Adapter Bridge Module" }, - { "0841", "0001", "Rio 500" }, - { "0846", "1001", "EA101 10 Mbps 10BASE-T Ethernet [Kawasaki LSI KL5KLUSB101B]" }, - { "0846", "1002", "Ethernet" }, - { "0846", "1020", "FA101 Fast Ethernet USB 1.1" }, - { "0846", "1040", "FA120 Fast Ethernet USB 2.0 [Asix AX88172 / AX8817x]" }, - { "0846", "1100", "Managed Switch M4100 series, M5300 series, M7100 series" }, - { "0846", "4110", "MA111(v1) 802.11b Wireless [Intersil Prism 3.0]" }, - { "0846", "4200", "WG121(v1) 54 Mbps Wireless [Intersil ISL3886]" }, - { "0846", "4210", "WG121(v2) 54 Mbps Wireless [Intersil ISL3886]" }, - { "0846", "4220", "WG111(v1) 54 Mbps Wireless [Intersil ISL3886]" }, - { "0846", "4230", "MA111(v2) 802.11b Wireless [SIS SIS 162]" }, - { "0846", "4240", "WG111(v1) rev 2 54 Mbps Wireless [Intersil ISL3887]" }, - { "0846", "4260", "WG111v3 54 Mbps Wireless [realtek RTL8187B]" }, - { "0846", "4300", "WG111U Double 108 Mbps Wireless [Atheros AR5004X / AR5005UX]" }, - { "0846", "4301", "WG111U (no firmware) Double 108 Mbps Wireless [Atheros AR5004X / AR5005UX]" }, - { "0846", "5f00", "WPN111 802.11g Wireless Adapter [Atheros AR5523]" }, - { "0846", "68e1", "LB1120-100NAS" }, - { "0846", "6a00", "WG111v2 54 Mbps Wireless [RealTek RTL8187L]" }, - { "0846", "7100", "WN121T RangeMax Next Wireless-N [Marvell TopDog]" }, - { "0846", "9000", "WN111(v1) RangeMax Next Wireless [Marvell 88W8362+88W8060]" }, - { "0846", "9001", "WN111(v2) RangeMax Next Wireless [Atheros AR9170+AR9101]" }, - { "0846", "9010", "WNDA3100v1 802.11abgn [Atheros AR9170+AR9104]" }, - { "0846", "9011", "WNDA3100v2 802.11abgn [Broadcom BCM4323]" }, - { "0846", "9012", "WNDA4100 802.11abgn 3x3:3 [Ralink RT3573]" }, - { "0846", "9014", "WNDA3100v3 802.11abgn 2x2:2 [MediaTek MT7632U]" }, - { "0846", "9018", "WNDA3200 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]" }, - { "0846", "9020", "WNA3100(v1) Wireless-N 300 [Broadcom BCM43231]" }, - { "0846", "9021", "WNA3100M(v1) Wireless-N 300 [Realtek RTL8192CU]" }, - { "0846", "9030", "WNA1100 Wireless-N 150 [Atheros AR9271]" }, - { "0846", "9040", "WNA1000 Wireless-N 150 [Atheros AR9170+AR9101]" }, - { "0846", "9041", "WNA1000M 802.11bgn [Realtek RTL8188CUS]" }, - { "0846", "9042", "On Networks N150MA 802.11bgn [Realtek RTL8188CUS]" }, - { "0846", "9043", "WNA1000Mv2 802.11bgn [Realtek RTL8188CUS?]" }, - { "0846", "9050", "A6200 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526]" }, - { "0846", "9051", "A6200v2 802.11a/b/g/n/ac (2x2) Wireless Adapter [Realtek RTL8812AU]" }, - { "0846", "9052", "A6100 AC600 DB Wireless Adapter [Realtek RTL8811AU]" }, - { "0846", "9054", "Nighthawk A7000 802.11ac Wireless Adapter AC1900 [Realtek 8814AU]" }, - { "0846", "a001", "PA101 10 Mbps HPNA Home Phoneline RJ-1" }, - { "0846", "f001", "On Networks N300MA 802.11bgn [Realtek RTL8192CU]" }, - { "084d", "0001", "Jenoptik JD800i" }, - { "084d", "0003", "S-Cam F5/D-Link DSC-350 Digital Camera" }, - { "084d", "0011", "Argus DC3500 Digital Camera" }, - { "084d", "0014", "Praktica DC 32" }, - { "084d", "0019", "Praktica DPix3000" }, - { "084d", "0025", "Praktica DC 60" }, - { "084d", "1001", "ScanHex SX-35d" }, - { "084e", "0001", "JamCam Camera" }, - { "084e", "1001", "Jam Studio Tablet" }, - { "084e", "1002", "Pablo Tablet" }, - { "084f", "0001", "Empeg-Car Mark I/II Player" }, - { "0851", "1542", "SiPix Blink" }, - { "0851", "1543", "Maxell WS30 Slim Digital Camera, or Pandigital PI8004W01 digital photo frame" }, - { "0851", "a168", "MXIC" }, - { "0853", "0100", "HHKB Professional" }, - { "0853", "0119", "RealForce 105UB" }, - { "0853", "0200", "RealForce Compact Keyboard" }, - { "0854", "0100", "I/O Board" }, - { "0854", "0101", "I/O Board, rev1" }, - { "0856", "ac01", "uLinks USOTL4 RS422/485 Adapter" }, - { "0858", "3102", "Bluetooth Device" }, - { "0858", "ffff", "Maxell module with BlueCore in DFU mode" }, - { "085a", "0001", "Portstation Dual Serial Port" }, - { "085a", "0003", "Portstation Paraller Port" }, - { "085a", "0008", "Ethernet" }, - { "085a", "0009", "Ethernet" }, - { "085a", "000b", "Portstation Dual PS/2 Port" }, - { "085a", "0021", "1 port to Serial Converter" }, - { "085a", "0022", "Parallel Port" }, - { "085a", "0023", "2 port to Serial Converter" }, - { "085a", "0024", "Parallel Port" }, - { "085a", "0026", "PortGear SCSI" }, - { "085a", "0027", "1 port to Serial Converter" }, - { "085a", "0028", "PortGear to SCSI Converter" }, - { "085a", "0032", "PortStation SCSI Module" }, - { "085a", "003c", "Bluetooth Adapter" }, - { "085a", "0299", "Colorvision, Inc. Monitor Spyder" }, - { "085a", "8021", "1 port to Serial" }, - { "085a", "8023", "2 port to Serial" }, - { "085a", "8027", "PGSDB9 Serial Port" }, - { "085c", "0100", "Spyder 1" }, - { "085c", "0200", "Spyder 2" }, - { "085c", "0300", "Spyder 3" }, - { "085c", "0400", "Spyder 4" }, - { "0864", "4100", "MA101 802.11b Adapter" }, - { "0864", "4102", "MA101 802.11b Adapter" }, - { "0867", "9812", "ECON Data acquisition unit" }, - { "0867", "9816", "DT9816 ECON data acquisition module" }, - { "0867", "9836", "DT9836 data acquisition card" }, - { "086a", "0001", "Unitor8" }, - { "086a", "0002", "AMT8" }, - { "086a", "0003", "MT4" }, - { "086c", "1001", "Eumex 504PC ISDN TA" }, - { "086c", "1002", "Eumex 504PC (FlashLoad)" }, - { "086c", "1003", "TA33 ISDN TA" }, - { "086c", "1004", "TA33 (FlashLoad)" }, - { "086c", "1005", "Eumex 604PC HomeNet" }, - { "086c", "1006", "Eumex 604PC HomeNet (FlashLoad)" }, - { "086c", "1007", "Eumex 704PC DSL" }, - { "086c", "1008", "Eumex 704PC DSL (FlashLoad)" }, - { "086c", "1009", "Eumex 724PC DSL" }, - { "086c", "100a", "Eumex 724PC DSL (FlashLoad)" }, - { "086c", "100b", "OpenCom 30" }, - { "086c", "100c", "OpenCom 30 (FlashLoad)" }, - { "086c", "100d", "BeeTel Home 100" }, - { "086c", "100e", "BeeTel Home 100 (FlashLoad)" }, - { "086c", "1011", "USB2DECT" }, - { "086c", "1012", "USB2DECT (FlashLoad)" }, - { "086c", "1013", "Eumex 704PC LAN" }, - { "086c", "1014", "Eumex 704PC LAN (FlashLoad)" }, - { "086c", "1019", "Eumex 504 SE" }, - { "086c", "101a", "Eumex 504 SE (Flash-Mode)" }, - { "086c", "1021", "OpenCom 40" }, - { "086c", "1022", "OpenCom 40 (FlashLoad)" }, - { "086c", "1023", "OpenCom 45" }, - { "086c", "1024", "OpenCom 45 (FlashLoad)" }, - { "086c", "1025", "Sinus 61 data" }, - { "086c", "1029", "dect BOX" }, - { "086c", "102c", "Eumex 604PC HomeNet [FlashLoad]" }, - { "086c", "1030", "Eumex 704PC DSL [FlashLoad]" }, - { "086c", "1032", "OpenCom 40 [FlashLoad]" }, - { "086c", "1033", "OpenCom 30 plus" }, - { "086c", "1034", "OpenCom 30 plus (FlashLoad)" }, - { "086c", "1041", "Eumex 220PC" }, - { "086c", "1042", "Eumex 220PC (FlashMode)" }, - { "086c", "1055", "Eumex 220 Version 2 ISDN TA" }, - { "086c", "1056", "Eumex 220 Version 2 ISDN TA (Flash-Mode)" }, - { "086c", "2000", "OpenCom 1000" }, - { "086e", "1920", "SGC-X2UL" }, - { "0870", "0001", "Ricochet GS" }, - { "0871", "0001", "SDDR-01 Compact Flash Reader" }, - { "0871", "0002", "SDDR-31 Compact Flash Reader" }, - { "0871", "0005", "SDDR-05 Compact Flash Reader" }, - { "087d", "5704", "Ethernet" }, - { "0886", "0630", "Intel PC Camera CS630" }, - { "088a", "1002", "DigiView DV3100" }, - { "088b", "4944", "MassWorks ID-75 TouchScreen" }, - { "088c", "2030", "Ticket Printer TTP 2030" }, - { "088e", "5036", "Portable secure storage for software licenses" }, - { "0892", "0101", "Smartdio Reader/Writer" }, - { "0894", "0010", "Remote NDIS Network Device" }, - { "0897", "0001", "ICE In-Circuit Emulator" }, - { "0897", "0002", "Power Debug/Power Debug II" }, - { "0897", "0004", "PowerDebug" }, - { "0897", "0005", "PowerDebug PRO" }, - { "08a6", "0051", "B-SV4" }, - { "08a9", "0005", "USBee ZX" }, - { "08a9", "0009", "USBee SX" }, - { "08a9", "0012", "USBee AX-Standard" }, - { "08a9", "0013", "USBee AX-Plus" }, - { "08a9", "0014", "USBee AX-Pro" }, - { "08a9", "0015", "USBee DX" }, - { "08ac", "2024", "usbWiggler" }, - { "08b0", "0006", "814 Sample Processor" }, - { "08b0", "0015", "857 Titrando" }, - { "08b0", "001a", "852 Titrando" }, - { "08b7", "0001", "Playstation adapter" }, - { "08b8", "01f4", "USBSIMM1" }, - { "08bb", "2702", "PCM2702 16-bit stereo audio DAC" }, - { "08bb", "2704", "PCM2704 16-bit stereo audio DAC" }, - { "08bb", "2705", "PCM2705 stereo audio DAC" }, - { "08bb", "2706", "PCM2706 stereo audio DAC" }, - { "08bb", "2707", "PCM2707 stereo audio DAC" }, - { "08bb", "27c4", "PCM2704C stereo audio DAC" }, - { "08bb", "27c5", "PCM2705C stereo audio DAC" }, - { "08bb", "27c6", "PCM2706C stereo audio DAC" }, - { "08bb", "27c7", "PCM2707C stereo audio DAC" }, - { "08bb", "2900", "PCM2900 Audio Codec" }, - { "08bb", "2901", "PCM2901 Audio Codec" }, - { "08bb", "2902", "PCM2902 Audio Codec" }, - { "08bb", "2904", "PCM2904 Audio Codec" }, - { "08bb", "2910", "PCM2912 Audio Codec" }, - { "08bb", "2912", "PCM2912A Audio Codec" }, - { "08bb", "29b0", "PCM2900B Audio CODEC" }, - { "08bb", "29b2", "PCM2902 Audio CODEC" }, - { "08bb", "29b3", "PCM2903B Audio CODEC" }, - { "08bb", "29b6", "PCM2906B Audio CODEC" }, - { "08bb", "29c0", "PCM2900C Audio CODEC" }, - { "08bb", "29c2", "PCM2902C Audio CODEC" }, - { "08bb", "29c3", "PCM2903C Audio CODEC" }, - { "08bb", "29c6", "PCM2906C Audio CODEC" }, - { "08bd", "0208", "CLP-521 Label Printer" }, - { "08bd", "1100", "X1-USB Floppy" }, - { "08c3", "0001", "100 SC" }, - { "08c3", "0002", "100 A" }, - { "08c3", "0003", "100 SC BioKeyboard" }, - { "08c3", "0006", "100 A BioKeyboard" }, - { "08c3", "0100", "100 MC ISP" }, - { "08c3", "0101", "100 MC FingerPrint and SmartCard Reader" }, - { "08c3", "0300", "100 AX" }, - { "08c3", "0400", "100 SC" }, - { "08c3", "0401", "150 MC" }, - { "08c3", "0402", "200 MC FingerPrint and SmartCard Reader" }, - { "08c3", "0404", "100 SC Upgrade" }, - { "08c3", "0405", "150 MC Upgrade" }, - { "08c3", "0406", "100 MC Upgrade" }, - { "08c4", "0100", "Skyline 802.11b Wireless Adapter" }, - { "08c4", "02f2", "Farallon Home Phoneline Adapter" }, - { "08ca", "0001", "Tablet" }, - { "08ca", "0010", "Tablet" }, - { "08ca", "0020", "APT-6000U Tablet" }, - { "08ca", "0021", "APT-2 Tablet" }, - { "08ca", "0022", "Tablet" }, - { "08ca", "0023", "Tablet" }, - { "08ca", "0024", "Tablet" }, - { "08ca", "0100", "Pen Drive" }, - { "08ca", "0102", "DualCam" }, - { "08ca", "0103", "Pocket DV Digital Camera" }, - { "08ca", "0104", "Pocket DVII" }, - { "08ca", "0105", "Mega DV(Disk)" }, - { "08ca", "0106", "Pocket DV3100+" }, - { "08ca", "0107", "Pocket DV3100" }, - { "08ca", "0109", "Nisis DV4 Digital Camera" }, - { "08ca", "010a", "Trust 738AV LCD PV Mass Storage" }, - { "08ca", "0111", "PenCam VGA Plus" }, - { "08ca", "2008", "Mini PenCam 2" }, - { "08ca", "2010", "Pocket CAM 3 Mega (webcam)" }, - { "08ca", "2011", "Pocket CAM 3 Mega (storage)" }, - { "08ca", "2016", "PocketCam 2 Mega" }, - { "08ca", "2018", "Pencam SD 2M" }, - { "08ca", "2019", "Pencam SD 2M (mass storage mode)" }, - { "08ca", "2020", "Slim 3000F" }, - { "08ca", "2022", "Slim 3200" }, - { "08ca", "2024", "Pocket DV3500" }, - { "08ca", "2028", "Pocket Cam4M" }, - { "08ca", "2040", "Pocket DV4100M" }, - { "08ca", "2042", "Pocket DV5100M Composite Device" }, - { "08ca", "2043", "Pocket DV5100M (Disk)" }, - { "08ca", "2060", "Pocket DV5300" }, - { "08d1", "0001", "smartNIC Ethernet [catc]" }, - { "08d1", "0003", "smartNIC 2 PnP Ethernet" }, - { "08d4", "0009", "SCR SmartCard Reader" }, - { "08d8", "0002", "USB-to-CAN compact" }, - { "08d8", "0003", "USB-to-CAN II" }, - { "08d8", "0100", "USB-to-CAN" }, - { "08dd", "0112", "Wireless LAN Adapter" }, - { "08dd", "0113", "Wireless LAN Adapter" }, - { "08dd", "0986", "USB-100N Ethernet [pegasus]" }, - { "08dd", "0987", "USBLP-100 HomePNA Ethernet [pegasus]" }, - { "08dd", "0988", "USBEL-100 Ethernet [pegasus]" }, - { "08dd", "1986", "10/100 LAN Adapter" }, - { "08dd", "2103", "DVB-T TV-Tuner Card-R" }, - { "08dd", "8511", "USBE-100 Ethernet [pegasus2]" }, - { "08dd", "90ff", "USB2AR Ethernet" }, - { "08de", "7a01", "802.11b Adapter" }, - { "08df", "0001", "Rosetta Token V1" }, - { "08df", "0002", "Rosetta Token V2" }, - { "08df", "0003", "Rosetta Token V3" }, - { "08df", "0a00", "Lynks Interface" }, - { "08e3", "0002", "USB-RS232 Bridge" }, - { "08e3", "0100", "Interface ADSL" }, - { "08e3", "0101", "Interface ADSL" }, - { "08e3", "0102", "ADSL" }, - { "08e3", "0301", "RNIS ISDN TA [HFC-S]" }, - { "08e4", "0184", "DDJ-WeGO" }, - { "08e4", "0185", "DDJ-WeGO2" }, - { "08e6", "0001", "GemPC-Touch 430" }, - { "08e6", "0430", "GemPC430 SmartCard Reader" }, - { "08e6", "0432", "GemPC432 SmartCard Reader" }, - { "08e6", "0435", "GemPC435 SmartCard Reader" }, - { "08e6", "0437", "GemPC433 SL SmartCard Reader" }, - { "08e6", "1359", "UA SECURE STORAGE TOKEN" }, - { "08e6", "2202", "Gem e-Seal Pro Token" }, - { "08e6", "3437", "GemPC Twin SmartCard Reader" }, - { "08e6", "3438", "GemPC Key SmartCard Reader" }, - { "08e6", "3478", "PinPad Smart Card Reader" }, - { "08e6", "34ec", "Compact Smart Card Reader Writer" }, - { "08e6", "4433", "GemPC433-Swap" }, - { "08e6", "5501", "GemProx-PU Contactless Smart Card Reader" }, - { "08e6", "5503", "Prox-DU Contactless Interface" }, - { "08e6", "ace0", "UA HYBRID TOKEN" }, - { "08e9", "0100", "XTNDAccess IrDA Dongle" }, - { "08ea", "00c9", "ADSL Modem HM120dp Loader" }, - { "08ea", "00ca", "ADSL WAN Modem HM120dp" }, - { "08ea", "00ce", "HM230d Virtual Bus for Helium" }, - { "08ea", "abba", "USB Driver for Bluetooth Wireless Technology" }, - { "08ea", "abbb", "Bluetooth Device in DFU State" }, - { "08ec", "0001", "TravelDrive 2C" }, - { "08ec", "0002", "TravelDrive 2C" }, - { "08ec", "0005", "TravelDrive 2C" }, - { "08ec", "0008", "TravelDrive 2C" }, - { "08ec", "0010", "DiskOnKey" }, - { "08ec", "0011", "DiskOnKey" }, - { "08ec", "0012", "TravelDrive 2C" }, - { "08ec", "0014", "TravelDrive 2C" }, - { "08ec", "0015", "Kingston DataTraveler ELITE" }, - { "08ec", "0016", "Kingston DataTraveler U3" }, - { "08ec", "0020", "TravelDrive Intuix U3 2GB" }, - { "08ec", "0021", "TravelDrive" }, - { "08ec", "0022", "TravelDrive" }, - { "08ec", "0023", "TravelDrive" }, - { "08ec", "0024", "TravelDrive" }, - { "08ec", "0025", "TravelDrive" }, - { "08ec", "0026", "TravelDrive" }, - { "08ec", "0027", "TravelDrive" }, - { "08ec", "0028", "TravelDrive" }, - { "08ec", "0029", "TravelDrive" }, - { "08ec", "0030", "TravelDrive" }, - { "08ec", "0822", "TravelDrive 2C" }, - { "08ec", "0832", "Hi-Speed Mass Storage Device" }, - { "08ec", "0834", "M-Disk 220" }, - { "08ec", "0998", "Kingston Data Traveler2.0 Disk Driver" }, - { "08ec", "0999", "Kingston Data Traveler2.0 Disk Driver" }, - { "08ec", "1000", "TravelDrive 2C" }, - { "08ec", "2000", "TravelDrive 2C" }, - { "08ec", "2038", "TravelDrive" }, - { "08ec", "2039", "TravelDrive" }, - { "08ec", "204a", "TravelDrive" }, - { "08ec", "204b", "TravelDrive" }, - { "08ed", "0002", "CECT M800 memory card" }, - { "08f0", "0005", "CardScan 800c" }, - { "08f2", "007f", "Super Q2 Tablet" }, - { "08f7", "0001", "LabPro" }, - { "08f7", "0002", "EasyTemp/Go!Temp" }, - { "08f7", "0003", "Go!Link" }, - { "08f7", "0004", "Go!Motion" }, - { "08fd", "0001", "Bluetooth Device" }, - { "08ff", "1600", "AES1600" }, - { "08ff", "1610", "AES1600" }, - { "08ff", "1660", "AES1660 Fingerprint Sensor" }, - { "08ff", "1680", "AES1660 Fingerprint Sensor" }, - { "08ff", "168f", "AES1660 Fingerprint Sensor" }, - { "08ff", "2500", "AES2501" }, - { "08ff", "2501", "AES2501" }, - { "08ff", "2502", "AES2501" }, - { "08ff", "2503", "AES2501" }, - { "08ff", "2504", "AES2501" }, - { "08ff", "2505", "AES2501" }, - { "08ff", "2506", "AES2501" }, - { "08ff", "2507", "AES2501" }, - { "08ff", "2508", "AES2501" }, - { "08ff", "2509", "AES2501" }, - { "08ff", "250a", "AES2501" }, - { "08ff", "250b", "AES2501" }, - { "08ff", "250c", "AES2501" }, - { "08ff", "250d", "AES2501" }, - { "08ff", "250e", "AES2501" }, - { "08ff", "250f", "AES2501" }, - { "08ff", "2510", "AES2510" }, - { "08ff", "2550", "AES2550 Fingerprint Sensor" }, - { "08ff", "2580", "AES2501 Fingerprint Sensor" }, - { "08ff", "2588", "AES2501" }, - { "08ff", "2589", "AES2501" }, - { "08ff", "258a", "AES2501" }, - { "08ff", "258b", "AES2501" }, - { "08ff", "258c", "AES2501" }, - { "08ff", "258d", "AES2501" }, - { "08ff", "258e", "AES2501" }, - { "08ff", "258f", "AES2501" }, - { "08ff", "2660", "AES2660 Fingerprint Sensor" }, - { "08ff", "2680", "AES2660 Fingerprint Sensor" }, - { "08ff", "268f", "AES2660 Fingerprint Sensor" }, - { "08ff", "2810", "AES2810" }, - { "08ff", "3400", "AES3400 TruePrint Sensor" }, - { "08ff", "3401", "AES3400 Sensor" }, - { "08ff", "3402", "AES3400 Sensor" }, - { "08ff", "3403", "AES3400 Sensor" }, - { "08ff", "3404", "AES3400 TruePrint Sensor" }, - { "08ff", "3405", "AES3400 TruePrint Sensor" }, - { "08ff", "3406", "AES3400 TruePrint Sensor" }, - { "08ff", "3407", "AES3400 TruePrint Sensor" }, - { "08ff", "4902", "BioMV with TruePrint AES3500" }, - { "08ff", "4903", "BioMV with TruePrint AES3400" }, - { "08ff", "5500", "AES4000" }, - { "08ff", "5501", "AES4000 TruePrint Sensor" }, - { "08ff", "5503", "AES4000 TruePrint Sensor" }, - { "08ff", "5505", "AES4000 TruePrint Sensor" }, - { "08ff", "5507", "AES4000 TruePrint Sensor" }, - { "08ff", "55ff", "AES4000 TruePrint Sensor." }, - { "08ff", "5700", "AES3500 Fingerprint Reader" }, - { "08ff", "5701", "AES3500 TruePrint Sensor" }, - { "08ff", "5702", "AES3500 TruePrint Sensor" }, - { "08ff", "5703", "AES3500 TruePrint Sensor" }, - { "08ff", "5704", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5705", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5706", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5707", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5710", "AES3500 TruePrint Sensor" }, - { "08ff", "5711", "AES3500 TruePrint Sensor" }, - { "08ff", "5712", "AES3500 TruePrint Sensor" }, - { "08ff", "5713", "AES3500 TruePrint Sensor" }, - { "08ff", "5714", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5715", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5716", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5717", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5730", "AES3500 TruePrint Sensor" }, - { "08ff", "5731", "AES3500 TruePrint Sensor" }, - { "08ff", "5732", "AES3500 TruePrint Sensor" }, - { "08ff", "5733", "AES3500 TruePrint Sensor" }, - { "08ff", "5734", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5735", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5736", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "5737", "AES3500-BZ TruePrint Sensor" }, - { "08ff", "afe3", "FingerLoc Sensor Module (Anchor)" }, - { "08ff", "afe4", "FingerLoc Sensor Module (Anchor)" }, - { "08ff", "afe5", "FingerLoc Sensor Module (Anchor)" }, - { "08ff", "afe6", "FingerLoc Sensor Module (Anchor)" }, - { "08ff", "fffd", "AES2510 Sensor (USB Emulator)" }, - { "08ff", "ffff", "Sensor (Emulator)" }, - { "0901", "0001", "Hard Drive Adapter (TPP)" }, - { "0901", "0002", "SigmaDrive Adapter (TPP)" }, - { "0908", "01f4", "SIMATIC NET CP 5711" }, - { "0908", "01fe", "SIMATIC NET PC Adapter A2" }, - { "0908", "04b1", "MediSET" }, - { "0908", "04b2", "NC interface" }, - { "0908", "04b3", "keyboard front panel Cockpit" }, - { "0908", "04b4", "SCR_CCID" }, - { "0908", "2701", "ShenZhen SANZHAI Technology Co.,Ltd Spy Pen VGA" }, - { "090a", "1001", "T33520 Flash Card Controller" }, - { "090a", "1100", "Comotron C3310 MP3 player" }, - { "090a", "1200", "MP3 player" }, - { "090a", "1540", "Digitex Container Flash Disk" }, - { "090c", "0371", "Silicon Motion SM371 Camera" }, - { "090c", "0373", "Silicon Motion Camera" }, - { "090c", "037a", "Silicon Motion Camera" }, - { "090c", "037b", "Silicon Motion Camera" }, - { "090c", "037c", "300k Pixel Camera" }, - { "090c", "1000", "Flash Drive" }, - { "090c", "1132", "5-in-1 Card Reader" }, - { "090c", "337b", "Silicon Motion Camera" }, - { "090c", "3710", "Silicon Motion Camera" }, - { "090c", "3720", "Silicon Motion Camera" }, - { "090c", "37bc", "HP Webcam-101 Integrated Camera" }, - { "090c", "37c0", "Silicon Motion Camera" }, - { "090c", "6000", "SD/SDHC Card Reader (SG365 / FlexiDrive XC+)" }, - { "090c", "6200", "microSD card reader" }, - { "090c", "71b3", "SM731 Camera" }, - { "090c", "837b", "Silicon Motion Camera" }, - { "090c", "937b", "Silicon Motion Camera" }, - { "090c", "b370", "Silicon Motion SM370 Camera" }, - { "090c", "b371", "Silicon Motion SM371 Camera" }, - { "090c", "f37d", "Endoscope camera" }, - { "0911", "0c1c", "SpeechMike III" }, - { "0911", "149a", "SpeechMike II Pro Plus LFH5276" }, - { "0911", "2512", "SpeechMike Pro" }, - { "0915", "0001", "DSL Modem" }, - { "0915", "0002", "ADSL ATM Modem" }, - { "0915", "0005", "LAN Modem" }, - { "0915", "2000", "802.11 Adapter" }, - { "0915", "2002", "802.11 Adapter" }, - { "0915", "8000", "ADSL LAN Modem" }, - { "0915", "8005", "DSL-302G Modem" }, - { "0915", "8101", "ADSL WAN Modem" }, - { "0915", "8102", "DSL-200 ADSL Modem" }, - { "0915", "8103", "DSL-200 ADSL Modem" }, - { "0915", "8104", "DSL-200 Modem" }, - { "0915", "8400", "DSL Modem" }, - { "0915", "8401", "DSL Modem" }, - { "0915", "8402", "DSL Modem" }, - { "0915", "8500", "DSL Modem" }, - { "0915", "8501", "DSL Modem" }, - { "0917", "0001", "eFilm Reader-11 SM/CF" }, - { "0917", "0002", "eFilm Reader-11 SM" }, - { "0917", "0003", "eFilm Reader-11 CF" }, - { "0917", "0200", "FireFly" }, - { "0917", "0201", "FireLite" }, - { "0917", "0202", "STORAGE ADAPTER (FirePower)" }, - { "0917", "0204", "FlashTrax Storage" }, - { "0917", "0205", "STORAGE ADAPTER (CrossFire)" }, - { "0917", "0206", "FireFly 20G HDD" }, - { "0917", "0207", "FireLite" }, - { "0917", "020f", "STORAGE ADAPTER (FireLite)" }, - { "0917", "da01", "eFilm Reader-11 Test" }, - { "0917", "ffff", "eFilm Reader-11 (Class/PDR)" }, - { "0919", "0100", "Fast Flicks Digital Camera" }, - { "091e", "0003", "GPS (various models)" }, - { "091e", "0004", "iQue 3600" }, - { "091e", "0200", "Data Card Programmer (install)" }, - { "091e", "086e", "Forerunner 735XT" }, - { "091e", "097f", "Forerunner 235" }, - { "091e", "1200", "Data Card Programmer" }, - { "091e", "21a5", "etrex Cx (msc)" }, - { "091e", "2236", "nuvi 360" }, - { "091e", "2271", "Edge 605/705" }, - { "091e", "2295", "Colorado 300" }, - { "091e", "22b6", "eTrex Vista HCx (Mass Storage mode)" }, - { "091e", "231b", "Oregon 400t" }, - { "091e", "2353", "Nüvi 205T" }, - { "091e", "2380", "Oregon series" }, - { "091e", "23cc", "nüvi 1350" }, - { "091e", "2459", "GPSmap 62/78 series" }, - { "091e", "2491", "Edge 800" }, - { "091e", "2518", "eTrex 10" }, - { "091e", "2519", "eTrex 30" }, - { "091e", "2535", "Edge 800" }, - { "091e", "253c", "GPSmap 62sc" }, - { "091e", "255b", "Nuvi 2505LM" }, - { "091e", "2613", "Edge 200 TWN" }, - { "091e", "26a1", "Nuvi 55" }, - { "091e", "2802", "fenix 3" }, - { "091e", "28db", "Drive 5" }, - { "091e", "47fb", "nuviCam" }, - { "091e", "4cdb", "Fenix 6" }, - { "0920", "7500", "Network Interface" }, - { "0921", "1001", "GoCOM232 Serial" }, - { "0922", "0007", "LabelWriter 330" }, - { "0922", "0009", "LabelWriter 310" }, - { "0922", "0013", "LabelManager 400" }, - { "0922", "0019", "LabelWriter 400" }, - { "0922", "001a", "LabelWriter 400 Turbo" }, - { "0922", "0020", "LabelWriter 450" }, - { "0922", "0400", "LabelWriter SE450" }, - { "0922", "1001", "LabelManager PnP" }, - { "0922", "8003", "M10 Digital Postal Scale" }, - { "0922", "8004", "M25 Digital Postal Scale" }, - { "0922", "8009", "S250 Digital Postal Scale" }, - { "0923", "010f", "SIIG MobileCam" }, - { "0924", "23dd", "DocuPrint M760 (X760_USB)" }, - { "0924", "3ce8", "Phaser 3428 Printer" }, - { "0924", "3cea", "Phaser 3125" }, - { "0924", "3cec", "Phaser 3250" }, - { "0924", "3d5b", "Phaser 6115MFP TWAIN Scanner" }, - { "0924", "3d6d", "WorkCentre 6015N/NI" }, - { "0924", "420f", "WorkCentre PE220 Series" }, - { "0924", "421f", "M20 Scanner" }, - { "0924", "423b", "Printing Support" }, - { "0924", "4274", "Xerox Phaser 3635MFPX" }, - { "0924", "ffef", "WorkCenter M15" }, - { "0924", "fffb", "DocuPrint M750 (X750_USB)" }, - { "0925", "0005", "Gamtec.,Ltd SmartJoy PLUS Adapter" }, - { "0925", "03e8", "Wii Classic Controller Adapter" }, - { "0925", "1031", "WiseGroup Ltd, Gameport Controller" }, - { "0925", "1700", "PS/SS/N64 Joypad" }, - { "0925", "3881", "Saleae Logic" }, - { "0925", "8101", "Phidgets, Inc., 1-Motor PhidgetServo v2.0" }, - { "0925", "8104", "Phidgets, Inc., 4-Motor PhidgetServo v2.0" }, - { "0925", "8800", "WiseGroup Ltd, MP-8800 Quad Joypad" }, - { "0925", "8866", "WiseGroup Ltd, MP-8866 Dual Joypad" }, - { "0928", "8000", "Firmware uploader" }, - { "0928", "ffff", "Blank Oxford Device" }, - { "092b", "4210", "20S - Bluetooth Motorcycle headset & universal intercom" }, - { "092f", "0004", "JTAG-4" }, - { "092f", "0005", "JTAG-5" }, - { "0930", "0009", "Gigabeat F/X (HDD audio player)" }, - { "0930", "000c", "Gigabeat F (mtp)" }, - { "0930", "0010", "Gigabeat S (mtp)" }, - { "0930", "01bf", "2.5\"External Hard Disk" }, - { "0930", "0200", "Integrated Bluetooth (Taiyo Yuden)" }, - { "0930", "021c", "Atheros AR3012 Bluetooth" }, - { "0930", "0301", "PCX1100U Cable Modem (WDM)" }, - { "0930", "0302", "PCX2000 Cable Modem (WDM)" }, - { "0930", "0305", "Cable Modem PCX3000" }, - { "0930", "0307", "Cable Modem PCX2500" }, - { "0930", "0308", "PCX2200 Cable Modem (WDM)" }, - { "0930", "0309", "PCX5000 Cable Modem (WDM)" }, - { "0930", "030b", "Cable Modem PCX2600" }, - { "0930", "0501", "Bluetooth Controller" }, - { "0930", "0502", "Integrated Bluetooth" }, - { "0930", "0503", "Bluetooth Controller" }, - { "0930", "0505", "Integrated Bluetooth" }, - { "0930", "0506", "Integrated Bluetooth" }, - { "0930", "0507", "Bluetooth Adapter" }, - { "0930", "0508", "Integrated Bluetooth HCI" }, - { "0930", "0509", "BT EDR Dongle" }, - { "0930", "0706", "PocketPC e740" }, - { "0930", "0707", "Pocket PC e330 Series" }, - { "0930", "0708", "Pocket PC e350 Series" }, - { "0930", "0709", "Pocket PC e750 Series" }, - { "0930", "070a", "Pocket PC e400 Series" }, - { "0930", "070b", "Pocket PC e800 Series" }, - { "0930", "0a07", "WLM-10U1 802.11abgn Wireless Adapter [Ralink RT3572]" }, - { "0930", "0a08", "WLM-20U2/GN-1080 802.11abgn Wireless Adapter [Atheros AR7010+AR9280]" }, - { "0930", "0a0b", "WLU5053 802.11abgn Wireless Module [Broadcom BCM43236B]" }, - { "0930", "0a13", "AX88179 Gigabit Ethernet [Toshiba]" }, - { "0930", "0b05", "PX1220E-1G25 External hard drive" }, - { "0930", "0b09", "PX1396E-3T01 External hard drive" }, - { "0930", "0b1a", "STOR.E ALU 2S" }, - { "0930", "1300", "Wireless Broadband (CDMA EV-DO) SM-Bus Minicard Status Port" }, - { "0930", "1301", "Wireless Broadband (CDMA EV-DO) Minicard Status Port" }, - { "0930", "1302", "Wireless Broadband (3G HSDPA) SM-Bus Minicard Status Port" }, - { "0930", "1303", "Wireless Broadband (3G HSDPA) Minicard Status Port" }, - { "0930", "1308", "Broadband (3G HSDPA) SM-Bus Minicard Diagnostics Port" }, - { "0930", "130b", "F3507g Mobile Broadband Module" }, - { "0930", "130c", "F3607gw Mobile Broadband Module" }, - { "0930", "1311", "F3607gw v2 Mobile Broadband Module" }, - { "0930", "1400", "Memory Stick 2GB" }, - { "0930", "140b", "Memory Stick 64GB" }, - { "0930", "642f", "TravelDrive" }, - { "0930", "6506", "TravelDrive 2C" }, - { "0930", "6507", "TravelDrive 2C" }, - { "0930", "6508", "TravelDrive 2C" }, - { "0930", "6509", "TravelDrive 2C" }, - { "0930", "6510", "TravelDrive 2C" }, - { "0930", "6517", "TravelDrive 2C" }, - { "0930", "6518", "TravelDrive 2C" }, - { "0930", "6519", "Kingston DataTraveler 2.0 USB Stick" }, - { "0930", "651a", "TravelDrive 2C" }, - { "0930", "651b", "TravelDrive 2C" }, - { "0930", "651c", "TravelDrive 2C" }, - { "0930", "651d", "TravelDrive 2C" }, - { "0930", "651e", "TravelDrive 2C" }, - { "0930", "651f", "TravelDrive 2C" }, - { "0930", "6520", "TravelDrive 2C" }, - { "0930", "6521", "TravelDrive 2C" }, - { "0930", "6522", "TravelDrive 2C" }, - { "0930", "6523", "TravelDrive" }, - { "0930", "6524", "TravelDrive" }, - { "0930", "6525", "TravelDrive" }, - { "0930", "6526", "TravelDrive" }, - { "0930", "6527", "TravelDrive" }, - { "0930", "6528", "TravelDrive" }, - { "0930", "6529", "TravelDrive" }, - { "0930", "652a", "TravelDrive" }, - { "0930", "652b", "TravelDrive" }, - { "0930", "652c", "TravelDrive" }, - { "0930", "652d", "TravelDrive" }, - { "0930", "652f", "TravelDrive" }, - { "0930", "6530", "TravelDrive" }, - { "0930", "6531", "TravelDrive" }, - { "0930", "6532", "256M Stick" }, - { "0930", "6533", "512M Stick" }, - { "0930", "6534", "TravelDrive" }, - { "0930", "653c", "Kingston DataTraveler 2.0 Stick (512M)" }, - { "0930", "653d", "Kingston DataTraveler 2.0 Stick (1GB)" }, - { "0930", "653e", "Flash Memory" }, - { "0930", "6540", "TransMemory Flash Memory" }, - { "0930", "6544", "TransMemory-Mini / Kingston DataTraveler 2.0 Stick" }, - { "0930", "6545", "Kingston DataTraveler 102/2.0 / HEMA Flash Drive 2 GB / PNY Attache 4GB Stick" }, - { "0930", "a002", "SunplusIT SATA bridge" }, - { "0932", "0300", "VideoAdvantage" }, - { "0932", "0302", "Syntek DC-112X" }, - { "0932", "0320", "VideoAdvantage" }, - { "0932", "0482", "USB2.0 TVBOX" }, - { "0932", "1100", "DC-1100 Video Enhamcement Device" }, - { "0932", "1112", "Veo Web Camera" }, - { "0932", "a311", "Video Enhancement Device" }, - { "0936", "000a", "Moebius" }, - { "0936", "000b", "iMoebius" }, - { "0936", "000c", "Rhythmedics 6 BioData Integrator" }, - { "0936", "000d", "Hypurius" }, - { "0936", "000e", "Millennius" }, - { "0936", "000f", "Purius" }, - { "0936", "0030", "Composite Device, Mass Storage Device (Flash Drive) amd HID" }, - { "0936", "003c", "Rhythmedics HID Bootloader" }, - { "0939", "0b15", "Toshiba Stor.E Alu 2" }, - { "0939", "0b16", "Toshiba StorE HDD" }, - { "093a", "0007", "CMOS 100K-R Rev. 1.90" }, - { "093a", "010e", "Digital camera, CD302N/Elta Medi@ digi-cam/HE-501A" }, - { "093a", "010f", "Argus DC-1610/DC-1620/Emprex PCD3600/Philips P44417B keychain camera/Precision Mini,Model HA513A/Vivitar Vivicam 55" }, - { "093a", "020f", "Bullet Line Photo Viewer" }, - { "093a", "050f", "Mars-Semi Pc-Camera" }, - { "093a", "2460", "Q-TEC WEBCAM 100" }, - { "093a", "2468", "SoC PC-Camera" }, - { "093a", "2470", "SoC PC-Camera" }, - { "093a", "2471", "SoC PC-Camera" }, - { "093a", "2500", "USB Optical Mouse" }, - { "093a", "2510", "Optical Mouse" }, - { "093a", "2521", "Optical Mouse" }, - { "093a", "2600", "Typhoon Easycam USB 330K (newer)/Typhoon Easycam USB 2.0 VGA 1.3M/Sansun SN-508" }, - { "093a", "2601", "SPC 610NC Laptop Camera" }, - { "093a", "2603", "PAC7312 Camera" }, - { "093a", "2608", "PAC7311 Trust WB-3300p" }, - { "093a", "260e", "PAC7311 Gigaware VGA PC Camera:Trust WB-3350p:SIGMA cam 2350" }, - { "093a", "260f", "PAC7311 SnakeCam" }, - { "093a", "2621", "PAC731x Trust Webcam" }, - { "093a", "2622", "Webcam Genius" }, - { "093a", "2624", "Webcam" }, - { "093a", "2628", "Webcam Genius iLook 300" }, - { "093a", "2700", "GE 1.3 MP MiniCam Pro" }, - { "093b", "0010", "Storage Adapter" }, - { "093b", "0011", "PlexWriter 40/12/40U" }, - { "093b", "0012", "PlexWriter 48/24/48U" }, - { "093b", "0041", "PX-708A DVD RW" }, - { "093b", "0042", "PX-712UF DVD RW" }, - { "093b", "a002", "ConvertX M402U XLOADER" }, - { "093b", "a003", "ConvertX AV100U A/V Capture Audio" }, - { "093b", "a004", "ConvertX TV402U XLOADER" }, - { "093b", "a005", "ConvertX TV100U A/V Capture" }, - { "093b", "a102", "ConvertX M402U A/V Capture" }, - { "093b", "a104", "ConvertX PX-TV402U/NA" }, - { "093c", "0601", "ValueCAN" }, - { "093c", "0701", "NeoVI Blue vehicle bus interface" }, - { "0944", "0001", "PXR4 4-Track Digital Recorder" }, - { "0944", "0020", "KAOSS Pad KP3 Dynamic Effect/Sampler" }, - { "0944", "0023", "KAOSSILATOR PRO Dynamic Phrase Synthesizer" }, - { "0944", "010d", "nanoKEY MIDI keyboard" }, - { "0944", "010e", "nanoPAD pad controller" }, - { "0944", "010f", "nanoKONTROL studio controller" }, - { "0944", "0117", "nanoKONTROL2 MIDI Controller" }, - { "0944", "0f03", "K-Series K61P MIDI studio controller" }, - { "0948", "0301", "USB Pro (24/48)" }, - { "0948", "0302", "USB Pro (24/96 playback)" }, - { "0948", "0303", "USB Pro (24/96 record)" }, - { "0948", "0304", "USB Pro (16/48)" }, - { "0948", "1105", "USB One" }, - { "094b", "0001", "neonode N2" }, - { "094f", "0101", "U640MO-03" }, - { "094f", "05fc", "METALWEAR-HDD" }, - { "0951", "0008", "Ethernet" }, - { "0951", "000a", "KNU101TX 100baseTX Ethernet" }, - { "0951", "1539", "Iron Key D300 (Virtual CD-ROM and USB Stick)" }, - { "0951", "1600", "DataTraveler II Pen Drive" }, - { "0951", "1601", "DataTraveler II+ Pen Drive" }, - { "0951", "1602", "DataTraveler Mini" }, - { "0951", "1603", "DataTraveler 1GB/2GB Pen Drive" }, - { "0951", "1606", "Eee PC 701 SD Card Reader [ENE UB6225]" }, - { "0951", "1607", "DataTraveler 100" }, - { "0951", "160b", "DataTraveler 2.0 (2GB)" }, - { "0951", "160d", "DataTraveler Vault Privacy" }, - { "0951", "160e", "DT110P/1GB Capless" }, - { "0951", "1613", "DataTraveler DT101C Flash Drive" }, - { "0951", "1616", "DataTraveler Locker 4GB" }, - { "0951", "161a", "Dell HyperVisor internal flash drive" }, - { "0951", "1621", "DataTraveler 150 (32GB)" }, - { "0951", "1624", "DataTraveler G2" }, - { "0951", "1625", "DataTraveler 101 II" }, - { "0951", "162a", "DataTraveler 112 4GB Pen Drive" }, - { "0951", "162b", "DataTraveler HyperX 3.0" }, - { "0951", "162d", "DataTraveler 102" }, - { "0951", "1630", "DataTraveler 200 (32GB)" }, - { "0951", "1642", "DT101 G2" }, - { "0951", "1643", "DataTraveler G3" }, - { "0951", "1653", "Data Traveler 100 G2 8 GiB" }, - { "0951", "1656", "DataTraveler Ultimate G2" }, - { "0951", "1660", "Data Traveller 108" }, - { "0951", "1665", "Digital DataTraveler SE9" }, - { "0951", "1666", "DataTraveler 100 G3/G4/SE9 G2/50" }, - { "0951", "1689", "DataTraveler SE9" }, - { "0951", "168a", "DataTraveler Micro" }, - { "0951", "168c", "DT Elite 3.0" }, - { "0951", "16a4", "HyperX 7.1 Audio" }, - { "0951", "16b3", "HyperX Savage" }, - { "0951", "16d2", "HX-KB4BL1-US [HYPERX Alloy FPS Pro]" }, - { "0951", "16d4", "HyperX SavageEXO [0382]" }, - { "0951", "16d5", "DataTraveler Elite G2" }, - { "0951", "16df", "HyperX QuadCast" }, - { "0951", "16e4", "HyperX Pulsefire Raid" }, - { "0955", "7005", "Bootloader" }, - { "0955", "7018", "T186 [Tegra Parker]" }, - { "0955", "701a", "U-Boot running on Tegra" }, - { "0955", "7020", "L4T (Linux for Tegra) running on Tegra" }, - { "0955", "7030", "T30 [Tegra 3] recovery mode" }, - { "0955", "7100", "Tegra Device" }, - { "0955", "7140", "T124 [Tegra K1/Logan 32-bit]" }, - { "0955", "7210", "SHIELD Controller" }, - { "0955", "7321", "Switch [Tegra Erista] recovery mode" }, - { "0955", "7721", "T210 [TX1 Tegra Erista] recovery mode" }, - { "0955", "7820", "T20 [Tegra 2] recovery mode" }, - { "0955", "7c18", "T186 [TX2 Tegra Parker] recovery mode" }, - { "0955", "b400", "SHIELD (debug)" }, - { "0955", "b401", "SHIELD" }, - { "0955", "cf05", "SHIELD Tablet (debug)" }, - { "0955", "cf06", "SHIELD Tablet" }, - { "0955", "cf07", "SHIELD Tablet" }, - { "0955", "cf08", "SHIELD Tablet" }, - { "0955", "cf09", "SHIELD Tablet" }, - { "0957", "0200", "E-Video DC-350 Camera" }, - { "0957", "0202", "E-Video DC-350 Camera" }, - { "0957", "0407", "33220A Waveform Generator" }, - { "0957", "0518", "82357B GPIB Interface" }, - { "0957", "0a07", "34411A Multimeter" }, - { "0957", "1507", "33210A Waveform Generator" }, - { "0957", "1745", "Test and Measurement Device (IVI)" }, - { "0957", "1f01", "N5181A MXG Analog Signal Generator" }, - { "0957", "2918", "U2702A oscilloscope" }, - { "0957", "fb18", "LC Device" }, - { "0959", "2bd0", "Intelligent ISDN (Ver. 3.60.04) [HFC-S]" }, - { "095a", "3003", "Express Ethernet" }, - { "095d", "0001", "Polycom ViaVideo" }, - { "0967", "0204", "WarpLink 802.11b Adapter" }, - { "096e", "0005", "ePass2000" }, - { "096e", "0006", "HID Dongle (for OEMs - manufacturer string is \"OEM\")" }, - { "096e", "0120", "Microcosm Ltd Dinkey" }, - { "096e", "0305", "ePass2000Auto" }, - { "096e", "0309", "ePass3000GM" }, - { "096e", "0401", "ePass3000" }, - { "096e", "0405", "Zzkey Dongle" }, - { "096e", "0608", "SC Reader KP382" }, - { "096e", "0702", "ePass3003" }, - { "096e", "0703", "ePass3003Auto" }, - { "096e", "0802", "ePass2000 (G&D STARCOS SPK 2.4)" }, - { "096e", "0807", "ePass2003" }, - { "0971", "2000", "i1 Pro" }, - { "0971", "2001", "i1 Monitor" }, - { "0971", "2003", "Eye-One display" }, - { "0971", "2005", "Huey" }, - { "0971", "2007", "ColorMunki Photo" }, - { "0973", "0001", "e-gate Smart Card" }, - { "0979", "0222", "Keychain Display" }, - { "0979", "0224", "JL2005A Toy Camera" }, - { "0979", "0226", "JL2005A Toy Camera" }, - { "0979", "0227", "JL2005B/C/D Toy Camera" }, - { "097a", "0001", "Digital Wallet" }, - { "097e", "0035", "MP35 v1.0" }, - { "0984", "0040", "SATA Wire (2.5\")" }, - { "0984", "0200", "Hard Drive Storage (TPP)" }, - { "0984", "1407", "Secure Key 3.0" }, - { "0985", "0045", "Mach4/200 Label Printer" }, - { "0985", "00a3", "A3/200 or A3/300 Label Printer" }, - { "0993", "0001", "REB1100 eBook Reader" }, - { "0993", "0002", "eBook" }, - { "099a", "0638", "Sanwa Supply Inc. Small Keyboard" }, - { "099a", "2620", "Graphics tablet [Polostar PT1001, Zeniq PT1001, Leogics PT1001]" }, - { "099a", "610c", "EL-610 Super Mini Electron luminescent Keyboard" }, - { "099a", "6330", "SANWA Supply Inc. Slim Keyboard" }, - { "099a", "713a", "WK-713 Multimedia Keyboard" }, - { "099a", "7160", "Hyper Slim Keyboard" }, - { "09a6", "8001", "Mass Storage Device" }, - { "09aa", "1000", "Prism GT 802.11b/g Adapter" }, - { "09aa", "3642", "Prism 2.x 802.11b Adapter" }, - { "09ae", "0002", "Any Device (see discussion)" }, - { "09b0", "2400", "HDP5000" }, - { "09b2", "0001", "eBookman Palm Computer" }, - { "09bc", "0002", "MPaxx MP150 MP3 Player" }, - { "09be", "0001", "MySmartPad" }, - { "09bf", "00c0", "COMpact 2104 ISDN PBX" }, - { "09bf", "00db", "COMpact 4410/2206 ISDN" }, - { "09bf", "00dc", "COMpact 4406 DSL (PBX)" }, - { "09bf", "00dd", "COMpact 2204 (PBX)" }, - { "09bf", "00de", "COMpact 2104 (Rev.2 PBX)" }, - { "09bf", "00e0", "COMmander Business (PBX)" }, - { "09bf", "00e2", "COMmander Basic.2 (PBX)" }, - { "09bf", "00f1", "COMfort 2000 (System telephone)" }, - { "09bf", "00f2", "COMfort 1200 (System telephone)" }, - { "09bf", "00f5", "COMfortel 2500 (System telephone)" }, - { "09bf", "8000", "COMpact 2104 DSL (DSL modem)" }, - { "09bf", "8001", "COMpact 4406 DSL (DSL modem)" }, - { "09bf", "8002", "Analog/ISDN Converter (Line converter)" }, - { "09bf", "8005", "WG-640 (Automatic event dialer)" }, - { "09c0", "0136", "Axon CNS, MultiClamp 700B" }, - { "09c0", "0202", "8PSK DVB-S tuner" }, - { "09c0", "0203", "Skywalker-1 DVB-S tuner" }, - { "09c0", "0204", "Skywalker-CW3K DVB-S tuner" }, - { "09c0", "0205", "Skywalker-CW3K DVB-S tuner" }, - { "09c0", "0206", "Skywalker-2 DVB-S tuner" }, - { "09c1", "1337", "TOUCHSTONE DEVICE" }, - { "09c3", "0007", "Reader V2" }, - { "09c3", "0008", "ZFG-9800-AC SmartCard Reader" }, - { "09c3", "0014", "ActivIdentity ActivKey SIM USB Token" }, - { "09c3", "0028", "Crescendo Key" }, - { "09c3", "0029", "Crescendo Key" }, - { "09c3", "002a", "Crescendo Key" }, - { "09c3", "002b", "Crescendo Key" }, - { "09c3", "002c", "Crescendo Key" }, - { "09c3", "002e", "Crescendo Key" }, - { "09c4", "0011", "ACT-IR2000U IrDA Dongle" }, - { "09ca", "5544", "PIO" }, - { "09cb", "1001", "Network Adapter" }, - { "09cb", "1002", "Ex-Series RNDIS interface" }, - { "09cb", "1004", "Ex-Series UVC interface" }, - { "09cb", "1005", "Ex-Series RNDIS and UVC interface" }, - { "09cb", "1006", "Ex-Series RNDIS and MSD interface" }, - { "09cb", "1007", "Ex-Series UVC and MSD interface" }, - { "09cb", "1008", "Serial Port" }, - { "09cb", "1996", "FLIR ONE Camera" }, - { "09cb", "4007", "Breach" }, - { "09cc", "0404", "BAFO USB-ATA/ATAPI Bridge Controller" }, - { "09cd", "2001", "Psion WaveFinder DAB radio receiver" }, - { "09d3", "0001", "ISDN TA / Light Rider 128K" }, - { "09d3", "000b", "Bluetooth Adapter class 2" }, - { "09d7", "0100", "GPS/GNSS/SPAN sensor" }, - { "09d8", "0320", "TWN3 Multi125" }, - { "09d8", "0406", "TWN4 MIFARE NFC" }, - { "09da", "0006", "Optical Mouse WOP-35 / Trust 450L Optical Mouse" }, - { "09da", "000a", "Optical Mouse Opto 510D / OP-620D" }, - { "09da", "000e", "X-F710F Optical Mouse 3xFire Gaming Mouse" }, - { "09da", "0018", "Trust Human Interface Device" }, - { "09da", "001a", "Wireless Mouse & RXM-15 Receiver" }, - { "09da", "002a", "Wireless Optical Mouse NB-30" }, - { "09da", "022b", "Wireless Mouse (Battery Free)" }, - { "09da", "024f", "RF Receiver and G6-20D Wireless Optical Mouse" }, - { "09da", "0260", "KV-300H Isolation Keyboard" }, - { "09da", "032b", "Wireless Mouse (Battery Free)" }, - { "09da", "09da", "Bloody V8 Mouse" }, - { "09da", "1068", "Bloody A90 Mouse" }, - { "09da", "112c", "Bloody V5 Mouse" }, - { "09da", "3a60", "Bloody V8M Core 2 Mouse" }, - { "09da", "8090", "X-718BK Oscar Optical Gaming Mouse" }, - { "09da", "9033", "X-718BK Optical Mouse" }, - { "09da", "9066", "F3 V-Track Gaming Mouse" }, - { "09da", "9090", "XL-730K / XL-750BK / XL-755BK Mice" }, - { "09da", "f613", "Bloody V7M Mouse" }, - { "09db", "0075", "MiniLab 1008" }, - { "09db", "0076", "PMD-1024" }, - { "09db", "007a", "PMD-1208LS" }, - { "09db", "0081", "USB-1616FS" }, - { "09db", "0082", "USB-1208FS" }, - { "09db", "0088", "USB-1616FS internal hub" }, - { "09e1", "5121", "MicroLink dLAN" }, - { "09e8", "0045", "MPK Mini Mk II MIDI Controller" }, - { "09e8", "0062", "MPD16 MIDI Pad Controller Unit" }, - { "09e8", "006d", "EWI electronic wind instrument" }, - { "09e8", "0071", "MPK25 MIDI Keyboard" }, - { "09e8", "0076", "LPK25 MIDI Keyboard" }, - { "09eb", "4331", "iRhythm Tuner Remote" }, - { "09ef", "0101", "MD-Port DG2 MiniDisc Interface" }, - { "09f3", "0018", "GF-46 Multi-Mode Display Module" }, - { "09f3", "0028", "RP-48 Combination Pushbutton-Rotary Module" }, - { "09f3", "0048", "LGTII - Landing Gear and Trim Control Module" }, - { "09f3", "0064", "MCPPro - Airliner Mode Control Panel (Autopilot)" }, - { "09f3", "0300", "EFIS - Electronic Flight Information System" }, - { "09f5", "0168", "Network Adapter" }, - { "09f5", "0188", "LAN Adapter" }, - { "09f5", "0850", "Adapter" }, - { "09fb", "6001", "Blaster" }, - { "0a05", "0001", "Hub" }, - { "0a05", "7211", "hub" }, - { "0a07", "0064", "ADU100 Data Acquisition Interface" }, - { "0a07", "0078", "ADU120 Data Acquisition Interface" }, - { "0a07", "0082", "ADU130 Data Acquisition Interface" }, - { "0a07", "00c8", "ADU200 Relay I/O Interface" }, - { "0a07", "00d0", "ADU208 Relay I/O Interface" }, - { "0a07", "00da", "ADU218 Solid-State Relay I/O Interface" }, - { "0a0d", "2514", "CTS-1000 Internal Hub" }, - { "0a12", "0001", "Bluetooth Dongle (HCI mode)" }, - { "0a12", "0002", "Frontline Test Equipment Bluetooth Device" }, - { "0a12", "0003", "Nanosira" }, - { "0a12", "0004", "Nanosira WHQL Reference Radio" }, - { "0a12", "0005", "Nanosira-Multimedia" }, - { "0a12", "0006", "Nanosira-Multimedia WHQL Reference Radio" }, - { "0a12", "0007", "Nanosira3-ROM" }, - { "0a12", "0008", "Nanosira3-ROM" }, - { "0a12", "0009", "Nanosira4-EDR WHQL Reference Radio" }, - { "0a12", "000a", "Nanosira4-EDR-ROM" }, - { "0a12", "000b", "Nanosira5-ROM" }, - { "0a12", "0042", "SPI Converter" }, - { "0a12", "0043", "Bluetooth Device" }, - { "0a12", "0100", "Casira with BlueCore2-External Module" }, - { "0a12", "0101", "Casira with BlueCore2-Flash Module" }, - { "0a12", "0102", "Casira with BlueCore3-Multimedia Module" }, - { "0a12", "0103", "Casira with BlueCore3-Flash Module" }, - { "0a12", "0104", "Casira with BlueCore4-External Module" }, - { "0a12", "0105", "Casira with BlueCore4-Multimedia Module" }, - { "0a12", "1000", "Bluetooth Dongle (HID proxy mode)" }, - { "0a12", "1010", "Bluetooth Device" }, - { "0a12", "1011", "Bluetooth Device" }, - { "0a12", "1012", "Bluetooth Device" }, - { "0a12", "ffff", "USB Bluetooth Device in DFU State" }, - { "0a16", "1111", "ThumbDrive" }, - { "0a16", "8888", "IBM USB Memory Key" }, - { "0a16", "9988", "Trek2000 TD-G2" }, - { "0a17", "0004", "Optio 330" }, - { "0a17", "0006", "Optio S / S4" }, - { "0a17", "0007", "Optio 550" }, - { "0a17", "0009", "Optio 33WR" }, - { "0a17", "000a", "Optio 555" }, - { "0a17", "000c", "Optio 43WR (mass storage mode)" }, - { "0a17", "000d", "Optio 43WR" }, - { "0a17", "0015", "Optio S40/S5i" }, - { "0a17", "003b", "Optio 50 (mass storage mode)" }, - { "0a17", "003d", "Optio S55" }, - { "0a17", "0041", "Optio S5z" }, - { "0a17", "0043", "*ist DL" }, - { "0a17", "0047", "Optio S60" }, - { "0a17", "0052", "Optio 60 Digital Camera" }, - { "0a17", "006e", "K10D" }, - { "0a17", "0070", "K100D" }, - { "0a17", "0093", "K200D" }, - { "0a17", "00a7", "Optio E50" }, - { "0a17", "1001", "EI2000 Camera powered by Digita!" }, - { "0a21", "8001", "MMT-7305WW [Medtronic Minimed CareLink]" }, - { "0a27", "0102", "SP35" }, - { "0a2c", "0008", "GPIO Ports" }, - { "0a34", "0101", "TG82tp" }, - { "0a34", "0110", "Deck 82-key backlit keyboard" }, - { "0a35", "002a", "SAC - Software Assigned Controller" }, - { "0a35", "008a", "SAC Hub" }, - { "0a3a", "0163", "KN-W510U 1.0 Wireless LAN Adapter" }, - { "0a46", "0268", "ST268" }, - { "0a46", "6688", "ZT6688 Fast Ethernet Adapter" }, - { "0a46", "8515", "ADMtek ADM8515 NIC" }, - { "0a46", "9000", "DM9000E Fast Ethernet Adapter" }, - { "0a46", "9601", "DM9601 Fast Ethernet Adapter" }, - { "0a48", "3233", "Multimedia Card Reader" }, - { "0a48", "3239", "Multimedia Card Reader" }, - { "0a48", "3258", "Dane Elec zMate SD Reader" }, - { "0a48", "3259", "Dane Elec zMate CF Reader" }, - { "0a48", "5000", "MediaGear xD-SM" }, - { "0a48", "500a", "Mass Storage Device" }, - { "0a48", "500f", "Mass Storage Device" }, - { "0a48", "5010", "Mass Storage Device" }, - { "0a48", "5011", "Mass Storage Device" }, - { "0a48", "5014", "Mass Storage Device" }, - { "0a48", "5020", "Mass Storage Device" }, - { "0a48", "5021", "Mass Storage Device" }, - { "0a48", "5022", "Mass Storage Device" }, - { "0a48", "5023", "Mass Storage Device" }, - { "0a48", "5024", "Mass Storage Device" }, - { "0a48", "5025", "Mass Storage Device" }, - { "0a4a", "a400", "AUDIO JUNCTION 2.0" }, - { "0a4c", "15d9", "OPTICAL MOUSE" }, - { "0a4d", "0064", "MK-225 Driver" }, - { "0a4d", "0065", "MK-225C Driver" }, - { "0a4d", "0066", "MK-225C Driver" }, - { "0a4d", "0067", "MK-425C Driver" }, - { "0a4d", "0078", "MK-37 Driver" }, - { "0a4d", "0079", "MK-37C Driver" }, - { "0a4d", "007a", "MK-37C Driver" }, - { "0a4d", "008c", "TerraTec MIDI MASTER" }, - { "0a4d", "008d", "MK-249C Driver" }, - { "0a4d", "008e", "MK-249C MIDI Keyboard" }, - { "0a4d", "008f", "MK-449C Driver" }, - { "0a4d", "0090", "Keystation 49e Driver" }, - { "0a4d", "0091", "Keystation 61es Driver" }, - { "0a4d", "00a0", "MK-361 Driver" }, - { "0a4d", "00a1", "MK-361C Driver" }, - { "0a4d", "00a2", "MK-361C Driver" }, - { "0a4d", "00a3", "MK-461C MIDI Keyboard" }, - { "0a4d", "00b5", "Keystation Pro 88 Driver" }, - { "0a4d", "00d2", "E-Keys Driver" }, - { "0a4d", "00f0", "UC-16 Driver" }, - { "0a4d", "00f1", "X-Session Driver" }, - { "0a4d", "00f5", "UC-33e MIDI Controller" }, - { "0a53", "1000", "Scanner" }, - { "0a53", "2000", "Q-Scan A6 Scanner" }, - { "0a53", "2001", "Q-Scan A6 Scanner" }, - { "0a53", "2013", "Media Drive A6 Scanner" }, - { "0a53", "2014", "Media Drive A6 Scanner" }, - { "0a53", "2015", "BizCardReader 600C" }, - { "0a53", "2016", "BizCardReader 600C" }, - { "0a53", "202a", "Scanshell-CSSN" }, - { "0a53", "3000", "Q-Scan A8 Scanner" }, - { "0a53", "3002", "Q-Scan A8 Reader" }, - { "0a53", "3015", "BizCardReader 300G" }, - { "0a53", "302a", "LM9832 - PA570 Mini Business Card Scanner [Targus]" }, - { "0a53", "5001", "BizCardReader 900C" }, - { "0a5c", "0201", "iLine10(tm) Network Adapter" }, - { "0a5c", "0bdc", "802.11a/b/g/n/ac Wireless Adapter" }, - { "0a5c", "2000", "Bluetooth Device" }, - { "0a5c", "2001", "Bluetooth Device" }, - { "0a5c", "2009", "BCM2035 Bluetooth" }, - { "0a5c", "200a", "BCM2035 Bluetooth dongle" }, - { "0a5c", "200f", "Bluetooth Controller" }, - { "0a5c", "201d", "Bluetooth Device" }, - { "0a5c", "201e", "IBM Integrated Bluetooth IV" }, - { "0a5c", "2020", "Bluetooth dongle" }, - { "0a5c", "2021", "BCM2035B3 Bluetooth Adapter" }, - { "0a5c", "2033", "BCM2033 Bluetooth" }, - { "0a5c", "2035", "BCM2035 Bluetooth" }, - { "0a5c", "2038", "Blutonium Device" }, - { "0a5c", "2039", "BCM2045 Bluetooth" }, - { "0a5c", "2045", "Bluetooth Controller" }, - { "0a5c", "2046", "Bluetooth Device" }, - { "0a5c", "2047", "Bluetooth Device" }, - { "0a5c", "205e", "Bluetooth Device" }, - { "0a5c", "2100", "Bluetooth 2.0+eDR dongle" }, - { "0a5c", "2101", "BCM2045 Bluetooth" }, - { "0a5c", "2102", "ANYCOM Blue USB-200/250" }, - { "0a5c", "2110", "BCM2045B (BDC-2) [Bluetooth Controller]" }, - { "0a5c", "2111", "ANYCOM Blue USB-UHE 200/250" }, - { "0a5c", "2120", "2045 Bluetooth 2.0 USB-UHE Device with trace filter" }, - { "0a5c", "2121", "BCM2210 Bluetooth" }, - { "0a5c", "2122", "Bluetooth 2.0+EDR dongle" }, - { "0a5c", "2123", "Bluetooth dongle" }, - { "0a5c", "2130", "2045 Bluetooth 2.0 USB-UHE Device with trace filter" }, - { "0a5c", "2131", "2045 Bluetooth 2.0 Device with trace filter" }, - { "0a5c", "2145", "BCM2045B (BDC-2.1) [Bluetooth Controller]" }, - { "0a5c", "2148", "BCM92046DG-CL1ROM Bluetooth 2.1 Adapter" }, - { "0a5c", "2150", "BCM2046 Bluetooth Device" }, - { "0a5c", "2151", "Bluetooth" }, - { "0a5c", "2154", "BCM92046DG-CL1ROM Bluetooth 2.1 UHE Dongle" }, - { "0a5c", "216a", "BCM43142A0 Bluetooth" }, - { "0a5c", "216c", "BCM43142A0 Bluetooth Device" }, - { "0a5c", "216d", "BCM43142A0 Bluetooth 4.0" }, - { "0a5c", "216f", "BCM20702A0 Bluetooth" }, - { "0a5c", "217d", "HP Bluethunder" }, - { "0a5c", "217f", "BCM2045B (BDC-2.1)" }, - { "0a5c", "2198", "Bluetooth 3.0 Device" }, - { "0a5c", "219b", "Bluetooth 2.1 Device" }, - { "0a5c", "21b1", "HP Bluetooth Module" }, - { "0a5c", "21b4", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21b9", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21ba", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21bb", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21bc", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21bd", "BCM2070 Bluetooth 2.1 + EDR" }, - { "0a5c", "21d7", "BCM43142 Bluetooth 4.0" }, - { "0a5c", "21e1", "HP Portable SoftSailing" }, - { "0a5c", "21e3", "HP Portable Valentine" }, - { "0a5c", "21e6", "BCM20702 Bluetooth 4.0 [ThinkPad]" }, - { "0a5c", "21e8", "BCM20702A0 Bluetooth 4.0" }, - { "0a5c", "21ec", "BCM20702A0 Bluetooth 4.0" }, - { "0a5c", "21f1", "HP Portable Bumble Bee" }, - { "0a5c", "22be", "BCM2070 Bluetooth 3.0 + HS" }, - { "0a5c", "4500", "BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)" }, - { "0a5c", "4502", "Keyboard (Boot Interface Subclass)" }, - { "0a5c", "4503", "Mouse (Boot Interface Subclass)" }, - { "0a5c", "5800", "BCM5880 Secure Applications Processor" }, - { "0a5c", "5801", "BCM5880 Secure Applications Processor with fingerprint swipe sensor" }, - { "0a5c", "5802", "BCM5880 Secure Applications Processor with fingerprint touch sensor" }, - { "0a5c", "5803", "BCM5880 Secure Applications Processor with secure keyboard" }, - { "0a5c", "5804", "BCM5880 Secure Applications Processor with fingerprint swipe sensor" }, - { "0a5c", "6300", "Pirelli Remote NDIS Device" }, - { "0a5c", "6410", "BCM20703A1 Bluetooth 4.1 + LE" }, - { "0a5c", "bd11", "BCM4320 802.11bg Wireless Adapter" }, - { "0a5c", "bd12", "BCM4326U 802.11bg Wireless Adapter" }, - { "0a5c", "bd13", "BCM4323 802.11abgn Wireless Adapter" }, - { "0a5c", "bd16", "BCM4319 802.11bgn Wireless Adapter" }, - { "0a5c", "bd17", "BCM43236 802.11abgn Wireless Adapter" }, - { "0a5c", "bd1d", "BCM43526 802.11a/b/g/n/ac (2x2) Wireless Adapter" }, - { "0a5c", "bd1e", "BCM43143 802.11bgn (1x1) Wireless Adapter" }, - { "0a5c", "bd1f", "BCM43242 802.11abgn Wireless Adapter" }, - { "0a5c", "d11b", "Eminent EM4045 [Broadcom 4320 USB]" }, - { "0a5f", "0009", "LP2844 Printer" }, - { "0a5f", "0050", "P120i / WM120i" }, - { "0a5f", "0080", "GK420d Label Printer" }, - { "0a5f", "0081", "GK420t Label Printer" }, - { "0a5f", "0084", "GX420d Desktop Label Printer" }, - { "0a5f", "008b", "HC100 wristbands Printer" }, - { "0a5f", "008c", "ZP 450 Printer" }, - { "0a5f", "00d1", "Zebra GC420d Label Printer" }, - { "0a5f", "0110", "ZD500 Desktop Label Printer" }, - { "0a5f", "930a", "Printer" }, - { "0a62", "0010", "MPMan MP-F40 MP3 Player" }, - { "0a6b", "0001", "Compact Flash R/W with MP3 player" }, - { "0a6b", "000f", "FlashDisk" }, - { "0a6f", "0400", "Xanboo" }, - { "0a71", "0001", "VP485 Printer" }, - { "0a73", "0002", "XD-2 [Spike]" }, - { "0a81", "0101", "Keyboard" }, - { "0a81", "0103", "Keyboard" }, - { "0a81", "0203", "Mouse" }, - { "0a81", "0205", "PS/2 Keyboard+Mouse Adapter" }, - { "0a81", "0701", "USB Missile Launcher" }, - { "0a81", "ff01", "Wireless Missile Launcher" }, - { "0a82", "4600", "TravelScan 460/464" }, - { "0a82", "6605", "ScanShell 800N" }, - { "0a89", "0001", "Guardant Stealth/Net" }, - { "0a89", "0002", "Guardant ID" }, - { "0a89", "0003", "Guardant Stealth 2" }, - { "0a89", "0004", "Rutoken" }, - { "0a89", "0005", "Guardant Fidus" }, - { "0a89", "0006", "Guardant Stealth 3" }, - { "0a89", "0007", "Guardant Stealth 2" }, - { "0a89", "0008", "Guardant Stealth 3 Sign/Time" }, - { "0a89", "0009", "Guardant Code" }, - { "0a89", "000a", "Guardant Sign Pro" }, - { "0a89", "000b", "Guardant Sign Pro HID" }, - { "0a89", "000c", "Guardant Stealth 3 Sign/Time" }, - { "0a89", "000d", "Guardant Code HID" }, - { "0a89", "000f", "Guardant System Firmware Update" }, - { "0a89", "0020", "Rutoken S" }, - { "0a89", "0025", "Rutoken lite" }, - { "0a89", "0026", "Rutoken lite HID" }, - { "0a89", "002a", "Rutoken Mass Storage" }, - { "0a89", "002b", "Guardant Mass Storage" }, - { "0a89", "0030", "Rutoken ECP" }, - { "0a89", "0040", "Rutoken ECP HID" }, - { "0a89", "0060", "Rutoken Magistra" }, - { "0a89", "0061", "Rutoken Magistra" }, - { "0a89", "0069", "Reader" }, - { "0a89", "0080", "Rutoken PinPad Ex" }, - { "0a89", "0081", "Rutoken PinPad In" }, - { "0a89", "0082", "Rutoken PinPad 2" }, - { "0a8e", "2011", "Filter Driver For JAE XMC R/W" }, - { "0a91", "3801", "Targus PAKP003 Mouse" }, - { "0a92", "0011", "SYS WaveTerminal U2A" }, - { "0a92", "0021", "GIGAPort" }, - { "0a92", "0031", "GIGAPortAG" }, - { "0a92", "0053", "AudioTrak Optoplay" }, - { "0a92", "0061", "Waveterminal U24" }, - { "0a92", "0071", "MAYA EX7" }, - { "0a92", "0091", "Maya 44" }, - { "0a92", "00b1", "MAYA EX5" }, - { "0a92", "1000", "MIDI Mate" }, - { "0a92", "1010", "RoMI/O" }, - { "0a92", "1020", "M4U" }, - { "0a92", "1030", "M8U" }, - { "0a92", "1090", "KeyControl49" }, - { "0a92", "10a0", "KeyControl25" }, - { "0a93", "0002", "C-Pen 10" }, - { "0a93", "0005", "MyPen Light" }, - { "0a93", "000d", "Input Pen" }, - { "0a93", "0010", "C-Pen 20" }, - { "0a93", "0a93", "PayPen" }, - { "0aa5", "0002", "irock! 500 Series" }, - { "0aa5", "0801", "MP3 Player" }, - { "0aa6", "0101", "Hercules Jukebox" }, - { "0aa6", "1501", "Store 'n' Go HD Drive" }, - { "0aa7", "0100", "POS Keyboard, TA58P-USB" }, - { "0aa7", "0101", "POS Keyboard, TA85P-USB" }, - { "0aa7", "0102", "POS Keyboard, TA59-USB" }, - { "0aa7", "0103", "POS Keyboard, TA60-USB" }, - { "0aa7", "0104", "SNIkey Keyboard, SNIKey-KB-USB" }, - { "0aa7", "0200", "Operator Display, BA63-USB" }, - { "0aa7", "0201", "Operator Display, BA66-USB" }, - { "0aa7", "0202", "Operator Display & Scanner, XiCheck-BA63" }, - { "0aa7", "0203", "Operator Display & Scanner, XiCheck-BA66" }, - { "0aa7", "0204", "Graphics Operator Display, BA63GV" }, - { "0aa7", "0300", "POS Printer (printer class mode), TH210" }, - { "0aa7", "0301", "POS Printer (native mode), TH210" }, - { "0aa7", "0302", "POS Printer (printer class mode), TH220" }, - { "0aa7", "0303", "POS Printer (native mode), TH220" }, - { "0aa7", "0304", "POS Printer, TH230" }, - { "0aa7", "0305", "Lottery Printer, XiPrintPlus" }, - { "0aa7", "0306", "POS Printer (printer class mode), TH320" }, - { "0aa7", "0307", "POS Printer (native mode), TH320" }, - { "0aa7", "0308", "POS Printer (printer class mode), TH420" }, - { "0aa7", "0309", "POS Printer (native mode), TH420" }, - { "0aa7", "030a", "POS Printer, TH200B" }, - { "0aa7", "0400", "Lottery Scanner, Xiscan S" }, - { "0aa7", "0401", "Lottery Scanner, Xiscan 3" }, - { "0aa7", "0402", "Programmable Magnetic Swipe Card Reader, MSRP-USB" }, - { "0aa7", "0500", "IDE Adapter" }, - { "0aa7", "0501", "Hub Printer Interface" }, - { "0aa7", "0502", "Hub SNIKey Keyboard" }, - { "0aa7", "4304", "Banking Printer TP07" }, - { "0aa7", "4305", "Banking Printer TP07c" }, - { "0aa7", "4500", "WN Central Special Electronics" }, - { "0aa8", "0060", "TG 11Mbps WLAN Mini Adapter" }, - { "0aa8", "1001", "DreamComboM4100" }, - { "0aa8", "3002", "InkJet Color Printer" }, - { "0aa8", "8001", "TG_iMON" }, - { "0aa8", "8002", "TG_KLOSS" }, - { "0aa8", "a001", "TG_X2" }, - { "0aa8", "a002", "TGVFD_KLOSS" }, - { "0aa8", "ffda", "iMON_VFD" }, - { "0aa9", "f01b", "Medion MD 6242 MP3 Player" }, - { "0aad", "0003", "NRP-Z21" }, - { "0aad", "000c", "NRP-Z11" }, - { "0aad", "0013", "NRP-Z22" }, - { "0aad", "0014", "NRP-Z23" }, - { "0aad", "0015", "NRP-Z24" }, - { "0aad", "0016", "NRP-Z51" }, - { "0aad", "0017", "NRP-Z52" }, - { "0aad", "0018", "NRP-Z55" }, - { "0aad", "0019", "NRP-Z56" }, - { "0aad", "0021", "NRP-Z91" }, - { "0aad", "0023", "NRP-Z81" }, - { "0aad", "002c", "NRP-Z31" }, - { "0aad", "002d", "NRP-Z37" }, - { "0aad", "002f", "NRP-Z27" }, - { "0aad", "0051", "NRP-Z28" }, - { "0aad", "0052", "NRP-Z98" }, - { "0aad", "0062", "NRP-Z92" }, - { "0aad", "0070", "NRP-Z57" }, - { "0aad", "0083", "NRP-Z85" }, - { "0aad", "0095", "NRP-Z86" }, - { "0aad", "0117", "HMF / HMP / HMS-X / HMO series Oscilloscopes" }, - { "0aad", "0118", "HMF / HMP / HMS-X / HMO series Oscilloscopes" }, - { "0aad", "0119", "HMF / HMP / HMS-X / HMO series Oscilloscopes" }, - { "0ab1", "0002", "OBID RFID-Reader" }, - { "0ab1", "0004", "OBID classic-pro" }, - { "0aba", "8001", "Tracker 110 Protocol Analyzer" }, - { "0aba", "8002", "Explorer 200 Protocol Analyzer" }, - { "0abe", "0101", "SL1200 DAC" }, - { "0abf", "3370", "I2C/SPI Adapter - U2C-12" }, - { "0ac8", "0301", "Web Camera" }, - { "0ac8", "0302", "ZC0302 Webcam" }, - { "0ac8", "0321", "Vimicro generic vc0321 Camera" }, - { "0ac8", "0323", "Luxya WC-1200 USB 2.0 Webcam" }, - { "0ac8", "0328", "A4Tech PK-130MG" }, - { "0ac8", "0336", "Elecom UCAM-DLQ30" }, - { "0ac8", "301b", "ZC0301 Webcam" }, - { "0ac8", "303b", "ZC0303 Webcam" }, - { "0ac8", "305b", "ZC0305 Webcam" }, - { "0ac8", "307b", "USB 1.1 Webcam" }, - { "0ac8", "332d", "Vega USB 2.0 Camera" }, - { "0ac8", "3343", "Sirius USB 2.0 Camera" }, - { "0ac8", "3370", "Traveler TV 6500 SF Dia-scanner" }, - { "0ac8", "3420", "Venus USB2.0 Camera" }, - { "0ac8", "c001", "Sony embedded vimicro Camera" }, - { "0ac8", "c002", "Visual Communication Camera VGP-VCC1" }, - { "0ac8", "c302", "Vega USB 2.0 Camera" }, - { "0ac8", "c303", "Saturn USB 2.0 Camera" }, - { "0ac8", "c326", "Namuga 1.3M Webcam" }, - { "0ac8", "c33f", "Webcam" }, - { "0ac8", "c412", "Lenovo IdeaCentre Web Camera" }, - { "0ac8", "c429", "Lenovo ThinkCentre Web Camera" }, - { "0ac8", "c42d", "Lenovo IdeaCentre Web Camera" }, - { "0ac9", "0000", "Backpack CD-ReWriter" }, - { "0ac9", "0001", "BACKPACK 2 Cable" }, - { "0ac9", "0010", "BACKPACK" }, - { "0ac9", "0011", "Backpack 40GB Hard Drive" }, - { "0ac9", "0110", "BACKPACK" }, - { "0ac9", "0111", "BackPack" }, - { "0ac9", "1234", "BACKPACK" }, - { "0aca", "1060", "OPEN NT1 Plus II" }, - { "0acd", "0300", "IDT1221U RS-232 Adapter" }, - { "0acd", "0401", "Spectrum III Hybrid Smartcard Reader" }, - { "0acd", "0630", "Spectrum III Mag-Only Insert Reader (SPT3-355 Series) USB-CDC" }, - { "0acd", "0810", "SecurePIN (IDPA-506100Y) PIN Pad" }, - { "0acd", "2030", "ValueMag Magnetic Stripe Reader" }, - { "0acd", "3710", "ViVOpay Kiosk III" }, - { "0ace", "1201", "ZD1201 802.11b" }, - { "0ace", "1211", "ZD1211 802.11g" }, - { "0ace", "1215", "ZD1211B 802.11g" }, - { "0ace", "1221", "ZD1221 802.11n" }, - { "0ace", "1602", "ZyXEL Omni FaxModem 56K" }, - { "0ace", "1608", "ZyXEL Omni FaxModem 56K UNO" }, - { "0ace", "1611", "ZyXEL Omni FaxModem 56K Plus" }, - { "0ace", "2011", "Virtual media for 802.11bg" }, - { "0ace", "20ff", "Virtual media for 802.11bg" }, - { "0ace", "a211", "ZD1211 802.11b/g Wireless Adapter" }, - { "0ace", "b215", "802.11bg" }, - { "0ada", "0005", "DK2" }, - { "0aec", "2101", "SmartMedia Card Reader" }, - { "0aec", "2102", "CompactFlash Card Reader" }, - { "0aec", "2103", "MMC/SD Card Reader" }, - { "0aec", "2104", "MemoryStick Card Reader" }, - { "0aec", "2201", "SmartMedia+CompactFlash Card Reader" }, - { "0aec", "2202", "SmartMedia+MMC/SD Card Reader" }, - { "0aec", "2203", "SmartMedia+MemoryStick Card Reader" }, - { "0aec", "2204", "CompactFlash+MMC/SD Card Reader" }, - { "0aec", "2205", "CompactFlash+MemoryStick Card Reader" }, - { "0aec", "2206", "MMC/SD+MemoryStick Card Reader" }, - { "0aec", "2301", "SmartMedia+CompactFlash+MMC/SD Card Reader" }, - { "0aec", "2302", "SmartMedia+CompactFlash+MemoryStick Card Reader" }, - { "0aec", "2303", "SmartMedia+MMC/SD+MemoryStick Card Reader" }, - { "0aec", "2304", "CompactFlash+MMC/SD+MemoryStick Card Reader" }, - { "0aec", "3016", "MMC/SD+Memory Stick Card Reader" }, - { "0aec", "3050", "ND3050 8-in-1 Card Reader" }, - { "0aec", "3060", "1.1 FS Card Reader" }, - { "0aec", "3101", "MMC/SD Card Reader" }, - { "0aec", "3102", "MemoryStick Card Reader" }, - { "0aec", "3201", "MMC/SD+MemoryStick Card Reader" }, - { "0aec", "3216", "HS Card Reader" }, - { "0aec", "3260", "7-in-1 Card Reader" }, - { "0aec", "5010", "ND5010 Card Reader" }, - { "0af0", "5000", "UMTS Card" }, - { "0af0", "6000", "GlobeTrotter 3G datacard" }, - { "0af0", "6300", "GT 3G Quad UMTS/GPRS Card" }, - { "0af0", "6600", "GlobeTrotter 3G+ datacard" }, - { "0af0", "6711", "GlobeTrotter Express 7.2 v2" }, - { "0af0", "6971", "Globetrotter HSDPA Modem" }, - { "0af0", "7251", "Globetrotter HSUPA Modem (aka iCON HSUPA E)" }, - { "0af0", "7501", "Globetrotter HSUPA Modem (icon 411 aka \"Vodafone K3760\")" }, - { "0af0", "7601", "Globetrotter MO40x 3G Modem (GTM 382)" }, - { "0af0", "7701", "Globetrotter HSUPA Modem (aka icon 451)" }, - { "0af0", "d055", "Globetrotter GI0505 [iCON 505]" }, - { "0af7", "0101", "Digital TV USB Receiver (DVB-S/T/C / ATSC)" }, - { "0af9", "0010", "USB SightCam 100" }, - { "0af9", "0011", "Micro Innovations IC50C Webcam" }, - { "0afa", "07d2", "Controller Board for Projected Capacitive Touch Screen DUS3000" }, - { "0b05", "0001", "MeMO Pad HD 7 (CD-ROM mode)" }, - { "0b05", "0301", "MyPal A696 GPS PDA" }, - { "0b05", "1101", "Mass Storage (UISDMC4S)" }, - { "0b05", "1706", "WL-167G v1 802.11g Adapter [Ralink RT2571]" }, - { "0b05", "1707", "WL-167G v1 802.11g Adapter [Ralink RT2571]" }, - { "0b05", "1708", "Mass Storage Device" }, - { "0b05", "170b", "Multi card reader" }, - { "0b05", "170c", "WL-159g 802.11bg [ZyDAS ZD1211B+AL2230]" }, - { "0b05", "170d", "802.11b/g Wireless Network Adapter" }, - { "0b05", "1712", "BT-183 Bluetooth 2.0+EDR adapter" }, - { "0b05", "1715", "2045 Bluetooth 2.0 Device with trace filter" }, - { "0b05", "1716", "Bluetooth Device" }, - { "0b05", "1717", "WL169gE 802.11g Adapter [Broadcom 4320 USB]" }, - { "0b05", "171b", "A9T wireless 802.11bg" }, - { "0b05", "171c", "802.11b/g Wireless Network Adapter" }, - { "0b05", "171f", "My Cinema U3000 Mini [DiBcom DiB7700P]" }, - { "0b05", "1723", "WL-167G v2 802.11g Adapter [Ralink RT2571W]" }, - { "0b05", "1724", "RT2573" }, - { "0b05", "1726", "Laptop OLED Display" }, - { "0b05", "172a", "802.11n Network Adapter" }, - { "0b05", "172b", "802.11n Network Adapter" }, - { "0b05", "1731", "802.11n Network Adapter" }, - { "0b05", "1732", "802.11n Network Adapter" }, - { "0b05", "1734", "AF-200" }, - { "0b05", "173c", "BT-183 Bluetooth 2.0" }, - { "0b05", "173f", "My Cinema U3100 Mini" }, - { "0b05", "1742", "802.11n Network Adapter" }, - { "0b05", "1743", "Xonar U1 Audio Station" }, - { "0b05", "1751", "BT-253 Bluetooth Adapter" }, - { "0b05", "175b", "Laptop OLED Display" }, - { "0b05", "1760", "802.11n Network Adapter" }, - { "0b05", "1761", "USB-N11 802.11n Network Adapter [Ralink RT2870]" }, - { "0b05", "1774", "Gobi Wireless Modem (QDL mode)" }, - { "0b05", "1776", "Gobi Wireless Modem" }, - { "0b05", "1779", "My Cinema U3100 Mini Plus [AF9035A]" }, - { "0b05", "1784", "USB-N13 802.11n Network Adapter (rev. A1) [Ralink RT3072]" }, - { "0b05", "1786", "USB-N10 802.11n Network Adapter [Realtek RTL8188SU]" }, - { "0b05", "1788", "BT-270 Bluetooth Adapter" }, - { "0b05", "1791", "WL-167G v3 802.11n Adapter [Realtek RTL8188SU]" }, - { "0b05", "179c", "Bluetooth Adapter" }, - { "0b05", "179d", "USB-N53 802.11abgn Network Adapter [Ralink RT3572]" }, - { "0b05", "179e", "Eee Note EA800 (network mode)" }, - { "0b05", "179f", "Eee Note EA800 (tablet mode)" }, - { "0b05", "17a0", "Xonar U3 sound card" }, - { "0b05", "17a1", "Eee Note EA800 (mass storage mode)" }, - { "0b05", "17ab", "USB-N13 802.11n Network Adapter (rev. B1) [Realtek RTL8192CU]" }, - { "0b05", "17ba", "N10 Nano 802.11n Network Adapter [Realtek RTL8192CU]" }, - { "0b05", "17c2", "ROG Spitfire" }, - { "0b05", "17c7", "WL-330NUL" }, - { "0b05", "17c9", "USB-AC53 802.11a/b/g/n/ac Wireless Adapter [Broadcom BCM43526]" }, - { "0b05", "17cb", "Broadcom BCM20702A0 Bluetooth" }, - { "0b05", "17d1", "AC51 802.11a/b/g/n/ac Wireless Adapter [Mediatek MT7610U]" }, - { "0b05", "17d2", "USB-AC56 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU]" }, - { "0b05", "17d3", "USB-N10 v2 802.11b/g/n Wireless Adapter [MediaTek MT7601U]" }, - { "0b05", "17db", "USB-AC50 802.11a/b/g/n/ac (1x1) Wireless Adapter [MediaTek MT7610U]" }, - { "0b05", "17e8", "USB-N14 802.11b/g/n (2x2) Wireless Adapter [Ralink RT5372]" }, - { "0b05", "17eb", "USB-AC55 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7612U]" }, - { "0b05", "17f5", "Xonar U5 sound card" }, - { "0b05", "180a", "Broadcom BCM20702 Single-Chip Bluetooth 4.0 + LE" }, - { "0b05", "1817", "USB-AC68 802.11a/b/g/n/ac (4x4) Wireless Adapter [Realtek RTL8814AU]" }, - { "0b05", "1825", "Qualcomm Bluetooth 4.1" }, - { "0b05", "18f0", "Realtek 8188EUS [USB-N10 Nano]" }, - { "0b05", "4c80", "Transformer Pad TF300TG" }, - { "0b05", "4c90", "Transformer Pad Infinity TF700" }, - { "0b05", "4c91", "Transformer Pad Infinity TF700 (Debug mode)" }, - { "0b05", "4ca0", "Transformer Pad TF701T" }, - { "0b05", "4ca1", "Transformer Pad TF701T (Debug mode)" }, - { "0b05", "4d00", "Transformer Prime TF201" }, - { "0b05", "4d01", "Transformer Prime TF201 (debug mode)" }, - { "0b05", "4daf", "Transformer Pad Infinity TF700 (Fastboot)" }, - { "0b05", "5410", "MeMO Pad HD 7 (MTP mode)" }, - { "0b05", "5412", "MeMO Pad HD 7 (PTP mode)" }, - { "0b05", "550f", "Fonepad 7" }, - { "0b05", "6101", "Cable Modem" }, - { "0b05", "620a", "Remote NDIS Device" }, - { "0b05", "7772", "Zenfone GO (ZB500KL) (MTP mode)" }, - { "0b05", "7773", "Zenfone GO (ZB500KL) (Debug, MTP mode)" }, - { "0b05", "7774", "Zenfone GO (ZB500KL) (RNDIS mode)" }, - { "0b05", "7775", "Zenfone GO (ZB500KL) (Debug, RNDIS mode)" }, - { "0b05", "7776", "Zenfone GO (ZB500KL) (PTP mode)" }, - { "0b05", "7777", "Zenfone GO (ZB500KL) (Debug, PTP mode)" }, - { "0b05", "b700", "Broadcom Bluetooth 2.1" }, - { "0b0b", "106e", "Datamax E-4304" }, - { "0b0c", "0009", "Todos Argos Mini II Smart Card Reader" }, - { "0b0c", "001e", "e.dentifier2 (ABN AMRO electronic banking card reader NL)" }, - { "0b0c", "002e", "C200 smartcard controller (Nordea card reader)" }, - { "0b0c", "003f", "Todos C400 smartcard controller (Handelsbanken card reader)" }, - { "0b0c", "0050", "Argos Mini II Smart Card Reader (CCID)" }, - { "0b0d", "0000", "CenturyCD" }, - { "0b0e", "0305", "Jabra EVOLVE Link MS" }, - { "0b0e", "0311", "Jabra EVOLVE 65" }, - { "0b0e", "0312", "enc060:Buttons Volume up/down/mute + phone [Jabra]" }, - { "0b0e", "0343", "Jabra UC VOICE 150a" }, - { "0b0e", "0348", "Jabra UC VOICE 550a MS" }, - { "0b0e", "034c", "Jabra UC Voice 750 MS" }, - { "0b0e", "034d", "Jabra UC VOICE 750" }, - { "0b0e", "0410", "Jabra SPEAK 410" }, - { "0b0e", "0420", "Jabra SPEAK 510" }, - { "0b0e", "0422", "Jabra SPEAK 510 USB" }, - { "0b0e", "0933", "Jabra Freeway" }, - { "0b0e", "094d", "GN Netcom / Jabra REVO Wireless" }, - { "0b0e", "1017", "Jabra PRO 930" }, - { "0b0e", "1022", "Jabra PRO 9450, Type 9400BS (DECT Headset)" }, - { "0b0e", "1041", "Jabra PRO 9460" }, - { "0b0e", "1900", "Jabra Biz 1900" }, - { "0b0e", "2007", "GN 2000 Stereo Corded Headset" }, - { "0b0e", "2456", "Jabra SPEAK 810" }, - { "0b0e", "245e", "Jabra Link 370" }, - { "0b0e", "620c", "Jabra BT620s" }, - { "0b0e", "9330", "Jabra GN9330 Headset" }, - { "0b0e", "a346", "Jabra Engage 75 Stereo" }, - { "0b0e", "a50a", "Alienware Wireless Gaming Headset AW988" }, - { "0b0f", "0400", "DNxID" }, - { "0b1e", "8007", "Blackhawk USB560-BP JTAG Emulator" }, - { "0b30", "0006", "SM Media-Shuttle Card Reader" }, - { "0b33", "0020", "ShuttleXpress" }, - { "0b33", "0030", "ShuttlePro v2" }, - { "0b33", "0401", "RollerMouse Free 2" }, - { "0b33", "0700", "RollerMouse Pro" }, - { "0b33", "08a0", "Perfit Mouse" }, - { "0b33", "1000", "RollerMouse Red" }, - { "0b33", "1010", "Vidamic Technomouse IQ" }, - { "0b38", "0003", "Keyboard" }, - { "0b38", "0010", "107-Key Keyboard" }, - { "0b39", "0001", "Composite USB PS2 Converter" }, - { "0b39", "0109", "USB TO Ethernet" }, - { "0b39", "0421", "Serial" }, - { "0b39", "0801", "USB-Parallel Bridge" }, - { "0b39", "0901", "OCT To Fast Ethernet Converter" }, - { "0b39", "0c03", "LAN DOCK Serial Converter" }, - { "0b3b", "0163", "TL-WN320G 1.0 WLAN Adapter" }, - { "0b3b", "1601", "Allnet 0193 802.11b Adapter" }, - { "0b3b", "1602", "ZyXEL ZyAIR B200 802.11b Adapter" }, - { "0b3b", "1612", "AIR.Mate 2@net 802.11b Adapter" }, - { "0b3b", "1613", "802.11b Wireless LAN Adapter" }, - { "0b3b", "1620", "Allnet Wireless Network Adapter [Envara WiND512]" }, - { "0b3b", "1630", "QuickWLAN 802.11bg" }, - { "0b3b", "5630", "802.11bg" }, - { "0b3b", "6630", "ZD1211" }, - { "0b3c", "a010", "Simple_Way Printer/Scanner/Copier" }, - { "0b3c", "c000", "Olicard 100" }, - { "0b3c", "c700", "Olicard 100 (Mass Storage mode)" }, - { "0b41", "0011", "Crossam2+USB IR commander" }, - { "0b43", "0003", "PS2 Controller Converter" }, - { "0b43", "0005", "GameCube Adaptor" }, - { "0b48", "1003", "Technotrend/Hauppauge USB-Nova" }, - { "0b48", "1004", "TT-PCline" }, - { "0b48", "1005", "Technotrend/Hauppauge USB-Nova" }, - { "0b48", "1006", "Technotrend/Hauppauge DEC3000-s" }, - { "0b48", "1007", "TT-micro plus Device" }, - { "0b48", "1008", "Technotrend/Hauppauge DEC2000-t" }, - { "0b48", "1009", "Technotrend/Hauppauge DEC2540-t" }, - { "0b48", "3001", "DVB-S receiver" }, - { "0b48", "3002", "DVB-C receiver" }, - { "0b48", "3003", "DVB-T receiver" }, - { "0b48", "3004", "TT TV-Stick" }, - { "0b48", "3005", "TT TV-Stick (8kB EEPROM)" }, - { "0b48", "3006", "TT-connect S-2400 DVB-S receiver" }, - { "0b48", "3007", "TT-connect S2-3600" }, - { "0b48", "3008", "TT-connect" }, - { "0b48", "3009", "TT-connect S-2400 DVB-S receiver (8kB EEPROM)" }, - { "0b48", "300a", "TT-connect S2-3650 CI" }, - { "0b48", "300b", "TT-connect C-3650 CI" }, - { "0b48", "300c", "TT-connect T-3650 CI" }, - { "0b48", "300d", "TT-connect CT-3650 CI" }, - { "0b48", "300e", "TT-connect C-2400" }, - { "0b48", "3011", "TT-connect S2-4600" }, - { "0b48", "3012", "TT-connect CT2-4650 CI" }, - { "0b48", "3014", "TT-TVStick CT2-4400" }, - { "0b48", "3015", "TT-connect CT2-4650 CI" }, - { "0b48", "3017", "TT-connect S2-4650 CI" }, - { "0b49", "064f", "Trance Vibrator" }, - { "0b4b", "0100", "D'music MP3 Player" }, - { "0b4d", "110a", "Graphtec CC200-20" }, - { "0b4d", "1123", "Electronic Cutting Tool [Silhouette Portrait]" }, - { "0b4e", "6500", "MP3 Player" }, - { "0b4e", "8028", "MP3 Player" }, - { "0b4e", "8920", "MP3 Player" }, - { "0b51", "0020", "Comfort Keyboard" }, - { "0b62", "000b", "Bluetooth Device" }, - { "0b62", "0059", "iBOT2 Webcam" }, - { "0b66", "0041", "Xtreme" }, - { "0b67", "555e", "SCB-R9000" }, - { "0b6a", "a132", "WUP-005 [Nintendo Wii U Pro Controller]" }, - { "0b70", "00ba", "iRiver H10 20GB" }, - { "0b7a", "07d0", "Bluetooth Dongle" }, - { "0b81", "0001", "Biothentic II smartcard reader with fingerprint sensor" }, - { "0b81", "0002", "DFU-Enabled Devices (DFU)" }, - { "0b81", "0012", "BioPAD biometric module (DFU + CDC)" }, - { "0b81", "0102", "Certis V1 fingerprint reader" }, - { "0b81", "0103", "Certis V2 fingerprint reader" }, - { "0b81", "0200", "CL1356T / CL1356T5 / CL1356A smartcard readers (CCID)" }, - { "0b81", "0201", "CL1356T / CL1356T5 / CL1356A smartcard readers (DFU + CCID)" }, - { "0b81", "0220", "CL1356A FFPJP smartcard reader (CCID + HID)" }, - { "0b81", "0221", "CL1356A smartcard reader (DFU + CCID + HID)" }, - { "0b86", "5100", "XMC5100 Zippy Drive" }, - { "0b86", "5110", "XMC5110 Flash Drive" }, - { "0b86", "5200", "XMC5200 Zippy Drive" }, - { "0b86", "5201", "XMC5200 Zippy Drive" }, - { "0b86", "5202", "XMC5200 Zippy Drive" }, - { "0b86", "5280", "XMC5280 Storage Drive" }, - { "0b86", "fff0", "ISP5200 Debugger" }, - { "0b8c", "0001", "Interactive Whiteboard Controller (SB6) (HID)" }, - { "0b8c", "00c3", "Sympodium ID350" }, - { "0b95", "1720", "10/100 Ethernet" }, - { "0b95", "1780", "AX88178" }, - { "0b95", "1790", "AX88179 Gigabit Ethernet" }, - { "0b95", "6802", "AX68002 KVM Switch SoC" }, - { "0b95", "7720", "AX88772" }, - { "0b95", "772a", "AX88772A Fast Ethernet" }, - { "0b95", "772b", "AX88772B" }, - { "0b95", "7e2b", "AX88772B Fast Ethernet Controller" }, - { "0b97", "7732", "Smart Card Reader" }, - { "0b97", "7761", "Oz776 1.1 Hub" }, - { "0b97", "7762", "Oz776 SmartCard Reader" }, - { "0b97", "7772", "OZ776 CCID Smartcard Reader" }, - { "0b9b", "4012", "Reflex RC-controller Interface" }, - { "0baf", "00e5", "USR6000" }, - { "0baf", "00eb", "USR1120 802.11b Adapter" }, - { "0baf", "00ec", "56K Faxmodem" }, - { "0baf", "00f1", "SureConnect ADSL ATM Adapter" }, - { "0baf", "00f2", "SureConnect ADSL Loader" }, - { "0baf", "00f5", "SureConnect ADSL ATM Adapter" }, - { "0baf", "00f6", "SureConnect ADSL Loader" }, - { "0baf", "00f7", "SureConnect ADSL ATM Adapter" }, - { "0baf", "00f8", "SureConnect ADSL Loader" }, - { "0baf", "00f9", "SureConnect ADSL ATM Adapter" }, - { "0baf", "00fa", "SureConnect ADSL Loader" }, - { "0baf", "00fb", "SureConnect ADSL Ethernet/USB Router" }, - { "0baf", "0111", "USR5420 802.11g Adapter [Broadcom 4320 USB]" }, - { "0baf", "0118", "U5 802.11g Adapter" }, - { "0baf", "011b", "Wireless MAXg Adapter [Broadcom 4320]" }, - { "0baf", "0121", "USR5423 802.11bg Wireless Adapter [ZyDAS ZD1211B]" }, - { "0baf", "0303", "USR5637 56K Faxmodem" }, - { "0baf", "6112", "FaxModem Model 5633" }, - { "0bb0", "0100", "Sound Vision Stream" }, - { "0bb0", "5007", "3340z/Rollei DC3100" }, - { "0bb2", "0302", "U10H010 802.11b Wireless Adapter [Intersil PRISM 3]" }, - { "0bb2", "6098", "USB Cable Modem" }, - { "0bb4", "0001", "Android Phone via mass storage [Wiko Cink Peax 2]" }, - { "0bb4", "00ce", "mmO2 XDA GSM/GPRS Pocket PC" }, - { "0bb4", "00cf", "SPV C500 Smart Phone" }, - { "0bb4", "0306", "Vive Hub Bluetooth 4.1 (Broadcom BCM920703)" }, - { "0bb4", "0a01", "PocketPC Sync" }, - { "0bb4", "0a02", "Himalaya GSM/GPRS Pocket PC" }, - { "0bb4", "0a03", "PocketPC Sync" }, - { "0bb4", "0a04", "PocketPC Sync" }, - { "0bb4", "0a05", "PocketPC Sync" }, - { "0bb4", "0a06", "PocketPC Sync" }, - { "0bb4", "0a07", "Magician PocketPC SmartPhone / O2 XDA" }, - { "0bb4", "0a08", "PocketPC Sync" }, - { "0bb4", "0a09", "PocketPC Sync" }, - { "0bb4", "0a0a", "PocketPC Sync" }, - { "0bb4", "0a0b", "PocketPC Sync" }, - { "0bb4", "0a0c", "PocketPC Sync" }, - { "0bb4", "0a0d", "PocketPC Sync" }, - { "0bb4", "0a0e", "PocketPC Sync" }, - { "0bb4", "0a0f", "PocketPC Sync" }, - { "0bb4", "0a10", "PocketPC Sync" }, - { "0bb4", "0a11", "PocketPC Sync" }, - { "0bb4", "0a12", "PocketPC Sync" }, - { "0bb4", "0a13", "PocketPC Sync" }, - { "0bb4", "0a14", "PocketPC Sync" }, - { "0bb4", "0a15", "PocketPC Sync" }, - { "0bb4", "0a16", "PocketPC Sync" }, - { "0bb4", "0a17", "PocketPC Sync" }, - { "0bb4", "0a18", "PocketPC Sync" }, - { "0bb4", "0a19", "PocketPC Sync" }, - { "0bb4", "0a1a", "PocketPC Sync" }, - { "0bb4", "0a1b", "PocketPC Sync" }, - { "0bb4", "0a1c", "PocketPC Sync" }, - { "0bb4", "0a1d", "PocketPC Sync" }, - { "0bb4", "0a1e", "PocketPC Sync" }, - { "0bb4", "0a1f", "PocketPC Sync" }, - { "0bb4", "0a20", "PocketPC Sync" }, - { "0bb4", "0a21", "PocketPC Sync" }, - { "0bb4", "0a22", "PocketPC Sync" }, - { "0bb4", "0a23", "PocketPC Sync" }, - { "0bb4", "0a24", "PocketPC Sync" }, - { "0bb4", "0a25", "PocketPC Sync" }, - { "0bb4", "0a26", "PocketPC Sync" }, - { "0bb4", "0a27", "PocketPC Sync" }, - { "0bb4", "0a28", "PocketPC Sync" }, - { "0bb4", "0a29", "PocketPC Sync" }, - { "0bb4", "0a2a", "PocketPC Sync" }, - { "0bb4", "0a2b", "PocketPC Sync" }, - { "0bb4", "0a2c", "PocketPC Sync" }, - { "0bb4", "0a2d", "PocketPC Sync" }, - { "0bb4", "0a2e", "PocketPC Sync" }, - { "0bb4", "0a2f", "PocketPC Sync" }, - { "0bb4", "0a30", "PocketPC Sync" }, - { "0bb4", "0a31", "PocketPC Sync" }, - { "0bb4", "0a32", "PocketPC Sync" }, - { "0bb4", "0a33", "PocketPC Sync" }, - { "0bb4", "0a34", "PocketPC Sync" }, - { "0bb4", "0a35", "PocketPC Sync" }, - { "0bb4", "0a36", "PocketPC Sync" }, - { "0bb4", "0a37", "PocketPC Sync" }, - { "0bb4", "0a38", "PocketPC Sync" }, - { "0bb4", "0a39", "PocketPC Sync" }, - { "0bb4", "0a3a", "PocketPC Sync" }, - { "0bb4", "0a3b", "PocketPC Sync" }, - { "0bb4", "0a3c", "PocketPC Sync" }, - { "0bb4", "0a3d", "PocketPC Sync" }, - { "0bb4", "0a3e", "PocketPC Sync" }, - { "0bb4", "0a3f", "PocketPC Sync" }, - { "0bb4", "0a40", "PocketPC Sync" }, - { "0bb4", "0a41", "PocketPC Sync" }, - { "0bb4", "0a42", "PocketPC Sync" }, - { "0bb4", "0a43", "PocketPC Sync" }, - { "0bb4", "0a44", "PocketPC Sync" }, - { "0bb4", "0a45", "PocketPC Sync" }, - { "0bb4", "0a46", "PocketPC Sync" }, - { "0bb4", "0a47", "PocketPC Sync" }, - { "0bb4", "0a48", "PocketPC Sync" }, - { "0bb4", "0a49", "PocketPC Sync" }, - { "0bb4", "0a4a", "PocketPC Sync" }, - { "0bb4", "0a4b", "PocketPC Sync" }, - { "0bb4", "0a4c", "PocketPC Sync" }, - { "0bb4", "0a4d", "PocketPC Sync" }, - { "0bb4", "0a4e", "PocketPC Sync" }, - { "0bb4", "0a4f", "PocketPC Sync" }, - { "0bb4", "0a50", "SmartPhone (MTP)" }, - { "0bb4", "0a51", "SPV C400 / T-Mobile SDA GSM/GPRS Pocket PC" }, - { "0bb4", "0a52", "SmartPhone Sync" }, - { "0bb4", "0a53", "SmartPhone Sync" }, - { "0bb4", "0a54", "SmartPhone Sync" }, - { "0bb4", "0a55", "SmartPhone Sync" }, - { "0bb4", "0a56", "SmartPhone Sync" }, - { "0bb4", "0a57", "SmartPhone Sync" }, - { "0bb4", "0a58", "SmartPhone Sync" }, - { "0bb4", "0a59", "SmartPhone Sync" }, - { "0bb4", "0a5a", "SmartPhone Sync" }, - { "0bb4", "0a5b", "SmartPhone Sync" }, - { "0bb4", "0a5c", "SmartPhone Sync" }, - { "0bb4", "0a5d", "SmartPhone Sync" }, - { "0bb4", "0a5e", "SmartPhone Sync" }, - { "0bb4", "0a5f", "SmartPhone Sync" }, - { "0bb4", "0a60", "SmartPhone Sync" }, - { "0bb4", "0a61", "SmartPhone Sync" }, - { "0bb4", "0a62", "SmartPhone Sync" }, - { "0bb4", "0a63", "SmartPhone Sync" }, - { "0bb4", "0a64", "SmartPhone Sync" }, - { "0bb4", "0a65", "SmartPhone Sync" }, - { "0bb4", "0a66", "SmartPhone Sync" }, - { "0bb4", "0a67", "SmartPhone Sync" }, - { "0bb4", "0a68", "SmartPhone Sync" }, - { "0bb4", "0a69", "SmartPhone Sync" }, - { "0bb4", "0a6a", "SmartPhone Sync" }, - { "0bb4", "0a6b", "SmartPhone Sync" }, - { "0bb4", "0a6c", "SmartPhone Sync" }, - { "0bb4", "0a6d", "SmartPhone Sync" }, - { "0bb4", "0a6e", "SmartPhone Sync" }, - { "0bb4", "0a6f", "SmartPhone Sync" }, - { "0bb4", "0a70", "SmartPhone Sync" }, - { "0bb4", "0a71", "SmartPhone Sync" }, - { "0bb4", "0a72", "SmartPhone Sync" }, - { "0bb4", "0a73", "SmartPhone Sync" }, - { "0bb4", "0a74", "SmartPhone Sync" }, - { "0bb4", "0a75", "SmartPhone Sync" }, - { "0bb4", "0a76", "SmartPhone Sync" }, - { "0bb4", "0a77", "SmartPhone Sync" }, - { "0bb4", "0a78", "SmartPhone Sync" }, - { "0bb4", "0a79", "SmartPhone Sync" }, - { "0bb4", "0a7a", "SmartPhone Sync" }, - { "0bb4", "0a7b", "SmartPhone Sync" }, - { "0bb4", "0a7c", "SmartPhone Sync" }, - { "0bb4", "0a7d", "SmartPhone Sync" }, - { "0bb4", "0a7e", "SmartPhone Sync" }, - { "0bb4", "0a7f", "SmartPhone Sync" }, - { "0bb4", "0a80", "SmartPhone Sync" }, - { "0bb4", "0a81", "SmartPhone Sync" }, - { "0bb4", "0a82", "SmartPhone Sync" }, - { "0bb4", "0a83", "SmartPhone Sync" }, - { "0bb4", "0a84", "SmartPhone Sync" }, - { "0bb4", "0a85", "SmartPhone Sync" }, - { "0bb4", "0a86", "SmartPhone Sync" }, - { "0bb4", "0a87", "SmartPhone Sync" }, - { "0bb4", "0a88", "SmartPhone Sync" }, - { "0bb4", "0a89", "SmartPhone Sync" }, - { "0bb4", "0a8a", "SmartPhone Sync" }, - { "0bb4", "0a8b", "SmartPhone Sync" }, - { "0bb4", "0a8c", "SmartPhone Sync" }, - { "0bb4", "0a8d", "SmartPhone Sync" }, - { "0bb4", "0a8e", "SmartPhone Sync" }, - { "0bb4", "0a8f", "SmartPhone Sync" }, - { "0bb4", "0a90", "SmartPhone Sync" }, - { "0bb4", "0a91", "SmartPhone Sync" }, - { "0bb4", "0a92", "SmartPhone Sync" }, - { "0bb4", "0a93", "SmartPhone Sync" }, - { "0bb4", "0a94", "SmartPhone Sync" }, - { "0bb4", "0a95", "SmartPhone Sync" }, - { "0bb4", "0a96", "SmartPhone Sync" }, - { "0bb4", "0a97", "SmartPhone Sync" }, - { "0bb4", "0a98", "SmartPhone Sync" }, - { "0bb4", "0a99", "SmartPhone Sync" }, - { "0bb4", "0a9a", "SmartPhone Sync" }, - { "0bb4", "0a9b", "SmartPhone Sync" }, - { "0bb4", "0a9c", "SmartPhone Sync" }, - { "0bb4", "0a9d", "SmartPhone Sync" }, - { "0bb4", "0a9e", "SmartPhone Sync" }, - { "0bb4", "0a9f", "SmartPhone Sync" }, - { "0bb4", "0b03", "Ozone Mobile Broadband" }, - { "0bb4", "0b04", "Hermes / TyTN / T-Mobile MDA Vario II / O2 Xda Trion" }, - { "0bb4", "0b05", "P3600" }, - { "0bb4", "0b06", "Athena / Advantage x7500 / Dopod U1000 / T-Mobile AMEO" }, - { "0bb4", "0b0c", "Elf / Touch / P3450 / T-Mobile MDA Touch / O2 Xda Nova / Dopod S1" }, - { "0bb4", "0b1f", "Sony Ericsson XPERIA X1" }, - { "0bb4", "0b2f", "Rhodium" }, - { "0bb4", "0b51", "Qtek 8310 mobile phone [Tornado Noble]" }, - { "0bb4", "0bce", "Vario MDA" }, - { "0bb4", "0c01", "Dream / ADP1 / G1 / Magic / Tattoo / FP1" }, - { "0bb4", "0c02", "Dream / ADP1 / G1 / Magic / Tattoo (Debug)" }, - { "0bb4", "0c03", "Android Phone [Fairphone First Edition (FP1)]" }, - { "0bb4", "0c13", "Diamond" }, - { "0bb4", "0c1f", "Sony Ericsson XPERIA X1" }, - { "0bb4", "0c5f", "Snap" }, - { "0bb4", "0c86", "Sensation" }, - { "0bb4", "0c87", "Desire (debug)" }, - { "0bb4", "0c8d", "EVO 4G (debug)" }, - { "0bb4", "0c91", "Vision" }, - { "0bb4", "0c94", "Vision" }, - { "0bb4", "0c97", "Legend" }, - { "0bb4", "0c99", "Desire (debug)" }, - { "0bb4", "0c9e", "Incredible" }, - { "0bb4", "0ca2", "Desire HD (debug mode)" }, - { "0bb4", "0ca5", "Android Phone [Evo Shift 4G]" }, - { "0bb4", "0cab", "Desire / Desire HD / Hero / Thunderbolt (HTC Sync Mode)" }, - { "0bb4", "0cae", "T-Mobile MyTouch 4G Slide [Doubleshot]" }, - { "0bb4", "0de5", "One (M7)" }, - { "0bb4", "0dea", "M7_UL [HTC One]" }, - { "0bb4", "0f25", "One M8" }, - { "0bb4", "0f63", "Desire 610 Via MTP" }, - { "0bb4", "0f64", "Desire 601" }, - { "0bb4", "0fb4", "Remote NDIS based Device" }, - { "0bb4", "0ff0", "One Mini (M4)" }, - { "0bb4", "0ff8", "Desire HD (Tethering Mode)" }, - { "0bb4", "0ff9", "Desire / Desire HD / Hero / Thunderbolt (Charge Mode)" }, - { "0bb4", "0ffe", "Desire HD (modem mode)" }, - { "0bb4", "0fff", "Android Fastboot Bootloader" }, - { "0bb4", "2008", "Android Phone via MTP [MT65xx]" }, - { "0bb4", "200b", "Android Phone via PTP [Wiko Cink Peax 2]" }, - { "0bb4", "2134", "Vive Hub (SMSC USB2137B)" }, - { "0bb4", "2744", "Vive Hub (HTC CB USB2)" }, - { "0bb4", "2c87", "Vive" }, - { "0bc2", "0502", "ST3300601CB-RK 300 GB External Hard Drive" }, - { "0bc2", "0503", "ST3250824A [Barracuda 7200.9]" }, - { "0bc2", "2000", "Storage Adapter V3 (TPP)" }, - { "0bc2", "2100", "FreeAgent Go" }, - { "0bc2", "2200", "FreeAgent Go FW" }, - { "0bc2", "2300", "Expansion Portable" }, - { "0bc2", "231a", "Expansion Portable" }, - { "0bc2", "231c", "Expansion Portable" }, - { "0bc2", "2320", "USB 3.0 bridge [Portable Expansion Drive]" }, - { "0bc2", "2321", "Expansion Portable" }, - { "0bc2", "2322", "SRD0NF1 Expansion Portable (STEA)" }, - { "0bc2", "2340", "FreeAgent External Hard Drive" }, - { "0bc2", "3000", "FreeAgent Desktop" }, - { "0bc2", "3008", "FreeAgent Desk 1TB" }, - { "0bc2", "3101", "FreeAgent XTreme 640GB" }, - { "0bc2", "3312", "SRD00F2 Expansion Desktop Drive (STBV)" }, - { "0bc2", "331a", "Desktop HDD 5TB (ST5000DM000)" }, - { "0bc2", "3320", "SRD00F2 [Expansion Desktop Drive]" }, - { "0bc2", "3322", "SRD0NF2 [Expansion Desktop Drive]" }, - { "0bc2", "3323", "Seagate RSS LLC" }, - { "0bc2", "3332", "Expansion" }, - { "0bc2", "3343", "desktop drive stgy8000400" }, - { "0bc2", "5020", "FreeAgent GoFlex" }, - { "0bc2", "5021", "FreeAgent GoFlex USB 2.0" }, - { "0bc2", "5030", "FreeAgent GoFlex Upgrade Cable STAE104" }, - { "0bc2", "5031", "FreeAgent GoFlex USB 3.0" }, - { "0bc2", "5032", "SATA cable" }, - { "0bc2", "5070", "FreeAgent GoFlex Desk" }, - { "0bc2", "5071", "FreeAgent GoFlex Desk" }, - { "0bc2", "50a1", "FreeAgent GoFlex Desk" }, - { "0bc2", "50a5", "FreeAgent GoFlex Desk USB 3.0" }, - { "0bc2", "5121", "FreeAgent GoFlex" }, - { "0bc2", "5161", "FreeAgent GoFlex dock" }, - { "0bc2", "6126", "Maxtor D3 Station 5TB" }, - { "0bc2", "61b5", "Maxtor HX-M201TCB [M3 Portable 2TB]" }, - { "0bc2", "61b6", "Maxtor HX-M101TCB/GM [M3 Portable 1TB]" }, - { "0bc2", "61b7", "Maxtor M3 Portable" }, - { "0bc2", "a003", "Backup Plus" }, - { "0bc2", "a0a1", "Backup Plus Desktop" }, - { "0bc2", "a0a4", "Backup Plus Desktop Drive" }, - { "0bc2", "aa14", "STJ4000400 [Seagate Basic Portable Drive 4TB]" }, - { "0bc2", "ab00", "Slim Portable Drive" }, - { "0bc2", "ab1e", "Backup Plus Portable Drive" }, - { "0bc2", "ab20", "Backup Plus Portable Drive" }, - { "0bc2", "ab21", "Backup Plus Slim" }, - { "0bc2", "ab24", "Backup Plus Portable Drive" }, - { "0bc2", "ab26", "Backup Plus Slim Portable Drive 1 TB" }, - { "0bc2", "ab28", "Seagate Backup Plus Portable 5TB SRD00F1" }, - { "0bc2", "ab2d", "SRD00F1 [Backup Plus Ultra Slim]" }, - { "0bc2", "ab31", "Backup Plus Desktop Drive (5TB)" }, - { "0bc2", "ab34", "Backup Plus" }, - { "0bc2", "ab38", "Backup Plus Hub (Mass Storage)" }, - { "0bc2", "ab44", "Backup Plus Hub" }, - { "0bc2", "ac20", "Backup Plus Slim 2TB" }, - { "0bc3", "0001", "UMTS-TDD (TD-CDMA) modem" }, - { "0bc7", "0001", "ActiveHome (ACPI-compliant)" }, - { "0bc7", "0002", "Firecracker Interface (ACPI-compliant)" }, - { "0bc7", "0003", "VGA Video Sender (ACPI-compliant)" }, - { "0bc7", "0004", "X10 Receiver" }, - { "0bc7", "0005", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "0006", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "0007", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "0008", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "0009", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "000a", "Wireless Transceiver (ACPI-compliant)" }, - { "0bc7", "000b", "Transceiver (ACPI-compliant)" }, - { "0bc7", "000c", "Transceiver (ACPI-compliant)" }, - { "0bc7", "000d", "Transceiver (ACPI-compliant)" }, - { "0bc7", "000e", "Transceiver (ACPI-compliant)" }, - { "0bc7", "000f", "Transceiver (ACPI-compliant)" }, - { "0bd7", "a021", "Amptek DP4 multichannel signal analyzer" }, - { "0bda", "0103", "USB 2.0 Card Reader" }, - { "0bda", "0104", "Mass Storage Device" }, - { "0bda", "0106", "Mass Storage Device" }, - { "0bda", "0107", "Mass Storage Device" }, - { "0bda", "0108", "Mass Storage Device" }, - { "0bda", "0109", "microSDXC Card Reader [Hama 00091047]" }, - { "0bda", "0111", "RTS5111 Card Reader Controller" }, - { "0bda", "0113", "Mass Storage Device" }, - { "0bda", "0115", "Mass Storage Device (Multicard Reader)" }, - { "0bda", "0116", "RTS5116 Card Reader Controller" }, - { "0bda", "0117", "Mass Storage Device" }, - { "0bda", "0118", "Mass Storage Device" }, - { "0bda", "0119", "Storage Device (SD card reader)" }, - { "0bda", "0129", "RTS5129 Card Reader Controller" }, - { "0bda", "0138", "RTS5138 Card Reader Controller" }, - { "0bda", "0139", "RTS5139 Card Reader Controller" }, - { "0bda", "0151", "Mass Storage Device (Multicard Reader)" }, - { "0bda", "0152", "Mass Storage Device" }, - { "0bda", "0153", "3-in-1 (SD/SDHC/SDXC) Card Reader" }, - { "0bda", "0156", "Mass Storage Device" }, - { "0bda", "0157", "Mass Storage Device" }, - { "0bda", "0158", "USB 2.0 multicard reader" }, - { "0bda", "0159", "RTS5159 Card Reader Controller" }, - { "0bda", "0161", "Mass Storage Device" }, - { "0bda", "0168", "Mass Storage Device" }, - { "0bda", "0169", "Mass Storage Device" }, - { "0bda", "0171", "Mass Storage Device" }, - { "0bda", "0176", "Mass Storage Device" }, - { "0bda", "0178", "Mass Storage Device" }, - { "0bda", "0179", "RTL8188ETV Wireless LAN 802.11n Network Adapter" }, - { "0bda", "0184", "RTS5182 Card Reader" }, - { "0bda", "0186", "Card Reader" }, - { "0bda", "0301", "multicard reader" }, - { "0bda", "0307", "Card Reader" }, - { "0bda", "0316", "Card Reader" }, - { "0bda", "0326", "Card reader" }, - { "0bda", "0411", "Hub" }, - { "0bda", "0811", "Realtek 8812AU/8821AU 802.11ac WLAN Adapter [USB Wireless Dual-Band Adapter 2.4/5Ghz]" }, - { "0bda", "0821", "RTL8821A Bluetooth" }, - { "0bda", "1724", "RTL8723AU 802.11n WLAN Adapter" }, - { "0bda", "1a2b", "RTL8188GU 802.11n WLAN Adapter (Driver CDROM Mode)" }, - { "0bda", "2831", "RTL2831U DVB-T" }, - { "0bda", "2832", "RTL2832U DVB-T" }, - { "0bda", "2838", "RTL2838 DVB-T" }, - { "0bda", "5401", "RTL 8153 USB 3.0 hub with gigabit ethernet" }, - { "0bda", "5411", "RTS5411 Hub" }, - { "0bda", "568c", "Integrated Webcam HD" }, - { "0bda", "570c", "Asus laptop camera" }, - { "0bda", "5730", "HP 2.0MP High Definition Webcam" }, - { "0bda", "5751", "Integrated Webcam" }, - { "0bda", "5775", "HP \"Truevision HD\" laptop camera" }, - { "0bda", "5776", "HP Truevision HD integrated webcam" }, - { "0bda", "57b3", "Acer 640 × 480 laptop camera" }, - { "0bda", "57cc", "HD Webcam - Realtek Semiconductor" }, - { "0bda", "57cf", "HD WebCam" }, - { "0bda", "57da", "Built-In Video Camera" }, - { "0bda", "58c2", "Integrated Webcam HD" }, - { "0bda", "58c8", "Integrated Webcam HD" }, - { "0bda", "8150", "RTL8150 Fast Ethernet Adapter" }, - { "0bda", "8151", "RTL8151 Adapteon Business Mobile Networks BV" }, - { "0bda", "8152", "RTL8152 Fast Ethernet Adapter" }, - { "0bda", "8153", "RTL8153 Gigabit Ethernet Adapter" }, - { "0bda", "8171", "RTL8188SU 802.11n WLAN Adapter" }, - { "0bda", "8172", "RTL8191SU 802.11n WLAN Adapter" }, - { "0bda", "8174", "RTL8192SU 802.11n WLAN Adapter" }, - { "0bda", "8176", "RTL8188CUS 802.11n WLAN Adapter" }, - { "0bda", "8178", "RTL8192CU 802.11n WLAN Adapter" }, - { "0bda", "8179", "RTL8188EUS 802.11n Wireless Network Adapter" }, - { "0bda", "817f", "RTL8188RU 802.11n WLAN Adapter" }, - { "0bda", "8187", "RTL8187 Wireless Adapter" }, - { "0bda", "8189", "RTL8187B Wireless 802.11g 54Mbps Network Adapter" }, - { "0bda", "818b", "RTL8192EU 802.11b/g/n WLAN Adapter" }, - { "0bda", "8192", "RTL8191SU 802.11n Wireless Adapter" }, - { "0bda", "8193", "RTL8192DU 802.11an WLAN Adapter" }, - { "0bda", "8197", "RTL8187B Wireless Adapter" }, - { "0bda", "8198", "RTL8187B Wireless Adapter" }, - { "0bda", "8199", "RTL8187SU 802.11g WLAN Adapter" }, - { "0bda", "8723", "RTL8723A Bluetooth" }, - { "0bda", "8812", "RTL8812AU 802.11a/b/g/n/ac 2T2R DB WLAN Adapter" }, - { "0bda", "8813", "RTL8814AU 802.11a/b/g/n/ac Wireless Adapter" }, - { "0bda", "881a", "RTL8812AU-VS 802.11a/b/g/n/ac 2T2R DB WLAN Adapter" }, - { "0bda", "8821", "RTL8821A Bluetooth" }, - { "0bda", "9210", "RTL9210 M.2 NVME Adapter" }, - { "0bda", "a811", "RTL8811AU 802.11a/b/g/n/ac WLAN Adapter" }, - { "0bda", "b009", "Realtek Bluetooth 4.2 Adapter" }, - { "0bda", "b00a", "Realtek Bluetooth 4.2 Adapter" }, - { "0bda", "b00b", "Realtek Bluetooth 4.2 Adapter" }, - { "0bda", "b023", "RTL8822BE Bluetooth 4.2 Adapter" }, - { "0bda", "b711", "RTL8188GU 802.11n WLAN Adapter (After Modeswitch)" }, - { "0bda", "b720", "RTL8723BU 802.11b/g/n WLAN Adapter" }, - { "0bda", "b723", "RTL8723B Bluetooth" }, - { "0bda", "b728", "RTL8723B Bluetooth" }, - { "0bda", "b72a", "RTL8723B Bluetooth" }, - { "0bda", "b812", "RTL88x2bu [AC1200 Techkey]" }, - { "0bda", "f179", "RTL8188FTV 802.11b/g/n 1T1R 2.4G WLAN Adapter" }, - { "0bdb", "1000", "BV Bluetooth Device" }, - { "0bdb", "1002", "Bluetooth Device 1.2" }, - { "0bdb", "1049", "C3607w Mobile Broadband Module" }, - { "0bdb", "1900", "F3507g Mobile Broadband Module" }, - { "0bdb", "1902", "F3507g v2 Mobile Broadband Module" }, - { "0bdb", "1904", "F3607gw Mobile Broadband Module" }, - { "0bdb", "1905", "F3607gw v2 Mobile Broadband Module" }, - { "0bdb", "1906", "F3607gw v3 Mobile Broadband Module" }, - { "0bdb", "1909", "F3307 v2 Mobile Broadband Module" }, - { "0bdb", "190a", "F3307 Mobile Broadband Module" }, - { "0bdb", "190b", "C3607w v2 Mobile Broadband Module" }, - { "0bdb", "1926", "H5321 gw Mobile Broadband Module" }, - { "0bed", "1100", "CASHFLOW SC" }, - { "0bed", "1101", "Series 2000 Combo Acceptor" }, - { "0bf0", "c010", "EHD100SD" }, - { "0bf1", "0001", "netMod Driver Ver 2.4.17 (CAPI)" }, - { "0bf1", "0002", "netMod Driver Ver 2.4 (CAPI)" }, - { "0bf1", "0003", "netMod Driver Ver 2.4 (CAPI)" }, - { "0bf6", "0103", "Storage Device" }, - { "0bf6", "1234", "Storage Device" }, - { "0bf6", "a000", "Cable 205 (TPP)" }, - { "0bf6", "a001", "Cable 205" }, - { "0bf6", "a002", "IDE Bridge" }, - { "0bf8", "1001", "Fujitsu Pocket Loox 600 PDA" }, - { "0bf8", "1006", "SmartCard Reader 2A" }, - { "0bf8", "1007", "Connect2Air E-5400 802.11g Wireless Adapter" }, - { "0bf8", "1009", "Connect2Air E-5400 D1700 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "0bf8", "100c", "Keyboard FSC KBPC PX" }, - { "0bf8", "100f", "miniCard D2301 802.11bg Wireless Module [SiS 163U]" }, - { "0bf8", "1017", "Keyboard KB SCR" }, - { "0bf8", "101f", "Fujitsu Full HD Pro Webcam" }, - { "0bfb", "0200", "TURBO iDDR Front Panel" }, - { "0bfd", "0004", "USBcan II" }, - { "0bfd", "000b", "Leaf Light HS" }, - { "0bfd", "000e", "Leaf SemiPro HS" }, - { "0c00", "1607", "Apex M500" }, - { "0c08", "0378", "Q 16MB Storage Device" }, - { "0c09", "a5a5", "Litto Version USB2.0" }, - { "0c0a", "6124", "RocketStor 6124V" }, - { "0c0b", "27cb", "6-in-1 Flash Reader and Writer" }, - { "0c0b", "27d7", "Multi Memory reader/writer MD-005" }, - { "0c0b", "27da", "Multi Memory reader/writer MD-005" }, - { "0c0b", "27dc", "Multi Memory reader/writer MD-005" }, - { "0c0b", "27e7", "3,5'' HDD case MD-231" }, - { "0c0b", "27ee", "3,5'' HDD case MD-231" }, - { "0c0b", "2814", "3,5'' HDD case MD-231" }, - { "0c0b", "2815", "3,5'' HDD case MD-231" }, - { "0c0b", "281d", "3,5'' HDD case MD-231" }, - { "0c0b", "5fab", "Storage Adaptor" }, - { "0c0b", "a109", "CF/SM Reader and Writer" }, - { "0c0b", "a10c", "SD/MS Reader and Writer" }, - { "0c0b", "b001", "USB 2.0 Mass Storage IDE adapter" }, - { "0c0b", "b004", "MMC/SD Reader and Writer" }, - { "0c12", "0005", "PSX Vibration Feedback Converter / Intec Wireless Controller for Xbox" }, - { "0c12", "0030", "PSX Vibration Feedback Converter" }, - { "0c12", "700e", "Logic Analyzer (LAP-C-16032)" }, - { "0c12", "8801", "Nyko Xbox Controller" }, - { "0c12", "8802", "Xbox Controller" }, - { "0c12", "8809", "Red Octane Ignition Xbox DDR Pad" }, - { "0c12", "880a", "Pelican Eclipse PL-2023" }, - { "0c12", "8810", "Xbox Controller" }, - { "0c12", "9902", "VibraX" }, - { "0c16", "0002", "RF Technology Receiver" }, - { "0c16", "0003", "RF Technology Receiver" }, - { "0c16", "0008", "RF Technology Receiver" }, - { "0c16", "0080", "eHome Infrared Receiver" }, - { "0c16", "0081", "eHome Infrared Receiver" }, - { "0c1f", "1800", "Tango 2E" }, - { "0c24", "0001", "Bluetooth Adaptor" }, - { "0c24", "0002", "Bluetooth Device2" }, - { "0c24", "0005", "Bluetooth Device(BC04-External)" }, - { "0c24", "000b", "Bluetooth Device(BC04-External)" }, - { "0c24", "000c", "Bluetooth Adaptor" }, - { "0c24", "000e", "Bluetooth Device(BC04-External)" }, - { "0c24", "000f", "Bluetooth Device (V2.0+EDR)" }, - { "0c24", "0010", "Bluetooth Device(BC04-External)" }, - { "0c24", "0012", "Bluetooth Device(BC04-External)" }, - { "0c24", "0018", "Bluetooth Device(BC04-External)" }, - { "0c24", "0019", "Bluetooth Device" }, - { "0c24", "0021", "Bluetooth Device (V2.1+EDR)" }, - { "0c24", "0c24", "Bluetooth Device(SAMPLE)" }, - { "0c24", "ffff", "Bluetooth module with BlueCore in DFU mode" }, - { "0c25", "0310", "Scream Cam" }, - { "0c26", "0018", "USB-Serial Controller [Icom Inc. OPC-478UC]" }, - { "0c26", "002b", "Icom Inc. IC-R30" }, - { "0c27", "232a", "pcProx Plus RFID Reader (CDC serial)" }, - { "0c27", "3bfa", "pcProx Card Reader" }, - { "0c2e", "0007", "Metrologic MS7120 Barcode Scanner (IBM SurePOS mode)" }, - { "0c2e", "0200", "MS7120 Barcode Scanner" }, - { "0c2e", "0204", "Metrologic MS7120 Barcode Scanner (keyboard mode)" }, - { "0c2e", "0206", "Metrologic MS4980 Barcode Scanner" }, - { "0c2e", "0700", "Metrologic MS7120 Barcode Scanner (uni-directional serial mode)" }, - { "0c2e", "0720", "Metrologic MS7120 Barcode Scanner (bi-directional serial mode)" }, - { "0c2e", "0a64", "[Stratos 2700]" }, - { "0c2e", "0b61", "Vuquest 3310g" }, - { "0c2e", "0b6a", "Vuquest 3310 Area-Imaging Scanner" }, - { "0c2e", "0b81", "Barcode scanner Voyager 1400g Series" }, - { "0c30", "6010", "Kona 1400 Cutting Plotter" }, - { "0c40", "8000", "2.4GHz receiver" }, - { "0c44", "0021", "iDEN P2k0 Device" }, - { "0c44", "0022", "iDEN P2k1 Device" }, - { "0c44", "03a2", "iDEN Smartphone" }, - { "0c44", "41d9", "i1 phone" }, - { "0c45", "0011", "EBUDDY" }, - { "0c45", "0520", "MaxTrack Wireless Mouse" }, - { "0c45", "1018", "Compact Flash storage memory card reader" }, - { "0c45", "1020", "Mass Storage Reader" }, - { "0c45", "1028", "Mass Storage Reader" }, - { "0c45", "1030", "Mass Storage Reader" }, - { "0c45", "1031", "Sonix Mass Storage Device" }, - { "0c45", "1032", "Mass Storage Reader" }, - { "0c45", "1033", "Sonix Mass Storage Device" }, - { "0c45", "1034", "Mass Storage Reader" }, - { "0c45", "1035", "Mass Storage Reader" }, - { "0c45", "1036", "Mass Storage Reader" }, - { "0c45", "1037", "Sonix Mass Storage Device" }, - { "0c45", "1050", "CF Card Reader" }, - { "0c45", "1058", "HDD Reader" }, - { "0c45", "1060", "iFlash SM-Direct Card Reader" }, - { "0c45", "1061", "Mass Storage Reader" }, - { "0c45", "1062", "Mass Storage Reader" }, - { "0c45", "1063", "Sonix Mass Storage Device" }, - { "0c45", "1064", "Mass Storage Reader" }, - { "0c45", "1065", "Mass Storage Reader" }, - { "0c45", "1066", "Mass Storage Reader" }, - { "0c45", "1067", "Mass Storage Reader" }, - { "0c45", "1158", "A56AK" }, - { "0c45", "184c", "VoIP Phone" }, - { "0c45", "1a90", "2M pixel Microscope Camera (with capture button) [Andonstar V160]" }, - { "0c45", "5004", "Redragon Mitra RGB Keyboard" }, - { "0c45", "5101", "2.4G Wireless Device [Rii MX3]" }, - { "0c45", "6001", "Genius VideoCAM NB" }, - { "0c45", "6005", "Sweex Mini Webcam" }, - { "0c45", "6007", "VideoCAM Eye" }, - { "0c45", "6009", "VideoCAM ExpressII" }, - { "0c45", "600d", "TwinkleCam USB camera" }, - { "0c45", "6011", "PC Camera (SN9C102)" }, - { "0c45", "6019", "PC Camera (SN9C102)" }, - { "0c45", "6024", "VideoCAM ExpressII" }, - { "0c45", "6025", "VideoCAM ExpressII" }, - { "0c45", "6028", "Typhoon Easycam USB 330K (older)" }, - { "0c45", "6029", "Triplex i-mini PC Camera" }, - { "0c45", "602a", "Meade ETX-105EC Camera" }, - { "0c45", "602b", "VideoCAM NB 300" }, - { "0c45", "602c", "Clas Ohlson TWC-30XOP Webcam" }, - { "0c45", "602d", "VideoCAM ExpressII" }, - { "0c45", "602e", "VideoCAM Messenger" }, - { "0c45", "6030", "VideoCAM ExpressII" }, - { "0c45", "603f", "VideoCAM ExpressII" }, - { "0c45", "6040", "CCD PC Camera (PC390A)" }, - { "0c45", "606a", "CCD PC Camera (PC390A)" }, - { "0c45", "607a", "CCD PC Camera (PC390A)" }, - { "0c45", "607b", "Win2 PC Camera" }, - { "0c45", "607c", "CCD PC Camera (PC390A)" }, - { "0c45", "607e", "CCD PC Camera (PC390A)" }, - { "0c45", "6080", "Audio (Microphone)" }, - { "0c45", "6082", "VideoCAM Look" }, - { "0c45", "6083", "VideoCAM Look" }, - { "0c45", "608c", "VideoCAM Look" }, - { "0c45", "608e", "VideoCAM Look" }, - { "0c45", "608f", "PC Camera (SN9C103 + OV7630)" }, - { "0c45", "60a8", "VideoCAM Look" }, - { "0c45", "60aa", "VideoCAM Look" }, - { "0c45", "60ab", "PC Camera" }, - { "0c45", "60af", "VideoCAM Look" }, - { "0c45", "60b0", "Genius VideoCam Look" }, - { "0c45", "60c0", "PC Camera with Mic (SN9C105)" }, - { "0c45", "60c8", "Win2 PC Camera" }, - { "0c45", "60cc", "PC Camera with Mic (SN9C105)" }, - { "0c45", "60ec", "PC Camera with Mic (SN9C105)" }, - { "0c45", "60ef", "Win2 PC Camera" }, - { "0c45", "60fa", "PC Camera with Mic (SN9C105)" }, - { "0c45", "60fb", "Composite Device" }, - { "0c45", "60fc", "PC Camera with Mic (SN9C105)" }, - { "0c45", "60fe", "Audio (Microphone)" }, - { "0c45", "6108", "Win2 PC Camera" }, - { "0c45", "6122", "PC Camera (SN9C110)" }, - { "0c45", "6123", "PC Camera (SN9C110)" }, - { "0c45", "6128", "PC Camera (SN9C325 + OM6802)" }, - { "0c45", "612a", "PC Camera (SN9C325)" }, - { "0c45", "612c", "PC Camera (SN9C110)" }, - { "0c45", "612e", "PC Camera (SN9C110)" }, - { "0c45", "612f", "PC Camera (SN9C110)" }, - { "0c45", "6130", "PC Camera (SN9C120)" }, - { "0c45", "6138", "Win2 PC Camera" }, - { "0c45", "613a", "PC Camera (SN9C120)" }, - { "0c45", "613b", "Win2 PC Camera" }, - { "0c45", "613c", "PC Camera (SN9C120)" }, - { "0c45", "613e", "PC Camera (SN9C120)" }, - { "0c45", "6143", "PC Camera (SN9C120 + SP80708)" }, - { "0c45", "6240", "PC Camera (SN9C201 + MI1300)" }, - { "0c45", "6242", "PC Camera (SN9C201 + MI1310)" }, - { "0c45", "6243", "PC Camera (SN9C201 + S5K4AAFX)" }, - { "0c45", "6248", "PC Camera (SN9C201 + OV9655)" }, - { "0c45", "624b", "PC Camera (SN9C201 + CX1332)" }, - { "0c45", "624c", "PC Camera (SN9C201 + MI1320)" }, - { "0c45", "624e", "PC Camera (SN9C201 + SOI968)" }, - { "0c45", "624f", "PC Camera (SN9C201 + OV9650)" }, - { "0c45", "6251", "PC Camera (SN9C201 + OV9650)" }, - { "0c45", "6253", "PC Camera (SN9C201 + OV9650)" }, - { "0c45", "6260", "PC Camera (SN9C201 + OV7670ISP)" }, - { "0c45", "6262", "PC Camera (SN9C201 + OM6802)" }, - { "0c45", "6270", "PC Camera (SN9C201 + MI0360/MT9V011 or MI0360SOC/MT9V111) U-CAM PC Camera NE878, Whitcom WHC017, ..." }, - { "0c45", "627a", "PC Camera (SN9C201 + S5K53BEB)" }, - { "0c45", "627b", "PC Camera (SN9C201 + OV7660)" }, - { "0c45", "627c", "PC Camera (SN9C201 + HV7131R)" }, - { "0c45", "627f", "PC Camera (SN9C201 + OV965x + EEPROM)" }, - { "0c45", "6280", "PC Camera with Microphone (SN9C202 + MI1300)" }, - { "0c45", "6282", "PC Camera with Microphone (SN9C202 + MI1310)" }, - { "0c45", "6283", "PC Camera with Microphone (SN9C202 + S5K4AAFX)" }, - { "0c45", "6288", "PC Camera with Microphone (SN9C202 + OV9655)" }, - { "0c45", "628a", "PC Camera with Microphone (SN9C202 + ICM107)" }, - { "0c45", "628b", "PC Camera with Microphone (SN9C202 + CX1332)" }, - { "0c45", "628c", "PC Camera with Microphone (SN9C202 + MI1320)" }, - { "0c45", "628e", "PC Camera with Microphone (SN9C202 + SOI968)" }, - { "0c45", "628f", "PC Camera with Microphone (SN9C202 + OV9650)" }, - { "0c45", "62a0", "PC Camera with Microphone (SN9C202 + OV7670ISP)" }, - { "0c45", "62a2", "PC Camera with Microphone (SN9C202 + OM6802)" }, - { "0c45", "62b0", "PC Camera with Microphone (SN9C202 + MI0360/MT9V011 or MI0360SOC/MT9V111)" }, - { "0c45", "62b3", "PC Camera with Microphone (SN9C202 + OV9655)" }, - { "0c45", "62ba", "PC Camera with Microphone (SN9C202 + S5K53BEB)" }, - { "0c45", "62bb", "PC Camera with Microphone (SN9C202 + OV7660)" }, - { "0c45", "62bc", "PC Camera with Microphone (SN9C202 + HV7131R)" }, - { "0c45", "62be", "PC Camera with Microphone (SN9C202 + OV7663)" }, - { "0c45", "62c0", "Sonix USB 2.0 Camera" }, - { "0c45", "62e0", "MSI Starcam Racer" }, - { "0c45", "6300", "PC Microscope camera" }, - { "0c45", "6310", "Sonix USB 2.0 Camera" }, - { "0c45", "6321", "HP Integrated Webcam" }, - { "0c45", "6340", "Camera" }, - { "0c45", "6341", "Defender G-Lens 2577 HD720p Camera" }, - { "0c45", "6366", "Webcam Vitade AF" }, - { "0c45", "63e0", "Sonix Integrated Webcam" }, - { "0c45", "63f1", "Integrated Webcam" }, - { "0c45", "63f8", "Sonix Integrated Webcam" }, - { "0c45", "6409", "Webcam" }, - { "0c45", "6413", "Integrated Webcam" }, - { "0c45", "6417", "Integrated Webcam" }, - { "0c45", "6419", "Integrated Webcam" }, - { "0c45", "641d", "1.3 MPixel Integrated Webcam" }, - { "0c45", "6433", "Laptop Integrated Webcam HD (Composite Device)" }, - { "0c45", "643f", "Dell Integrated HD Webcam" }, - { "0c45", "644d", "1.3 MPixel Integrated Webcam" }, - { "0c45", "6480", "Sonix 1.3 MP Laptop Integrated Webcam" }, - { "0c45", "648b", "Integrated Webcam" }, - { "0c45", "64ad", "Dell Laptop Integrated Webcam HD" }, - { "0c45", "64bd", "Sony Visual Communication Camera" }, - { "0c45", "64d0", "Integrated Webcam" }, - { "0c45", "64d2", "Integrated Webcam" }, - { "0c45", "651b", "HP Webcam" }, - { "0c45", "652f", "Backlit Gaming Keyboard" }, - { "0c45", "6705", "Integrated HD Webcam" }, - { "0c45", "670c", "Integrated Webcam HD" }, - { "0c45", "6710", "Integrated Webcam" }, - { "0c45", "6712", "Integrated Webcam HD" }, - { "0c45", "671d", "Integrated_Webcam_HD" }, - { "0c45", "7401", "TEMPer Temperature Sensor" }, - { "0c45", "7402", "TEMPerHUM Temperature & Humidity Sensor" }, - { "0c45", "7403", "Foot Switch" }, - { "0c45", "7404", "Foot switch FS1-P" }, - { "0c45", "8000", "DC31VC" }, - { "0c45", "8006", "Dual Mode Camera (8006 VGA)" }, - { "0c45", "800a", "Vivitar Vivicam3350B" }, - { "0c4a", "0889", "Timy" }, - { "0c4a", "088a", "Timy 2" }, - { "0c4b", "0100", "cyberJack e-com/pinpad" }, - { "0c4b", "0300", "cyberJack pinpad(a)" }, - { "0c4b", "0400", "cyberJack e-com(a)" }, - { "0c4b", "0401", "cyberJack pinpad(a2)" }, - { "0c4b", "0500", "cyberJack RFID standard dual interface smartcard reader" }, - { "0c4b", "0501", "cyberJack RFID comfort dual interface smartcard reader" }, - { "0c4b", "0502", "cyberJack compact" }, - { "0c4b", "0504", "cyberJack go / go plus" }, - { "0c4b", "0505", "cyberJack wave" }, - { "0c4b", "9102", "cyberJack RFID basis contactless smartcard reader" }, - { "0c4c", "0021", "EMP-21 Universal Programmer" }, - { "0c52", "2101", "SeaLINK+232" }, - { "0c52", "2102", "SeaLINK+485" }, - { "0c52", "2103", "SeaLINK+232I" }, - { "0c52", "2104", "SeaLINK+485I" }, - { "0c52", "2211", "SeaPORT+2/232 (Port 1)" }, - { "0c52", "2212", "SeaPORT+2/485 (Port 1)" }, - { "0c52", "2213", "SeaPORT+2 (Port 1)" }, - { "0c52", "2221", "SeaPORT+2/232 (Port 2)" }, - { "0c52", "2222", "SeaPORT+2/485 (Port 2)" }, - { "0c52", "2223", "SeaPORT+2 (Port 2)" }, - { "0c52", "2411", "SeaPORT+4/232 (Port 1)" }, - { "0c52", "2412", "SeaPORT+4/485 (Port 1)" }, - { "0c52", "2413", "SeaPORT+4 (Port 1)" }, - { "0c52", "2421", "SeaPORT+4/232 (Port 2)" }, - { "0c52", "2422", "SeaPORT+4/485 (Port 2)" }, - { "0c52", "2423", "SeaPORT+4 (Port 2)" }, - { "0c52", "2431", "SeaPORT+4/232 (Port 3)" }, - { "0c52", "2432", "SeaPORT+4/485 (Port 3)" }, - { "0c52", "2433", "SeaPORT+4 (Port 3)" }, - { "0c52", "2441", "SeaPORT+4/232 (Port 4)" }, - { "0c52", "2442", "SeaPORT+4/485 (Port 4)" }, - { "0c52", "2443", "SeaPORT+4 (Port 4)" }, - { "0c52", "2811", "SeaLINK+8/232 (Port 1)" }, - { "0c52", "2812", "SeaLINK+8/485 (Port 1)" }, - { "0c52", "2813", "SeaLINK+8 (Port 1)" }, - { "0c52", "2821", "SeaLINK+8/232 (Port 2)" }, - { "0c52", "2822", "SeaLINK+8/485 (Port 2)" }, - { "0c52", "2823", "SeaLINK+8 (Port 2)" }, - { "0c52", "2831", "SeaLINK+8/232 (Port 3)" }, - { "0c52", "2832", "SeaLINK+8/485 (Port 3)" }, - { "0c52", "2833", "SeaLINK+8 (Port 3)" }, - { "0c52", "2841", "SeaLINK+8/232 (Port 4)" }, - { "0c52", "2842", "SeaLINK+8/485 (Port 4)" }, - { "0c52", "2843", "SeaLINK+8 (Port 4)" }, - { "0c52", "2851", "SeaLINK+8/232 (Port 5)" }, - { "0c52", "2852", "SeaLINK+8/485 (Port 5)" }, - { "0c52", "2853", "SeaLINK+8 (Port 5)" }, - { "0c52", "2861", "SeaLINK+8/232 (Port 6)" }, - { "0c52", "2862", "SeaLINK+8/485 (Port 6)" }, - { "0c52", "2863", "SeaLINK+8 (Port 6)" }, - { "0c52", "2871", "SeaLINK+8/232 (Port 7)" }, - { "0c52", "2872", "SeaLINK+8/485 (Port 7)" }, - { "0c52", "2873", "SeaLINK+8 (Port 7)" }, - { "0c52", "2881", "SeaLINK+8/232 (Port 8)" }, - { "0c52", "2882", "SeaLINK+8/485 (Port 8)" }, - { "0c52", "2883", "SeaLINK+8 (Port 8)" }, - { "0c52", "9020", "SeaLINK+422" }, - { "0c52", "a02a", "SeaLINK+8 (Port 1+2)" }, - { "0c52", "a02b", "SeaLINK+8 (Port 3+4)" }, - { "0c52", "a02c", "SeaLINK+8 (Port 5+6)" }, - { "0c52", "a02d", "SeaLINK+8 (Port 7+8)" }, - { "0c55", "0510", "Spectrum Digital XDS510 JTAG Debugger" }, - { "0c55", "0540", "SPI540" }, - { "0c55", "5416", "TMS320C5416 DSK" }, - { "0c55", "6416", "TMS320C6416 DDB" }, - { "0c60", "0001", "MiniMe" }, - { "0c60", "0002", "MiniDAC" }, - { "0c60", "0003", "ONE" }, - { "0c60", "0004", "GiO" }, - { "0c60", "0007", "Duet" }, - { "0c60", "0009", "Jam" }, - { "0c60", "000a", "Jam Bootloader" }, - { "0c60", "000b", "MiC" }, - { "0c60", "000c", "MiC Bootloader" }, - { "0c60", "8007", "Duet DFU Mode" }, - { "0c6a", "0005", "Color 320 x 240 LCD Display Terminal with Touchscreen" }, - { "0c6c", "04b2", "Specbos 1201" }, - { "0c70", "0000", "USB08 Development board" }, - { "0c70", "0747", "Eye Movement Recorder [Visagraph]/[ReadAlyzer]" }, - { "0c72", "000c", "PCAN-USB" }, - { "0c72", "000d", "PCAN Pro" }, - { "0c74", "0002", "OL 700-30 Goniometer" }, - { "0c76", "0001", "Mass Storage Controller" }, - { "0c76", "0002", "Mass Storage Controller" }, - { "0c76", "0003", "USBdisk" }, - { "0c76", "0004", "Mass Storage Controller" }, - { "0c76", "0005", "Transcend Flash disk" }, - { "0c76", "0006", "Transcend JetFlash" }, - { "0c76", "0007", "Mass Storage Device" }, - { "0c76", "1600", "Ion Quick Play LP turntable" }, - { "0c76", "1605", "SSS Headphone Set" }, - { "0c76", "1607", "audio controller" }, - { "0c76", "5663", "Audio Device" }, - { "0c77", "1001", "SiPix Web2" }, - { "0c77", "1002", "SiPix SC2100" }, - { "0c77", "1010", "SiPix Snap" }, - { "0c77", "1011", "SiPix Blink 2" }, - { "0c77", "1015", "SiPix CAMeleon" }, - { "0c88", "0021", "Handheld" }, - { "0c88", "17da", "Qualcomm Kyocera CDMA Technologies MSM" }, - { "0c8e", "6000", "Luxian Series" }, - { "0c94", "a000", "EPP 1217" }, - { "0c98", "1140", "USB PC Watchdog" }, - { "0c9c", "1511", "BI-1511 Laser Simulator" }, - { "0c9c", "1512", "BI-1512 Syncbus Monitor" }, - { "0c9c", "1514", "BI-1514 HPC" }, - { "0c9c", "1532", "BI-1532 GPC" }, - { "0c9d", "0170", "3873 Manual Insert card reader" }, - { "0ca6", "0010", "EZUSB PC/SC Smart Card Reader" }, - { "0ca6", "0050", "EZ220PU Reader Controller" }, - { "0ca6", "1077", "Bludrive Family Smart Card Reader" }, - { "0ca6", "107e", "Reader Controller" }, - { "0ca6", "2010", "myPad110 PC/SC Smart Card Reader" }, - { "0ca6", "3050", "EZ710 Smart Card Reader" }, - { "0caa", "3001", "AT-VT-Kit3 Serial Adapter" }, - { "0cad", "1007", "APX Series Consolette" }, - { "0cad", "1020", "MOTOTRBO Series Radio (Portable)" }, - { "0cad", "1030", "APX Series Radio (Portable)" }, - { "0cad", "1031", "APX Series Radio (Mobile)" }, - { "0cad", "1602", "IMPRES Battery Data Reader" }, - { "0cad", "9001", "PowerPad Pocket PC Device" }, - { "0caf", "2507", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "0caf", "2515", "Flash Disk Embedded Hub" }, - { "0caf", "2516", "Flash Disk Security Device" }, - { "0caf", "2517", "Flash Disk Mass Storage Device" }, - { "0caf", "25c7", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "0caf", "3a00", "Hard Drive" }, - { "0caf", "3a20", "Mass Storage Device" }, - { "0caf", "3acd", "Mass Storage Device" }, - { "0cbc", "0101", "Pocket PC P6C" }, - { "0cbc", "0201", "Personal Digital Assistant" }, - { "0cbc", "0301", "Personal Digital Assistant P6M+" }, - { "0cbc", "0401", "Pocket PC" }, - { "0ccd", "0012", "PHASE 26" }, - { "0ccd", "0013", "PHASE 26" }, - { "0ccd", "0014", "PHASE 26" }, - { "0ccd", "0015", "Flash Update for TerraTec PHASE 26" }, - { "0ccd", "0021", "Cameo Grabster 200" }, - { "0ccd", "0023", "Mystify Claw" }, - { "0ccd", "0028", "Aureon 5.1 MkII" }, - { "0ccd", "0032", "MIDI HUBBLE" }, - { "0ccd", "0035", "Miditech Play'n Roll" }, - { "0ccd", "0036", "Cinergy 250 Audio" }, - { "0ccd", "0037", "Cinergy 250 Audio" }, - { "0ccd", "0038", "Cinergy T² DVB-T Receiver" }, - { "0ccd", "0039", "Grabster AV 400" }, - { "0ccd", "003b", "Cinergy 400" }, - { "0ccd", "003c", "Grabster AV 250" }, - { "0ccd", "0042", "Cinergy Hybrid T XS" }, - { "0ccd", "0043", "Cinergy T XS" }, - { "0ccd", "004e", "Cinergy T XS" }, - { "0ccd", "004f", "Cinergy Analog XS" }, - { "0ccd", "0055", "Cinergy T XE (Version 1, AF9005)" }, - { "0ccd", "005c", "Cinergy T²" }, - { "0ccd", "0069", "Cinergy T XE (Version 2, AF9015)" }, - { "0ccd", "006b", "Cinergy HT PVR (EU)" }, - { "0ccd", "0072", "Cinergy Hybrid T" }, - { "0ccd", "0077", "Aureon Dual USB" }, - { "0ccd", "0078", "Cinergy T XXS" }, - { "0ccd", "0086", "Cinergy Hybrid XE" }, - { "0ccd", "008e", "Cinergy HTC XS" }, - { "0ccd", "0096", "Grabby" }, - { "0ccd", "0097", "Cinergy T RC MKII" }, - { "0ccd", "0099", "AfaTech 9015 [Cinergy T Stick Dual]" }, - { "0ccd", "00a5", "Cinergy Hybrid Stick" }, - { "0ccd", "00a9", "RTL2838 DVB-T COFDM Demodulator [TerraTec Cinergy T Stick Black]" }, - { "0ccd", "00b3", "NOXON DAB/DAB+ Stick" }, - { "0ccd", "00b9", "WDR DAB/DAB+ Stick" }, - { "0ccd", "00e0", "NOXON DAB/DAB+ Stick V2" }, - { "0ccd", "0102", "Cinergy S2 Stick" }, - { "0ccd", "0105", "Cinergy S2 Box" }, - { "0ccd", "10a7", "TerraTec G3" }, - { "0ccd", "10ad", " Cinergy H5 Rev. 2" }, - { "0cd4", "0101", "BeolinkPC2" }, - { "0cd5", "0003", "U3" }, - { "0cd5", "0009", "UE9" }, - { "0cd6", "000c", "S&B TPU" }, - { "0cd6", "000e", "S&B BKV" }, - { "0cd6", "0011", "Money Coin Unit" }, - { "0cd8", "2007", "Smart Card Reader/JSTU-9700" }, - { "0cde", "0001", "XI-750 802.11b Wireless Adapter [Atmel AT76C503A]" }, - { "0cde", "0002", "XI-725/726 Prism2.5 802.11b Adapter" }, - { "0cde", "0003", "Sagem 802.11b Dongle" }, - { "0cde", "0004", "Sagem 802.11b Dongle" }, - { "0cde", "0005", "XI-735 Prism3 802.11b Adapter" }, - { "0cde", "0006", "XG-300 802.11b Adapter" }, - { "0cde", "0008", "XG-703A 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "0cde", "0009", "(ZD1211)IEEE 802.11b+g Adapter" }, - { "0cde", "0011", "ZD1211" }, - { "0cde", "0012", "AR5523" }, - { "0cde", "0013", "AR5523 driver (no firmware)" }, - { "0cde", "0014", "NB 802.11g Wireless LAN Adapter(3887A)" }, - { "0cde", "0015", "XG-705A 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "0cde", "0016", "NB 802.11g Wireless LAN Adapter(3887A)" }, - { "0cde", "0018", "NB 802.11a/b/g Wireless LAN Adapter(3887A)" }, - { "0cde", "001a", "802.11bg" }, - { "0cde", "001c", "802.11b/g Wireless Network Adapter" }, - { "0cde", "0020", "AG-760A 802.11abg Wireless Adapter [ZyDAS ZD1211B]" }, - { "0cde", "0022", "802.11b/g/n Wireless Network Adapter" }, - { "0cde", "0023", "UB81 802.11bgn" }, - { "0cde", "0025", "802.11b/g/n USB Wireless Network Adapter" }, - { "0cde", "0026", "UB82 802.11abgn" }, - { "0cde", "0027", "Sphairon Homelink 1202 802.11n Wireless Adapter [Atheros AR9170]" }, - { "0ce5", "0003", "Matrix" }, - { "0ce9", "1001", "PicoScope3000 series PC Oscilloscope" }, - { "0ce9", "1007", "PicoScope 2000 series PC Oscilloscope" }, - { "0ce9", "1008", "PicoScope 5000 series PC Oscilloscope" }, - { "0ce9", "1009", "PicoScope 4000 series PC Oscilloscope" }, - { "0ce9", "100e", "PicoScope 6000 series PC Oscilloscope" }, - { "0ce9", "1012", "PicoScope 3000A series PC Oscilloscope" }, - { "0ce9", "1016", "PicoScope 2000A series PC Oscilloscope" }, - { "0ce9", "1018", "PicoScope 4000A series PC Oscilloscope" }, - { "0ce9", "1200", "PicoScope 2000 series PC Oscilloscope" }, - { "0ce9", "1201", "PicoScope 3000 series PC Oscilloscope" }, - { "0ce9", "1202", "PicoScope 4000 series PC Oscilloscope" }, - { "0ce9", "1203", "PicoScope 5000 series PC Oscilloscope" }, - { "0ce9", "1204", "PicoScope 6000 series PC Oscilloscope" }, - { "0ce9", "1211", "PicoScope 3000 series PC Oscilloscope" }, - { "0ce9", "1212", "PicoScope 4000 series PC Oscilloscope" }, - { "0cf2", "6220", "SD Card Reader (SG361)" }, - { "0cf2", "6225", "SD card reader (UB6225)" }, - { "0cf2", "6230", "SD Card Reader (UB623X)" }, - { "0cf2", "6250", "SD card reader (UB6250)" }, - { "0cf3", "0001", "AR5523" }, - { "0cf3", "0002", "AR5523 (no firmware)" }, - { "0cf3", "0003", "AR5523" }, - { "0cf3", "0004", "AR5523 (no firmware)" }, - { "0cf3", "0005", "AR5523" }, - { "0cf3", "0006", "AR5523 (no firmware)" }, - { "0cf3", "0036", "AR9462 Bluetooth" }, - { "0cf3", "1001", "Thomson TG121N [Atheros AR9001U-(2)NG]" }, - { "0cf3", "1002", "TP-Link TL-WN821N v2 / TL-WN822N v1 802.11n [Atheros AR9170]" }, - { "0cf3", "1006", "TP-Link TL-WN322G v3 / TL-WN422G v2 802.11g [Atheros AR9271]" }, - { "0cf3", "1010", "3Com 3CRUSBN275 802.11abgn Wireless Adapter [Atheros AR9170]" }, - { "0cf3", "20ff", "AR7010 (no firmware)" }, - { "0cf3", "3000", "AR3011 Bluetooth (no firmware)" }, - { "0cf3", "3002", "AR3011 Bluetooth" }, - { "0cf3", "3004", "AR3012 Bluetooth 4.0" }, - { "0cf3", "3005", "AR3011 Bluetooth" }, - { "0cf3", "3007", "AR3012 Bluetooth 4.0 (no firmware)" }, - { "0cf3", "3008", "Bluetooth (AR3011)" }, - { "0cf3", "311d", "Bluetooth" }, - { "0cf3", "311f", "AR3012 Bluetooth" }, - { "0cf3", "7015", "TP-Link TL-WN821N v3 / TL-WN822N v2 802.11n [Atheros AR7010+AR9287]" }, - { "0cf3", "9170", "AR9170 802.11n" }, - { "0cf3", "9271", "AR9271 802.11n" }, - { "0cf3", "9378", "QCA9377-7" }, - { "0cf3", "b002", "Ubiquiti WiFiStation 802.11n [Atheros AR9271]" }, - { "0cf3", "b003", "Ubiquiti WiFiStationEXT 802.11n [Atheros AR9271]" }, - { "0cf3", "e006", "Dell Wireless 1802 Bluetooth 4.0 LE" }, - { "0cf3", "e300", "QCA61x4 Bluetooth 4.0" }, - { "0cf8", "0750", "Claritel-i750 - vp" }, - { "0cfc", "2301", "Magicolor 2300 DL" }, - { "0cfc", "2350", "Magicolor 2350EN/3300" }, - { "0cfc", "3100", "Magicolor 3100" }, - { "0cfc", "7300", "Magicolor 5450/5550" }, - { "0cff", "0320", "SR-380N" }, - { "0d08", "0602", "DV007 [serial]" }, - { "0d08", "0603", "DV007 [storage]" }, - { "0d10", "0001", "StormPort (WDM)" }, - { "0d16", "0001", "PhotoShuttle" }, - { "0d16", "0002", "Photo Printer 730 series" }, - { "0d16", "0004", "Photo Printer 63xPL/PS" }, - { "0d16", "0007", "P510K" }, - { "0d16", "0009", "P72x Series" }, - { "0d16", "000a", "P728L" }, - { "0d16", "000b", "P510L" }, - { "0d16", "000d", "P518A" }, - { "0d16", "000e", "P910L" }, - { "0d16", "0010", "M610" }, - { "0d16", "0100", "Photo Printer 63xPL/PS" }, - { "0d16", "0102", "Photo Printer 64xPS" }, - { "0d16", "0103", "Photo Printer 730 series" }, - { "0d16", "0104", "Photo Printer 63xPL/PS" }, - { "0d16", "0105", "Photo Printer 64xPS" }, - { "0d16", "010e", "P510S" }, - { "0d16", "0110", "P110S" }, - { "0d16", "0111", "P510Si" }, - { "0d16", "0112", "P518S" }, - { "0d16", "0200", "Photo Printer 64xDL" }, - { "0d16", "0309", "CS-200e" }, - { "0d16", "030a", "CS-220e" }, - { "0d16", "0501", "P75x Series" }, - { "0d16", "0502", "P52x Series" }, - { "0d16", "0503", "P310L" }, - { "0d16", "050a", "P310W" }, - { "0d16", "050f", "P530D" }, - { "0d16", "0800", "X610" }, - { "0d28", "0204", "ARM mbed" }, - { "0d2f", "0002", "Pump It Up Pad" }, - { "0d3a", "0206", "Series 3xxx Cash Drawer" }, - { "0d3a", "0207", "Series 3xxx Cash Drawer" }, - { "0d3a", "0500", "Magnetic Stripe Reader" }, - { "0d3d", "0001", "HID Keyboard" }, - { "0d3d", "0040", "PS/2 Adapter" }, - { "0d46", "2012", "KAAN Standard Plus (Smartcard reader)" }, - { "0d46", "3003", "mIDentity Light / KAAN SIM III" }, - { "0d46", "3014", "Smart Token" }, - { "0d46", "4000", "mIDentity (mass storage)" }, - { "0d46", "4001", "mIDentity Basic/Classic (composite device)" }, - { "0d46", "4081", "mIDentity Basic/Classic (installationless)" }, - { "0d48", "0001", "ACTIVboard" }, - { "0d48", "0004", "ACTIVboard" }, - { "0d48", "0100", "Audio" }, - { "0d49", "3000", "Drive" }, - { "0d49", "3005", "Personal Storage 3000LS" }, - { "0d49", "3010", "3000LE Drive" }, - { "0d49", "3100", "Hi-Speed USB-IDE Bridge Controller" }, - { "0d49", "3200", "Personal Storage 3200" }, - { "0d49", "5000", "5000XT Drive" }, - { "0d49", "5010", "5000LE Drive" }, - { "0d49", "5020", "Mobile Hard Disk Drive" }, - { "0d49", "7000", "OneTouch" }, - { "0d49", "7010", "OneTouch" }, - { "0d49", "7100", "OneTouch II 300GB External Hard Disk" }, - { "0d49", "7310", "OneTouch 4" }, - { "0d49", "7410", "Mobile Hard Disk Drive (1TB)" }, - { "0d49", "7450", "Basics Portable USB Device" }, - { "0d4e", "047a", "WLAN Card" }, - { "0d4e", "1000", "Wireless Card Model 0801" }, - { "0d4e", "1001", "Wireless Card Model 0802" }, - { "0d50", "0011", "USB-Temp2 Thermometer" }, - { "0d50", "0030", "Multiplexer" }, - { "0d50", "0040", "F4 foot switch" }, - { "0d59", "02a8", "Digital Clock" }, - { "0d5c", "a001", "SMC2662W (v1) EZ Connect 802.11b Wireless Adapter [Atmel AT76C503A]" }, - { "0d5c", "a002", "SMC2662W v2 / SMC2662W-AR / Belkin F5D6050 [Atmel at76c503a]" }, - { "0d5e", "2346", "BT Digital Access adapter" }, - { "0d62", "0003", "Smartcard Reader" }, - { "0d62", "0004", "Keyboard" }, - { "0d62", "001b", "Keyboard" }, - { "0d62", "001c", "Benq X120 Internet Keyboard Pro" }, - { "0d62", "0306", "M530 Mouse" }, - { "0d62", "0800", "Magic Wheel" }, - { "0d62", "2021", "AM805 Keyboard" }, - { "0d62", "2026", "TECOM Bluetooth Device" }, - { "0d62", "2050", "Mouse" }, - { "0d62", "2106", "Dell L20U Multimedia Keyboard" }, - { "0d62", "910e", "HP Business Slim Keyboard" }, - { "0d62", "a100", "Optical Mouse" }, - { "0d64", "0105", "Dual Mode Digital Camera 1.3M" }, - { "0d64", "0107", "Horus MT-409 Camera" }, - { "0d64", "0108", "Dual Mode Digital Camera" }, - { "0d64", "0202", "Dual Mode Video Camera Device" }, - { "0d64", "0303", "DXG-305V Camera" }, - { "0d64", "1001", "SiPix Stylecam/UMAX AstraPix 320s" }, - { "0d64", "1002", "Fashion Cam 01 Dual-Mode DSC (Video Camera)" }, - { "0d64", "1003", "Fashion Cam Dual-Mode DSC (Controller)" }, - { "0d64", "1021", "D-Link DSC 350F" }, - { "0d64", "1208", "Dual Mode Still Camera Device" }, - { "0d64", "2208", "Mass Storage" }, - { "0d64", "3105", "Dual Mode Digital Camera Disk" }, - { "0d64", "3108", "Digicam Mass Storage Device" }, - { "0d64", "5566", "Contour Roam Model 1600" }, - { "0d7a", "0001", "CrypToken" }, - { "0d7d", "0100", "PS1001/1011/1006/1026 Flash Disk" }, - { "0d7d", "0110", "Gigabyte FlexDrive" }, - { "0d7d", "0120", "Disk Pro 64MB" }, - { "0d7d", "0124", "GIGABYTE Disk" }, - { "0d7d", "0240", "I/O-Magic/Transcend 6-in-1 Card Reader" }, - { "0d7d", "110e", "NEC uPD720121/130 USB-ATA/ATAPI Bridge" }, - { "0d7d", "1240", "Apacer 6-in-1 Card Reader 2.0" }, - { "0d7d", "1270", "Wolverine SixPac 6000" }, - { "0d7d", "1300", "Flash Disk" }, - { "0d7d", "1320", "PS2031 Flash Disk" }, - { "0d7d", "1400", "Attache 256MB USB 2.0 Flash Drive" }, - { "0d7d", "1420", "PS2044 Pen Drive" }, - { "0d7d", "1470", "Vosonic X's-Drive II+ VP2160" }, - { "0d7d", "1620", "USB Disk Pro" }, - { "0d7d", "1900", "USB Thumb Drive" }, - { "0d7e", "2507", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "0d7e", "2517", "Hi-Speed Mass Storage Device" }, - { "0d7e", "25c7", "Hi-Speed USB-to-IDE Bridge Controller" }, - { "0d7f", "0100", "P5 Glove glove controller" }, - { "0d8a", "0101", "TEPRA PRO" }, - { "0d8c", "0001", "Audio Device" }, - { "0d8c", "0002", "Composite Device" }, - { "0d8c", "0003", "Sound Device" }, - { "0d8c", "0004", "CM6631A Audio Processor" }, - { "0d8c", "0005", "Blue Snowball" }, - { "0d8c", "0006", "Storm HP-USB500 5.1 Headset" }, - { "0d8c", "000c", "Audio Adapter" }, - { "0d8c", "000d", "Composite Device" }, - { "0d8c", "000e", "Audio Adapter (Planet UP-100, Genius G-Talk)" }, - { "0d8c", "0014", "Audio Adapter (Unitek Y-247A)" }, - { "0d8c", "001f", "CM108 Audio Controller" }, - { "0d8c", "0102", "CM106 Like Sound Device" }, - { "0d8c", "0103", "CM102-A+/102S+ Audio Controller" }, - { "0d8c", "0104", "CM103+ Audio Controller" }, - { "0d8c", "0105", "CM108 Audio Controller" }, - { "0d8c", "0107", "CM108 Audio Controller" }, - { "0d8c", "010f", "CM108 Audio Controller" }, - { "0d8c", "0115", "CM108 Audio Controller" }, - { "0d8c", "0139", "Multimedia Headset [Gigaware by Ignition L.P.]" }, - { "0d8c", "013c", "CM108 Audio Controller" }, - { "0d8c", "0201", "CM6501" }, - { "0d8c", "5000", "Mass Storage Controller" }, - { "0d8c", "5200", "Mass Storage Controller(0D8C,5200)" }, - { "0d8c", "b213", "USB Phone CM109 (aka CT2000,VPT1000)" }, - { "0d8d", "0234", "V-234 Composite Device" }, - { "0d8d", "0550", "V-550 Composite Device" }, - { "0d8d", "0551", "V-551 Composite Device" }, - { "0d8d", "0552", "V-552 Composite Device" }, - { "0d8d", "0651", "V-651 Composite Device" }, - { "0d8d", "0652", "V-652 Composite Device" }, - { "0d8d", "0653", "V-653 Composite Device" }, - { "0d8d", "0654", "V-654 Composite Device" }, - { "0d8d", "0655", "V-655 Composite Device" }, - { "0d8d", "0656", "V-656 Composite Device" }, - { "0d8d", "0657", "V-657 Composite Device" }, - { "0d8d", "0658", "V-658 Composite Device" }, - { "0d8d", "0659", "V-659 Composite Device" }, - { "0d8d", "0660", "V-660 Composite Device" }, - { "0d8d", "0661", "V-661 Composite Device" }, - { "0d8d", "0662", "V-662 Composite Device" }, - { "0d8d", "0850", "V-850 Composite Device" }, - { "0d8d", "0851", "V-851 Composite Device" }, - { "0d8d", "0852", "V-852 Composite Device" }, - { "0d8d", "0901", "V-901 Composite Device" }, - { "0d8d", "0902", "V-902 Composite Device" }, - { "0d8d", "0903", "V-903 Composite Device" }, - { "0d8d", "4754", "Voyager DMP Composite Device" }, - { "0d8d", "bb00", "Bloomberg Composite Device" }, - { "0d8d", "bb01", "Bloomberg Composite Device" }, - { "0d8d", "bb02", "Bloomberg Composite Device" }, - { "0d8d", "bb03", "Bloomberg Composite Device" }, - { "0d8d", "bb04", "Bloomberg Composite Device" }, - { "0d8d", "bb05", "Bloomberg Composite Device" }, - { "0d8d", "fffe", "Global Tuner Composite Device" }, - { "0d8d", "ffff", "Voyager DMP Composite Device" }, - { "0d8e", "0163", "802.11g 54 Mbps Wireless Dongle" }, - { "0d8e", "1621", "802.11b Wireless Adapter" }, - { "0d8e", "3762", "Cohiba 802.11g Wireless Mini adapter [Intersil ISL3887]" }, - { "0d8e", "3763", "802.11g Wireless dongle" }, - { "0d8e", "7100", "802.11b Adapter" }, - { "0d8e", "7110", "WL-210 / WU210P 802.11b Wireless Adapter [Atmel AT76C503A]" }, - { "0d8e", "7605", "TRENDnet TEW-224UB 802.11b Wireless Adapter [Atmel AT76C503A]" }, - { "0d8e", "7801", "AR5523" }, - { "0d8e", "7802", "AR5523 (no firmware)" }, - { "0d8e", "7811", "AR5523" }, - { "0d8e", "7812", "AR5523 (no firmware)" }, - { "0d8e", "7a01", "PRISM25 802.11b Adapter" }, - { "0d96", "0000", "Jenoptik JD350 video" }, - { "0d96", "3300", "SX330z Camera" }, - { "0d96", "4100", "SX410z Camera" }, - { "0d96", "4102", "MD 9700 Camera" }, - { "0d96", "4104", "Jenoptik JD-4100z3s" }, - { "0d96", "410a", "Medion 9801/Novatech SX-410z" }, - { "0d96", "5200", "SX-520z Camera" }, - { "0d97", "0001", "SBIG Astronomy Camera (without firmware)" }, - { "0d97", "0101", "SBIG Astronomy Camera (with firmware)" }, - { "0d98", "0300", "Avaya Wireless Card" }, - { "0d98", "1007", "Discovery Kids Digital Camera" }, - { "0d9a", "0001", "Bluetooth Device" }, - { "0d9e", "0300", "Wireless Card" }, - { "0d9f", "0001", "Uninterruptible Power Supply" }, - { "0d9f", "0002", "Black Knight PRO / WOW Uninterruptible Power Supply (Cypress HID->COM RS232)" }, - { "0d9f", "00a2", "Imperial Uninterruptible Power Supply (HID PDC)" }, - { "0d9f", "00a3", "Smart King PRO Uninterruptible Power Supply (HID PDC)" }, - { "0d9f", "00a4", "WOW Uninterruptible Power Supply (HID PDC)" }, - { "0d9f", "00a5", "Vanguard Uninterruptible Power Supply (HID PDC)" }, - { "0d9f", "00a6", "Black Knight PRO Uninterruptible Power Supply (HID PDC)" }, - { "0da4", "0001", "Interface" }, - { "0da4", "0003", "FlowLink" }, - { "0da4", "0008", "Loop" }, - { "0da8", "0001", "SDS 200A Oscilloscope" }, - { "0dab", "0100", "DVR/CVR-M140 MP3 Player" }, - { "0db0", "1020", "PC2PC WLAN Card" }, - { "0db0", "1967", "Bluetooth Dongle" }, - { "0db0", "3713", "Primo 73" }, - { "0db0", "3801", "Motorola Bluetooth 2.1+EDR Device" }, - { "0db0", "3870", "MS-3870 802.11bgn Wireless Module [Ralink RT3070]" }, - { "0db0", "3871", "MS-3871 802.11bgn Wireless Module [Ralink RT8070]" }, - { "0db0", "4011", "Medion Flash XL V2.0 Card Reader" }, - { "0db0", "4023", "Lexar Mobile Card Reader" }, - { "0db0", "4600", "802.11b/g Turbo Wireless Adapter" }, - { "0db0", "5501", "Mass Storage Device" }, - { "0db0", "5502", "Mass Storage Device" }, - { "0db0", "5513", "MP3 Player" }, - { "0db0", "5515", "MP3 Player" }, - { "0db0", "5516", "MP3 Player" }, - { "0db0", "5580", "Mega Sky 580 DVB-T Tuner [M902x]" }, - { "0db0", "5581", "Mega Sky 580 DVB-T Tuner [GL861]" }, - { "0db0", "6823", "UB11B/MS-6823 802.11b Wi-Fi adapter" }, - { "0db0", "6826", "IEEE 802.11g Wireless Network Adapter" }, - { "0db0", "6855", "Bluetooth Device" }, - { "0db0", "6861", "MSI-6861 802.11g WiFi adapter" }, - { "0db0", "6865", "RT2570" }, - { "0db0", "6869", "RT2570" }, - { "0db0", "6874", "RT2573" }, - { "0db0", "6877", "RT2573" }, - { "0db0", "6881", "Bluetooth Class I EDR Device" }, - { "0db0", "688a", "Bluetooth Class I EDR Device" }, - { "0db0", "6899", "802.11bgn 1T1R Mini Card Wireless Adapter" }, - { "0db0", "6970", "MS-6970 BToes Bluetooth adapter" }, - { "0db0", "697a", "Bluetooth Dongle" }, - { "0db0", "6982", "Medion Flash XL Card Reader" }, - { "0db0", "a861", "RT2573" }, - { "0db0", "a874", "RT2573" }, - { "0db0", "a970", "Bluetooth dongle" }, - { "0db0", "a97a", "Bluetooth EDR Device" }, - { "0db0", "b970", "Bluetooth EDR Device" }, - { "0db0", "b97a", "Bluetooth EDR Device" }, - { "0db0", "ffff", "Bluetooth Adapter in DFU mode" }, - { "0db5", "0139", "Barcode Module - CDC serial" }, - { "0db5", "013a", "Barcode Module - Virtual Keyboard" }, - { "0db5", "013b", "Barcode Module - HID" }, - { "0db5", "0160", "NFC and Smartcard Module (NSM)" }, - { "0db5", "0164", "NFC and Smartcard Module (NSM)with 4 SAM slots" }, - { "0db7", "0002", "Goldpfeil P-LAN" }, - { "0dba", "1000", "Mbox 1 [Mbox]" }, - { "0dba", "3000", "Mbox 2" }, - { "0dba", "b011", "Eleven Rack" }, - { "0dbc", "0003", "AND Serial Cable [AND Smart Cable]" }, - { "0dbf", "0002", "SmartDongle Security Key" }, - { "0dbf", "0200", "HDD Storage Solution" }, - { "0dbf", "021b", "USB-2.0 IDE Adapter" }, - { "0dbf", "0300", "Storage Adapter" }, - { "0dbf", "0333", "Storage Adapter" }, - { "0dbf", "0502", "FSC Storagebird XL hard disk" }, - { "0dbf", "0707", "ZIV Drive" }, - { "0dc3", "0801", "ASEDrive III" }, - { "0dc3", "0802", "ASEDrive IIIe" }, - { "0dc3", "1104", "ASEDrive IIIe KB" }, - { "0dc3", "1701", "ASEKey" }, - { "0dc3", "1702", "ASEKey" }, - { "0dc4", "0040", "Mass Storage Device" }, - { "0dc4", "0041", "Mass Storage Device" }, - { "0dc4", "0042", "Mass Storage Device" }, - { "0dc4", "0101", "Hi-Speed Mass Storage Device" }, - { "0dc4", "0209", "SK-3500 S2" }, - { "0dc4", "020a", "Oyen Digital MiniPro 2.5\" hard drive enclosure" }, - { "0dc4", "0290", "Mass Storage Device [NT2 U3.1]" }, - { "0dc6", "2301", "Wireless Touchpad Keyboard" }, - { "0dcd", "0001", "Remote Interface Adapter" }, - { "0dcd", "0002", "High Bandwidth Codec" }, - { "0dd0", "1002", "Triple Talk Speech Synthesizer" }, - { "0dd2", "0003", "Mass Storage (P)" }, - { "0dd4", "0237", "K80 80mm Thermal Printer" }, - { "0dd8", "0562", "Netac Portable SSD Z6s" }, - { "0dd8", "1060", "USB-CF-Card" }, - { "0dd8", "e007", "OnlyDisk U222 Pendrive" }, - { "0dd8", "f607", "OnlyDisk U210 1G flash drive [U-SAFE]" }, - { "0dda", "0001", "Multi-Card Reader 6in1" }, - { "0dda", "0002", "Multi-Card Reader 7in1" }, - { "0dda", "0003", "Flash Disk" }, - { "0dda", "0005", "Internal Multi-Card Reader 6in1" }, - { "0dda", "0008", "SD single card reader" }, - { "0dda", "0009", "MS single card reader" }, - { "0dda", "000a", "MS+SD Dual Card Reader" }, - { "0dda", "000b", "SM single card reader" }, - { "0dda", "0101", "All-In-One Card Reader" }, - { "0dda", "0102", "All-In-One Card Reader" }, - { "0dda", "0301", "MP3 Player" }, - { "0dda", "0302", "Multi-Card MP3 Player" }, - { "0dda", "1001", "Multi-Flash Disk" }, - { "0dda", "2001", "Multi-Card Reader" }, - { "0dda", "2002", "Q018 default PID" }, - { "0dda", "2003", "Multi-Card Reader" }, - { "0dda", "2005", "Datalux DLX-1611 16in1 Card Reader" }, - { "0dda", "2006", "All-In-One Card Reader" }, - { "0dda", "2007", "USB to ATAPI bridge" }, - { "0dda", "2008", "All-In-One Card Reader" }, - { "0dda", "2013", "SD/MS Combo Card Reader" }, - { "0dda", "2014", "SD/MS Single Card Reader" }, - { "0dda", "2023", "card reader SD/MS DEMO board with ICSI brand name (MaskROM version)" }, - { "0dda", "2024", "card reader SD/MS DEMO board with Generic brand name (MaskROM version)" }, - { "0dda", "2026", "USB2.0 Card Reader" }, - { "0dda", "2027", "USB 2.0 Card Reader" }, - { "0dda", "2315", "UFD MP3 player (model 2)" }, - { "0dda", "2318", "UFD MP3 player (model 1)" }, - { "0dda", "2321", "UFD MP3 player" }, - { "0de7", "0191", "U401 Interface card" }, - { "0de7", "01a5", "U421 interface card" }, - { "0de7", "01c3", "U451 relay interface card" }, - { "0dee", "4010", "Storage Adapter" }, - { "0df4", "0201", "MNG-2005" }, - { "0df6", "0001", "C-Media VOIP Device" }, - { "0df6", "0004", "Bluetooth 2.0 Adapter 100m" }, - { "0df6", "0007", "Bluetooth 2.0 Adapter 10m" }, - { "0df6", "000b", "Bluetooth 2.0 Adapter DFU" }, - { "0df6", "000d", "WL-168 Wireless Network Adapter 54g" }, - { "0df6", "0017", "WL-182 Wireless-N Network USB Card" }, - { "0df6", "0019", "Bluetooth 2.0 adapter 10m CN-512v2 001" }, - { "0df6", "001a", "Bluetooth 2.0 adapter 100m CN-521v2 001" }, - { "0df6", "002b", "WL-188 Wireless Network 300N USB Adapter" }, - { "0df6", "002c", "WL-301 Wireless Network 300N USB Adapter" }, - { "0df6", "002d", "WL-302 Wireless Network 300N USB dongle" }, - { "0df6", "0036", "WL-603 Wireless Adapter" }, - { "0df6", "0039", "WL-315 Wireless-N USB Adapter" }, - { "0df6", "003b", "WL-321 Wireless USB Gaming Adapter 300N" }, - { "0df6", "003c", "WL-323 Wireless-N USB Adapter" }, - { "0df6", "003d", "WL-324 Wireless USB Adapter 300N" }, - { "0df6", "003e", "WL-343 Wireless USB Adapter 150N X1" }, - { "0df6", "003f", "WL-608 Wireless USB Adapter 54g" }, - { "0df6", "0040", "WL-344 Wireless Adapter 300N X2 [Ralink RT3071]" }, - { "0df6", "0041", "WL-329 Wireless Dualband USB adapter 300N" }, - { "0df6", "0042", "WL-345 Wireless USB adapter 300N X3" }, - { "0df6", "0045", "WL-353 Wireless USB Adapter 150N Nano" }, - { "0df6", "0047", "WL-352v1 Wireless USB Adapter 300N 002" }, - { "0df6", "0048", "WL-349v1 Wireless Adapter 150N 002 [Ralink RT3070]" }, - { "0df6", "0049", "WL-356 Wireless Adapter 300N" }, - { "0df6", "004a", "WL-358v1 Wireless Micro USB Adapter 300N X3 002" }, - { "0df6", "004b", "WL-349v3 Wireless Micro Adapter 150N X1 [Realtek RTL8192SU]" }, - { "0df6", "004c", "WL-352 802.11n Adapter [Realtek RTL8191SU]" }, - { "0df6", "0050", "WL-349v4 Wireless Micro Adapter 150N X1 [Ralink RT3370]" }, - { "0df6", "0056", "LN-031 10/100/1000 Ethernet Adapter" }, - { "0df6", "005d", "WLA-2000 v1.001 WLAN [RTL8191SU]" }, - { "0df6", "0060", "WLA-4000 802.11bgn [Ralink RT3072]" }, - { "0df6", "0062", "WLA-5000 802.11abgn [Ralink RT3572]" }, - { "0df6", "006f", "WLA-5100" }, - { "0df6", "0072", "AX88179 Gigabit Ethernet [Sitecom]" }, - { "0df6", "061c", "LN-028 Network USB 2.0 Adapter" }, - { "0df6", "214a", "IDE/SATA Combo Adapter [CN-330]" }, - { "0df6", "21f4", "44 St Bluetooth Device" }, - { "0df6", "2200", "Sitecom bluetooth2.0 class 2 dongle CN-512" }, - { "0df6", "2208", "Sitecom bluetooth2.0 class 2 dongle CN-520" }, - { "0df6", "2209", "Sitecom bluetooth2.0 class 1 dongle CN-521" }, - { "0df6", "3068", "DC-104v2 ISDN Adapter [HFC-S]" }, - { "0df6", "9071", "WL-113 rev 1 Wireless Network USB Adapter" }, - { "0df6", "9075", "WL-117 Hi-Speed USB Adapter" }, - { "0df6", "90ac", "WL-172 Wireless Network USB Adapter 54g Turbo" }, - { "0df6", "9712", "WL-113 rev 2 Wireless Network USB Adapter" }, - { "0df7", "0620", "MA-620 Infrared Adapter" }, - { "0df7", "0700", "MA-700 Bluetooth Adapter" }, - { "0df7", "0720", "MA-720 Bluetooth Adapter" }, - { "0df7", "0722", "Bluetooth Dongle" }, - { "0df7", "0730", "MA-730/MA-730G Bluetooth Adapter" }, - { "0df7", "0800", "Data Cable" }, - { "0df7", "0820", "Data Cable" }, - { "0df7", "0900", "MA i-gotU Travel Logger GPS" }, - { "0df7", "1800", "Generic Card Reader" }, - { "0df7", "1802", "Card Reader" }, - { "0dfc", "0001", "Touchscreen" }, - { "0dfc", "0003", "MultiTouch TouchScreen(Dualtouch)" }, - { "0dfc", "0101", "5-point Touch Screen" }, - { "0dfc", "d107", "MultiTouch TouchScreen" }, - { "0e0b", "9031", "802.11n Wireless USB Card" }, - { "0e0b", "9041", "802.11n Wireless USB Card" }, - { "0e0c", "0101", "LonUSB LonTalk Network Adapter" }, - { "0e0d", "0003", "PicoHarp 300" }, - { "0e0f", "0001", "Device" }, - { "0e0f", "0002", "Virtual USB Hub" }, - { "0e0f", "0003", "Virtual Mouse" }, - { "0e0f", "0004", "Virtual CCID" }, - { "0e0f", "0005", "Virtual Mass Storage" }, - { "0e0f", "0006", "Virtual Keyboard" }, - { "0e0f", "000a", "Virtual Sensors" }, - { "0e0f", "8001", "Root Hub" }, - { "0e0f", "8002", "Root Hub" }, - { "0e0f", "8003", "Root Hub" }, - { "0e0f", "f80a", "Smoker FX2" }, - { "0e20", "0101", "NoteTaker" }, - { "0e20", "0200", "Seiko Instruments InkLink Handwriting System" }, - { "0e21", "0300", "iAudio CW200" }, - { "0e21", "0400", "MP3 Player" }, - { "0e21", "0500", "iAudio M3" }, - { "0e21", "0510", "iAudio X5, subpack USB port" }, - { "0e21", "0513", "iAudio X5, side USB port" }, - { "0e21", "0520", "iAudio M5, side USB port" }, - { "0e21", "0601", "iAudio G3" }, - { "0e21", "0681", "iAUDIO E2" }, - { "0e21", "0700", "iAudio U3" }, - { "0e21", "0751", "iAudio 7" }, - { "0e21", "0760", "iAUDIO U5 / iAUDIO G2" }, - { "0e21", "0800", "Cowon D2 (UMS mode)" }, - { "0e21", "0801", "Cowon D2 (MTP mode)" }, - { "0e21", "0910", "iAUDIO 9" }, - { "0e21", "0920", "J3" }, - { "0e2e", "000b", "BMP 51" }, - { "0e2e", "000c", "BMP 61" }, - { "0e2e", "000d", "BMP 41" }, - { "0e36", "0009", "Handyscope HS3" }, - { "0e36", "000b", "Handyscope HS4" }, - { "0e36", "000f", "Handyscope HS4-DIFF (br)" }, - { "0e36", "0010", "Handyscope HS2" }, - { "0e36", "0011", "TiePieSCOPE HS805 (br)" }, - { "0e36", "0012", "TiePieSCOPE HS805" }, - { "0e36", "0013", "Handyprobe HP3" }, - { "0e36", "0014", "Handyprobe HP3" }, - { "0e36", "0018", "Handyprobe HP2" }, - { "0e36", "001b", "Handyscope HS5" }, - { "0e36", "0042", "TiePieSCOPE HS801" }, - { "0e36", "00fd", "USB To Parallel adapter" }, - { "0e36", "00fe", "USB To Parallel adapter" }, - { "0e39", "0137", "Bluetooth Device" }, - { "0e3a", "1100", "CW-1100 Wireless Network Adapter" }, - { "0e41", "4147", "TonePort GX" }, - { "0e41", "414d", "Pod HD500" }, - { "0e41", "4156", "POD HD Desktop" }, - { "0e41", "4250", "BassPODxt" }, - { "0e41", "4252", "BassPODxt Pro" }, - { "0e41", "4642", "BassPODxt Live" }, - { "0e41", "4650", "PODxt Live" }, - { "0e41", "4750", "GuitarPort" }, - { "0e41", "5044", "PODxt" }, - { "0e41", "5050", "PODxt Pro" }, - { "0e41", "534d", "SeaMonkey" }, - { "0e48", "0100", "CardPro SmartCard Reader" }, - { "0e4c", "1097", "Gamester Controller" }, - { "0e4c", "1103", "Gamester Reflex" }, - { "0e4c", "2390", "Jtech Controller" }, - { "0e4c", "3510", "Gamester for Xbox" }, - { "0e4c", "7288", "funkey reader" }, - { "0e50", "0001", "Matrix USB-Key" }, - { "0e50", "0002", "Matrixlock Dongle (HID)" }, - { "0e55", "110a", "Tanic S110-SG1 + ISSC IS1002N [Slow Infra-Red (SIR) & Bluetooth 1.2 (Class 2) Adapter]" }, - { "0e55", "110b", "MS3303H USB-to-Serial Bridge" }, - { "0e56", "6021", "K-PEX 100" }, - { "0e5c", "6118", "LCD Device" }, - { "0e5c", "6119", "remote receive and control device" }, - { "0e5c", "6441", "C-Media Sound Device" }, - { "0e5e", "6622", "CW6622" }, - { "0e66", "0001", "HWUN1 Hi-Gain Wireless-300N Adapter w/ Upgradable Antenna [Ralink RT2870]" }, - { "0e66", "0003", "HWDN1 Hi-Gain Wireless-300N Dish Adapter [Ralink RT2870]" }, - { "0e66", "0009", "HWUN2 Hi-Gain Wireless-150N Adapter w/ Upgradable Antenna [Ralink RT2770]" }, - { "0e66", "000b", "HWDN2 Hi-Gain Wireless-150N Dish Adapter [Ralink RT2770]" }, - { "0e66", "0013", "HWUN3 Hi-Gain Wireless-N Adapter [Ralink RT3070]" }, - { "0e66", "0015", "HWDN2 Rev. E Hi-Gain Wireless-150N Dish Adapter [Realtek RTL8191SU]" }, - { "0e66", "0017", "HAWNU1 Hi-Gain Wireless-150N Network Adapter with Range Amplifier [Ralink RT3070]" }, - { "0e66", "0018", "Wireless-N Network Adapter [Ralink RT2870]" }, - { "0e66", "400b", "UF100 10/100 Network Adapter" }, - { "0e66", "400c", "UF100 Ethernet [pegasus2]" }, - { "0e67", "0002", "Wrist PDA" }, - { "0e6a", "0101", "MA100 [USB-UART Bridge IC]" }, - { "0e6a", "02c0", "Defender Gaming Keyboard" }, - { "0e6a", "030b", "Truly Ergonomic Computer Keyboard (Device Firmware Update mode)" }, - { "0e6a", "030c", "Truly Ergonomic Computer Keyboard" }, - { "0e6a", "6001", "GEMBIRD Flexible keyboard KB-109F-B-DE" }, - { "0e6a", "7f5c", "BPF-015 Key Chain Photo Frame" }, - { "0e6f", "0003", "Freebird wireless Controller" }, - { "0e6f", "0005", "Eclipse wireless Controller" }, - { "0e6f", "0006", "Edge wireless Controller" }, - { "0e6f", "0008", "After Glow Pro Controller" }, - { "0e6f", "0105", "Disney's High School Musical 3 Dance Pad for Xbox 360" }, - { "0e6f", "0113", "Afterglow AX.1 Gamepad" }, - { "0e6f", "011f", "Rock Candy Wired Controller for Xbox 360" }, - { "0e6f", "0128", "Wireless PS3 Controller" }, - { "0e6f", "0131", "PDP EA Sports Controller" }, - { "0e6f", "0133", "Wired Controller" }, - { "0e6f", "0139", "Afterglow Prismatic Wired Controller for Xbox One" }, - { "0e6f", "013a", "PDP Xbox One Controller" }, - { "0e6f", "0146", "Rock Candy Wired Controller for Xbox One" }, - { "0e6f", "0147", "PDP Marvel Controller for Xbox One" }, - { "0e6f", "015c", "PDP Arcade Stick for Xbox One" }, - { "0e6f", "0161", "Camo Wired Controller for Xbox One" }, - { "0e6f", "0162", "Xbox One Wired Controller" }, - { "0e6f", "0163", "Legendary Collection Deliverer of Truth" }, - { "0e6f", "0164", "Battlefield 1 Wired Controller for Xbox One" }, - { "0e6f", "0165", "Titanfall 2 Wired Controller for Xbox One" }, - { "0e6f", "0201", "Pelican PL-3601" }, - { "0e6f", "0213", "Afterglow Gamepad for Xbox 360" }, - { "0e6f", "021f", "Rock Candy Gamepad for Xbox 360" }, - { "0e6f", "0246", "Rock Candy Gamepad for Xbox One" }, - { "0e6f", "0301", "Controller" }, - { "0e6f", "0346", "Rock Candy Wired Controller for Xbox One" }, - { "0e6f", "0401", "Controller" }, - { "0e6f", "0413", "Afterglow AX.1 Gamepad for Xbox 360" }, - { "0e6f", "0501", "Wired Controller" }, - { "0e6f", "f501", "Hi-TEC Essentials Wired Gamepad" }, - { "0e6f", "f900", "Afterglow AX.1" }, - { "0e79", "1106", "Pocket Media Assistant - PMA400" }, - { "0e79", "1204", "Gmini XS 200" }, - { "0e79", "1306", "504 Portable Multimedia Player" }, - { "0e79", "1330", "5 Tablet" }, - { "0e79", "1332", "5 IMT" }, - { "0e79", "1416", "32 IT" }, - { "0e79", "1417", "A43 IT" }, - { "0e79", "14ad", "97 Titanium HD" }, - { "0e79", "150e", "80 G9" }, - { "0e79", "3001", "40 Titanium" }, - { "0e7e", "0001", "Yopy 3000 PDA" }, - { "0e7e", "1001", "YP3X00 PDA" }, - { "0e8d", "0002", "phone (mass storage mode) [Doro Primo 413]" }, - { "0e8d", "0003", "MT6227 phone" }, - { "0e8d", "0004", "MT6227 phone" }, - { "0e8d", "0023", "S103 / Powertel M6200" }, - { "0e8d", "00a5", "GSM modem [Medion Surfstick Model:S4222]" }, - { "0e8d", "1806", "Samsung SE-208 Slim Portable DVD Writer" }, - { "0e8d", "1836", "Samsung SE-S084 Super WriteMaster Slim External DVD writer" }, - { "0e8d", "1887", "Slim Portable DVD Writer" }, - { "0e8d", "1956", "Samsung SE-506 Portable BluRay Disc Writer" }, - { "0e8d", "2000", "MT65xx Preloader" }, - { "0e8d", "2008", "Cyrus Technology CS 24" }, - { "0e8d", "3329", "Qstarz BT-Q1000XT" }, - { "0e8d", "7612", "MT7612U 802.11a/b/g/n/ac Wireless Adapter" }, - { "0e8d", "763e", "MT7630e Bluetooth Adapter" }, - { "0e8d", "7668", "MT7668 2x2 Dual Band Dual Concurrent 802.11a/b/g/n/ac WiFi with MU-MIMO and Bluetooth 5.0 Radios" }, - { "0e8f", "0003", "MaxFire Blaze2" }, - { "0e8f", "0012", "Joystick/Gamepad" }, - { "0e8f", "0016", "4 port USB 1.1 hub UH-174" }, - { "0e8f", "0020", "USB to PS/2 Adapter" }, - { "0e8f", "0021", "Multimedia Keyboard Controller" }, - { "0e8f", "0022", "multimedia keyboard controller" }, - { "0e8f", "0201", "SmartJoy Frag Xpad/PS2 adaptor" }, - { "0e8f", "3008", "Xbox Controller" }, - { "0e8f", "300a", "steering Wheel" }, - { "0e90", "0100", "Storage Adapter V1" }, - { "0e96", "c001", "TRUST 380 USB2 SPACEC@M" }, - { "0e97", "0908", "Composite HID (Keyboard and Mouse)" }, - { "0e9c", "0000", "Streamzap Remote Control" }, - { "0ea0", "2126", "7-in-1 Card Reader" }, - { "0ea0", "2153", "SD Card Reader Key" }, - { "0ea0", "2168", "Transcend JetFlash 2.0 / Astone USB Drive / Intellegent Stick 2.0" }, - { "0ea0", "2213", "WinDroid N287 AH7N2502.013317" }, - { "0ea0", "6803", "OTI-6803 Flash Disk" }, - { "0ea0", "6808", "OTI-6808 Flash Disk" }, - { "0ea0", "6828", "OTI-6828 Flash Disk" }, - { "0ea0", "6858", "OTi-6858 serial adapter" }, - { "0eb0", "9020", "NovaTech NV-902W" }, - { "0eb0", "9021", "RT2573" }, - { "0eb1", "6666", "WinFast WalkieTV TV Loader" }, - { "0eb1", "6668", "WinFast WalkieTV TV Loader" }, - { "0eb1", "7007", "WinFast WalkieTV WDM Capture" }, - { "0eb8", "2200", "Ariva Scale" }, - { "0eb8", "f000", "BC60 Scale" }, - { "0ebb", "0002", "FT-IR Spectrometer" }, - { "0ec7", "1008", "So., Show 301 Digital Camera" }, - { "0ecd", "1400", "CD/RW 40X" }, - { "0ecd", "a100", "LDW-411SX DVD/CD Rewritable Drive" }, - { "0ed1", "6660", "Flash Disk 64M-C" }, - { "0ed1", "6680", "Flash Disk 64M-B" }, - { "0ed1", "7634", "MP3 Player" }, - { "0ed5", "e000", "USB-inSync Device" }, - { "0ed5", "f000", "Fiberbyte USB-inSync Device" }, - { "0ed5", "f201", "Fiberbyte USB-inSync DAQ-2500X" }, - { "0edf", "2060", "FID irock! 100 Series" }, - { "0ee3", "1000", "Image Tank 1.5" }, - { "0ee4", "0690", "SATA 3 Adapter" }, - { "0eee", "8810", "Mass Storage Drive" }, - { "0eef", "0001", "Titan6001 Surface Acoustic Wave Touchscreen Controller [eGalax]" }, - { "0eef", "0002", "Touchscreen Controller(Professional)" }, - { "0eef", "7200", "Touchscreen Controller" }, - { "0eef", "7904", "Multitouch Capacitive Touchscreen eGalaxTouch EXC7904-21v00_T13 [IIyama Prolite T1932-MSC]" }, - { "0eef", "a802", "eGalaxTouch EXC7920" }, - { "0eef", "b10e", "eGalaxTouch EXC3000" }, - { "0eef", "c000", "Multitouch Capacitive Touchscreen eGalaxTouch EXC3188-4643-08.00.00.00 Sirius_4643 PCAP3188UR Series [IIyama Prolite PLT1932MSC]" }, - { "0ef5", "2202", "Flash Disk" }, - { "0ef5", "2366", "Flash Disk" }, - { "0f03", "0001", "Alpha 1200Sx" }, - { "0f0d", "000a", "Dead or Alive 4 FightStick for Xbox 360" }, - { "0f0d", "000c", "Horipad EX Turbo for Xbox 360" }, - { "0f0d", "000d", "Fighting Stick EX2 for Xbox 360" }, - { "0f0d", "0011", "Real Arcade Pro 3" }, - { "0f0d", "0016", "Real Arcade Pro.EX for Xbox 360" }, - { "0f0d", "001b", "Real Aracde Pro.VX" }, - { "0f0d", "0063", "Real Arcade Pro Hayabusa for Xbox One" }, - { "0f0d", "0067", "Horipad One" }, - { "0f0d", "0078", "Real Arcade Pro V Kai for Xbox One / Xbox 360" }, - { "0f0d", "0090", "Horipad Ultimate" }, - { "0f0d", "00c1", "HORIPAD for Nintendo Switch" }, - { "0f0f", "0006", "GreenPak Universal Dev Board (Active Mode)" }, - { "0f0f", "8006", "GreenPak Universal Dev Board (Reset Mode)" }, - { "0f11", "1000", "CASSY-S" }, - { "0f11", "1010", "Pocket-CASSY" }, - { "0f11", "1020", "Mobile-CASSY" }, - { "0f11", "1080", "Joule and Wattmeter" }, - { "0f11", "1081", "Digital Multimeter P" }, - { "0f11", "1090", "UMI P" }, - { "0f11", "1100", "X-Ray Apparatus" }, - { "0f11", "1101", "X-Ray Apparatus" }, - { "0f11", "1200", "VideoCom" }, - { "0f11", "2000", "COM3LAB" }, - { "0f11", "2010", "Terminal Adapter" }, - { "0f11", "2020", "Network Analyser" }, - { "0f11", "2030", "Converter Control Unit" }, - { "0f11", "2040", "Machine Test System" }, - { "0f14", "0012", "Vital'Act 3S" }, - { "0f14", "0038", "XIRING Smart Card Terminal LEO V2" }, - { "0f18", "0002", "CCD" }, - { "0f18", "0006", "Focuser" }, - { "0f18", "0007", "Filter Wheel" }, - { "0f18", "000a", "ProLine CCD" }, - { "0f18", "000b", "Color Filter Wheel 4" }, - { "0f18", "000c", "PDF2" }, - { "0f18", "000d", "Guider" }, - { "0f30", "001c", "PS3 Guitar Controller Dongle" }, - { "0f30", "010b", "Philips Recoil" }, - { "0f30", "0110", "Dual Analog Rumble Pad" }, - { "0f30", "0111", "Colour Rumble Pad" }, - { "0f30", "0202", "Joytech Advanced Controller" }, - { "0f30", "0208", "Xbox & PC Gamepad" }, - { "0f30", "8888", "BigBen XBMiniPad Controller" }, - { "0f39", "0404", "Recreated ZX Spectrum Keyboard" }, - { "0f39", "0876", "Keyboard [87 Francium Pro]" }, - { "0f39", "1086", "DK2108SZ Keyboard [Ducky Zero]" }, - { "0f3d", "0112", "CDMA 1xEVDO PC Card, PC 5220" }, - { "0f44", "ef11", "Patriot (firmware not loaded)" }, - { "0f44", "ef12", "Patriot" }, - { "0f44", "ff11", "Liberty (firmware not loaded)" }, - { "0f44", "ff12", "Liberty" }, - { "0f49", "0a00", "Zenius" }, - { "0f4d", "1000", "Bluetooth Dongle" }, - { "0f54", "0101", "MP6 Stage Piano" }, - { "0f5d", "9455", "Compact Drive" }, - { "0f62", "1001", "Targus Mini Trackball Optical Mouse" }, - { "0f63", "0010", "Leapster Explorer" }, - { "0f63", "0022", "Leap Reader" }, - { "0f63", "0500", "Fly Fusion" }, - { "0f63", "0600", "Leap Port Turbo" }, - { "0f63", "0700", "POGO" }, - { "0f63", "0800", "Didj" }, - { "0f63", "0900", "TAGSchool" }, - { "0f63", "0a00", "Leapster 2" }, - { "0f63", "0b00", "Crammer" }, - { "0f63", "0c00", "Tag Jr" }, - { "0f63", "0d00", "My Pal Scout" }, - { "0f63", "0e00", "Tag32" }, - { "0f63", "0f00", "Tag64" }, - { "0f63", "1000", "Kiwi16" }, - { "0f63", "1100", "Leapster L2x" }, - { "0f63", "1111", "Fly Fusion" }, - { "0f63", "1300", "Didj UK/France (Leapster Advance)" }, - { "0f6e", "0100", "IS-CGB-EMULATOR" }, - { "0f6e", "0201", "GameBoy Advance Flash Gang Writer" }, - { "0f6e", "0202", "IS-AGB-CAPTURE" }, - { "0f6e", "0300", "IS-DOL-VIEWER" }, - { "0f6e", "0400", "IS-NITRO-EMULATOR" }, - { "0f6e", "0401", "IS-NITRO-UIC" }, - { "0f6e", "0402", "IS-NITRO-WRITER" }, - { "0f6e", "0403", "IS-NITRO-CAPTURE" }, - { "0f6e", "0404", "IS-NITRO-EMULATOR (DS Lite)" }, - { "0f6e", "0500", "IS-TWL-DEBUGGER" }, - { "0f6e", "0501", "IS-TWL-CAPTURE" }, - { "0f88", "3012", "RT2570" }, - { "0f88", "3014", "ZD1211B" }, - { "0f9c", "0301", "M-Any Premium DAH-610 MP3/WMA Player" }, - { "0f9c", "0332", "mobiBLU DAH-1200 MP3/Ogg Player" }, - { "0fb6", "3fc3", "Firefly X10i I/O Board (with firmware)" }, - { "0fb6", "3fc4", "Firefly X10i I/O Board (without firmware)" }, - { "0fb8", "0002", "eHome Infrared Receiver" }, - { "0fc5", "1222", "I/O Development Board" }, - { "0fca", "0001", "Blackberry Handheld" }, - { "0fca", "0004", "Blackberry Handheld" }, - { "0fca", "0006", "Blackberry Pearl" }, - { "0fca", "0008", "Blackberry Pearl" }, - { "0fca", "8001", "Blackberry Handheld" }, - { "0fca", "8004", "Blackberry" }, - { "0fca", "8007", "Blackberry Handheld" }, - { "0fca", "8010", "Blackberry Playbook (Connect to Windows mode)" }, - { "0fca", "8011", "Blackberry Playbook (Connect to Mac mode)" }, - { "0fca", "8014", "Blackberry Handheld Z30" }, - { "0fca", "8020", "Blackberry Playbook (CD-Rom mode)" }, - { "0fca", "8037", "Blackberry PRIV" }, - { "0fce", "0076", "W910i (Multimedia mode)" }, - { "0fce", "00af", "V640i Phone [PTP Camera]" }, - { "0fce", "00d4", "C902 [MTP]" }, - { "0fce", "00d9", "C702 Phone" }, - { "0fce", "0112", "W995 Walkman Phone" }, - { "0fce", "014e", "J108i Cedar (MTP mode)" }, - { "0fce", "015a", "Xperia Pro [Media Transfer Protocol]" }, - { "0fce", "0166", "Xperia Mini Pro" }, - { "0fce", "0167", "ST15i (Xperia mini)" }, - { "0fce", "0169", "Xperia S" }, - { "0fce", "0172", "Xperia P" }, - { "0fce", "0177", "Xperia Ion [Mass Storage]" }, - { "0fce", "0188", "ST26i" }, - { "0fce", "019c", "C6833" }, - { "0fce", "019e", "C6903" }, - { "0fce", "01a5", "SO-04F" }, - { "0fce", "01a7", "D5503" }, - { "0fce", "01ba", "D6603 [Xperia Z3]" }, - { "0fce", "01bb", "D5803 [Xperia Z3 Compact] (MTP mode)" }, - { "0fce", "01e0", "F5122 [Xperia X dual] (MTP mode)" }, - { "0fce", "01e8", "F5321 [Xperia X Compact] (MTP mode)" }, - { "0fce", "01f9", "H8314 [Xperia XZ2 Compact]" }, - { "0fce", "1010", "WMC Modem" }, - { "0fce", "10af", "V640i Phone [PictBridge]" }, - { "0fce", "10d4", "C902 Phone [PictBridge]" }, - { "0fce", "2105", "W715 Phone" }, - { "0fce", "2137", "Xperia X10 mini (USB debug)" }, - { "0fce", "2138", "Xperia X10 mini pro (Debug)" }, - { "0fce", "2149", "Xperia X8 (debug)" }, - { "0fce", "214e", "J108i Cedar (Windows-driver mode)" }, - { "0fce", "3137", "Xperia X10 mini" }, - { "0fce", "3138", "Xperia X10 mini pro" }, - { "0fce", "3149", "Xperia X8" }, - { "0fce", "514f", "Xperia arc S [Adb-Enable Mode]" }, - { "0fce", "5169", "Xperia S [Adb-Enable Mode]" }, - { "0fce", "5177", "Xperia Ion [Debug Mode]" }, - { "0fce", "518c", "C1605 [Xperia E dual] MTD mode" }, - { "0fce", "51a7", "D5503 (Xperia Z1 Compact)" }, - { "0fce", "51e0", "F5122 [Xperia X dual] (developer mode)" }, - { "0fce", "614f", "Xperia X12 (debug mode)" }, - { "0fce", "6166", "Xperia Mini Pro" }, - { "0fce", "618c", "C1605 [Xperia E dual] MSC mode" }, - { "0fce", "715a", "Xperia Pro [Tethering]" }, - { "0fce", "7166", "Xperia Mini Pro (Tethering mode)" }, - { "0fce", "7177", "Xperia Ion [Tethering]" }, - { "0fce", "71f4", "G8441 (Xperia XZ1 Compact) [Tethering]" }, - { "0fce", "71f9", "H8314 [Xperia XZ2 Compact] (Tethering)" }, - { "0fce", "8004", "9000 Phone [Mass Storage]" }, - { "0fce", "81f4", "G8441 (Xperia XZ1 Compact) [Tethering]" }, - { "0fce", "adde", "C2005 (Xperia M dual) in service mode" }, - { "0fce", "c1e0", "F5122 [Xperia X dual] (MIDI mode)" }, - { "0fce", "c1e8", "F5321 [Xperia X Compact] (MIDI mode)" }, - { "0fce", "c1f9", "H8314 [Xperia XZ2 Compact] (MIDI)" }, - { "0fce", "d008", "V800-Vodafone 802SE Phone" }, - { "0fce", "d016", "K750i Phone" }, - { "0fce", "d017", "K608i Phone" }, - { "0fce", "d019", "VDC EGPRS Modem" }, - { "0fce", "d025", "520 WMC Data Modem" }, - { "0fce", "d028", "W800i" }, - { "0fce", "d038", "W850i Phone" }, - { "0fce", "d039", "K800i (phone mode)" }, - { "0fce", "d041", "K510i Phone" }, - { "0fce", "d042", "W810i Phone" }, - { "0fce", "d043", "V630i Phone" }, - { "0fce", "d046", "K610i Phone" }, - { "0fce", "d065", "W960i Phone (PC Suite)" }, - { "0fce", "d076", "W910i (Phone mode)" }, - { "0fce", "d079", "K530 Phone" }, - { "0fce", "d089", "W580i Phone (mass storage)" }, - { "0fce", "d0a1", "K810" }, - { "0fce", "d0af", "V640i Phone" }, - { "0fce", "d0cf", "MD300 Mobile Broadband Modem" }, - { "0fce", "d0d4", "C902 Phone [Modem]" }, - { "0fce", "d0e1", "MD400 Mobile Broadband Modem" }, - { "0fce", "d12a", "U100i Yari Phone" }, - { "0fce", "d12e", "Xperia X10" }, - { "0fce", "d14e", "J108i Cedar (modem mode)" }, - { "0fce", "e000", "K810 (PictBridge mode)" }, - { "0fce", "e039", "K800i (msc mode)" }, - { "0fce", "e042", "W810i Phone" }, - { "0fce", "e043", "V630i Phone [Mass Storage]" }, - { "0fce", "e075", "K850i" }, - { "0fce", "e076", "W910i (Mass storage)" }, - { "0fce", "e089", "W580i Phone" }, - { "0fce", "e090", "W200 Phone (Mass Storage)" }, - { "0fce", "e0a1", "K810 (Mass Storage mode)" }, - { "0fce", "e0a3", "W660i" }, - { "0fce", "e0af", "V640i Phone [Mass Storage]" }, - { "0fce", "e0d4", "C902 Phone [Mass Storage]" }, - { "0fce", "e0ef", "C905 Phone [Mass Storage]" }, - { "0fce", "e0f3", "W595" }, - { "0fce", "e105", "W705" }, - { "0fce", "e112", "W995 Phone (Mass Storage)" }, - { "0fce", "e12e", "X10i Phone" }, - { "0fce", "e133", "Vivaz" }, - { "0fce", "e14e", "J108i Cedar (mass-storage mode)" }, - { "0fce", "e14f", "Xperia Arc/X12" }, - { "0fce", "e15a", "Xperia Pro [Mass Storage Class]" }, - { "0fce", "e161", "Xperia Ray" }, - { "0fce", "e166", "Xperia Mini Pro" }, - { "0fce", "e167", "XPERIA mini" }, - { "0fce", "e19b", "C2005 [Xperia M dual] (Mass Storage)" }, - { "0fce", "e1a9", "D5303" }, - { "0fce", "e1aa", "D2303" }, - { "0fce", "e1ad", "D5103" }, - { "0fce", "e1b0", "D6708" }, - { "0fce", "e1b5", "D2004" }, - { "0fce", "e1ba", "D6683" }, - { "0fce", "e1bb", "SO-02G" }, - { "0fce", "e1bc", "D2203" }, - { "0fce", "e1c0", "SGP621" }, - { "0fce", "e1c2", "D2533" }, - { "0fce", "e1c9", "E6553" }, - { "0fce", "e1cf", "SGP771" }, - { "0fce", "f0fa", "MN800 / Smartwatch 2 (DFU mode)" }, - { "0fcf", "1003", "ANT Development Board" }, - { "0fcf", "1004", "ANTUSB Stick" }, - { "0fcf", "1006", "ANT Development Board" }, - { "0fcf", "1008", "ANTUSB2 Stick" }, - { "0fcf", "1009", "ANTUSB-m Stick" }, - { "0fd2", "0001", "RDS 6000" }, - { "0fd9", "0011", "EyeTV Diversity" }, - { "0fd9", "0018", "EyeTV Hybrid" }, - { "0fd9", "0020", "EyeTV DTT Deluxe" }, - { "0fd9", "0021", "EyeTV DTT" }, - { "0fd9", "002a", "EyeTV Sat" }, - { "0fd9", "002c", "EyeTV DTT Deluxe v2" }, - { "0fd9", "0033", "Video Capture" }, - { "0fd9", "0037", "Video Capture v2" }, - { "0fd9", "0060", "Stream Deck" }, - { "0fd9", "0063", "Stream Deck Mini" }, - { "0fd9", "006c", "Stream Deck XL" }, - { "0fd9", "006d", "Stream Deck original V2" }, - { "0fda", "0100", "quanton flight control" }, - { "0fde", "ca01", "WMRS200 weather station" }, - { "0fde", "ca05", "CM160" }, - { "0fde", "ca08", "WMR300 Professional Weather System" }, - { "0fe0", "0100", "Bluetooth Mouse" }, - { "0fe0", "0101", "Bluetooth IMU" }, - { "0fe0", "0200", "Bluetooth Keypad" }, - { "0fe6", "8101", "DM9601 Fast Ethernet Adapter" }, - { "0fe6", "811e", "Parallel Adapter" }, - { "0fe6", "9700", "DM9601 Fast Ethernet Adapter" }, - { "0fe9", "4020", "TViX M-6500" }, - { "0fe9", "9010", "FusionRemote IR receiver" }, - { "0fe9", "db00", "FusionHDTV DVB-T (MT352+LgZ201) (uninitialized)" }, - { "0fe9", "db01", "FusionHDTV DVB-T (MT352+LgZ201) (initialized)" }, - { "0fe9", "db10", "FusionHDTV DVB-T (MT352+Thomson7579) (uninitialized)" }, - { "0fe9", "db11", "FusionHDTV DVB-T (MT352+Thomson7579) (initialized)" }, - { "0fe9", "db78", "FusionHDTV DVB-T Dual Digital 4 (ZL10353+xc2028/xc3028) (initialized)" }, - { "0ffc", "0021", "Nord Stage 2" }, - { "0ffc", "002a", "Nord Piano 4" }, - { "0ffd", "ff00", "OEM" }, - { "1000", "153b", "TerraTec Electronic GmbH" }, - { "1003", "0003", "SD14" }, - { "1003", "0100", "SD9/SD10" }, - { "1003", "8781", "Dock UD-01" }, - { "1004", "1fae", "U8120 3G Cellphone" }, - { "1004", "6000", "Various Mobile Phones" }, - { "1004", "6005", "T5100" }, - { "1004", "6018", "GM360/GD510/GW520/KP501" }, - { "1004", "618e", "Ally/Optimus One/Vortex (debug mode)" }, - { "1004", "618f", "Ally/Optimus One" }, - { "1004", "61c5", "P880 / Charge only" }, - { "1004", "61c6", "Vortex (msc)" }, - { "1004", "61cc", "Optimus S" }, - { "1004", "61da", "G2 Android Phone [tethering mode]" }, - { "1004", "61f1", "Optimus Android Phone [LG Software mode]" }, - { "1004", "61f9", "Optimus (Various Models) MTP Mode" }, - { "1004", "61fc", "Optimus 3" }, - { "1004", "61fe", "Optimus Android Phone [USB tethering mode]" }, - { "1004", "627f", "G3 (VS985) Android Phone (MTP/Download mode)" }, - { "1004", "6300", "G2/Optimus Android Phone [Charge mode]" }, - { "1004", "631c", "LM-X420xxx/G2/Optimus Android Phone (charge mode)" }, - { "1004", "631d", "Optimus Android Phone (Camera/PTP Mode)" }, - { "1004", "631e", "LM-X420xxx/G2/Optimus Android Phone (PTP/camera mode)" }, - { "1004", "631f", "Optimus Android Phone (Charge Mode)" }, - { "1004", "633a", "Ultimate 2 Android Phone L41C" }, - { "1004", "633e", "LM-X420xxx/G2/G3 Android Phone (MTP/download mode)" }, - { "1004", "6344", "LM-X420xxx/G2 Android Phone (USB tethering mode)" }, - { "1004", "6348", "LM-X420xxx Android Phone (MIDI mode)" }, - { "1004", "6356", "Optimus Android Phone [Virtual CD mode]" }, - { "1004", "6800", "CDMA Modem" }, - { "1004", "7000", "LG LDP-7024D(LD)USB" }, - { "1004", "91c8", "P880 / USB tethering" }, - { "1004", "a400", "Renoir (KC910)" }, - { "1005", "1001", "MP3 Player" }, - { "1005", "1004", "MP3 Player" }, - { "1005", "1006", "MP3 Player" }, - { "1005", "b113", "Handy Steno/AH123 / Handy Steno 2.0/HT203" }, - { "1005", "b155", "Disk Module" }, - { "1005", "b223", "CD-RW + 6in1 Card Reader Digital Storage / Converter" }, - { "1006", "3001", "iHP-100" }, - { "1006", "3002", "iHP-120/140 MP3 Player" }, - { "1006", "3003", "H320/H340" }, - { "1006", "3004", "H340 (mtp)" }, - { "1009", "000e", "eHome Infrared Receiver" }, - { "1009", "0013", "Angel MPEG Device" }, - { "1009", "0015", "Lumanate Wave PAL SECAM DVBT Device" }, - { "1009", "0016", "Lumanate Wave NTSC/ATSC Combo Device" }, - { "100a", "2402", "MP3 Player" }, - { "100a", "2404", "MP3 Player" }, - { "100a", "2405", "MP3 Player" }, - { "100a", "2406", "MP3 Player" }, - { "100a", "a0c0", "MP3 Player" }, - { "100d", "3342", "Cayman 3352 DSL Modem" }, - { "100d", "3382", "3380 Series Network Interface" }, - { "100d", "6072", "DSL Modem" }, - { "100d", "9031", "Motorola 802.11n Dualband USB Wireless Adapter" }, - { "100d", "9032", "Motorola 802.11n 5G USB Wireless Adapter" }, - { "100d", "cb01", "Cayman 3341 Ethernet DSL Router" }, - { "1011", "0001", "AccFast Mp3" }, - { "1017", "9015", "M625 [Vendor: DELUX]" }, - { "1019", "0c55", "Flash Reader, Desknote UCR-61S2B" }, - { "1019", "0f38", "Infrared Receiver" }, - { "1020", "0006", "Wireless Keyboard" }, - { "1020", "000a", "Wireless Optical Mouse" }, - { "1020", "0106", "Wireless Optical Mouse/Keyboard" }, - { "1025", "005e", "USB DVB-T device" }, - { "1025", "005f", "USB DVB-T device" }, - { "1025", "0300", "MP3 Player" }, - { "1025", "0350", "MP3 Player" }, - { "102c", "6151", "Q-Cam Sangha CIF" }, - { "102c", "6251", "Q-Cam VGA" }, - { "102c", "ff0c", "Joytech Wireless Advanced Controller" }, - { "1033", "0068", "3,5'' HDD case MD-231" }, - { "1038", "0100", "Ideazon Zboard" }, - { "1038", "1260", "Arctis 7 wireless adapter" }, - { "1038", "1361", "Ideazon Sensei" }, - { "1038", "1410", "SRW-S1 [Simraceway Steering Wheel]" }, - { "1038", "1720", "Mouse" }, - { "1039", "0824", "1866 802.11bg [Texas Instruments TNETW1450]" }, - { "1039", "2140", "dsl+ 1100 duo" }, - { "103a", "f000", "Actia Evo XS" }, - { "103d", "0100", "ScratchAmp" }, - { "103d", "0101", "ScratchAmp" }, - { "1043", "160f", "Wireless Network Adapter" }, - { "1043", "4901", "AV-836 Video Capture Device" }, - { "1043", "8006", "Flash Disk 32-256 MB" }, - { "1043", "8012", "Flash Disk 256 MB" }, - { "1044", "7001", "Gigabyte U7000 DVB-T tuner" }, - { "1044", "7002", "Gigabyte U8000 DVB-T tuner" }, - { "1044", "7004", "Gigabyte U7100 DVB-T tuner" }, - { "1044", "7005", "Gigabyte U7200 DVB-T tuner [AF9035]" }, - { "1044", "7006", "Gigabyte U6000 DVB-T tuner [em2863]" }, - { "1044", "8001", "GN-54G" }, - { "1044", "8002", "GN-BR402W" }, - { "1044", "8003", "GN-WLBM101" }, - { "1044", "8004", "GN-WLBZ101 802.11b Adapter" }, - { "1044", "8005", "GN-WLBZ201 802.11b Adapter" }, - { "1044", "8006", "GN-WBZB-M 802.11b Adapter" }, - { "1044", "8007", "GN-WBKG" }, - { "1044", "8008", "GN-WB01GS" }, - { "1044", "800a", "GN-WI05GS" }, - { "1044", "800b", "GN-WB30N 802.11n WLAN Card" }, - { "1044", "800c", "GN-WB31N 802.11n USB WLAN Card" }, - { "1044", "800d", "GN-WB32L 802.11n USB WLAN Card" }, - { "1046", "6694", "Generic W6694 USB" }, - { "1046", "8901", "Bluetooth Device" }, - { "1046", "9967", "W9967CF/W9968CF Webcam IC" }, - { "1048", "2010", "4-Port hub" }, - { "104d", "1003", "Model-52 LED Light Source Power Supply and Driver" }, - { "104d", "3001", "ESP301 3 Axis Motion Controller" }, - { "104f", "0001", "Infinity Phoenix" }, - { "104f", "0002", "Smartmouse" }, - { "104f", "0003", "FunProgrammer" }, - { "104f", "0004", "Infinity Unlimited" }, - { "104f", "0006", "Infinity Smart" }, - { "104f", "0007", "Infinity Smart module" }, - { "104f", "0008", "Infinity CryptoKey" }, - { "104f", "0009", "RE-BL PlayStation 3 IR-to-Bluetooth converter" }, - { "1050", "0010", "Yubikey (v1 or v2)" }, - { "1050", "0110", "Yubikey NEO(-N) OTP" }, - { "1050", "0111", "Yubikey NEO(-N) OTP+CCID" }, - { "1050", "0112", "Yubikey NEO(-N) CCID" }, - { "1050", "0113", "Yubikey NEO(-N) U2F" }, - { "1050", "0114", "Yubikey NEO(-N) OTP+U2F" }, - { "1050", "0115", "Yubikey NEO(-N) U2F+CCID" }, - { "1050", "0116", "Yubikey NEO(-N) OTP+U2F+CCID" }, - { "1050", "0120", "Yubikey Touch U2F Security Key" }, - { "1050", "0200", "Gnubby U2F" }, - { "1050", "0211", "Gnubby" }, - { "1050", "0401", "Yubikey 4/5 OTP" }, - { "1050", "0402", "Yubikey 4/5 U2F" }, - { "1050", "0403", "Yubikey 4/5 OTP+U2F" }, - { "1050", "0404", "Yubikey 4/5 CCID" }, - { "1050", "0405", "Yubikey 4/5 OTP+CCID" }, - { "1050", "0406", "Yubikey 4/5 U2F+CCID" }, - { "1050", "0407", "Yubikey 4/5 OTP+U2F+CCID" }, - { "1050", "0410", "Yubikey plus OTP+U2F" }, - { "1054", "5004", "DSL 7420 Loader" }, - { "1054", "5005", "DSL 7420 LAN Modem" }, - { "1058", "0200", "FireWire USB Combo" }, - { "1058", "0400", "External HDD" }, - { "1058", "0500", "hub" }, - { "1058", "0701", "WD Passport (WDXMS)" }, - { "1058", "0702", "WD Passport (WDXMS)" }, - { "1058", "0704", "My Passport Essential (WDME)" }, - { "1058", "0705", "My Passport Elite (WDML)" }, - { "1058", "070a", "My Passport Essential (WDBAAA), My Passport for Mac (WDBAAB), My Passport Essential SE (WDBABM), My Passport SE for Mac (WDBABW)" }, - { "1058", "070b", "My Passport Elite (WDBAAC)" }, - { "1058", "070c", "My Passport Studio (WDBAAE)" }, - { "1058", "071a", "My Passport Essential (WDBAAA)" }, - { "1058", "071d", "My Passport Studio (WDBALG)" }, - { "1058", "0730", "My Passport Essential (WDBACY)" }, - { "1058", "0732", "My Passport Essential SE (WDBGYS)" }, - { "1058", "0740", "My Passport Essential (WDBACY)" }, - { "1058", "0741", "My Passport Ultra" }, - { "1058", "0742", "My Passport Essential SE (WDBGYS)" }, - { "1058", "0748", "My Passport (WDBKXH, WDBY8L)" }, - { "1058", "07a8", "My Passport (WDBBEP), My Passport for Mac (WDBLUZ)" }, - { "1058", "07ae", "My Passport Edge for Mac (WDBJBH)" }, - { "1058", "07ba", "PiDrive (WDLB)" }, - { "1058", "0810", "My Passport Ultra (WDBZFP)" }, - { "1058", "0816", "My Passport Air (WDBBLW)" }, - { "1058", "0820", "My Passport Ultra (WDBMWV, WDBZFP)" }, - { "1058", "0822", "My Passport Ultra (WDBBUZ)" }, - { "1058", "0824", "My Passport Slim (WDBPDZ)" }, - { "1058", "0830", "My Passport Ultra (WDBZFP)" }, - { "1058", "0837", "My Passport Ultra (WDBBKD)" }, - { "1058", "0900", "MyBook Essential External HDD" }, - { "1058", "0901", "My Book Essential Edition (Green Ring) (WDG1U)" }, - { "1058", "0902", "My Book Pro Edition (WDG1T)" }, - { "1058", "0903", "My Book Premium Edition" }, - { "1058", "0905", "My Book Pro Edition II (WD10000C033-001)" }, - { "1058", "0910", "My Book Essential Edition (Green Ring) (WDG1U)" }, - { "1058", "1001", "Elements Desktop (WDE1U)" }, - { "1058", "1003", "WD Elements Desktop (WDE1UBK)" }, - { "1058", "1010", "Elements Portable (WDBAAR)" }, - { "1058", "1021", "Elements Desktop (WDBAAU)" }, - { "1058", "1023", "Elements SE Portable (WDBABV)" }, - { "1058", "1042", "Elements SE Portable (WDBPCK)" }, - { "1058", "1048", "Elements Portable (WDBU6Y)" }, - { "1058", "1078", "Elements Portable (WDBUZG)" }, - { "1058", "107c", "Elements Desktop (WDBWLG)" }, - { "1058", "10a2", "Elements SE Portable (WDBPCK)" }, - { "1058", "10a8", "Elements Portable (WDBUZG)" }, - { "1058", "10b8", "Elements Portable (WDBU6Y, WDBUZG)" }, - { "1058", "1100", "My Book Essential Edition 2.0 (WDH1U)" }, - { "1058", "1102", "My Book Home Edition (WDH1CS)" }, - { "1058", "1103", "My Book Studio" }, - { "1058", "1104", "My Book Mirror Edition (WDH2U)" }, - { "1058", "1105", "My Book Studio II" }, - { "1058", "1110", "My Book Essential (WDBAAF), My Book for Mac (WDBAAG)" }, - { "1058", "1111", "My Book Elite (WDBAAH)" }, - { "1058", "1112", "My Book Studio (WDBAAJ), My Book Studio LX (WDBACH)" }, - { "1058", "1123", "My Book 3.0 (WDBABP)" }, - { "1058", "1130", "My Book Essential (WDBACW)" }, - { "1058", "1140", "My Book Essential (WDBACW)" }, - { "1058", "1170", "My Book Essential 3TB (WDBACW0030HBK)" }, - { "1058", "1230", "My Book (WDBFJK)" }, - { "1058", "1235", "My Book (WDBFJK0040HBK)" }, - { "1058", "2599", "My Passport Ultra (WD40NMZW)" }, - { "1058", "259d", "My Passport Ultra (WDBBKD)" }, - { "1058", "259f", "My Passport Ultra (WD10JMVW)" }, - { "1058", "25a1", "Elements / My Passport" }, - { "1058", "25a2", "Elements 25A2" }, - { "1058", "25a3", "Elements Desktop (WDBWLG)" }, - { "1058", "25da", "My Book (WDBFJK)" }, - { "1058", "25e1", "My Passport (WD20NMVW)" }, - { "1058", "25e2", "My Passport (WD40NMZW)" }, - { "1058", "25ee", "My Book 25EE" }, - { "1058", "25f3", "My Passport SSD (WDBK3E)" }, - { "1058", "25fa", "easystore Portable 5TB (WDBKUZ0050)" }, - { "1058", "25fb", "easystore Desktop (WDBCKA)" }, - { "1058", "2603", "My Passport Game Storage for PS4 4TB (WDBZGE0040)" }, - { "1058", "2624", "easystore Portable 5TB (WDBKUZ0050)" }, - { "1058", "2626", "My Passport (WDBPKJ)" }, - { "1058", "30a0", "SATA adapter cable" }, - { "1059", "000b", "StarSign Bio Token 3.0" }, - { "105b", "e065", "BCM43142A0 Bluetooth module" }, - { "1063", "1555", "MC141555 Hub" }, - { "1063", "4100", "SB4100 USB Cable Modem" }, - { "1065", "0020", "USB-DVR2 Dev Board" }, - { "1065", "2136", "EasyDisk ED1064" }, - { "1068", "0001", "CPUSB - V 1.8 - software-rights management key" }, - { "106c", "1101", "CDMA 2000 1xRTT USB modem (HX-550C)" }, - { "106c", "1102", "Packet Service" }, - { "106c", "1103", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1104", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1105", "Composite Device" }, - { "106c", "1106", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1301", "Composite Device" }, - { "106c", "1302", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1303", "Packet Service" }, - { "106c", "1304", "Packet Service" }, - { "106c", "1401", "Composite Device" }, - { "106c", "1402", "Packet Service" }, - { "106c", "1403", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1501", "Packet Service" }, - { "106c", "1502", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1503", "Packet Service" }, - { "106c", "1601", "Packet Service" }, - { "106c", "1602", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "1603", "Packet Service" }, - { "106c", "2101", "AudioVox 8900 Cell Phone" }, - { "106c", "2102", "Packet Service" }, - { "106c", "2103", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2301", "Packet Service" }, - { "106c", "2302", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2303", "Packet Service" }, - { "106c", "2401", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2402", "Packet Service" }, - { "106c", "2403", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2501", "Packet Service" }, - { "106c", "2502", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2503", "Packet Service" }, - { "106c", "2601", "Packet Service" }, - { "106c", "2602", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "2603", "Packet Service" }, - { "106c", "3701", "Broadband Wireless modem" }, - { "106c", "3702", "Pantech PX-500" }, - { "106c", "3714", "PANTECH USB MODEM [UM175]" }, - { "106c", "3716", "UMW190 Modem" }, - { "106c", "3721", "Option Beemo (GI0801) LTE surfstick" }, - { "106c", "3b14", "Option Beemo (GI0801) LTE surfstick" }, - { "106c", "3eb4", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "4101", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "4102", "Packet Service" }, - { "106c", "4301", "Composite Device" }, - { "106c", "4302", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "4401", "Composite Device" }, - { "106c", "4402", "Packet Service" }, - { "106c", "4501", "Packet Service" }, - { "106c", "4502", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "4601", "Composite Device" }, - { "106c", "4602", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5101", "Packet Service" }, - { "106c", "5102", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5301", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5302", "Packet Service" }, - { "106c", "5401", "Packet Service" }, - { "106c", "5402", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5501", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5502", "Packet Service" }, - { "106c", "5601", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "5602", "Packet Service" }, - { "106c", "7101", "Composite Device" }, - { "106c", "7102", "Packet Service" }, - { "106c", "a000", "Packet Service" }, - { "106c", "a001", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "c100", "Packet Service" }, - { "106c", "c200", "Packet Service" }, - { "106c", "c500", "Packet Service Diagnostic Serial Port (WDM)" }, - { "106c", "e200", "Packet Service" }, - { "106f", "0009", "CT10x Coin Transaction" }, - { "106f", "000a", "CR10x Coin Recycler" }, - { "106f", "000c", "Xchange" }, - { "1076", "0031", "Bluetooth Device" }, - { "1076", "0032", "Bluetooth Device" }, - { "1076", "8002", "LU150 LTE Modem [Yota LU150]" }, - { "107b", "3009", "eHome Infrared Transceiver" }, - { "107b", "55b2", "WBU-110 802.11b Wireless Adapter [Intersil PRISM 3]" }, - { "107b", "55f2", "WGU-210 802.11g Adapter [Intersil ISL3886]" }, - { "1083", "160c", "CR-55" }, - { "1083", "160f", "DR-1210C" }, - { "1083", "1614", "DR-4010C" }, - { "1083", "1617", "DR-2510C" }, - { "1083", "1618", "DR-X10C" }, - { "1083", "161a", "CR-25" }, - { "1083", "161b", "DR-2010C Scanner" }, - { "1083", "161d", "DR-3010C" }, - { "1083", "1620", "DR-7090C" }, - { "1083", "1622", "DR-9050C" }, - { "1083", "1623", "DR-7550C" }, - { "1083", "1624", "DR-6050C" }, - { "1083", "1626", "DR-6010C" }, - { "1083", "162c", "P-150 Scanner" }, - { "1083", "1638", "DR-6030C" }, - { "1083", "1639", "CR-135i" }, - { "1083", "163e", "DR-M160" }, - { "1083", "163f", "DR-M140" }, - { "1083", "1640", "DR-C125" }, - { "1083", "1641", "DR-P215" }, - { "1083", "1648", "FSU-201" }, - { "1083", "164a", "DR-C130" }, - { "1083", "164b", "DR-P208" }, - { "1083", "164f", "DR-G1130" }, - { "1083", "1650", "DR-G1100" }, - { "1083", "1651", "DR-C120" }, - { "1083", "1654", "DR-F120" }, - { "1083", "1657", "DR-M1060" }, - { "1083", "1658", "DR-C225" }, - { "1083", "1659", "DR-P215II" }, - { "1083", "165d", "DR-P208II" }, - { "108b", "0005", "HID Keyboard/Mouse PS/2 Translator" }, - { "108c", "017e", "GTC 400 C" }, - { "1091", "8101", "Absoflex" }, - { "109b", "9109", "CROSSCALL Trekker-M1 Core (MTP-Mode)" }, - { "109b", "9118", "Medion P4013 Mobile" }, - { "109b", "9119", "CROSSCALL Trekker-M1 Core (PTP-Mode)" }, - { "109b", "f009", "CROSSCALL Trekker-M1 Core (CD-ROM-Mode)" }, - { "109f", "3163", "Trigem Mobile SmartDisplay84" }, - { "109f", "3164", "Trigem Mobile SmartDisplay121" }, - { "10a9", "1102", "Sky Love Actually IM-U460K" }, - { "10a9", "1104", "Sky Vega IM-A650S" }, - { "10a9", "1105", "VEGA Android composite" }, - { "10a9", "1106", "VEGA Android composite" }, - { "10a9", "1107", "VEGA Android composite" }, - { "10a9", "1108", "VEGA Android composite" }, - { "10a9", "1109", "VEGA Android composite" }, - { "10a9", "6021", "SIRIUS alpha" }, - { "10a9", "6031", "Pantech Android composite" }, - { "10a9", "6032", "Pantech Android composite" }, - { "10a9", "6033", "Pantech Android composite" }, - { "10a9", "6034", "Pantech Android composite" }, - { "10a9", "6035", "Pantech Android composite" }, - { "10a9", "6036", "Pantech Android composite" }, - { "10a9", "6037", "Pantech Android composite" }, - { "10a9", "6050", "Pantech Android composite" }, - { "10a9", "6051", "Pantech Android composite" }, - { "10a9", "6052", "Pantech Android composite" }, - { "10a9", "6053", "Pantech Android composite" }, - { "10a9", "6054", "Pantech Android composite" }, - { "10a9", "6055", "Pantech Android composite" }, - { "10a9", "6056", "Pantech Android composite" }, - { "10a9", "6057", "Pantech Android composite" }, - { "10a9", "6058", "Pantech Android composite" }, - { "10a9", "6059", "Pantech Android composite" }, - { "10a9", "6080", "MHS291LVW LTE Modem [Verizon Jetpack 4G LTE Mobile Hotspot MHS291L] (Zero CD Mode)" }, - { "10a9", "6085", "MHS291LVW LTE Modem [Verizon Jetpack 4G LTE Mobile Hotspot MHS291L] (Modem Mode)" }, - { "10a9", "7031", "Pantech Android composite" }, - { "10a9", "7032", "Pantech Android composite" }, - { "10a9", "7033", "Pantech Android composite" }, - { "10a9", "7034", "Pantech Android composite" }, - { "10a9", "7035", "Pantech Android composite" }, - { "10a9", "7036", "Pantech Android composite" }, - { "10a9", "7037", "Pantech Android composite" }, - { "10ab", "1002", "Bluetooth Device" }, - { "10ab", "1003", "BC02-EXT in DFU" }, - { "10ab", "1005", "Bluetooth Adptr" }, - { "10ab", "1006", "BC04-EXT in DFU" }, - { "10ab", "10c5", "Sony-Ericsson / Samsung DataCable" }, - { "10af", "0000", "UPS" }, - { "10af", "0001", "PowerSure PSA UPS" }, - { "10af", "0002", "PowerSure PST UPS" }, - { "10af", "0003", "PowerSure PSP UPS" }, - { "10af", "0004", "PowerSure PSI UPS" }, - { "10af", "0005", "UPStation GXT 2U UPS" }, - { "10af", "0006", "UPStation GXT UPS" }, - { "10af", "0007", "Nfinity Power Systems UPS" }, - { "10af", "0008", "PowerSure Interactive UPS" }, - { "10b5", "9060", "Test Board" }, - { "10b8", "0bb8", "DVB-T reference design (MOD300) (cold)" }, - { "10b8", "0bb9", "DVB-T reference design (MOD300) (warm)" }, - { "10b8", "0bc6", "DVB-T reference design (MOD3000P) (cold)" }, - { "10b8", "0bc7", "DVB-T reference design (MOD3000P) (warm)" }, - { "10bd", "1427", "Ethernet" }, - { "10bf", "0001", "SmartHome PowerLinc" }, - { "10c3", "00a4", "ULS PLS Series Laser Engraver Firmware Loader" }, - { "10c3", "00a5", "ULS Print Support" }, - { "10c4", "0002", "F32x USBXpress Device" }, - { "10c4", "0003", "CommandIR" }, - { "10c4", "800a", "SPORTident" }, - { "10c4", "800b", "AES" }, - { "10c4", "8030", "K4JRG Ham Radio devices" }, - { "10c4", "8044", "USB Debug Adapter" }, - { "10c4", "804e", "Software Bisque Paramount ME" }, - { "10c4", "80a9", "CP210x to UART Bridge Controller" }, - { "10c4", "80c4", "Infrared Thermometer Adapter" }, - { "10c4", "80ca", "ATM2400 Sensor Device" }, - { "10c4", "813f", "tams EasyControl" }, - { "10c4", "8149", "West Mountain Radio Computerized Battery Analyzer" }, - { "10c4", "814a", "West Mountain Radio RIGblaster P&P" }, - { "10c4", "814b", "West Mountain Radio RIGtalk" }, - { "10c4", "818a", "Silicon Labs FM Radio Reference Design" }, - { "10c4", "81e8", "Zephyr BioHarness" }, - { "10c4", "834b", "Infrared Online Sensor Adapter" }, - { "10c4", "834e", "Infrared Sensor Adapter" }, - { "10c4", "8460", "Sangoma Wanpipe VoiceTime" }, - { "10c4", "8461", "Sangoma U100" }, - { "10c4", "8470", "Juniper Networks BX Series System Console" }, - { "10c4", "8477", "Balluff RFID Reader" }, - { "10c4", "8496", "SiLabs Cypress FW downloader" }, - { "10c4", "8497", "SiLabs Cypress EVB" }, - { "10c4", "84fb", "Infrared Blackbody Adapter" }, - { "10c4", "8508", "RS485 Adapter" }, - { "10c4", "8605", "dilitronics ESoLUX solar lighting controller" }, - { "10c4", "8660", "Netronics CANdoISO" }, - { "10c4", "86bc", "C8051F34x AudioDelay [AD-340]" }, - { "10c4", "8789", "C8051F34x Extender & EDID MGR [EMX-DVI]" }, - { "10c4", "87be", "C8051F34x HDMI Audio Extractor [EMX-HD-AUD]" }, - { "10c4", "8863", "C8051F34x Bootloader" }, - { "10c4", "8897", "C8051F38x HDMI Splitter [UHBX]" }, - { "10c4", "88c9", "AES HID device" }, - { "10c4", "8918", "C8051F38x HDMI Audio Extractor [VSA-HA-DP]" }, - { "10c4", "8973", "C8051F38x HDMI Extender [UHBX-8X]" }, - { "10c4", "89c6", "SPORTident HID device" }, - { "10c4", "89e1", "C8051F38x HDMI Extender [UHBX-SW3-WP]" }, - { "10c4", "89fb", "Qivicon ZigBee Stick" }, - { "10c4", "8a3c", "C8051F38x HDBaseT Receiver [UHBX-R-XT]" }, - { "10c4", "8a6c", "C8051F38x 4K HDMI Audio Extractor [EMX-AMP]" }, - { "10c4", "8acb", "C8051F38x HDBaseT Wall Plate Receiver with IR, RS-232, and PoH [UHBX-R-WP]" }, - { "10c4", "8af8", "C8051F38x 4K HDMI Audio Extractor w/Audio Amplifier, HDBT Input, Line Audio Input RS-232 Ports and IP Control [VSA-X21]" }, - { "10c4", "8b8c", "C8051F38x 4K HDMI Audio Extractor w/Audio Amplifier, HDBT Input, Line Audio Input RS-232 Ports and IP Control [SC-3H]" }, - { "10c4", "8db5", "C8051F38x CATx HDMI Receiver with USB [EX-HDU-R]" }, - { "10c4", "8db6", "C8051F38x CATx HDMI Receiver" }, - { "10c4", "ea60", "CP210x UART Bridge" }, - { "10c4", "ea61", "CP210x UART Bridge" }, - { "10c4", "ea63", "CP210x UART Bridge" }, - { "10c4", "ea70", "CP2105 Dual UART Bridge" }, - { "10c4", "ea71", "CP2108 Quad UART Bridge" }, - { "10c4", "ea80", "CP2110 HID UART Bridge" }, - { "10c4", "ea90", "CP2112 HID I2C Bridge" }, - { "10c4", "ea91", "CP2112 HID SMBus/I2C Bridge for CP2614 Evaluation Kit" }, - { "10c4", "ea93", "CP2112 HID SMBus/I2C Bridge for CP2615 Evaluation Kit" }, - { "10c4", "eab0", "CP2114 I2S Audio Bridge" }, - { "10c4", "eac0", "CP2614 MFi Accessory Digital Audio Bridge" }, - { "10c4", "eac1", "CP2615 I2S Audio Bridge" }, - { "10c4", "eac9", "EFM8UB1 Bootloader" }, - { "10c4", "eaca", "EFM8UB2 Bootloader" }, - { "10c4", "eacb", "EFM8UB3 Bootloader" }, - { "10c5", "819a", "FM Radio" }, - { "10cc", "1101", "MP3 Player" }, - { "10ce", "0007", "Shinko/Sinfonia CHC-S1245" }, - { "10ce", "000e", "Shinko/Sinfonia CHC-S2145" }, - { "10ce", "0019", "Shinko/Sinfonia CHC-S6145" }, - { "10ce", "001d", "Shinko/Sinfonia CHC-S6245" }, - { "10ce", "001e", "Ciaat Brava 21" }, - { "10ce", "0039", "Sinfonia CHC-S2245" }, - { "10ce", "10ce", "Sinfonia CHC-S2245" }, - { "10ce", "ea6a", "MobiData EDGE USB Modem" }, - { "10cf", "2011", "R-Engine MPEG2 encoder/decoder" }, - { "10cf", "5500", "8055 Experiment Interface Board (address=0)" }, - { "10cf", "5501", "8055 Experiment Interface Board (address=1)" }, - { "10cf", "5502", "8055 Experiment Interface Board (address=2)" }, - { "10cf", "5503", "8055 Experiment Interface Board (address=3)" }, - { "10d1", "0101", "USB-Module for Spider8, CP32" }, - { "10d1", "0202", "CP22 - Communication Processor" }, - { "10d1", "0301", "CP42 - Communication Processor" }, - { "10d2", "5243", "RayComposer" }, - { "10d5", "0004", "PS/2 Converter" }, - { "10d5", "5552", "KVM Human Interface Composite Device (Keyboard/Mouse ports)" }, - { "10d5", "55a2", "2Port KVMSwitcher" }, - { "10d5", "5a08", "Dual Bay Docking Station" }, - { "10d6", "0c02", "BioniQ 1001 Tablet" }, - { "10d6", "1000", "MP3 Player" }, - { "10d6", "1100", "MPMan MP-Ki 128 MP3 Player/Recorder" }, - { "10d6", "1101", "D-Wave 2GB MP4 Player / AK1025 MP3/MP4 Player" }, - { "10d6", "2200", "Acer MP-120 MP3 player" }, - { "10d6", "8888", "ADFU Device" }, - { "10d6", "ff51", "ADFU Device" }, - { "10d6", "ff61", "MP4 Player" }, - { "10d6", "ff66", "Craig 2GB MP3/Video Player" }, - { "10df", "0500", "iAPP CR-e500 Card reader" }, - { "10f0", "2002", "iNexio Touchscreen controller" }, - { "10f1", "1a08", "Internal Webcam" }, - { "10f1", "1a1e", "Laptop Integrated Webcam 1.3M" }, - { "10f1", "1a2a", "Laptop Integrated Webcam" }, - { "10f1", "1a2e", "HP Truevision HD Integrated Webcam" }, - { "10f5", "0200", "Audio Advantage Roadie" }, - { "10f5", "0231", "Ear Force P11 Headset" }, - { "10f5", "10f5", "EarForce PX21 Gaming Headset" }, - { "10f8", "3201", "CeboLC" }, - { "10f8", "3202", "CeboStick" }, - { "10f8", "3203", "CeboMSA64" }, - { "10f8", "3204", "CeboDFN" }, - { "10f8", "3205", "PSAA2304W_CASC" }, - { "10f8", "c401", "USBV4F unconfigured" }, - { "10f8", "c402", "EFM01 unconfigured" }, - { "10f8", "c403", "MISS2 unconfigured" }, - { "10f8", "c404", "CID unconfigured" }, - { "10f8", "c405", "USBS6 unconfigured" }, - { "10f8", "c406", "OP_MISS2 unconfigured" }, - { "10f8", "c407", "NanoUsb uncofigured" }, - { "10f8", "c481", "USBV4F" }, - { "10f8", "c482", "EFM01" }, - { "10f8", "c483", "MISS2" }, - { "10f8", "c484", "CID" }, - { "10f8", "c485", "USBS6" }, - { "10f8", "c486", "OP_MISS2" }, - { "10f8", "c487", "NanoUsb" }, - { "10f8", "c501", "EFM02 unconfigured" }, - { "10f8", "c502", "EFM02/B unconfigured" }, - { "10f8", "c503", "EFM03 unconfigured" }, - { "10f8", "c581", "EFM02" }, - { "10f8", "c582", "EFM02/B" }, - { "10f8", "c583", "EFM03" }, - { "10fd", "7e50", "FlyCam Usb 100" }, - { "10fd", "804d", "Typhoon Webshot II Webcam [zc0301]" }, - { "10fd", "8050", "FlyCAM-USB 300 XP2" }, - { "10fd", "de00", "WinFast WalkieTV WDM Capture Driver." }, - { "10fe", "000c", "TT-3750 BGAN-XL Radio Module" }, - { "1100", "0001", "VTPlayer VTP-1 Braille Mouse" }, - { "1101", "0001", "FSK Electronics Super GSM Reader" }, - { "110a", "1110", "UPort 1110" }, - { "110a", "1150", "UPort 1150 1-Port RS-232/422/485" }, - { "110a", "1250", "UPort 1250 2-Port RS-232/422/485" }, - { "110a", "1251", "UPort 1250I 2-Port RS-232/422/485 with Isolation" }, - { "110a", "1410", "UPort 1410 4-Port RS-232" }, - { "110a", "1450", "UPort 1450 4-Port RS-232/422/485" }, - { "110a", "1451", "UPort 1450I 4-Port RS-232/422/485 with Isolation" }, - { "110a", "1613", "UPort 1610-16 16-Port RS-232" }, - { "110a", "1618", "UPort 1610-8 8-Port RS-232" }, - { "110a", "1653", "UPort 1650-16 16-Port RS-232/422/485" }, - { "110a", "1658", "UPort 1650-8 8-Port RS-232/422/485" }, - { "1110", "5c01", "Huawei MT-882 Remote NDIS Network Device" }, - { "1110", "6489", "ADSL ETH/USB RTR" }, - { "1110", "9000", "ADSL LAN Adapter" }, - { "1110", "9001", "ADSL Loader" }, - { "1110", "900f", "AT-AR215 DSL Modem" }, - { "1110", "9010", "AT-AR215 DSL Modem" }, - { "1110", "9021", "ADSL WAN Adapter" }, - { "1110", "9022", "ADSL Loader" }, - { "1110", "9023", "ADSL WAN Adapter" }, - { "1110", "9024", "ADSL Loader" }, - { "1110", "9031", "ADSL LAN Adapter" }, - { "1110", "9032", "ADSL Loader" }, - { "1111", "8888", "Evolution Device" }, - { "1113", "a0a2", "Active Sync device" }, - { "112a", "0001", "RedRat3 IR Transceiver" }, - { "112a", "0005", "RedRat3II IR Transceiver" }, - { "1130", "0001", "BlyncLight" }, - { "1130", "0002", "iBuddy" }, - { "1130", "0004", "iBuddy Twins" }, - { "1130", "0202", "Rocket Launcher" }, - { "1130", "6604", "MCE IR-Receiver" }, - { "1130", "6606", "U+P Mouse" }, - { "1130", "660c", "Foot Pedal/Thermometer" }, - { "1130", "6626", "Key" }, - { "1130", "6806", "Keychain photo frame" }, - { "1130", "c301", "Digital Photo viewer [Wallet Pix]" }, - { "1130", "f211", "TP6911 Audio Headset" }, - { "1131", "1001", "KY-BT100 Bluetooth Adapter" }, - { "1131", "1002", "Bluetooth Device" }, - { "1131", "1003", "Bluetooth Device" }, - { "1131", "1004", "Bluetooth Device" }, - { "1132", "4331", "PDR-M4/M5/M70 Digital Camera" }, - { "1132", "4332", "PDR-M60 Digital Camera" }, - { "1132", "4333", "PDR-M2300/PDR-M700" }, - { "1132", "4334", "PDR-M65" }, - { "1132", "4335", "PDR-M61" }, - { "1132", "4337", "PDR-M11" }, - { "1132", "4338", "PDR-M25" }, - { "1136", "3131", "CTS LS515" }, - { "113f", "1020", "Watson Two-Finger Roll Scanner" }, - { "113f", "1100", "Columbo Single-Finger Scanner" }, - { "1142", "0709", "Cyberview High Speed Scanner" }, - { "1145", "0001", "AirH PHONE AH-J3001V/J3002V" }, - { "114b", "0110", "Turbolink UB801R WLAN Adapter" }, - { "114b", "0150", "Turbolink UB801RE Wireless 802.11g 54Mbps Network Adapter [RTL8187]" }, - { "114f", "1234", "Fastrack Xtend FXT001 Modem" }, - { "1163", "0100", "Earthmate GPS (orig)" }, - { "1163", "0200", "Earthmate GPS (LT-20, LT-40)" }, - { "1163", "2020", "Earthmate GPS (PN-40)" }, - { "1164", "0300", "ELSAVISION 460D" }, - { "1164", "0601", "Analog TV Tuner" }, - { "1164", "0900", "TigerBird BMP837 USB2.0 WDM Encoder" }, - { "1164", "0bc7", "Digital TV Tuner" }, - { "1164", "521b", "MC521A mini Card ATSC Tuner" }, - { "1164", "6601", "Digital TV Tuner Card [RTL2832U]" }, - { "116f", "0005", "Flash Card Reader" }, - { "116f", "c108", "Flash Card Reader" }, - { "116f", "c109", "Flash Card Reader" }, - { "1183", "0001", "DigitalDream l'espion XS" }, - { "1183", "19c7", "ISDN TA" }, - { "1183", "4008", "56k FaxModem" }, - { "1183", "504a", "PJB-100 Personal Jukebox" }, - { "1189", "0893", "EP-1427X-2 Ethernet Adapter [Acer]" }, - { "1196", "0010", "Trifid Camera without code" }, - { "1196", "0011", "Trifid Camera" }, - { "1199", "0019", "AC595U" }, - { "1199", "0021", "AC597E" }, - { "1199", "0024", "MC5727 CDMA modem" }, - { "1199", "0110", "Composite Device" }, - { "1199", "0112", "CDMA 1xEVDO PC Card, AirCard 580" }, - { "1199", "0120", "AC595U" }, - { "1199", "0218", "MC5720 Wireless Modem" }, - { "1199", "6467", "MP Series Network Adapter" }, - { "1199", "6468", "MP Series Network Adapter" }, - { "1199", "6469", "MP Series Network Adapter" }, - { "1199", "6802", "MC8755 Device" }, - { "1199", "6803", "MC8765 Device" }, - { "1199", "6804", "MC8755 Device" }, - { "1199", "6805", "MC8765 Device" }, - { "1199", "6812", "MC8775 Device" }, - { "1199", "6820", "AC875 Device" }, - { "1199", "6832", "MC8780 Device" }, - { "1199", "6833", "MC8781 Device" }, - { "1199", "683a", "MC8785 Device" }, - { "1199", "683c", "Mobile Broadband 3G/UMTS (MC8790 Device)" }, - { "1199", "6850", "AirCard 880 Device" }, - { "1199", "6851", "AirCard 881 Device" }, - { "1199", "6852", "AirCard 880E Device" }, - { "1199", "6853", "AirCard 881E Device" }, - { "1199", "6854", "AirCard 885 Device" }, - { "1199", "6856", "ATT \"USB Connect 881\"" }, - { "1199", "6870", "MC8780 Device" }, - { "1199", "6871", "MC8781 Device" }, - { "1199", "6893", "MC8777 Device" }, - { "1199", "68a3", "MC8700 Modem" }, - { "1199", "68aa", "4G LTE adapter" }, - { "1199", "9000", "Gobi 2000 Wireless Modem (QDL mode)" }, - { "1199", "9001", "Gobi 2000 Wireless Modem" }, - { "1199", "9002", "Gobi 2000 Wireless Modem" }, - { "1199", "9003", "Gobi 2000 Wireless Modem" }, - { "1199", "9004", "Gobi 2000 Wireless Modem" }, - { "1199", "9005", "Gobi 2000 Wireless Modem" }, - { "1199", "9006", "Gobi 2000 Wireless Modem" }, - { "1199", "9007", "Gobi 2000 Wireless Modem" }, - { "1199", "9008", "Gobi 2000 Wireless Modem" }, - { "1199", "9009", "Gobi 2000 Wireless Modem" }, - { "1199", "900a", "Gobi 2000 Wireless Modem" }, - { "1199", "9011", "MC8305 Modem" }, - { "1199", "9013", "Sierra Wireless Gobi 3000 Modem device (MC8355)" }, - { "1199", "9041", "EM7305 Modem" }, - { "1199", "9055", "Gobi 9x15 Multimode 3G/4G LTE Modem (NAT mode)" }, - { "1199", "9057", "Gobi 9x15 Multimode 3G/4G LTE Modem (IP passthrough mode)" }, - { "1199", "9071", "AirPrime MC7455 3G/4G LTE Modem" }, - { "1199", "9079", "EM7455" }, - { "119b", "0400", "Infrared Keyboard V2.01" }, - { "11a0", "eb11", "CC2400EB 2.0 ZigBee Sniffer" }, - { "11a3", "8031", "MP3 Player" }, - { "11a3", "8032", "MP3 Player" }, - { "11aa", "1518", "iREZ K2" }, - { "11ac", "6565", "FuelBand" }, - { "11b0", "6208", "PRO-28U" }, - { "11b0", "6298", "Kingston SNA-DC/U" }, - { "11be", "f0a0", "Martin Maxxyz DMX" }, - { "11c0", "5506", "Gamepad" }, - { "11c5", "0521", "IMT-0521 Smartcard Reader" }, - { "11c9", "55f0", "GC-100XF" }, - { "11ca", "0201", "MX870/MX880" }, - { "11ca", "0207", "PIN Pad VX 810" }, - { "11ca", "0220", "PIN Pad VX 805" }, - { "11db", "1000", "PVR" }, - { "11db", "1100", "PVR" }, - { "11f5", "0001", "SX1" }, - { "11f5", "0003", "Mobile phone USB cable" }, - { "11f5", "0004", "X75" }, - { "11f5", "0005", "SXG75/EF81" }, - { "11f5", "0008", "UMTS/HSDPA Data Card" }, - { "11f5", "0101", "RCU Connect" }, - { "11f6", "2001", "Willcom WSIM" }, - { "11f7", "02df", "Serial cable (v2) for TD-10 Mobile Phone" }, - { "1203", "0140", "TTP-245C" }, - { "1209", "0001", "pid.codes Test PID" }, - { "1209", "0002", "pid.codes Test PID" }, - { "1209", "0003", "pid.codes Test PID" }, - { "1209", "0004", "pid.codes Test PID" }, - { "1209", "0005", "pid.codes Test PID" }, - { "1209", "0006", "pid.codes Test PID" }, - { "1209", "0007", "pid.codes Test PID" }, - { "1209", "0008", "pid.codes Test PID" }, - { "1209", "0009", "pid.codes Test PID" }, - { "1209", "000a", "pid.codes Test PID" }, - { "1209", "000b", "pid.codes Test PID" }, - { "1209", "000c", "pid.codes Test PID" }, - { "1209", "000d", "pid.codes Test PID" }, - { "1209", "000e", "pid.codes Test PID" }, - { "1209", "000f", "pid.codes Test PID" }, - { "1209", "0010", "pid.codes Test PID" }, - { "1209", "01c0", "Input Club Kiibohd Device" }, - { "1209", "01cb", "Input Club Kiibohd Device Bootloader" }, - { "1209", "0256", "Schwalm & Tate LLC pISO Raspberry Pi Hat" }, - { "1209", "053a", "Hackerspace San Salvador HSSV SAMR21-Mote" }, - { "1209", "0cbd", "Andrzej Szombierski kuku.eu.org keyboard" }, - { "1209", "0d32", "ODrive Robotics ODrive v3" }, - { "1209", "1001", "InterBiometrics Hub" }, - { "1209", "1002", "InterBiometrics Relais" }, - { "1209", "1003", "InterBiometrics IBSecureCam-P" }, - { "1209", "1004", "InterBiometrics IBSecureCam-O" }, - { "1209", "1005", "InterBiometrics IBSecureCam-N" }, - { "1209", "1006", "InterBiometrics Mini IO-Board" }, - { "1209", "1007", "e-radionica.com Croduino SAMD" }, - { "1209", "1986", "dgrubb Jaguar Tap" }, - { "1209", "1ab5", "Arachnid Labs Tsunami" }, - { "1209", "1ab6", "Arachnid Labs Tsunami Bootloader" }, - { "1209", "2000", "Zygmunt Krynicki Lantern Brightness Sensor" }, - { "1209", "2001", "OSHEC Pi-pilot opensource and openhardware autopilot system" }, - { "1209", "2002", "Peter Lawrence PIC16F1-USB-DFU-Bootloader" }, - { "1209", "2003", "Peter Lawrence SAMDx1-USB-DFU-Bootloader" }, - { "1209", "2004", "GCBASIC Serial CDC Stack" }, - { "1209", "2005", "GCBASIC OakTree Stack" }, - { "1209", "2006", "GCBASIC Simulation Stack" }, - { "1209", "2016", "Cupkee" }, - { "1209", "2017", "Benjamin Shockley Mini SAM" }, - { "1209", "2020", "Captain Credible Gate Crystal" }, - { "1209", "2048", "Housedillon.com MRF49XA Transceiver" }, - { "1209", "2100", "TinyFPGA B1 and B2 Boards" }, - { "1209", "2101", "TinyFPGA A-Series Programmer" }, - { "1209", "2200", "Dygma Shortcut Bootloader" }, - { "1209", "2201", "Dygma Shortcut Keyboard" }, - { "1209", "2222", "LabConnect Signalgenerator" }, - { "1209", "2300", "Keyboardio Model 01 Bootloader" }, - { "1209", "2301", "Keyboardio Model 01" }, - { "1209", "2323", "bytewerk.org candleLight" }, - { "1209", "2327", "K.T.E.C. Bootloader Device" }, - { "1209", "2328", "K.T.E.C. Keyboard Device" }, - { "1209", "2333", "Kai Ryu Kimera" }, - { "1209", "2334", "Kai Ryu Staryu" }, - { "1209", "2335", "Portwell Sense8" }, - { "1209", "2336", "Portwell Sense8" }, - { "1209", "2337", "/Dev /Net" }, - { "1209", "2342", "Andreas Bogk Big Red Button" }, - { "1209", "2345", "VV-Soft Simple Generic HID IO" }, - { "1209", "2357", "KarolKucza TinyPassword" }, - { "1209", "2400", "phooky Snap-Pad" }, - { "1209", "2488", "Peter Lawrence CMSIS-DAP Dapper Miser" }, - { "1209", "2552", "ProjectIota Electrolink" }, - { "1209", "2600", "Majenko Technologies chipKIT Lenny" }, - { "1209", "2635", "Sevinz GameBot" }, - { "1209", "2800", "Entropic Engineering Triangulation" }, - { "1209", "2801", "Entropic Engineering Object Manipulation" }, - { "1209", "2a00", "mooware Wii adapter" }, - { "1209", "2a01", "mooware SNES adapter" }, - { "1209", "3000", "lloyd3000" }, - { "1209", "3100", "OpenSimHardware Pedals & Buttons Controller" }, - { "1209", "317e", "Codecrete Wirekite" }, - { "1209", "3210", "OSH Lab, LLC Magic Keys" }, - { "1209", "3333", "LabConnect Digitalnetzteil" }, - { "1209", "345b", "kinX Hub" }, - { "1209", "345c", "kinX Keyboard Controller" }, - { "1209", "3690", "Kigakudoh TouchMIDI32" }, - { "1209", "4096", "CynaraKrewe Cynara" }, - { "1209", "414c", "Adi Linden" }, - { "1209", "414d", "Adi Linden" }, - { "1209", "4242", "Komakallio Astrophotography Community KomaHub Remote Power Switch" }, - { "1209", "4256", "CuVoodoo BusVoodoo multi-protocol debugging adapter" }, - { "1209", "4321", "mooltipass Offline Password Keeper Bootloader" }, - { "1209", "4322", "mooltipass Arduino Sketch" }, - { "1209", "4356", "CuVoodoo firmware" }, - { "1209", "4443", "j1rie IRMP_STM32 Bootloader" }, - { "1209", "4444", "j1rie IRMP_STM32" }, - { "1209", "4545", "SlothCo Enterprises Teletype Adapter" }, - { "1209", "4646", "SmartPID SPC1000" }, - { "1209", "4748", "Kate Gray GHETT-iO Bootloader" }, - { "1209", "4750", "Chris Pavlina (c4757p) C4-x computer (development interface)" }, - { "1209", "4757", "Chris Pavlina (c4757p) WCP52 Gain/Phase Analyzer" }, - { "1209", "4801", "Wojciech Krutnik NVMemProg" }, - { "1209", "4c60", "MightyPork GEX module" }, - { "1209", "4c61", "MightyPork GEX wireless dongle" }, - { "1209", "4d53", "mindsensors.com NXTCam5" }, - { "1209", "5038", "frotz.net mdebug rswd protocol" }, - { "1209", "5039", "frotz.net lpcboot protocol" }, - { "1209", "5050", "trebb ISO50" }, - { "1209", "5070", "SoloHacker security key [SoloKey]" }, - { "1209", "50b0", "boot for security key [SoloKey]" }, - { "1209", "5222", "telavivmakers attami" }, - { "1209", "53c0", "SatoshiLabs TREZOR Bootloader" }, - { "1209", "53c1", "SatoshiLabs TREZOR" }, - { "1209", "5432", "Open Programmer" }, - { "1209", "5457", "Openlab.Taipei Taiwanduino" }, - { "1209", "571c", "StreetoArcade PancadariaStick" }, - { "1209", "5a22", "ikari_01 sd2snes" }, - { "1209", "6000", "Pulsar Heavy Industries Cenx4" }, - { "1209", "600d", "Makdaam N93 Interface" }, - { "1209", "6464", "Electric Exploits Shinewave" }, - { "1209", "6502", "jj1bdx avrhwrng v2rev1" }, - { "1209", "6570", "Iowa Scaled Engineering, LLC CKT-AVRPROGRAMMER" }, - { "1209", "6666", "Talpa Chen VSFLogic" }, - { "1209", "6667", "SensePost Universal Serial aBUSe - Generic HID" }, - { "1209", "6742", "NPK Cubitel Atomic Force Microscope" }, - { "1209", "6809", "Tach Radio Doppelganger" }, - { "1209", "6948", "MySensors Sensebender Gateway BootLoader" }, - { "1209", "6949", "MySensors Sensebender Gateway" }, - { "1209", "6bcf", "blaste Gameboy Cart Flasher" }, - { "1209", "7000", "Secalot Dongle" }, - { "1209", "7001", "Secalot Bootloader" }, - { "1209", "70b1", "Sutajio Ko-Usagi (Kosagi) Tomu" }, - { "1209", "7331", "Dangerous Prototypes Bus Pirate Next Gen CDC" }, - { "1209", "7332", "Dangerous Prototypes Bus Pirate Next Gen Logic Analyzer" }, - { "1209", "7401", "Beststream-jp Tool_CDC" }, - { "1209", "7530", "PotentialLabs Refflion - IoT Development Board - Bootloader" }, - { "1209", "7531", "PotentialLabs Refflion - IoT Development Board - Sketch" }, - { "1209", "7551", "The Tessel Project Tessel 2" }, - { "1209", "7777", "circuitvalley IO Board V3" }, - { "1209", "7778", "circuitvalley IO Board V3 Bootloader" }, - { "1209", "7950", "PIC18F87J94 Bootloader [GenII]" }, - { "1209", "7951", "PIC18F87J94 Application [GenII]" }, - { "1209", "7952", "PIC18F87J94 Bootloader [GenIII/IV]" }, - { "1209", "7953", "PIC18F87J94 Application [GenIII/IV]" }, - { "1209", "7954", "PIC18F87J94 Application [GenIII/IV]" }, - { "1209", "7bd0", "pokey9000 Tiny Bit Dingus" }, - { "1209", "8000", "Autonomii NODii 2" }, - { "1209", "8086", "MisfitTech Nano Zero Bootloader" }, - { "1209", "8087", "MisfitTech Nano Zero" }, - { "1209", "8123", "Danyboard M0 bootloader" }, - { "1209", "812a", "Danyboard M0" }, - { "1209", "813a", "MickMad HACK Bootloader" }, - { "1209", "813b", "MickMad HACK Sketch" }, - { "1209", "8242", "Tom Wimmenhove Electronics NBS-DAC 192/24 UAC1" }, - { "1209", "8243", "Tom Wimmenhove Electronics NBS-DAC 192/24 UAC2" }, - { "1209", "8472", "Shantea Controls OpenDeck" }, - { "1209", "8661", "ProgHQ TL866 programmer" }, - { "1209", "8844", "munia.io MUNIA" }, - { "1209", "8888", "Blinkinlabs POV Pendant" }, - { "1209", "8889", "Blinkinlabs POV Pendant (bootloader)" }, - { "1209", "8b00", "ReSwitched Libtransistor Serial Console" }, - { "1209", "9021", "Connected Community Hackerspace ESPlant" }, - { "1209", "9317", "Sutajio Ko-Usagi (Kosagi) Palawan-Tx" }, - { "1209", "9999", "Sandeepan Sengupta CodeBridge Infineo" }, - { "1209", "9db5", "PD Buddy Sink" }, - { "1209", "a033", "area0x33 Memtype" }, - { "1209", "a100", "KB LES Narsil analog breakout" }, - { "1209", "a10c", "KB LES Aminoacid Synthesizer" }, - { "1209", "a1e5", "Atreus Keyboards Atreus Keyboard" }, - { "1209", "a3a4", "MK::Box MK::Kbd" }, - { "1209", "a3a5", "MK::Box MK::Kbd Bootloader" }, - { "1209", "a55a", "Forever Young Software ATTINY2313" }, - { "1209", "a602", "Robotips RTBoard" }, - { "1209", "a7ea", "area3001 Knixx SW04" }, - { "1209", "a800", "sowbug.com WebLight" }, - { "1209", "a8b0", "Intelectron BootWare" }, - { "1209", "a8b1", "Intelectron FrameWare" }, - { "1209", "aa00", "Serg Oskin LinuxCNC HID Extender" }, - { "1209", "aa0b", "Open Bionics" }, - { "1209", "ab3d", "3DArtists Alligator board" }, - { "1209", "abba", "CoinWISE SafeWISE" }, - { "1209", "abc0", "Omzlo controller" }, - { "1209", "abcd", "Sandeepan Sengupta CodeBridge" }, - { "1209", "abd1", "OpenMV Cam" }, - { "1209", "acdc", "Gediminas Zukaitis midi-grid" }, - { "1209", "ace5", "SimAces Panel Ace" }, - { "1209", "aced", "Open Lighting Project Ja Rule Device" }, - { "1209", "acee", "Open Lighting Project Ja Rule Bootloader" }, - { "1209", "adb0", "tibounise ADB converter" }, - { "1209", "adda", "MicroPython Boards" }, - { "1209", "b007", "Konsgn Global_Boot" }, - { "1209", "b00b", "CrapLab Random Device" }, - { "1209", "b010", "IObitZ CodeBridge" }, - { "1209", "b01d", "WyoLum VeloKey" }, - { "1209", "b058", "Model B, LLC Holoseat" }, - { "1209", "b0b0", "Monero Hardware Monero Bootloader" }, - { "1209", "b100", "ptrandem iBizi" }, - { "1209", "b101", "IObitZ Infineo" }, - { "1209", "b195", "flehrad Big Switch PCB" }, - { "1209", "bab1", "ElectronicCats Meow Meow" }, - { "1209", "babe", "brunofreitas.com STM32 HID Bootloader" }, - { "1209", "bad1", "Gregory POTEAU CommLinkUSB" }, - { "1209", "bad2", "Gregory POTEAU XLinkUSB" }, - { "1209", "bade", "Semarme SemarmeHID" }, - { "1209", "bb00", "keyplus split keyboard firmware" }, - { "1209", "bb01", "keyplus xusb bootloader" }, - { "1209", "bb02", "keyplus nRF24 wireless keyboard dongle" }, - { "1209", "bb03", "keyplus nrf24lu1p-512 bootloader" }, - { "1209", "bb05", "keyplus kp_boot_32u4 bootloader" }, - { "1209", "beba", "serasidis.gr STM32 HID Bootloader" }, - { "1209", "beef", "Modal MC-USB" }, - { "1209", "c001", "Cynteract Alpha" }, - { "1209", "c0c0", "Geppetto_Electronics Orthrus" }, - { "1209", "c0c1", "Michael Bemmerl cookie-mouse" }, - { "1209", "c0ca", "Jean THOMAS DirtyJTAG" }, - { "1209", "c0d3", "Samy Kamkar USBdriveby" }, - { "1209", "c0da", "Monero Hardware Monero Firmware" }, - { "1209", "c0de", "KMRH Labs SBL Brain" }, - { "1209", "c0f5", "unethi PERswitch" }, - { "1209", "c1aa", "Proyecto CIAA Computadora Industrial Abierta Argentina" }, - { "1209", "c1b1", "Chibitronics Love-to-Code" }, - { "1209", "c311", "bg nerilex GB-USB-Link" }, - { "1209", "ca1c", "KnightOS Generic Hub" }, - { "1209", "ca1d", "KnightOS MTP Device" }, - { "1209", "caea", "Open Music Kontrollers Chimaera" }, - { "1209", "cafe", "ii iigadget" }, - { "1209", "cc14", "trebb NaN-15" }, - { "1209", "cc86", "Manfred's Technologies Anastasia Bootloader" }, - { "1209", "ceb0", "KG4LNE GE-FlashUSB" }, - { "1209", "cf20", "Smart Citizen SCK 2.0" }, - { "1209", "d00d", "Monero Hardware Monero Developer" }, - { "1209", "d017", "empiriKit empiriKit Controller" }, - { "1209", "d11d", "Koi Science DI-Lambda AVR" }, - { "1209", "d3d8", "Duet3d Duet 0.8.5" }, - { "1209", "d706", "SkyBean SkyDrop" }, - { "1209", "da42", "Devan Lai dap42 debug access probe" }, - { "1209", "daa0", "darknao btClubSportWheel" }, - { "1209", "dada", "Rebel Technology OWL" }, - { "1209", "db42", "Devan Lai dapboot DFU bootloader" }, - { "1209", "dc21", "FPGA-Computer Dual Charger" }, - { "1209", "dddd", "Stephan Electronics OpenCVMeter" }, - { "1209", "dead", "chaosfield.at AVR-Ruler" }, - { "1209", "deaf", "CrapLab 4chord MIDI" }, - { "1209", "ded1", "ManCave Made Quark One" }, - { "1209", "deed", "Kroneum Time Tracker" }, - { "1209", "df00", "D.F.Mac. @TripArts Music mi:muz:tuch" }, - { "1209", "df01", "D.F.Mac. @TripArts Music mi:muz:can" }, - { "1209", "df02", "D.F.Mac. @TripArts Music mi:muz:can-lite" }, - { "1209", "e116", "Elijah Motornyy open-oscilloscope-stm32f3" }, - { "1209", "e1ec", "FreeSRP" }, - { "1209", "e4ee", "trebb keytee" }, - { "1209", "e500", "GitleMikkelsen Helios Laser DAC" }, - { "1209", "eaea", "Pinscape Controller" }, - { "1209", "eb01", "RobotMaker.club EB1" }, - { "1209", "eba7", "VictorGrigoryev USBscope" }, - { "1209", "ee00", "Explore Embedded SODA(SWD OpenSource Debug Adapter)" }, - { "1209", "ee02", "Explore Embedded Explore M3 VCOM" }, - { "1209", "ee03", "Explore Embedded Explore M3 DFU" }, - { "1209", "ee2c", "jaka USB2RS485" }, - { "1209", "effa", "EffigyLabs atmega32u4-USB-LUFA-Bootloader" }, - { "1209", "effe", "EffigyLabs Control Pedal" }, - { "1209", "f000", "Uniti ARC" }, - { "1209", "f00d", "RomanStepanov Shifter/Pedals Adapter" }, - { "1209", "f12e", "Michael Bemmerl Feuermelder" }, - { "1209", "f16a", "uri_ba Cougar TQS adapter" }, - { "1209", "f16c", "uri_ba adapter for Vipercore's FCC3 Force Sensing Module" }, - { "1209", "f380", "Windsor Schmidt MD-380 Open Radio Firmware" }, - { "1209", "f3fc", "dRonin Flight controller-Lumenier Lux" }, - { "1209", "f49a", "TimVideos.us & HDMI2USB.tv Projects FPGA Programmer & UART Bridge (PIC based Firmware)" }, - { "1209", "fa11", "moonglow OpenXHC" }, - { "1209", "fa57", "3DRacers Pilot Board" }, - { "1209", "fa58", "3DRacers Pilot Board (Bootloader)" }, - { "1209", "fab1", "PAP Mechatronic Technology LamDiNao" }, - { "1209", "face", "Protean Synth Craft" }, - { "1209", "fade", "Open Collector dude" }, - { "1209", "feed", "ProgramGyar AVR-IR Sender" }, - { "1209", "ffff", "Life2Device Smart House" }, - { "120f", "524e", "RoadMate 1475T" }, - { "120f", "5260", "Triton Handheld GPS Receiver (300/400/500/1500/2000)" }, - { "1210", "000d", "RP250 Guitar Multi-Effects Processor" }, - { "1210", "0016", "RP500 Guitar Multi-Effects Processor" }, - { "1210", "001b", "RP155 Guitar Multi-Effects Processor" }, - { "1210", "001c", "RP255 Guitar Multi-Effects Processor" }, - { "121e", "3403", "Muzio JM250 Audio Player" }, - { "121f", "0001", "VisionX without Firmware" }, - { "121f", "0002", "VisionX with Firmware" }, - { "121f", "0010", "I-Deal" }, - { "121f", "0020", "wI-Deal" }, - { "121f", "0021", "VisionX Page Scanner Extension" }, - { "121f", "0030", "VisionNext" }, - { "121f", "0040", "mI:Deal Check Scanner" }, - { "121f", "0041", "EverNext Check Scanner" }, - { "1220", "000a", "Hall of Fame Reverb" }, - { "1220", "002a", "Polytune" }, - { "1220", "0032", "Ditto X2 Looper" }, - { "1220", "0039", "Alter Ego X4 Vintage Echo" }, - { "1221", "3234", "Disk (Thumb drive)" }, - { "1222", "faca", "programmable keyboard" }, - { "1228", "0012", "Q18 Data Logger" }, - { "1228", "0015", "TPaq21/MPaq21 Datalogger" }, - { "1228", "584c", "XL2 Logger" }, - { "1233", "5677", "FUSB200 mp3 player" }, - { "1234", "0000", "Neural Impulse Actuator Prototype 1.0 [NIA]" }, - { "1234", "4321", "Human Interface Device" }, - { "1234", "ed02", "Emotiv EPOC Developer Headset Wireless Dongle" }, - { "1235", "0001", "ReMOTE Audio/XStation First Edition" }, - { "1235", "0002", "Speedio" }, - { "1235", "0003", "RemoteSL + ZeroSL" }, - { "1235", "0004", "ReMOTE LE" }, - { "1235", "0005", "XIOSynth [First Edition]" }, - { "1235", "0006", "XStation" }, - { "1235", "0007", "XIOSynth" }, - { "1235", "0008", "ReMOTE SL Compact" }, - { "1235", "0009", "nIO" }, - { "1235", "000a", "Nocturn" }, - { "1235", "000b", "ReMOTE SL MkII" }, - { "1235", "000c", "ZeRO MkII" }, - { "1235", "000e", "Launchpad" }, - { "1235", "0010", "Saffire 6" }, - { "1235", "0011", "Ultranova" }, - { "1235", "0012", "Nocturn Keyboard" }, - { "1235", "0013", "VRM Box" }, - { "1235", "0014", "VRM Box Audio Class (2-out)" }, - { "1235", "0015", "Dicer" }, - { "1235", "0016", "Ultranova" }, - { "1235", "0018", "Twitch" }, - { "1235", "0019", "Impulse 25" }, - { "1235", "001a", "Impulse 49" }, - { "1235", "001b", "Impulse 61" }, - { "1235", "0032", "Launchkey 61" }, - { "1235", "0069", "Launchpad MK2" }, - { "1235", "0102", "LaunchKey Mini MK3" }, - { "1235", "4661", "ReMOTE25" }, - { "1235", "8000", "Scarlett 18i6" }, - { "1235", "8002", "Scarlett 8i6" }, - { "1235", "8006", "Focusrite Scarlett 2i2" }, - { "1235", "8008", "Saffire 6" }, - { "1235", "800a", "Scarlett 2i4" }, - { "1235", "800c", "Scarlett 18i20" }, - { "1235", "800e", "iTrack Solo" }, - { "1235", "8010", "Forte" }, - { "1235", "8012", "Scarlett 6i6" }, - { "1235", "8014", "Scarlett 18i8" }, - { "1235", "8016", "Focusrite Scarlett 2i2" }, - { "1235", "8202", "Focusrite Scarlett 2i2 2nd Gen" }, - { "1235", "8203", "Focusrite Scarlett 6i6" }, - { "1235", "8204", "Scarlett 18i8 2nd Gen" }, - { "1235", "8210", "Scarlett 2i2 Camera" }, - { "1235", "8211", "Scarlett Solo (3rd Gen.)" }, - { "1235", "8214", "Scarlett 18i8 3rd Gen" }, - { "1235", "8215", "Scarlett 18i20 3rd Gen" }, - { "1241", "0504", "Wireless Trackball Keyboard" }, - { "1241", "1111", "Mouse" }, - { "1241", "1122", "Typhoon Stream Optical Mouse USB+PS/2" }, - { "1241", "1155", "Memorex Optical ScrollPro Mouse SE MX4600" }, - { "1241", "1166", "MI-2150 Trust Mouse" }, - { "1241", "1177", "Mouse [HT82M21A]" }, - { "1241", "1503", "Keyboard" }, - { "1241", "1603", "Keyboard" }, - { "1241", "f767", "Keyboard" }, - { "1243", "e000", "Unique NFC/RFID reader (keyboard emulation)" }, - { "124a", "168b", "PRISM3 WLAN Adapter" }, - { "124a", "4017", "PC-Chips 802.11b Adapter" }, - { "124a", "4023", "WM168g 802.11bg Wireless Adapter [Intersil ISL3886]" }, - { "124a", "4025", "IOGear GWU513 v2 802.11bg Wireless Adapter [Intersil ISL3887]" }, - { "124b", "4d01", "Airflo EX Joystick" }, - { "124c", "3200", "Stealth MXP 1GB" }, - { "125c", "0010", "Alta series CCD" }, - { "125d", "0580", "JM580" }, - { "125f", "312a", "Superior S102" }, - { "125f", "312b", "Superior S102 Pro" }, - { "125f", "a15a", "DashDrive Durable HD710 portable HDD various size" }, - { "125f", "a22a", "DashDrive Elite HE720 500GB" }, - { "125f", "a31a", "HV620 Portable HDD" }, - { "125f", "a91a", "Portable HDD CH91" }, - { "125f", "c08a", "C008 Flash Drive" }, - { "125f", "c81a", "Flash drive" }, - { "125f", "c93a", "4GB Pen Drive" }, - { "125f", "c96a", "C906 Flash Drive" }, - { "125f", "cb10", "Dash Drive UV100" }, - { "125f", "cb20", "DashDrive UV110" }, - { "1260", "ee22", "SMC2862W-G v3 EZ Connect 802.11g Adapter [Intersil ISL3887]" }, - { "1266", "6302", "Fastweb DRG A226M ADSL Router" }, - { "1267", "0103", "G-720 Keyboard" }, - { "1267", "0201", "Mouse" }, - { "1267", "0210", "LG Optical Mouse 3D-310" }, - { "1267", "a001", "JP260 PC Game Pad" }, - { "1267", "c002", "Wireless Optical Mouse" }, - { "126f", "0163", "Storage device (2gB thumb drive)" }, - { "126f", "1325", "Mobile Disk" }, - { "126f", "2168", "Mobile Disk III" }, - { "126f", "a006", "G240 802.11bg" }, - { "1275", "0002", "WeatherFax 2000 Demodulator" }, - { "1275", "0080", "SkyEye Weather Satellite Receiver" }, - { "1275", "0090", "WeatherFax 2000 Demodulator" }, - { "1278", "0105", "SXV-M5" }, - { "1278", "0107", "SXV-M7" }, - { "1278", "0109", "SXV-M9" }, - { "1278", "0110", "SXVF-H16" }, - { "1278", "0115", "SXVF-H5" }, - { "1278", "0119", "SXV-H9" }, - { "1278", "0135", "SXVF-H35" }, - { "1278", "0136", "SXVF-H36" }, - { "1278", "0200", "SXV interface for paraller MX cameras" }, - { "1278", "0305", "SXV-M5C" }, - { "1278", "0307", "SXV-M7C" }, - { "1278", "0319", "SXV-H9C" }, - { "1278", "0325", "SXV-M25C" }, - { "1278", "0326", "SXVR-M26C" }, - { "1278", "0507", "Lodestar autoguider" }, - { "1278", "0517", "CoStar" }, - { "1283", "0100", "USB-RS232 Adaptor" }, - { "1283", "0110", "CMS20" }, - { "1283", "0111", "CMS 10" }, - { "1283", "0112", "CMS 05" }, - { "1283", "0114", "ARCUS digma PC-Interface" }, - { "1283", "0115", "SAM Axioquick recorder" }, - { "1283", "0116", "SAM Axioquick recorder" }, - { "1283", "0120", "emed-X" }, - { "1283", "0121", "emed-AT" }, - { "1283", "0130", "PDM" }, - { "1283", "0150", "CMS10GI (Golf)" }, - { "1286", "00bc", "Marvell JTAG Probe" }, - { "1286", "1fab", "88W8338 [Libertas] 802.11g" }, - { "1286", "2001", "88W8388 802.11a/b/g WLAN" }, - { "1286", "2006", "88W8362 802.11n WLAN" }, - { "1286", "203c", "K30326 802.11bgn Wireless Module [Marvell 88W8786U]" }, - { "1286", "204c", "Bluetooth and Wireless LAN Composite" }, - { "1286", "8001", "BLOB boot loader firmware" }, - { "1291", "0010", "FDM 2xxx Flash-OFDM modem" }, - { "1291", "0011", "LR7F06/LR7F14 Flash-OFDM modem" }, - { "1292", "0258", "Creative Labs VoIP Blaster" }, - { "1292", "4154", "Retro Link Atari cable" }, - { "1293", "0002", "F5U002 Parallel Port [uss720]" }, - { "1293", "2101", "104-key keyboard" }, - { "1294", "1320", "Webmail Notifier" }, - { "1297", "020f", "DTU-215 Multi-Standard Modulator" }, - { "129b", "160b", "Siemens S30853-S1031-R351 802.11g Wireless Adapter [Atheros AR5523]" }, - { "129b", "160c", "Siemens S30853-S1038-R351 802.11g Wireless Adapter [Atheros AR5523]" }, - { "129b", "1666", "TG54USB 802.11bg" }, - { "129b", "1667", "802.11bg" }, - { "129b", "1828", "Gigaset USB Adapter 300" }, - { "12ab", "0004", "Dance Pad for Xbox 360" }, - { "12ab", "0301", "Afterglow Wired Controller for Xbox 360" }, - { "12ab", "0303", "Mortal Kombat Klassic FightStick for Xbox 360" }, - { "12ab", "8809", "Dance Dance Revolution Dance Pad" }, - { "12ba", "0032", "Wireless Stereo Headset" }, - { "12ba", "0042", "Wireless Stereo Headset" }, - { "12ba", "00ff", "Rocksmith Guitar Adapter" }, - { "12ba", "0100", "RedOctane Guitar for PlayStation(R)3" }, - { "12ba", "0120", "RedOctane Drum Kit for PlayStation(R)3" }, - { "12ba", "0200", "Harmonix Guitar for PlayStation(R)3" }, - { "12ba", "0210", "Harmonix Drum Kit for PlayStation(R)3" }, - { "12bd", "d012", "JPD Shockforce gamepad" }, - { "12bd", "d015", "Generic 4-button NES USB Controller" }, - { "12c4", "0006", "Teleprompter Two-button Hand Control (v1)" }, - { "12c4", "0008", "Teleprompter Foot Control (v1)" }, - { "12cf", "0170", "Tt eSPORTS BLACK Gaming mouse" }, - { "12cf", "600b", "Cougar 600M Gaming Mouse" }, - { "12d1", "1001", "E161/E169/E620/E800 HSDPA Modem" }, - { "12d1", "1003", "E220 HSDPA Modem / E230/E270/E870 HSDPA/HSUPA Modem" }, - { "12d1", "1004", "E220 (bis)" }, - { "12d1", "1009", "U120" }, - { "12d1", "1010", "ETS2252+ CDMA Fixed Wireless Terminal" }, - { "12d1", "1021", "U8520" }, - { "12d1", "1035", "U8120" }, - { "12d1", "1037", "Ideos" }, - { "12d1", "1038", "Ideos (debug mode)" }, - { "12d1", "1039", "Ideos (tethering mode)" }, - { "12d1", "1052", "MT7-L09 / P7-L10 / Y330-U01" }, - { "12d1", "1053", "P7-L10 (PTP)" }, - { "12d1", "1054", "P7-L10 (PTP + debug)" }, - { "12d1", "1079", "GEM-703LT [Honor/MediaPad X2]" }, - { "12d1", "107e", "P10 smartphone" }, - { "12d1", "1404", "EM770W miniPCI WCDMA Modem" }, - { "12d1", "1406", "E1750" }, - { "12d1", "140b", "EC1260 Wireless Data Modem HSD USB Card" }, - { "12d1", "140c", "E180v" }, - { "12d1", "1412", "EC168c" }, - { "12d1", "1436", "Broadband stick" }, - { "12d1", "1446", "HSPA modem" }, - { "12d1", "1465", "K3765 HSPA" }, - { "12d1", "14ac", "E815" }, - { "12d1", "14c3", "K5005 Vodafone LTE/UMTS/GSM Modem/Networkcard" }, - { "12d1", "14c8", "K5005 Vodafone LTE/UMTS/GSM MOdem/Networkcard" }, - { "12d1", "14c9", "K3770 3G Modem" }, - { "12d1", "14cf", "K3772" }, - { "12d1", "14d1", "K3770 3G Modem (Mass Storage Mode)" }, - { "12d1", "14db", "E353/E3131" }, - { "12d1", "14dc", "E3372 LTE/UMTS/GSM HiLink Modem/Networkcard" }, - { "12d1", "14f1", "Gobi 3000 HSPA+ Modem" }, - { "12d1", "14fe", "Modem (Mass Storage Mode)" }, - { "12d1", "1501", "Pulse" }, - { "12d1", "1505", "E398 LTE/UMTS/GSM Modem/Networkcard" }, - { "12d1", "1506", "Modem/Networkcard" }, - { "12d1", "150a", "E398 LTE/UMTS/GSM Modem/Networkcard" }, - { "12d1", "1520", "K3765 HSPA" }, - { "12d1", "1521", "K4505 HSPA+" }, - { "12d1", "155a", "R205 Mobile WiFi (CD-ROM mode)" }, - { "12d1", "1573", "ME909u-521 mPCIe LTE/GPS card" }, - { "12d1", "1575", "K5150 LTE modem" }, - { "12d1", "15bb", "ME936 LTE/HSDPA+ 4G modem" }, - { "12d1", "15c1", "ME906s LTE M.2 Module" }, - { "12d1", "15ca", "E3131 3G/UMTS/HSPA+ Modem (Mass Storage Mode)" }, - { "12d1", "1805", "AT&T Go Phone U2800A phone" }, - { "12d1", "1c05", "Broadband stick (modem on)" }, - { "12d1", "1c0b", "E173s 3G broadband stick (modem off)" }, - { "12d1", "1c20", "R205 Mobile WiFi (Charging)" }, - { "12d1", "1d50", "ET302s TD-SCDMA/TD-HSDPA Mobile Broadband" }, - { "12d1", "1f01", "E353/E3131 (Mass storage mode)" }, - { "12d1", "1f16", "K5150 LTE modem (Mass Storage Mode)" }, - { "12d1", "360e", "Y330-U01 (MTP Mode)" }, - { "12d1", "380b", "WiMAX USB modem(s)" }, - { "12d3", "0002", "DeskLine CBD Control Box" }, - { "12d6", "0444", "CPC-USB/ARM7" }, - { "12d6", "0888", "CPC-USB/M16C" }, - { "12d8", "0001", "Alea I True Random Number Generator" }, - { "12e6", "0013", "Blofeld" }, - { "12ef", "0100", "Tapwave Handheld [Tapwave Zodiac]" }, - { "12f2", "000a", "Braille embosser [SpotDot Emprint]" }, - { "12f7", "1a00", "TD Classic 003B" }, - { "12f7", "1e23", "TravelDrive 2007 Flash Drive" }, - { "12fd", "1001", "AWU2000b 802.11b Stick" }, - { "12ff", "0101", "Advanced RC Servo Controller" }, - { "1307", "0163", "256MB/512MB/1GB Flash Drive" }, - { "1307", "0165", "2GB/4GB/8GB Flash Drive" }, - { "1307", "0190", "Ut190 8 GB Flash Drive with MicroSD reader" }, - { "1307", "0310", "SD/MicroSD CardReader [hama]/IT1327E [Basic Line flash drive]" }, - { "1307", "0330", "63-in-1 Multi-Card Reader/Writer" }, - { "1307", "0361", "CR-75: 51-in-1 Card Reader/Writer [Sakar]" }, - { "1307", "1169", "TS2GJF210 JetFlash 210 2GB" }, - { "1307", "1171", "Fingerprint Reader" }, - { "1308", "0003", "VFD Module" }, - { "1308", "c001", "eHome Infrared Transceiver" }, - { "1310", "0001", "Class 1 Bluetooth Dongle" }, - { "1313", "0010", "LC1 Linear Camera (Jungo)" }, - { "1313", "0011", "SP1 Spectrometer (Jungo)" }, - { "1313", "0012", "SP2 Spectrometer (Jungo)" }, - { "1313", "0110", "LC1 Linear Camera (VISA)" }, - { "1313", "0111", "SP1 Spectrometer (VISA)" }, - { "1313", "0112", "SP2 Spectrometer (VISA)" }, - { "1313", "8001", "TXP-Series Slot (TXP5001, TXP5004)" }, - { "1313", "8011", "BP1 Slit Beam Profiler" }, - { "1313", "8012", "BC106 Camera Beam Profiler" }, - { "1313", "8013", "WFS10 Wavefront Sensor" }, - { "1313", "8016", "DMP40 Deformable Mirror" }, - { "1313", "8017", "BC206 Camera Beam Profiler" }, - { "1313", "8019", "BP2 Multi Slit Beam Profiler" }, - { "1313", "8020", "PM300 Optical Power Meter" }, - { "1313", "8021", "PM300E Optical Power and Energy Meter" }, - { "1313", "8022", "PM320E Optical Power and Energy Meter" }, - { "1313", "8025", "WFS20 Wavefront Sensor" }, - { "1313", "8030", "ER100 Extinction Ratio Meter" }, - { "1313", "8039", "PAX1000 Rotating Waveplate Polarimeter" }, - { "1313", "8047", "CLD1000" }, - { "1313", "8048", "TED4000" }, - { "1313", "8049", "LDC4000" }, - { "1313", "804a", "ITC4000" }, - { "1313", "8058", "LC-100" }, - { "1313", "8060", "DC3100" }, - { "1313", "8061", "DC4100" }, - { "1313", "8062", "DC2100" }, - { "1313", "8065", "CS2010" }, - { "1313", "8066", "DC4104" }, - { "1313", "8070", "PM100D" }, - { "1313", "8072", "PM100USB Power and Energy Meter Interface" }, - { "1313", "8073", "PM106 Wireless Powermeter Photodiode Sensor" }, - { "1313", "8074", "PM160T Wireless Powermeter Thermal Sensor" }, - { "1313", "8075", "PM400 Handheld Optical Power/Energy Meter" }, - { "1313", "8076", "PM101 Serial PD Power Meter" }, - { "1313", "8078", "PM100D Compact Power and Energy Meter Console" }, - { "1313", "8080", "CCS100 - Compact Spectrometer" }, - { "1313", "8081", "CCS100 Compact Spectrometer" }, - { "1313", "8083", "CCS125 Spectrometer" }, - { "1313", "8085", "CCS150 UV Spectrometer" }, - { "1313", "8087", "CCS175 NIR Spectrometer" }, - { "1313", "8089", "CCS200 Wide Range Spectrometer" }, - { "1313", "8090", "SPCM Single Photon Counter" }, - { "1313", "80a0", "LC100 series smart line camera" }, - { "1313", "80b0", "PM200 Handheld Power and Energy Meter" }, - { "1313", "80c0", "DC2200" }, - { "1313", "80c9", "MTD Series" }, - { "1313", "80f0", "TSP01" }, - { "1313", "80f1", "M2SET Dongle" }, - { "1313", "8180", "OCT Probe Controller (OCTH-1300)" }, - { "1313", "8181", "OCT Device" }, - { "131d", "0155", "TrackIR 3 Pro Head Tracker" }, - { "131d", "0156", "TrackIR 4 Pro Head Tracker" }, - { "131d", "0158", "TrackIR 5 Pro Head Tracker" }, - { "1325", "00d6", "I2C/SPI InterfaceBoard" }, - { "1325", "0c08", "Embedded Linux Sensor Bridge" }, - { "1325", "4002", "I2C Dongle" }, - { "132a", "1502", "WiND 802.11abg / 802.11bg WLAN" }, - { "132b", "0000", "Dimage A2 Camera" }, - { "132b", "0001", "Minolta DiMAGE A2 (ptp)" }, - { "132b", "0003", "Dimage Xg Camera" }, - { "132b", "0006", "Dimage Z2 Camera" }, - { "132b", "0007", "Minolta DiMAGE Z2 (PictBridge mode)" }, - { "132b", "0008", "Dimage X21 Camera" }, - { "132b", "000a", "Dimage Scan Dual IV AF-3200 (2891)" }, - { "132b", "000b", "Dimage Z10 Camera" }, - { "132b", "000d", "Dimage X50 Camera [storage?]" }, - { "132b", "000f", "Dimage X50 Camera [p2p?]" }, - { "132b", "0010", "Dimage G600 Camera" }, - { "132b", "0012", "Dimage Scan Elite 5400 II (2892)" }, - { "132b", "0013", "Dimage X31 Camera" }, - { "132b", "0015", "Dimage G530 Camera" }, - { "132b", "0017", "Dimage Z3 Camera" }, - { "132b", "0018", "Minolta DiMAGE Z3 (PictBridge mode)" }, - { "132b", "0019", "Dimage A200 Camera" }, - { "132b", "0021", "Dimage Z5 Camera" }, - { "132b", "0022", "Minolta DiMAGE Z5 (PictBridge mode)" }, - { "132b", "002c", "Dynax 5D camera" }, - { "132b", "2001", "Magicolor 2400w" }, - { "132b", "2004", "Magicolor 5430DL" }, - { "132b", "2005", "Magicolor 2430 DL" }, - { "132b", "2029", "Magicolor 5440DL" }, - { "132b", "2030", "PagePro 1350E(N)" }, - { "132b", "2033", "PagePro 1400W" }, - { "132b", "2043", "Magicolor 2530DL" }, - { "132b", "2045", "Magicolor 2500W" }, - { "132b", "2049", "Magicolor 2490MF" }, - { "133e", "0815", "Virus TI Desktop" }, - { "1342", "0200", "EasiDock 200 Hub" }, - { "1342", "0201", "EasiDock 200 Keyboard and Mouse Port" }, - { "1342", "0202", "EasiDock 200 Serial Port" }, - { "1342", "0203", "EasiDock 200 Printer Port" }, - { "1342", "0204", "Ethernet" }, - { "1342", "0304", "EasiDock Ethernet" }, - { "1343", "0002", "CW-01" }, - { "1343", "0003", "CX / DNP DS40" }, - { "1343", "0004", "CX-W / DNP DS80 / Mitsubishi CP3800" }, - { "1343", "0005", "CY / DNP DSRX1" }, - { "1343", "0006", "CW-02 / OP900ii" }, - { "1343", "0007", "DNP DS80DX" }, - { "1343", "0008", "DNP DS620 (old)" }, - { "1343", "000a", "CX-02" }, - { "1343", "000b", "CX-02W" }, - { "1345", "001c", "Xbox Controller Hub" }, - { "1345", "6006", "Defender Wireless Controller" }, - { "1347", "0400", "G2CCD USB 1.1 obsolete" }, - { "1347", "0401", "G2CCD-S with Sony ICX285 CCD" }, - { "1347", "0402", "G2CCD2" }, - { "1347", "0403", "G2/G3CCD-I KAI CCD" }, - { "1347", "0404", "G2/G3/G4 CCD-F KAF CCD" }, - { "1347", "0405", "Gx CCD-I CCD" }, - { "1347", "0406", "Gx CCD-F CCD" }, - { "1347", "0410", "G1-0400 CCD" }, - { "1347", "0411", "G1-0800 CCD" }, - { "1347", "0412", "G1-0300 CCD" }, - { "1347", "0413", "G1-2000 CCD" }, - { "1347", "0414", "G1-1400 CCD" }, - { "1347", "0415", "G1-1200 CCD" }, - { "1347", "04b0", "Gx CCD-B CCD" }, - { "1347", "04b1", "Gx CCD-BI CCD" }, - { "134c", "0001", "Touch Panel Controller" }, - { "134c", "0002", "Touch Panel Controller" }, - { "134c", "0003", "Touch Panel Controller" }, - { "134c", "0004", "Touch Panel Controller" }, - { "1357", "0089", "OpenSDA - CDC Serial Port" }, - { "1357", "0503", "USB-ML-12 HCS08/HCS12 Multilink" }, - { "1357", "0504", "DEMOJM" }, - { "1357", "1000", "Smart Control Touchpad" }, - { "135e", "0021", "Berker KNX Data Interface" }, - { "135e", "0022", "Gira KNX Data Interface" }, - { "135e", "0023", "JUNG KNX Data Interface" }, - { "135e", "0024", "Merten/Schneider Electric KNX Data Interface" }, - { "135e", "0025", "Hager KNX Data Interface" }, - { "135e", "0026", "Feller KNX Data Interface" }, - { "135f", "0110", "Linear Spectrograph" }, - { "135f", "0111", "Spectrograph - Renumerated" }, - { "135f", "0200", "Linear Spectrograph" }, - { "135f", "0201", "Spectrograph - Renumerated" }, - { "135f", "0240", "MPP Spectrograph" }, - { "1366", "0101", "J-Link PLUS" }, - { "1366", "1015", "J-Link" }, - { "136e", "0012", "iXon Ultra CCD" }, - { "136e", "0014", "Zyla 5.5 sCMOS camera" }, - { "1370", "0323", "Swissmemory cirrusWHITE" }, - { "1370", "6828", "Victorinox Flash Drive" }, - { "1371", "0001", "CNUSB-611AR Wireless Adapter-G [AT76C503]" }, - { "1371", "0002", "CNUSB-611AR Wireless Adapter-G [AT76C503] (FiberLine WL-240U)" }, - { "1371", "0013", "CNUSB-611 Wireless Adapter [AT76C505]" }, - { "1371", "0014", "CNUSB-611 Wireless Adapter [AT76C505] (FiberLine WL-240U)" }, - { "1371", "5743", "CNUSB-611 (D) Wireless Adapter [AT76C503]" }, - { "1371", "9022", "CWD-854 [RT2573]" }, - { "1371", "9032", "CWD-854 rev F" }, - { "1371", "9401", "CWD-854 Wireless 802.11g 54Mbps Network Adapter [RTL8187]" }, - { "1377", "4000", "HDVD800" }, - { "137b", "0002", "SCAPS USC-2 Scanner Controller" }, - { "137c", "0220", "MP Series" }, - { "137c", "0250", "SIGMA Series" }, - { "137c", "0401", "AC Drive" }, - { "1385", "4250", "WG111T" }, - { "1385", "4251", "WG111T (no firmware)" }, - { "1385", "5f00", "WPN111 RangeMax(TM) Wireless USB 2.0 Adapter" }, - { "1385", "5f01", "WPN111 (no firmware)" }, - { "1385", "5f02", "WPN111 (no firmware)" }, - { "1385", "6e00", "WPNT121 802.11g 240Mbps Wireless Adapter [Airgo AGN300]" }, - { "138a", "0001", "VFS101 Fingerprint Reader" }, - { "138a", "0005", "VFS301 Fingerprint Reader" }, - { "138a", "0007", "VFS451 Fingerprint Reader" }, - { "138a", "0008", "VFS300 Fingerprint Reader" }, - { "138a", "0010", "VFS Fingerprint sensor" }, - { "138a", "0011", "VFS5011 Fingerprint Reader" }, - { "138a", "0015", "VFS 5011 fingerprint sensor" }, - { "138a", "0017", "VFS 5011 fingerprint sensor" }, - { "138a", "0018", "Fingerprint scanner" }, - { "138a", "003c", "VFS471 Fingerprint Reader" }, - { "138a", "003d", "VFS491" }, - { "138a", "003f", "VFS495 Fingerprint Reader" }, - { "138a", "0050", "Swipe Fingerprint Sensor" }, - { "138a", "0090", "VFS7500 Touch Fingerprint Sensor" }, - { "138a", "0091", "VFS7552 Touch Fingerprint Sensor" }, - { "138e", "9000", "Raisonance S.A. STM32 ARM evaluation board / RLink dongle" }, - { "1390", "0001", "GO 520 T / GO 630 / ONE / ONE XL" }, - { "1390", "5454", "Blue & Me 2" }, - { "1390", "7474", "GPS Sport Watch [Runner, Multi-Sport]" }, - { "1390", "a001", "Bandit Action Camera Batt-Stick" }, - { "1391", "1000", "URTC-1000" }, - { "1395", "0025", "Headset [PC 8]" }, - { "1395", "0026", "SC230" }, - { "1395", "0027", "SC260" }, - { "1395", "0028", "SC230 CTRL" }, - { "1395", "0029", "SC260 CTRL" }, - { "1395", "002a", "SC230 for Lync" }, - { "1395", "002b", "SC260 for Lync" }, - { "1395", "002d", "BTD-800" }, - { "1395", "002e", "Presence" }, - { "1395", "0030", "CEHS-CI 02" }, - { "1395", "0031", "U320 Gaming" }, - { "1395", "0032", "SC30 for Lync" }, - { "1395", "0033", "SC60 for Lync" }, - { "1395", "0034", "SC30 Control" }, - { "1395", "0035", "SC60 Control" }, - { "1395", "0036", "SC630 for Lync" }, - { "1395", "0037", "SC660 for Lync" }, - { "1395", "0038", "SC630 CTRL" }, - { "1395", "0039", "SC660 CTRL" }, - { "1395", "003f", "SP 20" }, - { "1395", "0040", "MB Pro 1/2" }, - { "1395", "0041", "SP 20 for Lync" }, - { "1395", "0042", "SP 10" }, - { "1395", "0043", "SP 10 for Lync" }, - { "1395", "0046", "PXC 550" }, - { "1395", "004a", "MOMENTUM M2 OEBT" }, - { "1395", "004b", "MOMENTUM M2 AEBT" }, - { "1395", "004f", "SC230 for MS II" }, - { "1395", "0050", "SC260 for MS II" }, - { "1395", "0051", "USB-ED CC 01" }, - { "1395", "0058", "USB-ED CC 01 for MS" }, - { "1395", "0059", "SC40 for MS" }, - { "1395", "005a", "SC70 for MS" }, - { "1395", "005b", "SC40 CTRL" }, - { "1395", "005c", "SC70 CTRL" }, - { "1395", "0060", "SCx5 MS" }, - { "1395", "0061", "SCx5 CTRL" }, - { "1395", "0064", "MB 660 MS" }, - { "1395", "0065", "MB 660" }, - { "1395", "0066", "SP 20 D UC" }, - { "1395", "0067", "SP 20 D MS" }, - { "1395", "006b", "SC5x5 MS" }, - { "1395", "0072", "Headset" }, - { "1395", "3556", "USB Headset" }, - { "1397", "0004", "FCA1616" }, - { "1397", "00bc", "BCF2000" }, - { "1398", "2103", "USB 2.0 Storage Device" }, - { "13ad", "9999", "Card reader" }, - { "13b0", "000a", "Alesis Photon X25 MIDI Controller" }, - { "13b1", "000a", "WUSB54G v2 802.11g Adapter [Intersil ISL3887]" }, - { "13b1", "000b", "WUSB11 v4.0 802.11b Adapter [ALi M4301]" }, - { "13b1", "000c", "WUSB54AG 802.11a/g Adapter [Intersil ISL3887]" }, - { "13b1", "000d", "WUSB54G v4 802.11g Adapter [Ralink RT2500USB]" }, - { "13b1", "000e", "WUSB54GS v1 802.11g Adapter [Broadcom 4320 USB]" }, - { "13b1", "0011", "WUSB54GP v4.0 802.11g Adapter [Ralink RT2500USB]" }, - { "13b1", "0014", "WUSB54GS v2 802.11g Adapter [Broadcom 4320 USB]" }, - { "13b1", "0018", "USB200M 10/100 Ethernet Adapter" }, - { "13b1", "001a", "HU200TS Wireless Adapter" }, - { "13b1", "001e", "WUSBF54G 802.11bg" }, - { "13b1", "0020", "WUSB54GC v1 802.11g Adapter [Ralink RT73]" }, - { "13b1", "0022", "WUSB54GX4 802.11g 240Mbps Wireless Adapter [Airgo AGN300]" }, - { "13b1", "0023", "WUSB54GR" }, - { "13b1", "0024", "WUSBF54G v1.1 802.11bg" }, - { "13b1", "0026", "WUSB54GSC v1 802.11g Adapter [Broadcom 4320 USB]" }, - { "13b1", "0028", "WUSB200 802.11g Adapter [Ralink RT2671]" }, - { "13b1", "0029", "WUSB300N 802.11bgn Wireless Adapter [Marvell 88W8362+88W8060]" }, - { "13b1", "002f", "AE1000 v1 802.11n [Ralink RT3572]" }, - { "13b1", "0031", "AM10 v1 802.11n [Ralink RT3072]" }, - { "13b1", "0039", "AE1200 802.11bgn Wireless Adapter [Broadcom BCM43235]" }, - { "13b1", "003a", "AE2500 802.11abgn Wireless Adapter [Broadcom BCM43236]" }, - { "13b1", "003b", "AE3000 802.11abgn (3x3) Wireless Adapter [Ralink RT3573]" }, - { "13b1", "003e", "AE6000 802.11a/b/g/n/ac Wireless Adapter [MediaTek MT7610U]" }, - { "13b1", "003f", "WUSB6300 802.11a/b/g/n/ac Wireless Adapter [Realtek RTL8812AU]" }, - { "13b1", "0041", "Gigabit Ethernet Adapter" }, - { "13b1", "0042", "WUSB6100M 802.11a/b/g/n/ac Wireless Adapter" }, - { "13b1", "13b1", "WUSB200: Wireless-G Business Network Adapter with Rangebooster" }, - { "13b2", "0030", "Multimix 8" }, - { "13ba", "0001", "Konig Electronic CMP-KEYPAD12 Numeric Keypad" }, - { "13ba", "0017", "PS/2 Keyboard+Mouse Adapter" }, - { "13ba", "0018", "Barcode PCP-BCG4209" }, - { "13cf", "1200", "Olidata Wireless Multimedia Adapter" }, - { "13d0", "2282", "TechniSat DVB-PC TV Star 2" }, - { "13d1", "7019", "MD 82288" }, - { "13d1", "abe6", "Wireless 802.11g 54Mbps Network Adapter [RTL8187]" }, - { "13d2", "0400", "Pocket Ethernet [klsi]" }, - { "13d3", "3201", "VisionDTV USB-Ter/HAMA USB DVB-T device cold" }, - { "13d3", "3202", "VisionDTV USB-Ter/HAMA USB DVB-T device warm" }, - { "13d3", "3203", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "13d3", "3204", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "13d3", "3205", "DNTV Live! Tiny USB2 BDA (No Remote)" }, - { "13d3", "3206", "DNTV Live! Tiny USB2 BDA (No Remote)" }, - { "13d3", "3207", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "13d3", "3208", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "13d3", "3209", "DTV-DVB UDST7022BDA DVB-S Box(Without HID)" }, - { "13d3", "3211", "DTV-DVB Hybrid Analog/Capture / Pinnacle PCTV 310e" }, - { "13d3", "3212", "DTV-DVB UDTT704C - DVBT/NTSC/PAL Driver(PCM4)" }, - { "13d3", "3213", "DTV-DVB UDTT704D - DVBT/NTSC/PAL Driver (PCM4)" }, - { "13d3", "3214", "DTV-DVB UDTT704F -(MiniCard) DVBT/NTSC/PAL Driver(Without HID)" }, - { "13d3", "3215", "DTV-DVB UDAT7240 - ATSC/NTSC/PAL Driver(PCM4)" }, - { "13d3", "3216", "DTV-DVB UDTT 7047-USB 2.0 DVB-T Driver" }, - { "13d3", "3217", "Digital-TV Receiver." }, - { "13d3", "3219", "DTV-DVB UDTT7049 - DVB-T Driver(Without HID)" }, - { "13d3", "3220", "DTV-DVB UDTT 7047M-USB 2.0 DVB-T Driver" }, - { "13d3", "3223", "DNTV Live! Tiny USB2 BDA (No Remote)" }, - { "13d3", "3224", "DNTV Live! Tiny USB2 BDA (No Remote)" }, - { "13d3", "3226", "DigitalNow TinyTwin DVB-T Receiver" }, - { "13d3", "3234", "DVB-T FTA Half Minicard [RTL2832U]" }, - { "13d3", "3236", "DTV-DVB UDTT 7047A-USB 2.0 DVB-T Driver" }, - { "13d3", "3237", "DTV-DVB UDTT 704J - dual DVB-T Driver" }, - { "13d3", "3239", "DTV-DVB UDTT704D - DVBT/NTSC/PAL Driver(Without HID)" }, - { "13d3", "3240", "DTV-DVB UDXTTM6010 - A/D Driver(Without HID)" }, - { "13d3", "3241", "DTV-DVB UDXTTM6010 - A/D Driver(Without HID)" }, - { "13d3", "3242", "DTV-DVB UDAT7240LP - ATSC/NTSC/PAL Driver(Without HID)" }, - { "13d3", "3243", "DTV-DVB UDXTTM6010 - A/D Driver(Without HID)" }, - { "13d3", "3244", "DTV-DVB UDTT 7047Z-USB 2.0 DVB-T Driver" }, - { "13d3", "3247", "AW-NU222 802.11bgn Wireless Module [Ralink RT2770+RT2720]" }, - { "13d3", "3249", "Internal Bluetooth" }, - { "13d3", "3250", "Broadcom Bluetooth 2.1" }, - { "13d3", "3262", "802.11 n/g/b Wireless LAN USB Adapter" }, - { "13d3", "3273", "802.11 n/g/b Wireless LAN USB Mini-Card" }, - { "13d3", "3274", "DVB-T Dongle [RTL2832U]" }, - { "13d3", "3282", "DVB-T + GPS Minicard [RTL2832U]" }, - { "13d3", "3284", "Wireless LAN USB Mini-Card" }, - { "13d3", "3304", "Asus Integrated Bluetooth module [AR3011]" }, - { "13d3", "3306", "Mediao 802.11n WLAN [Realtek RTL8191SU]" }, - { "13d3", "3315", "Bluetooth module" }, - { "13d3", "3327", "AW-NU137 802.11bgn Wireless Module [Atheros AR9271]" }, - { "13d3", "3362", "Atheros AR3012 Bluetooth 4.0 Adapter" }, - { "13d3", "3375", "Atheros AR3012 Bluetooth 4.0 Adapter" }, - { "13d3", "3392", "Azurewave 43228+20702" }, - { "13d3", "3394", "Bluetooth" }, - { "13d3", "3474", "Atheros AR3012 Bluetooth" }, - { "13d3", "3526", "Bluetooth Radio" }, - { "13d3", "5070", "Webcam" }, - { "13d3", "5111", "Integrated Webcam" }, - { "13d3", "5115", "Integrated Webcam" }, - { "13d3", "5116", "Integrated Webcam" }, - { "13d3", "5122", "2M Integrated Webcam" }, - { "13d3", "5126", "PC Cam" }, - { "13d3", "5130", "Integrated Webcam" }, - { "13d3", "5134", "Integrated Webcam" }, - { "13d3", "5615", "Lenovo EasyCamera" }, - { "13d3", "5670", "HP TrueVision HD" }, - { "13d3", "5682", "SunplusIT Integrated Camera" }, - { "13d3", "5702", "UVC VGA Webcam" }, - { "13d3", "5710", "UVC VGA Webcam" }, - { "13d3", "5716", "UVC VGA Webcam" }, - { "13d3", "5a07", "VGA UVC WebCam" }, - { "13d3", "7020", "DTV-DVB UDST7020BDA DVB-S Box(DVBS for MCE2005)" }, - { "13d3", "7022", "DTV-DVB UDST7022BDA DVB-S Box(Without HID)" }, - { "13d3", "784b", "XHC Camera" }, - { "13d7", "0001", "T5 PATA forensic bridge" }, - { "13d7", "000c", "T8-R2 forensic bridge" }, - { "13e5", "0001", "SL-1" }, - { "13e5", "0003", "TTM 57SL" }, - { "13ea", "0001", "C-56 Thermal Printer" }, - { "13ec", "0006", "HID Remote Control" }, - { "13ee", "0001", "Optical Mouse" }, - { "13ee", "0003", "Optical Mouse" }, - { "13fd", "0550", "INIC-1530 PATA Bridge" }, - { "13fd", "0840", "INIC-1618L SATA" }, - { "13fd", "0841", "Samsung SE-T084M DVD-RW" }, - { "13fd", "0940", "ASUS SBW-06D2X-U" }, - { "13fd", "1040", "INIC-1511L PATA Bridge" }, - { "13fd", "1340", "Hi-Speed USB to SATA Bridge" }, - { "13fd", "160f", "RocketFish SATA Bridge [INIC-1611]" }, - { "13fd", "1640", "INIC-1610L SATA Bridge" }, - { "13fd", "1669", "INIC-1609PN" }, - { "13fd", "1840", "INIC-1608 SATA bridge" }, - { "13fd", "1e40", "INIC-1610P SATA bridge" }, - { "13fd", "2040", "Samsung Writemaster external DVD writer" }, - { "13fd", "3920", "INIC-3619PN SATA Bridge" }, - { "13fd", "3940", "external DVD burner ECD819-SU3" }, - { "13fd", "3960", "INIC-3639" }, - { "13fd", "3e40", "ZALMAN ZM-VE350" }, - { "13fe", "1a00", "512MB/1GB Flash Drive" }, - { "13fe", "1a23", "512MB Flash Drive" }, - { "13fe", "1d00", "DataTraveler 2.0 1GB/4GB Flash Drive / Patriot Xporter 4GB Flash Drive" }, - { "13fe", "1e00", "Flash Drive 2 GB [ICIDU 2 GB]" }, - { "13fe", "1e50", "U3 Smart Drive" }, - { "13fe", "1f00", "Kingston DataTraveler / Patriot Xporter" }, - { "13fe", "1f23", "PS2232 flash drive controller" }, - { "13fe", "2240", "microSD card reader" }, - { "13fe", "3100", "2/4 GB stick" }, - { "13fe", "3123", "Verbatim STORE N GO 4GB" }, - { "13fe", "3200", "flash drive (2GB, EMTEC)" }, - { "13fe", "3600", "flash drive (4GB, EMTEC)" }, - { "13fe", "3800", "Rage XT Flash Drive" }, - { "13fe", "3d00", "Flash Drive" }, - { "13fe", "3e00", "Flash Drive" }, - { "13fe", "4100", "Flash drive" }, - { "13fe", "4200", "Platinum USB drive mini" }, - { "13fe", "5000", "USB flash drive (32 GB SHARKOON Accelerate)" }, - { "13fe", "5100", "Flash Drive" }, - { "13fe", "5200", "DataTraveler R3.0" }, - { "13fe", "5500", "Flash drive" }, - { "13fe", "6300", "SP Mobile C31 (64GB)" }, - { "1403", "0001", "Digital Photo Frame" }, - { "1403", "0003", "Digital Photo Frame (DPF-1104)" }, - { "1404", "cddc", "Dongle" }, - { "1409", "1000", "generic (firmware not loaded yet)" }, - { "1409", "1485", "uEye UI1485" }, - { "1409", "3240", "uEye UI3240" }, - { "140e", "b011", "TCC780X-based player (USB Boot mode)" }, - { "140e", "b021", "TCC77X-based players (USB Boot mode)" }, - { "1410", "1110", "Merlin S620" }, - { "1410", "1120", "Merlin EX720" }, - { "1410", "1130", "Merlin S720" }, - { "1410", "1400", "Merlin U730/U740 (Vodafone)" }, - { "1410", "1410", "Merlin U740 (non-Vodafone)" }, - { "1410", "1430", "Merlin XU870" }, - { "1410", "1450", "Merlin X950D" }, - { "1410", "2110", "Ovation U720/MCD3000" }, - { "1410", "2410", "Expedite EU740" }, - { "1410", "2420", "Expedite EU850D/EU860D/EU870D" }, - { "1410", "4100", "U727" }, - { "1410", "4400", "Ovation MC930D/MC950D" }, - { "1410", "9010", "Expedite E362" }, - { "1410", "a001", "Gobi Wireless Modem" }, - { "1410", "a008", "Gobi Wireless Modem (QDL mode)" }, - { "1410", "b001", "Ovation MC551" }, - { "1415", "0000", "Sony SingStar USBMIC" }, - { "1415", "0020", "Sony Wireless SingStar" }, - { "1415", "2000", "Sony Playstation Eye" }, - { "1421", "0605", "Sentech Camera" }, - { "1424", "1001", "Temo" }, - { "1424", "1002", "Thermal" }, - { "1424", "1003", "Neo" }, - { "1424", "1004", "Combo DF" }, - { "1424", "1005", "Thermal-A" }, - { "1424", "1006", "Thermal FV" }, - { "1424", "1007", "Bingo HS" }, - { "1424", "1008", "Thermal HS FV" }, - { "1424", "1009", "Thermal FV EJ" }, - { "1424", "100a", "Thermal HD" }, - { "1424", "100b", "Thermal" }, - { "1424", "100c", "Neo" }, - { "1424", "100d", "Ergo" }, - { "1424", "100e", "Trio" }, - { "1424", "1010", "Thermal HS FV EJ" }, - { "1424", "1011", "Neo EJ" }, - { "1424", "1012", "Thermal-A" }, - { "1424", "1013", "Thermal-A EJ" }, - { "1424", "1014", "Mobile" }, - { "1424", "1015", "Temo HS" }, - { "1424", "1016", "Mobile HS" }, - { "1424", "1017", "TH230+ FV EJ" }, - { "1424", "1018", "4610-1NR FV EJ" }, - { "142a", "0003", "Artema Hybrid" }, - { "142a", "0005", "Artema Modular" }, - { "142a", "0043", "medCompact" }, - { "142b", "03a5", "933A Portable Power Sentinel" }, - { "1430", "0150", "wireless receiver for skylanders wii" }, - { "1430", "4734", "Guitar Hero4 hub" }, - { "1430", "4748", "Guitar Hero X-plorer" }, - { "1430", "474b", "Guitar Hero MIDI interface" }, - { "1430", "8888", "TX6500+ Dance Pad" }, - { "1430", "f801", "Controller" }, - { "1435", "0427", "UR054g 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "1435", "0711", "UR055G 802.11bg" }, - { "1435", "0804", "AR9170+AR9104 802.11abgn Wireless Adapter" }, - { "1435", "0826", "AR5523" }, - { "1435", "0827", "AR5523 (no firmware)" }, - { "1435", "0828", "AR5523" }, - { "1435", "0829", "AR5523 (no firmware)" }, - { "1443", "0007", "Development board JTAG" }, - { "1446", "6a73", "Stamps.com Model 510 5LB Scale" }, - { "1446", "6a78", "DYMO Endicia 75lb Digital Scale" }, - { "1451", "0301", "haptic device" }, - { "1451", "0302", "haptic device" }, - { "1451", "0400", "haptic device" }, - { "1451", "0401", "delta.x haptic device" }, - { "1451", "0402", "omega.x haptic device" }, - { "1451", "0403", "sigma.x haptic device" }, - { "1451", "0404", "haptic controller" }, - { "1451", "0405", "dedicated haptic device" }, - { "1451", "0406", "dedicated haptic device" }, - { "1451", "0407", "dedicated haptic device" }, - { "1451", "0408", "dedicated haptic device" }, - { "1452", "8b01", "DS620" }, - { "1452", "9001", "DS820" }, - { "1453", "4026", "26-183 Serial Cable" }, - { "1457", "5117", "OpenMoko Neo1973 kernel usbnet (g_ether, CDC Ethernet) mode" }, - { "1457", "5118", "OpenMoko Neo1973 Debug board (V2+)" }, - { "1457", "5119", "OpenMoko Neo1973 u-boot cdc_acm serial port" }, - { "1457", "511a", "HXD8 u-boot usbtty CDC ACM Mode" }, - { "1457", "511b", "SMDK2440 u-boot usbtty CDC ACM mode" }, - { "1457", "511c", "SMDK2443 u-boot usbtty CDC ACM mode" }, - { "1457", "511d", "QT2410 u-boot usbtty CDC ACM mode" }, - { "1457", "5120", "OpenMoko Neo1973 u-boot usbtty generic serial" }, - { "1457", "5121", "OpenMoko Neo1973 kernel mass storage (g_storage) mode" }, - { "1457", "5122", "OpenMoko Neo1973 / Neo Freerunner kernel cdc_ether USB network" }, - { "1457", "5123", "OpenMoko Neo1973 internal USB CSR4 module" }, - { "1457", "5124", "OpenMoko Neo1973 Bluetooth Device ID service" }, - { "145f", "0106", "K56 V92 Modem" }, - { "145f", "013d", "PC Camera (SN9C201 + OV7660)" }, - { "145f", "013f", "Megapixel Auto Focus Webcam" }, - { "145f", "0142", "WB-6250X Webcam" }, - { "145f", "015a", "WB-8300X 2MP Webcam" }, - { "145f", "0161", "15901 802.11bg Wireless Adapter [Realtek RTL8187L]" }, - { "145f", "0167", "Widescreen 3MP Webcam" }, - { "145f", "0176", "Isla Keyboard" }, - { "145f", "019f", "17676 Webcam" }, - { "145f", "01e5", "Keyboard [GXT 830]" }, - { "145f", "0212", "Panora Widescreen Graphic Tablet" }, - { "145f", "023f", "Mouse [GXT 168]" }, - { "1460", "9150", "eHome Infrared Transceiver" }, - { "1462", "5512", "MegaStick-1 Flash Stick" }, - { "1462", "8807", "DIGIVOX mini III [af9015]" }, - { "146b", "0601", "Controller for Xbox 360" }, - { "146b", "0902", "Wired Mini PS3 Game Controller" }, - { "1472", "0007", "Aolynk WUB300g [ZyDAS ZD1211]" }, - { "1472", "0009", "Aolynk WUB320g" }, - { "147a", "e015", "eHome Infrared Receiver" }, - { "147a", "e016", "eHome Infrared Receiver" }, - { "147a", "e017", "eHome Infrared Receiver" }, - { "147a", "e018", "eHome Infrared Receiver" }, - { "147a", "e02c", "Infrared Receiver" }, - { "147a", "e03a", "eHome Infrared Receiver" }, - { "147a", "e03c", "eHome Infrared Receiver" }, - { "147a", "e03d", "2 Channel Audio" }, - { "147a", "e03e", "Infrared Receiver [IR605A/Q]" }, - { "147e", "1000", "Biometric Touchchip/Touchstrip Fingerprint Sensor" }, - { "147e", "1001", "TCS5B Fingerprint sensor" }, - { "147e", "1002", "Biometric Touchchip/Touchstrip Fingerprint Sensor" }, - { "147e", "2016", "Biometric Touchchip/Touchstrip Fingerprint Sensor" }, - { "147e", "2020", "TouchChip Fingerprint Coprocessor (WBF advanced mode)" }, - { "147e", "3000", "TCS1C EIM/Cypress Fingerprint sensor" }, - { "147e", "3001", "TCS1C EIM/STM32 Fingerprint sensor" }, - { "1482", "1005", "VRD PC-Interface" }, - { "1484", "1746", "Ecomo 19H99 Monitor" }, - { "1484", "7616", "Elsa Hub" }, - { "1485", "0001", "U2E" }, - { "1485", "0002", "Psion Gold Port Ethernet" }, - { "148f", "1000", "Motorola BC4 Bluetooth 3.0+HS Adapter" }, - { "148f", "1706", "RT2500USB Wireless Adapter" }, - { "148f", "2070", "RT2070 Wireless Adapter" }, - { "148f", "2570", "RT2570 Wireless Adapter" }, - { "148f", "2573", "RT2501/RT2573 Wireless Adapter" }, - { "148f", "2671", "RT2601/RT2671 Wireless Adapter" }, - { "148f", "2770", "RT2770 Wireless Adapter" }, - { "148f", "2870", "RT2870 Wireless Adapter" }, - { "148f", "3070", "RT2870/RT3070 Wireless Adapter" }, - { "148f", "3071", "RT3071 Wireless Adapter" }, - { "148f", "3072", "RT3072 Wireless Adapter" }, - { "148f", "3370", "RT3370 Wireless Adapter" }, - { "148f", "3572", "RT3572 Wireless Adapter" }, - { "148f", "3573", "RT3573 Wireless Adapter" }, - { "148f", "5370", "RT5370 Wireless Adapter" }, - { "148f", "5372", "RT5372 Wireless Adapter" }, - { "148f", "5572", "RT5572 Wireless Adapter" }, - { "148f", "7601", "MT7601U Wireless Adapter" }, - { "148f", "760b", "MT7601U Wireless Adapter" }, - { "148f", "761a", "MT7610U (\"Archer T2U\" 2.4G+5G WLAN Adapter" }, - { "148f", "9020", "RT2500USB Wireless Adapter" }, - { "148f", "9021", "RT2501USB Wireless Adapter" }, - { "1491", "0020", "FS81 Fingerprint Scanner Module" }, - { "1491", "0088", "Fingerprint Scanner Model FS88" }, - { "1493", "0010", "Bluebird [Ambit]" }, - { "1493", "0019", "Duck [Ambit2]" }, - { "1493", "001a", "Colibri [Ambit2 S]" }, - { "1493", "001b", "Emu [Ambit3 Peak]" }, - { "1493", "001c", "Finch [Ambit3 Sport]" }, - { "1493", "001d", "Greentit [Ambit2 R]" }, - { "1493", "001e", "Ibisbill [Ambit3 Run]" }, - { "1498", "a090", "DVB-T Tuner" }, - { "149a", "069b", "PURE Digital Evoke-1XT Tri-band" }, - { "149a", "2107", "DBX1 DSP core" }, - { "14aa", "0001", "Avermedia AverTV DVBT USB1.1 (cold)" }, - { "14aa", "0002", "Avermedia AverTV DVBT USB1.1 (warm)" }, - { "14aa", "0201", "AVermedia/Yakumo/Hama/Typhoon DVB-T USB2.0 (cold)" }, - { "14aa", "0221", "WT-220U DVB-T dongle" }, - { "14aa", "022b", "WT-220U DVB-T dongle" }, - { "14aa", "0301", "AVermedia/Yakumo/Hama/Typhoon DVB-T USB2.0 (warm)" }, - { "14b0", "3410", "Serial Adapter ICUSB2321X [TUSB3410I]" }, - { "14b2", "3a93", "Topcom 802.11bg Wireless Adapter [Atheros AR5523]" }, - { "14b2", "3a95", "Toshiba WUS-G06G-JT 802.11bg Wireless Adapter [Atheros AR5523]" }, - { "14b2", "3a98", "Airlink101 AWLL4130 802.11bg Wireless Adapter [Atheros AR5523]" }, - { "14b2", "3c02", "Conceptronic C54RU v2 802.11bg Wireless Adapter [Ralink RT2571]" }, - { "14b2", "3c05", "rt2570 802.11g WLAN" }, - { "14b2", "3c06", "Conceptronic C300RU v1 802.11bgn Wireless Adapter [Ralink RT2870]" }, - { "14b2", "3c07", "802.11n adapter" }, - { "14b2", "3c09", "802.11n adapter" }, - { "14b2", "3c22", "Conceptronic C54RU v3 802.11bg Wireless Adapter [Ralink RT2571W]" }, - { "14b2", "3c23", "Airlink101 AWLL6080 802.11bgn Wireless Adapter [Ralink RT2870]" }, - { "14b2", "3c24", "NEC NP01LM 802.11abg Wireless Adapter [Ralink RT2571W]" }, - { "14b2", "3c25", "DrayTek Vigor N61 802.11bgn Wireless Adapter [Ralink RT2870]" }, - { "14b2", "3c27", "Airlink101 AWLL6070 802.11bgn Wireless Adapter [Ralink RT2770]" }, - { "14b2", "3c28", "Conceptronic C300RU v2 802.11bgn Wireless Adapter [Ralink RT2770]" }, - { "14b2", "3c2b", "NEC NP02LM 802.11bgn Wireless Adapter [Ralink RT3072]" }, - { "14b2", "3c2c", "Keebox W150NU 802.11bgn Wireless Adapter [Ralink RT3070]" }, - { "14c2", "0250", "Storage Adapter V2" }, - { "14c2", "0350", "Storage Adapter V2" }, - { "14c8", "0005", "Touchscreen Controller" }, - { "14cd", "1212", "microSD card reader (SY-T18)" }, - { "14cd", "121c", "microSD card reader" }, - { "14cd", "121f", "microSD CardReader SY-T18" }, - { "14cd", "123a", "SD/MMC/RS-MMC Card Reader" }, - { "14cd", "125c", "SD card reader" }, - { "14cd", "127b", "SDXC Reader" }, - { "14cd", "168a", "Elecom Co., Ltd MR-K013 Multicard Reader" }, - { "14cd", "6116", "M6116 SATA Bridge" }, - { "14cd", "6600", "M110E PATA bridge" }, - { "14cd", "6700", "Card Reader" }, - { "14cd", "6900", "Card Reader" }, - { "14cd", "8123", "SD MMC Reader" }, - { "14cd", "8125", "SD MMC Reader" }, - { "14cd", "8601", "4-Port hub" }, - { "14cd", "8608", "Hub [Super Top]" }, - { "14dd", "1007", "D2CIM-VUSB KVM connector" }, - { "14e0", "0501", "WR-G528e 'CHEETAH'" }, - { "14e1", "5000", "PenMount 5000 Touch Controller" }, - { "14ea", "ab10", "GW-US54GZ" }, - { "14ea", "ab11", "GU-1000T" }, - { "14ea", "ab13", "GW-US54Mini 802.11bg" }, - { "14ed", "1000", "MV5" }, - { "14ed", "1002", "MV51" }, - { "14ed", "1003", "MVi" }, - { "14ed", "1004", "SHA900" }, - { "14ed", "1005", "KSE1500" }, - { "14ed", "1011", "MV88+" }, - { "14ed", "1100", "ANIUSB-MATRIX" }, - { "14ed", "1101", "P300" }, - { "14ed", "29b6", "X2u Adapter" }, - { "14ed", "3000", "RMCE-USB" }, - { "14f7", "0001", "SkyStar 2 HD CI" }, - { "14f7", "0002", "SkyStar 2 HD CI" }, - { "14f7", "0003", "CableStar Combo HD CI" }, - { "14f7", "0004", "AirStar TeleStick 2" }, - { "14f7", "0500", "DVB-PC TV Star HD" }, - { "1504", "001f", "SRP-350II Thermal Receipt Printer" }, - { "1509", "0a01", "LI-3100 Area Meter" }, - { "1509", "0a02", "LI-7000 CO2/H2O Gas Analyzer" }, - { "1509", "0a03", "C-DiGit Blot Scanner" }, - { "1509", "9242", "eHome Infrared Transceiver" }, - { "1513", "0444", "medMobile" }, - { "1514", "2003", "FlashPro3 Programmer" }, - { "1514", "2004", "FlashPro3 Programmer" }, - { "1514", "2005", "FlashPro3 Programmer" }, - { "1516", "1603", "Flash Drive" }, - { "1516", "8628", "Pen Drive" }, - { "1518", "0001", "HDReye High Dynamic Range Camera" }, - { "1518", "0002", "HDReye (before firmware loads)" }, - { "1519", "0020", "HSIC Device" }, - { "151f", "0020", "XEM3001v1" }, - { "151f", "0021", "XEM3001v2" }, - { "151f", "0022", "XEM3010" }, - { "151f", "0023", "XEM3005" }, - { "151f", "0028", "XEM3050" }, - { "151f", "002b", "XEM5010" }, - { "151f", "002c", "XEM6001" }, - { "151f", "002d", "XEM6010-LX45" }, - { "151f", "002e", "XEM6010-LX150" }, - { "151f", "0030", "XEM6006-LX16" }, - { "151f", "0033", "XEM6002-LX9" }, - { "151f", "0034", "XEM7001-A15" }, - { "151f", "0036", "XEM7010-A50" }, - { "151f", "0037", "XEM7010-A200" }, - { "151f", "0120", "ZEM4310" }, - { "151f", "0121", "XEM6310-LX45" }, - { "151f", "0122", "XEM6310-LX150" }, - { "151f", "0123", "XEM6310MT-LX45T" }, - { "151f", "0125", "XEM7350-K70T" }, - { "151f", "0126", "XEM7350-K160T" }, - { "151f", "0127", "XEM7350-K410T" }, - { "151f", "0128", "XEM6310MT-LX150T" }, - { "151f", "0129", "ZEM5305-A2" }, - { "151f", "012b", "XEM7360-K160T" }, - { "151f", "012c", "XEM7360-K410T" }, - { "151f", "012d", "ZEM5310-A4" }, - { "151f", "0130", "XEM7310-A75" }, - { "151f", "0131", "XEM7310-A200" }, - { "1524", "6680", "UTS 6680" }, - { "1527", "0200", "YAP Phone (no firmware)" }, - { "1527", "0201", "YAP Phone" }, - { "1529", "3100", "CDMA 1xRTT USB Modem (U-100/105/200/300/520)" }, - { "152a", "8350", "NET Gmbh iCube Camera" }, - { "152a", "8400", "INI DVS128" }, - { "152a", "840d", "INI DAViS" }, - { "152a", "841a", "INI DAViS FX3" }, - { "152b", "0001", "spirobank II" }, - { "152b", "0002", "spirolab III" }, - { "152b", "0003", "MiniSpir" }, - { "152b", "0004", "Oxi" }, - { "152b", "0005", "spiros II" }, - { "152b", "0006", "smiths spirobank II" }, - { "152b", "0007", "smiths spirobank G-USB" }, - { "152b", "0008", "smiths MiniSpir" }, - { "152b", "0009", "spirobank G-USB" }, - { "152b", "000a", "smiths Oxi" }, - { "152b", "000b", "smiths spirolab III" }, - { "152b", "000c", "chorus III" }, - { "152b", "000d", "spirolab III Bw" }, - { "152b", "000e", "spirolab III" }, - { "152b", "000f", "easySpiro" }, - { "152b", "0010", "Spirotel converter" }, - { "152b", "0011", "spirobank" }, - { "152b", "0012", "spiro3 Zimmer" }, - { "152b", "0013", "spirotel serial" }, - { "152b", "0014", "spirotel II" }, - { "152b", "0015", "spirodoc" }, - { "152d", "0539", "JMS539/567 SuperSpeed SATA II/III 3.0G/6.0G Bridge" }, - { "152d", "0551", "JMS551 SuperSpeed two ports SATA 3Gb/s bridge" }, - { "152d", "0561", "JMS551 - Sharkoon SATA QuickPort Duo" }, - { "152d", "0562", "JMS567 SATA 6Gb/s bridge" }, - { "152d", "0567", "JMS567 SATA 6Gb/s bridge" }, - { "152d", "0576", "Gen1 SATA 6Gb/s Bridge" }, - { "152d", "0578", "JMS578 SATA 6Gb/s" }, - { "152d", "0583", "JMS583Gen 2 to PCIe Gen3x2 Bridge" }, - { "152d", "0770", "Alienware Integrated Webcam" }, - { "152d", "1561", "JMS561U two ports SATA 6Gb/s bridge" }, - { "152d", "1576", "External Disk 3.0" }, - { "152d", "2329", "JM20329 SATA Bridge" }, - { "152d", "2335", "ATA/ATAPI Bridge" }, - { "152d", "2336", "Hard Disk Drive" }, - { "152d", "2337", "ATA/ATAPI Bridge" }, - { "152d", "2338", "JM20337 Hi-Speed USB to SATA & PATA Combo Bridge" }, - { "152d", "2339", "JM20339 SATA Bridge" }, - { "152d", "2352", "ATA/ATAPI Bridge" }, - { "152d", "2509", "JMS539, JMS551 SATA 3Gb/s bridge" }, - { "152d", "2551", "JMS551 SATA 3Gb/s bridge" }, - { "152d", "2561", "CEB-2235S-U3 external RAID box" }, - { "152d", "2566", "JMS566 SATA 3Gb/s bridge" }, - { "152d", "2590", "JMS567 SATA 6Gb/s bridge" }, - { "152d", "3562", "JMS567 SATA 6Gb/s bridge" }, - { "152d", "3569", "JMS566 SATA 3Gb/s bridge" }, - { "152d", "578e", "JMS578 SATA 6Gb/s bridge" }, - { "152d", "8561", "salcar docking station two disks" }, - { "152e", "1640", "INIC-1605 SATA Bridge" }, - { "152e", "2507", "PL-2507 IDE Controller" }, - { "152e", "2571", "GP08NU6W DVD-RW" }, - { "152e", "e001", "GSA-5120D DVD-RW" }, - { "1532", "0001", "RZ01-020300 Optical Mouse [Diamondback]" }, - { "1532", "0002", "Diamondback Optical Mouse" }, - { "1532", "0003", "Krait Mouse" }, - { "1532", "0005", "Boomslang CE" }, - { "1532", "0007", "DeathAdder Mouse" }, - { "1532", "0009", "Gaming Mouse [Tempest Habu]" }, - { "1532", "000a", "Mamba (Wired)" }, - { "1532", "000c", "Lachesis" }, - { "1532", "000d", "DiamondBack 3G" }, - { "1532", "000e", "Megalodon" }, - { "1532", "000f", "Mamba (Wireless)" }, - { "1532", "0012", "Gaming Mouse [Salmosa]" }, - { "1532", "0013", "Orochi 2011" }, - { "1532", "0015", "Naga Mouse" }, - { "1532", "0016", "DeathAdder 3.5G" }, - { "1532", "0017", "RZ01-0035 Laser Gaming Mouse [Imperator]" }, - { "1532", "0019", "Marauder" }, - { "1532", "001a", "Spectre" }, - { "1532", "001b", "Gaming Headset" }, - { "1532", "001c", "RZ01-0036 Optical Gaming Mouse [Abyssus]" }, - { "1532", "001e", "Lachesis (5600 DPI)" }, - { "1532", "001f", "Naga Epic (Wired)" }, - { "1532", "0020", "Abyssus 1800" }, - { "1532", "0021", "Naga Epic Dock (Wireless, Bluetooth)" }, - { "1532", "0022", "Gaming Mouse [TRON]" }, - { "1532", "0023", "Gaming Keyboard [TRON]" }, - { "1532", "0024", "Mamba 2012 (Wired)" }, - { "1532", "0025", "Mamba 2012 (Wireless)" }, - { "1532", "0029", "DeathAdder Black Edition" }, - { "1532", "002a", "Gaming Mouse [Star Wars: The Old Republic]" }, - { "1532", "002b", "Gaming Keyboard [Star Wars: The Old Republic]" }, - { "1532", "002c", "Gaming Headset [Star Wars: The Old Republic]" }, - { "1532", "002e", "RZ01-0058 Gaming Mouse [Naga 2012]" }, - { "1532", "002f", "Imperator 2012" }, - { "1532", "0031", "Gaming Mouse Dock [Star Wars: The Old Republic]" }, - { "1532", "0032", "Ouroboros 2012 (Wired)" }, - { "1532", "0033", "Ouroboros 2012 (Wireless)" }, - { "1532", "0034", "Taipan" }, - { "1532", "0035", "Krait 2013 Essential" }, - { "1532", "0036", "RZ01-0075, Gaming Mouse [Naga Hex (Red)]" }, - { "1532", "0037", "DeathAdder 2013" }, - { "1532", "0038", "DeathAdder 1800" }, - { "1532", "0039", "Orochi 2013" }, - { "1532", "003e", "Naga Epic Chroma (Wired)" }, - { "1532", "003f", "Naga Epic Chroma (Wireless)" }, - { "1532", "0040", "Naga 2014" }, - { "1532", "0041", "Naga Hex" }, - { "1532", "0042", "Abyssus 2014" }, - { "1532", "0043", "DeathAdder Chroma" }, - { "1532", "0044", "Mamba Chroma (Wired)" }, - { "1532", "0045", "Mamba Chroma (Wireless)" }, - { "1532", "0046", "Mamba 2015 Tournament Edition [RZ01-01370100-R3]" }, - { "1532", "0048", "Orochi 2015 (Wired)" }, - { "1532", "004a", "RZ03-0133 Gaming Lapboard, Keyboard Mouse Combo, Dongle [Turret Dongle]" }, - { "1532", "004c", "Diamondback Chroma" }, - { "1532", "004d", "DeathAdder 2000 (Cynosa Pro Bundle)" }, - { "1532", "004f", "RZ01-0145, Gaming Mouse [DeathAdder 2000 (Alternate)]" }, - { "1532", "0050", "Naga Hex V2" }, - { "1532", "0053", "Naga Chroma" }, - { "1532", "0054", "DeathAdder 3500" }, - { "1532", "0056", "Orochi 2015 (Wireless)" }, - { "1532", "0059", "RZ01-0212 Gaming Mouse [Lancehead (Wired)]" }, - { "1532", "005a", "RZ01-0212 Gaming Mouse [Lancehead (Wireless)]" }, - { "1532", "005b", "Abyssus V2" }, - { "1532", "005c", "DeathAdder Elite" }, - { "1532", "005e", "Abyssus 2000" }, - { "1532", "005f", "DeathAdder 2000" }, - { "1532", "0060", "RZ01-0213 Gaming Mouse [Lancehead Tournament Edition]" }, - { "1532", "0062", "Atheris" }, - { "1532", "0064", "Basilisk" }, - { "1532", "0065", "RZ01-0265, Gaming Mouse [Basilisk Essential]" }, - { "1532", "0067", "Naga Trinity" }, - { "1532", "0068", "Gaming Mouse Mat [Firefly Hyperflux]" }, - { "1532", "0069", "Gaming Mouse [Mamba Hyperflux]" }, - { "1532", "006a", "Abyssus Elite (D.Va Edition)" }, - { "1532", "006b", "Abyssus Essential" }, - { "1532", "006c", "Mamba Elite (Wired)" }, - { "1532", "006e", "DeathAdder Essential" }, - { "1532", "006f", "RZ01-0257 Gaming Mouse [Lancehead Wireless (2019, Wireless, Receiver)]" }, - { "1532", "0070", "RZ01-0257 Gaming Mouse [Lancehead Wireless (2019, Wired)]" }, - { "1532", "0071", "RZ01-0254 Gaming Mouse [DeathAdder Essential White Edition]" }, - { "1532", "0072", "Mamba 2018 (Wireless)" }, - { "1532", "0073", "Mamba 2018 (Wired)" }, - { "1532", "0078", "Viper (wired)" }, - { "1532", "007a", "RC30-0305 Gaming Mouse [Viper Ultimate (Wired)]" }, - { "1532", "007b", "RC30-0305 Gaming Mouse Dongle [Viper Ultimate (Wireless)]" }, - { "1532", "007e", "RC30-030502 Mouse Dock" }, - { "1532", "0083", "RC30-0315, Gaming Mouse [Basilisk X HyperSpeed]" }, - { "1532", "0084", "RZ01-0321 Gaming Mouse [DeathAdder V2]" }, - { "1532", "0085", "RZ01-0316 Gaming Mouse [Basilisk V2]" }, - { "1532", "0086", "Gaming Mouse [Basilisk Ultimate, Wired]" }, - { "1532", "0088", "Gaming Mouse [Basilisk Ultimate, Wireless, Receiver]" }, - { "1532", "008a", "RZ01-0325, Gaming Mouse [Viper Mini]" }, - { "1532", "0101", "Copperhead Mouse" }, - { "1532", "0102", "Tarantula Keyboard" }, - { "1532", "0103", "Gaming Keyboard [Reclusa]" }, - { "1532", "0105", "Gaming Keyboard [ProType]" }, - { "1532", "0106", "Gaming Keyboard [ProType]" }, - { "1532", "0109", "Lycosa Keyboard" }, - { "1532", "010b", "Gaming Keyboard [Arctosa]" }, - { "1532", "010d", "BlackWidow Ultimate 2012" }, - { "1532", "010e", "BlackWidow Classic (Alternate)" }, - { "1532", "010f", "Anansi" }, - { "1532", "0110", "Cyclosa" }, - { "1532", "0111", "Nostromo" }, - { "1532", "0113", "RZ07-0074 Gaming Keypad [Orbweaver]" }, - { "1532", "0114", "DeathStalker Ultimate" }, - { "1532", "0116", "Blade Pro (2015)" }, - { "1532", "0118", "RZ03-0080, Gaming Keyboard [Deathstalker Essential]" }, - { "1532", "0119", "Gaming Keyboard [Lycosa]" }, - { "1532", "011a", "BlackWidow Ultimate 2013" }, - { "1532", "011b", "BlackWidow Classic" }, - { "1532", "011c", "BlackWidow Tournament Edition Stealth" }, - { "1532", "011d", "Blade 2013" }, - { "1532", "011e", "Gaming Keyboard Dock [Edge Keyboard Dock]" }, - { "1532", "011f", "Deathstalker Essential 2014" }, - { "1532", "0200", "Gaming Keyboard [Reclusa]" }, - { "1532", "0201", "Tartarus" }, - { "1532", "0202", "DeathStalker Expert" }, - { "1532", "0203", "BlackWidow Chroma" }, - { "1532", "0204", "DeathStalker Chroma" }, - { "1532", "0205", "Blade Stealth" }, - { "1532", "0207", "Orbweaver Chroma keypad" }, - { "1532", "0208", "Tartarus Chroma" }, - { "1532", "0209", "BlackWidow Tournament Edition Chroma" }, - { "1532", "020d", "Cynosa Pro keyboard (Cynosa Pro Bundle)" }, - { "1532", "020f", "Blade QHD" }, - { "1532", "0210", "Blade Pro (Late 2016)" }, - { "1532", "0211", "BlackWidow Chroma (Overwatch)" }, - { "1532", "0214", "BlackWidow Ultimate 2016" }, - { "1532", "0215", "Core" }, - { "1532", "0216", "BlackWidow X Chroma" }, - { "1532", "0217", "BlackWidow X Ultimate" }, - { "1532", "021a", "BlackWidow X Tournament Edition Chroma" }, - { "1532", "021b", "Gaming Keyboard [BlackWidow X Tournament Edition]" }, - { "1532", "021e", "Ornata Chroma" }, - { "1532", "021f", "Ornata" }, - { "1532", "0220", "Blade Stealth (2016)" }, - { "1532", "0221", "RZ03-0203 Gaming Keyboard [BlackWidow Chroma V2]" }, - { "1532", "0224", "Blade (Late 2016)" }, - { "1532", "0225", "Blade Pro (2017)" }, - { "1532", "0226", "Huntsman Elite" }, - { "1532", "0227", "Huntsman" }, - { "1532", "0228", "BlackWidow Elite" }, - { "1532", "022a", "Cynosa Chroma" }, - { "1532", "022b", "Tartarus V2" }, - { "1532", "022c", "Cynosa Chroma Pro" }, - { "1532", "022d", "Blade Stealth (Mid 2017)" }, - { "1532", "022f", "Blade Pro FullHD (2017)" }, - { "1532", "0232", "Blade Stealth (Late 2017)" }, - { "1532", "0233", "Blade 15 (2018)" }, - { "1532", "0234", "Blade Pro 17 (2019)" }, - { "1532", "0235", "BlackWidow Lite (2018)" }, - { "1532", "0237", "BlackWidow Essential" }, - { "1532", "0239", "Blade Stealth (2019)" }, - { "1532", "023a", "Blade 15 (2019) Advanced" }, - { "1532", "023b", "Blade 15 (2018) Base Model" }, - { "1532", "023f", "RZ03-0274 Gaming Keyboard [Cynosa Lite]" }, - { "1532", "0240", "Blade 15 (2018) Mercury" }, - { "1532", "0241", "BlackWidow (2019)" }, - { "1532", "0243", "Huntsman Tournament Edition" }, - { "1532", "0244", "RZ07-0311 Gaming Keypad [Tartarus Pro]" }, - { "1532", "0245", "Blade 15 (Mid 2019) Mercury" }, - { "1532", "0246", "Blade 15 (Mid 2019) Base Model" }, - { "1532", "024a", "Blade Stealth (Late 2019)" }, - { "1532", "024b", "Gaming Laptop [Blade 15 Advanced (Late 2019)]" }, - { "1532", "024c", "Gaming Laptop [Blade Pro (Late 2019)]" }, - { "1532", "024d", "Blade 15 Studio Edition (2019)" }, - { "1532", "0253", "RZ09-0330, Gaming Laptop [Blade 15 Advanced (Early 2020)]" }, - { "1532", "0255", "RZ09-0328, Gaming Laptop [Blade 15 Base Model (2020)]" }, - { "1532", "0256", "RZ09--0329, Gaming Laptop [Blade Pro 17 Full HD (2020)]" }, - { "1532", "025d", "RZ03-0338, Gaming Keyboard [Ornata V2]" }, - { "1532", "0300", "RZ06-0063 Motion Sensing Controllers [Hydra]" }, - { "1532", "0401", "Gaming Arcade Stick [Panthera]" }, - { "1532", "0501", "Kraken 7.1" }, - { "1532", "0502", "Gaming Headset [Kraken USB]" }, - { "1532", "0504", "Kraken 7.1 Chroma" }, - { "1532", "0506", "Kraken 7.1 (Alternate Version)" }, - { "1532", "0510", "Kraken 7.1 V2" }, - { "1532", "0511", "RZ19-0229 Gaming Microphone" }, - { "1532", "0514", "Electra V2 USB" }, - { "1532", "0517", "Nommo Chroma" }, - { "1532", "0518", "Nommo Pro" }, - { "1532", "051a", "Nari Ultimate" }, - { "1532", "051c", "Nari (Wireless)" }, - { "1532", "051d", "Nari (Wired)" }, - { "1532", "051e", "RC30-026902, Gaming Headset [Nari Essential, Wireless, Receiver]" }, - { "1532", "051f", "RC30-026901, Gaming Headset [Nari Essential, Wired]" }, - { "1532", "0520", "Kraken Tournament Edition" }, - { "1532", "0521", "Kraken Kitty Edition" }, - { "1532", "0527", "RZ04-0318 Gaming Headset [Kraken Ultimate]" }, - { "1532", "0904", "R201-0282 Gaming Keyboard, Mouse Combination [Turret For Xbox One]" }, - { "1532", "0a00", "Atrox Arcade Stick for Xbox One" }, - { "1532", "0a02", "ManO'War" }, - { "1532", "0a03", "Wildcat" }, - { "1532", "0a15", "RZ06-0199, Gaming Controller [Wolverine Tournament Edition]" }, - { "1532", "0c00", "RZ02-0135 Hard Gaming Mouse Mat [Firefly]" }, - { "1532", "0c01", "Goliathus" }, - { "1532", "0c02", "Goliathus Extended" }, - { "1532", "0c04", "Firefly V2" }, - { "1532", "0e03", "Gaming Webcam [Kiyo]" }, - { "1532", "0f03", "Tiamat 7.1 V2" }, - { "1532", "0f07", "Chroma Mug Holder" }, - { "1532", "0f08", "Base Station Chroma" }, - { "1532", "0f09", "Chroma HDK" }, - { "1532", "0f0d", "Laptop Stand Chroma" }, - { "1532", "0f13", "Lian Li O11 Dynamic Razer Edition" }, - { "1532", "0f1a", "Core X Chroma" }, - { "1532", "1000", "Gaming Controller [Raiju]" }, - { "1532", "1004", "Gaming Controller [Raiju Ultimate Wired]" }, - { "1532", "1007", "Gaming Controller [Raiju 2 Tournament Edition (USB)]" }, - { "1532", "1008", "Gaming Flightstick [Panthera Evo]" }, - { "1532", "1009", "Gaming Controller [Raiju 2 Ultimate Edition (BT)]" }, - { "1532", "100a", "Gaming Controller [Raiju 2 Tournament Edition (BT)]" }, - { "1532", "110d", "Bootloader (Alternate)" }, - { "1532", "800e", "Bootloader" }, - { "153b", "1181", "Cinergy S2 PCIe Dual Port 1" }, - { "153b", "1182", "Cinergy S2 PCIe Dual Port 2" }, - { "1546", "01a4", "Antaris 4" }, - { "1546", "01a5", "[u-blox 5]" }, - { "1546", "01a6", "[u-blox 6]" }, - { "1546", "01a7", "[u-blox 7]" }, - { "1546", "01a8", "[u-blox 8]" }, - { "1546", "1102", "LISA-U2" }, - { "1547", "1000", "SG-Lock[U2]" }, - { "154a", "8180", "CARD STAR/medic2" }, - { "154b", "000f", "Flash Drive" }, - { "154b", "0010", "USB 2.0 Flash Drive" }, - { "154b", "0048", "Flash Drive" }, - { "154b", "004d", "8 GB Flash Drive" }, - { "154b", "0053", "Flash Drive" }, - { "154b", "0057", "32GB Micro Slide Attache Flash Drive" }, - { "154b", "005b", "Flash Drive" }, - { "154b", "0062", "Flash Drive" }, - { "154b", "007a", "Classic Attache Flash Drive" }, - { "154b", "5408", "2.5in drive enclosure" }, - { "154b", "6000", "Flash Drive" }, - { "154b", "6545", "FD Device" }, - { "154b", "fa05", "Flash Drive" }, - { "154e", "3000", "Marantz RC9001 Remote Control" }, - { "1554", "5010", "PV-D231U(RN)-F [PixelView PlayTV SBTVD Full-Seg]" }, - { "1557", "0002", "model 01 WiFi interface" }, - { "1557", "0003", "model 01 Bluetooth interface" }, - { "1557", "0a80", "Gobi Wireless Modem (QDL mode)" }, - { "1557", "7720", "model 01+ Ethernet" }, - { "1557", "8150", "model 01 Ethernet interface" }, - { "157e", "3006", "TEW-444UB EU [TRENDnet]" }, - { "157e", "3007", "TEW-444UB EU (no firmware)" }, - { "157e", "300a", "TEW-429UB 802.11bg" }, - { "157e", "300b", "TEW-429UB 802.11bg" }, - { "157e", "300c", "TEW-429UF A1 802.11bg Wireless Adapter [ZyDAS ZD1211B]" }, - { "157e", "300d", "TEW-429UB C1 802.11bg" }, - { "157e", "300e", "SMC SMCWUSB-N 802.11bgn 2x2:2 Wireless Adapter [Ralink RT2870]" }, - { "157e", "3012", "TEW-604UB 802.11bg Wireless Adapter [Atheros AR5523]" }, - { "157e", "3013", "TEW-645UB 802.11bgn 1x2:2 Wireless Adapter [Ralink RT2770]" }, - { "157e", "3204", "Allnet ALL0298 v2 802.11bg" }, - { "157e", "3205", "Allnet ALL0283 [AR5523]" }, - { "157e", "3206", "Allnet ALL0283 [AR5523](no firmware)" }, - { "157e", "3207", "TEW-509UB A1 802.11abg Wireless Adapter [ZyDAS ZD1211]" }, - { "157e", "3208", "TEW-509UB 1.1R 802.11abg Wireless Adapter" }, - { "1582", "6003", "WL-430U 802.11bg" }, - { "158e", "0820", "SmartPocket Class Device" }, - { "15a2", "0038", "9S08JS Bootloader" }, - { "15a2", "003b", "USB2CAN Application for ColdFire DEMOJM board" }, - { "15a2", "0041", "i.MX51 SystemOnChip in RecoveryMode" }, - { "15a2", "0042", "OSBDM - Debug Port" }, - { "15a2", "004e", "i.MX53 SystemOnChip in RecoveryMode" }, - { "15a2", "004f", "i.MX28 SystemOnChip in RecoveryMode" }, - { "15a2", "0052", "i.MX50 SystemOnChip in RecoveryMode" }, - { "15a2", "0054", "i.MX 6Dual/6Quad SystemOnChip in RecoveryMode" }, - { "15a2", "0061", "i.MX 6Solo/6DualLite SystemOnChip in RecoveryMode" }, - { "15a2", "006a", "Vybrid series SystemOnChip in RecoveryMode" }, - { "15a2", "0076", "i.MX 7Solo/7Dual SystemOnChip in RecoveryMode" }, - { "15a2", "0080", "i.MX 6ULL SystemOnChip in RecoveryMode" }, - { "15a4", "1000", "AF9015/AF9035 DVB-T stick" }, - { "15a4", "1001", "AF9015/AF9035 DVB-T stick" }, - { "15a4", "1336", "SDHC/MicroSD/MMC/MS/M2/CF/XD Flash Card Reader" }, - { "15a4", "9015", "AF9015 DVB-T USB2.0 stick" }, - { "15a4", "9016", "AF9015 DVB-T USB2.0 stick" }, - { "15a9", "0002", "SparkLAN WL-682 802.11bg Wireless Adapter [Intersil ISL3887]" }, - { "15a9", "0004", "WUBR-177G [Ralink RT2571W]" }, - { "15a9", "0006", "Wireless 11n USB Adapter" }, - { "15a9", "0010", "802.11n USB Wireless Card" }, - { "15a9", "0012", "WUBR-208N 802.11abgn Wireless Adapter [Ralink RT2870]" }, - { "15a9", "002d", "WLTUBA-107 [Yota 4G LTE]" }, - { "15ba", "0003", "OpenOCD JTAG" }, - { "15ba", "0004", "OpenOCD JTAG TINY" }, - { "15ba", "002a", "ARM-USB-TINY-H JTAG interface" }, - { "15ba", "002b", "ARM-USB-OCD-H JTAG+RS232" }, - { "15ba", "003c", "TERES Keyboard+Touchpad" }, - { "15c0", "0001", "2M pixel Microscope Camera" }, - { "15c0", "0002", "3M pixel Microscope Camera" }, - { "15c0", "0003", "1.3M pixel Microscope Camera (mono)" }, - { "15c0", "0004", "1.3M pixel Microscope Camera (colour)" }, - { "15c0", "0005", "3M pixel Microscope Camera (Mk 2)" }, - { "15c0", "0006", "2M pixel Microscope Camera (with capture button)" }, - { "15c0", "0007", "3M pixel Microscope Camera (with capture button)" }, - { "15c0", "0008", "1.3M pixel Microscope Camera (colour, with capture button)" }, - { "15c0", "0009", "1.3M pixel Microscope Camera (colour, with capture button)" }, - { "15c0", "000a", "2M pixel Microscope Camera (Mk 2)" }, - { "15c0", "0010", "1.3M pixel \"Tinycam\"" }, - { "15c0", "0101", "3M pixel Microscope Camera" }, - { "15c2", "0036", "LC16M VFD Display/IR Receiver" }, - { "15c2", "0038", "GD01 MX LCD Display/IR Receiver" }, - { "15c2", "0042", "Antec Veris Multimedia Station E-Z IR Receiver" }, - { "15c2", "ffda", "iMON PAD Remote Controller" }, - { "15c2", "ffdc", "iMON PAD Remote Controller" }, - { "15c5", "0008", "Advance Multimedia Internet Technology Inc. (AMIT) WL532U 802.11g Adapter" }, - { "15c6", "1000", "DigistimSP (cold)" }, - { "15c6", "1001", "DigistimSP (warm)" }, - { "15c6", "1002", "DigimapSP USB (cold)" }, - { "15c6", "1003", "DigimapSP USB (warm)" }, - { "15c6", "1004", "DigistimSP (cold)" }, - { "15c6", "1005", "DigistimSP (warm)" }, - { "15c6", "1100", "Odyssee (cold)" }, - { "15c6", "1101", "Odyssee (warm)" }, - { "15c6", "1200", "Digispy" }, - { "15c8", "3201", "EVER EV-W100/EV-W250" }, - { "15ca", "00c3", "Mini Optical Mouse" }, - { "15ca", "0101", "MIDI Interface cable" }, - { "15ca", "1806", "MIDI Interface cable" }, - { "15d9", "0a33", "Optical Mouse" }, - { "15d9", "0a37", "Mouse" }, - { "15d9", "0a41", "MI-2540D [Optical mouse]" }, - { "15d9", "0a4c", "USB+PS/2 Optical Mouse" }, - { "15d9", "0a4d", "Optical Mouse" }, - { "15d9", "0a4e", "AM-5400 [Optical Mouse]" }, - { "15d9", "0a4f", "Optical Mouse" }, - { "15e1", "2007", "RSA SecurID (R) Authenticator" }, - { "15e4", "0024", "Mixtrack" }, - { "15e4", "003c", "DJ2GO2 Touch" }, - { "15e4", "0140", "ION VCR 2 PC / Video 2 PC" }, - { "15e4", "3f00", "Power A Mini Pro Elite" }, - { "15e4", "3f0a", "Airflo Wired Controller for Xbox 360" }, - { "15e4", "3f10", "Batarang controller for Xbox 360" }, - { "15e8", "9100", "NUB100 Ethernet [pegasus]" }, - { "15e8", "9110", "10/100 USB Ethernet" }, - { "15e9", "04ce", "MemoryFrame MF-570" }, - { "15e9", "1968", "MemoryFrame MF-570" }, - { "15e9", "1969", "Digital Frame" }, - { "15f4", "0001", "HanfTek UMT-010 USB2.0 DVB-T (cold)" }, - { "15f4", "0025", "HanfTek UMT-010 USB2.0 DVB-T (warm)" }, - { "15f4", "0131", "Astrometa DVB-T/T2/C FM & DAB receiver [RTL2832P]" }, - { "15f4", "0135", "Astrometa T2hybrid" }, - { "1604", "10c0", "Dell Integrated Hub" }, - { "1604", "8000", "US-428 Audio/Midi Controller (without fw)" }, - { "1604", "8001", "US-428 Audio/Midi Controller" }, - { "1604", "8004", "US-224 Audio/Midi Controller (without fw)" }, - { "1604", "8005", "US-224 Audio/Midi Controller" }, - { "1604", "8006", "US-122 Audio/Midi Interface (without fw)" }, - { "1604", "8007", "US-122 Audio/Midi Interface" }, - { "1605", "0001", "DIO-32 (No Firmware Yet)" }, - { "1605", "0002", "USB-DIO-48 (No Firmware Yet)" }, - { "1605", "0003", "USB-DIO-96 (No Firmware Yet)" }, - { "1605", "0004", "USB-DIO-32I (No Firmware Yet)" }, - { "1605", "0005", "USB-DIO24 (based on -CTR6) (No Firmware Yet)" }, - { "1605", "0006", "USB-DIO24-CTR6 (No Firmware Yet)" }, - { "1606", "0002", "Astra 1236U Scanner" }, - { "1606", "0010", "Astra 1220U" }, - { "1606", "0030", "Astra 1600U/2000U" }, - { "1606", "0050", "Scanner" }, - { "1606", "0060", "Astra 3400/3450" }, - { "1606", "0070", "Astra 4400/4450" }, - { "1606", "0130", "Astra 2100U" }, - { "1606", "0160", "Astra 5400U" }, - { "1606", "0170", "Uniscan D50" }, - { "1606", "0230", "Astra 2200/2200SU" }, - { "1606", "0350", "Astra 4800/4850 Scanner" }, - { "1606", "1030", "Astra 4000U" }, - { "1606", "1220", "Genesys Logic Scanner Controller NT5.0" }, - { "1606", "2010", "AstraCam Digital Camera" }, - { "1606", "2020", "AstraCam 1000" }, - { "1606", "2030", "AstraCam 1800 Digital Camera" }, - { "1608", "0001", "EdgePort/4 Serial Port" }, - { "1608", "0002", "Edgeport/8" }, - { "1608", "0003", "Rapidport/4" }, - { "1608", "0004", "Edgeport/4" }, - { "1608", "0005", "Edgeport/2" }, - { "1608", "0006", "Edgeport/4i" }, - { "1608", "0007", "Edgeport/2i" }, - { "1608", "0008", "Edgeport/8" }, - { "1608", "000c", "Edgeport/421" }, - { "1608", "000d", "Edgeport/21" }, - { "1608", "000e", "Edgeport/4" }, - { "1608", "000f", "Edgeport/8" }, - { "1608", "0010", "Edgeport/2" }, - { "1608", "0011", "Edgeport/4" }, - { "1608", "0012", "Edgeport/416" }, - { "1608", "0014", "Edgeport/8i" }, - { "1608", "0018", "Edgeport/412" }, - { "1608", "0019", "Edgeport/412" }, - { "1608", "001a", "Edgeport/2+2i" }, - { "1608", "0101", "Edgeport/4" }, - { "1608", "0105", "Edgeport/2" }, - { "1608", "0106", "Edgeport/4i" }, - { "1608", "0107", "Edgeport/2i" }, - { "1608", "010c", "Edgeport/421" }, - { "1608", "010d", "Edgeport/21" }, - { "1608", "0110", "Edgeport/2" }, - { "1608", "0111", "Edgeport/4" }, - { "1608", "0112", "Edgeport/416" }, - { "1608", "0114", "Edgeport/8i" }, - { "1608", "0201", "Edgeport/4" }, - { "1608", "0203", "Rapidport/4" }, - { "1608", "0204", "Edgeport/4" }, - { "1608", "0205", "Edgeport/2" }, - { "1608", "0206", "Edgeport/4i" }, - { "1608", "0207", "Edgeport/2i" }, - { "1608", "020c", "Edgeport/421" }, - { "1608", "020d", "Edgeport/21" }, - { "1608", "020e", "Edgeport/4" }, - { "1608", "020f", "Edgeport/8" }, - { "1608", "0210", "Edgeport/2" }, - { "1608", "0211", "Edgeport/4" }, - { "1608", "0212", "Edgeport/416" }, - { "1608", "0214", "Edgeport/8i" }, - { "1608", "0215", "Edgeport/1" }, - { "1608", "0216", "EPOS/44" }, - { "1608", "0217", "Edgeport/42" }, - { "1608", "021a", "Edgeport/2+2i" }, - { "1608", "021b", "Edgeport/2c" }, - { "1608", "021c", "Edgeport/221c" }, - { "1608", "021d", "Edgeport/22c" }, - { "1608", "021e", "Edgeport/21c" }, - { "1608", "021f", "Edgeport/62" }, - { "1608", "0240", "Edgeport/1" }, - { "1608", "0241", "Edgeport/1i" }, - { "1608", "0242", "Edgeport/4s" }, - { "1608", "0243", "Edgeport/8s" }, - { "1608", "0244", "Edgeport/8" }, - { "1608", "0245", "Edgeport/22c" }, - { "1608", "0301", "Watchport/P" }, - { "1608", "0302", "Watchport/M" }, - { "1608", "0303", "Watchport/W" }, - { "1608", "0304", "Watchport/T" }, - { "1608", "0305", "Watchport/H" }, - { "1608", "0306", "Watchport/E" }, - { "1608", "0307", "Watchport/L" }, - { "1608", "0308", "Watchport/R" }, - { "1608", "0309", "Watchport/A" }, - { "1608", "030a", "Watchport/D" }, - { "1608", "030b", "Watchport/D" }, - { "1608", "030c", "Power Management Port" }, - { "1608", "030e", "Power Management Port" }, - { "1608", "030f", "Watchport/G" }, - { "1608", "0310", "Watchport/Tc" }, - { "1608", "0311", "Watchport/Hc" }, - { "1608", "1403", "MultiTech Systems MT4X56 Modem" }, - { "1608", "1a17", "Agilent Technologies (E6473)" }, - { "160a", "3184", "VIA VNT-6656 [WiFi 802.11b/g USB Dongle]" }, - { "160e", "0001", "E2USBKey" }, - { "1614", "0404", "WMA9109 UMTS Phone" }, - { "1614", "0600", "Vodafone VDA GPS / Toschiba Protege G710" }, - { "1614", "0804", "WP-S1 Phone" }, - { "1617", "2002", "NVX-P1 Personal Navigation System" }, - { "161c", "0002", "DTC-02U [Digi Touch Controller]" }, - { "1630", "0005", "802.11g Wireless Adapter [Intersil ISL3886]" }, - { "1630", "0011", "PC Port 10 Mps Adapter" }, - { "1630", "ff81", "802.11b Wireless Adapter [Lucent/Agere Hermes I]" }, - { "1631", "6200", "GWUSB2E" }, - { "1631", "c019", "RT2573" }, - { "1633", "4510", "ASC1553" }, - { "1633", "4520", "ASC429" }, - { "1633", "4560", "ASC-FDX" }, - { "1645", "0001", "1S Serial Port" }, - { "1645", "0002", "2S Serial Port" }, - { "1645", "0003", "1S25 Serial Port" }, - { "1645", "0004", "4S Serial Port" }, - { "1645", "0005", "E45 Ethernet [klsi]" }, - { "1645", "0006", "Parallel Port" }, - { "1645", "0007", "U1-SC25 SCSI" }, - { "1645", "0008", "Ethernet" }, - { "1645", "0016", "Bi-directional to Parallel Printer Converter" }, - { "1645", "0080", "1 port to Serial Converter" }, - { "1645", "0081", "1 port to Serial Converter" }, - { "1645", "0093", "1S9 Serial Port" }, - { "1645", "8000", "EZ-USB" }, - { "1645", "8001", "1 port to Serial" }, - { "1645", "8002", "2x Serial Port" }, - { "1645", "8003", "1 port to Serial" }, - { "1645", "8004", "2U4S serial/usb hub" }, - { "1645", "8005", "Ethernet" }, - { "1645", "8080", "1 port to Serial" }, - { "1645", "8081", "1 port to Serial" }, - { "1645", "8093", "PortGear Serial Port" }, - { "1649", "0102", "uDART In-Circuit Debugger" }, - { "1649", "0200", "SpYder USBSPYDER08" }, - { "164c", "0101", "mvBlueFOX camera (no firmware)" }, - { "164c", "0103", "mvBlueFOX camera" }, - { "164c", "0201", "mvBlueLYNX-X intelligent camera (bootloader)" }, - { "164c", "0203", "mvBlueLYNX-X intelligent camera" }, - { "1657", "3150", "SIS3150 USB2.0 to VME interface" }, - { "165b", "8101", "Tranzport Control Surface" }, - { "165b", "fad1", "Alphatrack Control Surface" }, - { "165c", "0002", "Serial Adapter" }, - { "165c", "0006", "FT232 [ICS adapter HS]" }, - { "165c", "0008", "FT232 [Dual adapter HS]" }, - { "1667", "0005", "PCR330A RFID Reader (125 kHz, keyboard emulation)" }, - { "1668", "0009", "Gateway" }, - { "1668", "0333", "Modem" }, - { "1668", "0358", "InternetPhoneWizard" }, - { "1668", "0405", "Gateway" }, - { "1668", "0408", "Prism2.5 802.11b Adapter" }, - { "1668", "0413", "Gateway" }, - { "1668", "0421", "Prism2.5 802.11b Adapter" }, - { "1668", "0441", "IBM Integrated Bluetooth II" }, - { "1668", "0500", "BTM200B BlueTooth Adapter" }, - { "1668", "1050", "802UIG-1 802.11g Wireless Mini Adapter [Intersil ISL3887]" }, - { "1668", "1200", "802AIN Wireless N Network Adapter [Atheros AR9170+AR9101]" }, - { "1668", "1441", "IBM Integrated Bluetooth II" }, - { "1668", "2441", "BMDC-2 IBM Bluetooth III w.56k" }, - { "1668", "3441", "IBM Integrated Bluetooth III" }, - { "1668", "6010", "Gateway" }, - { "1668", "6097", "802.11b Wireless Adapter" }, - { "1668", "6106", "802UI3(B) 802.11b Wireless Adapter [Intersil PRISM 3]" }, - { "1668", "7605", "UAT1 Wireless Ethernet Adapter" }, - { "1669", "1001", "uLan2USB Converter - PS1 protocol" }, - { "166a", "0101", "C-Bus Multi-room Audio Matrix Switcher" }, - { "166a", "0201", "C-Bus Pascal Automation Controller" }, - { "166a", "0301", "C-Bus Wireless PC Interface" }, - { "166a", "0303", "C-Bus interface" }, - { "166a", "0304", "C-Bus Black and White Touchscreen" }, - { "166a", "0305", "C-Bus Spectrum Colour Touchscreen" }, - { "166a", "0401", "C-Bus Architectural Dimmer" }, - { "1677", "0103", "Token" }, - { "1679", "2001", "Beagle Protocol Analyzer" }, - { "1679", "2002", "Cheetah SPI Host Adapter" }, - { "167b", "2009", "Flip Ultra U1120" }, - { "1680", "a332", "DVB-T Dongle [RTL2832U]" }, - { "1681", "0001", "Tuner's Dashboard" }, - { "1681", "0002", "DocuBrain(R) Tubachron" }, - { "1681", "0003", "DocuBrain(R) I2C" }, - { "1681", "0004", "DocuBrain(R) WWVB Receiver" }, - { "1681", "0005", "DocuBrain(R) WWVB Transmitter" }, - { "1685", "0200", "Infrared adapter" }, - { "1686", "0045", "Handy Recorder stereo mix" }, - { "1686", "01c0", "Zoom Handy Recorder card reader" }, - { "1686", "01c5", "Zoom Handy Recorder multi track" }, - { "1686", "03d5", "LiveTrak L-12" }, - { "1687", "5289", "FlashDisk" }, - { "1687", "6211", "FlashDisk" }, - { "1687", "6213", "FlashDisk" }, - { "1689", "fd00", "Onza Tournament Edition controller" }, - { "1689", "fd01", "Onza Classic Edition" }, - { "1689", "fe00", "Sabertooth Elite" }, - { "168c", "0001", "AR5523" }, - { "168c", "0002", "AR5523 (no firmware)" }, - { "1690", "0001", "Arcaze Gamepad" }, - { "1690", "0101", "Creative Modem Blaster DE5670" }, - { "1690", "0102", "V1456 VQE-R2 Modem [conexant]" }, - { "1690", "0103", "1456 VQE-R3 Modem [conexant]" }, - { "1690", "0104", "HCF V90 Data Fax RTAD Modem" }, - { "1690", "0107", "HCF V.90 Data,Fax,RTAD Modem" }, - { "1690", "0109", "MagicXpress V.90 Pocket Modem [conexant]" }, - { "1690", "0203", "Voyager ADSL Modem Loader" }, - { "1690", "0204", "Voyager ADSL Modem" }, - { "1690", "0205", "DSL Modem" }, - { "1690", "0206", "GlobeSpan ADSL WAN Modem" }, - { "1690", "0208", "DSL Modem" }, - { "1690", "0209", "Voyager 100 ADSL Modem" }, - { "1690", "0211", "Globespan Virata ADSL LAN Modem" }, - { "1690", "0212", "DSL Modem" }, - { "1690", "0213", "HM121d DSL Modem" }, - { "1690", "0214", "HM121d DSL Modem" }, - { "1690", "0215", "Voyager 105 ADSL Modem" }, - { "1690", "0701", "WLAN" }, - { "1690", "0710", "SMCWUSBT-G" }, - { "1690", "0711", "SMCWUSBT-G (no firmware)" }, - { "1690", "0712", "AR5523" }, - { "1690", "0713", "AR5523 (no firmware)" }, - { "1690", "0715", "Name: Voyager 1055 Laptop 802.11g Adapter [Broadcom 4320]" }, - { "1690", "0722", "RT2573" }, - { "1690", "0726", "Wi-Fi Wireless LAN Adapter" }, - { "1690", "0740", "802.11n Wireless LAN Card" }, - { "1690", "0901", "Voyager 205 ADSL Router" }, - { "1690", "2000", "naturaSign Pad Standard" }, - { "1690", "2001", "naturaSign Pad Standard" }, - { "1690", "fe12", "Bootloader" }, - { "16a6", "3000", "VTG-3xxx Video Test Generator family" }, - { "16a6", "4000", "VTG-4xxx Video Test Generator family" }, - { "16a6", "5000", "VTG-5xxx Video Test Generator family" }, - { "16a6", "5001", "VTG-5xxx Special (update) mode of VTG-5xxx family" }, - { "16ab", "7801", "AR5523" }, - { "16ab", "7802", "AR5523 (no firmware)" }, - { "16ab", "7811", "AR5523" }, - { "16ab", "7812", "AR5523 (no firmware)" }, - { "16b4", "0801", "U43" }, - { "16b5", "0002", "Otto driving companion" }, - { "16c0", "03e8", "free for internal lab use 1000" }, - { "16c0", "03e9", "free for internal lab use 1001" }, - { "16c0", "03ea", "free for internal lab use 1002" }, - { "16c0", "03eb", "free for internal lab use 1003" }, - { "16c0", "03ec", "free for internal lab use 1004" }, - { "16c0", "03ed", "free for internal lab use 1005" }, - { "16c0", "03ee", "free for internal lab use 1006" }, - { "16c0", "03ef", "free for internal lab use 1007" }, - { "16c0", "03f0", "free for internal lab use 1008" }, - { "16c0", "03f1", "free for internal lab use 1009" }, - { "16c0", "0477", "Teensy Rebootor" }, - { "16c0", "0478", "Teensy Halfkay Bootloader" }, - { "16c0", "0479", "Teensy Debug" }, - { "16c0", "047a", "Teensy Serial" }, - { "16c0", "047b", "Teensy Serial+Debug" }, - { "16c0", "047c", "Teensy Keyboard" }, - { "16c0", "047d", "Teensy Keyboard+Debug" }, - { "16c0", "047e", "Teensy Mouse" }, - { "16c0", "047f", "Teensy Mouse+Debug" }, - { "16c0", "0480", "Teensy RawHID" }, - { "16c0", "0481", "Teensy RawHID+Debug" }, - { "16c0", "0482", "Teensyduino Keyboard+Mouse+Joystick" }, - { "16c0", "0483", "Teensyduino Serial" }, - { "16c0", "0484", "Teensyduino Disk" }, - { "16c0", "0485", "Teensyduino MIDI" }, - { "16c0", "0486", "Teensyduino RawHID" }, - { "16c0", "0487", "Teensyduino Serial+Keyboard+Mouse+Joystick" }, - { "16c0", "0488", "Teensyduino Flight Sim Controls" }, - { "16c0", "05b5", "BU0836" }, - { "16c0", "05dc", "shared ID for use with libusb" }, - { "16c0", "05dd", "BlackcatUSB2" }, - { "16c0", "05de", "Flashcat" }, - { "16c0", "05df", "HID device except mice, keyboards, and joysticks" }, - { "16c0", "05e1", "Free shared USB VID/PID pair for CDC devices" }, - { "16c0", "05e4", "Free shared USB VID/PID pair for MIDI devices" }, - { "16c0", "06b4", "USB2LPT with 2 interfaces" }, - { "16c0", "06b5", "USB2LPT with 3 interfaces (native, HID, printer)" }, - { "16c0", "074e", "DSP-Weuffen USB-HPI-Programmer" }, - { "16c0", "074f", "DSP-Weuffen USB2-HPI-Programmer" }, - { "16c0", "0762", "Osmocom SIMtrace" }, - { "16c0", "076b", "OpenPCD 13.56MHz RFID Reader" }, - { "16c0", "076c", "OpenPICC 13.56MHz RFID Simulator (native)" }, - { "16c0", "08ac", "OpenBeacon USB stick" }, - { "16c0", "08ca", "Alpermann+Velte Universal Display" }, - { "16c0", "08cb", "Alpermann+Velte Studio Clock" }, - { "16c0", "08cc", "Alpermann+Velte SAM7S MT Boot Loader" }, - { "16c0", "08cd", "Alpermann+Velte SAM7X MT Boot Loader" }, - { "16c0", "09ce", "LINKUSB" }, - { "16c0", "0a32", "jbmedia Light-Manager Pro" }, - { "16c0", "27d8", "libusb-bound devices" }, - { "16c0", "27d9", "HID device except mice, keyboards, and joysticks" }, - { "16c0", "27da", "Mouse" }, - { "16c0", "27db", "Keyboard" }, - { "16c0", "27dc", "Joystick" }, - { "16c0", "27dd", "CDC-ACM class devices (modems)" }, - { "16c0", "27de", "MIDI class devices" }, - { "16c0", "294a", "Eye Movement Recorder [Visagraph]" }, - { "16c0", "294b", "Eye Movement Recorder [ReadAlyzer]" }, - { "16ca", "1502", "Bluetooth Dongle" }, - { "16d0", "0436", "Xylanta Ltd, XSP Device" }, - { "16d0", "0498", "Braintechnology USB-LPS" }, - { "16d0", "0504", "RETRO Innovations ZoomFloppy" }, - { "16d0", "054b", "GrauTec ReelBox OLED Display (external)" }, - { "16d0", "05be", "EasyLogic Board" }, - { "16d0", "05f0", "Superior Freedom Programmable IR Remote" }, - { "16d0", "06cc", "Trinamic TMCM-3110" }, - { "16d0", "06f0", "Axium AX-R4C Controller" }, - { "16d0", "06f1", "Axium AX-R1D Controller" }, - { "16d0", "06f9", "Gabotronics Xminilab" }, - { "16d0", "0726", "Autonomic M400 Amplifier" }, - { "16d0", "0727", "Autonomic M800 Amplifier" }, - { "16d0", "0753", "Digistump DigiSpark" }, - { "16d0", "075c", "AB-1.x UAC1 [Audio Widget]" }, - { "16d0", "075d", "AB-1.x UAC2 [Audio Widget]" }, - { "16d0", "07cc", "Xylanta Ltd, Saint3 Device" }, - { "16d0", "07f8", "Axium AX-R4D Controller" }, - { "16d0", "080a", "S2E1 Interface" }, - { "16d0", "0830", "DMXControl Projects e.V., Nodle U1" }, - { "16d0", "0831", "DMXControl Projects e.V., Desklamp" }, - { "16d0", "0832", "DMXControl Projects e.V., Nodle U2" }, - { "16d0", "0833", "DMXControl Projects e.V., Nodle R4S" }, - { "16d0", "0870", "Kaufmann Automotive GmbH, RKS+CAN Interface" }, - { "16d0", "09f2", "Axium AX-1250 Amplifier" }, - { "16d0", "09f4", "Axium AX-Mini4 Amplifier" }, - { "16d0", "0b03", "AIS Receiver [dAISy]" }, - { "16d0", "0b7d", "Autonomic M801 Amplifier" }, - { "16d0", "0b7e", "Autonomic M401 Amplifier" }, - { "16d0", "0b7f", "Autonomic M120e Amplifier" }, - { "16d0", "0bd4", "codesrc SCSI2SD" }, - { "16d0", "0c9b", "Fermium LABS srl/LabTrek srl Hall Effect Apparatus" }, - { "16d0", "0d3c", "InputStick BT4.0" }, - { "16d0", "0e1e", "AtomMiner" }, - { "16d1", "0401", "SUP-SFR400(A) BioMini Fingerprint Reader" }, - { "16d5", "6202", "CDMA/UMTS/GPRS modem" }, - { "16d5", "6501", "CDMA 2000 1xRTT/EV-DO Modem" }, - { "16d5", "6502", "CDMA/UMTS/GPRS modem" }, - { "16d5", "6603", "ADU-890WH modem" }, - { "16d6", "8000", "GDP-04 desktop phone" }, - { "16d6", "8001", "EYE-02" }, - { "16d6", "8003", "GDP-04 modem" }, - { "16d6", "8004", "Bootloader" }, - { "16d6", "8005", "GDP-04i" }, - { "16d6", "8007", "BTP-06 modem" }, - { "16d8", "5141", "CMOTECH CDMA Technologies modem" }, - { "16d8", "5533", "CCU-550 CDMA EV-DO modem" }, - { "16d8", "5543", "CDMA 2000 1xRTT/1xEVDO modem" }, - { "16d8", "6280", "CMOTECH CDMA Technologies modem" }, - { "16d8", "6803", "CNU-680 CDMA EV-DO modem" }, - { "16d8", "8001", "Gobi 2000 Wireless Modem (QDL mode)" }, - { "16d8", "8002", "Gobi 2000 Wireless Modem" }, - { "16dc", "0001", "CC" }, - { "16dc", "000b", "VM" }, - { "16dc", "0010", "PL512 Power Supply System" }, - { "16dc", "0011", "MARATON Power Supply System" }, - { "16dc", "0012", "MPOD Multi Channel Power Supply System" }, - { "16dc", "0015", "CML Control, Measurement and Data Logging System" }, - { "16f0", "0001", "Speedlink Programming Interface" }, - { "16f0", "0003", "Airlink Wireless Programming Interface" }, - { "16f0", "0004", "Accessory Programming Interface" }, - { "1702", "0002", "Encodeur" }, - { "170b", "0011", "MIDI-USB 1x1" }, - { "1711", "0101", "DFC-365FX camera" }, - { "1711", "3020", "IC80 HD Camera" }, - { "1724", "0115", "PAXcam5" }, - { "1726", "1000", "wireless modem" }, - { "1726", "2000", "wireless modem" }, - { "1726", "3000", "wireless modem" }, - { "172f", "0022", "Tablet" }, - { "172f", "0024", "Tablet" }, - { "172f", "0025", "Tablet" }, - { "172f", "0026", "Tablet" }, - { "172f", "0031", "Slim Tablet 12.1\"" }, - { "172f", "0032", "Slim Tablet 5.8\"" }, - { "172f", "0034", "Slim Tablet 12.1\"" }, - { "172f", "0038", "Genius G-Pen F509" }, - { "172f", "0500", "Media Tablet 14.1\"" }, - { "172f", "0501", "Media Tablet 10.6\"" }, - { "172f", "0502", "Sirius Battery Free Tablet" }, - { "1733", "0101", "RF Wireless Optical Mouse OP-701" }, - { "1737", "0039", "USB1000 Gigabit Notebook Adapter" }, - { "1737", "0070", "WUSB100 v1 RangePlus Wireless Network Adapter [Ralink RT2870]" }, - { "1737", "0071", "WUSB600N v1 Dual-Band Wireless-N Network Adapter [Ralink RT2870]" }, - { "1737", "0073", "WUSB54GC v2 802.11g Adapter [Realtek RTL8187B]" }, - { "1737", "0075", "WUSB54GSC v2 802.11g Adapter [Broadcom 4326U]" }, - { "1737", "0077", "WUSB54GC v3 802.11g Adapter [Ralink RT2070L]" }, - { "1737", "0078", "WUSB100 v2 RangePlus Wireless Network Adapter [Ralink RT3070]" }, - { "1737", "0079", "WUSB600N v2 Dual-Band Wireless-N Network Adapter [Ralink RT3572]" }, - { "173a", "2198", "Accu-Chek Mobile" }, - { "173a", "21ca", "ACCU-CHEK Mobile Model U1" }, - { "173d", "0002", "GP-K7000 keyboard" }, - { "1740", "0100", "EUB1200AC AC1200 DB Wireless Adapter [Realtek RTL8812AU]" }, - { "1740", "0600", "EUB600v1 802.11abgn Wireless Adapter [Ralink RT3572]" }, - { "1740", "0605", "LevelOne WUA-0605 N_Max Wireless USB Adapter" }, - { "1740", "0615", "LevelOne WUA-0615 N_Max Wireless USB Adapter" }, - { "1740", "1000", "NUB-350 802.11g Wireless Adapter [Intersil ISL3887]" }, - { "1740", "2000", "NUB-8301 802.11bg" }, - { "1740", "3701", "EUB-3701 EXT 802.11g Wireless Adapter [Ralink RT2571W]" }, - { "1740", "9603", "RTL8188S WLAN Adapter" }, - { "1740", "9701", "EnGenius 802.11n Wireless USB Adapter" }, - { "1740", "9702", "EnGenius 802.11n Wireless USB Adapter" }, - { "1740", "9703", "EnGenius 802.11n Wireless USB Adapter" }, - { "1740", "9705", "EnGenius 802.11n Wireless USB Adapter" }, - { "1740", "9706", "EUB9706 802.11n Wireless Adapter [Ralink RT3072]" }, - { "1740", "9801", "EUB9801 802.11abgn Wireless Adapter [Ralink RT3572]" }, - { "1748", "0101", "Packet-Master USB12" }, - { "174c", "07d1", "Transcend ESD400 Portable SSD (USB 3.0)" }, - { "174c", "1151", "ASM1151W" }, - { "174c", "1153", "ASM1153 SATA 3Gb/s bridge" }, - { "174c", "2074", "ASM1074 High-Speed hub" }, - { "174c", "3074", "ASM1074 SuperSpeed hub" }, - { "174c", "5106", "ASM1051 SATA 3Gb/s bridge" }, - { "174c", "5136", "ASM1053 SATA 3Gb/s bridge" }, - { "174c", "51d6", "ASM1051W SATA 3Gb/s bridge" }, - { "174c", "55aa", "ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge" }, - { "174f", "1105", "SM-MS/Pro-MMC-XD Card Reader" }, - { "174f", "110b", "HP Webcam" }, - { "174f", "1122", "HP Webcam" }, - { "174f", "1169", "Lenovo EasyCamera" }, - { "174f", "1403", "Integrated Webcam" }, - { "174f", "1404", "USB Camera device, 1.3 MPixel Web Cam" }, - { "174f", "1758", "XYZ printing cameraR2" }, - { "174f", "1759", "XYZ printing cameraL2" }, - { "174f", "5212", "USB 2.0 UVC PC Camera" }, - { "174f", "5a11", "PC Camera" }, - { "174f", "5a31", "Sonix USB 2.0 Camera" }, - { "174f", "5a35", "Sonix 1.3MPixel USB 2.0 Camera" }, - { "174f", "6a31", "Web Cam - Asus A8J, F3S, F5R, VX2S, V1S" }, - { "174f", "6a33", "Web Cam - Asus F3SA, F9J, F9S" }, - { "174f", "6a51", "2.0MPixel Web Cam - Asus Z96J, Z96S, S96S" }, - { "174f", "6a54", "Web Cam" }, - { "174f", "6d51", "2.0Mpixel Web Cam - Eurocom D900C" }, - { "174f", "8a12", "Syntek 0.3MPixel USB 2.0 UVC PC Camera" }, - { "174f", "8a33", "Syntek USB 2.0 UVC PC Camera" }, - { "174f", "a311", "1.3MPixel Web Cam - Asus A3A, A6J, A6K, A6M, A6R, A6T, A6V, A7T, A7sv, A7U" }, - { "174f", "a312", "1.3MPixel Web Cam" }, - { "174f", "a821", "Web Cam - Packard Bell BU45, PB Easynote MX66-208W" }, - { "174f", "aa11", "Web Cam" }, - { "1753", "c901", "PPC900 Pinpad Terminal" }, - { "1756", "0006", "DiviPitch" }, - { "1761", "0b05", "802.11n Network Adapter (wrong ID - swapped vendor and device)" }, - { "1770", "ff00", "steel series rgb keyboard" }, - { "1776", "501c", "300K CMOS Camera" }, - { "1777", "0003", "MicroHAWK ID-20" }, - { "177f", "0004", "MM004V5 Photo Key Chain (Digital Photo Frame) 1.5\"" }, - { "177f", "0153", "LW153 802.11n Adapter [ralink rt3070]" }, - { "177f", "0154", "LW154 802.11bgn (1x1:1) Wireless Adapter [Realtek RTL8188SU]" }, - { "177f", "0313", "LW313 802.11n Adapter [ralink rt2770 + rt2720]" }, - { "1781", "07df", "Axium AX-800DAV Amplifier" }, - { "1781", "07e1", "Axium AX-KPC Keypad" }, - { "1781", "07e2", "Axium AX-KPD Keypad" }, - { "1781", "07e3", "Axium AX-400DA Amplifier" }, - { "1781", "083e", "MetaGeek Wi-Spy" }, - { "1781", "083f", "MetaGeek Wi-Spy 2.4x" }, - { "1781", "0938", "Iguanaworks USB IR Transceiver" }, - { "1781", "0941", "qNimble Quark" }, - { "1781", "0a96", "raphnet.net usb_game12" }, - { "1781", "0a97", "raphnet.net SNES mouse adapter" }, - { "1781", "0a98", "raphnet.net USBTenki" }, - { "1781", "0a99", "raphnet.net NES" }, - { "1781", "0a9a", "raphnet.net Gamecube/N64 controller" }, - { "1781", "0a9b", "raphnet.net DB9Joy" }, - { "1781", "0a9c", "raphnet.net Intellivision" }, - { "1781", "0a9d", "raphnet.net 4nes4snes" }, - { "1781", "0a9e", "raphnet.net Megadrive multitap" }, - { "1781", "0a9f", "raphnet.net MultiDB9joy" }, - { "1781", "0bad", "Mantracourt Load Cell" }, - { "1781", "0c30", "Telldus TellStick" }, - { "1781", "0c31", "Telldus TellStick Duo" }, - { "1781", "0c9f", "USBtiny" }, - { "1781", "1eef", "OpenAPC SecuKey" }, - { "1781", "1ef0", "E1701 Modular Controller Card" }, - { "1781", "1ef1", "E1701 Modular Controller Card" }, - { "1781", "1ef2", "E1803 Compact Controller Card" }, - { "1782", "3d00", "F200n mobile phone" }, - { "1784", "0001", "eHome Infrared Transceiver" }, - { "1784", "0004", "RF Combo Device" }, - { "1784", "0006", "eHome Infrared Transceiver" }, - { "1784", "0007", "eHome Infrared Transceiver" }, - { "1784", "0008", "eHome Infrared Transceiver" }, - { "1784", "000a", "eHome Infrared Transceiver" }, - { "1784", "0011", "eHome Infrared Transceiver" }, - { "178e", "0b05", "CrossLink cable 2GB (wrong ID - swapped vendor and device)" }, - { "1799", "7051", "Belkin F5D7051 802.11g Adapter v1000 [Broadcom 4320]" }, - { "1799", "8051", "Belkin F5D8051 v2 802.11bgn Wireless Adapter [Marvell 88W8362]" }, - { "179d", "0010", "Internal Infrared Transceiver" }, - { "17a0", "0001", "C01U condenser microphone" }, - { "17a0", "0002", "Q1U dynamic microphone" }, - { "17a0", "0100", "C03U multi-pattern microphone" }, - { "17a0", "0101", "UB1 boundary microphone" }, - { "17a0", "0120", "Meteorite condenser microphone" }, - { "17a0", "0130", "Go Mic Direct" }, - { "17a0", "0132", "Go Mic Mobile wireless receiver" }, - { "17a0", "0200", "StudioDock monitors (internal hub)" }, - { "17a0", "0201", "StudioDock monitors (audio)" }, - { "17a0", "0210", "StudioGT monitors" }, - { "17a0", "0211", "StudioGT monitors [CM6400]" }, - { "17a0", "0240", "Go Mic Connect" }, - { "17a0", "0241", "G-Track Pro microphone" }, - { "17a0", "0301", "Q2U handheld microphone with XLR" }, - { "17a0", "0302", "GoMic compact condenser microphone" }, - { "17a0", "0303", "C01U Pro condenser microphone" }, - { "17a0", "0304", "Q2U handheld mic with XLR" }, - { "17a0", "0305", "GoMic compact condenser mic" }, - { "17a0", "0310", "Meteor condenser microphone" }, - { "17a0", "0311", "Satellite condenser microphone" }, - { "17a0", "1616", "RXD1 wireless receiver" }, - { "17a0", "b241", "G-Track Pro firmware update" }, - { "17a0", "b311", "Satellite firmware update" }, - { "17a4", "0001", "Performance Monitor 3" }, - { "17a4", "0002", "Performance Monitor 4" }, - { "17a8", "0001", "Optical Eye/3-wire" }, - { "17a8", "0005", "M-Bus Master MultiPort 250D" }, - { "17a8", "0010", "444MHz Radio Mesh Frontend" }, - { "17a8", "0011", "444MHz RF sniffer" }, - { "17a8", "0012", "870MHz Radio Mesh Frontend" }, - { "17a8", "0013", "870MHz RF sniffer" }, - { "17b3", "0004", "Linux-USB Midi Gadget" }, - { "17b5", "0010", "MFT Sensor" }, - { "17ba", "0001", "SAU510-USB [no firmware]" }, - { "17ba", "0510", "SAU510-USB and SAU510-USB plus JTAG Emulators" }, - { "17ba", "0511", "SAU510-USB Iso Plus JTAG Emulator" }, - { "17ba", "0520", "SAU510-USB Nano JTAG Emulator" }, - { "17ba", "1511", "Onboard Emulator on SAUModule development kit" }, - { "17cc", "041c", "Audio 2 DJ" }, - { "17cc", "041d", "Traktor Audio 2" }, - { "17cc", "0808", "Maschine Controller" }, - { "17cc", "0815", "Audio Kontrol 1" }, - { "17cc", "0839", "Audio 4 DJ" }, - { "17cc", "0d8d", "Guitarrig Mobile" }, - { "17cc", "1001", "Komplete Audio 6" }, - { "17cc", "1110", "Maschine Mikro" }, - { "17cc", "1915", "Session I/O" }, - { "17cc", "1940", "RigKontrol3" }, - { "17cc", "1969", "RigKontrol2" }, - { "17cc", "1978", "Audio 8 DJ" }, - { "17cc", "2280", "Medion MDPNA1500 in card reader mode" }, - { "17cc", "2305", "Traktor Kontrol X1" }, - { "17cc", "4711", "Kore Controller" }, - { "17cc", "4712", "Kore Controller 2" }, - { "17cc", "baff", "Traktor Kontrol S4" }, - { "17e9", "0051", "USB VGA Adaptor" }, - { "17e9", "0198", "DisplayLink" }, - { "17e9", "019e", "Overfly FY-1016A" }, - { "17e9", "028f", "HIS Multi-View II" }, - { "17e9", "030b", "HP T100" }, - { "17e9", "0377", "Plugable UD-160-A (M)" }, - { "17e9", "0378", "Plugable UGA-2K-A" }, - { "17e9", "0379", "Plugable UGA-125" }, - { "17e9", "037a", "Plugable UGA-165" }, - { "17e9", "037b", "Plugable USB-VGA-165" }, - { "17e9", "037c", "Plugable DC-125" }, - { "17e9", "037d", "Plugable USB2-HDMI-165" }, - { "17e9", "410a", "HDMI Adapter" }, - { "17e9", "430a", "HP Port Replicator (Composite Device)" }, - { "17e9", "430f", "Kensington Dock (Composite Device)" }, - { "17e9", "4312", "S2340T" }, - { "17e9", "436e", "Dell D3100 Docking Station" }, - { "17e9", "ff10", "I1659FWUX {AOC Powered Monitor]" }, - { "17ef", "1000", "ThinkPad X6 UltraBase" }, - { "17ef", "1003", "Integrated Smart Card Reader" }, - { "17ef", "1004", "Integrated Webcam" }, - { "17ef", "1005", "ThinkPad X200 Ultrabase (42X4963 )" }, - { "17ef", "1008", "Hub" }, - { "17ef", "100a", "ThinkPad Mini Dock Plus Series 3" }, - { "17ef", "100f", "ThinkPad Ultra Dock Hub" }, - { "17ef", "1010", "ThinkPad Ultra Dock Hub" }, - { "17ef", "1020", "ThinkPad Dock Hub" }, - { "17ef", "1021", "ThinkPad Dock Hub [Cypress HX2VL]" }, - { "17ef", "3049", "ThinkPad OneLink integrated audio" }, - { "17ef", "304b", "AX88179 Gigabit Ethernet [ThinkPad OneLink GigaLAN]" }, - { "17ef", "304f", "RTL8153 Gigabit Ethernet [ThinkPad OneLink Pro Dock]" }, - { "17ef", "3060", "ThinkPad Dock" }, - { "17ef", "3062", "ThinkPad Dock Ethernet [Realtek RTL8153B]" }, - { "17ef", "3063", "ThinkPad Dock Audio" }, - { "17ef", "3066", "ThinkPad Thunderbolt 3 Dock MCU" }, - { "17ef", "3069", "ThinkPad TBT3 LAN" }, - { "17ef", "306a", "ThinkPad Thunderbolt 3 Dock Audio" }, - { "17ef", "3815", "ChipsBnk 2GB USB Stick" }, - { "17ef", "4802", "Vc0323+MI1310_SOC Camera" }, - { "17ef", "4807", "UVC Camera" }, - { "17ef", "480c", "Integrated Webcam" }, - { "17ef", "480d", "Integrated Webcam [R5U877]" }, - { "17ef", "480e", "Integrated Webcam [R5U877]" }, - { "17ef", "480f", "Integrated Webcam [R5U877]" }, - { "17ef", "4810", "Integrated Webcam [R5U877]" }, - { "17ef", "4811", "Integrated Webcam [R5U877]" }, - { "17ef", "4812", "Integrated Webcam [R5U877]" }, - { "17ef", "4813", "Integrated Webcam [R5U877]" }, - { "17ef", "4814", "Integrated Webcam [R5U877]" }, - { "17ef", "4815", "Integrated Webcam [R5U877]" }, - { "17ef", "4816", "Integrated Webcam" }, - { "17ef", "481c", "Integrated Webcam" }, - { "17ef", "481d", "Integrated Webcam" }, - { "17ef", "6004", "ISD-V4 Tablet Pen" }, - { "17ef", "6007", "Smartcard Keyboard" }, - { "17ef", "6009", "ThinkPad Keyboard with TrackPoint" }, - { "17ef", "600e", "Optical Mouse" }, - { "17ef", "6014", "Mini Wireless Keyboard N5901" }, - { "17ef", "6019", "M-U0025-O Mouse" }, - { "17ef", "6022", "Ultraslim Plus Wireless Keyboard and Mouse" }, - { "17ef", "6025", "ThinkPad Travel Mouse" }, - { "17ef", "602d", "Black Silk Keyboard" }, - { "17ef", "6032", "Wireless Dongle for Keyboard and Mouse" }, - { "17ef", "6044", "ThinkPad Laser Mouse" }, - { "17ef", "6047", "ThinkPad Compact Keyboard with TrackPoint" }, - { "17ef", "604b", "Precision Wireless Mouse" }, - { "17ef", "608d", "Optical Mouse" }, - { "17ef", "609b", "Professional Wireless Keyboard and Mouse Combo" }, - { "17ef", "609c", "Professional Wireless Keyboard" }, - { "17ef", "7203", "Ethernet adapter [U2L 100P-Y1]" }, - { "17ef", "7205", "Thinkpad LAN" }, - { "17ef", "7217", "VGA adapter" }, - { "17ef", "7423", "IdeaPad A1 Tablet" }, - { "17ef", "7435", "A789 (Mass Storage mode, with debug)" }, - { "17ef", "743a", "A789 (Mass Storage mode)" }, - { "17ef", "7497", "A789 (MTP mode)" }, - { "17ef", "7498", "A789 (MTP mode, with debug)" }, - { "17ef", "749a", "A789 (PTP mode)" }, - { "17ef", "749b", "A789 (PTP mode, with debug)" }, - { "17ef", "7604", "A760 (Mass Storage mode)" }, - { "17ef", "7605", "A760 (Mass Storage mode, with debug)" }, - { "17ef", "760a", "A760 (MTP mode)" }, - { "17ef", "760b", "A760 (MTP mode, with debug)" }, - { "17ef", "760c", "A760 (PTP mode)" }, - { "17ef", "760d", "A760 (PTP mode, with debug)" }, - { "17ef", "76fc", "B8000-H (Yoga Tablet 10) (mass storage)" }, - { "17ef", "76fd", "B8000-H (Yoga Tablet 10) (debug , mass storage)" }, - { "17ef", "76fe", "B8000-H (Yoga Tablet 10) (MTP)" }, - { "17ef", "76ff", "B8000-H (Yoga Tablet 10) (debug , MTP)" }, - { "17ef", "7702", "B8000-H (Yoga Tablet 10) (PTP)" }, - { "17ef", "7703", "B8000-H (Yoga Tablet 10) (debug , PTP)" }, - { "17ef", "7704", "B8000-H (Yoga Tablet 10) (USB tether)" }, - { "17ef", "7705", "B8000-H (Yoga Tablet 10) (debug , USB tether)" }, - { "17ef", "7706", "B8000-H (Yoga Tablet 10) (zerocd)" }, - { "17ef", "7707", "B8000-H (Yoga Tablet 10) (debug , zerocd)" }, - { "17ef", "785f", "TAB 2 A7-10 Tablet" }, - { "17ef", "b000", "Virtual Keyboard and Mouse" }, - { "17ef", "b001", "Ethernet" }, - { "17ef", "b003", "Virtual Keyboard and Mouse / Mass Storage" }, - { "17ef", "f003", "MEDION LIFETAB X10605 MTP mode" }, - { "17f4", "aaaa", "Jazz Blood Glucose Meter" }, - { "17f6", "0709", "Model M Keyboard" }, - { "17f6", "0822", "Ruffian 6 Keyboard v3 [Model M]" }, - { "1809", "4604", "USB-4604" }, - { "1809", "4761", "USB-4761 Portable Data Acquisition Module" }, - { "1822", "3201", "VisionDTV USB-Ter/HAMA USB DVB-T device cold" }, - { "1822", "3202", "VisionDTV USB-Ter/HAMA USB DVB-T device warm" }, - { "183d", "0010", "VoiceKey" }, - { "184f", "0012", "MOCCA compact" }, - { "1852", "7022", "Fiio E10" }, - { "1852", "7921", "Audiotrak ProDigy CUBE" }, - { "1852", "7922", "Audiotrak DR.DAC2 DX [GYROCOM C&C]" }, - { "185b", "3020", "K100 Infrared Receiver" }, - { "185b", "3082", "K100 Infrared Receiver v2" }, - { "185b", "d000", "Compro Videomate DVB-U2000 - DVB-T USB cold" }, - { "185b", "d001", "Compro Videomate DVB-U2000 - DVB-T USB warm" }, - { "1870", "0001", "iNexio Touchscreen controller" }, - { "1871", "0101", "UVC camera (Bresser microscope)" }, - { "1871", "0141", "Camera" }, - { "1871", "0d01", "USB2.0 Camera" }, - { "1873", "ee93", "EasyLogger" }, - { "187c", "0511", "AlienFX Mobile lighting" }, - { "187c", "0513", "Gaming Desktop [Aurora R4]" }, - { "187c", "0550", "LED controller" }, - { "187c", "0600", "Dual Compatible Game Pad" }, - { "187f", "0010", "Stallar Board" }, - { "187f", "0100", "Stallar Board" }, - { "187f", "0200", "Nova A" }, - { "187f", "0201", "Nova B" }, - { "187f", "0202", "Nice" }, - { "187f", "0300", "Vega" }, - { "187f", "0301", "VeNice" }, - { "1894", "5632", "Atek Tote Remote" }, - { "1894", "5641", "TSAM-004 Presentation Remote" }, - { "189f", "0002", "Legato2 3D Scanner" }, - { "18a4", "0001", "Snapshell IDR" }, - { "18a5", "0214", "Portable Hard Drive" }, - { "18a5", "0216", "External Hard Drive" }, - { "18a5", "0218", "External Hard Drive" }, - { "18a5", "0224", "Store 'n' Go Micro Plus" }, - { "18a5", "0227", "Pocket Hard Drive" }, - { "18a5", "022b", "Portable Hard Drive (Store'n'Go)" }, - { "18a5", "0237", "Portable Harddrive" }, - { "18a5", "0243", "Flash Drive (Store'n'Go)" }, - { "18a5", "0245", "Store'n'Stay" }, - { "18a5", "0302", "Flash Drive" }, - { "18a5", "0304", "Store 'n' Go" }, - { "18a5", "0408", "Store 'n' Go" }, - { "18a5", "4123", "Store N Go" }, - { "18b1", "0037", "Maxter Remote Control" }, - { "18b4", "1001", "DUTV007" }, - { "18b4", "1002", "EC168 (v5) based USB DVB-T receiver" }, - { "18b4", "1689", "DUTV009" }, - { "18b4", "fffa", "EC168 (v2) based USB DVB-T receiver" }, - { "18b4", "fffb", "EC168 (v3) based USB DVB-T receiver" }, - { "18c5", "0002", "CG-WLUSB2GO" }, - { "18c5", "0008", "CG-WLUSB2GNR Corega Wireless USB Adapter" }, - { "18c5", "0012", "CG-WLUSB10 Corega Wireless USB Adapter" }, - { "18cd", "cafe", "Pico iMage" }, - { "18d1", "0001", "Onda V972 (storage access)" }, - { "18d1", "0003", "Android-powered device using AllWinner Technology SoC" }, - { "18d1", "0006", "Onda V972 MTP" }, - { "18d1", "0008", "Onda V972 PTP (camera)" }, - { "18d1", "0d02", "Celkon A88" }, - { "18d1", "2d00", "Android Open Accessory device (accessory)" }, - { "18d1", "2d01", "Android Open Accessory device (accessory + ADB)" }, - { "18d1", "2d02", "Android Open Accessory device (audio)" }, - { "18d1", "2d03", "Android Open Accessory device (audio + ADB)" }, - { "18d1", "2d04", "Android Open Accessory device (accessory + audio)" }, - { "18d1", "2d05", "Android Open Accessory device (accessory + audio + ADB)" }, - { "18d1", "4e11", "Nexus One" }, - { "18d1", "4e12", "Nexus One (debug)" }, - { "18d1", "4e13", "Nexus One (tether)" }, - { "18d1", "4e20", "Nexus S (fastboot)" }, - { "18d1", "4e21", "Nexus S" }, - { "18d1", "4e22", "Nexus S (debug)" }, - { "18d1", "4e24", "Nexus S (tether)" }, - { "18d1", "4e30", "Galaxy Nexus (fastboot)" }, - { "18d1", "4e40", "Nexus 7 (fastboot)" }, - { "18d1", "4e41", "Nexus 7 (MTP)" }, - { "18d1", "4e42", "Nexus 7 (debug)" }, - { "18d1", "4e43", "Nexus 7 (PTP)" }, - { "18d1", "4e44", "Nexus 7 2012 (PTP)" }, - { "18d1", "4ee0", "Nexus/Pixel Device (fastboot)" }, - { "18d1", "4ee1", "Nexus/Pixel Device (MTP)" }, - { "18d1", "4ee2", "Nexus/Pixel Device (MTP + debug)" }, - { "18d1", "4ee3", "Nexus/Pixel Device (tether)" }, - { "18d1", "4ee4", "Nexus/Pixel Device (tether+ debug)" }, - { "18d1", "4ee5", "Nexus/Pixel Device (PTP)" }, - { "18d1", "4ee6", "Nexus/Pixel Device (PTP + debug)" }, - { "18d1", "4ee7", "Nexus/Pixel Device (charging + debug)" }, - { "18d1", "4ee8", "Nexus/Pixel Device (MIDI)" }, - { "18d1", "4ee9", "Nexus/Pixel Device (MIDI + debug)" }, - { "18d1", "5033", "Pixel earbuds" }, - { "18d1", "7102", "Toshiba Thrive tablet" }, - { "18d1", "b004", "Pandigital / B&N Novel 9\" tablet" }, - { "18d1", "d001", "Nexus 4 (fastboot)" }, - { "18d1", "d002", "Nexus 4 (debug)" }, - { "18d1", "d00d", "Xiaomi Mi/Redmi 2 (fastboot)" }, - { "18d1", "d109", "LG G2x MTP" }, - { "18d1", "d10a", "LG G2x MTP (debug)" }, - { "18d9", "01a0", "B-Net 91 07" }, - { "18dd", "1000", "DocuPen RC800" }, - { "18e3", "7102", "Multi Card Reader (Internal)" }, - { "18e3", "9101", "All-in-1 Card Reader" }, - { "18e3", "9102", "Multi Card Reader" }, - { "18e3", "9512", "Webcam" }, - { "18e8", "6144", "LR802UA 802.11b Wireless Adapter [ALi M4301AU]" }, - { "18e8", "6196", "RT2573" }, - { "18e8", "6229", "RT2573" }, - { "18e8", "6232", "Wireless 802.11g 54Mbps Network Adapter [RTL8187]" }, - { "18ea", "0002", "DualHead2Go [Analog Edition]" }, - { "18ea", "0004", "TripleHead2Go [Digital Edition]" }, - { "18ec", "3118", "USB to IrDA adapter [ARK3116T]" }, - { "18ec", "3188", "ARK3188 UVC Webcam" }, - { "18ec", "3299", "Webcam Carrefour" }, - { "18ec", "3366", "Bresser Biolux NV" }, - { "18ec", "5850", "CVBS / S-Video Capture Device [UVC]" }, - { "18ef", "e014", "FS20PCE" }, - { "18ef", "e015", "FS20PCS" }, - { "18ef", "e01a", "Bedien-Anzeige-Terminal" }, - { "18f8", "0f97", "Optical Gaming Mouse [Xtrem]" }, - { "18f8", "0f99", "Optical gaming mouse" }, - { "18f8", "1142", "Optical gaming mouse" }, - { "18f8", "1486", "X5s ZEUS Macro Pro Gaming Mouse" }, - { "18fb", "01c0", "ST1501-STN" }, - { "18fb", "01c1", "ST1526-STN" }, - { "18fb", "01c2", "ST1501-PYJ" }, - { "18fb", "01c3", "ST1501B-PYJ" }, - { "18fb", "01c4", "ST1501-PUN" }, - { "18fb", "01c5", "ST1401-STN" }, - { "18fb", "01c7", "ST1526-PYJ" }, - { "18fb", "01c8", "ST1501-ECA" }, - { "18fb", "01c9", "ST1476-STN" }, - { "18fb", "01cb", "ST1571-STN" }, - { "18fb", "0200", "ST1500" }, - { "18fb", "0201", "ST1550" }, - { "18fb", "0202", "ST1525" }, - { "18fb", "0204", "ST1400" }, - { "18fb", "0206", "ST1475" }, - { "18fb", "0207", "ST1570" }, - { "1901", "0015", "Nemo Tracker" }, - { "1908", "0102", "Digital Photo Frame" }, - { "1908", "0226", "MicroSD Card Reader/Writer" }, - { "1908", "1315", "Digital Photo Frame" }, - { "1908", "1320", "DM8261 Flashdisc" }, - { "1908", "2070", "Honk HK-5002 USB Speaker" }, - { "1908", "2220", "Buildwin Media-Player" }, - { "1908", "2311", "Generic UVC 1.00 camera [AppoTech AX2311]" }, - { "1915", "000c", "Wireless Desktop nRF24L01 CX-1766" }, - { "1915", "0101", "HP Prime Wireless Kit [FOK65AA] (Flash mode)" }, - { "1915", "2233", "Linksys WUSB11 v2.8 802.11b Adapter [Atmel AT76C505]" }, - { "1915", "2234", "Linksys WUSB54G v1 OEM 802.11g Adapter [Intersil ISL3886]" }, - { "1915", "2235", "Linksys WUSB54GP v1 OEM 802.11g Adapter [Intersil ISL3886]" }, - { "1915", "2236", "Linksys WUSB11 v3.0 802.11b Adapter [Intersil PRISM 3]" }, - { "1915", "7777", "Bitcraze Crazyradio (PA) dongle" }, - { "191c", "4104", "Banknote validator NV-150" }, - { "1923", "0002", "Personal SyncPoint" }, - { "1926", "0003", "1900 HID Touchscreen" }, - { "1926", "0006", "1950 HID Touchscreen" }, - { "1926", "0064", "1950 HID Touchscreen" }, - { "1926", "0065", "1950 HID Touchscreen" }, - { "1926", "0066", "1950 HID Touchscreen" }, - { "1926", "0067", "1950 HID Touchscreen" }, - { "1926", "0068", "1950 HID Touchscreen" }, - { "1926", "0069", "1950 HID Touchscreen" }, - { "1926", "0071", "1950 HID Touchscreen" }, - { "1926", "0072", "1950 HID Touchscreen" }, - { "1926", "0073", "1950 HID Touchscreen" }, - { "1926", "0074", "1950 HID Touchscreen" }, - { "1926", "0075", "1950 HID Touchscreen" }, - { "1926", "0076", "1950 HID Touchscreen" }, - { "1926", "0077", "1950 HID Touchscreen" }, - { "1926", "0078", "1950 HID Touchscreen" }, - { "1926", "0079", "1950 HID Touchscreen" }, - { "1926", "007a", "1950 HID Touchscreen" }, - { "1926", "007e", "1950 HID Touchscreen" }, - { "1926", "007f", "1950 HID Touchscreen" }, - { "1926", "0080", "1950 HID Touchscreen" }, - { "1926", "0081", "1950 HID Touchscreen" }, - { "1926", "0082", "1950 HID Touchscreen" }, - { "1926", "0083", "1950 HID Touchscreen" }, - { "1926", "0084", "1950 HID Touchscreen" }, - { "1926", "0085", "1950 HID Touchscreen" }, - { "1926", "0086", "1950 HID Touchscreen" }, - { "1926", "0087", "1950 HID Touchscreen" }, - { "1926", "0dbf", "HID Touchscreen" }, - { "1926", "0dc2", "HID Touchscreen" }, - { "1928", "0400", "Equotip Piccolo" }, - { "192f", "0000", "Mouse" }, - { "192f", "0416", "ADNS-5700 Optical Mouse Controller (3-button)" }, - { "192f", "0616", "ADNS-5700 Optical Mouse Controller (5-button)" }, - { "192f", "0916", "ADNS-2710 Optical Mouse Controller" }, - { "1934", "0602", "F71610 or F71612 Consumer Infrared Receiver/Transceiver" }, - { "1934", "0702", "Integrated Consumer Infrared Receiver/Transceiver" }, - { "1934", "5168", "F71610A or F71612A Consumer Infrared Receiver/Transceiver" }, - { "1935", "000d", "Elektron Digitakt" }, - { "1938", "0501", "TCR51USB IRIG Time Code Reader" }, - { "1938", "0502", "TCR600USB IRIG Time Code Reader" }, - { "1941", "8021", "WH1080 Weather Station / USB Missile Launcher" }, - { "1943", "2250", "Model 2250 MPEG and JPEG Capture Card" }, - { "1943", "2253", "Model 2253 Audio/Video Codec Card" }, - { "1943", "2255", "Model 2255 4 Channel Capture Card" }, - { "1943", "2257", "Model 2257 4 Channel Capture Card" }, - { "1943", "2263", "Model 2263 UVC HD Audio/Video Codec Card" }, - { "1943", "a250", "Model 2250 MPEG and JPEG Capture Card (cold)" }, - { "1943", "a253", "Model 2253 Audio/Video Codec Card (cold)" }, - { "1949", "0002", "Amazon Kindle" }, - { "1949", "0004", "Amazon Kindle 3/4/Paperwhite" }, - { "1949", "0006", "Amazon Kindle Fire" }, - { "1949", "0008", "Amazon Kindle Fire HD 8.9\"" }, - { "1949", "000a", "Amazon Kindle Fire 2nd generation (2012)" }, - { "1949", "0331", "Kindle Fire HD 8 (2018)" }, - { "1949", "0417", "Amazon Zukey; clone of Yubikey 4 OTP+U2F" }, - { "1949", "0800", "Fire Phone" }, - { "194f", "0101", "AudioBox 22 VSL" }, - { "194f", "0102", "AudioBox 44 VSL" }, - { "194f", "0103", "AudioBox 1818 VSL" }, - { "194f", "0201", "FaderPort" }, - { "194f", "0301", "AudioBox" }, - { "1953", "0202", "S200 2GB Rev. 1" }, - { "195d", "2030", "Func KB-460 Gaming Keyboard" }, - { "195d", "7002", "Libra-Q11 IR remote" }, - { "195d", "7006", "Libra-Q26 / 1.0 Remote" }, - { "195d", "7777", "Scorpius wireless keyboard" }, - { "195d", "7779", "Scorpius-P20MT" }, - { "1963", "0005", "iRig KEYS" }, - { "1963", "0046", "UNO Synth" }, - { "1965", "0016", "HomePatrol-1" }, - { "1965", "0018", "UBC125XLT" }, - { "1965", "001a", "BCD436HP Scanner" }, - { "1970", "0000", "Z Mate 16GB" }, - { "1973", "0002", "Pivot recovery" }, - { "1973", "0003", "Pivot Media Transfer Protocol" }, - { "1973", "0004", "Pivot Media Transfer Protocol" }, - { "1976", "1307", "microSD Card Reader" }, - { "1976", "6025", "CBM2090 Flash Drive" }, - { "1977", "0111", "TL203 MP3 Player and Voice Recorder" }, - { "197d", "0222", "BCL 508i" }, - { "1980", "0808", "Clickfree C2 Slimline (527SE)" }, - { "198f", "0210", "BCS200 WiMAX Adapter" }, - { "198f", "0220", "BCSM250 WiMAX Adapter" }, - { "1995", "3202", "REC-ADPT-USB (recorder)" }, - { "1995", "3203", "REC-A-ADPT-USB (recorder)" }, - { "1996", "3010", "Camera Release 4" }, - { "1996", "3011", "OEM Camera" }, - { "1996", "3012", "e-ImageData Corp. ScanPro" }, - { "1997", "0409", "wireless mini keyboard with touchpad" }, - { "1997", "2433", "wireless mini keyboard with touchpad" }, - { "199b", "3065", "3DM-GX3-25 Orientation Sensor" }, - { "199e", "8101", "DFx 21BU04 Camera" }, - { "199e", "8457", "DFK AFU130-L53 camera" }, - { "19a5", "0004", "Remote NDIS Network Device" }, - { "19a5", "0012", "RF-7800S Secure Personal Radio" }, - { "19a5", "0401", "Mass Storage Device" }, - { "19a5", "0402", "Falcon III RF-7800V family RNDIS" }, - { "19ab", "1000", "ProScope HR" }, - { "19af", "6611", "Celestia VoIP Phone" }, - { "19b2", "0010", "BX32 Batupo" }, - { "19b2", "0011", "BX32P Barlino" }, - { "19b2", "0012", "BX40 Bagero" }, - { "19b2", "0013", "BX48 Batego" }, - { "19b4", "0002", "SkyScout Personal Planetarium" }, - { "19b4", "0101", "Handheld Digital Microscope 44302" }, - { "19b9", "4b10", "Drobo" }, - { "19b9", "8d20", "Drobo Elite" }, - { "19c2", "6a11", "MDM166A Fluorescent Display" }, - { "19ca", "0001", "Sandio 3D HID Mouse" }, - { "19cf", "0001", "MiniKit Slim handsfree car kit in firmware update mode" }, - { "19d2", "0001", "CDMA Wireless Modem" }, - { "19d2", "0002", "MF632/ONDA ET502HS/MT505UP" }, - { "19d2", "0007", "TU25 WiMAX Adapter [Beceem BCS200]" }, - { "19d2", "0017", "MF669" }, - { "19d2", "0031", "MF110/MF627/MF636" }, - { "19d2", "0037", "ONDA MC503HSA" }, - { "19d2", "0039", "MF100" }, - { "19d2", "0063", "K3565-Z HSDPA" }, - { "19d2", "0064", "MF627 AU" }, - { "19d2", "0083", "MF190" }, - { "19d2", "0103", "MF112" }, - { "19d2", "0104", "K4505-Z" }, - { "19d2", "0117", "MF667" }, - { "19d2", "0146", "MF 195E (HSPA+ Modem)" }, - { "19d2", "0167", "MF820 4G LTE" }, - { "19d2", "0172", "AX226 WIMAX MODEM (After Modeswitch)" }, - { "19d2", "0325", "LTE4G O2 ZTE MF821D LTE/UMTS/GSM Modem/Networkcard" }, - { "19d2", "0326", "LTE4G O2 ZTE MF821D LTE/UMTS/GSM Modem/Networkcard" }, - { "19d2", "0501", "Lever Cell Phone Model Z936L" }, - { "19d2", "1001", "K3805-Z vodafone WCDMA/GSM Modem - storage mode (made by ZTE)" }, - { "19d2", "1002", "K3805-Z vodafone WCDMA/GSM Modem/Networkcard (made by ZTE)" }, - { "19d2", "1008", "K3570-Z" }, - { "19d2", "1010", "K3571-Z" }, - { "19d2", "1017", "K5006-Z vodafone LTE/UMTS/GSM Modem/Networkcard" }, - { "19d2", "1018", "K5006-Z vodafone LTE/UMTS/GSM Modem/Networkcard" }, - { "19d2", "1203", "MF691 [ T-Mobile webConnect Rocket 2.0]" }, - { "19d2", "1217", "MF652" }, - { "19d2", "1218", "MF652" }, - { "19d2", "1270", "MF667" }, - { "19d2", "2000", "MF627/MF628/MF628+/MF636+ HSDPA/HSUPA" }, - { "19d2", "fff2", "Gobi Wireless Modem (QDL mode)" }, - { "19d2", "fff3", "Gobi Wireless Modem" }, - { "19db", "02f1", "NAUT324C" }, - { "19f7", "0001", "Podcaster" }, - { "19fa", "0607", "GAME CONTROLLER" }, - { "19fa", "0703", "Steering Wheel" }, - { "19ff", "0102", "1.3MP Webcam" }, - { "19ff", "0201", "Rocketfish Wireless 2.4G Laser Mouse" }, - { "19ff", "0220", "RF-HDWEBLT RocketFish HD WebCam" }, - { "19ff", "0238", "DX-WRM1401 Mouse" }, - { "19ff", "0239", "Bluetooth 4.0 Adapter [Broadcom, 1.12, BCM20702A0]" }, - { "1a0a", "badd", "USB OTG Compliance test device" }, - { "1a1d", "0407", "Mimi WiFi speakers" }, - { "1a2c", "0021", "Keyboard" }, - { "1a2c", "0024", "Multimedia Keyboard" }, - { "1a2c", "2124", "Keyboard" }, - { "1a2c", "2d23", "Keyboard" }, - { "1a2c", "427c", "Backlit Keyboard [Cougar Vantar]" }, - { "1a32", "0304", "802.11n Wireless LAN Card" }, - { "1a34", "0802", "Gamepad" }, - { "1a40", "0101", "Hub" }, - { "1a40", "0201", "FE 2.1 7-port Hub" }, - { "1a44", "0001", "Digipass 905 SmartCard Reader" }, - { "1a61", "3410", "CoPilot System Cable" }, - { "1a61", "3650", "FreeStyle Libre" }, - { "1a61", "3850", "FreeStyle Optium/Precision Neo" }, - { "1a61", "3950", "FreeStyle Libre 2" }, - { "1a64", "0000", "MasterBus Link" }, - { "1a72", "1008", "E-861 PiezoWalk NEXACT Controller" }, - { "1a79", "6002", "Contour" }, - { "1a79", "6210", "Contour Next Link 2.4 glucometer" }, - { "1a79", "6300", "Contour next link" }, - { "1a79", "7410", "Contour Next" }, - { "1a79", "7800", "Contour Plus One" }, - { "1a7c", "0068", "VerticalMouse 3" }, - { "1a7c", "0168", "VerticalMouse 3 Wireless" }, - { "1a7c", "0191", "VerticalMouse 4" }, - { "1a7c", "0195", "VerticalMouse C Wireless" }, - { "1a7e", "1001", "UFT75, UT150, UT60" }, - { "1a7e", "1003", "Thermostick" }, - { "1a81", "1004", "Wireless Dongle 2.4 GHZ HT82D40REW" }, - { "1a81", "1701", "Wireless dongle" }, - { "1a81", "2004", "Keyboard" }, - { "1a81", "2203", "Laser Gaming mouse" }, - { "1a81", "2204", "Optical Mouse" }, - { "1a81", "2205", "Laser Mouse" }, - { "1a81", "4001", "Keyboard" }, - { "1a86", "5512", "CH341 in EPP/MEM/I2C mode, EPP/I2C adapter" }, - { "1a86", "5523", "CH341 in serial mode, usb to serial port converter" }, - { "1a86", "5584", "CH341 in parallel mode, usb to printer port converter" }, - { "1a86", "7522", "CH340 serial converter" }, - { "1a86", "7523", "CH340 serial converter" }, - { "1a86", "752d", "CH345 MIDI adapter" }, - { "1a86", "7584", "CH340S" }, - { "1a86", "e008", "HID-based serial adapter" }, - { "1a8d", "1002", "BandLuxe 3.5G HSDPA Adapter" }, - { "1a8d", "1009", "BandLuxe 3.5G HSPA Adapter" }, - { "1a8d", "100d", "4G LTE adapter" }, - { "1aab", "7736", "sceye (Gen 2)" }, - { "1aab", "7737", "sceye (Gen 3)" }, - { "1aab", "7738", "sceye (Gen 4, 3 Mpix)" }, - { "1aab", "7750", "sceyeS (Gen 5, 5 MPix)" }, - { "1aad", "0001", "Touchscreen" }, - { "1ab1", "04b0", "DS6000 SERIES" }, - { "1ab1", "04be", "DS4000 SERIES" }, - { "1ab1", "04ce", "DS1xx4Z/MSO1xxZ series" }, - { "1ab1", "0588", "DS1000 SERIES" }, - { "1ab2", "0001", "Vision device" }, - { "1acc", "0103", "AudioLink plus 4x4 2.9.28" }, - { "1ad4", "0002", "KM290-HRS" }, - { "1adb", "0001", "C662 Serial Cable" }, - { "1adb", "0003", "CDC Ethernet Gadget" }, - { "1ae7", "0381", "VS-DVB-T 380U (af9015 based)" }, - { "1ae7", "0525", "X-Tensions ISDN TA XC-525 [HFC-S USB]" }, - { "1ae7", "2001", "SpeedLink Snappy Mic webcam (SL-6825-SBK)" }, - { "1ae7", "9003", "SpeedLink Vicious And Devine Laplace webcam, white (VD-1504-SWT)" }, - { "1ae7", "9004", "SpeedLink Vicious And Devine Laplace webcam, black (VD-1504-SBK)" }, - { "1af3", "0001", "ZOWIE Gaming mouse" }, - { "1afe", "0001", "PQ Box 100" }, - { "1b04", "0630", "ME-630" }, - { "1b04", "0940", "ME-94" }, - { "1b04", "0950", "ME-95" }, - { "1b04", "0960", "ME-96" }, - { "1b04", "1000", "ME-1000" }, - { "1b04", "100a", "ME-1000" }, - { "1b04", "100b", "ME-1000" }, - { "1b04", "1400", "ME-1400" }, - { "1b04", "140a", "ME-1400A" }, - { "1b04", "140b", "ME-1400B" }, - { "1b04", "140c", "ME-1400C" }, - { "1b04", "140d", "ME-1400D" }, - { "1b04", "140e", "ME-1400E" }, - { "1b04", "14ea", "ME-1400EA" }, - { "1b04", "14eb", "ME-1400EB" }, - { "1b04", "1604", "ME-1600/4U" }, - { "1b04", "1608", "ME-1600/8U" }, - { "1b04", "160c", "ME-1600/12U" }, - { "1b04", "160f", "ME-1600/16U" }, - { "1b04", "168f", "ME-1600/16U8I" }, - { "1b04", "4610", "ME-4610" }, - { "1b04", "4650", "ME-4650" }, - { "1b04", "4660", "ME-4660" }, - { "1b04", "4661", "ME-4660I" }, - { "1b04", "4662", "ME-4660" }, - { "1b04", "4663", "ME-4660I" }, - { "1b04", "4670", "ME-4670" }, - { "1b04", "4671", "ME-4670I" }, - { "1b04", "4672", "ME-4670S" }, - { "1b04", "4673", "ME-4670IS" }, - { "1b04", "4680", "ME-4680" }, - { "1b04", "4681", "ME-4680I" }, - { "1b04", "4682", "ME-4680S" }, - { "1b04", "4683", "ME-4680IS" }, - { "1b04", "6004", "ME-6000/4" }, - { "1b04", "6008", "ME-6000/8" }, - { "1b04", "600f", "ME-6000/16" }, - { "1b04", "6014", "ME-6000I/4" }, - { "1b04", "6018", "ME-6000I/8" }, - { "1b04", "601f", "ME-6000I/16" }, - { "1b04", "6034", "ME-6000ISLE/4" }, - { "1b04", "6038", "ME-6000ISLE/8" }, - { "1b04", "603f", "ME-6000ISLE/16" }, - { "1b04", "6044", "ME-6000/4/DIO" }, - { "1b04", "6048", "ME-6000/8/DIO" }, - { "1b04", "604f", "ME-6000/16/DIO" }, - { "1b04", "6054", "ME-6000I/4/DIO" }, - { "1b04", "6058", "ME-6000I/8/DIO" }, - { "1b04", "605f", "ME-6000I/16/DIO" }, - { "1b04", "6074", "ME-6000ISLE/4/DIO" }, - { "1b04", "6078", "ME-6000ISLE/8/DIO" }, - { "1b04", "607f", "ME-6000ISLE/16/DIO" }, - { "1b04", "6104", "ME-6100/4" }, - { "1b04", "6108", "ME-6100/8" }, - { "1b04", "610f", "ME-6100/16" }, - { "1b04", "6114", "ME-6100I/4" }, - { "1b04", "6118", "ME-6100I/8" }, - { "1b04", "611f", "ME-6100I/16" }, - { "1b04", "6134", "ME-6100ISLE/4" }, - { "1b04", "6138", "ME-6100ISLE/8" }, - { "1b04", "613f", "ME-6100ISLE/16" }, - { "1b04", "6144", "ME-6100/4/DIO" }, - { "1b04", "6148", "ME-6100/8/DIO" }, - { "1b04", "614f", "ME-6100/16/DIO" }, - { "1b04", "6154", "ME-6100I/4/DIO" }, - { "1b04", "6158", "ME-6100I/8/DIO" }, - { "1b04", "615f", "ME-6100I/16/DIO" }, - { "1b04", "6174", "ME-6100ISLE/4/DIO" }, - { "1b04", "6178", "ME-6100ISLE/8/DIO" }, - { "1b04", "617f", "ME-6100ISLE/16/DIO" }, - { "1b04", "6259", "ME-6200I/9/DIO" }, - { "1b04", "6359", "ME-6300I/9/DIO" }, - { "1b04", "810a", "ME-8100A" }, - { "1b04", "810b", "ME-8100B" }, - { "1b04", "820a", "ME-8200A" }, - { "1b04", "820b", "ME-8200B" }, - { "1b0e", "1078", "BLUDRIVE II CCID" }, - { "1b0e", "1079", "BLUDRIVE II CCID" }, - { "1b0e", "1080", "WRITECHIP II CCID" }, - { "1b12", "0011", "ModFactor" }, - { "1b1c", "0890", "Flash Padlock" }, - { "1b1c", "0a00", "SP2500 Speakers" }, - { "1b1c", "0a60", "Vengeance K60 Keyboard" }, - { "1b1c", "0c04", "Link Cooling Node" }, - { "1b1c", "0c06", "RM-Series C-Link Adapter" }, - { "1b1c", "0c0a", "Hydro Series H115i Liquid CPU Cooler" }, - { "1b1c", "0c0b", "Lighting Node Pro" }, - { "1b1c", "0c0c", "Lighting Node Loader" }, - { "1b1c", "0c22", "iCUE H150i RGB PRO XT Liquid CPU Cooler" }, - { "1b1c", "1a01", "Flash Voyager GT" }, - { "1b1c", "1a03", "Voyager 3.0" }, - { "1b1c", "1a09", "Voyager GT 3.0" }, - { "1b1c", "1a0a", "Survivor Stealth Flash Drive" }, - { "1b1c", "1a0b", "Flash Voyager LS" }, - { "1b1c", "1a0e", "Voyager GTX" }, - { "1b1c", "1a14", "Voyager Vega" }, - { "1b1c", "1a15", "Voyager Slider Flash Drive" }, - { "1b1c", "1a90", "Flash Voyager GT" }, - { "1b1c", "1ab1", "Voyager" }, - { "1b1c", "1b04", "Raptor K50 Keyboard" }, - { "1b1c", "1b07", "Vengeance K65 Gaming Keyboard" }, - { "1b1c", "1b08", "Vengeance K95 Keyboard" }, - { "1b1c", "1b09", "Vengeance K70R keyboard" }, - { "1b1c", "1b11", "K95 RGB Mechanical Gaming Keyboard" }, - { "1b1c", "1b13", "Vengeance K70RGB keyboard" }, - { "1b1c", "1b20", "STRAFE RGB Gaming Keyboard" }, - { "1b1c", "1b2d", "K95 RGB Platinum Keyboard [RGP0056]" }, - { "1b1c", "1b2e", "Corsair Corsair Gaming M65 Pro RGB Mouse" }, - { "1b1c", "1b2f", "Sabre RGB [CH-9303011-XX]" }, - { "1b1c", "1b3d", "Corsair Corsair Gaming K55 RGB Keyboard" }, - { "1b1c", "1b5e", "Harpoon Wireless Mouse" }, - { "1b1c", "1b65", "Harpoon Wireless Dongle" }, - { "1b1c", "1c00", "Controller for Corsair Link" }, - { "1b1c", "1c02", "AX1500i Power Supply" }, - { "1b1c", "1c05", "HX750i Power Supply" }, - { "1b1c", "1c07", "HX1000i Power Supply" }, - { "1b1c", "1c08", "HX1200i Power Supply" }, - { "1b1c", "1c0b", "RM750i Power Supply" }, - { "1b1c", "1c0c", "RM850i Power Supply" }, - { "1b1c", "1c1a", "Corsair CORSAIR Lighting Node CORE" }, - { "1b1e", "1003", "A1250" }, - { "1b1f", "c00f", "HM-CFG-USB/HM-CFG-USB-2 [HomeMatic Configuration adapter]" }, - { "1b1f", "c020", "HmIP-RFUSB" }, - { "1b24", "4001", "TLG2300 Hybrid TV Device" }, - { "1b32", "0064", "Pleo robotic dinosaur" }, - { "1b3b", "2933", "PC Camera/Webcam controller" }, - { "1b3b", "2935", "PC Camera/Webcam controller" }, - { "1b3b", "2936", "PC Camera/Webcam controller" }, - { "1b3b", "2937", "PC Camera/Webcam controller" }, - { "1b3b", "2938", "PC Camera/Webcam controller" }, - { "1b3b", "2939", "PC Camera/Webcam controller" }, - { "1b3b", "2950", "PC Camera/Webcam controller" }, - { "1b3b", "2951", "PC Camera/Webcam controller" }, - { "1b3b", "2952", "PC Camera/Webcam controller" }, - { "1b3b", "2953", "PC Camera/Webcam controller" }, - { "1b3b", "2955", "PC Camera/Webcam controller" }, - { "1b3b", "2956", "PC Camera/Webcam controller" }, - { "1b3b", "2957", "PC Camera/Webcam controller" }, - { "1b3b", "2958", "PC Camera/Webcam controller" }, - { "1b3b", "2959", "PC Camera/Webcam controller" }, - { "1b3b", "2960", "PC Camera/Webcam controller" }, - { "1b3b", "2961", "PC Camera/Webcam controller" }, - { "1b3b", "2962", "PC Camera/Webcam controller" }, - { "1b3b", "2963", "PC Camera/Webcam controller" }, - { "1b3b", "2965", "PC Camera/Webcam controller" }, - { "1b3b", "2966", "PC Camera/Webcam controller" }, - { "1b3b", "2967", "PC Camera/Webcam controller" }, - { "1b3b", "2968", "PC Camera/Webcam controller" }, - { "1b3b", "2969", "PC Camera/Webcam controller" }, - { "1b3f", "0c52", "808 Camera #9 (mass storage mode)" }, - { "1b3f", "2002", "808 Camera #9 (web-cam mode)" }, - { "1b3f", "2003", "GPD6000 [Digital MP3 Player]" }, - { "1b47", "0001", "CHUSB Duo Charger (NiMH AA/AAA USB smart charger)" }, - { "1b52", "2101", "FXMC Neural Network Controller" }, - { "1b52", "2102", "FXMC Neural Network Controller V2" }, - { "1b52", "2103", "FXMC Neural Network Controller V3" }, - { "1b52", "4101", "Passport Reader CLR device" }, - { "1b52", "4201", "Passport Reader PRM device" }, - { "1b52", "4202", "Passport Reader PRM extension device" }, - { "1b52", "4203", "Passport Reader PRM DSP device" }, - { "1b52", "4204", "Passport Reader PRMC device" }, - { "1b52", "4205", "Passport Reader CSHR device" }, - { "1b52", "4206", "Passport Reader PRMC V2 device" }, - { "1b52", "4301", "Passport Reader MRZ device" }, - { "1b52", "4302", "Passport Reader MRZ DSP device" }, - { "1b52", "4303", "Passport Reader CSLR device" }, - { "1b52", "4401", "Card Reader" }, - { "1b52", "4501", "Passport Reader RFID device" }, - { "1b52", "4502", "Passport Reader RFID AIG device" }, - { "1b52", "6101", "Neural Network Controller" }, - { "1b52", "6202", "Fingerprint Reader device" }, - { "1b52", "6203", "Fingerprint Scanner device" }, - { "1b52", "8101", "Camera V1" }, - { "1b52", "8102", "Recovery / Camera V2" }, - { "1b52", "8103", "Camera V3" }, - { "1b71", "0050", "Encore ENUTV-4 Analog TV Tuner" }, - { "1b71", "3002", "USBTV007 Video Grabber [EasyCAP]" }, - { "1b73", "1000", "xHC1 Controller" }, - { "1b75", "3072", "AirLive WN-360USB adapter" }, - { "1b75", "8171", "WN-370USB 802.11bgn Wireless Adapter [Realtek RTL8188SU]" }, - { "1b75", "8187", "AirLive WL-1600USB 802.11g Adapter [Realtek RTL8187L]" }, - { "1b75", "9170", "AirLive X.USB 802.11abgn [Atheros AR9170+AR9104]" }, - { "1b75", "a200", "AirLive WN-200USB wireless 11b/g/n dongle" }, - { "1b80", "c810", "MC810 [af9015]" }, - { "1b80", "d393", "DVB-T receiver [RTL2832U]" }, - { "1b80", "d396", "UB396-T [RTL2832U]" }, - { "1b80", "d397", "DVB-T receiver [RTL2832U]" }, - { "1b80", "d398", "DVB-T receiver [RTL2832U]" }, - { "1b80", "d700", "FM Radio SnapMusic Mobile 700 (FM700)" }, - { "1b80", "e297", "Conceptronic DVB-T CTVDIGRCU V3.0" }, - { "1b80", "e302", "CVBS / S-Video Capture Device [Pinnacle Dazzle / UB315-E]" }, - { "1b80", "e34c", "UB435-Q ATSC TV Stick" }, - { "1b80", "e383", "DVB-T UB383-T [af9015]" }, - { "1b80", "e385", "DVB-T UB385-T [af9015]" }, - { "1b80", "e386", "DVB-T UB385-T [af9015]" }, - { "1b80", "e399", "DVB-T KWorld PlusTV 399U [af9015]" }, - { "1b80", "e39a", "DVB-T395U [af9015]" }, - { "1b80", "e39b", "DVB-T395U [af9015]" }, - { "1b80", "e401", "Sveon STV22 DVB-T [af9015]" }, - { "1b80", "e409", "IT9137FN Dual DVB-T [KWorld UB499-2T]" }, - { "1b96", "0001", "Duosense Transparent Electromagnetic Digitizer" }, - { "1ba4", "0001", "InSight USB Link" }, - { "1ba4", "0002", "EM358 Virtual COM Port" }, - { "1bad", "0002", "Rock Band Guitar for Xbox 360" }, - { "1bad", "0003", "Rock Band Drum Kit for Xbox 360" }, - { "1bad", "0130", "Ion Drum Rocker for Xbox 360" }, - { "1bad", "028e", "Controller" }, - { "1bad", "3330", "Rock Band 3 Keyboard wii interface" }, - { "1bad", "f016", "Controller" }, - { "1bad", "f018", "Street Fighter IV SE FightStick for Xbox 360" }, - { "1bad", "f019", "BrawlStick for Xbox 360" }, - { "1bad", "f021", "Ghost Recon Future Soldier Gamepad for Xbox 360" }, - { "1bad", "f023", "MLG Pro Circuit Controller for Xbox 360" }, - { "1bad", "f025", "Call of Duty Controller for Xbox 360" }, - { "1bad", "f027", "FPS Pro Controller for Xbox 360" }, - { "1bad", "f028", "Street Fighter IV FightPad for Xbox 360" }, - { "1bad", "f02e", "FightPad" }, - { "1bad", "f030", "MC2 MicroCON Racing Wheel for Xbox 360" }, - { "1bad", "f036", "MicroCON Gamepad Pro for Xbox 360" }, - { "1bad", "f038", "Street Fighter IV FightStick TE for Xbox 360" }, - { "1bad", "f039", "Marvel VS Capcom 2 Tournament Stick for Xbox 360" }, - { "1bad", "f03a", "Street Fighter X Tekken FightStick Pro for Xbox 360" }, - { "1bad", "f03d", "Street Fighter IV Arcade Stick TE for Xbox 360" }, - { "1bad", "f03e", "MLG Arcade FightStick TE for Xbox 360" }, - { "1bad", "f03f", "Soulcalibur FightStick for Xbox 360" }, - { "1bad", "f042", "Arcade FightStick TE S+ for Xbox 360" }, - { "1bad", "f080", "FightStick TE2 for Xbox 360" }, - { "1bad", "f501", "Horipad EX2 Turbo for Xbox 360" }, - { "1bad", "f502", "Real Arcade Pro.VX SA for Xbox 360" }, - { "1bad", "f503", "Fighting Stick VX for Xbox 360" }, - { "1bad", "f504", "Real Arcade Pro.EX" }, - { "1bad", "f505", "Fighting Stick EX2B for Xbox 360" }, - { "1bad", "f506", "Real Arcade Pro.EX Premium VLX for Xbox 360" }, - { "1bad", "f900", "Controller" }, - { "1bad", "f901", "GameStop Controller" }, - { "1bad", "f903", "Tron Controller for Xbox 360" }, - { "1bad", "f904", "PDP Versus Fighting Pad for Xbox 360" }, - { "1bad", "f906", "Mortal Kombat FightStick for Xbox 360" }, - { "1bad", "f907", "Afterglow Gamepad" }, - { "1bad", "fa01", "Gamepad" }, - { "1bad", "fd00", "Razer Onza Tournament Edition" }, - { "1bad", "fd01", "Razer Onza Classic Edition" }, - { "1bae", "0002", "VR920 Immersive Eyewear" }, - { "1bbb", "0003", "Alcatel one touch 4030D modem connection" }, - { "1bbb", "0017", "HSPA Data Card" }, - { "1bbb", "007a", "Alcatel OneTouch (firmware upgrade mode)" }, - { "1bbb", "011e", "Alcatel One Touch L100V / Telekom Speedstick LTE II" }, - { "1bbb", "0169", "Alcatel ONE TOUCH Fierce" }, - { "1bbb", "0195", "Alcatel OneTouch L850V / Telekom Speedstick LTE" }, - { "1bbb", "a00e", "Vodafone Smart Tab 4G" }, - { "1bbb", "f000", "Alcatel OneTouch (mass storage mode)" }, - { "1bbb", "f017", "Alcatel One Touch L100V / Telekom Speedstick LTE II" }, - { "1bbd", "0060", "1.3MP Mono Camera" }, - { "1bbd", "0066", "1.3MP Mono Camera" }, - { "1bbd", "0067", "1.3MP Mono Camera" }, - { "1bc0", "0013", "Elitee-e" }, - { "1bc0", "0014", "Elite4" }, - { "1bc0", "0020", "iToken" }, - { "1bc0", "0021", "Mikey" }, - { "1bc0", "0051", "Elite5" }, - { "1bc0", "0055", "Elite5 v3.x" }, - { "1bc0", "485d", "EliteIV" }, - { "1bc7", "0020", "HE863" }, - { "1bc7", "0021", "HE910" }, - { "1bc7", "0022", "GE910-QUAD" }, - { "1bc7", "0023", "HE910-D ECM" }, - { "1bc7", "0032", "LE910-EU V2" }, - { "1bc7", "1003", "UC864-E" }, - { "1bc7", "1004", "UC864-G" }, - { "1bc7", "1005", "CC864-DUAL" }, - { "1bc7", "1006", "CC864-SINGLE" }, - { "1bc7", "1010", "DE910-DUAL" }, - { "1bc7", "1011", "CE910-DUAL" }, - { "1bc7", "1012", "UE910 V2" }, - { "1bc7", "1101", "ME910C1" }, - { "1bc7", "110a", "ME310" }, - { "1bc7", "1200", "LE920 (old firmware)" }, - { "1bc7", "1201", "LE910 / LE920" }, - { "1bcf", "0005", "Optical Mouse" }, - { "1bcf", "0007", "Optical Mouse" }, - { "1bcf", "053a", "Targa Silvercrest OMC807-C optische Funkmaus" }, - { "1bcf", "05c5", "SPRF2413A [2.4GHz Wireless Keyboard/Mouse Receiver]" }, - { "1bcf", "05cf", "Micro keyboard & mouse receiver" }, - { "1bcf", "08a0", "Gaming mouse [Philips SPK9304]" }, - { "1bcf", "0c31", "SPIF30x Serial-ATA bridge" }, - { "1bcf", "2281", "SPCA2281 Web Camera" }, - { "1bcf", "2880", "Dell HD Webcam" }, - { "1bcf", "2883", "Asus Webcam" }, - { "1bcf", "2885", "ASUS Webcam" }, - { "1bcf", "2888", "HP Universal Camera" }, - { "1bcf", "2895", "Dell Integrated Webcam" }, - { "1bcf", "28a2", "Dell Integrated Webcam" }, - { "1bcf", "28a6", "DELL XPS Integrated Webcam" }, - { "1bcf", "28ae", "Laptop Integrated Webcam HD" }, - { "1bcf", "28bd", "Dell Integrated HD Webcam" }, - { "1bcf", "2985", "Laptop Integrated Webcam HD" }, - { "1bcf", "2b83", "Laptop Integrated Webcam FHD" }, - { "1bcf", "2b91", "Dell E5570 integrated webcam" }, - { "1bcf", "2b97", "Laptop Integrated Webcam FHD" }, - { "1bcf", "2c6e", "Laptop Integrated WebCam HD" }, - { "1bda", "0010", "Power Board v4 Rev B" }, - { "1bda", "0011", "Student Robotics SBv4B" }, - { "1bfd", "1268", "Touch Screen" }, - { "1bfd", "1368", "Touch Screen" }, - { "1bfd", "1568", "Capacitive Touch Screen" }, - { "1bfd", "1668", "IR Touch Screen" }, - { "1bfd", "1688", "Resistive Touch Screen" }, - { "1bfd", "2968", "Touch Screen" }, - { "1bfd", "5968", "Touch Screen" }, - { "1bfd", "6968", "Touch Screen" }, - { "1c04", "2074", "ASM1074 High-Speed hub" }, - { "1c04", "3074", "ASM1074 SuperSpeed hub" }, - { "1c05", "ea75", "G540 Programmer" }, - { "1c0c", "0102", "Plug Computer" }, - { "1c11", "b04d", "ErgoDox Infinity" }, - { "1c1a", "0100", "Action Replay DS \"3DS/DSi/DS/Lite Compatible\"" }, - { "1c28", "c003", "CamCube" }, - { "1c28", "c004", "CamBoard" }, - { "1c28", "c005", "ConceptCam" }, - { "1c28", "c006", "CamBoard 22" }, - { "1c28", "c007", "CamBoard nano" }, - { "1c28", "c008", "CamBoard mod" }, - { "1c28", "c009", "CamBoard plus" }, - { "1c28", "c00a", "DigiCam" }, - { "1c28", "c00d", "CamBoard pico LDD" }, - { "1c28", "c00f", "CamBoard pico" }, - { "1c29", "0001", "ExMFE5 Simulator" }, - { "1c29", "10fc", "enCore device" }, - { "1c34", "7241", "Prox'N'Roll RFID Scanner" }, - { "1c37", "6190", "U2F Fido-compliant cryptotoken" }, - { "1c40", "0533", "TiltStick" }, - { "1c40", "0534", "i2c-tiny-usb interface" }, - { "1c40", "0535", "glcd2usb interface" }, - { "1c40", "0536", "Swiss ColorPAL" }, - { "1c40", "0537", "MIST Board" }, - { "1c4b", "026f", "Spirostik" }, - { "1c4f", "0002", "Keyboard TRACER Gamma Ivory" }, - { "1c4f", "0003", "HID controller" }, - { "1c4f", "000e", "Genius KB-120 Keyboard" }, - { "1c4f", "0026", "Keyboard" }, - { "1c4f", "0032", "Optical Mouse with Scroll Wheel" }, - { "1c4f", "0034", "XM102K Optical Wheel Mouse" }, - { "1c4f", "0063", "Touchpad (integrated in detachable keyboard of Chuwi SurBook)" }, - { "1c4f", "0065", "Optical Wheel Mouse [Rapoo N1130]" }, - { "1c4f", "3000", "Micro USB Web Camera" }, - { "1c4f", "3002", "WebCam SiGma Micro" }, - { "1c57", "1e45", "FPSGUN FG1000 Mouse" }, - { "1c6b", "a220", "DVD Writer Slimtype eSAU108" }, - { "1c6b", "a222", "DVD Writer Slimtype eTAU108" }, - { "1c6b", "a223", "DVD Writer Slimtype eUAU108" }, - { "1c71", "c004", "Braille Note Apex (braille terminal mode)" }, - { "1c73", "861f", "Anysee E30 USB 2.0 DVB-T Receiver" }, - { "1c75", "0288", "KeyStep" }, - { "1c7a", "0577", "Fingerprint Sensor" }, - { "1c7a", "0603", "ES603 Swipe Fingerprint Sensor" }, - { "1c7a", "0801", "Fingerprint Reader" }, - { "1c82", "0200", "spryTrac" }, - { "1c83", "0001", "RS150 V2" }, - { "1c83", "0002", "RFID card reader" }, - { "1c83", "0003", "Communicator" }, - { "1c83", "0005", "Mobile RFID Reader" }, - { "1c88", "0007", "SMI Grabber (EasyCAP DC60+ clone) (no firmware) [SMI-2021CBE]" }, - { "1c88", "003c", "SMI Grabber (EasyCAP DC60+ clone) [SMI-2021CBE]" }, - { "1c9e", "6061", "WL-72B 3.5G MODEM" }, - { "1ca1", "18ab", "SATA bridge" }, - { "1cac", "a332", "C8 Webcam" }, - { "1cac", "b288", "C18 Webcam" }, - { "1cb6", "6681", "IDC6681" }, - { "1cbe", "0002", "CDC serial port [TivaWare]" }, - { "1cbe", "00fd", "In-Circuit Debug Interface" }, - { "1cbe", "00ff", "Stellaris ROM DFU Bootloader" }, - { "1cbe", "0166", "CANAL USB2CAN" }, - { "1cbe", "0240", "McGill Robotics TM4C Microcontroller" }, - { "1cf1", "0001", "Sensor Terminal Board" }, - { "1cf1", "0004", "Wireless Handheld Terminal" }, - { "1cf1", "0017", "deRFusbSniffer 2.4 GHz" }, - { "1cf1", "0018", "deRFusb24E001" }, - { "1cf1", "0019", "deRFusb14E001" }, - { "1cf1", "001a", "deRFusb23E00" }, - { "1cf1", "001b", "deRFusb13E00" }, - { "1cf1", "001c", "deRFnode" }, - { "1cf1", "001d", "deRFnode / gateway" }, - { "1cf1", "0022", "deUSB level shifter" }, - { "1cf1", "0023", "deRFusbSniffer Sub-GHz" }, - { "1cf1", "0025", "deRFusb23E06" }, - { "1cf1", "0027", "deRFusb13E06" }, - { "1cf1", "0030", "ZigBee gateway [ConBee II]" }, - { "1d03", "0028", "iCreativ MIDI Controller" }, - { "1d09", "1026", "HSUPA Modem FLYING-LARK46-VER0.07 [Flying Angel]" }, - { "1d0d", "0214", "Trans-It Drive" }, - { "1d17", "0001", "AXiS-49 Harmonic Table MIDI Keyboard" }, - { "1d19", "1101", "DK DVB-T Dongle" }, - { "1d19", "1102", "DK mini DVB-T Dongle" }, - { "1d19", "1103", "DK 5217 DVB-T Dongle" }, - { "1d19", "1104", "MSI DigiVox Micro HD" }, - { "1d19", "6105", "Video grabber" }, - { "1d19", "610a", "Video grabber" }, - { "1d19", "8202", "DK DVBC/T DONGLE" }, - { "1d27", "0601", "Xtion" }, - { "1d34", "0001", "Fidget" }, - { "1d34", "0002", "Fidget (Basketball)" }, - { "1d34", "0003", "Fidget (Golf Ball)" }, - { "1d34", "0004", "Webmail Notifier" }, - { "1d34", "0008", "button" }, - { "1d34", "000a", "Mailbox Friends Alert" }, - { "1d34", "000d", "Big Red Button" }, - { "1d34", "0013", "LED Message Board" }, - { "1d34", "0020", "Stress Ball" }, - { "1d45", "1d45", "Foxlink Optical touch sensor" }, - { "1d45", "459d", "BenQ F5" }, - { "1d45", "465c", "Harrier Mini by EE" }, - { "1d4d", "0002", "Ralink RT2770/2720 802.11b/g/n Wireless LAN Mini-USB Device" }, - { "1d4d", "000c", "Ralink RT3070 802.11b/g/n Wireless Lan USB Device" }, - { "1d4d", "000e", "Ralink RT3070 802.11b/g/n Wireless Lan USB Device" }, - { "1d50", "1db5", "IDBG (DFU)" }, - { "1d50", "1db6", "IDBG" }, - { "1d50", "5117", "Neo1973/FreeRunner kernel usbnet (g_ether, CDC Ethernet) mode" }, - { "1d50", "5118", "Neo1973/FreeRunner Debug board (V2+)" }, - { "1d50", "5119", "Neo1973/FreeRunner u-boot cdc_acm serial port" }, - { "1d50", "511a", "HXD8 u-boot usbtty CDC ACM Mode" }, - { "1d50", "511b", "SMDK2440 u-boot usbtty CDC ACM mode" }, - { "1d50", "511c", "SMDK2443 u-boot usbtty CDC ACM mode" }, - { "1d50", "511d", "QT2410 u-boot usbtty CDC ACM mode" }, - { "1d50", "5120", "Neo1973/FreeRunner u-boot usbtty generic serial" }, - { "1d50", "5121", "Neo1973/FreeRunner kernel mass storage (g_storage) mode" }, - { "1d50", "5122", "Neo1973/FreeRunner kernel cdc_ether USB network" }, - { "1d50", "5123", "Neo1973/FreeRunner internal USB CSR4 module" }, - { "1d50", "5124", "Neo1973/FreeRunner Bluetooth Device ID service" }, - { "1d50", "5300", "Rockbox" }, - { "1d50", "530e", "iriver H10 20GB (Rockbox)" }, - { "1d50", "530f", "iriver H10 5/6GB (Rockbox)" }, - { "1d50", "5314", "Apple iPod Color/Photo (Rockbox)" }, - { "1d50", "5315", "Apple iPod Nano 1g (Rockbox)" }, - { "1d50", "5316", "Apple iPod Video (Rockbox)" }, - { "1d50", "5318", "Apple iPod 4g Grayscale (Rockbox)" }, - { "1d50", "5319", "Apple iPod Mini 1g (Rockbox)" }, - { "1d50", "531a", "Apple iPod Mini 2g (Rockbox)" }, - { "1d50", "531c", "Apple iPod Nano 2g (Rockbox)" }, - { "1d50", "531d", "Apple iPod Classic/6G (Rockbox)" }, - { "1d50", "5321", "Cowon D2 (Rockbox)" }, - { "1d50", "5329", "Toshiba Gigabeat S (Rockbox)" }, - { "1d50", "5332", "Sandisk Sansa e200 series (Rockbox)" }, - { "1d50", "5334", "Sandisk Sansa c200 series (Rockbox)" }, - { "1d50", "5337", "Sandisk Sansa Clip (Rockbox)" }, - { "1d50", "5338", "Sandisk Sansa e200v2 series (Rockbox)" }, - { "1d50", "5339", "Sandisk Sansa m200 v4 series (Rockbox)" }, - { "1d50", "533a", "Sandisk Sansa Fuze (Rockbox)" }, - { "1d50", "533b", "Sandisk Sansa c200v2 series (Rockbox)" }, - { "1d50", "533c", "Sandisk Sansa Clipv2 (Rockbox)" }, - { "1d50", "533e", "Sandisk Sansa Clip+ (Rockbox)" }, - { "1d50", "533f", "Sandisk Sansa Fuze v2 (Rockbox)" }, - { "1d50", "5340", "Sandisk Sansa Fuze+ (Rockbox)" }, - { "1d50", "5341", "Sandisk Sansa Zip (Rockbox)" }, - { "1d50", "5342", "Sandisk Sansa Connect (Rockbox)" }, - { "1d50", "5346", "Olympus M:Robe 500i (Rockbox)" }, - { "1d50", "5347", "Olympus m:robe MR-100 (Rockbox)" }, - { "1d50", "5359", "Creative Zen X-Fi Style (Rockbox)" }, - { "1d50", "535d", "Creative Zen X-Fi2 (Rockbox)" }, - { "1d50", "535e", "Creative Zen X-Fi3 (Rockbox)" }, - { "1d50", "5360", "Creative Zen X-Fi (Rockbox)" }, - { "1d50", "5361", "Creative ZEN Mozaic (Rockbox)" }, - { "1d50", "5362", "Creative Zen (Rockbox)" }, - { "1d50", "5364", "Philips GoGear SA9200 (Rockbox)" }, - { "1d50", "5365", "Philips GoGear HDD16x0 (Rockbox)" }, - { "1d50", "5366", "Philips GoGear HDD63x0 (Rockbox)" }, - { "1d50", "5378", "Onda VX747 (Rockbox)" }, - { "1d50", "5379", "Onda VX767 (Rockbox)" }, - { "1d50", "537b", "Onda VX777 (Rockbox)" }, - { "1d50", "538c", "Samsung YH-820 (Rockbox)" }, - { "1d50", "538d", "Samsung YH-920 (Rockbox)" }, - { "1d50", "538e", "Samsung YH-925 (Rockbox)" }, - { "1d50", "53a0", "Packard Bell Vibe 500 (Rockbox)" }, - { "1d50", "53b4", "Rockchip 27xx generic (Rockbox)" }, - { "1d50", "53be", "HiFiMAN HM-60x (Rockbox)" }, - { "1d50", "53bf", "HiFiMAN HM-801 (Rockbox)" }, - { "1d50", "53d2", "HiFi E.T. MA9 (Rockbox)" }, - { "1d50", "53d3", "HiFi E.T. MA9C (Rockbox)" }, - { "1d50", "53d4", "HiFi E.T. MA8 (Rockbox)" }, - { "1d50", "53d5", "HiFi E.T. MA8C (Rockbox)" }, - { "1d50", "53dc", "Sony NWZ-E370/E380 series (Rockbox)" }, - { "1d50", "53dd", "Sony NWZ-E360 series (Rockbox)" }, - { "1d50", "53e6", "IHIFI 760 (Rockbox)" }, - { "1d50", "53e7", "IHIFI 960 (Rockbox)" }, - { "1d50", "53ff", "Generic Rockbox device" }, - { "1d50", "6000", "Ubertooth Zero" }, - { "1d50", "6001", "Ubertooth Zero (DFU)" }, - { "1d50", "6002", "Ubertooth One" }, - { "1d50", "6003", "Ubertooth One (DFU)" }, - { "1d50", "6004", "LeoLipo" }, - { "1d50", "6005", "LED Flower S" }, - { "1d50", "6006", "LED Cube" }, - { "1d50", "6007", "LED Flower" }, - { "1d50", "6008", "Kisbee 802.15.4 transceiver" }, - { "1d50", "6009", "Adjacent Reality Tracker" }, - { "1d50", "600a", "AVR Programmer" }, - { "1d50", "600b", "Hypna Go Go" }, - { "1d50", "600c", "CatNip LPC1343 development board" }, - { "1d50", "600d", "Enhanced RoboBrrd Brain board" }, - { "1d50", "600e", "OpenRISC Ordb2a-ep4ce22 development board" }, - { "1d50", "600f", "Paparazzi Lisa/M (DFU)" }, - { "1d50", "6010", "OpenPipe: OSHW Bagpipes MIDI controller" }, - { "1d50", "6011", "LeoLipo (DFU)" }, - { "1d50", "6012", "Universal C64 Cartridge" }, - { "1d50", "6013", "DiscFerret magnetic disc analyser (bootloader)" }, - { "1d50", "6014", "DiscFerret magnetic disc analyser" }, - { "1d50", "6015", "Smoothieboard" }, - { "1d50", "6016", "phInterface" }, - { "1d50", "6017", "Black Magic Debug Probe (DFU)" }, - { "1d50", "6018", "Black Magic Debug Probe (Application)" }, - { "1d50", "6019", "4pi 5 axis motion controller" }, - { "1d50", "601a", "Paparazzi Lisa/M" }, - { "1d50", "601b", "IST-2 chronograph for bullet speeds" }, - { "1d50", "601c", "EPOSMote II" }, - { "1d50", "601d", "UDS18B20 temperature sensor" }, - { "1d50", "601e", "5x5 STM32 prototyping board" }, - { "1d50", "601f", "uNSF" }, - { "1d50", "6020", "Toad3" }, - { "1d50", "6021", "AlphaSphere" }, - { "1d50", "6022", "LightPack" }, - { "1d50", "6023", "Pixelkit" }, - { "1d50", "6024", "Illucia" }, - { "1d50", "6025", "Keyglove (HID)" }, - { "1d50", "6026", "Keyglove (Serial)" }, - { "1d50", "6027", "Key64 Keyboard" }, - { "1d50", "6028", "Teensy 2.0 Development Board [ErgoDox Keyboard]" }, - { "1d50", "6029", "Marlin 2.0 (Serial)" }, - { "1d50", "602a", "Marlin 2.0 (Mass Storage)" }, - { "1d50", "602b", "FPGALink" }, - { "1d50", "602c", "5nes5snes (5x8)" }, - { "1d50", "602d", "5nes5snes (4x12)" }, - { "1d50", "602e", "Flexibity" }, - { "1d50", "602f", "K-copter" }, - { "1d50", "6030", "USB-oscope" }, - { "1d50", "6031", "Handmade GSM GPS tracker" }, - { "1d50", "6032", "ncrmnt.org uISP" }, - { "1d50", "6033", "frobiac / adnw keyboard" }, - { "1d50", "6034", "Tiflomag Ergo 2" }, - { "1d50", "6035", "FreeLaserTag Gun" }, - { "1d50", "6036", "FreeLaserTag Big Brother" }, - { "1d50", "6037", "FreeLaserTag Node" }, - { "1d50", "6038", "Monaka" }, - { "1d50", "6039", "eXtreme Feedback Device" }, - { "1d50", "603a", "TiLDA" }, - { "1d50", "603b", "Raspiface" }, - { "1d50", "603c", "Paparazzi (bootloader)" }, - { "1d50", "603d", "Paparazzi (Serial)" }, - { "1d50", "603e", "Paparazzi (Mass Storage)" }, - { "1d50", "603f", "airGuitar" }, - { "1d50", "6040", "moco" }, - { "1d50", "6041", "AlphaSphere (bootloader)" }, - { "1d50", "6042", "Dspace robot controller" }, - { "1d50", "6043", "pc-power" }, - { "1d50", "6044", "open-usb-can (DFU)" }, - { "1d50", "6045", "open-usb-can" }, - { "1d50", "6046", "mimus-weigand" }, - { "1d50", "6047", "RfCat Chronos Dongle" }, - { "1d50", "6048", "RfCat Dons Dongle" }, - { "1d50", "6049", "RfCat Chronos bootloader" }, - { "1d50", "604a", "RfCat Dons bootloader" }, - { "1d50", "604b", "HackRF Jawbreaker Software-Defined Radio" }, - { "1d50", "604c", "Makibox A6" }, - { "1d50", "604d", "Paella Pulse height analyzer" }, - { "1d50", "604e", "Miniscope v2b" }, - { "1d50", "604f", "Miniscope v2c" }, - { "1d50", "6050", "GoodFET" }, - { "1d50", "6051", "pinocc.io" }, - { "1d50", "6052", "APB Team Robotic Development Board" }, - { "1d50", "6053", "Darkgame Controller" }, - { "1d50", "6054", "Satlab/AAUSAT3 BlueBox" }, - { "1d50", "6055", "RADiuS ER900TRS-02 transceiver with SMA Connector" }, - { "1d50", "6056", "The Glitch" }, - { "1d50", "6057", "OpenPipe MIDI Shield" }, - { "1d50", "6058", "Novena OTG port" }, - { "1d50", "6059", "xser serial" }, - { "1d50", "605a", "Daisho test" }, - { "1d50", "605b", "RfCat YARD Stick One" }, - { "1d50", "605c", "YARD Stick One bootloader" }, - { "1d50", "605d", "Funky Sensor v2" }, - { "1d50", "605e", "Blinkiverse Analog LED Fader" }, - { "1d50", "605f", "Small DIP package Cypress FX2" }, - { "1d50", "6060", "Data logger using the Cypress FX2" }, - { "1d50", "6061", "Power Manager" }, - { "1d50", "6062", "WhiteRabbit console and Wishbone bridge" }, - { "1d50", "6063", "CPC FPGA" }, - { "1d50", "6064", "CPC FPGA (DFU)" }, - { "1d50", "6065", "CPC FPGA (Serial)" }, - { "1d50", "6066", "Nuand BladeRF" }, - { "1d50", "6067", "Orbotron 9000 (Serial)" }, - { "1d50", "6068", "Orbotron 9000 (HID)" }, - { "1d50", "6069", "xser (DFU)" }, - { "1d50", "606a", "xser (legacy)" }, - { "1d50", "606b", "S08-245, urJtag compatible firmware for S08JS" }, - { "1d50", "606c", "Blinkytape full-color light tape" }, - { "1d50", "606d", "TinyG open source motion controller" }, - { "1d50", "606e", "Reefangel Evolution 1.0" }, - { "1d50", "606f", "Geschwister Schneider CAN adapter" }, - { "1d50", "6070", "Open Pinball Project" }, - { "1d50", "6071", "The Glitch HID" }, - { "1d50", "6072", "The Glitch Disk" }, - { "1d50", "6073", "The Glitch Serial" }, - { "1d50", "6074", "The Glitch MIDI" }, - { "1d50", "6075", "The Glitch RawHID" }, - { "1d50", "6076", "Vultureprog BIOS chip programmer" }, - { "1d50", "6077", "PaintDuino" }, - { "1d50", "6078", "DTplug" }, - { "1d50", "6079", "Mood Light" }, - { "1d50", "607a", "Fadecandy" }, - { "1d50", "607b", "RCDongle for IR remote control" }, - { "1d50", "607c", "OpenVizsla USB sniffer/analyzer" }, - { "1d50", "607d", "Spark Core Arduino-compatible board with WiFi" }, - { "1d50", "607e", "OSHUG Wuthering multi-tool" }, - { "1d50", "607f", "Spark Core Arduino-compatible board with WiFi (bootloader)" }, - { "1d50", "6080", "arcin arcade controller" }, - { "1d50", "6081", "BladeRF (bootloader)" }, - { "1d50", "6082", "Facecandy (DFU)" }, - { "1d50", "6083", "LightUp (bootloader)" }, - { "1d50", "6084", "arcin arcade controller (DFU)" }, - { "1d50", "6085", "IRKit for controlloing home electronics from iOS devices" }, - { "1d50", "6086", "OneRNG entropy device" }, - { "1d50", "6087", "Blinkytape (alternate endpoint config)" }, - { "1d50", "6088", "picp PIC16F145x based PIC16F145x programmer" }, - { "1d50", "6089", "Great Scott Gadgets HackRF One SDR" }, - { "1d50", "608a", "BLEduino" }, - { "1d50", "608b", "Loctronix ASR-2300 SDR/motion sensing module" }, - { "1d50", "608c", "Fx2lafw" }, - { "1d50", "608d", "Fx2lafw" }, - { "1d50", "608e", "Fx2lafw" }, - { "1d50", "608f", "Fx2lafw" }, - { "1d50", "6090", "Fx2lafw" }, - { "1d50", "6091", "Fx2lafw" }, - { "1d50", "6092", "Fx2lafw" }, - { "1d50", "6093", "Fx2lafw" }, - { "1d50", "6094", "Fx2lafw" }, - { "1d50", "6095", "Fx2lafw" }, - { "1d50", "6096", "LightUp (sketch)" }, - { "1d50", "6097", "Tessel JavaScript enabled Microcontroller with built-in WiFi" }, - { "1d50", "6098", "RFIDler" }, - { "1d50", "6099", "RASDR Radio Astronomy SDR Rx Interface" }, - { "1d50", "609a", "RASDR Radio Astronomy SDR Tx Interface" }, - { "1d50", "609b", "RASDR Radio Astronomy SDR (bootloader)" }, - { "1d50", "609c", "antiAFK keyboard" }, - { "1d50", "609d", "PIC16F145x bootloader" }, - { "1d50", "609e", "Clyde Lamp by Fabule (bootloader)" }, - { "1d50", "609f", "Clyde Lamp by Fabule (sketch)" }, - { "1d50", "60a0", "Smoothiepanel robotic control interface" }, - { "1d50", "60a1", "Airspy" }, - { "1d50", "60a2", "barebox (DFU)" }, - { "1d50", "60a3", "keyboard (bootloader)" }, - { "1d50", "60a4", "Papilio Duo (AVR)" }, - { "1d50", "60a5", "Papilio Duo (FPGA)" }, - { "1d50", "60a6", "HydraBus/HydraNFC (bootloader)" }, - { "1d50", "60a7", "HydraBus/HydraNFC" }, - { "1d50", "60a8", "reserved" }, - { "1d50", "60a9", "Blinky Light Controller (DFU)" }, - { "1d50", "60aa", "Blinky Light Controller" }, - { "1d50", "60ab", "AllPixel" }, - { "1d50", "60ac", "OpenBLT generic microcontroller (bootloader)" }, - { "1d50", "60ad", "Clasic Gamepad Adapter (NES)" }, - { "1d50", "60ae", "Clasic Gamepad Adapter (N64)" }, - { "1d50", "60af", "Clasic Gamepad Adapter (DB9)" }, - { "1d50", "60b0", "Waterott Arduino based Clock (caterina bootloader)" }, - { "1d50", "60b1", "Drinkbot (processing)" }, - { "1d50", "60b2", "Drinkbot (OTG-tablet support)" }, - { "1d50", "60b3", "calc.pw password generator device (standard)" }, - { "1d50", "60b4", "calc.pw password generator device (enhanced)" }, - { "1d50", "60b5", "TimVideos' HDMI2USB (FX2) - Unconfigured device" }, - { "1d50", "60b6", "TimVideos' HDMI2USB (FX2) - Firmware load/upgrade" }, - { "1d50", "60b7", "TimVideos' HDMI2USB (FX2) - HDMI/DVI Capture Device" }, - { "1d50", "60b8", "TimVideos' HDMI2USB (Soft+UTMI) - Unconfigured device" }, - { "1d50", "60b9", "TimVideos' HDMI2USB (Soft+UTMI) - Firmware upgrade" }, - { "1d50", "60ba", "TimVideos' HDMI2USB (Soft+UTMI) - HDMI/DVI Capture Device" }, - { "1d50", "60bc", "Simple CC25xx programmer / serial board" }, - { "1d50", "60bd", "Open Source control interface for multimedia applications" }, - { "1d50", "60be", "Pixelmatix Aurora (bootloader)" }, - { "1d50", "60bf", "Pixelmatix Aurora" }, - { "1d50", "60c0", "Nucular Keyboard adapter" }, - { "1d50", "60c1", "BrewBit Model-T pOSHW temperature controller for homebrewers (bootloader)" }, - { "1d50", "60c2", "BrewBit Model-T pOSHW temperature controller for homebrewers" }, - { "1d50", "60c3", "X Antenna Tracker arduino board" }, - { "1d50", "60c4", "CAN bus communication device" }, - { "1d50", "60c5", "PIC16F1 bootloader" }, - { "1d50", "60c6", "USBtrng hardware random number generator" }, - { "1d50", "60c7", "Zubax GNSS positioning module for light UAV systems" }, - { "1d50", "60c8", "Xlink data transfer and control system for Commodore C64" }, - { "1d50", "60c9", "random number generator" }, - { "1d50", "60ca", "FinalKey password manager" }, - { "1d50", "60cb", "PteroDAQ Data Acquisition on FRDM-KL25Z and future boards" }, - { "1d50", "60cc", "LamDiNao" }, - { "1d50", "60cd", "Open Lighting DMX512 / RDM widget" }, - { "1d50", "60de", "Cryptech.is random number generator" }, - { "1d50", "60df", "Numato Opsis HDMI2USB board (unconfigured)" }, - { "1d50", "60e0", "Numato Opsis HDMI2USB board (JTAG Programming Mode)" }, - { "1d50", "60e1", "Numato Opsis HDMI2USB board (User Mode)" }, - { "1d50", "60e2", "Osmocom SIMtrace 2 (DFU)" }, - { "1d50", "60e3", "Osmocom SIMtrace 2" }, - { "1d50", "60e4", "3D printed racing game - (Catalina CDC bootloader)" }, - { "1d50", "60e5", "3D printed racing game" }, - { "1d50", "60e6", "replacement for GoodFET/FaceDancer - GreatFet" }, - { "1d50", "60e7", "replacement for GoodFET/FaceDancer - GreatFet target" }, - { "1d50", "60e8", "Alpen Clack keyboard" }, - { "1d50", "60e9", "keyman64 keyboard itercepter" }, - { "1d50", "60ea", "Wiggleport FPGA-based I/O board" }, - { "1d50", "60eb", "candleLight CAN adapter" }, - { "1d50", "60ec", "Duet 2 WiFi or Duet 2 Ethernet 3D printer control electronics" }, - { "1d50", "60ed", "Duet 2 Maestro 3D printer control electronics" }, - { "1d50", "60ee", "Duet 3 motion control electronics" }, - { "1d50", "60f0", "UDAD-T1 data acquisition device (boot)" }, - { "1d50", "60f1", "UDAD-T1 data acquisition device" }, - { "1d50", "60f2", "UDAD-T2 data acquisition device (boot)" }, - { "1d50", "60f3", "UDAD-T2 data acquisition device" }, - { "1d50", "60f4", "Uniti ARC motor controller" }, - { "1d50", "60f5", "EightByEight Blinky Badge (DFU)" }, - { "1d50", "60f6", "EightByEight Blinky Badge" }, - { "1d50", "60f7", "cardio NFC/RFID card reader (bootloader)" }, - { "1d50", "60f8", "cardio NFC/RFID card reader" }, - { "1d50", "60fc", "OnlyKey Two-factor Authentication and Password Solution" }, - { "1d50", "6100", "overlay64 video overlay module" }, - { "1d50", "6104", "ScopeFun open source instrumentation" }, - { "1d50", "6108", "Myriad-RF LimeSDR" }, - { "1d50", "610c", "Magic Keys (boot)" }, - { "1d50", "610d", "Magic Keys" }, - { "1d50", "6114", "MIDI key" }, - { "1d50", "6118", "Thomson MO5 keyboard" }, - { "1d50", "6122", "Ultimate Hacking Keyboard" }, - { "1d50", "614c", "dwtk In-Circuit Emulator" }, - { "1d50", "614d", "Generic Display" }, - { "1d50", "8085", "Box0 (box0-v5)" }, - { "1d50", "cc15", "rad1o badge for CCC summer camp 2015" }, - { "1d57", "0005", "Wireless Receiver (Keyboard and Mouse)" }, - { "1d57", "0006", "Wireless Receiver (RC Laser Pointer)" }, - { "1d57", "000c", "Optical Mouse" }, - { "1d57", "130f", "2.4Ghz wireless optical mouse receiver" }, - { "1d57", "2400", "Wireless Mouse Receiver" }, - { "1d57", "32da", "2.4GHz Receiver (Keyboard and Mouse)" }, - { "1d57", "83d0", "Click-mouse!" }, - { "1d57", "ac01", "Wireless Receiver (Keyboard and Mouse)" }, - { "1d57", "ac02", "ViFit Activity Tracker" }, - { "1d57", "ac08", "RFID Receiver (Keyboard)" }, - { "1d57", "ad02", "SE340D PC Remote Control" }, - { "1d57", "ad03", "[T3] 2.4GHz and IR Air Mouse Remote Control" }, - { "1d57", "af01", "AUVIO Universal Remote Receiver for PlayStation 3" }, - { "1d57", "af03", "Wireless Receiver" }, - { "1d57", "fa20", "2.4GHz Wireless Receiver (Mini Keyboard & Mouse)" }, - { "1d5c", "2000", "FL2000/FL2000DX VGA/DVI/HDMI Adapter" }, - { "1d6b", "0001", "1.1 root hub" }, - { "1d6b", "0002", "2.0 root hub" }, - { "1d6b", "0003", "3.0 root hub" }, - { "1d6b", "0100", "PTP Gadget" }, - { "1d6b", "0101", "Audio Gadget" }, - { "1d6b", "0102", "EEM Gadget" }, - { "1d6b", "0103", "NCM (Ethernet) Gadget" }, - { "1d6b", "0104", "Multifunction Composite Gadget" }, - { "1d6b", "0105", "FunctionFS Gadget" }, - { "1d6b", "0200", "Qemu Audio Device" }, - { "1d88", "0001", "Measurement Device [MarECon]" }, - { "1d88", "0002", "Probe" }, - { "1d88", "0003", "Surface Measurement [PS10]" }, - { "1d90", "201e", "PPU-700" }, - { "1d90", "2037", "CL-S631 Barcode Printer" }, - { "1d90", "20f0", "Thermal Receipt Printer [CT-E351]" }, - { "1d9d", "1010", "Docking Station Topline 2009" }, - { "1d9d", "1011", "Docking Station Topline 2012" }, - { "1d9d", "1012", "Docking Station Topline 2016" }, - { "1dd3", "0001", "Expert I/O 1000" }, - { "1de1", "1101", "Generic Display Device (Mass storage mode)" }, - { "1de1", "c101", "Generic Display Device" }, - { "1df7", "2500", "RSP1" }, - { "1df7", "3000", "RSP1a" }, - { "1df7", "3010", "RSP2/RSP2pro" }, - { "1df7", "3020", "RSPduo" }, - { "1df7", "3030", "RSPdx" }, - { "1e0e", "f000", "iCON 210 UMTS Surfstick" }, - { "1e10", "2004", "Sony 1.3MP 1/3\" ICX445 IIDC video camera [Chameleon]" }, - { "1e17", "0001", "instadose dosimeter" }, - { "1e1d", "0165", "Secure Pen drive" }, - { "1e1d", "1101", "FlashBlu Flash Drive" }, - { "1e29", "0101", "CPX Adapter" }, - { "1e29", "0102", "CPX Adapter >=HW10.09 [CP2102]" }, - { "1e29", "0401", "iL3-TP [AT90USB646]" }, - { "1e29", "0402", "FTDI232 [EasyPort]" }, - { "1e29", "0403", "FTDI232 [EasyPort Mini]" }, - { "1e29", "0404", "FTDI232 [Netzteil-GL]" }, - { "1e29", "0405", "FTDI232 [MotorPrüfstand]" }, - { "1e29", "0406", "STM32F103 [EasyKit]" }, - { "1e29", "0407", "LPC2378 [Robotino]" }, - { "1e29", "0408", "LPC2378 [Robotino-Arm]" }, - { "1e29", "0409", "LPC2378 [Robotino-Arm Bootloader]" }, - { "1e29", "040a", "LPC2378 [Robotino Bootloader]" }, - { "1e29", "040b", "LPC2378 [Robotino XT]" }, - { "1e29", "040c", "LPC2378 [Robotino XT Bootloader]" }, - { "1e29", "040d", "LPC2378 [Robotino 3]" }, - { "1e29", "040e", "LPC2378 [Robotino 3 Bootloader]" }, - { "1e29", "040f", "LPC2148 [Robotino gripper]" }, - { "1e29", "0410", "LPC2148 [Robotino IR panel]" }, - { "1e29", "0501", "CP2102 [CMSP]" }, - { "1e29", "0601", "CMMP-AS" }, - { "1e29", "0602", "FTDI232 [CMMS]" }, - { "1e2d", "004f", "EGS3 GSM/GPRS modem" }, - { "1e2d", "0054", "PH8 wireless module" }, - { "1e2d", "0058", "Wireless Module [Cinterion EHS6]" }, - { "1e2d", "0059", "Wireless Module [Cinterion BGx]" }, - { "1e2d", "005b", "Zoom 4625 Modem" }, - { "1e2d", "0061", "ALSx PLSx LTE modem" }, - { "1e2d", "00a0", "Cinterion ELS31-V" }, - { "1e3d", "198a", "Flash Disk" }, - { "1e3d", "2093", "CBM209x Flash Drive (OEM)" }, - { "1e3d", "4082", "CBM4082 SD Card Reader" }, - { "1e41", "0001", "CS328A PC Oscilloscope" }, - { "1e41", "0004", "CS448" }, - { "1e44", "7220", "SM-BCR2" }, - { "1e4e", "0100", "WebCam" }, - { "1e4e", "0102", "GL-UPC822 UVC WebCam" }, - { "1e4e", "0109", "EtronTech CMOS based eSP570 WebCam [Onyx Titanium TC101]" }, - { "1e54", "2030", "2030 USB Keyboard" }, - { "1e68", "001b", "DataStation maxi g.u" }, - { "1e68", "004c", "DataStation Pocket Click" }, - { "1e68", "0050", "DataStation maxi light" }, - { "1e68", "1045", "ST70408-3 [SurfTab breeze 7.0 quad 3G] (MTP Mode)" }, - { "1e68", "1046", "ST70408-3 [SurfTab breeze 7.0 quad 3G] (PTP Mode)" }, - { "1e71", "0001", "Avatar Optical Mouse" }, - { "1e71", "170e", "Kraken X" }, - { "1e71", "1711", "Grid+ V3" }, - { "1e71", "1714", "Smart Device" }, - { "1e71", "1715", "Kraken M22" }, - { "1e71", "2006", "Smart Device V2" }, - { "1e74", "2211", "MP300" }, - { "1e74", "2647", "2 GB 2 Go Video MP3 Player [MP601-2G]" }, - { "1e74", "2659", "Coby 4GB Go Video MP3 Player [MP620-4G]" }, - { "1e74", "4641", "A8705 MP3/Video Player" }, - { "1e74", "6511", "MP705-8G MP3 player" }, - { "1e74", "6512", "MP705-4G" }, - { "1e74", "7111", "MP957 Music and Video Player" }, - { "1e7b", "0002", "HF2" }, - { "1e7b", "0003", "UHF" }, - { "1e7b", "0004", "MFLI" }, - { "1e7d", "2c24", "Pyra Mouse (wired)" }, - { "1e7d", "2c2e", "Lua Mouse" }, - { "1e7d", "2c38", "Kiro Mouse" }, - { "1e7d", "2ced", "Kone Mouse" }, - { "1e7d", "2cee", "Kova 2016 Gray Mouse" }, - { "1e7d", "2cef", "Kova 2016 White Mouse" }, - { "1e7d", "2cf0", "Kova 2016 Black Mouse" }, - { "1e7d", "2cf6", "Pyra Mouse (wireless)" }, - { "1e7d", "2d50", "Kova[+] Mouse" }, - { "1e7d", "2d51", "Kone[+] Mouse" }, - { "1e7d", "2d5a", "Savu Mouse" }, - { "1e7d", "2db4", "Kone Pure Optical Mouse" }, - { "1e7d", "2dbe", "Kone Pure Mouse" }, - { "1e7d", "2dbf", "Kone Pure Military Mouse" }, - { "1e7d", "2dc2", "Kone Pure Optical Black Mouse" }, - { "1e7d", "2dcb", "Kone Pure SE(L) Mouse" }, - { "1e7d", "2e22", "Kone XTD Mouse" }, - { "1e7d", "2e23", "Kone XTD Optical Mouse" }, - { "1e7d", "2e27", "Kone AIMO Mouse" }, - { "1e7d", "2e4a", "Tyon Black Mouse" }, - { "1e7d", "2e4b", "Tyon White Mouse" }, - { "1e7d", "2e7c", "Nyth Black Mouse" }, - { "1e7d", "2e7d", "Nyth White Mouse" }, - { "1e7d", "2f76", "Sova Keyboard" }, - { "1e7d", "2f94", "Sova MK Keyboard" }, - { "1e7d", "2fa8", "Suora Keyboard" }, - { "1e7d", "2fc6", "Skeltr Keyboard" }, - { "1e7d", "2fda", "Ryos MK FX Keyboard" }, - { "1e7d", "30d4", "Arvo Keyboard" }, - { "1e7d", "3138", "Ryos MK Keyboard" }, - { "1e7d", "316a", "Ryos TKL Keyboard" }, - { "1e7d", "319c", "Isku Keyboard" }, - { "1e7d", "31ce", "Ryos MK Glow Keyboard" }, - { "1e7d", "3232", "Ryos MK Pro Keyboard" }, - { "1e7d", "3246", "Suora FX Keyboard" }, - { "1e7d", "3264", "Isku FX Keyboard" }, - { "1e8e", "6001", "P8GR" }, - { "1e91", "b0b1", "miniStack" }, - { "1ea7", "0030", "Trust GXT 158 Orna Laser Gaming Mouse" }, - { "1ea7", "0064", "2.4GHz Wireless rechargeable vertical mouse [More&Better]" }, - { "1ea7", "0066", "[Mediatrack Edge Mini Keyboard]" }, - { "1ea7", "0907", "Keyboard" }, - { "1ea7", "1002", "Vintorez Gaming Mouse" }, - { "1ea7", "2007", "SHARK ZONE K30 Illuminated Gaming Keyboard" }, - { "1eab", "0103", "HR200 Barcode scanner engine (HID keyboard)" }, - { "1eab", "0106", "HR200 Barcode scanner engine (Serial CDC)" }, - { "1eab", "0110", "HR200 Barcode scanner engine (HID Pos)" }, - { "1eab", "0c03", "HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (HID keyboard)" }, - { "1eab", "0c06", "HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (USB Serial CDC)" }, - { "1eab", "0c10", "HR100/HR3260 cordless/HR3290 cordless/BS80 Barcode scanner engine (HID Pos)" }, - { "1eab", "0d03", "EM2028 Barcode scanner engine (HID keyboard)" }, - { "1eab", "0d06", "EM2028 Barcode scanner engine (Serial CDC)" }, - { "1eab", "0d10", "EM2028 Barcode scanner engine (HID Pos)" }, - { "1eab", "1303", "EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (HID keyboard)" }, - { "1eab", "1306", "EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (USB serial CDC)" }, - { "1eab", "1310", "EM30xx/EM20xx/HR3260 corded/HR200C Barcode scanner engine (HID Pos)" }, - { "1eab", "1403", "HR15-xx Barcode scanner engine (HID keyboard)" }, - { "1eab", "1406", "HR15-xx Barcode scanner engine (Serial CDC)" }, - { "1eab", "1410", "HR15-xx Barcode scanner engine (HID Pos)" }, - { "1eab", "1603", "FM100-M/3250 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1606", "FM100-M/3250 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1610", "FM100-M/3250 Barcode scanner engine (HID Pos)" }, - { "1eab", "1903", "EM1300 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1906", "EM1300 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1910", "EM1300 Barcode scanner engine (HID Pos)" }, - { "1eab", "1a03", "HR3290 corded/HR22 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1a06", "HR3290 corded/HR22 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1a10", "HR3290 corded/HR22 Barcode scanner engine (HID Pos)" }, - { "1eab", "1c03", "HR2150 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1c06", "HR2150 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1c10", "HR2150 Barcode scanner engine (HID Pos)" }, - { "1eab", "1d03", "FM430 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1d06", "FM430 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1d10", "FM430 Barcode scanner engine (HID Pos)" }, - { "1eab", "1e03", "HR42 Barcode scanner engine (HID keyboard)" }, - { "1eab", "1e06", "HR42 Barcode scanner engine (Serial CDC)" }, - { "1eab", "1e10", "HR42 Barcode scanner engine (HID Pos)" }, - { "1eab", "1f03", "HR11+ Barcode scanner engine (HID keyboard)" }, - { "1eab", "1f06", "HR11+ Barcode scanner engine (Serial CDC)" }, - { "1eab", "1f10", "HR11+ Barcode scanner engine (HID Pos)" }, - { "1eab", "2003", "EM2037v2 Barcode scanner engine (HID keyboard)" }, - { "1eab", "2006", "EM2037v2 Barcode scanner engine (Serial CDC)" }, - { "1eab", "2010", "EM2037v2 Barcode scanner engine (HID Pos)" }, - { "1eab", "8003", "EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (HID keyboard)" }, - { "1eab", "8006", "EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (USB Serial CDC)" }, - { "1eab", "8010", "EM13x5-LD/HR15-70/HR100-70/HR12/HR1150-70 Barcode scanner engine (HID Pos)" }, - { "1eab", "8203", "EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (HID keyboard)" }, - { "1eab", "8206", "EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (USB Serial CDC)" }, - { "1eab", "8210", "EM3080-01/EM3095/FR20/FM30 Barcode scanner engine (HID Pos)" }, - { "1eab", "8303", "HR2160 Barcode scanner engine (HID keyboard)" }, - { "1eab", "8306", "HR2160 Barcode scanner engine (Serial CDC)" }, - { "1eab", "8310", "HR2160 Barcode scanner engine (HID Pos)" }, - { "1eaf", "0003", "Maple DFU interface" }, - { "1eaf", "0004", "Maple serial interface" }, - { "1eb8", "7f00", "MW-U3500 WiMAX adapter" }, - { "1ecb", "02e2", "JMR1140 [Jiofi]" }, - { "1ed8", "0004", "Mustang I/II" }, - { "1ed8", "0005", "Mustang III/IV/V" }, - { "1ed8", "0006", "Mustang I/II [Firmware Update]" }, - { "1ed8", "0007", "Mustang III/IV/V [Firmware Update]" }, - { "1ed8", "0010", "Mustang Mini" }, - { "1ed8", "0011", "Mustang Mini [Firmware Update]" }, - { "1ed8", "0014", "Mustang I (V.2)" }, - { "1ed8", "0016", "Mustang IV v.2" }, - { "1eda", "2012", "Air2210 54 Mbps Wireless Adapter" }, - { "1eda", "2210", "Air2210 54 Mbps Wireless Adapter" }, - { "1eda", "2310", "Air2310 150 Mbps Wireless Adapter" }, - { "1eda", "2410", "Air2410 300 Mbps Wireless Adapter" }, - { "1edb", "bd3b", "Intensity Shuttle" }, - { "1edb", "bd46", "Mini Converter Analog to SDI" }, - { "1edb", "bd75", "2.5K Cinema Camera (BMCC)" }, - { "1ee8", "0014", "MT833UP" }, - { "1ef6", "2233", "Cassidian NH90 STTE" }, - { "1ef6", "5064", "FDR Interface" }, - { "1ef6", "5523", "Cassidian SSDC Adapter II" }, - { "1ef6", "5545", "Cassidian SSDC Adapter III" }, - { "1ef6", "5648", "RIU CSMU/BSD" }, - { "1ef6", "564a", "Cassidian RIU CSMU/BSD Simulator" }, - { "1f0c", "2000", "HP StreamSmart 410 [NW278AA]" }, - { "1f28", "0020", "CDMA USB Modem A600" }, - { "1f28", "0021", "CD INSTALLER USB Device" }, - { "1f3a", "1000", "Prestigio PER3464B ebook reader (Mass storage mode)" }, - { "1f3a", "1002", "mediacom XPRO 415" }, - { "1f3a", "1010", "Android device in fastboot mode" }, - { "1f3a", "efe8", "sunxi SoC OTG connector in FEL/flashing mode" }, - { "1f44", "0001", "NM-1000 scanner" }, - { "1f48", "0627", "Data capturing system" }, - { "1f48", "0628", "Data capturing and control module" }, - { "1f4d", "a115", "EVOLVEO XtraTV stick [DVB-T]" }, - { "1f4d", "b803", "Lifeview LV5TDLX DVB-T [RTL2832U]" }, - { "1f4d", "c803", "NotOnlyTV (Lifeview) LV5TDLX DVB-T [RTL2832U]" }, - { "1f4d", "d220", "Geniatech T220 DVB-T2 TV Stick" }, - { "1f52", "0001", "Ultima 49 Printer" }, - { "1f52", "0002", "Ultima 90 Printer" }, - { "1f52", "0003", "FormsPro 50 Printer" }, - { "1f52", "0004", "Ultima 90+ Printer" }, - { "1f6f", "0023", "Jawbone Jambox" }, - { "1f6f", "8000", "Jawbone Jambox - Updating" }, - { "1f75", "0611", "IS611 SATA/PATA Bridge Controller" }, - { "1f75", "0621", "IS621 SATA Storage Controller" }, - { "1f75", "0888", "IS888 SATA Storage Controller" }, - { "1f75", "0902", "IS902 UFD controller" }, - { "1f75", "0916", "IS916 Flash Drive" }, - { "1f75", "0917", "IS917 Mass storage" }, - { "1f75", "0918", "IS918 Flash Drive" }, - { "1f82", "0001", "PrecisionHD Camera" }, - { "1f84", "1f7e", "Lateral Flow Engine" }, - { "1f87", "0002", "Multi-touch HID Controller" }, - { "1f9b", "0241", "AirView2-EXT" }, - { "1f9b", "b0b1", "UniFi VoIP Phone" }, - { "1fab", "104d", "ES65" }, - { "1fac", "0232", "U770 3G/4G Wimax/4G LTE Modem" }, - { "1fae", "0040", "M311 Fingerprint Scanner" }, - { "1fae", "212c", "M30x (Mercury) fingerprint sensor" }, - { "1fb2", "0001", "Wi-Fi Body Scale (WBS01)" }, - { "1fbd", "0001", "Expert Key - Data acquisition system" }, - { "1fbd", "0004", "MetiOS Device (RNDIS)" }, - { "1fbd", "0005", "Loggito" }, - { "1fbd", "0006", "LoggitoLab 8 AI-RTD" }, - { "1fbd", "0007", "LoggitoLab 8 TC" }, - { "1fbd", "0008", "LoggitoLab 4 AI-RTD 4 TC" }, - { "1fc9", "0003", "LPC1343" }, - { "1fc9", "000c", "LPC4330FET180 [ARM Cortex M4 + M0] (device firmware upgrade mode)" }, - { "1fc9", "0082", "LPC4330FET180 [ARM Cortex M4 + M0] (mass storage controller mode)" }, - { "1fc9", "010b", "PR533" }, - { "1fc9", "0126", "i.MX 7ULP SystemOnChip in RecoveryMode" }, - { "1fc9", "012b", "i.MX 8M Dual/8M QuadLite/8M Quad Serial Downloader" }, - { "1fc9", "5002", "PTN5002 [Startech VGA/DVI-D adapter]" }, - { "1fc9", "8124", "SharkRF Bootloader" }, - { "1fc9", "824c", "LumiNode1" }, - { "1fde", "0001", "UART Bridge" }, - { "1fe7", "1000", "VW100 series CDMA EV-DO Rev.A modem" }, - { "1ff7", "0013", "CVTouch Screen (HID)" }, - { "1ff7", "001a", "Human Interface Device" }, - { "1ffb", "0081", "AVR Programmer" }, - { "1ffb", "0083", "Jrk 21v3 Motor Controller" }, - { "1ffb", "0089", "Micro Maestro 6-Servo Controller" }, - { "1ffb", "008a", "Mini Maestro 12-Channel Servo Controller" }, - { "1ffb", "008b", "Mini Maestro 18-Channel Servo Controller" }, - { "1ffb", "008c", "Mini Maestro 24-Channel Servo Controller" }, - { "1ffb", "00b0", "AVR Programmer v2" }, - { "2000", "1f0c", "HP StreamSmart 410 [NW278AA]" }, - { "2001", "0001", "DWL-120 WIRELESS ADAPTER" }, - { "2001", "0201", "DHN-120 10Mb Home Phoneline Adapter" }, - { "2001", "1a00", "DUB-E100 Fast Ethernet Adapter(rev.A) [ASIX AX88172]" }, - { "2001", "1a02", "DUB-E100 Fast Ethernet Adapter(rev.C1) [ASIX AX88772]" }, - { "2001", "200c", "10/100 Ethernet" }, - { "2001", "3101", "DWA-182 AC1200 DB Wireless Adapter(rev.A1) [Broadcom BCM43526]" }, - { "2001", "3200", "DWL-120 802.11b Wireless Adapter(rev.E1) [Atmel at76c503a]" }, - { "2001", "3301", "DWA-130 802.11n Wireless N Adapter(rev.C1) [Realtek RTL8192U]" }, - { "2001", "3306", "DWL-G122 Wireless Adapter(rev.F1) [Realtek RTL8188SU]" }, - { "2001", "3308", "DWA-121 802.11n Wireless N 150 Pico Adapter [Realtek RTL8188CUS]" }, - { "2001", "3309", "DWA-135 802.11n Wireless N Adapter(rev.A1) [Realtek RTL8192CU]" }, - { "2001", "330a", "DWA-133 802.11n Wireless N Adapter [Realtek RTL8192CU]" }, - { "2001", "330d", "DWA-131 802.11n Wireless N Nano Adapter (rev.B1) [Realtek RTL8192CU]" }, - { "2001", "330f", "DWA-125 Wireless N 150 Adapter(rev.D1) [Realtek RTL8188ETV]" }, - { "2001", "3310", "DWA-123 Wireless N 150 Adapter (rev.D1)" }, - { "2001", "3314", "DWA-171 AC600 DB Wireless Adapter(rev.A1) [Realtek RTL8811AU]" }, - { "2001", "3315", "DWA-182 Wireless AC Dualband Adapter(rev.C) [Realtek RTL8812AU]" }, - { "2001", "3317", "DWA-137 Wireless N High-Gain Adapter [Ralink RT5372]" }, - { "2001", "3319", "DWA-131 Wireless N Nano Adapter (Rev. E1) [Realtek RTL8192EU]" }, - { "2001", "3500", "Elitegroup Computer Systems WLAN card WL-162" }, - { "2001", "3700", "DWL-122 802.11b [Intersil Prism 3]" }, - { "2001", "3701", "DWL-G120 Spinnaker 802.11g [Intersil ISL3886]" }, - { "2001", "3702", "DWL-120 802.11b Wireless Adapter(rev.F) [Intersil ISL3871]" }, - { "2001", "3703", "AirPlus G DWL-G122 Wireless Adapter(rev.A1) [Intersil ISL3880]" }, - { "2001", "3704", "AirPlus G DWL-G122 Wireless Adapter(rev.A2) [Intersil ISL3887]" }, - { "2001", "3705", "AirPlus G DWL-G120 Wireless Adapter(rev.C) [Intersil ISL3887]" }, - { "2001", "3761", "IEEE 802.11g USB2.0 Wireless Network Adapter-PN" }, - { "2001", "3a00", "DWL-AG132 [Atheros AR5523]" }, - { "2001", "3a01", "DWL-AG132 (no firmware) [Atheros AR5523]" }, - { "2001", "3a02", "DWL-G132 [Atheros AR5523]" }, - { "2001", "3a03", "DWL-G132 (no firmware) [Atheros AR5523]" }, - { "2001", "3a04", "DWL-AG122 [Atheros AR5523]" }, - { "2001", "3a05", "DWL-AG122 (no firmware) [Atheros AR5523]" }, - { "2001", "3a80", "AirPlus Xtreme G DWL-G132 Wireless Adapter" }, - { "2001", "3a81", "predator Bootloader Download" }, - { "2001", "3a82", "AirPremier AG DWL-AG132 Wireless Adapter" }, - { "2001", "3a83", "predator Bootloader Download" }, - { "2001", "3b00", "AirPlus DWL-120+ Wireless Adapter [Texas Instruments ACX100USB]" }, - { "2001", "3b01", "WLAN Boot Device" }, - { "2001", "3c00", "AirPlus G DWL-G122 Wireless Adapter(rev.B1) [Ralink RT2571]" }, - { "2001", "3c01", "AirPlus AG DWL-AG122 Wireless Adapter" }, - { "2001", "3c02", "AirPlus G DWL-G122 Wireless Adapter" }, - { "2001", "3c05", "DUB-E100 Fast Ethernet Adapter(rev.B1) [ASIX AX88772]" }, - { "2001", "3c15", "DWA-140 RangeBooster N Adapter(rev.B3) [Ralink RT5372]" }, - { "2001", "3c17", "DWA-123 Wireless N 150 Adapter(rev.A1) [Ralink RT3370]" }, - { "2001", "3c19", "DWA-125 Wireless N 150 Adapter(rev.A3) [Ralink RT5370]" }, - { "2001", "3c1a", "DWA-160 802.11abgn Xtreme N Dual Band Adapter(rev.B2) [Ralink RT5572]" }, - { "2001", "3c1b", "DWA-127 Wireless N 150 High-Gain Adapter(rev.A1) [Ralink RT3070]" }, - { "2001", "3c1e", "DWA-125 Wireless N 150 Adapter(rev.B1) [Ralink RT5370]" }, - { "2001", "4000", "DSB-650C Ethernet [klsi]" }, - { "2001", "4001", "DSB-650TX Ethernet [pegasus]" }, - { "2001", "4002", "DSB-650TX Ethernet [pegasus]" }, - { "2001", "4003", "DSB-650TX-PNA Ethernet [pegasus]" }, - { "2001", "400b", "10/100 Ethernet" }, - { "2001", "4102", "10/100 Ethernet" }, - { "2001", "4a00", "DUB-1312 Gigabit Ethernet Adapter" }, - { "2001", "5100", "DSL-200 ADSL ATM Modem" }, - { "2001", "5102", "DSL-200 ADSL Loader" }, - { "2001", "5b00", "Remote NDIS Network Device" }, - { "2001", "9414", "Cable Modem" }, - { "2001", "9b00", "Broadband Cable Modem Remote NDIS Device" }, - { "2001", "abc1", "DSB-650 Ethernet [pegasus]" }, - { "2001", "f013", "DLink 7 port USB2.0 Hub" }, - { "2001", "f103", "DUB-H7 7-port USB 2.0 hub" }, - { "2001", "f10d", "Accent Communications Modem" }, - { "2001", "f110", "DUB-AV300 A/V Capture" }, - { "2001", "f111", "DBT-122 Bluetooth adapter" }, - { "2001", "f112", "DUB-T210 Audio Device" }, - { "2001", "f116", "Formosa 2" }, - { "2001", "f117", "Formosa 3" }, - { "2001", "f118", "Formosa 4" }, - { "2003", "ea61", "dc3500" }, - { "2009", "5004", "datAshur 4GB" }, - { "2009", "5016", "datAshur 16GB" }, - { "2009", "5032", "datAshur 32GB" }, - { "200c", "100b", "Play audio soundcard" }, - { "2013", "0242", "QuatroStick 510e" }, - { "2013", "0245", "PCTV 73ESE" }, - { "2013", "0246", "PCTV 74E" }, - { "2013", "0248", "PCTV 282E" }, - { "2013", "024c", "DVB-S2 Stick 460e" }, - { "2013", "024f", "nanoStick T2 290e" }, - { "2013", "0251", "QuatroStick nano 520e" }, - { "2013", "0258", "DVB-S2 Stick 461e" }, - { "2013", "025a", "AndroiDTV 78e" }, - { "2013", "025f", "tripleStick 292e" }, - { "2013", "0262", "microStick 79e" }, - { "2018", "0406", "Eumex 800" }, - { "2018", "0408", "Eumex 800" }, - { "2019", "3220", "GW-US11S WLAN [Atmel AT76C503A]" }, - { "2019", "4901", "GW-USSuper300 802.11bgn Wireless Adapter [Realtek RTL8191SU]" }, - { "2019", "4903", "GW-USFang300 802.11abgn Wireless Adapter [Realtek RTL8192DU]" }, - { "2019", "4904", "GW-USUltra300 802.11abgn Wireless Adapter [Realtek RTL8192DU]" }, - { "2019", "5303", "GW-US54GXS 802.11bg" }, - { "2019", "5304", "GWUS300 802.11n" }, - { "2019", "ab01", "GW-US54HP" }, - { "2019", "ab24", "GW-US300MiniS" }, - { "2019", "ab25", "GW-USMini2N 802.11n Wireless Adapter [Ralink RT2870]" }, - { "2019", "ab28", "GW-USNano" }, - { "2019", "ab29", "GW-USMicro300" }, - { "2019", "ab2a", "GW-USNano2 802.11n Wireless Adapter [Realtek RTL8188CUS]" }, - { "2019", "ab2b", "GW-USEco300 802.11bgn Wireless Adapter [Realtek RTL8192CU]" }, - { "2019", "ab2c", "GW-USDual300 802.11abgn Wireless Adapter [Realtek RTL8192DU]" }, - { "2019", "ab50", "GW-US54Mini2" }, - { "2019", "c002", "GW-US54SG" }, - { "2019", "c007", "GW-US54GZL" }, - { "2019", "ed02", "GW-USMM" }, - { "2019", "ed06", "GW-US300MiniW 802.11bgn Wireless Adapter" }, - { "2019", "ed10", "GW-US300Mini2" }, - { "2019", "ed14", "GW-USMicroN" }, - { "2019", "ed16", "GW-USMicroN2W 802.11bgn Wireless Adapter [Realtek RTL8188SU]" }, - { "2019", "ed17", "GW-USValue-EZ 802.11n Wireless Adapter [Realtek RTL8188CUS]" }, - { "2019", "ed18", "GW-USHyper300 / GW-USH300N 802.11bgn Wireless Adapter [Realtek RTL8191SU]" }, - { "201e", "2009", "CE100 CDMA EVDO" }, - { "203d", "1480", "ENUWI-N3 [802.11n Wireless N150 Adapter]" }, - { "2040", "0265", "WinTV-dualHD DVB" }, - { "2040", "026d", "WinTV-dualHD ATSC" }, - { "2040", "0c80", "Windham" }, - { "2040", "0c90", "Windham" }, - { "2040", "1605", "WinTV-HVR 930C HD" }, - { "2040", "1700", "CataMount" }, - { "2040", "1800", "Okemo A" }, - { "2040", "1801", "Okemo B" }, - { "2040", "2000", "Tiger Minicard" }, - { "2040", "2009", "Tiger Minicard R2" }, - { "2040", "200a", "Tiger Minicard" }, - { "2040", "2010", "Tiger Minicard" }, - { "2040", "2011", "WinTV MiniCard [Dell Digital TV Receiver]" }, - { "2040", "2019", "Tiger Minicard" }, - { "2040", "2400", "WinTV PVR USB2 (Model 24019)" }, - { "2040", "4200", "WinTV" }, - { "2040", "4700", "WinTV Nova-S-USB2" }, - { "2040", "4902", "HD PVR" }, - { "2040", "4903", "HS PVR" }, - { "2040", "4982", "HD PVR" }, - { "2040", "5500", "Windham" }, - { "2040", "5510", "Windham" }, - { "2040", "5520", "Windham" }, - { "2040", "5530", "Windham" }, - { "2040", "5580", "Windham" }, - { "2040", "5590", "Windham" }, - { "2040", "6500", "WinTV HVR-900" }, - { "2040", "6502", "WinTV HVR-900" }, - { "2040", "6503", "WinTV HVR-930" }, - { "2040", "6513", "WinTV HVR-950/HVR-980" }, - { "2040", "6600", "WinTV HVR-900H (Model 660xx)" }, - { "2040", "7050", "Nova-T Stick" }, - { "2040", "7060", "Nova-T Stick 2" }, - { "2040", "7070", "Nova-T Stick 3" }, - { "2040", "7240", "WinTV HVR-850" }, - { "2040", "8400", "WinTV Nova-T-500" }, - { "2040", "9300", "WinTV NOVA-T USB2 (cold)" }, - { "2040", "9301", "WinTV NOVA-T USB2 (warm)" }, - { "2040", "9941", "WinTV Nova-T-500" }, - { "2040", "9950", "WinTV Nova-T-500" }, - { "2040", "b123", "WinTV-HVR-955Q" }, - { "2040", "b138", "WinTV-HVR-900 model 00246 [WinTV-T Video]" }, - { "2040", "b910", "Windham" }, - { "2040", "b980", "Windham" }, - { "2040", "b990", "Windham" }, - { "2040", "c000", "Windham" }, - { "2040", "c010", "Windham" }, - { "2047", "0013", "MSP eZ-FET lite" }, - { "2047", "0014", "MSP-FET" }, - { "2047", "0200", "MSP430 Bootloader" }, - { "2047", "0203", "eZ-FET Bootloader" }, - { "2047", "0204", "MSP-FET Bootloader" }, - { "2047", "0300", "MSP430 CDC Example" }, - { "2047", "0301", "MSP430 HID Datapipe Example" }, - { "2047", "0302", "MSP430 CDC+HID Example" }, - { "2047", "0309", "MSP430 HID Mouse Example" }, - { "2047", "0313", "MSP430 CDC+CDC Example" }, - { "2047", "0314", "MSP430 HID+HID Example" }, - { "2047", "0315", "MSP430 HID Keyboard Example" }, - { "2047", "0316", "MSP430 MSC File System Emulation Example" }, - { "2047", "0317", "MSP430 MSC SD Card Example" }, - { "2047", "0318", "MSP430 MSC Multiple LUNs Example" }, - { "2047", "0319", "MSP430 MSC+CDC+HID Example" }, - { "2047", "0320", "MSP430 SYSBIOS Tasks MSC+CDC+HID Example" }, - { "2047", "0321", "MSP430 SYSBIOS SWIs MSC+CDC+HID Example" }, - { "2047", "0322", "MSP430 MSC Double-Buffering Example" }, - { "2047", "0323", "MSP430 MSC CD-ROM Example" }, - { "2047", "03df", "MSP430 User Experiment" }, - { "2047", "03e0", "MSP430 User Experiment" }, - { "2047", "03e1", "MSP430 User Experiment" }, - { "2047", "03e2", "MSP430 User Experiment" }, - { "2047", "03e3", "MSP430 User Experiment" }, - { "2047", "03e4", "MSP430 User Experiment" }, - { "2047", "03e5", "MSP430 User Experiment" }, - { "2047", "03e6", "MSP430 User Experiment" }, - { "2047", "03e7", "MSP430 User Experiment" }, - { "2047", "03e8", "MSP430 User Experiment" }, - { "2047", "03e9", "MSP430 User Experiment" }, - { "2047", "03ea", "MSP430 User Experiment" }, - { "2047", "03eb", "MSP430 User Experiment" }, - { "2047", "03ec", "MSP430 User Experiment" }, - { "2047", "03ed", "MSP430 User Experiment" }, - { "2047", "03ee", "MSP430 User Experiment" }, - { "2047", "03ef", "MSP430 User Experiment" }, - { "2047", "03f0", "MSP430 User Experiment" }, - { "2047", "03f1", "MSP430 User Experiment" }, - { "2047", "03f2", "MSP430 User Experiment" }, - { "2047", "03f3", "MSP430 User Experiment" }, - { "2047", "03f4", "MSP430 User Experiment" }, - { "2047", "03f5", "MSP430 User Experiment" }, - { "2047", "03f6", "MSP430 User Experiment" }, - { "2047", "03f7", "MSP430 User Experiment" }, - { "2047", "03f8", "MSP430 User Experiment" }, - { "2047", "03f9", "MSP430 User Experiment" }, - { "2047", "03fa", "MSP430 User Experiment" }, - { "2047", "03fb", "MSP430 User Experiment" }, - { "2047", "03fc", "MSP430 User Experiment" }, - { "2047", "03fd", "MSP430 User Experiment" }, - { "2047", "0401", "MSP430 Keyboard Example" }, - { "2047", "0855", "Invensense Embedded MotionApp HID Sensor" }, - { "2047", "08f8", "FDC2x14/LDC13xx/LDC16xx EVM" }, - { "2047", "0964", "Inventio Software MSP430" }, - { "2047", "0a76", "GEOKON S-3810A-5 USB-RS485 CONVERTER" }, - { "2047", "ffe7", "HID v1.00 Device [Improv Device]" }, - { "2058", "2058", "ViperBoard I2C, SPI, GPIO interface" }, - { "2077", "9002", "W1M100 HSPA/WCDMA Module" }, - { "2080", "0001", "nook" }, - { "2080", "0002", "NOOKcolor" }, - { "2080", "0003", "NOOK Simple Touch" }, - { "2080", "0004", "NOOK Tablet" }, - { "2080", "0005", "BNTV600 [Nook HD+]" }, - { "2080", "0006", "BNTV400 [Nook HD]" }, - { "2080", "0007", "BNRV500 [Nook Glowlight]" }, - { "2080", "000a", "BNRV510 [Nook Glowlight Plus]" }, - { "2080", "000b", "BNRV520 [Nook Glowlight 3]" }, - { "2080", "000c", "BNRV700 [Nook Glowlight Plus]" }, - { "2087", "0a01", "Multi Touch Panel" }, - { "2087", "0a02", "Multi Touch Panel" }, - { "2087", "0b03", "Multi Touch Panel" }, - { "20a0", "0006", "flirc" }, - { "20a0", "4107", "GPF Crypto Stick V1.2" }, - { "20a0", "4123", "IKALOGIC SCANALOGIC 2" }, - { "20a0", "414a", "MDE SPI Interface" }, - { "20a0", "415a", "OpenPilot" }, - { "20a0", "415b", "CopterControl" }, - { "20a0", "415c", "PipXtreme" }, - { "20a0", "41e5", "BlinkStick" }, - { "20a0", "4211", "Nitrokey Start" }, - { "20a0", "4223", "ATSAMD21 [castAR]" }, - { "20a0", "428d", "Electrosense wideband converter" }, - { "20b1", "10ad", "XUSB Loader" }, - { "20b1", "f7d1", "XTAG2 - JTAG Adapter" }, - { "20b3", "0a18", "10.1 Touch screen overlay" }, - { "20b7", "0713", "Milkymist JTAG/serial" }, - { "20b7", "1540", "ben-wpan, AT86RF230-based" }, - { "20b7", "1db5", "IDBG in DFU mode" }, - { "20b7", "1db6", "IDBG in normal mode" }, - { "20b7", "9db1", "Glasgow Debug Tool" }, - { "20b7", "c25b", "C2 Dongle" }, - { "20b7", "cb72", "ben-wpan, cntr" }, - { "20bc", "5500", "Frostbite controller" }, - { "20ce", "0012", "RF Sythesizer 250-4200MHz model SSG-4000LH" }, - { "20ce", "0021", "RF Switch Matrix" }, - { "20ce", "0022", "I/O Controller" }, - { "20df", "0001", "Entropy Key [UDEKEY01]" }, - { "20f0", "2102", "EWLA V2 Module" }, - { "20f1", "0101", "iCube3 Camera" }, - { "20f4", "646b", "TEW-646UBH High Power 150Mbps Wireless N Adapter [Realtek RTL8188SU]" }, - { "20f4", "648b", "TEW-648UBM 802.11n 150Mbps Micro Wireless N Adapter [Realtek RTL8188CUS]" }, - { "20f4", "664b", "TEW-664UB H/W:V2.0R" }, - { "20f4", "804b", "TEW-804UB 802.11a/b/g/n/ac (1x1) Wireless Adapter [Realtek RTL8811AU]" }, - { "20f4", "805b", "TEW-805UB 300Mbps+867Mbps Wireless AC Adapter [Realtek RTL8812AU]" }, - { "20f4", "806b", "TEW-806UBH 802.11a/b/g/n/ac (1x1) Wireless Adapter [MediaTek MT7610U]" }, - { "20f7", "3001", "MQ or MD camera" }, - { "20f7", "3002", "MU camera" }, - { "20f7", "3021", "MJ camera" }, - { "20f7", "30b3", "MQ in U3V mode or MC camera" }, - { "20f7", "a003", "MU camera" }, - { "2100", "0e56", "USB62C Radio Cable [Yaesu 857/D - 897/D]" }, - { "2100", "9e50", "USB-59 Radio Cable [Yaesu VX-8/D/DR]" }, - { "2100", "9e52", "Yaesu VX-7" }, - { "2100", "9e54", "CT29B Radio Cable" }, - { "2100", "9e57", "RTS01 Radio Cable" }, - { "2100", "9e58", "USB63C Radio Cable [Yaesu FTDX-1200]" }, - { "2100", "9e5d", "K4Y Radio Cable" }, - { "2100", "9e5f", "FT232RL [RTS05 Serial Cable]" }, - { "2101", "0201", "SIIG 4-to-2 Printer Switch" }, - { "2101", "1402", "Keyboard/Mouse Switch" }, - { "2104", "0050", "Eye tracker [EYEX2]" }, - { "2104", "0124", "Eyechip" }, - { "2109", "0210", "Hub" }, - { "2109", "0700", "VL700 SATA 3Gb/s bridge" }, - { "2109", "0701", "VL701 SATA 3Gb/s bridge" }, - { "2109", "0711", "VL711 SATA 6Gb/s bridge" }, - { "2109", "0715", "VL817 SATA Adaptor" }, - { "2109", "0810", "VL81x Hub" }, - { "2109", "0811", "Hub" }, - { "2109", "0812", "VL812 Hub" }, - { "2109", "0813", "VL813 Hub" }, - { "2109", "0820", "VL820 Hub" }, - { "2109", "2210", "Hub" }, - { "2109", "2811", "Hub" }, - { "2109", "2812", "VL812 Hub" }, - { "2109", "2813", "VL813 Hub" }, - { "2109", "2820", "VL820 Hub" }, - { "2109", "3431", "Hub" }, - { "2109", "711f", "External" }, - { "2109", "8110", "Hub" }, - { "2113", "0137", "DepthSense 311 (3D)" }, - { "2113", "0145", "DepthSense 325" }, - { "2113", "8000", "DepthSense 311 (Color)" }, - { "2116", "000a", "IDE Hard Drive Enclosure" }, - { "211f", "6801", "CDMA Products" }, - { "2123", "1010", "Rocket Launcher" }, - { "2125", "0000", "Bootloader" }, - { "2125", "0010", "MCB-100 Series" }, - { "2133", "0001", "LCD Signature Pad Sigma" }, - { "2133", "0018", "Delta Pen" }, - { "2133", "0019", "Delta Touch" }, - { "2133", "001c", "Kronos Pen" }, - { "2133", "0022", "Epsilon Pen" }, - { "2149", "211b", "Touchscreen Controller" }, - { "2149", "2306", "TS58xxA/TC56xxA [CoolTouch]" }, - { "2149", "2703", "TS58xxA/TC56xxA [CoolTouch]" }, - { "214b", "7000", "4-port hub [Maxxter ACT-HUB2-4P, HS8836, iSoul ultra-slim]" }, - { "214e", "0005", "Z - Gaming mouse [SM700]" }, - { "2162", "2031", "Network Blaster Wireless Adapter" }, - { "2162", "500c", "DE5771 Modem Blaster" }, - { "2162", "8001", "Broadxent BritePort DSL Bridge 8010U" }, - { "2166", "600b", "TH-D74" }, - { "2184", "0005", "GDS-3000 Oscilloscope" }, - { "2184", "0006", "GDS-3000 Oscilloscope" }, - { "2184", "0011", "AFG Function Generator (CDC)" }, - { "2184", "0017", "DSO" }, - { "2184", "0018", "DSO" }, - { "2184", "0036", "AFG-125 Function Generator (CDC)" }, - { "2188", "0610", "Hub" }, - { "2188", "0611", "Hub" }, - { "2188", "0620", "Hub" }, - { "2188", "0625", "Hub" }, - { "2188", "0754", "Card Reader" }, - { "2188", "4042", "CalDigit Pro Audio" }, - { "219c", "0010", "USB 2200 K Secure Sign Token" }, - { "21a1", "0001", "EPOC Consumer Headset Wireless Dongle" }, - { "21a4", "ac27", "SPORTS Active 2 Wireless Controller for PS3" }, - { "21a4", "ac40", "SPORTS Active 2 Wireless Controller for Wii" }, - { "21a9", "1001", "16-channel Logic Analyzer [Logic16]" }, - { "21a9", "1003", "Logic 4" }, - { "21a9", "1004", "Logic8" }, - { "21a9", "1005", "Logic Pro 8" }, - { "21a9", "1006", "Logic Pro 16" }, - { "21ab", "0010", "RC700 NFC SmartCard Reader" }, - { "21ab", "0011", "DSR700 SmartCard Reader" }, - { "21b4", "0081", "DragonFly" }, - { "21b4", "0082", "DragonFly Red" }, - { "21d6", "0002", "Seismic recorder [Tellus]" }, - { "2207", "0010", "GoClever Tab R83" }, - { "2207", "0011", "SmartTab" }, - { "2207", "281a", "RK2818 in Mask ROM mode" }, - { "2207", "290a", "RK2918 in Mask ROM mode" }, - { "2207", "292a", "RK2928 in Mask ROM mode" }, - { "2207", "292c", "RK3026 in Mask ROM mode" }, - { "2207", "300a", "RK3066 in Mask ROM mode" }, - { "2207", "300b", "RK3168 in Mask ROM mode" }, - { "2207", "301a", "RK3036 in Mask ROM mode" }, - { "2207", "310a", "RK3066B in Mask ROM mode" }, - { "2207", "310b", "RK3188 in Mask ROM mode" }, - { "2207", "310c", "RK3126/RK3128 in Mask ROM mode" }, - { "2207", "310d", "RK3126 in Mask ROM mode" }, - { "2207", "320a", "RK3288 in Mask ROM mode" }, - { "2207", "320b", "RK3228/RK3229 in Mask ROM mode" }, - { "2207", "320c", "RK3328 in Mask ROM mode" }, - { "2207", "330a", "RK3368 in Mask ROM mode" }, - { "2207", "330c", "RK3399 in Mask ROM mode" }, - { "221a", "0100", "FPGA Boards" }, - { "2222", "0004", "iWebKey Keyboard" }, - { "2222", "0005", "ICEKey Keyboard" }, - { "2222", "1001", "Generic Hub" }, - { "2222", "2520", "Mini Tablet" }, - { "2222", "4050", "AirStick joystick" }, - { "2227", "3105", "SKYDATA SKD-U100" }, - { "222a", "0001", "Multi-Touch Screen" }, - { "222a", "0037", "Multi-Touch Screen" }, - { "2230", "0001", "UD-160-A / M Integrated Hub" }, - { "2230", "0003", "DC-125 / M Integrated Hub" }, - { "2232", "1005", "WebCam SCB-0385N" }, - { "2232", "1024", "Webcam SC-13HDL11624N [Namuga Co., Ltd.]" }, - { "2232", "1028", "WebCam SC-03FFL11939N" }, - { "2232", "1029", "WebCam SC-13HDL11939N" }, - { "2232", "1037", "WebCam SC-03FFM12339N" }, - { "2232", "1045", "WebCam SC-10HDP12631N" }, - { "2233", "6323", "USB Electronic Scale" }, - { "2237", "4161", "eReader White" }, - { "2237", "4163", "Touch" }, - { "2237", "4173", "Glo" }, - { "2245", "1500", "AST1500/1510 PC-over-LAN Virtual Hub" }, - { "224f", "0001", "Access Point" }, - { "224f", "0002", "Docking Station" }, - { "224f", "0004", "V2 Opal ACM" }, - { "224f", "0005", "V2 Opal" }, - { "224f", "0006", "V2 Docking Station" }, - { "224f", "0007", "V2 Access Point ACM" }, - { "224f", "0008", "V2 Access Point" }, - { "2256", "1007", "LV3 MIDI Controller" }, - { "225d", "0001", "FINGER VP Multimodal Biometric Sensor" }, - { "225d", "0008", "CBM-E3 Fingerprint Sensor" }, - { "225d", "0009", "CBM-V3 Fingerprint Sensor" }, - { "225d", "000a", "MSO1300-E3 Fingerprint Sensor" }, - { "225d", "000b", "MSO1300-V3 Fingerprint Sensor" }, - { "225d", "000c", "MSO1350-E3 Fingerprint Sensor & SmartCard Reader" }, - { "225d", "000d", "MSO1350-V3 Fingerprint Sensor & SmartCard Reader" }, - { "225d", "000e", "MorphoAccess SIGMA Biometric Access Control Terminal" }, - { "225d", "9015", "Tablet 2" }, - { "225d", "9024", "Tablet 2" }, - { "225d", "9039", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "904d", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "904e", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "9091", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "9092", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "f000", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "f003", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "f006", "Tablet 2 secure multifunction biometric tablet" }, - { "225d", "f00e", "Tablet 2 secure multifunction biometric tablet" }, - { "228d", "0001", "Terminal Bike Key Reader" }, - { "22a6", "ffff", "PieKey \"beta\" 4GB model 4E4F41482E4F5247 (SM3251Q BB)" }, - { "22a7", "1001", "FortiGate Device" }, - { "22b1", "1000", "Netduino MCU pcb" }, - { "22b8", "0001", "Wally 2.2 chipset" }, - { "22b8", "0002", "Wally 2.4 chipset" }, - { "22b8", "0005", "V.60c/V.60i GSM Phone" }, - { "22b8", "002e", "XT1806" }, - { "22b8", "0830", "2386C-HT820" }, - { "22b8", "0833", "2386C-HT820 [Flash Mode]" }, - { "22b8", "0850", "Bluetooth Device" }, - { "22b8", "1001", "Patriot 1.0 (GSM) chipset" }, - { "22b8", "1002", "Patriot 2.0 chipset" }, - { "22b8", "1005", "T280e GSM/GPRS Phone" }, - { "22b8", "1101", "Patriot 1.0 (TDMA) chipset" }, - { "22b8", "1801", "Rainbow chipset flash" }, - { "22b8", "2035", "Bluetooth Device" }, - { "22b8", "2805", "GSM Modem" }, - { "22b8", "2821", "T720 GSM Phone" }, - { "22b8", "2822", "V.120e GSM Phone" }, - { "22b8", "2823", "Flash Interface" }, - { "22b8", "2a01", "MSM6050 chipset" }, - { "22b8", "2a02", "CDMA modem" }, - { "22b8", "2a03", "MSM6050 chipset flash" }, - { "22b8", "2a21", "V710 GSM Phone (P2K)" }, - { "22b8", "2a22", "V710 GSM Phone (AT)" }, - { "22b8", "2a23", "MSM6100 chipset flash" }, - { "22b8", "2a41", "MSM6300 chipset" }, - { "22b8", "2a42", "Usb Modem" }, - { "22b8", "2a43", "MSM6300 chipset flash" }, - { "22b8", "2a61", "E815 GSM Phone (P2K)" }, - { "22b8", "2a62", "E815 GSM Phone (AT)" }, - { "22b8", "2a63", "MSM6500 chipset flash" }, - { "22b8", "2a81", "MSM6025 chipset" }, - { "22b8", "2a83", "MSM6025 chipset flash" }, - { "22b8", "2ac1", "MSM6100 chipset" }, - { "22b8", "2ac3", "MSM6100 chipset flash" }, - { "22b8", "2d78", "XT300[SPICE]" }, - { "22b8", "2e82", "XT1541 [Moto G 3rd Gen]" }, - { "22b8", "2e83", "XT1033 [Moto G], PTP mode" }, - { "22b8", "3001", "A835/E1000 GSM Phone (P2K)" }, - { "22b8", "3002", "A835/E1000 GSM Phone (AT)" }, - { "22b8", "3801", "C350L/C450 (P2K)" }, - { "22b8", "3802", "C330/C350L/C450/EZX GSM Phone (AT)" }, - { "22b8", "3803", "Neptune LT chipset flash" }, - { "22b8", "4001", "OMAP 1.0 chipset" }, - { "22b8", "4002", "A920/A925 UMTS Phone" }, - { "22b8", "4003", "OMAP 1.0 chipset flash" }, - { "22b8", "4008", "OMAP 1.0 chipset RDL" }, - { "22b8", "41d6", "Droid X (Windows media mode)" }, - { "22b8", "41d9", "Droid/Milestone" }, - { "22b8", "41db", "Droid/Milestone (Debug mode)" }, - { "22b8", "41de", "Droid X (PC mode)" }, - { "22b8", "4204", "MPx200 Smartphone" }, - { "22b8", "4214", "MPc GSM" }, - { "22b8", "4224", "MPx220 Smartphone" }, - { "22b8", "4234", "MPc CDMA" }, - { "22b8", "4244", "MPx100 Smartphone" }, - { "22b8", "4285", "Droid X (Mass storage)" }, - { "22b8", "42d9", "XT910 [Droid RAZR]" }, - { "22b8", "4801", "Neptune LTS chipset" }, - { "22b8", "4803", "Neptune LTS chipset flash" }, - { "22b8", "4810", "Triplet GSM Phone (storage)" }, - { "22b8", "4901", "Triplet GSM Phone (P2K)" }, - { "22b8", "4902", "Triplet GSM Phone (AT)" }, - { "22b8", "4903", "Neptune LTE chipset flash" }, - { "22b8", "4a01", "Neptune LTX chipset" }, - { "22b8", "4a03", "Neptune LTX chipset flash" }, - { "22b8", "4a32", "L6-imode Phone" }, - { "22b8", "5801", "Neptune ULS chipset" }, - { "22b8", "5803", "Neptune ULS chipset flash" }, - { "22b8", "5901", "Neptune VLT chipset" }, - { "22b8", "5903", "Neptune VLT chipset flash" }, - { "22b8", "6001", "Dalhart EZX" }, - { "22b8", "6003", "Dalhart flash" }, - { "22b8", "6004", "EZX GSM Phone (CDC Net)" }, - { "22b8", "6006", "MOTOROKR E6" }, - { "22b8", "6008", "Dalhart RDL" }, - { "22b8", "6009", "EZX GSM Phone (P2K)" }, - { "22b8", "600a", "Dalhart EZX config 17" }, - { "22b8", "600b", "Dalhart EZX config 18" }, - { "22b8", "600c", "EZX GSM Phone (USBLAN)" }, - { "22b8", "6021", "JUIX chipset" }, - { "22b8", "6023", "JUIX chipset flash" }, - { "22b8", "6026", "Flash RAM Downloader/miniOS" }, - { "22b8", "6027", "USBLAN" }, - { "22b8", "604c", "EZX GSM Phone (Storage)" }, - { "22b8", "6101", "Talon integrated chipset" }, - { "22b8", "6401", "Argon chipset" }, - { "22b8", "6403", "Argon chipset flash" }, - { "22b8", "6411", "ROKR Z6 (print mode)" }, - { "22b8", "6415", "ROKR Z6 (MTP mode)" }, - { "22b8", "6422", "ROKR Z6 (modem mode)" }, - { "22b8", "6426", "ROKR Z6 (storage mode)" }, - { "22b8", "6604", "Washington CDMA Phone" }, - { "22b8", "6631", "CDC Modem" }, - { "22b8", "7001", "Q Smartphone" }, - { "22b8", "7086", "Atrix" }, - { "22b8", "70a8", "Xoom Tablet" }, - { "22b8", "fe01", "StarTAC III MS900" }, - { "22b9", "0006", "Touch Screen" }, - { "22ba", "0108", "Double Shock Steering Wheel HID" }, - { "22ba", "0109", "Double Shock Steering Wheel Hub" }, - { "22c9", "0601", "naturaSign Pad Colour" }, - { "22c9", "0701", "naturaSign Pad Mobile" }, - { "22c9", "0801", "naturaSign Pad Comfort" }, - { "22c9", "0881", "naturaSign Pad Flawless" }, - { "22c9", "0901", "naturaSign Pad Classic" }, - { "22c9", "09e1", "naturaSign Pad Biometric" }, - { "22c9", "0ce1", "duraSign Pad Brilliance" }, - { "22c9", "0cf1", "duraSign Pad Biometric 5.0" }, - { "22c9", "0d01", "duraSign 10.0" }, - { "22c9", "0df1", "duraSign Pad Biometric 10.0" }, - { "22d4", "1301", "Mionix NAOS 8200 [STM32F103 MCU]" }, - { "22d4", "1308", "Mionix Avior 7000" }, - { "22d4", "130c", "Mionix Naos 7000" }, - { "22d4", "1316", "Mionix Castor" }, - { "22d9", "2765", "Oppo N1" }, - { "22d9", "2767", "Oppo Find 5 (X909)" }, - { "22db", "0003", "IQ3 100MP IG030372" }, - { "22dc", "0004", "BlueField SOC" }, - { "22e0", "0002", "SINA Flash Drive" }, - { "22e0", "0003", "SINA ID Token A" }, - { "22e8", "6512", "651N Audio" }, - { "22e8", "6969", "Audio Prototype" }, - { "22e8", "7512", "751R Audio" }, - { "22e8", "770a", "X70A Audio" }, - { "22e8", "850c", "851C Audio [Azur 850C]" }, - { "22e8", "851d", "851D Audio [Azur 851D]" }, - { "22e8", "ca02", "Audio" }, - { "22e8", "ca04", "Audio" }, - { "22e8", "ca06", "AmpMagic" }, - { "22e8", "dac2", "DacMagic Plus" }, - { "22e8", "dac3", "Azur DacMagic 100" }, - { "22e8", "dac4", "Azur DacMagic 100" }, - { "22e8", "dac6", "DacMagicXS 2.0" }, - { "22e8", "dac8", "Audio" }, - { "2304", "0109", "Studio PCTV USB (SECAM)" }, - { "2304", "0110", "Studio PCTV USB (PAL)" }, - { "2304", "0111", "Miro PCTV USB" }, - { "2304", "0112", "Studio PCTV USB (NTSC) with FM radio" }, - { "2304", "0201", "Systems MovieBox Device" }, - { "2304", "0204", "MovieBox USB_B" }, - { "2304", "0205", "DVC 150B" }, - { "2304", "0206", "Systems MovieBox Deluxe Device" }, - { "2304", "0207", "Dazzle DVC90 Video Device" }, - { "2304", "0208", "Studio PCTV USB2" }, - { "2304", "020e", "PCTV 200e" }, - { "2304", "020f", "PCTV 400e BDA Device" }, - { "2304", "0210", "Studio PCTV USB (PAL) with FM radio" }, - { "2304", "0212", "Studio PCTV USB (NTSC)" }, - { "2304", "0213", "500-USB Device" }, - { "2304", "0214", "Studio PCTV USB (PAL) with FM radio" }, - { "2304", "0216", "PCTV 60e" }, - { "2304", "0219", "PCTV 260e" }, - { "2304", "021a", "Dazzle DVC100 Audio Device" }, - { "2304", "021b", "Dazzle DVC130/DVC170" }, - { "2304", "021d", "Dazzle DVC130" }, - { "2304", "021e", "Dazzle DVC170" }, - { "2304", "021f", "PCTV Sat HDTV Pro BDA Device" }, - { "2304", "0222", "PCTV Sat Pro BDA Device" }, - { "2304", "0223", "DazzleTV Sat BDA Device" }, - { "2304", "0225", "Remote Kit Infrared Transceiver" }, - { "2304", "0226", "PCTV 330e" }, - { "2304", "0227", "PCTV for Mac, HD Stick" }, - { "2304", "0228", "PCTV DVB-T Flash Stick" }, - { "2304", "0229", "PCTV Dual DVB-T 2001e" }, - { "2304", "022a", "PCTV 160e" }, - { "2304", "022b", "PCTV 71e [Afatech AF9015]" }, - { "2304", "0232", "PCTV 170e" }, - { "2304", "0236", "PCTV 72e [DiBcom DiB7000PC]" }, - { "2304", "0237", "PCTV 73e [DiBcom DiB7000PC]" }, - { "2304", "023a", "PCTV 801e" }, - { "2304", "023b", "PCTV 801e SE" }, - { "2304", "023d", "PCTV 340e" }, - { "2304", "023e", "PCTV 340e SE" }, - { "2304", "0300", "Studio Linx Video input cable (NTSC)" }, - { "2304", "0301", "Studio Linx Video input cable (PAL)" }, - { "2304", "0302", "Dazzle DVC120" }, - { "2304", "0419", "PCTV Bungee USB (PAL) with FM radio" }, - { "2304", "061d", "PCTV Deluxe (NTSC) Device" }, - { "2304", "061e", "PCTV Deluxe (PAL) Device" }, - { "2304", "2304", "1689" }, - { "230d", "0103", "Huwaii 3g wireless modem" }, - { "2318", "0011", "CitiDISK Jr. IDE Enclosure" }, - { "2319", "0014", "TSM01 Air Mouse + Keyboard" }, - { "232b", "0810", "P2000" }, - { "232e", "0010", "EA-PS-2000 B Series Power Supply" }, - { "2341", "0001", "Uno (CDC ACM)" }, - { "2341", "0010", "Mega 2560 (CDC ACM)" }, - { "2341", "0036", "Leonardo Bootloader" }, - { "2341", "003b", "Serial Adapter (CDC ACM)" }, - { "2341", "003d", "Due Programming Port" }, - { "2341", "003e", "Due" }, - { "2341", "003f", "Mega ADK (CDC ACM)" }, - { "2341", "0042", "Mega 2560 R3 (CDC ACM)" }, - { "2341", "0043", "Uno R3 (CDC ACM)" }, - { "2341", "0044", "Mega ADK R3 (CDC ACM)" }, - { "2341", "0045", "Serial R3 (CDC ACM)" }, - { "2341", "0049", "ISP" }, - { "2341", "8036", "Leonardo (CDC ACM, HID)" }, - { "2341", "8038", "Robot Control Board (CDC ACM, HID)" }, - { "2341", "8039", "Robot Motor Board (CDC ACM, HID)" }, - { "234b", "0000", "Gnuk Token" }, - { "234b", "0001", "NeuG True RNG" }, - { "2357", "0005", "M7350 4G Mi-Fi Router" }, - { "2357", "0100", "TL-WN8200ND [Realtek RTL8192CU]" }, - { "2357", "0101", "RTL8812AU Archer T4U 802.11ac" }, - { "2357", "0103", "Archer T4UH wireless Realtek 8812AU" }, - { "2357", "0105", "Archer T1U 802.11a/n/ac Wireless Adapter [MediaTek MT7610U]" }, - { "2357", "0106", "Archer T9UH v1 [Realtek RTL8814AU]" }, - { "2357", "0107", "TL-WN821N v5/v6 [RTL8192EU]" }, - { "2357", "0108", "TL-WN822N Version 4 RTL8192EU" }, - { "2357", "0109", "TL-WN823N v2/v3 [Realtek RTL8192EU]" }, - { "2357", "010b", "Archer T2UHP [MediaTek MT7610U]" }, - { "2357", "010c", "TL-WN722N v2/v3 [Realtek RTL8188EUS]" }, - { "2357", "010d", "Archer T4U v2 [Realtek RTL8812AU]" }, - { "2357", "010e", "Archer T4UH v2 [Realtek RTL8812AU]" }, - { "2357", "010f", "Archer T4UHP [Realtek RTL8812AU]" }, - { "2357", "0115", "Archer T4U ver.3" }, - { "2357", "011e", "AC600 wireless Realtek RTL8811AU [Archer T2U Nano]" }, - { "2357", "0120", "Archer T2U PLUS [RTL8821AU]" }, - { "2357", "012d", "Archer T3U [Realtek RTL8812BU]" }, - { "2357", "0200", "MA 180 Zero CD" }, - { "2357", "0201", "HSUPA Modem MA180" }, - { "2357", "0600", "UE300 10/100/1000 LAN (mass storage CD-ROM mode) [Realtek RTL8153]" }, - { "2357", "0601", "UE300 10/100/1000 LAN (ethernet mode) [Realtek RTL8153]" }, - { "2366", "0001", "Reserved Prototyping PID" }, - { "2366", "0002", "OpenBeacon USB 2" }, - { "2366", "0003", "OpenPCD 2 RFID Reader for 13.56MHz" }, - { "2366", "0004", "OpenBeacon" }, - { "2366", "0005", "Blinkenlights WDIM" }, - { "2366", "0006", "Blinkenlights WMCU" }, - { "2366", "0007", "OpenBeacon Ethernet EasyReader PoE II - Active 2.4GHz RFID Reader" }, - { "2366", "0008", "OpenBeacon WLAN" }, - { "2366", "0009", "OpenPCD 2 RFID Reader for 13.56MHz" }, - { "2366", "000a", "OpenPCD 2 Audio & LCD Display" }, - { "2367", "0002", "OP-1 Portable synthesizer" }, - { "2367", "000c", "OP-Z Portable synthesizer" }, - { "2368", "0001", "BBS-1 [BodyBeat Sync]" }, - { "236a", "1965", "SB6501 802.11ad Wireless Network Adapter" }, - { "2373", "0001", "5 MegaPixel Digital Still Camera [DSC5M]" }, - { "2375", "0001", "Digital Audio Player" }, - { "2378", "100a", "Universal Wireless Controller" }, - { "237d", "0400", "MC400" }, - { "2386", "3125", "Touch System" }, - { "2386", "4328", "Touch System" }, - { "2386", "432f", "Touch System" }, - { "238b", "0a11", "DMR Radio" }, - { "239a", "0001", "CDC Bootloader" }, - { "239a", "801e", "Trinket M0" }, - { "23a0", "0001", "Token iBank2key" }, - { "23a0", "0002", "iBank2Key Type M Token" }, - { "23a0", "0003", "iToken" }, - { "23a0", "0008", "MS_KEY K - Angara" }, - { "23a6", "2000", "Gibson Firebird X Pedal Board" }, - { "23a6", "2001", "Gibson Firebird X Switch Board" }, - { "23b4", "0200", "DW0200 Color Camera" }, - { "23b4", "0300", "DW0300 Hight Speed Monochrome Camera" }, - { "23c7", "1021", "FirstMix" }, - { "23fc", "0201", "SPI-Simulyzer box for SPI data communication" }, - { "23fc", "0202", "PSI5-Simulyzer box for PSI5 (Peripheral-Sensor-Interfacs) data communication" }, - { "23fc", "0203", "SENT-Simulyzer box for SENT data communication" }, - { "23fc", "0204", "DSI-Simulyzer box for DSI3 data communication" }, - { "2405", "0002", "West Mountain Radio RIGblaster Advantage Audio" }, - { "2405", "0003", "West Mountain Radio RIGblaster Advantage" }, - { "2406", "6688", "PD7X Portable Storage" }, - { "242e", "0001", "DALI Master" }, - { "242e", "0002", "LiCS Bootloader Mode" }, - { "242e", "0003", "LiCS Running Mode" }, - { "242e", "0004", "iProgrammer" }, - { "242e", "0005", "NFC programming device" }, - { "2433", "b200", "[NZXT Kraken X60]" }, - { "2443", "00dc", "aes220 FPGA Mini-Module" }, - { "2457", "100a", "HR2000 Spectrometer 1.00.0" }, - { "2457", "1012", "HR4000 Spectrometer" }, - { "2458", "0001", "BLED112 Bluetooth 4.0 Single Mode Dongle" }, - { "2464", "0001", "Learning Thermostat" }, - { "2464", "0002", "Learning Thermostat (2nd Generation)" }, - { "2464", "0010", "Protect : Smoke + Carbon Monoxide" }, - { "2464", "0020", "Heat Link" }, - { "2466", "8003", "Axe-Fx II" }, - { "2466", "8010", "Axe-FX III" }, - { "2476", "1040", "3-Space Embedded Sensor" }, - { "2478", "2008", "U209-000-R Serial Port" }, - { "248a", "8366", "Wireless Optical Mouse ACT-MUSW-002" }, - { "248a", "8367", "Telink Wireless Receiver" }, - { "24a4", "0002", "I15_v1.06 [Primare Audio DAC]" }, - { "24ae", "0001", "KX Keyboard" }, - { "24ae", "0197", "meva Barcode Scanner" }, - { "24ae", "1813", "E9260 Wireless Multi-mode Keyboard" }, - { "24ae", "2000", "2.4G Wireless Device Serial" }, - { "24ae", "2001", "5 GHz Wireless Receiver" }, - { "24ae", "2003", "5GHz Wireless Transceiver" }, - { "24ae", "4110", "Optical Gaming Mouse [V280]" }, - { "24ae", "6000", "Wireless Audio" }, - { "24c0", "0003", "Model 01036 weather center" }, - { "24c6", "5000", "Razer Atrox Gaming Arcade Stick" }, - { "24c6", "5300", "PowerA Mini ProEX Controller for Xbox 360" }, - { "24c6", "5303", "Airflo Wired Controller for Xbox 360" }, - { "24c6", "530a", "ProEX Controller for Xbox 360" }, - { "24c6", "531a", "Pro Ex mini for XBOX" }, - { "24c6", "5397", "FUS1ON Tournament Controller" }, - { "24c6", "541a", "PowerA CPFA115320-01 [Mini Controller for Xbox One]" }, - { "24c6", "542a", "Spectra for Xbox One" }, - { "24c6", "543a", "PowerA Wired Controller for Xbox One" }, - { "24c6", "5500", "Horipad EX2 Turbo" }, - { "24c6", "5501", "Hori Real Arcade Pro.VX-SA for Xbox 360" }, - { "24c6", "5502", "Hori Fighting Stick VX Alt for Xbox 360" }, - { "24c6", "5503", "Hori Fighting Edge for Xbox 360" }, - { "24c6", "5506", "Hori Soulcalibur V Stick for Xbox 360" }, - { "24c6", "550d", "Hori Gem Controller for Xbox 360" }, - { "24c6", "550e", "Real Arcade Pro V Kai for Xbox One / Xbox 360" }, - { "24c6", "551a", "Fusion Pro Controller" }, - { "24c6", "561a", "Fusion Controller for Xbox One" }, - { "24c6", "5b00", "Ferrari 458 Italia Racing Wheel" }, - { "24c6", "5b02", "GPX Controller" }, - { "24c6", "5d04", "Sabertooth Elite" }, - { "24c6", "fa00", "INF-8032385 Disney Infinity Reader" }, - { "24c6", "fafb", "Aplay Controller" }, - { "24c6", "fafd", "Afterglow Gamepad for Xbox 360" }, - { "24c6", "fafe", "Rock Candy Gamepad for Xbox 360" }, - { "24cf", "00a1", "Light Field Camera" }, - { "24dc", "0406", "JaCarta SF GOST" }, - { "24e1", "3001", "Adp-usb" }, - { "24e1", "3005", "Radius" }, - { "24ea", "0197", "Barcode Scanner" }, - { "24ed", "044d", "Chat Headset" }, - { "24f0", "0105", "Das Keyboard 4" }, - { "24f0", "0140", "Das Keyboard 4" }, - { "24f0", "2020", "Das Keyboard 5Q" }, - { "2500", "0020", "USRP B210" }, - { "2500", "0021", "USRP B200-mini" }, - { "2500", "0022", "USRP B205-mini" }, - { "2500", "0200", "USRP B200" }, - { "2516", "0003", "Storm Xornet" }, - { "2516", "0004", "Storm QuickFire Rapid Mechanical Keyboard" }, - { "2516", "0006", "Storm Recon" }, - { "2516", "0007", "Storm Sentinel Advance II" }, - { "2516", "0009", "Storm Quick Fire PRO" }, - { "2516", "0011", "Storm Quick Fire TK 6keys" }, - { "2516", "0014", "Storm Quick Fire TK Nkeys" }, - { "2516", "0015", "Storm QuickFire Pro/Ultimate keyboard" }, - { "2516", "0017", "CM Storm Quick Fire Stealth" }, - { "2516", "001a", "Storm Quick Fire XT" }, - { "2516", "0020", "QuickFire Rapid-i Keyboard" }, - { "2516", "0027", "CM Storm Coolermaster Novatouch TKL" }, - { "2516", "002d", "Alcor mouse" }, - { "2516", "0042", "Masterkeys Lite L Combo RGB Keyboard" }, - { "2516", "0044", "Masterkeys Lite L Combo RGB Mouse" }, - { "2516", "0046", "Masterkeys PRO L" }, - { "2516", "0047", "MasterKeys Pro L" }, - { "2516", "0055", "MasterKeys L" }, - { "2516", "1006", "MasterCase SL600M" }, - { "2516", "9494", "Sirus Headset" }, - { "2520", "0001", "EasyPrinter S3" }, - { "2527", "1388", "Paramount 5" }, - { "2537", "1066", "NS1066" }, - { "2537", "1068", "NS1068/NS1068X SATA Bridge Controller" }, - { "2546", "e301", "TipToi Pen" }, - { "2548", "1001", "CEC Adapter" }, - { "2548", "1002", "CEC Adapter" }, - { "254e", "e2b3", "SHF 58035 A BiasBoard" }, - { "2555", "0001", "B1 Fitness Band" }, - { "255e", "0001", "Device" }, - { "255e", "0002", "Dual" }, - { "2560", "c152", "See3CAM_CU51 5 Mpx monochrome camera" }, - { "2563", "031d", "DXT Mouse" }, - { "2563", "0523", "BM0523 WirelessGamepad" }, - { "2563", "0575", "ZD-V+ Wired Gaming Controller" }, - { "256b", "0121", "Audiant 80i" }, - { "256f", "c62e", "SpaceMouse Wireless (cabled)" }, - { "256f", "c62f", "SpaceMouse Wireless Receiver" }, - { "256f", "c631", "SpaceMouse Pro Wireless (cabled)" }, - { "256f", "c632", "SpaceMouse Pro Wireless Receiver" }, - { "256f", "c633", "SpaceMouse Enterprise" }, - { "256f", "c635", "SpaceMouse Compact" }, - { "256f", "c651", "CadMouse Wireless" }, - { "256f", "c652", "Universal Receiver" }, - { "256f", "c654", "CadMouse Pro Wireless" }, - { "256f", "c657", "CadMouse Pro Wireless Left" }, - { "2573", "0017", "MAYA22" }, - { "2574", "0901", "VC520" }, - { "2574", "0910", "CAM520" }, - { "2574", "0920", "VC320" }, - { "2574", "0930", "CAM530" }, - { "2574", "0940", "CAM340" }, - { "2574", "0950", "VC322" }, - { "2574", "0960", "VB342" }, - { "2576", "0003", "TCM" }, - { "2576", "0005", "BL [Boot Loader]" }, - { "2576", "0011", "THM" }, - { "2578", "4168", "2.4GHZ Wireless Arc Folding Mouse" }, - { "2581", "1807", "Generic HID Smartcard" }, - { "2581", "1808", "WinUSB Smartcard" }, - { "2581", "f1d0", "FIDO U2F Security Key" }, - { "25a7", "2410", "Laser mouse" }, - { "25a7", "fa23", "2.4G Receiver" }, - { "25a7", "fa61", "Elecom Co., Ltd MR-K013 Multicard Reader" }, - { "25b5", "0002", "Multitouch 3200" }, - { "25bb", "0063", "PRT.5105 [Yoke]" }, - { "25bb", "0064", "PRT.5105 [reserved]" }, - { "25bb", "0065", "PRT.5096 [Battery Management System]" }, - { "25bb", "0066", "PRT.5096 [Battery Management System]" }, - { "25bb", "0067", "PRT.5094" }, - { "25bb", "0068", "PRT.5094" }, - { "25bb", "0069", "PRT.5119 [Ethernet2CAN LC Gateway]" }, - { "25bb", "006a", "PRT.5113 [CLS CANaerospace Gateway]" }, - { "25bb", "006b", "PRT.5123" }, - { "25bb", "006c", "PRT.5123 [reserved]" }, - { "25bb", "006d", "PRT.5127" }, - { "25bb", "00ff", "MSP430 HID Update Agent" }, - { "25bf", "0001", "Isostick" }, - { "25bf", "0002", "Isostick updater" }, - { "25c8", "0014", "Single User touchfoil(tm) (SU2-80)" }, - { "25da", "0001", "Weather Station" }, - { "25dd", "1101", "miniLector-s" }, - { "25dd", "1201", "cryptokey" }, - { "25dd", "2221", "iAM" }, - { "25dd", "2311", "keyfour-a1" }, - { "25dd", "2321", "CKey4" }, - { "25dd", "2341", "tokenME FIPS v3" }, - { "25dd", "2351", "Digital DNA Key" }, - { "25dd", "2354", "Digital-DNA Key" }, - { "25dd", "2361", "Digital-DNA Key BT" }, - { "25dd", "2362", "Digital-DNA Key" }, - { "25dd", "2371", "TokenME EVO v2" }, - { "25dd", "23b4", "ArubaKey AK901" }, - { "25dd", "3111", "miniLector EVO" }, - { "25dd", "3211", "miniLector AIR EVO" }, - { "25dd", "3403", "miniLector AIR NFC v3" }, - { "25dd", "3503", "mLector AIR DI V3" }, - { "25dd", "b001", "miniLector Blue" }, - { "25f0", "c131", "Gioteck PS3 2.4G Wireless Controller" }, - { "25fb", "0102", "K-5" }, - { "2604", "0012", "U12" }, - { "2626", "ea60", "UART Bridge Controller [cp210x]" }, - { "262a", "100e", "SA9027 Audio Streaming Controller" }, - { "262a", "10e0", "SA9023 Audio Streaming Controller" }, - { "262a", "9020", "SA9020 audio controller" }, - { "262a", "9023", "SA9023 audio controller" }, - { "262a", "9027", "SA9027 audio controller" }, - { "262a", "9226", "SA9226 192KHz audio controller" }, - { "262a", "9227", "SA9227 384KHz audio controller" }, - { "262a", "9228", "SA9228 384KHz/DSD audio controller" }, - { "2632", "3209", "7-in-1 Card Reader" }, - { "2639", "0001", "MTi-10 IMU" }, - { "2639", "0002", "MTi-20 VRU" }, - { "2639", "0003", "MTi-30 AHRS" }, - { "2639", "0011", "MTi-100 IMU" }, - { "2639", "0012", "MTi-200 VRU" }, - { "2639", "0013", "MTi-300 AHRS" }, - { "2639", "0017", "MTi-G 7xx GNSS/INS" }, - { "2639", "0100", "Body Pack" }, - { "2639", "0101", "Awinda Station" }, - { "2639", "0102", "Awinda Dongle" }, - { "2639", "0103", "Sync Station" }, - { "2639", "0200", "MTw" }, - { "2639", "0300", "Motion Tracker Development Board" }, - { "2639", "0301", "MTi Converter" }, - { "2639", "d00d", "Wireless Receiver" }, - { "264a", "1004", "Ventus" }, - { "2650", "1311", "eBeam Classic [Luidia]" }, - { "2659", "1101", "TNT DVB-T/DAB/DAB+/FM" }, - { "2659", "1201", "FM Transmitter/Receiver" }, - { "2659", "1202", "MediaTV Analog/FM/DVB-T" }, - { "2659", "1203", "MediaTV Analog/FM/DVB-T MiniPCIe" }, - { "2659", "1204", "MediaTV Analog/FM/ATSC" }, - { "2659", "1205", "SkyTV Ultimate V" }, - { "2659", "1206", "MediaTV DVB-T MiniPCIe" }, - { "2659", "1207", "Sundtek HD Capture" }, - { "2659", "1208", "Sundtek SkyTV Ultimate III" }, - { "2659", "1209", "MediaTV Analog/FM/ATSC MiniPCIe" }, - { "2659", "1210", "MediaTV Pro III (EU)" }, - { "2659", "1211", "MediaTV Pro III (US)" }, - { "2659", "1212", "MediaTV Pro III MiniPCIe (EU)" }, - { "2659", "1213", "MediaTV Pro III MiniPCIe (US)" }, - { "2672", "0004", "Hero 3" }, - { "2672", "0006", "HERO 3+ Silver Edition" }, - { "2672", "0007", "HERO 3+ Black" }, - { "2672", "000e", "HERO4 Black" }, - { "2672", "0011", "Hero 3+ Black" }, - { "2676", "ba02", "ace" }, - { "2676", "ba03", "ba03 dart Vision Caera" }, - { "2676", "ba04", "ba04 pulse Vision Camera" }, - { "2676", "ba05", "Vision Camera" }, - { "2676", "ba06", "Vision Camera" }, - { "2676", "ba07", "Vision Camera" }, - { "2676", "ba08", "Vision Camera" }, - { "2676", "ba09", "Vision Camera" }, - { "2676", "ba0a", "Vision Camera" }, - { "2676", "ba0b", "Vision Camera" }, - { "2676", "ba0c", "Vision Camera" }, - { "2676", "ba0d", "Vision Camera" }, - { "2676", "ba0e", "Vision Camera" }, - { "2676", "ba0f", "Vision Camera" }, - { "2685", "0900", "[Packtalk Bold Bluetooth Motorcycle Intercom]" }, - { "2687", "fb01", "Base Station" }, - { "2689", "0601", "naturaSign Pad POS" }, - { "2689", "0901", "naturaSign Pad Light" }, - { "2689", "0ce1", "Pad Vivid US" }, - { "2689", "0cf1", "Pad Biometric US 5.0" }, - { "2689", "0d01", "duraSign Pad US 10.0" }, - { "2689", "0df1", "duraSign Pad Biometric US 10.0" }, - { "268b", "0101", "DELink 2" }, - { "268b", "0201", "Sabertooth 2x32" }, - { "268b", "0405", "Evolv DNA 200" }, - { "268b", "0406", "Evolv DNA 200" }, - { "268b", "0407", "Evolv DNA 200" }, - { "268b", "0408", "Evolv DNA 75" }, - { "268b", "0409", "Evolv DNA 250" }, - { "268b", "0412", "Evolv DNA 60" }, - { "268b", "0413", "Evolv DNA 200" }, - { "268b", "0414", "Evolv DNA 250" }, - { "268b", "0415", "Evolv DNA 75" }, - { "268b", "0416", "Evolv DNA 60" }, - { "268b", "0417", "Evolv DNA Go" }, - { "268b", "0419", "Evolv DNA 250 Color" }, - { "268b", "0423", "Evolv DNA 200" }, - { "268b", "0424", "Evolv DNA 250" }, - { "268b", "0425", "Evolv DNA 75" }, - { "268b", "0426", "Evolv DNA 60" }, - { "268b", "8405", "Evolv DNA 200 (recovery mode)" }, - { "268b", "8406", "Evolv DNA 200 (recovery mode)" }, - { "268b", "8407", "Evolv DNA 200 (recovery mode)" }, - { "268b", "8408", "Evolv DNA 75 (recovery mode)" }, - { "268b", "8409", "Evolv DNA 250 (recovery mode)" }, - { "268b", "8412", "Evolv DNA 60 (recovery mode)" }, - { "268b", "8413", "Evolv DNA 200 (recovery mode)" }, - { "268b", "8414", "Evolv DNA 250 (recovery mode)" }, - { "268b", "8415", "Evolv DNA 75 (recovery mode)" }, - { "268b", "8416", "Evolv DNA 60 (recovery mode)" }, - { "268b", "8423", "Evolv DNA 200 (recovery mode)" }, - { "268b", "8424", "Evolv DNA 250 (recovery mode)" }, - { "268b", "8425", "Evolv DNA 75 (recovery mode)" }, - { "268b", "8426", "Evolv DNA 60 (recovery mode)" }, - { "26a9", "0001", "Payment Terminal v1.0" }, - { "26aa", "0001", "FT-1D" }, - { "26aa", "000e", "FTA-550" }, - { "26aa", "000f", "FTA-750" }, - { "26b5", "0002", "ECD 2" }, - { "26b5", "0003", "ECD 2 (Audio Class 1)" }, - { "26b5", "0004", "PI 2D" }, - { "26b5", "0005", "PI 2D (Audio Class 1)" }, - { "26b5", "0006", "ECI 6" }, - { "26b5", "0007", "ECI 6 (Audio Class 1)" }, - { "26b5", "0020", "ECI 80" }, - { "26bd", "9917", "Fusion Flash Drive" }, - { "26f2", "0200", "MyDac" }, - { "2707", "0005", "drive.web" }, - { "270d", "1001", "R-Idge Bootloader" }, - { "270d", "1002", "R-Idge Router" }, - { "2717", "0011", "100Mbps Network Card Adapter" }, - { "2717", "0360", "Mi3W" }, - { "2717", "0368", "Mi4 LTE" }, - { "2717", "3801", "Mi ANC & Type-C In-Ear Earphones" }, - { "2717", "4106", "MediaTek MT7601U [MI WiFi]" }, - { "2717", "ff08", "Redmi Note 3 (ADB Interface)" }, - { "2717", "ff10", "Mi/Redmi series (PTP)" }, - { "2717", "ff18", "Mi/Redmi series (PTP + ADB)" }, - { "2717", "ff40", "Mi/Redmi series (MTP)" }, - { "2717", "ff48", "Mi/Redmi series (MTP + ADB)" }, - { "2717", "ff60", "redmi prime 2" }, - { "2717", "ff68", "Mi-4c" }, - { "2717", "ff80", "Mi/Redmi series (RNDIS)" }, - { "2717", "ff88", "Mi/Redmi series (RNDIS + ADB)" }, - { "272c", "7d13", "I-jet" }, - { "2730", "0fff", "CT-S2000/4000/310/CLP-521/621/631/CL-S700 Series" }, - { "2730", "1004", "PPU-700" }, - { "2730", "2002", "CT-S2000 Thermal Printer (Parallel mode)" }, - { "2730", "200f", "CT-S310 Label printer" }, - { "2735", "0003", "MPIO HS100" }, - { "2735", "1001", "MPIO FY200" }, - { "2735", "1002", "MPIO FL100" }, - { "2735", "1003", "MPIO FD100" }, - { "2735", "1004", "MPIO HD200" }, - { "2735", "1005", "MPIO HD300" }, - { "2735", "1006", "MPIO FG100" }, - { "2735", "1007", "MPIO FG130" }, - { "2735", "1008", "MPIO FY300" }, - { "2735", "1009", "MPIO FY400" }, - { "2735", "100a", "MPIO FL300" }, - { "2735", "100b", "MPIO HS200" }, - { "2735", "100c", "MPIO FL350" }, - { "2735", "100d", "MPIO FY500" }, - { "2735", "100e", "MPIO FY500" }, - { "2735", "100f", "MPIO FY600" }, - { "2735", "1012", "MPIO FL400" }, - { "2735", "1013", "MPIO HD400" }, - { "2735", "1014", "MPIO HD400" }, - { "2735", "1016", "MPIO FY700" }, - { "2735", "1017", "MPIO FY700" }, - { "2735", "1018", "MPIO FY800" }, - { "2735", "1019", "MPIO FY800" }, - { "2735", "101a", "MPIO FY900" }, - { "2735", "101b", "MPIO FY900" }, - { "2735", "102b", "MPIO FL500" }, - { "2735", "102c", "MPIO FL500" }, - { "2735", "103f", "MPIO FY570" }, - { "2735", "1040", "MPIO FY570" }, - { "2735", "1041", "MPIO FY670" }, - { "2735", "1042", "MPIO FY670" }, - { "2735", "1043", "HCT HMD-180A" }, - { "2735", "1044", "HCT HMD-180A" }, - { "273f", "1000", "ColorHug bootloader" }, - { "273f", "1001", "ColorHug" }, - { "273f", "1002", "ColorHug+" }, - { "273f", "1003", "ColorHug+ Bootloader" }, - { "273f", "1004", "ColorHug2" }, - { "273f", "1005", "ColorHug2 bootloader" }, - { "2756", "0002", "X1D Camera" }, - { "2759", "0003", "IQOS Pocket Charger 2.4" }, - { "2765", "0004", "Bodyguard 2" }, - { "2766", "0000", "OneTouch Verio" }, - { "2770", "0a01", "ScanJet 4600 series" }, - { "2770", "905c", "Che-Ez Snap SNAP-U/Digigr8/Soundstar TDC-35" }, - { "2770", "9060", "A130" }, - { "2770", "9120", "Che-ez! Snap / iClick Tiny VGA Digital Camera" }, - { "2770", "9130", "TCG 501" }, - { "2770", "913c", "Argus DC-1730" }, - { "2770", "9150", "Mini Cam" }, - { "2770", "9153", "iClick 5X" }, - { "2770", "915d", "Cyberpix S-210S / Little Tikes My Real Digital Camera" }, - { "2770", "930b", "CCD Webcam(PC370R)" }, - { "2770", "930c", "CCD Webcam(PC370R)" }, - { "27a8", "a120", "Contactless + Chip Reader" }, - { "27b8", "01ed", "blink(1)" }, - { "27bd", "0001", "Slab Node Manager" }, - { "27bd", "0002", "Slab Node Manager JTAG" }, - { "27c0", "0818", "Paperlike HD-FT" }, - { "27c6", "5117", "Fingerprint Reader" }, - { "27c6", "5201", "Fingerprint Reader" }, - { "27c6", "5301", "Fingerprint Reader" }, - { "27c6", "530c", "Fingerprint Reader" }, - { "27c6", "532d", "Fingerprint" }, - { "27c6", "5381", "Fingerprint Reader" }, - { "27c6", "5385", "Fingerprint Reader" }, - { "27c6", "538c", "Fingerprint Reader" }, - { "27c6", "5395", "Fingerprint Reader" }, - { "27c6", "5584", "Fingerprint Reader" }, - { "27c6", "55b4", "Fingerprint Reader" }, - { "27c6", "5740", "Fingerprint Reader" }, - { "27dd", "0002", "Mindeo Virtual COM Port" }, - { "2803", "0001", "Controller Area Network car alarm module [SLCAN-2]" }, - { "2806", "0001", "N-PASS X1" }, - { "2817", "0002", "BB60C Spectrum Analyzer" }, - { "2817", "0004", "SM200A Spectrum Analyzer" }, - { "2818", "0001", "Transfer Drive Dock" }, - { "2821", "0161", "WL-161 802.11b Wireless Adapter [SiS 162U]" }, - { "2821", "160f", "WL-160g 802.11g Wireless Adapter [Envara WiND512]" }, - { "2821", "3300", "WL-140 / Hawking HWU36D 802.11b Wireless Adapter [Intersil PRISM 3]" }, - { "2833", "0001", "Rift Developer Kit 1" }, - { "2833", "0021", "Rift DK2" }, - { "2833", "0031", "Rift CV1" }, - { "2833", "0101", "Latency Tester" }, - { "2833", "0137", "Quest Headset" }, - { "2833", "0201", "Camera DK2" }, - { "2833", "0211", "Rift CV1 Sensor" }, - { "2833", "0330", "Rift CV1 Audio" }, - { "2833", "1031", "Rift CV1" }, - { "2833", "2021", "Rift DK2" }, - { "2833", "2031", "Rift CV1" }, - { "2833", "3031", "Rift CV1" }, - { "286b", "0003", "D6BB/D9 seismic digitizer" }, - { "2886", "0002", "Seeeduino Lite" }, - { "2890", "0213", "ClearPath 4-axis Comm Hub" }, - { "2899", "012c", "Camera Device" }, - { "289b", "0001", "Gamecube/N64 controller v2.2" }, - { "289b", "0002", "2nes2snes" }, - { "289b", "0003", "4nes4snes" }, - { "289b", "0004", "Gamecube/N64 controller v2.3" }, - { "289b", "0005", "Saturn (Joystick mode)" }, - { "289b", "0006", "Saturn (Mouse mode)" }, - { "289b", "0007", "Famicom controller" }, - { "289b", "0008", "Dreamcast (Joystick mode)" }, - { "289b", "0009", "Dreamcast (Mouse mode)" }, - { "289b", "000a", "Dreamcast (Keyboard mode)" }, - { "289b", "000b", "Gamecube/N64 controller v2.9 (Keyboard mode)" }, - { "289b", "000c", "Gamecube/N64 controller v2.9 (Joystick mode)" }, - { "289b", "000e", "VirtualBoy controller" }, - { "289b", "0010", "WUSBMote v1.2 (Joystick mode)" }, - { "289b", "0011", "WUSBMote v1.2 (Mouse mode)" }, - { "289b", "0012", "WUSBMote v1.2.1 (Joystick mode)" }, - { "289b", "0013", "WUSBMote v1.2.1 (Mouse mode)" }, - { "289b", "0014", "WUSBMote v1.3 (Joystick mode)" }, - { "289b", "0015", "WUSBMote v1.3 (Mouse mode)" }, - { "289b", "0016", "WUSBMote v1.3 (I2C interface mode)" }, - { "289b", "0017", "Gamecube/N64 controller v3.0" }, - { "289b", "0018", "Atari Jaguar controller" }, - { "289b", "0019", "MultiDB9joy v3" }, - { "289b", "001a", "MultiDB9joy v3 (multitap mode)" }, - { "289b", "0100", "Dual-relay board" }, - { "289b", "0500", "Energy meter" }, - { "289b", "0502", "Precision barometer" }, - { "289d", "0010", "PIR206 Thermal Camera [Seek Compact]" }, - { "28bd", "0920", "Star G960 Graphic Tablet" }, - { "28c7", "0001", "3D printer serial interface" }, - { "28d4", "0008", "120/200/250/400/800/D-Premier" }, - { "28de", "1102", "Wired Controller" }, - { "28de", "1142", "Wireless Steam Controller" }, - { "28de", "2000", "Lighthouse FPGA RX" }, - { "28de", "2012", "Virtual Reality Controller [VRC]" }, - { "28de", "2101", "Watchman Dongle" }, - { "28de", "2500", "Lighthouse Base Station" }, - { "28e0", "1001", "BTS Monitoring Config for Prototype" }, - { "28e0", "5740", "TRUMON TS-107" }, - { "28e0", "5741", "TRUMON TS-108" }, - { "28e9", "0189", "GD32 DFU Bootloader (Longan Nano)" }, - { "28f3", "2000", "Mobile Wi-Fi (C200)" }, - { "28f3", "3000", "Mini" }, - { "28f3", "4000", "Flex" }, - { "28f9", "0001", "Profishark 1G Black" }, - { "28f9", "0003", "Profishark 1G+" }, - { "28f9", "0004", "Profishark 1G" }, - { "28f9", "0005", "Profishark 10G" }, - { "28f9", "0006", "Profishark 100M" }, - { "290c", "4b4d", "Mercury iPod Dock" }, - { "2912", "20c8", "D1 24-bit DAC" }, - { "2912", "30c8", "D1 24-bit DAC" }, - { "2931", "0a01", "Jolla Phone MTP" }, - { "2931", "0a02", "Jolla Phone Developer" }, - { "2931", "0a05", "Jolla PC connection" }, - { "2931", "0a07", "Phone MTP" }, - { "2931", "0afe", "Jolla charging only" }, - { "2939", "4959", "A-MCB2" }, - { "2939", "495a", "X-MCB1" }, - { "2939", "495b", "X-MCB2" }, - { "2939", "49b1", "X-MCB1" }, - { "2939", "49b2", "X-MCB2" }, - { "2939", "49c1", "X-MCC1" }, - { "2939", "49c2", "X-MCC2" }, - { "2939", "49c3", "X-MCC3" }, - { "2939", "49c4", "X-MCC4" }, - { "2957", "0001", "Management Console" }, - { "2961", "0001", "C.24 keyboard" }, - { "296b", "3917", "CX-WE100 Camera" }, - { "2972", "0007", "X3 2nd gen audio player / DAC" }, - { "298d", "2020", "NB-2020-U Fingerprint Reader" }, - { "29bd", "4101", "Multi-touch Device" }, - { "29c1", "1105", "M17-G903-1 [Tazpad]" }, - { "29c1", "1107", "M17-G903-A [Tazpad] (CCID)" }, - { "29c2", "0001", "DGT 650" }, - { "29c2", "0003", "DGT 450" }, - { "29c2", "0009", "DGT 260" }, - { "29c2", "0011", "Stream 4x5" }, - { "29ea", "0102", "Advantage2 Keyboard" }, - { "29f1", "33f1", "Avalon nano 1.0" }, - { "29f1", "33f2", "Avalon USB2IIC Converter" }, - { "29f1", "33f3", "Avalon nano 2.0" }, - { "29f1", "40f1", "Avalon4 mini" }, - { "2a03", "0001", "Linino ONE (bootloader)" }, - { "2a03", "0036", "Arduino Leonardo (bootloader)" }, - { "2a03", "0037", "Arduino Micro (bootloader)" }, - { "2a03", "0038", "Arduino Robot Control (bootloader)" }, - { "2a03", "0039", "Arduino Robot Motor (bootloader)" }, - { "2a03", "003a", "Arduino Micro ADK rev3 (bootloader)" }, - { "2a03", "003b", "Arduino usb2serial" }, - { "2a03", "003c", "Arduino Explora (bootloader)" }, - { "2a03", "003d", "Arduino Due (usb2serial)" }, - { "2a03", "003e", "Arduino Due" }, - { "2a03", "0041", "Arduino Yun (bootloader)" }, - { "2a03", "0042", "Arduino Mega 2560 Rev3" }, - { "2a03", "0043", "Arduino Uno Rev3" }, - { "2a03", "004d", "Arduino Zero Pro (bootloader)" }, - { "2a03", "8001", "Linino ONE (CDC ACM)" }, - { "2a03", "8036", "Arduino Leonardo (CDC ACM)" }, - { "2a03", "8037", "Arduino Micro (CDC ACM)" }, - { "2a03", "8038", "Arduino Robot Control (CDC ACM)" }, - { "2a03", "8039", "Arduino Robot Motor (CDC ACM)" }, - { "2a03", "803a", "Arduino Micro ADK rev3 (CDC ACM)" }, - { "2a03", "803c", "Arduino Explora (CDC ACM)" }, - { "2a03", "8041", "Arduino Yun (CDC ACM)" }, - { "2a03", "804d", "Arduino Zero Pro (CDC ACM)" }, - { "2a13", "0000", "S-Series data capture device" }, - { "2a19", "1002", "Mimas V2 Spartan6 FPGA Development Board" }, - { "2a19", "5440", "TimVideos' HDMI2USB Opsis (FX2) - Unconfigured device" }, - { "2a19", "5441", "TimVideos' HDMI2USB Opsis (FX2) - Firmware load/upgrade" }, - { "2a19", "5442", "TimVideos' HDMI2USB Opsis (FX2) - HDMI/DVI Capture Device" }, - { "2a1d", "0000", "MinION" }, - { "2a1d", "0001", "MinION" }, - { "2a1d", "0010", "VolTRAX" }, - { "2a1d", "0011", "VolTRAX" }, - { "2a1d", "0020", "GridION" }, - { "2a1d", "0021", "GridION" }, - { "2a37", "5110", "UPS35110/UPS25110" }, - { "2a39", "3fb0", "Babyface Pro (Class Compliant Mode)" }, - { "2a39", "3fc0", "Babyface Pro" }, - { "2a39", "3fc1", "Fireface UFX+" }, - { "2a39", "3fc2", "Fireface UFX+" }, - { "2a39", "3fd1", "Fireface UFX+" }, - { "2a3c", "0100", "Stepper Device" }, - { "2a3c", "0200", "BLDC/PMSM Device" }, - { "2a3c", "0300", "Motor Control Device" }, - { "2a3c", "0400", "Motor Control Device" }, - { "2a3c", "0500", "PANdrive(TM)" }, - { "2a3c", "0600", "motionCookie(TM)" }, - { "2a3c", "0700", "Evaluation Device" }, - { "2a3c", "0800", "Interface Device" }, - { "2a3c", "0900", "Generic Device" }, - { "2a45", "0001", "MX Phone (BICR)" }, - { "2a45", "0c02", "MX Phone (MTP & ADB)" }, - { "2a45", "0c03", "MX Phone (BICR & ADB)" }, - { "2a45", "2008", "MX Phone (MTP)" }, - { "2a45", "200a", "MX Phone (MTP & ACM & ADB)" }, - { "2a45", "200b", "MX Phone (PTP)" }, - { "2a45", "200c", "MX Phone (PTP & ADB)" }, - { "2a45", "2012", "MX Phone (MTP & ACM)" }, - { "2a47", "0c02", "bq Aquaris E4.5" }, - { "2a47", "201d", "Tablet Edison 3" }, - { "2a47", "903a", "bq Aquaris U" }, - { "2a4b", "0400", "Pilot4 Integrated Hub" }, - { "2a62", "b301", "LiveSD" }, - { "2a62", "b302", "NavSD" }, - { "2a6e", "0003", "Touch Board" }, - { "2a6e", "8003", "Touch Board" }, - { "2a70", "4ee7", "ONEPLUS A3010 [OnePlus 3T] / A5010 [OnePlus 5T] / A6003 [OnePlus 6] (Charging + USB debugging modes)" }, - { "2a70", "904d", "A3000 phone (PTP mode) [3T]" }, - { "2a70", "904e", "A3000 phone (PTP mode, with debug) [3T]" }, - { "2a88", "ffff", "DFU" }, - { "2ab6", "0001", "PDP3000HV DAC" }, - { "2ab6", "0002", "MP1000E, MP2000R, MP2500R, MP3100HV" }, - { "2ab6", "0003", "TA HD AUDIO V2" }, - { "2ac7", "0101", "Evaluation Kit [Dragonfly]" }, - { "2ac7", "0102", "UHDK5" }, - { "2ac7", "0104", "Touchbase" }, - { "2ac7", "0110", "STRATOS Explore" }, - { "2ac7", "0111", "STRATOS Explore DFU" }, - { "2ac7", "0112", "STRATOS Inspire" }, - { "2ac7", "0113", "STRATOS Inspire DFU" }, - { "2ac7", "ffff", "DFU" }, - { "2ad1", "7ab8", "Turningtable" }, - { "2ae5", "9015", "2 (Mass storage & ADB)" }, - { "2ae5", "9024", "2 (RNDIS & ADB)" }, - { "2ae5", "9039", "2 (MTP & ADB)" }, - { "2ae5", "904d", "2 (PTP)" }, - { "2ae5", "904e", "2 (PTP & ADB)" }, - { "2ae5", "90de", "2 (Charging)" }, - { "2ae5", "f000", "2 (Mass storage)" }, - { "2ae5", "f003", "2 (MTP)" }, - { "2ae5", "f005", "2 (tethering)" }, - { "2ae5", "f00e", "2 (RNDIS)" }, - { "2aec", "6011", "Converter" }, - { "2af4", "0100", "Seaboard GRAND" }, - { "2af4", "0200", "Seaboard RISE" }, - { "2af4", "0300", "BlueWing Proto" }, - { "2af4", "0400", "VOICE" }, - { "2af4", "0500", "BLOCKS" }, - { "2b03", "f580", "ZED camera" }, - { "2b03", "f582", "ZED camera" }, - { "2b03", "f680", "ZED-M camera" }, - { "2b03", "f681", "ZED-M HID Interface" }, - { "2b03", "f682", "ZED-M camera" }, - { "2b03", "f683", "ZED-M HID Interface" }, - { "2b03", "f684", "ZED-M camera" }, - { "2b0e", "171b", "Le2" }, - { "2b0e", "171e", "Le2 in USB tethering mode" }, - { "2b0e", "1830", "Le1 Pro" }, - { "2b0e", "1844", "Le Max2" }, - { "2b0e", "2b0e", "LeEco" }, - { "2b0e", "6108", "Lex720 [LePro 3] in connection sharing usb" }, - { "2b0e", "610b", "Lex720 [LePro 3] in Camera mode" }, - { "2b0e", "610c", "Lex720 [LePro 3]" }, - { "2b0e", "610d", "Lex720 [LePro 3] in debug" }, - { "2b23", "cafe", "UsbDk (USB Development Kit)" }, - { "2b24", "0001", "Bitcoin Wallet [KeepKey]" }, - { "2b24", "0002", "Bitcoin Wallet" }, - { "2b3e", "ace2", "CW1173 [ChipWhisperer-Lite]" }, - { "2b4c", "1004", "Z1 MTP" }, - { "2bc5", "0401", "Astra" }, - { "2bc5", "0403", "Astra Pro" }, - { "2bc5", "0407", "Astra Mini S" }, - { "2bd6", "4201", "RS-485 Controller and Interface [Cypress Semiconductor]" }, - { "2c02", "14ea", "GW-US11H WLAN" }, - { "2c1a", "0000", "Wireless Optical Mouse" }, - { "2c23", "1b83", "NIC" }, - { "2c4e", "0100", "MW300UM RTL8192EU wifi" }, - { "2c4f", "3003", "PR Wireless Presenter" }, - { "2c55", "a100", "ML1 Lightpack (MLDB)" }, - { "2c55", "b100", "ML1 Lightpack (fastboot)" }, - { "2c55", "c001", "ML1 Control (COM)" }, - { "2c55", "c002", "ML1 Control (Bootloader)" }, - { "2c7c", "0121", "EC21 LTE modem" }, - { "2c7c", "0125", "EC25 LTE modem" }, - { "2c7c", "0191", "EG91 LTE modem" }, - { "2c7c", "0195", "EG95 LTE modem" }, - { "2c7c", "0296", "BG96 CAT-M1/NB-IoT modem" }, - { "2c7c", "0306", "EG06/EP06/EM06 LTE-A modem" }, - { "2c7c", "0435", "AG35 LTE modem" }, - { "2c97", "0000", "Blue" }, - { "2c97", "0001", "Nano S" }, - { "2c97", "0004", "Nano X" }, - { "2c99", "0001", "i3 MK2S" }, - { "2c9c", "1000", "Walabot Makers Series" }, - { "2c9c", "1020", "Walabot DIY" }, - { "2c9c", "1022", "Walabot DIY Plus" }, - { "2c9c", "1030", "Walabot Home (vHC)" }, - { "2c9c", "9100", "VNAKit" }, - { "2c9d", "90a0", "Goa" }, - { "2c9d", "bac5", "Backspin" }, - { "2ca3", "0008", "Mavic Mini MR1SD25 Remote controller" }, - { "2cb7", "0210", "L830-EB-00 LTE WWAN Modem" }, - { "2ccf", "0880", "HyperFIDO" }, - { "2cd9", "0804", "PowerSync4 USBPD Hub" }, - { "2cdc", "f232", "CTD48Mc CTD Probe" }, - { "2ce5", "0014", "Mass Storage [NT2 U31C]" }, - { "2cf0", "5246", "bladeRF" }, - { "2cf0", "5250", "bladeRF 2.0 micro" }, - { "2d2d", "504d", "Proxmark3" }, - { "2d6b", "7777", "Joker TV universal DTV receiver" }, - { "2d81", "4f01", "Ozobot Evo" }, - { "2d84", "b806", "DT-108B Thermal Label Printer" }, - { "2dc8", "5006", "M30 Bluetooth gamepad" }, - { "2dc8", "5750", "Bootloader" }, - { "2dc8", "6000", "SF30 Pro gamepad" }, - { "2dc8", "6001", "SN30/SF30 Pro gamepad" }, - { "2dc8", "ab11", "F30 gamepad" }, - { "2dc8", "ab12", "N30 gamepad" }, - { "2dc8", "ab20", "SN30/SF30 gamepad" }, - { "2dc8", "ab21", "SF30 gamepad" }, - { "2dcf", "c951", "Audio Class 1.0 Devices" }, - { "2dcf", "c952", "Audio Class 2.0 Devices" }, - { "2def", "0000", "KiNOS Boot DFU" }, - { "2def", "0102", "KTWM102 Module" }, - { "2df2", "0213", "LIPSedge DL 3D ToF Camera" }, - { "2df2", "0215", "LIPSedge DL RGB Camera" }, - { "2df2", "2102", "LIPSedge 5 Megapixel RGB Camera" }, - { "2e04", "0001", "Nokia 3310 3G" }, - { "2e04", "0002", "Nokia 3310 3G" }, - { "2e04", "0a14", "Nokia 3310 3G" }, - { "2e04", "c008", "Tethering Network Interface" }, - { "2e04", "c009", "Nokia 1 (bootloader)" }, - { "2e04", "c025", "Nokia 8 (MTP mode)" }, - { "2e04", "c026", "Nokia Smartphone" }, - { "2e04", "c029", "Nokia 8 (PTP mode)" }, - { "2e04", "c031", "Nokia 1 (PTP)" }, - { "2e04", "c03f", "Nokia 8 (MIDI mode)" }, - { "2e0e", "0001", "CAN Gateway" }, - { "2e24", "0652", "Duke Xbox One controller" }, - { "2e24", "1688", "X91 Xbox One controller" }, - { "2e57", "454d", "SlideSX EnergyMeter" }, - { "2e57", "454e", "SlideSX EnergyMeter DFU" }, - { "2e57", "5cba", "SlideSX / ClustSafe Bus Adapter" }, - { "2e69", "1001", "Piksi Multi" }, - { "2e95", "7725", "Controller" }, - { "2f76", "0905", "KX905 Smart Terminal" }, - { "2f76", "0906", "KX906 Smart Card Reader" }, - { "2f76", "1906", "KX906 Smart Token (Mass Storage)" }, - { "2fc0", "0001", "Project Archer" }, - { "2fc6", "6012", "UAC2 Device GB" }, - { "2fe0", "8b01", "XAP-RC-001 ENF Router Card" }, - { "2fe0", "8b02", "XAP-RW-001 ENF Router Card with WiFi" }, - { "2fe0", "8bde", "XAP-EA-002 ENF Access Card" }, - { "2fe0", "8bee", "XAP-EA-003 ENF Access Card" }, - { "2fe7", "0001", "SMART S@T" }, - { "2feb", "0004", "Veikk A15 Pen Tablet" }, - { "3016", "0001", "Nitrogen Bootloader" }, - { "3036", "0001", "Print iD" }, - { "3036", "0002", "iDBio" }, - { "3057", "0002", "ZOWIE Gaming mouse" }, - { "308f", "0000", "Infinity 60% Bootloader" }, - { "308f", "0001", "Infinity 60% - Standard" }, - { "308f", "0002", "Infinity 60% - Hacker" }, - { "308f", "0003", "Infinity Ergodox Bootloader" }, - { "308f", "0004", "Infinity Ergodox" }, - { "308f", "0005", "WhiteFox Bootloader" }, - { "308f", "0006", "WhiteFox - Vanilla" }, - { "308f", "0007", "WhiteFox - ISO" }, - { "308f", "0008", "WhiteFox - Aria" }, - { "308f", "0009", "WhiteFox - Winkeyless" }, - { "308f", "000a", "WhiteFox - True Fox" }, - { "308f", "000b", "WhiteFox - Jack of All Trades" }, - { "308f", "000c", "Infinity 60% LED Bootloader" }, - { "308f", "000d", "Infinity 60% LED - Standard" }, - { "308f", "000e", "Infinity 60% LED - Hacker" }, - { "308f", "000f", "Infinity 60% LED - Alphabet" }, - { "308f", "0010", "K-Type Bootloader" }, - { "308f", "0011", "K-Type" }, - { "308f", "0012", "Kira Bootloader" }, - { "308f", "0013", "Kira" }, - { "308f", "0014", "Gemini Dawn/Dusk Bootloader" }, - { "308f", "0015", "Gemini Dawn/Dusk" }, - { "308f", "0016", "Re:Type Bootloader" }, - { "308f", "0017", "Re:Type" }, - { "308f", "0018", "Re:Type USB Hub" }, - { "308f", "0019", "WhiteFox (SAM4S) Bootloader" }, - { "308f", "001a", "WhiteFox (SAM4S) - Vanilla" }, - { "308f", "001b", "WhiteFox (SAM4S) - ISO" }, - { "308f", "001c", "WhiteFox (SAM4S) - Aria" }, - { "308f", "001d", "WhiteFox (SAM4S) - Winkeyless" }, - { "308f", "001e", "WhiteFox (SAM4S) - True Fox" }, - { "308f", "001f", "WhiteFox (SAM4S) - Jack of All Trades" }, - { "30a4", "0001", "Notecard" }, - { "30c2", "1388", "SPL Meter" }, - { "30ee", "1001", "F-01L" }, - { "3111", "0000", "SGS-NT Microspectrometer" }, - { "3112", "0001", "MBC-WB01 (CDC-ACM)" }, - { "3112", "0002", "MBC-WB01 (Bootloader)" }, - { "3112", "0003", "ABC (CDC ACM)" }, - { "3112", "0004", "ABC (Bootloader)" }, - { "3125", "0001", "TrackerPod Camera Stand" }, - { "316d", "4c4b", "Librem Key" }, - { "316e", "0001", "DIAMOND token" }, - { "3171", "0011", "ClusterCTRL DA" }, - { "3171", "0012", "ClusterCTRL pHAT" }, - { "3171", "0013", "ClusterCTRL A+6" }, - { "3171", "0014", "ClusterCTRL Triple" }, - { "3171", "0015", "ClusterCTRL Single" }, - { "3195", "f190", "MSO-19" }, - { "3195", "f280", "MSO-28" }, - { "3195", "f281", "MSO-28" }, - { "3197", "1001", "M151" }, - { "3197", "1002", "M250" }, - { "3197", "1003", "P130" }, - { "3197", "1004", "M130" }, - { "3197", "1101", "P247" }, - { "3197", "1102", "M247" }, - { "3197", "1103", "M348" }, - { "31c9", "1001", "Printer" }, - { "31c9", "1301", "Black and White Laser Printer" }, - { "31c9", "1501", "LaserPrint GA50 series" }, - { "3200", "2100", "ALE 8058s" }, - { "3200", "2101", "ALE 8068s" }, - { "3200", "2102", "8078s" }, - { "3219", "0044", "SKO44 Optical Keyboard" }, - { "326d", "0001", "Avocor USB Camera" }, - { "3275", "4fb1", "MonsterTV P2H" }, - { "32b3", "d1a6", "TXT Multihub" }, - { "32b3", "d1a7", "TXT Multihub" }, - { "3310", "0100", "Pure" }, - { "3310", "0101", "Pure tethering" }, - { "3333", "3333", "2 port KVM switch model 60652K" }, - { "3334", "1701", "Fast Ethernet" }, - { "3340", "043a", "Mio A701 DigiWalker PPCPhone" }, - { "3340", "0e3a", "Pocket PC 300 GPS SL / Typhoon MyGuide 3500" }, - { "3340", "a0a3", "deltaX 5 BT (D) PDA" }, - { "3340", "ffff", "Mio DigiWalker Sync" }, - { "3344", "3744", "OEM PC Remote" }, - { "3384", "0000", "Thelio Io (thelio-io)" }, - { "3384", "0001", "Launch Configurable Keyboard (launch_1)" }, - { "348f", "2322", "Wireless Presenter" }, - { "3504", "f110", "Security Key" }, - { "3538", "0001", "Travel Flash" }, - { "3538", "0015", "Mass Storge Device" }, - { "3538", "0022", "Hi-Speed Mass Storage Device" }, - { "3538", "0042", "Cool Drive U339 Flash Disk" }, - { "3538", "0054", "Flash Drive (2GB)" }, - { "3538", "0901", "Traveling Disk U273 (4GB)" }, - { "3579", "6901", "Media Reader" }, - { "357d", "7788", "JMicron JMS567 ATA/ATAPI Bridge" }, - { "3767", "0101", "Speedster 3 Forceshock Wheel" }, - { "3838", "0001", "5-in-1 Card Reader" }, - { "3838", "1031", "2.4G Wireless Mouse" }, - { "3923", "12c0", "DAQPad-6020E" }, - { "3923", "12d0", "DAQPad-6507" }, - { "3923", "12e0", "NI 4350" }, - { "3923", "12f0", "NI 5102" }, - { "3923", "1750", "DAQPad-6508" }, - { "3923", "17b0", "USB-ISA-Bridge" }, - { "3923", "1820", "DAQPad-6020E (68 pin I/O)" }, - { "3923", "1830", "DAQPad-6020E (BNC)" }, - { "3923", "1f00", "DAQPad-6024E" }, - { "3923", "1f10", "DAQPad-6024E" }, - { "3923", "1f20", "DAQPad-6025E" }, - { "3923", "1f30", "DAQPad-6025E" }, - { "3923", "1f40", "DAQPad-6036E" }, - { "3923", "1f50", "DAQPad-6036E" }, - { "3923", "2f80", "DAQPad-6052E" }, - { "3923", "2f90", "DAQPad-6052E" }, - { "3923", "702a", "GPIB-USB-B" }, - { "3923", "702b", "GPIB-USB-B Initialization" }, - { "3923", "703c", "USB-485 RS485 Cable" }, - { "3923", "709b", "GPIB-USB-HS" }, - { "3923", "7166", "USB-8451" }, - { "3923", "716e", "USB-8451 Firmware Loader" }, - { "3923", "717a", "USB-6008" }, - { "3923", "717b", "USB-6009" }, - { "3923", "71d6", "USB-6008 OEM" }, - { "3923", "71d7", "USB-6009 OEM" }, - { "3923", "71d8", "USB-6009 OEM" }, - { "3923", "7254", "NI MIO (data acquisition card) firmware updater" }, - { "3923", "729e", "USB-6251 (OEM) data acquisition card" }, - { "3923", "7346", "USB-6229" }, - { "3923", "755b", "myDAQ" }, - { "3923", "76af", "USB-6000" }, - { "3923", "76b0", "USB-6000 OEM" }, - { "3923", "76bf", "USB-6001" }, - { "3923", "76c0", "USB-6001 OEM" }, - { "3923", "76c4", "USB-6002" }, - { "3923", "76c5", "USB-6002 OEM" }, - { "3923", "76c6", "USB-6003" }, - { "3923", "76c7", "USB-6003 OEM" }, - { "40bb", "0a09", "USB2.0-SCSI Bridge USB2-SC" }, - { "4101", "1301", "IR-2510 usb phone" }, - { "4102", "1001", "iFP-100 series mp3 player" }, - { "4102", "1003", "iFP-300 series mp3 player" }, - { "4102", "1005", "iFP-500 series mp3 player" }, - { "4102", "1007", "iFP-700 series mp3/ogg vorbis player" }, - { "4102", "1008", "iFP-800 series mp3/ogg vorbis player" }, - { "4102", "100a", "iFP-1000 series mp3/ogg vorbis player" }, - { "4102", "1014", "T20 series mp3/ogg vorbis player (ums firmware)" }, - { "4102", "1019", "T30" }, - { "4102", "1034", "T60" }, - { "4102", "1040", "M1Player" }, - { "4102", "1041", "E100 (ums)" }, - { "4102", "1101", "iFP-100 series mp3 player (ums firmware)" }, - { "4102", "1103", "iFP-300 series mp3 player (ums firmware)" }, - { "4102", "1105", "iFP-500 series mp3 player (ums firmware)" }, - { "4102", "1113", "T10 (alternate)" }, - { "4102", "1117", "T10" }, - { "4102", "1119", "T30 series mp3/ogg/wma player" }, - { "4102", "1141", "E100 (mtp)" }, - { "4102", "2002", "H10 6GB" }, - { "4102", "2101", "H10 20GB (mtp)" }, - { "4102", "2102", "H10 5GB (mtp)" }, - { "4102", "2105", "H10 5/6GB (mtp)" }, - { "413c", "0000", "DRAC 5 Virtual Keyboard and Mouse" }, - { "413c", "0001", "DRAC 5 Virtual Media" }, - { "413c", "0058", "Port Replicator" }, - { "413c", "1001", "Keyboard Hub" }, - { "413c", "1002", "Keyboard Hub" }, - { "413c", "1003", "Keyboard Hub" }, - { "413c", "1005", "Multimedia Pro Keyboard Hub" }, - { "413c", "2001", "Keyboard HID Support" }, - { "413c", "2002", "SK-8125 Keyboard" }, - { "413c", "2003", "Keyboard SK-8115" }, - { "413c", "2005", "RT7D50 Keyboard" }, - { "413c", "2010", "Keyboard" }, - { "413c", "2011", "Multimedia Pro Keyboard" }, - { "413c", "2100", "SK-3106 Keyboard" }, - { "413c", "2101", "SK-3205 SmartCard Reader Keyboard" }, - { "413c", "2105", "Model L100 Keyboard" }, - { "413c", "2106", "QuietKey Keyboard" }, - { "413c", "2107", "KB212-B Quiet Key Keyboard" }, - { "413c", "2113", "KB216 Wired Keyboard" }, - { "413c", "2134", "Hub of E-Port Replicator" }, - { "413c", "21d7", "Dell Wireless 5560 HSPA+ Mobile Broadband Modem" }, - { "413c", "2500", "DRAC4 Remote Access Card" }, - { "413c", "2501", "Keyboard and mouse dongle" }, - { "413c", "2513", "internal USB Hub of E-Port Replicator" }, - { "413c", "3010", "Optical Wheel Mouse" }, - { "413c", "3012", "Optical Wheel Mouse" }, - { "413c", "3016", "Optical 5-Button Wheel Mouse" }, - { "413c", "301a", "Dell MS116 Optical Mouse" }, - { "413c", "301b", "Universal Bluetooth Receiver" }, - { "413c", "3200", "Mouse" }, - { "413c", "4001", "Axim X5" }, - { "413c", "4002", "Axim X3" }, - { "413c", "4003", "Axim X30" }, - { "413c", "4004", "Axim Sync" }, - { "413c", "4005", "Axim Sync" }, - { "413c", "4006", "Axim Sync" }, - { "413c", "4007", "Axim Sync" }, - { "413c", "4008", "Axim Sync" }, - { "413c", "4009", "Axim Sync" }, - { "413c", "4011", "Axim X51v" }, - { "413c", "5103", "AIO Printer A940" }, - { "413c", "5105", "AIO Printer A920" }, - { "413c", "5107", "AIO Printer A960" }, - { "413c", "5109", "Photo AIO Printer 922" }, - { "413c", "5110", "Photo AIO Printer 962" }, - { "413c", "5111", "Photo AIO Printer 942" }, - { "413c", "5112", "Photo AIO Printer 924" }, - { "413c", "5113", "Photo AIO Printer 944" }, - { "413c", "5114", "Photo AIO Printer 964" }, - { "413c", "5115", "Photo AIO Printer 926" }, - { "413c", "5116", "AIO Printer 946" }, - { "413c", "5117", "Photo AIO Printer 966" }, - { "413c", "5118", "AIO 810" }, - { "413c", "5124", "Laser MFP 1815" }, - { "413c", "5128", "Photo AIO 928" }, - { "413c", "5133", "968 AIO Printer" }, - { "413c", "5200", "Laser Printer" }, - { "413c", "5202", "Printing Support" }, - { "413c", "5203", "Printing Support" }, - { "413c", "5210", "Printing Support" }, - { "413c", "5211", "1110 Laser Printer" }, - { "413c", "5220", "Laser MFP 1600n" }, - { "413c", "5225", "Printing Support" }, - { "413c", "5226", "Printing Support" }, - { "413c", "5228", "Laser Printer 1720dn" }, - { "413c", "5300", "Laser Printer" }, - { "413c", "5400", "Laser Printer" }, - { "413c", "5401", "Laser Printer" }, - { "413c", "5404", "1250c Color Printer" }, - { "413c", "5513", "WLA3310 Wireless Adapter [Intersil ISL3887]" }, - { "413c", "5534", "Hub of E-Port Replicator" }, - { "413c", "5601", "Laser Printer 3100cn" }, - { "413c", "5602", "Laser Printer 3000cn" }, - { "413c", "5607", "MFP Color Laser Printer 3115cn" }, - { "413c", "5631", "Laser Printer 5100cn" }, - { "413c", "564a", "C1765 series Multifunction Color LaserPrinter, Scanner & Copier" }, - { "413c", "5905", "Printing Support" }, - { "413c", "8000", "BC02 Bluetooth Adapter" }, - { "413c", "8010", "TrueMobile Bluetooth Module in" }, - { "413c", "8100", "TrueMobile 1180 802.11b Adapter [Intersil PRISM 3]" }, - { "413c", "8102", "TrueMobile 1300 802.11g Wireless Adapter [Intersil ISL3880]" }, - { "413c", "8103", "Wireless 350 Bluetooth" }, - { "413c", "8104", "Wireless 1450 Dual-band (802.11a/b/g) Adapter [Intersil ISL3887]" }, - { "413c", "8105", "U2 in HID - Driver" }, - { "413c", "8106", "Wireless 350 Bluetooth Internal Card in" }, - { "413c", "8110", "Wireless 3xx Bluetooth Internal Card" }, - { "413c", "8111", "Wireless 3xx Bluetooth Internal Card in" }, - { "413c", "8114", "Wireless 5700 Mobile Broadband (CDMA EV-DO) Minicard Modem" }, - { "413c", "8115", "Wireless 5500 Mobile Broadband (3G HSDPA) Minicard Modem" }, - { "413c", "8116", "Wireless 5505 Mobile Broadband (3G HSDPA) Minicard Modem" }, - { "413c", "8117", "Wireless 5700 Mobile Broadband (CDMA EV-DO) Expresscard Modem" }, - { "413c", "8118", "Wireless 5510 Mobile Broadband (3G HSDPA) Expresscard Status Port" }, - { "413c", "8120", "Bluetooth adapter" }, - { "413c", "8121", "Eastfold in HID" }, - { "413c", "8122", "Eastfold in DFU" }, - { "413c", "8123", "eHome Infrared Receiver" }, - { "413c", "8124", "eHome Infrared Receiver" }, - { "413c", "8126", "Wireless 355 Bluetooth" }, - { "413c", "8127", "Wireless 355 Module with Bluetooth 2.0 + EDR Technology." }, - { "413c", "8128", "Wireless 5700-Sprint Mobile Broadband (CDMA EV-DO) Mini-Card Status Port" }, - { "413c", "8129", "Wireless 5700-Telus Mobile Broadband (CDMA EV-DO) Mini-Card Status Port" }, - { "413c", "8131", "Wireless 360 Bluetooth 2.0 + EDR module." }, - { "413c", "8133", "Wireless 5720 VZW Mobile Broadband (EVDO Rev-A) Minicard GPS Port" }, - { "413c", "8134", "Wireless 5720 Sprint Mobile Broadband (EVDO Rev-A) Minicard Status Port" }, - { "413c", "8135", "Wireless 5720 TELUS Mobile Broadband (EVDO Rev-A) Minicard Diagnostics Port" }, - { "413c", "8136", "Wireless 5520 Cingular Mobile Broadband (3G HSDPA) Minicard Diagnostics Port" }, - { "413c", "8137", "Wireless 5520 Voda L Mobile Broadband (3G HSDPA) Minicard Status Port" }, - { "413c", "8138", "Wireless 5520 Voda I Mobile Broadband (3G HSDPA) Minicard EAP-SIM Port" }, - { "413c", "8140", "Wireless 360 Bluetooth" }, - { "413c", "8142", "Mobile 360 in DFU" }, - { "413c", "8143", "Broadcom BCM20702A0 Bluetooth" }, - { "413c", "8147", "F3507g Mobile Broadband Module" }, - { "413c", "8156", "Wireless 370 Bluetooth Mini-card" }, - { "413c", "8157", "Integrated Keyboard" }, - { "413c", "8158", "Integrated Touchpad / Trackstick" }, - { "413c", "8160", "Wireless 365 Bluetooth" }, - { "413c", "8161", "Integrated Keyboard" }, - { "413c", "8162", "Integrated Touchpad [Synaptics]" }, - { "413c", "8171", "Gobi Wireless Modem (QDL mode)" }, - { "413c", "8172", "Gobi Wireless Modem" }, - { "413c", "8183", "F3607gw Mobile Broadband Module" }, - { "413c", "8184", "F3607gw v2 Mobile Broadband Module" }, - { "413c", "8185", "Gobi 2000 Wireless Modem (QDL mode)" }, - { "413c", "8186", "Gobi 2000 Wireless Modem" }, - { "413c", "8187", "DW375 Bluetooth Module" }, - { "413c", "818e", "DW5560 miniPCIe HSPA+ Mobile Broadband Modem" }, - { "413c", "8197", "BCM20702A0 Bluetooth Module" }, - { "413c", "81a0", "Wireless 5808 Mobile Broadband (Sierra Wireless MC7355 Mini PCIE, 4G UMTS,HSDPA,HSPA+,LTE,1xRTT,EVDO Rev A,GSM,GPRS)" }, - { "413c", "81a3", "Hub of E-Port Replicator" }, - { "413c", "81a8", "Wireless 5808 Mobile Broadband (Sierra Wireless Mini PCIE, 4G UMTS,HSDPA,HSPA+,LTE,1xRTT,EVDO Rev A,GSM,GPRS)" }, - { "413c", "8501", "Bluetooth Adapter" }, - { "413c", "9001", "ATA Bridge" }, - { "413c", "9009", "Portable Device" }, - { "413c", "9500", "USB CP210x UART Bridge Controller [DW700]" }, - { "413c", "a001", "Hub" }, - { "413c", "a005", "Internal 2.0 Hub" }, - { "413c", "a101", "Internal Dual SD Card module" }, - { "413c", "a102", "iDRAC Virtual NIC" }, - { "413c", "a503", "AC511 Sound Bar" }, - { "413c", "a700", "Hub (in 1905FP LCD Monitor)" }, - { "413c", "b007", "Streak 5 Android Tablet" }, - { "4146", "9281", "Iomega Micro Mini 128MB Flash Drive" }, - { "4146", "ba01", "Intuix Flash Drive" }, - { "4168", "1010", "Wireless Compact Laser Mouse" }, - { "4242", "4201", "Buttons and Lights HID device" }, - { "4242", "4220", "Echo 1 Camera" }, - { "4255", "1000", "9FF2 [Digital Photo Display]" }, - { "4255", "2000", "HD2-14 [Hero 2 Camera]" }, - { "4317", "0700", "U.S. Robotics USR5426 802.11g Adapter" }, - { "4317", "0701", "U.S. Robotics USR5425 Wireless MAXg Adapter" }, - { "4317", "0711", "Belkin F5D7051 v3000 802.11g" }, - { "4317", "0720", "Dynex DX-BUSB" }, - { "4317", "0721", "Dynex DX-EBUSB" }, - { "4348", "5523", "USB->RS 232 adapter with Prolific PL 2303 chipset" }, - { "4348", "5537", "13.56Mhz RFID Card Reader and Writer" }, - { "4348", "5584", "CH34x printer adapter cable" }, - { "4572", "4572", "Shuttle PN31 Remote" }, - { "4586", "1026", "Crystal Bar Flash Drive" }, - { "4670", "9394", "Game Cube USB Memory Adaptor 64M" }, - { "4752", "0011", "Midistart-2" }, - { "4757", "2009", "PEL-2000 Series Electronic Load (CDC)" }, - { "4757", "2010", "PEL-2000 Series Electronic Load (CDC)" }, - { "4766", "0001", "MEZ1000 RDA" }, - { "4855", "7288", "Ultra Traveldrive 160G 2.5\" HDD" }, - { "4971", "1004", "Hitachi LifeStudio Desk (3.5\" HDD) [w/o flash key]" }, - { "4971", "1013", "Touro Desk Pro" }, - { "4971", "1015", "Touro Desk 3.0" }, - { "4971", "8001", "G-Tech G-DRIVE Mobile" }, - { "4971", "cb01", "SP-U25/120G" }, - { "4971", "cd15", "Simple Drive Mini (2.5\" HDD)" }, - { "4971", "ce07", "SimpleDrive (3.5\" HDD)" }, - { "4971", "ce12", "FV-U35" }, - { "4971", "ce17", "1TB SimpleDrive II USB External Hard Drive" }, - { "4971", "ce18", "(re)Drive" }, - { "4971", "ce21", "JMicron JM20329 SATA Bridge [eg. HITACHI SimpleDrive mini]" }, - { "4971", "ce22", "Hitachi SimpleTough (3.5\" HDD)" }, - { "4d46", "0001", "V-Link" }, - { "4d46", "0002", "V-DAC II" }, - { "5032", "0bb8", "Grandtec USB1.1 DVB-T (cold)" }, - { "5032", "0bb9", "Grandtec USB1.1 DVB-T (warm)" }, - { "5032", "0fa0", "Grandtec USB1.1 DVB-T (cold)" }, - { "5032", "0fa1", "Grandtec USB1.1 DVB-T (warm)" }, - { "50c2", "4013", "WLAN Adapter" }, - { "5131", "2007", "MSR-101U Mini HID magnetic card reader" }, - { "5173", "1809", "ZD1211" }, - { "5219", "1001", "Cetus CDC Device" }, - { "5332", "1300", "CST2545-5W (L-Trac)" }, - { "5345", "1234", "PDS6062T Oscilloscope" }, - { "534c", "0001", "Bitcoin Wallet [TREZOR]" }, - { "534c", "0002", "Bitcoin Wallet [TREZOR v2]" }, - { "534d", "0021", "MS210x Video Grabber [EasierCAP]" }, - { "534d", "6021", "VGA Display Adapter" }, - { "5354", "0017", "PAXcam2" }, - { "5543", "0002", "SuperPen WP3325U Tablet" }, - { "5543", "0003", "Tablet WP4030U" }, - { "5543", "0004", "Tablet WP5540U" }, - { "5543", "0005", "Tablet WP8060U" }, - { "5543", "0041", "Genius PenSketch 6x8 Tablet" }, - { "5543", "0042", "Tablet PF1209" }, - { "5543", "004a", "XP-Pen Artist 10S tablet" }, - { "5543", "004d", "Tablet Monitor MSP19U" }, - { "5543", "0064", "Aiptek HyperPen 10000U" }, - { "5543", "3031", "Graphics tablet [DrawImage G3, Ugee G3]" }, - { "5555", "1110", "VGA2USB" }, - { "5555", "1120", "KVM2USB" }, - { "5555", "2222", "DVI2USB" }, - { "5555", "3333", "VGA2USB Pro" }, - { "5555", "3337", "KVM2USB Pro" }, - { "5555", "3340", "VGA2USB LR" }, - { "5555", "3344", "KVM2USB LR" }, - { "5555", "3411", "DVI2USB Solo" }, - { "5555", "3422", "DVI2USB Duo" }, - { "5555", "3500", "DVI2USB3" }, - { "5555", "3501", "DVI2USB3 Rev3" }, - { "5555", "3510", "DVI2USB3_ET" }, - { "5555", "3520", "SDI2USB3" }, - { "55aa", "0015", "Hard Drive" }, - { "55aa", "0102", "SuperDisk" }, - { "55aa", "0103", "IDE Hard Drive" }, - { "55aa", "0201", "DDI to Reader-19" }, - { "55aa", "1234", "ATAPI Bridge" }, - { "55aa", "a103", "Sandisk SDDR-55 SmartMedia Card Reader" }, - { "55aa", "b000", "USB to CompactFlash Card Reader" }, - { "55aa", "b004", "OnSpec MMC/SD Reader/Writer" }, - { "55aa", "b00b", "USB to Memory Stick Card Reader" }, - { "55aa", "b00c", "USB to SmartMedia Card Reader" }, - { "55aa", "b012", "Mitsumi FA402M 8-in-2 Card Reader" }, - { "55aa", "b200", "Compact Flash Reader" }, - { "55aa", "b204", "MMC/ SD Reader" }, - { "55aa", "b207", "Memory Stick Reader" }, - { "5654", "ca42", "MasterHD 3" }, - { "5656", "0832", "UT2000/UT3000 Digital Storage Oscilloscope" }, - { "595a", "0001", "Touchscreen" }, - { "5986", "0100", "Orbicam" }, - { "5986", "0101", "USB2.0 Camera" }, - { "5986", "0102", "Crystal Eye Webcam" }, - { "5986", "0137", "HP Webcam" }, - { "5986", "0141", "BisonCam, NB Pro" }, - { "5986", "0149", "HP Webcam-101" }, - { "5986", "014c", "MSI Integrated Webcam" }, - { "5986", "01a6", "Lenovo Integrated Webcam" }, - { "5986", "01a7", "Lenovo Integrated Webcam" }, - { "5986", "01a9", "Lenovo Integrated Webcam" }, - { "5986", "0200", "OrbiCam" }, - { "5986", "0202", "Fujitsu Webcam" }, - { "5986", "0203", "BisonCam NB Pro 1300" }, - { "5986", "0205", "Lenovo EasyCamera" }, - { "5986", "0217", "Integrated Webcam" }, - { "5986", "0241", "BisonCam, NB Pro" }, - { "5986", "0268", "SunplusIT INC. Integrated Camera" }, - { "5986", "026a", "Integrated Camera" }, - { "5986", "0292", "Lenovo Integrated Webcam" }, - { "5986", "0294", "Lenovo Integrated Webcam" }, - { "5986", "0295", "Lenovo Integrated Webcam" }, - { "5986", "0299", "Lenovo Integrated Webcam" }, - { "5986", "029c", "Lenovo EasyCamera" }, - { "5986", "02ac", "HP TrueVision HD Webcam" }, - { "5986", "02d0", "Lenovo Integrated Webcam [R5U877]" }, - { "5986", "02d2", "ThinkPad Integrated Camera" }, - { "5986", "02d5", "Integrated Camera" }, - { "5986", "03b3", "Lenovo Integrated Webcam" }, - { "5986", "03d0", "Lenovo Integrated Webcam [R5U877]" }, - { "5986", "0400", "BisonCam, NB Pro" }, - { "5986", "0535", "Lenovo EasyCamera integrated webcam" }, - { "5986", "055a", "Lenovo Integrated Webcam" }, - { "5986", "0652", "Lenovo EasyCamera" }, - { "5986", "0670", "Lenovo EasyCamera" }, - { "5986", "0671", "Lenovo EasyCamera" }, - { "5986", "0706", "ThinkPad P50 Integrated Camera" }, - { "5986", "2113", "SunplusIT Integrated Camera" }, - { "5986", "a002", "Lenovo EasyCamera Integrated Webcam" }, - { "5a57", "0260", "RT2570" }, - { "5a57", "0280", "802.11a/b/g/n USB Wireless LAN Card" }, - { "5a57", "0282", "802.11b/g/n USB Wireless LAN Card" }, - { "5a57", "0283", "802.11b/g/n USB Wireless LAN Card" }, - { "5a57", "0284", "802.11a/b/g/n USB Wireless LAN Card" }, - { "5a57", "0290", "ZW-N290 802.11n [Realtek RTL8192U]" }, - { "5a57", "5257", "Metronic 495257 wifi 802.11ng" }, - { "6000", "0001", "Trident TVBOX Video Grabber" }, - { "6000", "dec0", "TV Wander" }, - { "6000", "dec1", "TV Voyage" }, - { "601a", "4740", "XBurst Jz4740 boot mode" }, - { "601a", "4760", "JZ4760 Boot Device" }, - { "6022", "0500", "SuperPro Universal Device Programmer" }, - { "6189", "182d", "LN-029 10/100 Ethernet Adapter" }, - { "6189", "2068", "USB to serial cable (v2)" }, - { "6244", "0101", "Intelligent Usb Dmx Interface SIUDI5A" }, - { "6244", "0201", "Intelligent Usb Dmx Interface SIUDI5C" }, - { "6244", "0300", "Intelligent Usb Dmx Interface SIUDI6 Firmware download" }, - { "6244", "0301", "Intelligent Usb Dmx Interface SIUDI6C" }, - { "6244", "0302", "Intelligent Usb Dmx Interface SIUDI6A" }, - { "6244", "0303", "Intelligent Usb Dmx Interface SIUDI6D" }, - { "6244", "0400", "Touch Sensitive Intelligent Control Keypad STICK1A" }, - { "6244", "0401", "Touch Sensitive Intelligent Control Keypad STICK1A" }, - { "6244", "0410", "Intelligent Usb Dmx Interface SIUDI7 Firmware Download" }, - { "6244", "0411", "Intelligent Usb Dmx Interface SIUDI7A" }, - { "6244", "0420", "Intelligent Usb Dmx Interface SIUDI8A Firmware Download" }, - { "6244", "0421", "Intelligent Usb Dmx Interface SIUDI8A" }, - { "6244", "0430", "Intelligent Usb Dmx Interface SIUDI8C Firmware Download" }, - { "6244", "0431", "Intelligent Usb Dmx Interface SIUDI8C" }, - { "6244", "0440", "Intelligent Usb Dmx Interface SIUDI9A Firmware Download" }, - { "6244", "0441", "Intelligent Usb Dmx Interface SIUDI9A" }, - { "6244", "0450", "Intelligent Usb Dmx Interface SIUDI9C Firmware Download" }, - { "6244", "0451", "Intelligent Usb Dmx Interface SIUDI9C" }, - { "6244", "0460", "Touch Sensitive Intelligent Control Keypad STICK2 Firmware download" }, - { "6244", "0461", "Touch Sensitive Intelligent Control Keypad STICK2" }, - { "6244", "0470", "Touch Sensitive Intelligent Control Keypad STICK1B Firmware download" }, - { "6244", "0471", "Touch Sensitive Intelligent Control Keypad STICK1B" }, - { "6244", "0480", "Touch Sensitive Intelligent Control Keypad STICK3 Firmware download" }, - { "6244", "0481", "Touch Sensitive Intelligent Control Keypad STICK3" }, - { "6244", "0490", "Intelligent Usb Dmx Interface SIUDI9D Firmware Download" }, - { "6244", "0491", "Intelligent Usb Dmx Interface SIUDI9D" }, - { "6244", "0500", "Touch Sensitive Intelligent Control Keypad STICK2B Firmware download" }, - { "6244", "0501", "Touch Sensitive Intelligent Control Keypad STICK2B" }, - { "6244", "0520", "Touch Sensitive Intelligent Control Keypad (STICK2C Firmware download, 32/64bits" }, - { "6244", "0521", "Touch Sensitive Intelligent Control Keypad (STICK2C, 32/64bits)" }, - { "6244", "0540", "Sunlite Universal Smart Handy Interface (SUSHI1A Firmware download, 32/64bits)" }, - { "6244", "0541", "Sunlite Universal Smart Handy Interface (SUSHI1A, 32/64bits)" }, - { "6244", "0570", "Touch Sensitive Intelligent Control Keypad (STICK4A Firmware download, 32/64bits)" }, - { "6244", "0571", "Touch Sensitive Intelligent Control Keypad (STICK4A, 32/64bits)" }, - { "6244", "0580", "Touch Sensitive Intelligent Control Keypad (STICK5A Firmware download, 32/64bits)" }, - { "6244", "0581", "Touch Sensitive Intelligent Control Keypad (STICK5A, 32/64bits)" }, - { "6244", "0590", "Intelligent Dmx Interface (SIUDI9S Firmware Download, 32/64bits)" }, - { "6244", "0591", "Intelligent Dmx Interface (SIUDI9S, 32/64bits)" }, - { "6244", "0600", "Intelligent Dmx Interface (SIUDI9M Firmware Download, 32/64bits)" }, - { "6244", "0601", "Intelligent Dmx Interface (SIUDI9M, 32/64bits)" }, - { "6244", "0610", "Intelligent Dmx Interface SIUDI10A Firmware Download" }, - { "6244", "0611", "Intelligent Dmx Interface SIUDI10A" }, - { "6253", "0100", "Ir reciver f. remote control" }, - { "6472", "01c8", "PlayStation Portable [Mass Storage]" }, - { "6547", "0232", "ARK3116 Serial" }, - { "6557", "5500", "Mass Storage Device" }, - { "6557", "8005", "Car Key" }, - { "6615", "0001", "Touchscreen" }, - { "6615", "0020", "IRTOUCH InfraRed TouchScreen" }, - { "6615", "0081", "TouchScreen" }, - { "6666", "0667", "WiseGroup Smart Joy PSX, PS-PC Smart JoyPad" }, - { "6666", "1c40", "TELEMIC 802.15.4 Sensor node (Bootloader)" }, - { "6666", "1c41", "TELEMIC 802.15.4 Sensor node" }, - { "6666", "2667", "JCOP BlueZ Smartcard reader" }, - { "6666", "8802", "SmartJoy Dual Plus PS2 converter" }, - { "6666", "8804", "WiseGroup SuperJoy Box 5" }, - { "6677", "8802", "SmartJoy Dual Plus PS2 converter" }, - { "6677", "8811", "Deluxe Dance Mat" }, - { "675d", "062a", "Switch Mouse" }, - { "6891", "a727", "3CRUSB10075 802.11bg [ZyDAS ZD1211]" }, - { "695c", "3829", "Opera1 DVB-S (warm state)" }, - { "6993", "b001", "VoIP Phone" }, - { "7104", "2202", "UF5/UF6/UF7/UF8 MIDI Master Keyboard" }, - { "726c", "2149", "EntropyKing Random Number Generator" }, - { "7302", "0001", "HUB 4X232" }, - { "734c", "5920", "Q-Box II DVB-S2 HD" }, - { "734c", "5928", "Q-Box II DVB-S2 HD" }, - { "7373", "5740", "Intelligent TFT-LCD Module" }, - { "7392", "7711", "EW-7711UTn nLite Wireless Adapter [Ralink RT3070]" }, - { "7392", "7717", "EW-7717UN 802.11n Wireless Adapter [Ralink RT2770]" }, - { "7392", "7718", "EW-7718UN 802.11n Wireless Adapter [Ralink RT2870]" }, - { "7392", "7722", "EW-7722UTn 802.11n Wireless Adapter [Ralink RT3072]" }, - { "7392", "7733", "EW-7733UnD 802.11abgn 3x3:3 [Ralink RT3573]" }, - { "7392", "7811", "EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]" }, - { "7392", "7822", "EW-7612UAn V2 802.11n Wireless Adapter [Realtek RTL8192CU]" }, - { "7392", "a611", "EW-7611ULB 802.11b/g/n and Bluetooth 4.0 Adapter" }, - { "7392", "a711", "EW-7711MAC 802.11ac Wireless Adapter" }, - { "7392", "a811", "EW-7811UTC 802.11ac Wireless Adapter" }, - { "7392", "b711", "EW-7722UAC 802.11a/b/g/n/ac (2x2) Wireless Adapter [MediaTek MT7612U]" }, - { "7392", "b822", "EW-7822ULC 802.11ac Wireless Adapter [Realtek RTL8812AU]" }, - { "73d8", "0104", "VetPro DR, Size 1" }, - { "73d8", "0105", "VetPro DR, Size 2" }, - { "7669", "350c", "Model 350c, Frequency Response Analyzer" }, - { "7669", "5140", "Model 5140, Frequency Response Analyzer" }, - { "7669", "6305", "Model 6305, Frequency Response Analyzer" }, - { "7669", "6320", "Model 6320, Frequency Response Analyzer" }, - { "7669", "6340", "Model 6340, Frequency Response Analyzer" }, - { "7669", "7405", "Model 7405, Frequency Response Analyzer" }, - { "7669", "7420", "Model 7420, Frequency Response Analyzer" }, - { "7669", "7440", "Model 7440, Frequency Response Analyzer" }, - { "7669", "8805", "Model 8805, Frequency Response Analyzer" }, - { "7669", "8820", "Model 8820, Frequency Response Analyzer" }, - { "7669", "8840", "Model 8840, Frequency Response Analyzer" }, - { "7825", "a2a4", "External SATA Hard Drive Adapter cable PA023U3" }, - { "7825", "b0b3", "miniStack MAX" }, - { "8070", "8003", "USB-DIO-96" }, - { "8070", "8070", "USB-AO16-16A" }, - { "8086", "0001", "AnyPoint (TM) Home Network 1.6 Mbps Wireless Adapter" }, - { "8086", "0044", "CPU DRAM Controller" }, - { "8086", "0046", "HD Graphics" }, - { "8086", "0100", "Personal Audio Player 3000" }, - { "8086", "0101", "Personal Audio Player 3000" }, - { "8086", "0110", "Easy PC Camera" }, - { "8086", "0120", "PC Camera CS120" }, - { "8086", "0180", "WiMAX Connection 2400m" }, - { "8086", "0181", "WiMAX Connection 2400m" }, - { "8086", "0182", "WiMAX Connection 2400m" }, - { "8086", "0186", "WiMAX Connection 2400m" }, - { "8086", "0188", "WiMAX Connection 2400m" }, - { "8086", "0189", "Centrino Advanced-N 6230 Bluetooth adapter" }, - { "8086", "0200", "AnyPoint(TM) Wireless II Network 11Mbps Adapter [Atmel AT76C503A]" }, - { "8086", "0431", "Pro Video PC Camera" }, - { "8086", "0510", "Digital Movie Creator" }, - { "8086", "0630", "Pocket PC Camera" }, - { "8086", "0780", "CS780 Microphone Input" }, - { "8086", "07d3", "BLOB boot loader firmware" }, - { "8086", "07dc", "Bluetooth 4.0* Smart Ready (low energy)" }, - { "8086", "0a66", "RealSense 3D Camera (Front F200)" }, - { "8086", "0aa5", "RealSense SR300" }, - { "8086", "0ad2", "RealSense D410" }, - { "8086", "0ad3", "RealSense D415" }, - { "8086", "0b07", "RealSense D435" }, - { "8086", "0b64", "RealSense L515" }, - { "8086", "0dad", "Cherry MiniatureCard Keyboard" }, - { "8086", "1010", "AnyPoint(TM) Home Network 10 Mbps Phoneline Adapter" }, - { "8086", "110a", "Bluetooth Controller from (Ericsson P4A)" }, - { "8086", "110b", "Bluetooth Controller from (Intel/CSR)" }, - { "8086", "1110", "PRO/Wireless LAN Module" }, - { "8086", "1111", "PRO/Wireless 2011B 802.11b Adapter [Intersil PRISM 2.5]" }, - { "8086", "1122", "Integrated Hub" }, - { "8086", "1134", "Hollister Mobile Monitor" }, - { "8086", "1139", "In-Target Probe (ITP)" }, - { "8086", "1234", "Prototype Reader/Writer" }, - { "8086", "1403", "WiMAX Connection 2400m" }, - { "8086", "1405", "WiMAX Connection 2400m" }, - { "8086", "1406", "WiMAX Connection 2400m" }, - { "8086", "2448", "82801 PCI Bridge" }, - { "8086", "3100", "PRO/DSL 3220 Modem - WAN" }, - { "8086", "3101", "PRO/DSL 3220 Modem" }, - { "8086", "3240", "AnyPoint® 3240 Modem - WAN" }, - { "8086", "3241", "AnyPoint® 3240 Modem" }, - { "8086", "8602", "Miniature Card Slot" }, - { "8086", "8c26", "8 Series/C220 Series EHCI #1" }, - { "8086", "8c2d", "8 Series/C220 Series EHCI #2" }, - { "8086", "8c31", "eXtensible Host Controller" }, - { "8086", "9303", "8x930Hx Hub" }, - { "8086", "9500", "CE 9500 DVB-T" }, - { "8086", "9890", "82930 Test Board" }, - { "8086", "a36d", "Host Controller" }, - { "8086", "beef", "SCM Miniature Card Reader/Writer" }, - { "8086", "c013", "Wireless HID Station" }, - { "8086", "dead", "Galileo" }, - { "8086", "f001", "XScale PXA27x Bulverde flash" }, - { "8086", "f1a5", "Z-U130 [Value Solid State Drive]" }, - { "8087", "0020", "Integrated Rate Matching Hub" }, - { "8087", "0024", "Integrated Rate Matching Hub" }, - { "8087", "0025", "Wireless-AC 9260 Bluetooth Adapter" }, - { "8087", "0026", "AX201 Bluetooth" }, - { "8087", "0029", "AX200 Bluetooth" }, - { "8087", "0032", "AX210 Bluetooth" }, - { "8087", "0716", "Modem Flashloader" }, - { "8087", "07da", "Centrino Bluetooth Wireless Transceiver" }, - { "8087", "07db", "Atom C2000 Root Hub" }, - { "8087", "07dc", "Bluetooth wireless interface" }, - { "8087", "07eb", "Oaktrail tablet" }, - { "8087", "0a2a", "Bluetooth wireless interface" }, - { "8087", "0a2b", "Bluetooth wireless interface" }, - { "8087", "0a9e", "Edison" }, - { "8087", "0aa7", "Wireless-AC 3168 Bluetooth" }, - { "8087", "0aaa", "Bluetooth 9460/9560 Jefferson Peak (JfP)" }, - { "8087", "0fff", "Intel Android Bootloader Interface" }, - { "8087", "8000", "Integrated Rate Matching Hub" }, - { "8087", "8001", "Integrated Hub" }, - { "8087", "8002", "8 channel internal hub" }, - { "8087", "8008", "Integrated Rate Matching Hub" }, - { "8087", "800a", "Hub" }, - { "80ee", "0021", "USB Tablet" }, - { "80ee", "0022", "multitouch tablet" }, - { "8282", "3201", "Retro Adapter" }, - { "8282", "3301", "Retro Adapter Mouse" }, - { "8301", "0089", "HPBT05R 2.4 G Mini Wireless Touchpad Keyboard" }, - { "8341", "2000", "Flashdisk" }, - { "8564", "1000", "JetFlash" }, - { "8564", "4000", "microSD/SD/CF UHS-II Card Reader [RDF8, RDF9]" }, - { "8564", "6000", "digital photo frame PF830" }, - { "8564", "6002", "digital photo frame PF830" }, - { "8564", "7000", "StoreJet 25H3" }, - { "8644", "8003", "Micro Line" }, - { "8644", "800b", "Micro Line (4GB)" }, - { "8e06", "f700", "DT225 Trackball" }, - { "8ea3", "a02c", "Wireless Presenter Receiver" }, - { "9016", "182d", "WL-022 802.11b Adapter" }, - { "9022", "d630", "DVB-S S630" }, - { "9022", "d650", "DVB-S2 S650" }, - { "9022", "d660", "DVB-S2 S660" }, - { "9148", "0004", "R3 Compatible Device" }, - { "9710", "7703", "MCS7703 Serial Port Adapter" }, - { "9710", "7705", "MCS7705 Parallel port adapter" }, - { "9710", "7715", "MCS7715 Parallel and serial port adapter" }, - { "9710", "7717", "MCS7717 3-port hub with serial and parallel adapter" }, - { "9710", "7720", "MCS7720 Dual serial port adapter" }, - { "9710", "7730", "MCS7730 10/100 Mbps Ethernet adapter" }, - { "9710", "7780", "MCS7780 4Mbps Fast IrDA Adapter" }, - { "9710", "7784", "MCS7784 115.2Kb IrDA Adapter" }, - { "9710", "7810", "MCS7810 Serial Port Adapter" }, - { "9710", "7820", "MCS7820 Dual Serial Port Adapter" }, - { "9710", "7830", "MCS7830 10/100 Mbps Ethernet adapter" }, - { "9710", "7832", "MCS7832 10/100 Mbps Ethernet adapter" }, - { "9710", "7840", "MCS7820/MCS7840 2/4 port serial adapter" }, - { "9710", "9990", "MCS9990 PCIe Host Controller" }, - { "9849", "0701", "Platinum MyDrive HP" }, - { "9886", "0015", "A50" }, - { "9999", "0001", "JAF Mobile Phone Flasher Interface" }, - { "99fa", "8988", "V.cap Camera Device" }, - { "9ac4", "4b8f", "ProxMark-3 RFID Instrument" }, - { "9e88", "9e8f", "Plug Computer Basic [SheevaPlug]" }, - { "a014", "b014", "Desktop Microphone NS-PAUM50" }, - { "a108", "1000", "X1000" }, - { "a108", "4775", "JZ4775 Boot Device" }, - { "a128", "0610", "Dino-Lite Digital Microscope (SN9C201 + HV7131R)" }, - { "a128", "0611", "Dino-Lite Digital Microscope (SN9C201 + HV7131R)" }, - { "a128", "0612", "Dino-Lite Digital Microscope (SN9C120 + HV7131R)" }, - { "a128", "0613", "Dino-Lite Digital Microscope (SN9C201 + HV7131R)" }, - { "a128", "0614", "Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111)" }, - { "a128", "0615", "Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111)" }, - { "a128", "0616", "Dino-Lite Digital Microscope (SN9C120 + HV7131R)" }, - { "a128", "0617", "Dino-Lite Digital Microscope (SN9C201 + MI1310/MT9M111)" }, - { "a128", "0618", "Dino-Lite Digital Microscope (SN9C201 + HV7131R)" }, - { "a168", "0610", "Dino-Lite Digital Microscope" }, - { "a168", "0611", "Dino-Lite Digital Microscope" }, - { "a168", "0613", "Dino-Lite Digital Microscope" }, - { "a168", "0614", "Dino-Lite Pro Digital Microscope" }, - { "a168", "0615", "Dino-Lite Pro Digital Microscope" }, - { "a168", "0617", "Dino-Lite Pro Digital Microscope" }, - { "a168", "0618", "Dino-Lite Digital Microscope" }, - { "a466", "0a53", "TL866II Plus Device Programmer [MiniPRO]" }, - { "a600", "5500", "zuban H2OPS - GPS for canoeing" }, - { "a600", "a000", "SIGMA Logic Analyzer" }, - { "a600", "a002", "EMUSB interface pro MU Beta" }, - { "a600", "c000", "MREL Data Trap II" }, - { "a600", "c001", "VUTS DMU4" }, - { "a600", "c002", "Electrone MASH" }, - { "a600", "c005", "MREL HTU HandiTrap cable" }, - { "a600", "c006", "JRC COmeter" }, - { "a600", "e110", "OK1ZIA Davac 4.x" }, - { "a600", "e112", "OK1ZIA Antenna rotator" }, - { "a600", "e113", "OK1ZIA GPIO" }, - { "a600", "e114", "OK1ZIA HD&Keyb" }, - { "a727", "6893", "3CRUSB20075 OfficeConnect Wireless 108Mbps 11g Adapter [Atheros AR5523]" }, - { "a727", "6895", "AR5523" }, - { "a727", "6897", "AR5523" }, - { "a88a", "3003", "PCFree Multimedia Remote Control PC" }, - { "aaaa", "8815", "microSD CardReader" }, - { "aaaa", "8816", "microSD CardReader" }, - { "ab12", "34cd", "JMICRON JMS578 SATA 6Gb/s bridge" }, - { "abcd", "1234", "UDisk flash drive" }, - { "abcd", "6104", "PCCloneEX Lite+ SATA docking station [QP0017]" }, - { "abcd", "cdee", "Petcam" }, - { "b58e", "9e84", "Yeti Stereo Microphone" }, - { "ba77", "7147", "Agterbosch" }, - { "c216", "0180", "MSR90 MagStripe reader" }, - { "c251", "1705", "MCB2300" }, - { "c251", "2710", "ULink" }, - { "c251", "2723", "ULink-ME" }, - { "c502", "0029", "Rocker" }, - { "cace", "0002", "AirPCAP Classic 802.11 packet capture adapter" }, - { "cace", "0300", "AirPcap NX [Atheros AR9170+AR9104]" }, - { "d208", "0310", "Mini-PAC Arcade Control Interface" }, - { "d209", "0301", "I-PAC Arcade Control Interface" }, - { "d209", "0501", "Ultra-Stik Ultimarc Ultra-Stik Player 1" }, - { "d209", "1571", "A-PAC Arcade Control Interface" }, - { "d904", "0003", "Laser Mouse (ID0009A)" }, - { "e2b7", "0811", "CD002" }, - { "e2b7", "0812", "CD005 MP3 Player" }, - { "e4e4", "1130", "Astribank series" }, - { "e4e4", "1131", "Astribank series" }, - { "e4e4", "1132", "Astribank series" }, - { "e4e4", "1140", "Astribank series" }, - { "e4e4", "1141", "Astribank series" }, - { "e4e4", "1142", "Astribank series" }, - { "e4e4", "1150", "Astribank series" }, - { "e4e4", "1151", "Astribank series" }, - { "e4e4", "1152", "Astribank series" }, - { "e4e4", "1160", "Astribank 2 series" }, - { "e4e4", "1161", "Astribank 2 series" }, - { "e4e4", "1162", "Astribank 2 series" }, - { "eb03", "0920", "Make Controller Kit" }, - { "eb1a", "17de", "KWorld V-Stream XPERT DTV - DVB-T USB cold" }, - { "eb1a", "17df", "KWorld V-Stream XPERT DTV - DVB-T USB warm" }, - { "eb1a", "2571", "M035 Compact Web Cam" }, - { "eb1a", "2710", "SilverCrest Webcam" }, - { "eb1a", "2750", "ECS Elitegroup G220 integrated Webcam" }, - { "eb1a", "2761", "EeePC 701 integrated Webcam" }, - { "eb1a", "2776", "Combined audio and video input device" }, - { "eb1a", "2800", "EM2800 Video Capture" }, - { "eb1a", "2801", "EM2801 Video Capture" }, - { "eb1a", "2820", "EM2820 Video Capture" }, - { "eb1a", "2821", "EM2820 Video Capture" }, - { "eb1a", "2840", "EM2840 Video Capture" }, - { "eb1a", "2841", "EM2840 Video Capture" }, - { "eb1a", "2861", "EasyCAP DC60+ [EM2861]" }, - { "eb1a", "2863", "Video Grabber" }, - { "eb1a", "2870", "Pinnacle PCTV Stick" }, - { "eb1a", "2881", "EM2881 Video Controller" }, - { "eb1a", "50a3", "Gadmei UTV380 TV Box" }, - { "eb1a", "50a6", "Gadmei UTV330 TV Box" }, - { "eb1a", "5166", "video grabber 28282" }, - { "eb1a", "5184", "VIDBOX NW06 [EM28281]" }, - { "eb1a", "8179", "Terratec Cinergy T2 Stick HD" }, - { "eb1a", "e305", "KWorld PlusTV Analog Stick" }, - { "eb1a", "e355", "KWorld DVB-T 355U Digital TV Dongle" }, - { "f003", "6002", "PhotoSmart C500" }, - { "f007", "a999", "Endoscope Camera" }, - { "f007", "b999", "Otoscope Camera" }, - { "f182", "0003", "Controller" }, - { "f3f0", "0740", "multi-function device" }, - { "f3f0", "1340", "multi-function printer" }, - { "f3f0", "1440", "printer device" }, - { "f3f0", "1921", "printer" }, - { "f4ec", "ee38", "Digital Storage Oscilloscope" }, - { "f4ed", "ee37", "SDG1010 Waveform Generator" }, - { "f4ed", "ee3a", "SDG1010 Waveform Generator (TMC mode)" }, - { "f766", "0001", "PC-Gamepad \"Greystorm\"" }, - { "fa11", "5afe", "DyingLight" }, - { "fc08", "0101", "MIDI Cable UA0037" }, - { "ffee", "0100", "Card Reader Controller RTS5101/RTS5111/RTS5116" }, +struct KProtocolEntry +{ + QByteArray vendorid; + QByteArray deviceid; + QByteArray protocolid; + + bool operator==(const KProtocolEntry &other) const + { return vendorid == other.vendorid && deviceid == other.deviceid && protocolid == other.protocolid; } }; -static const size_t usbDeviceTblSize = sizeof(usbDeviceTbl) / sizeof(usbDeviceTblData); +inline uint qHash(const KProtocolEntry &kprotocolentry) +{ + return qHash(kprotocolentry.vendorid + kprotocolentry.deviceid + kprotocolentry.protocolid); +} + +typedef QHash KVendorEntryMap; +typedef QHash KDeviceEntryMap; +typedef QHash KClassEntryMap; +typedef QHash KSubClassEntryMap; +typedef QHash KProtocolEntryMap; // some but not all device vendor/product properties (e.g. ID_VENDOR_ID and ID_MODEL_ID on network // devices on Linux) have "0x" prefix, get rid of that inconsistency -static inline QByteArray normalizeID(const QByteArray &id) +static inline QByteArray normalizeID(const QByteArray &id, const int padding) { if (id.startsWith("0x")) { return id.mid(2, id.size() - 2); } + if (id.size() < padding) { + QByteArray result = id; + while (result.size() < padding) { + result.prepend('0'); + } + return result; + } return id; } +static QList extractEntry(const QByteArray &line) +{ + QList result; + const int doublespaceindex = line.indexOf(" "); + if (doublespaceindex != 4 && doublespaceindex != 2) { + return result; + } + result.append(line.left(doublespaceindex)); + result.append(line.mid(doublespaceindex + 2)); + return result; +} + +static void extractIDs(QFile *idsfile, + KVendorEntryMap *vendormap, KDeviceEntryMap *devicemap, + KClassEntryMap *classmap, KSubClassEntryMap *subclassmap, KProtocolEntryMap *protocolmap) +{ + bool classessection = false; + QByteArray lastvendorid; + QByteArray lastdeviceid; + while (!idsfile->atEnd()) { + const QByteArray dbline = idsfile->readLine(); + const QByteArray trimmeddbline = dbline.trimmed(); + // qDebug() << Q_FUNC_INFO << dbline; + if (dbline.startsWith("C ")) { + // classes after this line + classessection = true; + } + if (trimmeddbline.isEmpty() || trimmeddbline.startsWith('#')) { + if (classessection) { + // undocumented entries after class + break; + } + continue; + } + + if (classessection) { + // qDebug() << Q_FUNC_INFO << trimmeddbline; + if (dbline.startsWith("\t\t")) { + const QList protocolentry = extractEntry(trimmeddbline); + if (protocolentry.size() != 2) { + kWarning() << "Invalid protocol line" << trimmeddbline; + continue; + } + if (lastvendorid.isEmpty()) { + kWarning() << "Protocol line before class" << trimmeddbline; + continue; + } + if (lastdeviceid.isEmpty()) { + kWarning() << "Protocol line before sub-class" << trimmeddbline; + continue; + } + protocolmap->insert({ lastvendorid, lastdeviceid, protocolentry.at(0) }, QString::fromAscii(protocolentry.at(1))); + } else if (dbline.startsWith("\t")) { + const QList subclassentry = extractEntry(trimmeddbline); + if (subclassentry.size() != 2) { + kWarning() << "Invalid sub-class line" << trimmeddbline; + continue; + } + if (lastvendorid.isEmpty()) { + kWarning() << "Sub-class line before class" << trimmeddbline; + continue; + } + lastdeviceid = subclassentry.at(0); + subclassmap->insert({ lastvendorid, subclassentry.at(0) }, QString::fromAscii(subclassentry.at(1))); + } else { + const QList classentry = extractEntry(trimmeddbline.mid(2)); + if (classentry.size() != 2) { + kWarning() << "Invalid class line" << trimmeddbline; + continue; + } + lastvendorid = classentry.at(0); + classmap->insert(lastvendorid, QString::fromAscii(classentry.at(1))); + } + } else { + if (dbline.startsWith("\t\t")) { + // sub-device + continue; + } else if (dbline.startsWith("\t")) { + const QList deviceentry = extractEntry(trimmeddbline); + if (deviceentry.size() != 2) { + kWarning() << "Invalid device line" << trimmeddbline; + continue; + } + if (lastvendorid.isEmpty()) { + kWarning() << "Device line before vendor" << trimmeddbline; + continue; + } + devicemap->insert({ lastvendorid, deviceentry.at(0) }, QString::fromAscii(deviceentry.at(1))); + } else { + const QList vendorentry = extractEntry(trimmeddbline); + if (vendorentry.size() != 2) { + kWarning() << "Invalid vendor line" << trimmeddbline; + continue; + } + lastvendorid = vendorentry.at(0); + vendormap->insert(lastvendorid, QString::fromAscii(vendorentry.at(1))); + } + } + } +} + +class KDeviceDatabasePrivate +{ +public: + KDeviceDatabasePrivate(); + + bool readPCIDatabase(); + bool readUSBDatabase(); + + KVendorEntryMap pcivendorsmap; + KDeviceEntryMap pcidevicesmap; + KClassEntryMap pciclassesmap; + KSubClassEntryMap pcisubclassesmap; + KProtocolEntryMap pciprotocolsmap; + KVendorEntryMap usbvendorsmap; + KDeviceEntryMap usbdevicesmap; + KClassEntryMap usbclassesmap; + KSubClassEntryMap usbsubclassesmap; + KProtocolEntryMap usbprotocolsmap; + +private: + bool m_pcicached; + bool m_usbcached; +}; + +KDeviceDatabasePrivate::KDeviceDatabasePrivate() + : m_pcicached(false), + m_usbcached(false) +{ +} + +bool KDeviceDatabasePrivate::readPCIDatabase() +{ + if (m_pcicached) { + return true; + } + + const QString pciids = KStandardDirs::locate("data", QString::fromLatin1("kdevicedatabase/pci.ids")); + QFile pciidsfile(pciids); + if (!pciidsfile.open(QFile::ReadOnly)) { + kWarning() << "PCI IDs database not found"; + return false; + } + + pcivendorsmap.clear(); + pcidevicesmap.clear(); + pciclassesmap.clear(); + pcisubclassesmap.clear(); + pciprotocolsmap.clear(); + extractIDs(&pciidsfile, + &pcivendorsmap, &pcidevicesmap, + &pciclassesmap, &pcisubclassesmap, &pciprotocolsmap + ); + // qDebug() << Q_FUNC_INFO << pcivendorsmap; + + m_pcicached = true; + return true; +} + +bool KDeviceDatabasePrivate::readUSBDatabase() +{ + if (m_usbcached) { + return true; + } + + const QString usbids = KStandardDirs::locate("data", QString::fromLatin1("kdevicedatabase/usb.ids")); + QFile usbidsfile(usbids); + if (!usbidsfile.open(QFile::ReadOnly)) { + kWarning() << "USB IDs database not found"; + return false; + } + + usbvendorsmap.clear(); + usbdevicesmap.clear(); + usbclassesmap.clear(); + usbsubclassesmap.clear(); + usbprotocolsmap.clear(); + extractIDs(&usbidsfile, + &usbvendorsmap, &usbdevicesmap, + &usbclassesmap, &usbsubclassesmap, &usbprotocolsmap + ); + // qDebug() << Q_FUNC_INFO << usbvendorsmap; + + m_usbcached = true; + return true; +} + +KDeviceDatabase::KDeviceDatabase() + : d(new KDeviceDatabasePrivate()) +{ +} + QString KDeviceDatabase::lookupPCIVendor(const QByteArray &vendorid) { - const QByteArray normalizedvendor = normalizeID(vendorid); - for (size_t i = 0; i < pciVendorTblSize; i++) { - if (qstrcmp(pciVendorTbl[i].vendorid, normalizedvendor.constData()) == 0) { - return QString::fromLatin1(pciVendorTbl[i].vendorname); + if (!d->readPCIDatabase()) { + return QString(); + } + + const QByteArray normalizedvendor = normalizeID(vendorid, 4); + foreach (const QByteArray &deviceentry, d->pcivendorsmap.keys()) { + if (qstrcmp(deviceentry.constData(), normalizedvendor.constData()) == 0) { + return d->pcivendorsmap.value(deviceentry); } } return QString(); @@ -42842,12 +281,67 @@ QString KDeviceDatabase::lookupPCIVendor(const QByteArray &vendorid) QString KDeviceDatabase::lookupPCIDevice(const QByteArray &vendorid, const QByteArray &deviceid) { - const QByteArray normalizedvendor = normalizeID(vendorid); - const QByteArray normalizeddevice = normalizeID(deviceid); - for (size_t i = 0; i < pciDeviceTblSize; i++) { - if (qstrcmp(pciDeviceTbl[i].vendorid, normalizedvendor.constData()) == 0 - && qstrcmp(pciDeviceTbl[i].deviceid, normalizeddevice.constData()) == 0) { - return QString::fromLatin1(pciDeviceTbl[i].devicename); + if (!d->readPCIDatabase()) { + return QString(); + } + + const QByteArray normalizedvendor = normalizeID(vendorid, 4); + const QByteArray normalizeddevice = normalizeID(deviceid, 4); + foreach (const KDeviceEntry &deviceentry, d->pcidevicesmap.keys()) { + if (qstrcmp(deviceentry.vendorid.constData(), normalizedvendor.constData()) == 0 + && qstrcmp(deviceentry.deviceid.constData(), normalizeddevice.constData()) == 0) { + return d->pcidevicesmap.value(deviceentry); + } + } + return QString(); +} + +QString KDeviceDatabase::lookupPCIClass(const QByteArray &classid) +{ + if (!d->readPCIDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + foreach (const QByteArray &deviceentry, d->pciclassesmap.keys()) { + if (qstrcmp(deviceentry.constData(), normalizedclass.constData()) == 0) { + return d->pciclassesmap.value(deviceentry); + } + } + return QString(); +} + +QString KDeviceDatabase::lookupPCISubClass(const QByteArray &classid, const QByteArray &subclassid) +{ + if (!d->readPCIDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + const QByteArray normalizedsubclass = normalizeID(subclassid, 2); + foreach (const KDeviceEntry &deviceentry, d->pcisubclassesmap.keys()) { + if (qstrcmp(deviceentry.vendorid.constData(), normalizedclass.constData()) == 0 + && qstrcmp(deviceentry.deviceid.constData(), normalizedsubclass.constData()) == 0) { + return d->pcisubclassesmap.value(deviceentry); + } + } + return QString(); +} + +QString KDeviceDatabase::lookupPCIProtocol(const QByteArray &classid, const QByteArray &subclassid, const QByteArray &protocolid) +{ + if (!d->readPCIDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + const QByteArray normalizedsubclass = normalizeID(subclassid, 2); + const QByteArray normalizedprotocol = normalizeID(protocolid, 2); + foreach (const KProtocolEntry &protocolentry, d->pciprotocolsmap.keys()) { + if (qstrcmp(protocolentry.vendorid.constData(), normalizedclass.constData()) == 0 + && qstrcmp(protocolentry.deviceid.constData(), normalizedsubclass.constData()) == 0 + && qstrcmp(protocolentry.protocolid.constData(), normalizedprotocol.constData()) == 0) { + return d->pciprotocolsmap.value(protocolentry); } } return QString(); @@ -42855,10 +349,14 @@ QString KDeviceDatabase::lookupPCIDevice(const QByteArray &vendorid, const QByte QString KDeviceDatabase::lookupUSBVendor(const QByteArray &vendorid) { - const QByteArray normalizedvendor = normalizeID(vendorid); - for (size_t i = 0; i < usbVendorTblSize; i++) { - if (qstrcmp(usbVendorTbl[i].vendorid, normalizedvendor.constData()) == 0) { - return QString::fromLatin1(usbVendorTbl[i].vendorname); + if (!d->readUSBDatabase()) { + return QString(); + } + + const QByteArray normalizedvendor = normalizeID(vendorid, 4); + foreach (const QByteArray &deviceentry, d->usbvendorsmap.keys()) { + if (qstrcmp(deviceentry.constData(), normalizedvendor.constData()) == 0) { + return d->usbvendorsmap.value(deviceentry); } } return QString(); @@ -42866,12 +364,69 @@ QString KDeviceDatabase::lookupUSBVendor(const QByteArray &vendorid) QString KDeviceDatabase::lookupUSBDevice(const QByteArray &vendorid, const QByteArray &deviceid) { - const QByteArray normalizedvendor = normalizeID(vendorid); - const QByteArray normalizeddevice = normalizeID(deviceid); - for (size_t i = 0; i < usbDeviceTblSize; i++) { - if (qstrcmp(usbDeviceTbl[i].vendorid, normalizedvendor.constData()) == 0 - && qstrcmp(usbDeviceTbl[i].deviceid, normalizeddevice.constData()) == 0) { - return QString::fromLatin1(usbDeviceTbl[i].devicename); + if (!d->readUSBDatabase()) { + return QString(); + } + + const QByteArray normalizedvendor = normalizeID(vendorid, 4); + const QByteArray normalizeddevice = normalizeID(deviceid, 4); + foreach (const KDeviceEntry &deviceentry, d->usbdevicesmap.keys()) { + if (qstrcmp(deviceentry.vendorid.constData(), normalizedvendor.constData()) == 0 + && qstrcmp(deviceentry.deviceid.constData(), normalizeddevice.constData()) == 0) { + return d->usbdevicesmap.value(deviceentry); + } + } + return QString(); +} + + + +QString KDeviceDatabase::lookupUSBClass(const QByteArray &classid) +{ + if (!d->readUSBDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + foreach (const QByteArray &deviceentry, d->usbclassesmap.keys()) { + if (qstrcmp(deviceentry.constData(), normalizedclass.constData()) == 0) { + return d->usbclassesmap.value(deviceentry); + } + } + return QString(); +} + +QString KDeviceDatabase::lookupUSBSubClass(const QByteArray &classid, const QByteArray &subclassid) +{ + if (!d->readUSBDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + const QByteArray normalizedsubclass = normalizeID(subclassid, 2); + foreach (const KDeviceEntry &deviceentry, d->usbsubclassesmap.keys()) { + if (qstrcmp(deviceentry.vendorid.constData(), normalizedclass.constData()) == 0 + && qstrcmp(deviceentry.deviceid.constData(), normalizedsubclass.constData()) == 0) { + return d->usbsubclassesmap.value(deviceentry); + } + } + return QString(); +} + +QString KDeviceDatabase::lookupUSBProtocol(const QByteArray &classid, const QByteArray &subclassid, const QByteArray &protocolid) +{ + if (!d->readUSBDatabase()) { + return QString(); + } + + const QByteArray normalizedclass = normalizeID(classid, 2); + const QByteArray normalizedsubclass = normalizeID(subclassid, 2); + const QByteArray normalizedprotocol = normalizeID(protocolid, 2); + foreach (const KProtocolEntry &protocolentry, d->usbprotocolsmap.keys()) { + if (qstrcmp(protocolentry.vendorid.constData(), normalizedclass.constData()) == 0 + && qstrcmp(protocolentry.deviceid.constData(), normalizedsubclass.constData()) == 0 + && qstrcmp(protocolentry.protocolid.constData(), normalizedprotocol.constData()) == 0) { + return d->usbprotocolsmap.value(protocolentry); } } return QString(); diff --git a/kdecore/util/kdevicedatabase.h b/kdecore/util/kdevicedatabase.h index 8365d06f..8e62670d 100644 --- a/kdecore/util/kdevicedatabase.h +++ b/kdecore/util/kdevicedatabase.h @@ -23,33 +23,67 @@ #include +class KDeviceDatabasePrivate; + /*! Class for obtaining device product and vendor strings from their IDs - IDs should be either 4 or 6 characters long, e.g. "1d14" or "0x1d14" + Vendor and device IDs should be either 4 or 6 characters long, e.g. "1d14" or "0x1d14". Class, + sub-class and protocol IDs should be 2 characters long, e.g. "0b" @since 4.21 */ class KDECORE_EXPORT KDeviceDatabase { public: - /*! - @return The vendor for @p vendorid, empty string if unknown - */ - static QString lookupPCIVendor(const QByteArray &vendorid); - /*! - @return The device for @p vendorid and @p deviceid, empty string if unknown - */ - static QString lookupPCIDevice(const QByteArray &vendorid, const QByteArray &deviceid); + KDeviceDatabase(); /*! @return The vendor for @p vendorid, empty string if unknown */ - static QString lookupUSBVendor(const QByteArray &vendorid); + QString lookupPCIVendor(const QByteArray &vendorid); /*! @return The device for @p vendorid and @p deviceid, empty string if unknown */ - static QString lookupUSBDevice(const QByteArray &vendorid, const QByteArray &deviceid); + QString lookupPCIDevice(const QByteArray &vendorid, const QByteArray &deviceid); + /*! + @return The class for @p classid, empty string if unknown + */ + QString lookupPCIClass(const QByteArray &classid); + /*! + @return The subclass for @p classid and @p subclassid, empty string if unknown + */ + QString lookupPCISubClass(const QByteArray &classid, const QByteArray &subclassid); + /*! + @return The protocol for @p classid, @p subclassid and @p protocolid, empty string if unknown + */ + QString lookupPCIProtocol(const QByteArray &classid, const QByteArray &subclassid, const QByteArray &protocolid); + + /*! + @return The vendor for @p vendorid, empty string if unknown + */ + QString lookupUSBVendor(const QByteArray &vendorid); + /*! + @return The device for @p vendorid and @p deviceid, empty string if unknown + */ + QString lookupUSBDevice(const QByteArray &vendorid, const QByteArray &deviceid); + /*! + @return The class for @p classid, empty string if unknown + */ + QString lookupUSBClass(const QByteArray &classid); + /*! + @return The subclass for @p classid and @p subclassid, empty string if unknown + */ + QString lookupUSBSubClass(const QByteArray &classid, const QByteArray &subclassid); + /*! + @return The protocol for @p classid, @p subclassid and @p protocolid, empty string if unknown + */ + QString lookupUSBProtocol(const QByteArray &classid, const QByteArray &subclassid, const QByteArray &protocolid); + + +private: + Q_DISABLE_COPY(KDeviceDatabase); + KDeviceDatabasePrivate *d; }; #endif // KDEVICEDATABASE_H diff --git a/solid/solid/backends/devinfo/devinfodevice.cpp b/solid/solid/backends/devinfo/devinfodevice.cpp index 91fb8eae..78563c99 100644 --- a/solid/solid/backends/devinfo/devinfodevice.cpp +++ b/solid/solid/backends/devinfo/devinfodevice.cpp @@ -25,7 +25,6 @@ #include "devinfographic.h" #include -#include "kdevicedatabase.h" #include #include @@ -133,9 +132,9 @@ QString DevinfoDevice::vendor() const const QByteArray parent = deviceProperty(DevinfoDevice::DeviceParent); QString result; if (parent.contains("pci")) { - result = KDeviceDatabase::lookupPCIVendor(pnpvendor); + result = m_devicedb.lookupPCIVendor(pnpvendor); } else { - result = KDeviceDatabase::lookupUSBVendor(pnpvendor); + result = m_devicedb.lookupUSBVendor(pnpvendor); } return result; @@ -164,9 +163,9 @@ QString DevinfoDevice::product() const const QByteArray parent = deviceProperty(DevinfoDevice::DeviceParent); QString result; if (parent.contains("pci")) { - result = KDeviceDatabase::lookupPCIDevice(pnpvendor, pnpdevice); + result = m_devicedb.lookupPCIDevice(pnpvendor, pnpdevice); } else { - result = KDeviceDatabase::lookupUSBDevice(pnpvendor, pnpdevice); + result = m_devicedb.lookupUSBDevice(pnpvendor, pnpdevice); } return result; diff --git a/solid/solid/backends/devinfo/devinfodevice.h b/solid/solid/backends/devinfo/devinfodevice.h index bfc6fc8e..7aa63770 100644 --- a/solid/solid/backends/devinfo/devinfodevice.h +++ b/solid/solid/backends/devinfo/devinfodevice.h @@ -24,6 +24,8 @@ #include #include +#include "kdevicedatabase.h" + namespace Solid { namespace Backends @@ -77,6 +79,7 @@ private: QString m_device; QMap m_properties; QMap m_pnpinfo; + mutable KDeviceDatabase m_devicedb; }; } diff --git a/solid/solid/backends/udev/udevdevice.cpp b/solid/solid/backends/udev/udevdevice.cpp index 54ed130d..862d2921 100644 --- a/solid/solid/backends/udev/udevdevice.cpp +++ b/solid/solid/backends/udev/udevdevice.cpp @@ -37,7 +37,6 @@ #include "udevmanager.h" #include "cpuinfo.h" -#include "kdevicedatabase.h" #include "kglobal.h" #include "klocale.h" @@ -102,9 +101,9 @@ QString UDevDevice::vendor() const if (!idvendorid.isEmpty()) { const QString idbus(m_device.deviceProperty("ID_BUS")); if (idbus == QLatin1String("pci")) { - vendor = KDeviceDatabase::lookupPCIVendor(idvendorid); + vendor = m_devicedb.lookupPCIVendor(idvendorid); } else if (idbus == QLatin1String("usb")) { - vendor = KDeviceDatabase::lookupUSBVendor(idvendorid); + vendor = m_devicedb.lookupUSBVendor(idvendorid); } } } @@ -146,9 +145,9 @@ QString UDevDevice::product() const if (!idvendorid.isEmpty() && !idmodelid.isEmpty()) { const QString idbus(m_device.deviceProperty("ID_BUS")); if (idbus == QLatin1String("pci")) { - product = KDeviceDatabase::lookupPCIDevice(idvendorid, idmodelid); + product = m_devicedb.lookupPCIDevice(idvendorid, idmodelid); } else if (idbus == QLatin1String("usb")) { - product = KDeviceDatabase::lookupUSBDevice(idvendorid, idmodelid); + product = m_devicedb.lookupUSBDevice(idvendorid, idmodelid); } } } diff --git a/solid/solid/backends/udev/udevdevice.h b/solid/solid/backends/udev/udevdevice.h index e1b83aae..c963a905 100644 --- a/solid/solid/backends/udev/udevdevice.h +++ b/solid/solid/backends/udev/udevdevice.h @@ -22,6 +22,7 @@ #define SOLID_BACKENDS_UDEV_UDEVDEVICE_H #include "udevqt.h" +#include "kdevicedatabase.h" #include #include @@ -63,6 +64,7 @@ private: friend class AcAdapter; friend class Battery; UdevQt::Device m_device; + mutable KDeviceDatabase m_devicedb; }; } diff --git a/solid/solid/regen.sh b/solid/solid/regen.sh index dc7b5c5c..36fa6a6e 100755 --- a/solid/solid/regen.sh +++ b/solid/solid/regen.sh @@ -1,5 +1,7 @@ #!/bin/sh +set -e + # a little helper script to regenerate predicate_parser.[c,h] and predicate_lexer.c YACC="bison"