Skip to content

Commit

Permalink
media: uvcvideo: Provide sync and async uvc_ctrl_status_event
Browse files Browse the repository at this point in the history
commit d9c8763 upstream.

Split the functionality of void uvc_ctrl_status_event_work in two, so it
can be called by functions outside interrupt context and not part of an
URB.

Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ricardo Ribalda authored and Greg Kroah-Hartman committed Mar 11, 2023
1 parent ae3aff9 commit 11a2562
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 12 deletions.
25 changes: 15 additions & 10 deletions drivers/media/usb/uvc/uvc_ctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1280,25 +1280,20 @@ static void uvc_ctrl_send_slave_event(struct uvc_video_chain *chain,
uvc_ctrl_send_event(chain, handle, ctrl, mapping, val, changes);
}

static void uvc_ctrl_status_event_work(struct work_struct *work)
void uvc_ctrl_status_event(struct uvc_video_chain *chain,
struct uvc_control *ctrl, const u8 *data)
{
struct uvc_device *dev = container_of(work, struct uvc_device,
async_ctrl.work);
struct uvc_ctrl_work *w = &dev->async_ctrl;
struct uvc_video_chain *chain = w->chain;
struct uvc_control_mapping *mapping;
struct uvc_control *ctrl = w->ctrl;
struct uvc_fh *handle;
unsigned int i;
int ret;

mutex_lock(&chain->ctrl_mutex);

handle = ctrl->handle;
ctrl->handle = NULL;

list_for_each_entry(mapping, &ctrl->info.mappings, list) {
s32 value = __uvc_ctrl_get_value(mapping, w->data);
s32 value = __uvc_ctrl_get_value(mapping, data);

/*
* handle may be NULL here if the device sends auto-update
Expand All @@ -1317,6 +1312,16 @@ static void uvc_ctrl_status_event_work(struct work_struct *work)
}

mutex_unlock(&chain->ctrl_mutex);
}

static void uvc_ctrl_status_event_work(struct work_struct *work)
{
struct uvc_device *dev = container_of(work, struct uvc_device,
async_ctrl.work);
struct uvc_ctrl_work *w = &dev->async_ctrl;
int ret;

uvc_ctrl_status_event(w->chain, w->ctrl, w->data);

/* Resubmit the URB. */
w->urb->interval = dev->int_ep->desc.bInterval;
Expand All @@ -1326,8 +1331,8 @@ static void uvc_ctrl_status_event_work(struct work_struct *work)
ret);
}

bool uvc_ctrl_status_event(struct urb *urb, struct uvc_video_chain *chain,
struct uvc_control *ctrl, const u8 *data)
bool uvc_ctrl_status_event_async(struct urb *urb, struct uvc_video_chain *chain,
struct uvc_control *ctrl, const u8 *data)
{
struct uvc_device *dev = chain->dev;
struct uvc_ctrl_work *w = &dev->async_ctrl;
Expand Down
3 changes: 2 additions & 1 deletion drivers/media/usb/uvc/uvc_status.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ static bool uvc_event_control(struct urb *urb,

switch (status->bAttribute) {
case UVC_CTRL_VALUE_CHANGE:
return uvc_ctrl_status_event(urb, chain, ctrl, status->bValue);
return uvc_ctrl_status_event_async(urb, chain, ctrl,
status->bValue);

case UVC_CTRL_INFO_CHANGE:
case UVC_CTRL_FAILURE_CHANGE:
Expand Down
4 changes: 3 additions & 1 deletion drivers/media/usb/uvc/uvcvideo.h
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,9 @@ int uvc_ctrl_add_mapping(struct uvc_video_chain *chain,
int uvc_ctrl_init_device(struct uvc_device *dev);
void uvc_ctrl_cleanup_device(struct uvc_device *dev);
int uvc_ctrl_restore_values(struct uvc_device *dev);
bool uvc_ctrl_status_event(struct urb *urb, struct uvc_video_chain *chain,
bool uvc_ctrl_status_event_async(struct urb *urb, struct uvc_video_chain *chain,
struct uvc_control *ctrl, const u8 *data);
void uvc_ctrl_status_event(struct uvc_video_chain *chain,
struct uvc_control *ctrl, const u8 *data);

int uvc_ctrl_begin(struct uvc_video_chain *chain);
Expand Down

0 comments on commit 11a2562

Please sign in to comment.