From: Minda Chen <minda.chen@starfivetech.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor@kernel.org>,
linux-usb@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
Minda Chen <minda.chen@starfivetech.com>
Subject: [PATCH v1 3/3] usb: dwc3-generic: Add Starfive JHB100 USB 2.0 device controller and adapter
Date: Fri, 18 Sep 2026 15:11:03 +0800 [thread overview]
Message-ID: <20260918071103.24482-4-minda.chen@starfivetech.com> (raw)
In-Reply-To: <20260918071103.24482-1-minda.chen@starfivetech.com>
Add PHY or PHY adapter iomem field in struct dwc3_gerneric for
dwc3 generic platform to add PHY/PHY adapter setting.
Also Add Starfive JHB100 USB 2.0 device controller generic init
function to remap PHY adapter io memory region and add adapter
pre-run/stop function.
JHB100 BMC soc contains Synopsys dwc3 multi-port host controller.
And export its xhci controller to host server through PCIe. xhci
contains 8 ports and each connect with one dwc3 device controller
through an PHY adapter. Server host USB subsystem includes
one multi-port dwc3 USB host, multiple dwc3 device controllers
and their adapters.
While USB adapter 2.0 enable bit is set, the connect status bit of
xhci port stat register will be asserted. If the usb enumeration is
not ready for USB gadget, The xhci will fail with enumerate usb device.
So The JHB100 USB device controller adapter require to set/clear
USB 2.0 port enable while usb gadget start/stop usb device enumeration.
This can be treated as a hardware quirk.
Signed-off-by: Minda Chen <minda.chen@starfivetech.com>
---
drivers/usb/dwc3/dwc3-generic-plat.c | 47 +++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/dwc3/dwc3-generic-plat.c b/drivers/usb/dwc3/dwc3-generic-plat.c
index ca69ac0eb07c..e3394205a519 100644
--- a/drivers/usb/dwc3/dwc3-generic-plat.c
+++ b/drivers/usb/dwc3/dwc3-generic-plat.c
@@ -22,12 +22,15 @@
#define EIC7700_HSP_AXI_LP_XM_CSYSREQ BIT(0)
#define EIC7700_HSP_AXI_LP_XS_CSYSREQ BIT(16)
+#define JHB100_ADAPTER_PORT_EN BIT(20)
+
struct dwc3_generic {
struct device *dev;
struct dwc3 dwc;
struct clk_bulk_data *clks;
int num_clocks;
struct reset_control *resets;
+ void __iomem *phy_regs; /* PHY or PHY adapter regs */
};
struct dwc3_generic_config {
@@ -42,6 +45,43 @@ static void dwc3_generic_reset_control_assert(void *data)
reset_control_assert(data);
}
+static void dwc3_jhb100_pre_run_stop(struct dwc3 *dwc3, bool start)
+{
+ struct dwc3_generic *data = to_dwc3_generic(dwc3);
+ u32 val;
+
+ if (start) {
+ val = readl(data->phy_regs);
+ val |= JHB100_ADAPTER_PORT_EN;
+ writel(val, data->phy_regs);
+ } else {
+ val = readl(data->phy_regs);
+ val &= ~JHB100_ADAPTER_PORT_EN;
+ writel(val, data->phy_regs);
+ }
+}
+
+struct dwc3_glue_ops jhb100_glue_ops = {
+ .pre_run_stop = dwc3_jhb100_pre_run_stop,
+};
+
+static int dwc3_jhb100_init(struct dwc3_generic *dwc3g)
+{
+ struct platform_device *pdev = to_platform_device(dwc3g->dev);
+
+ dwc3g->phy_regs = devm_platform_ioremap_resource_byname(pdev, "adapter");
+ if (IS_ERR(dwc3g->phy_regs)) {
+ dwc3g->phy_regs = NULL;
+ /* Generic bmc USB with PHY*/
+ return 0;
+ }
+
+ /* usb device controller with adapter */
+ dwc3g->dwc.glue_ops = &jhb100_glue_ops;
+
+ return 0;
+}
+
static int dwc3_eic7700_init(struct dwc3_generic *dwc3g)
{
struct device *dev = dwc3g->dev;
@@ -231,12 +271,17 @@ static const struct dwc3_generic_config eic7700_dwc3 = {
.properties = DWC3_DEFAULT_PROPERTIES,
};
+static const struct dwc3_generic_config jhb100_dwc3 = {
+ .init = dwc3_jhb100_init,
+ .properties = DWC3_DEFAULT_PROPERTIES,
+};
+
static const struct of_device_id dwc3_generic_of_match[] = {
{ .compatible = "spacemit,k1-dwc3", &spacemit_k1_dwc3},
{ .compatible = "spacemit,k3-dwc3", },
{ .compatible = "fsl,ls1028a-dwc3", &fsl_ls1028_dwc3},
{ .compatible = "eswin,eic7700-dwc3", &eic7700_dwc3},
- { .compatible = "starfive,jhb100-dwc3", },
+ { .compatible = "starfive,jhb100-dwc3", &jhb100_dwc3},
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, dwc3_generic_of_match);
--
2.17.1
prev parent reply other threads:[~2026-09-18 7:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-18 7:11 [PATCH v1 0/3] Add StarFive JHB100 host field USB device controller driver Minda Chen
2026-09-18 7:11 ` [PATCH v1 1/3] dt-bindings: usb: dwc3: Add JHB100 device controller PHY adapter Minda Chen
2026-09-18 7:11 ` [PATCH v1 2/3] dt-bindings: usb: dwc3: Add JHB100 USB device clock number limit Minda Chen
2026-09-18 7:11 ` Minda Chen [this message]
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=20260918071103.24482-4-minda.chen@starfivetech.com \
--to=minda.chen@starfivetech.com \
--cc=Thinh.Nguyen@synopsys.com \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--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®