From: Krishna Kurapati PSSNV <quic_kriskura@quicinc.com>
To: Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
"Conor Dooley" <conor+dt@kernel.org>
Cc: <linux-usb@vger.kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
<linux-kernel@vger.kernel.org>,
"Thinh Nguyen" <Thinh.Nguyen@synopsys.com>,
Rob Herring <robh+dt@kernel.org>, <linux-arm-msm@vger.kernel.org>,
<devicetree@vger.kernel.org>, <quic_ppratap@quicinc.com>,
<quic_jackp@quicinc.com>, <quic_wcheng@quicinc.com>,
Andy Gross <agross@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Philipp Zabel <p.zabel@pengutronix.de>
Subject: Re: [RFC 2/8] usb: dwc3: core: Register vendor hooks for dwc3-qcom
Date: Sat, 4 Nov 2023 00:15:20 +0530 [thread overview]
Message-ID: <5ef66bdc-9645-4bbe-8182-baa7fe4c583a@quicinc.com> (raw)
In-Reply-To: <e700133b-58f7-4a4d-8e5c-0d04441b789b@linaro.org>
On 11/3/2023 8:44 PM, Bryan O'Donoghue wrote:
> On 17/10/2023 14:18, Krishna Kurapati wrote:
>>
>> The following are the requirements aimed in this implementation:
>>
>> 1. When enum in device mode, Glue/core must stay active.
>>
>> 2. When cable is connected but UDC is not written yet, then glue/core
>> must be suspended.
>>
>> 3. Upon removing cable in device mode, the disconnect event must be
>> generated and unblock runtime suspend for dwc3 core.
>>
>> Signed-off-by: Krishna Kurapati <quic_kriskura@quicinc.com>
>
Hi Bryan,
> What happens to this code if you
>
> static int count;
>
> 1. sleep in dwc3_probe for 10 milliseconds
> 2. return -EPROBE_DEFER
> 3. if count++ < 5 goto 1
>
> i.e. if we simulate say waiting on a PHY driver to probe in dwc3_probe()
>
The vendor hooks are used in __dwc3_set_mode and role_switch_set calls
in core and drd files respectively. These are invoked only if we are OTG
capable. The drd_work is initialized in core_init_mode which is called
at the end of dwc3_probe. If dwc3_probe fails and gets deferred before
that, none of the vendor hooks will be fired and dwc3_qcom_probe is also
deferred.
However I see that if core_init_mode fails (the cleanup is already done
in drd to prevent set_role from getting invoked already), I need to
cleanup vendor hooks in error path of dwc3_probe().
> and what happens if we introduce a 100 millsecond sleep into
> dwc3_qcom_probe() - and run a fake disconnect event from
> dwc3_qcom_probe_core() directly ?
>
> In other words if make it that dwc3_probe() completes and struct
> dwc3_glue_ops->notify_cable_disconnect() fires prior to
> dwc3_qcom_probe_core() completing ?
>
> i.e. I don't immediately see how you've solved the probe() completion
> race condition here.
>
Just wanted to understand the situation clearly. Is this the sequence
you are referring to ?
1. dwc3_probe is successful and role switch is registered properly.
2. added delay after dwc3_qcom_probe_core and before interconnect_init
3. Between this delay, we got a disconnect notificiation from glink
4. We are clearing the qscratch reg in case of device mode and
un-registering notifier in case of host mode.
If so, firstly I don't see any issue if we process disconnect event
before qcom probe is complete. If we reached this stage, the clocks/gdsc
is definitely ON and register accesses are good to go.
If we are in host mode at this point, we would just unregister to
usb-core notifier and mark last busy. If we are in device mode, we would
just clear the hs_phy_ctrl reg of qscratch. After the 100ms delay you
mentioned we would call dwc3_remove anyways and cleanup the vendor
hooks. But is the concern here that, what if we enter runtime_suspend at
this point ?
Regards,
Krishna,
next prev parent reply other threads:[~2023-11-03 18:46 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-17 13:18 [RFC 0/8] Enable runtime suspend resume for QCOM devices Krishna Kurapati
2023-10-17 13:18 ` [RFC 1/8] dt-bindings: usb: qcom,dwc3: Add bindings to enable runtime Krishna Kurapati
2023-10-17 17:19 ` Krzysztof Kozlowski
2023-10-17 17:46 ` Krishna Kurapati PSSNV
2023-10-18 6:09 ` Krzysztof Kozlowski
2023-11-02 16:33 ` Caleb Connolly
2023-11-02 17:02 ` Krishna Kurapati PSSNV
2023-11-02 18:40 ` Caleb Connolly
2023-11-03 5:34 ` Krishna Kurapati PSSNV
2023-11-03 14:56 ` Caleb Connolly
2023-11-03 18:24 ` Krishna Kurapati PSSNV
2023-10-17 13:18 ` [RFC 2/8] usb: dwc3: core: Register vendor hooks for dwc3-qcom Krishna Kurapati
2023-11-03 15:14 ` Bryan O'Donoghue
2023-11-03 18:45 ` Krishna Kurapati PSSNV [this message]
2023-11-03 18:49 ` Krishna Kurapati PSSNV
2023-11-04 16:00 ` Bryan O'Donoghue
2023-11-04 17:02 ` Krishna Kurapati PSSNV
2023-11-07 8:33 ` Krishna Kurapati PSSNV
2023-11-07 10:41 ` Bryan O'Donoghue
2023-11-07 10:55 ` Bryan O'Donoghue
2023-11-07 11:02 ` Krishna Kurapati PSSNV
2023-10-17 13:18 ` [RFC 3/8] usb: dwc3: qcom: Enable autosuspend for host mode Krishna Kurapati
2023-10-17 13:18 ` [RFC 5/8] arm64: dts: qcom: Flatten sm8450 usb device node Krishna Kurapati
2023-10-17 13:18 ` [RFC 6/8] arm: dts: qcom: Add pmic glink support for sm8450-qrd Krishna Kurapati
2023-10-17 17:20 ` Krzysztof Kozlowski
2023-10-26 19:41 ` Konrad Dybcio
2023-10-27 3:30 ` Krishna Kurapati PSSNV
2023-10-17 13:18 ` [RFC 7/8] arm: dts: qcom: Enable runtime for SM8450 QRD Krishna Kurapati
2023-10-17 17:21 ` Krzysztof Kozlowski
2023-10-17 13:18 ` [RFC 8/8] usb: dwc3: core: Skip set_mode notification if cable is disconnected Krishna Kurapati
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=5ef66bdc-9645-4bbe-8182-baa7fe4c583a@quicinc.com \
--to=quic_kriskura@quicinc.com \
--cc=Thinh.Nguyen@synopsys.com \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=quic_jackp@quicinc.com \
--cc=quic_ppratap@quicinc.com \
--cc=quic_wcheng@quicinc.com \
--cc=robh+dt@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®