Skip to content

Commit d79d303

Browse files
vladimirolteandavem330
authored andcommitted
enetc: Set MDIO_CFG_HOLD to the recommended value of 2
This increases the MDIO hold time to 5 enet_clk cycles from the previous value of 0. This is actually the out-of-reset value, that the driver was previously overwriting with 0. Zero worked for the external MDIO, but breaks communication with the internal MDIO buses on which the PCS of ENETC SI's and Felix switch are found. Signed-off-by: Vladimir Oltean <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6517798 commit d79d303

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

drivers/net/ethernet/freescale/enetc/enetc_mdio.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,19 @@ static inline void _enetc_mdio_wr(struct enetc_mdio_priv *mdio_priv, int off,
3131
_enetc_mdio_wr(mdio_priv, ENETC_##off, val)
3232
#define enetc_mdio_rd_reg(off) enetc_mdio_rd(mdio_priv, off)
3333

34-
#define ENETC_MDC_DIV 258
35-
3634
#define MDIO_CFG_CLKDIV(x) ((((x) >> 1) & 0xff) << 8)
3735
#define MDIO_CFG_BSY BIT(0)
3836
#define MDIO_CFG_RD_ER BIT(1)
37+
#define MDIO_CFG_HOLD(x) (((x) << 2) & GENMASK(4, 2))
3938
#define MDIO_CFG_ENC45 BIT(6)
4039
/* external MDIO only - driven on neg MDC edge */
4140
#define MDIO_CFG_NEG BIT(23)
4241

42+
#define ENETC_EMDIO_CFG \
43+
(MDIO_CFG_HOLD(2) | \
44+
MDIO_CFG_CLKDIV(258) | \
45+
MDIO_CFG_NEG)
46+
4347
#define MDIO_CTL_DEV_ADDR(x) ((x) & 0x1f)
4448
#define MDIO_CTL_PORT_ADDR(x) (((x) & 0x1f) << 5)
4549
#define MDIO_CTL_READ BIT(15)
@@ -61,7 +65,7 @@ int enetc_mdio_write(struct mii_bus *bus, int phy_id, int regnum, u16 value)
6165
u16 dev_addr;
6266
int ret;
6367

64-
mdio_cfg = MDIO_CFG_CLKDIV(ENETC_MDC_DIV) | MDIO_CFG_NEG;
68+
mdio_cfg = ENETC_EMDIO_CFG;
6569
if (regnum & MII_ADDR_C45) {
6670
dev_addr = (regnum >> 16) & 0x1f;
6771
mdio_cfg |= MDIO_CFG_ENC45;
@@ -108,7 +112,7 @@ int enetc_mdio_read(struct mii_bus *bus, int phy_id, int regnum)
108112
u16 dev_addr, value;
109113
int ret;
110114

111-
mdio_cfg = MDIO_CFG_CLKDIV(ENETC_MDC_DIV) | MDIO_CFG_NEG;
115+
mdio_cfg = ENETC_EMDIO_CFG;
112116
if (regnum & MII_ADDR_C45) {
113117
dev_addr = (regnum >> 16) & 0x1f;
114118
mdio_cfg |= MDIO_CFG_ENC45;

0 commit comments

Comments
 (0)