* [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event
@ 2024-06-18 7:38 Oleksij Rempel
2024-06-18 13:07 ` Wojciech Drewek
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Oleksij Rempel @ 2024-06-18 7:38 UTC (permalink / raw)
To: Alexandre Torgue, Jose Abreu, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Maxime Coquelin
Cc: Oleksij Rempel, stable, kernel, linux-kernel, netdev,
Richard Cochran, Tan Tee Min, Wong Vee Khee
Assign the configured channel value to the EXTTS event in the timestamp
interrupt handler. Without assigning the correct channel, applications
like ts2phc will refuse to accept the event, resulting in errors such
as:
...
ts2phc[656.834]: config item end1.ts2phc.pin_index is 0
ts2phc[656.834]: config item end1.ts2phc.channel is 3
ts2phc[656.834]: config item end1.ts2phc.extts_polarity is 2
ts2phc[656.834]: config item end1.ts2phc.extts_correction is 0
...
ts2phc[656.862]: extts on unexpected channel
ts2phc[658.141]: extts on unexpected channel
ts2phc[659.140]: extts on unexpected channel
Fixes: f4da56529da60 ("net: stmmac: Add support for external trigger timestamping")
Cc: stable@vger.kernel.org
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
---
drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
index f05bd757dfe52..5ef52ef2698fb 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
@@ -218,6 +218,7 @@ static void timestamp_interrupt(struct stmmac_priv *priv)
{
u32 num_snapshot, ts_status, tsync_int;
struct ptp_clock_event event;
+ u32 acr_value, channel;
unsigned long flags;
u64 ptp_time;
int i;
@@ -243,12 +244,15 @@ static void timestamp_interrupt(struct stmmac_priv *priv)
num_snapshot = (ts_status & GMAC_TIMESTAMP_ATSNS_MASK) >>
GMAC_TIMESTAMP_ATSNS_SHIFT;
+ acr_value = readl(priv->ptpaddr + PTP_ACR);
+ channel = ilog2(FIELD_GET(PTP_ACR_MASK, acr_value));
+
for (i = 0; i < num_snapshot; i++) {
read_lock_irqsave(&priv->ptp_lock, flags);
get_ptptime(priv->ptpaddr, &ptp_time);
read_unlock_irqrestore(&priv->ptp_lock, flags);
event.type = PTP_CLOCK_EXTTS;
- event.index = 0;
+ event.index = channel;
event.timestamp = ptp_time;
ptp_clock_event(priv->ptp_clock, &event);
}
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event
2024-06-18 7:38 [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event Oleksij Rempel
@ 2024-06-18 13:07 ` Wojciech Drewek
2024-06-20 9:55 ` Paolo Abeni
2024-06-20 10:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Wojciech Drewek @ 2024-06-18 13:07 UTC (permalink / raw)
To: Oleksij Rempel, Alexandre Torgue, Jose Abreu, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Maxime Coquelin
Cc: stable, kernel, linux-kernel, netdev, Richard Cochran,
Tan Tee Min, Wong Vee Khee
On 18.06.2024 09:38, Oleksij Rempel wrote:
> Assign the configured channel value to the EXTTS event in the timestamp
> interrupt handler. Without assigning the correct channel, applications
> like ts2phc will refuse to accept the event, resulting in errors such
> as:
> ...
> ts2phc[656.834]: config item end1.ts2phc.pin_index is 0
> ts2phc[656.834]: config item end1.ts2phc.channel is 3
> ts2phc[656.834]: config item end1.ts2phc.extts_polarity is 2
> ts2phc[656.834]: config item end1.ts2phc.extts_correction is 0
> ...
> ts2phc[656.862]: extts on unexpected channel
> ts2phc[658.141]: extts on unexpected channel
> ts2phc[659.140]: extts on unexpected channel
>
> Fixes: f4da56529da60 ("net: stmmac: Add support for external trigger timestamping")
> Cc: stable@vger.kernel.org
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
> ---
Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
> drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
> index f05bd757dfe52..5ef52ef2698fb 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
> @@ -218,6 +218,7 @@ static void timestamp_interrupt(struct stmmac_priv *priv)
> {
> u32 num_snapshot, ts_status, tsync_int;
> struct ptp_clock_event event;
> + u32 acr_value, channel;
> unsigned long flags;
> u64 ptp_time;
> int i;
> @@ -243,12 +244,15 @@ static void timestamp_interrupt(struct stmmac_priv *priv)
> num_snapshot = (ts_status & GMAC_TIMESTAMP_ATSNS_MASK) >>
> GMAC_TIMESTAMP_ATSNS_SHIFT;
>
> + acr_value = readl(priv->ptpaddr + PTP_ACR);
> + channel = ilog2(FIELD_GET(PTP_ACR_MASK, acr_value));
> +
> for (i = 0; i < num_snapshot; i++) {
> read_lock_irqsave(&priv->ptp_lock, flags);
> get_ptptime(priv->ptpaddr, &ptp_time);
> read_unlock_irqrestore(&priv->ptp_lock, flags);
> event.type = PTP_CLOCK_EXTTS;
> - event.index = 0;
> + event.index = channel;
> event.timestamp = ptp_time;
> ptp_clock_event(priv->ptp_clock, &event);
> }
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event
2024-06-18 7:38 [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event Oleksij Rempel
2024-06-18 13:07 ` Wojciech Drewek
@ 2024-06-20 9:55 ` Paolo Abeni
2024-06-20 10:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Paolo Abeni @ 2024-06-20 9:55 UTC (permalink / raw)
To: Oleksij Rempel, Alexandre Torgue, Jose Abreu, David S. Miller,
Eric Dumazet, Jakub Kicinski, Maxime Coquelin
Cc: stable, kernel, linux-kernel, netdev, Richard Cochran,
Tan Tee Min, Wong Vee Khee
On Tue, 2024-06-18 at 09:38 +0200, Oleksij Rempel wrote:
> @@ -243,12 +244,15 @@ static void timestamp_interrupt(struct stmmac_priv *priv)
> num_snapshot = (ts_status & GMAC_TIMESTAMP_ATSNS_MASK) >>
> GMAC_TIMESTAMP_ATSNS_SHIFT;
>
> + acr_value = readl(priv->ptpaddr + PTP_ACR);
> + channel = ilog2(FIELD_GET(PTP_ACR_MASK, acr_value));
Side note for a possible net-next follow-up: as the driver already has
an equal snippet in stmmac_enable(), you con consider factor it out in
a common, more readable helper.
Cheers,
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event
2024-06-18 7:38 [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event Oleksij Rempel
2024-06-18 13:07 ` Wojciech Drewek
2024-06-20 9:55 ` Paolo Abeni
@ 2024-06-20 10:00 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-06-20 10:00 UTC (permalink / raw)
To: Oleksij Rempel
Cc: alexandre.torgue, joabreu, davem, edumazet, kuba, pabeni,
mcoquelin.stm32, stable, kernel, linux-kernel, netdev,
richardcochran, tee.min.tan, vee.khee.wong
Hello:
This patch was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:
On Tue, 18 Jun 2024 09:38:21 +0200 you wrote:
> Assign the configured channel value to the EXTTS event in the timestamp
> interrupt handler. Without assigning the correct channel, applications
> like ts2phc will refuse to accept the event, resulting in errors such
> as:
> ...
> ts2phc[656.834]: config item end1.ts2phc.pin_index is 0
> ts2phc[656.834]: config item end1.ts2phc.channel is 3
> ts2phc[656.834]: config item end1.ts2phc.extts_polarity is 2
> ts2phc[656.834]: config item end1.ts2phc.extts_correction is 0
> ...
> ts2phc[656.862]: extts on unexpected channel
> ts2phc[658.141]: extts on unexpected channel
> ts2phc[659.140]: extts on unexpected channel
>
> [...]
Here is the summary with links:
- [net,v1,1/1] net: stmmac: Assign configured channel value to EXTTS event
https://git.kernel.org/netdev/net/c/8851346912a1
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-20 10:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 7:38 [PATCH net v1 1/1] net: stmmac: Assign configured channel value to EXTTS event Oleksij Rempel
2024-06-18 13:07 ` Wojciech Drewek
2024-06-20 9:55 ` Paolo Abeni
2024-06-20 10:00 ` 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;
as well as URLs for NNTP newsgroup(s).