1 /* $OpenBSD: usb_quirks.h,v 1.13 2008/06/29 10:04:15 yuo Exp $ */ 2 /* $NetBSD: usb_quirks.h,v 1.20 2001/04/15 09:38:01 augustss Exp $ */ 3 /* $FreeBSD: src/sys/dev/usb/usb_quirks.h,v 1.9 1999/11/12 23:31:03 n_hibma Exp $ */ 4 5 /* 6 * Copyright (c) 1998 The NetBSD Foundation, Inc. 7 * All rights reserved. 8 * 9 * This code is derived from software contributed to The NetBSD Foundation 10 * by Lennart Augustsson (lennart@augustsson.net) at 11 * Carlstedt Research & Technology. 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 23 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 24 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 25 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 26 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 * POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 struct usbd_quirks { 36 u_int32_t uq_flags; /* Device problems: */ 37 /* cannot handle SET PROTOCOL. */ 38 #define UQ_NO_SET_PROTO 0x00000001 39 /* has some Unicode strings swapped. */ 40 #define UQ_SWAP_UNICODE 0x00000002 41 /* mouse has Z-axis reversed */ 42 #define UQ_MS_REVZ 0x00000004 43 /* string descriptors are broken. */ 44 #define UQ_NO_STRINGS 0x00000008 45 /* bad audio spec version number. */ 46 #define UQ_BAD_ADC 0x00000010 47 /* device is bus powered, despite claim */ 48 #define UQ_BUS_POWERED 0x00000020 49 /* device claims audio class, but isn't */ 50 #define UQ_BAD_AUDIO 0x00000040 51 /* spurious mouse button up events */ 52 #define UQ_SPUR_BUT_UP 0x00000080 53 /* audio device has broken extension unit */ 54 #define UQ_AU_NO_XU 0x00000100 55 /* hub lies about power status */ 56 #define UQ_POWER_CLAIM 0x00000200 57 /* don't adjust for fractional samples */ 58 #define UQ_AU_NO_FRAC 0x00000400 59 /* input is async despite claim of adaptive */ 60 #define UQ_AU_INP_ASYNC 0x00000800 61 /* modem device breaks on cm over data */ 62 #define UQ_ASSUME_CM_OVER_DATA 0x00001000 63 /* printer has broken bidir mode */ 64 #define UQ_BROKEN_BIDIR 0x00002000 65 /* device claims uhid, but isn't */ 66 #define UQ_BAD_HID 0x00004000 67 /* doesn't identify properly */ 68 #define UQ_MS_BAD_CLASS 0x00008000 69 /* mouse sends an unknown leading byte. */ 70 #define UQ_MS_LEADING_BYTE 0x00010000 71 /* need to attach as 1.1 device if it is 2.0 */ 72 #define UQ_EHCI_NEEDTO_DISOWN 0x00020000 73 }; 74 75 extern const struct usbd_quirks usbd_no_quirk; 76 77 const struct usbd_quirks *usbd_find_quirk(usb_device_descriptor_t *); 78