mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3: gadget: Fix TX FIFO size for HS ISOC endpoints
@ 2024-08-27  5:49 Akash Kumar
  2024-08-27 23:15 ` Thinh Nguyen
  0 siblings, 1 reply; 7+ messages in thread
From: Akash Kumar @ 2024-08-27  5:49 UTC (permalink / raw)
  To: Thinh Nguyen, Greg Kroah-Hartman, Jing Leng, Felipe Balbi,
	Jack Pham, kernel, Wesley Cheng, Laurent Pinchart, Daniel Scally
  Cc: Vijayavardhan Vennapusa, Krishna Kurapati, linux-usb,
	linux-kernel, Akash Kumar

Use 2K TX FIFO size for low-resolution UVC cameras to support the
maximum possible UVC instances. Restrict 2K TX FIFO size based on
the minimum maxburst required to run low-resolution UVC cameras.

Signed-off-by: Akash Kumar <quic_akakum@quicinc.com>
---
 drivers/usb/dwc3/gadget.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index 89fc690fdf34..f342ccda6705 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -788,6 +788,10 @@ static int dwc3_gadget_resize_tx_fifos(struct dwc3_ep *dep)
 	     usb_endpoint_xfer_isoc(dep->endpoint.desc)) && DWC3_IP_IS(DWC31))
 		num_fifos = dwc->tx_fifo_resize_max_num;
 
+	if (dep->endpoint.maxburst <= 1 &&
+	    usb_endpoint_xfer_isoc(dep->endpoint.desc))
+		num_fifos = 2;
+
 	/* FIFO size for a single buffer */
 	fifo = dwc3_gadget_calc_tx_fifo_size(dwc, 1);
 
-- 
2.17.1


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

end of thread, other threads:[~2024-08-29 23:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-27  5:49 [PATCH] usb: dwc3: gadget: Fix TX FIFO size for HS ISOC endpoints Akash Kumar
2024-08-27 23:15 ` Thinh Nguyen
2024-08-28  2:06   ` Thinh Nguyen
2024-08-28  4:11   ` AKASH KUMAR
2024-08-28 23:45     ` Thinh Nguyen
2024-08-29  7:37       ` AKASH KUMAR
2024-08-29 23:08         ` Thinh Nguyen

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

all inboxes | Powered by JetHome®