mbox series

[v12,0/6] USB DWC3 host wake up support from system suspend

Message ID 1649321104-31322-1-git-send-email-quic_c_sanm@quicinc.com
Headers show
Series USB DWC3 host wake up support from system suspend | expand

Message

Sandeep Maheswaram April 7, 2022, 8:44 a.m. UTC
Avoiding phy powerdown in host mode when wakeup capable devices are 
connected, so that it can be wake up by devices.
Set GENPD_FLAG_ALWAYS_ON flag to keep usb30_prim gdsc active to retain
controller status during suspend/resume.

Changes in v12:
Squashed PATCH 1/5 and 2/5 of v11.
Added dt bindings and device tree entry for wakeup-source property
for dwc3 core node.
Dropped redundant phy_set_mode call.


Changes in v11:
Moving back to v8 version
https://patchwork.kernel.org/project/linux-arm-msm/cover/1624882097-23265-1-git-send-email-sanm@codeaurora.org
as we are getting interrupts during suspend
when enabling both DP hs phy irq and DM hs phy irq.
Moved the set phy mode function to dwc3/core.c from xhci-plat.c
We didn't find any other option other than accessing xhci from dwc.

Changes in v10:
PATCH 1/6: Change device_set_wakeup_capable to device_set_wakeup_enable
PATCH 2/6: Remove redundant else part in dwc3_resume_common
PATCH 4/6: Change the irg flags
PATCH 5/6: Set flag GENPD_FLAG_ALWAYS_ON
PATCH 6/6: Remove disable interrupts function and enable
interrupts in probe.


Changes in v9:
Checking with device_may_makeup property instead of phy_power_off flag.
Changed the IRQ flags and removed hs_phy_mode variable.

Changes in v8:
Moved the dwc3 suspend quirk code in dwc3/host.c to xhci-plat.c
Checking phy_power_off flag instead of usb_wakeup_enabled_descendants 
to keep gdsc active.

Changes in v7:
Change in commit text and message in PATCH 1/5 and PATCH 5/5
as per Matthias suggestion.
Added curly braces for if and else if sections in PATCH 4/5.

Changes in v6:
Addressed comments in host.c and core.c
Separated the patches in dwc3-qcom.c to make it simple.
Dropped wakeup-source change as it is not related to this series.

Changes in v5:
Added phy_power_off flag to check presence of wakeup capable devices.
Dropped patch[v4,4/5] as it is present linux-next.
Addressed comments in host.c and dwc3-qcom.c.

Changes in v4:
Addressed Matthias comments raised in v3.

Changes in v3:
Removed need_phy_for_wakeup flag and by default avoiding phy powerdown.
Addressed Matthias comments and added entry for DEV_SUPERSPEED.
Added suspend_quirk in dwc3 host and moved the dwc3_set_phy_speed_flags.
Added wakeup-source dt entry and reading in dwc-qcom.c glue driver.

Changes in v2:
Dropped the patch in clock to set GENPD_FLAG_ACTIVE_WAKEUP flag and 
setting in usb dwc3 driver.
Separated the core patch and glue driver patch.
Made need_phy_for_wakeup flag part of dwc structure and 
hs_phy_flags as unsgined int.
Adrressed the comment on device_init_wakeup call.
Corrected offset for reading portsc register.
Added pacth to support wakeup in xo shutdown case.


Sandeep Maheswaram (6):
  usb: dwc3: core: Host wake up support from system suspend
  usb: dwc3: qcom: Add helper functions to enable,disable wake irqs
  usb: dwc3: qcom: Configure wakeup interrupts during suspend
  usb: dwc3: qcom: Keep power domain on to retain controller status
  dt-bindings: usb: dwc3: Add wakeup-source property support
  arm64: dts: qcom: sc7280: Add wakeup-source property for USB node

 .../devicetree/bindings/usb/snps,dwc3.yaml         |  5 ++
 arch/arm64/boot/dts/qcom/sc7280.dtsi               |  1 +
 drivers/usb/dwc3/core.c                            | 29 ++++++---
 drivers/usb/dwc3/core.h                            |  4 ++
 drivers/usb/dwc3/dwc3-qcom.c                       | 74 +++++++++++++---------
 drivers/usb/dwc3/host.c                            | 25 ++++++++
 6 files changed, 99 insertions(+), 39 deletions(-)

Comments

Matthias Kaehlcke April 7, 2022, 5:02 p.m. UTC | #1
On Thu, Apr 07, 2022 at 02:15:03PM +0530, Sandeep Maheswaram wrote:
> Added support for wakeup-source property. This property can be
> used to check and power down the phy during system suspend if
> wake up is not supported.
> 
> Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> ---
>  Documentation/devicetree/bindings/usb/snps,dwc3.yaml | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/usb/snps,dwc3.yaml b/Documentation/devicetree/bindings/usb/snps,dwc3.yaml
> index f4471f8..4d4de2f 100644
> --- a/Documentation/devicetree/bindings/usb/snps,dwc3.yaml
> +++ b/Documentation/devicetree/bindings/usb/snps,dwc3.yaml
> @@ -341,6 +341,11 @@ properties:
>        This port is used with the 'usb-role-switch' property  to connect the
>        dwc3 to type C connector.
>  
> +  wakeup-source:
> +    $ref: /schemas/types.yaml#/definitions/flag
> +    description:
> +      Enable USB remote wakeup.
> +
>  unevaluatedProperties: false
>  
>  required:

nit: within the series this patch should be before "dt-bindings: usb: dwc3:
Add wakeup-source property support", which makes use of the new property.
If you have to re-spin for another reason please change the order.

Reviewed-by: Matthias Kaehlcke <mka@chromium.org>
Pavan Kondeti April 8, 2022, 2 a.m. UTC | #2
On Thu, Apr 07, 2022 at 11:01:57AM -0700, Matthias Kaehlcke wrote:
> On Thu, Apr 07, 2022 at 02:15:02PM +0530, Sandeep Maheswaram wrote:
> > Keep the power domain on in order to retain controller status and
> > to support wakeup from devices.
> > 
> > Signed-off-by: Sandeep Maheswaram <quic_c_sanm@quicinc.com>
> > ---
> >  drivers/usb/dwc3/dwc3-qcom.c | 6 ++++++
> >  1 file changed, 6 insertions(+)
> > 
> > diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
> > index 9804a19..35087cf 100644
> > --- a/drivers/usb/dwc3/dwc3-qcom.c
> > +++ b/drivers/usb/dwc3/dwc3-qcom.c
> > @@ -17,6 +17,7 @@
> >  #include <linux/of_platform.h>
> >  #include <linux/platform_device.h>
> >  #include <linux/phy/phy.h>
> > +#include <linux/pm_domain.h>
> >  #include <linux/usb/of.h>
> >  #include <linux/reset.h>
> >  #include <linux/iopoll.h>
> > @@ -724,6 +725,7 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
> >  	struct resource		*res, *parent_res = NULL;
> >  	int			ret, i;
> >  	bool			ignore_pipe_clk;
> > +	struct generic_pm_domain *genpd;
> >  
> >  	qcom = devm_kzalloc(&pdev->dev, sizeof(*qcom), GFP_KERNEL);
> >  	if (!qcom)
> > @@ -732,6 +734,8 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
> >  	platform_set_drvdata(pdev, qcom);
> >  	qcom->dev = &pdev->dev;
> >  
> > +	genpd = pd_to_genpd(qcom->dev->pm_domain);
> > +
> >  	if (has_acpi_companion(dev)) {
> >  		qcom->acpi_pdata = acpi_device_get_match_data(dev);
> >  		if (!qcom->acpi_pdata) {
> > @@ -839,6 +843,8 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
> >  	if (ret)
> >  		goto interconnect_exit;
> >  
> > +	genpd->flags |= GENPD_FLAG_ALWAYS_ON;
> 
> Not sure it really matters, but could this be done conditionally based
> on device_can_wakeup() of the dwc3 core device?

+1. Makes sense to me.

> 
> > +
> >  	device_init_wakeup(&pdev->dev, 1);
> 
> Now that the dwc3 core looks at the wakeup-source property it seems
> this driver should enable wakeup only when it is enabled for the
> core.
> 
> Actually I wonder if it would make sense to leave wakeup for dwc3-qcom
> 'officially' disabled, and just make all wakeup related decisions
> based on the wakeup configuration of the dwc3 core (as
> dwc3_qcom_en/disable_interrupts() already do). The separate wakeup
> policies for dwc3 core and dwc3-qcom are confusing and don't seem to
> add any value.

This suggestion makes sense. Do we foresee any issues by not marking
this parent device not wakeup capable? I don't see any.

Thanks,
Pavan