From: Greg KH <gregkh@linuxfoundation.org>
To: liulongfang <liulongfang@huawei.com>
Cc: linux-usb@vger.kernel.org, yisen.zhuang@huawei.com,
tanxiaofei@huawei.com, mathias.nyman@intel.com
Subject: Re: [RFC PATCH] USB: xhci: Enable HCE event reset function
Date: Wed, 18 Nov 2020 10:14:45 +0100 [thread overview]
Message-ID: <X7TmBT2LbdJbDypG@kroah.com> (raw)
In-Reply-To: <0877eba8-dcce-0c5e-98b4-64dd0fc06e4f@huawei.com>
On Wed, Nov 18, 2020 at 05:04:36PM +0800, liulongfang wrote:
> On 2020/11/18 15:02, Greg KH Wrote:
> > On Wed, Nov 18, 2020 at 11:36:13AM +0800, Longfang Liu wrote:
> >> The HCE(Host Controller Error) event has been defined in
> >> the XHCI driver but has not been used. If we want to use
> >> the HCE event to reset the controller, can we implement
> >> it in the interrupt function as follows:
> >>
> >> xhci_irq()
> >> |----xhci_halt()
> >> |----xhci_shutdown()
> >> |----xhci_start()
> >> |----xhci_run()
> >>
> >> Signed-off-by: Longfang Liu <liulongfang@huawei.com>
> >> ---
> >> drivers/usb/host/xhci-ring.c | 10 ++++++++++
> >> 1 file changed, 10 insertions(+)
> >
> > $ ./scripts/get_maintainer.pl --file drivers/usb/host/xhci-ring.c
> > Mathias Nyman <mathias.nyman@intel.com> (supporter:USB XHCI DRIVER)
> > Greg Kroah-Hartman <gregkh@linuxfoundation.org> (supporter:USB SUBSYSTEM)
> > linux-usb@vger.kernel.org (open list:USB XHCI DRIVER)
> > linux-kernel@vger.kernel.org (open list)
> >
> > Any reason to not include the maintainer of the xhci driver here?
> OK, I will include the maintainer in the next patch.
> >
> >> diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
> >> index 2c255d0..87b3a40 100644
> >> --- a/drivers/usb/host/xhci-ring.c
> >> +++ b/drivers/usb/host/xhci-ring.c
> >> @@ -2857,6 +2857,16 @@ irqreturn_t xhci_irq(struct usb_hcd *hcd)
> >> goto out;
> >> }
> >>
> >> + if (status & STS_HCE) {
> >> + xhci_warn(xhci, "WARNING: Host Controller Error\n");
> >> + xhci_halt(xhci);
> >> + xhci_shutdown(hcd);
> >> + xhci_start(xhci);
> >> + xhci_run(hcd);
> >> + ret = IRQ_HANDLED;
> >> + goto out;
> >> + }
> >> +
> >
> > Does this fix a real problem for you? Are you sure we will not suddenly
> > start resetting devices that were working properly and sending this
> > error incorrectly? How did you test this?
> >
> > thanks,
> >
> > greg k-h
> > .
> >
> Yes, we want to add a RAS feature to the USB,
What is "RAS"?
> Use the HCE event to trigger the reset operation of the USB controller.
Is that allowed by the XHCI specification?
> By searching for the current xhci driver, the driver did not handle HCE event.
> In fact, I am not sure if other operations will cause HCE, The HCE event is
> used to reset the USB controller according to the definition of the event.
What generates that event? Do existing controllers do that today? What
causes it?
> I test this reset operation through the Sysfs file, but have not tested all usage scenarios.
What sysfs file?
thanks,
greg k-h
next prev parent reply other threads:[~2020-11-18 9:14 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-18 3:36 [RFC PATCH] USB: xhci: Enable HCE event reset function Longfang Liu
2020-11-18 7:02 ` Greg KH
2020-11-18 9:04 ` liulongfang
2020-11-18 9:14 ` Greg KH [this message]
2020-11-18 16:21 ` Mathias Nyman
2020-11-19 1:50 ` liulongfang
2020-11-19 6:09 ` Greg KH
2020-11-19 13:13 ` liulongfang
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=X7TmBT2LbdJbDypG@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
--cc=liulongfang@huawei.com \
--cc=mathias.nyman@intel.com \
--cc=tanxiaofei@huawei.com \
--cc=yisen.zhuang@huawei.com \
/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.