* [PATCH net-next] net: mdio: aspeed: add dummy read to avoid read-after-write issue
@ 2025-12-05 1:37 Jacky Chou
2025-12-05 13:52 ` Andrew Lunn
0 siblings, 1 reply; 3+ messages in thread
From: Jacky Chou @ 2025-12-05 1:37 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit, Russell King, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Joel Stanley,
Andrew Jeffery
Cc: netdev, linux-arm-kernel, linux-aspeed, linux-kernel, Jacky Chou
The Aspeed MDIO controller may return incorrect data when a read operation
follows immediately after a write. Due to a controller bug, the subsequent
read can latch stale data, causing the polling logic to terminate earlier
than expected.
To work around this hardware issue, insert a dummy read after each write
operation. This ensures that the next actual read returns the correct
data and prevents premature polling exit.
This workaround has been verified to stabilize MDIO transactions on
affected Aspeed platforms.
Signed-off-by: Jacky Chou <jacky_chou@aspeedtech.com>
---
drivers/net/mdio/mdio-aspeed.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/net/mdio/mdio-aspeed.c b/drivers/net/mdio/mdio-aspeed.c
index e55be6dc9ae7..00e61b922876 100644
--- a/drivers/net/mdio/mdio-aspeed.c
+++ b/drivers/net/mdio/mdio-aspeed.c
@@ -62,6 +62,12 @@ static int aspeed_mdio_op(struct mii_bus *bus, u8 st, u8 op, u8 phyad, u8 regad,
| FIELD_PREP(ASPEED_MDIO_DATA_MIIRDATA, data);
iowrite32(ctrl, ctx->base + ASPEED_MDIO_CTRL);
+ /* Workaround for read-after-write issue.
+ * The controller may return stale data if a read follows immediately
+ * after a write. A dummy read forces the hardware to update its
+ * internal state, ensuring that the next real read returns correct data.
+ */
+ (void)ioread32(ctx->base + ASPEED_MDIO_CTRL);
return readl_poll_timeout(ctx->base + ASPEED_MDIO_CTRL, ctrl,
!(ctrl & ASPEED_MDIO_CTRL_FIRE),
---
base-commit: 8f7aa3d3c7323f4ca2768a9e74ebbe359c4f8f88
change-id: 20251205-aspeed_mdio_add_dummy_read-d58d1e49412d
Best regards,
--
Jacky Chou <jacky_chou@aspeedtech.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] net: mdio: aspeed: add dummy read to avoid read-after-write issue
2025-12-05 1:37 [PATCH net-next] net: mdio: aspeed: add dummy read to avoid read-after-write issue Jacky Chou
@ 2025-12-05 13:52 ` Andrew Lunn
2025-12-08 3:13 ` Jacky Chou
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Lunn @ 2025-12-05 13:52 UTC (permalink / raw)
To: Jacky Chou
Cc: Heiner Kallweit, Russell King, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Joel Stanley, Andrew Jeffery,
netdev, linux-arm-kernel, linux-aspeed, linux-kernel
On Fri, Dec 05, 2025 at 09:37:22AM +0800, Jacky Chou wrote:
> The Aspeed MDIO controller may return incorrect data when a read operation
> follows immediately after a write. Due to a controller bug, the subsequent
> read can latch stale data, causing the polling logic to terminate earlier
> than expected.
>
> To work around this hardware issue, insert a dummy read after each write
> operation. This ensures that the next actual read returns the correct
> data and prevents premature polling exit.
>
> This workaround has been verified to stabilize MDIO transactions on
> affected Aspeed platforms.
>
> Signed-off-by: Jacky Chou <jacky_chou@aspeedtech.com>
This seems like a bug fix. Please add a Fixes: tag, for base it on
net, not net-next.
> ---
> drivers/net/mdio/mdio-aspeed.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/net/mdio/mdio-aspeed.c b/drivers/net/mdio/mdio-aspeed.c
> index e55be6dc9ae7..00e61b922876 100644
> --- a/drivers/net/mdio/mdio-aspeed.c
> +++ b/drivers/net/mdio/mdio-aspeed.c
> @@ -62,6 +62,12 @@ static int aspeed_mdio_op(struct mii_bus *bus, u8 st, u8 op, u8 phyad, u8 regad,
> | FIELD_PREP(ASPEED_MDIO_DATA_MIIRDATA, data);
>
> iowrite32(ctrl, ctx->base + ASPEED_MDIO_CTRL);
> + /* Workaround for read-after-write issue.
Blank line before the comment please.
Andrew
---
pw-bot: cr
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH net-next] net: mdio: aspeed: add dummy read to avoid read-after-write issue
2025-12-05 13:52 ` Andrew Lunn
@ 2025-12-08 3:13 ` Jacky Chou
0 siblings, 0 replies; 3+ messages in thread
From: Jacky Chou @ 2025-12-08 3:13 UTC (permalink / raw)
To: Andrew Lunn
Cc: Heiner Kallweit, Russell King, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Joel Stanley, Andrew Jeffery,
netdev, linux-arm-kernel, linux-aspeed, linux-kernel
Hi Andrew,
Thank you for your reply
> > The Aspeed MDIO controller may return incorrect data when a read
> > operation follows immediately after a write. Due to a controller bug,
> > the subsequent read can latch stale data, causing the polling logic to
> > terminate earlier than expected.
> >
> > To work around this hardware issue, insert a dummy read after each
> > write operation. This ensures that the next actual read returns the
> > correct data and prevents premature polling exit.
> >
> > This workaround has been verified to stabilize MDIO transactions on
> > affected Aspeed platforms.
> >
> > Signed-off-by: Jacky Chou <jacky_chou@aspeedtech.com>
>
> This seems like a bug fix. Please add a Fixes: tag, for base it on net, not
> net-next.
>
Yes, it is a bug fix on HW design.
I will send it to net again and add Fixes tag.
> > ---
> > drivers/net/mdio/mdio-aspeed.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/drivers/net/mdio/mdio-aspeed.c
> > b/drivers/net/mdio/mdio-aspeed.c index e55be6dc9ae7..00e61b922876
> > 100644
> > --- a/drivers/net/mdio/mdio-aspeed.c
> > +++ b/drivers/net/mdio/mdio-aspeed.c
> > @@ -62,6 +62,12 @@ static int aspeed_mdio_op(struct mii_bus *bus, u8 st,
> u8 op, u8 phyad, u8 regad,
> > | FIELD_PREP(ASPEED_MDIO_DATA_MIIRDATA, data);
> >
> > iowrite32(ctrl, ctx->base + ASPEED_MDIO_CTRL);
> > + /* Workaround for read-after-write issue.
>
> Blank line before the comment please.
>
Agreed.
Thanks,
Jacky
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-12-08 3:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-05 1:37 [PATCH net-next] net: mdio: aspeed: add dummy read to avoid read-after-write issue Jacky Chou
2025-12-05 13:52 ` Andrew Lunn
2025-12-08 3:13 ` Jacky Chou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®