diff mbox series

[v3] usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 controller

Message ID 20220926193140.607172-1-jens.glathe@oldschoolsolutions.biz (mailing list archive)
State Accepted
Commit 4f547472380136718b56064ea5689a61e135f904
Headers show
Series [v3] usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 controller | expand

Commit Message

Jens Glathe Sept. 26, 2022, 7:31 p.m. UTC
This appears to fix the error:
"xhci_hcd <address>; ERROR Transfer event TRB DMA ptr not part of
current TD ep_index 2 comp_code 13" that appear spuriously (or pretty
often) when using a r8152 USB3 ethernet adapter with integrated hub.

ASM1042 reports as a 0.96 controller, but appears to behave more like 1.0

Inspred by this email thread: https://markmail.org/thread/7vzqbe7t6du6qsw3

Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
 drivers/usb/host/xhci-pci.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Comments

Mathias Nyman Sept. 28, 2022, 3:24 p.m. UTC | #1
On 26.9.2022 22.31, Jens Glathe wrote:
> This appears to fix the error:
> "xhci_hcd <address>; ERROR Transfer event TRB DMA ptr not part of
> current TD ep_index 2 comp_code 13" that appear spuriously (or pretty
> often) when using a r8152 USB3 ethernet adapter with integrated hub.
> 
> ASM1042 reports as a 0.96 controller, but appears to behave more like 1.0
> 
> Inspred by this email thread: https://markmail.org/thread/7vzqbe7t6du6qsw3
> 
> Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>

Adding this to queue

> ---

In the future, As Alan also pointed out, please list the changes since last version here.

Something like:

changes since v2
  - add subsystem to subject line
  - removed host 0.96 version check

Thanks
-Mathias
Jens Glathe Sept. 28, 2022, 4:39 p.m. UTC | #2
Thank you, will do. This us part of the mail, not the patch, right?

Von meinem iPhone gesendet

> Am 28.09.2022 um 17:23 schrieb Mathias Nyman <mathias.nyman@linux.intel.com>:
> 
> On 26.9.2022 22.31, Jens Glathe wrote:
>> This appears to fix the error:
>> "xhci_hcd <address>; ERROR Transfer event TRB DMA ptr not part of
>> current TD ep_index 2 comp_code 13" that appear spuriously (or pretty
>> often) when using a r8152 USB3 ethernet adapter with integrated hub.
>> ASM1042 reports as a 0.96 controller, but appears to behave more like 1.0
>> Inspred by this email thread: https://markmail.org/thread/7vzqbe7t6du6qsw3
>> Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
> 
> Adding this to queue
> 
>> ---
> 
> In the future, As Alan also pointed out, please list the changes since last version here.
> 
> Something like:
> 
> changes since v2
> - add subsystem to subject line
> - removed host 0.96 version check
> 
> Thanks
> -Mathias
diff mbox series

Patch

diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
index dce6c0ec8d34..ef2df1b01168 100644
--- a/drivers/usb/host/xhci-pci.c
+++ b/drivers/usb/host/xhci-pci.c
@@ -306,8 +306,14 @@  static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
 	}
 
 	if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA &&
-		pdev->device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI)
+		pdev->device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI) {
+		/*
+		 * try to tame the ASMedia 1042 controller which reports 0.96
+		 * but appears to behave more like 1.0
+		 */
+		xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
 		xhci->quirks |= XHCI_BROKEN_STREAMS;
+	}
 	if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA &&
 		pdev->device == PCI_DEVICE_ID_ASMEDIA_1042A_XHCI) {
 		xhci->quirks |= XHCI_TRUST_TX_LENGTH;