Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

USB: add QUIRK_NO_BOS for video capture several devices

Several USB capture devices also need the USB_QUIRK_NO_BOS set for them
to work properly, odds are they are all the same chip inside, just
different vendor/product ids.

This fixes up:
- ASUS TUF 4K PRO
- Avermedia Live Gamer Ultra 2.1 (GC553G2)
- UGREEN 35871
to now run at full speed (10 Gbps/4K 60 fps mode.)

Link: https://lore.kernel.org/r/CACy+XB-f-51xGpNQFCSm5pE_momTQLu=BaZggHYU1DiDmFX=ug@mail.gmail.com
Cc: stable <stable@kernel.org>
Signed-off-by: A1RM4X <dev@a1rm4x.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

A1RM4X and committed by
Greg Kroah-Hartman
93cd0d66 6de23f81

+9
+9
drivers/usb/core/quirks.c
··· 376 376 /* SanDisk Extreme 55AE */ 377 377 { USB_DEVICE(0x0781, 0x55ae), .driver_info = USB_QUIRK_NO_LPM }, 378 378 379 + /* Avermedia Live Gamer Ultra 2.1 (GC553G2) - BOS descriptor fetch hangs at SuperSpeed Plus */ 380 + { USB_DEVICE(0x07ca, 0x2553), .driver_info = USB_QUIRK_NO_BOS }, 381 + 379 382 /* Realforce 87U Keyboard */ 380 383 { USB_DEVICE(0x0853, 0x011b), .driver_info = USB_QUIRK_NO_LPM }, 381 384 ··· 438 435 /* ASUS Base Station(T100) */ 439 436 { USB_DEVICE(0x0b05, 0x17e0), .driver_info = 440 437 USB_QUIRK_IGNORE_REMOTE_WAKEUP }, 438 + 439 + /* ASUS TUF 4K PRO - BOS descriptor fetch hangs at SuperSpeed Plus */ 440 + { USB_DEVICE(0x0b05, 0x1ab9), .driver_info = USB_QUIRK_NO_BOS }, 441 441 442 442 /* Realtek Semiconductor Corp. Mass Storage Device (Multicard Reader)*/ 443 443 { USB_DEVICE(0x0bda, 0x0151), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, ··· 569 563 { USB_DEVICE(0x2386, 0x3119), .driver_info = USB_QUIRK_NO_LPM }, 570 564 571 565 { USB_DEVICE(0x2386, 0x350e), .driver_info = USB_QUIRK_NO_LPM }, 566 + 567 + /* UGREEN 35871 - BOS descriptor fetch hangs at SuperSpeed Plus */ 568 + { USB_DEVICE(0x2b89, 0x5871), .driver_info = USB_QUIRK_NO_BOS }, 572 569 573 570 /* APTIV AUTOMOTIVE HUB */ 574 571 { USB_DEVICE(0x2c48, 0x0132), .driver_info =