* [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting
@ 2025-02-27 9:16 Russell King (Oracle)
2025-02-27 9:17 ` [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook Russell King (Oracle)
2025-02-28 18:30 ` [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting patchwork-bot+netdevbpf
0 siblings, 2 replies; 8+ messages in thread
From: Russell King (Oracle) @ 2025-02-27 9:16 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Drew Fustini,
Emil Renner Berthing, Eric Dumazet, Fabio Estevam, Fu Wei,
Guo Ren, imx, Jakub Kicinski, Jan Petrous, Jerome Brunet,
Kevin Hilman, linux-amlogic, linux-arm-kernel, linux-riscv,
linux-stm32, Martin Blumenstingl, Maxime Coquelin, Minda Chen,
Neil Armstrong, netdev, Paolo Abeni, Pengutronix Kernel Team,
Sascha Hauer, Shawn Guo
Hi,
A lot of stmmac platform code which sets the transmit clock is very
similar - they decode the speed to the clock rate (125, 25 or 2.5 MHz)
and then set a clock to that rate.
The DWMAC core appears to have a clock input for the transmit section
called clk_tx_i which requires this rate.
This series moves the code which sets this clock into the core stmmac
code.
Patch 1 adds a hook that platforms can use to configure the clock rate.
Patch 2 adds a generic implementation.
The remainder of the patches convert the glue code for various platforms
to use this new infrastructure.
Changes since RFC: fix build errors, add Thierry Reding's r-b. More
platform glue conversions.
.../ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c | 10 +----
drivers/net/ethernet/stmicro/stmmac/dwmac-imx.c | 21 ++++++++++-
.../net/ethernet/stmicro/stmmac/dwmac-intel-plat.c | 24 ++----------
.../net/ethernet/stmicro/stmmac/dwmac-ipq806x.c | 9 +++--
drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 +++--
drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c | 10 +++--
drivers/net/ethernet/stmicro/stmmac/dwmac-s32.c | 22 ++---------
.../net/ethernet/stmicro/stmmac/dwmac-starfive.c | 26 ++-----------
drivers/net/ethernet/stmicro/stmmac/dwmac-thead.c | 18 +++++----
drivers/net/ethernet/stmicro/stmmac/stmmac.h | 2 +
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 43 ++++++++++++++++++++++
include/linux/stmmac.h | 4 ++
12 files changed, 108 insertions(+), 90 deletions(-)
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 9:16 [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting Russell King (Oracle)
@ 2025-02-27 9:17 ` Russell King (Oracle)
2025-02-27 14:03 ` Andrew Lunn
2025-02-27 14:18 ` Neil Armstrong
2025-02-28 18:30 ` [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting patchwork-bot+netdevbpf
1 sibling, 2 replies; 8+ messages in thread
From: Russell King (Oracle) @ 2025-02-27 9:17 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Jerome Brunet, Kevin Hilman, linux-amlogic,
linux-arm-kernel, linux-stm32, Martin Blumenstingl,
Maxime Coquelin, Neil Armstrong, netdev, Paolo Abeni
Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
manage the transmit clock.
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
---
drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
index b115b7873cef..07c504d07604 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
@@ -22,9 +22,10 @@ struct meson_dwmac {
void __iomem *reg;
};
-static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
+static int meson6_dwmac_set_clk_tx_rate(void *bsp_priv, struct clk *clk_tx_i,
+ phy_interface_t interface, int speed)
{
- struct meson_dwmac *dwmac = priv;
+ struct meson_dwmac *dwmac = bsp_priv;
unsigned int val;
val = readl(dwmac->reg);
@@ -39,6 +40,8 @@ static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
}
writel(val, dwmac->reg);
+
+ return 0;
}
static int meson6_dwmac_probe(struct platform_device *pdev)
@@ -65,7 +68,7 @@ static int meson6_dwmac_probe(struct platform_device *pdev)
return PTR_ERR(dwmac->reg);
plat_dat->bsp_priv = dwmac;
- plat_dat->fix_mac_speed = meson6_dwmac_fix_mac_speed;
+ plat_dat->set_clk_tx_rate = meson6_dwmac_set_clk_tx_rate;
return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
}
--
2.30.2
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 9:17 ` [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook Russell King (Oracle)
@ 2025-02-27 14:03 ` Andrew Lunn
2025-02-27 14:18 ` Neil Armstrong
1 sibling, 0 replies; 8+ messages in thread
From: Andrew Lunn @ 2025-02-27 14:03 UTC (permalink / raw)
To: Russell King (Oracle)
Cc: Heiner Kallweit, Alexandre Torgue, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Jerome Brunet, Kevin Hilman,
linux-amlogic, linux-arm-kernel, linux-stm32, Martin Blumenstingl,
Maxime Coquelin, Neil Armstrong, netdev, Paolo Abeni
On Thu, Feb 27, 2025 at 09:17:09AM +0000, Russell King (Oracle) wrote:
> Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
> manage the transmit clock.
>
> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 9:17 ` [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook Russell King (Oracle)
2025-02-27 14:03 ` Andrew Lunn
@ 2025-02-27 14:18 ` Neil Armstrong
2025-02-27 14:35 ` Russell King (Oracle)
1 sibling, 1 reply; 8+ messages in thread
From: Neil Armstrong @ 2025-02-27 14:18 UTC (permalink / raw)
To: Russell King (Oracle), Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Jerome Brunet, Kevin Hilman, linux-amlogic,
linux-arm-kernel, linux-stm32, Martin Blumenstingl,
Maxime Coquelin, netdev, Paolo Abeni
Hi,
On 27/02/2025 10:17, Russell King (Oracle) wrote:
> Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
> manage the transmit clock.
>
> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
> ---
> drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> index b115b7873cef..07c504d07604 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> @@ -22,9 +22,10 @@ struct meson_dwmac {
> void __iomem *reg;
> };
>
> -static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
> +static int meson6_dwmac_set_clk_tx_rate(void *bsp_priv, struct clk *clk_tx_i,
> + phy_interface_t interface, int speed)
You can keep priv as first argument name and remove the next changes
Neil
> {
> - struct meson_dwmac *dwmac = priv;
> + struct meson_dwmac *dwmac = bsp_priv;
> unsigned int val;
>
> val = readl(dwmac->reg);
> @@ -39,6 +40,8 @@ static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
> }
>
> writel(val, dwmac->reg);
> +
> + return 0;
> }
>
> static int meson6_dwmac_probe(struct platform_device *pdev)
> @@ -65,7 +68,7 @@ static int meson6_dwmac_probe(struct platform_device *pdev)
> return PTR_ERR(dwmac->reg);
>
> plat_dat->bsp_priv = dwmac;
> - plat_dat->fix_mac_speed = meson6_dwmac_fix_mac_speed;
> + plat_dat->set_clk_tx_rate = meson6_dwmac_set_clk_tx_rate;
>
> return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
> }
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 14:18 ` Neil Armstrong
@ 2025-02-27 14:35 ` Russell King (Oracle)
2025-02-27 14:38 ` Neil Armstrong
0 siblings, 1 reply; 8+ messages in thread
From: Russell King (Oracle) @ 2025-02-27 14:35 UTC (permalink / raw)
To: Neil Armstrong
Cc: Andrew Lunn, Heiner Kallweit, Alexandre Torgue, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Jerome Brunet,
Kevin Hilman, linux-amlogic, linux-arm-kernel, linux-stm32,
Martin Blumenstingl, Maxime Coquelin, netdev, Paolo Abeni
On Thu, Feb 27, 2025 at 03:18:22PM +0100, Neil Armstrong wrote:
> Hi,
>
> On 27/02/2025 10:17, Russell King (Oracle) wrote:
> > Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
> > manage the transmit clock.
> >
> > Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
> > ---
> > drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > index b115b7873cef..07c504d07604 100644
> > --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > @@ -22,9 +22,10 @@ struct meson_dwmac {
> > void __iomem *reg;
> > };
> > -static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
> > +static int meson6_dwmac_set_clk_tx_rate(void *bsp_priv, struct clk *clk_tx_i,
> > + phy_interface_t interface, int speed)
>
> You can keep priv as first argument name and remove the next changes
I *can* but I don't want to. Inside the bulk of the stmmac driver,
"priv" is used with struct stmmac_priv. "plat_dat" is used with
struct plat_stmmacenet_data.
Having different parts of the driver use the same local variable
name for different structures is confusing, and has already lead to
errors. Consistency is key. This is called "bsp_priv" in
struct plat_stmmacenet_data, and therefore it should be referred to
as "bsp_priv".
I am not yet going to be doing a big rename, but it *will* come in
time.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 14:35 ` Russell King (Oracle)
@ 2025-02-27 14:38 ` Neil Armstrong
2025-02-27 14:56 ` Russell King (Oracle)
0 siblings, 1 reply; 8+ messages in thread
From: Neil Armstrong @ 2025-02-27 14:38 UTC (permalink / raw)
To: Russell King (Oracle)
Cc: Andrew Lunn, Heiner Kallweit, Alexandre Torgue, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Jerome Brunet,
Kevin Hilman, linux-amlogic, linux-arm-kernel, linux-stm32,
Martin Blumenstingl, Maxime Coquelin, netdev, Paolo Abeni
On 27/02/2025 15:35, Russell King (Oracle) wrote:
> On Thu, Feb 27, 2025 at 03:18:22PM +0100, Neil Armstrong wrote:
>> Hi,
>>
>> On 27/02/2025 10:17, Russell King (Oracle) wrote:
>>> Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
>>> manage the transmit clock.
>>>
>>> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
>>> ---
>>> drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 ++++++---
>>> 1 file changed, 6 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
>>> index b115b7873cef..07c504d07604 100644
>>> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
>>> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
>>> @@ -22,9 +22,10 @@ struct meson_dwmac {
>>> void __iomem *reg;
>>> };
>>> -static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
>>> +static int meson6_dwmac_set_clk_tx_rate(void *bsp_priv, struct clk *clk_tx_i,
>>> + phy_interface_t interface, int speed)
>>
>> You can keep priv as first argument name and remove the next changes
>
> I *can* but I don't want to. Inside the bulk of the stmmac driver,
> "priv" is used with struct stmmac_priv. "plat_dat" is used with
> struct plat_stmmacenet_data.
Right, it's still an unrelated change in this case.
>
> Having different parts of the driver use the same local variable
> name for different structures is confusing, and has already lead to
> errors. Consistency is key. This is called "bsp_priv" in
> struct plat_stmmacenet_data, and therefore it should be referred to
> as "bsp_priv".
>
> I am not yet going to be doing a big rename, but it *will* come in
> time.
>
Doing it in a big rename patch would be much better indeed.
Neil
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
2025-02-27 14:38 ` Neil Armstrong
@ 2025-02-27 14:56 ` Russell King (Oracle)
0 siblings, 0 replies; 8+ messages in thread
From: Russell King (Oracle) @ 2025-02-27 14:56 UTC (permalink / raw)
To: Neil Armstrong
Cc: Andrew Lunn, Heiner Kallweit, Alexandre Torgue, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Jerome Brunet,
Kevin Hilman, linux-amlogic, linux-arm-kernel, linux-stm32,
Martin Blumenstingl, Maxime Coquelin, netdev, Paolo Abeni
On Thu, Feb 27, 2025 at 03:38:53PM +0100, Neil Armstrong wrote:
> On 27/02/2025 15:35, Russell King (Oracle) wrote:
> > On Thu, Feb 27, 2025 at 03:18:22PM +0100, Neil Armstrong wrote:
> > > Hi,
> > >
> > > On 27/02/2025 10:17, Russell King (Oracle) wrote:
> > > > Switch from using the fix_mac_speed() hook to set_clk_tx_rate() to
> > > > manage the transmit clock.
> > > >
> > > > Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
> > > > ---
> > > > drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c | 9 ++++++---
> > > > 1 file changed, 6 insertions(+), 3 deletions(-)
> > > >
> > > > diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > > > index b115b7873cef..07c504d07604 100644
> > > > --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > > > +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-meson.c
> > > > @@ -22,9 +22,10 @@ struct meson_dwmac {
> > > > void __iomem *reg;
> > > > };
> > > > -static void meson6_dwmac_fix_mac_speed(void *priv, int speed, unsigned int mode)
> > > > +static int meson6_dwmac_set_clk_tx_rate(void *bsp_priv, struct clk *clk_tx_i,
> > > > + phy_interface_t interface, int speed)
> > >
> > > You can keep priv as first argument name and remove the next changes
> >
> > I *can* but I don't want to. Inside the bulk of the stmmac driver,
> > "priv" is used with struct stmmac_priv. "plat_dat" is used with
> > struct plat_stmmacenet_data.
>
> Right, it's still an unrelated change in this case.
This is a new method, even though it happens to have mostly the same
body. All instances of this new method use "bsp_priv" for this argument,
therefore it is consistent.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting
2025-02-27 9:16 [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting Russell King (Oracle)
2025-02-27 9:17 ` [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook Russell King (Oracle)
@ 2025-02-28 18:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 8+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-02-28 18:30 UTC (permalink / raw)
To: Russell King
Cc: andrew, hkallweit1, alexandre.torgue, andrew+netdev, davem, drew,
kernel, edumazet, festevam, wefu, guoren, imx, kuba, jan.petrous,
jbrunet, khilman, linux-amlogic, linux-arm-kernel, linux-riscv,
linux-stm32, martin.blumenstingl, mcoquelin.stm32, minda.chen,
neil.armstrong, netdev, pabeni, kernel, s.hauer, shawnguo
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 27 Feb 2025 09:16:15 +0000 you wrote:
> Hi,
>
> A lot of stmmac platform code which sets the transmit clock is very
> similar - they decode the speed to the clock rate (125, 25 or 2.5 MHz)
> and then set a clock to that rate.
>
> The DWMAC core appears to have a clock input for the transmit section
> called clk_tx_i which requires this rate.
>
> [...]
Here is the summary with links:
- [net-next,01/11] net: stmmac: provide set_clk_tx_rate() hook
https://git.kernel.org/netdev/net-next/c/dea5c8ec20be
- [net-next,02/11] net: stmmac: provide generic implementation for set_clk_tx_rate method
https://git.kernel.org/netdev/net-next/c/12bce6d5404e
- [net-next,03/11] net: stmmac: dwc-qos: use generic stmmac_set_clk_tx_rate()
https://git.kernel.org/netdev/net-next/c/17c24f6dc641
- [net-next,04/11] net: stmmac: starfive: use generic stmmac_set_clk_tx_rate()
https://git.kernel.org/netdev/net-next/c/c81eb3da0be8
- [net-next,05/11] net: stmmac: s32: use generic stmmac_set_clk_tx_rate()
https://git.kernel.org/netdev/net-next/c/36fa8c960720
- [net-next,06/11] net: stmmac: intel: use generic stmmac_set_clk_tx_rate()
https://git.kernel.org/netdev/net-next/c/61356fb1b0d6
- [net-next,07/11] net: stmmac: imx: use generic stmmac_set_clk_tx_rate()
https://git.kernel.org/netdev/net-next/c/b693ce4f2704
- [net-next,08/11] net: stmmac: rk: switch to use set_clk_tx_rate() hook
https://git.kernel.org/netdev/net-next/c/c8caf6100f6d
- [net-next,09/11] net: stmmac: ipq806x: switch to use set_clk_tx_rate() hook
https://git.kernel.org/netdev/net-next/c/ca723519c28b
- [net-next,10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook
https://git.kernel.org/netdev/net-next/c/2a7d55f901a5
- [net-next,11/11] net: stmmac: thead: switch to use set_clk_tx_rate() hook
https://git.kernel.org/netdev/net-next/c/945db208fbe7
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-02-28 18:49 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-27 9:16 [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting Russell King (Oracle)
2025-02-27 9:17 ` [PATCH net-next 10/11] net: stmmac: meson: switch to use set_clk_tx_rate() hook Russell King (Oracle)
2025-02-27 14:03 ` Andrew Lunn
2025-02-27 14:18 ` Neil Armstrong
2025-02-27 14:35 ` Russell King (Oracle)
2025-02-27 14:38 ` Neil Armstrong
2025-02-27 14:56 ` Russell King (Oracle)
2025-02-28 18:30 ` [PATCH net-next 00/11] net: stmmac: cleanup transmit clock setting patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox