Linux Audio

Check our new training course

Loading...
v3.1
 
  1/*
  2 * USB device quirk handling logic and table
  3 *
  4 * Copyright (c) 2007 Oliver Neukum
  5 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
  6 *
  7 * This program is free software; you can redistribute it and/or modify it
  8 * under the terms of the GNU General Public License as published by the Free
  9 * Software Foundation, version 2.
 10 *
 11 *
 12 */
 13
 
 14#include <linux/usb.h>
 15#include <linux/usb/quirks.h>
 
 16#include "usb.h"
 17
 18/* List of quirky USB devices.  Please keep this list ordered by:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 19 * 	1) Vendor ID
 20 * 	2) Product ID
 21 * 	3) Class ID
 22 *
 23 * as we want specific devices to be overridden first, and only after that, any
 24 * class specific quirks.
 25 *
 26 * Right now the logic aborts if it finds a valid device in the table, we might
 27 * want to change that in the future if it turns out that a whole class of
 28 * devices is broken...
 29 */
 30static const struct usb_device_id usb_quirk_list[] = {
 31	/* CBM - Flash disk */
 32	{ USB_DEVICE(0x0204, 0x6025), .driver_info = USB_QUIRK_RESET_RESUME },
 33
 
 
 
 
 
 
 
 
 34	/* HP 5300/5370C scanner */
 35	{ USB_DEVICE(0x03f0, 0x0701), .driver_info =
 36			USB_QUIRK_STRING_FETCH_255 },
 37
 
 
 
 38	/* Creative SB Audigy 2 NX */
 39	{ USB_DEVICE(0x041e, 0x3020), .driver_info = USB_QUIRK_RESET_RESUME },
 40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 41	/* Logitech Harmony 700-series */
 42	{ USB_DEVICE(0x046d, 0xc122), .driver_info = USB_QUIRK_DELAY_INIT },
 43
 44	/* Philips PSC805 audio device */
 45	{ USB_DEVICE(0x0471, 0x0155), .driver_info = USB_QUIRK_RESET_RESUME },
 46
 
 
 
 
 
 
 47	/* Artisman Watchdog Dongle */
 48	{ USB_DEVICE(0x04b4, 0x0526), .driver_info =
 49			USB_QUIRK_CONFIG_INTF_STRINGS },
 50
 
 
 
 
 
 
 
 
 
 
 51	/* Samsung Android phone modem - ID conflict with SPH-I500 */
 52	{ USB_DEVICE(0x04e8, 0x6601), .driver_info =
 53			USB_QUIRK_CONFIG_INTF_STRINGS },
 54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 55	/* Roland SC-8820 */
 56	{ USB_DEVICE(0x0582, 0x0007), .driver_info = USB_QUIRK_RESET_RESUME },
 57
 58	/* Edirol SD-20 */
 59	{ USB_DEVICE(0x0582, 0x0027), .driver_info = USB_QUIRK_RESET_RESUME },
 60
 
 
 
 61	/* appletouch */
 62	{ USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
 63
 
 
 
 
 
 
 
 
 
 64	/* Avision AV600U */
 65	{ USB_DEVICE(0x0638, 0x0a13), .driver_info =
 66	  USB_QUIRK_STRING_FETCH_255 },
 67
 68	/* Saitek Cyborg Gold Joystick */
 69	{ USB_DEVICE(0x06a3, 0x0006), .driver_info =
 70			USB_QUIRK_CONFIG_INTF_STRINGS },
 71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 72	/* M-Systems Flash Disk Pioneers */
 73	{ USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME },
 74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 75	/* Keytouch QWERTY Panel keyboard */
 76	{ USB_DEVICE(0x0926, 0x3333), .driver_info =
 77			USB_QUIRK_CONFIG_INTF_STRINGS },
 78
 
 
 
 
 
 
 
 
 
 
 
 
 79	/* X-Rite/Gretag-Macbeth Eye-One Pro display colorimeter */
 80	{ USB_DEVICE(0x0971, 0x2000), .driver_info = USB_QUIRK_NO_SET_INTF },
 81
 
 
 
 82	/* Broadcom BCM92035DGROM BT dongle */
 83	{ USB_DEVICE(0x0a5c, 0x2021), .driver_info = USB_QUIRK_RESET_RESUME },
 84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 85	/* Action Semiconductor flash disk */
 86	{ USB_DEVICE(0x10d6, 0x2200), .driver_info =
 87			USB_QUIRK_STRING_FETCH_255 },
 88
 
 
 
 
 
 
 
 
 
 89	/* SKYMEDI USB_DRIVE */
 90	{ USB_DEVICE(0x1516, 0x8628), .driver_info = USB_QUIRK_RESET_RESUME },
 91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 92	/* BUILDWIN Photo Frame */
 93	{ USB_DEVICE(0x1908, 0x1315), .driver_info =
 94			USB_QUIRK_HONOR_BNUMINTERFACES },
 95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 96	/* INTEL VALUE SSD */
 97	{ USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME },
 98
 99	{ }  /* terminating entry must be last */
100};
101
102static const struct usb_device_id *find_id(struct usb_device *udev)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103{
104	const struct usb_device_id *id = usb_quirk_list;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
106	for (; id->idVendor || id->bDeviceClass || id->bInterfaceClass ||
107			id->driver_info; id++) {
108		if (usb_match_device(udev, id))
109			return id;
110	}
111	return NULL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112}
113
114/*
115 * Detect any quirks the device has, and do any housekeeping for it if needed.
116 */
117void usb_detect_quirks(struct usb_device *udev)
118{
119	const struct usb_device_id *id = usb_quirk_list;
 
 
 
 
 
 
 
 
 
 
120
121	id = find_id(udev);
122	if (id)
123		udev->quirks = (u32)(id->driver_info);
124	if (udev->quirks)
125		dev_dbg(&udev->dev, "USB quirks for this device: %x\n",
126				udev->quirks);
127
128	/* For the present, all devices default to USB-PERSIST enabled */
129#if 0		/* was: #ifdef CONFIG_PM */
 
 
130	/* Hubs are automatically enabled for USB-PERSIST */
131	if (udev->descriptor.bDeviceClass == USB_CLASS_HUB)
132		udev->persist_enabled = 1;
 
 
133
134#else
135	/* In the absence of PM, we can safely enable USB-PERSIST
136	 * for all devices.  It will affect things like hub resets
137	 * and EMF-related port disables.
138	 */
139	if (!(udev->quirks & USB_QUIRK_RESET_MORPHS))
140		udev->persist_enabled = 1;
141#endif	/* CONFIG_PM */
 
 
 
 
 
 
 
 
 
 
 
142}
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * USB device quirk handling logic and table
  4 *
  5 * Copyright (c) 2007 Oliver Neukum
  6 * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
 
 
 
 
 
 
  7 */
  8
  9#include <linux/moduleparam.h>
 10#include <linux/usb.h>
 11#include <linux/usb/quirks.h>
 12#include <linux/usb/hcd.h>
 13#include "usb.h"
 14
 15struct quirk_entry {
 16	u16 vid;
 17	u16 pid;
 18	u32 flags;
 19};
 20
 21static DEFINE_MUTEX(quirk_mutex);
 22
 23static struct quirk_entry *quirk_list;
 24static unsigned int quirk_count;
 25
 26static char quirks_param[128];
 27
 28static int quirks_param_set(const char *value, const struct kernel_param *kp)
 29{
 30	char *val, *p, *field;
 31	u16 vid, pid;
 32	u32 flags;
 33	size_t i;
 34	int err;
 35
 36	val = kstrdup(value, GFP_KERNEL);
 37	if (!val)
 38		return -ENOMEM;
 39
 40	err = param_set_copystring(val, kp);
 41	if (err) {
 42		kfree(val);
 43		return err;
 44	}
 45
 46	mutex_lock(&quirk_mutex);
 47
 48	if (!*val) {
 49		quirk_count = 0;
 50		kfree(quirk_list);
 51		quirk_list = NULL;
 52		goto unlock;
 53	}
 54
 55	for (quirk_count = 1, i = 0; val[i]; i++)
 56		if (val[i] == ',')
 57			quirk_count++;
 58
 59	if (quirk_list) {
 60		kfree(quirk_list);
 61		quirk_list = NULL;
 62	}
 63
 64	quirk_list = kcalloc(quirk_count, sizeof(struct quirk_entry),
 65			     GFP_KERNEL);
 66	if (!quirk_list) {
 67		quirk_count = 0;
 68		mutex_unlock(&quirk_mutex);
 69		kfree(val);
 70		return -ENOMEM;
 71	}
 72
 73	for (i = 0, p = val; p && *p;) {
 74		/* Each entry consists of VID:PID:flags */
 75		field = strsep(&p, ":");
 76		if (!field)
 77			break;
 78
 79		if (kstrtou16(field, 16, &vid))
 80			break;
 81
 82		field = strsep(&p, ":");
 83		if (!field)
 84			break;
 85
 86		if (kstrtou16(field, 16, &pid))
 87			break;
 88
 89		field = strsep(&p, ",");
 90		if (!field || !*field)
 91			break;
 92
 93		/* Collect the flags */
 94		for (flags = 0; *field; field++) {
 95			switch (*field) {
 96			case 'a':
 97				flags |= USB_QUIRK_STRING_FETCH_255;
 98				break;
 99			case 'b':
100				flags |= USB_QUIRK_RESET_RESUME;
101				break;
102			case 'c':
103				flags |= USB_QUIRK_NO_SET_INTF;
104				break;
105			case 'd':
106				flags |= USB_QUIRK_CONFIG_INTF_STRINGS;
107				break;
108			case 'e':
109				flags |= USB_QUIRK_RESET;
110				break;
111			case 'f':
112				flags |= USB_QUIRK_HONOR_BNUMINTERFACES;
113				break;
114			case 'g':
115				flags |= USB_QUIRK_DELAY_INIT;
116				break;
117			case 'h':
118				flags |= USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL;
119				break;
120			case 'i':
121				flags |= USB_QUIRK_DEVICE_QUALIFIER;
122				break;
123			case 'j':
124				flags |= USB_QUIRK_IGNORE_REMOTE_WAKEUP;
125				break;
126			case 'k':
127				flags |= USB_QUIRK_NO_LPM;
128				break;
129			case 'l':
130				flags |= USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL;
131				break;
132			case 'm':
133				flags |= USB_QUIRK_DISCONNECT_SUSPEND;
134				break;
135			case 'n':
136				flags |= USB_QUIRK_DELAY_CTRL_MSG;
137				break;
138			case 'o':
139				flags |= USB_QUIRK_HUB_SLOW_RESET;
140				break;
141			/* Ignore unrecognized flag characters */
142			}
143		}
144
145		quirk_list[i++] = (struct quirk_entry)
146			{ .vid = vid, .pid = pid, .flags = flags };
147	}
148
149	if (i < quirk_count)
150		quirk_count = i;
151
152unlock:
153	mutex_unlock(&quirk_mutex);
154	kfree(val);
155
156	return 0;
157}
158
159static const struct kernel_param_ops quirks_param_ops = {
160	.set = quirks_param_set,
161	.get = param_get_string,
162};
163
164static struct kparam_string quirks_param_string = {
165	.maxlen = sizeof(quirks_param),
166	.string = quirks_param,
167};
168
169device_param_cb(quirks, &quirks_param_ops, &quirks_param_string, 0644);
170MODULE_PARM_DESC(quirks, "Add/modify USB quirks by specifying quirks=vendorID:productID:quirks");
171
172/* Lists of quirky USB devices, split in device quirks and interface quirks.
173 * Device quirks are applied at the very beginning of the enumeration process,
174 * right after reading the device descriptor. They can thus only match on device
175 * information.
176 *
177 * Interface quirks are applied after reading all the configuration descriptors.
178 * They can match on both device and interface information.
179 *
180 * Note that the DELAY_INIT and HONOR_BNUMINTERFACES quirks do not make sense as
181 * interface quirks, as they only influence the enumeration process which is run
182 * before processing the interface quirks.
183 *
184 * Please keep the lists ordered by:
185 * 	1) Vendor ID
186 * 	2) Product ID
187 * 	3) Class ID
 
 
 
 
 
 
 
188 */
189static const struct usb_device_id usb_quirk_list[] = {
190	/* CBM - Flash disk */
191	{ USB_DEVICE(0x0204, 0x6025), .driver_info = USB_QUIRK_RESET_RESUME },
192
193	/* WORLDE Controller KS49 or Prodipe MIDI 49C USB controller */
194	{ USB_DEVICE(0x0218, 0x0201), .driver_info =
195			USB_QUIRK_CONFIG_INTF_STRINGS },
196
197	/* WORLDE easy key (easykey.25) MIDI controller  */
198	{ USB_DEVICE(0x0218, 0x0401), .driver_info =
199			USB_QUIRK_CONFIG_INTF_STRINGS },
200
201	/* HP 5300/5370C scanner */
202	{ USB_DEVICE(0x03f0, 0x0701), .driver_info =
203			USB_QUIRK_STRING_FETCH_255 },
204
205	/* HP v222w 16GB Mini USB Drive */
206	{ USB_DEVICE(0x03f0, 0x3f40), .driver_info = USB_QUIRK_DELAY_INIT },
207
208	/* Creative SB Audigy 2 NX */
209	{ USB_DEVICE(0x041e, 0x3020), .driver_info = USB_QUIRK_RESET_RESUME },
210
211	/* USB3503 */
212	{ USB_DEVICE(0x0424, 0x3503), .driver_info = USB_QUIRK_RESET_RESUME },
213
214	/* Microsoft Wireless Laser Mouse 6000 Receiver */
215	{ USB_DEVICE(0x045e, 0x00e1), .driver_info = USB_QUIRK_RESET_RESUME },
216
217	/* Microsoft LifeCam-VX700 v2.0 */
218	{ USB_DEVICE(0x045e, 0x0770), .driver_info = USB_QUIRK_RESET_RESUME },
219
220	/* Microsoft Surface Dock Ethernet (RTL8153 GigE) */
221	{ USB_DEVICE(0x045e, 0x07c6), .driver_info = USB_QUIRK_NO_LPM },
222
223	/* Cherry Stream G230 2.0 (G85-231) and 3.0 (G85-232) */
224	{ USB_DEVICE(0x046a, 0x0023), .driver_info = USB_QUIRK_RESET_RESUME },
225
226	/* Logitech HD Webcam C270 */
227	{ USB_DEVICE(0x046d, 0x0825), .driver_info = USB_QUIRK_RESET_RESUME },
228
229	/* Logitech HD Pro Webcams C920, C920-C, C922, C925e and C930e */
230	{ USB_DEVICE(0x046d, 0x082d), .driver_info = USB_QUIRK_DELAY_INIT },
231	{ USB_DEVICE(0x046d, 0x0841), .driver_info = USB_QUIRK_DELAY_INIT },
232	{ USB_DEVICE(0x046d, 0x0843), .driver_info = USB_QUIRK_DELAY_INIT },
233	{ USB_DEVICE(0x046d, 0x085b), .driver_info = USB_QUIRK_DELAY_INIT },
234	{ USB_DEVICE(0x046d, 0x085c), .driver_info = USB_QUIRK_DELAY_INIT },
235
236	/* Logitech ConferenceCam CC3000e */
237	{ USB_DEVICE(0x046d, 0x0847), .driver_info = USB_QUIRK_DELAY_INIT },
238	{ USB_DEVICE(0x046d, 0x0848), .driver_info = USB_QUIRK_DELAY_INIT },
239
240	/* Logitech PTZ Pro Camera */
241	{ USB_DEVICE(0x046d, 0x0853), .driver_info = USB_QUIRK_DELAY_INIT },
242
243	/* Logitech Screen Share */
244	{ USB_DEVICE(0x046d, 0x086c), .driver_info = USB_QUIRK_NO_LPM },
245
246	/* Logitech Quickcam Fusion */
247	{ USB_DEVICE(0x046d, 0x08c1), .driver_info = USB_QUIRK_RESET_RESUME },
248
249	/* Logitech Quickcam Orbit MP */
250	{ USB_DEVICE(0x046d, 0x08c2), .driver_info = USB_QUIRK_RESET_RESUME },
251
252	/* Logitech Quickcam Pro for Notebook */
253	{ USB_DEVICE(0x046d, 0x08c3), .driver_info = USB_QUIRK_RESET_RESUME },
254
255	/* Logitech Quickcam Pro 5000 */
256	{ USB_DEVICE(0x046d, 0x08c5), .driver_info = USB_QUIRK_RESET_RESUME },
257
258	/* Logitech Quickcam OEM Dell Notebook */
259	{ USB_DEVICE(0x046d, 0x08c6), .driver_info = USB_QUIRK_RESET_RESUME },
260
261	/* Logitech Quickcam OEM Cisco VT Camera II */
262	{ USB_DEVICE(0x046d, 0x08c7), .driver_info = USB_QUIRK_RESET_RESUME },
263
264	/* Logitech Harmony 700-series */
265	{ USB_DEVICE(0x046d, 0xc122), .driver_info = USB_QUIRK_DELAY_INIT },
266
267	/* Philips PSC805 audio device */
268	{ USB_DEVICE(0x0471, 0x0155), .driver_info = USB_QUIRK_RESET_RESUME },
269
270	/* Plantronic Audio 655 DSP */
271	{ USB_DEVICE(0x047f, 0xc008), .driver_info = USB_QUIRK_RESET_RESUME },
272
273	/* Plantronic Audio 648 USB */
274	{ USB_DEVICE(0x047f, 0xc013), .driver_info = USB_QUIRK_RESET_RESUME },
275
276	/* Artisman Watchdog Dongle */
277	{ USB_DEVICE(0x04b4, 0x0526), .driver_info =
278			USB_QUIRK_CONFIG_INTF_STRINGS },
279
280	/* Microchip Joss Optical infrared touchboard device */
281	{ USB_DEVICE(0x04d8, 0x000c), .driver_info =
282			USB_QUIRK_CONFIG_INTF_STRINGS },
283
284	/* CarrolTouch 4000U */
285	{ USB_DEVICE(0x04e7, 0x0009), .driver_info = USB_QUIRK_RESET_RESUME },
286
287	/* CarrolTouch 4500U */
288	{ USB_DEVICE(0x04e7, 0x0030), .driver_info = USB_QUIRK_RESET_RESUME },
289
290	/* Samsung Android phone modem - ID conflict with SPH-I500 */
291	{ USB_DEVICE(0x04e8, 0x6601), .driver_info =
292			USB_QUIRK_CONFIG_INTF_STRINGS },
293
294	/* Elan Touchscreen */
295	{ USB_DEVICE(0x04f3, 0x0089), .driver_info =
296			USB_QUIRK_DEVICE_QUALIFIER },
297
298	{ USB_DEVICE(0x04f3, 0x009b), .driver_info =
299			USB_QUIRK_DEVICE_QUALIFIER },
300
301	{ USB_DEVICE(0x04f3, 0x010c), .driver_info =
302			USB_QUIRK_DEVICE_QUALIFIER },
303
304	{ USB_DEVICE(0x04f3, 0x0125), .driver_info =
305			USB_QUIRK_DEVICE_QUALIFIER },
306
307	{ USB_DEVICE(0x04f3, 0x016f), .driver_info =
308			USB_QUIRK_DEVICE_QUALIFIER },
309
310	{ USB_DEVICE(0x04f3, 0x0381), .driver_info =
311			USB_QUIRK_NO_LPM },
312
313	{ USB_DEVICE(0x04f3, 0x21b8), .driver_info =
314			USB_QUIRK_DEVICE_QUALIFIER },
315
316	/* Roland SC-8820 */
317	{ USB_DEVICE(0x0582, 0x0007), .driver_info = USB_QUIRK_RESET_RESUME },
318
319	/* Edirol SD-20 */
320	{ USB_DEVICE(0x0582, 0x0027), .driver_info = USB_QUIRK_RESET_RESUME },
321
322	/* Alcor Micro Corp. Hub */
323	{ USB_DEVICE(0x058f, 0x9254), .driver_info = USB_QUIRK_RESET_RESUME },
324
325	/* appletouch */
326	{ USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },
327
328	/* Genesys Logic hub, internally used by KY-688 USB 3.1 Type-C Hub */
329	{ USB_DEVICE(0x05e3, 0x0612), .driver_info = USB_QUIRK_NO_LPM },
330
331	/* ELSA MicroLink 56K */
332	{ USB_DEVICE(0x05cc, 0x2267), .driver_info = USB_QUIRK_RESET_RESUME },
333
334	/* Genesys Logic hub, internally used by Moshi USB to Ethernet Adapter */
335	{ USB_DEVICE(0x05e3, 0x0616), .driver_info = USB_QUIRK_NO_LPM },
336
337	/* Avision AV600U */
338	{ USB_DEVICE(0x0638, 0x0a13), .driver_info =
339	  USB_QUIRK_STRING_FETCH_255 },
340
341	/* Saitek Cyborg Gold Joystick */
342	{ USB_DEVICE(0x06a3, 0x0006), .driver_info =
343			USB_QUIRK_CONFIG_INTF_STRINGS },
344
345	/* Agfa SNAPSCAN 1212U */
346	{ USB_DEVICE(0x06bd, 0x0001), .driver_info = USB_QUIRK_RESET_RESUME },
347
348	/* Guillemot Webcam Hercules Dualpix Exchange (2nd ID) */
349	{ USB_DEVICE(0x06f8, 0x0804), .driver_info = USB_QUIRK_RESET_RESUME },
350
351	/* Guillemot Webcam Hercules Dualpix Exchange*/
352	{ USB_DEVICE(0x06f8, 0x3005), .driver_info = USB_QUIRK_RESET_RESUME },
353
354	/* Guillemot Hercules DJ Console audio card (BZ 208357) */
355	{ USB_DEVICE(0x06f8, 0xb000), .driver_info =
356			USB_QUIRK_ENDPOINT_IGNORE },
357
358	/* Midiman M-Audio Keystation 88es */
359	{ USB_DEVICE(0x0763, 0x0192), .driver_info = USB_QUIRK_RESET_RESUME },
360
361	/* SanDisk Ultra Fit and Ultra Flair */
362	{ USB_DEVICE(0x0781, 0x5583), .driver_info = USB_QUIRK_NO_LPM },
363	{ USB_DEVICE(0x0781, 0x5591), .driver_info = USB_QUIRK_NO_LPM },
364
365	/* Realforce 87U Keyboard */
366	{ USB_DEVICE(0x0853, 0x011b), .driver_info = USB_QUIRK_NO_LPM },
367
368	/* M-Systems Flash Disk Pioneers */
369	{ USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME },
370
371	/* Baum Vario Ultra */
372	{ USB_DEVICE(0x0904, 0x6101), .driver_info =
373			USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL },
374	{ USB_DEVICE(0x0904, 0x6102), .driver_info =
375			USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL },
376	{ USB_DEVICE(0x0904, 0x6103), .driver_info =
377			USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL },
378
379	/* Sound Devices USBPre2 */
380	{ USB_DEVICE(0x0926, 0x0202), .driver_info =
381			USB_QUIRK_ENDPOINT_IGNORE },
382
383	/* Sound Devices MixPre-D */
384	{ USB_DEVICE(0x0926, 0x0208), .driver_info =
385			USB_QUIRK_ENDPOINT_IGNORE },
386
387	/* Keytouch QWERTY Panel keyboard */
388	{ USB_DEVICE(0x0926, 0x3333), .driver_info =
389			USB_QUIRK_CONFIG_INTF_STRINGS },
390
391	/* Kingston DataTraveler 3.0 */
392	{ USB_DEVICE(0x0951, 0x1666), .driver_info = USB_QUIRK_NO_LPM },
393
394	/* NVIDIA Jetson devices in Force Recovery mode */
395	{ USB_DEVICE(0x0955, 0x7018), .driver_info = USB_QUIRK_RESET_RESUME },
396	{ USB_DEVICE(0x0955, 0x7019), .driver_info = USB_QUIRK_RESET_RESUME },
397	{ USB_DEVICE(0x0955, 0x7418), .driver_info = USB_QUIRK_RESET_RESUME },
398	{ USB_DEVICE(0x0955, 0x7721), .driver_info = USB_QUIRK_RESET_RESUME },
399	{ USB_DEVICE(0x0955, 0x7c18), .driver_info = USB_QUIRK_RESET_RESUME },
400	{ USB_DEVICE(0x0955, 0x7e19), .driver_info = USB_QUIRK_RESET_RESUME },
401	{ USB_DEVICE(0x0955, 0x7f21), .driver_info = USB_QUIRK_RESET_RESUME },
402
403	/* X-Rite/Gretag-Macbeth Eye-One Pro display colorimeter */
404	{ USB_DEVICE(0x0971, 0x2000), .driver_info = USB_QUIRK_NO_SET_INTF },
405
406	/* ELMO L-12F document camera */
407	{ USB_DEVICE(0x09a1, 0x0028), .driver_info = USB_QUIRK_DELAY_CTRL_MSG },
408
409	/* Broadcom BCM92035DGROM BT dongle */
410	{ USB_DEVICE(0x0a5c, 0x2021), .driver_info = USB_QUIRK_RESET_RESUME },
411
412	/* MAYA44USB sound device */
413	{ USB_DEVICE(0x0a92, 0x0091), .driver_info = USB_QUIRK_RESET_RESUME },
414
415	/* ASUS Base Station(T100) */
416	{ USB_DEVICE(0x0b05, 0x17e0), .driver_info =
417			USB_QUIRK_IGNORE_REMOTE_WAKEUP },
418
419	/* Realtek Semiconductor Corp. Mass Storage Device (Multicard Reader)*/
420	{ USB_DEVICE(0x0bda, 0x0151), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS },
421
422	/* Realtek hub in Dell WD19 (Type-C) */
423	{ USB_DEVICE(0x0bda, 0x0487), .driver_info = USB_QUIRK_NO_LPM },
424
425	/* Generic RTL8153 based ethernet adapters */
426	{ USB_DEVICE(0x0bda, 0x8153), .driver_info = USB_QUIRK_NO_LPM },
427
428	/* SONiX USB DEVICE Touchpad */
429	{ USB_DEVICE(0x0c45, 0x7056), .driver_info =
430			USB_QUIRK_IGNORE_REMOTE_WAKEUP },
431
432	/* Action Semiconductor flash disk */
433	{ USB_DEVICE(0x10d6, 0x2200), .driver_info =
434			USB_QUIRK_STRING_FETCH_255 },
435
436	/* novation SoundControl XL */
437	{ USB_DEVICE(0x1235, 0x0061), .driver_info = USB_QUIRK_RESET_RESUME },
438
439	/* Huawei 4G LTE module */
440	{ USB_DEVICE(0x12d1, 0x15bb), .driver_info =
441			USB_QUIRK_DISCONNECT_SUSPEND },
442	{ USB_DEVICE(0x12d1, 0x15c3), .driver_info =
443			USB_QUIRK_DISCONNECT_SUSPEND },
444
445	/* SKYMEDI USB_DRIVE */
446	{ USB_DEVICE(0x1516, 0x8628), .driver_info = USB_QUIRK_RESET_RESUME },
447
448	/* Razer - Razer Blade Keyboard */
449	{ USB_DEVICE(0x1532, 0x0116), .driver_info =
450			USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL },
451
452	/* Lenovo ThinkPad OneLink+ Dock twin hub controllers (VIA Labs VL812) */
453	{ USB_DEVICE(0x17ef, 0x1018), .driver_info = USB_QUIRK_RESET_RESUME },
454	{ USB_DEVICE(0x17ef, 0x1019), .driver_info = USB_QUIRK_RESET_RESUME },
455
456	/* Lenovo USB-C to Ethernet Adapter RTL8153-04 */
457	{ USB_DEVICE(0x17ef, 0x720c), .driver_info = USB_QUIRK_NO_LPM },
458
459	/* Lenovo Powered USB-C Travel Hub (4X90S92381, RTL8153 GigE) */
460	{ USB_DEVICE(0x17ef, 0x721e), .driver_info = USB_QUIRK_NO_LPM },
461
462	/* Lenovo ThinkCenter A630Z TI024Gen3 usb-audio */
463	{ USB_DEVICE(0x17ef, 0xa012), .driver_info =
464			USB_QUIRK_DISCONNECT_SUSPEND },
465
466	/* Lenovo ThinkPad USB-C Dock Gen2 Ethernet (RTL8153 GigE) */
467	{ USB_DEVICE(0x17ef, 0xa387), .driver_info = USB_QUIRK_NO_LPM },
468
469	/* BUILDWIN Photo Frame */
470	{ USB_DEVICE(0x1908, 0x1315), .driver_info =
471			USB_QUIRK_HONOR_BNUMINTERFACES },
472
473	/* Protocol and OTG Electrical Test Device */
474	{ USB_DEVICE(0x1a0a, 0x0200), .driver_info =
475			USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL },
476
477	/* Terminus Technology Inc. Hub */
478	{ USB_DEVICE(0x1a40, 0x0101), .driver_info = USB_QUIRK_HUB_SLOW_RESET },
479
480	/* Corsair K70 RGB */
481	{ USB_DEVICE(0x1b1c, 0x1b13), .driver_info = USB_QUIRK_DELAY_INIT |
482	  USB_QUIRK_DELAY_CTRL_MSG },
483
484	/* Corsair Strafe */
485	{ USB_DEVICE(0x1b1c, 0x1b15), .driver_info = USB_QUIRK_DELAY_INIT |
486	  USB_QUIRK_DELAY_CTRL_MSG },
487
488	/* Corsair Strafe RGB */
489	{ USB_DEVICE(0x1b1c, 0x1b20), .driver_info = USB_QUIRK_DELAY_INIT |
490	  USB_QUIRK_DELAY_CTRL_MSG },
491
492	/* Corsair K70 LUX RGB */
493	{ USB_DEVICE(0x1b1c, 0x1b33), .driver_info = USB_QUIRK_DELAY_INIT },
494
495	/* Corsair K70 LUX */
496	{ USB_DEVICE(0x1b1c, 0x1b36), .driver_info = USB_QUIRK_DELAY_INIT },
497
498	/* Corsair K70 RGB RAPDIFIRE */
499	{ USB_DEVICE(0x1b1c, 0x1b38), .driver_info = USB_QUIRK_DELAY_INIT |
500	  USB_QUIRK_DELAY_CTRL_MSG },
501
502	/* MIDI keyboard WORLDE MINI */
503	{ USB_DEVICE(0x1c75, 0x0204), .driver_info =
504			USB_QUIRK_CONFIG_INTF_STRINGS },
505
506	/* Acer C120 LED Projector */
507	{ USB_DEVICE(0x1de1, 0xc102), .driver_info = USB_QUIRK_NO_LPM },
508
509	/* Blackmagic Design Intensity Shuttle */
510	{ USB_DEVICE(0x1edb, 0xbd3b), .driver_info = USB_QUIRK_NO_LPM },
511
512	/* Blackmagic Design UltraStudio SDI */
513	{ USB_DEVICE(0x1edb, 0xbd4f), .driver_info = USB_QUIRK_NO_LPM },
514
515	/* Hauppauge HVR-950q */
516	{ USB_DEVICE(0x2040, 0x7200), .driver_info =
517			USB_QUIRK_CONFIG_INTF_STRINGS },
518
519	/* Raydium Touchscreen */
520	{ USB_DEVICE(0x2386, 0x3114), .driver_info = USB_QUIRK_NO_LPM },
521
522	{ USB_DEVICE(0x2386, 0x3119), .driver_info = USB_QUIRK_NO_LPM },
523
524	{ USB_DEVICE(0x2386, 0x350e), .driver_info = USB_QUIRK_NO_LPM },
525
526	/* DJI CineSSD */
527	{ USB_DEVICE(0x2ca3, 0x0031), .driver_info = USB_QUIRK_NO_LPM },
528
529	/* Alcor Link AK9563 SC Reader used in 2022 Lenovo ThinkPads */
530	{ USB_DEVICE(0x2ce3, 0x9563), .driver_info = USB_QUIRK_NO_LPM },
531
532	/* DELL USB GEN2 */
533	{ USB_DEVICE(0x413c, 0xb062), .driver_info = USB_QUIRK_NO_LPM | USB_QUIRK_RESET_RESUME },
534
535	/* VCOM device */
536	{ USB_DEVICE(0x4296, 0x7570), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS },
537
538	/* INTEL VALUE SSD */
539	{ USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME },
540
541	{ }  /* terminating entry must be last */
542};
543
544static const struct usb_device_id usb_interface_quirk_list[] = {
545	/* Logitech UVC Cameras */
546	{ USB_VENDOR_AND_INTERFACE_INFO(0x046d, USB_CLASS_VIDEO, 1, 0),
547	  .driver_info = USB_QUIRK_RESET_RESUME },
548
549	{ }  /* terminating entry must be last */
550};
551
552static const struct usb_device_id usb_amd_resume_quirk_list[] = {
553	/* Lenovo Mouse with Pixart controller */
554	{ USB_DEVICE(0x17ef, 0x602e), .driver_info = USB_QUIRK_RESET_RESUME },
555
556	/* Pixart Mouse */
557	{ USB_DEVICE(0x093a, 0x2500), .driver_info = USB_QUIRK_RESET_RESUME },
558	{ USB_DEVICE(0x093a, 0x2510), .driver_info = USB_QUIRK_RESET_RESUME },
559	{ USB_DEVICE(0x093a, 0x2521), .driver_info = USB_QUIRK_RESET_RESUME },
560	{ USB_DEVICE(0x03f0, 0x2b4a), .driver_info = USB_QUIRK_RESET_RESUME },
561
562	/* Logitech Optical Mouse M90/M100 */
563	{ USB_DEVICE(0x046d, 0xc05a), .driver_info = USB_QUIRK_RESET_RESUME },
564
565	{ }  /* terminating entry must be last */
566};
567
568/*
569 * Entries for endpoints that should be ignored when parsing configuration
570 * descriptors.
571 *
572 * Matched for devices with USB_QUIRK_ENDPOINT_IGNORE.
573 */
574static const struct usb_device_id usb_endpoint_ignore[] = {
575	{ USB_DEVICE_INTERFACE_NUMBER(0x06f8, 0xb000, 5), .driver_info = 0x01 },
576	{ USB_DEVICE_INTERFACE_NUMBER(0x06f8, 0xb000, 5), .driver_info = 0x81 },
577	{ USB_DEVICE_INTERFACE_NUMBER(0x0926, 0x0202, 1), .driver_info = 0x85 },
578	{ USB_DEVICE_INTERFACE_NUMBER(0x0926, 0x0208, 1), .driver_info = 0x85 },
579	{ }
580};
581
582bool usb_endpoint_is_ignored(struct usb_device *udev,
583			     struct usb_host_interface *intf,
584			     struct usb_endpoint_descriptor *epd)
585{
586	const struct usb_device_id *id;
587	unsigned int address;
588
589	for (id = usb_endpoint_ignore; id->match_flags; ++id) {
590		if (!usb_match_device(udev, id))
591			continue;
592
593		if (!usb_match_one_id_intf(udev, intf, id))
594			continue;
595
596		address = id->driver_info;
597		if (address == epd->bEndpointAddress)
598			return true;
599	}
600
601	return false;
602}
603
604static bool usb_match_any_interface(struct usb_device *udev,
605				    const struct usb_device_id *id)
606{
607	unsigned int i;
608
609	for (i = 0; i < udev->descriptor.bNumConfigurations; ++i) {
610		struct usb_host_config *cfg = &udev->config[i];
611		unsigned int j;
612
613		for (j = 0; j < cfg->desc.bNumInterfaces; ++j) {
614			struct usb_interface_cache *cache;
615			struct usb_host_interface *intf;
616
617			cache = cfg->intf_cache[j];
618			if (cache->num_altsetting == 0)
619				continue;
620
621			intf = &cache->altsetting[0];
622			if (usb_match_one_id_intf(udev, intf, id))
623				return true;
624		}
625	}
626
627	return false;
628}
629
630static int usb_amd_resume_quirk(struct usb_device *udev)
631{
632	struct usb_hcd *hcd;
633
634	hcd = bus_to_hcd(udev->bus);
635	/* The device should be attached directly to root hub */
636	if (udev->level == 1 && hcd->amd_resume_bug == 1)
637		return 1;
638
639	return 0;
640}
641
642static u32 usb_detect_static_quirks(struct usb_device *udev,
643				    const struct usb_device_id *id)
644{
645	u32 quirks = 0;
646
647	for (; id->match_flags; id++) {
648		if (!usb_match_device(udev, id))
649			continue;
650
651		if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_INFO) &&
652		    !usb_match_any_interface(udev, id))
653			continue;
654
655		quirks |= (u32)(id->driver_info);
 
 
 
656	}
657
658	return quirks;
659}
660
661static u32 usb_detect_dynamic_quirks(struct usb_device *udev)
662{
663	u16 vid = le16_to_cpu(udev->descriptor.idVendor);
664	u16 pid = le16_to_cpu(udev->descriptor.idProduct);
665	int i, flags = 0;
666
667	mutex_lock(&quirk_mutex);
668
669	for (i = 0; i < quirk_count; i++) {
670		if (vid == quirk_list[i].vid && pid == quirk_list[i].pid) {
671			flags = quirk_list[i].flags;
672			break;
673		}
674	}
675
676	mutex_unlock(&quirk_mutex);
677
678	return flags;
679}
680
681/*
682 * Detect any quirks the device has, and do any housekeeping for it if needed.
683 */
684void usb_detect_quirks(struct usb_device *udev)
685{
686	udev->quirks = usb_detect_static_quirks(udev, usb_quirk_list);
687
688	/*
689	 * Pixart-based mice would trigger remote wakeup issue on AMD
690	 * Yangtze chipset, so set them as RESET_RESUME flag.
691	 */
692	if (usb_amd_resume_quirk(udev))
693		udev->quirks |= usb_detect_static_quirks(udev,
694				usb_amd_resume_quirk_list);
695
696	udev->quirks ^= usb_detect_dynamic_quirks(udev);
697
 
 
 
698	if (udev->quirks)
699		dev_dbg(&udev->dev, "USB quirks for this device: %x\n",
700			udev->quirks);
701
702#ifdef CONFIG_USB_DEFAULT_PERSIST
703	if (!(udev->quirks & USB_QUIRK_RESET))
704		udev->persist_enabled = 1;
705#else
706	/* Hubs are automatically enabled for USB-PERSIST */
707	if (udev->descriptor.bDeviceClass == USB_CLASS_HUB)
708		udev->persist_enabled = 1;
709#endif	/* CONFIG_USB_DEFAULT_PERSIST */
710}
711
712void usb_detect_interface_quirks(struct usb_device *udev)
713{
714	u32 quirks;
715
716	quirks = usb_detect_static_quirks(udev, usb_interface_quirk_list);
717	if (quirks == 0)
718		return;
719
720	dev_dbg(&udev->dev, "USB interface quirks for this device: %x\n",
721		quirks);
722	udev->quirks |= quirks;
723}
724
725void usb_release_quirk_list(void)
726{
727	mutex_lock(&quirk_mutex);
728	kfree(quirk_list);
729	quirk_list = NULL;
730	mutex_unlock(&quirk_mutex);
731}