From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Ricardo Ribalda <ribalda@chromium.org>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
Hans Verkuil <hverkuil@xs4all.nl>,
Hans de Goede <hansg@kernel.org>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 5/8] media: uvcvideo: Turn on the camera if V4L2_EVENT_SUB_FL_SEND_INITIAL
Date: Tue, 1 Jul 2025 01:09:23 +0300 [thread overview]
Message-ID: <20250630220923.GA15184@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20250630-uvc-grannular-invert-v3-5-abd5cb5c45b7@chromium.org>
On Mon, Jun 30, 2025 at 02:20:30PM +0000, Ricardo Ribalda wrote:
> If we subscribe to an event with V4L2_EVENT_SUB_FL_SEND_INITIAL, the
> driver needs to report back some values that require the camera to be
> powered on. But VIDIOC_SUBSCRIBE_EVENT is not part of the ioctls that
> turn on the camera.
>
> We could unconditionally turn on the camera during
> VIDIOC_SUBSCRIBE_EVENT, but it is more efficient to turn it on only
> during V4L2_EVENT_SUB_FL_SEND_INITIAL, which we believe is not a common
> usecase.
>
> To avoid a list_del if uvc_pm_get() fails, we move list_add_tail to the
> end of the function.
>
> Reviewed-by: Hans de Goede <hansg@kernel.org>
> Fixes: d1b618e79548 ("media: uvcvideo: Do not turn on the camera for some ioctls")
> Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
> ---
> drivers/media/usb/uvc/uvc_ctrl.c | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c
> index 303b7509ec47964dc1bf0e28127075b4a3867511..e84aaf130c73403a6c818deceadf404a2975c816 100644
> --- a/drivers/media/usb/uvc/uvc_ctrl.c
> +++ b/drivers/media/usb/uvc/uvc_ctrl.c
> @@ -2072,18 +2072,23 @@ static int uvc_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems)
> goto done;
> }
>
> - list_add_tail(&sev->node, &mapping->ev_subs);
> if (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL) {
> struct v4l2_event ev;
> u32 changes = V4L2_EVENT_CTRL_CH_FLAGS;
> s32 val = 0;
>
> + ret = uvc_pm_get(handle->chain->dev);
> + if (ret)
> + goto done;
> +
> if (uvc_ctrl_mapping_is_compound(mapping) ||
> __uvc_ctrl_get(handle->chain, ctrl, mapping, &val) == 0)
> changes |= V4L2_EVENT_CTRL_CH_VALUE;
>
> uvc_ctrl_fill_event(handle->chain, &ev, ctrl, mapping, val,
> changes);
> +
> + uvc_pm_put(handle->chain->dev);
Add a blank line here.
> /*
> * Mark the queue as active, allowing this initial event to be
> * accepted.
> @@ -2092,6 +2097,7 @@ static int uvc_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems)
> v4l2_event_queue_fh(sev->fh, &ev);
> }
>
> + list_add_tail(&sev->node, &mapping->ev_subs);
And here.
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> done:
> mutex_unlock(&handle->chain->ctrl_mutex);
> return ret;
>
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2025-06-30 22:09 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-30 14:20 [PATCH v3 0/8] media: uvcvideo: Invert granular PM logic + PM fix Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 1/8] media: uvcvideo: Use vb2 ioctl and fop helpers Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 2/8] media: uvcvideo: Handle locks in uvc_queue_return_buffers Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 3/8] media: uvcvideo: Split uvc_stop_streaming() Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 4/8] media: uvcvideo: Remove stream->is_streaming field Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 5/8] media: uvcvideo: Turn on the camera if V4L2_EVENT_SUB_FL_SEND_INITIAL Ricardo Ribalda
2025-06-30 22:09 ` Laurent Pinchart [this message]
2025-06-30 14:20 ` [PATCH v3 6/8] media: uvcvideo: Do not enable camera during UVCIOC_CTRL_MAP* Ricardo Ribalda
2025-06-30 22:14 ` Laurent Pinchart
2025-07-01 4:40 ` Ricardo Ribalda
2025-06-30 14:20 ` [PATCH v3 7/8] media: core: export v4l2_translate_cmd Ricardo Ribalda
2025-06-30 14:42 ` hans
2025-06-30 14:20 ` [PATCH v3 8/8] media: uvcvideo: uvc_v4l2_unlocked_ioctl: Invert PM logic Ricardo Ribalda
2025-06-30 14:43 ` Hans Verkuil
2025-06-30 22:25 ` Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250630220923.GA15184@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=hansg@kernel.org \
--cc=hverkuil@xs4all.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=ribalda@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox