* [PATCH v2 0/4] Add Google Tensor SoC USB support
@ 2025-10-08 5:59 Roy Luo
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
` (3 more replies)
0 siblings, 4 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-08 5:59 UTC (permalink / raw)
To: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Roy Luo, Badhri Jagan Sridharan,
linux-phy, devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
This series introduces USB controller and PHY support for the Google
Tensor G5 SoC (codename: Laguna), a new generation of Google silicon
first launched with Pixel 10 devices.
The Tensor G5 represents a significant architectural overhaul compared
to previous Tensor generations (e.g., gs101), which were based on Samsung
Exynos IP. Although the G5 still utilizes Synopsys IP for the USB
components, the custom top-level integration introduces a completely new
design for clock, reset scheme, register interfaces and programming
sequence, necessitating new drivers and device tree bindings.
The USB subsystem on Tensor G5 integrates a Synopsys DWC3 USB 3.1
DRD-Single Port controller with hibernation support, and a custom PHY
block comprising Synopsys eUSB2 and USB 3.2/DP combo PHYs.
Co-developed-by: Joy Chakraborty <joychakr@google.com>
Signed-off-by: Joy Chakraborty <joychakr@google.com>
Co-developed-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Roy Luo <royluo@google.com>
---
Changes in v2:
- Reorder patches to present bindings first.
- Update dt binding compatible strings to be SoC-specific (google,gs5-*).
- Better describe the hardware in dt binding commit messages and
descriptions.
- Adjust PHY driver commit subjects to use correct prefixes ("phy:").
- Move PHY driver from a subdirectory to drivers/phy/.
Link to v1: https://lore.kernel.org/linux-usb/20251006232125.1833979-1-royluo@google.com/
---
Roy Luo (4):
dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
usb: dwc3: Add Google Tensor SoC DWC3 glue driver
dt-bindings: phy: google: Add Google Tensor G5 USB PHY
phy: Add Google Tensor SoC USB PHY driver
.../bindings/phy/google,gs-usb-phy.yaml | 96 +++
.../bindings/usb/google,gs-dwc3.yaml | 145 +++++
drivers/phy/Kconfig | 14 +
drivers/phy/Makefile | 1 +
drivers/phy/phy-google-usb.c | 286 +++++++++
drivers/usb/dwc3/Kconfig | 10 +
drivers/usb/dwc3/Makefile | 1 +
drivers/usb/dwc3/dwc3-google.c | 597 ++++++++++++++++++
8 files changed, 1150 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
create mode 100644 drivers/phy/phy-google-usb.c
create mode 100644 drivers/usb/dwc3/dwc3-google.c
base-commit: e5f0a698b34ed76002dc5cff3804a61c80233a7a
--
2.51.0.710.ga91ca5db03-goog
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-08 5:59 [PATCH v2 0/4] Add Google Tensor SoC USB support Roy Luo
@ 2025-10-08 5:59 ` Roy Luo
2025-10-08 20:58 ` Conor Dooley
2025-10-08 23:56 ` Krzysztof Kozlowski
2025-10-08 5:59 ` [PATCH v2 2/4] usb: dwc3: Add Google Tensor SoC DWC3 glue driver Roy Luo
` (2 subsequent siblings)
3 siblings, 2 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-08 5:59 UTC (permalink / raw)
To: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Roy Luo, Badhri Jagan Sridharan,
linux-phy, devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
Document the device tree bindings for the DWC3 USB controller found in
Google Tensor SoCs, starting with the G5 generation.
The Tensor G5 silicon represents a complete architectural departure from
previous generations (like gs101), including entirely new clock/reset
schemes, top-level wrapper and register interface. Consequently,
existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
necessitating this new device tree binding.
The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
Dual-Role Device single port with hibernation support.
Signed-off-by: Roy Luo <royluo@google.com>
---
.../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
1 file changed, 145 insertions(+)
create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
new file mode 100644
index 000000000000..9eb0bf726e8d
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
@@ -0,0 +1,145 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+# Copyright (c) 2025, Google LLC
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Google Tensor Series (G5+) DWC3 USB SoC Controller
+
+maintainers:
+ - Roy Luo <royluo@google.com>
+
+description: |
+ Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
+ starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
+ features Dual-Role Device single port with hibernation add-on.
+
+properties:
+ compatible:
+ items:
+ - enum:
+ - google,gs5-dwc3
+
+ reg:
+ minItems: 3
+ maxItems: 3
+
+ reg-names:
+ description: |
+ The following memory regions must present:
+ - dwc3_core: Core DWC3 IP registers.
+ - host_cfg_csr: Hibernation control registers.
+ - usbint_csr: Hibernation interrupt registers.
+ items:
+ - const: dwc3_core
+ - const: host_cfg_csr
+ - const: usbint_csr
+
+ interrupts:
+ minItems: 3
+ maxItems: 3
+
+ interrupt-names:
+ description: |
+ The following interrupts must present:
+ - dwc_usb3: Core DWC3 interrupt.
+ - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
+ - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
+ items:
+ - const: dwc_usb3
+ - const: hs_pme_irq
+ - const: ss_pme_irq
+
+ clocks:
+ minItems: 3
+ maxItems: 3
+
+ clock-names:
+ minItems: 3
+ maxItems: 3
+
+ resets:
+ minItems: 5
+ maxItems: 5
+
+ reset-names:
+ items:
+ - const: usbc_non_sticky
+ - const: usbc_sticky
+ - const: usb_drd_bus
+ - const: u2phy_apb
+ - const: usb_top_csr
+
+ power-domains:
+ minItems: 2
+ maxItems: 2
+
+ power-domain-names:
+ description: |
+ The following power domain must present:
+ - usb_psw_pd: The child power domain of usb_top_pd. Turning it on puts the controller
+ into full power state, turning it off puts the controller into power
+ gated state.
+ - usb_top_pd: The parent power domain of usb_psw_pd. Turning it on puts the controller
+ into power gated state, turning it off completely shuts off the
+ controller.
+ items:
+ - const: usb_psw_pd
+ - const: usb_top_pd
+
+ iommus:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+ - reg-names
+ - interrupts
+ - interrupt-names
+ - clocks
+ - resets
+ - reset-names
+ - power-domains
+ - power-domain-names
+
+allOf:
+ - $ref: snps,dwc3-common.yaml#
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/interrupt-controller/arm-gic.h>
+ #include <dt-bindings/interrupt-controller/irq.h>
+ soc {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ usb@c400000 {
+ compatible = "google,gs5-dwc3";
+ reg = <0 0x0c400000 0 0xd060>, <0 0x0c450000 0 0x14>, <0 0x0c450020 0 0x8>;
+ reg-names = "dwc3_core", "host_cfg_csr", "usbint_csr";
+ interrupts = <GIC_SPI 580 IRQ_TYPE_LEVEL_HIGH 0>,
+ <GIC_SPI 597 IRQ_TYPE_LEVEL_HIGH 0>,
+ <GIC_SPI 598 IRQ_TYPE_LEVEL_HIGH 0>;
+ interrupt-names = "dwc_usb3", "hs_pme_irq", "ss_pme_irq";
+ clocks = <&hsion_usbc_non_sticky_clk>, <&hsion_usbc_sticky_clk>,
+ <&hsion_u2phy_apb_clk>;
+ clock-names = "usbc_non_sticky", "usbc_sticky", "u2phy_apb";
+ resets = <&hsion_resets_usbc_non_sticky>, <&hsion_resets_usbc_sticky>,
+ <&hsion_resets_usb_drd_bus>, <&hsion_resets_u2phy_apb>,
+ <&hsion_resets_usb_top_csr>;
+ reset-names = "usbc_non_sticky", "usbc_sticky",
+ "usb_drd_bus", "u2phy_apb",
+ "usb_top_csr";
+ power-domains = <&hsio_n_usb_psw_pd>, <&hsio_n_usb_pd>;
+ power-domain-names = "usb_psw_pd", "usb_top_pd";
+ phys = <&usb_phy 0>;
+ phy-names = "usb2-phy";
+ snps,quirk-frame-length-adjustment = <0x20>;
+ snps,gfladj-refclk-lpm-sel-quirk;
+ snps,incr-burst-type-adjustment = <4>;
+ };
+ };
+...
--
2.51.0.710.ga91ca5db03-goog
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v2 2/4] usb: dwc3: Add Google Tensor SoC DWC3 glue driver
2025-10-08 5:59 [PATCH v2 0/4] Add Google Tensor SoC USB support Roy Luo
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
@ 2025-10-08 5:59 ` Roy Luo
2025-10-08 5:59 ` [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY Roy Luo
2025-10-08 6:00 ` [PATCH v2 4/4] phy: Add Google Tensor SoC USB PHY driver Roy Luo
3 siblings, 0 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-08 5:59 UTC (permalink / raw)
To: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Roy Luo, Badhri Jagan Sridharan,
linux-phy, devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
Add support for the DWC3 USB controller found on Google Tensor G5.
The controller features dual-role functionality and hibernation.
The primary focus is implementing hibernation support in host mode,
enabling the controller to enter a low-power state (D3). This is
particularly relevant during system power state transition and
runtime power management for power efficiency.
Highlights:
- Align suspend callback with dwc3_suspend_common() for deciding
between a full teardown and hibernation in host mode.
- Integration with `usb_psw_pd` and `usb_top_pd` power domains,
managing their states and device links to support hibernation.
- A notifier callback dwc3_google_usb_psw_pd_notifier() for
`usb_psw_pd` power domain events to manage controller state
transitions to/from D3.
- Coordination of the `usbc_non_sticky` reset during power
state transitions, asserting it on D3 entry and deasserting
on D0 entry in hibernation scenario.
- Handling of U2 (high-speed) and U3 (super-speed) PME interrupts
that are generated by remote wakeup during hibernation.
Co-developed-by: Joy Chakraborty <joychakr@google.com>
Signed-off-by: Joy Chakraborty <joychakr@google.com>
Co-developed-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Roy Luo <royluo@google.com>
---
drivers/usb/dwc3/Kconfig | 10 +
drivers/usb/dwc3/Makefile | 1 +
drivers/usb/dwc3/dwc3-google.c | 597 +++++++++++++++++++++++++++++++++
3 files changed, 608 insertions(+)
create mode 100644 drivers/usb/dwc3/dwc3-google.c
diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig
index 310d182e10b5..467515d5f937 100644
--- a/drivers/usb/dwc3/Kconfig
+++ b/drivers/usb/dwc3/Kconfig
@@ -189,4 +189,14 @@ config USB_DWC3_RTK
or dual-role mode.
Say 'Y' or 'M' if you have such device.
+config USB_DWC3_GOOGLE
+ tristate "Google Platform"
+ depends on OF && COMMON_CLK && RESET_CONTROLLER
+ default n
+ help
+ Support the DesignWare Core USB3 IP found on Google Tensor
+ SoCs, starting with the G5 generation. This driver includes
+ support for hibernation in host mode.
+ Say 'Y' or 'M' if you have one such device.
+
endif
diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile
index 830e6c9e5fe0..a94982630657 100644
--- a/drivers/usb/dwc3/Makefile
+++ b/drivers/usb/dwc3/Makefile
@@ -57,3 +57,4 @@ obj-$(CONFIG_USB_DWC3_IMX8MP) += dwc3-imx8mp.o
obj-$(CONFIG_USB_DWC3_XILINX) += dwc3-xilinx.o
obj-$(CONFIG_USB_DWC3_OCTEON) += dwc3-octeon.o
obj-$(CONFIG_USB_DWC3_RTK) += dwc3-rtk.o
+obj-$(CONFIG_USB_DWC3_GOOGLE) += dwc3-google.o
diff --git a/drivers/usb/dwc3/dwc3-google.c b/drivers/usb/dwc3/dwc3-google.c
new file mode 100644
index 000000000000..67c51a051626
--- /dev/null
+++ b/drivers/usb/dwc3/dwc3-google.c
@@ -0,0 +1,597 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * dwc3-google.c - Google DWC3 Specific Glue Layer
+ *
+ * Copyright (c) 2025, Google LLC
+ * Author: Roy Luo <royluo@google.com>
+ */
+
+#include <linux/of.h>
+#include <linux/bitfield.h>
+#include <linux/irq.h>
+#include <linux/clk.h>
+#include <linux/module.h>
+#include <linux/kernel.h>
+#include <linux/platform_device.h>
+#include <linux/reset.h>
+#include <linux/pm_domain.h>
+#include <linux/iopoll.h>
+#include "core.h"
+#include "glue.h"
+
+/* HOST CFG registers */
+#define HC_STATUS_OFFSET 0x0
+#define HC_STATUS_CURRENT_POWER_STATE_U2PMU GENMASK(1, 0)
+#define HC_STATUS_CURRENT_POWER_STATE_U3PMU GENMASK(4, 3)
+
+#define HOST_CFG1_OFFSET 0x4
+#define HOST_CFG1_PME_EN BIT(3)
+#define HOST_CFG1_PM_POWER_STATE_REQUEST GENMASK(5, 4)
+#define HOST_CFG1_PM_POWER_STATE_D0 0x0
+#define HOST_CFG1_PM_POWER_STATE_D3 0x3
+
+/* USBINT registers */
+#define USBINT_CFG1_OFFSET 0x0
+#define USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_MSK BIT(2)
+#define USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_MSK BIT(3)
+#define USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_INT_EN BIT(8)
+#define USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_INT_EN BIT(9)
+#define USBINT_CFG1_USBDRD_PME_GEN_U2_INTR_CLR BIT(14)
+#define USBINT_CFG1_USBDRD_PME_GEN_U3_INTR_CLR BIT(15)
+
+#define USBINT_STATUS_OFFSET 0x4
+#define USBINT_STATUS_USBDRD_PME_GEN_U2P_INTR_STS_RAW BIT(2)
+#define USBINT_STATUS_USBDRD_PME_GEN_U3P_INTR_STS_RAW BIT(3)
+
+#define DWC3_GOOGLE_MAX_RESETS 5
+
+struct dwc3_google {
+ struct device *dev;
+ struct dwc3 dwc;
+ struct clk_bulk_data *clks;
+ int num_clks;
+ struct reset_control_bulk_data rsts[DWC3_GOOGLE_MAX_RESETS];
+ int num_rsts;
+ struct reset_control *usbc_non_sticky_rst;
+ struct device *usb_psw_pd;
+ struct device_link *usb_psw_pd_dl;
+ struct notifier_block usb_psw_pd_nb;
+ struct device *usb_top_pd;
+ struct device_link *usb_top_pd_dl;
+ void __iomem *host_cfg_base;
+ void __iomem *usbint_base;
+ int hs_pme_irq;
+ int ss_pme_irq;
+ bool is_hibernation;
+};
+
+#define to_dwc3_google(d) container_of((d), struct dwc3_google, dwc)
+
+static int dwc3_google_rst_init(struct dwc3_google *google)
+{
+ int ret;
+
+ google->num_rsts = 5;
+ google->rsts[0].id = "usbc_non_sticky";
+ google->rsts[1].id = "usbc_sticky";
+ google->rsts[2].id = "usb_drd_bus";
+ google->rsts[3].id = "u2phy_apb";
+ google->rsts[4].id = "usb_top_csr";
+
+ ret = devm_reset_control_bulk_get_exclusive(google->dev,
+ google->num_rsts,
+ google->rsts);
+
+ if (ret < 0)
+ return ret;
+
+ google->usbc_non_sticky_rst = google->rsts[0].rstc;
+
+ return 0;
+}
+
+static int dwc3_google_set_pmu_state(struct dwc3_google *google, int state)
+{
+ u32 reg;
+ int ret;
+
+ reg = readl(google->host_cfg_base + HOST_CFG1_OFFSET);
+ reg &= ~HOST_CFG1_PM_POWER_STATE_REQUEST;
+ reg |= (FIELD_PREP(HOST_CFG1_PM_POWER_STATE_REQUEST, state) |
+ HOST_CFG1_PME_EN);
+ writel(reg, google->host_cfg_base + HOST_CFG1_OFFSET);
+
+ ret = readl_poll_timeout(google->host_cfg_base + HC_STATUS_OFFSET, reg,
+ (FIELD_GET(HC_STATUS_CURRENT_POWER_STATE_U2PMU, reg) == state &&
+ FIELD_GET(HC_STATUS_CURRENT_POWER_STATE_U3PMU, reg) == state),
+ 10, 10000);
+
+ if (ret)
+ dev_err(google->dev, "failed to set PMU state %d\n", state);
+
+ return ret;
+}
+
+/*
+ * Clear pme interrupts and report their status.
+ * The hardware requires write-1 then write-0 sequence to clear the interrupt bits.
+ */
+static u32 dwc3_google_clear_pme_irqs(struct dwc3_google *google)
+{
+ u32 irq_status, reg_set, reg_clear;
+
+ irq_status = readl(google->usbint_base + USBINT_STATUS_OFFSET);
+ irq_status &= (USBINT_STATUS_USBDRD_PME_GEN_U2P_INTR_STS_RAW |
+ USBINT_STATUS_USBDRD_PME_GEN_U3P_INTR_STS_RAW);
+ if (!irq_status)
+ return irq_status;
+
+ reg_set = readl(google->usbint_base + USBINT_CFG1_OFFSET);
+ reg_clear = reg_set;
+ if (irq_status & USBINT_STATUS_USBDRD_PME_GEN_U2P_INTR_STS_RAW) {
+ reg_set |= USBINT_CFG1_USBDRD_PME_GEN_U2_INTR_CLR;
+ reg_clear &= ~USBINT_CFG1_USBDRD_PME_GEN_U2_INTR_CLR;
+ }
+ if (irq_status & USBINT_STATUS_USBDRD_PME_GEN_U3P_INTR_STS_RAW) {
+ reg_set |= USBINT_CFG1_USBDRD_PME_GEN_U3_INTR_CLR;
+ reg_clear &= ~USBINT_CFG1_USBDRD_PME_GEN_U3_INTR_CLR;
+ }
+
+ writel(reg_set, google->usbint_base + USBINT_CFG1_OFFSET);
+ writel(reg_clear, google->usbint_base + USBINT_CFG1_OFFSET);
+
+ return irq_status;
+}
+
+static void dwc3_google_enable_pme_irq(struct dwc3_google *google)
+{
+ u32 reg;
+
+ reg = readl(google->usbint_base + USBINT_CFG1_OFFSET);
+ reg &= ~(USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_MSK |
+ USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_MSK);
+ reg |= (USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_INT_EN |
+ USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_INT_EN);
+ writel(reg, google->usbint_base + USBINT_CFG1_OFFSET);
+
+ enable_irq(google->hs_pme_irq);
+ enable_irq(google->ss_pme_irq);
+ enable_irq_wake(google->hs_pme_irq);
+ enable_irq_wake(google->ss_pme_irq);
+}
+
+static void dwc3_google_disable_pme_irq(struct dwc3_google *google)
+{
+ u32 reg;
+
+ reg = readl(google->usbint_base + USBINT_CFG1_OFFSET);
+ reg &= ~(USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_INT_EN |
+ USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_INT_EN);
+ reg |= (USBINT_CFG1_USBDRD_PME_GEN_U2P_INTR_MSK |
+ USBINT_CFG1_USBDRD_PME_GEN_U3P_INTR_MSK);
+ writel(reg, google->usbint_base + USBINT_CFG1_OFFSET);
+
+ disable_irq_wake(google->hs_pme_irq);
+ disable_irq_wake(google->ss_pme_irq);
+ disable_irq_nosync(google->hs_pme_irq);
+ disable_irq_nosync(google->ss_pme_irq);
+}
+
+static irqreturn_t dwc3_google_resume_irq(int irq, void *data)
+{
+ struct dwc3_google *google = data;
+ struct dwc3 *dwc = &google->dwc;
+ u32 irq_status, dr_role;
+
+ irq_status = dwc3_google_clear_pme_irqs(google);
+ dr_role = dwc->current_dr_role;
+
+ if (!irq_status || !google->is_hibernation ||
+ dr_role != DWC3_GCTL_PRTCAP_HOST) {
+ dev_warn(google->dev, "spurious pme irq %d, hibernation %d, dr_role %u\n",
+ irq, google->is_hibernation, dr_role);
+ return IRQ_HANDLED;
+ }
+
+ if (dwc->xhci)
+ pm_runtime_resume(&dwc->xhci->dev);
+
+ return IRQ_HANDLED;
+}
+
+static int dwc3_google_request_irq(struct dwc3_google *google, struct platform_device *pdev,
+ const char *irq_name, const char *req_name)
+{
+ int ret;
+ int irq;
+
+ irq = platform_get_irq_byname(pdev, irq_name);
+ if (irq < 0) {
+ dev_err(google->dev, "invalid irq name %s\n", irq_name);
+ return irq;
+ }
+
+ irq_set_status_flags(irq, IRQ_NOAUTOEN);
+ ret = devm_request_threaded_irq(google->dev, irq, NULL,
+ dwc3_google_resume_irq,
+ IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
+ req_name, google);
+ if (ret < 0) {
+ dev_err(google->dev, "failed to request irq %s\n", req_name);
+ return ret;
+ }
+
+ return irq;
+}
+
+static int dwc3_google_usb_psw_pd_notifier(struct notifier_block *nb, unsigned long action, void *d)
+{
+ struct dwc3_google *google = container_of(nb, struct dwc3_google, usb_psw_pd_nb);
+ int ret;
+
+ if (!google->is_hibernation)
+ return NOTIFY_OK;
+
+ if (action == GENPD_NOTIFY_OFF) {
+ dev_dbg(google->dev, "enter D3 power state\n");
+ dwc3_google_set_pmu_state(google, HOST_CFG1_PM_POWER_STATE_D3);
+ ret = reset_control_assert(google->usbc_non_sticky_rst);
+ if (ret)
+ dev_err(google->dev, "non sticky reset assert failed: %d\n", ret);
+ } else if (action == GENPD_NOTIFY_ON) {
+ dev_dbg(google->dev, "enter D0 power state\n");
+ dwc3_google_clear_pme_irqs(google);
+ ret = reset_control_deassert(google->usbc_non_sticky_rst);
+ if (ret)
+ dev_err(google->dev, "non sticky reset deassert failed: %d\n", ret);
+ dwc3_google_set_pmu_state(google, HOST_CFG1_PM_POWER_STATE_D0);
+ }
+
+ return NOTIFY_OK;
+}
+
+static void dwc3_google_pm_domain_deinit(struct dwc3_google *google)
+{
+ if (google->usb_top_pd_dl)
+ device_link_del(google->usb_top_pd_dl);
+
+ if (!IS_ERR_OR_NULL(google->usb_top_pd)) {
+ device_set_wakeup_capable(google->usb_top_pd, false);
+ dev_pm_domain_detach(google->usb_top_pd, true);
+ }
+
+ if (google->usb_psw_pd_dl)
+ device_link_del(google->usb_psw_pd_dl);
+
+ if (!IS_ERR_OR_NULL(google->usb_psw_pd)) {
+ dev_pm_genpd_remove_notifier(google->usb_psw_pd);
+ dev_pm_domain_detach(google->usb_psw_pd, true);
+ }
+}
+
+static int dwc3_google_pm_domain_init(struct dwc3_google *google)
+{
+ int ret;
+
+ /*
+ * Establish PM RUNTIME link between dwc dev and its power domain usb_psw_pd,
+ * register notifier block to handle hibernation.
+ */
+ google->usb_psw_pd = dev_pm_domain_attach_by_name(google->dev, "usb_psw_pd");
+ if (IS_ERR_OR_NULL(google->usb_psw_pd)) {
+ dev_err(google->dev, "failed to get usb psw pd");
+ ret = google->usb_psw_pd ? PTR_ERR(google->usb_psw_pd) : -ENODATA;
+ return ret;
+ }
+
+ google->usb_psw_pd_nb.notifier_call = dwc3_google_usb_psw_pd_notifier;
+ ret = dev_pm_genpd_add_notifier(google->usb_psw_pd, &google->usb_psw_pd_nb);
+ if (ret) {
+ dev_err(google->dev, "failed to add usb psw pd notifier");
+ goto err;
+ }
+
+ google->usb_psw_pd_dl = device_link_add(google->dev, google->usb_psw_pd,
+ DL_FLAG_STATELESS | DL_FLAG_PM_RUNTIME |
+ DL_FLAG_RPM_ACTIVE);
+ if (!google->usb_psw_pd_dl) {
+ dev_err(google->usb_psw_pd, "failed to add device link");
+ ret = -ENODEV;
+ goto err;
+ }
+
+ /*
+ * usb_top_pd is the parent power domain of usb_psw_pd. Keeping usb_top_pd on
+ * while usb_psw_pd is off places the controller in a power-gated state,
+ * essential for hibernation. Acquire a handle to usb_top_pd and sets it as
+ * wakeup-capable to allow the domain to be left on during system suspend.
+ */
+ google->usb_top_pd = dev_pm_domain_attach_by_name(google->dev, "usb_top_pd");
+ if (IS_ERR_OR_NULL(google->usb_top_pd)) {
+ dev_err(google->dev, "failed to get usb top pd");
+ ret = google->usb_top_pd ? PTR_ERR(google->usb_top_pd) : -ENODATA;
+ goto err;
+ }
+ device_set_wakeup_capable(google->usb_top_pd, true);
+
+ google->usb_top_pd_dl = device_link_add(google->dev, google->usb_top_pd,
+ DL_FLAG_STATELESS);
+ if (!google->usb_top_pd_dl) {
+ dev_err(google->usb_top_pd, "failed to add device link");
+ ret = -ENODEV;
+ goto err;
+ }
+
+ return 0;
+
+err:
+ dwc3_google_pm_domain_deinit(google);
+
+ return ret;
+}
+
+static int dwc3_google_probe(struct platform_device *pdev)
+{
+ struct dwc3_probe_data probe_data = {};
+ struct device *dev = &pdev->dev;
+ struct dwc3_google *google;
+ struct resource *res;
+ int ret;
+
+ google = devm_kzalloc(&pdev->dev, sizeof(*google), GFP_KERNEL);
+ if (!google)
+ return -ENOMEM;
+
+ google->dev = &pdev->dev;
+
+ ret = dwc3_google_pm_domain_init(google);
+ if (ret < 0)
+ return dev_err_probe(&pdev->dev, ret, "failed to init pdom\n");
+
+ ret = devm_clk_bulk_get_all_enabled(dev, &google->clks);
+ if (ret < 0) {
+ ret = dev_err_probe(&pdev->dev, ret, "failed to get and enable clks\n");
+ goto err_deinit_pdom;
+ }
+ google->num_clks = ret;
+
+ ret = dwc3_google_rst_init(google);
+ if (ret) {
+ ret = dev_err_probe(&pdev->dev, ret, "failed to get resets\n");
+ goto err_deinit_pdom;
+ }
+
+ ret = reset_control_bulk_deassert(google->num_rsts, google->rsts);
+ if (ret) {
+ ret = dev_err_probe(&pdev->dev, ret, "failed to deassert rsts\n");
+ goto err_deinit_pdom;
+ }
+
+ ret = dwc3_google_request_irq(google, pdev, "hs_pme_irq", "USB HS wakeup");
+ if (ret < 0) {
+ ret = dev_err_probe(&pdev->dev, ret, "failed to request hs pme irq");
+ goto err_reset_assert;
+ }
+ google->hs_pme_irq = ret;
+
+ ret = dwc3_google_request_irq(google, pdev, "ss_pme_irq", "USB SS wakeup");
+ if (ret < 0) {
+ ret = dev_err_probe(&pdev->dev, ret, "failed to request ss pme irq");
+ goto err_reset_assert;
+ }
+ google->ss_pme_irq = ret;
+
+ google->host_cfg_base =
+ devm_platform_ioremap_resource_byname(pdev, "host_cfg_csr");
+ if (IS_ERR(google->host_cfg_base)) {
+ ret = dev_err_probe(&pdev->dev, PTR_ERR(google->host_cfg_base),
+ "invalid host cfg csr\n");
+ goto err_reset_assert;
+ }
+
+ google->usbint_base =
+ devm_platform_ioremap_resource_byname(pdev, "usbint_csr");
+ if (IS_ERR(google->usbint_base)) {
+ ret = dev_err_probe(&pdev->dev, PTR_ERR(google->usbint_base),
+ "invalid usbint csr\n");
+ goto err_reset_assert;
+ }
+
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dwc3_core");
+ if (!res) {
+ ret = dev_err_probe(dev, -ENODEV, "invalid dwc3 core memory\n");
+ goto err_reset_assert;
+ }
+
+ device_init_wakeup(dev, true);
+
+ google->dwc.dev = dev;
+ probe_data.dwc = &google->dwc;
+ probe_data.res = res;
+ probe_data.ignore_clocks_and_resets = true;
+ ret = dwc3_core_probe(&probe_data);
+ if (ret) {
+ ret = dev_err_probe(dev, ret, "failed to register DWC3 Core\n");
+ goto err_reset_assert;
+ }
+
+ return 0;
+
+err_reset_assert:
+ reset_control_bulk_assert(google->num_rsts, google->rsts);
+
+err_deinit_pdom:
+ dwc3_google_pm_domain_deinit(google);
+
+ return ret;
+}
+
+static void dwc3_google_remove(struct platform_device *pdev)
+{
+ struct dwc3 *dwc = platform_get_drvdata(pdev);
+ struct dwc3_google *google = to_dwc3_google(dwc);
+
+ dwc3_core_remove(&google->dwc);
+
+ reset_control_bulk_assert(google->num_rsts, google->rsts);
+
+ dwc3_google_pm_domain_deinit(google);
+}
+
+static int dwc3_google_suspend(struct dwc3_google *google, pm_message_t msg)
+{
+ if (pm_runtime_suspended(google->dev))
+ return 0;
+
+ if (google->dwc.current_dr_role == DWC3_GCTL_PRTCAP_HOST) {
+ /*
+ * Follow dwc3_suspend_common() guidelines for deciding between
+ * a full teardown and hibernation.
+ */
+ if (PMSG_IS_AUTO(msg) || device_may_wakeup(google->dev)) {
+ dev_dbg(google->dev, "enter hibernation");
+ pm_runtime_get_sync(google->usb_top_pd);
+ device_wakeup_enable(google->usb_top_pd);
+ dwc3_google_enable_pme_irq(google);
+ google->is_hibernation = true;
+ return 0;
+ }
+ }
+
+ reset_control_bulk_assert(google->num_rsts, google->rsts);
+ clk_bulk_disable_unprepare(google->num_clks, google->clks);
+
+ return 0;
+}
+
+static int dwc3_google_resume(struct dwc3_google *google, pm_message_t msg)
+{
+ int ret;
+
+ if (google->is_hibernation) {
+ dev_dbg(google->dev, "exit hibernation");
+ dwc3_google_disable_pme_irq(google);
+ device_wakeup_disable(google->usb_top_pd);
+ pm_runtime_put_sync(google->usb_top_pd);
+ google->is_hibernation = false;
+ return 0;
+ }
+
+ ret = clk_bulk_prepare_enable(google->num_clks, google->clks);
+ if (ret)
+ return ret;
+
+ ret = reset_control_bulk_deassert(google->num_rsts, google->rsts);
+ if (ret) {
+ clk_bulk_disable_unprepare(google->num_clks, google->clks);
+ return ret;
+ }
+
+ return 0;
+}
+
+#ifdef CONFIG_PM_SLEEP
+static int dwc3_google_pm_suspend(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+ struct dwc3_google *google = to_dwc3_google(dwc);
+ int ret;
+
+ ret = dwc3_pm_suspend(&google->dwc);
+ if (ret)
+ return ret;
+
+ return dwc3_google_suspend(google, PMSG_SUSPEND);
+}
+
+static int dwc3_google_pm_resume(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+ struct dwc3_google *google = to_dwc3_google(dwc);
+ int ret;
+
+ ret = dwc3_google_resume(google, PMSG_RESUME);
+ if (ret)
+ return ret;
+
+ return dwc3_pm_resume(&google->dwc);
+}
+
+static void dwc3_google_complete(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+
+ dwc3_pm_complete(dwc);
+}
+
+static int dwc3_google_prepare(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+
+ return dwc3_pm_prepare(dwc);
+}
+#else
+#define dwc3_google_complete NULL
+#define dwc3_google_prepare NULL
+#endif /* CONFIG_PM_SLEEP */
+
+#ifdef CONFIG_PM
+static int dwc3_google_runtime_suspend(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+ struct dwc3_google *google = to_dwc3_google(dwc);
+ int ret;
+
+ ret = dwc3_runtime_suspend(&google->dwc);
+ if (ret)
+ return ret;
+
+ return dwc3_google_suspend(google, PMSG_AUTO_SUSPEND);
+}
+
+static int dwc3_google_runtime_resume(struct device *dev)
+{
+ struct dwc3 *dwc = dev_get_drvdata(dev);
+ struct dwc3_google *google = to_dwc3_google(dwc);
+ int ret;
+
+ ret = dwc3_google_resume(google, PMSG_AUTO_RESUME);
+ if (ret)
+ return ret;
+
+ return dwc3_runtime_resume(&google->dwc);
+}
+
+static int dwc3_google_runtime_idle(struct device *dev)
+{
+ return dwc3_runtime_idle(dev_get_drvdata(dev));
+}
+#endif /* CONFIG_PM */
+
+static const struct dev_pm_ops dwc3_google_dev_pm_ops = {
+ SET_SYSTEM_SLEEP_PM_OPS(dwc3_google_pm_suspend, dwc3_google_pm_resume)
+ SET_RUNTIME_PM_OPS(dwc3_google_runtime_suspend, dwc3_google_runtime_resume,
+ dwc3_google_runtime_idle)
+ .complete = dwc3_google_complete,
+ .prepare = dwc3_google_prepare,
+};
+
+static const struct of_device_id dwc3_google_of_match[] = {
+ { .compatible = "google,gs5-dwc3" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, dwc3_google_of_match);
+
+static struct platform_driver dwc3_google_driver = {
+ .probe = dwc3_google_probe,
+ .remove = dwc3_google_remove,
+ .driver = {
+ .name = "google-dwc3",
+ .pm = &dwc3_google_dev_pm_ops,
+ .of_match_table = dwc3_google_of_match,
+ },
+};
+
+module_platform_driver(dwc3_google_driver);
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("DesignWare DWC3 Google Glue Driver");
--
2.51.0.710.ga91ca5db03-goog
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY
2025-10-08 5:59 [PATCH v2 0/4] Add Google Tensor SoC USB support Roy Luo
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
2025-10-08 5:59 ` [PATCH v2 2/4] usb: dwc3: Add Google Tensor SoC DWC3 glue driver Roy Luo
@ 2025-10-08 5:59 ` Roy Luo
2025-10-08 23:58 ` Krzysztof Kozlowski
2025-10-08 6:00 ` [PATCH v2 4/4] phy: Add Google Tensor SoC USB PHY driver Roy Luo
3 siblings, 1 reply; 15+ messages in thread
From: Roy Luo @ 2025-10-08 5:59 UTC (permalink / raw)
To: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Roy Luo, Badhri Jagan Sridharan,
linux-phy, devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
Document the device tree bindings for the USB PHY interfaces integrated
with the DWC3 controller on Google Tensor SoCs, starting with G5
generation.
Due to a complete architectural overhaul in the Google Tensor G5, the
existing Samsung/Exynos USB PHY driver and binding for older generations
of Google silicons such as gs101 are no longer compatible.
The USB PHY on Tensor G5 includes two integrated Synopsys PHY IPs: the
eUSB 2.0 PHY IP and the USB 3.2/DisplayPort combo PHY IP. Currently only
USB high-speed is described and supported.
Signed-off-by: Roy Luo <royluo@google.com>
---
.../bindings/phy/google,gs-usb-phy.yaml | 96 +++++++++++++++++++
1 file changed, 96 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
diff --git a/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
new file mode 100644
index 000000000000..22961e2da6ef
--- /dev/null
+++ b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
@@ -0,0 +1,96 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+# Copyright (C) 2025, Google LLC
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/phy/google,gs-usb-phy.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Google Tensor Series (G5+) USB PHY
+
+maintainers:
+ - Roy Luo <royluo@google.com>
+
+description: |
+ Describes the USB PHY interfaces integrated with the DWC3 USB controller on
+ Google Tensor SoCs, starting with the G5 generation.
+ Two specific PHY IPs from Synopsys are integrated, including eUSB 2.0 PHY IP
+ and USB 3.2/DisplayPort combo PHY IP.
+ The first phandle argument within the PHY specifier is used to identify the
+ desired PHY. The currently supported value is::
+ 0 - USB high-speed.
+
+properties:
+ compatible:
+ items:
+ - enum:
+ - google,gs5-usb-phy
+
+ reg:
+ minItems: 3
+ maxItems: 3
+
+ reg-names:
+ items:
+ - const: usb2_cfg_csr
+ - const: dp_top_csr
+ - const: usb_top_cfg_csr
+
+ "#phy-cells":
+ const: 1
+
+ clocks:
+ maxItems: 1
+
+ clock-names:
+ items:
+ - const: usb2_phy_clk
+
+ resets:
+ maxItems: 1
+
+ reset-names:
+ items:
+ - const: usb2_phy_reset
+
+ power-domains:
+ maxItems: 1
+
+ orientation-switch:
+ type: boolean
+ description:
+ Indicates the PHY as a handler of USB Type-C orientation changes
+
+required:
+ - compatible
+ - reg
+ - reg-names
+ - "#phy-cells"
+ - clocks
+ - clock-names
+ - resets
+ - reset-names
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ soc {
+ #address-cells = <2>;
+ #size-cells = <2>;
+
+ usb_phy: usb_phy@c410000 {
+ compatible = "google,gs5-usb-phy";
+ reg = <0 0x0c450014 0 0xc>,
+ <0 0x0c637000 0 0xa0>,
+ <0 0x0c45002c 0 0x4>;
+ reg-names = "usb2_cfg_csr", "dp_top_csr", "usb_top_cfg_csr";
+ #phy-cells = <1>;
+ clocks = <&hsion_usb2_phy_reset_clk>;
+ clock-names = "usb2_phy_clk";
+ resets = <&hsion_resets_usb2_phy>;
+ reset-names = "usb2_phy_reset";
+ power-domains = <&hsio_n_usb_pd>;
+ orientation-switch;
+ };
+ };
+...
--
2.51.0.710.ga91ca5db03-goog
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v2 4/4] phy: Add Google Tensor SoC USB PHY driver
2025-10-08 5:59 [PATCH v2 0/4] Add Google Tensor SoC USB support Roy Luo
` (2 preceding siblings ...)
2025-10-08 5:59 ` [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY Roy Luo
@ 2025-10-08 6:00 ` Roy Luo
3 siblings, 0 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-08 6:00 UTC (permalink / raw)
To: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Roy Luo, Badhri Jagan Sridharan,
linux-phy, devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
Support the USB PHY found on Google Tensor G5. This particular USB PHY
supports both high-speed and super-speed operations, and is integrated
with the SNPS DWC3 controller that's also on the SoC.
This initial patch specifically adds functionality for high-speed.
Co-developed-by: Joy Chakraborty <joychakr@google.com>
Signed-off-by: Joy Chakraborty <joychakr@google.com>
Co-developed-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Naveen Kumar <mnkumar@google.com>
Signed-off-by: Roy Luo <royluo@google.com>
---
drivers/phy/Kconfig | 14 ++
drivers/phy/Makefile | 1 +
drivers/phy/phy-google-usb.c | 286 +++++++++++++++++++++++++++++++++++
3 files changed, 301 insertions(+)
create mode 100644 drivers/phy/phy-google-usb.c
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index 58c911e1b2d2..0966ab0297df 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -101,6 +101,20 @@ config PHY_NXP_PTN3222
schemes. It supports all three USB 2.0 data rates: Low Speed, Full
Speed and High Speed.
+config PHY_GOOGLE_USB
+ tristate "Google Tensor SoC USB PHY driver"
+ depends on HAS_IOMEM
+ depends on OF
+ depends on TYPEC
+ depends on USB_DWC3_GOOGLE
+ select GENERIC_PHY
+ default USB_DWC3_GOOGLE
+ help
+ Enable support for the USB PHY on Google Tensor SoCs, starting with
+ the G5 generation. This driver provides the PHY interfaces to
+ interact with the SNPS eUSB2 and USB 3.2/DisplayPort Combo PHY, both
+ of which are integrated with the DWC3 USB controller.
+
source "drivers/phy/allwinner/Kconfig"
source "drivers/phy/amlogic/Kconfig"
source "drivers/phy/broadcom/Kconfig"
diff --git a/drivers/phy/Makefile b/drivers/phy/Makefile
index c670a8dac468..1d7a1331bd19 100644
--- a/drivers/phy/Makefile
+++ b/drivers/phy/Makefile
@@ -13,6 +13,7 @@ obj-$(CONFIG_PHY_SNPS_EUSB2) += phy-snps-eusb2.o
obj-$(CONFIG_USB_LGM_PHY) += phy-lgm-usb.o
obj-$(CONFIG_PHY_AIROHA_PCIE) += phy-airoha-pcie.o
obj-$(CONFIG_PHY_NXP_PTN3222) += phy-nxp-ptn3222.o
+obj-$(CONFIG_PHY_GOOGLE_USB) += phy-google-usb.o
obj-y += allwinner/ \
amlogic/ \
broadcom/ \
diff --git a/drivers/phy/phy-google-usb.c b/drivers/phy/phy-google-usb.c
new file mode 100644
index 000000000000..4027d38dc34b
--- /dev/null
+++ b/drivers/phy/phy-google-usb.c
@@ -0,0 +1,286 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * phy-google-usb.c - Google USB PHY driver
+ *
+ * Copyright (C) 2025, Google LLC
+ */
+
+#include <linux/bitfield.h>
+#include <linux/clk.h>
+#include <linux/reset.h>
+#include <linux/io.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/phy/phy.h>
+#include <linux/platform_device.h>
+#include <linux/mutex.h>
+#include <linux/cleanup.h>
+#include <linux/usb/typec_mux.h>
+
+#define USBCS_USB2PHY_CFG19_OFFSET 0x0
+#define USBCS_USB2PHY_CFG19_PHY_CFG_PLL_FB_DIV GENMASK(19, 8)
+
+#define USBCS_USB2PHY_CFG21_OFFSET 0x8
+#define USBCS_USB2PHY_CFG21_PHY_ENABLE BIT(12)
+#define USBCS_USB2PHY_CFG21_REF_FREQ_SEL GENMASK(15, 13)
+#define USBCS_USB2PHY_CFG21_PHY_TX_DIG_BYPASS_SEL BIT(19)
+
+#define USBCS_PHY_CFG1_OFFSET 0x28
+#define USBCS_PHY_CFG1_SYS_VBUSVALID BIT(17)
+
+#define USBCS_TOP_CTRL_CFG1_OFFSET 0x0
+#define USBCS_TOP_CTRL_CFG1_USB2ONLY_MODE BIT(5)
+
+enum google_usb_phy_id {
+ GOOGLE_USB2_PHY,
+ GOOGLE_USB_PHY_NUM,
+};
+
+struct google_usb_phy_instance {
+ int index;
+ struct phy *phy;
+ struct clk *clk;
+ struct reset_control *rst;
+};
+
+struct google_usb_phy {
+ struct device *dev;
+ void __iomem *usb2_cfg_base;
+ void __iomem *dp_top_base;
+ void __iomem *usb_top_cfg_base;
+ struct google_usb_phy_instance insts[GOOGLE_USB_PHY_NUM];
+ /* serialize phy access */
+ struct mutex phy_mutex;
+ struct typec_switch_dev *sw;
+ enum typec_orientation orientation;
+};
+
+static inline struct google_usb_phy *to_google_usb_phy(struct google_usb_phy_instance *inst)
+{
+ return container_of(inst, struct google_usb_phy, insts[inst->index]);
+}
+
+static void set_vbus_valid(struct google_usb_phy *gphy)
+{
+ u32 reg;
+
+ if (gphy->orientation == TYPEC_ORIENTATION_NONE) {
+ reg = readl(gphy->dp_top_base + USBCS_PHY_CFG1_OFFSET);
+ reg &= ~USBCS_PHY_CFG1_SYS_VBUSVALID;
+ writel(reg, gphy->dp_top_base + USBCS_PHY_CFG1_OFFSET);
+ } else {
+ reg = readl(gphy->dp_top_base + USBCS_PHY_CFG1_OFFSET);
+ reg |= USBCS_PHY_CFG1_SYS_VBUSVALID;
+ writel(reg, gphy->dp_top_base + USBCS_PHY_CFG1_OFFSET);
+ }
+}
+
+static int google_usb_set_orientation(struct typec_switch_dev *sw,
+ enum typec_orientation orientation)
+{
+ struct google_usb_phy *gphy = typec_switch_get_drvdata(sw);
+
+ dev_dbg(gphy->dev, "set orientation %d\n", orientation);
+
+ gphy->orientation = orientation;
+
+ if (pm_runtime_suspended(gphy->dev))
+ return 0;
+
+ guard(mutex)(&gphy->phy_mutex);
+
+ set_vbus_valid(gphy);
+
+ return 0;
+}
+
+static int google_usb2_phy_init(struct phy *_phy)
+{
+ struct google_usb_phy_instance *inst = phy_get_drvdata(_phy);
+ struct google_usb_phy *gphy = to_google_usb_phy(inst);
+ u32 reg;
+ int ret = 0;
+
+ dev_dbg(gphy->dev, "initializing usb2 phy\n");
+
+ guard(mutex)(&gphy->phy_mutex);
+
+ /*
+ * TODO: usb2only mode should be removed once usb3 is supported
+ */
+ reg = readl(gphy->usb_top_cfg_base + USBCS_TOP_CTRL_CFG1_OFFSET);
+ reg |= USBCS_TOP_CTRL_CFG1_USB2ONLY_MODE;
+ writel(reg, gphy->usb_top_cfg_base + USBCS_TOP_CTRL_CFG1_OFFSET);
+
+ reg = readl(gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+ reg &= ~USBCS_USB2PHY_CFG21_PHY_TX_DIG_BYPASS_SEL;
+ reg &= ~USBCS_USB2PHY_CFG21_REF_FREQ_SEL;
+ reg |= FIELD_PREP(USBCS_USB2PHY_CFG21_REF_FREQ_SEL, 0);
+ writel(reg, gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+
+ reg = readl(gphy->usb2_cfg_base + USBCS_USB2PHY_CFG19_OFFSET);
+ reg &= ~USBCS_USB2PHY_CFG19_PHY_CFG_PLL_FB_DIV;
+ reg |= FIELD_PREP(USBCS_USB2PHY_CFG19_PHY_CFG_PLL_FB_DIV, 368);
+ writel(reg, gphy->usb2_cfg_base + USBCS_USB2PHY_CFG19_OFFSET);
+
+ set_vbus_valid(gphy);
+
+ ret = clk_prepare_enable(inst->clk);
+ if (ret)
+ return ret;
+
+ ret = reset_control_deassert(inst->rst);
+ if (ret) {
+ clk_disable_unprepare(inst->clk);
+ return ret;
+ }
+
+ reg = readl(gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+ reg |= USBCS_USB2PHY_CFG21_PHY_ENABLE;
+ writel(reg, gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+
+ return ret;
+}
+
+static int google_usb2_phy_exit(struct phy *_phy)
+{
+ struct google_usb_phy_instance *inst = phy_get_drvdata(_phy);
+ struct google_usb_phy *gphy = to_google_usb_phy(inst);
+ u32 reg;
+
+ dev_dbg(gphy->dev, "exiting usb2 phy\n");
+
+ guard(mutex)(&gphy->phy_mutex);
+
+ reg = readl(gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+ reg &= ~USBCS_USB2PHY_CFG21_PHY_ENABLE;
+ writel(reg, gphy->usb2_cfg_base + USBCS_USB2PHY_CFG21_OFFSET);
+
+ reset_control_assert(inst->rst);
+ clk_disable_unprepare(inst->clk);
+
+ return 0;
+}
+
+static const struct phy_ops google_usb2_phy_ops = {
+ .init = google_usb2_phy_init,
+ .exit = google_usb2_phy_exit,
+};
+
+static struct phy *google_usb_phy_xlate(struct device *dev,
+ const struct of_phandle_args *args)
+{
+ struct google_usb_phy *gphy = dev_get_drvdata(dev);
+
+ if (args->args[0] >= GOOGLE_USB_PHY_NUM) {
+ dev_err(dev, "invalid PHY index requested from DT\n");
+ return ERR_PTR(-ENODEV);
+ }
+ return gphy->insts[args->args[0]].phy;
+}
+
+static int google_usb_phy_probe(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ struct google_usb_phy *gphy;
+ struct phy *phy;
+ struct google_usb_phy_instance *inst;
+ struct phy_provider *phy_provider;
+ struct typec_switch_desc sw_desc = { };
+ int ret;
+
+ gphy = devm_kzalloc(dev, sizeof(*gphy), GFP_KERNEL);
+ if (!gphy)
+ return -ENOMEM;
+
+ dev_set_drvdata(dev, gphy);
+ gphy->dev = dev;
+
+ ret = devm_mutex_init(dev, &gphy->phy_mutex);
+ if (ret)
+ return ret;
+
+ gphy->usb2_cfg_base = devm_platform_ioremap_resource_byname(pdev,
+ "usb2_cfg_csr");
+ if (IS_ERR(gphy->usb2_cfg_base))
+ return dev_err_probe(dev, PTR_ERR(gphy->usb2_cfg_base),
+ "invalid usb2 cfg csr\n");
+
+ gphy->dp_top_base = devm_platform_ioremap_resource_byname(pdev,
+ "dp_top_csr");
+ if (IS_ERR(gphy->dp_top_base))
+ return dev_err_probe(dev, PTR_ERR(gphy->dp_top_base),
+ "invalid dp top csr\n");
+
+ gphy->usb_top_cfg_base = devm_platform_ioremap_resource_byname(pdev,
+ "usb_top_cfg_csr");
+ if (IS_ERR(gphy->usb_top_cfg_base))
+ return dev_err_probe(dev, PTR_ERR(gphy->usb_top_cfg_base),
+ "invalid usb top cfg csr\n");
+
+ inst = &gphy->insts[GOOGLE_USB2_PHY];
+ inst->index = GOOGLE_USB2_PHY;
+ phy = devm_phy_create(dev, NULL, &google_usb2_phy_ops);
+ if (IS_ERR(phy))
+ return dev_err_probe(dev, PTR_ERR(phy),
+ "failed to create usb2 phy instance\n");
+ inst->phy = phy;
+ phy_set_drvdata(phy, inst);
+ inst->clk = devm_clk_get(dev, "usb2_phy_clk");
+ if (IS_ERR(inst->clk))
+ return dev_err_probe(dev, PTR_ERR(inst->clk),
+ "failed to get usb2 phy clk\n");
+ inst->rst = devm_reset_control_get_exclusive(dev, "usb2_phy_reset");
+ if (IS_ERR(inst->rst))
+ return dev_err_probe(dev, PTR_ERR(inst->rst),
+ "failed to get usb2 phy reset\n");
+
+ phy_provider = devm_of_phy_provider_register(dev, google_usb_phy_xlate);
+ if (IS_ERR(phy_provider))
+ return dev_err_probe(dev, PTR_ERR(phy_provider),
+ "failed to register phy provider\n");
+
+ pm_runtime_enable(dev);
+
+ sw_desc.fwnode = dev_fwnode(dev);
+ sw_desc.drvdata = gphy;
+ sw_desc.name = fwnode_get_name(dev_fwnode(dev));
+ sw_desc.set = google_usb_set_orientation;
+
+ gphy->sw = typec_switch_register(dev, &sw_desc);
+ if (IS_ERR(gphy->sw))
+ return dev_err_probe(dev, PTR_ERR(gphy->sw),
+ "failed to register typec switch\n");
+
+ return 0;
+}
+
+static void google_usb_phy_remove(struct platform_device *pdev)
+{
+ struct google_usb_phy *gphy = dev_get_drvdata(&pdev->dev);
+
+ typec_switch_unregister(gphy->sw);
+ pm_runtime_disable(&pdev->dev);
+}
+
+static const struct of_device_id google_usb_phy_of_match[] = {
+ {
+ .compatible = "google,gs5-usb-phy",
+ },
+ { }
+};
+MODULE_DEVICE_TABLE(of, google_usb_phy_of_match);
+
+static struct platform_driver google_usb_phy = {
+ .probe = google_usb_phy_probe,
+ .remove = google_usb_phy_remove,
+ .driver = {
+ .name = "google-usb-phy",
+ .of_match_table = google_usb_phy_of_match,
+ }
+};
+
+module_platform_driver(google_usb_phy);
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("Google USB phy driver");
--
2.51.0.710.ga91ca5db03-goog
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
@ 2025-10-08 20:58 ` Conor Dooley
2025-10-09 4:40 ` Roy Luo
2025-10-08 23:56 ` Krzysztof Kozlowski
1 sibling, 1 reply; 15+ messages in thread
From: Conor Dooley @ 2025-10-08 20:58 UTC (permalink / raw)
To: Roy Luo
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
[-- Attachment #1: Type: text/plain, Size: 6778 bytes --]
On Wed, Oct 08, 2025 at 05:59:57AM +0000, Roy Luo wrote:
> Document the device tree bindings for the DWC3 USB controller found in
> Google Tensor SoCs, starting with the G5 generation.
>
> The Tensor G5 silicon represents a complete architectural departure from
> previous generations (like gs101), including entirely new clock/reset
> schemes, top-level wrapper and register interface. Consequently,
> existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
> necessitating this new device tree binding.
>
> The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
> Dual-Role Device single port with hibernation support.
>
> Signed-off-by: Roy Luo <royluo@google.com>
> ---
> .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
> 1 file changed, 145 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>
> diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> new file mode 100644
> index 000000000000..9eb0bf726e8d
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
filename matching the compatible please.
> @@ -0,0 +1,145 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +# Copyright (c) 2025, Google LLC
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
> +
> +maintainers:
> + - Roy Luo <royluo@google.com>
> +
> +description: |
> + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
> + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
> + features Dual-Role Device single port with hibernation add-on.
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - google,gs5-dwc3
items is redundant here.
> +
> + reg:
> + minItems: 3
> + maxItems: 3
> +
> + reg-names:
> + description: |
> + The following memory regions must present:
> + - dwc3_core: Core DWC3 IP registers.
> + - host_cfg_csr: Hibernation control registers.
> + - usbint_csr: Hibernation interrupt registers.
Put this into reg as an items list, and you can drop the min/max items
from there.
Same applies to interrupts and power-domains.
> + items:
> + - const: dwc3_core
> + - const: host_cfg_csr
> + - const: usbint_csr
> +
> + interrupts:
> + minItems: 3
> + maxItems: 3
> +
> + interrupt-names:
> + description: |
> + The following interrupts must present:
> + - dwc_usb3: Core DWC3 interrupt.
> + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
> + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
> + items:
> + - const: dwc_usb3
> + - const: hs_pme_irq
> + - const: ss_pme_irq
s/_irq//
> +
> + clocks:
> + minItems: 3
> + maxItems: 3
> +
> + clock-names:
> + minItems: 3
> + maxItems: 3
> +
> + resets:
> + minItems: 5
> + maxItems: 5
For clocks and resets, please provide descriptions. For clock-names, you
provided no names and therefore cannot use the property since anything
is valid!
> +
> + reset-names:
> + items:
> + - const: usbc_non_sticky
> + - const: usbc_sticky
> + - const: usb_drd_bus
> + - const: u2phy_apb
> + - const: usb_top_csr
"csr" is an odd thing to have in a reset name, since it usually means
"control and status register". Why is it here.
> +
> + power-domains:
> + minItems: 2
> + maxItems: 2
> +
> + power-domain-names:
> + description: |
> + The following power domain must present:
> + - usb_psw_pd: The child power domain of usb_top_pd. Turning it on puts the controller
> + into full power state, turning it off puts the controller into power
> + gated state.
> + - usb_top_pd: The parent power domain of usb_psw_pd. Turning it on puts the controller
> + into power gated state, turning it off completely shuts off the
> + controller.
> + items:
> + - const: usb_psw_pd
> + - const: usb_top_pd
s/_pd// at the very least, but I would question the need to put "usb" in
any of the names given that this is a usb device.
> +
> + iommus:
> + maxItems: 1
> +
> +required:
> + - compatible
> + - reg
> + - reg-names
> + - interrupts
> + - interrupt-names
> + - clocks
> + - resets
> + - reset-names
> + - power-domains
> + - power-domain-names
> +
> +allOf:
> + - $ref: snps,dwc3-common.yaml#
> +
> +unevaluatedProperties: false
So every property from snps,dwc3-common.yaml is valid here, with any of
the permitted values?
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> + #include <dt-bindings/interrupt-controller/irq.h>
> + soc {
> + #address-cells = <2>;
> + #size-cells = <2>;
> +
> + usb@c400000 {
> + compatible = "google,gs5-dwc3";
> + reg = <0 0x0c400000 0 0xd060>, <0 0x0c450000 0 0x14>, <0 0x0c450020 0 0x8>;
> + reg-names = "dwc3_core", "host_cfg_csr", "usbint_csr";
> + interrupts = <GIC_SPI 580 IRQ_TYPE_LEVEL_HIGH 0>,
> + <GIC_SPI 597 IRQ_TYPE_LEVEL_HIGH 0>,
> + <GIC_SPI 598 IRQ_TYPE_LEVEL_HIGH 0>;
> + interrupt-names = "dwc_usb3", "hs_pme_irq", "ss_pme_irq";
> + clocks = <&hsion_usbc_non_sticky_clk>, <&hsion_usbc_sticky_clk>,
> + <&hsion_u2phy_apb_clk>;
> + clock-names = "usbc_non_sticky", "usbc_sticky", "u2phy_apb";
> + resets = <&hsion_resets_usbc_non_sticky>, <&hsion_resets_usbc_sticky>,
> + <&hsion_resets_usb_drd_bus>, <&hsion_resets_u2phy_apb>,
> + <&hsion_resets_usb_top_csr>;
> + reset-names = "usbc_non_sticky", "usbc_sticky",
> + "usb_drd_bus", "u2phy_apb",
> + "usb_top_csr";
> + power-domains = <&hsio_n_usb_psw_pd>, <&hsio_n_usb_pd>;
> + power-domain-names = "usb_psw_pd", "usb_top_pd";
> + phys = <&usb_phy 0>;
> + phy-names = "usb2-phy";
> + snps,quirk-frame-length-adjustment = <0x20>;
> + snps,gfladj-refclk-lpm-sel-quirk;
> + snps,incr-burst-type-adjustment = <4>;
> + };
> + };
> +...
pw-bot: cr
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
2025-10-08 20:58 ` Conor Dooley
@ 2025-10-08 23:56 ` Krzysztof Kozlowski
2025-10-09 5:12 ` Roy Luo
1 sibling, 1 reply; 15+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-08 23:56 UTC (permalink / raw)
To: Roy Luo, Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Badhri Jagan Sridharan, linux-phy,
devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
On 08/10/2025 14:59, Roy Luo wrote:
> Document the device tree bindings for the DWC3 USB controller found in
> Google Tensor SoCs, starting with the G5 generation.
>
> The Tensor G5 silicon represents a complete architectural departure from
G5 does not have a model number like G1-G4?
> previous generations (like gs101), including entirely new clock/reset
> schemes, top-level wrapper and register interface. Consequently,
> existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
Do not reference drivers. Explain the hardware.
> necessitating this new device tree binding.
>
> The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
> Dual-Role Device single port with hibernation support.
>
> Signed-off-by: Roy Luo <royluo@google.com>
> ---
> .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
> 1 file changed, 145 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>
> diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> new file mode 100644
> index 000000000000..9eb0bf726e8d
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> @@ -0,0 +1,145 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +# Copyright (c) 2025, Google LLC
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
> +
> +maintainers:
> + - Roy Luo <royluo@google.com>
> +
> +description: |
Do not need '|' unless you need to preserve formatting.
> + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
> + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
> + features Dual-Role Device single port with hibernation add-on.
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - google,gs5-dwc3
> +
> + reg:
> + minItems: 3
Drop
> + maxItems: 3
> +
> + reg-names:
> + description: |
> + The following memory regions must present:
> + - dwc3_core: Core DWC3 IP registers.
> + - host_cfg_csr: Hibernation control registers.
> + - usbint_csr: Hibernation interrupt registers.
Drop description or move it to items in reg. See other bindings.
> + items:
> + - const: dwc3_core
> + - const: host_cfg_csr
> + - const: usbint_csr
> +
> + interrupts:
> + minItems: 3
Drop
> + maxItems: 3
> +
> + interrupt-names:
> + description: |
> + The following interrupts must present:
> + - dwc_usb3: Core DWC3 interrupt.
> + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
> + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
From where did you get this style? Don't write bindings with chat gpt or
whatever other tool. it is a waste of our time.
> + items:
> + - const: dwc_usb3
> + - const: hs_pme_irq
> + - const: ss_pme_irq
> +
> + clocks:
> + minItems: 3
> + maxItems: 3
> +
> + clock-names:
> + minItems: 3
> + maxItems: 3
From where did you get such syntax?
> +
> + resets:
> + minItems: 5
> + maxItems: 5
> +
> + reset-names:
> + items:
> + - const: usbc_non_sticky
> + - const: usbc_sticky
> + - const: usb_drd_bus
> + - const: u2phy_apb
> + - const: usb_top_csr
> +
> + power-domains:
> + minItems: 2
> + maxItems: 2
> +
> + power-domain-names:
> + description: |
> + The following power domain must present:
> + - usb_psw_pd: The child power domain of usb_top_pd. Turning it on puts the controller
> + into full power state, turning it off puts the controller into power
> + gated state.
> + - usb_top_pd: The parent power domain of usb_psw_pd. Turning it on puts the controller
> + into power gated state, turning it off completely shuts off the
> + controller.
Same comments.
> + items:
> + - const: usb_psw_pd
> + - const: usb_top_pd
> +
> + iommus:
> + maxItems: 1
> +
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY
2025-10-08 5:59 ` [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY Roy Luo
@ 2025-10-08 23:58 ` Krzysztof Kozlowski
2025-10-09 5:32 ` Roy Luo
0 siblings, 1 reply; 15+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-08 23:58 UTC (permalink / raw)
To: Roy Luo, Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus
Cc: Joy Chakraborty, Naveen Kumar, Badhri Jagan Sridharan, linux-phy,
devicetree, linux-kernel, linux-usb, linux-arm-kernel,
linux-samsung-soc
On 08/10/2025 14:59, Roy Luo wrote:
> Document the device tree bindings for the USB PHY interfaces integrated
> with the DWC3 controller on Google Tensor SoCs, starting with G5
> generation.
>
> Due to a complete architectural overhaul in the Google Tensor G5, the
> existing Samsung/Exynos USB PHY driver and binding for older generations
> of Google silicons such as gs101 are no longer compatible.
>
> The USB PHY on Tensor G5 includes two integrated Synopsys PHY IPs: the
> eUSB 2.0 PHY IP and the USB 3.2/DisplayPort combo PHY IP. Currently only
> USB high-speed is described and supported.
>
> Signed-off-by: Roy Luo <royluo@google.com>
> ---
> .../bindings/phy/google,gs-usb-phy.yaml | 96 +++++++++++++++++++
> 1 file changed, 96 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
> new file mode 100644
> index 000000000000..22961e2da6ef
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
> @@ -0,0 +1,96 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +# Copyright (C) 2025, Google LLC
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/google,gs-usb-phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Google Tensor Series (G5+) USB PHY
> +
> +maintainers:
> + - Roy Luo <royluo@google.com>
> +
> +description: |
> + Describes the USB PHY interfaces integrated with the DWC3 USB controller on
> + Google Tensor SoCs, starting with the G5 generation.
> + Two specific PHY IPs from Synopsys are integrated, including eUSB 2.0 PHY IP
> + and USB 3.2/DisplayPort combo PHY IP.
> + The first phandle argument within the PHY specifier is used to identify the
> + desired PHY. The currently supported value is::
Currently supported as hardware will change? You describe here hardware
ONLY.
> + 0 - USB high-speed.
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - google,gs5-usb-phy
> +
> + reg:
> + minItems: 3
> + maxItems: 3
> +
> + reg-names:
> + items:
> + - const: usb2_cfg_csr
> + - const: dp_top_csr
> + - const: usb_top_cfg_csr
Drop csr
> +
> + "#phy-cells":
> + const: 1
> +
> + clocks:
> + maxItems: 1
> +
> + clock-names:
> + items:
> + - const: usb2_phy_clk
Drop names, pointless for one entry.
> +
> + resets:
> + maxItems: 1
> +
> + reset-names:
> + items:
> + - const: usb2_phy_reset
Drop names, pointless for one entry.
> +
> + power-domains:
> + maxItems: 1
> +
> + orientation-switch:
> + type: boolean
> + description:
> + Indicates the PHY as a handler of USB Type-C orientation changes
> +
> +required:
> + - compatible
> + - reg
> + - reg-names
> + - "#phy-cells"
> + - clocks
> + - clock-names
> + - resets
> + - reset-names
> +
> +unevaluatedProperties: false
> +
additionalProps instead. Read writing schema or example schema.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-08 20:58 ` Conor Dooley
@ 2025-10-09 4:40 ` Roy Luo
2025-10-09 17:13 ` Conor Dooley
0 siblings, 1 reply; 15+ messages in thread
From: Roy Luo @ 2025-10-09 4:40 UTC (permalink / raw)
To: Conor Dooley
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On Wed, Oct 8, 2025 at 1:58 PM Conor Dooley <conor@kernel.org> wrote:
>
> On Wed, Oct 08, 2025 at 05:59:57AM +0000, Roy Luo wrote:
> > Document the device tree bindings for the DWC3 USB controller found in
> > Google Tensor SoCs, starting with the G5 generation.
> >
> > The Tensor G5 silicon represents a complete architectural departure from
> > previous generations (like gs101), including entirely new clock/reset
> > schemes, top-level wrapper and register interface. Consequently,
> > existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
> > necessitating this new device tree binding.
> >
> > The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
> > Dual-Role Device single port with hibernation support.
> >
> > Signed-off-by: Roy Luo <royluo@google.com>
> > ---
> > .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
> > 1 file changed, 145 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> > new file mode 100644
> > index 000000000000..9eb0bf726e8d
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>
> filename matching the compatible please.
>
> > @@ -0,0 +1,145 @@
> > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> > +# Copyright (c) 2025, Google LLC
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
> > +
> > +maintainers:
> > + - Roy Luo <royluo@google.com>
> > +
> > +description: |
> > + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
> > + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
> > + features Dual-Role Device single port with hibernation add-on.
> > +
> > +properties:
> > + compatible:
> > + items:
> > + - enum:
> > + - google,gs5-dwc3
>
> items is redundant here.
>
> > +
> > + reg:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + reg-names:
> > + description: |
> > + The following memory regions must present:
> > + - dwc3_core: Core DWC3 IP registers.
> > + - host_cfg_csr: Hibernation control registers.
> > + - usbint_csr: Hibernation interrupt registers.
>
> Put this into reg as an items list, and you can drop the min/max items
> from there.
> Same applies to interrupts and power-domains.
>
> > + items:
> > + - const: dwc3_core
> > + - const: host_cfg_csr
> > + - const: usbint_csr
> > +
> > + interrupts:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + interrupt-names:
> > + description: |
> > + The following interrupts must present:
> > + - dwc_usb3: Core DWC3 interrupt.
> > + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
> > + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
> > + items:
> > + - const: dwc_usb3
> > + - const: hs_pme_irq
> > + - const: ss_pme_irq
>
> s/_irq//
>
> > +
> > + clocks:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + clock-names:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + resets:
> > + minItems: 5
> > + maxItems: 5
>
> For clocks and resets, please provide descriptions. For clock-names, you
> provided no names and therefore cannot use the property since anything
> is valid!
>
> > +
> > + reset-names:
> > + items:
> > + - const: usbc_non_sticky
> > + - const: usbc_sticky
> > + - const: usb_drd_bus
> > + - const: u2phy_apb
> > + - const: usb_top_csr
>
> "csr" is an odd thing to have in a reset name, since it usually means
> "control and status register". Why is it here.
>
> > +
> > + power-domains:
> > + minItems: 2
> > + maxItems: 2
> > +
> > + power-domain-names:
> > + description: |
> > + The following power domain must present:
> > + - usb_psw_pd: The child power domain of usb_top_pd. Turning it on puts the controller
> > + into full power state, turning it off puts the controller into power
> > + gated state.
> > + - usb_top_pd: The parent power domain of usb_psw_pd. Turning it on puts the controller
> > + into power gated state, turning it off completely shuts off the
> > + controller.
> > + items:
> > + - const: usb_psw_pd
> > + - const: usb_top_pd
>
> s/_pd// at the very least, but I would question the need to put "usb" in
> any of the names given that this is a usb device.
>
> > +
> > + iommus:
> > + maxItems: 1
> > +
> > +required:
> > + - compatible
> > + - reg
> > + - reg-names
> > + - interrupts
> > + - interrupt-names
> > + - clocks
> > + - resets
> > + - reset-names
> > + - power-domains
> > + - power-domain-names
> > +
> > +allOf:
> > + - $ref: snps,dwc3-common.yaml#
> > +
> > +unevaluatedProperties: false
>
> So every property from snps,dwc3-common.yaml is valid here, with any of
> the permitted values?
Conor,
Appreciate the review.
Ack to all the comments, will fix them in the next patch.
And yes, every property from snps,dwc3-common.yaml is valid here.
You can find more context here [1], essentially the dwc3 glue would be
operating on the same platform device as the dwc3 core, hence all
properties are allowed.
[1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-0-f015b358722d@oss.qualcomm.com/
Thanks,
Roy Luo
> > +
> > +examples:
> > + - |
> > + #include <dt-bindings/interrupt-controller/arm-gic.h>
> > + #include <dt-bindings/interrupt-controller/irq.h>
> > + soc {
> > + #address-cells = <2>;
> > + #size-cells = <2>;
> > +
> > + usb@c400000 {
> > + compatible = "google,gs5-dwc3";
> > + reg = <0 0x0c400000 0 0xd060>, <0 0x0c450000 0 0x14>, <0 0x0c450020 0 0x8>;
> > + reg-names = "dwc3_core", "host_cfg_csr", "usbint_csr";
> > + interrupts = <GIC_SPI 580 IRQ_TYPE_LEVEL_HIGH 0>,
> > + <GIC_SPI 597 IRQ_TYPE_LEVEL_HIGH 0>,
> > + <GIC_SPI 598 IRQ_TYPE_LEVEL_HIGH 0>;
> > + interrupt-names = "dwc_usb3", "hs_pme_irq", "ss_pme_irq";
> > + clocks = <&hsion_usbc_non_sticky_clk>, <&hsion_usbc_sticky_clk>,
> > + <&hsion_u2phy_apb_clk>;
> > + clock-names = "usbc_non_sticky", "usbc_sticky", "u2phy_apb";
> > + resets = <&hsion_resets_usbc_non_sticky>, <&hsion_resets_usbc_sticky>,
> > + <&hsion_resets_usb_drd_bus>, <&hsion_resets_u2phy_apb>,
> > + <&hsion_resets_usb_top_csr>;
> > + reset-names = "usbc_non_sticky", "usbc_sticky",
> > + "usb_drd_bus", "u2phy_apb",
> > + "usb_top_csr";
> > + power-domains = <&hsio_n_usb_psw_pd>, <&hsio_n_usb_pd>;
> > + power-domain-names = "usb_psw_pd", "usb_top_pd";
> > + phys = <&usb_phy 0>;
> > + phy-names = "usb2-phy";
> > + snps,quirk-frame-length-adjustment = <0x20>;
> > + snps,gfladj-refclk-lpm-sel-quirk;
> > + snps,incr-burst-type-adjustment = <4>;
> > + };
> > + };
> > +...
>
> pw-bot: cr
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-08 23:56 ` Krzysztof Kozlowski
@ 2025-10-09 5:12 ` Roy Luo
2025-10-09 7:26 ` Krzysztof Kozlowski
0 siblings, 1 reply; 15+ messages in thread
From: Roy Luo @ 2025-10-09 5:12 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On Wed, Oct 8, 2025 at 4:56 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 08/10/2025 14:59, Roy Luo wrote:
> > Document the device tree bindings for the DWC3 USB controller found in
> > Google Tensor SoCs, starting with the G5 generation.
> >
> > The Tensor G5 silicon represents a complete architectural departure from
>
>
> G5 does not have a model number like G1-G4?
There's no model number for G5, I'm sticking to the existing "gs" prefix
as they're still in the same SoC family. Please let me know if you have any
concerns.
>
> > previous generations (like gs101), including entirely new clock/reset
> > schemes, top-level wrapper and register interface. Consequently,
> > existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
>
> Do not reference drivers. Explain the hardware.
Ack, all mentions of "driver" will be removed in the next patch.
>
> > necessitating this new device tree binding.
> >
> > The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
> > Dual-Role Device single port with hibernation support.
> >
> > Signed-off-by: Roy Luo <royluo@google.com>
> > ---
> > .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
> > 1 file changed, 145 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> > new file mode 100644
> > index 000000000000..9eb0bf726e8d
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> > @@ -0,0 +1,145 @@
> > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> > +# Copyright (c) 2025, Google LLC
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
> > +
> > +maintainers:
> > + - Roy Luo <royluo@google.com>
> > +
> > +description: |
>
>
> Do not need '|' unless you need to preserve formatting.
Ack, will fix this in the next patch.
>
> > + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
> > + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
> > + features Dual-Role Device single port with hibernation add-on.
> > +
> > +properties:
> > + compatible:
> > + items:
> > + - enum:
> > + - google,gs5-dwc3
> > +
> > + reg:
> > + minItems: 3
>
> Drop
>
> > + maxItems: 3
> > +
> > + reg-names:
> > + description: |
> > + The following memory regions must present:
> > + - dwc3_core: Core DWC3 IP registers.
> > + - host_cfg_csr: Hibernation control registers.
> > + - usbint_csr: Hibernation interrupt registers.
>
> Drop description or move it to items in reg. See other bindings.
Ack, will use an item list in reg instead.
>
> > + items:
> > + - const: dwc3_core
> > + - const: host_cfg_csr
> > + - const: usbint_csr
> > +
> > + interrupts:
> > + minItems: 3
>
> Drop
Ack, will use an item list instead.
>
> > + maxItems: 3
> > +
> > + interrupt-names:
> > + description: |
> > + The following interrupts must present:
> > + - dwc_usb3: Core DWC3 interrupt.
> > + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
> > + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
>
> From where did you get this style? Don't write bindings with chat gpt or
> whatever other tool. it is a waste of our time.
I referenced the style from a recent dt binding change [1] that adds
"Documentation/devicetree/bindings/usb/qcom,snps-dwc3.yaml".
I thought it would be a good reference because it's relatively new
and is also a binding for SNPS dwc3 glue logic. Perhaps that style
doesn't apply here because qcom,snps-dwc3.yaml supports
multiple compatible and here we have only one?
Just to clarify, I'm a Gemini user and this patch is 100% organic,
hand-crafted by a living human brain :)
[1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-2-f015b358722d@oss.qualcomm.com/
Thanks,
Roy Luo
>
> > + items:
> > + - const: dwc_usb3
> > + - const: hs_pme_irq
> > + - const: ss_pme_irq
> > +
> > + clocks:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + clock-names:
> > + minItems: 3
> > + maxItems: 3
>
> From where did you get such syntax?
>
> > +
> > + resets:
> > + minItems: 5
> > + maxItems: 5
> > +
> > + reset-names:
> > + items:
> > + - const: usbc_non_sticky
> > + - const: usbc_sticky
> > + - const: usb_drd_bus
> > + - const: u2phy_apb
> > + - const: usb_top_csr
> > +
> > + power-domains:
> > + minItems: 2
> > + maxItems: 2
> > +
> > + power-domain-names:
> > + description: |
> > + The following power domain must present:
> > + - usb_psw_pd: The child power domain of usb_top_pd. Turning it on puts the controller
> > + into full power state, turning it off puts the controller into power
> > + gated state.
> > + - usb_top_pd: The parent power domain of usb_psw_pd. Turning it on puts the controller
> > + into power gated state, turning it off completely shuts off the
> > + controller.
>
> Same comments.
>
>
> > + items:
> > + - const: usb_psw_pd
> > + - const: usb_top_pd
> > +
> > + iommus:
> > + maxItems: 1
> > +
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY
2025-10-08 23:58 ` Krzysztof Kozlowski
@ 2025-10-09 5:32 ` Roy Luo
0 siblings, 0 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-09 5:32 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On Wed, Oct 8, 2025 at 4:58 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 08/10/2025 14:59, Roy Luo wrote:
> > Document the device tree bindings for the USB PHY interfaces integrated
> > with the DWC3 controller on Google Tensor SoCs, starting with G5
> > generation.
> >
> > Due to a complete architectural overhaul in the Google Tensor G5, the
> > existing Samsung/Exynos USB PHY driver and binding for older generations
> > of Google silicons such as gs101 are no longer compatible.
> >
> > The USB PHY on Tensor G5 includes two integrated Synopsys PHY IPs: the
> > eUSB 2.0 PHY IP and the USB 3.2/DisplayPort combo PHY IP. Currently only
> > USB high-speed is described and supported.
> >
> > Signed-off-by: Roy Luo <royluo@google.com>
> > ---
> > .../bindings/phy/google,gs-usb-phy.yaml | 96 +++++++++++++++++++
> > 1 file changed, 96 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
> > new file mode 100644
> > index 000000000000..22961e2da6ef
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/phy/google,gs-usb-phy.yaml
> > @@ -0,0 +1,96 @@
> > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> > +# Copyright (C) 2025, Google LLC
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/phy/google,gs-usb-phy.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Google Tensor Series (G5+) USB PHY
> > +
> > +maintainers:
> > + - Roy Luo <royluo@google.com>
> > +
> > +description: |
> > + Describes the USB PHY interfaces integrated with the DWC3 USB controller on
> > + Google Tensor SoCs, starting with the G5 generation.
> > + Two specific PHY IPs from Synopsys are integrated, including eUSB 2.0 PHY IP
> > + and USB 3.2/DisplayPort combo PHY IP.
> > + The first phandle argument within the PHY specifier is used to identify the
> > + desired PHY. The currently supported value is::
>
> Currently supported as hardware will change? You describe here hardware
> ONLY.
I wanted to explain the PHY specifier as I saw other bindings are also doing it,
e.g. "Documentation/devicetree/bindings/phy/samsung,usb3-drd-phy.yaml".
Theoretically the hardware supports 3 PHY interfaces: high-speed, super-speed
and DP, however, the corresponding driver only supports high-speed at the
moment.
I can still document all the 3 PHY interfaces and assign them with
a theoretical specifier value here as that's what the hardware is capable of,
and then make it clear that only high-speed is currently supported on the driver
side. Does this make sense to you?
>
> > + 0 - USB high-speed.
> > +
> > +properties:
> > + compatible:
> > + items:
> > + - enum:
> > + - google,gs5-usb-phy
> > +
> > + reg:
> > + minItems: 3
> > + maxItems: 3
> > +
> > + reg-names:
> > + items:
> > + - const: usb2_cfg_csr
> > + - const: dp_top_csr
> > + - const: usb_top_cfg_csr
>
> Drop csr
>
Ack, will fix it in the next patch.
> > +
> > + "#phy-cells":
> > + const: 1
> > +
> > + clocks:
> > + maxItems: 1
> > +
> > + clock-names:
> > + items:
> > + - const: usb2_phy_clk
>
> Drop names, pointless for one entry.
>
Ack, will fix it in the next patch.
> > +
> > + resets:
> > + maxItems: 1
> > +
> > + reset-names:
> > + items:
> > + - const: usb2_phy_reset
>
> Drop names, pointless for one entry.
>
Ack, will fix it in the next patch.
> > +
> > + power-domains:
> > + maxItems: 1
> > +
> > + orientation-switch:
> > + type: boolean
> > + description:
> > + Indicates the PHY as a handler of USB Type-C orientation changes
> > +
> > +required:
> > + - compatible
> > + - reg
> > + - reg-names
> > + - "#phy-cells"
> > + - clocks
> > + - clock-names
> > + - resets
> > + - reset-names
> > +
> > +unevaluatedProperties: false
> > +
>
>
> additionalProps instead. Read writing schema or example schema.
>
Ack, will fix this in the next patch.
Appreciate the review!
Thanks,
Roy Luo
>
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-09 5:12 ` Roy Luo
@ 2025-10-09 7:26 ` Krzysztof Kozlowski
2025-10-10 0:21 ` Roy Luo
0 siblings, 1 reply; 15+ messages in thread
From: Krzysztof Kozlowski @ 2025-10-09 7:26 UTC (permalink / raw)
To: Roy Luo
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On 09/10/2025 14:12, Roy Luo wrote:
> On Wed, Oct 8, 2025 at 4:56 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>>
>> On 08/10/2025 14:59, Roy Luo wrote:
>>> Document the device tree bindings for the DWC3 USB controller found in
>>> Google Tensor SoCs, starting with the G5 generation.
>>>
>>> The Tensor G5 silicon represents a complete architectural departure from
>>
>>
>> G5 does not have a model number like G1-G4?
>
> There's no model number for G5, I'm sticking to the existing "gs" prefix
> as they're still in the same SoC family. Please let me know if you have any
> concerns.
>
>>
>>> previous generations (like gs101), including entirely new clock/reset
>>> schemes, top-level wrapper and register interface. Consequently,
>>> existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
>>
>> Do not reference drivers. Explain the hardware.
>
> Ack, all mentions of "driver" will be removed in the next patch.
>
>>
>>> necessitating this new device tree binding.
>>>
>>> The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
>>> Dual-Role Device single port with hibernation support.
>>>
>>> Signed-off-by: Roy Luo <royluo@google.com>
>>> ---
>>> .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
>>> 1 file changed, 145 insertions(+)
>>> create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>>>
>>> diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>>> new file mode 100644
>>> index 000000000000..9eb0bf726e8d
>>> --- /dev/null
>>> +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
>>> @@ -0,0 +1,145 @@
>>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
>>> +# Copyright (c) 2025, Google LLC
>>> +%YAML 1.2
>>> +---
>>> +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
>>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>>> +
>>> +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
>>> +
>>> +maintainers:
>>> + - Roy Luo <royluo@google.com>
>>> +
>>> +description: |
>>
>>
>> Do not need '|' unless you need to preserve formatting.
>
> Ack, will fix this in the next patch.
>
>>
>>> + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
>>> + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
>>> + features Dual-Role Device single port with hibernation add-on.
>>> +
>>> +properties:
>>> + compatible:
>>> + items:
>>> + - enum:
>>> + - google,gs5-dwc3
>>> +
>>> + reg:
>>> + minItems: 3
>>
>> Drop
>>
>>> + maxItems: 3
>>> +
>>> + reg-names:
>>> + description: |
>>> + The following memory regions must present:
>>> + - dwc3_core: Core DWC3 IP registers.
>>> + - host_cfg_csr: Hibernation control registers.
>>> + - usbint_csr: Hibernation interrupt registers.
>>
>> Drop description or move it to items in reg. See other bindings.
>
> Ack, will use an item list in reg instead.
>
>>
>>> + items:
>>> + - const: dwc3_core
>>> + - const: host_cfg_csr
>>> + - const: usbint_csr
>>> +
>>> + interrupts:
>>> + minItems: 3
>>
>> Drop
>
> Ack, will use an item list instead.
>
>>
>>> + maxItems: 3
>>> +
>>> + interrupt-names:
>>> + description: |
>>> + The following interrupts must present:
>>> + - dwc_usb3: Core DWC3 interrupt.
>>> + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
>>> + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
>>
>> From where did you get this style? Don't write bindings with chat gpt or
>> whatever other tool. it is a waste of our time.
>
> I referenced the style from a recent dt binding change [1] that adds
> "Documentation/devicetree/bindings/usb/qcom,snps-dwc3.yaml".
> I thought it would be a good reference because it's relatively new
> and is also a binding for SNPS dwc3 glue logic. Perhaps that style
> doesn't apply here because qcom,snps-dwc3.yaml supports
> multiple compatible and here we have only one?
>
> Just to clarify, I'm a Gemini user and this patch is 100% organic,
> hand-crafted by a living human brain :)
>
> [1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-2-f015b358722d@oss.qualcomm.com/
Your code is not at all like above, you do not have any variants here,
so you cannot use that syntax - is not correct here.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-09 4:40 ` Roy Luo
@ 2025-10-09 17:13 ` Conor Dooley
2025-10-10 0:36 ` Roy Luo
0 siblings, 1 reply; 15+ messages in thread
From: Conor Dooley @ 2025-10-09 17:13 UTC (permalink / raw)
To: Roy Luo
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
[-- Attachment #1: Type: text/plain, Size: 1442 bytes --]
On Wed, Oct 08, 2025 at 09:40:57PM -0700, Roy Luo wrote:
> On Wed, Oct 8, 2025 at 1:58 PM Conor Dooley <conor@kernel.org> wrote:
> >
> > On Wed, Oct 08, 2025 at 05:59:57AM +0000, Roy Luo wrote:
> > > +allOf:
> > > + - $ref: snps,dwc3-common.yaml#
> > > +
> > > +unevaluatedProperties: false
> >
> > So every property from snps,dwc3-common.yaml is valid here, with any of
> > the permitted values?
>
> Conor,
>
> Appreciate the review.
> Ack to all the comments, will fix them in the next patch.
> And yes, every property from snps,dwc3-common.yaml is valid here.
> You can find more context here [1], essentially the dwc3 glue would be
> operating on the same platform device as the dwc3 core, hence all
> properties are allowed.
>
> [1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-0-f015b358722d@oss.qualcomm.com/
I find it exceedingly hard to believe that every property from that
file, with every permitted value, is possible. AFAIU, the tensor g5 is a
phone chip that's only used in pixel devices, not something that people
can just buy and integrate into whatever device they feel like. There
should be a vanishingly small number of possible configurations,
possibly exactly one configuration. There are dozens of properties in
the dwc3 common binding, of which at least 10 are for "quirks" or other
sorts of hardware errata that are not going to be variable from one
phone to another.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-09 7:26 ` Krzysztof Kozlowski
@ 2025-10-10 0:21 ` Roy Luo
0 siblings, 0 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-10 0:21 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On Thu, Oct 9, 2025 at 12:26 AM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 09/10/2025 14:12, Roy Luo wrote:
> > On Wed, Oct 8, 2025 at 4:56 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
> >>
> >> On 08/10/2025 14:59, Roy Luo wrote:
> >>> Document the device tree bindings for the DWC3 USB controller found in
> >>> Google Tensor SoCs, starting with the G5 generation.
> >>>
> >>> The Tensor G5 silicon represents a complete architectural departure from
> >>
> >>
> >> G5 does not have a model number like G1-G4?
> >
> > There's no model number for G5, I'm sticking to the existing "gs" prefix
> > as they're still in the same SoC family. Please let me know if you have any
> > concerns.
> >
> >>
> >>> previous generations (like gs101), including entirely new clock/reset
> >>> schemes, top-level wrapper and register interface. Consequently,
> >>> existing Samsung/Exynos DWC3 USB bindings and drivers are incompatible,
> >>
> >> Do not reference drivers. Explain the hardware.
> >
> > Ack, all mentions of "driver" will be removed in the next patch.
> >
> >>
> >>> necessitating this new device tree binding.
> >>>
> >>> The USB controller on Tensor G5 is based on Synopsys DWC3 IP and features
> >>> Dual-Role Device single port with hibernation support.
> >>>
> >>> Signed-off-by: Roy Luo <royluo@google.com>
> >>> ---
> >>> .../bindings/usb/google,gs-dwc3.yaml | 145 ++++++++++++++++++
> >>> 1 file changed, 145 insertions(+)
> >>> create mode 100644 Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> >>>
> >>> diff --git a/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> >>> new file mode 100644
> >>> index 000000000000..9eb0bf726e8d
> >>> --- /dev/null
> >>> +++ b/Documentation/devicetree/bindings/usb/google,gs-dwc3.yaml
> >>> @@ -0,0 +1,145 @@
> >>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> >>> +# Copyright (c) 2025, Google LLC
> >>> +%YAML 1.2
> >>> +---
> >>> +$id: http://devicetree.org/schemas/usb/google,gs-dwc3.yaml#
> >>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> >>> +
> >>> +title: Google Tensor Series (G5+) DWC3 USB SoC Controller
> >>> +
> >>> +maintainers:
> >>> + - Roy Luo <royluo@google.com>
> >>> +
> >>> +description: |
> >>
> >>
> >> Do not need '|' unless you need to preserve formatting.
> >
> > Ack, will fix this in the next patch.
> >
> >>
> >>> + Describes the DWC3 USB controller block implemented on Google Tensor SoCs,
> >>> + starting with the G5 generation. Based on Synopsys DWC3 IP, the controller
> >>> + features Dual-Role Device single port with hibernation add-on.
> >>> +
> >>> +properties:
> >>> + compatible:
> >>> + items:
> >>> + - enum:
> >>> + - google,gs5-dwc3
> >>> +
> >>> + reg:
> >>> + minItems: 3
> >>
> >> Drop
> >>
> >>> + maxItems: 3
> >>> +
> >>> + reg-names:
> >>> + description: |
> >>> + The following memory regions must present:
> >>> + - dwc3_core: Core DWC3 IP registers.
> >>> + - host_cfg_csr: Hibernation control registers.
> >>> + - usbint_csr: Hibernation interrupt registers.
> >>
> >> Drop description or move it to items in reg. See other bindings.
> >
> > Ack, will use an item list in reg instead.
> >
> >>
> >>> + items:
> >>> + - const: dwc3_core
> >>> + - const: host_cfg_csr
> >>> + - const: usbint_csr
> >>> +
> >>> + interrupts:
> >>> + minItems: 3
> >>
> >> Drop
> >
> > Ack, will use an item list instead.
> >
> >>
> >>> + maxItems: 3
> >>> +
> >>> + interrupt-names:
> >>> + description: |
> >>> + The following interrupts must present:
> >>> + - dwc_usb3: Core DWC3 interrupt.
> >>> + - hs_pme_irq: High speed remote wakeup interrupt for hibernation.
> >>> + - ss_pme_irq: Super speed remote wakeup interrupt for hibernation.
> >>
> >> From where did you get this style? Don't write bindings with chat gpt or
> >> whatever other tool. it is a waste of our time.
> >
> > I referenced the style from a recent dt binding change [1] that adds
> > "Documentation/devicetree/bindings/usb/qcom,snps-dwc3.yaml".
> > I thought it would be a good reference because it's relatively new
> > and is also a binding for SNPS dwc3 glue logic. Perhaps that style
> > doesn't apply here because qcom,snps-dwc3.yaml supports
> > multiple compatible and here we have only one?
> >
> > Just to clarify, I'm a Gemini user and this patch is 100% organic,
> > hand-crafted by a living human brain :)
> >
> > [1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-2-f015b358722d@oss.qualcomm.com/
>
> Your code is not at all like above, you do not have any variants here,
> so you cannot use that syntax - is not correct here.
>
> Best regards,
> Krzysztof
Thanks for the clarification.
Regards,
Roy Luo
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3
2025-10-09 17:13 ` Conor Dooley
@ 2025-10-10 0:36 ` Roy Luo
0 siblings, 0 replies; 15+ messages in thread
From: Roy Luo @ 2025-10-10 0:36 UTC (permalink / raw)
To: Conor Dooley
Cc: Vinod Koul, Kishon Vijay Abraham I, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, Greg Kroah-Hartman,
Thinh Nguyen, Philipp Zabel, Peter Griffin, André Draszik,
Tudor Ambarus, Joy Chakraborty, Naveen Kumar,
Badhri Jagan Sridharan, linux-phy, devicetree, linux-kernel,
linux-usb, linux-arm-kernel, linux-samsung-soc
On Thu, Oct 9, 2025 at 10:13 AM Conor Dooley <conor@kernel.org> wrote:
>
> On Wed, Oct 08, 2025 at 09:40:57PM -0700, Roy Luo wrote:
> > On Wed, Oct 8, 2025 at 1:58 PM Conor Dooley <conor@kernel.org> wrote:
> > >
> > > On Wed, Oct 08, 2025 at 05:59:57AM +0000, Roy Luo wrote:
>
> > > > +allOf:
> > > > + - $ref: snps,dwc3-common.yaml#
> > > > +
> > > > +unevaluatedProperties: false
> > >
> > > So every property from snps,dwc3-common.yaml is valid here, with any of
> > > the permitted values?
> >
> > Conor,
> >
> > Appreciate the review.
> > Ack to all the comments, will fix them in the next patch.
> > And yes, every property from snps,dwc3-common.yaml is valid here.
> > You can find more context here [1], essentially the dwc3 glue would be
> > operating on the same platform device as the dwc3 core, hence all
> > properties are allowed.
> >
> > [1] https://lore.kernel.org/all/20250414-dwc3-refactor-v7-0-f015b358722d@oss.qualcomm.com/
>
> I find it exceedingly hard to believe that every property from that
> file, with every permitted value, is possible. AFAIU, the tensor g5 is a
> phone chip that's only used in pixel devices, not something that people
> can just buy and integrate into whatever device they feel like. There
> should be a vanishingly small number of possible configurations,
> possibly exactly one configuration. There are dozens of properties in
> the dwc3 common binding, of which at least 10 are for "quirks" or other
> sorts of hardware errata that are not going to be variable from one
> phone to another.
To my knowledge, the properties in snps,dwc3-common.yaml can generally
be categorized into two types:
- Function knobs: These properties translate directly to register writes that
modify the controller's fundamental behavior. Most quirks fall into this
category. For example, "snps,gfladj-refclk-lpm-sel-quirk" enables SOF counter.
- Tunable Values: These properties also map to register writes to influence
hardware behavior, but they typically adjust performance or interoperability
rather than essential function. While the hardware usually works fine with
default settings, these values allow for optimization. For example,
"tx-fifo-max-num" usually affects data throughput.
For DWC3 hardware errata and workarounds, my understanding is that they
are typically handled within the dwc3 driver, often involving a DWC3 revision
check (e.g. [1]), instead of in the device tree binding. While you may find
properties related to errata, they generally serve to enable or disable an
existing workaround (e.g. [2]).
For Pixel devices, it's shipped with a preferred configuration, but the hardware
is fundamentally capable of supporting other configurations since the properties
are backed by the SNPS DWC3 IP. Whether that's optimal is a different story.
I haven't tried toggling every single property but I'm not aware of any property
that obviously does not work on Tensor G5.
I hope this addresses your concern.
[1] https://github.com/torvalds/linux/commit/32a4a135847b1e600c64756b7c7c7a91eb2f0aa9
(sorry I'm unable to find the kernel lore link for this commit)
[2] https://lore.kernel.org/all/1509455515-5992-1-git-send-email-rogerq@ti.com/
Regards,
Roy Luo
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-10-10 0:36 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-08 5:59 [PATCH v2 0/4] Add Google Tensor SoC USB support Roy Luo
2025-10-08 5:59 ` [PATCH v2 1/4] dt-bindings: usb: dwc3: Add Google Tensor G5 DWC3 Roy Luo
2025-10-08 20:58 ` Conor Dooley
2025-10-09 4:40 ` Roy Luo
2025-10-09 17:13 ` Conor Dooley
2025-10-10 0:36 ` Roy Luo
2025-10-08 23:56 ` Krzysztof Kozlowski
2025-10-09 5:12 ` Roy Luo
2025-10-09 7:26 ` Krzysztof Kozlowski
2025-10-10 0:21 ` Roy Luo
2025-10-08 5:59 ` [PATCH v2 2/4] usb: dwc3: Add Google Tensor SoC DWC3 glue driver Roy Luo
2025-10-08 5:59 ` [PATCH v2 3/4] dt-bindings: phy: google: Add Google Tensor G5 USB PHY Roy Luo
2025-10-08 23:58 ` Krzysztof Kozlowski
2025-10-09 5:32 ` Roy Luo
2025-10-08 6:00 ` [PATCH v2 4/4] phy: Add Google Tensor SoC USB PHY driver Roy Luo
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).