public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mathias Nyman <mathias.nyman@linux.intel.com>
To: "Thang Q. Nguyen" <tqnguyen@apm.com>,
	Mathias Nyman <mathias.nyman@intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Tung Nguyen <tunguyen@apm.com>, Phong Vo <pvo@apm.com>,
	Loc Ho <lho@apm.com>, patches <patches@apm.com>
Subject: Re: [PATCH v1 1/1] usb: xhci: do not create and register shared_hcd when USB3.0 is disabled
Date: Tue, 16 Jan 2018 16:50:51 +0200	[thread overview]
Message-ID: <a4733f29-a07a-c855-b310-727ad92cfe84@linux.intel.com> (raw)
In-Reply-To: <CAKrQpSuMjPSiADJxpj0Xkm03JCzrqKwB9ZyrsMoP43txTEfmcw@mail.gmail.com>

Hi, Sorry about the delay

On 04.01.2018 07:17, Thang Q. Nguyen wrote:
> Hi,
> 
> On Sat, Dec 16, 2017 at 10:45 AM, Thang Q. Nguyen <tqnguyen@apm.com> wrote:
>> From: Tung Nguyen <tunguyen@apm.com>
>>
>> Currently, hcd->shared_hcd always creates and registers to the usb-core.
>> If, for some reasons, USB3 downstream port is disabled, no roothub port for
>> USB3.0 is found. This causes kernel to display an error:
>> hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
>> This patch checks, creates and registers shared_hcd if USB3.0 downstream
>> port is available.
>>
>> Signed-off-by: Tung Nguyen <tunguyen@apm.com>
>> Signed-off-by: Thang Q. Nguyen <tqnguyen@apm.com>
>> ---
>>   drivers/usb/host/xhci-mem.c  |  2 +-
>>   drivers/usb/host/xhci-plat.c | 26 +++++++++++----------
>>   drivers/usb/host/xhci.c      | 54 ++++++++++++++++++++++++++++++++------------
>>   3 files changed, 54 insertions(+), 28 deletions(-)
>>
>> diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c
>> index 554a8a5..157d1e7 100644
>> --- a/drivers/usb/host/xhci-mem.c
>> +++ b/drivers/usb/host/xhci-mem.c
>> @@ -1067,7 +1067,7 @@ static u32 xhci_find_real_port_number(struct xhci_hcd *xhci,
>>          struct usb_device *top_dev;
>>          struct usb_hcd *hcd;
>>
>> -       if (udev->speed >= USB_SPEED_SUPER)
>> +       if (udev->speed >= USB_SPEED_SUPER && xhci->shared_hcd)
>>                  hcd = xhci->shared_hcd;
>>          else
>>                  hcd = xhci->main_hcd;
>> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
>> index 6f03830..e812e3d 100644
>> --- a/drivers/usb/host/xhci-plat.c
>> +++ b/drivers/usb/host/xhci-plat.c
>> @@ -253,12 +253,6 @@ static int xhci_plat_probe(struct platform_device *pdev)
>>
>>          xhci->clk = clk;
>>          xhci->main_hcd = hcd;
>> -       xhci->shared_hcd = __usb_create_hcd(driver, sysdev, &pdev->dev,
>> -                       dev_name(&pdev->dev), hcd);
>> -       if (!xhci->shared_hcd) {
>> -               ret = -ENOMEM;
>> -               goto disable_clk;
>> -       }
>>
>>          if (device_property_read_bool(sysdev, "usb2-lpm-disable"))
>>                  xhci->quirks |= XHCI_HW_LPM_DISABLE;
>> @@ -290,12 +284,20 @@ static int xhci_plat_probe(struct platform_device *pdev)
>>          if (ret)
>>                  goto disable_usb_phy;
>>
>> -       if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
>> -               xhci->shared_hcd->can_do_streams = 1;
>> -
>> -       ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
>> -       if (ret)
>> -               goto dealloc_usb2_hcd;
>> +       if (xhci->num_usb3_ports > 0) {
>> +               xhci->shared_hcd = __usb_create_hcd(driver, sysdev, &pdev->dev,
>> +                               dev_name(&pdev->dev), hcd);
>> +               if (!xhci->shared_hcd) {
>> +                       ret = -ENOMEM;
>> +                       goto disable_clk;
>> +               }
>> +               if (HCC_MAX_PSA(xhci->hcc_params) >= 4)
>> +                       xhci->shared_hcd->can_do_streams = 1;
>> +
>> +               ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
>> +               if (ret)
>> +                       goto dealloc_usb2_hcd;
>> +       }
>>
>>          device_enable_async_suspend(&pdev->dev);
>>          pm_runtime_put_noidle(&pdev->dev);
>> diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
>> index 05104bd..4824bf6 100644
>> --- a/drivers/usb/host/xhci.c
>> +++ b/drivers/usb/host/xhci.c
>> @@ -417,12 +417,14 @@ static void compliance_mode_recovery(struct timer_list *t)
>>                                          i + 1);
>>                          xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
>>                                          "Attempting compliance mode recovery");
>> -                       hcd = xhci->shared_hcd;
>> +                       if (xhci->shared_hcd) {
>> +                               hcd = xhci->shared_hcd;
>>
>> -                       if (hcd->state == HC_STATE_SUSPENDED)
>> -                               usb_hcd_resume_root_hub(hcd);
>> +                               if (hcd->state == HC_STATE_SUSPENDED)
>> +                                       usb_hcd_resume_root_hub(hcd);
>>
>> -                       usb_hcd_poll_rh_status(hcd);
>> +                               usb_hcd_poll_rh_status(hcd);
>> +                       }
>>                  }
>>          }
>>
>> @@ -611,6 +613,18 @@ int xhci_run(struct usb_hcd *hcd)
>>                  if (ret)
>>                          xhci_free_command(xhci, command);
>>          }
>> +       /*
>> +        * Execute xhci_start() in case xhci->shared_hcd is not registered.
>> +        * If the xhci->shared_hcd doesn't exist, no one triggers to start
>> +        * the xhci which should be done before exitting run function
>> +        */
>> +       if (!xhci->shared_hcd) {
>> +               if (xhci_start(xhci)) {

This probably won't work as primary hcd was added before shared_hcd was created.
usb_add_hcd(hcd) calls xhci_run() before xhci->shared_hcd exists, so this will
cause the xHC to start before the shared_hcd is created or setup.

-Mathias

  reply	other threads:[~2018-01-16 14:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-16  3:45 [PATCH v1 1/1] usb: xhci: do not create and register shared_hcd when USB3.0 is disabled Thang Q. Nguyen
2018-01-04  5:17 ` Thang Q. Nguyen
2018-01-16 14:50   ` Mathias Nyman [this message]
2018-01-18  7:27     ` Tung Vuong Nguyen
2018-01-18 15:02       ` Mathias Nyman

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=a4733f29-a07a-c855-b310-727ad92cfe84@linux.intel.com \
    --to=mathias.nyman@linux.intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=lho@apm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mathias.nyman@intel.com \
    --cc=patches@apm.com \
    --cc=pvo@apm.com \
    --cc=tqnguyen@apm.com \
    --cc=tunguyen@apm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox