* [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function
@ 2025-04-10 7:04 Minda Chen
2025-04-15 9:14 ` Paolo Abeni
2025-04-15 12:08 ` Andrew Lunn
0 siblings, 2 replies; 5+ messages in thread
From: Minda Chen @ 2025-04-10 7:04 UTC (permalink / raw)
To: Emil Renner Berthing, Andrew Lunn, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
netdev
Cc: linux-kernel, linux-stm32, Minda Chen
To support SGMII interface, add internal serdes PHY powerup/
powerdown function.
Signed-off-by: Minda Chen <minda.chen@starfivetech.com>
---
.../ethernet/stmicro/stmmac/dwmac-starfive.c | 33 +++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
index 2013d7477eb7..f5923f847100 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
@@ -9,6 +9,8 @@
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
+#include <linux/phy.h>
+#include <linux/phy/phy.h>
#include <linux/property.h>
#include <linux/mfd/syscon.h>
#include <linux/regmap.h>
@@ -28,6 +30,7 @@ struct starfive_dwmac_data {
struct starfive_dwmac {
struct device *dev;
const struct starfive_dwmac_data *data;
+ struct phy *serdes_phy;
};
static int starfive_dwmac_set_mode(struct plat_stmmacenet_data *plat_dat)
@@ -80,6 +83,26 @@ static int starfive_dwmac_set_mode(struct plat_stmmacenet_data *plat_dat)
return 0;
}
+static int starfive_dwmac_serdes_powerup(struct net_device *ndev, void *priv)
+{
+ struct starfive_dwmac *dwmac = priv;
+ int ret;
+
+ ret = phy_init(dwmac->serdes_phy);
+ if (ret)
+ return ret;
+
+ return phy_power_on(dwmac->serdes_phy);
+}
+
+static void starfive_dwmac_serdes_powerdown(struct net_device *ndev, void *priv)
+{
+ struct starfive_dwmac *dwmac = priv;
+
+ phy_power_off(dwmac->serdes_phy);
+ phy_exit(dwmac->serdes_phy);
+}
+
static int starfive_dwmac_probe(struct platform_device *pdev)
{
struct plat_stmmacenet_data *plat_dat;
@@ -102,6 +125,11 @@ static int starfive_dwmac_probe(struct platform_device *pdev)
if (!dwmac)
return -ENOMEM;
+ dwmac->serdes_phy = devm_phy_optional_get(&pdev->dev, NULL);
+ if (IS_ERR(dwmac->serdes_phy))
+ return dev_err_probe(&pdev->dev, PTR_ERR(dwmac->serdes_phy),
+ "Failed to get serdes phy\n");
+
dwmac->data = device_get_match_data(&pdev->dev);
plat_dat->clk_tx_i = devm_clk_get_enabled(&pdev->dev, "tx");
@@ -132,6 +160,11 @@ static int starfive_dwmac_probe(struct platform_device *pdev)
if (err)
return err;
+ if (dwmac->serdes_phy) {
+ plat_dat->serdes_powerup = starfive_dwmac_serdes_powerup;
+ plat_dat->serdes_powerdown = starfive_dwmac_serdes_powerdown;
+ }
+
return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
}
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function
2025-04-10 7:04 [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function Minda Chen
@ 2025-04-15 9:14 ` Paolo Abeni
2025-04-16 3:13 ` Minda Chen
2025-04-15 12:08 ` Andrew Lunn
1 sibling, 1 reply; 5+ messages in thread
From: Paolo Abeni @ 2025-04-15 9:14 UTC (permalink / raw)
To: Minda Chen, Emil Renner Berthing, Andrew Lunn, David S . Miller,
Eric Dumazet, Jakub Kicinski, Maxime Coquelin, Alexandre Torgue,
netdev
Cc: linux-kernel, linux-stm32
On 4/10/25 9:04 AM, Minda Chen wrote:
> To support SGMII interface, add internal serdes PHY powerup/
> powerdown function.
>
> Signed-off-by: Minda Chen <minda.chen@starfivetech.com>
> ---
> .../ethernet/stmicro/stmmac/dwmac-starfive.c | 33 +++++++++++++++++++
> 1 file changed, 33 insertions(+)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> index 2013d7477eb7..f5923f847100 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> @@ -9,6 +9,8 @@
>
> #include <linux/mod_devicetable.h>
> #include <linux/platform_device.h>
> +#include <linux/phy.h>
> +#include <linux/phy/phy.h>
> #include <linux/property.h>
> #include <linux/mfd/syscon.h>
> #include <linux/regmap.h>
> @@ -28,6 +30,7 @@ struct starfive_dwmac_data {
> struct starfive_dwmac {
> struct device *dev;
> const struct starfive_dwmac_data *data;
> + struct phy *serdes_phy;
> };
>
> static int starfive_dwmac_set_mode(struct plat_stmmacenet_data *plat_dat)
> @@ -80,6 +83,26 @@ static int starfive_dwmac_set_mode(struct plat_stmmacenet_data *plat_dat)
> return 0;
> }
>
> +static int starfive_dwmac_serdes_powerup(struct net_device *ndev, void *priv)
> +{
> + struct starfive_dwmac *dwmac = priv;
> + int ret;
> +
> + ret = phy_init(dwmac->serdes_phy);
> + if (ret)
> + return ret;
This is called also in case of PM suspend/resume. Do you need to keep
the init here, or should that moved at probe time only? Similar question
for phy_exit() below.
Thanks!
Paolo
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function
2025-04-10 7:04 [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function Minda Chen
2025-04-15 9:14 ` Paolo Abeni
@ 2025-04-15 12:08 ` Andrew Lunn
2025-04-16 3:14 ` Minda Chen
1 sibling, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2025-04-15 12:08 UTC (permalink / raw)
To: Minda Chen
Cc: Emil Renner Berthing, Andrew Lunn, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
netdev, linux-kernel, linux-stm32, Russell King
> +static int starfive_dwmac_serdes_powerup(struct net_device *ndev, void *priv)
> +{
> + struct starfive_dwmac *dwmac = priv;
> + int ret;
> +
> + ret = phy_init(dwmac->serdes_phy);
> + if (ret)
> + return ret;
> +
> + return phy_power_on(dwmac->serdes_phy);
> +}
static int qcom_ethqos_serdes_powerup(struct net_device *ndev, void *priv)
{
struct qcom_ethqos *ethqos = priv;
int ret;
ret = phy_init(ethqos->serdes_phy);
if (ret)
return ret;
ret = phy_power_on(ethqos->serdes_phy);
if (ret)
return ret;
return phy_set_speed(ethqos->serdes_phy, ethqos->speed);
}
Similar?
> +static void starfive_dwmac_serdes_powerdown(struct net_device *ndev, void *priv)
> +{
> + struct starfive_dwmac *dwmac = priv;
> +
> + phy_power_off(dwmac->serdes_phy);
> + phy_exit(dwmac->serdes_phy);
> +}
static void qcom_ethqos_serdes_powerdown(struct net_device *ndev, void *priv)
{
struct qcom_ethqos *ethqos = priv;
phy_power_off(ethqos->serdes_phy);
phy_exit(ethqos->serdes_phy);
}
Pretty much cut & paste.
> static int starfive_dwmac_probe(struct platform_device *pdev)
> {
> struct plat_stmmacenet_data *plat_dat;
> @@ -102,6 +125,11 @@ static int starfive_dwmac_probe(struct platform_device *pdev)
> if (!dwmac)
> return -ENOMEM;
>
> + dwmac->serdes_phy = devm_phy_optional_get(&pdev->dev, NULL);
> + if (IS_ERR(dwmac->serdes_phy))
> + return dev_err_probe(&pdev->dev, PTR_ERR(dwmac->serdes_phy),
> + "Failed to get serdes phy\n");
> +
ethqos->serdes_phy = devm_phy_optional_get(dev, "serdes");
if (IS_ERR(ethqos->serdes_phy))
return dev_err_probe(dev, PTR_ERR(ethqos->serdes_phy),
"Failed to get serdes phy\n");
> dwmac->data = device_get_match_data(&pdev->dev);
>
> plat_dat->clk_tx_i = devm_clk_get_enabled(&pdev->dev, "tx");
> @@ -132,6 +160,11 @@ static int starfive_dwmac_probe(struct platform_device *pdev)
> if (err)
> return err;
>
> + if (dwmac->serdes_phy) {
> + plat_dat->serdes_powerup = starfive_dwmac_serdes_powerup;
> + plat_dat->serdes_powerdown = starfive_dwmac_serdes_powerdown;
> + }
> +
if (ethqos->serdes_phy) {
plat_dat->serdes_powerup = qcom_ethqos_serdes_powerup;
plat_dat->serdes_powerdown = qcom_ethqos_serdes_powerdown;
}
I assume you have seen all the work Russell King has been doing
recently cleaning up all the copy/paste code between various glue
drivers. Please don't add to that mess. Please consider how you can
refactor the ethqos code to make is generic for any stmmac driver
which has a generic phy.
Andrew
---
pw-bot: cr
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function
2025-04-15 9:14 ` Paolo Abeni
@ 2025-04-16 3:13 ` Minda Chen
0 siblings, 0 replies; 5+ messages in thread
From: Minda Chen @ 2025-04-16 3:13 UTC (permalink / raw)
To: Paolo Abeni, Emil Renner Berthing, Andrew Lunn, David S . Miller,
Eric Dumazet, Jakub Kicinski, Maxime Coquelin, Alexandre Torgue,
netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com
>
> On 4/10/25 9:04 AM, Minda Chen wrote:
> > To support SGMII interface, add internal serdes PHY powerup/ powerdown
> > function.
> >
> > Signed-off-by: Minda Chen <minda.chen@starfivetech.com>
> > ---
> > .../ethernet/stmicro/stmmac/dwmac-starfive.c | 33
> > +++++++++++++++++++
> > 1 file changed, 33 insertions(+)
> >
> > diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> > b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> > index 2013d7477eb7..f5923f847100 100644
> > --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> > +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
> > @@ -9,6 +9,8 @@
> >
> > #include <linux/mod_devicetable.h>
> > #include <linux/platform_device.h>
> > +#include <linux/phy.h>
> > +#include <linux/phy/phy.h>
> > #include <linux/property.h>
> > #include <linux/mfd/syscon.h>
> > #include <linux/regmap.h>
> > @@ -28,6 +30,7 @@ struct starfive_dwmac_data { struct starfive_dwmac
> > {
> > struct device *dev;
> > const struct starfive_dwmac_data *data;
> > + struct phy *serdes_phy;
> > };
> >
> > static int starfive_dwmac_set_mode(struct plat_stmmacenet_data
> > *plat_dat) @@ -80,6 +83,26 @@ static int starfive_dwmac_set_mode(struct
> plat_stmmacenet_data *plat_dat)
> > return 0;
> > }
> >
> > +static int starfive_dwmac_serdes_powerup(struct net_device *ndev,
> > +void *priv) {
> > + struct starfive_dwmac *dwmac = priv;
> > + int ret;
> > +
> > + ret = phy_init(dwmac->serdes_phy);
> > + if (ret)
> > + return ret;
>
> This is called also in case of PM suspend/resume. Do you need to keep the init
> here, or should that moved at probe time only? Similar question for phy_exit()
> below.
>
> Thanks!
>
> Paolo
Yes ,The serdes PHY code is simple. But I am not test with PHY code
I will send next version with PHY code.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function
2025-04-15 12:08 ` Andrew Lunn
@ 2025-04-16 3:14 ` Minda Chen
0 siblings, 0 replies; 5+ messages in thread
From: Minda Chen @ 2025-04-16 3:14 UTC (permalink / raw)
To: Andrew Lunn
Cc: Emil Renner Berthing, Andrew Lunn, David S . Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com, Russell King
>
> > +static int starfive_dwmac_serdes_powerup(struct net_device *ndev,
> > +void *priv) {
> > + struct starfive_dwmac *dwmac = priv;
> > + int ret;
> > +
> > + ret = phy_init(dwmac->serdes_phy);
> > + if (ret)
> > + return ret;
> > +
> > + return phy_power_on(dwmac->serdes_phy); }
>
> static int qcom_ethqos_serdes_powerup(struct net_device *ndev, void *priv) {
> struct qcom_ethqos *ethqos = priv;
> int ret;
>
> ret = phy_init(ethqos->serdes_phy);
> if (ret)
> return ret;
>
> ret = phy_power_on(ethqos->serdes_phy);
> if (ret)
> return ret;
>
> return phy_set_speed(ethqos->serdes_phy, ethqos->speed); }
>
> Similar?
>
> > +static void starfive_dwmac_serdes_powerdown(struct net_device *ndev,
> > +void *priv) {
> > + struct starfive_dwmac *dwmac = priv;
> > +
> > + phy_power_off(dwmac->serdes_phy);
> > + phy_exit(dwmac->serdes_phy);
> > +}
>
> static void qcom_ethqos_serdes_powerdown(struct net_device *ndev, void
> *priv) {
> struct qcom_ethqos *ethqos = priv;
>
> phy_power_off(ethqos->serdes_phy);
> phy_exit(ethqos->serdes_phy);
> }
>
> Pretty much cut & paste.
>
> > static int starfive_dwmac_probe(struct platform_device *pdev) {
> > struct plat_stmmacenet_data *plat_dat; @@ -102,6 +125,11 @@ static
> > int starfive_dwmac_probe(struct platform_device *pdev)
> > if (!dwmac)
> > return -ENOMEM;
> >
> > + dwmac->serdes_phy = devm_phy_optional_get(&pdev->dev, NULL);
> > + if (IS_ERR(dwmac->serdes_phy))
> > + return dev_err_probe(&pdev->dev, PTR_ERR(dwmac->serdes_phy),
> > + "Failed to get serdes phy\n");
> > +
>
> ethqos->serdes_phy = devm_phy_optional_get(dev, "serdes");
> if (IS_ERR(ethqos->serdes_phy))
> return dev_err_probe(dev, PTR_ERR(ethqos->serdes_phy),
> "Failed to get serdes phy\n");
>
>
> > dwmac->data = device_get_match_data(&pdev->dev);
> >
> > plat_dat->clk_tx_i = devm_clk_get_enabled(&pdev->dev, "tx"); @@
> > -132,6 +160,11 @@ static int starfive_dwmac_probe(struct platform_device
> *pdev)
> > if (err)
> > return err;
> >
> > + if (dwmac->serdes_phy) {
> > + plat_dat->serdes_powerup = starfive_dwmac_serdes_powerup;
> > + plat_dat->serdes_powerdown =
> starfive_dwmac_serdes_powerdown;
> > + }
> > +
>
> if (ethqos->serdes_phy) {
> plat_dat->serdes_powerup =
> qcom_ethqos_serdes_powerup;
> plat_dat->serdes_powerdown =
> qcom_ethqos_serdes_powerdown;
> }
>
>
> I assume you have seen all the work Russell King has been doing recently
> cleaning up all the copy/paste code between various glue drivers. Please don't
> add to that mess. Please consider how you can refactor the ethqos code to
> make is generic for any stmmac driver which has a generic phy.
>
> Andrew
>
> ---
> pw-bot: cr
OK. I will move it to generic. And I will send the serdes PHY code in next version.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-04-16 3:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-10 7:04 [net-next v1] net: stmmac: starfive: Add serdes PHY init/deinit function Minda Chen
2025-04-15 9:14 ` Paolo Abeni
2025-04-16 3:13 ` Minda Chen
2025-04-15 12:08 ` Andrew Lunn
2025-04-16 3:14 ` Minda Chen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox