From: Daniel Mack <daniel@zonque.org>
To: Peter Chen <peter.chen@freescale.com>
Cc: balbi@ti.com, linux-usb@vger.kernel.org, andrzej.p@samsung.com,
tiwai@suse.de, stable@vger.kernel.org,
Alan Stern <stern@rowland.harvard.edu>
Subject: Re: [PATCH v2 1/1] usb: gadget: f_uac2: finalize wMaxPacketSize according to bandwidth
Date: Thu, 23 Jul 2015 23:02:49 +0200 [thread overview]
Message-ID: <55B15679.5060102@zonque.org> (raw)
In-Reply-To: <20150723010037.GA8485@shlinux2>
On 07/23/2015 03:00 AM, Peter Chen wrote:
> Thanks, it is correct. But looking the code at afunc_set_alt:
> the method of calculating uac2->p_pktsize seems incorrect, it
> may need to change like below:
Ok, sorry. I just read the code again an figured you're right here, this
needs fixing. It doesn't really matter for the currently configured
values of bInterval though, as p_interval will always be 1000 for both
HS and FS.
> @@ -1176,15 +1188,16 @@ afunc_set_alt(struct usb_function *fn, unsigned intf, unsigned alt)
> factor = 1000;
> } else {
> ep_desc = &hs_epin_desc;
> - factor = 125;
> + factor = 8000;
> }
>
> /* pre-compute some values for iso_complete() */
> uac2->p_framesize = opts->p_ssize *
> num_channels(opts->p_chmask);
> rate = opts->p_srate * uac2->p_framesize;
> - uac2->p_interval = (1 << (ep_desc->bInterval - 1)) * factor;
> - uac2->p_pktsize = min_t(unsigned int, rate / uac2->p_interval,
> + uac2->p_interval = factor / (1 << (ep_desc->bInterval - 1));
Your version is correct. b_interval needs to get larger when bInterval
decreases of course.
> + uac2->p_pktsize = min_t(unsigned int, DIV_ROUND_UP(rate,
> + uac2->p_interval),
> prm->max_psize);
This change, however, is not needed. uac2->p_pktsize needs to be rounded
down, so an extra frame can be added when the residue accumulator
overflows. The reason is simply that we can only send packets that
contain full sample frames, so we have to evenly distribute those
left-over samples that accumulate in one go once we have enough to fill
a complete frame.
Could you put the above change in an extra patch, as it's not directly
related to your wMaxPacketSize change?
Thanks,
Daniel
next prev parent reply other threads:[~2015-07-23 21:02 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-22 6:45 [PATCH v2 1/1] usb: gadget: f_uac2: finalize wMaxPacketSize according to bandwidth Peter Chen
2015-07-22 8:04 ` Daniel Mack
2015-07-22 7:17 ` Peter Chen
2015-07-22 8:23 ` Peter Chen
2015-07-22 10:11 ` Daniel Mack
2015-07-23 1:00 ` Peter Chen
2015-07-23 6:11 ` Daniel Mack
2015-07-23 8:35 ` Peter Chen
2015-07-23 10:15 ` Daniel Mack
2015-07-23 20:09 ` Alan Stern
2015-07-23 21:02 ` Daniel Mack [this message]
2015-07-24 3:59 ` Peter Chen
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=55B15679.5060102@zonque.org \
--to=daniel@zonque.org \
--cc=andrzej.p@samsung.com \
--cc=balbi@ti.com \
--cc=linux-usb@vger.kernel.org \
--cc=peter.chen@freescale.com \
--cc=stable@vger.kernel.org \
--cc=stern@rowland.harvard.edu \
--cc=tiwai@suse.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.