From: Michael Grzeschik <mgr@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] usb: dwc2: fix multiplier handling in endpoint setup
Date: Tue, 10 Jan 2023 16:34:30 +0100 [thread overview]
Message-ID: <20230110153430.GA26065@pengutronix.de> (raw)
In-Reply-To: <78914b10-2226-1eb7-3aff-35621bacf755@pengutronix.de>
[-- Attachment #1: Type: text/plain, Size: 2891 bytes --]
On Tue, Jan 10, 2023 at 04:23:11PM +0100, Ahmad Fatoum wrote:
>Hello Michael,
>
>On 10.01.23 16:17, Michael Grzeschik wrote:
>> If the multiplier is 0 in the descriptor bitfield the multiplier count
>> is one. For calculating the multiplier count the extra function
>> usb_endpoint_maxp_mult should be used. Rework the dwc2 driver to use it
>> and make multi packages work.
>>
>> While at it, we also remove the USB_EP_MAXP_MULT and
>> USB_ENDPOINT_MAXP_MASK macros that would stay left unused and are
>> defined in include/usb/ch9.ch anyway.
>
>I assume this is a fix and should go into master?
Yes. The earlier the better.
>Could you shortly describe the symptoms?
When setting up an payload (bulk, iso, ...) endpoint with the
multiplier of 1 (usual use case) the hs_ep->mc is set to 0, the
dedicated fifo setup in ep_enable is not calculating the values right
since the "size = hs_ep->ep.maxpacket * hs_ep->mc" is wrong.
>Cheers,
>Ahmad
>
>>
>> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
>> ---
>> drivers/usb/dwc2/gadget.c | 9 +--------
>> 1 file changed, 1 insertion(+), 8 deletions(-)
>>
>> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
>> index 7070485410..5a72ba795b 100644
>> --- a/drivers/usb/dwc2/gadget.c
>> +++ b/drivers/usb/dwc2/gadget.c
>> @@ -14,13 +14,6 @@
>> #define spin_lock_irqsave(lock, flags) (void)(flags)
>> #define spin_unlock_irqrestore(lock, flags) (void)(flags)
>>
>> -#ifndef USB_ENDPOINT_MAXP_MASK
>> -#define USB_ENDPOINT_MAXP_MASK 0x07ff
>> -#endif
>> -#ifndef USB_EP_MAXP_MULT
>> -#define USB_EP_MAXP_MULT(m) (((m) & 0x1800) >> 11)
>> -#endif
>> -
>> static void kill_all_requests(struct dwc2 *, struct dwc2_ep *, int);
>>
>> static inline struct dwc2_ep *index_to_ep(struct dwc2 *dwc2,
>> @@ -484,7 +477,7 @@ static int dwc2_ep_enable(struct usb_ep *ep,
>>
>> ep_type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>> mps = usb_endpoint_maxp(desc) & USB_ENDPOINT_MAXP_MASK;
>> - mc = USB_EP_MAXP_MULT(usb_endpoint_maxp(desc));
>> + mc = usb_endpoint_maxp_mult(desc);
>>
>> /* note, we handle this here instead of dwc2_set_ep_maxpacket */
>> epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index);
>
>--
>Pengutronix e.K. | |
>Steuerwalder Str. 21 | http://www.pengutronix.de/ |
>31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
>Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2023-01-10 15:36 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-10 15:17 Michael Grzeschik
2023-01-10 15:23 ` Ahmad Fatoum
2023-01-10 15:34 ` Michael Grzeschik [this message]
2023-01-10 15:51 ` Jules Maselbas
2023-01-10 17:33 ` Ahmad Fatoum
2023-01-24 20:04 ` Michael Grzeschik
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=20230110153430.GA26065@pengutronix.de \
--to=mgr@pengutronix.de \
--cc=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.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