Skip to content

Commit 0f8233e

Browse files
author
Desnes Nunes
committed
media: uvcvideo: Add quirk for Actions UVC05
JIRA: https://issues.redhat.com/browse/RHEL-78934 commit 8c54e58 Author: Ricardo Ribalda <ribalda@chromium.org> Date: Tue, 10 Dec 2024 10:48:14 +0000 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: Desnes Nunes <desnesn@redhat.com>
1 parent 4f4b3dc commit 0f8233e

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
@@ -3062,6 +3062,15 @@ static const struct usb_device_id uvc_ids[] = {
30623062
.bInterfaceProtocol = 0,
30633063
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_PROBE_MINMAX
30643064
| UVC_QUIRK_IGNORE_SELECTOR_UNIT) },
3065+
/* Actions Microelectronics Co. Display capture-UVC05 */
3066+
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
3067+
| USB_DEVICE_ID_MATCH_INT_INFO,
3068+
.idVendor = 0x1de1,
3069+
.idProduct = 0xf105,
3070+
.bInterfaceClass = USB_CLASS_VIDEO,
3071+
.bInterfaceSubClass = 1,
3072+
.bInterfaceProtocol = 0,
3073+
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_DISABLE_AUTOSUSPEND) },
30653074
/* NXP Semiconductors IR VIDEO */
30663075
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
30673076
| USB_DEVICE_ID_MATCH_INT_INFO,

0 commit comments

Comments
 (0)