Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1440207

Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize

Path csiph.com!aioe.org!bofh.it!news.nic.it!robomod
From Baolin Wang <baolin.wang@linaro.org>
Newsgroups linux.kernel
Subject Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize
Date Mon, 11 Jul 2016 04:30:02 +0200
Message-ID <rTz8S-TM-9@gated-at.bofh.it> (permalink)
References <rSdDr-4Xv-7@gated-at.bofh.it> <rSh4m-71b-39@gated-at.bofh.it> <rStIe-6ZF-7@gated-at.bofh.it> <rSDHz-5cy-9@gated-at.bofh.it> <rSE0V-5l8-9@gated-at.bofh.it> <rSE0V-5l8-7@gated-at.bofh.it>
X-Original-To Felipe Balbi <balbi@kernel.org>
Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=wLoS16OBwZWnuz17xSCj6jh/d8TjwXCQpc2o9cuAWv0=; b=e3iJ96jLibRwmj34Uy2+Ak1hlwkdh+m1zSsXqFK2TariW0BFu8XXN5OgW/SUzBcdMi hm1a+Mb8VIbDybQ//0wKi3AgVM8I7WWC8BT9xUv3Pxrir/53p/tgQOM6WnZ26EbM8GUH isNqYs8thFQ0VKVaIG2jkapY5ghgd7Ne8yxlI=
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=wLoS16OBwZWnuz17xSCj6jh/d8TjwXCQpc2o9cuAWv0=; b=APwQm6kXz6ES3Lgn4ElGgonwl7+J5g4ftxuoq8YzgnjDaoyACw/fqD6h1lMe/JS8b/ 8NeglfK9YJCiNaJpRkLlboUnS2ootGdlW5sQNvKKfAZpaNaI8lszZO14bu7Epi/T5AMd CuyqF+bbqQFQlhMAfrPkGKQnluzmnUcLGr+FQC6zJTh9+F3LU9iNF8mCw92XsKiC7nzj gXKlPtxR6mQT0xMOM2N8upU4vRn/ssvMvusPtFNRk8lvLll8O2xp/2gxSk61429K0Thn 8OEPN8TDnHDAx26MlZArW5Np51Bgqv9VbvYj9Xl622WqkRibQGdPO0yCr6j7hlwUhFrE GXDg==
X-Gm-Message-State ALyK8tJQ/wvZNtjKSAVUXlmiC0BvnQn1hzB36zoG4MSEir70K9LdrfobxHLnLUylDpjELuU0S311sLWxwEhfCCWy
X-Received by 10.37.5.7 with SMTP id 7mr8948260ybf.174.1468203923783; Sun, 10 Jul 2016 19:25:23 -0700 (PDT)
MIME-Version 1.0
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding 8BIT
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 153
Organization linux.* mail to news gateway
X-Original-Cc Michal Nazarewicz <mina86@mina86.com>, Felipe Ferreri Tonello <eu@felipetonello.com>, Greg KH <gregkh@linuxfoundation.org>, dan.carpenter@oracle.com, USB <linux-usb@vger.kernel.org>, LKML <linux-kernel@vger.kernel.org>, Mark Brown <broonie@kernel.org>
X-Original-Date Mon, 11 Jul 2016 10:25:23 +0800
X-Original-Message-ID <CAMz4kuJ8gLaKupVQgJM6=NR38K9TLphthFCqq++jrUJRaPbPXg@mail.gmail.com>
X-Original-References <8ff4f814afc70cf9c00cc6718d7ae93fae94884a.1467881565.git.baolin.wang@linaro.org> <xa1tlh1dk3w9.fsf@mina86.com> <CAMz4kuLm_mGFvSTXrWhEtw8hrDMesMai2Utym4KN_ph_6WVWxQ@mail.gmail.com> <xa1t7fcwth54.fsf@mina86.com> <87inwgi7nh.fsf@linux.intel.com> <87furki7ki.fsf@linux.intel.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1440207

Show key headers only | View raw


On 8 July 2016 at 21:27, Felipe Balbi <balbi@kernel.org> wrote:
>
> Hi again,
>
> Felipe Balbi <balbi@kernel.org> writes:
>> Michal Nazarewicz <mina86@mina86.com> writes:
>>> On Fri, Jul 08 2016, Baolin Wang wrote:
>>>> On 7 July 2016 at 20:51, Michal Nazarewicz <mina86@mina86.com> wrote:
>>>>> On Thu, Jul 07 2016, Baolin Wang wrote:
>>>>>> Some gadget device (such as dwc3 gadget) requires quirk_ep_out_aligned_size
>>>>>> attribute, which means it need to align the request buffer's size to an ep's
>>>>>> maxpacketsize.
>>>>>>
>>>>>> Thus we add usb_ep_align_maybe() function to check if it is need to align
>>>>>> the request buffer's size to an ep's maxpacketsize.
>>>>>>
>>>>>> Signed-off-by: Baolin Wang <baolin.wang@linaro.org>
>>>>>
>>>>> Acked-by: Michal Nazarewicz <mina86@mina86.com>
>>>>>
>>>>>> ---
>>>>>>  drivers/usb/gadget/function/f_midi.c |   18 +++++++++++-------
>>>>>>  1 file changed, 11 insertions(+), 7 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/usb/gadget/function/f_midi.c b/drivers/usb/gadget/function/f_midi.c
>>>>>> index 58fc199..2e3f11e 100644
>>>>>> --- a/drivers/usb/gadget/function/f_midi.c
>>>>>> +++ b/drivers/usb/gadget/function/f_midi.c
>>>>>> @@ -328,7 +328,7 @@ static int f_midi_start_ep(struct f_midi *midi,
>>>>>>  static int f_midi_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
>>>>>>  {
>>>>>>       struct f_midi *midi = func_to_midi(f);
>>>>>> -     unsigned i;
>>>>>> +     unsigned i, length;
>>>>>>       int err;
>>>>>>
>>>>>>       /* we only set alt for MIDIStreaming interface */
>>>>>> @@ -345,9 +345,11 @@ static int f_midi_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
>>>>>>
>>>>>>       /* pre-allocate write usb requests to use on f_midi_transmit. */
>>>>>>       while (kfifo_avail(&midi->in_req_fifo)) {
>>>>>> -             struct usb_request *req =
>>>>>> -                     midi_alloc_ep_req(midi->in_ep, midi->buflen);
>>>>>> +             struct usb_request *req;
>>>>>>
>>>>>> +             length = usb_ep_align_maybe(midi->gadget, midi->in_ep,
>>>>>> +                                         midi->buflen);
>>>>>> +             req = midi_alloc_ep_req(midi->in_ep, length);
>>>>>>               if (req == NULL)
>>>>>>                       return -ENOMEM;
>>>>>>
>>>>>> @@ -359,10 +361,12 @@ static int f_midi_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
>>>>>>
>>>>>>       /* allocate a bunch of read buffers and queue them all at once. */
>>>>>>       for (i = 0; i < midi->qlen && err == 0; i++) {
>>>>>> -             struct usb_request *req =
>>>>>> -                     midi_alloc_ep_req(midi->out_ep,
>>>>>> -                             max_t(unsigned, midi->buflen,
>>>>>> -                                     bulk_out_desc.wMaxPacketSize));
>>>>>> +             struct usb_request *req;
>>>>>> +
>>>>>> +             length = usb_ep_align_maybe(midi->gadget, midi->out_ep,
>>>>>> +                                         midi->buflen);
>>>>>> +             req = midi_alloc_ep_req(midi->out_ep,
>>>>>> +                     max_t(unsigned, length, bulk_out_desc.wMaxPacketSize));
>>>>>
>>>>> Perhaps:
>>>>>
>>>>> +               length = midi->buflen < bulk_out_desc.wMaxPacketSize
>>>>> +                       ? bulk_out_desc.wMaxPacketSize
>>>>> +                       : usb_ep_align_maybe(midi->gadget, midi->out_ep,
>>>>> +                                            midi->buflen);
>>>>> +               req = midi_alloc_ep_req(midi->out_ep, length);
>>>>>
>>>>> I find it somewhat cleaner.  Up to you.
>>>>
>>>> But if the gadget does not requires 'quirk_ep_out_aligned_size', then
>>>> we also can keep midi->buflen length although midi->buflen <
>>>> bulk_out_desc.wMaxPacketSize, right? Thanks for your comment.
>>>
>>> I don’t know.  That’s not what the original code was doing.  The
>>> original code was using:
>>>
>>>     max_t(unsigned, midi->buflen, bulk_out_desc.wMaxPacketSize));
>>>
>>> for some reason.>
>>
>> My take on this is that it's calling max_t() to try and align to
>> wMaxPacketSize. We can see from original commit what was the intent:
>>
>> commit 03d27ade4941076b34c823d63d91dc895731a595
>> Author: Felipe F. Tonello <eu@felipetonello.com>
>> Date:   Wed Mar 9 19:39:30 2016 +0000
>>
>>     usb: gadget: f_midi: Fixed a bug when buflen was smaller than wMaxPacketSize
>>
>>     buflen by default (256) is smaller than wMaxPacketSize (512) in high-speed
>>     devices.
>>
>>     That caused the OUT endpoint to freeze if the host send any data packet of
>>     length greater than 256 bytes.
>>
>>     This is an example dump of what happended on that enpoint:
>>     HOST:   [DATA][Length=260][...]
>>     DEVICE: [NAK]
>>     HOST:   [PING]
>>     DEVICE: [NAK]
>>     HOST:   [PING]
>>     DEVICE: [NAK]
>>     ...
>>     HOST:   [PING]
>>     DEVICE: [NAK]
>>
>>     This patch fixes this problem by setting the minimum usb_request's buffer size
>>     for the OUT endpoint as its wMaxPacketSize.
>>
>>     Acked-by: Michal Nazarewicz <mina86@mina86.com>
>>     Signed-off-by: Felipe F. Tonello <eu@felipetonello.com>
>>     Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
>>
>> diff --git a/drivers/usb/gadget/function/f_midi.c b/drivers/usb/gadget/function/f_midi.c
>> index 56e2dde99b03..9ad51dcab982 100644
>> --- a/drivers/usb/gadget/function/f_midi.c
>> +++ b/drivers/usb/gadget/function/f_midi.c
>> @@ -360,7 +360,9 @@ static int f_midi_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
>>       /* allocate a bunch of read buffers and queue them all at once. */
>>       for (i = 0; i < midi->qlen && err == 0; i++) {
>>               struct usb_request *req =
>> -                     midi_alloc_ep_req(midi->out_ep, midi->buflen);
>> +                     midi_alloc_ep_req(midi->out_ep,
>> +                             max_t(unsigned, midi->buflen,
>> +                                     bulk_out_desc.wMaxPacketSize));
>>               if (req == NULL)
>>                       return -ENOMEM;
>>
>> Seems to me usb_ep_align_maybe() would cover this case just as well. But
>> then, Felipe's UDC driver seems to need quirk_ep_out_aligned_size. Felipe?
>
> another way to look at this is that buflen < wMaxPacketSize for bulk
> endpoints is kinda weird, so we might just go ahead and allocate buflen
> aligned to wMaxPacketSize for OUT eps.

OK. So I will accept Michal's suggestion as below:

 length = midi->buflen < bulk_out_desc.wMaxPacketSize
+                       ? bulk_out_desc.wMaxPacketSize
+                       : usb_ep_align_maybe(midi->gadget, midi->out_ep,
+                                            midi->buflen);
+               req = midi_alloc_ep_req(midi->out_ep, length);

-- 
Baolin.wang
Best Regards

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Baolin Wang <baolin.wang@linaro.org> - 2016-07-07 11:20 +0200
  Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Michal Nazarewicz <mina86@mina86.com> - 2016-07-07 15:00 +0200
    Re: [PATCH] usb: gadget: f_midi: Add checking if it need align  buffer's size to an ep's maxpacketsize Baolin Wang <baolin.wang@linaro.org> - 2016-07-08 04:30 +0200
      Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Michal Nazarewicz <mina86@mina86.com> - 2016-07-08 15:10 +0200
        Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Felipe Balbi <balbi@kernel.org> - 2016-07-08 15:30 +0200
          Re: [PATCH] usb: gadget: f_midi: Add checking if it need align  buffer's size to an ep's maxpacketsize Baolin Wang <baolin.wang@linaro.org> - 2016-07-11 04:30 +0200
        Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Felipe Balbi <balbi@kernel.org> - 2016-07-08 15:30 +0200
          Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Michal Nazarewicz <mina86@mina86.com> - 2016-07-08 16:10 +0200
        Re: [PATCH] usb: gadget: f_midi: Add checking if it need align  buffer's size to an ep's maxpacketsize Baolin Wang <baolin.wang@linaro.org> - 2016-07-11 04:30 +0200
  Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Felipe Balbi <balbi@kernel.org> - 2016-07-08 15:30 +0200
    Re: [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Michal Nazarewicz <mina86@mina86.com> - 2016-07-08 16:10 +0200
    Re: [PATCH] usb: gadget: f_midi: Add checking if it need align  buffer's size to an ep's maxpacketsize Baolin Wang <baolin.wang@linaro.org> - 2016-07-11 04:30 +0200

csiph-web