From: Hans de Goede <hansg@kernel.org>
To: Ricardo Ribalda <ribalda@chromium.org>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Guennadi Liakhovetski <guennadi.liakhovetski@intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-usb@vger.kernel.org
Subject: Re: [PATCH v7 3/5] media: uvcvideo: Introduce dev->meta_formats
Date: Mon, 7 Jul 2025 13:35:24 +0200 [thread overview]
Message-ID: <7ee5018a-8479-4c2c-a997-2d2900f937c1@kernel.org> (raw)
In-Reply-To: <20250617-uvc-meta-v7-3-9c50623e2286@chromium.org>
Hi Ricardo,
On 17-Jun-25 16:42, Ricardo Ribalda wrote:
> Right now, there driver supports devices with one or two metadata
> formats. Prepare it to support more than two metadata formats.
>
> This is achieved with the introduction of a new field `meta_formats`,
> that contains the array of metadata formats supported by the device, in
> the order expected by userspace.
>
> Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Thank you for doing this. See my review remarks on patch 4/5 .
Regards,
Hans
> ---
> drivers/media/usb/uvc/uvc_driver.c | 7 ++++++
> drivers/media/usb/uvc/uvc_metadata.c | 46 ++++++++++++++++++++++++++++++------
> drivers/media/usb/uvc/uvcvideo.h | 2 ++
> 3 files changed, 48 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c
> index 62eb45435d8bec5c955720ecb46fb8936871e6cc..9de5abb43e19d9e876cddc5d7124592953db89ac 100644
> --- a/drivers/media/usb/uvc/uvc_driver.c
> +++ b/drivers/media/usb/uvc/uvc_driver.c
> @@ -2315,6 +2315,13 @@ static int uvc_probe(struct usb_interface *intf,
> goto error;
> }
>
> + ret = uvc_meta_init(dev);
> + if (ret < 0) {
> + dev_err(&dev->udev->dev,
> + "Error initializing the metadata formats (%d)\n", ret);
> + goto error;
> + }
> +
> if (dev->quirks & UVC_QUIRK_NO_RESET_RESUME)
> udev->quirks &= ~USB_QUIRK_RESET_RESUME;
>
> diff --git a/drivers/media/usb/uvc/uvc_metadata.c b/drivers/media/usb/uvc/uvc_metadata.c
> index 82de7781f5b6b70c5ba16bcba9e0741231231904..bc84e849174397f41d1e20bf890a876eeb5a9c67 100644
> --- a/drivers/media/usb/uvc/uvc_metadata.c
> +++ b/drivers/media/usb/uvc/uvc_metadata.c
> @@ -64,14 +64,20 @@ static int uvc_meta_v4l2_try_format(struct file *file, void *fh,
> struct uvc_device *dev = stream->dev;
> struct v4l2_meta_format *fmt = &format->fmt.meta;
> u32 fmeta = fmt->dataformat;
> + u32 i;
>
> if (format->type != vfh->vdev->queue->type)
> return -EINVAL;
>
> + for (i = 0; (fmeta != dev->meta_formats[i]) && dev->meta_formats[i];
> + i++)
> + ;
> + if (!dev->meta_formats[i])
> + fmeta = V4L2_META_FMT_UVC;
> +
> memset(fmt, 0, sizeof(*fmt));
>
> - fmt->dataformat = fmeta == dev->info->meta_format
> - ? fmeta : V4L2_META_FMT_UVC;
> + fmt->dataformat = fmeta;
> fmt->buffersize = UVC_METADATA_BUF_SIZE;
>
> return 0;
> @@ -112,17 +118,21 @@ static int uvc_meta_v4l2_enum_formats(struct file *file, void *fh,
> struct v4l2_fh *vfh = file->private_data;
> struct uvc_streaming *stream = video_get_drvdata(vfh->vdev);
> struct uvc_device *dev = stream->dev;
> - u32 index = fdesc->index;
> + u32 i;
> +
> + if (fdesc->type != vfh->vdev->queue->type)
> + return -EINVAL;
>
> - if (fdesc->type != vfh->vdev->queue->type ||
> - index > 1U || (index && !dev->info->meta_format))
> + for (i = 0; (i < fdesc->index) && dev->meta_formats[i]; i++)
> + ;
> + if (!dev->meta_formats[i])
> return -EINVAL;
>
> memset(fdesc, 0, sizeof(*fdesc));
>
> fdesc->type = vfh->vdev->queue->type;
> - fdesc->index = index;
> - fdesc->pixelformat = index ? dev->info->meta_format : V4L2_META_FMT_UVC;
> + fdesc->index = i;
> + fdesc->pixelformat = dev->meta_formats[i];
>
> return 0;
> }
> @@ -174,3 +184,25 @@ int uvc_meta_register(struct uvc_streaming *stream)
> V4L2_BUF_TYPE_META_CAPTURE,
> &uvc_meta_fops, &uvc_meta_ioctl_ops);
> }
> +
> +int uvc_meta_init(struct uvc_device *dev)
> +{
> + static const u32 uvch_only[] = {V4L2_META_FMT_UVC, 0};
> + static const u32 d4xx_format[] = {V4L2_META_FMT_UVC, V4L2_META_FMT_D4XX,
> + 0};
> +
> + switch (dev->info->meta_format) {
> + case V4L2_META_FMT_D4XX:
> + dev->meta_formats = d4xx_format;
> + break;
> + case 0:
> + dev->meta_formats = uvch_only;
> + break;
> + default:
> + dev_err(&dev->udev->dev, "Unknown metadata format 0x%x\n",
> + dev->info->meta_format);
> + return -EINVAL;
> + }
> +
> + return 0;
> +}
> diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h
> index 11d6e3c2ebdfbabd7bbe5722f88ff85f406d9bb6..502f1d5608637cd28ce6f01aee31c4f5df160081 100644
> --- a/drivers/media/usb/uvc/uvcvideo.h
> +++ b/drivers/media/usb/uvc/uvcvideo.h
> @@ -581,6 +581,7 @@ struct uvc_device {
> char name[32];
>
> const struct uvc_device_info *info;
> + const u32 *meta_formats; /* Zero-ended list of meta formats */
>
> atomic_t nmappings;
>
> @@ -751,6 +752,7 @@ int uvc_query_ctrl(struct uvc_device *dev, u8 query, u8 unit,
> void uvc_video_clock_update(struct uvc_streaming *stream,
> struct vb2_v4l2_buffer *vbuf,
> struct uvc_buffer *buf);
> +int uvc_meta_init(struct uvc_device *dev);
> int uvc_meta_register(struct uvc_streaming *stream);
>
> int uvc_register_video_device(struct uvc_device *dev,
>
next prev parent reply other threads:[~2025-07-07 11:35 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-17 14:42 [PATCH v7 0/5] media: uvcvideo: Introduce V4L2_META_FMT_UVC_MSXU_1_5 + other meta fixes Ricardo Ribalda
2025-06-17 14:42 ` [PATCH v7 1/5] media: uvcvideo: Do not mark valid metadata as invalid Ricardo Ribalda
2025-06-17 14:42 ` [PATCH v7 2/5] media: Documentation: Add note about UVCH length field Ricardo Ribalda
2025-06-17 14:42 ` [PATCH v7 3/5] media: uvcvideo: Introduce dev->meta_formats Ricardo Ribalda
2025-07-07 11:35 ` Hans de Goede [this message]
2025-06-17 14:42 ` [PATCH v7 4/5] media: uvcvideo: Introduce V4L2_META_FMT_UVC_MSXU_1_5 Ricardo Ribalda
2025-07-07 11:34 ` Hans de Goede
2025-07-07 11:44 ` Ricardo Ribalda
2025-07-07 11:52 ` Hans de Goede
2025-06-17 14:42 ` [PATCH v7 5/5] media: uvcvideo: Auto-set UVC_QUIRK_MSXU_META Ricardo Ribalda
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=7ee5018a-8479-4c2c-a997-2d2900f937c1@kernel.org \
--to=hansg@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=guennadi.liakhovetski@intel.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-usb@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
all inboxes | Powered by JetHome®