* [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements
@ 2025-10-29 8:06 Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
` (3 more replies)
0 siblings, 4 replies; 16+ messages in thread
From: Rohan G Thomas via B4 Relay @ 2025-10-29 8:06 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Rohan G Thomas
This patch series adds support for the Agilex5 EMAC platform to the
dwmac-socfpga driver.
The series includes:
- Platform configuration for Agilex5 EMAC
- Enabling Time-Based Scheduling (TBS) for Tx queues 6 and 7
- Enabling TCP Segmentation Offload(TSO)
- Adding hardware-supported cross timestamping using the SMTG IP,
allowing precise synchronization between MAC and system time via
PTP_SYS_OFFSET_PRECISE.
Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
---
Rohan G Thomas (4):
net: stmmac: socfpga: Agilex5 EMAC platform configuration
net: stmmac: socfpga: Enable TBS support for Agilex5
net: stmmac: socfpga: Enable TSO for Agilex5 platform
net: stmmac: socfpga: Add hardware supported cross-timestamp
.../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 194 +++++++++++++++++++--
drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h | 5 +
2 files changed, 189 insertions(+), 10 deletions(-)
---
base-commit: a8abe8e210c175b1d5a7e53df069e107b65c13cb
change-id: 20251029-agilex5_ext-c17bd779cdef
Best regards,
--
Rohan G Thomas <rohan.g.thomas@altera.com>
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 8:06 [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements Rohan G Thomas via B4 Relay
@ 2025-10-29 8:06 ` Rohan G Thomas via B4 Relay
2025-10-29 13:34 ` Maxime Chevallier
` (2 more replies)
2025-10-29 8:06 ` [PATCH net-next 2/4] net: stmmac: socfpga: Enable TBS support for Agilex5 Rohan G Thomas via B4 Relay
` (2 subsequent siblings)
3 siblings, 3 replies; 16+ messages in thread
From: Rohan G Thomas via B4 Relay @ 2025-10-29 8:06 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Rohan G Thomas
From: Rohan G Thomas <rohan.g.thomas@altera.com>
Agilex5 HPS EMAC uses the dwxgmac-3.10a IP, unlike previous socfpga
platforms which use dwmac1000 IP. Due to differences in platform
configuration, Agilex5 requires a distinct setup.
Introduce a setup_plat_dat() callback in socfpga_dwmac_ops to handle
platform-specific setup. This callback is invoked before
stmmac_dvr_probe() to ensure the platform data is correctly
configured. Also, implemented separate setup_plat_dat() callback for
current socfpga platforms and Agilex5.
Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
---
.../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 53 ++++++++++++++++++----
1 file changed, 43 insertions(+), 10 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index 2ff5db6d41ca08a1652d57f3eb73923b9a9558bf..3dae4f3c103802ed1c2cd390634bd5473192d4ee 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -44,6 +44,7 @@
struct socfpga_dwmac;
struct socfpga_dwmac_ops {
int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
+ void (*setup_plat_dat)(struct socfpga_dwmac *dwmac_priv);
};
struct socfpga_dwmac {
@@ -441,6 +442,39 @@ static int socfpga_dwmac_init(struct platform_device *pdev, void *bsp_priv)
return dwmac->ops->set_phy_mode(dwmac);
}
+static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
+{
+ struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
+
+ plat_dat->bsp_priv = dwmac;
+ plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
+ plat_dat->init = socfpga_dwmac_init;
+ plat_dat->pcs_init = socfpga_dwmac_pcs_init;
+ plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
+ plat_dat->select_pcs = socfpga_dwmac_select_pcs;
+}
+
+static void socfpga_gen5_setup_plat_dat(struct socfpga_dwmac *dwmac)
+{
+ struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
+
+ socfpga_common_plat_dat(dwmac);
+
+ plat_dat->core_type = DWMAC_CORE_GMAC;
+
+ /* Rx watchdog timer in dwmac is buggy in this hw */
+ plat_dat->riwt_off = 1;
+}
+
+static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
+{
+ struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
+
+ socfpga_common_plat_dat(dwmac);
+
+ plat_dat->core_type = DWMAC_CORE_XGMAC;
+}
+
static int socfpga_dwmac_probe(struct platform_device *pdev)
{
struct plat_stmmacenet_data *plat_dat;
@@ -491,31 +525,30 @@ static int socfpga_dwmac_probe(struct platform_device *pdev)
dwmac->ops = ops;
dwmac->plat_dat = plat_dat;
- plat_dat->bsp_priv = dwmac;
- plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
- plat_dat->init = socfpga_dwmac_init;
- plat_dat->pcs_init = socfpga_dwmac_pcs_init;
- plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
- plat_dat->select_pcs = socfpga_dwmac_select_pcs;
- plat_dat->core_type = DWMAC_CORE_GMAC;
-
- plat_dat->riwt_off = 1;
+ ops->setup_plat_dat(dwmac);
return devm_stmmac_pltfr_probe(pdev, plat_dat, &stmmac_res);
}
static const struct socfpga_dwmac_ops socfpga_gen5_ops = {
.set_phy_mode = socfpga_gen5_set_phy_mode,
+ .setup_plat_dat = socfpga_gen5_setup_plat_dat,
};
static const struct socfpga_dwmac_ops socfpga_gen10_ops = {
.set_phy_mode = socfpga_gen10_set_phy_mode,
+ .setup_plat_dat = socfpga_gen5_setup_plat_dat,
+};
+
+static const struct socfpga_dwmac_ops socfpga_agilex5_ops = {
+ .set_phy_mode = socfpga_gen10_set_phy_mode,
+ .setup_plat_dat = socfpga_agilex5_setup_plat_dat,
};
static const struct of_device_id socfpga_dwmac_match[] = {
{ .compatible = "altr,socfpga-stmmac", .data = &socfpga_gen5_ops },
{ .compatible = "altr,socfpga-stmmac-a10-s10", .data = &socfpga_gen10_ops },
- { .compatible = "altr,socfpga-stmmac-agilex5", .data = &socfpga_gen10_ops },
+ { .compatible = "altr,socfpga-stmmac-agilex5", .data = &socfpga_agilex5_ops },
{ }
};
MODULE_DEVICE_TABLE(of, socfpga_dwmac_match);
--
2.43.7
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH net-next 2/4] net: stmmac: socfpga: Enable TBS support for Agilex5
2025-10-29 8:06 [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
@ 2025-10-29 8:06 ` Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 3/4] net: stmmac: socfpga: Enable TSO for Agilex5 platform Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp Rohan G Thomas via B4 Relay
3 siblings, 0 replies; 16+ messages in thread
From: Rohan G Thomas via B4 Relay @ 2025-10-29 8:06 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Rohan G Thomas
From: Rohan G Thomas <rohan.g.thomas@altera.com>
Agilex5 supports Time-Based Scheduling(TBS) for Tx queue 6 and Tx
queue 7. This commit enables TBS support for these queues.
Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
---
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index 3dae4f3c103802ed1c2cd390634bd5473192d4ee..c02e6fa715bbea2f703bcdeee9d7a41be51ce91c 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -473,6 +473,19 @@ static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
socfpga_common_plat_dat(dwmac);
plat_dat->core_type = DWMAC_CORE_XGMAC;
+
+ /* Enable TBS */
+ switch (plat_dat->tx_queues_to_use) {
+ case 8:
+ plat_dat->tx_queues_cfg[7].tbs_en = true;
+ fallthrough;
+ case 7:
+ plat_dat->tx_queues_cfg[6].tbs_en = true;
+ break;
+ default:
+ /* Tx Queues 0 - 5 doesn't support TBS on Agilex5 */
+ break;
+ }
}
static int socfpga_dwmac_probe(struct platform_device *pdev)
--
2.43.7
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH net-next 3/4] net: stmmac: socfpga: Enable TSO for Agilex5 platform
2025-10-29 8:06 [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 2/4] net: stmmac: socfpga: Enable TBS support for Agilex5 Rohan G Thomas via B4 Relay
@ 2025-10-29 8:06 ` Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp Rohan G Thomas via B4 Relay
3 siblings, 0 replies; 16+ messages in thread
From: Rohan G Thomas via B4 Relay @ 2025-10-29 8:06 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Rohan G Thomas
From: Rohan G Thomas <rohan.g.thomas@altera.com>
Agilex5 supports TCP Segmentation Offload(TSO). This commit enables
TSO for Agilex5 socfpga platforms.
Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
---
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index c02e6fa715bbea2f703bcdeee9d7a41be51ce91c..37fcf272a46920d1d97a4b651a469767609373b4 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -474,6 +474,9 @@ static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
plat_dat->core_type = DWMAC_CORE_XGMAC;
+ /* Enable TSO */
+ plat_dat->flags |= STMMAC_FLAG_TSO_EN;
+
/* Enable TBS */
switch (plat_dat->tx_queues_to_use) {
case 8:
--
2.43.7
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 8:06 [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements Rohan G Thomas via B4 Relay
` (2 preceding siblings ...)
2025-10-29 8:06 ` [PATCH net-next 3/4] net: stmmac: socfpga: Enable TSO for Agilex5 platform Rohan G Thomas via B4 Relay
@ 2025-10-29 8:06 ` Rohan G Thomas via B4 Relay
2025-10-29 9:50 ` Maxime Chevallier
2025-10-30 5:40 ` kernel test robot
3 siblings, 2 replies; 16+ messages in thread
From: Rohan G Thomas via B4 Relay @ 2025-10-29 8:06 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel,
Rohan G Thomas
From: Rohan G Thomas <rohan.g.thomas@altera.com>
Cross timestamping is supported on Agilex5 platform with Synchronized
Multidrop Timestamp Gathering(SMTG) IP. The hardware cross-timestamp
result is made available the applications through the ioctl call
PTP_SYS_OFFSET_PRECISE, which inturn calls stmmac_getcrosststamp().
Device time is stored in the MAC Auxiliary register. The 64-bit System
time (ARM_ARCH_COUNTER) is stored in SMTG IP. SMTG IP is an MDIO device
with 0xC - 0xF MDIO register space holds 64-bit system time.
This commit is similar to following commit for Intel platforms:
Commit 341f67e424e5 ("net: stmmac: Add hardware supported cross-timestamp")
Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
---
.../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 125 +++++++++++++++++++++
drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h | 5 +
2 files changed, 130 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index 37fcf272a46920d1d97a4b651a469767609373b4..d36c9b77003ef4ad3ac598929fee3f7a8b94b9bc 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -5,6 +5,7 @@
*/
#include <linux/mfd/altera-sysmgr.h>
+#include <linux/clocksource_ids.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_net.h>
@@ -15,8 +16,10 @@
#include <linux/reset.h>
#include <linux/stmmac.h>
+#include "dwxgmac2.h"
#include "stmmac.h"
#include "stmmac_platform.h"
+#include "stmmac_ptp.h"
#define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII 0x0
#define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII 0x1
@@ -41,6 +44,13 @@
#define SGMII_ADAPTER_ENABLE 0x0000
#define SGMII_ADAPTER_DISABLE 0x0001
+#define SMTG_MDIO_ADDR 0x15
+#define SMTG_TSC_WORD0 0xC
+#define SMTG_TSC_WORD1 0xD
+#define SMTG_TSC_WORD2 0xE
+#define SMTG_TSC_WORD3 0xF
+#define SMTG_TSC_SHIFT 16
+
struct socfpga_dwmac;
struct socfpga_dwmac_ops {
int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
@@ -269,6 +279,117 @@ static int socfpga_set_phy_mode_common(int phymode, u32 *val)
return 0;
}
+static void get_smtgtime(struct mii_bus *mii, int smtg_addr, u64 *smtg_time)
+{
+ u64 ns;
+
+ ns = mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD3);
+ ns <<= SMTG_TSC_SHIFT;
+ ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD2);
+ ns <<= SMTG_TSC_SHIFT;
+ ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD1);
+ ns <<= SMTG_TSC_SHIFT;
+ ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD0);
+
+ *smtg_time = ns;
+}
+
+static int dwxgmac_cross_ts_isr(struct stmmac_priv *priv)
+{
+ return (readl(priv->ioaddr + XGMAC_INT_STATUS) & XGMAC_INT_TSIS);
+}
+
+static int smtg_crosststamp(ktime_t *device, struct system_counterval_t *system,
+ void *ctx)
+{
+ struct stmmac_priv *priv = (struct stmmac_priv *)ctx;
+ u32 num_snapshot, gpio_value, acr_value;
+ void __iomem *ptpaddr = priv->ptpaddr;
+ void __iomem *ioaddr = priv->hw->pcsr;
+ unsigned long flags;
+ u64 smtg_time = 0;
+ u64 ptp_time = 0;
+ int i, ret;
+
+ /* Both internal crosstimestamping and external triggered event
+ * timestamping cannot be run concurrently.
+ */
+ if (priv->plat->flags & STMMAC_FLAG_EXT_SNAPSHOT_EN)
+ return -EBUSY;
+
+ mutex_lock(&priv->aux_ts_lock);
+ /* Enable Internal snapshot trigger */
+ acr_value = readl(ptpaddr + PTP_ACR);
+ acr_value &= ~PTP_ACR_MASK;
+ switch (priv->plat->int_snapshot_num) {
+ case AUX_SNAPSHOT0:
+ acr_value |= PTP_ACR_ATSEN0;
+ break;
+ case AUX_SNAPSHOT1:
+ acr_value |= PTP_ACR_ATSEN1;
+ break;
+ case AUX_SNAPSHOT2:
+ acr_value |= PTP_ACR_ATSEN2;
+ break;
+ case AUX_SNAPSHOT3:
+ acr_value |= PTP_ACR_ATSEN3;
+ break;
+ default:
+ mutex_unlock(&priv->aux_ts_lock);
+ return -EINVAL;
+ }
+ writel(acr_value, ptpaddr + PTP_ACR);
+
+ /* Clear FIFO */
+ acr_value = readl(ptpaddr + PTP_ACR);
+ acr_value |= PTP_ACR_ATSFC;
+ writel(acr_value, ptpaddr + PTP_ACR);
+ /* Release the mutex */
+ mutex_unlock(&priv->aux_ts_lock);
+
+ /* Trigger Internal snapshot signal. Create a rising edge by just toggle
+ * the GPO0 to low and back to high.
+ */
+ gpio_value = readl(ioaddr + XGMAC_GPIO_STATUS);
+ gpio_value &= ~XGMAC_GPIO_GPO0;
+ writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
+ gpio_value |= XGMAC_GPIO_GPO0;
+ writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
+
+ /* Time sync done Indication - Interrupt method */
+ if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
+ dwxgmac_cross_ts_isr(priv),
+ HZ / 100)) {
+ priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
+ return -ETIMEDOUT;
+ }
+
+ *system = (struct system_counterval_t) {
+ .cycles = 0,
+ .cs_id = CSID_ARM_ARCH_COUNTER,
+ .use_nsecs = true,
+ };
+
+ num_snapshot = (readl(ioaddr + XGMAC_TIMESTAMP_STATUS) &
+ XGMAC_TIMESTAMP_ATSNS_MASK) >>
+ XGMAC_TIMESTAMP_ATSNS_SHIFT;
+
+ /* Repeat until the timestamps are from the FIFO last segment */
+ for (i = 0; i < num_snapshot; i++) {
+ read_lock_irqsave(&priv->ptp_lock, flags);
+ stmmac_get_ptptime(priv, ptpaddr, &ptp_time);
+ *device = ns_to_ktime(ptp_time);
+ read_unlock_irqrestore(&priv->ptp_lock, flags);
+ }
+
+ get_smtgtime(priv->mii, SMTG_MDIO_ADDR, &smtg_time);
+ system->cycles = smtg_time;
+
+ priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
+
+ return ret;
+}
+
static int socfpga_gen5_set_phy_mode(struct socfpga_dwmac *dwmac)
{
struct regmap *sys_mgr_base_addr = dwmac->sys_mgr_base_addr;
@@ -489,6 +610,10 @@ static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
/* Tx Queues 0 - 5 doesn't support TBS on Agilex5 */
break;
}
+
+ /* Hw supported cross-timestamp */
+ plat_dat->int_snapshot_num = AUX_SNAPSHOT0;
+ plat_dat->crosststamp = smtg_crosststamp;
}
static int socfpga_dwmac_probe(struct platform_device *pdev)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h
index 0d408ee17f337851502cbcba8e82d2b839b9db02..e48cfa05000c07ed9194de786efa530a61a9dbfa 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h
+++ b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h
@@ -79,6 +79,7 @@
#define XGMAC_PSRQ(x) GENMASK((x) * 8 + 7, (x) * 8)
#define XGMAC_PSRQ_SHIFT(x) ((x) * 8)
#define XGMAC_INT_STATUS 0x000000b0
+#define XGMAC_INT_TSIS BIT(12)
#define XGMAC_LPIIS BIT(5)
#define XGMAC_PMTIS BIT(4)
#define XGMAC_INT_EN 0x000000b4
@@ -173,6 +174,8 @@
#define XGMAC_MDIO_ADDR 0x00000200
#define XGMAC_MDIO_DATA 0x00000204
#define XGMAC_MDIO_C22P 0x00000220
+#define XGMAC_GPIO_STATUS 0x0000027c
+#define XGMAC_GPIO_GPO0 BIT(16)
#define XGMAC_ADDRx_HIGH(x) (0x00000300 + (x) * 0x8)
#define XGMAC_ADDR_MAX 32
#define XGMAC_AE BIT(31)
@@ -220,6 +223,8 @@
#define XGMAC_OB BIT(0)
#define XGMAC_RSS_DATA 0x00000c8c
#define XGMAC_TIMESTAMP_STATUS 0x00000d20
+#define XGMAC_TIMESTAMP_ATSNS_MASK GENMASK(29, 25)
+#define XGMAC_TIMESTAMP_ATSNS_SHIFT 25
#define XGMAC_TXTSC BIT(15)
#define XGMAC_TXTIMESTAMP_NSEC 0x00000d30
#define XGMAC_TXTSSTSLO GENMASK(30, 0)
--
2.43.7
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 8:06 ` [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp Rohan G Thomas via B4 Relay
@ 2025-10-29 9:50 ` Maxime Chevallier
2025-10-29 14:41 ` G Thomas, Rohan
2025-10-30 5:40 ` kernel test robot
1 sibling, 1 reply; 16+ messages in thread
From: Maxime Chevallier @ 2025-10-29 9:50 UTC (permalink / raw)
To: rohan.g.thomas, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Rohan,
On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>
> Cross timestamping is supported on Agilex5 platform with Synchronized
> Multidrop Timestamp Gathering(SMTG) IP. The hardware cross-timestamp
> result is made available the applications through the ioctl call
> PTP_SYS_OFFSET_PRECISE, which inturn calls stmmac_getcrosststamp().
>
> Device time is stored in the MAC Auxiliary register. The 64-bit System
> time (ARM_ARCH_COUNTER) is stored in SMTG IP. SMTG IP is an MDIO device
> with 0xC - 0xF MDIO register space holds 64-bit system time.
>
> This commit is similar to following commit for Intel platforms:
> Commit 341f67e424e5 ("net: stmmac: Add hardware supported cross-timestamp")
>
> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
> ---
> .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 125 +++++++++++++++++++++
> drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h | 5 +
> 2 files changed, 130 insertions(+)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> index 37fcf272a46920d1d97a4b651a469767609373b4..d36c9b77003ef4ad3ac598929fee3f7a8b94b9bc 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> @@ -5,6 +5,7 @@
> */
>
> #include <linux/mfd/altera-sysmgr.h>
> +#include <linux/clocksource_ids.h>
> #include <linux/of.h>
> #include <linux/of_address.h>
> #include <linux/of_net.h>
> @@ -15,8 +16,10 @@
> #include <linux/reset.h>
> #include <linux/stmmac.h>
>
> +#include "dwxgmac2.h"
> #include "stmmac.h"
> #include "stmmac_platform.h"
> +#include "stmmac_ptp.h"
>
> #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII 0x0
> #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII 0x1
> @@ -41,6 +44,13 @@
> #define SGMII_ADAPTER_ENABLE 0x0000
> #define SGMII_ADAPTER_DISABLE 0x0001
>
> +#define SMTG_MDIO_ADDR 0x15
> +#define SMTG_TSC_WORD0 0xC
> +#define SMTG_TSC_WORD1 0xD
> +#define SMTG_TSC_WORD2 0xE
> +#define SMTG_TSC_WORD3 0xF
> +#define SMTG_TSC_SHIFT 16
> +
> struct socfpga_dwmac;
> struct socfpga_dwmac_ops {
> int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
> @@ -269,6 +279,117 @@ static int socfpga_set_phy_mode_common(int phymode, u32 *val)
> return 0;
> }
>
> +static void get_smtgtime(struct mii_bus *mii, int smtg_addr, u64 *smtg_time)
> +{
> + u64 ns;
> +
> + ns = mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD3);
> + ns <<= SMTG_TSC_SHIFT;
> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD2);
> + ns <<= SMTG_TSC_SHIFT;
> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD1);
> + ns <<= SMTG_TSC_SHIFT;
> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD0);
> +
> + *smtg_time = ns;
> +}
> +
> +static int dwxgmac_cross_ts_isr(struct stmmac_priv *priv)
> +{
> + return (readl(priv->ioaddr + XGMAC_INT_STATUS) & XGMAC_INT_TSIS);
> +}
> +
> +static int smtg_crosststamp(ktime_t *device, struct system_counterval_t *system,
> + void *ctx)
> +{
> + struct stmmac_priv *priv = (struct stmmac_priv *)ctx;
> + u32 num_snapshot, gpio_value, acr_value;
> + void __iomem *ptpaddr = priv->ptpaddr;
> + void __iomem *ioaddr = priv->hw->pcsr;
> + unsigned long flags;
> + u64 smtg_time = 0;
> + u64 ptp_time = 0;
> + int i, ret;
> +
> + /* Both internal crosstimestamping and external triggered event
> + * timestamping cannot be run concurrently.
> + */
> + if (priv->plat->flags & STMMAC_FLAG_EXT_SNAPSHOT_EN)
> + return -EBUSY;
> +
> + mutex_lock(&priv->aux_ts_lock);
> + /* Enable Internal snapshot trigger */
> + acr_value = readl(ptpaddr + PTP_ACR);
> + acr_value &= ~PTP_ACR_MASK;
> + switch (priv->plat->int_snapshot_num) {
> + case AUX_SNAPSHOT0:
> + acr_value |= PTP_ACR_ATSEN0;
> + break;
> + case AUX_SNAPSHOT1:
> + acr_value |= PTP_ACR_ATSEN1;
> + break;
> + case AUX_SNAPSHOT2:
> + acr_value |= PTP_ACR_ATSEN2;
> + break;
> + case AUX_SNAPSHOT3:
> + acr_value |= PTP_ACR_ATSEN3;
> + break;
> + default:
> + mutex_unlock(&priv->aux_ts_lock);
> + return -EINVAL;
> + }
> + writel(acr_value, ptpaddr + PTP_ACR);
> +
> + /* Clear FIFO */
> + acr_value = readl(ptpaddr + PTP_ACR);
> + acr_value |= PTP_ACR_ATSFC;
> + writel(acr_value, ptpaddr + PTP_ACR);
> + /* Release the mutex */
> + mutex_unlock(&priv->aux_ts_lock);
> +
> + /* Trigger Internal snapshot signal. Create a rising edge by just toggle
> + * the GPO0 to low and back to high.
> + */
> + gpio_value = readl(ioaddr + XGMAC_GPIO_STATUS);
> + gpio_value &= ~XGMAC_GPIO_GPO0;
> + writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
> + gpio_value |= XGMAC_GPIO_GPO0;
> + writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
> +
> + /* Time sync done Indication - Interrupt method */
> + if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
> + dwxgmac_cross_ts_isr(priv),
> + HZ / 100)) {
> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
> + return -ETIMEDOUT;
Don't you need to set priv->plat->flags |= STMMAC_FLAG_INT_SNAPSHOT_EN first?
Otherwise, timestamp_interrupt() in stmmac_hwtstamp() won't call wake_up()
on the wait_queue.
> + }
> +
> + *system = (struct system_counterval_t) {
> + .cycles = 0,
> + .cs_id = CSID_ARM_ARCH_COUNTER,
> + .use_nsecs = true,
> + };
> +
> + num_snapshot = (readl(ioaddr + XGMAC_TIMESTAMP_STATUS) &
> + XGMAC_TIMESTAMP_ATSNS_MASK) >>
> + XGMAC_TIMESTAMP_ATSNS_SHIFT;
> +
> + /* Repeat until the timestamps are from the FIFO last segment */
> + for (i = 0; i < num_snapshot; i++) {
> + read_lock_irqsave(&priv->ptp_lock, flags);
> + stmmac_get_ptptime(priv, ptpaddr, &ptp_time);
> + *device = ns_to_ktime(ptp_time);
> + read_unlock_irqrestore(&priv->ptp_lock, flags);
> + }
> +
> + get_smtgtime(priv->mii, SMTG_MDIO_ADDR, &smtg_time);
> + system->cycles = smtg_time;
> +
> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
> +
> + return ret;
> +}
Maxime
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
@ 2025-10-29 13:34 ` Maxime Chevallier
2025-10-29 14:53 ` G Thomas, Rohan
2025-10-29 15:32 ` Maxime Chevallier
2025-10-29 16:14 ` Russell King (Oracle)
2 siblings, 1 reply; 16+ messages in thread
From: Maxime Chevallier @ 2025-10-29 13:34 UTC (permalink / raw)
To: rohan.g.thomas, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Rohan,
On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>
> Agilex5 HPS EMAC uses the dwxgmac-3.10a IP, unlike previous socfpga
> platforms which use dwmac1000 IP. Due to differences in platform
> configuration, Agilex5 requires a distinct setup.
>
> Introduce a setup_plat_dat() callback in socfpga_dwmac_ops to handle
> platform-specific setup. This callback is invoked before
> stmmac_dvr_probe() to ensure the platform data is correctly
> configured. Also, implemented separate setup_plat_dat() callback for
> current socfpga platforms and Agilex5.
>
> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
> ---
> .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 53 ++++++++++++++++++----
> 1 file changed, 43 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> index 2ff5db6d41ca08a1652d57f3eb73923b9a9558bf..3dae4f3c103802ed1c2cd390634bd5473192d4ee 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
> @@ -44,6 +44,7 @@
> struct socfpga_dwmac;
> struct socfpga_dwmac_ops {
> int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
> + void (*setup_plat_dat)(struct socfpga_dwmac *dwmac_priv);
> };
>
> struct socfpga_dwmac {
> @@ -441,6 +442,39 @@ static int socfpga_dwmac_init(struct platform_device *pdev, void *bsp_priv)
> return dwmac->ops->set_phy_mode(dwmac);
> }
>
> +static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
> +{
> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
> +
> + plat_dat->bsp_priv = dwmac;
> + plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
> + plat_dat->init = socfpga_dwmac_init;
> + plat_dat->pcs_init = socfpga_dwmac_pcs_init;
> + plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
> + plat_dat->select_pcs = socfpga_dwmac_select_pcs;
> +}
> +
> +static void socfpga_gen5_setup_plat_dat(struct socfpga_dwmac *dwmac)
> +{
> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
> +
> + socfpga_common_plat_dat(dwmac);
> +
> + plat_dat->core_type = DWMAC_CORE_GMAC;
> +
> + /* Rx watchdog timer in dwmac is buggy in this hw */
> + plat_dat->riwt_off = 1;
> +}
> +
> +static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
> +{
> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
> +
> + socfpga_common_plat_dat(dwmac);
I"m not familiar with this device (I only have a Cyclone V on hand), does
it still make sense to try to instantiate a Lynx (i.e. Altera TSE) PCS
for that IP ?
Maxime
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 9:50 ` Maxime Chevallier
@ 2025-10-29 14:41 ` G Thomas, Rohan
2025-10-29 15:06 ` Maxime Chevallier
0 siblings, 1 reply; 16+ messages in thread
From: G Thomas, Rohan @ 2025-10-29 14:41 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Maxime,
On 10/29/2025 3:20 PM, Maxime Chevallier wrote:
> Hi Rohan,
>
> On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
>> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>>
>> Cross timestamping is supported on Agilex5 platform with Synchronized
>> Multidrop Timestamp Gathering(SMTG) IP. The hardware cross-timestamp
>> result is made available the applications through the ioctl call
>> PTP_SYS_OFFSET_PRECISE, which inturn calls stmmac_getcrosststamp().
>>
>> Device time is stored in the MAC Auxiliary register. The 64-bit System
>> time (ARM_ARCH_COUNTER) is stored in SMTG IP. SMTG IP is an MDIO device
>> with 0xC - 0xF MDIO register space holds 64-bit system time.
>>
>> This commit is similar to following commit for Intel platforms:
>> Commit 341f67e424e5 ("net: stmmac: Add hardware supported cross-timestamp")
>>
>> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
>> ---
>> .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 125 +++++++++++++++++++++
>> drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h | 5 +
>> 2 files changed, 130 insertions(+)
>>
>> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> index 37fcf272a46920d1d97a4b651a469767609373b4..d36c9b77003ef4ad3ac598929fee3f7a8b94b9bc 100644
>> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> @@ -5,6 +5,7 @@
>> */
>>
>> #include <linux/mfd/altera-sysmgr.h>
>> +#include <linux/clocksource_ids.h>
>> #include <linux/of.h>
>> #include <linux/of_address.h>
>> #include <linux/of_net.h>
>> @@ -15,8 +16,10 @@
>> #include <linux/reset.h>
>> #include <linux/stmmac.h>
>>
>> +#include "dwxgmac2.h"
>> #include "stmmac.h"
>> #include "stmmac_platform.h"
>> +#include "stmmac_ptp.h"
>>
>> #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_GMII_MII 0x0
>> #define SYSMGR_EMACGRP_CTRL_PHYSEL_ENUM_RGMII 0x1
>> @@ -41,6 +44,13 @@
>> #define SGMII_ADAPTER_ENABLE 0x0000
>> #define SGMII_ADAPTER_DISABLE 0x0001
>>
>> +#define SMTG_MDIO_ADDR 0x15
>> +#define SMTG_TSC_WORD0 0xC
>> +#define SMTG_TSC_WORD1 0xD
>> +#define SMTG_TSC_WORD2 0xE
>> +#define SMTG_TSC_WORD3 0xF
>> +#define SMTG_TSC_SHIFT 16
>> +
>> struct socfpga_dwmac;
>> struct socfpga_dwmac_ops {
>> int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
>> @@ -269,6 +279,117 @@ static int socfpga_set_phy_mode_common(int phymode, u32 *val)
>> return 0;
>> }
>>
>> +static void get_smtgtime(struct mii_bus *mii, int smtg_addr, u64 *smtg_time)
>> +{
>> + u64 ns;
>> +
>> + ns = mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD3);
>> + ns <<= SMTG_TSC_SHIFT;
>> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD2);
>> + ns <<= SMTG_TSC_SHIFT;
>> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD1);
>> + ns <<= SMTG_TSC_SHIFT;
>> + ns |= mdiobus_read(mii, smtg_addr, SMTG_TSC_WORD0);
>> +
>> + *smtg_time = ns;
>> +}
>> +
>> +static int dwxgmac_cross_ts_isr(struct stmmac_priv *priv)
>> +{
>> + return (readl(priv->ioaddr + XGMAC_INT_STATUS) & XGMAC_INT_TSIS);
>> +}
>> +
>> +static int smtg_crosststamp(ktime_t *device, struct system_counterval_t *system,
>> + void *ctx)
>> +{
>> + struct stmmac_priv *priv = (struct stmmac_priv *)ctx;
>> + u32 num_snapshot, gpio_value, acr_value;
>> + void __iomem *ptpaddr = priv->ptpaddr;
>> + void __iomem *ioaddr = priv->hw->pcsr;
>> + unsigned long flags;
>> + u64 smtg_time = 0;
>> + u64 ptp_time = 0;
>> + int i, ret;
>> +
>> + /* Both internal crosstimestamping and external triggered event
>> + * timestamping cannot be run concurrently.
>> + */
>> + if (priv->plat->flags & STMMAC_FLAG_EXT_SNAPSHOT_EN)
>> + return -EBUSY;
>> +
>> + mutex_lock(&priv->aux_ts_lock);
>> + /* Enable Internal snapshot trigger */
>> + acr_value = readl(ptpaddr + PTP_ACR);
>> + acr_value &= ~PTP_ACR_MASK;
>> + switch (priv->plat->int_snapshot_num) {
>> + case AUX_SNAPSHOT0:
>> + acr_value |= PTP_ACR_ATSEN0;
>> + break;
>> + case AUX_SNAPSHOT1:
>> + acr_value |= PTP_ACR_ATSEN1;
>> + break;
>> + case AUX_SNAPSHOT2:
>> + acr_value |= PTP_ACR_ATSEN2;
>> + break;
>> + case AUX_SNAPSHOT3:
>> + acr_value |= PTP_ACR_ATSEN3;
>> + break;
>> + default:
>> + mutex_unlock(&priv->aux_ts_lock);
>> + return -EINVAL;
>> + }
>> + writel(acr_value, ptpaddr + PTP_ACR);
>> +
>> + /* Clear FIFO */
>> + acr_value = readl(ptpaddr + PTP_ACR);
>> + acr_value |= PTP_ACR_ATSFC;
>> + writel(acr_value, ptpaddr + PTP_ACR);
>> + /* Release the mutex */
>> + mutex_unlock(&priv->aux_ts_lock);
>> +
>> + /* Trigger Internal snapshot signal. Create a rising edge by just toggle
>> + * the GPO0 to low and back to high.
>> + */
>> + gpio_value = readl(ioaddr + XGMAC_GPIO_STATUS);
>> + gpio_value &= ~XGMAC_GPIO_GPO0;
>> + writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
>> + gpio_value |= XGMAC_GPIO_GPO0;
>> + writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
>> +
>> + /* Time sync done Indication - Interrupt method */
>> + if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
>> + dwxgmac_cross_ts_isr(priv),
>> + HZ / 100)) {
>> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
>> + return -ETIMEDOUT;
>
> Don't you need to set priv->plat->flags |= STMMAC_FLAG_INT_SNAPSHOT_EN first?
> Otherwise, timestamp_interrupt() in stmmac_hwtstamp() won't call wake_up()
> on the wait_queue.
>
Thanks for pointing this out. My intention was to use the polling
method, but I accidentally left behind some code from experimenting with
the interrupt method. While reverting those changes, I missed updating
this part of the code. Will fix this in the next revision. Sorry for the
error. Currently not seeing any timeout issues with polling method on
XGMAC IP. Also some spurios interrupts causing stall when using
the interrupt method in XGMAC.
>> + }
>> +
>> + *system = (struct system_counterval_t) {
>> + .cycles = 0,
>> + .cs_id = CSID_ARM_ARCH_COUNTER,
>> + .use_nsecs = true,
>> + };
>> +
>> + num_snapshot = (readl(ioaddr + XGMAC_TIMESTAMP_STATUS) &
>> + XGMAC_TIMESTAMP_ATSNS_MASK) >>
>> + XGMAC_TIMESTAMP_ATSNS_SHIFT;
>> +
>> + /* Repeat until the timestamps are from the FIFO last segment */
>> + for (i = 0; i < num_snapshot; i++) {
>> + read_lock_irqsave(&priv->ptp_lock, flags);
>> + stmmac_get_ptptime(priv, ptpaddr, &ptp_time);
>> + *device = ns_to_ktime(ptp_time);
>> + read_unlock_irqrestore(&priv->ptp_lock, flags);
>> + }
>> +
>> + get_smtgtime(priv->mii, SMTG_MDIO_ADDR, &smtg_time);
>> + system->cycles = smtg_time;
>> +
>> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
>> +
>> + return ret;
>> +}
>
> Maxime
Best Regards,
Rohan
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 13:34 ` Maxime Chevallier
@ 2025-10-29 14:53 ` G Thomas, Rohan
2025-10-29 15:30 ` Maxime Chevallier
0 siblings, 1 reply; 16+ messages in thread
From: G Thomas, Rohan @ 2025-10-29 14:53 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Maxime,
On 10/29/2025 7:04 PM, Maxime Chevallier wrote:
> Hi Rohan,
>
> On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
>> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>>
>> Agilex5 HPS EMAC uses the dwxgmac-3.10a IP, unlike previous socfpga
>> platforms which use dwmac1000 IP. Due to differences in platform
>> configuration, Agilex5 requires a distinct setup.
>>
>> Introduce a setup_plat_dat() callback in socfpga_dwmac_ops to handle
>> platform-specific setup. This callback is invoked before
>> stmmac_dvr_probe() to ensure the platform data is correctly
>> configured. Also, implemented separate setup_plat_dat() callback for
>> current socfpga platforms and Agilex5.
>>
>> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
>> ---
>> .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 53 ++++++++++++++++++----
>> 1 file changed, 43 insertions(+), 10 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> index 2ff5db6d41ca08a1652d57f3eb73923b9a9558bf..3dae4f3c103802ed1c2cd390634bd5473192d4ee 100644
>> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>> @@ -44,6 +44,7 @@
>> struct socfpga_dwmac;
>> struct socfpga_dwmac_ops {
>> int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
>> + void (*setup_plat_dat)(struct socfpga_dwmac *dwmac_priv);
>> };
>>
>> struct socfpga_dwmac {
>> @@ -441,6 +442,39 @@ static int socfpga_dwmac_init(struct platform_device *pdev, void *bsp_priv)
>> return dwmac->ops->set_phy_mode(dwmac);
>> }
>>
>> +static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
>> +{
>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>> +
>> + plat_dat->bsp_priv = dwmac;
>> + plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
>> + plat_dat->init = socfpga_dwmac_init;
>> + plat_dat->pcs_init = socfpga_dwmac_pcs_init;
>> + plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
>> + plat_dat->select_pcs = socfpga_dwmac_select_pcs;
>> +}
>> +
>> +static void socfpga_gen5_setup_plat_dat(struct socfpga_dwmac *dwmac)
>> +{
>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>> +
>> + socfpga_common_plat_dat(dwmac);
>> +
>> + plat_dat->core_type = DWMAC_CORE_GMAC;
>> +
>> + /* Rx watchdog timer in dwmac is buggy in this hw */
>> + plat_dat->riwt_off = 1;
>> +}
>> +
>> +static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
>> +{
>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>> +
>> + socfpga_common_plat_dat(dwmac);
>
> I"m not familiar with this device (I only have a Cyclone V on hand), does
> it still make sense to try to instantiate a Lynx (i.e. Altera TSE) PCS
> for that IP ?
AFAIK, yes it is supported by Agilex V device family also.
https://www.altera.com/products/ip/a1jui0000049uuomam/triple-speed-ethernet-fpga-ip
>
> Maxime
>
Best Regards,
Rohan
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 14:41 ` G Thomas, Rohan
@ 2025-10-29 15:06 ` Maxime Chevallier
2025-10-29 17:10 ` G Thomas, Rohan
0 siblings, 1 reply; 16+ messages in thread
From: Maxime Chevallier @ 2025-10-29 15:06 UTC (permalink / raw)
To: G Thomas, Rohan, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Rohan,
On 29/10/2025 15:41, G Thomas, Rohan wrote:
> Hi Maxime,
>
> On 10/29/2025 3:20 PM, Maxime Chevallier wrote:
>> Hi Rohan,
>>
>> On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
>>> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>>>
>>> Cross timestamping is supported on Agilex5 platform with Synchronized
>>> Multidrop Timestamp Gathering(SMTG) IP. The hardware cross-timestamp
>>> result is made available the applications through the ioctl call
>>> PTP_SYS_OFFSET_PRECISE, which inturn calls stmmac_getcrosststamp().
>>>
>>> Device time is stored in the MAC Auxiliary register. The 64-bit System
>>> time (ARM_ARCH_COUNTER) is stored in SMTG IP. SMTG IP is an MDIO device
>>> with 0xC - 0xF MDIO register space holds 64-bit system time.
>>>
>>> This commit is similar to following commit for Intel platforms:
>>> Commit 341f67e424e5 ("net: stmmac: Add hardware supported cross-timestamp")
>>>
>>> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
[...]
>>> + /* Time sync done Indication - Interrupt method */
>>> + if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
>>> + dwxgmac_cross_ts_isr(priv),
>>> + HZ / 100)) {
>>> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
>>> + return -ETIMEDOUT;
>>
>> Don't you need to set priv->plat->flags |= STMMAC_FLAG_INT_SNAPSHOT_EN first?
>> Otherwise, timestamp_interrupt() in stmmac_hwtstamp() won't call wake_up()
>> on the wait_queue.
>>
>
> Thanks for pointing this out. My intention was to use the polling
> method, but I accidentally left behind some code from experimenting with
> the interrupt method. While reverting those changes, I missed updating
> this part of the code. Will fix this in the next revision. Sorry for the
> error. Currently not seeing any timeout issues with polling method on
> XGMAC IP. Also some spurios interrupts causing stall when using
> the interrupt method in XGMAC.
So, if you use the polling method, this will likely bring this code
even closer to what's implemented in the intel dwmac wrapper. Is this
the same IP ?
To me it looks like the only difference will be a few
register offsets (XGMAC vs GMAC), some clock id and the mdio accesses,
maybe it could be worth considering re-using what's been done on the
Intel side and avoid duplication...
That could be all moved to stmmac_ptp for instance, using some flag
in the plat data to indicate if cross timestamping is supported, and
use the core type (xgmac, gmac, etc.) for the offsets ?
Of course with the risk of regressing dwmac-intel.c :(
Maxime
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 14:53 ` G Thomas, Rohan
@ 2025-10-29 15:30 ` Maxime Chevallier
0 siblings, 0 replies; 16+ messages in thread
From: Maxime Chevallier @ 2025-10-29 15:30 UTC (permalink / raw)
To: G Thomas, Rohan, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi,
On 29/10/2025 15:53, G Thomas, Rohan wrote:
> Hi Maxime,
>
> On 10/29/2025 7:04 PM, Maxime Chevallier wrote:
>> Hi Rohan,
>>
>> On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
>>> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>>>
>>> Agilex5 HPS EMAC uses the dwxgmac-3.10a IP, unlike previous socfpga
>>> platforms which use dwmac1000 IP. Due to differences in platform
>>> configuration, Agilex5 requires a distinct setup.
>>>
>>> Introduce a setup_plat_dat() callback in socfpga_dwmac_ops to handle
>>> platform-specific setup. This callback is invoked before
>>> stmmac_dvr_probe() to ensure the platform data is correctly
>>> configured. Also, implemented separate setup_plat_dat() callback for
>>> current socfpga platforms and Agilex5.
>>>
>>> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
>>> ---
>>> .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 53 ++++++++++++++++++----
>>> 1 file changed, 43 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>>> index 2ff5db6d41ca08a1652d57f3eb73923b9a9558bf..3dae4f3c103802ed1c2cd390634bd5473192d4ee 100644
>>> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>>> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
>>> @@ -44,6 +44,7 @@
>>> struct socfpga_dwmac;
>>> struct socfpga_dwmac_ops {
>>> int (*set_phy_mode)(struct socfpga_dwmac *dwmac_priv);
>>> + void (*setup_plat_dat)(struct socfpga_dwmac *dwmac_priv);
>>> };
>>>
>>> struct socfpga_dwmac {
>>> @@ -441,6 +442,39 @@ static int socfpga_dwmac_init(struct platform_device *pdev, void *bsp_priv)
>>> return dwmac->ops->set_phy_mode(dwmac);
>>> }
>>>
>>> +static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
>>> +{
>>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>>> +
>>> + plat_dat->bsp_priv = dwmac;
>>> + plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
>>> + plat_dat->init = socfpga_dwmac_init;
>>> + plat_dat->pcs_init = socfpga_dwmac_pcs_init;
>>> + plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
>>> + plat_dat->select_pcs = socfpga_dwmac_select_pcs;
>>> +}
>>> +
>>> +static void socfpga_gen5_setup_plat_dat(struct socfpga_dwmac *dwmac)
>>> +{
>>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>>> +
>>> + socfpga_common_plat_dat(dwmac);
>>> +
>>> + plat_dat->core_type = DWMAC_CORE_GMAC;
>>> +
>>> + /* Rx watchdog timer in dwmac is buggy in this hw */
>>> + plat_dat->riwt_off = 1;
>>> +}
>>> +
>>> +static void socfpga_agilex5_setup_plat_dat(struct socfpga_dwmac *dwmac)
>>> +{
>>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>>> +
>>> + socfpga_common_plat_dat(dwmac);
>>
>> I"m not familiar with this device (I only have a Cyclone V on hand), does
>> it still make sense to try to instantiate a Lynx (i.e. Altera TSE) PCS
>> for that IP ?
>
> AFAIK, yes it is supported by Agilex V device family also.
> https://www.altera.com/products/ip/a1jui0000049uuomam/triple-speed-ethernet-fpga-ip
Ah nice to know, thanks !
this looks correct then :)
Maxime
>
>>
>> Maxime
>>
>
> Best Regards,
> Rohan
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
2025-10-29 13:34 ` Maxime Chevallier
@ 2025-10-29 15:32 ` Maxime Chevallier
2025-10-29 16:14 ` Russell King (Oracle)
2 siblings, 0 replies; 16+ messages in thread
From: Maxime Chevallier @ 2025-10-29 15:32 UTC (permalink / raw)
To: rohan.g.thomas, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Rohan,
As this patch also impacts other socfpga variants, I gave it a try
on Cyclone V, all is fine :)
On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>
> Agilex5 HPS EMAC uses the dwxgmac-3.10a IP, unlike previous socfpga
> platforms which use dwmac1000 IP. Due to differences in platform
> configuration, Agilex5 requires a distinct setup.
>
> Introduce a setup_plat_dat() callback in socfpga_dwmac_ops to handle
> platform-specific setup. This callback is invoked before
> stmmac_dvr_probe() to ensure the platform data is correctly
> configured. Also, implemented separate setup_plat_dat() callback for
> current socfpga platforms and Agilex5.
>
> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
Thanks for your explanation about the TSE PCS,
Reviewed-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Tested-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Maxime
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
2025-10-29 13:34 ` Maxime Chevallier
2025-10-29 15:32 ` Maxime Chevallier
@ 2025-10-29 16:14 ` Russell King (Oracle)
2025-10-29 17:14 ` G Thomas, Rohan
2 siblings, 1 reply; 16+ messages in thread
From: Russell King (Oracle) @ 2025-10-29 16:14 UTC (permalink / raw)
To: rohan.g.thomas
Cc: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar, netdev, linux-stm32,
linux-arm-kernel, linux-kernel
On Wed, Oct 29, 2025 at 04:06:13PM +0800, Rohan G Thomas via B4 Relay wrote:
> +static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
> +{
> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
> +
> + plat_dat->bsp_priv = dwmac;
Surely this is something which is always done? What's the point in
moving this to a function that always needs to be called from the
implementation specific setup_plat_dat() method?
> + plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
> + plat_dat->init = socfpga_dwmac_init;
> + plat_dat->pcs_init = socfpga_dwmac_pcs_init;
> + plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
> + plat_dat->select_pcs = socfpga_dwmac_select_pcs;
From what I can see in your patch series, these are never changed.
So, I question the value of having this "common_plat_dat"
initialisation function. Why not leave this code in
socfpga_dwmac_probe(), and just move the initialisation of
plat_dat->core_type and plat_dat->riwt_off ?
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 15:06 ` Maxime Chevallier
@ 2025-10-29 17:10 ` G Thomas, Rohan
0 siblings, 0 replies; 16+ messages in thread
From: G Thomas, Rohan @ 2025-10-29 17:10 UTC (permalink / raw)
To: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar
Cc: netdev, linux-stm32, linux-arm-kernel, linux-kernel
Hi Maxime,
On 10/29/2025 8:36 PM, Maxime Chevallier wrote:
> Hi Rohan,
>
> On 29/10/2025 15:41, G Thomas, Rohan wrote:
>> Hi Maxime,
>>
>> On 10/29/2025 3:20 PM, Maxime Chevallier wrote:
>>> Hi Rohan,
>>>
>>> On 29/10/2025 09:06, Rohan G Thomas via B4 Relay wrote:
>>>> From: Rohan G Thomas <rohan.g.thomas@altera.com>
>>>>
>>>> Cross timestamping is supported on Agilex5 platform with Synchronized
>>>> Multidrop Timestamp Gathering(SMTG) IP. The hardware cross-timestamp
>>>> result is made available the applications through the ioctl call
>>>> PTP_SYS_OFFSET_PRECISE, which inturn calls stmmac_getcrosststamp().
>>>>
>>>> Device time is stored in the MAC Auxiliary register. The 64-bit System
>>>> time (ARM_ARCH_COUNTER) is stored in SMTG IP. SMTG IP is an MDIO device
>>>> with 0xC - 0xF MDIO register space holds 64-bit system time.
>>>>
>>>> This commit is similar to following commit for Intel platforms:
>>>> Commit 341f67e424e5 ("net: stmmac: Add hardware supported cross-timestamp")
>>>>
>>>> Signed-off-by: Rohan G Thomas <rohan.g.thomas@altera.com>
>
> [...]
>
>>>> + /* Time sync done Indication - Interrupt method */
>>>> + if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
>>>> + dwxgmac_cross_ts_isr(priv),
>>>> + HZ / 100)) {
>>>> + priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
>>>> + return -ETIMEDOUT;
>>>
>>> Don't you need to set priv->plat->flags |= STMMAC_FLAG_INT_SNAPSHOT_EN first?
>>> Otherwise, timestamp_interrupt() in stmmac_hwtstamp() won't call wake_up()
>>> on the wait_queue.
>>>
>>
>> Thanks for pointing this out. My intention was to use the polling
>> method, but I accidentally left behind some code from experimenting with
>> the interrupt method. While reverting those changes, I missed updating
>> this part of the code. Will fix this in the next revision. Sorry for the
>> error. Currently not seeing any timeout issues with polling method on
>> XGMAC IP. Also some spurios interrupts causing stall when using
>> the interrupt method in XGMAC.
>
> So, if you use the polling method, this will likely bring this code
> even closer to what's implemented in the intel dwmac wrapper. Is this
> the same IP ?
>
AFAIK, this is an Altera specific IP. Altera was part of Intel and may
be the SMTG IP implementation was inspired by ART timer on x86 platforms
:). But for later platforms this may diverge.
Also, latest intel dwmac wrapper is using interrupt method.
> To me it looks like the only difference will be a few
> register offsets (XGMAC vs GMAC), some clock id and the mdio accesses,
> maybe it could be worth considering re-using what's been done on the
> Intel side and avoid duplication...
>
> That could be all moved to stmmac_ptp for instance, using some flag
> in the plat data to indicate if cross timestamping is supported, and
> use the core type (xgmac, gmac, etc.) for the offsets ?
>
Since SMTG or ART is a vendor specific IP, I'm not sure it is good to
move this to the stmmac_ptp. Also, not sure other ways (other than mdio
acess, gpo toggling) to implement hw cross timestamping. Open to
suggestions.
> Of course with the risk of regressing dwmac-intel.c :(
>
> Maxime
Best Regards,
Rohan
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration
2025-10-29 16:14 ` Russell King (Oracle)
@ 2025-10-29 17:14 ` G Thomas, Rohan
0 siblings, 0 replies; 16+ messages in thread
From: G Thomas, Rohan @ 2025-10-29 17:14 UTC (permalink / raw)
To: Russell King (Oracle)
Cc: Maxime Chevallier, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin, Alexandre Torgue,
Richard Cochran, Steffen Trumtrar, netdev, linux-stm32,
linux-arm-kernel, linux-kernel
Hi Russell,
Thanks for reviewing the patch.
On 10/29/2025 9:44 PM, Russell King (Oracle) wrote:
> On Wed, Oct 29, 2025 at 04:06:13PM +0800, Rohan G Thomas via B4 Relay wrote:
>> +static void socfpga_common_plat_dat(struct socfpga_dwmac *dwmac)
>> +{
>> + struct plat_stmmacenet_data *plat_dat = dwmac->plat_dat;
>> +
>> + plat_dat->bsp_priv = dwmac;
>
> Surely this is something which is always done? What's the point in
> moving this to a function that always needs to be called from the
> implementation specific setup_plat_dat() method?
>
Yes, for all the current platforms this is common.
>> + plat_dat->fix_mac_speed = socfpga_dwmac_fix_mac_speed;
>> + plat_dat->init = socfpga_dwmac_init;
>> + plat_dat->pcs_init = socfpga_dwmac_pcs_init;
>> + plat_dat->pcs_exit = socfpga_dwmac_pcs_exit;
>> + plat_dat->select_pcs = socfpga_dwmac_select_pcs;
>
> From what I can see in your patch series, these are never changed.
> So, I question the value of having this "common_plat_dat"
> initialisation function. Why not leave this code in
> socfpga_dwmac_probe(), and just move the initialisation of
> plat_dat->core_type and plat_dat->riwt_off ?
>
Agreed. Will keep it in socfpga_dwmac_probe() itself.
Best Regards,
Rohan
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
2025-10-29 8:06 ` [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp Rohan G Thomas via B4 Relay
2025-10-29 9:50 ` Maxime Chevallier
@ 2025-10-30 5:40 ` kernel test robot
1 sibling, 0 replies; 16+ messages in thread
From: kernel test robot @ 2025-10-30 5:40 UTC (permalink / raw)
To: Rohan G Thomas via B4 Relay, Maxime Chevallier, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Maxime Coquelin, Alexandre Torgue, Richard Cochran,
Steffen Trumtrar
Cc: llvm, oe-kbuild-all, netdev, linux-stm32, linux-arm-kernel,
linux-kernel, Rohan G Thomas
Hi Rohan,
kernel test robot noticed the following build warnings:
[auto build test WARNING on a8abe8e210c175b1d5a7e53df069e107b65c13cb]
url: https://github.com/intel-lab-lkp/linux/commits/Rohan-G-Thomas-via-B4-Relay/net-stmmac-socfpga-Agilex5-EMAC-platform-configuration/20251029-162502
base: a8abe8e210c175b1d5a7e53df069e107b65c13cb
patch link: https://lore.kernel.org/r/20251029-agilex5_ext-v1-4-1931132d77d6%40altera.com
patch subject: [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp
config: loongarch-allmodconfig (https://download.01.org/0day-ci/archive/20251030/202510301322.f0J41mwI-lkp@intel.com/config)
compiler: clang version 19.1.7 (https://github.com/llvm/llvm-project cd708029e0b2869e80abe31ddb175f7c35361f90)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251030/202510301322.f0J41mwI-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202510301322.f0J41mwI-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c:390:9: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
390 | return ret;
| ^~~
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c:312:12: note: initialize the variable 'ret' to silence this warning
312 | int i, ret;
| ^
| = 0
1 warning generated.
vim +/ret +390 drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
301
302 static int smtg_crosststamp(ktime_t *device, struct system_counterval_t *system,
303 void *ctx)
304 {
305 struct stmmac_priv *priv = (struct stmmac_priv *)ctx;
306 u32 num_snapshot, gpio_value, acr_value;
307 void __iomem *ptpaddr = priv->ptpaddr;
308 void __iomem *ioaddr = priv->hw->pcsr;
309 unsigned long flags;
310 u64 smtg_time = 0;
311 u64 ptp_time = 0;
312 int i, ret;
313
314 /* Both internal crosstimestamping and external triggered event
315 * timestamping cannot be run concurrently.
316 */
317 if (priv->plat->flags & STMMAC_FLAG_EXT_SNAPSHOT_EN)
318 return -EBUSY;
319
320 mutex_lock(&priv->aux_ts_lock);
321 /* Enable Internal snapshot trigger */
322 acr_value = readl(ptpaddr + PTP_ACR);
323 acr_value &= ~PTP_ACR_MASK;
324 switch (priv->plat->int_snapshot_num) {
325 case AUX_SNAPSHOT0:
326 acr_value |= PTP_ACR_ATSEN0;
327 break;
328 case AUX_SNAPSHOT1:
329 acr_value |= PTP_ACR_ATSEN1;
330 break;
331 case AUX_SNAPSHOT2:
332 acr_value |= PTP_ACR_ATSEN2;
333 break;
334 case AUX_SNAPSHOT3:
335 acr_value |= PTP_ACR_ATSEN3;
336 break;
337 default:
338 mutex_unlock(&priv->aux_ts_lock);
339 return -EINVAL;
340 }
341 writel(acr_value, ptpaddr + PTP_ACR);
342
343 /* Clear FIFO */
344 acr_value = readl(ptpaddr + PTP_ACR);
345 acr_value |= PTP_ACR_ATSFC;
346 writel(acr_value, ptpaddr + PTP_ACR);
347 /* Release the mutex */
348 mutex_unlock(&priv->aux_ts_lock);
349
350 /* Trigger Internal snapshot signal. Create a rising edge by just toggle
351 * the GPO0 to low and back to high.
352 */
353 gpio_value = readl(ioaddr + XGMAC_GPIO_STATUS);
354 gpio_value &= ~XGMAC_GPIO_GPO0;
355 writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
356 gpio_value |= XGMAC_GPIO_GPO0;
357 writel(gpio_value, ioaddr + XGMAC_GPIO_STATUS);
358
359 /* Time sync done Indication - Interrupt method */
360 if (!wait_event_interruptible_timeout(priv->tstamp_busy_wait,
361 dwxgmac_cross_ts_isr(priv),
362 HZ / 100)) {
363 priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
364 return -ETIMEDOUT;
365 }
366
367 *system = (struct system_counterval_t) {
368 .cycles = 0,
369 .cs_id = CSID_ARM_ARCH_COUNTER,
370 .use_nsecs = true,
371 };
372
373 num_snapshot = (readl(ioaddr + XGMAC_TIMESTAMP_STATUS) &
374 XGMAC_TIMESTAMP_ATSNS_MASK) >>
375 XGMAC_TIMESTAMP_ATSNS_SHIFT;
376
377 /* Repeat until the timestamps are from the FIFO last segment */
378 for (i = 0; i < num_snapshot; i++) {
379 read_lock_irqsave(&priv->ptp_lock, flags);
380 stmmac_get_ptptime(priv, ptpaddr, &ptp_time);
381 *device = ns_to_ktime(ptp_time);
382 read_unlock_irqrestore(&priv->ptp_lock, flags);
383 }
384
385 get_smtgtime(priv->mii, SMTG_MDIO_ADDR, &smtg_time);
386 system->cycles = smtg_time;
387
388 priv->plat->flags &= ~STMMAC_FLAG_INT_SNAPSHOT_EN;
389
> 390 return ret;
391 }
392
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-10-30 5:42 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-29 8:06 [PATCH net-next 0/4] net: stmmac: socfpga: Add Agilex5 platform support and enhancements Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 1/4] net: stmmac: socfpga: Agilex5 EMAC platform configuration Rohan G Thomas via B4 Relay
2025-10-29 13:34 ` Maxime Chevallier
2025-10-29 14:53 ` G Thomas, Rohan
2025-10-29 15:30 ` Maxime Chevallier
2025-10-29 15:32 ` Maxime Chevallier
2025-10-29 16:14 ` Russell King (Oracle)
2025-10-29 17:14 ` G Thomas, Rohan
2025-10-29 8:06 ` [PATCH net-next 2/4] net: stmmac: socfpga: Enable TBS support for Agilex5 Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 3/4] net: stmmac: socfpga: Enable TSO for Agilex5 platform Rohan G Thomas via B4 Relay
2025-10-29 8:06 ` [PATCH net-next 4/4] net: stmmac: socfpga: Add hardware supported cross-timestamp Rohan G Thomas via B4 Relay
2025-10-29 9:50 ` Maxime Chevallier
2025-10-29 14:41 ` G Thomas, Rohan
2025-10-29 15:06 ` Maxime Chevallier
2025-10-29 17:10 ` G Thomas, Rohan
2025-10-30 5:40 ` kernel test robot
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).