All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
@ 2021-12-22  6:09 Sandeep Maheswaram
  2022-01-06 14:25 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 12+ messages in thread
From: Sandeep Maheswaram @ 2021-12-22  6:09 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Felipe Balbi, Stephen Boyd, Doug Anderson,
	Matthias Kaehlcke, Mathias Nyman
  Cc: linux-arm-msm, linux-usb, linux-kernel, quic_pkondeti,
	quic_ppratap, Sandeep Maheswaram

Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
Runtime suspend of phy drivers was failing from DWC3 driver as runtime
usage value is 2 because the phy is initialized from DWC3 and HCD core.
DWC3 manages phy in their core drivers. Set this quirk to avoid phy
initialization in HCD core.

Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
---
v5:
Added comment to explain the change done.
v4:
Changed pdev->dev.parent->of_node to sysdev->of_node

 drivers/usb/host/xhci-plat.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index c1edcc9..e6014d4 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -327,6 +327,14 @@ static int xhci_plat_probe(struct platform_device *pdev)
 					 &xhci->imod_interval);
 	}
 
+	/*
+	 * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
+	 * DWC3 manages phy in their core drivers. Set this quirk to avoid phy
+	 * initialization in HCD core.
+	 */
+	if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
+		xhci->quirks |= XHCI_SKIP_PHY_INIT;
+
 	hcd->usb_phy = devm_usb_get_phy_by_phandle(sysdev, "usb-phy", 0);
 	if (IS_ERR(hcd->usb_phy)) {
 		ret = PTR_ERR(hcd->usb_phy);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2021-12-22  6:09 [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller Sandeep Maheswaram
@ 2022-01-06 14:25 ` Greg Kroah-Hartman
  2022-01-07  4:57   ` Sandeep Maheswaram
  0 siblings, 1 reply; 12+ messages in thread
From: Greg Kroah-Hartman @ 2022-01-06 14:25 UTC (permalink / raw)
  To: Sandeep Maheswaram
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> Runtime suspend of phy drivers was failing from DWC3 driver as runtime
> usage value is 2 because the phy is initialized from DWC3 and HCD core.
> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> initialization in HCD core.
> 
> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> ---
> v5:
> Added comment to explain the change done.
> v4:
> Changed pdev->dev.parent->of_node to sysdev->of_node
> 
>  drivers/usb/host/xhci-plat.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
> index c1edcc9..e6014d4 100644
> --- a/drivers/usb/host/xhci-plat.c
> +++ b/drivers/usb/host/xhci-plat.c
> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct platform_device *pdev)
>  					 &xhci->imod_interval);
>  	}
>  
> +	/*
> +	 * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> +	 * DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> +	 * initialization in HCD core.
> +	 */
> +	if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> +		xhci->quirks |= XHCI_SKIP_PHY_INIT;
> +

Why is this function caring about dwc3 stuff?  Shoudn't this be a
"generic" device property instead of this device-specific one?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-06 14:25 ` Greg Kroah-Hartman
@ 2022-01-07  4:57   ` Sandeep Maheswaram
  2022-01-24  5:31     ` Sandeep Maheswaram
  2022-01-26 12:25     ` Greg Kroah-Hartman
  0 siblings, 2 replies; 12+ messages in thread
From: Sandeep Maheswaram @ 2022-01-07  4:57 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap


On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
>> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>> Runtime suspend of phy drivers was failing from DWC3 driver as runtime
>> usage value is 2 because the phy is initialized from DWC3 and HCD core.
>> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>> initialization in HCD core.
>>
>> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
>> ---
>> v5:
>> Added comment to explain the change done.
>> v4:
>> Changed pdev->dev.parent->of_node to sysdev->of_node
>>
>>   drivers/usb/host/xhci-plat.c | 8 ++++++++
>>   1 file changed, 8 insertions(+)
>>
>> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
>> index c1edcc9..e6014d4 100644
>> --- a/drivers/usb/host/xhci-plat.c
>> +++ b/drivers/usb/host/xhci-plat.c
>> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct platform_device *pdev)
>>   					 &xhci->imod_interval);
>>   	}
>>   
>> +	/*
>> +	 * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>> +	 * DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>> +	 * initialization in HCD core.
>> +	 */
>> +	if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
>> +		xhci->quirks |= XHCI_SKIP_PHY_INIT;
>> +
> Why is this function caring about dwc3 stuff?  Shoudn't this be a
> "generic" device property instead of this device-specific one?
>
> thanks,
>
> greg k-h

This quirk is set only if required for some controllers (eg: dwc3 & cdns3).

Please check below commit.

https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/


Regards

Sandeep



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-07  4:57   ` Sandeep Maheswaram
@ 2022-01-24  5:31     ` Sandeep Maheswaram
  2022-01-24  6:21       ` Greg Kroah-Hartman
  2022-01-26 12:25     ` Greg Kroah-Hartman
  1 sibling, 1 reply; 12+ messages in thread
From: Sandeep Maheswaram @ 2022-01-24  5:31 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

Hi Greg,

On 1/7/2022 10:27 AM, Sandeep Maheswaram wrote:
>
> On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
>> On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
>>> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>> Runtime suspend of phy drivers was failing from DWC3 driver as runtime
>>> usage value is 2 because the phy is initialized from DWC3 and HCD core.
>>> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>>> initialization in HCD core.
>>>
>>> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
>>> ---
>>> v5:
>>> Added comment to explain the change done.
>>> v4:
>>> Changed pdev->dev.parent->of_node to sysdev->of_node
>>>
>>>   drivers/usb/host/xhci-plat.c | 8 ++++++++
>>>   1 file changed, 8 insertions(+)
>>>
>>> diff --git a/drivers/usb/host/xhci-plat.c 
>>> b/drivers/usb/host/xhci-plat.c
>>> index c1edcc9..e6014d4 100644
>>> --- a/drivers/usb/host/xhci-plat.c
>>> +++ b/drivers/usb/host/xhci-plat.c
>>> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct 
>>> platform_device *pdev)
>>>                        &xhci->imod_interval);
>>>       }
>>>   +    /*
>>> +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>> +     * DWC3 manages phy in their core drivers. Set this quirk to 
>>> avoid phy
>>> +     * initialization in HCD core.
>>> +     */
>>> +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
>>> +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
>>> +
>> Why is this function caring about dwc3 stuff?  Shoudn't this be a
>> "generic" device property instead of this device-specific one?
>>
>> thanks,
>>
>> greg k-h
>
> This quirk is set only if required for some controllers (eg: dwc3 & 
> cdns3).
>
> Please check below commit.
>
> https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/ 
>
>
>
> Regards
>
> Sandeep
>
>
Please let me know if anything more info needed for this patch.

Regards

Sandeep



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-24  5:31     ` Sandeep Maheswaram
@ 2022-01-24  6:21       ` Greg Kroah-Hartman
  0 siblings, 0 replies; 12+ messages in thread
From: Greg Kroah-Hartman @ 2022-01-24  6:21 UTC (permalink / raw)
  To: Sandeep Maheswaram
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

On Mon, Jan 24, 2022 at 11:01:07AM +0530, Sandeep Maheswaram wrote:
> Hi Greg,
> 
> On 1/7/2022 10:27 AM, Sandeep Maheswaram wrote:
> > 
> > On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> > > On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
> > > > Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > > Runtime suspend of phy drivers was failing from DWC3 driver as runtime
> > > > usage value is 2 because the phy is initialized from DWC3 and HCD core.
> > > > DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> > > > initialization in HCD core.
> > > > 
> > > > Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> > > > ---
> > > > v5:
> > > > Added comment to explain the change done.
> > > > v4:
> > > > Changed pdev->dev.parent->of_node to sysdev->of_node
> > > > 
> > > >   drivers/usb/host/xhci-plat.c | 8 ++++++++
> > > >   1 file changed, 8 insertions(+)
> > > > 
> > > > diff --git a/drivers/usb/host/xhci-plat.c
> > > > b/drivers/usb/host/xhci-plat.c
> > > > index c1edcc9..e6014d4 100644
> > > > --- a/drivers/usb/host/xhci-plat.c
> > > > +++ b/drivers/usb/host/xhci-plat.c
> > > > @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct
> > > > platform_device *pdev)
> > > >                        &xhci->imod_interval);
> > > >       }
> > > >   +    /*
> > > > +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > > +     * DWC3 manages phy in their core drivers. Set this quirk
> > > > to avoid phy
> > > > +     * initialization in HCD core.
> > > > +     */
> > > > +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> > > > +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
> > > > +
> > > Why is this function caring about dwc3 stuff?  Shoudn't this be a
> > > "generic" device property instead of this device-specific one?
> > > 
> > > thanks,
> > > 
> > > greg k-h
> > 
> > This quirk is set only if required for some controllers (eg: dwc3 &
> > cdns3).
> > 
> > Please check below commit.
> > 
> > https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
> > 
> > 
> > 
> > Regards
> > 
> > Sandeep
> > 
> > 
> Please let me know if anything more info needed for this patch.

The merge window ended a few hours ago, give me a few days to catch up
with my pending email queue that I have to review:

$ mdfrm -c ~/mail/todo/
2254 messages in /home/gregkh/mail/todo/

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-07  4:57   ` Sandeep Maheswaram
  2022-01-24  5:31     ` Sandeep Maheswaram
@ 2022-01-26 12:25     ` Greg Kroah-Hartman
  2022-01-27  4:58       ` Sandeep Maheswaram
  1 sibling, 1 reply; 12+ messages in thread
From: Greg Kroah-Hartman @ 2022-01-26 12:25 UTC (permalink / raw)
  To: Sandeep Maheswaram
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
> 
> On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> > On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
> > > Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > Runtime suspend of phy drivers was failing from DWC3 driver as runtime
> > > usage value is 2 because the phy is initialized from DWC3 and HCD core.
> > > DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> > > initialization in HCD core.
> > > 
> > > Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> > > ---
> > > v5:
> > > Added comment to explain the change done.
> > > v4:
> > > Changed pdev->dev.parent->of_node to sysdev->of_node
> > > 
> > >   drivers/usb/host/xhci-plat.c | 8 ++++++++
> > >   1 file changed, 8 insertions(+)
> > > 
> > > diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
> > > index c1edcc9..e6014d4 100644
> > > --- a/drivers/usb/host/xhci-plat.c
> > > +++ b/drivers/usb/host/xhci-plat.c
> > > @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct platform_device *pdev)
> > >   					 &xhci->imod_interval);
> > >   	}
> > > +	/*
> > > +	 * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > +	 * DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> > > +	 * initialization in HCD core.
> > > +	 */
> > > +	if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> > > +		xhci->quirks |= XHCI_SKIP_PHY_INIT;
> > > +
> > Why is this function caring about dwc3 stuff?  Shoudn't this be a
> > "generic" device property instead of this device-specific one?
> > 
> > thanks,
> > 
> > greg k-h
> 
> This quirk is set only if required for some controllers (eg: dwc3 & cdns3).
> 
> Please check below commit.
> 
> https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/

That commit has nothing to do with a specific "dwc3" quirk anywhere.
Why not set this flag in the specific platform xhci driver instead where
it belongs?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-26 12:25     ` Greg Kroah-Hartman
@ 2022-01-27  4:58       ` Sandeep Maheswaram
  2022-02-08 10:04         ` Sandeep Maheswaram
  0 siblings, 1 reply; 12+ messages in thread
From: Sandeep Maheswaram @ 2022-01-27  4:58 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap


On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
> On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
>> On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
>>> On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
>>>> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>>> Runtime suspend of phy drivers was failing from DWC3 driver as runtime
>>>> usage value is 2 because the phy is initialized from DWC3 and HCD core.
>>>> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>>>> initialization in HCD core.
>>>>
>>>> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
>>>> ---
>>>> v5:
>>>> Added comment to explain the change done.
>>>> v4:
>>>> Changed pdev->dev.parent->of_node to sysdev->of_node
>>>>
>>>>    drivers/usb/host/xhci-plat.c | 8 ++++++++
>>>>    1 file changed, 8 insertions(+)
>>>>
>>>> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
>>>> index c1edcc9..e6014d4 100644
>>>> --- a/drivers/usb/host/xhci-plat.c
>>>> +++ b/drivers/usb/host/xhci-plat.c
>>>> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct platform_device *pdev)
>>>>    					 &xhci->imod_interval);
>>>>    	}
>>>> +	/*
>>>> +	 * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>>> +	 * DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>>>> +	 * initialization in HCD core.
>>>> +	 */
>>>> +	if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
>>>> +		xhci->quirks |= XHCI_SKIP_PHY_INIT;
>>>> +
>>> Why is this function caring about dwc3 stuff?  Shoudn't this be a
>>> "generic" device property instead of this device-specific one?
>>>
>>> thanks,
>>>
>>> greg k-h
>> This quirk is set only if required for some controllers (eg: dwc3 & cdns3).
>>
>> Please check below commit.
>>
>> https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
> That commit has nothing to do with a specific "dwc3" quirk anywhere.
> Why not set this flag in the specific platform xhci driver instead where
> it belongs?
>
> thanks,
>
> greg k-h

There is no specific xhci platform driver for dwc3 controllers.

dwc3 controllers use xhci-plat driver .

We can add this quirk in usb/dwc3/host.c as cdns3 does but that requires 
tying dwc3 and xhci driver .

https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/

Regards

Sandeep



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-01-27  4:58       ` Sandeep Maheswaram
@ 2022-02-08 10:04         ` Sandeep Maheswaram
  2022-02-08 10:11           ` Greg Kroah-Hartman
  0 siblings, 1 reply; 12+ messages in thread
From: Sandeep Maheswaram @ 2022-02-08 10:04 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

Hi Greg,

On 1/27/2022 10:28 AM, Sandeep Maheswaram wrote:
>
> On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
>> On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
>>> On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
>>>> On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
>>>>> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>>>> Runtime suspend of phy drivers was failing from DWC3 driver as 
>>>>> runtime
>>>>> usage value is 2 because the phy is initialized from DWC3 and HCD 
>>>>> core.
>>>>> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>>>>> initialization in HCD core.
>>>>>
>>>>> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
>>>>> ---
>>>>> v5:
>>>>> Added comment to explain the change done.
>>>>> v4:
>>>>> Changed pdev->dev.parent->of_node to sysdev->of_node
>>>>>
>>>>>    drivers/usb/host/xhci-plat.c | 8 ++++++++
>>>>>    1 file changed, 8 insertions(+)
>>>>>
>>>>> diff --git a/drivers/usb/host/xhci-plat.c 
>>>>> b/drivers/usb/host/xhci-plat.c
>>>>> index c1edcc9..e6014d4 100644
>>>>> --- a/drivers/usb/host/xhci-plat.c
>>>>> +++ b/drivers/usb/host/xhci-plat.c
>>>>> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct 
>>>>> platform_device *pdev)
>>>>>                         &xhci->imod_interval);
>>>>>        }
>>>>> +    /*
>>>>> +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization 
>>>>> twice.
>>>>> +     * DWC3 manages phy in their core drivers. Set this quirk to 
>>>>> avoid phy
>>>>> +     * initialization in HCD core.
>>>>> +     */
>>>>> +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
>>>>> +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
>>>>> +
>>>> Why is this function caring about dwc3 stuff?  Shoudn't this be a
>>>> "generic" device property instead of this device-specific one?
>>>>
>>>> thanks,
>>>>
>>>> greg k-h
>>> This quirk is set only if required for some controllers (eg: dwc3 & 
>>> cdns3).
>>>
>>> Please check below commit.
>>>
>>> https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/ 
>>>
>> That commit has nothing to do with a specific "dwc3" quirk anywhere.
>> Why not set this flag in the specific platform xhci driver instead where
>> it belongs?
>>
>> thanks,
>>
>> greg k-h
>
> There is no specific xhci platform driver for dwc3 controllers.
>
> dwc3 controllers use xhci-plat driver .
>
> We can add this quirk in usb/dwc3/host.c as cdns3 does but that 
> requires tying dwc3 and xhci driver .
>
> https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/ 
>
>
> Regards
>
> Sandeep
>
>
Can you suggest any other method to set this quirk for dwc3 controllers.

Regards

Sandeep


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-02-08 10:04         ` Sandeep Maheswaram
@ 2022-02-08 10:11           ` Greg Kroah-Hartman
  2022-02-09  5:53             ` Pavan Kondeti
  0 siblings, 1 reply; 12+ messages in thread
From: Greg Kroah-Hartman @ 2022-02-08 10:11 UTC (permalink / raw)
  To: Sandeep Maheswaram
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_pkondeti, quic_ppratap

On Tue, Feb 08, 2022 at 03:34:22PM +0530, Sandeep Maheswaram wrote:
> Hi Greg,
> 
> On 1/27/2022 10:28 AM, Sandeep Maheswaram wrote:
> > 
> > On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
> > > On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
> > > > On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> > > > > On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
> > > > > > Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > > > > Runtime suspend of phy drivers was failing from DWC3
> > > > > > driver as runtime
> > > > > > usage value is 2 because the phy is initialized from
> > > > > > DWC3 and HCD core.
> > > > > > DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> > > > > > initialization in HCD core.
> > > > > > 
> > > > > > Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> > > > > > ---
> > > > > > v5:
> > > > > > Added comment to explain the change done.
> > > > > > v4:
> > > > > > Changed pdev->dev.parent->of_node to sysdev->of_node
> > > > > > 
> > > > > >    drivers/usb/host/xhci-plat.c | 8 ++++++++
> > > > > >    1 file changed, 8 insertions(+)
> > > > > > 
> > > > > > diff --git a/drivers/usb/host/xhci-plat.c
> > > > > > b/drivers/usb/host/xhci-plat.c
> > > > > > index c1edcc9..e6014d4 100644
> > > > > > --- a/drivers/usb/host/xhci-plat.c
> > > > > > +++ b/drivers/usb/host/xhci-plat.c
> > > > > > @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct
> > > > > > platform_device *pdev)
> > > > > >                         &xhci->imod_interval);
> > > > > >        }
> > > > > > +    /*
> > > > > > +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy
> > > > > > initialization twice.
> > > > > > +     * DWC3 manages phy in their core drivers. Set this
> > > > > > quirk to avoid phy
> > > > > > +     * initialization in HCD core.
> > > > > > +     */
> > > > > > +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> > > > > > +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
> > > > > > +
> > > > > Why is this function caring about dwc3 stuff?  Shoudn't this be a
> > > > > "generic" device property instead of this device-specific one?
> > > > > 
> > > > > thanks,
> > > > > 
> > > > > greg k-h
> > > > This quirk is set only if required for some controllers (eg:
> > > > dwc3 & cdns3).
> > > > 
> > > > Please check below commit.
> > > > 
> > > > https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
> > > > 
> > > That commit has nothing to do with a specific "dwc3" quirk anywhere.
> > > Why not set this flag in the specific platform xhci driver instead where
> > > it belongs?
> > > 
> > > thanks,
> > > 
> > > greg k-h
> > 
> > There is no specific xhci platform driver for dwc3 controllers.
> > 
> > dwc3 controllers use xhci-plat driver .
> > 
> > We can add this quirk in usb/dwc3/host.c as cdns3 does but that requires
> > tying dwc3 and xhci driver .
> > 
> > https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
> > 
> > 
> > Regards
> > 
> > Sandeep
> > 
> > 
> Can you suggest any other method to set this quirk for dwc3 controllers.

No idea, sorry.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-02-08 10:11           ` Greg Kroah-Hartman
@ 2022-02-09  5:53             ` Pavan Kondeti
  2022-02-09  6:01               ` Sandeep Maheswaram
  0 siblings, 1 reply; 12+ messages in thread
From: Pavan Kondeti @ 2022-02-09  5:53 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Sandeep Maheswaram, Felipe Balbi, Stephen Boyd, Doug Anderson,
	Matthias Kaehlcke, Mathias Nyman, linux-arm-msm, linux-usb,
	linux-kernel, quic_pkondeti, quic_ppratap

[-- Attachment #1: Type: text/plain, Size: 4246 bytes --]

On Tue, Feb 08, 2022 at 11:11:53AM +0100, Greg Kroah-Hartman wrote:
> On Tue, Feb 08, 2022 at 03:34:22PM +0530, Sandeep Maheswaram wrote:
> > Hi Greg,
> > 
> > On 1/27/2022 10:28 AM, Sandeep Maheswaram wrote:
> > > 
> > > On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
> > > > On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
> > > > > On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> > > > > > On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
> > > > > > > Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> > > > > > > Runtime suspend of phy drivers was failing from DWC3
> > > > > > > driver as runtime
> > > > > > > usage value is 2 because the phy is initialized from
> > > > > > > DWC3 and HCD core.
> > > > > > > DWC3 manages phy in their core drivers. Set this quirk to avoid phy
> > > > > > > initialization in HCD core.
> > > > > > > 
> > > > > > > Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> > > > > > > ---
> > > > > > > v5:
> > > > > > > Added comment to explain the change done.
> > > > > > > v4:
> > > > > > > Changed pdev->dev.parent->of_node to sysdev->of_node
> > > > > > > 
> > > > > > >    drivers/usb/host/xhci-plat.c | 8 ++++++++
> > > > > > >    1 file changed, 8 insertions(+)
> > > > > > > 
> > > > > > > diff --git a/drivers/usb/host/xhci-plat.c
> > > > > > > b/drivers/usb/host/xhci-plat.c
> > > > > > > index c1edcc9..e6014d4 100644
> > > > > > > --- a/drivers/usb/host/xhci-plat.c
> > > > > > > +++ b/drivers/usb/host/xhci-plat.c
> > > > > > > @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct
> > > > > > > platform_device *pdev)
> > > > > > >                         &xhci->imod_interval);
> > > > > > >        }
> > > > > > > +    /*
> > > > > > > +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy
> > > > > > > initialization twice.
> > > > > > > +     * DWC3 manages phy in their core drivers. Set this
> > > > > > > quirk to avoid phy
> > > > > > > +     * initialization in HCD core.
> > > > > > > +     */
> > > > > > > +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> > > > > > > +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
> > > > > > > +
> > > > > > Why is this function caring about dwc3 stuff?  Shoudn't this be a
> > > > > > "generic" device property instead of this device-specific one?
> > > > > > 
> > > > > > thanks,
> > > > > > 
> > > > > > greg k-h
> > > > > This quirk is set only if required for some controllers (eg:
> > > > > dwc3 & cdns3).
> > > > > 
> > > > > Please check below commit.
> > > > > 
> > > > > https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
> > > > > 
> > > > That commit has nothing to do with a specific "dwc3" quirk anywhere.
> > > > Why not set this flag in the specific platform xhci driver instead where
> > > > it belongs?
> > > > 
> > > > thanks,
> > > > 
> > > > greg k-h
> > > 
> > > There is no specific xhci platform driver for dwc3 controllers.
> > > 
> > > dwc3 controllers use xhci-plat driver .
> > > 
> > > We can add this quirk in usb/dwc3/host.c as cdns3 does but that requires
> > > tying dwc3 and xhci driver .
> > > 
> > > https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
> > > 
> > > 
> > > Regards
> > > 
> > > Sandeep
> > > 
> > > 
> > Can you suggest any other method to set this quirk for dwc3 controllers.
> 
> No idea, sorry.

Sandeep,

I agree with Greg's comments here. The compatible based check to detect dwc3
controller is not elegant. Your proposal of adding a device tree param is
overkill, I believe.

Greg already gave us a pointer here [1] which I feel is the best approach going
forward. We know that xhci-plat is being used by drivers like dwc3, cdns3 and
these drivers need to expose their xhci quirks. As Greg suggested, why can't
we move xhci quirks definition to include/linux/usb/xhci-quriks.h and directly
access from the glue drivers? The attached is the patch (completely untested)
for your reference. It will prepare the setup for you to add the private data
and quirks in the dwc3 host glue driver.

Thanks,
Pavan

[1]
https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/



[-- Attachment #2: 0001-usb-xhci-refactor-quirks-and-plat-private-data.patch --]
[-- Type: text/x-diff, Size: 9326 bytes --]

From 59d674ad513a647254d9f0f74b3b58546f9536d3 Mon Sep 17 00:00:00 2001
From: Pavankumar Kondeti <quic_pkondeti@quicinc.com>
Date: Wed, 9 Feb 2022 11:14:08 +0530
Subject: [PATCH] usb: xhci: refactor quirks and plat private data

This refactoring allows drivers like dwc3 host glue driver to
specify thier xhci quirks.

Change-Id: Ia9f6347c3e752d8f75bdeafb914d335629a26900
Signed-off-by: Pavankumar Kondeti <quic_pkondeti@quicinc.com>
---
 drivers/usb/cdns3/host.c                           |  2 +-
 drivers/usb/host/xhci-plat.c                       |  3 +-
 drivers/usb/host/xhci-rcar.c                       |  3 +-
 drivers/usb/host/xhci.h                            | 60 ++-----------------
 .../usb/host => include/linux/usb}/xhci-plat.h     |  5 +-
 include/linux/usb/xhci-quirks.h                    | 67 ++++++++++++++++++++++
 6 files changed, 80 insertions(+), 60 deletions(-)
 rename {drivers/usb/host => include/linux/usb}/xhci-plat.h (74%)
 create mode 100644 include/linux/usb/xhci-quirks.h

diff --git a/drivers/usb/cdns3/host.c b/drivers/usb/cdns3/host.c
index 84dadfa..02634d9 100644
--- a/drivers/usb/cdns3/host.c
+++ b/drivers/usb/cdns3/host.c
@@ -14,8 +14,8 @@
 #include "drd.h"
 #include "host-export.h"
 #include <linux/usb/hcd.h>
+#include <linux/usb/xhci-plat.h>
 #include "../host/xhci.h"
-#include "../host/xhci-plat.h"
 
 #define XECP_PORT_CAP_REG	0x8000
 #define XECP_AUX_CTRL_REG1	0x8120
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index c1edcc9..23e0de0 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -19,9 +19,10 @@
 #include <linux/slab.h>
 #include <linux/acpi.h>
 #include <linux/usb/of.h>
+#include <linux/usb/xhci-quirks.h>
+#include <linux/usb/xhci-plat.h>
 
 #include "xhci.h"
-#include "xhci-plat.h"
 #include "xhci-mvebu.h"
 #include "xhci-rcar.h"
 
diff --git a/drivers/usb/host/xhci-rcar.c b/drivers/usb/host/xhci-rcar.c
index 9888ba7..cbcb6ba 100644
--- a/drivers/usb/host/xhci-rcar.c
+++ b/drivers/usb/host/xhci-rcar.c
@@ -12,9 +12,10 @@
 #include <linux/of.h>
 #include <linux/usb/phy.h>
 #include <linux/sys_soc.h>
+#include <linux/usb/xhci-quirks.h>
+#include <linux/usb/xhci-plat.h>
 
 #include "xhci.h"
-#include "xhci-plat.h"
 #include "xhci-rcar.h"
 
 /*
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h
index 5a75fe5..4e80d08 100644
--- a/drivers/usb/host/xhci.h
+++ b/drivers/usb/host/xhci.h
@@ -17,6 +17,8 @@
 #include <linux/kernel.h>
 #include <linux/usb/hcd.h>
 #include <linux/io-64-nonatomic-lo-hi.h>
+#include <linux/usb/xhci-quirks.h>
+#include <linux/usb/xhci-plat.h>
 
 /* Code sharing between pci-quirks and xhci hcd */
 #include	"xhci-ext-caps.h"
@@ -1846,60 +1848,6 @@ struct xhci_hcd {
 #define XHCI_STATE_HALTED	(1 << 1)
 #define XHCI_STATE_REMOVING	(1 << 2)
 	unsigned long long	quirks;
-#define	XHCI_LINK_TRB_QUIRK	BIT_ULL(0)
-#define XHCI_RESET_EP_QUIRK	BIT_ULL(1)
-#define XHCI_NEC_HOST		BIT_ULL(2)
-#define XHCI_AMD_PLL_FIX	BIT_ULL(3)
-#define XHCI_SPURIOUS_SUCCESS	BIT_ULL(4)
-/*
- * Certain Intel host controllers have a limit to the number of endpoint
- * contexts they can handle.  Ideally, they would signal that they can't handle
- * anymore endpoint contexts by returning a Resource Error for the Configure
- * Endpoint command, but they don't.  Instead they expect software to keep track
- * of the number of active endpoints for them, across configure endpoint
- * commands, reset device commands, disable slot commands, and address device
- * commands.
- */
-#define XHCI_EP_LIMIT_QUIRK	BIT_ULL(5)
-#define XHCI_BROKEN_MSI		BIT_ULL(6)
-#define XHCI_RESET_ON_RESUME	BIT_ULL(7)
-#define	XHCI_SW_BW_CHECKING	BIT_ULL(8)
-#define XHCI_AMD_0x96_HOST	BIT_ULL(9)
-#define XHCI_TRUST_TX_LENGTH	BIT_ULL(10)
-#define XHCI_LPM_SUPPORT	BIT_ULL(11)
-#define XHCI_INTEL_HOST		BIT_ULL(12)
-#define XHCI_SPURIOUS_REBOOT	BIT_ULL(13)
-#define XHCI_COMP_MODE_QUIRK	BIT_ULL(14)
-#define XHCI_AVOID_BEI		BIT_ULL(15)
-#define XHCI_PLAT		BIT_ULL(16)
-#define XHCI_SLOW_SUSPEND	BIT_ULL(17)
-#define XHCI_SPURIOUS_WAKEUP	BIT_ULL(18)
-/* For controllers with a broken beyond repair streams implementation */
-#define XHCI_BROKEN_STREAMS	BIT_ULL(19)
-#define XHCI_PME_STUCK_QUIRK	BIT_ULL(20)
-#define XHCI_MTK_HOST		BIT_ULL(21)
-#define XHCI_SSIC_PORT_UNUSED	BIT_ULL(22)
-#define XHCI_NO_64BIT_SUPPORT	BIT_ULL(23)
-#define XHCI_MISSING_CAS	BIT_ULL(24)
-/* For controller with a broken Port Disable implementation */
-#define XHCI_BROKEN_PORT_PED	BIT_ULL(25)
-#define XHCI_LIMIT_ENDPOINT_INTERVAL_7	BIT_ULL(26)
-#define XHCI_U2_DISABLE_WAKE	BIT_ULL(27)
-#define XHCI_ASMEDIA_MODIFY_FLOWCONTROL	BIT_ULL(28)
-#define XHCI_HW_LPM_DISABLE	BIT_ULL(29)
-#define XHCI_SUSPEND_DELAY	BIT_ULL(30)
-#define XHCI_INTEL_USB_ROLE_SW	BIT_ULL(31)
-#define XHCI_ZERO_64B_REGS	BIT_ULL(32)
-#define XHCI_DEFAULT_PM_RUNTIME_ALLOW	BIT_ULL(33)
-#define XHCI_RESET_PLL_ON_DISCONNECT	BIT_ULL(34)
-#define XHCI_SNPS_BROKEN_SUSPEND    BIT_ULL(35)
-#define XHCI_RENESAS_FW_QUIRK	BIT_ULL(36)
-#define XHCI_SKIP_PHY_INIT	BIT_ULL(37)
-#define XHCI_DISABLE_SPARSE	BIT_ULL(38)
-#define XHCI_SG_TRB_CACHE_SIZE_QUIRK	BIT_ULL(39)
-#define XHCI_NO_SOFT_RETRY	BIT_ULL(40)
-#define XHCI_BROKEN_D3COLD	BIT_ULL(41)
-#define XHCI_EP_CTX_BROKEN_DCS	BIT_ULL(42)
 
 	unsigned int		num_active_eps;
 	unsigned int		limit_active_eps;
@@ -1965,6 +1913,10 @@ static inline struct usb_hcd *xhci_to_hcd(struct xhci_hcd *xhci)
 	return xhci->main_hcd;
 }
 
+/* For xhci-plat drivers */
+#define hcd_to_xhci_priv(h) ((struct xhci_plat_priv *)hcd_to_xhci(h)->priv)
+#define xhci_to_priv(x) ((struct xhci_plat_priv *)(x)->priv)
+
 #define xhci_dbg(xhci, fmt, args...) \
 	dev_dbg(xhci_to_hcd(xhci)->self.controller , fmt , ## args)
 #define xhci_err(xhci, fmt, args...) \
diff --git a/drivers/usb/host/xhci-plat.h b/include/linux/usb/xhci-plat.h
similarity index 74%
rename from drivers/usb/host/xhci-plat.h
rename to include/linux/usb/xhci-plat.h
index 561d0b7..0612258 100644
--- a/drivers/usb/host/xhci-plat.h
+++ b/include/linux/usb/xhci-plat.h
@@ -8,7 +8,8 @@
 #ifndef _XHCI_PLAT_H
 #define _XHCI_PLAT_H
 
-#include "xhci.h"	/* for hcd_to_xhci() */
+#include <linux/types.h>
+#include <linux/usb/hcd.h>
 
 struct xhci_plat_priv {
 	const char *firmware_name;
@@ -20,6 +21,4 @@ struct xhci_plat_priv {
 	int (*resume_quirk)(struct usb_hcd *);
 };
 
-#define hcd_to_xhci_priv(h) ((struct xhci_plat_priv *)hcd_to_xhci(h)->priv)
-#define xhci_to_priv(x) ((struct xhci_plat_priv *)(x)->priv)
 #endif	/* _XHCI_PLAT_H */
diff --git a/include/linux/usb/xhci-quirks.h b/include/linux/usb/xhci-quirks.h
new file mode 100644
index 00000000..57ae0b1
--- /dev/null
+++ b/include/linux/usb/xhci-quirks.h
@@ -0,0 +1,67 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+
+/*
+ * xHCI host controller driver quirks
+ *
+ * Copyright (C) 2008 Intel Corp.
+ */
+
+#ifndef _XHCI_QUIRKS_H
+#define _XHCI_QUIRKS_H
+
+#define XHCI_LINK_TRB_QUIRK	BIT_ULL(0)
+#define XHCI_RESET_EP_QUIRK	BIT_ULL(1)
+#define XHCI_NEC_HOST		BIT_ULL(2)
+#define XHCI_AMD_PLL_FIX	BIT_ULL(3)
+#define XHCI_SPURIOUS_SUCCESS	BIT_ULL(4)
+/*
+ * Certain Intel host controllers have a limit to the number of endpoint
+ * contexts they can handle.  Ideally, they would signal that they can't handle
+ * anymore endpoint contexts by returning a Resource Error for the Configure
+ * Endpoint command, but they don't.  Instead they expect software to keep track
+ * of the number of active endpoints for them, across configure endpoint
+ * commands, reset device commands, disable slot commands, and address device
+ * commands.
+ */
+#define XHCI_EP_LIMIT_QUIRK	BIT_ULL(5)
+#define XHCI_BROKEN_MSI		BIT_ULL(6)
+#define XHCI_RESET_ON_RESUME	BIT_ULL(7)
+#define XHCI_SW_BW_CHECKING	BIT_ULL(8)
+#define XHCI_AMD_0x96_HOST	BIT_ULL(9)
+#define XHCI_TRUST_TX_LENGTH	BIT_ULL(10)
+#define XHCI_LPM_SUPPORT	BIT_ULL(11)
+#define XHCI_INTEL_HOST		BIT_ULL(12)
+#define XHCI_SPURIOUS_REBOOT	BIT_ULL(13)
+#define XHCI_COMP_MODE_QUIRK	BIT_ULL(14)
+#define XHCI_AVOID_BEI		BIT_ULL(15)
+#define XHCI_PLAT		BIT_ULL(16)
+#define XHCI_SLOW_SUSPEND	BIT_ULL(17)
+#define XHCI_SPURIOUS_WAKEUP	BIT_ULL(18)
+/* For controllers with a broken beyond repair streams implementation */
+#define XHCI_BROKEN_STREAMS	BIT_ULL(19)
+#define XHCI_PME_STUCK_QUIRK	BIT_ULL(20)
+#define XHCI_MTK_HOST		BIT_ULL(21)
+#define XHCI_SSIC_PORT_UNUSED	BIT_ULL(22)
+#define XHCI_NO_64BIT_SUPPORT	BIT_ULL(23)
+#define XHCI_MISSING_CAS	BIT_ULL(24)
+/* For controller with a broken Port Disable implementation */
+#define XHCI_BROKEN_PORT_PED	BIT_ULL(25)
+#define XHCI_LIMIT_ENDPOINT_INTERVAL_7	BIT_ULL(26)
+#define XHCI_U2_DISABLE_WAKE	BIT_ULL(27)
+#define XHCI_ASMEDIA_MODIFY_FLOWCONTROL	BIT_ULL(28)
+#define XHCI_HW_LPM_DISABLE	BIT_ULL(29)
+#define XHCI_SUSPEND_DELAY	BIT_ULL(30)
+#define XHCI_INTEL_USB_ROLE_SW	BIT_ULL(31)
+#define XHCI_ZERO_64B_REGS	BIT_ULL(32)
+#define XHCI_DEFAULT_PM_RUNTIME_ALLOW	BIT_ULL(33)
+#define XHCI_RESET_PLL_ON_DISCONNECT	BIT_ULL(34)
+#define XHCI_SNPS_BROKEN_SUSPEND    BIT_ULL(35)
+#define XHCI_RENESAS_FW_QUIRK	BIT_ULL(36)
+#define XHCI_SKIP_PHY_INIT	BIT_ULL(37)
+#define XHCI_DISABLE_SPARSE	BIT_ULL(38)
+#define XHCI_SG_TRB_CACHE_SIZE_QUIRK	BIT_ULL(39)
+#define XHCI_NO_SOFT_RETRY	BIT_ULL(40)
+#define XHCI_BROKEN_D3COLD	BIT_ULL(41)
+#define XHCI_EP_CTX_BROKEN_DCS	BIT_ULL(42)
+
+#endif /* _XHCI_QUIRKS_H */
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
  2022-02-09  5:53             ` Pavan Kondeti
@ 2022-02-09  6:01               ` Sandeep Maheswaram
       [not found]                 ` <825a62d8-dc09-fed1-7e33-00d2192a91d5@quicinc.com>
  0 siblings, 1 reply; 12+ messages in thread
From: Sandeep Maheswaram @ 2022-02-09  6:01 UTC (permalink / raw)
  To: Pavan Kondeti, Greg Kroah-Hartman
  Cc: Felipe Balbi, Stephen Boyd, Doug Anderson, Matthias Kaehlcke,
	Mathias Nyman, linux-arm-msm, linux-usb, linux-kernel,
	quic_ppratap


On 2/9/2022 11:23 AM, Pavan Kondeti wrote:
> On Tue, Feb 08, 2022 at 11:11:53AM +0100, Greg Kroah-Hartman wrote:
>> On Tue, Feb 08, 2022 at 03:34:22PM +0530, Sandeep Maheswaram wrote:
>>> Hi Greg,
>>>
>>> On 1/27/2022 10:28 AM, Sandeep Maheswaram wrote:
>>>> On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
>>>>> On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
>>>>>> On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
>>>>>>> On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram wrote:
>>>>>>>> Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
>>>>>>>> Runtime suspend of phy drivers was failing from DWC3
>>>>>>>> driver as runtime
>>>>>>>> usage value is 2 because the phy is initialized from
>>>>>>>> DWC3 and HCD core.
>>>>>>>> DWC3 manages phy in their core drivers. Set this quirk to avoid phy
>>>>>>>> initialization in HCD core.
>>>>>>>>
>>>>>>>> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
>>>>>>>> ---
>>>>>>>> v5:
>>>>>>>> Added comment to explain the change done.
>>>>>>>> v4:
>>>>>>>> Changed pdev->dev.parent->of_node to sysdev->of_node
>>>>>>>>
>>>>>>>>     drivers/usb/host/xhci-plat.c | 8 ++++++++
>>>>>>>>     1 file changed, 8 insertions(+)
>>>>>>>>
>>>>>>>> diff --git a/drivers/usb/host/xhci-plat.c
>>>>>>>> b/drivers/usb/host/xhci-plat.c
>>>>>>>> index c1edcc9..e6014d4 100644
>>>>>>>> --- a/drivers/usb/host/xhci-plat.c
>>>>>>>> +++ b/drivers/usb/host/xhci-plat.c
>>>>>>>> @@ -327,6 +327,14 @@ static int xhci_plat_probe(struct
>>>>>>>> platform_device *pdev)
>>>>>>>>                          &xhci->imod_interval);
>>>>>>>>         }
>>>>>>>> +    /*
>>>>>>>> +     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy
>>>>>>>> initialization twice.
>>>>>>>> +     * DWC3 manages phy in their core drivers. Set this
>>>>>>>> quirk to avoid phy
>>>>>>>> +     * initialization in HCD core.
>>>>>>>> +     */
>>>>>>>> +    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
>>>>>>>> +        xhci->quirks |= XHCI_SKIP_PHY_INIT;
>>>>>>>> +
>>>>>>> Why is this function caring about dwc3 stuff?  Shoudn't this be a
>>>>>>> "generic" device property instead of this device-specific one?
>>>>>>>
>>>>>>> thanks,
>>>>>>>
>>>>>>> greg k-h
>>>>>> This quirk is set only if required for some controllers (eg:
>>>>>> dwc3 & cdns3).
>>>>>>
>>>>>> Please check below commit.
>>>>>>
>>>>>> https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
>>>>>>
>>>>> That commit has nothing to do with a specific "dwc3" quirk anywhere.
>>>>> Why not set this flag in the specific platform xhci driver instead where
>>>>> it belongs?
>>>>>
>>>>> thanks,
>>>>>
>>>>> greg k-h
>>>> There is no specific xhci platform driver for dwc3 controllers.
>>>>
>>>> dwc3 controllers use xhci-plat driver .
>>>>
>>>> We can add this quirk in usb/dwc3/host.c as cdns3 does but that requires
>>>> tying dwc3 and xhci driver .
>>>>
>>>> https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
>>>>
>>>>
>>>> Regards
>>>>
>>>> Sandeep
>>>>
>>>>
>>> Can you suggest any other method to set this quirk for dwc3 controllers.
>> No idea, sorry.
> Sandeep,
>
> I agree with Greg's comments here. The compatible based check to detect dwc3
> controller is not elegant. Your proposal of adding a device tree param is
> overkill, I believe.
>
> Greg already gave us a pointer here [1] which I feel is the best approach going
> forward. We know that xhci-plat is being used by drivers like dwc3, cdns3 and
> these drivers need to expose their xhci quirks. As Greg suggested, why can't
> we move xhci quirks definition to include/linux/usb/xhci-quriks.h and directly
> access from the glue drivers? The attached is the patch (completely untested)
> for your reference. It will prepare the setup for you to add the private data
> and quirks in the dwc3 host glue driver.
>
> Thanks,
> Pavan
>
> [1]
> https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
>
Thanks Pavan..will test the patch.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller
       [not found]                 ` <825a62d8-dc09-fed1-7e33-00d2192a91d5@quicinc.com>
@ 2022-02-10  6:41                   ` Pavan Kondeti
  0 siblings, 0 replies; 12+ messages in thread
From: Pavan Kondeti @ 2022-02-10  6:41 UTC (permalink / raw)
  To: Sandeep Maheswaram
  Cc: Pavan Kondeti, Greg Kroah-Hartman, Felipe Balbi, Stephen Boyd,
	Doug Anderson, Matthias Kaehlcke, Mathias Nyman, linux-arm-msm,
	linux-usb, linux-kernel, quic_ppratap

Hi Sandeep,

On Thu, Feb 10, 2022 at 11:18:19AM +0530, Sandeep Maheswaram wrote:
> Hi Pavan,
> 
> On 2/9/2022 11:31 AM, Sandeep Maheswaram wrote:
> >
> >On 2/9/2022 11:23 AM, Pavan Kondeti wrote:
> >>On Tue, Feb 08, 2022 at 11:11:53AM +0100, Greg Kroah-Hartman wrote:
> >>>On Tue, Feb 08, 2022 at 03:34:22PM +0530, Sandeep Maheswaram wrote:
> >>>>Hi Greg,
> >>>>
> >>>>On 1/27/2022 10:28 AM, Sandeep Maheswaram wrote:
> >>>>>On 1/26/2022 5:55 PM, Greg Kroah-Hartman wrote:
> >>>>>>On Fri, Jan 07, 2022 at 10:27:59AM +0530, Sandeep Maheswaram wrote:
> >>>>>>>On 1/6/2022 7:55 PM, Greg Kroah-Hartman wrote:
> >>>>>>>>On Wed, Dec 22, 2021 at 11:39:43AM +0530, Sandeep Maheswaram
> >>>>>>>>wrote:
> >>>>>>>>>Set XHCI_SKIP_PHY_INIT quirk to avoid phy initialization twice.
> >>>>>>>>>Runtime suspend of phy drivers was failing from DWC3
> >>>>>>>>>driver as runtime
> >>>>>>>>>usage value is 2 because the phy is initialized from
> >>>>>>>>>DWC3 and HCD core.
> >>>>>>>>>DWC3 manages phy in their core drivers. Set this quirk to
> >>>>>>>>>avoid phy
> >>>>>>>>>initialization in HCD core.
> >>>>>>>>>
> >>>>>>>>>Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> >>>>>>>>>---
> >>>>>>>>>v5:
> >>>>>>>>>Added comment to explain the change done.
> >>>>>>>>>v4:
> >>>>>>>>>Changed pdev->dev.parent->of_node to sysdev->of_node
> >>>>>>>>>
> >>>>>>>>>    drivers/usb/host/xhci-plat.c | 8 ++++++++
> >>>>>>>>>    1 file changed, 8 insertions(+)
> >>>>>>>>>
> >>>>>>>>>diff --git a/drivers/usb/host/xhci-plat.c
> >>>>>>>>>b/drivers/usb/host/xhci-plat.c
> >>>>>>>>>index c1edcc9..e6014d4 100644
> >>>>>>>>>--- a/drivers/usb/host/xhci-plat.c
> >>>>>>>>>+++ b/drivers/usb/host/xhci-plat.c
> >>>>>>>>>@@ -327,6 +327,14 @@ static int xhci_plat_probe(struct
> >>>>>>>>>platform_device *pdev)
> >>>>>>>>>&xhci->imod_interval);
> >>>>>>>>>        }
> >>>>>>>>>+    /*
> >>>>>>>>>+     * Set XHCI_SKIP_PHY_INIT quirk to avoid phy
> >>>>>>>>>initialization twice.
> >>>>>>>>>+     * DWC3 manages phy in their core drivers. Set this
> >>>>>>>>>quirk to avoid phy
> >>>>>>>>>+     * initialization in HCD core.
> >>>>>>>>>+     */
> >>>>>>>>>+    if (of_device_is_compatible(sysdev->of_node, "snps,dwc3"))
> >>>>>>>>>+        xhci->quirks |= XHCI_SKIP_PHY_INIT;
> >>>>>>>>>+
> >>>>>>>>Why is this function caring about dwc3 stuff? Shoudn't this be a
> >>>>>>>>"generic" device property instead of this device-specific one?
> >>>>>>>>
> >>>>>>>>thanks,
> >>>>>>>>
> >>>>>>>>greg k-h
> >>>>>>>This quirk is set only if required for some controllers (eg:
> >>>>>>>dwc3 & cdns3).
> >>>>>>>
> >>>>>>>Please check below commit.
> >>>>>>>
> >>>>>>>https://lore.kernel.org/all/20200918131752.16488-5-mathias.nyman@linux.intel.com/
> >>>>>>>
> >>>>>>>
> >>>>>>That commit has nothing to do with a specific "dwc3" quirk anywhere.
> >>>>>>Why not set this flag in the specific platform xhci driver
> >>>>>>instead where
> >>>>>>it belongs?
> >>>>>>
> >>>>>>thanks,
> >>>>>>
> >>>>>>greg k-h
> >>>>>There is no specific xhci platform driver for dwc3 controllers.
> >>>>>
> >>>>>dwc3 controllers use xhci-plat driver .
> >>>>>
> >>>>>We can add this quirk in usb/dwc3/host.c as cdns3 does but that
> >>>>>requires
> >>>>>tying dwc3 and xhci driver .
> >>>>>
> >>>>>https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
> >>>>>
> >>>>>
> >>>>>
> >>>>>Regards
> >>>>>
> >>>>>Sandeep
> >>>>>
> >>>>>
> >>>>Can you suggest any other method to set this quirk for dwc3
> >>>>controllers.
> >>>No idea, sorry.
> >>Sandeep,
> >>
> >>I agree with Greg's comments here. The compatible based check to detect
> >>dwc3
> >>controller is not elegant. Your proposal of adding a device tree param
> >>is
> >>overkill, I believe.
> >>
> >>Greg already gave us a pointer here [1] which I feel is the best
> >>approach going
> >>forward. We know that xhci-plat is being used by drivers like dwc3,
> >>cdns3 and
> >>these drivers need to expose their xhci quirks. As Greg suggested, why
> >>can't
> >>we move xhci quirks definition to include/linux/usb/xhci-quriks.h and
> >>directly
> >>access from the glue drivers? The attached is the patch (completely
> >>untested)
> >>for your reference. It will prepare the setup for you to add the private
> >>data
> >>and quirks in the dwc3 host glue driver.
> >>
> >>Thanks,
> >>Pavan
> >>
> >>[1]
> >>https://patchwork.kernel.org/project/linux-arm-msm/patch/1633946518-13906-1-git-send-email-sanm@codeaurora.org/
> >>
> >>
> >Thanks Pavan..will test the patch.
> 
> Tested your patch. It is working fine along with the attached changes.
> 

Your patch looks good to me. Feel free to send the two patches together.

Thanks,
Pavan

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-02-10  6:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-22  6:09 [PATCH v5] usb: host: xhci-plat: Set XHCI_SKIP_PHY_INIT quirk for DWC3 controller Sandeep Maheswaram
2022-01-06 14:25 ` Greg Kroah-Hartman
2022-01-07  4:57   ` Sandeep Maheswaram
2022-01-24  5:31     ` Sandeep Maheswaram
2022-01-24  6:21       ` Greg Kroah-Hartman
2022-01-26 12:25     ` Greg Kroah-Hartman
2022-01-27  4:58       ` Sandeep Maheswaram
2022-02-08 10:04         ` Sandeep Maheswaram
2022-02-08 10:11           ` Greg Kroah-Hartman
2022-02-09  5:53             ` Pavan Kondeti
2022-02-09  6:01               ` Sandeep Maheswaram
     [not found]                 ` <825a62d8-dc09-fed1-7e33-00d2192a91d5@quicinc.com>
2022-02-10  6:41                   ` Pavan Kondeti

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.