Commit 732f374e authored by Jerry Ray's avatar Jerry Ray Committed by David S. Miller

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: default avatarJerry Ray <jerry.ray@microchip.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6674e7fd
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#define LAN9303_INT_EN 0x17 #define LAN9303_INT_EN 0x17
# define LAN9303_INT_EN_PHY_INT2_EN BIT(27) # define LAN9303_INT_EN_PHY_INT2_EN BIT(27)
# define LAN9303_INT_EN_PHY_INT1_EN BIT(26) # define LAN9303_INT_EN_PHY_INT1_EN BIT(26)
#define LAN9303_BYTE_ORDER 0x19
#define LAN9303_HW_CFG 0x1D #define LAN9303_HW_CFG 0x1D
# define LAN9303_HW_CFG_READY BIT(27) # define LAN9303_HW_CFG_READY BIT(27)
# define LAN9303_HW_CFG_AMDX_EN_PORT2 BIT(26) # define LAN9303_HW_CFG_AMDX_EN_PORT2 BIT(26)
...@@ -851,10 +852,6 @@ static int lan9303_check_device(struct lan9303 *chip) ...@@ -851,10 +852,6 @@ static int lan9303_check_device(struct lan9303 *chip)
if (ret) { if (ret) {
dev_err(chip->dev, "failed to read chip revision register: %d\n", dev_err(chip->dev, "failed to read chip revision register: %d\n",
ret); ret);
if (!chip->reset_gpio) {
dev_dbg(chip->dev,
"hint: maybe failed due to missing reset GPIO\n");
}
return ret; return ret;
} }
...@@ -1349,6 +1346,7 @@ static int lan9303_probe_reset_gpio(struct lan9303 *chip, ...@@ -1349,6 +1346,7 @@ static int lan9303_probe_reset_gpio(struct lan9303 *chip,
int lan9303_probe(struct lan9303 *chip, struct device_node *np) int lan9303_probe(struct lan9303 *chip, struct device_node *np)
{ {
int ret; int ret;
u32 reg;
mutex_init(&chip->indirect_mutex); mutex_init(&chip->indirect_mutex);
mutex_init(&chip->alr_mutex); mutex_init(&chip->alr_mutex);
...@@ -1359,6 +1357,19 @@ int lan9303_probe(struct lan9303 *chip, struct device_node *np) ...@@ -1359,6 +1357,19 @@ int lan9303_probe(struct lan9303 *chip, struct device_node *np)
lan9303_handle_reset(chip); lan9303_handle_reset(chip);
/* First read to the device. This is a Dummy read to ensure MDIO */
/* access is in 32-bit sync. */
ret = lan9303_read(chip->regmap, LAN9303_BYTE_ORDER, &reg);
if (ret) {
dev_err(chip->dev, "failed to access the device: %d\n",
ret);
if (!chip->reset_gpio) {
dev_dbg(chip->dev,
"hint: maybe failed due to missing reset GPIO\n");
}
return ret;
}
ret = lan9303_check_device(chip); ret = lan9303_check_device(chip);
if (ret) if (ret)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment