From: Bjorn Andersson <quic_bjorande@quicinc.com>
To: Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Wesley Cheng <quic_wcheng@quicinc.com>,
Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
Felipe Balbi <balbi@kernel.org>,
Philipp Zabel <p.zabel@pengutronix.de>
Cc: <linux-arm-msm@vger.kernel.org>, <linux-usb@vger.kernel.org>,
<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
Johan Hovold <johan@kernel.org>,
Krishna Kurapati PSSNV <quic_kriskura@quicinc.com>,
"Bjorn Andersson" <quic_bjorande@quicinc.com>
Subject: [PATCH 06/12] usb: dwc3: qcom: Add dwc3 core reference in driver state
Date: Mon, 16 Oct 2023 20:11:14 -0700 [thread overview]
Message-ID: <20231016-dwc3-refactor-v1-6-ab4a84165470@quicinc.com> (raw)
In-Reply-To: <20231016-dwc3-refactor-v1-0-ab4a84165470@quicinc.com>
In the coming changes the Qualcomm DWC3 glue will be able to either
manage the DWC3 core as a child platform_device, or directly instantiate
it within its own context.
Introduce a reference to the dwc3 core state and make the driver
reference the dwc3 core either the child device or this new reference.
As the new member isn't assigned, and qcom->dwc_dev is assigned in all
current cases, the change should have no functional impact.
Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
---
drivers/usb/dwc3/dwc3-qcom.c | 100 +++++++++++++++++++++++++++++++++++--------
1 file changed, 83 insertions(+), 17 deletions(-)
diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c
index 7c810712d246..901e5050363b 100644
--- a/drivers/usb/dwc3/dwc3-qcom.c
+++ b/drivers/usb/dwc3/dwc3-qcom.c
@@ -67,7 +67,8 @@ struct dwc3_acpi_pdata {
struct dwc3_qcom {
struct device *dev;
void __iomem *qscratch_base;
- struct platform_device *dwc_dev;
+ struct platform_device *dwc_dev; /* only used when core is separate device */
+ struct dwc3 *dwc; /* not used when core is separate device */
struct clk **clks;
int num_clocks;
struct reset_control *resets;
@@ -263,7 +264,11 @@ static int dwc3_qcom_interconnect_init(struct dwc3_qcom *qcom)
goto put_path_ddr;
}
- max_speed = usb_get_maximum_speed(&qcom->dwc_dev->dev);
+ if (qcom->dwc_dev)
+ max_speed = usb_get_maximum_speed(&qcom->dwc_dev->dev);
+ else
+ max_speed = usb_get_maximum_speed(qcom->dev);
+
if (max_speed >= USB_SPEED_SUPER || max_speed == USB_SPEED_UNKNOWN) {
ret = icc_set_bw(qcom->icc_path_ddr,
USB_MEMORY_AVG_SS_BW, USB_MEMORY_PEAK_SS_BW);
@@ -311,7 +316,10 @@ static bool dwc3_qcom_is_host(struct dwc3_qcom *qcom)
/*
* FIXME: Fix this layering violation.
*/
- dwc = platform_get_drvdata(qcom->dwc_dev);
+ if (qcom->dwc_dev)
+ dwc = platform_get_drvdata(qcom->dwc_dev);
+ else
+ dwc = qcom->dwc;
/* Core driver may not have probed yet. */
if (!dwc)
@@ -322,10 +330,14 @@ static bool dwc3_qcom_is_host(struct dwc3_qcom *qcom)
static enum usb_device_speed dwc3_qcom_read_usb2_speed(struct dwc3_qcom *qcom)
{
- struct dwc3 *dwc = platform_get_drvdata(qcom->dwc_dev);
struct usb_device *udev;
struct usb_hcd __maybe_unused *hcd;
+ struct dwc3 *dwc;
+ if (qcom->dwc_dev)
+ dwc = platform_get_drvdata(qcom->dwc_dev);
+ else
+ dwc = qcom->dwc;
/*
* FIXME: Fix this layering violation.
*/
@@ -485,12 +497,17 @@ static int dwc3_qcom_resume(struct dwc3_qcom *qcom, bool wakeup)
static irqreturn_t qcom_dwc3_resume_irq(int irq, void *data)
{
struct dwc3_qcom *qcom = data;
- struct dwc3 *dwc = platform_get_drvdata(qcom->dwc_dev);
+ struct dwc3 *dwc;
/* If pm_suspended then let pm_resume take care of resuming h/w */
if (qcom->pm_suspended)
return IRQ_HANDLED;
+ if (qcom->dwc_dev)
+ dwc = platform_get_drvdata(qcom->dwc_dev);
+ else
+ dwc = qcom->dwc;
+
/*
* This is safe as role switching is done from a freezable workqueue
* and the wakeup interrupts are disabled as part of resume.
@@ -936,25 +953,33 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
if (ret)
goto depopulate;
- qcom->mode = usb_get_dr_mode(&qcom->dwc_dev->dev);
+ if (qcom->dwc_dev)
+ qcom->mode = usb_get_dr_mode(&qcom->dwc_dev->dev);
+ else
+ qcom->mode = usb_get_dr_mode(dev);
/* enable vbus override for device mode */
if (qcom->mode != USB_DR_MODE_HOST)
dwc3_qcom_vbus_override_enable(qcom, true);
- /* register extcon to override sw_vbus on Vbus change later */
- ret = dwc3_qcom_register_extcon(qcom);
- if (ret)
- goto interconnect_exit;
+ if (qcom->dwc_dev) {
+ /* register extcon to override sw_vbus on Vbus change later */
+ ret = dwc3_qcom_register_extcon(qcom);
+ if (ret)
+ goto interconnect_exit;
+ }
wakeup_source = of_property_read_bool(dev->of_node, "wakeup-source");
device_init_wakeup(&pdev->dev, wakeup_source);
- device_init_wakeup(&qcom->dwc_dev->dev, wakeup_source);
+ if (qcom->dwc_dev)
+ device_init_wakeup(&qcom->dwc_dev->dev, wakeup_source);
qcom->is_suspended = false;
- pm_runtime_set_active(dev);
- pm_runtime_enable(dev);
- pm_runtime_forbid(dev);
+ if (qcom->dwc_dev) {
+ pm_runtime_set_active(dev);
+ pm_runtime_enable(dev);
+ pm_runtime_forbid(dev);
+ }
return 0;
@@ -983,6 +1008,9 @@ static void dwc3_qcom_remove(struct platform_device *pdev)
struct device *dev = &pdev->dev;
int i;
+ if (qcom->dwc)
+ dwc3_remove(qcom->dwc);
+
device_remove_software_node(&qcom->dwc_dev->dev);
if (np)
of_platform_depopulate(&pdev->dev);
@@ -998,8 +1026,10 @@ static void dwc3_qcom_remove(struct platform_device *pdev)
dwc3_qcom_interconnect_exit(qcom);
reset_control_assert(qcom->resets);
- pm_runtime_allow(dev);
- pm_runtime_disable(dev);
+ if (qcom->dwc_dev) {
+ pm_runtime_allow(dev);
+ pm_runtime_disable(dev);
+ }
}
static int __maybe_unused dwc3_qcom_pm_suspend(struct device *dev)
@@ -1008,6 +1038,12 @@ static int __maybe_unused dwc3_qcom_pm_suspend(struct device *dev)
bool wakeup = device_may_wakeup(dev);
int ret;
+ if (qcom->dwc) {
+ ret = dwc3_suspend(qcom->dwc);
+ if (ret)
+ return ret;
+ }
+
ret = dwc3_qcom_suspend(qcom, wakeup);
if (ret)
return ret;
@@ -1029,12 +1065,33 @@ static int __maybe_unused dwc3_qcom_pm_resume(struct device *dev)
qcom->pm_suspended = false;
+ if (qcom->dwc) {
+ ret = dwc3_resume(qcom->dwc);
+ if (ret)
+ return ret;
+ }
+
return 0;
}
+static void dwc3_qcom_complete(struct device *dev)
+{
+ struct dwc3_qcom *qcom = dev_get_drvdata(dev);
+
+ if (qcom->dwc)
+ dwc3_complete(qcom->dwc);
+}
+
static int __maybe_unused dwc3_qcom_runtime_suspend(struct device *dev)
{
struct dwc3_qcom *qcom = dev_get_drvdata(dev);
+ int ret;
+
+ if (qcom->dwc) {
+ ret = dwc3_runtime_suspend(qcom->dwc);
+ if (ret)
+ return ret;
+ }
return dwc3_qcom_suspend(qcom, true);
}
@@ -1042,12 +1099,21 @@ static int __maybe_unused dwc3_qcom_runtime_suspend(struct device *dev)
static int __maybe_unused dwc3_qcom_runtime_resume(struct device *dev)
{
struct dwc3_qcom *qcom = dev_get_drvdata(dev);
+ int ret;
+
+ ret = dwc3_qcom_resume(qcom, true);
+ if (ret)
+ return ret;
- return dwc3_qcom_resume(qcom, true);
+ if (qcom->dwc)
+ return dwc3_runtime_resume(qcom->dwc);
+
+ return 0;
}
static const struct dev_pm_ops dwc3_qcom_dev_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(dwc3_qcom_pm_suspend, dwc3_qcom_pm_resume)
+ .complete = dwc3_qcom_complete,
SET_RUNTIME_PM_OPS(dwc3_qcom_runtime_suspend, dwc3_qcom_runtime_resume,
NULL)
};
--
2.25.1
next prev parent reply other threads:[~2023-10-17 3:11 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-17 3:11 [PATCH 00/12] usb: dwc3: qcom: Flatten dwc3 structure Bjorn Andersson
2023-10-17 3:11 ` [PATCH 01/12] dt-bindings: usb: qcom,dwc3: Add qcom,sc8180x-dwc3 Bjorn Andersson
2023-10-17 6:03 ` Krzysztof Kozlowski
2023-10-17 3:11 ` [PATCH 02/12] usb: dwc3: qcom: Rename dwc3 platform_device reference Bjorn Andersson
2023-10-17 16:08 ` Konrad Dybcio
2023-11-22 9:58 ` Johan Hovold
2023-10-17 3:11 ` [PATCH 03/12] usb: dwc3: qcom: Merge resources from urs_usb device Bjorn Andersson
2023-10-20 6:02 ` kernel test robot
2023-11-22 10:24 ` Johan Hovold
2024-01-08 16:25 ` Bjorn Andersson
2023-10-17 3:11 ` [PATCH 04/12] usb: dwc3: Expose core driver as library Bjorn Andersson
2023-10-20 22:18 ` Thinh Nguyen
2023-11-22 11:57 ` Johan Hovold
2024-01-08 16:42 ` Bjorn Andersson
2023-10-17 3:11 ` [PATCH 05/12] usb: dwc3: Override end of dwc3 memory resource Bjorn Andersson
2023-10-17 16:14 ` Konrad Dybcio
2023-10-20 22:07 ` Thinh Nguyen
2023-10-17 3:11 ` Bjorn Andersson [this message]
2023-11-22 12:18 ` [PATCH 06/12] usb: dwc3: qcom: Add dwc3 core reference in driver state Johan Hovold
2024-01-08 18:02 ` Bjorn Andersson
2023-10-17 3:11 ` [PATCH 07/12] usb: dwc3: qcom: Instantiate dwc3 core directly Bjorn Andersson
2023-11-22 12:23 ` Johan Hovold
2024-01-10 3:16 ` Krishna Kurapati PSSNV
2023-10-17 3:11 ` [PATCH 08/12] usb: dwc3: qcom: Inline the qscratch constants Bjorn Andersson
2023-10-17 16:18 ` Konrad Dybcio
2023-10-17 3:11 ` [PATCH 09/12] dt-bindings: usb: qcom,dwc3: Rename to "glue" Bjorn Andersson
2023-10-17 6:05 ` Krzysztof Kozlowski
2023-11-22 12:25 ` Johan Hovold
2023-10-17 3:11 ` [PATCH 10/12] dt-bindings: usb: qcom,dwc3: Introduce flattened qcom,dwc3 binding Bjorn Andersson
2023-10-17 6:11 ` Krzysztof Kozlowski
2023-10-17 22:54 ` Bjorn Andersson
2023-10-18 6:00 ` Krzysztof Kozlowski
2023-10-17 18:31 ` Rob Herring
2023-10-17 21:02 ` Bjorn Andersson
2023-11-22 12:40 ` Johan Hovold
2023-10-17 3:11 ` [PATCH 11/12] usb: dwc3: qcom: Flatten the Qualcomm dwc3 binding and implementation Bjorn Andersson
2024-01-10 3:13 ` Krishna Kurapati PSSNV
2024-01-10 19:23 ` Bjorn Andersson
2023-10-17 3:11 ` [PATCH 12/12] arm64: dts: qcom: sc8180x: flatten usb_sec node Bjorn Andersson
2023-10-20 22:04 ` [PATCH 00/12] usb: dwc3: qcom: Flatten dwc3 structure Thinh Nguyen
2023-11-22 9:48 ` Johan Hovold
2024-01-08 16:46 ` Bjorn Andersson
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=20231016-dwc3-refactor-v1-6-ab4a84165470@quicinc.com \
--to=quic_bjorande@quicinc.com \
--cc=Thinh.Nguyen@synopsys.com \
--cc=andersson@kernel.org \
--cc=balbi@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=johan@kernel.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_kriskura@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;
as well as URLs for NNTP newsgroup(s).