public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize
@ 2016-07-07  9:11 Baolin Wang
  2016-07-07 12:51 ` Michal Nazarewicz
  2016-07-08 13:21 ` Felipe Balbi
  0 siblings, 2 replies; 12+ messages in thread
From: Baolin Wang @ 2016-07-07  9:11 UTC (permalink / raw)
  To: balbi
  Cc: gregkh, eu, mina86, r.baldyga, dan.carpenter, linux-usb,
	linux-kernel, broonie, baolin.wang

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>
---
 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));
 		if (req == NULL)
 			return -ENOMEM;
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2016-07-11  2:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-07  9:11 [PATCH] usb: gadget: f_midi: Add checking if it need align buffer's size to an ep's maxpacketsize Baolin Wang
2016-07-07 12:51 ` Michal Nazarewicz
2016-07-08  2:25   ` Baolin Wang
2016-07-08 13:04     ` Michal Nazarewicz
2016-07-08 13:25       ` Felipe Balbi
2016-07-08 13:27         ` Felipe Balbi
2016-07-11  2:25           ` Baolin Wang
2016-07-08 14:05         ` Michal Nazarewicz
2016-07-11  2:26       ` Baolin Wang
2016-07-08 13:21 ` Felipe Balbi
2016-07-08 14:04   ` Michal Nazarewicz
2016-07-11  2:22   ` Baolin Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox