xhci: Use more event ring segment table entries
authorJonathan Bell <jonathan@raspberrypi.com>
Thu, 13 Jul 2023 13:43:21 +0000 (14:43 +0100)
committerDom Cobley <popcornmix@gmail.com>
Mon, 19 Feb 2024 11:33:37 +0000 (11:33 +0000)
commitbc8c85317867a14876ec0847108d316201848eb8
tree420c09b6d698466e4beb9356e9068845dc26088d
parent59c4ec3347ab18c36cefbd304e9bab70702f2dcc
xhci: Use more event ring segment table entries

Users have reported log spam created by "Event Ring Full" xHC event
TRBs. These are caused by interrupt latency in conjunction with a very
busy set of devices on the bus. The errors are benign, but throughput
will suffer as the xHC will pause processing of transfers until the
event ring is drained by the kernel. Expand the number of event TRB slots
available by increasing the number of event ring segments in the ERST.

Controllers have a hardware-defined limit as to the number of ERST
entries they can process, so make the actual number in use
min(ERST_MAX_SEGS, hw_max).

Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
drivers/usb/host/xhci-mem.c
drivers/usb/host/xhci.h