From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: Elson Serrao <quic_eserrao@quicinc.com>
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
Roger Quadros <rogerq@kernel.org>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"krzysztof.kozlowski+dt@linaro.org"
<krzysztof.kozlowski+dt@linaro.org>,
"conor+dt@kernel.org" <conor+dt@kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"quic_kriskura@quicinc.com" <quic_kriskura@quicinc.com>
Subject: Re: [PATCH v4 2/3] dt-bindings: usb: snps,dwc3: Add runtime-suspend-on-usb-suspend property
Date: Mon, 2 Oct 2023 18:56:04 +0000 [thread overview]
Message-ID: <20231002185606.eumc37ezthov7uge@synopsys.com> (raw)
In-Reply-To: <63c9ced1-6204-88e9-1dae-2979388bbc67@quicinc.com>
On Thu, Sep 21, 2023, Elson Serrao wrote:
>
>
> On 8/30/2023 11:29 PM, Krzysztof Kozlowski wrote:
> > On 31/08/2023 05:01, Thinh Nguyen wrote:
> > > On Wed, Aug 30, 2023, Krzysztof Kozlowski wrote:
> > > > On 30/08/2023 06:31, Elson Serrao wrote:
> > > > >
> > > > >
> > > > > On 8/29/2023 6:37 PM, Thinh Nguyen wrote:
> > > > > > Just want to clarify, there are dwc3 properties and there are dt binding
> > > > > > properties. Often the case that dt binding matches 1-to-1 with dwc3
> > > > > > driver property. Now, we need to enhance the checkers so that the dwc3
> > > > > > driver property to match cases where it is platform specific and through
> > > > > > compatible string.
> > > > > >
> > > > >
> > > > > Thank you for the clarification Thinh.
> > > > > To confirm, we would need to modify the driver to parse a new compatible
> > > > > string (say "snps,dwc3-ext-wakeup") and add .data field so that the
> > > > > driver is aware that this particular platform supports external wakeup
> > > > > detection.Right ?
> > > >
> > > > No, it's not then platform specific. You said it depends on each
> > > > platform. Platform is Qualcomm SM8450 for example.
> > > >
> > >
> > > Hi Elson,
> > >
> > > Use the compatible string of your platform.
> > >
> > > e.g.
> > > if (dev->of_node) {
> > > struct device_node *parent = of_get_parent(dev->of_node);
> > >
> > > dwc->no_disconnect_on_usb_suspend =
> > > of_device_is_compatible(parent, "qcom,your-compatible-string") ||
> > > of_device_is_compatible(parent, "some-other-platform");
> > > }
> > >
> > > You need to enhance dwc3_get_properties(). This may get big as dwc3 adds
> > > more properties. Perhaps you can help come up with ideas to keep this
> > > clean. Perhaps we can separate this out of dwc3 core.c?
>
> HI Thinh
>
> Apologies for the delayed response.
> Series https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-usb/cover/1655094654-24052-1-git-send-email-quic_kriskura@quicinc.com/__;!!A4F2R9G_pg!YGlVy7No98zfEM-X5iWRhIUJ-gJEJn_gbTR4k12avzENV1TXf7cwJLZUezYzAU-rnHIbbqA1UWM0IE0R-t5SMMTJLwLZ$
> from Krishna K, introduced a dt property 'wakeup-source' which indicates a
> platforms capability to handle wakeup interrupts. Based on this property,
> glue drivers can inform dwc3 core that the device is wakeup capable through
> device_init_wakeup(). For example dwc3-qcom driver informs it like below as
> per the implementation done in the above series
>
> wakeup_source = of_property_read_bool(dev->of_node, "wakeup-source");
> device_init_wakeup(&pdev->dev, wakeup_source);
> device_init_wakeup(&qcom->dwc3->dev, wakeup_source);
>
> The dwc3 core now can access this info through device_may_wakeup(dwc->dev)
> while checking for bus suspend scenario to know whether the platform is
> capable of detecting wakeup.
>
> Please let me know your thoughts on this approach.
>
Hi Elson,
I think that it may not work for everyone. Some platforms may indicate
wakeup-source but should only be applicable in selected scenarios.
(e.g. Roger's platform was only intended to keep connect on suspend)
Also, how will you disable it for certain platforms? Probably will need
to use compatible string then too.
Thanks,
Thinh
next prev parent reply other threads:[~2023-10-02 18:56 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-14 18:50 [PATCH v4 0/3] Support dwc3 runtime suspend during bus suspend Elson Roy Serrao
2023-08-14 18:50 ` [PATCH v4 1/3] usb: function: u_ether: Handle rx requests during suspend/resume Elson Roy Serrao
2023-08-14 18:50 ` [PATCH v4 2/3] dt-bindings: usb: snps,dwc3: Add runtime-suspend-on-usb-suspend property Elson Roy Serrao
2023-08-14 19:13 ` Rob Herring
2023-08-16 5:44 ` Krzysztof Kozlowski
2023-08-18 19:16 ` Elson Serrao
2023-08-19 0:42 ` Thinh Nguyen
2023-08-19 9:35 ` Krzysztof Kozlowski
2023-08-22 23:58 ` Elson Serrao
2023-08-23 6:34 ` Krzysztof Kozlowski
2023-08-23 8:04 ` Roger Quadros
2023-08-26 1:53 ` Thinh Nguyen
2023-08-26 8:39 ` Krzysztof Kozlowski
2023-08-28 21:34 ` Elson Serrao
2023-08-30 1:37 ` Thinh Nguyen
2023-08-30 4:31 ` Elson Serrao
2023-08-30 7:05 ` Krzysztof Kozlowski
2023-08-31 3:01 ` Thinh Nguyen
2023-08-31 6:29 ` Krzysztof Kozlowski
2023-09-21 17:09 ` Elson Serrao
2023-10-02 18:56 ` Thinh Nguyen [this message]
2023-10-17 22:59 ` Elson Serrao
2023-10-20 22:26 ` Thinh Nguyen
2023-08-14 18:50 ` [PATCH v4 3/3] usb: dwc3: Modify runtime pm ops to handle bus suspend Elson Roy Serrao
2023-10-24 10:14 ` Roger Quadros
2023-10-24 18:41 ` Elson Serrao
2023-10-25 8:02 ` Roger Quadros
2023-10-25 22:21 ` Elson Serrao
2023-10-26 8:29 ` Roger Quadros
2023-10-27 0:07 ` Elson Serrao
2023-10-27 6:37 ` Roger Quadros
2023-10-30 18:41 ` Elson Serrao
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=20231002185606.eumc37ezthov7uge@synopsys.com \
--to=thinh.nguyen@synopsys.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=quic_eserrao@quicinc.com \
--cc=quic_kriskura@quicinc.com \
--cc=robh+dt@kernel.org \
--cc=rogerq@kernel.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.