* [PATCH v1 1/2] dt-bindings: usb: dwc3: Document Renesas R-Car Gen5 DWC3 xHCI USB controller
@ 2026-07-28 1:14 Marek Vasut
2026-07-28 1:14 ` [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue Marek Vasut
0 siblings, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2026-07-28 1:14 UTC (permalink / raw)
To: linux-usb
Cc: Marek Vasut, Conor Dooley, Geert Uytterhoeven, Greg Kroah-Hartman,
Krzysztof Kozlowski, Rob Herring, Thinh Nguyen, devicetree,
linux-kernel, linux-renesas-soc
The Renesas R-Car Gen5 SoC contains multiple instances of DWC3 USB
controller with glue logic wrapper around them. Document the glue
logic and DWC3 controller.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Conor Dooley <conor+dt@kernel.org>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
Cc: Rob Herring <robh@kernel.org>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org
Cc: linux-usb@vger.kernel.org
---
.../bindings/usb/renesas,rcar-gen5-usb.yaml | 82 +++++++++++++++++++
1 file changed, 82 insertions(+)
create mode 100644 Documentation/devicetree/bindings/usb/renesas,rcar-gen5-usb.yaml
diff --git a/Documentation/devicetree/bindings/usb/renesas,rcar-gen5-usb.yaml b/Documentation/devicetree/bindings/usb/renesas,rcar-gen5-usb.yaml
new file mode 100644
index 0000000000000..a334648e2dfc4
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/renesas,rcar-gen5-usb.yaml
@@ -0,0 +1,82 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/usb/renesas,rcar-gen5-usb.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Renesas R-Car Gen5 DWC3 xHCI USB controller
+
+maintainers:
+ - Marek Vasut <marek.vasut+renesas@mailbox.org>
+
+properties:
+ compatible:
+ items:
+ - const: renesas,r8a78000-usb
+ - const: renesas,rcar-gen5-usb
+
+ '#address-cells':
+ const: 2
+
+ '#size-cells':
+ const: 2
+
+ ranges: true
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+ power-domains:
+ maxItems: 1
+
+ resets:
+ maxItems: 1
+
+patternProperties:
+ '^usb@':
+ $ref: snps,dwc3.yaml#
+
+required:
+ - compatible
+ - '#address-cells'
+ - '#size-cells'
+ - ranges
+ - reg
+ - clocks
+ - power-domains
+ - resets
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/interrupt-controller/arm-gic.h>
+
+ bus {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ usb@c9c54000 {
+ compatible = "renesas,r8a78000-usb", "renesas,rcar-gen5-usb";
+ reg = <0 0xc9c54000 0 0x2000>;
+ clocks = <&scmi_clk 336>;
+ power-domains = <&scmi_devpd 16>;
+ resets = <&scmi_reset 336>;
+
+ #address-cells = <2>;
+ #size-cells = <2>;
+ ranges = <0x0 0xc8800000 0x0 0xc8800000 0x0 0x100000>;
+
+ usb@c8800000 {
+ compatible = "synopsys,dwc3";
+ reg = <0x0 0xc8800000 0x0 0x100000>;
+ interrupts = <GIC_SPI 795 IRQ_TYPE_LEVEL_HIGH>;
+ maximum-speed = "super-speed-plus";
+ phys = <&mp_phy 2>;
+ phy-names = "usb3-phy";
+ };
+ };
+ };
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-07-28 1:14 [PATCH v1 1/2] dt-bindings: usb: dwc3: Document Renesas R-Car Gen5 DWC3 xHCI USB controller Marek Vasut
@ 2026-07-28 1:14 ` Marek Vasut
2026-08-05 0:48 ` Thinh Nguyen
0 siblings, 1 reply; 7+ messages in thread
From: Marek Vasut @ 2026-07-28 1:14 UTC (permalink / raw)
To: linux-usb
Cc: Thanh Quan, Marek Vasut, Conor Dooley, Geert Uytterhoeven,
Greg Kroah-Hartman, Krzysztof Kozlowski, Rob Herring,
Thinh Nguyen, devicetree, linux-kernel, linux-renesas-soc
From: Thanh Quan <thanh.quan.xn@renesas.com>
The Renesas R-Car Gen5 SoC contains multiple instances of DWC3 USB
controller with glue logic wrapper around them. Add driver for the
glue logic around the DWC3 USB controller core.
Signed-off-by: Thanh Quan <thanh.quan.xn@renesas.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Conor Dooley <conor+dt@kernel.org>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
Cc: Rob Herring <robh@kernel.org>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org
Cc: linux-usb@vger.kernel.org
---
drivers/usb/dwc3/Kconfig | 10 ++
drivers/usb/dwc3/Makefile | 1 +
drivers/usb/dwc3/dwc3-rcar-gen5.c | 150 ++++++++++++++++++++++++++++++
3 files changed, 161 insertions(+)
create mode 100644 drivers/usb/dwc3/dwc3-rcar-gen5.c
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig
index 18169727a413e..7d8ee192b1241 100644
--- a/drivers/usb/dwc3/Kconfig
+++ b/drivers/usb/dwc3/Kconfig
@@ -234,4 +234,14 @@ config USB_DWC3_GOOGLE
To compile this driver as a module, choose M here: the
module will be called dwc3-google.ko.
+config USB_DWC3_RCAR_GEN5
+ tristate "Renesas R-Car Gen5 DWC3 Platform Driver"
+ depends on ARCH_RENESAS || COMPILE_TEST
+ default USB_DWC3
+ help
+ Support the DesignWare Core USB3 IP found on Renesas R-Car Gen5
+ SoC. This driver provides the glue layer for the USB controller
+ on Renesas R-Car Gen5 platform.
+ Say 'Y' or 'M' if you have such device.
+
endif
diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile
index f37971197203e..99bbd147f0b5f 100644
--- a/drivers/usb/dwc3/Makefile
+++ b/drivers/usb/dwc3/Makefile
@@ -61,3 +61,4 @@ obj-$(CONFIG_USB_DWC3_OCTEON) += dwc3-octeon.o
obj-$(CONFIG_USB_DWC3_RTK) += dwc3-rtk.o
obj-$(CONFIG_USB_DWC3_GENERIC_PLAT) += dwc3-generic-plat.o
obj-$(CONFIG_USB_DWC3_GOOGLE) += dwc3-google.o
+obj-$(CONFIG_USB_DWC3_RCAR_GEN5) += dwc3-rcar-gen5.o
diff --git a/drivers/usb/dwc3/dwc3-rcar-gen5.c b/drivers/usb/dwc3/dwc3-rcar-gen5.c
new file mode 100644
index 0000000000000..344d0851559f5
--- /dev/null
+++ b/drivers/usb/dwc3/dwc3-rcar-gen5.c
@@ -0,0 +1,150 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Renesas USB device driver with DWC3 integration
+ *
+ * Copyright (C) 2025-2026 Renesas Electronics Corporation
+ */
+
+#include <linux/clk.h>
+#include <linux/delay.h>
+#include <linux/err.h>
+#include <linux/io.h>
+#include <linux/module.h>
+#include <linux/of_platform.h>
+#include <linux/platform_device.h>
+#include <linux/pm_runtime.h>
+#include <linux/reset.h>
+
+struct dwc3_rcar_gen5_priv {
+ void __iomem *base;
+ struct clk *clk;
+ bool use_usb3_flow;
+};
+
+static int dwc3_rcar_gen5_init(struct dwc3_rcar_gen5_priv *priv)
+{
+ /*
+ * The datasheet describes initialization procedure without full
+ * information about the registers. Therefore, the source code is
+ * based on the bare metal code shared by the board team.
+ */
+ writew(0x211, priv->base + 0x26);
+
+ /* USB3 does not need additional register programming. */
+ if (priv->use_usb3_flow)
+ return 0;
+
+ writew(0x11, priv->base + 0x81c);
+ writew(0x0, priv->base + 0x81a);
+ writew(0x1, priv->base + 0x802);
+
+ usleep_range(10000, 20000);
+
+ writew(0x0, priv->base + 0x802);
+ writew(0x1, priv->base + 0x2a);
+ writew(0x1, priv->base + 0x81a);
+
+ usleep_range(10000, 20000);
+
+ return 0;
+}
+
+static int dwc3_rcar_gen5_probe(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ struct device_node *subnode;
+ struct reset_control *reset;
+ const char *maximum_speed;
+ struct dwc3_rcar_gen5_priv *priv;
+ int ret;
+
+ priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
+ if (!priv)
+ return -ENOMEM;
+
+ platform_set_drvdata(pdev, priv);
+
+ priv->base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(priv->base))
+ return dev_err_probe(dev, PTR_ERR(priv->base), "Failed to map registers\n");
+
+ reset = devm_reset_control_get(dev, NULL);
+ if (IS_ERR(reset))
+ return dev_err_probe(dev, PTR_ERR(reset), "Failed to get reset control\n");
+
+ priv->clk = devm_clk_get(dev, NULL);
+ if (IS_ERR(priv->clk))
+ return dev_err_probe(dev, PTR_ERR(priv->clk), "Failed to get clock control\n");
+
+ subnode = of_get_compatible_child(dev->of_node, "synopsys,dwc3");
+ if (!subnode)
+ return dev_err_probe(dev, -ENODEV, "Failed to find DWC3 subnode node\n");
+
+ ret = of_property_read_string(subnode, "maximum-speed", &maximum_speed);
+ of_node_put(subnode);
+ if (ret)
+ return dev_err_probe(dev, -ENODEV, "Failed to determine maximum speed\n");
+
+ priv->use_usb3_flow = !strcmp(maximum_speed, "super-speed-plus") ||
+ !strcmp(maximum_speed, "super-speed");
+
+ ret = devm_pm_runtime_enable(dev);
+ if (ret)
+ return dev_err_probe(dev, ret, "Failed to enable runtime PM\n");
+
+ ret = pm_runtime_resume_and_get(dev);
+ if (ret)
+ return dev_err_probe(dev, ret, "Failed to resume runtime PM\n");
+
+ return devm_of_platform_populate(dev);
+}
+
+static int __maybe_unused dwc3_rcar_gen5_suspend(struct device *dev)
+{
+ struct dwc3_rcar_gen5_priv *priv = dev_get_drvdata(dev);
+
+ clk_disable_unprepare(priv->clk);
+
+ return 0;
+}
+
+static int __maybe_unused dwc3_rcar_gen5_resume(struct device *dev)
+{
+ struct dwc3_rcar_gen5_priv *priv = dev_get_drvdata(dev);
+ int ret;
+
+ ret = clk_prepare_enable(priv->clk);
+ if (ret) {
+ dev_err(dev, "Failed to enable clock on resume: %d\n", ret);
+ return ret;
+ }
+
+ usleep_range(10000, 20000);
+
+ return dwc3_rcar_gen5_init(priv);
+}
+
+static DEFINE_RUNTIME_DEV_PM_OPS(dwc3_rcar_gen5_pm_ops,
+ dwc3_rcar_gen5_suspend,
+ dwc3_rcar_gen5_resume, NULL);
+
+static const struct of_device_id dwc3_rcar_gen5_of_match[] = {
+ { .compatible = "renesas,rcar-gen5-usb" },
+ { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(of, dwc3_rcar_gen5_of_match);
+
+static struct platform_driver dwc3_rcar_gen5_driver = {
+ .probe = dwc3_rcar_gen5_probe,
+ .driver = {
+ .name = "renesas-rcar-gen5-usb",
+ .of_match_table = dwc3_rcar_gen5_of_match,
+ .pm = &dwc3_rcar_gen5_pm_ops,
+ },
+};
+
+module_platform_driver(dwc3_rcar_gen5_driver);
+
+MODULE_AUTHOR("Thanh Quan");
+MODULE_DESCRIPTION("Renesas R-Car X5H USB Glue Layer Driver");
+MODULE_LICENSE("GPL");
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-07-28 1:14 ` [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue Marek Vasut
@ 2026-08-05 0:48 ` Thinh Nguyen
2026-08-05 7:53 ` Geert Uytterhoeven
2026-08-06 3:41 ` Marek Vasut
0 siblings, 2 replies; 7+ messages in thread
From: Thinh Nguyen @ 2026-08-05 0:48 UTC (permalink / raw)
To: Marek Vasut
Cc: linux-usb@vger.kernel.org, Thanh Quan, Conor Dooley,
Geert Uytterhoeven, Greg Kroah-Hartman, Krzysztof Kozlowski,
Rob Herring, Thinh Nguyen, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org
On Tue, Jul 28, 2026, Marek Vasut wrote:
> From: Thanh Quan <thanh.quan.xn@renesas.com>
>
> The Renesas R-Car Gen5 SoC contains multiple instances of DWC3 USB
> controller with glue logic wrapper around them. Add driver for the
> glue logic around the DWC3 USB controller core.
>
> Signed-off-by: Thanh Quan <thanh.quan.xn@renesas.com>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---
> Cc: Conor Dooley <conor+dt@kernel.org>
> Cc: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
> Cc: Rob Herring <robh@kernel.org>
> Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> Cc: devicetree@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> Cc: linux-renesas-soc@vger.kernel.org
> Cc: linux-usb@vger.kernel.org
> ---
> drivers/usb/dwc3/Kconfig | 10 ++
> drivers/usb/dwc3/Makefile | 1 +
> drivers/usb/dwc3/dwc3-rcar-gen5.c | 150 ++++++++++++++++++++++++++++++
> 3 files changed, 161 insertions(+)
> create mode 100644 drivers/usb/dwc3/dwc3-rcar-gen5.c
>
> diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig
> index 18169727a413e..7d8ee192b1241 100644
> --- a/drivers/usb/dwc3/Kconfig
> +++ b/drivers/usb/dwc3/Kconfig
> @@ -234,4 +234,14 @@ config USB_DWC3_GOOGLE
> To compile this driver as a module, choose M here: the
> module will be called dwc3-google.ko.
>
> +config USB_DWC3_RCAR_GEN5
> + tristate "Renesas R-Car Gen5 DWC3 Platform Driver"
> + depends on ARCH_RENESAS || COMPILE_TEST
> + default USB_DWC3
> + help
> + Support the DesignWare Core USB3 IP found on Renesas R-Car Gen5
> + SoC. This driver provides the glue layer for the USB controller
> + on Renesas R-Car Gen5 platform.
> + Say 'Y' or 'M' if you have such device.
> +
> endif
> diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile
> index f37971197203e..99bbd147f0b5f 100644
> --- a/drivers/usb/dwc3/Makefile
> +++ b/drivers/usb/dwc3/Makefile
> @@ -61,3 +61,4 @@ obj-$(CONFIG_USB_DWC3_OCTEON) += dwc3-octeon.o
> obj-$(CONFIG_USB_DWC3_RTK) += dwc3-rtk.o
> obj-$(CONFIG_USB_DWC3_GENERIC_PLAT) += dwc3-generic-plat.o
> obj-$(CONFIG_USB_DWC3_GOOGLE) += dwc3-google.o
> +obj-$(CONFIG_USB_DWC3_RCAR_GEN5) += dwc3-rcar-gen5.o
> diff --git a/drivers/usb/dwc3/dwc3-rcar-gen5.c b/drivers/usb/dwc3/dwc3-rcar-gen5.c
> new file mode 100644
> index 0000000000000..344d0851559f5
> --- /dev/null
> +++ b/drivers/usb/dwc3/dwc3-rcar-gen5.c
> @@ -0,0 +1,150 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Renesas USB device driver with DWC3 integration
> + *
> + * Copyright (C) 2025-2026 Renesas Electronics Corporation
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/delay.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/module.h>
> +#include <linux/of_platform.h>
> +#include <linux/platform_device.h>
> +#include <linux/pm_runtime.h>
> +#include <linux/reset.h>
> +
> +struct dwc3_rcar_gen5_priv {
> + void __iomem *base;
> + struct clk *clk;
> + bool use_usb3_flow;
> +};
> +
> +static int dwc3_rcar_gen5_init(struct dwc3_rcar_gen5_priv *priv)
> +{
> + /*
> + * The datasheet describes initialization procedure without full
> + * information about the registers. Therefore, the source code is
> + * based on the bare metal code shared by the board team.
> + */
> + writew(0x211, priv->base + 0x26);
> +
> + /* USB3 does not need additional register programming. */
> + if (priv->use_usb3_flow)
> + return 0;
> +
> + writew(0x11, priv->base + 0x81c);
> + writew(0x0, priv->base + 0x81a);
> + writew(0x1, priv->base + 0x802);
> +
> + usleep_range(10000, 20000);
> +
> + writew(0x0, priv->base + 0x802);
> + writew(0x1, priv->base + 0x2a);
> + writew(0x1, priv->base + 0x81a);
Use macros for these magic numbers.
> +
> + usleep_range(10000, 20000);
> +
> + return 0;
> +}
> +
> +static int dwc3_rcar_gen5_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + struct device_node *subnode;
> + struct reset_control *reset;
> + const char *maximum_speed;
> + struct dwc3_rcar_gen5_priv *priv;
> + int ret;
> +
> + priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
> + if (!priv)
> + return -ENOMEM;
> +
> + platform_set_drvdata(pdev, priv);
> +
> + priv->base = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(priv->base))
> + return dev_err_probe(dev, PTR_ERR(priv->base), "Failed to map registers\n");
> +
> + reset = devm_reset_control_get(dev, NULL);
Where is the "reset" being used? How is this reset asserted/deasserted?
> + if (IS_ERR(reset))
> + return dev_err_probe(dev, PTR_ERR(reset), "Failed to get reset control\n");
> +
> + priv->clk = devm_clk_get(dev, NULL);
> + if (IS_ERR(priv->clk))
> + return dev_err_probe(dev, PTR_ERR(priv->clk), "Failed to get clock control\n");
> +
> + subnode = of_get_compatible_child(dev->of_node, "synopsys,dwc3");
> + if (!subnode)
> + return dev_err_probe(dev, -ENODEV, "Failed to find DWC3 subnode node\n");
> +
> + ret = of_property_read_string(subnode, "maximum-speed", &maximum_speed);
> + of_node_put(subnode);
> + if (ret)
> + return dev_err_probe(dev, -ENODEV, "Failed to determine maximum speed\n");
Why is maximum-speed a hard requirement? It should be optional.
> +
> + priv->use_usb3_flow = !strcmp(maximum_speed, "super-speed-plus") ||
> + !strcmp(maximum_speed, "super-speed");
> +
> + ret = devm_pm_runtime_enable(dev);
> + if (ret)
> + return dev_err_probe(dev, ret, "Failed to enable runtime PM\n");
Do you really want this to be a hard error?
> +
> + ret = pm_runtime_resume_and_get(dev);
> + if (ret)
> + return dev_err_probe(dev, ret, "Failed to resume runtime PM\n");
Same question here.
> +
> + return devm_of_platform_populate(dev);
> +}
> +
> +static int __maybe_unused dwc3_rcar_gen5_suspend(struct device *dev)
Avoid using __maybe_unused. If it's not used, remove it.
> +{
> + struct dwc3_rcar_gen5_priv *priv = dev_get_drvdata(dev);
> +
> + clk_disable_unprepare(priv->clk);
> +
> + return 0;
> +}
> +
> +static int __maybe_unused dwc3_rcar_gen5_resume(struct device *dev)
> +{
> + struct dwc3_rcar_gen5_priv *priv = dev_get_drvdata(dev);
> + int ret;
> +
> + ret = clk_prepare_enable(priv->clk);
> + if (ret) {
> + dev_err(dev, "Failed to enable clock on resume: %d\n", ret);
> + return ret;
> + }
> +
> + usleep_range(10000, 20000);
> +
> + return dwc3_rcar_gen5_init(priv);
> +}
> +
> +static DEFINE_RUNTIME_DEV_PM_OPS(dwc3_rcar_gen5_pm_ops,
> + dwc3_rcar_gen5_suspend,
> + dwc3_rcar_gen5_resume, NULL);
> +
> +static const struct of_device_id dwc3_rcar_gen5_of_match[] = {
> + { .compatible = "renesas,rcar-gen5-usb" },
> + { /* sentinel */ }
> +};
> +MODULE_DEVICE_TABLE(of, dwc3_rcar_gen5_of_match);
> +
> +static struct platform_driver dwc3_rcar_gen5_driver = {
> + .probe = dwc3_rcar_gen5_probe,
> + .driver = {
> + .name = "renesas-rcar-gen5-usb",
> + .of_match_table = dwc3_rcar_gen5_of_match,
> + .pm = &dwc3_rcar_gen5_pm_ops,
> + },
> +};
> +
> +module_platform_driver(dwc3_rcar_gen5_driver);
> +
> +MODULE_AUTHOR("Thanh Quan");
> +MODULE_DESCRIPTION("Renesas R-Car X5H USB Glue Layer Driver");
> +MODULE_LICENSE("GPL");
> --
> 2.53.0
Please use the new flatten glue model. The logic for this glue looks
simple. Can you review and evaluate if we can enhance and whether we
should use the dwc3-generic-plat glue driver for this?
BR,
Thinh
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-08-05 0:48 ` Thinh Nguyen
@ 2026-08-05 7:53 ` Geert Uytterhoeven
2026-08-05 22:20 ` Thinh Nguyen
2026-08-06 3:28 ` Marek Vasut
2026-08-06 3:41 ` Marek Vasut
1 sibling, 2 replies; 7+ messages in thread
From: Geert Uytterhoeven @ 2026-08-05 7:53 UTC (permalink / raw)
To: Thinh Nguyen
Cc: Marek Vasut, linux-usb@vger.kernel.org, Thanh Quan, Conor Dooley,
Greg Kroah-Hartman, Krzysztof Kozlowski, Rob Herring,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Hi Thinh,
On Wed, 5 Aug 2026 at 02:48, Thinh Nguyen <Thinh.Nguyen@synopsys.com> wrote:
> On Tue, Jul 28, 2026, Marek Vasut wrote:
> > --- /dev/null
> > +++ b/drivers/usb/dwc3/dwc3-rcar-gen5.c
> > +static int __maybe_unused dwc3_rcar_gen5_suspend(struct device *dev)
>
> Avoid using __maybe_unused. If it's not used, remove it.
Whether the function is used or not depends on CONFIG_PM_SLEEP ;-)
> > +static DEFINE_RUNTIME_DEV_PM_OPS(dwc3_rcar_gen5_pm_ops,
> > + dwc3_rcar_gen5_suspend,
> > + dwc3_rcar_gen5_resume, NULL);
As DEFINE_RUNTIME_DEV_PM_OPS() uses pm_sleep_ptr()
internally, the __maybe_unused annotations above can be removed.
> > +
> > +static const struct of_device_id dwc3_rcar_gen5_of_match[] = {
> > + { .compatible = "renesas,rcar-gen5-usb" },
> > + { /* sentinel */ }
> > +};
> > +MODULE_DEVICE_TABLE(of, dwc3_rcar_gen5_of_match);
> > +
> > +static struct platform_driver dwc3_rcar_gen5_driver = {
> > + .probe = dwc3_rcar_gen5_probe,
> > + .driver = {
> > + .name = "renesas-rcar-gen5-usb",
> > + .of_match_table = dwc3_rcar_gen5_of_match,
> > + .pm = &dwc3_rcar_gen5_pm_ops,
But as Sashiko pointed out, the pm_ptr() is missing here.
> > + },
> > +};
> > +
> > +module_platform_driver(dwc3_rcar_gen5_driver);
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-08-05 7:53 ` Geert Uytterhoeven
@ 2026-08-05 22:20 ` Thinh Nguyen
2026-08-06 3:28 ` Marek Vasut
1 sibling, 0 replies; 7+ messages in thread
From: Thinh Nguyen @ 2026-08-05 22:20 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Thinh Nguyen, Marek Vasut, linux-usb@vger.kernel.org, Thanh Quan,
Conor Dooley, Greg Kroah-Hartman, Krzysztof Kozlowski,
Rob Herring, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org
On Wed, Aug 05, 2026, Geert Uytterhoeven wrote:
> Hi Thinh,
>
> On Wed, 5 Aug 2026 at 02:48, Thinh Nguyen <Thinh.Nguyen@synopsys.com> wrote:
> > On Tue, Jul 28, 2026, Marek Vasut wrote:
> > > --- /dev/null
> > > +++ b/drivers/usb/dwc3/dwc3-rcar-gen5.c
>
> > > +static int __maybe_unused dwc3_rcar_gen5_suspend(struct device *dev)
> >
> > Avoid using __maybe_unused. If it's not used, remove it.
>
> Whether the function is used or not depends on CONFIG_PM_SLEEP ;-)
>
> > > +static DEFINE_RUNTIME_DEV_PM_OPS(dwc3_rcar_gen5_pm_ops,
> > > + dwc3_rcar_gen5_suspend,
> > > + dwc3_rcar_gen5_resume, NULL);
>
> As DEFINE_RUNTIME_DEV_PM_OPS() uses pm_sleep_ptr()
> internally, the __maybe_unused annotations above can be removed.
>
> > > +
> > > +static const struct of_device_id dwc3_rcar_gen5_of_match[] = {
> > > + { .compatible = "renesas,rcar-gen5-usb" },
> > > + { /* sentinel */ }
> > > +};
> > > +MODULE_DEVICE_TABLE(of, dwc3_rcar_gen5_of_match);
> > > +
> > > +static struct platform_driver dwc3_rcar_gen5_driver = {
> > > + .probe = dwc3_rcar_gen5_probe,
> > > + .driver = {
> > > + .name = "renesas-rcar-gen5-usb",
> > > + .of_match_table = dwc3_rcar_gen5_of_match,
> > > + .pm = &dwc3_rcar_gen5_pm_ops,
>
> But as Sashiko pointed out, the pm_ptr() is missing here.
>
Right. This needs to be fixed.
BR,
Thinh
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-08-05 7:53 ` Geert Uytterhoeven
2026-08-05 22:20 ` Thinh Nguyen
@ 2026-08-06 3:28 ` Marek Vasut
1 sibling, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2026-08-06 3:28 UTC (permalink / raw)
To: Geert Uytterhoeven, Thinh Nguyen
Cc: Marek Vasut, linux-usb@vger.kernel.org, Thanh Quan, Conor Dooley,
Greg Kroah-Hartman, Krzysztof Kozlowski, Rob Herring,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
On 8/5/26 9:53 AM, Geert Uytterhoeven wrote:
Hello Geert,
> On Wed, 5 Aug 2026 at 02:48, Thinh Nguyen <Thinh.Nguyen@synopsys.com> wrote:
>> On Tue, Jul 28, 2026, Marek Vasut wrote:
>>> --- /dev/null
>>> +++ b/drivers/usb/dwc3/dwc3-rcar-gen5.c
>
>>> +static int __maybe_unused dwc3_rcar_gen5_suspend(struct device *dev)
>>
>> Avoid using __maybe_unused. If it's not used, remove it.
>
> Whether the function is used or not depends on CONFIG_PM_SLEEP ;-)
>
>>> +static DEFINE_RUNTIME_DEV_PM_OPS(dwc3_rcar_gen5_pm_ops,
>>> + dwc3_rcar_gen5_suspend,
>>> + dwc3_rcar_gen5_resume, NULL);
>
> As DEFINE_RUNTIME_DEV_PM_OPS() uses pm_sleep_ptr()
> internally, the __maybe_unused annotations above can be removed.
The __maybe_unused is dropped and pm_ptr() added in V2, thanks !
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue
2026-08-05 0:48 ` Thinh Nguyen
2026-08-05 7:53 ` Geert Uytterhoeven
@ 2026-08-06 3:41 ` Marek Vasut
1 sibling, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2026-08-06 3:41 UTC (permalink / raw)
To: Thinh Nguyen, Marek Vasut
Cc: linux-usb@vger.kernel.org, Thanh Quan, Conor Dooley,
Geert Uytterhoeven, Greg Kroah-Hartman, Krzysztof Kozlowski,
Rob Herring, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-renesas-soc@vger.kernel.org
On 8/5/26 2:48 AM, Thinh Nguyen wrote:
Hello Thinh,
[...]
>> +static int dwc3_rcar_gen5_init(struct dwc3_rcar_gen5_priv *priv)
>> +{
>> + /*
>> + * The datasheet describes initialization procedure without full
>> + * information about the registers. Therefore, the source code is
>> + * based on the bare metal code shared by the board team.
>> + */
>> + writew(0x211, priv->base + 0x26);
>> +
>> + /* USB3 does not need additional register programming. */
>> + if (priv->use_usb3_flow)
>> + return 0;
>> +
>> + writew(0x11, priv->base + 0x81c);
>> + writew(0x0, priv->base + 0x81a);
>> + writew(0x1, priv->base + 0x802);
>> +
>> + usleep_range(10000, 20000);
>> +
>> + writew(0x0, priv->base + 0x802);
>> + writew(0x1, priv->base + 0x2a);
>> + writew(0x1, priv->base + 0x81a);
>
> Use macros for these magic numbers.
Please see the comment above, this is some magic register poking init code.
>> +
>> + usleep_range(10000, 20000);
>> +
>> + return 0;
>> +}
>> +
>> +static int dwc3_rcar_gen5_probe(struct platform_device *pdev)
>> +{
>> + struct device *dev = &pdev->dev;
>> + struct device_node *subnode;
>> + struct reset_control *reset;
>> + const char *maximum_speed;
>> + struct dwc3_rcar_gen5_priv *priv;
>> + int ret;
>> +
>> + priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
>> + if (!priv)
>> + return -ENOMEM;
>> +
>> + platform_set_drvdata(pdev, priv);
>> +
>> + priv->base = devm_platform_ioremap_resource(pdev, 0);
>> + if (IS_ERR(priv->base))
>> + return dev_err_probe(dev, PTR_ERR(priv->base), "Failed to map registers\n");
>> +
>> + reset = devm_reset_control_get(dev, NULL);
>
> Where is the "reset" being used? How is this reset asserted/deasserted?
This is going to be fixed in V2 using
devm_reset_control_get_exclusive_deasserted().
>> + if (IS_ERR(reset))
>> + return dev_err_probe(dev, PTR_ERR(reset), "Failed to get reset control\n");
>> +
>> + priv->clk = devm_clk_get(dev, NULL);
>> + if (IS_ERR(priv->clk))
>> + return dev_err_probe(dev, PTR_ERR(priv->clk), "Failed to get clock control\n");
>> +
>> + subnode = of_get_compatible_child(dev->of_node, "synopsys,dwc3");
>> + if (!subnode)
>> + return dev_err_probe(dev, -ENODEV, "Failed to find DWC3 subnode node\n");
>> +
>> + ret = of_property_read_string(subnode, "maximum-speed", &maximum_speed);
>> + of_node_put(subnode);
>> + if (ret)
>> + return dev_err_probe(dev, -ENODEV, "Failed to determine maximum speed\n");
>
> Why is maximum-speed a hard requirement? It should be optional.
Because we need to know whether or not the magic init code (please see
dwc3_rcar_gen5_init() if (priv->use_usb3_flow) above) should be
programmed into the glue registers.
>> + priv->use_usb3_flow = !strcmp(maximum_speed, "super-speed-plus") ||
>> + !strcmp(maximum_speed, "super-speed");
>> +
>> + ret = devm_pm_runtime_enable(dev);
>> + if (ret)
>> + return dev_err_probe(dev, ret, "Failed to enable runtime PM\n");
>
> Do you really want this to be a hard error?
I think so -- why would it be beneficial if this wasn't an error ?
[...]
> Please use the new flatten glue model. The logic for this glue looks
> simple.
It is very simple -- enable clock, power domain, deassert reset, program
the magic into glue registers and it is done and ready.
> Can you review and evaluate if we can enhance and whether we
> should use the dwc3-generic-plat glue driver for this?
Let me give this a try, I think this should be doable. Thanks !
--
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-06 3:42 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-28 1:14 [PATCH v1 1/2] dt-bindings: usb: dwc3: Document Renesas R-Car Gen5 DWC3 xHCI USB controller Marek Vasut
2026-07-28 1:14 ` [PATCH v1 2/2] usb: dwc3: Add Renesas R-Car Gen5 DWC3 xHCI USB controller glue Marek Vasut
2026-08-05 0:48 ` Thinh Nguyen
2026-08-05 7:53 ` Geert Uytterhoeven
2026-08-05 22:20 ` Thinh Nguyen
2026-08-06 3:28 ` Marek Vasut
2026-08-06 3:41 ` Marek Vasut
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox