[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <2460cc37a4138d3cfb598349e78f0c5f3cfa59c7.1651071936.git.baruch@tkos.co.il>
Date: Wed, 27 Apr 2022 18:05:36 +0300
From: Baruch Siach <baruch@...s.co.il>
To: Marcin Wojtas <mw@...ihalf.com>,
Russell King <linux@...linux.org.uk>
Cc: netdev@...r.kernel.org, Baruch Siach <baruch.siach@...lu.com>
Subject: [PATCH] net: mvpp2: add delay at the end of .mac_prepare
From: Baruch Siach <baruch.siach@...lu.com>
Without this delay PHY mode switch from XLG to SGMII fails in a weird
way. Rx side works. However, Tx appears to work as far as the MAC is
concerned, but packets don't show up on the wire.
Tested with Marvell 10G 88X3310 PHY.
Signed-off-by: Baruch Siach <baruch.siach@...lu.com>
---
Not sure this is the right fix. Let me know if you have any better
suggestion for me to test.
The same issue and fix reproduce with both v5.18-rc4 and v5.10.110.
---
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
index 1a835b48791b..8823efe396b1 100644
--- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
+++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
@@ -6432,6 +6432,8 @@ static int mvpp2_mac_prepare(struct phylink_config *config, unsigned int mode,
}
}
+ mdelay(10);
+
return 0;
}
--
2.35.1
Powered by blists - more mailing lists