]> git.baikalelectronics.ru Git - kernel.git/commit
net: dsa: LAN9303: Add early read to sync
authorJerry Ray <jerry.ray@microchip.com>
Fri, 2 Sep 2022 21:30:20 +0000 (16:30 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 7 Sep 2022 10:06:04 +0000 (11:06 +0100)
commitf8417e6758a5fced875589a3ded3441e62b9b8bb
treece0cc7ceef66cc4f34f68d00e801e573c700943b
parent6b8a4a42dcff4816a4fda25df68f39b297af890d
net: dsa: LAN9303: Add early read to sync

Add initial BYTE_ORDER read to sync the 32-bit accesses over the 16-bit
mdio bus to improve driver robustness.

The lan9303 expects two mdio read transactions back-to-back to read a
32-bit register. The first read transaction causes the other half of the
32-bit register to get latched.  The subsequent read returns the latched
second half of the 32-bit read. The BYTE_ORDER register is an exception to
this rule. As it is a constant value, there is no need to latch the second
half. We read this register first in case there were reads during the boot
loader process that might have occurred prior to this driver taking over
ownership of accessing this device.

This patch has been tested on the SAMA5D3-EDS with a LAN9303 RMII daughter
card.

Signed-off-by: Jerry Ray <jerry.ray@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/lan9303-core.c