Message ID | 20230105-uvc-gcc5-v2-0-2ba6c660d6f5@chromium.org |
---|---|
Headers | show |
Series | media: uvcvideo: Hot fixes for top of next/uvc + std menus | expand |
Hi Ricardo, Thank you for the patch. On Thu, Jan 05, 2023 at 02:52:55PM +0100, Ricardo Ribalda wrote: > Convert the array of structs into an array of pointers, that way the > mappings can be reused. > > Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> > --- > drivers/media/usb/uvc/uvc_ctrl.c | 81 +++++++++++++++++++--------------------- > 1 file changed, 39 insertions(+), 42 deletions(-) > > diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c > index 2ebe5cc18ad9..9af64f7a23d3 100644 > --- a/drivers/media/usb/uvc/uvc_ctrl.c > +++ b/drivers/media/usb/uvc/uvc_ctrl.c > @@ -723,34 +723,40 @@ static const struct uvc_control_mapping uvc_ctrl_mappings[] = { > }, > }; > > -static const struct uvc_control_mapping uvc_ctrl_mappings_uvc11[] = { > - { > - .id = V4L2_CID_POWER_LINE_FREQUENCY, > - .entity = UVC_GUID_UVC_PROCESSING, > - .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > - .size = 2, > - .offset = 0, > - .v4l2_type = V4L2_CTRL_TYPE_MENU, > - .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls, > - .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, > - V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > - }, > +static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { > + .id = V4L2_CID_POWER_LINE_FREQUENCY, > + .entity = UVC_GUID_UVC_PROCESSING, > + .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > + .size = 2, > + .offset = 0, > + .v4l2_type = V4L2_CTRL_TYPE_MENU, > + .data_type = UVC_CTRL_DATA_TYPE_ENUM, > + .menu_info = power_line_frequency_controls, > + .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, > + V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > }; > > -static const struct uvc_control_mapping uvc_ctrl_mappings_uvc15[] = { > - { > - .id = V4L2_CID_POWER_LINE_FREQUENCY, > - .entity = UVC_GUID_UVC_PROCESSING, > - .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > - .size = 2, > - .offset = 0, > - .v4l2_type = V4L2_CTRL_TYPE_MENU, > - .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls, > - .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_AUTO, > - V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > - }, > +static const struct uvc_control_mapping *uvc_ctrl_mappings_uvc11[] = { > + &uvc_ctrl_power_line_mapping_uvc11, > + NULL, /* Sentinel */ > +}; > + > +static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc15 = { > + .id = V4L2_CID_POWER_LINE_FREQUENCY, > + .entity = UVC_GUID_UVC_PROCESSING, > + .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > + .size = 2, > + .offset = 0, > + .v4l2_type = V4L2_CTRL_TYPE_MENU, > + .data_type = UVC_CTRL_DATA_TYPE_ENUM, > + .menu_info = power_line_frequency_controls, > + .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_AUTO, > + V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > +}; > + > +static const struct uvc_control_mapping *uvc_ctrl_mappings_uvc15[] = { > + &uvc_ctrl_power_line_mapping_uvc15, > + NULL, /* Sentinel */ > }; > > /* ------------------------------------------------------------------------ > @@ -2506,8 +2512,7 @@ static void uvc_ctrl_prune_entity(struct uvc_device *dev, > static void uvc_ctrl_init_ctrl(struct uvc_video_chain *chain, > struct uvc_control *ctrl) > { > - const struct uvc_control_mapping *mappings; > - unsigned int num_mappings; > + const struct uvc_control_mapping **mappings; > unsigned int i; > > /* > @@ -2574,21 +2579,13 @@ static void uvc_ctrl_init_ctrl(struct uvc_video_chain *chain, > } > > /* Finally process version-specific mappings. */ > - if (chain->dev->uvc_version < 0x0150) { > - mappings = uvc_ctrl_mappings_uvc11; > - num_mappings = ARRAY_SIZE(uvc_ctrl_mappings_uvc11); > - } else { > - mappings = uvc_ctrl_mappings_uvc15; > - num_mappings = ARRAY_SIZE(uvc_ctrl_mappings_uvc15); > - } > - > - for (i = 0; i < num_mappings; ++i) { > - const struct uvc_control_mapping *mapping = &mappings[i]; > + mappings = (chain->dev->uvc_version < 0x0150) ? uvc_ctrl_mappings_uvc11 No need for parentheses. > + : uvc_ctrl_mappings_uvc15; > > - if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && > - ctrl->info.selector == mapping->selector) > - __uvc_ctrl_add_mapping(chain, ctrl, mapping); > - } > + for (i = 0; mappings[i]; ++i) Missing curly braces. Let's add a local mapping variable: for (i = 0; mappings[i]; ++i) { const struct uvc_control_mapping *mapping = &mappings[i]; if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && ctrl->info.selector == mapping->selector) __uvc_ctrl_add_mapping(chain, ctrl, mapping); } I'll address this when applying. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > + if (uvc_entity_match_guid(ctrl->entity, mappings[i]->entity) && > + ctrl->info.selector == mappings[i]->selector) > + __uvc_ctrl_add_mapping(chain, ctrl, mappings[i]); > } > > /* >
Hi Ricardo, Thank you for the patch. On Thu, Jan 05, 2023 at 02:52:56PM +0100, Ricardo Ribalda wrote: > Move the control mapping to uvc_ctrl.c. This way we do not have > references to UVC controls or V4L2 controls in uvc_driver.c > > Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> > --- > drivers/media/usb/uvc/uvc_ctrl.c | 13 +++++++++++++ > drivers/media/usb/uvc/uvc_driver.c | 18 ------------------ > drivers/media/usb/uvc/uvcvideo.h | 1 + > 3 files changed, 14 insertions(+), 18 deletions(-) > > diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c > index 9af64f7a23d3..f559a1ac6e3c 100644 > --- a/drivers/media/usb/uvc/uvc_ctrl.c > +++ b/drivers/media/usb/uvc/uvc_ctrl.c > @@ -723,6 +723,19 @@ static const struct uvc_control_mapping uvc_ctrl_mappings[] = { > }, > }; > > +const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited = { > + .id = V4L2_CID_POWER_LINE_FREQUENCY, > + .entity = UVC_GUID_UVC_PROCESSING, > + .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > + .size = 2, > + .offset = 0, > + .v4l2_type = V4L2_CTRL_TYPE_MENU, > + .data_type = UVC_CTRL_DATA_TYPE_ENUM, > + .menu_info = power_line_frequency_controls, > + .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, > + V4L2_CID_POWER_LINE_FREQUENCY_50HZ), This also fixes a bug introduced in commit 382075604a68 ("media: uvcvideo: Limit power line control for Quanta UVC Webcam"). The offending commit caused the power line control menu entries to have incorrect indices compared to the V4L2_CID_POWER_LINE_FREQUENCY_* enumeration. Now that the limited mapping reuses the correct menu_info array, the indices correctly map to the V4L2 control specification. I'll add the above paragraph to the commit message, along with a Fixes: line. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > +}; > + > static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { > .id = V4L2_CID_POWER_LINE_FREQUENCY, > .entity = UVC_GUID_UVC_PROCESSING, > diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c > index e659670ea2d8..37d2b08bc8b2 100644 > --- a/drivers/media/usb/uvc/uvc_driver.c > +++ b/drivers/media/usb/uvc/uvc_driver.c > @@ -2378,24 +2378,6 @@ MODULE_PARM_DESC(timeout, "Streaming control requests timeout"); > * Driver initialization and cleanup > */ > > -static const struct uvc_menu_info power_line_frequency_controls_limited[] = { > - { 1, "50 Hz" }, > - { 2, "60 Hz" }, > -}; > - > -static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited = { > - .id = V4L2_CID_POWER_LINE_FREQUENCY, > - .entity = UVC_GUID_UVC_PROCESSING, > - .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > - .size = 2, > - .offset = 0, > - .v4l2_type = V4L2_CTRL_TYPE_MENU, > - .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls_limited, > - .menu_mask = > - GENMASK(ARRAY_SIZE(power_line_frequency_controls_limited) - 1, 0), > -}; > - > static const struct uvc_device_info uvc_ctrl_power_line_limited = { > .mappings = (const struct uvc_control_mapping *[]) { > &uvc_ctrl_power_line_mapping_limited, > diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h > index a8eec43cd860..1b2d9f327583 100644 > --- a/drivers/media/usb/uvc/uvcvideo.h > +++ b/drivers/media/usb/uvc/uvcvideo.h > @@ -747,6 +747,7 @@ int uvc_status_start(struct uvc_device *dev, gfp_t flags); > void uvc_status_stop(struct uvc_device *dev); > > /* Controls */ > +extern const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited; > extern const struct v4l2_subscribed_event_ops uvc_ctrl_sub_ev_ops; > > int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, >
Hi Ricardo, Thank you for the patch. On Thu, Jan 05, 2023 at 02:52:57PM +0100, Ricardo Ribalda wrote: > The device does not implement the power line control correctly. It is > a UVC 1.5 device, but implements the PLC control as a UVC 1.1 device. Did you mean PLF (power line frequency) ? I'd write: The device does not implement the power line frequency control correctly. It is a UVC 1.5 device, but implements the control as a UVC 1.1 device. No need to resubmit just for this, I'll handle it locally. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > Add the corresponding control mapping override. > > Bus 003 Device 002: ID 30c9:0093 Lenovo Integrated Camera > Device Descriptor: > bLength 18 > bDescriptorType 1 > bcdUSB 2.01 > bDeviceClass 239 Miscellaneous Device > bDeviceSubClass 2 > bDeviceProtocol 1 Interface Association > bMaxPacketSize0 64 > idVendor 0x30c9 > idProduct 0x0093 > bcdDevice 0.07 > iManufacturer 3 Lenovo > iProduct 1 Integrated Camera > iSerial 2 8SSC21J75356V1SR2830069 > bNumConfigurations 1 > > Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> > --- > drivers/media/usb/uvc/uvc_ctrl.c | 2 +- > drivers/media/usb/uvc/uvc_driver.c | 16 ++++++++++++++++ > drivers/media/usb/uvc/uvcvideo.h | 1 + > 3 files changed, 18 insertions(+), 1 deletion(-) > > diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c > index f559a1ac6e3c..28ef9b2024a1 100644 > --- a/drivers/media/usb/uvc/uvc_ctrl.c > +++ b/drivers/media/usb/uvc/uvc_ctrl.c > @@ -736,7 +736,7 @@ const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited = { > V4L2_CID_POWER_LINE_FREQUENCY_50HZ), > }; > > -static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { > +const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { > .id = V4L2_CID_POWER_LINE_FREQUENCY, > .entity = UVC_GUID_UVC_PROCESSING, > .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, > diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c > index 37d2b08bc8b2..57c948d47bbf 100644 > --- a/drivers/media/usb/uvc/uvc_driver.c > +++ b/drivers/media/usb/uvc/uvc_driver.c > @@ -2385,6 +2385,13 @@ static const struct uvc_device_info uvc_ctrl_power_line_limited = { > }, > }; > > +static const struct uvc_device_info uvc_ctrl_power_line_uvc11 = { > + .mappings = (const struct uvc_control_mapping *[]) { > + &uvc_ctrl_power_line_mapping_uvc11, > + NULL, /* Sentinel */ > + }, > +}; > + > static const struct uvc_device_info uvc_quirk_probe_minmax = { > .quirks = UVC_QUIRK_PROBE_MINMAX, > }; > @@ -2964,6 +2971,15 @@ static const struct usb_device_id uvc_ids[] = { > .bInterfaceSubClass = 1, > .bInterfaceProtocol = 0, > .driver_info = UVC_INFO_QUIRK(UVC_QUIRK_FORCE_BPP) }, > + /* Lenovo Integrated Camera */ > + { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > + | USB_DEVICE_ID_MATCH_INT_INFO, > + .idVendor = 0x30c9, > + .idProduct = 0x0093, > + .bInterfaceClass = USB_CLASS_VIDEO, > + .bInterfaceSubClass = 1, > + .bInterfaceProtocol = UVC_PC_PROTOCOL_15, > + .driver_info = (kernel_ulong_t)&uvc_ctrl_power_line_uvc11 }, > /* Sonix Technology USB 2.0 Camera */ > { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > | USB_DEVICE_ID_MATCH_INT_INFO, > diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h > index 1b2d9f327583..31c33eb0edf5 100644 > --- a/drivers/media/usb/uvc/uvcvideo.h > +++ b/drivers/media/usb/uvc/uvcvideo.h > @@ -748,6 +748,7 @@ void uvc_status_stop(struct uvc_device *dev); > > /* Controls */ > extern const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited; > +extern const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11; > extern const struct v4l2_subscribed_event_ops uvc_ctrl_sub_ev_ops; > > int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain,
Hi Ricardo, Thank you for the patch. On Thu, Jan 05, 2023 at 02:52:58PM +0100, Ricardo Ribalda wrote: > Instead of duplicating the menu info, use the one from the core. > Also, do not use extra memory for 1:1 mappings. > > Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> > Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > --- > drivers/media/usb/uvc/uvc_ctrl.c | 122 +++++++++++++++++++++++++++------------ > drivers/media/usb/uvc/uvc_v4l2.c | 105 ++++++++++++++++++++++++--------- > drivers/media/usb/uvc/uvcvideo.h | 3 +- > include/uapi/linux/uvcvideo.h | 4 +- > 4 files changed, 168 insertions(+), 66 deletions(-) > > diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c > index 28ef9b2024a1..f5a9d67e0966 100644 > --- a/drivers/media/usb/uvc/uvc_ctrl.c > +++ b/drivers/media/usb/uvc/uvc_ctrl.c > @@ -364,19 +364,31 @@ static const u32 uvc_control_classes[] = { > V4L2_CID_USER_CLASS, > }; > > -static const struct uvc_menu_info power_line_frequency_controls[] = { > - { 0, "Disabled" }, > - { 1, "50 Hz" }, > - { 2, "60 Hz" }, > - { 3, "Auto" }, > -}; > +static const int exposure_auto_mapping[] = { 2, 1, 4, 8 }; > > -static const struct uvc_menu_info exposure_auto_controls[] = { > - { 2, "Auto Mode" }, > - { 1, "Manual Mode" }, > - { 4, "Shutter Priority Mode" }, > - { 8, "Aperture Priority Mode" }, > -}; Let's add a bit of documentation, as it's getting quite complex. /* * This function translates the V4L2 menu index @idx, as exposed to userspace as * the V4L2 control value, to the corresponding UVC control value used by the * device. The custom menu_mapping in the control @mapping is used when * available, otherwise the function assumes that the V4L2 and UVC values are * identical. * * For controls of type UVC_CTRL_DATA_TYPE_BITMASK, the UVC control value is * expressed as a bitmask and is thus guaranteed to have a single bit set. * * The function returns -EINVAL if the V4L2 menu index @idx isn't valid for the * control, which includes all controls whose type isn't UVC_CTRL_DATA_TYPE_ENUM * or UVC_CTRL_DATA_TYPE_BITMASK. */ > +static int uvc_mapping_get_menu_value(const struct uvc_control_mapping *mapping, > + u32 idx) > +{ > + if (!test_bit(idx, &mapping->menu_mask)) > + return -EINVAL; > + > + if (mapping->menu_mapping) > + return mapping->menu_mapping[idx]; > + > + return idx; > +} > + > +static const char * > +uvc_mapping_get_menu_name(const struct uvc_control_mapping *mapping, u32 idx) > +{ > + if (!test_bit(idx, &mapping->menu_mask)) > + return NULL; > + > + if (mapping->menu_names) > + return mapping->menu_names[idx]; > + > + return v4l2_ctrl_get_menu(mapping->id)[idx]; > +} > > static s32 uvc_ctrl_get_zoom(struct uvc_control_mapping *mapping, > u8 query, const u8 *data) > @@ -525,9 +537,9 @@ static const struct uvc_control_mapping uvc_ctrl_mappings[] = { > .offset = 0, > .v4l2_type = V4L2_CTRL_TYPE_MENU, > .data_type = UVC_CTRL_DATA_TYPE_BITMASK, > - .menu_info = exposure_auto_controls, > + .menu_mapping = exposure_auto_mapping, > .menu_mask = > - GENMASK(ARRAY_SIZE(exposure_auto_controls) - 1, 0), > + GENMASK(ARRAY_SIZE(exposure_auto_mapping) - 1, 0), > .slave_ids = { V4L2_CID_EXPOSURE_ABSOLUTE, }, > }, > { > @@ -731,7 +743,6 @@ const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited = { > .offset = 0, > .v4l2_type = V4L2_CTRL_TYPE_MENU, > .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls, > .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, > V4L2_CID_POWER_LINE_FREQUENCY_50HZ), > }; > @@ -744,7 +755,6 @@ const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { > .offset = 0, > .v4l2_type = V4L2_CTRL_TYPE_MENU, > .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls, > .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, > V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > }; > @@ -762,7 +772,6 @@ static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc15 = { > .offset = 0, > .v4l2_type = V4L2_CTRL_TYPE_MENU, > .data_type = UVC_CTRL_DATA_TYPE_ENUM, > - .menu_info = power_line_frequency_controls, > .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_AUTO, > V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), > }; > @@ -995,13 +1004,17 @@ static s32 __uvc_ctrl_get_value(struct uvc_control_mapping *mapping, > s32 value = mapping->get(mapping, UVC_GET_CUR, data); > > if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) { > - const struct uvc_menu_info *menu = mapping->menu_info; > unsigned int i; > > - for (i = 0; BIT(i) <= mapping->menu_mask; ++i, ++menu) { > + for (i = 0; BIT(i) <= mapping->menu_mask; ++i) { > + u32 menu_value; > + > if (!test_bit(i, &mapping->menu_mask)) > continue; > - if (menu->value == value) { > + > + menu_value = uvc_mapping_get_menu_value(mapping, i); > + > + if (menu_value == value) { > value = i; > break; > } > @@ -1212,7 +1225,6 @@ static int __uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, > { > struct uvc_control_mapping *master_map = NULL; > struct uvc_control *master_ctrl = NULL; > - const struct uvc_menu_info *menu; > unsigned int i; > > memset(v4l2_ctrl, 0, sizeof(*v4l2_ctrl)); > @@ -1257,11 +1269,15 @@ static int __uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, > v4l2_ctrl->maximum = fls(mapping->menu_mask) - 1; > v4l2_ctrl->step = 1; > > - menu = mapping->menu_info; > - for (i = 0; BIT(i) <= mapping->menu_mask; ++i, ++menu) { > + for (i = 0; BIT(i) <= mapping->menu_mask; ++i) { > + u32 menu_value; > + > if (!test_bit(i, &mapping->menu_mask)) > continue; > - if (menu->value == v4l2_ctrl->default_value) { > + > + menu_value = uvc_mapping_get_menu_value(mapping, i); > + > + if (menu_value == v4l2_ctrl->default_value) { > v4l2_ctrl->default_value = i; > break; > } > @@ -1360,11 +1376,11 @@ int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, > int uvc_query_v4l2_menu(struct uvc_video_chain *chain, > struct v4l2_querymenu *query_menu) > { > - const struct uvc_menu_info *menu_info; > struct uvc_control_mapping *mapping; > struct uvc_control *ctrl; > u32 index = query_menu->index; > u32 id = query_menu->id; > + const char *name; > int ret; > > memset(query_menu, 0, sizeof(*query_menu)); > @@ -1386,22 +1402,39 @@ int uvc_query_v4l2_menu(struct uvc_video_chain *chain, > goto done; > } > > - menu_info = &mapping->menu_info[query_menu->index]; > - > if (mapping->data_type == UVC_CTRL_DATA_TYPE_BITMASK) { > + int menu_value; Let's name the variable "mask" as it stores the menu value translated to the UVC bitmask. > + > if (!ctrl->cached) { > ret = uvc_ctrl_populate_cache(chain, ctrl); > if (ret < 0) > goto done; > } > > - if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & menu_info->value)) { > + menu_value = uvc_mapping_get_menu_value(mapping, > + query_menu->index); > + if (menu_value < 0) { > + ret = menu_value; > + goto done; > + } > + > + /* > + * So far, only V4L2_CID_EXPOSURE_AUTO falls into this category > + * and its mappings (exposure_auto_mapping), are a bitmap. > + */ The comment is a bit confusing if you're not aware of the discussion in the review of the previous version of this patch. I'd drop it as the documentation of uvc_mapping_get_menu_value(), coupled with the name "mask" for the variable, should be good enough. > + if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & menu_value)) { > ret = -EINVAL; > goto done; > } > } > > - strscpy(query_menu->name, menu_info->name, sizeof(query_menu->name)); > + name = uvc_mapping_get_menu_name(mapping, query_menu->index); > + if (!name) { > + ret = -EINVAL; > + goto done; > + } > + > + strscpy(query_menu->name, name, sizeof(query_menu->name)); > > done: > mutex_unlock(&chain->ctrl_mutex); > @@ -1902,7 +1935,7 @@ int uvc_ctrl_set(struct uvc_fh *handle, > if (!test_bit(xctrl->value, &mapping->menu_mask)) > return -EINVAL; > > - value = mapping->menu_info[xctrl->value].value; > + value = uvc_mapping_get_menu_value(mapping, xctrl->value); > > /* > * Valid menu indices are reported by the GET_RES request for > @@ -2327,7 +2360,8 @@ static int __uvc_ctrl_add_mapping(struct uvc_video_chain *chain, > return -ENOMEM; > > map->name = NULL; > - map->menu_info = NULL; > + map->menu_names = NULL; > + map->menu_mapping = NULL; > > /* For UVCIOC_CTRL_MAP custom control */ > if (mapping->name) { > @@ -2338,10 +2372,22 @@ static int __uvc_ctrl_add_mapping(struct uvc_video_chain *chain, > > INIT_LIST_HEAD(&map->ev_subs); > > - size = sizeof(*mapping->menu_info) * fls(mapping->menu_mask); > - map->menu_info = kmemdup(mapping->menu_info, size, GFP_KERNEL); > - if (!map->menu_info) > - goto err_nomem; > + if (mapping->menu_mapping && mapping->menu_mask) { > + size = sizeof(mapping->menu_mapping[0]) > + * fls(mapping->menu_mask); > + map->menu_mapping = kmemdup(mapping->menu_mapping, size, > + GFP_KERNEL); > + if (!map->menu_mapping) > + goto err_nomem; > + } > + if (mapping->menu_names && mapping->menu_mask) { > + size = sizeof(mapping->menu_names[0]) > + * fls(mapping->menu_mask); > + map->menu_names = kmemdup(mapping->menu_names, size, > + GFP_KERNEL); > + if (!map->menu_names) > + goto err_nomem; > + } > > if (map->get == NULL) > map->get = uvc_get_le_value; > @@ -2364,7 +2410,8 @@ static int __uvc_ctrl_add_mapping(struct uvc_video_chain *chain, > return 0; > > err_nomem: > - kfree(map->menu_info); > + kfree(map->menu_names); > + kfree(map->menu_mapping); > kfree(map->name); > kfree(map); > return -ENOMEM; > @@ -2686,7 +2733,8 @@ static void uvc_ctrl_cleanup_mappings(struct uvc_device *dev, > > list_for_each_entry_safe(mapping, nm, &ctrl->info.mappings, list) { > list_del(&mapping->list); > - kfree(mapping->menu_info); > + kfree(mapping->menu_names); > + kfree(mapping->menu_mapping); > kfree(mapping->name); > kfree(mapping); > } > diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/media/usb/uvc/uvc_v4l2.c > index 0774a11360c0..06b4afbbf8b1 100644 > --- a/drivers/media/usb/uvc/uvc_v4l2.c > +++ b/drivers/media/usb/uvc/uvc_v4l2.c > @@ -26,14 +26,84 @@ > > #include "uvcvideo.h" > > +static int uvc_control_add_xu_mapping(struct uvc_video_chain *chain, > + struct uvc_control_mapping *map, > + const struct uvc_xu_control_mapping *xmap) > +{ > + unsigned int i; > + size_t size; > + int ret; > + > + /* > + * Prevent excessive memory consumption, as well as integer > + * overflows. > + */ > + if (xmap->menu_count == 0 || > + xmap->menu_count > UVC_MAX_CONTROL_MENU_ENTRIES) > + return -EINVAL; > + > + map->menu_names = NULL; > + map->menu_mapping = NULL; > + > + map->menu_mask = BIT_MASK(xmap->menu_count); > + > + size = xmap->menu_count * sizeof(*map->menu_mapping); > + map->menu_mapping = kzalloc(size, GFP_KERNEL); > + if (!map->menu_mapping) { > + ret = -ENOMEM; > + goto done; > + } > + > + for (i = 0; i < xmap->menu_count ; i++) { > + if (copy_from_user((u32 *)&map->menu_mapping[i], > + &xmap->menu_info[i].value, > + sizeof(map->menu_mapping[i]))) { > + ret = -EACCES; > + goto done; > + } > + } > + > + /* > + * Always use the standard naming if available, otherwise copy the > + * names supplied by userspace. > + */ > + if (!v4l2_ctrl_get_menu(map->id)) { > + size = xmap->menu_count * sizeof(map->menu_names[0]); > + map->menu_names = kzalloc(size, GFP_KERNEL); > + if (!map->menu_names) { > + ret = -ENOMEM; > + goto done; > + } > + > + for (i = 0; i < xmap->menu_count ; i++) { > + /* sizeof(names[i]) - 1: to take care of \0 */ > + if (copy_from_user((char *)map->menu_names[i], > + xmap->menu_info[i].name, > + sizeof(map->menu_names[i]) - 1)) { Alignment. I can address all this when applying. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > + ret = -EACCES; > + goto done; > + } > + } > + } > + > + ret = uvc_ctrl_add_mapping(chain, map); > + > +done: > + kfree(map->menu_names); > + map->menu_names = NULL; > + kfree(map->menu_mapping); > + map->menu_mapping = NULL; > + > + return ret; > +} > + > /* ------------------------------------------------------------------------ > * UVC ioctls > */ > -static int uvc_ioctl_ctrl_map(struct uvc_video_chain *chain, > - struct uvc_xu_control_mapping *xmap) > +static int uvc_ioctl_xu_ctrl_map(struct uvc_video_chain *chain, > + struct uvc_xu_control_mapping *xmap) > { > struct uvc_control_mapping *map; > - unsigned int size; > int ret; > > map = kzalloc(sizeof(*map), GFP_KERNEL); > @@ -61,39 +131,20 @@ static int uvc_ioctl_ctrl_map(struct uvc_video_chain *chain, > case V4L2_CTRL_TYPE_INTEGER: > case V4L2_CTRL_TYPE_BOOLEAN: > case V4L2_CTRL_TYPE_BUTTON: > + ret = uvc_ctrl_add_mapping(chain, map); > break; > > case V4L2_CTRL_TYPE_MENU: > - /* > - * Prevent excessive memory consumption, as well as integer > - * overflows. > - */ > - if (xmap->menu_count == 0 || > - xmap->menu_count > UVC_MAX_CONTROL_MENU_ENTRIES) { > - ret = -EINVAL; > - goto free_map; > - } > - > - size = xmap->menu_count * sizeof(*map->menu_info); > - map->menu_info = memdup_user(xmap->menu_info, size); > - if (IS_ERR(map->menu_info)) { > - ret = PTR_ERR(map->menu_info); > - goto free_map; > - } > - > - map->menu_mask = GENMASK(xmap->menu_count - 1, 0); > + ret = uvc_control_add_xu_mapping(chain, map, xmap); > break; > > default: > uvc_dbg(chain->dev, CONTROL, > "Unsupported V4L2 control type %u\n", xmap->v4l2_type); > ret = -ENOTTY; > - goto free_map; > + break; > } > > - ret = uvc_ctrl_add_mapping(chain, map); > - > - kfree(map->menu_info); > free_map: > kfree(map); > > @@ -1316,7 +1367,7 @@ static long uvc_ioctl_default(struct file *file, void *fh, bool valid_prio, > switch (cmd) { > /* Dynamic controls. */ > case UVCIOC_CTRL_MAP: > - return uvc_ioctl_ctrl_map(chain, arg); > + return uvc_ioctl_xu_ctrl_map(chain, arg); > > case UVCIOC_CTRL_QUERY: > return uvc_xu_ctrl_query(chain, arg); > @@ -1429,7 +1480,7 @@ static long uvc_v4l2_compat_ioctl32(struct file *file, > ret = uvc_v4l2_get_xu_mapping(&karg.xmap, up); > if (ret) > return ret; > - ret = uvc_ioctl_ctrl_map(handle->chain, &karg.xmap); > + ret = uvc_ioctl_xu_ctrl_map(handle->chain, &karg.xmap); > if (ret) > return ret; > ret = uvc_v4l2_put_xu_mapping(&karg.xmap, up); > diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h > index 31c33eb0edf5..c5a1c1c9d49e 100644 > --- a/drivers/media/usb/uvc/uvcvideo.h > +++ b/drivers/media/usb/uvc/uvcvideo.h > @@ -114,7 +114,8 @@ struct uvc_control_mapping { > enum v4l2_ctrl_type v4l2_type; > u32 data_type; > > - const struct uvc_menu_info *menu_info; > + const u32 *menu_mapping; > + const char (*menu_names)[UVC_MENU_NAME_LEN]; > unsigned long menu_mask; > > u32 master_id; > diff --git a/include/uapi/linux/uvcvideo.h b/include/uapi/linux/uvcvideo.h > index 8288137387c0..d45d0c2ea252 100644 > --- a/include/uapi/linux/uvcvideo.h > +++ b/include/uapi/linux/uvcvideo.h > @@ -36,9 +36,11 @@ > UVC_CTRL_FLAG_GET_MAX | UVC_CTRL_FLAG_GET_RES | \ > UVC_CTRL_FLAG_GET_DEF) > > +#define UVC_MENU_NAME_LEN 32 > + > struct uvc_menu_info { > __u32 value; > - __u8 name[32]; > + __u8 name[UVC_MENU_NAME_LEN]; > }; > > struct uvc_xu_control_mapping {
Hi Laurent Here are some fixes for your next branch. We have not sent yet the patches to Mauro so I guess it is better to drop the broken patches and their reverts from this set. If it is too late the revert patches have the proper Fixes: tag Thanks! Cc: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Yunke Cao <yunkec@chromium.org> To: Laurent Pinchart <laurent.pinchart@ideasonboard.com> To: Mauro Carvalho Chehab <mchehab@kernel.org> Cc: linux-media@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> --- Changes in v2: - Remove the wrongly added: Signed-off-by: Laurent - Append the: "Use standard names for menus" patch - Link to v1: https://lore.kernel.org/r/20230105-uvc-gcc5-v1-0-8550de720e82@chromium.org --- Ricardo Ribalda (7): Revert "media: uvcvideo: Fix power line control for Lenovo Integrated Camera" Revert "media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU" media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX media: uvcvideo: Refactor power_line_frequency_controls_limited media: uvcvideo: Fix power line control for Lenovo Integrated Camera media: uvcvideo: Use standard names for menus drivers/media/usb/uvc/uvc_ctrl.c | 191 ++++++++++++++++++++++++------------- drivers/media/usb/uvc/uvc_driver.c | 25 +---- drivers/media/usb/uvc/uvc_v4l2.c | 105 ++++++++++++++------ drivers/media/usb/uvc/uvcvideo.h | 4 +- include/uapi/linux/uvcvideo.h | 4 +- 5 files changed, 213 insertions(+), 116 deletions(-) --- base-commit: fb1316b0ff3fc3cd98637040ee17ab7be753aac7 change-id: 20230105-uvc-gcc5-7277141399d5 Best regards,