Skip to content

Commit 3c057a4

Browse files
ribaldagregkh
authored andcommitted
media: uvcvideo: Add quirk for Actions UVC05
[ Upstream commit 8c54e58 ] Actions UVC05 is a HDMI to USB dongle that implements the UVC protocol. When the device suspends, its firmware seems to enter a weird mode when it does not produce more frames. Add the device to the quirk list to disable autosuspend. Bus 001 Device 007: ID 1de1:f105 Actions Microelectronics Co. Display capture-UVC05 Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 239 Miscellaneous Device bDeviceSubClass 2 [unknown] bDeviceProtocol 1 Interface Association bMaxPacketSize0 64 idVendor 0x1de1 Actions Microelectronics Co. idProduct 0xf105 Display capture-UVC05 bcdDevice 4.09 iManufacturer 1 Actions Micro iProduct 2 Display capture-UVC05 iSerial 3 -1005308387 bNumConfigurations 1 Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://lore.kernel.org/r/20241210-uvc-hdmi-suspend-v1-1-01f5dec023ea@chromium.org Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent d4fcd06 commit 3c057a4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/media/usb/uvc/uvc_driver.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3039,6 +3039,15 @@ static const struct usb_device_id uvc_ids[] = {
30393039
.bInterfaceProtocol = 0,
30403040
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_PROBE_MINMAX
30413041
| UVC_QUIRK_IGNORE_SELECTOR_UNIT) },
3042+
/* Actions Microelectronics Co. Display capture-UVC05 */
3043+
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
3044+
| USB_DEVICE_ID_MATCH_INT_INFO,
3045+
.idVendor = 0x1de1,
3046+
.idProduct = 0xf105,
3047+
.bInterfaceClass = USB_CLASS_VIDEO,
3048+
.bInterfaceSubClass = 1,
3049+
.bInterfaceProtocol = 0,
3050+
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_DISABLE_AUTOSUSPEND) },
30423051
/* NXP Semiconductors IR VIDEO */
30433052
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
30443053
| USB_DEVICE_ID_MATCH_INT_INFO,

0 commit comments

Comments
 (0)