xref: /freebsd/sys/dev/usb/usbdevs (revision 3a67e914306cf61a28b937f7cf09bf2df4584eeb)
102ac6454SAndrew Thompson$FreeBSD$
202ac6454SAndrew Thompson/* $NetBSD: usbdevs,v 1.392 2004/12/29 08:38:44 imp Exp $ */
302ac6454SAndrew Thompson
402ac6454SAndrew Thompson/*-
502ac6454SAndrew Thompson * Copyright (c) 1998-2004 The NetBSD Foundation, Inc.
602ac6454SAndrew Thompson * All rights reserved.
702ac6454SAndrew Thompson *
802ac6454SAndrew Thompson * This code is derived from software contributed to The NetBSD Foundation
902ac6454SAndrew Thompson * by Lennart Augustsson (lennart@augustsson.net) at
1002ac6454SAndrew Thompson * Carlstedt Research & Technology.
1102ac6454SAndrew Thompson *
1202ac6454SAndrew Thompson * Redistribution and use in source and binary forms, with or without
1302ac6454SAndrew Thompson * modification, are permitted provided that the following conditions
1402ac6454SAndrew Thompson * are met:
1502ac6454SAndrew Thompson * 1. Redistributions of source code must retain the above copyright
1602ac6454SAndrew Thompson *    notice, this list of conditions and the following disclaimer.
1702ac6454SAndrew Thompson * 2. Redistributions in binary form must reproduce the above copyright
1802ac6454SAndrew Thompson *    notice, this list of conditions and the following disclaimer in the
1902ac6454SAndrew Thompson *    documentation and/or other materials provided with the distribution.
2002ac6454SAndrew Thompson * 3. All advertising materials mentioning features or use of this software
2102ac6454SAndrew Thompson *    must display the following acknowledgement:
2202ac6454SAndrew Thompson *        This product includes software developed by the NetBSD
2302ac6454SAndrew Thompson *        Foundation, Inc. and its contributors.
2402ac6454SAndrew Thompson * 4. Neither the name of The NetBSD Foundation nor the names of its
2502ac6454SAndrew Thompson *    contributors may be used to endorse or promote products derived
2602ac6454SAndrew Thompson *    from this software without specific prior written permission.
2702ac6454SAndrew Thompson *
2802ac6454SAndrew Thompson * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2902ac6454SAndrew Thompson * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3002ac6454SAndrew Thompson * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3102ac6454SAndrew Thompson * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3202ac6454SAndrew Thompson * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3302ac6454SAndrew Thompson * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3402ac6454SAndrew Thompson * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3502ac6454SAndrew Thompson * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3602ac6454SAndrew Thompson * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3702ac6454SAndrew Thompson * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3802ac6454SAndrew Thompson * POSSIBILITY OF SUCH DAMAGE.
3902ac6454SAndrew Thompson */
4002ac6454SAndrew Thompson
4102ac6454SAndrew Thompson/*
4202ac6454SAndrew Thompson * List of known USB vendors
4302ac6454SAndrew Thompson *
4402ac6454SAndrew Thompson * USB.org publishes a VID list of USB-IF member companies at
4502ac6454SAndrew Thompson * http://www.usb.org/developers/tools
4602ac6454SAndrew Thompson * Note that it does not show companies that have obtained a Vendor ID
4702ac6454SAndrew Thompson * without becoming full members.
4802ac6454SAndrew Thompson *
4902ac6454SAndrew Thompson * Please note that these IDs do not do anything. Adding an ID here and
5002ac6454SAndrew Thompson * regenerating the usbdevs.h and usbdevs_data.h only makes a symbolic name
5102ac6454SAndrew Thompson * available to the source code and does not change any functionality, nor
5202ac6454SAndrew Thompson * does it make your device available to a specific driver.
5302ac6454SAndrew Thompson * It will however make the descriptive string available if a device does not
5402ac6454SAndrew Thompson * provide the string itself.
5502ac6454SAndrew Thompson *
5602ac6454SAndrew Thompson * After adding a vendor ID VNDR and a product ID PRDCT you will have the
5702ac6454SAndrew Thompson * following extra defines:
5802ac6454SAndrew Thompson * #define USB_VENDOR_VNDR              0x????
5902ac6454SAndrew Thompson * #define USB_PRODUCT_VNDR_PRDCT       0x????
6002ac6454SAndrew Thompson *
6102ac6454SAndrew Thompson * You may have to add these defines to the respective probe routines to
6202ac6454SAndrew Thompson * make the device recognised by the appropriate device driver.
6302ac6454SAndrew Thompson */
6402ac6454SAndrew Thompson
6502ac6454SAndrew Thompsonvendor UNKNOWN1		0x0053	Unknown vendor
6602ac6454SAndrew Thompsonvendor UNKNOWN2		0x0105	Unknown vendor
6702ac6454SAndrew Thompsonvendor EGALAX2		0x0123	eGalax, Inc.
6802ac6454SAndrew Thompsonvendor HUMAX		0x02ad	HUMAX
6902ac6454SAndrew Thompsonvendor LTS		0x0386	LTS
7002ac6454SAndrew Thompsonvendor BWCT		0x03da	Bernd Walter Computer Technology
7102ac6454SAndrew Thompsonvendor AOX		0x03e8	AOX
7202ac6454SAndrew Thompsonvendor THESYS		0x03e9	Thesys
7302ac6454SAndrew Thompsonvendor DATABROADCAST	0x03ea	Data Broadcasting
7402ac6454SAndrew Thompsonvendor ATMEL		0x03eb	Atmel
7502ac6454SAndrew Thompsonvendor IWATSU		0x03ec	Iwatsu America
7602ac6454SAndrew Thompsonvendor MITSUMI		0x03ee	Mitsumi
7702ac6454SAndrew Thompsonvendor HP		0x03f0	Hewlett Packard
7802ac6454SAndrew Thompsonvendor GENOA		0x03f1	Genoa
7902ac6454SAndrew Thompsonvendor OAK		0x03f2	Oak
8002ac6454SAndrew Thompsonvendor ADAPTEC		0x03f3	Adaptec
8102ac6454SAndrew Thompsonvendor DIEBOLD		0x03f4	Diebold
8202ac6454SAndrew Thompsonvendor SIEMENSELECTRO	0x03f5	Siemens Electromechanical
8302ac6454SAndrew Thompsonvendor EPSONIMAGING	0x03f8	Epson Imaging
8402ac6454SAndrew Thompsonvendor KEYTRONIC	0x03f9	KeyTronic
8502ac6454SAndrew Thompsonvendor OPTI		0x03fb	OPTi
8602ac6454SAndrew Thompsonvendor ELITEGROUP	0x03fc	Elitegroup
8702ac6454SAndrew Thompsonvendor XILINX		0x03fd	Xilinx
8802ac6454SAndrew Thompsonvendor FARALLON		0x03fe	Farallon Communications
8902ac6454SAndrew Thompsonvendor NATIONAL		0x0400	National Semiconductor
9002ac6454SAndrew Thompsonvendor NATIONALREG	0x0401	National Registry
9102ac6454SAndrew Thompsonvendor ACERLABS		0x0402	Acer Labs
9202ac6454SAndrew Thompsonvendor FTDI		0x0403	Future Technology Devices
9302ac6454SAndrew Thompsonvendor NCR		0x0404	NCR
9402ac6454SAndrew Thompsonvendor SYNOPSYS2	0x0405	Synopsys
9502ac6454SAndrew Thompsonvendor FUJITSUICL	0x0406	Fujitsu-ICL
9602ac6454SAndrew Thompsonvendor FUJITSU2		0x0407	Fujitsu Personal Systems
9702ac6454SAndrew Thompsonvendor QUANTA		0x0408	Quanta
9802ac6454SAndrew Thompsonvendor NEC		0x0409	NEC
9902ac6454SAndrew Thompsonvendor KODAK		0x040a	Eastman Kodak
10002ac6454SAndrew Thompsonvendor WELTREND		0x040b	Weltrend
10102ac6454SAndrew Thompsonvendor VIA		0x040d	VIA
10202ac6454SAndrew Thompsonvendor MCCI		0x040e	MCCI
10302ac6454SAndrew Thompsonvendor MELCO		0x0411	Melco
10402ac6454SAndrew Thompsonvendor LEADTEK		0x0413	Leadtek
10502ac6454SAndrew Thompsonvendor WINBOND		0x0416	Winbond
10602ac6454SAndrew Thompsonvendor PHOENIX		0x041a	Phoenix
10702ac6454SAndrew Thompsonvendor CREATIVE		0x041e	Creative Labs
10802ac6454SAndrew Thompsonvendor NOKIA		0x0421	Nokia
10902ac6454SAndrew Thompsonvendor ADI		0x0422	ADI Systems
11002ac6454SAndrew Thompsonvendor CATC		0x0423	Computer Access Technology
11102ac6454SAndrew Thompsonvendor SMC2		0x0424	Standard Microsystems
11202ac6454SAndrew Thompsonvendor MOTOROLA_HK	0x0425	Motorola HK
11302ac6454SAndrew Thompsonvendor GRAVIS		0x0428	Advanced Gravis Computer
11402ac6454SAndrew Thompsonvendor CIRRUSLOGIC	0x0429	Cirrus Logic
11502ac6454SAndrew Thompsonvendor INNOVATIVE	0x042c	Innovative Semiconductors
11602ac6454SAndrew Thompsonvendor MOLEX		0x042f	Molex
11702ac6454SAndrew Thompsonvendor SUN		0x0430	Sun Microsystems
11802ac6454SAndrew Thompsonvendor UNISYS		0x0432	Unisys
11902ac6454SAndrew Thompsonvendor TAUGA		0x0436	Taugagreining HF
12002ac6454SAndrew Thompsonvendor AMD		0x0438	Advanced Micro Devices
12102ac6454SAndrew Thompsonvendor LEXMARK		0x043d	Lexmark International
12202ac6454SAndrew Thompsonvendor LG		0x043e	LG Electronics
12302ac6454SAndrew Thompsonvendor NANAO		0x0440	NANAO
12402ac6454SAndrew Thompsonvendor GATEWAY		0x0443	Gateway 2000
12502ac6454SAndrew Thompsonvendor NMB		0x0446	NMB
12602ac6454SAndrew Thompsonvendor ALPS		0x044e	Alps Electric
12702ac6454SAndrew Thompsonvendor THRUST		0x044f	Thrustmaster
12802ac6454SAndrew Thompsonvendor TI		0x0451	Texas Instruments
12902ac6454SAndrew Thompsonvendor ANALOGDEVICES	0x0456	Analog Devices
13002ac6454SAndrew Thompsonvendor SIS		0x0457	Silicon Integrated Systems Corp.
13102ac6454SAndrew Thompsonvendor KYE		0x0458	KYE Systems
13202ac6454SAndrew Thompsonvendor DIAMOND2		0x045a	Diamond (Supra)
13302ac6454SAndrew Thompsonvendor RENESAS		0x045b	Renesas
13402ac6454SAndrew Thompsonvendor MICROSOFT	0x045e	Microsoft
13502ac6454SAndrew Thompsonvendor PRIMAX		0x0461	Primax Electronics
13602ac6454SAndrew Thompsonvendor MGE		0x0463	MGE UPS Systems
13702ac6454SAndrew Thompsonvendor AMP		0x0464	AMP
13802ac6454SAndrew Thompsonvendor CHERRY		0x046a	Cherry Mikroschalter
13902ac6454SAndrew Thompsonvendor MEGATRENDS	0x046b	American Megatrends
14002ac6454SAndrew Thompsonvendor LOGITECH		0x046d	Logitech
14102ac6454SAndrew Thompsonvendor BTC		0x046e	Behavior Tech. Computer
14202ac6454SAndrew Thompsonvendor PHILIPS		0x0471	Philips
14302ac6454SAndrew Thompsonvendor SUN2		0x0472	Sun Microsystems (offical)
14402ac6454SAndrew Thompsonvendor SANYO		0x0474	Sanyo Electric
14502ac6454SAndrew Thompsonvendor SEAGATE		0x0477	Seagate
14602ac6454SAndrew Thompsonvendor CONNECTIX	0x0478	Connectix
14702ac6454SAndrew Thompsonvendor SEMTECH		0x047a	Semtech
14802ac6454SAndrew Thompsonvendor KENSINGTON	0x047d	Kensington
14902ac6454SAndrew Thompsonvendor LUCENT		0x047e	Lucent
15002ac6454SAndrew Thompsonvendor PLANTRONICS	0x047f	Plantronics
15102ac6454SAndrew Thompsonvendor KYOCERA		0x0482	Kyocera Wireless Corp.
15202ac6454SAndrew Thompsonvendor STMICRO		0x0483	STMicroelectronics
15302ac6454SAndrew Thompsonvendor FOXCONN		0x0489	Foxconn
15402ac6454SAndrew Thompsonvendor MEIZU		0x0492	Meizu Electronics
15502ac6454SAndrew Thompsonvendor YAMAHA		0x0499	YAMAHA
15602ac6454SAndrew Thompsonvendor COMPAQ		0x049f	Compaq
15702ac6454SAndrew Thompsonvendor HITACHI		0x04a4	Hitachi
15802ac6454SAndrew Thompsonvendor ACERP		0x04a5	Acer Peripherals
15902ac6454SAndrew Thompsonvendor DAVICOM		0x04a6	Davicom
16002ac6454SAndrew Thompsonvendor VISIONEER	0x04a7	Visioneer
16102ac6454SAndrew Thompsonvendor CANON		0x04a9	Canon
16202ac6454SAndrew Thompsonvendor NIKON		0x04b0	Nikon
16302ac6454SAndrew Thompsonvendor PAN		0x04b1	Pan International
16402ac6454SAndrew Thompsonvendor IBM		0x04b3	IBM
16502ac6454SAndrew Thompsonvendor CYPRESS		0x04b4	Cypress Semiconductor
16602ac6454SAndrew Thompsonvendor ROHM		0x04b5	ROHM
16702ac6454SAndrew Thompsonvendor COMPAL		0x04b7	Compal
16802ac6454SAndrew Thompsonvendor EPSON		0x04b8	Seiko Epson
16902ac6454SAndrew Thompsonvendor RAINBOW		0x04b9	Rainbow Technologies
17002ac6454SAndrew Thompsonvendor IODATA		0x04bb	I-O Data
17102ac6454SAndrew Thompsonvendor TDK		0x04bf	TDK
17202ac6454SAndrew Thompsonvendor 3COMUSR		0x04c1	U.S. Robotics
17302ac6454SAndrew Thompsonvendor METHODE		0x04c2	Methode Electronics Far East
17402ac6454SAndrew Thompsonvendor MAXISWITCH	0x04c3	Maxi Switch
17502ac6454SAndrew Thompsonvendor LOCKHEEDMER	0x04c4	Lockheed Martin Energy Research
17602ac6454SAndrew Thompsonvendor FUJITSU		0x04c5	Fujitsu
17702ac6454SAndrew Thompsonvendor TOSHIBAAM	0x04c6	Toshiba America
17802ac6454SAndrew Thompsonvendor MICROMACRO	0x04c7	Micro Macro Technologies
17902ac6454SAndrew Thompsonvendor KONICA		0x04c8	Konica
18002ac6454SAndrew Thompsonvendor LITEON		0x04ca	Lite-On Technology
18102ac6454SAndrew Thompsonvendor FUJIPHOTO	0x04cb	Fuji Photo Film
18202ac6454SAndrew Thompsonvendor PHILIPSSEMI	0x04cc	Philips Semiconductors
18302ac6454SAndrew Thompsonvendor TATUNG		0x04cd	Tatung Co. Of America
18402ac6454SAndrew Thompsonvendor SCANLOGIC	0x04ce	ScanLogic
18502ac6454SAndrew Thompsonvendor MYSON		0x04cf	Myson Technology
18602ac6454SAndrew Thompsonvendor DIGI2		0x04d0	Digi
18702ac6454SAndrew Thompsonvendor ITTCANON		0x04d1	ITT Canon
18802ac6454SAndrew Thompsonvendor ALTEC		0x04d2	Altec Lansing
18902ac6454SAndrew Thompsonvendor LSI		0x04d4	LSI
19002ac6454SAndrew Thompsonvendor MENTORGRAPHICS	0x04d6	Mentor Graphics
19102ac6454SAndrew Thompsonvendor ITUNERNET	0x04d8	I-Tuner Networks
19202ac6454SAndrew Thompsonvendor HOLTEK		0x04d9	Holtek Semiconductor, Inc.
19302ac6454SAndrew Thompsonvendor PANASONIC	0x04da	Panasonic (Matsushita)
19402ac6454SAndrew Thompsonvendor HUANHSIN		0x04dc	Huan Hsin
19502ac6454SAndrew Thompsonvendor SHARP		0x04dd	Sharp
19602ac6454SAndrew Thompsonvendor IIYAMA		0x04e1	Iiyama
19702ac6454SAndrew Thompsonvendor SHUTTLE		0x04e6	Shuttle Technology
19802ac6454SAndrew Thompsonvendor ELO		0x04e7	Elo TouchSystems
19902ac6454SAndrew Thompsonvendor SAMSUNG		0x04e8	Samsung Electronics
20002ac6454SAndrew Thompsonvendor NORTHSTAR	0x04eb	Northstar
20102ac6454SAndrew Thompsonvendor TOKYOELECTRON	0x04ec	Tokyo Electron
20202ac6454SAndrew Thompsonvendor ANNABOOKS	0x04ed	Annabooks
20302ac6454SAndrew Thompsonvendor JVC		0x04f1	JVC
20402ac6454SAndrew Thompsonvendor CHICONY		0x04f2	Chicony Electronics
20502ac6454SAndrew Thompsonvendor ELAN		0x04f3	Elan
20602ac6454SAndrew Thompsonvendor NEWNEX		0x04f7	Newnex
20702ac6454SAndrew Thompsonvendor BROTHER		0x04f9	Brother Industries
20802ac6454SAndrew Thompsonvendor DALLAS		0x04fa	Dallas Semiconductor
20902ac6454SAndrew Thompsonvendor AIPTEK2		0x04fc	AIPTEK International
21002ac6454SAndrew Thompsonvendor PFU		0x04fe	PFU
21102ac6454SAndrew Thompsonvendor FUJIKURA		0x0501	Fujikura/DDK
21202ac6454SAndrew Thompsonvendor ACER		0x0502	Acer
21302ac6454SAndrew Thompsonvendor 3COM		0x0506	3Com
21402ac6454SAndrew Thompsonvendor HOSIDEN		0x0507	Hosiden Corporation
21502ac6454SAndrew Thompsonvendor AZTECH		0x0509	Aztech Systems
21602ac6454SAndrew Thompsonvendor BELKIN		0x050d	Belkin Components
21702ac6454SAndrew Thompsonvendor KAWATSU		0x050f	Kawatsu Semiconductor
21802ac6454SAndrew Thompsonvendor FCI		0x0514	FCI
21902ac6454SAndrew Thompsonvendor LONGWELL		0x0516	Longwell
22002ac6454SAndrew Thompsonvendor COMPOSITE	0x0518	Composite
22102ac6454SAndrew Thompsonvendor STAR		0x0519	Star Micronics
22202ac6454SAndrew Thompsonvendor APC		0x051d	American Power Conversion
22302ac6454SAndrew Thompsonvendor SCIATLANTA	0x051e	Scientific Atlanta
22402ac6454SAndrew Thompsonvendor TSM		0x0520	TSM
22502ac6454SAndrew Thompsonvendor CONNECTEK	0x0522	Advanced Connectek USA
22602ac6454SAndrew Thompsonvendor NETCHIP		0x0525	NetChip Technology
22702ac6454SAndrew Thompsonvendor ALTRA		0x0527	ALTRA
22802ac6454SAndrew Thompsonvendor ATI		0x0528	ATI Technologies
22902ac6454SAndrew Thompsonvendor AKS		0x0529	Aladdin Knowledge Systems
23002ac6454SAndrew Thompsonvendor TEKOM		0x052b	Tekom
23102ac6454SAndrew Thompsonvendor CANONDEV		0x052c	Canon
23202ac6454SAndrew Thompsonvendor WACOMTECH	0x0531	Wacom
23302ac6454SAndrew Thompsonvendor INVENTEC		0x0537	Inventec
23402ac6454SAndrew Thompsonvendor SHYHSHIUN	0x0539	Shyh Shiun Terminals
23502ac6454SAndrew Thompsonvendor PREHWERKE	0x053a	Preh Werke Gmbh & Co. KG
23602ac6454SAndrew Thompsonvendor SYNOPSYS		0x053f	Synopsys
23702ac6454SAndrew Thompsonvendor UNIACCESS	0x0540	Universal Access
23802ac6454SAndrew Thompsonvendor VIEWSONIC	0x0543	ViewSonic
23902ac6454SAndrew Thompsonvendor XIRLINK		0x0545	Xirlink
24002ac6454SAndrew Thompsonvendor ANCHOR		0x0547	Anchor Chips
24102ac6454SAndrew Thompsonvendor SONY		0x054c	Sony
24202ac6454SAndrew Thompsonvendor FUJIXEROX	0x0550	Fuji Xerox
24302ac6454SAndrew Thompsonvendor VISION		0x0553	VLSI Vision
24402ac6454SAndrew Thompsonvendor ASAHIKASEI	0x0556	Asahi Kasei Microsystems
24502ac6454SAndrew Thompsonvendor ATEN		0x0557	ATEN International
24602ac6454SAndrew Thompsonvendor SAMSUNG2		0x055d	Samsung Electronics
24702ac6454SAndrew Thompsonvendor MUSTEK		0x055f	Mustek Systems
24802ac6454SAndrew Thompsonvendor TELEX		0x0562	Telex Communications
24902ac6454SAndrew Thompsonvendor CHINON		0x0564	Chinon
25002ac6454SAndrew Thompsonvendor PERACOM		0x0565	Peracom Networks
25102ac6454SAndrew Thompsonvendor ALCOR2		0x0566	Alcor Micro
25202ac6454SAndrew Thompsonvendor XYRATEX		0x0567	Xyratex
25302ac6454SAndrew Thompsonvendor WACOM		0x056a	WACOM
25402ac6454SAndrew Thompsonvendor ETEK		0x056c	e-TEK Labs
25502ac6454SAndrew Thompsonvendor EIZO		0x056d	EIZO
25602ac6454SAndrew Thompsonvendor ELECOM		0x056e	Elecom
25702ac6454SAndrew Thompsonvendor CONEXANT		0x0572	Conexant
25802ac6454SAndrew Thompsonvendor HAUPPAUGE	0x0573	Hauppauge Computer Works
25902ac6454SAndrew Thompsonvendor BAFO		0x0576	BAFO/Quality Computer Accessories
26002ac6454SAndrew Thompsonvendor YEDATA		0x057b	Y-E Data
26102ac6454SAndrew Thompsonvendor AVM		0x057c	AVM
26202ac6454SAndrew Thompsonvendor QUICKSHOT	0x057f	Quickshot
26302ac6454SAndrew Thompsonvendor ROLAND		0x0582	Roland
26402ac6454SAndrew Thompsonvendor ROCKFIRE		0x0583	Rockfire
26502ac6454SAndrew Thompsonvendor RATOC		0x0584	RATOC Systems
26602ac6454SAndrew Thompsonvendor ZYXEL		0x0586	ZyXEL Communication
26702ac6454SAndrew Thompsonvendor INFINEON		0x058b	Infineon
26802ac6454SAndrew Thompsonvendor MICREL		0x058d	Micrel
26902ac6454SAndrew Thompsonvendor ALCOR		0x058f	Alcor Micro
27002ac6454SAndrew Thompsonvendor OMRON		0x0590	OMRON
27102ac6454SAndrew Thompsonvendor ZORAN		0x0595	Zoran Microelectronics
27202ac6454SAndrew Thompsonvendor NIIGATA		0x0598	Niigata
27302ac6454SAndrew Thompsonvendor IOMEGA		0x059b	Iomega
27402ac6454SAndrew Thompsonvendor ATREND		0x059c	A-Trend Technology
27502ac6454SAndrew Thompsonvendor AID		0x059d	Advanced Input Devices
27602ac6454SAndrew Thompsonvendor LACIE		0x059f	LaCie
27702ac6454SAndrew Thompsonvendor FUJIFILM		0x05a2	Fuji Film
27802ac6454SAndrew Thompsonvendor ARC		0x05a3	ARC
27902ac6454SAndrew Thompsonvendor ORTEK		0x05a4	Ortek
28002ac6454SAndrew Thompsonvendor BOSE		0x05a7	Bose
28102ac6454SAndrew Thompsonvendor OMNIVISION	0x05a9	OmniVision
28202ac6454SAndrew Thompsonvendor INSYSTEM		0x05ab	In-System Design
28302ac6454SAndrew Thompsonvendor APPLE		0x05ac	Apple Computer
28402ac6454SAndrew Thompsonvendor YCCABLE		0x05ad	Y.C. Cable
28502ac6454SAndrew Thompsonvendor DIGITALPERSONA	0x05ba	DigitalPersona
28602ac6454SAndrew Thompsonvendor 3G		0x05bc	3G Green Green Globe
28702ac6454SAndrew Thompsonvendor RAFI		0x05bd	RAFI
28802ac6454SAndrew Thompsonvendor TYCO		0x05be	Tyco
28902ac6454SAndrew Thompsonvendor KAWASAKI		0x05c1	Kawasaki
29002ac6454SAndrew Thompsonvendor DIGI		0x05c5	Digi International
29102ac6454SAndrew Thompsonvendor QUALCOMM2	0x05c6	Qualcomm
29202ac6454SAndrew Thompsonvendor QTRONIX		0x05c7	Qtronix
29302ac6454SAndrew Thompsonvendor FOXLINK		0x05c8	Foxlink
29402ac6454SAndrew Thompsonvendor RICOH		0x05ca	Ricoh
29502ac6454SAndrew Thompsonvendor ELSA		0x05cc	ELSA
29602ac6454SAndrew Thompsonvendor SCIWORX		0x05ce	sci-worx
29702ac6454SAndrew Thompsonvendor BRAINBOXES	0x05d1	Brainboxes Limited
29802ac6454SAndrew Thompsonvendor ULTIMA		0x05d8	Ultima
29902ac6454SAndrew Thompsonvendor AXIOHM		0x05d9	Axiohm Transaction Solutions
30002ac6454SAndrew Thompsonvendor MICROTEK		0x05da	Microtek
30102ac6454SAndrew Thompsonvendor SUNTAC		0x05db	SUN Corporation
30202ac6454SAndrew Thompsonvendor LEXAR		0x05dc	Lexar Media
30302ac6454SAndrew Thompsonvendor ADDTRON		0x05dd	Addtron
30402ac6454SAndrew Thompsonvendor SYMBOL		0x05e0	Symbol Technologies
30502ac6454SAndrew Thompsonvendor SYNTEK		0x05e1	Syntek
30602ac6454SAndrew Thompsonvendor GENESYS		0x05e3	Genesys Logic
30702ac6454SAndrew Thompsonvendor FUJI		0x05e5	Fuji Electric
30802ac6454SAndrew Thompsonvendor KEITHLEY		0x05e6	Keithley Instruments
30902ac6454SAndrew Thompsonvendor EIZONANAO	0x05e7	EIZO Nanao
31002ac6454SAndrew Thompsonvendor KLSI		0x05e9	Kawasaki LSI
31102ac6454SAndrew Thompsonvendor FFC		0x05eb	FFC
31202ac6454SAndrew Thompsonvendor ANKO		0x05ef	Anko Electronic
31302ac6454SAndrew Thompsonvendor PIENGINEERING	0x05f3	P.I. Engineering
31402ac6454SAndrew Thompsonvendor AOC		0x05f6	AOC International
31502ac6454SAndrew Thompsonvendor CHIC		0x05fe	Chic Technology
31602ac6454SAndrew Thompsonvendor BARCO		0x0600	Barco Display Systems
31702ac6454SAndrew Thompsonvendor BRIDGE		0x0607	Bridge Information
31802ac6454SAndrew Thompsonvendor SOLIDYEAR	0x060b	Solid Year
31902ac6454SAndrew Thompsonvendor BIORAD		0x0614	Bio-Rad Laboratories
32002ac6454SAndrew Thompsonvendor MACALLY		0x0618	Macally
32102ac6454SAndrew Thompsonvendor ACTLABS		0x061c	Act Labs
32202ac6454SAndrew Thompsonvendor ALARIS		0x0620	Alaris
32302ac6454SAndrew Thompsonvendor APEX		0x0624	Apex
32402ac6454SAndrew Thompsonvendor CREATIVE3	0x062a	Creative Labs
32502ac6454SAndrew Thompsonvendor VIVITAR		0x0636	Vivitar
32602ac6454SAndrew Thompsonvendor GUNZE		0x0637	Gunze Electronics USA
32702ac6454SAndrew Thompsonvendor AVISION		0x0638	Avision
32802ac6454SAndrew Thompsonvendor TEAC		0x0644	TEAC
32902ac6454SAndrew Thompsonvendor SGI		0x065e	Silicon Graphics
33002ac6454SAndrew Thompsonvendor SANWASUPPLY	0x0663	Sanwa Supply
33102ac6454SAndrew Thompsonvendor LINKSYS		0x066b	Linksys
33202ac6454SAndrew Thompsonvendor ACERSA		0x066e	Acer Semiconductor America
33302ac6454SAndrew Thompsonvendor SIGMATEL		0x066f	Sigmatel
33402ac6454SAndrew Thompsonvendor DRAYTEK		0x0675	DrayTek
33502ac6454SAndrew Thompsonvendor AIWA		0x0677	Aiwa
33602ac6454SAndrew Thompsonvendor ACARD		0x0678	ACARD Technology
33702ac6454SAndrew Thompsonvendor PROLIFIC		0x067b	Prolific Technology
33802ac6454SAndrew Thompsonvendor SIEMENS		0x067c	Siemens
33902ac6454SAndrew Thompsonvendor AVANCELOGIC	0x0680	Avance Logic
34002ac6454SAndrew Thompsonvendor SIEMENS2		0x0681	Siemens
34102ac6454SAndrew Thompsonvendor MINOLTA		0x0686	Minolta
34202ac6454SAndrew Thompsonvendor CHPRODUCTS	0x068e	CH Products
34302ac6454SAndrew Thompsonvendor HAGIWARA		0x0693	Hagiwara Sys-Com
34402ac6454SAndrew Thompsonvendor CTX		0x0698	Chuntex
34502ac6454SAndrew Thompsonvendor ASKEY		0x069a	Askey Computer
34602ac6454SAndrew Thompsonvendor SAITEK		0x06a3	Saitek
34702ac6454SAndrew Thompsonvendor ALCATELT		0x06b9	Alcatel Telecom
34802ac6454SAndrew Thompsonvendor AGFA		0x06bd	AGFA-Gevaert
34902ac6454SAndrew Thompsonvendor ASIAMD		0x06be	Asia Microelectronic Development
35002ac6454SAndrew Thompsonvendor BIZLINK		0x06c4	Bizlink International
35102ac6454SAndrew Thompsonvendor KEYSPAN		0x06cd	Keyspan / InnoSys Inc.
35202ac6454SAndrew Thompsonvendor AASHIMA		0x06d6	Aashima Technology
35302ac6454SAndrew Thompsonvendor MULTITECH	0x06e0	MultiTech
35402ac6454SAndrew Thompsonvendor ADS		0x06e1	ADS Technologies
35502ac6454SAndrew Thompsonvendor ALCATELM		0x06e4	Alcatel Microelectronics
35602ac6454SAndrew Thompsonvendor SIRIUS		0x06ea	Sirius Technologies
35702ac6454SAndrew Thompsonvendor GUILLEMOT	0x06f8	Guillemot
35802ac6454SAndrew Thompsonvendor BOSTON		0x06fd	Boston Acoustics
35902ac6454SAndrew Thompsonvendor SMC		0x0707	Standard Microsystems
36002ac6454SAndrew Thompsonvendor PUTERCOM		0x0708	Putercom
36102ac6454SAndrew Thompsonvendor MCT		0x0711	MCT
36202ac6454SAndrew Thompsonvendor IMATION		0x0718	Imation
36302ac6454SAndrew Thompsonvendor SONYERICSSON	0x0731	Sony Ericsson
36402ac6454SAndrew Thompsonvendor EICON		0x0734	Eicon Networks
36502ac6454SAndrew Thompsonvendor SYNTECH		0x0745	Syntech Information
36602ac6454SAndrew Thompsonvendor DIGITALSTREAM	0x074e	Digital Stream
36702ac6454SAndrew Thompsonvendor AUREAL		0x0755	Aureal Semiconductor
36802ac6454SAndrew Thompsonvendor MIDIMAN		0x0763	Midiman
36902ac6454SAndrew Thompsonvendor CYBERPOWER	0x0764	Cyber Power Systems, Inc.
37002ac6454SAndrew Thompsonvendor SURECOM		0x0769	Surecom Technology
37102ac6454SAndrew Thompsonvendor LINKSYS2		0x077b	Linksys
37202ac6454SAndrew Thompsonvendor GRIFFIN		0x077d	Griffin Technology
37302ac6454SAndrew Thompsonvendor SANDISK		0x0781	SanDisk
37402ac6454SAndrew Thompsonvendor JENOPTIK		0x0784	Jenoptik
37502ac6454SAndrew Thompsonvendor LOGITEC		0x0789	Logitec
37602ac6454SAndrew Thompsonvendor BRIMAX		0x078e	Brimax
37702ac6454SAndrew Thompsonvendor AXIS		0x0792	Axis Communications
37802ac6454SAndrew Thompsonvendor ABL		0x0794	ABL Electronics
37902ac6454SAndrew Thompsonvendor SAGEM		0x079b	Sagem
38002ac6454SAndrew Thompsonvendor SUNCOMM		0x079c	Sun Communications, Inc.
38102ac6454SAndrew Thompsonvendor ALFADATA		0x079d	Alfadata Computer
38202ac6454SAndrew Thompsonvendor NATIONALTECH	0x07a2	National Technical Systems
38302ac6454SAndrew Thompsonvendor ONNTO		0x07a3	Onnto
38402ac6454SAndrew Thompsonvendor BE		0x07a4	Be
38502ac6454SAndrew Thompsonvendor ADMTEK		0x07a6	ADMtek
38602ac6454SAndrew Thompsonvendor COREGA		0x07aa	Corega
38702ac6454SAndrew Thompsonvendor FREECOM		0x07ab	Freecom
38802ac6454SAndrew Thompsonvendor MICROTECH	0x07af	Microtech
38902ac6454SAndrew Thompsonvendor GENERALINSTMNTS	0x07b2	General Instruments (Motorola)
39002ac6454SAndrew Thompsonvendor OLYMPUS		0x07b4	Olympus
39102ac6454SAndrew Thompsonvendor ABOCOM		0x07b8	AboCom Systems
39202ac6454SAndrew Thompsonvendor KEISOKUGIKEN	0x07c1	Keisokugiken
39302ac6454SAndrew Thompsonvendor ONSPEC		0x07c4	OnSpec
39402ac6454SAndrew Thompsonvendor APG		0x07c5	APG Cash Drawer
39502ac6454SAndrew Thompsonvendor BUG		0x07c8	B.U.G.
39602ac6454SAndrew Thompsonvendor ALLIEDTELESYN	0x07c9	Allied Telesyn International
39702ac6454SAndrew Thompsonvendor AVERMEDIA	0x07ca	AVerMedia Technologies
39802ac6454SAndrew Thompsonvendor SIIG		0x07cc	SIIG
39902ac6454SAndrew Thompsonvendor CASIO		0x07cf	CASIO
40002ac6454SAndrew Thompsonvendor DLINK2		0x07d1	D-Link
40102ac6454SAndrew Thompsonvendor APTIO		0x07d2	Aptio Products
40202ac6454SAndrew Thompsonvendor ARASAN		0x07da	Arasan Chip Systems
40302ac6454SAndrew Thompsonvendor ALLIEDCABLE	0x07e6	Allied Cable
40402ac6454SAndrew Thompsonvendor STSN		0x07ef	STSN
40502ac6454SAndrew Thompsonvendor CENTURY		0x07f7	Century Corp
40602ac6454SAndrew Thompsonvendor ZOOM		0x0803	Zoom Telephonics
40702ac6454SAndrew Thompsonvendor PCS		0x0810	Personal Communication Systems
40802ac6454SAndrew Thompsonvendor BROADLOGIC	0x0827	BroadLogic
40902ac6454SAndrew Thompsonvendor HANDSPRING	0x082d	Handspring
41002ac6454SAndrew Thompsonvendor PALM		0x0830	Palm Computing
41102ac6454SAndrew Thompsonvendor SOURCENEXT	0x0833	SOURCENEXT
41202ac6454SAndrew Thompsonvendor ACTIONSTAR	0x0835	Action Star Enterprise
41302ac6454SAndrew Thompsonvendor SAMSUNG_TECHWIN	0x0839	Samsung Techwin
41402ac6454SAndrew Thompsonvendor ACCTON		0x083a	Accton Technology
41502ac6454SAndrew Thompsonvendor DIAMOND		0x0841	Diamond
41602ac6454SAndrew Thompsonvendor NETGEAR		0x0846	BayNETGEAR
41702ac6454SAndrew Thompsonvendor TOPRE		0x0853	Topre Corporation
41802ac6454SAndrew Thompsonvendor ACTIVEWIRE	0x0854	ActiveWire
41902ac6454SAndrew Thompsonvendor BBELECTRONICS	0x0856	B&B Electronics
42002ac6454SAndrew Thompsonvendor PORTGEAR		0x085a	PortGear
42102ac6454SAndrew Thompsonvendor NETGEAR2		0x0864	Netgear
42202ac6454SAndrew Thompsonvendor SYSTEMTALKS	0x086e	System Talks
42302ac6454SAndrew Thompsonvendor METRICOM		0x0870	Metricom
42402ac6454SAndrew Thompsonvendor ADESSOKBTEK	0x087c	ADESSO/Kbtek America
42502ac6454SAndrew Thompsonvendor JATON		0x087d	Jaton
42602ac6454SAndrew Thompsonvendor APT		0x0880	APT Technologies
42702ac6454SAndrew Thompsonvendor BOCARESEARCH	0x0885	Boca Research
42802ac6454SAndrew Thompsonvendor ANDREA		0x08a8	Andrea Electronics
42902ac6454SAndrew Thompsonvendor BURRBROWN	0x08bb	Burr-Brown Japan
43002ac6454SAndrew Thompsonvendor 2WIRE		0x08c8	2Wire
43102ac6454SAndrew Thompsonvendor AIPTEK		0x08ca	AIPTEK International
43202ac6454SAndrew Thompsonvendor SMARTBRIDGES	0x08d1	SmartBridges
43302ac6454SAndrew Thompsonvendor BILLIONTON	0x08dd	Billionton Systems
43402ac6454SAndrew Thompsonvendor EXTENDED		0x08e9	Extended Systems
43502ac6454SAndrew Thompsonvendor MSYSTEMS		0x08ec	M-Systems
43602ac6454SAndrew Thompsonvendor AUTHENTEC	0x08ff	AuthenTec
43702ac6454SAndrew Thompsonvendor AUDIOTECHNICA	0x0909	Audio-Technica
43802ac6454SAndrew Thompsonvendor TRUMPION		0x090a	Trumpion Microelectronics
43902ac6454SAndrew Thompsonvendor FEIYA		0x090c	Feiya
44002ac6454SAndrew Thompsonvendor ALATION		0x0910	Alation Systems
44102ac6454SAndrew Thompsonvendor GLOBESPAN	0x0915	Globespan
44202ac6454SAndrew Thompsonvendor CONCORDCAMERA	0x0919	Concord Camera
44302ac6454SAndrew Thompsonvendor GARMIN		0x091e	Garmin International
44402ac6454SAndrew Thompsonvendor GOHUBS		0x0921	GoHubs
44502ac6454SAndrew Thompsonvendor XEROX		0x0924	Xerox
44602ac6454SAndrew Thompsonvendor BIOMETRIC	0x0929	American Biometric Company
44702ac6454SAndrew Thompsonvendor TOSHIBA		0x0930	Toshiba
44802ac6454SAndrew Thompsonvendor PLEXTOR		0x093b	Plextor
44902ac6454SAndrew Thompsonvendor INTREPIDCS	0x093c	Intrepid
45002ac6454SAndrew Thompsonvendor YANO		0x094f	Yano
45102ac6454SAndrew Thompsonvendor KINGSTON		0x0951	Kingston Technology
45202ac6454SAndrew Thompsonvendor BLUEWATER	0x0956	BlueWater Systems
45302ac6454SAndrew Thompsonvendor AGILENT		0x0957	Agilent Technologies
45402ac6454SAndrew Thompsonvendor GUDE		0x0959	Gude ADS
45502ac6454SAndrew Thompsonvendor PORTSMITH	0x095a	Portsmith
45602ac6454SAndrew Thompsonvendor ACERW		0x0967	Acer
45702ac6454SAndrew Thompsonvendor ADIRONDACK	0x0976	Adirondack Wire & Cable
45802ac6454SAndrew Thompsonvendor BECKHOFF		0x0978	Beckhoff
45902ac6454SAndrew Thompsonvendor MINDSATWORK	0x097a	Minds At Work
46002ac6454SAndrew Thompsonvendor POINTCHIPS	0x09a6	PointChips
46102ac6454SAndrew Thompsonvendor INTERSIL		0x09aa	Intersil
46202ac6454SAndrew Thompsonvendor ALTIUS		0x09b3	Altius Solutions
46302ac6454SAndrew Thompsonvendor ARRIS		0x09c1	Arris Interactive
46402ac6454SAndrew Thompsonvendor ACTIVCARD	0x09c3	ACTIVCARD
46502ac6454SAndrew Thompsonvendor ACTISYS		0x09c4	ACTiSYS
46602ac6454SAndrew Thompsonvendor NOVATEL2		0x09d7	Novatel Wireless
46702ac6454SAndrew Thompsonvendor AFOURTECH	0x09da	A-FOUR TECH
46802ac6454SAndrew Thompsonvendor AIMEX		0x09dc	AIMEX
46902ac6454SAndrew Thompsonvendor ADDONICS		0x09df	Addonics Technologies
47002ac6454SAndrew Thompsonvendor AKAI		0x09e8	AKAI professional M.I.
47102ac6454SAndrew Thompsonvendor ARESCOM		0x09f5	ARESCOM
47202ac6454SAndrew Thompsonvendor BAY		0x09f9	Bay Associates
47302ac6454SAndrew Thompsonvendor ALTERA		0x09fb	Altera
47402ac6454SAndrew Thompsonvendor CSR		0x0a12	Cambridge Silicon Radio
47502ac6454SAndrew Thompsonvendor TREK		0x0a16	Trek Technology
47602ac6454SAndrew Thompsonvendor ASAHIOPTICAL	0x0a17	Asahi Optical
47702ac6454SAndrew Thompsonvendor BOCASYSTEMS	0x0a43	Boca Systems
47802ac6454SAndrew Thompsonvendor SHANTOU		0x0a46	ShanTou
47902ac6454SAndrew Thompsonvendor MEDIAGEAR	0x0a48	MediaGear
48002ac6454SAndrew Thompsonvendor BROADCOM		0x0a5c	Broadcom
48102ac6454SAndrew Thompsonvendor GREENHOUSE	0x0a6b	GREENHOUSE
48202ac6454SAndrew Thompsonvendor GEOCAST		0x0a79	Geocast Network Systems
48302ac6454SAndrew Thompsonvendor IDQUANTIQUE	0x0aba	id Quantique
48402ac6454SAndrew Thompsonvendor ZYDAS		0x0ace	Zydas Technology Corporation
48502ac6454SAndrew Thompsonvendor NEODIO		0x0aec	Neodio
48602ac6454SAndrew Thompsonvendor OPTION		0x0af0	Option N.V:
48702ac6454SAndrew Thompsonvendor ASUS		0x0b05	ASUSTeK Computer
48802ac6454SAndrew Thompsonvendor TODOS		0x0b0c	Todos Data System
48902ac6454SAndrew Thompsonvendor SIIG2		0x0b39	SIIG
49002ac6454SAndrew Thompsonvendor TEKRAM		0x0b3b	Tekram Technology
49102ac6454SAndrew Thompsonvendor HAL		0x0b41	HAL Corporation
49202ac6454SAndrew Thompsonvendor EMS		0x0b43	EMS Production
49302ac6454SAndrew Thompsonvendor NEC2		0x0b62	NEC
49402ac6454SAndrew Thompsonvendor ATI2		0x0b6f	ATI
49502ac6454SAndrew Thompsonvendor ZEEVO		0x0b7a	Zeevo, Inc.
49602ac6454SAndrew Thompsonvendor KURUSUGAWA	0x0b7e	Kurusugawa Electronics, Inc.
49702ac6454SAndrew Thompsonvendor ASIX		0x0b95	ASIX Electronics
49802ac6454SAndrew Thompsonvendor O2MICRO		0x0b97	O2 Micro, Inc.
49902ac6454SAndrew Thompsonvendor USR		0x0baf	U.S. Robotics
50002ac6454SAndrew Thompsonvendor AMBIT		0x0bb2	Ambit Microsystems
50102ac6454SAndrew Thompsonvendor HTC		0x0bb4	HTC
50202ac6454SAndrew Thompsonvendor REALTEK		0x0bda	Realtek
50302ac6454SAndrew Thompsonvendor ADDONICS2	0x0bf6	Addonics Technology
50402ac6454SAndrew Thompsonvendor FSC		0x0bf8	Fujitsu Siemens Computers
50502ac6454SAndrew Thompsonvendor AGATE		0x0c08	Agate Technologies
50602ac6454SAndrew Thompsonvendor DMI		0x0c0b	DMI
50702ac6454SAndrew Thompsonvendor CHICONY2		0x0c45	Chicony
50802ac6454SAndrew Thompsonvendor SEALEVEL		0x0c52	Sealevel System
50902ac6454SAndrew Thompsonvendor LUWEN		0x0c76	Luwen
51002ac6454SAndrew Thompsonvendor KYOCERA2		0x0c88	Kyocera Wireless Corp.
51102ac6454SAndrew Thompsonvendor ZCOM		0x0cde	Z-Com
51202ac6454SAndrew Thompsonvendor ATHEROS2		0x0cf3	Atheros Communications
51302ac6454SAndrew Thompsonvendor TANGTOP		0x0d3d	Tangtop
51402ac6454SAndrew Thompsonvendor SMC3		0x0d5c	Standard Microsystems
51502ac6454SAndrew Thompsonvendor ADDON		0x0d7d	Add-on Technology
51602ac6454SAndrew Thompsonvendor ACDC		0x0d7e	American Computer & Digital Components
51702ac6454SAndrew Thompsonvendor ABC		0x0d8c	ABC
51802ac6454SAndrew Thompsonvendor CONCEPTRONIC	0x0d8e	Conceptronic
51902ac6454SAndrew Thompsonvendor SKANHEX		0x0d96	Skanhex Technology, Inc.
52002ac6454SAndrew Thompsonvendor MSI		0x0db0	Micro Star International
52102ac6454SAndrew Thompsonvendor ELCON		0x0db7	ELCON Systemtechnik
52202ac6454SAndrew Thompsonvendor NETAC		0x0dd8	Netac
52302ac6454SAndrew Thompsonvendor SITECOMEU	0x0df6	Sitecom Europe
52402ac6454SAndrew Thompsonvendor MOBILEACTION	0x0df7	Mobile Action
52502ac6454SAndrew Thompsonvendor SPEEDDRAGON	0x0e55	Speed Dragon Multimedia
52602ac6454SAndrew Thompsonvendor HAWKING		0x0e66	Hawking
52702ac6454SAndrew Thompsonvendor FOSSIL		0x0e67	Fossil, Inc
52802ac6454SAndrew Thompsonvendor GMATE		0x0e7e	G.Mate, Inc
52902ac6454SAndrew Thompsonvendor OTI		0x0ea0	Ours Technology
53002ac6454SAndrew Thompsonvendor YISO		0x0eab	Yiso Wireless Co.
53102ac6454SAndrew Thompsonvendor PILOTECH		0x0eaf	Pilotech
53202ac6454SAndrew Thompsonvendor NOVATECH		0x0eb0	NovaTech
53302ac6454SAndrew Thompsonvendor ITEGNO		0x0eba	iTegno
53402ac6454SAndrew Thompsonvendor WINMAXGROUP	0x0ed1	WinMaxGroup
53502ac6454SAndrew Thompsonvendor TOD		0x0ede	TOD
53602ac6454SAndrew Thompsonvendor EGALAX		0x0eef	eGalax, Inc.
53702ac6454SAndrew Thompsonvendor AIRPRIME		0x0f3d	AirPrime, Inc.
53802ac6454SAndrew Thompsonvendor MICROTUNE	0x0f4d	Microtune
53902ac6454SAndrew Thompsonvendor VTECH		0x0f88	VTech
54002ac6454SAndrew Thompsonvendor FALCOM		0x0f94	Falcom Wireless Communications GmbH
54102ac6454SAndrew Thompsonvendor RIM		0x0fca	Research In Motion
54202ac6454SAndrew Thompsonvendor DYNASTREAM	0x0fcf	Dynastream Innovations
54302ac6454SAndrew Thompsonvendor QUALCOMM		0x1004	Qualcomm
54402ac6454SAndrew Thompsonvendor DESKNOTE		0x1019	Desknote
54502ac6454SAndrew Thompsonvendor GIGABYTE		0x1044	GIGABYTE
54602ac6454SAndrew Thompsonvendor WESTERN		0x1058	Western Digital
54702ac6454SAndrew Thompsonvendor MOTOROLA		0x1063	Motorola
54802ac6454SAndrew Thompsonvendor CCYU		0x1065	CCYU Technology
54902ac6454SAndrew Thompsonvendor CURITEL		0x106c	Curitel Communications Inc
55002ac6454SAndrew Thompsonvendor SILABS2		0x10a6	SILABS2
55102ac6454SAndrew Thompsonvendor USI		0x10ab	USI
55202ac6454SAndrew Thompsonvendor PLX		0x10b5	PLX
55302ac6454SAndrew Thompsonvendor ASANTE		0x10bd	Asante
55402ac6454SAndrew Thompsonvendor SILABS		0x10c4	Silicon Labs
55502ac6454SAndrew Thompsonvendor ANALOG		0x1110	Analog Devices
55602ac6454SAndrew Thompsonvendor TENX		0x1130	Ten X Technology, Inc.
55702ac6454SAndrew Thompsonvendor ISSC		0x1131	Integrated System Solution Corp.
55802ac6454SAndrew Thompsonvendor JRC		0x1145	Japan Radio Company
55902ac6454SAndrew Thompsonvendor SPHAIRON		0x114b	Sphairon Access Systems GmbH
56002ac6454SAndrew Thompsonvendor DELORME		0x1163	DeLorme
56102ac6454SAndrew Thompsonvendor SERVERWORKS	0x1166	ServerWorks
56202ac6454SAndrew Thompsonvendor ACERCM		0x1189	Acer Communications & Multimedia
56302ac6454SAndrew Thompsonvendor SIERRA		0x1199	Sierra Wireless
56402ac6454SAndrew Thompsonvendor TOPFIELD		0x11db	Topfield Co., Ltd
56502ac6454SAndrew Thompsonvendor SIEMENS3		0x11f5	Siemens
56602ac6454SAndrew Thompsonvendor PROLIFIC2	0x11f6	Prolific
56702ac6454SAndrew Thompsonvendor ALCATEL		0x11f7	Alcatel
56802ac6454SAndrew Thompsonvendor UNKNOWN3		0x1233	Unknown vendor
56902ac6454SAndrew Thompsonvendor TSUNAMI		0x1241	Tsunami
57002ac6454SAndrew Thompsonvendor PHEENET		0x124a	Pheenet
57102ac6454SAndrew Thompsonvendor TARGUS		0x1267	Targus
57202ac6454SAndrew Thompsonvendor TWINMOS		0x126f	TwinMOS
57302ac6454SAndrew Thompsonvendor TENDA		0x1286	Tenda
57402ac6454SAndrew Thompsonvendor CREATIVE2	0x1292	Creative Labs
57502ac6454SAndrew Thompsonvendor BELKIN2		0x1293	Belkin Components
57602ac6454SAndrew Thompsonvendor CYBERTAN		0x129b	CyberTAN Technology
57702ac6454SAndrew Thompsonvendor HUAWEI		0x12d1	Huawei Technologies
57802ac6454SAndrew Thompsonvendor ARANEUS		0x12d8	Araneus Information Systems
57902ac6454SAndrew Thompsonvendor TAPWAVE		0x12ef	Tapwave
58002ac6454SAndrew Thompsonvendor AINCOMM		0x12fd	Aincomm
58102ac6454SAndrew Thompsonvendor MOBILITY		0x1342	Mobility
58202ac6454SAndrew Thompsonvendor DICKSMITH	0x1371	Dick Smith Electronics
58302ac6454SAndrew Thompsonvendor NETGEAR3		0x1385	Netgear
58402ac6454SAndrew Thompsonvendor BALTECH		0x13ad	Baltech
58502ac6454SAndrew Thompsonvendor CISCOLINKSYS	0x13b1	Cisco-Linksys
58602ac6454SAndrew Thompsonvendor SHARK		0x13d2	Shark
58702ac6454SAndrew Thompsonvendor NOVATEL		0x1410	Novatel Wireless
58802ac6454SAndrew Thompsonvendor MERLIN		0x1416	Merlin
58902ac6454SAndrew Thompsonvendor WISTRONNEWEB	0x1435	Wistron NeWeb
59002ac6454SAndrew Thompsonvendor RADIOSHACK	0x1453	Radio Shack
59102ac6454SAndrew Thompsonvendor HUAWEI3COM	0x1472	Huawei-3Com
59202ac6454SAndrew Thompsonvendor SILICOM		0x1485	Silicom
59302ac6454SAndrew Thompsonvendor RALINK		0x148f	Ralink Technology
59402ac6454SAndrew Thompsonvendor IMAGINATION	0x149a	Imagination Technologies
59502ac6454SAndrew Thompsonvendor CONCEPTRONIC2	0x14b2	Conceptronic
596d3db083bSAndrew Thompsonvendor SUPERTOP		0x14cd	Super Top
59702ac6454SAndrew Thompsonvendor PLANEX3		0x14ea	Planex Communications
59802ac6454SAndrew Thompsonvendor SILICONPORTALS	0x1527	Silicon Portals
59902ac6454SAndrew Thompsonvendor UBIQUAM		0x1529	UBIQUAM Co., Ltd.
60002ac6454SAndrew Thompsonvendor UBLOX		0x1546	U-blox
60102ac6454SAndrew Thompsonvendor PNY		0x154b	PNY
60202ac6454SAndrew Thompsonvendor OQO		0x1557	OQO
60302ac6454SAndrew Thompsonvendor UMEDIA		0x157e	U-MEDIA Communications
60402ac6454SAndrew Thompsonvendor FIBERLINE	0x1582	Fiberline
60502ac6454SAndrew Thompsonvendor SPARKLAN		0x15a9	SparkLAN
60602ac6454SAndrew Thompsonvendor SOHOWARE		0x15e8	SOHOware
60702ac6454SAndrew Thompsonvendor UMAX		0x1606	UMAX Data Systems
60802ac6454SAndrew Thompsonvendor INSIDEOUT	0x1608	Inside Out Networks
60902ac6454SAndrew Thompsonvendor GOODWAY		0x1631	Good Way Technology
61002ac6454SAndrew Thompsonvendor ENTREGA		0x1645	Entrega
61102ac6454SAndrew Thompsonvendor ACTIONTEC	0x1668	Actiontec Electronics
61202ac6454SAndrew Thompsonvendor ATHEROS		0x168c	Atheros Communications
61302ac6454SAndrew Thompsonvendor GIGASET		0x1690	Gigaset
61402ac6454SAndrew Thompsonvendor GLOBALSUN	0x16ab	Global Sun Technology
61502ac6454SAndrew Thompsonvendor ANYDATA		0x16d5	AnyDATA Corporation
61602ac6454SAndrew Thompsonvendor JABLOTRON	0x16d6	Jablotron
61702ac6454SAndrew Thompsonvendor CMOTECH		0x16d8	C-motech
61802ac6454SAndrew Thompsonvendor AXESSTEL		0x1726  Axesstel Co., Ltd.
61902ac6454SAndrew Thompsonvendor LINKSYS4		0x1737	Linksys
62002ac6454SAndrew Thompsonvendor SENAO		0x1740	Senao
62102ac6454SAndrew Thompsonvendor METAGEEK		0x1781	MetaGeek
62202ac6454SAndrew Thompsonvendor AMIT		0x18c5	AMIT
62302ac6454SAndrew Thompsonvendor QCOM		0x18e8	Qcom
62402ac6454SAndrew Thompsonvendor LINKSYS3		0x1915	Linksys
62502ac6454SAndrew Thompsonvendor QUALCOMMINC	0x19d2	Qualcomm, Incorporated
62602ac6454SAndrew Thompsonvendor STELERA		0x1a8d	Stelera Wireless
6273a67e914SAndrew Thompsonvendor MPMAN		0x1cae	MpMan
62802ac6454SAndrew Thompsonvendor DRESDENELEKTRONIK 0x1cf1 dresden elektronik
62902ac6454SAndrew Thompsonvendor DLINK		0x2001	D-Link
63002ac6454SAndrew Thompsonvendor PLANEX2		0x2019	Planex Communications
63102ac6454SAndrew Thompsonvendor ERICSSON		0x2282	Ericsson
63202ac6454SAndrew Thompsonvendor MOTOROLA2	0x22b8	Motorola
63302ac6454SAndrew Thompsonvendor TRIPPLITE	0x2478	Tripp-Lite
63402ac6454SAndrew Thompsonvendor HIROSE		0x2631	Hirose Electric
63502ac6454SAndrew Thompsonvendor NHJ		0x2770	NHJ
63602ac6454SAndrew Thompsonvendor PLANEX		0x2c02	Planex Communications
63702ac6454SAndrew Thompsonvendor VIDZMEDIA	0x3275	VidzMedia Pte Ltd
63802ac6454SAndrew Thompsonvendor AEI		0x3334	AEI
63902ac6454SAndrew Thompsonvendor HANK		0x3353	Hank Connection
64002ac6454SAndrew Thompsonvendor PQI		0x3538	PQI
64102ac6454SAndrew Thompsonvendor DAISY		0x3579	Daisy Technology
64202ac6454SAndrew Thompsonvendor NI		0x3923	National Instruments
64302ac6454SAndrew Thompsonvendor MICRONET		0x3980	Micronet Communications
64402ac6454SAndrew Thompsonvendor IODATA2		0x40bb	I-O Data
64502ac6454SAndrew Thompsonvendor IRIVER		0x4102	iRiver
64602ac6454SAndrew Thompsonvendor DELL		0x413c	Dell
64702ac6454SAndrew Thompsonvendor WCH		0x4348	QinHeng Electronics
64802ac6454SAndrew Thompsonvendor ACEECA		0x4766	Aceeca
64902ac6454SAndrew Thompsonvendor AVERATEC		0x50c2	Averatec
65002ac6454SAndrew Thompsonvendor SWEEX		0x5173	Sweex
65102ac6454SAndrew Thompsonvendor ONSPEC2		0x55aa	OnSpec Electronic Inc.
65202ac6454SAndrew Thompsonvendor ZINWELL		0x5a57	Zinwell
65302ac6454SAndrew Thompsonvendor SITECOM		0x6189	Sitecom
65402ac6454SAndrew Thompsonvendor ARKMICRO		0x6547	Arkmicro Technologies Inc.
65502ac6454SAndrew Thompsonvendor 3COM2		0x6891	3Com
65602ac6454SAndrew Thompsonvendor INTEL		0x8086	Intel
65702ac6454SAndrew Thompsonvendor SITECOM2		0x9016	Sitecom
65802ac6454SAndrew Thompsonvendor MOSCHIP		0x9710	MosChip Semiconductor
65902ac6454SAndrew Thompsonvendor 3COM3		0xa727	3Com
66002ac6454SAndrew Thompsonvendor HP2		0xf003	Hewlett Packard
66102ac6454SAndrew Thompsonvendor USRP		0xfffe	GNU Radio USRP
66202ac6454SAndrew Thompson
66302ac6454SAndrew Thompson/*
66402ac6454SAndrew Thompson * List of known products.  Grouped by vendor.
66502ac6454SAndrew Thompson */
66602ac6454SAndrew Thompson
66702ac6454SAndrew Thompson/* 3Com products */
66802ac6454SAndrew Thompsonproduct 3COM HOMECONN		0x009d	HomeConnect Camera
66902ac6454SAndrew Thompsonproduct 3COM 3CREB96		0x00a0	Bluetooth USB Adapter
67002ac6454SAndrew Thompsonproduct 3COM 3C19250		0x03e8	3C19250 Ethernet Adapter
67102ac6454SAndrew Thompsonproduct 3COM 3CRSHEW696		0x0a01	3CRSHEW696 Wireless Adapter
67202ac6454SAndrew Thompsonproduct 3COM 3C460		0x11f8	HomeConnect 3C460
67302ac6454SAndrew Thompsonproduct 3COM USR56K		0x3021	U.S.Robotics 56000 Voice FaxModem Pro
67402ac6454SAndrew Thompsonproduct 3COM 3C460B		0x4601	HomeConnect 3C460B
67502ac6454SAndrew Thompsonproduct 3COM2 3CRUSB10075	0xa727	3CRUSB10075
67602ac6454SAndrew Thompsonproduct 3COM3 AR5523_1		0x6893	AR5523
67702ac6454SAndrew Thompsonproduct 3COM3 AR5523_2		0x6895	AR5523
67802ac6454SAndrew Thompsonproduct 3COM3 AR5523_3		0x6897	AR5523
67902ac6454SAndrew Thompson
68002ac6454SAndrew Thompsonproduct 3COMUSR OFFICECONN	0x0082	3Com OfficeConnect Analog Modem
68102ac6454SAndrew Thompsonproduct 3COMUSR USRISDN		0x008f	3Com U.S. Robotics Pro ISDN TA
68202ac6454SAndrew Thompsonproduct 3COMUSR HOMECONN	0x009d	3Com HomeConnect Camera
68302ac6454SAndrew Thompsonproduct 3COMUSR USR56K		0x3021	U.S. Robotics 56000 Voice FaxModem Pro
68402ac6454SAndrew Thompson
68502ac6454SAndrew Thompson/* AboCom products */
68602ac6454SAndrew Thompsonproduct ABOCOM XX1		0x110c	XX1
68702ac6454SAndrew Thompsonproduct ABOCOM XX2		0x200c	XX2
68802ac6454SAndrew Thompsonproduct ABOCOM URE450		0x4000	URE450 Ethernet Adapter
68902ac6454SAndrew Thompsonproduct ABOCOM UFE1000		0x4002	UFE1000 Fast Ethernet Adapter
69002ac6454SAndrew Thompsonproduct ABOCOM DSB650TX_PNA	0x4003	1/10/100 Ethernet Adapter
69102ac6454SAndrew Thompsonproduct ABOCOM XX4		0x4004	XX4
69202ac6454SAndrew Thompsonproduct ABOCOM XX5		0x4007	XX5
69302ac6454SAndrew Thompsonproduct ABOCOM XX6		0x400b	XX6
69402ac6454SAndrew Thompsonproduct ABOCOM XX7		0x400c	XX7
69502ac6454SAndrew Thompsonproduct ABOCOM RTL8151		0x401a	RTL8151
69602ac6454SAndrew Thompsonproduct ABOCOM XX8		0x4102	XX8
69702ac6454SAndrew Thompsonproduct ABOCOM XX9		0x4104	XX9
69802ac6454SAndrew Thompsonproduct ABOCOM UF200		0x420a	UF200 Ethernet
69902ac6454SAndrew Thompsonproduct ABOCOM WL54		0x6001	WL54
70002ac6454SAndrew Thompsonproduct ABOCOM XX10		0xabc1	XX10
70102ac6454SAndrew Thompsonproduct ABOCOM BWU613		0xb000	BWU613
70202ac6454SAndrew Thompsonproduct ABOCOM HWU54DM		0xb21b	HWU54DM
70302ac6454SAndrew Thompsonproduct ABOCOM RT2573_2		0xb21c	RT2573
70402ac6454SAndrew Thompsonproduct ABOCOM RT2573_3		0xb21d	RT2573
70502ac6454SAndrew Thompsonproduct ABOCOM RT2573_4		0xb21e	RT2573
70602ac6454SAndrew Thompsonproduct ABOCOM WUG2700		0xb21f	WUG2700
70702ac6454SAndrew Thompson
70802ac6454SAndrew Thompson/* Accton products */
70902ac6454SAndrew Thompsonproduct ACCTON USB320_EC	0x1046	USB320-EC Ethernet Adapter
71002ac6454SAndrew Thompsonproduct ACCTON 2664W		0x3501	2664W
71102ac6454SAndrew Thompsonproduct ACCTON 111		0x3503	T-Sinus 111 Wireless Adapter
71202ac6454SAndrew Thompsonproduct ACCTON SMCWUSBG		0x4505	SMCWUSB-G
71302ac6454SAndrew Thompsonproduct ACCTON PRISM_GT		0x4521	PrismGT USB 2.0 WLAN
71402ac6454SAndrew Thompsonproduct ACCTON SS1001		0x5046	SpeedStream Ethernet Adapter
71502ac6454SAndrew Thompsonproduct ACCTON ZD1211B		0xe501	ZD1211B
71602ac6454SAndrew Thompson
71702ac6454SAndrew Thompson/* Aceeca products */
71802ac6454SAndrew Thompsonproduct ACEECA MEZ1000		0x0001	MEZ1000 RDA
71902ac6454SAndrew Thompson
72002ac6454SAndrew Thompson/* Acer Communications & Multimedia (oemd by Surecom) */
72102ac6454SAndrew Thompsonproduct ACERCM EP1427X2		0x0893	EP-1427X-2 Ethernet Adapter
72202ac6454SAndrew Thompson
72302ac6454SAndrew Thompson/* Acer Labs products */
72402ac6454SAndrew Thompsonproduct ACERLABS M5632		0x5632	USB 2.0 Data Link
72502ac6454SAndrew Thompson
72602ac6454SAndrew Thompson/* Acer Peripherals, Inc. products */
72702ac6454SAndrew Thompsonproduct ACERP ACERSCAN_C310U	0x12a6	Acerscan C310U
72802ac6454SAndrew Thompsonproduct ACERP ACERSCAN_320U	0x2022	Acerscan 320U
72902ac6454SAndrew Thompsonproduct ACERP ACERSCAN_640U	0x2040	Acerscan 640U
73002ac6454SAndrew Thompsonproduct ACERP ACERSCAN_620U	0x2060	Acerscan 620U
73102ac6454SAndrew Thompsonproduct ACERP ACERSCAN_4300U	0x20b0	Benq 3300U/4300U
73202ac6454SAndrew Thompsonproduct ACERP ACERSCAN_640BT	0x20be	Acerscan 640BT
73302ac6454SAndrew Thompsonproduct ACERP ACERSCAN_1240U	0x20c0	Acerscan 1240U
73402ac6454SAndrew Thompsonproduct ACERP ATAPI		0x6003	ATA/ATAPI Adapter
73502ac6454SAndrew Thompsonproduct ACERP AWL300		0x9000	AWL300 Wireless Adapter
73602ac6454SAndrew Thompsonproduct ACERP AWL400		0x9001	AWL400 Wireless Adapter
73702ac6454SAndrew Thompson
73802ac6454SAndrew Thompson/* Acer Warp products */
73902ac6454SAndrew Thompsonproduct ACERW WARPLINK		0x0204	Warplink
74002ac6454SAndrew Thompson
74102ac6454SAndrew Thompson/* Actiontec, Inc. products */
74202ac6454SAndrew Thompsonproduct ACTIONTEC PRISM_25	0x0408	Prism2.5 Wireless Adapter
74302ac6454SAndrew Thompsonproduct ACTIONTEC PRISM_25A	0x0421	Prism2.5 Wireless Adapter A
74402ac6454SAndrew Thompsonproduct ACTIONTEC FREELAN	0x6106	ROPEX FreeLan 802.11b
74502ac6454SAndrew Thompsonproduct ACTIONTEC UAT1		0x7605	UAT1 Wireless Ethernet Adapter
74602ac6454SAndrew Thompson
74702ac6454SAndrew Thompson/* ACTiSYS products */
74802ac6454SAndrew Thompsonproduct ACTISYS IR2000U		0x0011	ACT-IR2000U FIR
74902ac6454SAndrew Thompson
75002ac6454SAndrew Thompson/* ActiveWire, Inc. products */
75102ac6454SAndrew Thompsonproduct ACTIVEWIRE IOBOARD	0x0100	I/O Board
75202ac6454SAndrew Thompsonproduct ACTIVEWIRE IOBOARD_FW1	0x0101	I/O Board, rev. 1 firmware
75302ac6454SAndrew Thompson
75402ac6454SAndrew Thompson/* Adaptec products */
75502ac6454SAndrew Thompsonproduct ADAPTEC AWN8020		0x0020	AWN-8020 WLAN
75602ac6454SAndrew Thompson
75702ac6454SAndrew Thompson/* Addtron products */
75802ac6454SAndrew Thompsonproduct ADDTRON AWU120		0xff31	AWU-120
75902ac6454SAndrew Thompson
76002ac6454SAndrew Thompson/* ADMtek products */
76102ac6454SAndrew Thompsonproduct ADMTEK PEGASUSII_4	0x07c2	AN986A Ethernet
76202ac6454SAndrew Thompsonproduct ADMTEK PEGASUS		0x0986	AN986 Ethernet
76302ac6454SAndrew Thompsonproduct ADMTEK PEGASUSII	0x8511	AN8511 Ethernet
76402ac6454SAndrew Thompsonproduct ADMTEK PEGASUSII_2	0x8513	AN8513 Ethernet
76502ac6454SAndrew Thompsonproduct ADMTEK PEGASUSII_3	0x8515	AN8515 Ethernet
76602ac6454SAndrew Thompson
76702ac6454SAndrew Thompson/* ADDON products */
76802ac6454SAndrew Thompson/* PNY OEMs these */
76902ac6454SAndrew Thompsonproduct ADDON ATTACHE		0x1300	USB 2.0 Flash Drive
77002ac6454SAndrew Thompsonproduct ADDON ATTACHE		0x1300	USB 2.0 Flash Drive
77102ac6454SAndrew Thompsonproduct ADDON A256MB		0x1400	Attache 256MB USB 2.0 Flash Drive
77202ac6454SAndrew Thompsonproduct ADDON DISKPRO512	0x1420	USB 2.0 Flash Drive (DANE-ELEC zMate 512MB USB flash drive)
77302ac6454SAndrew Thompson
77402ac6454SAndrew Thompson/* Addonics products */
77502ac6454SAndrew Thompsonproduct ADDONICS2 CABLE_205	0xa001	Cable 205
77602ac6454SAndrew Thompson
77702ac6454SAndrew Thompson/* ADS products */
77802ac6454SAndrew Thompsonproduct ADS UBS10BT		0x0008	UBS-10BT Ethernet
77902ac6454SAndrew Thompsonproduct ADS UBS10BTX		0x0009	UBS-10BT Ethernet
78002ac6454SAndrew Thompson
78102ac6454SAndrew Thompson/* AEI products */
78202ac6454SAndrew Thompsonproduct AEI FASTETHERNET	0x1701	Fast Ethernet
78302ac6454SAndrew Thompson
78402ac6454SAndrew Thompson/* Agate Technologies products */
78502ac6454SAndrew Thompsonproduct AGATE QDRIVE		0x0378	Q-Drive
78602ac6454SAndrew Thompson
78702ac6454SAndrew Thompson/* AGFA products */
78802ac6454SAndrew Thompsonproduct AGFA SNAPSCAN1212U	0x0001	SnapScan 1212U
78902ac6454SAndrew Thompsonproduct AGFA SNAPSCAN1236U	0x0002	SnapScan 1236U
79002ac6454SAndrew Thompsonproduct AGFA SNAPSCANTOUCH	0x0100	SnapScan Touch
79102ac6454SAndrew Thompsonproduct AGFA SNAPSCAN1212U2	0x2061	SnapScan 1212U
79202ac6454SAndrew Thompsonproduct AGFA SNAPSCANE40	0x208d	SnapScan e40
79302ac6454SAndrew Thompsonproduct AGFA SNAPSCANE50	0x208f	SnapScan e50
79402ac6454SAndrew Thompsonproduct AGFA SNAPSCANE20	0x2091	SnapScan e20
79502ac6454SAndrew Thompsonproduct AGFA SNAPSCANE25	0x2095	SnapScan e25
79602ac6454SAndrew Thompsonproduct AGFA SNAPSCANE26	0x2097	SnapScan e26
79702ac6454SAndrew Thompsonproduct AGFA SNAPSCANE52	0x20fd	SnapScan e52
79802ac6454SAndrew Thompson
79902ac6454SAndrew Thompson/* Ain Communication Technology products */
80002ac6454SAndrew Thompsonproduct AINCOMM AWU2000B	0x1001	AWU2000B Wireless Adapter
80102ac6454SAndrew Thompson
80202ac6454SAndrew Thompson/* AIPTEK products */
80302ac6454SAndrew Thompsonproduct AIPTEK POCKETCAM3M	0x2011	PocketCAM 3Mega
80402ac6454SAndrew Thompsonproduct AIPTEK2 PENCAM_MEGA_1_3 0x504a	PenCam Mega 1.3
80502ac6454SAndrew Thompson
80602ac6454SAndrew Thompson/* AirPrime products */
80702ac6454SAndrew Thompsonproduct AIRPRIME PC5220		0x0112	CDMA Wireless PC Card
80802ac6454SAndrew Thompson
80902ac6454SAndrew Thompson/* AKS products */
81002ac6454SAndrew Thompsonproduct AKS USBHASP		0x0001	USB-HASP 0.06
81102ac6454SAndrew Thompson
81202ac6454SAndrew Thompson/* Alcor Micro, Inc. products */
81302ac6454SAndrew Thompsonproduct ALCOR2 KBD_HUB		0x2802	Kbd Hub
81402ac6454SAndrew Thompson
81502ac6454SAndrew Thompsonproduct ALCOR TRANSCEND		0x6387	Transcend JetFlash Drive
81602ac6454SAndrew Thompsonproduct ALCOR MA_KBD_HUB	0x9213	MacAlly Kbd Hub
81702ac6454SAndrew Thompsonproduct ALCOR AU9814		0x9215	AU9814 Hub
81802ac6454SAndrew Thompsonproduct ALCOR UMCR_9361		0x9361	USB Multimedia Card Reader
81902ac6454SAndrew Thompsonproduct ALCOR SM_KBD		0x9410	MicroConnectors/StrongMan Keyboard
82002ac6454SAndrew Thompsonproduct ALCOR NEC_KBD_HUB	0x9472	NEC Kbd Hub
8213a67e914SAndrew Thompsonproduct ALCOR AU6390	0x6390	AU6390 USB-IDE converter
82202ac6454SAndrew Thompson
82302ac6454SAndrew Thompson/* Altec Lansing products */
82402ac6454SAndrew Thompsonproduct ALTEC ADA70		0x0070	ADA70 Speakers
82502ac6454SAndrew Thompsonproduct ALTEC ASC495		0xff05	ASC495 Speakers
82602ac6454SAndrew Thompson
82702ac6454SAndrew Thompson/* Allied Telesyn International products */
82802ac6454SAndrew Thompsonproduct ALLIEDTELESYN ATUSB100	0xb100	AT-USB100
82902ac6454SAndrew Thompson
83002ac6454SAndrew Thompson/* American Power Conversion products */
83102ac6454SAndrew Thompsonproduct APC UPS			0x0002	Uninterruptible Power Supply
83202ac6454SAndrew Thompson
83302ac6454SAndrew Thompson/* Ambit Microsystems products */
83402ac6454SAndrew Thompsonproduct AMBIT WLAN		0x0302	WLAN
83502ac6454SAndrew Thompsonproduct AMBIT NTL_250		0x6098	NTL 250 cable modem
83602ac6454SAndrew Thompson
83702ac6454SAndrew Thompson/* AMIT products */
83802ac6454SAndrew Thompsonproduct AMIT CGWLUSB2GO		0x0002	CG-WLUSB2GO
83902ac6454SAndrew Thompson
84002ac6454SAndrew Thompson/* Anchor products */
84102ac6454SAndrew Thompsonproduct ANCHOR EZUSB		0x2131	EZUSB
84202ac6454SAndrew Thompsonproduct ANCHOR EZLINK		0x2720	EZLINK
84302ac6454SAndrew Thompson
84402ac6454SAndrew Thompson/* AnyData products */
84502ac6454SAndrew Thompsonproduct ANYDATA ADU_E100X	0x6501	CDMA 2000 1xRTT/EV-DO USB Modem
84602ac6454SAndrew Thompsonproduct ANYDATA ADU_500A	0x6502	CDMA 2000 EV-DO USB Modem
84702ac6454SAndrew Thompson
84802ac6454SAndrew Thompson/* AOX, Inc. products */
84902ac6454SAndrew Thompsonproduct AOX USB101		0x0008	Ethernet
85002ac6454SAndrew Thompson
85102ac6454SAndrew Thompson/* American Power Conversion products */
85202ac6454SAndrew Thompsonproduct APC UPS			0x0002	Uninterruptible Power Supply
85302ac6454SAndrew Thompson
85402ac6454SAndrew Thompson/* Apple Computer products */
85502ac6454SAndrew Thompsonproduct APPLE EXT_KBD		0x020c	Apple Extended USB Keyboard
85602ac6454SAndrew Thompsonproduct APPLE OPTMOUSE		0x0302	Optical mouse
85702ac6454SAndrew Thompsonproduct APPLE MIGHTYMOUSE	0x0304	Mighty Mouse
85802ac6454SAndrew Thompsonproduct APPLE EXT_KBD_HUB	0x1003	Hub in Apple Extended USB Keyboard
85902ac6454SAndrew Thompsonproduct APPLE SPEAKERS		0x1101	Speakers
86002ac6454SAndrew Thompsonproduct APPLE IPOD		0x1201	iPod
86102ac6454SAndrew Thompsonproduct APPLE IPOD2G		0x1202	iPod 2G
86202ac6454SAndrew Thompsonproduct APPLE IPOD3G		0x1203	iPod 3G
86302ac6454SAndrew Thompsonproduct APPLE IPOD_04		0x1204	iPod '04'
86402ac6454SAndrew Thompsonproduct APPLE IPODMINI		0x1205	iPod Mini
86502ac6454SAndrew Thompsonproduct APPLE IPOD_06		0x1206	iPod '06'
86602ac6454SAndrew Thompsonproduct APPLE IPOD_07		0x1207	iPod '07'
86702ac6454SAndrew Thompsonproduct APPLE IPOD_08		0x1208	iPod '08'
86802ac6454SAndrew Thompsonproduct APPLE IPODVIDEO		0x1209	iPod Video
86902ac6454SAndrew Thompsonproduct APPLE IPODNANO		0x120a	iPod Nano
87002ac6454SAndrew Thompsonproduct APPLE IPHONE		0x1290	iPhone
87102ac6454SAndrew Thompsonproduct APPLE IPHONE_3G		0x1292	iPhone 3G
87202ac6454SAndrew Thompsonproduct APPLE ETHERNET		0x1402	Ethernet A1277
87302ac6454SAndrew Thompson
87402ac6454SAndrew Thompson/* Arkmicro Technologies */
87502ac6454SAndrew Thompsonproduct ARKMICRO ARK3116	0x0232	ARK3116 Serial
87602ac6454SAndrew Thompson
87702ac6454SAndrew Thompson/* Asahi Optical products */
87802ac6454SAndrew Thompsonproduct ASAHIOPTICAL OPTIO230	0x0004	Digital camera
87902ac6454SAndrew Thompsonproduct ASAHIOPTICAL OPTIO330	0x0006	Digital camera
88002ac6454SAndrew Thompson
88102ac6454SAndrew Thompson/* Asante products */
88202ac6454SAndrew Thompsonproduct ASANTE EA		0x1427	Ethernet
88302ac6454SAndrew Thompson
88402ac6454SAndrew Thompson/* ASIX Electronics products */
88502ac6454SAndrew Thompsonproduct ASIX AX88172		0x1720	10/100 Ethernet
88602ac6454SAndrew Thompsonproduct ASIX AX88178		0x1780	AX88178
88702ac6454SAndrew Thompsonproduct ASIX AX88772		0x7720	AX88772
88802ac6454SAndrew Thompson
88902ac6454SAndrew Thompson/* ASUS products */
89002ac6454SAndrew Thompsonproduct ASUS WL167G		0x1707	WL-167g Wireless Adapter
89102ac6454SAndrew Thompsonproduct ASUS WL159G		0x170c	WL-159g
89202ac6454SAndrew Thompsonproduct ASUS A9T_WIFI		0x171b	A9T wireless
89302ac6454SAndrew Thompsonproduct ASUS RT2573_1		0x1723	RT2573
89402ac6454SAndrew Thompsonproduct ASUS RT2573_2		0x1724	RT2573
89502ac6454SAndrew Thompsonproduct ASUS LCM		0x1726	LCM display
89602ac6454SAndrew Thompsonproduct ASUS P535		0x420f	ASUS P535 PDA
89702ac6454SAndrew Thompson
89802ac6454SAndrew Thompson/* ATen products */
89902ac6454SAndrew Thompsonproduct ATEN UC1284		0x2001	Parallel printer
90002ac6454SAndrew Thompsonproduct ATEN UC10T		0x2002	10Mbps Ethernet
90102ac6454SAndrew Thompsonproduct ATEN UC110T		0x2007	UC-110T Ethernet
90202ac6454SAndrew Thompsonproduct ATEN UC232A		0x2008	Serial
90302ac6454SAndrew Thompsonproduct ATEN UC210T		0x2009	UC-210T Ethernet
90402ac6454SAndrew Thompsonproduct ATEN DSB650C		0x4000	DSB-650C
90502ac6454SAndrew Thompson
90602ac6454SAndrew Thompson/* Atheros Communications products */
90702ac6454SAndrew Thompsonproduct ATHEROS AR5523		0x0001	AR5523
90802ac6454SAndrew Thompsonproduct ATHEROS AR5523_NF	0x0002	AR5523 (no firmware)
90902ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_1	0x0001	AR5523
91002ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_1_NF	0x0002	AR5523 (no firmware)
91102ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_2	0x0003	AR5523
91202ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_2_NF	0x0004	AR5523 (no firmware)
91302ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_3	0x0005	AR5523
91402ac6454SAndrew Thompsonproduct ATHEROS2 AR5523_3_NF	0x0006	AR5523 (no firmware)
91502ac6454SAndrew Thompson
91602ac6454SAndrew Thompson/* Atmel Comp. products */
917bbb39ba5SJoerg Wunschproduct ATMEL STK541		0x2109	Zigbee Controller
91802ac6454SAndrew Thompsonproduct ATMEL UHB124		0x3301	UHB124 hub
91902ac6454SAndrew Thompsonproduct ATMEL DWL120		0x7603	DWL-120 Wireless Adapter
92002ac6454SAndrew Thompsonproduct ATMEL BW002		0x7605	BW002 Wireless Adapter
92102ac6454SAndrew Thompsonproduct ATMEL WL1130USB		0x7613	WL-1130 USB
92202ac6454SAndrew Thompsonproduct ATMEL AT76C505A		0x7614	AT76c505a Wireless Adapter
92302ac6454SAndrew Thompson
92402ac6454SAndrew Thompson/* Avision products */
92502ac6454SAndrew Thompsonproduct AVISION 1200U		0x0268	1200U scanner
92602ac6454SAndrew Thompson
92702ac6454SAndrew Thompson/* Axesstel products */
92802ac6454SAndrew Thompsonproduct AXESSTEL DATAMODEM	0x1000  Data Modem
92902ac6454SAndrew Thompson
93002ac6454SAndrew Thompson/* Baltech products */
93102ac6454SAndrew Thompsonproduct BALTECH CARDREADER	0x9999	Card reader
93202ac6454SAndrew Thompson
93302ac6454SAndrew Thompson/* B&B Electronics products */
93402ac6454SAndrew Thompsonproduct BBELECTRONICS USOTL4	0xAC01	RS-422/485
93502ac6454SAndrew Thompson
93602ac6454SAndrew Thompson/* Belkin products */
93702ac6454SAndrew Thompson/*product BELKIN F5U111		0x????	F5U111 Ethernet*/
93802ac6454SAndrew Thompsonproduct BELKIN F5D6050		0x0050	F5D6050 802.11b Wireless Adapter
93902ac6454SAndrew Thompsonproduct BELKIN FBT001V		0x0081	FBT001v2 Bluetooth
94002ac6454SAndrew Thompsonproduct BELKIN FBT003V		0x0084	FBT003v2 Bluetooth
94102ac6454SAndrew Thompsonproduct BELKIN F5U103		0x0103	F5U103 Serial
94202ac6454SAndrew Thompsonproduct BELKIN F5U109		0x0109	F5U109 Serial
94302ac6454SAndrew Thompsonproduct BELKIN USB2SCSI		0x0115	USB to SCSI
94402ac6454SAndrew Thompsonproduct BELKIN F8T012		0x0121	F8T012xx1 Bluetooth USB Adapter
94502ac6454SAndrew Thompsonproduct BELKIN USB2LAN		0x0121	USB to LAN
94602ac6454SAndrew Thompsonproduct BELKIN F5U208		0x0208	F5U208 VideoBus II
94702ac6454SAndrew Thompsonproduct BELKIN F5U237		0x0237	F5U237 USB 2.0 7-Port Hub
94802ac6454SAndrew Thompsonproduct BELKIN F5U257		0x0257	F5U257 Serial
94902ac6454SAndrew Thompsonproduct BELKIN F5U409		0x0409	F5U409 Serial
95002ac6454SAndrew Thompsonproduct BELKIN F6C550AVR	0x0551	F6C550-AVR UPS
95102ac6454SAndrew Thompsonproduct BELKIN F5U120		0x1203	F5U120-PC Hub
95202ac6454SAndrew Thompsonproduct BELKIN ZD1211B		0x4050	ZD1211B
95302ac6454SAndrew Thompsonproduct BELKIN F5D5055		0x5055	F5D5055
95402ac6454SAndrew Thompsonproduct BELKIN F5D7050		0x7050	F5D7050 Wireless Adapter
95502ac6454SAndrew Thompsonproduct BELKIN F5D7051		0x7051	F5D7051 54g USB Network Adapter
95602ac6454SAndrew Thompsonproduct BELKIN F5D7050A		0x705a	F5D7050A Wireless Adapter
95702ac6454SAndrew Thompson/* Also sold as 'Ativa 802.11g wireless card' */
95802ac6454SAndrew Thompsonproduct BELKIN F5D7050_V4000	0x705c	F5D7050 v4000 Wireless Adapter
95902ac6454SAndrew Thompsonproduct BELKIN F5D9050V3	0x905b	F5D9050 ver 3 Wireless Adapter
96002ac6454SAndrew Thompsonproduct BELKIN2 F5U002		0x0002	F5U002 Parallel printer
96102ac6454SAndrew Thompson
96202ac6454SAndrew Thompson/* Billionton products */
96302ac6454SAndrew Thompsonproduct BILLIONTON USB100	0x0986	USB100N 10/100 FastEthernet
96402ac6454SAndrew Thompsonproduct BILLIONTON USBLP100	0x0987	USB100LP
96502ac6454SAndrew Thompsonproduct BILLIONTON USBEL100	0x0988	USB100EL
96602ac6454SAndrew Thompsonproduct BILLIONTON USBE100	0x8511	USBE100
96702ac6454SAndrew Thompsonproduct BILLIONTON USB2AR	0x90ff	USB2AR Ethernet
96802ac6454SAndrew Thompson
96902ac6454SAndrew Thompson/* Broadcom products */
97002ac6454SAndrew Thompsonproduct BROADCOM BCM2033	0x2033	BCM2033 Bluetooth USB dongle
97102ac6454SAndrew Thompson
97202ac6454SAndrew Thompson/* Brother Industries products */
97302ac6454SAndrew Thompsonproduct BROTHER HL1050		0x0002	HL-1050 laser printer
97402ac6454SAndrew Thompson
97502ac6454SAndrew Thompson/* Behavior Technology Computer products */
97602ac6454SAndrew Thompsonproduct BTC BTC7932		0x6782	Keyboard with mouse port
97702ac6454SAndrew Thompson
97802ac6454SAndrew Thompson/* Canon, Inc. products */
97902ac6454SAndrew Thompsonproduct CANON N656U		0x2206	CanoScan N656U
98002ac6454SAndrew Thompsonproduct CANON N1220U		0x2207	CanoScan N1220U
98102ac6454SAndrew Thompsonproduct CANON D660U		0x2208	CanoScan D660U
98202ac6454SAndrew Thompsonproduct CANON N676U		0x220d	CanoScan N676U
98302ac6454SAndrew Thompsonproduct CANON N1240U		0x220e	CanoScan N1240U
98402ac6454SAndrew Thompsonproduct CANON LIDE25		0x2220	CanoScan LIDE 25
98502ac6454SAndrew Thompsonproduct CANON S10		0x3041	PowerShot S10
98602ac6454SAndrew Thompsonproduct CANON S100		0x3045	PowerShot S100
98702ac6454SAndrew Thompsonproduct CANON S200		0x3065	PowerShot S200
98802ac6454SAndrew Thompsonproduct CANON REBELXT		0x30ef	Digital Rebel XT
98902ac6454SAndrew Thompson
99002ac6454SAndrew Thompson/* CATC products */
99102ac6454SAndrew Thompsonproduct CATC NETMATE		0x000a	Netmate Ethernet
99202ac6454SAndrew Thompsonproduct CATC NETMATE2		0x000c	Netmate2 Ethernet
99302ac6454SAndrew Thompsonproduct CATC CHIEF		0x000d	USB Chief Bus & Protocol Analyzer
99402ac6454SAndrew Thompsonproduct CATC ANDROMEDA		0x1237	Andromeda hub
99502ac6454SAndrew Thompson
99602ac6454SAndrew Thompson/* CASIO products */
99702ac6454SAndrew Thompsonproduct CASIO QV_DIGICAM	0x1001	QV DigiCam
99802ac6454SAndrew Thompsonproduct CASIO EXS880		0x1105	Exilim EX-S880
99902ac6454SAndrew Thompsonproduct CASIO BE300		0x2002	BE-300 PDA
100002ac6454SAndrew Thompsonproduct CASIO NAMELAND		0x4001	CASIO Nameland EZ-USB
100102ac6454SAndrew Thompson
100202ac6454SAndrew Thompson/* CCYU products */
100302ac6454SAndrew Thompsonproduct CCYU ED1064		0x2136	EasyDisk ED1064
100402ac6454SAndrew Thompson
100502ac6454SAndrew Thompson/* Century products */
100602ac6454SAndrew Thompsonproduct CENTURY EX35QUAT	0x011e	Century USB Disk Enclosure
100702ac6454SAndrew Thompson
100802ac6454SAndrew Thompson/* Cherry products */
100902ac6454SAndrew Thompsonproduct CHERRY MY3000KBD	0x0001	My3000 keyboard
101002ac6454SAndrew Thompsonproduct CHERRY MY3000HUB	0x0003	My3000 hub
101102ac6454SAndrew Thompsonproduct CHERRY CYBOARD		0x0004	CyBoard Keyboard
101202ac6454SAndrew Thompson
101302ac6454SAndrew Thompson/* Chic Technology products */
101402ac6454SAndrew Thompsonproduct CHIC MOUSE1		0x0001	mouse
101502ac6454SAndrew Thompsonproduct CHIC CYPRESS		0x0003	Cypress USB Mouse
101602ac6454SAndrew Thompson
101702ac6454SAndrew Thompson/* Chicony products */
101802ac6454SAndrew Thompsonproduct CHICONY KB8933		0x0001	KB-8933 keyboard
101902ac6454SAndrew Thompsonproduct CHICONY2 TWINKLECAM	0x600d	TwinkleCam USB camera
102002ac6454SAndrew Thompson
102102ac6454SAndrew Thompson/* CH Products */
102202ac6454SAndrew Thompsonproduct CHPRODUCTS PROTHROTTLE	0x00f1	Pro Throttle
102302ac6454SAndrew Thompsonproduct CHPRODUCTS PROPEDALS	0x00f2	Pro Pedals
102402ac6454SAndrew Thompsonproduct CHPRODUCTS FIGHTERSTICK 0x00f3	Fighterstick
102502ac6454SAndrew Thompsonproduct CHPRODUCTS FLIGHTYOKE	0x00ff	Flight Sim Yoke
102602ac6454SAndrew Thompson
102702ac6454SAndrew Thompson/* Cisco-Linksys products */
1028922f7c5cSWeongyo Jeongproduct CISCOLINKSYS WUSB54AG	0x000c	WUSB54AG Wireless Adapter
102902ac6454SAndrew Thompsonproduct CISCOLINKSYS WUSB54G	0x000d	WUSB54G Wireless Adapter
103002ac6454SAndrew Thompsonproduct CISCOLINKSYS WUSB54GP	0x0011	WUSB54GP Wireless Adapter
103102ac6454SAndrew Thompsonproduct CISCOLINKSYS USB200MV2	0x0018	USB200M v2
103202ac6454SAndrew Thompsonproduct CISCOLINKSYS HU200TS	0x001a	HU200TS Wireless Adapter
103302ac6454SAndrew Thompsonproduct CISCOLINKSYS WUSB54GC	0x0020	WUSB54GC
103402ac6454SAndrew Thompsonproduct CISCOLINKSYS WUSB54GR	0x0023	WUSB54GR
103502ac6454SAndrew Thompsonproduct CISCOLINKSYS WUSBF54G	0x0024	WUSBF54G
103602ac6454SAndrew Thompson
103702ac6454SAndrew Thompson/* CMOTECH products */
103802ac6454SAndrew Thompsonproduct CMOTECH CNU510		0x5141	CDMA Technologies USB modem
103902ac6454SAndrew Thompsonproduct CMOTECH CNU550		0x5543	CDMA 2000 1xRTT/1xEVDO USB modem
104002ac6454SAndrew Thompsonproduct CMOTECH CGU628		0x6006	CGU-628
104102ac6454SAndrew Thompsonproduct CMOTECH CDMA_MODEM1	0x6280	CDMA Technologies USB modem
104202ac6454SAndrew Thompsonproduct CMOTECH DISK		0xf000	disk mode
104302ac6454SAndrew Thompson
104402ac6454SAndrew Thompson/* Compaq products */
104502ac6454SAndrew Thompsonproduct COMPAQ IPAQPOCKETPC	0x0003	iPAQ PocketPC
104602ac6454SAndrew Thompsonproduct COMPAQ PJB100		0x504a	Personal Jukebox PJB100
104702ac6454SAndrew Thompsonproduct COMPAQ IPAQLINUX	0x505a	iPAQ Linux
104802ac6454SAndrew Thompson
104902ac6454SAndrew Thompson/* Composite Corp products looks the same as "TANGTOP" */
105002ac6454SAndrew Thompsonproduct COMPOSITE USBPS2	0x0001	USB to PS2 Adaptor
105102ac6454SAndrew Thompson
105202ac6454SAndrew Thompson/* Conceptronic products */
105302ac6454SAndrew Thompsonproduct CONCEPTRONIC PRISM_GT	0x3762	PrismGT USB 2.0 WLAN
105402ac6454SAndrew Thompsonproduct CONCEPTRONIC C11U	0x7100	C11U
105502ac6454SAndrew Thompsonproduct CONCEPTRONIC WL210	0x7110	WL-210
105602ac6454SAndrew Thompsonproduct CONCEPTRONIC AR5523_1	0x7801	AR5523
105702ac6454SAndrew Thompsonproduct CONCEPTRONIC AR5523_1_NF	0x7802	AR5523 (no firmware)
105802ac6454SAndrew Thompsonproduct CONCEPTRONIC AR5523_2	0x7811	AR5523
105902ac6454SAndrew Thompsonproduct CONCEPTRONIC AR5523_2_NF	0x7812	AR5523 (no firmware)
106002ac6454SAndrew Thompsonproduct CONCEPTRONIC2 C54RU	0x3c02	C54RU WLAN
106102ac6454SAndrew Thompsonproduct CONCEPTRONIC2 C54RU2	0x3c22	C54RU
106202ac6454SAndrew Thompson
106302ac6454SAndrew Thompson/* Connectix products */
106402ac6454SAndrew Thompsonproduct CONNECTIX QUICKCAM	0x0001	QuickCam
106502ac6454SAndrew Thompson
106602ac6454SAndrew Thompson/* Corega products */
106702ac6454SAndrew Thompsonproduct COREGA ETHER_USB_T	0x0001	Ether USB-T
106802ac6454SAndrew Thompsonproduct COREGA FETHER_USB_TX	0x0004	FEther USB-TX
106902ac6454SAndrew Thompsonproduct COREGA WLAN_USB_USB_11	0x000c	WirelessLAN USB-11
107002ac6454SAndrew Thompsonproduct COREGA FETHER_USB_TXS	0x000d	FEther USB-TXS
107102ac6454SAndrew Thompsonproduct COREGA WLANUSB		0x0012	Wireless LAN Stick-11
107202ac6454SAndrew Thompsonproduct COREGA FETHER_USB2_TX	0x0017	FEther USB2-TX
107302ac6454SAndrew Thompsonproduct COREGA WLUSB_11_KEY	0x001a	ULUSB-11 Key
107402ac6454SAndrew Thompsonproduct COREGA CGWLUSB2GL	0x002d	CG-WLUSB2GL
107502ac6454SAndrew Thompsonproduct COREGA CGWLUSB2GPX	0x002e	CG-WLUSB2GPX
107602ac6454SAndrew Thompsonproduct COREGA WLUSB_11_STICK	0x7613	WLAN USB Stick 11
107702ac6454SAndrew Thompsonproduct COREGA FETHER_USB_TXC	0x9601	FEther USB-TXC
107802ac6454SAndrew Thompson
107902ac6454SAndrew Thompson/* Creative products */
108002ac6454SAndrew Thompsonproduct CREATIVE NOMAD_II	0x1002	Nomad II MP3 player
108102ac6454SAndrew Thompsonproduct CREATIVE NOMAD_IIMG	0x4004	Nomad II MG
108202ac6454SAndrew Thompsonproduct CREATIVE NOMAD		0x4106	Nomad
108302ac6454SAndrew Thompsonproduct CREATIVE2 VOIP_BLASTER	0x0258	Voip Blaster
108402ac6454SAndrew Thompsonproduct CREATIVE3 OPTICAL_MOUSE	0x0001	Notebook Optical Mouse
108502ac6454SAndrew Thompson
108602ac6454SAndrew Thompson/* Cambridge Silicon Radio Ltd. products */
108702ac6454SAndrew Thompsonproduct CSR BT_DONGLE		0x0001	Bluetooth USB dongle
108802ac6454SAndrew Thompsonproduct CSR CSRDFU		0xffff	USB Bluetooth Device in DFU State
108902ac6454SAndrew Thompson
109002ac6454SAndrew Thompson/* CTX products */
109102ac6454SAndrew Thompsonproduct CTX EX1300		0x9999	Ex1300 hub
109202ac6454SAndrew Thompson
109302ac6454SAndrew Thompson/* Curitel products */
109402ac6454SAndrew Thompsonproduct CURITEL HX550C		0x1101	CDMA 2000 1xRTT USB modem (HX-550C)
109502ac6454SAndrew Thompsonproduct CURITEL HX57XB		0x2101	CDMA 2000 1xRTT USB modem (HX-570/575B/PR-600)
109602ac6454SAndrew Thompsonproduct CURITEL PC5740		0x3701	Broadband Wireless modem
109702ac6454SAndrew Thompson
109802ac6454SAndrew Thompson/* CyberPower products */
109902ac6454SAndrew Thompsonproduct CYBERPOWER 1500CAVRLCD	0x0501	1500CAVRLCD
110002ac6454SAndrew Thompson
110102ac6454SAndrew Thompson/* CyberTAN Technology products */
110202ac6454SAndrew Thompsonproduct CYBERTAN TG54USB	0x1666	TG54USB
110302ac6454SAndrew Thompson
110402ac6454SAndrew Thompson/* Cypress Semiconductor products */
110502ac6454SAndrew Thompsonproduct CYPRESS MOUSE		0x0001	mouse
110602ac6454SAndrew Thompsonproduct CYPRESS THERMO		0x0002	thermometer
110702ac6454SAndrew Thompsonproduct CYPRESS WISPY1A		0x0bad	MetaGeek Wi-Spy
110802ac6454SAndrew Thompsonproduct CYPRESS KBDHUB		0x0101	Keyboard/Hub
110902ac6454SAndrew Thompsonproduct CYPRESS FMRADIO		0x1002	FM Radio
111002ac6454SAndrew Thompsonproduct CYPRESS USBRS232	0x5500	USB-RS232 Interface
111102ac6454SAndrew Thompsonproduct CYPRESS SLIM_HUB	0x6560	Slim Hub
11123a67e914SAndrew Thompsonproduct CYPRESS XX6830XX	0x6830	PATA Storage Device
111302ac6454SAndrew Thompson
111402ac6454SAndrew Thompson/* Daisy Technology products */
111502ac6454SAndrew Thompsonproduct DAISY DMC		0x6901	USB MultiMedia Reader
111602ac6454SAndrew Thompson
111702ac6454SAndrew Thompson/* Dallas Semiconductor products */
111802ac6454SAndrew Thompsonproduct DALLAS J6502		0x4201	J-6502 speakers
111902ac6454SAndrew Thompson
112002ac6454SAndrew Thompson/* Dell products */
112102ac6454SAndrew Thompsonproduct DELL PORT		0x0058	Port Replicator
112202ac6454SAndrew Thompsonproduct DELL AIO926		0x5115	Photo AIO Printer 926
112302ac6454SAndrew Thompsonproduct DELL BC02		0x8000	BC02 Bluetooth USB Adapter
112402ac6454SAndrew Thompsonproduct DELL PRISM_GT_1		0x8102	PrismGT USB 2.0 WLAN
112502ac6454SAndrew Thompsonproduct DELL TM350		0x8103	TrueMobile 350 Bluetooth USB Adapter
112602ac6454SAndrew Thompsonproduct DELL PRISM_GT_2		0x8104	PrismGT USB 2.0 WLAN
112702ac6454SAndrew Thompsonproduct DELL U740		0x8135	Dell U740 CDMA
112802ac6454SAndrew Thompson
112902ac6454SAndrew Thompson/* Delorme Paublishing products */
113002ac6454SAndrew Thompsonproduct DELORME EARTHMATE	0x0100	Earthmate GPS
113102ac6454SAndrew Thompson
113202ac6454SAndrew Thompson/* Desknote products */
113302ac6454SAndrew Thompsonproduct DESKNOTE UCR_61S2B	0x0c55	UCR-61S2B
113402ac6454SAndrew Thompson
113502ac6454SAndrew Thompson/* Diamond products */
113602ac6454SAndrew Thompsonproduct DIAMOND RIO500USB	0x0001	Rio 500 USB
113702ac6454SAndrew Thompson
113802ac6454SAndrew Thompson/* Dick Smith Electronics (really C-Net) products */
113902ac6454SAndrew Thompsonproduct DICKSMITH RT2573	0x9022	RT2573
114002ac6454SAndrew Thompsonproduct DICKSMITH CWD854F	0x9032	C-Net CWD-854 rev F
114102ac6454SAndrew Thompson
114202ac6454SAndrew Thompson/* Digi International products */
114302ac6454SAndrew Thompsonproduct DIGI ACCELEPORT2	0x0002	AccelePort USB 2
114402ac6454SAndrew Thompsonproduct DIGI ACCELEPORT4	0x0004	AccelePort USB 4
114502ac6454SAndrew Thompsonproduct DIGI ACCELEPORT8	0x0008	AccelePort USB 8
114602ac6454SAndrew Thompson
114702ac6454SAndrew Thompson/* D-Link products */
114802ac6454SAndrew Thompson/*product DLINK DSBS25		0x0100	DSB-S25 serial*/
114902ac6454SAndrew Thompsonproduct DLINK DUBE100		0x1a00	10/100 Ethernet
115002ac6454SAndrew Thompsonproduct DLINK DSB650TX4		0x200c	10/100 Ethernet
115102ac6454SAndrew Thompsonproduct DLINK DWL120E		0x3200	DWL-120 rev E
115202ac6454SAndrew Thompsonproduct DLINK DWL122		0x3700	DWL-122
115302ac6454SAndrew Thompsonproduct DLINK DWLG120		0x3701	DWL-G120
115402ac6454SAndrew Thompsonproduct DLINK DWL120F		0x3702	DWL-120 rev F
115502ac6454SAndrew Thompsonproduct DLINK DWLAG132		0x3a00	DWL-AG132
115602ac6454SAndrew Thompsonproduct DLINK DWLAG132_NF	0x3a01	DWL-AG132 (no firmware)
115702ac6454SAndrew Thompsonproduct DLINK DWLG132		0x3a02	DWL-G132
115802ac6454SAndrew Thompsonproduct DLINK DWLG132_NF	0x3a03	DWL-G132 (no firmware)
115902ac6454SAndrew Thompsonproduct DLINK DWLAG122		0x3a04	DWL-AG122
116002ac6454SAndrew Thompsonproduct DLINK DWLAG122_NF	0x3a05	DWL-AG122 (no firmware)
116102ac6454SAndrew Thompsonproduct DLINK DWLG122		0x3c00	DWL-G122 b1 Wireless Adapter
116202ac6454SAndrew Thompsonproduct DLINK DUBE100B1		0x3c05	DUB-E100 rev B1
116302ac6454SAndrew Thompsonproduct DLINK DSB650C		0x4000	10Mbps Ethernet
116402ac6454SAndrew Thompsonproduct DLINK DSB650TX1		0x4001	10/100 Ethernet
116502ac6454SAndrew Thompsonproduct DLINK DSB650TX		0x4002	10/100 Ethernet
116602ac6454SAndrew Thompsonproduct DLINK DSB650TX_PNA	0x4003	1/10/100 Ethernet
116702ac6454SAndrew Thompsonproduct DLINK DSB650TX3		0x400b	10/100 Ethernet
116802ac6454SAndrew Thompsonproduct DLINK DSB650TX2		0x4102	10/100 Ethernet
116902ac6454SAndrew Thompsonproduct DLINK DSB650		0xabc1	10/100 Ethernet
117002ac6454SAndrew Thompsonproduct DLINK2 DWLG122C1	0x3c03	DWL-G122 c1
117102ac6454SAndrew Thompsonproduct DLINK2 WUA1340		0x3c04	WUA-1340
117202ac6454SAndrew Thompsonproduct DLINK2 DWA111		0x3c06	DWA-111
117302ac6454SAndrew Thompsonproduct DLINK2 DWA110		0x3c07	DWA-110
117402ac6454SAndrew Thompson
117502ac6454SAndrew Thompson/* DMI products */
117602ac6454SAndrew Thompsonproduct DMI CFSM_RW		0xa109	CF/SM Reader/Writer
117702ac6454SAndrew Thompson
117802ac6454SAndrew Thompson/* DrayTek products */
117902ac6454SAndrew Thompsonproduct DRAYTEK VIGOR550	0x0550	Vigor550
118002ac6454SAndrew Thompson
118102ac6454SAndrew Thompson/* dresden elektronik products */
118202ac6454SAndrew Thompsonproduct DRESDENELEKTRONIK SENSORTERMINALBOARD  0x0001 SensorTerminalBoard
1183bbb39ba5SJoerg Wunschproduct DRESDENELEKTRONIK WIRELESSHANDHELDTERMINAL  0x0004 Wireless Handheld Terminal
118402ac6454SAndrew Thompson
118502ac6454SAndrew Thompson/* Dynastream Innovations */
118602ac6454SAndrew Thompsonproduct DYNASTREAM ANTDEVBOARD	0x1003	ANT dev board
118702ac6454SAndrew Thompson
118802ac6454SAndrew Thompson/* EIZO products */
118902ac6454SAndrew Thompsonproduct EIZO HUB		0x0000	hub
119002ac6454SAndrew Thompsonproduct EIZO MONITOR		0x0001	monitor
119102ac6454SAndrew Thompson
119202ac6454SAndrew Thompson/* ELCON Systemtechnik products */
119302ac6454SAndrew Thompsonproduct ELCON PLAN		0x0002	Goldpfeil P-LAN
119402ac6454SAndrew Thompson
119502ac6454SAndrew Thompson/* Elecom products */
119602ac6454SAndrew Thompsonproduct ELECOM MOUSE29UO	0x0002	mouse 29UO
119702ac6454SAndrew Thompsonproduct ELECOM LDUSBTX0		0x200c	LD-USB/TX
119802ac6454SAndrew Thompsonproduct ELECOM LDUSBTX1		0x4002	LD-USB/TX
119902ac6454SAndrew Thompsonproduct ELECOM LDUSBLTX		0x4005	LD-USBL/TX
120002ac6454SAndrew Thompsonproduct ELECOM LDUSBTX2		0x400b	LD-USB/TX
120102ac6454SAndrew Thompsonproduct ELECOM LDUSB20		0x4010	LD-USB20
120202ac6454SAndrew Thompsonproduct ELECOM UCSGT		0x5003	UC-SGT
120302ac6454SAndrew Thompsonproduct ELECOM UCSGT0		0x5004	UC-SGT
120402ac6454SAndrew Thompsonproduct ELECOM LDUSBTX3		0xabc1	LD-USB/TX
120502ac6454SAndrew Thompson
120602ac6454SAndrew Thompson/* Elsa products */
120702ac6454SAndrew Thompsonproduct ELSA MODEM1		0x2265	ELSA Modem Board
120802ac6454SAndrew Thompsonproduct ELSA USB2ETHERNET	0x3000	Microlink USB2Ethernet
120902ac6454SAndrew Thompson
121002ac6454SAndrew Thompson/* EMS products */
121102ac6454SAndrew Thompsonproduct EMS DUAL_SHOOTER	0x0003	PSX gun controller converter
121202ac6454SAndrew Thompson
121302ac6454SAndrew Thompson/* Entrega products */
121402ac6454SAndrew Thompsonproduct ENTREGA 1S		0x0001	1S serial
121502ac6454SAndrew Thompsonproduct ENTREGA 2S		0x0002	2S serial
121602ac6454SAndrew Thompsonproduct ENTREGA 1S25		0x0003	1S25 serial
121702ac6454SAndrew Thompsonproduct ENTREGA 4S		0x0004	4S serial
121802ac6454SAndrew Thompsonproduct ENTREGA E45		0x0005	E45 Ethernet
121902ac6454SAndrew Thompsonproduct ENTREGA CENTRONICS	0x0006	Parallel Port
122002ac6454SAndrew Thompsonproduct ENTREGA XX1		0x0008	Ethernet
122102ac6454SAndrew Thompsonproduct ENTREGA 1S9		0x0093	1S9 serial
122202ac6454SAndrew Thompsonproduct ENTREGA EZUSB		0x8000	EZ-USB
122302ac6454SAndrew Thompson/*product ENTREGA SERIAL	0x8001	DB25 Serial*/
122402ac6454SAndrew Thompsonproduct ENTREGA 2U4S		0x8004	2U4S serial/usb hub
122502ac6454SAndrew Thompsonproduct ENTREGA XX2		0x8005	Ethernet
122602ac6454SAndrew Thompson/*product ENTREGA SERIAL_DB9	0x8093	DB9 Serial*/
122702ac6454SAndrew Thompson
122802ac6454SAndrew Thompson/* Epson products */
122902ac6454SAndrew Thompsonproduct EPSON PRINTER1		0x0001	USB Printer
123002ac6454SAndrew Thompsonproduct EPSON PRINTER2		0x0002	ISD USB Smart Cable for Mac
123102ac6454SAndrew Thompsonproduct EPSON PRINTER3		0x0003	ISD USB Smart Cable
123202ac6454SAndrew Thompsonproduct EPSON PRINTER5		0x0005	USB Printer
123302ac6454SAndrew Thompsonproduct EPSON 636		0x0101	Perfection 636U / 636Photo scanner
123402ac6454SAndrew Thompsonproduct EPSON 610		0x0103	Perfection 610 scanner
123502ac6454SAndrew Thompsonproduct EPSON 1200		0x0104	Perfection 1200U / 1200Photo scanner
123602ac6454SAndrew Thompsonproduct EPSON 1600		0x0107	Expression 1600 scanner
123702ac6454SAndrew Thompsonproduct EPSON 1640		0x010a	Perfection 1640SU scanner
123802ac6454SAndrew Thompsonproduct EPSON 1240		0x010b	Perfection 1240U / 1240Photo scanner
123902ac6454SAndrew Thompsonproduct EPSON 640U		0x010c	Perfection 640U scanner
124002ac6454SAndrew Thompsonproduct EPSON 1250		0x010f	Perfection 1250U / 1250Photo scanner
124102ac6454SAndrew Thompsonproduct EPSON 1650		0x0110	Perfection 1650 scanner
124202ac6454SAndrew Thompsonproduct EPSON GT9700F		0x0112	GT-9700F scanner
124302ac6454SAndrew Thompsonproduct EPSON GT9300UF		0x011b	GT-9300UF scanner
124402ac6454SAndrew Thompsonproduct EPSON 3200		0x011c	Perfection 3200 scanner
124502ac6454SAndrew Thompsonproduct EPSON 1260		0x011d	Perfection 1260 scanner
124602ac6454SAndrew Thompsonproduct EPSON 1660		0x011e	Perfection 1660 scanner
124702ac6454SAndrew Thompsonproduct EPSON 1670		0x011f	Perfection 1670 scanner
124802ac6454SAndrew Thompsonproduct EPSON 1270		0x0120	Perfection 1270 scanner
124902ac6454SAndrew Thompsonproduct EPSON 2480		0x0121	Perfection 2480 scanner
125002ac6454SAndrew Thompsonproduct EPSON 3590		0x0122	Perfection 3590 scanner
125102ac6454SAndrew Thompsonproduct EPSON 4990		0x012a	Perfection 4990 Photo scanner
125202ac6454SAndrew Thompsonproduct EPSON STYLUS_875DC	0x0601	Stylus Photo 875DC Card Reader
125302ac6454SAndrew Thompsonproduct EPSON STYLUS_895	0x0602	Stylus Photo 895 Card Reader
125402ac6454SAndrew Thompsonproduct EPSON CX5400		0x0808	CX5400 scanner
125502ac6454SAndrew Thompsonproduct EPSON 3500		0x080e	CX-3500/3600/3650 MFP
125602ac6454SAndrew Thompsonproduct EPSON RX425		0x080f	Stylus Photo RX425 scanner
125702ac6454SAndrew Thompsonproduct EPSON DX3800		0x0818	CX3700/CX3800/DX38x0 MFP scanner
125802ac6454SAndrew Thompsonproduct EPSON 4800		0x0819	CX4700/CX4800/DX48x0 MFP scanner
125902ac6454SAndrew Thompsonproduct EPSON 4200		0x0820	CX4100/CX4200/DX4200 MFP scanner
126002ac6454SAndrew Thompsonproduct EPSON 5000		0x082b  CX4900/CX5000/DX50x0 MFP scanner
126102ac6454SAndrew Thompsonproduct EPSON 6000		0x082e  CX5900/CX6000/DX60x0 MFP scanner
126202ac6454SAndrew Thompsonproduct EPSON DX4000		0x082f  DX4000 MFP scanner
126302ac6454SAndrew Thompsonproduct EPSON DX7400		0x0838	CX7300/CX7400/DX7400 MFP scanner
126402ac6454SAndrew Thompsonproduct EPSON DX8400		0x0839	CX8300/CX8400/DX8400 MFP scanner
126502ac6454SAndrew Thompsonproduct EPSON SX100		0x0841	SX100/NX100 MFP scanner
126602ac6454SAndrew Thompsonproduct EPSON NX300		0x0848	NX300 MFP scanner
126702ac6454SAndrew Thompsonproduct EPSON SX200		0x0849	SX200/SX205 MFP scanner
126802ac6454SAndrew Thompsonproduct EPSON SX400		0x084a	SX400/NX400/TX400 MFP scanner
126902ac6454SAndrew Thompson
127002ac6454SAndrew Thompson/* e-TEK Labs products */
127102ac6454SAndrew Thompsonproduct ETEK 1COM		0x8007	Serial
127202ac6454SAndrew Thompson
127302ac6454SAndrew Thompson/* Extended Systems products */
127402ac6454SAndrew Thompsonproduct EXTENDED XTNDACCESS	0x0100	XTNDAccess IrDA
127502ac6454SAndrew Thompson
127602ac6454SAndrew Thompson/* FEIYA products */
127702ac6454SAndrew Thompsonproduct FEIYA 5IN1		0x1132	5-in-1 Card Reader
127802ac6454SAndrew Thompson
127902ac6454SAndrew Thompson/* Fiberline */
128002ac6454SAndrew Thompsonproduct FIBERLINE WL430U	0x6003	WL-430U
128102ac6454SAndrew Thompson
128202ac6454SAndrew Thompson/* Fossil, Inc products */
128302ac6454SAndrew Thompsonproduct FOSSIL WRISTPDA		0x0002	Wrist PDA
128402ac6454SAndrew Thompson
128502ac6454SAndrew Thompson/* Freecom products */
128602ac6454SAndrew Thompsonproduct FREECOM DVD		0xfc01	DVD drive
128702ac6454SAndrew Thompson
128802ac6454SAndrew Thompson/* Fujitsu Siemens Computers products */
128902ac6454SAndrew Thompsonproduct FSC E5400		0x1009	PrismGT USB 2.0 WLAN
129002ac6454SAndrew Thompson
129102ac6454SAndrew Thompson/* Future Technology Devices products */
129202ac6454SAndrew Thompsonproduct FTDI SERIAL_8U100AX	0x8372	8U100AX Serial
129302ac6454SAndrew Thompsonproduct FTDI SERIAL_8U232AM	0x6001	8U232AM Serial
1294450a309dSTakanori Watanabeproduct FTDI SERIAL_8U232AM4	0x6004	8U232AM Serial
129502ac6454SAndrew Thompsonproduct FTDI SERIAL_2232C	0x6010	FT2232C Dual port Serial
129602ac6454SAndrew Thompson/* Gude Analog- und Digitalsysteme products also uses FTDI's id: */
129702ac6454SAndrew Thompsonproduct FTDI TACTRIX_OPENPORT_13M 0xcc48 OpenPort 1.3 Mitsubishi
129802ac6454SAndrew Thompsonproduct FTDI TACTRIX_OPENPORT_13S 0xcc49 OpenPort 1.3 Subaru
129902ac6454SAndrew Thompsonproduct FTDI TACTRIX_OPENPORT_13U 0xcc4a OpenPort 1.3 Universal
130002ac6454SAndrew Thompsonproduct FTDI EISCOU		0xe888	Expert ISDN Control USB
130102ac6454SAndrew Thompsonproduct FTDI UOPTBR		0xe889	USB-RS232 OptoBridge
130202ac6454SAndrew Thompsonproduct FTDI EMCU2D		0xe88a	Expert mouseCLOCK USB II
130302ac6454SAndrew Thompsonproduct FTDI PCMSFU		0xe88b	Precision Clock MSF USB
130402ac6454SAndrew Thompsonproduct FTDI EMCU2H		0xe88c	Expert mouseCLOCK USB II HBG
130502ac6454SAndrew Thompsonproduct	FTDI MAXSTREAM		0xee18	Maxstream PKG-U
130602ac6454SAndrew Thompsonproduct FTDI USBSERIAL		0xfa00	Matrix Orbital USB Serial
130702ac6454SAndrew Thompsonproduct FTDI MX2_3		0xfa01	Matrix Orbital MX2 or MX3
130802ac6454SAndrew Thompsonproduct FTDI MX4_5		0xfa02	Matrix Orbital MX4 or MX5
130902ac6454SAndrew Thompsonproduct FTDI LK202		0xfa03	Matrix Orbital VK/LK202 Family
131002ac6454SAndrew Thompsonproduct FTDI LK204		0xfa04	Matrix Orbital VK/LK204 Family
131102ac6454SAndrew Thompsonproduct FTDI CFA_632		0xfc08	Crystalfontz CFA-632 USB LCD
131202ac6454SAndrew Thompsonproduct FTDI CFA_634		0xfc09	Crystalfontz CFA-634 USB LCD
131302ac6454SAndrew Thompsonproduct FTDI CFA_633		0xfc0b	Crystalfontz CFA-633 USB LCD
131402ac6454SAndrew Thompsonproduct FTDI CFA_631		0xfc0c	Crystalfontz CFA-631 USB LCD
131502ac6454SAndrew Thompsonproduct FTDI CFA_635		0xfc0d	Crystalfontz CFA-635 USB LCD
131602ac6454SAndrew Thompsonproduct FTDI SEMC_DSS20		0xfc82	SEMC DSS-20 SyncStation
131702ac6454SAndrew Thompson
131802ac6454SAndrew Thompson/* Fuji photo products */
131902ac6454SAndrew Thompsonproduct FUJIPHOTO MASS0100	0x0100	Mass Storage
132002ac6454SAndrew Thompson
132102ac6454SAndrew Thompson/* Fujitsu protducts */
132202ac6454SAndrew Thompsonproduct FUJITSU AH_F401U	0x105b	AH-F401U Air H device
132302ac6454SAndrew Thompson
132402ac6454SAndrew Thompson/* Garmin products */
132502ac6454SAndrew Thompsonproduct GARMIN IQUE_3600	0x0004	iQue 3600
132602ac6454SAndrew Thompson
132702ac6454SAndrew Thompson/* General Instruments (Motorola) products */
132802ac6454SAndrew Thompsonproduct GENERALINSTMNTS SB5100	0x5100	SURFboard SB5100 Cable modem
132902ac6454SAndrew Thompson
133002ac6454SAndrew Thompson/* Genesys Logic products */
133102ac6454SAndrew Thompsonproduct GENESYS GL620USB	0x0501	GL620USB Host-Host interface
133202ac6454SAndrew Thompsonproduct GENESYS GL650		0x0604	GL650 Hub
133302ac6454SAndrew Thompsonproduct GENESYS GL641USB	0x0700	GL641USB CompactFlash Card Reader
133402ac6454SAndrew Thompsonproduct GENESYS GL641USB2IDE_2	0x0701	GL641USB USB-IDE Bridge No 2
133502ac6454SAndrew Thompsonproduct GENESYS GL641USB2IDE	0x0702	GL641USB USB-IDE Bridge
133602ac6454SAndrew Thompsonproduct GENESYS GL641USB_2	0x0760	GL641USB 6-in-1 Card Reader
133702ac6454SAndrew Thompson
133802ac6454SAndrew Thompson/* GIGABYTE products */
133902ac6454SAndrew Thompsonproduct GIGABYTE GN54G		0x8001	GN-54G
134002ac6454SAndrew Thompsonproduct GIGABYTE GNBR402W	0x8002	GN-BR402W
134102ac6454SAndrew Thompsonproduct GIGABYTE GNWLBM101	0x8003	GN-WLBM101
134202ac6454SAndrew Thompsonproduct GIGABYTE GNWBKG		0x8007	GN-WBKG
134302ac6454SAndrew Thompsonproduct GIGABYTE GNWB01GS	0x8008	GN-WB01GS
134402ac6454SAndrew Thompsonproduct GIGABYTE GNWI05GS	0x800a	GN-WI05GS
134502ac6454SAndrew Thompson
134602ac6454SAndrew Thompson/* Gigaset products */
134702ac6454SAndrew Thompsonproduct GIGASET WLAN		0x0701	WLAN
134802ac6454SAndrew Thompsonproduct GIGASET SMCWUSBTG	0x0710	SMCWUSBT-G
134902ac6454SAndrew Thompsonproduct GIGASET SMCWUSBTG_NF	0x0711	SMCWUSBT-G (no firmware)
135002ac6454SAndrew Thompsonproduct GIGASET AR5523		0x0712	AR5523
135102ac6454SAndrew Thompsonproduct GIGASET AR5523_NF	0x0713	AR5523 (no firmware)
135202ac6454SAndrew Thompsonproduct GIGASET RT2573		0x0722	RT2573
135302ac6454SAndrew Thompson
135402ac6454SAndrew Thompson/* Global Sun Technology product */
135502ac6454SAndrew Thompsonproduct GLOBALSUN AR5523_1	0x7801	AR5523
135602ac6454SAndrew Thompsonproduct GLOBALSUN AR5523_1_NF	0x7802	AR5523 (no firmware)
135702ac6454SAndrew Thompsonproduct GLOBALSUN AR5523_2	0x7811	AR5523
135802ac6454SAndrew Thompsonproduct GLOBALSUN AR5523_2_NF	0x7812	AR5523 (no firmware)
135902ac6454SAndrew Thompson
136002ac6454SAndrew Thompson/* Globespan products */
136102ac6454SAndrew Thompsonproduct GLOBESPAN PRISM_GT_1	0x2000	PrismGT USB 2.0 WLAN
136202ac6454SAndrew Thompsonproduct GLOBESPAN PRISM_GT_2	0x2002	PrismGT USB 2.0 WLAN
136302ac6454SAndrew Thompson
136402ac6454SAndrew Thompson/* G.Mate, Inc products */
136502ac6454SAndrew Thompsonproduct GMATE YP3X00		0x1001	YP3X00 PDA
136602ac6454SAndrew Thompson
136702ac6454SAndrew Thompson/* GoHubs products */
136802ac6454SAndrew Thompsonproduct GOHUBS GOCOM232		0x1001	GoCOM232 Serial
136902ac6454SAndrew Thompson
137002ac6454SAndrew Thompson/* Good Way Technology products */
137102ac6454SAndrew Thompsonproduct GOODWAY GWUSB2E		0x6200	GWUSB2E
137202ac6454SAndrew Thompsonproduct GOODWAY RT2573		0xc019	RT2573
137302ac6454SAndrew Thompson
137402ac6454SAndrew Thompson/* Gravis products */
137502ac6454SAndrew Thompsonproduct GRAVIS GAMEPADPRO	0x4001	GamePad Pro
137602ac6454SAndrew Thompson
137702ac6454SAndrew Thompson/* GREENHOUSE products */
137802ac6454SAndrew Thompsonproduct GREENHOUSE KANA21	0x0001	CF-writer with MP3
137902ac6454SAndrew Thompson
138002ac6454SAndrew Thompson/* Griffin Technology */
138102ac6454SAndrew Thompsonproduct GRIFFIN IMATE		0x0405	iMate, ADB Adapter
138202ac6454SAndrew Thompson
138302ac6454SAndrew Thompson/* Guillemot Corporation */
138402ac6454SAndrew Thompsonproduct GUILLEMOT DALEADER	0xa300	DA Leader
138502ac6454SAndrew Thompsonproduct GUILLEMOT HWGUSB254	0xe000	HWGUSB2-54 WLAN
138602ac6454SAndrew Thompsonproduct GUILLEMOT HWGUSB254LB	0xe010	HWGUSB2-54-LB
138702ac6454SAndrew Thompsonproduct GUILLEMOT HWGUSB254V2AP	0xe020	HWGUSB2-54V2-AP
138802ac6454SAndrew Thompson
138902ac6454SAndrew Thompson/* Hagiwara products */
139002ac6454SAndrew Thompsonproduct HAGIWARA FGSM		0x0002	FlashGate SmartMedia Card Reader
139102ac6454SAndrew Thompsonproduct HAGIWARA FGCF		0x0003	FlashGate CompactFlash Card Reader
139202ac6454SAndrew Thompsonproduct HAGIWARA FG		0x0005	FlashGate
139302ac6454SAndrew Thompson
139402ac6454SAndrew Thompson/* HAL Corporation products */
139502ac6454SAndrew Thompsonproduct HAL IMR001		0x0011	Crossam2+USB IR commander
139602ac6454SAndrew Thompson
139702ac6454SAndrew Thompson/* Handspring, Inc. */
139802ac6454SAndrew Thompsonproduct HANDSPRING VISOR	0x0100	Handspring Visor
139902ac6454SAndrew Thompsonproduct HANDSPRING TREO		0x0200	Handspring Treo
140002ac6454SAndrew Thompsonproduct HANDSPRING TREO600	0x0300	Handspring Treo 600
140102ac6454SAndrew Thompson
140202ac6454SAndrew Thompson/* Hauppauge Computer Works */
140302ac6454SAndrew Thompsonproduct HAUPPAUGE WINTV_USB_FM	0x4d12	WinTV USB FM
140402ac6454SAndrew Thompson
140502ac6454SAndrew Thompson/* Hawking Technologies products */
140602ac6454SAndrew Thompsonproduct HAWKING UF100		0x400c	10/100 USB Ethernet
140702ac6454SAndrew Thompson
140802ac6454SAndrew Thompson/* Hitachi, Ltd. products */
140902ac6454SAndrew Thompsonproduct HITACHI DVDCAM_DZ_MV100A	0x0004	DVD-CAM DZ-MV100A Camcorder
141002ac6454SAndrew Thompsonproduct HITACHI DVDCAM_USB	0x001e	DVDCAM USB HS Interface
141102ac6454SAndrew Thompson
141202ac6454SAndrew Thompson/* HP products */
141302ac6454SAndrew Thompsonproduct HP 895C			0x0004	DeskJet 895C
141402ac6454SAndrew Thompsonproduct HP 4100C		0x0101	Scanjet 4100C
141502ac6454SAndrew Thompsonproduct HP S20			0x0102	Photosmart S20
141602ac6454SAndrew Thompsonproduct HP 880C			0x0104	DeskJet 880C
141702ac6454SAndrew Thompsonproduct HP 4200C		0x0105	ScanJet 4200C
141802ac6454SAndrew Thompsonproduct HP CDWRITERPLUS		0x0107	CD-Writer Plus
141902ac6454SAndrew Thompsonproduct HP KBDHUB		0x010c	Multimedia Keyboard Hub
142002ac6454SAndrew Thompsonproduct HP G55XI		0x0111	OfficeJet G55xi
142102ac6454SAndrew Thompsonproduct HP HN210W		0x011c	HN210W 802.11b WLAN
142202ac6454SAndrew Thompsonproduct HP 49GPLUS		0x0121	49g+ graphing calculator
142302ac6454SAndrew Thompsonproduct HP 6200C		0x0201	ScanJet 6200C
142402ac6454SAndrew Thompsonproduct HP S20b			0x0202	PhotoSmart S20
142502ac6454SAndrew Thompsonproduct HP 815C			0x0204	DeskJet 815C
142602ac6454SAndrew Thompsonproduct HP 3300C		0x0205	ScanJet 3300C
142702ac6454SAndrew Thompsonproduct HP CDW8200		0x0207	CD-Writer Plus 8200e
142802ac6454SAndrew Thompsonproduct HP MMKEYB		0x020c	Multimedia keyboard
142902ac6454SAndrew Thompsonproduct HP 1220C		0x0212	DeskJet 1220C
143002ac6454SAndrew Thompsonproduct HP 810C			0x0304	DeskJet 810C/812C
143102ac6454SAndrew Thompsonproduct HP 4300C		0x0305	Scanjet 4300C
143202ac6454SAndrew Thompsonproduct HP CDW4E		0x0307	CD-Writer+ CD-4e
143302ac6454SAndrew Thompsonproduct HP G85XI		0x0311	OfficeJet G85xi
143402ac6454SAndrew Thompsonproduct HP 1200			0x0317	LaserJet 1200
143502ac6454SAndrew Thompsonproduct HP 5200C		0x0401	Scanjet 5200C
143602ac6454SAndrew Thompsonproduct HP 830C			0x0404	DeskJet 830C
143702ac6454SAndrew Thompsonproduct HP 3400CSE		0x0405	ScanJet 3400cse
143802ac6454SAndrew Thompsonproduct HP 6300C		0x0601	Scanjet 6300C
143902ac6454SAndrew Thompsonproduct HP 840C			0x0604	DeskJet 840c
144002ac6454SAndrew Thompsonproduct HP 2200C		0x0605	ScanJet 2200C
144102ac6454SAndrew Thompsonproduct HP 5300C		0x0701	Scanjet 5300C
144202ac6454SAndrew Thompsonproduct HP 4400C		0x0705	Scanjet 4400C
144302ac6454SAndrew Thompsonproduct	HP 4470C		0x0805	Scanjet 4470C
144402ac6454SAndrew Thompsonproduct HP 82x0C		0x0b01	Scanjet 82x0C
144502ac6454SAndrew Thompsonproduct HP 2300D 		0x0b17	Laserjet 2300d
144602ac6454SAndrew Thompsonproduct HP 970CSE		0x1004	Deskjet 970Cse
144702ac6454SAndrew Thompsonproduct HP 5400C		0x1005	Scanjet 5400C
144802ac6454SAndrew Thompsonproduct HP 2215			0x1016	iPAQ 22xx/Jornada 548
144902ac6454SAndrew Thompsonproduct HP 568J			0x1116	Jornada 568
145002ac6454SAndrew Thompsonproduct HP 930C			0x1204	DeskJet 930c
145102ac6454SAndrew Thompsonproduct HP P2000U		0x1801	Inkjet P-2000U
145202ac6454SAndrew Thompsonproduct HP 640C			0x2004	DeskJet 640c
145302ac6454SAndrew Thompsonproduct HP 4670V		0x3005	ScanJet 4670v
145402ac6454SAndrew Thompsonproduct HP P1100		0x3102	Photosmart P1100
145502ac6454SAndrew Thompsonproduct HP OJ4215		0x3d11	OfficeJet 4215
145602ac6454SAndrew Thompsonproduct HP HN210E		0x811c	Ethernet HN210E
145702ac6454SAndrew Thompsonproduct HP2 C500		0x6002	PhotoSmart C500
145802ac6454SAndrew Thompsonproduct HP HS2300		0x1e1d  hs2300 HSDPA (aka MC8775)
145902ac6454SAndrew Thompson
146002ac6454SAndrew Thompson/* HTC products */
146102ac6454SAndrew Thompsonproduct HTC WINMOBILE		0x00ce	HTC USB Sync
146202ac6454SAndrew Thompsonproduct HTC PPC6700MODEM	0x00cf	PPC6700 Modem
146302ac6454SAndrew Thompsonproduct HTC SMARTPHONE		0x0a51	SmartPhone USB Sync
146402ac6454SAndrew Thompson
146502ac6454SAndrew Thompson/* HUAWEI products */
146602ac6454SAndrew Thompsonproduct HUAWEI MOBILE		0x1001	Huawei Mobile
146702ac6454SAndrew Thompsonproduct HUAWEI E220		0x1003	Huawei HSDPA modem
146802ac6454SAndrew Thompson
146902ac6454SAndrew Thompson/* HUAWEI 3com products */
147002ac6454SAndrew Thompsonproduct HUAWEI3COM WUB320G	0x0009	Aolynk WUB320g
147102ac6454SAndrew Thompson
147202ac6454SAndrew Thompson/* IBM Corporation */
147302ac6454SAndrew Thompsonproduct IBM USBCDROMDRIVE	0x4427	USB CD-ROM Drive
147402ac6454SAndrew Thompson
147502ac6454SAndrew Thompson/* Imagination Technologies products */
147602ac6454SAndrew Thompsonproduct IMAGINATION DBX1	0x2107	DBX1 DSP core
147702ac6454SAndrew Thompson
147802ac6454SAndrew Thompson/* Inside Out Networks products */
147902ac6454SAndrew Thompsonproduct INSIDEOUT EDGEPORT4	0x0001	EdgePort/4 serial ports
148002ac6454SAndrew Thompson
148102ac6454SAndrew Thompson/* In-System products */
148202ac6454SAndrew Thompsonproduct INSYSTEM F5U002		0x0002	Parallel printer
148302ac6454SAndrew Thompsonproduct INSYSTEM ATAPI		0x0031	ATAPI Adapter
148402ac6454SAndrew Thompsonproduct INSYSTEM ISD110		0x0200	IDE Adapter ISD110
148502ac6454SAndrew Thompsonproduct INSYSTEM ISD105		0x0202	IDE Adapter ISD105
148602ac6454SAndrew Thompsonproduct INSYSTEM USBCABLE	0x081a	USB cable
148702ac6454SAndrew Thompsonproduct INSYSTEM STORAGE_V2	0x5701	USB Storage Adapter V2
148802ac6454SAndrew Thompson
148902ac6454SAndrew Thompson/* Intel products */
149002ac6454SAndrew Thompsonproduct INTEL EASYPC_CAMERA	0x0110	Easy PC Camera
149102ac6454SAndrew Thompsonproduct INTEL TESTBOARD		0x9890	82930 test board
149202ac6454SAndrew Thompson
149302ac6454SAndrew Thompson/* Intersil products */
149402ac6454SAndrew Thompsonproduct INTERSIL PRISM_GT	0x1000	PrismGT USB 2.0 WLAN
149502ac6454SAndrew Thompsonproduct INTERSIL PRISM_2X	0x3642	Prism2.x or Atmel WLAN
149602ac6454SAndrew Thompson
149702ac6454SAndrew Thompson/* Interpid Control Systems products */
149802ac6454SAndrew Thompsonproduct INTREPIDCS VALUECAN	0x0601	ValueCAN CAN bus interface
149902ac6454SAndrew Thompsonproduct INTREPIDCS NEOVI	0x0701	NeoVI Blue vehicle bus interface
150002ac6454SAndrew Thompson
150102ac6454SAndrew Thompson/* I/O DATA products */
150202ac6454SAndrew Thompsonproduct IODATA IU_CD2		0x0204	DVD Multi-plus unit iU-CD2
150302ac6454SAndrew Thompsonproduct IODATA DVR_UEH8		0x0206	DVD Multi-plus unit DVR-UEH8
150402ac6454SAndrew Thompsonproduct IODATA USBSSMRW		0x0314	USB-SSMRW SD-card
150502ac6454SAndrew Thompsonproduct IODATA USBSDRW		0x031e	USB-SDRW SD-card
150602ac6454SAndrew Thompsonproduct IODATA USBETT		0x0901	USB ETT
150702ac6454SAndrew Thompsonproduct IODATA USBETTX		0x0904	USB ETTX
150802ac6454SAndrew Thompsonproduct IODATA USBETTXS		0x0913	USB ETTX
150902ac6454SAndrew Thompsonproduct IODATA USBWNB11A	0x0919	USB WN-B11
151002ac6454SAndrew Thompsonproduct IODATA USBWNB11		0x0922	USB Airport WN-B11
151102ac6454SAndrew Thompsonproduct IODATA ETGUS2		0x0930	ETG-US2
151202ac6454SAndrew Thompsonproduct IODATA USBRSAQ		0x0a03	Serial USB-RSAQ1
151302ac6454SAndrew Thompsonproduct IODATA2 USB2SC		0x0a09	USB2.0-SCSI Bridge USB2-SC
151402ac6454SAndrew Thompson
151502ac6454SAndrew Thompson/* Iomega products */
151602ac6454SAndrew Thompsonproduct IOMEGA ZIP100		0x0001	Zip 100
151702ac6454SAndrew Thompsonproduct IOMEGA ZIP250		0x0030	Zip 250
151802ac6454SAndrew Thompson
151902ac6454SAndrew Thompson/* Ituner networks products */
152002ac6454SAndrew Thompsonproduct ITUNERNET USBLCD2X20	0x0002	USB-LCD 2x20
152102ac6454SAndrew Thompsonproduct ITUNERNET USBLCD4X20	0xc001	USB-LCD 4x20
152202ac6454SAndrew Thompson
152302ac6454SAndrew Thompson/* Jablotron products */
152402ac6454SAndrew Thompsonproduct JABLOTRON PC60B		0x0001	PC-60B
152502ac6454SAndrew Thompson
152602ac6454SAndrew Thompson/* Jaton products */
152702ac6454SAndrew Thompsonproduct JATON EDA		0x5704	Ethernet
152802ac6454SAndrew Thompson
152902ac6454SAndrew Thompson/* JVC products */
153002ac6454SAndrew Thompsonproduct JVC GR_DX95		0x000a	GR-DX95
153102ac6454SAndrew Thompsonproduct JVC MP_PRX1		0x3008	MP-PRX1 Ethernet
153202ac6454SAndrew Thompson
153302ac6454SAndrew Thompson/* JRC products */
153402ac6454SAndrew Thompsonproduct JRC AH_J3001V_J3002V	0x0001	AirH PHONE AH-J3001V/J3002V
153502ac6454SAndrew Thompson
153602ac6454SAndrew Thompson/* Kawatsu products */
153702ac6454SAndrew Thompsonproduct KAWATSU MH4000P		0x0003	MiniHub 4000P
153802ac6454SAndrew Thompson
153902ac6454SAndrew Thompson/* Keisokugiken Corp. products */
154002ac6454SAndrew Thompsonproduct KEISOKUGIKEN USBDAQ	0x0068	HKS-0200 USBDAQ
154102ac6454SAndrew Thompson
154202ac6454SAndrew Thompson/* Kensington products */
154302ac6454SAndrew Thompsonproduct KENSINGTON ORBIT	0x1003	Orbit USB/PS2 trackball
154402ac6454SAndrew Thompsonproduct KENSINGTON TURBOBALL	0x1005	TurboBall
154502ac6454SAndrew Thompson
154602ac6454SAndrew Thompson/* Keyspan products */
154702ac6454SAndrew Thompsonproduct KEYSPAN USA28_NF	0x0101	USA-28 serial Adapter (no firmware)
154802ac6454SAndrew Thompsonproduct KEYSPAN USA28X_NF	0x0102	USA-28X serial Adapter (no firmware)
154902ac6454SAndrew Thompsonproduct KEYSPAN USA19_NF	0x0103	USA-19 serial Adapter (no firmware)
155002ac6454SAndrew Thompsonproduct KEYSPAN USA18_NF	0x0104	USA-18 serial Adapter (no firmware)
155102ac6454SAndrew Thompsonproduct KEYSPAN USA18X_NF	0x0105	USA-18X serial Adapter (no firmware)
155202ac6454SAndrew Thompsonproduct KEYSPAN USA19W_NF	0x0106	USA-19W serial Adapter (no firmware)
155302ac6454SAndrew Thompsonproduct KEYSPAN USA19		0x0107	USA-19 serial Adapter
155402ac6454SAndrew Thompsonproduct KEYSPAN USA19W		0x0108	USA-19W serial Adapter
155502ac6454SAndrew Thompsonproduct KEYSPAN USA49W_NF	0x0109	USA-49W serial Adapter (no firmware)
155602ac6454SAndrew Thompsonproduct KEYSPAN USA49W		0x010a	USA-49W serial Adapter
155702ac6454SAndrew Thompsonproduct KEYSPAN USA19QI_NF	0x010b	USA-19QI serial Adapter (no firmware)
155802ac6454SAndrew Thompsonproduct KEYSPAN USA19QI		0x010c	USA-19QI serial Adapter
155902ac6454SAndrew Thompsonproduct KEYSPAN USA19Q_NF	0x010d	USA-19Q serial Adapter (no firmware)
156002ac6454SAndrew Thompsonproduct KEYSPAN USA19Q		0x010e	USA-19Q serial Adapter
156102ac6454SAndrew Thompsonproduct KEYSPAN USA28		0x010f	USA-28 serial Adapter
156202ac6454SAndrew Thompsonproduct KEYSPAN USA28XXB	0x0110	USA-28X/XB serial Adapter
156302ac6454SAndrew Thompsonproduct KEYSPAN USA18		0x0111	USA-18 serial Adapter
156402ac6454SAndrew Thompsonproduct KEYSPAN USA18X		0x0112	USA-18X serial Adapter
156502ac6454SAndrew Thompsonproduct KEYSPAN USA28XB_NF	0x0113	USA-28XB serial Adapter (no firmware)
156602ac6454SAndrew Thompsonproduct KEYSPAN USA28XA_NF	0x0114	USA-28XB serial Adapter (no firmware)
156702ac6454SAndrew Thompsonproduct KEYSPAN USA28XA		0x0115	USA-28XA serial Adapter
156802ac6454SAndrew Thompsonproduct KEYSPAN USA18XA_NF	0x0116	USA-18XA serial Adapter (no firmware)
156902ac6454SAndrew Thompsonproduct KEYSPAN USA18XA		0x0117	USA-18XA serial Adapter
157002ac6454SAndrew Thompsonproduct KEYSPAN USA19QW_NF	0x0118	USA-19WQ serial Adapter (no firmware)
157102ac6454SAndrew Thompsonproduct KEYSPAN USA19QW		0x0119	USA-19WQ serial Adapter
157202ac6454SAndrew Thompsonproduct KEYSPAN USA19HA		0x0121	USA-19HS serial Adapter
157302ac6454SAndrew Thompsonproduct KEYSPAN UIA10		0x0201	UIA-10 remote control
157402ac6454SAndrew Thompsonproduct KEYSPAN UIA11		0x0202	UIA-11 remote control
157502ac6454SAndrew Thompson
157602ac6454SAndrew Thompson/* Kingston products */
157702ac6454SAndrew Thompsonproduct KINGSTON XX1		0x0008	Ethernet
157802ac6454SAndrew Thompsonproduct KINGSTON KNU101TX	0x000a	KNU101TX USB Ethernet
157902ac6454SAndrew Thompson
158002ac6454SAndrew Thompson/* Kawasaki products */
158102ac6454SAndrew Thompsonproduct KLSI DUH3E10BT		0x0008	USB Ethernet
158202ac6454SAndrew Thompsonproduct KLSI DUH3E10BTN		0x0009	USB Ethernet
158302ac6454SAndrew Thompson
158402ac6454SAndrew Thompson/* Kodak products */
158502ac6454SAndrew Thompsonproduct KODAK DC220		0x0100	Digital Science DC220
158602ac6454SAndrew Thompsonproduct KODAK DC260		0x0110	Digital Science DC260
158702ac6454SAndrew Thompsonproduct KODAK DC265		0x0111	Digital Science DC265
158802ac6454SAndrew Thompsonproduct KODAK DC290		0x0112	Digital Science DC290
158902ac6454SAndrew Thompsonproduct KODAK DC240		0x0120	Digital Science DC240
159002ac6454SAndrew Thompsonproduct KODAK DC280		0x0130	Digital Science DC280
159102ac6454SAndrew Thompson
159202ac6454SAndrew Thompson/* Konica Corp. Products */
159302ac6454SAndrew Thompsonproduct KONICA CAMERA		0x0720	Digital Color Camera
159402ac6454SAndrew Thompson
159502ac6454SAndrew Thompson/* KYE products */
159602ac6454SAndrew Thompsonproduct KYE NICHE		0x0001	Niche mouse
159702ac6454SAndrew Thompsonproduct KYE NETSCROLL		0x0003	Genius NetScroll mouse
159802ac6454SAndrew Thompsonproduct KYE FLIGHT2000		0x1004	Flight 2000 joystick
159902ac6454SAndrew Thompsonproduct KYE VIVIDPRO		0x2001	ColorPage Vivid-Pro scanner
160002ac6454SAndrew Thompson
160102ac6454SAndrew Thompson/* Kyocera products */
160202ac6454SAndrew Thompsonproduct KYOCERA FINECAM_S3X	0x0100	Finecam S3x
160302ac6454SAndrew Thompsonproduct KYOCERA FINECAM_S4	0x0101	Finecam S4
160402ac6454SAndrew Thompsonproduct KYOCERA FINECAM_S5	0x0103	Finecam S5
160502ac6454SAndrew Thompsonproduct KYOCERA FINECAM_L3	0x0105	Finecam L3
160602ac6454SAndrew Thompsonproduct KYOCERA AHK3001V	0x0203	AH-K3001V
160702ac6454SAndrew Thompsonproduct KYOCERA2 CDMA_MSM_K	0x17da	Qualcomm Kyocera CDMA Technologies MSM
160802ac6454SAndrew Thompson
160902ac6454SAndrew Thompson/* LaCie products */
161002ac6454SAndrew Thompsonproduct LACIE HD		0xa601	Hard Disk
161102ac6454SAndrew Thompsonproduct LACIE CDRW		0xa602	CD R/W
161202ac6454SAndrew Thompson
161302ac6454SAndrew Thompson/* Lexar products */
161402ac6454SAndrew Thompsonproduct LEXAR JUMPSHOT		0x0001	jumpSHOT CompactFlash Reader
161502ac6454SAndrew Thompsonproduct LEXAR CF_READER		0xb002	USB CF Reader
161602ac6454SAndrew Thompson
161702ac6454SAndrew Thompson/* Lexmark products */
161802ac6454SAndrew Thompsonproduct LEXMARK S2450		0x0009	Optra S 2450
161902ac6454SAndrew Thompson
162002ac6454SAndrew Thompson/* Linksys products */
162102ac6454SAndrew Thompsonproduct LINKSYS MAUSB2		0x0105	Camedia MAUSB-2
162202ac6454SAndrew Thompsonproduct LINKSYS USB10TX1	0x200c	USB10TX
162302ac6454SAndrew Thompsonproduct LINKSYS USB10T		0x2202	USB10T Ethernet
162402ac6454SAndrew Thompsonproduct LINKSYS USB100TX	0x2203	USB100TX Ethernet
162502ac6454SAndrew Thompsonproduct LINKSYS USB100H1	0x2204	USB100H1 Ethernet/HPNA
162602ac6454SAndrew Thompsonproduct LINKSYS USB10TA		0x2206	USB10TA Ethernet
162702ac6454SAndrew Thompsonproduct LINKSYS USB10TX2	0x400b	USB10TX
162802ac6454SAndrew Thompsonproduct LINKSYS2 WUSB11		0x2219	WUSB11 Wireless Adapter
162902ac6454SAndrew Thompsonproduct LINKSYS2 USB200M	0x2226	USB 2.0 10/100 Ethernet
163002ac6454SAndrew Thompsonproduct LINKSYS3 WUSB11v28	0x2233	WUSB11 v2.8 Wireless Adapter
163102ac6454SAndrew Thompsonproduct LINKSYS4 USB1000	0x0039	USB1000
163202ac6454SAndrew Thompson
163302ac6454SAndrew Thompson/* Logitech products */
163402ac6454SAndrew Thompsonproduct LOGITECH M2452		0x0203	M2452 keyboard
163502ac6454SAndrew Thompsonproduct LOGITECH M4848		0x0301	M4848 mouse
163602ac6454SAndrew Thompsonproduct LOGITECH PAGESCAN	0x040f	PageScan
163702ac6454SAndrew Thompsonproduct LOGITECH QUICKCAMWEB	0x0801	QuickCam Web
163802ac6454SAndrew Thompsonproduct LOGITECH QUICKCAMPRO	0x0810	QuickCam Pro
163902ac6454SAndrew Thompsonproduct LOGITECH QUICKCAMEXP	0x0840	QuickCam Express
164002ac6454SAndrew Thompsonproduct LOGITECH QUICKCAM	0x0850	QuickCam
1641d3db083bSAndrew Thompsonproduct LOGITECH QUICKCAMPRO3	0x0990	QuickCam Pro 9000
164202ac6454SAndrew Thompsonproduct LOGITECH N43		0xc000	N43
164302ac6454SAndrew Thompsonproduct LOGITECH N48		0xc001	N48 mouse
164402ac6454SAndrew Thompsonproduct LOGITECH MBA47		0xc002	M-BA47 mouse
164502ac6454SAndrew Thompsonproduct LOGITECH WMMOUSE	0xc004	WingMan Gaming Mouse
164602ac6454SAndrew Thompsonproduct LOGITECH BD58		0xc00c	BD58 mouse
164702ac6454SAndrew Thompsonproduct LOGITECH UN58A		0xc030	iFeel Mouse
164802ac6454SAndrew Thompsonproduct LOGITECH UN53B		0xc032	iFeel MouseMan
164902ac6454SAndrew Thompsonproduct LOGITECH WMPAD		0xc208	WingMan GamePad Extreme
165002ac6454SAndrew Thompsonproduct LOGITECH WMRPAD		0xc20a	WingMan RumblePad
165102ac6454SAndrew Thompsonproduct LOGITECH WMJOY		0xc281	WingMan Force joystick
165202ac6454SAndrew Thompsonproduct LOGITECH BB13		0xc401	USB-PS/2 Trackball
165302ac6454SAndrew Thompsonproduct LOGITECH RK53		0xc501	Cordless mouse
165402ac6454SAndrew Thompsonproduct LOGITECH RB6		0xc503	Cordless keyboard
165502ac6454SAndrew Thompsonproduct LOGITECH MX700		0xc506	Cordless optical mouse
165602ac6454SAndrew Thompsonproduct LOGITECH QUICKCAMPRO2	0xd001	QuickCam Pro
165702ac6454SAndrew Thompson
165802ac6454SAndrew Thompson/* Logitec Corp. products */
165902ac6454SAndrew Thompsonproduct LOGITEC LDR_H443SU2	0x0033	DVD Multi-plus unit LDR-H443SU2
166002ac6454SAndrew Thompsonproduct LOGITEC LDR_H443U2	0x00b3	DVD Multi-plus unit LDR-H443U2
166102ac6454SAndrew Thompson
166202ac6454SAndrew Thompson/* Lucent products */
166302ac6454SAndrew Thompsonproduct LUCENT EVALKIT		0x1001	USS-720 evaluation kit
166402ac6454SAndrew Thompson
166502ac6454SAndrew Thompson/* Luwen products */
166602ac6454SAndrew Thompsonproduct LUWEN EASYDISK		0x0005	EasyDisc
166702ac6454SAndrew Thompson
166802ac6454SAndrew Thompson/* Macally products */
166902ac6454SAndrew Thompsonproduct MACALLY MOUSE1		0x0101	mouse
167002ac6454SAndrew Thompson
167102ac6454SAndrew Thompson/* MCT Corp. */
167202ac6454SAndrew Thompsonproduct MCT HUB0100		0x0100	Hub
167302ac6454SAndrew Thompsonproduct MCT DU_H3SP_USB232	0x0200	D-Link DU-H3SP USB BAY Hub
167402ac6454SAndrew Thompsonproduct MCT USB232		0x0210	USB-232 Interface
167502ac6454SAndrew Thompsonproduct MCT SITECOM_USB232	0x0230	Sitecom USB-232 Products
167602ac6454SAndrew Thompson
167702ac6454SAndrew Thompson/* Meizu Electronics */
167802ac6454SAndrew Thompsonproduct MEIZU M6_SL		0x0140	MiniPlayer M6 (SL)
167902ac6454SAndrew Thompson
168002ac6454SAndrew Thompson/* Melco, Inc products */
168102ac6454SAndrew Thompsonproduct MELCO LUATX1		0x0001	LUA-TX Ethernet
168202ac6454SAndrew Thompsonproduct MELCO LUATX5		0x0005	LUA-TX Ethernet
168302ac6454SAndrew Thompsonproduct MELCO LUA2TX5		0x0009	LUA2-TX Ethernet
168402ac6454SAndrew Thompsonproduct MELCO LUAKTX		0x0012	LUA-KTX Ethernet
168502ac6454SAndrew Thompsonproduct MELCO DUBPXXG		0x001c	USB-IDE Bridge: DUB-PxxG
168602ac6454SAndrew Thompsonproduct MELCO LUAU2KTX		0x003d	LUA-U2-KTX Ethernet
168702ac6454SAndrew Thompsonproduct MELCO KG54YB		0x005e	WLI-U2-KG54-YB WLAN
168802ac6454SAndrew Thompsonproduct MELCO KG54		0x0066	WLI-U2-KG54 WLAN
168902ac6454SAndrew Thompsonproduct MELCO KG54AI		0x0067	WLI-U2-KG54-AI WLAN
169002ac6454SAndrew Thompsonproduct MELCO NINWIFI		0x008b	Nintendo Wi-Fi
169102ac6454SAndrew Thompsonproduct MELCO PCOPRS1		0x00b3	PC-OP-RS1 RemoteStation
169202ac6454SAndrew Thompsonproduct MELCO SG54HP		0x00d8	WLI-U2-SG54HP
169302ac6454SAndrew Thompsonproduct MELCO G54HP		0x00d9	WLI-U2-G54HP
169402ac6454SAndrew Thompsonproduct MELCO KG54L		0x00da	WLI-U2-KG54L
169502ac6454SAndrew Thompsonproduct MELCO SG54HG		0x00f4	WLI-U2-SG54HG
169602ac6454SAndrew Thompson
169702ac6454SAndrew Thompson/* Merlin products */
169802ac6454SAndrew Thompsonproduct MERLIN V620             0x1110  Merlin V620
169902ac6454SAndrew Thompson
170002ac6454SAndrew Thompson/* MetaGeek products */
170102ac6454SAndrew Thompsonproduct METAGEEK WISPY1B	0x083e	MetaGeek Wi-Spy
170202ac6454SAndrew Thompsonproduct METAGEEK WISPY24X	0x083f	MetaGeek Wi-Spy 2.4x
170302ac6454SAndrew Thompson
170402ac6454SAndrew Thompson/* Metricom products */
170502ac6454SAndrew Thompsonproduct METRICOM RICOCHET_GS	0x0001	Ricochet GS
170602ac6454SAndrew Thompson
170702ac6454SAndrew Thompson/* MGE UPS Systems */
170802ac6454SAndrew Thompsonproduct MGE UPS1		0x0001	MGE UPS SYSTEMS PROTECTIONCENTER 1
170902ac6454SAndrew Thompsonproduct MGE UPS2		0xffff	MGE UPS SYSTEMS PROTECTIONCENTER 2
171002ac6454SAndrew Thompson
171102ac6454SAndrew Thompson/* Micro Star International products */
171202ac6454SAndrew Thompsonproduct MSI BT_DONGLE		0x1967	Bluetooth USB dongle
171302ac6454SAndrew Thompsonproduct MSI UB11B		0x6823	UB11B
171402ac6454SAndrew Thompsonproduct MSI RT2570		0x6861	RT2570
171502ac6454SAndrew Thompsonproduct MSI RT2570_2		0x6865	RT2570
171602ac6454SAndrew Thompsonproduct MSI RT2570_3		0x6869	RT2570
171702ac6454SAndrew Thompsonproduct MSI RT2573_1		0x6874	RT2573
171802ac6454SAndrew Thompsonproduct MSI RT2573_2		0x6877	RT2573
171902ac6454SAndrew Thompsonproduct MSI RT2573_3		0xa861	RT2573
172002ac6454SAndrew Thompsonproduct MSI RT2573_4		0xa874	RT2573
172102ac6454SAndrew Thompson
172202ac6454SAndrew Thompson/* Microsoft products */
172302ac6454SAndrew Thompsonproduct MICROSOFT SIDEPREC	0x0008	SideWinder Precision Pro
172402ac6454SAndrew Thompsonproduct MICROSOFT INTELLIMOUSE	0x0009	IntelliMouse
172502ac6454SAndrew Thompsonproduct MICROSOFT NATURALKBD	0x000b	Natural Keyboard Elite
172602ac6454SAndrew Thompsonproduct MICROSOFT DDS80		0x0014	Digital Sound System 80
172702ac6454SAndrew Thompsonproduct MICROSOFT SIDEWINDER	0x001a	Sidewinder Precision Racing Wheel
172802ac6454SAndrew Thompsonproduct MICROSOFT INETPRO	0x001c	Internet Keyboard Pro
172902ac6454SAndrew Thompsonproduct MICROSOFT TBEXPLORER	0x0024	Trackball Explorer
173002ac6454SAndrew Thompsonproduct MICROSOFT INTELLIEYE	0x0025	IntelliEye mouse
173102ac6454SAndrew Thompsonproduct MICROSOFT INETPRO2	0x002b	Internet Keyboard Pro
173202ac6454SAndrew Thompsonproduct MICROSOFT MN510		0x006e	MN510 Wireless
173302ac6454SAndrew Thompsonproduct MICROSOFT MN110		0x007a	10/100 USB NIC
173402ac6454SAndrew Thompsonproduct MICROSOFT WLINTELLIMOUSE 0x008c	Wireless Optical IntelliMouse
173502ac6454SAndrew Thompsonproduct MICROSOFT WLNOTEBOOK	0x00b9	Wireless Optical Mouse (Model 1023)
173602ac6454SAndrew Thompsonproduct MICROSOFT COMFORT3000	0x00d1	Comfort Optical Mouse 3000 (Model 1043)
173702ac6454SAndrew Thompsonproduct MICROSOFT WLNOTEBOOK2	0x00e1	Wireless Optical Mouse 3000 (Model 1056)
173802ac6454SAndrew Thompsonproduct MICROSOFT WLNOTEBOOK3	0x00d2	Wireless Optical Mouse 3000 (Model 1049)
173902ac6454SAndrew Thompsonproduct MICROSOFT WLUSBMOUSE	0x00b9	Wireless USB Mouse
174002ac6454SAndrew Thompsonproduct MICROSOFT XBOX360	0x0292	XBOX 360 WLAN
174102ac6454SAndrew Thompson
174202ac6454SAndrew Thompson/* Microtech products */
174302ac6454SAndrew Thompsonproduct MICROTECH SCSIDB25	0x0004	USB-SCSI-DB25
174402ac6454SAndrew Thompsonproduct MICROTECH SCSIHD50	0x0005	USB-SCSI-HD50
174502ac6454SAndrew Thompsonproduct MICROTECH DPCM		0x0006	USB CameraMate
174602ac6454SAndrew Thompsonproduct MICROTECH FREECOM	0xfc01	Freecom USB-IDE
174702ac6454SAndrew Thompson
174802ac6454SAndrew Thompson/* Microtek products */
174902ac6454SAndrew Thompsonproduct MICROTEK 336CX		0x0094	Phantom 336CX - C3 scanner
175002ac6454SAndrew Thompsonproduct MICROTEK X6U		0x0099	ScanMaker X6 - X6U
175102ac6454SAndrew Thompsonproduct MICROTEK C6		0x009a	Phantom C6 scanner
175202ac6454SAndrew Thompsonproduct MICROTEK 336CX2		0x00a0	Phantom 336CX - C3 scanner
175302ac6454SAndrew Thompsonproduct MICROTEK V6USL		0x00a3	ScanMaker V6USL
175402ac6454SAndrew Thompsonproduct MICROTEK V6USL2		0x80a3	ScanMaker V6USL
175502ac6454SAndrew Thompsonproduct MICROTEK V6UL		0x80ac	ScanMaker V6UL
175602ac6454SAndrew Thompson
175702ac6454SAndrew Thompson/* Microtune, Inc. products */
175802ac6454SAndrew Thompsonproduct MICROTUNE BT_DONGLE	0x1000	Bluetooth USB dongle
175902ac6454SAndrew Thompson
176002ac6454SAndrew Thompson/* Midiman products */
176102ac6454SAndrew Thompsonproduct MIDIMAN MIDISPORT2X2	0x1001	Midisport 2x2
176202ac6454SAndrew Thompson
176302ac6454SAndrew Thompson/* MindsAtWork products */
176402ac6454SAndrew Thompsonproduct MINDSATWORK WALLET	0x0001	Digital Wallet
176502ac6454SAndrew Thompson
176602ac6454SAndrew Thompson/* Minolta Co., Ltd. */
176702ac6454SAndrew Thompsonproduct MINOLTA 2300		0x4001	Dimage 2300
176802ac6454SAndrew Thompsonproduct MINOLTA S304		0x4007	Dimage S304
176902ac6454SAndrew Thompsonproduct MINOLTA X		0x4009	Dimage X
177002ac6454SAndrew Thompsonproduct MINOLTA 5400		0x400e	Dimage 5400
177102ac6454SAndrew Thompsonproduct MINOLTA F300		0x4011	Dimage F300
177202ac6454SAndrew Thompsonproduct MINOLTA E223		0x4017	Dimage E223
177302ac6454SAndrew Thompson
177402ac6454SAndrew Thompson/* Mitsumi products */
177502ac6454SAndrew Thompsonproduct MITSUMI CDRRW		0x0000	CD-R/RW Drive
177602ac6454SAndrew Thompsonproduct MITSUMI BT_DONGLE	0x641f	Bluetooth USB dongle
177702ac6454SAndrew Thompsonproduct MITSUMI FDD		0x6901	USB FDD
177802ac6454SAndrew Thompson
1779dc4b1d16SAndrew Thompson/* Mobile Action products */
1780dc4b1d16SAndrew Thompsonproduct MOBILEACTION MA620	0x0620	MA-620 Infrared Adapter
1781dc4b1d16SAndrew Thompson
178202ac6454SAndrew Thompson/* Mobility products */
178302ac6454SAndrew Thompsonproduct MOBILITY EA		0x0204	Ethernet
178402ac6454SAndrew Thompsonproduct MOBILITY EASIDOCK	0x0304	EasiDock Ethernet
178502ac6454SAndrew Thompson
178602ac6454SAndrew Thompson/* MosChip products */
178702ac6454SAndrew Thompsonproduct MOSCHIP MCS7703		0x7703	MCS7703 Serial Port Adapter
178802ac6454SAndrew Thompsonproduct MOSCHIP MCS7830		0x7830	MCS7830 Ethernet
178902ac6454SAndrew Thompson
179002ac6454SAndrew Thompson/* Motorola products */
179102ac6454SAndrew Thompsonproduct MOTOROLA MC141555	0x1555	MC141555 hub controller
179202ac6454SAndrew Thompsonproduct MOTOROLA SB4100		0x4100	SB4100 USB Cable Modem
179302ac6454SAndrew Thompsonproduct MOTOROLA2 A41XV32X	0x2a22	A41x/V32x Mobile Phones
179402ac6454SAndrew Thompsonproduct MOTOROLA2 E398		0x4810	E398 Mobile Phone
179502ac6454SAndrew Thompsonproduct MOTOROLA2 USBLAN	0x600c	USBLAN
179602ac6454SAndrew Thompsonproduct MOTOROLA2 USBLAN2	0x6027	USBLAN
179702ac6454SAndrew Thompson
179802ac6454SAndrew Thompson/* MultiTech products */
179902ac6454SAndrew Thompsonproduct MULTITECH ATLAS		0xf101	MT5634ZBA-USB modem
180002ac6454SAndrew Thompson
180102ac6454SAndrew Thompson/* Mustek products */
180202ac6454SAndrew Thompsonproduct MUSTEK 1200CU		0x0001	1200 CU scanner
180302ac6454SAndrew Thompsonproduct MUSTEK 600CU		0x0002	600 CU scanner
180402ac6454SAndrew Thompsonproduct MUSTEK 1200USB		0x0003	1200 USB scanner
180502ac6454SAndrew Thompsonproduct MUSTEK 1200UB		0x0006	1200 UB scanner
180602ac6454SAndrew Thompsonproduct MUSTEK 1200USBPLUS	0x0007	1200 USB Plus scanner
180702ac6454SAndrew Thompsonproduct MUSTEK 1200CUPLUS	0x0008	1200 CU Plus scanner
180802ac6454SAndrew Thompsonproduct MUSTEK BEARPAW1200F	0x0010	BearPaw 1200F scanner
180902ac6454SAndrew Thompsonproduct MUSTEK BEARPAW1200TA	0x021e	BearPaw 1200TA scanner
181002ac6454SAndrew Thompsonproduct MUSTEK 600USB		0x0873	600 USB scanner
181102ac6454SAndrew Thompsonproduct MUSTEK MDC800		0xa800	MDC-800 digital camera
181202ac6454SAndrew Thompson
181302ac6454SAndrew Thompson/* M-Systems products */
181402ac6454SAndrew Thompsonproduct MSYSTEMS DISKONKEY	0x0010	DiskOnKey
181502ac6454SAndrew Thompsonproduct MSYSTEMS DISKONKEY2	0x0011	DiskOnKey
181602ac6454SAndrew Thompson
181702ac6454SAndrew Thompson/* Myson products */
181802ac6454SAndrew Thompsonproduct MYSON HEDEN		0x8818	USB-IDE
181902ac6454SAndrew Thompsonproduct MYSON STARREADER	0x9920	USB flash card adapter
182002ac6454SAndrew Thompson
182102ac6454SAndrew Thompson/* National Semiconductor */
182202ac6454SAndrew Thompsonproduct NATIONAL BEARPAW1200	0x1000	BearPaw 1200
182302ac6454SAndrew Thompsonproduct NATIONAL BEARPAW2400	0x1001	BearPaw 2400
182402ac6454SAndrew Thompson
182502ac6454SAndrew Thompson/* NEC products */
182602ac6454SAndrew Thompsonproduct NEC HUB			0x55aa	hub
182702ac6454SAndrew Thompsonproduct NEC HUB_B		0x55ab	hub
182802ac6454SAndrew Thompson
182902ac6454SAndrew Thompson/* NEODIO products */
183002ac6454SAndrew Thompsonproduct NEODIO ND3260		0x3260	8-in-1 Multi-format Flash Controller
183102ac6454SAndrew Thompsonproduct NEODIO ND5010		0x5010	Multi-format Flash Controller
183202ac6454SAndrew Thompson
183302ac6454SAndrew Thompson/* Netac products */
183402ac6454SAndrew Thompsonproduct NETAC CF_CARD		0x1060	USB-CF-Card
183502ac6454SAndrew Thompsonproduct NETAC ONLYDISK		0x0003	OnlyDisk
183602ac6454SAndrew Thompson
183702ac6454SAndrew Thompson/* NetChip Technology Products */
183802ac6454SAndrew Thompsonproduct NETCHIP TURBOCONNECT	0x1080	Turbo-Connect
183902ac6454SAndrew Thompsonproduct NETCHIP CLIK_40		0xa140	USB Clik! 40
184002ac6454SAndrew Thompsonproduct NETCHIP ETHERNETGADGET	0xa4a2	Linux Ethernet/RNDIS gadget on pxa210/25x/26x
184102ac6454SAndrew Thompson
184202ac6454SAndrew Thompson/* Netgear products */
184302ac6454SAndrew Thompsonproduct NETGEAR EA101		0x1001	Ethernet
184402ac6454SAndrew Thompsonproduct NETGEAR EA101X		0x1002	Ethernet
184502ac6454SAndrew Thompsonproduct NETGEAR FA101		0x1020	Ethernet 10/100, USB1.1
184602ac6454SAndrew Thompsonproduct NETGEAR FA120		0x1040	USB 2.0 Ethernet
184702ac6454SAndrew Thompsonproduct NETGEAR WG111V2_2	0x4240	PrismGT USB 2.0 WLAN
184802ac6454SAndrew Thompsonproduct NETGEAR WG111U		0x4300	WG111U
184902ac6454SAndrew Thompsonproduct NETGEAR WG111U_NF	0x4301	WG111U (no firmware)
185002ac6454SAndrew Thompsonproduct NETGEAR WG111V2		0x6a00	WG111V2
185102ac6454SAndrew Thompsonproduct NETGEAR2 MA101		0x4100	MA101
185202ac6454SAndrew Thompsonproduct NETGEAR2 MA101B		0x4102	MA101 Rev B
185302ac6454SAndrew Thompsonproduct NETGEAR3 WG111T		0x4250	WG111T
185402ac6454SAndrew Thompsonproduct NETGEAR3 WG111T_NF	0x4251	WG111T (no firmware)
185502ac6454SAndrew Thompsonproduct NETGEAR3 WPN111		0x5f00	WPN111
185602ac6454SAndrew Thompsonproduct NETGEAR3 WPN111_NF	0x5f01	WPN111 (no firmware)
185702ac6454SAndrew Thompson
185802ac6454SAndrew Thompson/* Nikon products */
185902ac6454SAndrew Thompsonproduct NIKON E990		0x0102	Digital Camera E990
186002ac6454SAndrew Thompsonproduct NIKON LS40		0x4000	CoolScan LS40 ED
186102ac6454SAndrew Thompsonproduct NIKON D300		0x041a  Digital Camera D300
186202ac6454SAndrew Thompson
186302ac6454SAndrew Thompson/* NovaTech Products */
186402ac6454SAndrew Thompsonproduct NOVATECH NV902		0x9020	NovaTech NV-902W
186502ac6454SAndrew Thompsonproduct NOVATECH RT2573		0x9021	RT2573
186602ac6454SAndrew Thompson
186702ac6454SAndrew Thompson/* Novatel Wireless products */
186802ac6454SAndrew Thompsonproduct NOVATEL V640		0x1100	Merlin V620
186902ac6454SAndrew Thompsonproduct NOVATEL CDMA_MODEM	0x1110	Novatel Wireless Merlin CDMA
187002ac6454SAndrew Thompsonproduct NOVATEL V620		0x1110	Merlin V620
187102ac6454SAndrew Thompsonproduct NOVATEL V740		0x1120	Merlin V740
187202ac6454SAndrew Thompsonproduct NOVATEL V720		0x1130	Merlin V720
187302ac6454SAndrew Thompsonproduct NOVATEL U740		0x1400	Merlin U740
187402ac6454SAndrew Thompsonproduct NOVATEL U740_2		0x1410	Merlin U740
187502ac6454SAndrew Thompsonproduct NOVATEL U870		0x1420	Merlin U870
187602ac6454SAndrew Thompsonproduct NOVATEL XU870		0x1430	Merlin XU870
187702ac6454SAndrew Thompsonproduct NOVATEL X950D		0x1450	Merlin X950D
187802ac6454SAndrew Thompsonproduct NOVATEL ES620		0x2100	ES620 CDMA
187902ac6454SAndrew Thompsonproduct NOVATEL U720		0x2110	Merlin U720
188002ac6454SAndrew Thompsonproduct NOVATEL U727		0x4100	Merlin U727 CDMA
188102ac6454SAndrew Thompsonproduct NOVATEL MC950D		0x4400	Novatel MC950D HSUPA
188202ac6454SAndrew Thompsonproduct NOVATEL ZEROCD		0x5010	Novatel ZeroCD
188302ac6454SAndrew Thompsonproduct NOVATEL ZEROCD2		0x5030	Novatel ZeroCD
188402ac6454SAndrew Thompsonproduct NOVATEL U760		0x6000	Novatel U760
188502ac6454SAndrew Thompsonproduct NOVATEL2 FLEXPACKGPS	0x0100	NovAtel FlexPack GPS receiver
188602ac6454SAndrew Thompson
188702ac6454SAndrew Thompson/* Merlin products */
188802ac6454SAndrew Thompsonproduct	MERLIN V620		0x1110	Merlin V620
188902ac6454SAndrew Thompson
189002ac6454SAndrew Thompson/* Olympus products */
189102ac6454SAndrew Thompsonproduct OLYMPUS C1		0x0102	C-1 Digital Camera
189202ac6454SAndrew Thompsonproduct OLYMPUS C700		0x0105	C-700 Ultra Zoom
189302ac6454SAndrew Thompson
189402ac6454SAndrew Thompson/* OmniVision Technologies, Inc. products */
189502ac6454SAndrew Thompsonproduct OMNIVISION OV511	0x0511	OV511 Camera
189602ac6454SAndrew Thompsonproduct OMNIVISION OV511PLUS	0xa511	OV511+ Camera
189702ac6454SAndrew Thompson
189802ac6454SAndrew Thompson/* OnSpec Electronic, Inc. */
189902ac6454SAndrew Thompsonproduct ONSPEC SDS_HOTFIND_D	0x0400	SDS-infrared.com Hotfind-D Infrared Camera
190002ac6454SAndrew Thompsonproduct ONSPEC MDCFE_B_CF_READER	0xa000	MDCFE-B USB CF Reader
190102ac6454SAndrew Thompsonproduct ONSPEC CFMS_RW		0xa001	SIIG/Datafab Memory Stick+CF Reader/Writer
190202ac6454SAndrew Thompsonproduct ONSPEC READER		0xa003	Datafab-based Reader
190302ac6454SAndrew Thompsonproduct ONSPEC CFSM_READER	0xa005	PNY/Datafab CF+SM Reader
190402ac6454SAndrew Thompsonproduct ONSPEC CFSM_READER2	0xa006	Simple Tech/Datafab CF+SM Reader
190502ac6454SAndrew Thompsonproduct ONSPEC MDSM_B_READER	0xa103	MDSM-B reader
190602ac6454SAndrew Thompsonproduct ONSPEC CFSM_COMBO	0xa109	USB to CF + SM Combo (LC1)
190702ac6454SAndrew Thompsonproduct ONSPEC UCF100		0xa400	FlashLink UCF-100 CompactFlash Reader
190802ac6454SAndrew Thompsonproduct ONSPEC2 IMAGEMATE_SDDR55	0xa103	ImageMate SDDR55
190902ac6454SAndrew Thompson
191002ac6454SAndrew Thompson/* Option products */
191102ac6454SAndrew Thompsonproduct OPTION VODAFONEMC3G	0x5000	Vodafone Mobile Connect 3G datacard
191202ac6454SAndrew Thompsonproduct OPTION GT3G		0x6000	GlobeTrotter 3G datacard
191302ac6454SAndrew Thompsonproduct OPTION GT3GQUAD		0x6300	GlobeTrotter 3G QUAD datacard
191402ac6454SAndrew Thompsonproduct OPTION GT3GPLUS		0x6600	GlobeTrotter 3G+ datacard
191502ac6454SAndrew Thompsonproduct OPTION GTICON322	0xd033	GlobeTrotter Icon322 storage
191602ac6454SAndrew Thompsonproduct OPTION GTMAX36		0x6701	GlobeTrotter Max 3.6 Modem
191702ac6454SAndrew Thompsonproduct OPTION GTMAXHSUPA	0x7001	GlobeTrotter HSUPA
191802ac6454SAndrew Thompson
191902ac6454SAndrew Thompson/* OQO */
192002ac6454SAndrew Thompsonproduct OQO WIFI01		0x0002	model 01 WiFi interface
192102ac6454SAndrew Thompsonproduct OQO BT01		0x0003	model 01 Bluetooth interface
192202ac6454SAndrew Thompsonproduct OQO ETHER01PLUS		0x7720	model 01+ Ethernet
192302ac6454SAndrew Thompsonproduct OQO ETHER01		0x8150	model 01 Ethernet interface
192402ac6454SAndrew Thompson
192502ac6454SAndrew Thompson/* Palm Computing, Inc. product */
192602ac6454SAndrew Thompsonproduct PALM SERIAL		0x0080	USB Serial
192702ac6454SAndrew Thompsonproduct PALM M500		0x0001	Palm m500
192802ac6454SAndrew Thompsonproduct PALM M505		0x0002	Palm m505
192902ac6454SAndrew Thompsonproduct PALM M515		0x0003	Palm m515
193002ac6454SAndrew Thompsonproduct PALM I705		0x0020	Palm i705
193102ac6454SAndrew Thompsonproduct PALM TUNGSTEN_Z		0x0031	Palm Tungsten Z
193202ac6454SAndrew Thompsonproduct PALM M125		0x0040	Palm m125
193302ac6454SAndrew Thompsonproduct PALM M130		0x0050	Palm m130
193402ac6454SAndrew Thompsonproduct PALM TUNGSTEN_T		0x0060	Palm Tungsten T
193502ac6454SAndrew Thompsonproduct PALM ZIRE31		0x0061	Palm Zire 31
193602ac6454SAndrew Thompsonproduct PALM ZIRE		0x0070	Palm Zire
193702ac6454SAndrew Thompson
193802ac6454SAndrew Thompson/* Panasonic products */
193902ac6454SAndrew Thompsonproduct PANASONIC LS120CAM	0x0901	LS-120 Camera
194002ac6454SAndrew Thompsonproduct PANASONIC KXL840AN	0x0d01	CD-R Drive KXL-840AN
194102ac6454SAndrew Thompsonproduct PANASONIC KXLRW32AN	0x0d09	CD-R Drive KXL-RW32AN
194202ac6454SAndrew Thompsonproduct PANASONIC KXLCB20AN	0x0d0a	CD-R Drive KXL-CB20AN
194302ac6454SAndrew Thompsonproduct PANASONIC KXLCB35AN	0x0d0e	DVD-ROM & CD-R/RW
194402ac6454SAndrew Thompsonproduct PANASONIC SDCAAE	0x1b00	MultiMediaCard
194502ac6454SAndrew Thompson
194602ac6454SAndrew Thompson/* Peracom products */
194702ac6454SAndrew Thompsonproduct PERACOM SERIAL1		0x0001	Serial
194802ac6454SAndrew Thompsonproduct PERACOM ENET		0x0002	Ethernet
194902ac6454SAndrew Thompsonproduct PERACOM ENET3		0x0003	At Home Ethernet
195002ac6454SAndrew Thompsonproduct PERACOM ENET2		0x0005	Ethernet
195102ac6454SAndrew Thompson
195202ac6454SAndrew Thompson/* Philips products */
195302ac6454SAndrew Thompsonproduct PHILIPS DSS350		0x0101	DSS 350 Digital Speaker System
195402ac6454SAndrew Thompsonproduct PHILIPS DSS		0x0104	DSS XXX Digital Speaker System
195502ac6454SAndrew Thompsonproduct PHILIPS HUB		0x0201	hub
195602ac6454SAndrew Thompsonproduct PHILIPS PCA646VC	0x0303	PCA646VC PC Camera
195702ac6454SAndrew Thompsonproduct PHILIPS PCVC680K	0x0308	PCVC680K Vesta Pro PC Camera
195802ac6454SAndrew Thompsonproduct PHILIPS DSS150		0x0471	DSS 150 Digital Speaker System
195902ac6454SAndrew Thompsonproduct PHILIPS SNU5600		0x1236	SNU5600
196002ac6454SAndrew Thompsonproduct PHILIPS UM10016		0x1552	ISP 1581 Hi-Speed USB MPEG2 Encoder Reference Kit
196102ac6454SAndrew Thompsonproduct PHILIPS DIVAUSB		0x1801	DIVA USB mp3 player
196202ac6454SAndrew Thompson
196302ac6454SAndrew Thompson/* Philips Semiconductor products */
196402ac6454SAndrew Thompsonproduct PHILIPSSEMI HUB1122	0x1122	hub
196502ac6454SAndrew Thompson
196602ac6454SAndrew Thompson/* P.I. Engineering products */
196702ac6454SAndrew Thompsonproduct PIENGINEERING PS2USB	0x020b	PS2 to Mac USB Adapter
196802ac6454SAndrew Thompson
196902ac6454SAndrew Thompson/* Planex Communications products */
197002ac6454SAndrew Thompsonproduct PLANEX GW_US11H		0x14ea	GW-US11H WLAN
197102ac6454SAndrew Thompsonproduct PLANEX2 GW_US11S	0x3220	GW-US11S WLAN
197202ac6454SAndrew Thompsonproduct PLANEX2 GW_US54GXS	0x5303	GW-US54GXS WLAN
197302ac6454SAndrew Thompsonproduct PLANEX2 GWUS54HP	0xab01	GW-US54HP
197402ac6454SAndrew Thompsonproduct PLANEX2 GWUS54MINI2	0xab50	GW-US54Mini2
197502ac6454SAndrew Thompsonproduct PLANEX2 GWUS54SG	0xc002	GW-US54SG
197602ac6454SAndrew Thompsonproduct PLANEX2 GWUS54GZL	0xc007	GW-US54GZL
197702ac6454SAndrew Thompsonproduct PLANEX2 GWUS54GD	0xed01	GW-US54GD
197802ac6454SAndrew Thompsonproduct PLANEX2 GWUSMM		0xed02	GW-USMM
197902ac6454SAndrew Thompsonproduct PLANEX3 GWUS54GZ	0xab10	GW-US54GZ
198002ac6454SAndrew Thompsonproduct PLANEX3 GU1000T		0xab11	GU-1000T
198102ac6454SAndrew Thompsonproduct PLANEX3 GWUS54MINI	0xab13	GW-US54Mini
198202ac6454SAndrew Thompson
198302ac6454SAndrew Thompson/* Plextor Corp. */
198402ac6454SAndrew Thompsonproduct PLEXTOR 40_12_40U	0x0011	PlexWriter 40/12/40U
198502ac6454SAndrew Thompson
198602ac6454SAndrew Thompson/* PLX products */
198702ac6454SAndrew Thompsonproduct PLX TESTBOARD		0x9060	test board
198802ac6454SAndrew Thompson
198902ac6454SAndrew Thompson/* PNY products */
199002ac6454SAndrew Thompsonproduct PNY ATTACHE2		0x0010	USB 2.0 Flash Drive
199102ac6454SAndrew Thompson
199202ac6454SAndrew Thompson/* PortGear products */
199302ac6454SAndrew Thompsonproduct PORTGEAR EA8		0x0008	Ethernet
199402ac6454SAndrew Thompsonproduct PORTGEAR EA9		0x0009	Ethernet
199502ac6454SAndrew Thompson
199602ac6454SAndrew Thompson/* Portsmith products */
199702ac6454SAndrew Thompsonproduct PORTSMITH EEA		0x3003	Express Ethernet
199802ac6454SAndrew Thompson
199902ac6454SAndrew Thompson/* Primax products */
200002ac6454SAndrew Thompsonproduct PRIMAX G2X300		0x0300	G2-200 scanner
200102ac6454SAndrew Thompsonproduct PRIMAX G2E300		0x0301	G2E-300 scanner
200202ac6454SAndrew Thompsonproduct PRIMAX G2300		0x0302	G2-300 scanner
200302ac6454SAndrew Thompsonproduct PRIMAX G2E3002		0x0303	G2E-300 scanner
200402ac6454SAndrew Thompsonproduct PRIMAX 9600		0x0340	Colorado USB 9600 scanner
200502ac6454SAndrew Thompsonproduct PRIMAX 600U		0x0341	Colorado 600u scanner
200602ac6454SAndrew Thompsonproduct PRIMAX 6200		0x0345	Visioneer 6200 scanner
200702ac6454SAndrew Thompsonproduct PRIMAX 19200		0x0360	Colorado USB 19200 scanner
200802ac6454SAndrew Thompsonproduct PRIMAX 1200U		0x0361	Colorado 1200u scanner
200902ac6454SAndrew Thompsonproduct PRIMAX G600		0x0380	G2-600 scanner
201002ac6454SAndrew Thompsonproduct PRIMAX 636I		0x0381	ReadyScan 636i
201102ac6454SAndrew Thompsonproduct PRIMAX G2600		0x0382	G2-600 scanner
201202ac6454SAndrew Thompsonproduct PRIMAX G2E600		0x0383	G2E-600 scanner
201302ac6454SAndrew Thompsonproduct PRIMAX COMFORT		0x4d01	Comfort
201402ac6454SAndrew Thompsonproduct PRIMAX MOUSEINABOX	0x4d02	Mouse-in-a-Box
201502ac6454SAndrew Thompsonproduct PRIMAX PCGAUMS1		0x4d04	Sony PCGA-UMS1
201602ac6454SAndrew Thompson
201702ac6454SAndrew Thompson/* Prolific products */
201802ac6454SAndrew Thompsonproduct PROLIFIC PL2301		0x0000	PL2301 Host-Host interface
201902ac6454SAndrew Thompsonproduct PROLIFIC PL2302		0x0001	PL2302 Host-Host interface
202002ac6454SAndrew Thompsonproduct PROLIFIC RSAQ2		0x04bb	PL2303 Serial (IODATA USB-RSAQ2)
202102ac6454SAndrew Thompsonproduct PROLIFIC PL2303		0x2303	PL2303 Serial (ATEN/IOGEAR UC232A)
202202ac6454SAndrew Thompsonproduct PROLIFIC PL2305		0x2305	Parallel printer
202302ac6454SAndrew Thompsonproduct PROLIFIC ATAPI4		0x2307	ATAPI-4 Controller
202402ac6454SAndrew Thompsonproduct PROLIFIC PL2501		0x2501	PL2501 Host-Host interface
202502ac6454SAndrew Thompsonproduct PROLIFIC PHAROS		0xaaa0	Prolific Pharos
202602ac6454SAndrew Thompsonproduct PROLIFIC RSAQ3		0xaaa2	PL2303 Serial Adapter (IODATA USB-RSAQ3)
202702ac6454SAndrew Thompsonproduct PROLIFIC2 WSIM		0x2001	Willcom WSIM
202802ac6454SAndrew Thompson
202902ac6454SAndrew Thompson/* Putercom products */
203002ac6454SAndrew Thompsonproduct PUTERCOM UPA100		0x047e	USB-1284 BRIDGE
203102ac6454SAndrew Thompson
203202ac6454SAndrew Thompson/* Qcom products */
203302ac6454SAndrew Thompsonproduct QCOM RT2573		0x6196	RT2573
203402ac6454SAndrew Thompsonproduct QCOM RT2573_2		0x6229	RT2573
20352da462e3SKevin Loproduct QCOM RT2573_3		0x6238	RT2573
203602ac6454SAndrew Thompson
203702ac6454SAndrew Thompson/* Qualcomm products */
203802ac6454SAndrew Thompsonproduct QUALCOMM CDMA_MSM	0x6000	CDMA Technologies MSM phone
203902ac6454SAndrew Thompsonproduct QUALCOMM2 RWT_FCT	0x3100	RWT FCT-CDMA 2000 1xRTT modem
204002ac6454SAndrew Thompsonproduct QUALCOMM2 CDMA_MSM	0x3196	CDMA Technologies MSM modem
204102ac6454SAndrew Thompsonproduct QUALCOMMINC CDMA_MSM	0x0001	CDMA Technologies MSM modem
204202ac6454SAndrew Thompsonproduct QUALCOMMINC ZTE_STOR	0x2000	USB ZTE Storage
204302ac6454SAndrew Thompsonproduct QUALCOMMINC AC8700	0xfffe	CDMA 1xEVDO USB modem
204402ac6454SAndrew Thompson
204502ac6454SAndrew Thompson/* Qtronix products */
204602ac6454SAndrew Thompsonproduct QTRONIX 980N		0x2011	Scorpion-980N keyboard
204702ac6454SAndrew Thompson
204802ac6454SAndrew Thompson/* Quickshot products */
204902ac6454SAndrew Thompsonproduct QUICKSHOT STRIKEPAD	0x6238	USB StrikePad
205002ac6454SAndrew Thompson
205102ac6454SAndrew Thompson/* Radio Shack */
205202ac6454SAndrew Thompsonproduct RADIOSHACK USBCABLE	0x4026	USB to Serial Cable
205302ac6454SAndrew Thompson
205402ac6454SAndrew Thompson/* Rainbow Technologies products */
205502ac6454SAndrew Thompsonproduct RAINBOW IKEY2000	0x1200	i-Key 2000
205602ac6454SAndrew Thompson
205702ac6454SAndrew Thompson/* Ralink Technology products */
205802ac6454SAndrew Thompsonproduct RALINK RT2570		0x1706	RT2500USB Wireless Adapter
205902ac6454SAndrew Thompsonproduct RALINK RT2570_2		0x2570	RT2500USB Wireless Adapter
206002ac6454SAndrew Thompsonproduct RALINK RT2573		0x2573	RT2501USB Wireless Adapter
206102ac6454SAndrew Thompsonproduct RALINK RT2671		0x2671	RT2601USB Wireless Adapter
206202ac6454SAndrew Thompsonproduct RALINK RT2570_3		0x9020	RT2500USB Wireless Adapter
206302ac6454SAndrew Thompsonproduct RALINK RT2573_2		0x9021	RT2501USB Wireless Adapter
206402ac6454SAndrew Thompson
206502ac6454SAndrew Thompson/* ReakTek products */
206602ac6454SAndrew Thompson/* Green House and CompUSA OEM this part */
206702ac6454SAndrew Thompsonproduct REALTEK USBKR100	0x8150	USBKR100 USB Ethernet
206802ac6454SAndrew Thompsonproduct REALTEK RTL8187		0x8187	RTL8187 Wireless Adapter
206902ac6454SAndrew Thompson
207002ac6454SAndrew Thompson/* Ricoh products */
207102ac6454SAndrew Thompsonproduct RICOH VGPVCC2		0x1830	VGP-VCC2 Camera
207202ac6454SAndrew Thompsonproduct RICOH VGPVCC3		0x1832	VGP-VCC3 Camera
207302ac6454SAndrew Thompsonproduct RICOH VGPVCC2_2		0x1833	VGP-VCC2 Camera
207402ac6454SAndrew Thompsonproduct RICOH VGPVCC2_3		0x1834	VGP-VCC2 Camera
207502ac6454SAndrew Thompsonproduct RICOH VGPVCC7		0x183a	VGP-VCC7 Camera
207602ac6454SAndrew Thompsonproduct RICOH VGPVCC8		0x183b	VGP-VCC8 Camera
207702ac6454SAndrew Thompson
207802ac6454SAndrew Thompson/* Roland products */
207902ac6454SAndrew Thompsonproduct ROLAND UM1		0x0009	UM-1 MIDI I/F
208002ac6454SAndrew Thompsonproduct ROLAND UM880N		0x0014	EDIROL UM-880 MIDI I/F (native)
208102ac6454SAndrew Thompsonproduct ROLAND UM880G		0x0015	EDIROL UM-880 MIDI I/F (generic)
208202ac6454SAndrew Thompson
208302ac6454SAndrew Thompson/* Rockfire products */
208402ac6454SAndrew Thompsonproduct ROCKFIRE GAMEPAD	0x2033	gamepad 203USB
208502ac6454SAndrew Thompson
208602ac6454SAndrew Thompson/* RATOC Systems products */
208702ac6454SAndrew Thompsonproduct RATOC REXUSB60		0xb000	REX-USB60
208802ac6454SAndrew Thompson
208902ac6454SAndrew Thompson/* Sagem products */
209002ac6454SAndrew Thompsonproduct SAGEM USBSERIAL		0x0027	USB-Serial Controller
209102ac6454SAndrew Thompsonproduct SAGEM XG760A		0x004a	XG-760A
209202ac6454SAndrew Thompsonproduct SAGEM XG76NA		0x0062	XG-76NA
209302ac6454SAndrew Thompson
209402ac6454SAndrew Thompson/* Samsung products */
209502ac6454SAndrew Thompsonproduct SAMSUNG ML6060		0x3008	ML-6060 laser printer
209602ac6454SAndrew Thompsonproduct SAMSUNG YP_U2		0x5050	YP-U2 MP3 Player
209702ac6454SAndrew Thompsonproduct SAMSUNG I500		0x6601	I500 Palm USB Phone
209802ac6454SAndrew Thompson
209902ac6454SAndrew Thompson/* Samsung Techwin products */
210002ac6454SAndrew Thompsonproduct SAMSUNG_TECHWIN DIGIMAX_410	0x000a	Digimax 410
210102ac6454SAndrew Thompson
210202ac6454SAndrew Thompson/* SanDisk products */
210302ac6454SAndrew Thompsonproduct SANDISK SDDR05A		0x0001	ImageMate SDDR-05a
210402ac6454SAndrew Thompsonproduct SANDISK SDDR31		0x0002	ImageMate SDDR-31
210502ac6454SAndrew Thompsonproduct SANDISK SDDR05		0x0005	ImageMate SDDR-05
210602ac6454SAndrew Thompsonproduct SANDISK SDDR12		0x0100	ImageMate SDDR-12
210702ac6454SAndrew Thompsonproduct SANDISK SDDR09		0x0200	ImageMate SDDR-09
210802ac6454SAndrew Thompsonproduct SANDISK SDDR75		0x0810	ImageMate SDDR-75
210902ac6454SAndrew Thompsonproduct SANDISK SDCZ2_256	0x7104	Cruzer Mini 256MB
211002ac6454SAndrew Thompsonproduct SANDISK SDCZ4_128	0x7112	Cruzer Micro 128MB
211102ac6454SAndrew Thompsonproduct SANDISK SDCZ4_256	0x7113	Cruzer Micro 256MB
211202ac6454SAndrew Thompson
211302ac6454SAndrew Thompson/* Sanyo Electric products */
211402ac6454SAndrew Thompsonproduct SANYO SCP4900 		0x0701	Sanyo SCP-4900 USB Phone
211502ac6454SAndrew Thompson
211602ac6454SAndrew Thompson/* ScanLogic products */
211702ac6454SAndrew Thompsonproduct SCANLOGIC SL11R		0x0002	SL11R IDE Adapter
211802ac6454SAndrew Thompsonproduct SCANLOGIC 336CX		0x0300	Phantom 336CX - C3 scanner
211902ac6454SAndrew Thompson
212002ac6454SAndrew Thompson/* Senao products */
212102ac6454SAndrew Thompsonproduct SENAO NUB8301		0x2000	NUB-8301
212202ac6454SAndrew Thompson
212302ac6454SAndrew Thompson/* ShanTou products */
212402ac6454SAndrew Thompsonproduct SHANTOU ST268		0x0268	ST268
212502ac6454SAndrew Thompsonproduct SHANTOU DM9601		0x9601	DM 9601
212602ac6454SAndrew Thompson
212702ac6454SAndrew Thompson/* Shark products */
212802ac6454SAndrew Thompsonproduct SHARK PA		0x0400	Pocket Adapter
212902ac6454SAndrew Thompson
213002ac6454SAndrew Thompson/* Sharp products */
213102ac6454SAndrew Thompsonproduct SHARP SL5500		0x8004	Zaurus SL-5500 PDA
213202ac6454SAndrew Thompsonproduct SHARP SLA300		0x8005	Zaurus SL-A300 PDA
213302ac6454SAndrew Thompsonproduct SHARP SL5600		0x8006	Zaurus SL-5600 PDA
213402ac6454SAndrew Thompsonproduct SHARP SLC700		0x8007	Zaurus SL-C700 PDA
213502ac6454SAndrew Thompsonproduct SHARP SLC750		0x9031	Zaurus SL-C750 PDA
213602ac6454SAndrew Thompsonproduct SHARP WZERO3ES		0x9123	W-ZERO3 ES Smartphone
213702ac6454SAndrew Thompson
213802ac6454SAndrew Thompson/* Shuttle Technology products */
213902ac6454SAndrew Thompsonproduct SHUTTLE EUSB		0x0001	E-USB Bridge
214002ac6454SAndrew Thompsonproduct SHUTTLE EUSCSI		0x0002	eUSCSI Bridge
214102ac6454SAndrew Thompsonproduct SHUTTLE SDDR09		0x0003	ImageMate SDDR09
214202ac6454SAndrew Thompsonproduct SHUTTLE EUSBCFSM	0x0005	eUSB SmartMedia / CompactFlash Adapter
214302ac6454SAndrew Thompsonproduct SHUTTLE ZIOMMC		0x0006	eUSB MultiMediaCard Adapter
214402ac6454SAndrew Thompsonproduct SHUTTLE HIFD		0x0007	Sony Hifd
214502ac6454SAndrew Thompsonproduct SHUTTLE EUSBATAPI	0x0009	eUSB ATA/ATAPI Adapter
214602ac6454SAndrew Thompsonproduct SHUTTLE CF		0x000a	eUSB CompactFlash Adapter
214702ac6454SAndrew Thompsonproduct SHUTTLE EUSCSI_B	0x000b	eUSCSI Bridge
214802ac6454SAndrew Thompsonproduct SHUTTLE EUSCSI_C	0x000c	eUSCSI Bridge
214902ac6454SAndrew Thompsonproduct SHUTTLE CDRW		0x0101	CD-RW Device
215002ac6454SAndrew Thompsonproduct SHUTTLE EUSBORCA	0x0325	eUSB ORCA Quad Reader
215102ac6454SAndrew Thompson
215202ac6454SAndrew Thompson/* Siemens products */
215302ac6454SAndrew Thompsonproduct SIEMENS SPEEDSTREAM	0x1001	SpeedStream
215402ac6454SAndrew Thompsonproduct SIEMENS SPEEDSTREAM22	0x1022	SpeedStream 1022
215502ac6454SAndrew Thompsonproduct SIEMENS2 WLL013		0x001b	WLL013
215602ac6454SAndrew Thompsonproduct SIEMENS2 ES75		0x0034  GSM module MC35
215702ac6454SAndrew Thompsonproduct SIEMENS2 WL54G		0x3c06	54g USB Network Adapter
215802ac6454SAndrew Thompsonproduct SIEMENS3 SX1		0x0001	SX1
215902ac6454SAndrew Thompsonproduct SIEMENS3 X65		0x0003	X65
216002ac6454SAndrew Thompsonproduct SIEMENS3 X75		0x0004	X75
216102ac6454SAndrew Thompson
216202ac6454SAndrew Thompson/* Sierra Wireless products */
216302ac6454SAndrew Thompsonproduct SIERRA AIRCARD580	0x0112	Sierra Wireless AirCard 580
216402ac6454SAndrew Thompsonproduct SIERRA AIRCARD595	0x0019	Sierra Wireless AirCard 595
216502ac6454SAndrew Thompsonproduct SIERRA AC595U		0x0120	Sierra Wireless AirCard 595U
216602ac6454SAndrew Thompsonproduct SIERRA AC597E		0x0021	Sierra Wireless AirCard 597E
216702ac6454SAndrew Thompsonproduct SIERRA C597		0x0023	Sierra Wireless Compass 597
216802ac6454SAndrew Thompsonproduct SIERRA AC875		0x6820	Sierra Wireless AirCard 875
216902ac6454SAndrew Thompsonproduct SIERRA AC880		0x6850	Sierra Wireless AirCard 880
217002ac6454SAndrew Thompsonproduct SIERRA AC881		0x6851	Sierra Wireless AirCard 881
217102ac6454SAndrew Thompsonproduct SIERRA AC880E		0x6852	Sierra Wireless AirCard 880E
217202ac6454SAndrew Thompsonproduct SIERRA AC881E		0x6853	Sierra Wireless AirCard 881E
217302ac6454SAndrew Thompsonproduct SIERRA AC880U		0x6855	Sierra Wireless AirCard 880U
217402ac6454SAndrew Thompsonproduct SIERRA AC881U		0x6856	Sierra Wireless AirCard 881U
217502ac6454SAndrew Thompsonproduct SIERRA AC885U		0x6880	Sierra Wireless AirCard 885U
217602ac6454SAndrew Thompsonproduct SIERRA EM5625		0x0017	EM5625
217702ac6454SAndrew Thompsonproduct SIERRA MC5720		0x0218	MC5720 Wireless Modem
217802ac6454SAndrew Thompsonproduct SIERRA MC5720_2		0x0018	MC5720
217902ac6454SAndrew Thompsonproduct SIERRA MC5725		0x0020	MC5725
218002ac6454SAndrew Thompsonproduct SIERRA MINI5725		0x0220	Sierra Wireless miniPCI 5275
218102ac6454SAndrew Thompsonproduct SIERRA MC8755_2		0x6802	MC8755
218202ac6454SAndrew Thompsonproduct SIERRA MC8765		0x6803	MC8765
218302ac6454SAndrew Thompsonproduct SIERRA MC8755		0x6804	MC8755
218402ac6454SAndrew Thompsonproduct SIERRA AC875U		0x6812	AC875U HSDPA USB Modem
218502ac6454SAndrew Thompsonproduct SIERRA MC8755_3		0x6813	MC8755 HSDPA
218602ac6454SAndrew Thompsonproduct SIERRA MC8775_2		0x6815	MC8775
218702ac6454SAndrew Thompsonproduct SIERRA AIRCARD875	0x6820	Aircard 875 HSDPA
218802ac6454SAndrew Thompsonproduct SIERRA MC8780		0x6832	MC8780
218902ac6454SAndrew Thompsonproduct SIERRA MC8781		0x6833	MC8781
219002ac6454SAndrew Thompsonproduct SIERRA TRUINSTALL	0x0fff	Aircard Tru Installer
219102ac6454SAndrew Thompson
219202ac6454SAndrew Thompson/* Sigmatel products */
219302ac6454SAndrew Thompsonproduct SIGMATEL I_BEAD100	0x8008	i-Bead 100 MP3 Player
219402ac6454SAndrew Thompson
219502ac6454SAndrew Thompson/* SIIG products */
219602ac6454SAndrew Thompson/* Also: Omnidirectional Control Technology products */
219702ac6454SAndrew Thompsonproduct SIIG DIGIFILMREADER	0x0004	DigiFilm-Combo Reader
219802ac6454SAndrew Thompsonproduct SIIG WINTERREADER	0x0330	WINTERREADER Reader
219902ac6454SAndrew Thompsonproduct SIIG2 USBTOETHER	0x0109	USB TO Ethernet
220002ac6454SAndrew Thompsonproduct SIIG2 US2308		0x0421	Serial
220102ac6454SAndrew Thompson
220202ac6454SAndrew Thompson/* Silicom products */
220302ac6454SAndrew Thompsonproduct SILICOM U2E		0x0001	U2E
220402ac6454SAndrew Thompsonproduct SILICOM GPE		0x0002	Psion Gold Port Ethernet
220502ac6454SAndrew Thompson
220602ac6454SAndrew Thompson/* SI Labs */
220702ac6454SAndrew Thompsonproduct SILABS	POLOLU		0x803b	Pololu Serial
2208750a2682SAndrew Thompsonproduct SILABS	SAEL		0x8053	SA-EL USB
220902ac6454SAndrew Thompsonproduct SILABS	ARGUSISP	0x8066	Argussoft ISP
221002ac6454SAndrew Thompsonproduct SILABS	CRUMB128	0x807a	Crumb128 board
221102ac6454SAndrew Thompsonproduct SILABS	DEGREE		0x80ca	Degree Controls Inc
221202ac6454SAndrew Thompsonproduct SILABS	TRAQMATE	0x80ed	Track Systems Traqmate
221302ac6454SAndrew Thompsonproduct SILABS	SUUNTO		0x80f6	Suunto Sports Instrument
221402ac6454SAndrew Thompsonproduct SILABS	BURNSIDE	0x813d	Burnside Telecon Deskmobile
221502ac6454SAndrew Thompsonproduct SILABS	HELICOM		0x815e	Helicomm IP-Link 1220-DVM
221602ac6454SAndrew Thompsonproduct SILABS	CP2102		0xea60	SILABS USB UART
221702ac6454SAndrew Thompsonproduct SILABS	LIPOWSKY_JTAG	0x81c8	Lipowsky Baby-JTAG
221802ac6454SAndrew Thompsonproduct SILABS	LIPOWSKY_LIN	0x81e2	Lipowsky Baby-LIN
221902ac6454SAndrew Thompsonproduct SILABS	LIPOWSKY_HARP	0x8218	Lipowsky HARP-1
222002ac6454SAndrew Thompsonproduct SILABS	CP2102		0xea60	SILABS USB UARTa
222102ac6454SAndrew Thompsonproduct SILABS	CP210X_2	0xea61	CP210x Serial
222202ac6454SAndrew Thompsonproduct SILABS2 DCU11CLONE	0xaa26	DCU-11 clone
222302ac6454SAndrew Thompson
222402ac6454SAndrew Thompson/* Silicon Portals Inc. */
222502ac6454SAndrew Thompsonproduct SILICONPORTALS YAPPH_NF	0x0200	YAP Phone (no firmware)
222602ac6454SAndrew Thompsonproduct SILICONPORTALS YAPPHONE	0x0201	YAP Phone
222702ac6454SAndrew Thompson
222802ac6454SAndrew Thompson/* Sirius Technologies products */
222902ac6454SAndrew Thompsonproduct SIRIUS ROADSTER		0x0001	NetComm Roadster II 56 USB
223002ac6454SAndrew Thompson
223102ac6454SAndrew Thompson/* Sitecom products */
223202ac6454SAndrew Thompsonproduct SITECOM LN029		0x182d	USB 2.0 Ethernet
223302ac6454SAndrew Thompsonproduct SITECOM SERIAL		0x2068	USB to serial cable (v2)
223402ac6454SAndrew Thompsonproduct SITECOM2 WL022		0x182d	WL-022
223502ac6454SAndrew Thompson
223602ac6454SAndrew Thompson/* Sitecom Europe products */
223702ac6454SAndrew Thompsonproduct SITECOMEU LN028		0x061c	LN-028
223802ac6454SAndrew Thompsonproduct SITECOMEU WL113		0x9071	WL-113
223902ac6454SAndrew Thompsonproduct SITECOMEU ZD1211B	0x9075	ZD1211B
224002ac6454SAndrew Thompsonproduct SITECOMEU WL172		0x90ac	WL-172
224102ac6454SAndrew Thompsonproduct SITECOMEU WL113R2	0x9712	WL-113 rev 2
224202ac6454SAndrew Thompson
224302ac6454SAndrew Thompson/* Skanhex Technology products */
224402ac6454SAndrew Thompsonproduct SKANHEX MD_7425		0x410a	MD 7425 Camera
224502ac6454SAndrew Thompsonproduct SKANHEX SX_520Z		0x5200	SX 520z Camera
224602ac6454SAndrew Thompson
224702ac6454SAndrew Thompson/* SmartBridges products */
224802ac6454SAndrew Thompsonproduct SMARTBRIDGES SMARTLINK	0x0001	SmartLink USB Ethernet
224902ac6454SAndrew Thompsonproduct SMARTBRIDGES SMARTNIC	0x0003	smartNIC 2 PnP Ethernet
225002ac6454SAndrew Thompson
225102ac6454SAndrew Thompson/* SMC products */
225202ac6454SAndrew Thompsonproduct SMC 2102USB		0x0100	10Mbps Ethernet
225302ac6454SAndrew Thompsonproduct SMC 2202USB		0x0200	10/100 Ethernet
225402ac6454SAndrew Thompsonproduct SMC 2206USB		0x0201	EZ Connect USB Ethernet
225502ac6454SAndrew Thompsonproduct SMC 2862WG		0xee13	EZ Connect Wireless Adapter
225602ac6454SAndrew Thompsonproduct SMC2 2020HUB		0x2020	USB Hub
225702ac6454SAndrew Thompsonproduct SMC3 2662WUSB		0xa002	2662W-AR Wireless
225802ac6454SAndrew Thompson
225902ac6454SAndrew Thompson/* SOHOware products */
226002ac6454SAndrew Thompsonproduct SOHOWARE NUB100		0x9100	10/100 USB Ethernet
226102ac6454SAndrew Thompsonproduct SOHOWARE NUB110		0x9110	10/100 USB Ethernet
226202ac6454SAndrew Thompson
226302ac6454SAndrew Thompson/* SOLID YEAR products */
226402ac6454SAndrew Thompsonproduct SOLIDYEAR KEYBOARD	0x2101	Solid Year USB keyboard
226502ac6454SAndrew Thompson
226602ac6454SAndrew Thompson/* SONY products */
226702ac6454SAndrew Thompsonproduct SONY DSC		0x0010	DSC cameras
226802ac6454SAndrew Thompsonproduct SONY MS_NW_MS7		0x0025	Memorystick NW-MS7
226902ac6454SAndrew Thompsonproduct SONY PORTABLE_HDD_V2	0x002b	Portable USB Harddrive V2
227002ac6454SAndrew Thompsonproduct SONY MSACUS1		0x002d	Memorystick MSAC-US1
227102ac6454SAndrew Thompsonproduct SONY HANDYCAM		0x002e	Handycam
227202ac6454SAndrew Thompsonproduct SONY MSC		0x0032	MSC memory stick slot
227302ac6454SAndrew Thompsonproduct SONY CLIE_35		0x0038	Sony Clie v3.5
227402ac6454SAndrew Thompsonproduct SONY MS_PEG_N760C	0x0058	PEG N760c Memorystick
227502ac6454SAndrew Thompsonproduct SONY CLIE_40		0x0066	Sony Clie v4.0
227602ac6454SAndrew Thompsonproduct SONY MS_MSC_U03		0x0069	Memorystick MSC-U03
227702ac6454SAndrew Thompsonproduct SONY CLIE_40_MS		0x006d	Sony Clie v4.0 Memory Stick slot
227802ac6454SAndrew Thompsonproduct SONY CLIE_S360		0x0095	Sony Clie s360
227902ac6454SAndrew Thompsonproduct SONY CLIE_41_MS		0x0099	Sony Clie v4.1 Memory Stick slot
228002ac6454SAndrew Thompsonproduct SONY CLIE_41		0x009a	Sony Clie v4.1
228102ac6454SAndrew Thompsonproduct SONY CLIE_NX60		0x00da	Sony Clie nx60
228202ac6454SAndrew Thompsonproduct SONY CLIE_TH55		0x0144	Sony Clie th55
228302ac6454SAndrew Thompsonproduct SONY CLIE_TJ37		0x0169	Sony Clie tj37
228402ac6454SAndrew Thompsonproduct SONY RF_RECEIVER	0x01db	Sony RF mouse/kbd Receiver VGP-WRC1
228502ac6454SAndrew Thompson
228602ac6454SAndrew Thompson/* Sony Ericsson products */
228702ac6454SAndrew Thompsonproduct SONYERICSSON DCU10	0x0528	USB Cable
228802ac6454SAndrew Thompson
228902ac6454SAndrew Thompson/* SOURCENEXT products */
229002ac6454SAndrew Thompsonproduct SOURCENEXT KEIKAI8	0x039f	KeikaiDenwa 8
229102ac6454SAndrew Thompsonproduct SOURCENEXT KEIKAI8_CHG	0x012e	KeikaiDenwa 8 with charger
229202ac6454SAndrew Thompson
229302ac6454SAndrew Thompson/* SparkLAN products */
229402ac6454SAndrew Thompsonproduct SPARKLAN RT2573		0x0004	 RT2573
229502ac6454SAndrew Thompson
229602ac6454SAndrew Thompson/* Sphairon Access Systems GmbH products */
229702ac6454SAndrew Thompsonproduct SPHAIRON UB801R		0x0110	UB801R
229802ac6454SAndrew Thompson
229902ac6454SAndrew Thompson/* Stelera Wireless products */
230002ac6454SAndrew Thompsonproduct STELERA ZEROCD		0x1000	Zerocd Installer
230102ac6454SAndrew Thompsonproduct STELERA C105		0x1002	Stelera/Bandrish C105 USB
230202ac6454SAndrew Thompson
23033a67e914SAndrew Thompson/* MpMan products */
23043a67e914SAndrew Thompsonproduct MPMAN MPF400_1		0x36d0	MPF400 Music Player 1Go
23053a67e914SAndrew Thompsonproduct MPMAN MPF400_2		0x25a8	MPF400 Music Player 2Go
23063a67e914SAndrew Thompson
230702ac6454SAndrew Thompson/* STMicroelectronics products */
230802ac6454SAndrew Thompsonproduct STMICRO BIOCPU		0x2016	Biometric Coprocessor
230902ac6454SAndrew Thompsonproduct STMICRO COMMUNICATOR	0x7554	USB Communicator
231002ac6454SAndrew Thompson
231102ac6454SAndrew Thompson/* STSN products */
231202ac6454SAndrew Thompsonproduct STSN STSN0001		0x0001	Internet Access Device
231302ac6454SAndrew Thompson
231402ac6454SAndrew Thompson/* SUN Corporation products */
231502ac6454SAndrew Thompsonproduct SUNTAC DS96L		0x0003	SUNTAC U-Cable type D2
231602ac6454SAndrew Thompsonproduct SUNTAC PS64P1		0x0005	SUNTAC U-Cable type P1
231702ac6454SAndrew Thompsonproduct SUNTAC VS10U		0x0009	SUNTAC Slipper U
231802ac6454SAndrew Thompsonproduct SUNTAC IS96U		0x000a	SUNTAC Ir-Trinity
231902ac6454SAndrew Thompsonproduct SUNTAC AS64LX		0x000b	SUNTAC U-Cable type A3
232002ac6454SAndrew Thompsonproduct SUNTAC AS144L4		0x0011	SUNTAC U-Cable type A4
232102ac6454SAndrew Thompson
232202ac6454SAndrew Thompson/* Sun Microsystems products */
2323102bad65SRenato Botelhoproduct SUN KEYBOARD_TYPE_6	0x0005	Type 6 USB keyboard
2324102bad65SRenato Botelhoproduct SUN KEYBOARD_TYPE_7	0x00a2	Type 7 USB keyboard
232502ac6454SAndrew Thompson/* XXX The above is a North American PC style keyboard possibly */
232602ac6454SAndrew Thompsonproduct SUN MOUSE		0x0100	Type 6 USB mouse
2327102bad65SRenato Botelhoproduct SUN KBD_HUB		0x100e	Kbd Hub
232802ac6454SAndrew Thompson
2329d3db083bSAndrew Thompson/* Super Top products */
2330d3db083bSAndrew Thompsonproduct	SUPERTOP IDE		0x6600	USB-IDE
2331d3db083bSAndrew Thompson
233202ac6454SAndrew Thompson/* Supra products */
233302ac6454SAndrew Thompsonproduct DIAMOND2 SUPRAEXPRESS56K 0x07da	Supra Express 56K modem
233402ac6454SAndrew Thompsonproduct DIAMOND2 SUPRA2890	0x0b4a	SupraMax 2890 56K Modem
233502ac6454SAndrew Thompsonproduct DIAMOND2 RIO600USB	0x5001	Rio 600 USB
233602ac6454SAndrew Thompsonproduct DIAMOND2 RIO800USB	0x5002	Rio 800 USB
233702ac6454SAndrew Thompson
233802ac6454SAndrew Thompson/* Surecom Technology products */
233902ac6454SAndrew Thompsonproduct SURECOM RT2570		0x11f3	RT2570
234002ac6454SAndrew Thompsonproduct SURECOM RT2573		0x31f3	RT2573
234102ac6454SAndrew Thompson
234202ac6454SAndrew Thompson/* Sweex products */
234302ac6454SAndrew Thompsonproduct SWEEX ZD1211		0x1809	ZD1211
234402ac6454SAndrew Thompson
234502ac6454SAndrew Thompson/* System TALKS, Inc. */
234602ac6454SAndrew Thompsonproduct SYSTEMTALKS SGCX2UL	0x1920	SGC-X2UL
234702ac6454SAndrew Thompson
234802ac6454SAndrew Thompson/* Tapwave products */
234902ac6454SAndrew Thompsonproduct TAPWAVE ZODIAC		0x0100	Zodiac
235002ac6454SAndrew Thompson
235102ac6454SAndrew Thompson/* Taugagreining products */
235202ac6454SAndrew Thompsonproduct TAUGA CAMERAMATE	0x0005	CameraMate (DPCM_USB)
235302ac6454SAndrew Thompson
235402ac6454SAndrew Thompson/* TDK products */
235502ac6454SAndrew Thompsonproduct TDK UPA9664		0x0115	USB-PDC Adapter UPA9664
235602ac6454SAndrew Thompsonproduct TDK UCA1464		0x0116	USB-cdmaOne Adapter UCA1464
235702ac6454SAndrew Thompsonproduct TDK UHA6400		0x0117	USB-PHS Adapter UHA6400
235802ac6454SAndrew Thompsonproduct TDK UPA6400		0x0118	USB-PHS Adapter UPA6400
235902ac6454SAndrew Thompsonproduct TDK BT_DONGLE		0x0309	Bluetooth USB dongle
236002ac6454SAndrew Thompson
236102ac6454SAndrew Thompson/* TEAC products */
236202ac6454SAndrew Thompsonproduct TEAC FD05PUB		0x0000	FD-05PUB floppy
236302ac6454SAndrew Thompson
236402ac6454SAndrew Thompson/* Tekram Technology products */
236502ac6454SAndrew Thompsonproduct TEKRAM QUICKWLAN	0x1630	QuickWLAN
236602ac6454SAndrew Thompsonproduct TEKRAM ZD1211_1		0x5630	ZD1211
236702ac6454SAndrew Thompsonproduct TEKRAM ZD1211_2		0x6630	ZD1211
236802ac6454SAndrew Thompson
236902ac6454SAndrew Thompson/* Telex Communications products */
237002ac6454SAndrew Thompsonproduct TELEX MIC1		0x0001	Enhanced USB Microphone
237102ac6454SAndrew Thompson
237202ac6454SAndrew Thompson/* Ten X Technology, Inc. */
237302ac6454SAndrew Thompsonproduct TENX UAUDIO0		0xf211	USB audio headset
237402ac6454SAndrew Thompson
237502ac6454SAndrew Thompson/* Texas Intel products */
237602ac6454SAndrew Thompsonproduct TI UTUSB41		0x1446	UT-USB41 hub
237702ac6454SAndrew Thompsonproduct TI TUSB2046		0x2046	TUSB2046 hub
237802ac6454SAndrew Thompson
237902ac6454SAndrew Thompson/* Thrustmaster products */
238002ac6454SAndrew Thompsonproduct THRUST FUSION_PAD	0xa0a3	Fusion Digital Gamepad
238102ac6454SAndrew Thompson
238202ac6454SAndrew Thompson/* Topre Corporation products */
238302ac6454SAndrew Thompsonproduct TOPRE HHKB		0x0100	HHKB Professional
238402ac6454SAndrew Thompson
238502ac6454SAndrew Thompson/* Toshiba Corporation products */
238602ac6454SAndrew Thompsonproduct TOSHIBA POCKETPC_E740	0x0706	PocketPC e740
238702ac6454SAndrew Thompson
238802ac6454SAndrew Thompson/* Trek Technology products */
238902ac6454SAndrew Thompsonproduct TREK THUMBDRIVE		0x1111	ThumbDrive
239002ac6454SAndrew Thompsonproduct TREK MEMKEY		0x8888	IBM USB Memory Key
239102ac6454SAndrew Thompsonproduct TREK THUMBDRIVE_8MB	0x9988	ThumbDrive_8MB
239202ac6454SAndrew Thompson
239302ac6454SAndrew Thompson/* Tripp-Lite products */
239402ac6454SAndrew Thompsonproduct TRIPPLITE U209		0x2008	Serial
239502ac6454SAndrew Thompson
239602ac6454SAndrew Thompson/* Trumpion products */
239702ac6454SAndrew Thompsonproduct TRUMPION T33520		0x1001	T33520 USB Flash Card Controller
239802ac6454SAndrew Thompsonproduct TRUMPION C3310		0x1100	Comotron C3310 MP3 player
239902ac6454SAndrew Thompsonproduct TRUMPION MP3		0x1200	MP3 player
240002ac6454SAndrew Thompson
240102ac6454SAndrew Thompson/* TwinMOS */
240202ac6454SAndrew Thompsonproduct TWINMOS G240		0xa006	G240
240302ac6454SAndrew Thompsonproduct TWINMOS MDIV		0x1325	Memory Disk IV
240402ac6454SAndrew Thompson
240502ac6454SAndrew Thompson/* Ubiquam products */
240602ac6454SAndrew Thompsonproduct UBIQUAM UALL		0x3100	CDMA 1xRTT USB Modem (U-100/105/200/300/520)
240702ac6454SAndrew Thompson
240802ac6454SAndrew Thompson/* Ultima products */
240902ac6454SAndrew Thompsonproduct ULTIMA 1200UBPLUS	0x4002	1200 UB Plus scanner
241002ac6454SAndrew Thompson
241102ac6454SAndrew Thompson/* UMAX products */
241202ac6454SAndrew Thompsonproduct UMAX ASTRA1236U		0x0002	Astra 1236U Scanner
241302ac6454SAndrew Thompsonproduct UMAX ASTRA1220U		0x0010	Astra 1220U Scanner
241402ac6454SAndrew Thompsonproduct UMAX ASTRA2000U		0x0030	Astra 2000U Scanner
241502ac6454SAndrew Thompsonproduct UMAX ASTRA2100U		0x0130	Astra 2100U Scanner
241602ac6454SAndrew Thompsonproduct UMAX ASTRA2200U		0x0230	Astra 2200U Scanner
241702ac6454SAndrew Thompsonproduct UMAX ASTRA3400		0x0060	Astra 3400 Scanner
241802ac6454SAndrew Thompson
241902ac6454SAndrew Thompson/* U-MEDIA Communications products */
242002ac6454SAndrew Thompsonproduct UMEDIA TEW444UBEU	0x3006	TEW-444UB EU
242102ac6454SAndrew Thompsonproduct UMEDIA TEW444UBEU_NF	0x3007	TEW-444UB EU (no firmware)
242202ac6454SAndrew Thompsonproduct UMEDIA TEW429UB_A	0x300a	TEW-429UB_A
242302ac6454SAndrew Thompsonproduct UMEDIA TEW429UB		0x300b	TEW-429UB
242402ac6454SAndrew Thompsonproduct UMEDIA TEW429UBC1	0x300d	TEW-429UB C1
242502ac6454SAndrew Thompsonproduct UMEDIA ALL0298V2	0x3204	ALL0298 v2
242602ac6454SAndrew Thompsonproduct UMEDIA AR5523_2		0x3205	AR5523
242702ac6454SAndrew Thompsonproduct UMEDIA AR5523_2_NF	0x3206	AR5523 (no firmware)
242802ac6454SAndrew Thompson
242902ac6454SAndrew Thompson/* Universal Access products */
243002ac6454SAndrew Thompsonproduct UNIACCESS PANACHE	0x0101	Panache Surf USB ISDN Adapter
243102ac6454SAndrew Thompson
243202ac6454SAndrew Thompson/* U.S. Robotics products */
243302ac6454SAndrew Thompsonproduct USR USR5423		0x0121	USR5423 WLAN
243402ac6454SAndrew Thompson
243502ac6454SAndrew Thompson/* VIA Technologies products */
243602ac6454SAndrew Thompsonproduct VIA USB2IDEBRIDGE	0x6204	USB 2.0 IDE Bridge
243702ac6454SAndrew Thompson
243802ac6454SAndrew Thompson/* USI products */
243902ac6454SAndrew Thompsonproduct USI MC60		0x10c5	MC60 Serial
244002ac6454SAndrew Thompson
244102ac6454SAndrew Thompson/* VidzMedia products */
244202ac6454SAndrew Thompsonproduct VIDZMEDIA MONSTERTV	0x4fb1	MonsterTV P2H
244302ac6454SAndrew Thompson
244402ac6454SAndrew Thompson/* Vision products */
244502ac6454SAndrew Thompsonproduct VISION VC6452V002	0x0002	CPiA Camera
244602ac6454SAndrew Thompson
244702ac6454SAndrew Thompson/* Visioneer products */
244802ac6454SAndrew Thompsonproduct VISIONEER 7600		0x0211	OneTouch 7600
244902ac6454SAndrew Thompsonproduct VISIONEER 5300		0x0221	OneTouch 5300
245002ac6454SAndrew Thompsonproduct VISIONEER 3000		0x0224	Scanport 3000
245102ac6454SAndrew Thompsonproduct VISIONEER 6100		0x0231	OneTouch 6100
245202ac6454SAndrew Thompsonproduct VISIONEER 6200		0x0311	OneTouch 6200
245302ac6454SAndrew Thompsonproduct VISIONEER 8100		0x0321	OneTouch 8100
245402ac6454SAndrew Thompsonproduct VISIONEER 8600		0x0331	OneTouch 8600
245502ac6454SAndrew Thompson
245602ac6454SAndrew Thompson/* Vivitar products */
245702ac6454SAndrew Thompsonproduct VIVITAR 35XX		0x0003	Vivicam 35Xx
245802ac6454SAndrew Thompson
245902ac6454SAndrew Thompson/* VTech products */
246002ac6454SAndrew Thompsonproduct VTECH RT2570		0x3012	RT2570
246102ac6454SAndrew Thompsonproduct VTECH ZD1211B		0x3014	ZD1211B
246202ac6454SAndrew Thompson
246302ac6454SAndrew Thompson/* Wacom products */
246402ac6454SAndrew Thompsonproduct WACOM CT0405U		0x0000	CT-0405-U Tablet
246502ac6454SAndrew Thompsonproduct WACOM GRAPHIRE		0x0010	Graphire
246602ac6454SAndrew Thompsonproduct WACOM GRAPHIRE3_4X5	0x0013	Graphire 3 4x5
246702ac6454SAndrew Thompsonproduct WACOM INTUOSA5		0x0021	Intuos A5
246802ac6454SAndrew Thompsonproduct WACOM GD0912U		0x0022	Intuos 9x12 Graphics Tablet
246902ac6454SAndrew Thompson/* WCH products*/
247002ac6454SAndrew Thompsonproduct WCH CH341SER		0x5523	CH341/CH340 USB-Serial Bridge
247102ac6454SAndrew Thompson/* Western Digital products */
247202ac6454SAndrew Thompsonproduct WESTERN COMBO		0x0200	Firewire USB Combo
247302ac6454SAndrew Thompsonproduct WESTERN EXTHDD		0x0400	External HDD
247402ac6454SAndrew Thompsonproduct WESTERN HUB		0x0500	USB HUB
247502ac6454SAndrew Thompsonproduct WESTERN MYBOOK		0x0901	MyBook External HDD
247602ac6454SAndrew Thompson
247702ac6454SAndrew Thompson/* Windbond Electronics */
247802ac6454SAndrew Thompsonproduct WINBOND UH104		0x5518	4-port USB Hub
247902ac6454SAndrew Thompson
248002ac6454SAndrew Thompson/* WinMaxGroup products */
248102ac6454SAndrew Thompsonproduct WINMAXGROUP FLASH64MC	0x6660	USB Flash Disk 64M-C
248202ac6454SAndrew Thompson
248302ac6454SAndrew Thompson/* Wistron NeWeb products */
248402ac6454SAndrew Thompsonproduct WISTRONNEWEB UR045G	0x0427	PrismGT USB 2.0 WLAN
248502ac6454SAndrew Thompsonproduct WISTRONNEWEB UR055G	0x0711	UR055G
248602ac6454SAndrew Thompsonproduct WISTRONNEWEB AR5523_1	0x0826	AR5523
248702ac6454SAndrew Thompsonproduct WISTRONNEWEB AR5523_1_NF	0x0827	AR5523 (no firmware)
248802ac6454SAndrew Thompsonproduct WISTRONNEWEB AR5523_2	0x082a	AR5523
248902ac6454SAndrew Thompsonproduct WISTRONNEWEB AR5523_2_NF	0x0829	AR5523 (no firmware)
249002ac6454SAndrew Thompson
249102ac6454SAndrew Thompson/* Xerox products */
249202ac6454SAndrew Thompsonproduct XEROX WCM15		0xffef	WorkCenter M15
249302ac6454SAndrew Thompson
249402ac6454SAndrew Thompson/* Xirlink products */
249502ac6454SAndrew Thompsonproduct XIRLINK PCCAM		0x8080	IBM PC Camera
249602ac6454SAndrew Thompson
249702ac6454SAndrew Thompson/* Xyratex products */
249802ac6454SAndrew Thompsonproduct XYRATEX PRISM_GT_1	0x2000	PrismGT USB 2.0 WLAN
249902ac6454SAndrew Thompsonproduct XYRATEX PRISM_GT_2	0x2002	PrismGT USB 2.0 WLAN
250002ac6454SAndrew Thompson
250102ac6454SAndrew Thompson/* Y-E Data products */
250202ac6454SAndrew Thompsonproduct YEDATA FLASHBUSTERU	0x0000	Flashbuster-U
250302ac6454SAndrew Thompson
250402ac6454SAndrew Thompson/* Yamaha products */
250502ac6454SAndrew Thompsonproduct YAMAHA UX256		0x1000	UX256 MIDI I/F
250602ac6454SAndrew Thompsonproduct YAMAHA UX96		0x1008	UX96 MIDI I/F
250702ac6454SAndrew Thompsonproduct YAMAHA RTA54I		0x4000	NetVolante RTA54i Broadband&ISDN Router
250802ac6454SAndrew Thompsonproduct YAMAHA RTA55I		0x4004	NetVolante RTA55i Broadband VoIP Router
250902ac6454SAndrew Thompsonproduct YAMAHA RTW65B		0x4001	NetVolante RTW65b Broadband Wireless Router
251002ac6454SAndrew Thompsonproduct YAMAHA RTW65I		0x4002	NetVolante RTW65i Broadband&ISDN Wireless Router
251102ac6454SAndrew Thompson
251202ac6454SAndrew Thompson/* Yano products */
251302ac6454SAndrew Thompsonproduct YANO U640MO		0x0101	U640MO-03
251402ac6454SAndrew Thompsonproduct YANO FW800HD		0x05fc	METALWEAR-HDD
251502ac6454SAndrew Thompson
251602ac6454SAndrew Thompson/* Yiso Wireless Co. products */
251702ac6454SAndrew Thompsonproduct	YISO C893		0xc893	CDMA 2000 1xEVDO PC Card
251802ac6454SAndrew Thompson
251902ac6454SAndrew Thompson/* Z-Com products */
252002ac6454SAndrew Thompsonproduct ZCOM M4Y750		0x0001	M4Y-750
252102ac6454SAndrew Thompsonproduct ZCOM XI725		0x0002	XI-725/726
252202ac6454SAndrew Thompsonproduct ZCOM XI735		0x0005	XI-735
252302ac6454SAndrew Thompsonproduct ZCOM XG703A		0x0008	PrismGT USB 2.0 WLAN
252402ac6454SAndrew Thompsonproduct ZCOM ZD1211		0x0011	ZD1211
252502ac6454SAndrew Thompsonproduct ZCOM AR5523		0x0012	AR5523
252602ac6454SAndrew Thompsonproduct ZCOM AR5523_NF		0x0013	AR5523 driver (no firmware)
2527922f7c5cSWeongyo Jeongproduct ZCOM XM142		0x0015	XM-142
252802ac6454SAndrew Thompsonproduct ZCOM ZD1211B		0x001a	ZD1211B
252902ac6454SAndrew Thompson
253002ac6454SAndrew Thompson/* Zinwell products */
253102ac6454SAndrew Thompsonproduct ZINWELL RT2570		0x0260	RT2570
253202ac6454SAndrew Thompson
253302ac6454SAndrew Thompson/* Zoom Telephonics, Inc. products */
253402ac6454SAndrew Thompsonproduct ZOOM 2986L		0x9700	2986L Fax modem
253502ac6454SAndrew Thompson
253602ac6454SAndrew Thompson/* Zoran Microelectronics products */
253702ac6454SAndrew Thompsonproduct ZORAN EX20DSC		0x4343	Digital Camera EX-20 DSC
253802ac6454SAndrew Thompson
253902ac6454SAndrew Thompson/* Zydas Technology Corporation products */
254002ac6454SAndrew Thompsonproduct ZYDAS ZD1211		0x1211	ZD1211 WLAN abg
254102ac6454SAndrew Thompsonproduct ZYDAS ZD1211B		0x1215	ZD1211B
254202ac6454SAndrew Thompson
254302ac6454SAndrew Thompson/* ZyXEL Communication Co. products */
254402ac6454SAndrew Thompsonproduct ZYXEL OMNI56K		0x1500	Omni 56K Plus
254502ac6454SAndrew Thompsonproduct ZYXEL 980N		0x2011	Scorpion-980N keyboard
254602ac6454SAndrew Thompsonproduct ZYXEL ZYAIRG220		0x3401	ZyAIR G-220
254702ac6454SAndrew Thompsonproduct ZYXEL G200V2		0x3407	G-200 v2
254802ac6454SAndrew Thompsonproduct ZYXEL AG225H		0x3409	AG-225H
254902ac6454SAndrew Thompsonproduct ZYXEL M202		0x340a	M-202
255002ac6454SAndrew Thompsonproduct ZYXEL G220V2		0x340f	G-220 v2
255102ac6454SAndrew Thompsonproduct ZYXEL G202		0x3410	G-202
2552