All of lore.kernel.org
 help / color / mirror / Atom feed
From: Frank Wunderlich <frank-w@public-files.de>
To: linux-mediatek@lists.infradead.org
Subject: Re: [PATCH v3 3/4] usb: xhci-mtk: fix broken streams issue on 0.96 xHCI
Date: Tue, 30 Mar 2021 12:28:58 +0200	[thread overview]
Message-ID: <08CD2528-BAE2-4C2F-92B3-6CF941FD0243@public-files.de> (raw)
In-Reply-To: <1617084157-18652-3-git-send-email-chunfeng.yun@mediatek.com>

Am 30. März 2021 08:02:36 MESZ schrieb Chunfeng Yun <chunfeng.yun@mediatek.com>:
>The MediaTek 0.96 xHCI controller on some platforms does not
>support bulk stream even HCCPARAMS says supporting, due to MaxPSASize
>is set a default value 1 by mistake, here use XHCI_BROKEN_STREAMS
>quirk to fix it.
>
>Fixes: 94a631d91ad3 ("usb: xhci-mtk: check hcc_params after adding
>primary hcd")
>Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
>---
>v2~3: no changes
>---
> drivers/usb/host/xhci-mtk.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c
>index c1bc40289833..4e3d53cc24f4 100644
>--- a/drivers/usb/host/xhci-mtk.c
>+++ b/drivers/usb/host/xhci-mtk.c
>@@ -411,6 +411,13 @@ static void xhci_mtk_quirks(struct device *dev,
>struct xhci_hcd *xhci)
> 	xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
> 	if (mtk->lpm_support)
> 		xhci->quirks |= XHCI_LPM_SUPPORT;
>+
>+	/*
>+	 * MTK xHCI 0.96: PSA is 1 by default even if doesn't support stream,
>+	 * and it's 3 when support it.
>+	 */
>+	if (xhci->hci_version < 0x100 && HCC_MAX_PSA(xhci->hcc_params) == 4)
>+		xhci->quirks |= XHCI_BROKEN_STREAMS;
> }
> 
> /* called during probe() after chip reset completes */
>@@ -572,7 +579,8 @@ static int xhci_mtk_probe(struct platform_device
>*pdev)
> 	if (ret)
> 		goto put_usb3_hcd;
> 
>-	if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
>+	if (HCC_MAX_PSA(xhci->hcc_params) >= 4 &&
>+	    !(xhci->quirks & XHCI_BROKEN_STREAMS))
> 		xhci->shared_hcd->can_do_streams = 1;
> 
> 	ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);

Hi,

Should this not be backported to stable?
The commit seems to be from 2017

How to reproduce the issue?
regards Frank

_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

  reply	other threads:[~2021-03-30 10:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-30  6:02 [PATCH v3 1/4] dt-bindings: usb: mtk-xhci: support property usb2-lpm-disable Chunfeng Yun
2021-03-30  6:02 ` [PATCH v3 2/4] dt-bindings: usb: mtk-xhci: remove redefinitions of usb3-lpm-capable Chunfeng Yun
2021-03-30  6:02 ` [PATCH v3 3/4] usb: xhci-mtk: fix broken streams issue on 0.96 xHCI Chunfeng Yun
2021-03-30 10:28   ` Frank Wunderlich [this message]
2021-03-30  6:02 ` [PATCH v3 4/4] usb: xhci-mtk: support quirk to disable usb2 lpm Chunfeng Yun
  -- strict thread matches above, loose matches on Subject: below --
2021-03-29  7:20 [PATCH v3 1/4] dt-bindings: usb: mtk-xhci: support property usb2-lpm-disable Chunfeng Yun
2021-03-29  7:20 ` [PATCH v3 3/4] usb: xhci-mtk: fix broken streams issue on 0.96 xHCI Chunfeng Yun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=08CD2528-BAE2-4C2F-92B3-6CF941FD0243@public-files.de \
    --to=frank-w@public-files.de \
    --cc=linux-mediatek@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.