Linux USB
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@nxp.com>
To: Xu Yang <xu.yang_2@nxp.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Michael Grzeschik <m.grzeschik@pengutronix.de>,
	jun.li@nxp.com, imx@lists.linux.dev, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH 2/4] usb: gadget: uvc: fix interval_duration calculation
Date: Thu, 8 Jan 2026 11:04:19 -0500	[thread overview]
Message-ID: <aV/Vg4BBAa+kl+0k@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20260108-uvc-gadget-fix-patch-v1-2-8b571e5033cc@nxp.com>

On Thu, Jan 08, 2026 at 03:43:03PM +0800, Xu Yang wrote:
> According to USB specification:
>
>   For full-/high-speed isochronous endpoints, the bInterval value is
>   used as the exponent for a 2^(bInterval-1) value.
>
> To correctly convert bInterval as interval_duration:
>   interval_duration = 2^(bInterval-1) * frame_interval
>
> Because the unit of video->interval is 100ns, add a comment info to
> make it clear.
>
> Fixes: 48dbe731171e ("usb: gadget: uvc: set req_size and n_requests based on the frame interval")
> Cc: stable@vger.kernel.org
> Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
> ---
>  drivers/usb/gadget/function/uvc.h       | 2 +-
>  drivers/usb/gadget/function/uvc_video.c | 7 +++++--
>  2 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/usb/gadget/function/uvc.h b/drivers/usb/gadget/function/uvc.h
> index b3f88670bff801a43d084646974602e5995bb192..676419a049762f9eb59e1ac68b19fa34f153b793 100644
> --- a/drivers/usb/gadget/function/uvc.h
> +++ b/drivers/usb/gadget/function/uvc.h
> @@ -107,7 +107,7 @@ struct uvc_video {
>  	unsigned int width;
>  	unsigned int height;
>  	unsigned int imagesize;
> -	unsigned int interval;
> +	unsigned int interval;	/* in 100ns units */
>  	struct mutex mutex;	/* protects frame parameters */
>
>  	unsigned int uvc_num_requests;
> diff --git a/drivers/usb/gadget/function/uvc_video.c b/drivers/usb/gadget/function/uvc_video.c
> index 1c0672f707e4e5f29c937a1868f0400aad62e5cb..b1c5c1d3e9390c82cc84e736a7f288626ee69d51 100644
> --- a/drivers/usb/gadget/function/uvc_video.c
> +++ b/drivers/usb/gadget/function/uvc_video.c
> @@ -499,7 +499,7 @@ uvc_video_prep_requests(struct uvc_video *video)
>  {
>  	struct uvc_device *uvc = container_of(video, struct uvc_device, video);
>  	struct usb_composite_dev *cdev = uvc->func.config->cdev;
> -	unsigned int interval_duration = video->ep->desc->bInterval * 1250;
> +	unsigned int interval_duration;
>  	unsigned int max_req_size, req_size, header_size;
>  	unsigned int nreq;
>
> @@ -513,8 +513,11 @@ uvc_video_prep_requests(struct uvc_video *video)
>  		return;
>  	}
>
> +	interval_duration = int_pow(2, video->ep->desc->bInterval - 1);

2 << (video->ep->desc->bInterval - 1) or BIT(video->ep->desc->bInterval - 1);

int_pow() use while loop. slice better.

Reviewed-by: Frank Li <Frank.Li@nxp.com>

Frank

>  	if (cdev->gadget->speed < USB_SPEED_HIGH)
> -		interval_duration = video->ep->desc->bInterval * 10000;
> +		interval_duration *= 10000;
> +	else
> +		interval_duration *= 1250;
>
>  	nreq = DIV_ROUND_UP(video->interval, interval_duration);
>
>
> --
> 2.34.1
>

  reply	other threads:[~2026-01-08 16:04 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-08  7:43 [PATCH 0/4] Some fix patches for uvc gadget function Xu Yang
2026-01-08  7:43 ` [PATCH 1/4] usb: gadget: uvc: fix req_payload_size calculation Xu Yang
2026-01-08 15:54   ` Frank Li
2026-01-08  7:43 ` [PATCH 2/4] usb: gadget: uvc: fix interval_duration calculation Xu Yang
2026-01-08 16:04   ` Frank Li [this message]
2026-01-12  9:43     ` Xu Yang
2026-01-08  7:43 ` [PATCH 3/4] usb: gadget: uvc: improve error handling in uvcg_video_init() Xu Yang
2026-01-08 16:08   ` Frank Li
2026-01-12  9:47     ` Xu Yang
2026-01-08  7:43 ` [PATCH 4/4] usb: gadget: uvc: retry vb2_reqbufs() with vb_vmalloc_memops if use_sg fail Xu Yang
2026-01-08 16:16   ` Frank Li
2026-01-12 10:05     ` Xu Yang
2026-01-12 15:00       ` Frank Li

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=aV/Vg4BBAa+kl+0k@lizhi-Precision-Tower-5810 \
    --to=frank.li@nxp.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=imx@lists.linux.dev \
    --cc=jun.li@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=m.grzeschik@pengutronix.de \
    --cc=stable@vger.kernel.org \
    --cc=xu.yang_2@nxp.com \
    /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