* [PATCH 0/2] Add support for nuvoton ma35 usb2 phy
@ 2024-07-29 6:15 hpchen0
2024-07-29 6:15 ` [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings hpchen0
2024-07-29 6:15 ` [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY hpchen0
0 siblings, 2 replies; 10+ messages in thread
From: hpchen0 @ 2024-07-29 6:15 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel, hpchen0
This patch series adds the usb2 phy driver for the nuvoton ma35 ARMv8 SoC.
It includes DT binding documentation and the ma35 usb2 phy driver.
hpchen0 (2):
dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY
.../bindings/phy/nuvoton,ma35-usb2-phy.yaml | 51 ++++++
drivers/phy/Kconfig | 1 +
drivers/phy/Makefile | 1 +
drivers/phy/nuvoton/Kconfig | 13 ++
drivers/phy/nuvoton/Makefile | 3 +
drivers/phy/nuvoton/phy-ma35-usb2.c | 160 ++++++++++++++++++
6 files changed, 229 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
create mode 100644 drivers/phy/nuvoton/Kconfig
create mode 100644 drivers/phy/nuvoton/Makefile
create mode 100644 drivers/phy/nuvoton/phy-ma35-usb2.c
--
2.25.1
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-29 6:15 [PATCH 0/2] Add support for nuvoton ma35 usb2 phy hpchen0
@ 2024-07-29 6:15 ` hpchen0
2024-07-29 7:29 ` Krzysztof Kozlowski
2024-07-29 6:15 ` [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY hpchen0
1 sibling, 1 reply; 10+ messages in thread
From: hpchen0 @ 2024-07-29 6:15 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel, hpchen0
Add dt-bindings for USB2 PHY found on the Nuvoton MA35 SoC.
Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
---
.../bindings/phy/nuvoton,ma35-usb2-phy.yaml | 51 +++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
diff --git a/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
new file mode 100644
index 000000000000..415ea2c45975
--- /dev/null
+++ b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
@@ -0,0 +1,51 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/phy/nuvoton,ma35-usb2-phy.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Nuvoton MA35 USB2 phy
+
+maintainers:
+ - hpchen0 <hpchen0nvt@gmail.com>
+
+properties:
+ compatible:
+ enum:
+ - nuvoton,ma35-usb2-phy
+
+ "#phy-cells":
+ const: 0
+
+ clocks:
+ maxItems: 1
+ description: USB PHY clock
+
+ clock-names:
+ const: usbd_gate
+
+ nuvoton,sys:
+ $ref: /schemas/types.yaml#/definitions/phandle
+ description:
+ phandle of the system-management node.
+
+required:
+ - compatible
+ - clocks
+ - nuvoton,sys
+ - "#phy-cells"
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/interrupt-controller/arm-gic.h>
+ #include <dt-bindings/clock/nuvoton,ma35d1-clk.h>
+
+ usb_phy: usb-phy {
+ compatible = "nuvoton,ma35-usb2-phy";
+ clocks = <&clk USBD_GATE>;
+ clock-names = "usbd_gate";
+ nuvoton,sys = <&sys>;
+ #phy-cells = <0>;
+ };
--
2.25.1
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY
2024-07-29 6:15 [PATCH 0/2] Add support for nuvoton ma35 usb2 phy hpchen0
2024-07-29 6:15 ` [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings hpchen0
@ 2024-07-29 6:15 ` hpchen0
2024-07-29 7:32 ` Krzysztof Kozlowski
1 sibling, 1 reply; 10+ messages in thread
From: hpchen0 @ 2024-07-29 6:15 UTC (permalink / raw)
To: vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel, hpchen0
Nuvoton MA35 SoCs support DWC2 USB controller.
Add the driver to drive the USB 2.0 PHY transceivers.
Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
---
drivers/phy/Kconfig | 1 +
drivers/phy/Makefile | 1 +
drivers/phy/nuvoton/Kconfig | 13 +++
drivers/phy/nuvoton/Makefile | 3 +
drivers/phy/nuvoton/phy-ma35-usb2.c | 160 ++++++++++++++++++++++++++++
5 files changed, 178 insertions(+)
create mode 100644 drivers/phy/nuvoton/Kconfig
create mode 100644 drivers/phy/nuvoton/Makefile
create mode 100644 drivers/phy/nuvoton/phy-ma35-usb2.c
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig
index dfab1c66b3e5..f73abff416be 100644
--- a/drivers/phy/Kconfig
+++ b/drivers/phy/Kconfig
@@ -95,6 +95,7 @@ source "drivers/phy/mediatek/Kconfig"
source "drivers/phy/microchip/Kconfig"
source "drivers/phy/motorola/Kconfig"
source "drivers/phy/mscc/Kconfig"
+source "drivers/phy/nuvoton/Kconfig"
source "drivers/phy/qualcomm/Kconfig"
source "drivers/phy/ralink/Kconfig"
source "drivers/phy/realtek/Kconfig"
diff --git a/drivers/phy/Makefile b/drivers/phy/Makefile
index 5fcbce5f9ab1..ebc399560da4 100644
--- a/drivers/phy/Makefile
+++ b/drivers/phy/Makefile
@@ -25,6 +25,7 @@ obj-y += allwinner/ \
microchip/ \
motorola/ \
mscc/ \
+ nuvoton/ \
qualcomm/ \
ralink/ \
realtek/ \
diff --git a/drivers/phy/nuvoton/Kconfig b/drivers/phy/nuvoton/Kconfig
new file mode 100644
index 000000000000..270ee2943287
--- /dev/null
+++ b/drivers/phy/nuvoton/Kconfig
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: GPL-2.0-only
+#
+# PHY drivers for Nuvoton MA35 platforms
+#
+config PHY_MA35_USB
+ tristate "Nuvoton MA35 USB2.0 PHY driver"
+ depends on ARCH_MA35 || COMPILE_TEST
+ depends on OF
+ select GENERIC_PHY
+ help
+ Enable this to support the USB2.0 PHY on the Nuvoton MA35
+ series SoCs.
+
diff --git a/drivers/phy/nuvoton/Makefile b/drivers/phy/nuvoton/Makefile
new file mode 100644
index 000000000000..85785e037d5f
--- /dev/null
+++ b/drivers/phy/nuvoton/Makefile
@@ -0,0 +1,3 @@
+# SPDX-License-Identifier: GPL-2.0
+
+obj-$(CONFIG_PHY_MA35_USB) += phy-ma35-usb2.o
diff --git a/drivers/phy/nuvoton/phy-ma35-usb2.c b/drivers/phy/nuvoton/phy-ma35-usb2.c
new file mode 100644
index 000000000000..061b31fcfbb1
--- /dev/null
+++ b/drivers/phy/nuvoton/phy-ma35-usb2.c
@@ -0,0 +1,160 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2024 Nuvoton Technology Corp.
+ */
+#include <linux/bitfield.h>
+#include <linux/clk.h>
+#include <linux/delay.h>
+#include <linux/io.h>
+#include <linux/kernel.h>
+#include <linux/mfd/syscon.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/phy/phy.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+
+/* USB PHY Miscellaneous Control Register */
+#define MA35_SYS_REG_USBPMISCR 0x60
+#define PHY0POR BIT(0) /* PHY Power-On Reset Control Bit */
+#define PHY0SUSPEND BIT(1) /* PHY Suspend; 0: suspend, 1: operaion */
+#define PHY0COMN BIT(2) /* PHY Common Block Power-Down Control */
+#define PHY0DEVCKSTB BIT(10) /* PHY 60 MHz UTMI clock stable bit */
+
+struct ma35_usb_phy {
+ struct clk *clk;
+ struct device *dev;
+ struct regmap *sysreg;
+};
+
+static int ma35_usb_phy_power_on(struct phy *phy)
+{
+ struct ma35_usb_phy *p_phy = phy_get_drvdata(phy);
+ unsigned long timeout;
+ unsigned int val;
+ int ret;
+
+ ret = clk_prepare_enable(p_phy->clk);
+ if (ret < 0) {
+ dev_err(p_phy->dev, "Failed to enable PHY clock: %d\n", ret);
+ return ret;
+ }
+
+ regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
+ if (val & PHY0SUSPEND) {
+ /*
+ * USB PHY0 is in operation mode already
+ * make sure USB PHY 60 MHz UTMI Interface Clock ready
+ */
+ timeout = jiffies + msecs_to_jiffies(200);
+ while (time_before(jiffies, timeout)) {
+ regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
+ if (val & PHY0DEVCKSTB)
+ return 0;
+ usleep_range(1000, 1500);
+ }
+ }
+
+ /*
+ * reset USB PHY0.
+ * wait until USB PHY0 60 MHz UTMI Interface Clock ready
+ */
+ regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, (PHY0POR | PHY0SUSPEND));
+ timeout = jiffies + msecs_to_jiffies(200);
+ while (time_before(jiffies, timeout)) {
+ regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
+ if (val & PHY0DEVCKSTB)
+ break;
+ usleep_range(1000, 1500);
+ }
+
+ /* make USB PHY0 enter operation mode */
+ regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, PHY0SUSPEND);
+
+ /* make sure USB PHY 60 MHz UTMI Interface Clock ready */
+ timeout = jiffies + msecs_to_jiffies(200);
+ while (time_before(jiffies, timeout)) {
+ regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
+ if (val & PHY0DEVCKSTB)
+ return 0;
+ usleep_range(1000, 1500);
+ }
+
+ dev_err(p_phy->dev, "Timed out waiting for PHY to power on\n");
+ ret = -ETIMEDOUT;
+
+ clk_disable_unprepare(p_phy->clk);
+ return ret;
+}
+
+static int ma35_usb_phy_power_off(struct phy *phy)
+{
+ struct ma35_usb_phy *p_phy = phy_get_drvdata(phy);
+
+ clk_disable_unprepare(p_phy->clk);
+ return 0;
+}
+
+static const struct phy_ops ma35_usb_phy_ops = {
+ .power_on = ma35_usb_phy_power_on,
+ .power_off = ma35_usb_phy_power_off,
+ .owner = THIS_MODULE,
+};
+
+static int ma35_usb_phy_probe(struct platform_device *pdev)
+{
+ struct phy_provider *provider;
+ struct ma35_usb_phy *p_phy;
+ const char *clkgate;
+ struct phy *phy;
+
+ p_phy = devm_kzalloc(&pdev->dev, sizeof(*p_phy), GFP_KERNEL);
+ if (!p_phy)
+ return -ENOMEM;
+
+ p_phy->dev = &pdev->dev;
+ platform_set_drvdata(pdev, p_phy);
+
+ p_phy->sysreg = syscon_regmap_lookup_by_phandle(p_phy->dev->of_node, "nuvoton,sys");
+ if (IS_ERR(p_phy->sysreg))
+ return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->sysreg),
+ "Failed to get SYS registers\n");
+
+ /* enable clock */
+ of_property_read_string(p_phy->dev->of_node, "clock-enable", &clkgate);
+ p_phy->clk = devm_clk_get(p_phy->dev, clkgate);
+ if (IS_ERR(p_phy->clk))
+ return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->clk),
+ "Failed to get usb_phy clock\n");
+
+ phy = devm_phy_create(p_phy->dev, NULL, &ma35_usb_phy_ops);
+ if (IS_ERR(phy))
+ return dev_err_probe(&pdev->dev, PTR_ERR(phy), "Failed to create PHY\n");
+
+ phy_set_drvdata(phy, p_phy);
+
+ provider = devm_of_phy_provider_register(p_phy->dev, of_phy_simple_xlate);
+ if (IS_ERR(provider))
+ return dev_err_probe(&pdev->dev, PTR_ERR(provider),
+ "Failed to register PHY provider\n");
+ return 0;
+}
+
+static const struct of_device_id ma35_usb_phy_of_match[] = {
+ { .compatible = "nuvoton,ma35-usb2-phy", },
+ { },
+};
+MODULE_DEVICE_TABLE(of, ma35_usb_phy_of_match);
+
+static struct platform_driver ma35_usb_phy_driver = {
+ .probe = ma35_usb_phy_probe,
+ .driver = {
+ .name = "ma35-usb2-phy",
+ .of_match_table = ma35_usb_phy_of_match,
+ },
+};
+module_platform_driver(ma35_usb_phy_driver);
+
+MODULE_DESCRIPTION("Nuvoton ma35 USB2.0 PHY driver");
+MODULE_AUTHOR("hpchen0nvt@gmail.com");
+MODULE_LICENSE("GPL");
--
2.25.1
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-29 6:15 ` [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings hpchen0
@ 2024-07-29 7:29 ` Krzysztof Kozlowski
2024-07-30 7:44 ` Hui-Ping Chen
2024-07-30 8:03 ` Hui-Ping Chen
0 siblings, 2 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-07-29 7:29 UTC (permalink / raw)
To: hpchen0, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
On 29/07/2024 08:15, hpchen0 wrote:
> Add dt-bindings for USB2 PHY found on the Nuvoton MA35 SoC.
>
> Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
Please use proper name.
> ---
> .../bindings/phy/nuvoton,ma35-usb2-phy.yaml | 51 +++++++++++++++++++
> 1 file changed, 51 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
> new file mode 100644
> index 000000000000..415ea2c45975
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
> @@ -0,0 +1,51 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/nuvoton,ma35-usb2-phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Nuvoton MA35 USB2 phy
> +
> +maintainers:
> + - hpchen0 <hpchen0nvt@gmail.com>
Same here
> +
> +properties:
> + compatible:
> + enum:
> + - nuvoton,ma35-usb2-phy
All other devices have name ma35d1. Is this a different SoC?
> +
> + "#phy-cells":
> + const: 0
> +
> + clocks:
> + maxItems: 1
> + description: USB PHY clock
Drop description, it's obvious.
> +
> + clock-names:
> + const: usbd_gate
Drop clock-names, you do not bring any new information.
> +
> + nuvoton,sys:
> + $ref: /schemas/types.yaml#/definitions/phandle
> + description:
> + phandle of the system-management node.
Describe what is it for.
> +
> +required:
> + - compatible
> + - clocks
> + - nuvoton,sys
> + - "#phy-cells"
Keep the same order as in properties.
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
Where do you use it?
> + #include <dt-bindings/clock/nuvoton,ma35d1-clk.h>
> +
> + usb_phy: usb-phy {
> + compatible = "nuvoton,ma35-usb2-phy";
> + clocks = <&clk USBD_GATE>;
> + clock-names = "usbd_gate";
> + nuvoton,sys = <&sys>;
> + #phy-cells = <0>;
> + };
Best regards,
Krzysztof
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY
2024-07-29 6:15 ` [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY hpchen0
@ 2024-07-29 7:32 ` Krzysztof Kozlowski
2024-07-30 8:05 ` Hui-Ping Chen
0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-07-29 7:32 UTC (permalink / raw)
To: hpchen0, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
On 29/07/2024 08:15, hpchen0 wrote:
> Nuvoton MA35 SoCs support DWC2 USB controller.
> Add the driver to drive the USB 2.0 PHY transceivers.
>
> Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
> +
> + ret = clk_prepare_enable(p_phy->clk);
> + if (ret < 0) {
> + dev_err(p_phy->dev, "Failed to enable PHY clock: %d\n", ret);
> + return ret;
> + }
> +
> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
> + if (val & PHY0SUSPEND) {
> + /*
> + * USB PHY0 is in operation mode already
> + * make sure USB PHY 60 MHz UTMI Interface Clock ready
> + */
> + timeout = jiffies + msecs_to_jiffies(200);
> + while (time_before(jiffies, timeout)) {
> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
> + if (val & PHY0DEVCKSTB)
> + return 0;
> + usleep_range(1000, 1500);
> + }
You want some readl_poll_timeout version here.
> + }
> +
> + /*
> + * reset USB PHY0.
> + * wait until USB PHY0 60 MHz UTMI Interface Clock ready
> + */
> + regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, (PHY0POR | PHY0SUSPEND));
> + timeout = jiffies + msecs_to_jiffies(200);
> + while (time_before(jiffies, timeout)) {
> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
> + if (val & PHY0DEVCKSTB)
> + break;
> + usleep_range(1000, 1500);
> + }
> +
> + /* make USB PHY0 enter operation mode */
> + regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, PHY0SUSPEND);
> +
> + /* make sure USB PHY 60 MHz UTMI Interface Clock ready */
> + timeout = jiffies + msecs_to_jiffies(200);
> + while (time_before(jiffies, timeout)) {
> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
> + if (val & PHY0DEVCKSTB)
> + return 0;
> + usleep_range(1000, 1500);
> + }
> +
> + dev_err(p_phy->dev, "Timed out waiting for PHY to power on\n");
> + ret = -ETIMEDOUT;
> +
> + clk_disable_unprepare(p_phy->clk);
> + return ret;
> +}
> +
> +static int ma35_usb_phy_power_off(struct phy *phy)
> +{
> + struct ma35_usb_phy *p_phy = phy_get_drvdata(phy);
> +
> + clk_disable_unprepare(p_phy->clk);
> + return 0;
> +}
> +
> +static const struct phy_ops ma35_usb_phy_ops = {
> + .power_on = ma35_usb_phy_power_on,
> + .power_off = ma35_usb_phy_power_off,
> + .owner = THIS_MODULE,
> +};
> +
> +static int ma35_usb_phy_probe(struct platform_device *pdev)
> +{
> + struct phy_provider *provider;
> + struct ma35_usb_phy *p_phy;
> + const char *clkgate;
> + struct phy *phy;
> +
> + p_phy = devm_kzalloc(&pdev->dev, sizeof(*p_phy), GFP_KERNEL);
> + if (!p_phy)
> + return -ENOMEM;
> +
> + p_phy->dev = &pdev->dev;
> + platform_set_drvdata(pdev, p_phy);
> +
> + p_phy->sysreg = syscon_regmap_lookup_by_phandle(p_phy->dev->of_node, "nuvoton,sys");
> + if (IS_ERR(p_phy->sysreg))
> + return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->sysreg),
> + "Failed to get SYS registers\n");
> +
> + /* enable clock */
> + of_property_read_string(p_phy->dev->of_node, "clock-enable", &clkgate);
There is no such property.
> + p_phy->clk = devm_clk_get(p_phy->dev, clkgate);
Don't mix styles of variables: you were using pdev->dev but now entirely
different. Stick to pdev->dev.
> + if (IS_ERR(p_phy->clk))
> + return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->clk),
And here again pdev->dev... Bring some consistency, not random coding style.
> + "Failed to get usb_phy clock\n");
> +
Best regards,
Krzysztof
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-29 7:29 ` Krzysztof Kozlowski
@ 2024-07-30 7:44 ` Hui-Ping Chen
2024-07-30 8:10 ` Krzysztof Kozlowski
2024-07-30 8:03 ` Hui-Ping Chen
1 sibling, 1 reply; 10+ messages in thread
From: Hui-Ping Chen @ 2024-07-30 7:44 UTC (permalink / raw)
To: Krzysztof Kozlowski, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
Dear Krzysztof,
Thank you for your reply.
On 2024/7/29 下午 03:29, Krzysztof Kozlowski wrote:
> On 29/07/2024 08:15, hpchen0 wrote:
>> Add dt-bindings for USB2 PHY found on the Nuvoton MA35 SoC.
>>
>> Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
> Please use proper name.
Okay, I will make the correction and use the correct name.
>> ---
>> .../bindings/phy/nuvoton,ma35-usb2-phy.yaml | 51 +++++++++++++++++++
>> 1 file changed, 51 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>> new file mode 100644
>> index 000000000000..415ea2c45975
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>> @@ -0,0 +1,51 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/phy/nuvoton,ma35-usb2-phy.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Nuvoton MA35 USB2 phy
>> +
>> +maintainers:
>> + - hpchen0 <hpchen0nvt@gmail.com>
> Same here
Okay, I will make the correction and use the correct name.
>> +
>> +properties:
>> + compatible:
>> + enum:
>> + - nuvoton,ma35-usb2-phy
> All other devices have name ma35d1. Is this a different SoC?
The SoC is the same as ma35d1. I will modify ma35 to ma35d1.
Originally, I intended to create a series of shared drivers.
>> +
>> + "#phy-cells":
>> + const: 0
>> +
>> + clocks:
>> + maxItems: 1
>> + description: USB PHY clock
> Drop description, it's obvious.
Okay, I will remove the description.
>> +
>> + clock-names:
>> + const: usbd_gate
> Drop clock-names, you do not bring any new information.
Okay, I will remove the clock-names.
>> +
>> + nuvoton,sys:
>> + $ref: /schemas/types.yaml#/definitions/phandle
>> + description:
>> + phandle of the system-management node.
> Describe what is it for.
Because this driver has some status bits located in the sys, it is
necessary to reference the sys link.
>> +
>> +required:
>> + - compatible
>> + - clocks
>> + - nuvoton,sys
>> + - "#phy-cells"
> Keep the same order as in properties.
Okay, I will correct this issue.
>> +
>> +additionalProperties: false
>> +
>> +examples:
>> + - |
>> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> Where do you use it?
This is not used and will be removed. Thanks for the reminder.
>> + #include <dt-bindings/clock/nuvoton,ma35d1-clk.h>
>> +
>> + usb_phy: usb-phy {
>> + compatible = "nuvoton,ma35-usb2-phy";
>> + clocks = <&clk USBD_GATE>;
>> + clock-names = "usbd_gate";
>> + nuvoton,sys = <&sys>;
>> + #phy-cells = <0>;
>> + };
> Best regards,
> Krzysztof
Best regards,
Hui-Ping Chen
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-29 7:29 ` Krzysztof Kozlowski
2024-07-30 7:44 ` Hui-Ping Chen
@ 2024-07-30 8:03 ` Hui-Ping Chen
1 sibling, 0 replies; 10+ messages in thread
From: Hui-Ping Chen @ 2024-07-30 8:03 UTC (permalink / raw)
To: Krzysztof Kozlowski, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
Dear Krzysztof,
Thank you for your reply.
On 2024/7/29 下午 03:29, Krzysztof Kozlowski wrote:
> On 29/07/2024 08:15, hpchen0 wrote:
>> Add dt-bindings for USB2 PHY found on the Nuvoton MA35 SoC.
>>
>> Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
> Please use proper name.
Okay, I will make the correction and use the correct name.
>> ---
>> .../bindings/phy/nuvoton,ma35-usb2-phy.yaml | 51 +++++++++++++++++++
>> 1 file changed, 51 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>> new file mode 100644
>> index 000000000000..415ea2c45975
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/phy/nuvoton,ma35-usb2-phy.yaml
>> @@ -0,0 +1,51 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/phy/nuvoton,ma35-usb2-phy.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Nuvoton MA35 USB2 phy
>> +
>> +maintainers:
>> + - hpchen0 <hpchen0nvt@gmail.com>
> Same here
Okay, I will make the correction and use the correct name.
>> +
>> +properties:
>> + compatible:
>> + enum:
>> + - nuvoton,ma35-usb2-phy
> All other devices have name ma35d1. Is this a different SoC?
The SoC is the same as ma35d1. I will modify ma35 to ma35d1.
Originally, I intended to create a series of shared drivers.
>> +
>> + "#phy-cells":
>> + const: 0
>> +
>> + clocks:
>> + maxItems: 1
>> + description: USB PHY clock
> Drop description, it's obvious.
Okay, I will remove the description.
>> +
>> + clock-names:
>> + const: usbd_gate
> Drop clock-names, you do not bring any new information.
Okay, I will remove the clock-names.
>> +
>> + nuvoton,sys:
>> + $ref: /schemas/types.yaml#/definitions/phandle
>> + description:
>> + phandle of the system-management node.
> Describe what is it for.
Because this driver has some status bits located in the sys, it is
necessary to reference the sys link.
>> +
>> +required:
>> + - compatible
>> + - clocks
>> + - nuvoton,sys
>> + - "#phy-cells"
> Keep the same order as in properties.
Okay, I will correct this issue.
>> +
>> +additionalProperties: false
>> +
>> +examples:
>> + - |
>> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> Where do you use it?
This is not used and will be removed. Thanks for the reminder.
>> + #include <dt-bindings/clock/nuvoton,ma35d1-clk.h>
>> +
>> + usb_phy: usb-phy {
>> + compatible = "nuvoton,ma35-usb2-phy";
>> + clocks = <&clk USBD_GATE>;
>> + clock-names = "usbd_gate";
>> + nuvoton,sys = <&sys>;
>> + #phy-cells = <0>;
>> + };
> Best regards,
> Krzysztof
Best regards,
Hui-Ping Chen
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY
2024-07-29 7:32 ` Krzysztof Kozlowski
@ 2024-07-30 8:05 ` Hui-Ping Chen
0 siblings, 0 replies; 10+ messages in thread
From: Hui-Ping Chen @ 2024-07-30 8:05 UTC (permalink / raw)
To: Krzysztof Kozlowski, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
Dear Krzysztof,
Thank you for your reply.
On 2024/7/29 下午 03:32, Krzysztof Kozlowski wrote:
> On 29/07/2024 08:15, hpchen0 wrote:
>> Nuvoton MA35 SoCs support DWC2 USB controller.
>> Add the driver to drive the USB 2.0 PHY transceivers.
>>
>> Signed-off-by: hpchen0 <hpchen0nvt@gmail.com>
>> +
>> + ret = clk_prepare_enable(p_phy->clk);
>> + if (ret < 0) {
>> + dev_err(p_phy->dev, "Failed to enable PHY clock: %d\n", ret);
>> + return ret;
>> + }
>> +
>> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
>> + if (val & PHY0SUSPEND) {
>> + /*
>> + * USB PHY0 is in operation mode already
>> + * make sure USB PHY 60 MHz UTMI Interface Clock ready
>> + */
>> + timeout = jiffies + msecs_to_jiffies(200);
>> + while (time_before(jiffies, timeout)) {
>> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
>> + if (val & PHY0DEVCKSTB)
>> + return 0;
>> + usleep_range(1000, 1500);
>> + }
> You want some readl_poll_timeout version here.
Okay. The readl_poll_timeout function will be used instead.
>> + }
>> +
>> + /*
>> + * reset USB PHY0.
>> + * wait until USB PHY0 60 MHz UTMI Interface Clock ready
>> + */
>> + regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, (PHY0POR | PHY0SUSPEND));
>> + timeout = jiffies + msecs_to_jiffies(200);
>> + while (time_before(jiffies, timeout)) {
>> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
>> + if (val & PHY0DEVCKSTB)
>> + break;
>> + usleep_range(1000, 1500);
>> + }
>> +
>> + /* make USB PHY0 enter operation mode */
>> + regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, PHY0SUSPEND);
>> +
>> + /* make sure USB PHY 60 MHz UTMI Interface Clock ready */
>> + timeout = jiffies + msecs_to_jiffies(200);
>> + while (time_before(jiffies, timeout)) {
>> + regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val);
>> + if (val & PHY0DEVCKSTB)
>> + return 0;
>> + usleep_range(1000, 1500);
>> + }
>> +
>> + dev_err(p_phy->dev, "Timed out waiting for PHY to power on\n");
>> + ret = -ETIMEDOUT;
>> +
>> + clk_disable_unprepare(p_phy->clk);
>> + return ret;
>> +}
>> +
>> +static int ma35_usb_phy_power_off(struct phy *phy)
>> +{
>> + struct ma35_usb_phy *p_phy = phy_get_drvdata(phy);
>> +
>> + clk_disable_unprepare(p_phy->clk);
>> + return 0;
>> +}
>> +
>> +static const struct phy_ops ma35_usb_phy_ops = {
>> + .power_on = ma35_usb_phy_power_on,
>> + .power_off = ma35_usb_phy_power_off,
>> + .owner = THIS_MODULE,
>> +};
>> +
>> +static int ma35_usb_phy_probe(struct platform_device *pdev)
>> +{
>> + struct phy_provider *provider;
>> + struct ma35_usb_phy *p_phy;
>> + const char *clkgate;
>> + struct phy *phy;
>> +
>> + p_phy = devm_kzalloc(&pdev->dev, sizeof(*p_phy), GFP_KERNEL);
>> + if (!p_phy)
>> + return -ENOMEM;
>> +
>> + p_phy->dev = &pdev->dev;
>> + platform_set_drvdata(pdev, p_phy);
>> +
>> + p_phy->sysreg = syscon_regmap_lookup_by_phandle(p_phy->dev->of_node, "nuvoton,sys");
>> + if (IS_ERR(p_phy->sysreg))
>> + return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->sysreg),
>> + "Failed to get SYS registers\n");
>> +
>> + /* enable clock */
>> + of_property_read_string(p_phy->dev->of_node, "clock-enable", &clkgate);
> There is no such property.
I'm sorry, I forgot to remove this part. I will remove it and correct it.
>> + p_phy->clk = devm_clk_get(p_phy->dev, clkgate);
> Don't mix styles of variables: you were using pdev->dev but now entirely
> different. Stick to pdev->dev.
Okay. I will consistently use pdev->dev|.|
Thank you for the reminder.
>> + if (IS_ERR(p_phy->clk))
>> + return dev_err_probe(&pdev->dev, PTR_ERR(p_phy->clk),
> And here again pdev->dev... Bring some consistency, not random coding style.
Okay. I will consistently use pdev->dev|.|
Thank you for the reminder.
>> + "Failed to get usb_phy clock\n");
>> +
>
> Best regards,
> Krzysztof
Best regards,
Hui-Ping Chen
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-30 7:44 ` Hui-Ping Chen
@ 2024-07-30 8:10 ` Krzysztof Kozlowski
2024-07-30 8:25 ` Hui-Ping Chen
0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2024-07-30 8:10 UTC (permalink / raw)
To: Hui-Ping Chen, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
On 30/07/2024 09:44, Hui-Ping Chen wrote:
>
>>> +
>>> + nuvoton,sys:
>>> + $ref: /schemas/types.yaml#/definitions/phandle
>>> + description:
>>> + phandle of the system-management node.
>> Describe what is it for.
>
> Because this driver has some status bits located in the sys, it is
> necessary to reference the sys link.
Describe it in the binding - what usb2 phy needs to do in sysmgmt node.
Best regards,
Krzysztof
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings
2024-07-30 8:10 ` Krzysztof Kozlowski
@ 2024-07-30 8:25 ` Hui-Ping Chen
0 siblings, 0 replies; 10+ messages in thread
From: Hui-Ping Chen @ 2024-07-30 8:25 UTC (permalink / raw)
To: Krzysztof Kozlowski, vkoul, kishon, robh, krzk+dt, conor+dt
Cc: linux-arm-kernel, linux-phy, devicetree, linux-kernel
Dear Krzysztof,
Thank you for your reply.
On 2024/7/30 下午 04:10, Krzysztof Kozlowski wrote:
> On 30/07/2024 09:44, Hui-Ping Chen wrote:
>>>> +
>>>> + nuvoton,sys:
>>>> + $ref: /schemas/types.yaml#/definitions/phandle
>>>> + description:
>>>> + phandle of the system-management node.
>>> Describe what is it for.
>> Because this driver has some status bits located in the sys, it is
>> necessary to reference the sys link.
> Describe it in the binding - what usb2 phy needs to do in sysmgmt node.
>
Okay. I will add this description to the binding.
>
> Best regards,
> Krzysztof
Best regards,
Hui-Ping Chen
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-07-30 8:32 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-29 6:15 [PATCH 0/2] Add support for nuvoton ma35 usb2 phy hpchen0
2024-07-29 6:15 ` [PATCH 1/2] dt-bindings: phy: nuvoton,ma35-usb2-phy: add new bindings hpchen0
2024-07-29 7:29 ` Krzysztof Kozlowski
2024-07-30 7:44 ` Hui-Ping Chen
2024-07-30 8:10 ` Krzysztof Kozlowski
2024-07-30 8:25 ` Hui-Ping Chen
2024-07-30 8:03 ` Hui-Ping Chen
2024-07-29 6:15 ` [PATCH 2/2] phy: nuvoton: add new driver for the Nuvoton MA35 SoC USB 2.0 PHY hpchen0
2024-07-29 7:32 ` Krzysztof Kozlowski
2024-07-30 8:05 ` Hui-Ping Chen
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).