Skip to content

Commit b718e8c

Browse files
agamezdavem330
authored andcommitted
net: phy: dp83822: use BMCR_ANENABLE instead of BMSR_ANEGCAPABLE for DP83620
DP83620 register set is compatible with the DP83848, but it also supports 100base-FX. When the hardware is configured such as that fiber mode is enabled, autonegotiation is not possible. The chip, however, doesn't expose this information via BMSR_ANEGCAPABLE. Instead, this bit is always set high, even if the particular hardware configuration makes it so that auto negotiation is not possible [1]. Under these circumstances, the phy subsystem keeps trying for autonegotiation to happen, without success. Hereby, we inspect BMCR_ANENABLE bit after genphy_config_init, which on reset is set to 0 when auto negotiation is disabled, and so we use this value instead of BMSR_ANEGCAPABLE. [1] https://e2e.ti.com/support/interface/ethernet/f/903/p/697165/2571170 Signed-off-by: Alvaro Gamez Machado <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6d8c50d commit b718e8c

File tree

1 file changed

+29
-6
lines changed

1 file changed

+29
-6
lines changed

drivers/net/phy/dp83848.c

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,25 @@ static int dp83848_config_intr(struct phy_device *phydev)
7474
return phy_write(phydev, DP83848_MICR, control);
7575
}
7676

77+
static int dp83848_config_init(struct phy_device *phydev)
78+
{
79+
int err;
80+
int val;
81+
82+
err = genphy_config_init(phydev);
83+
if (err < 0)
84+
return err;
85+
86+
/* DP83620 always reports Auto Negotiation Ability on BMSR. Instead,
87+
* we check initial value of BMCR Auto negotiation enable bit
88+
*/
89+
val = phy_read(phydev, MII_BMCR);
90+
if (!(val & BMCR_ANENABLE))
91+
phydev->autoneg = AUTONEG_DISABLE;
92+
93+
return 0;
94+
}
95+
7796
static struct mdio_device_id __maybe_unused dp83848_tbl[] = {
7897
{ TI_DP83848C_PHY_ID, 0xfffffff0 },
7998
{ NS_DP83848C_PHY_ID, 0xfffffff0 },
@@ -83,7 +102,7 @@ static struct mdio_device_id __maybe_unused dp83848_tbl[] = {
83102
};
84103
MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
85104

86-
#define DP83848_PHY_DRIVER(_id, _name) \
105+
#define DP83848_PHY_DRIVER(_id, _name, _config_init) \
87106
{ \
88107
.phy_id = _id, \
89108
.phy_id_mask = 0xfffffff0, \
@@ -92,7 +111,7 @@ MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
92111
.flags = PHY_HAS_INTERRUPT, \
93112
\
94113
.soft_reset = genphy_soft_reset, \
95-
.config_init = genphy_config_init, \
114+
.config_init = _config_init, \
96115
.suspend = genphy_suspend, \
97116
.resume = genphy_resume, \
98117
\
@@ -102,10 +121,14 @@ MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
102121
}
103122

104123
static struct phy_driver dp83848_driver[] = {
105-
DP83848_PHY_DRIVER(TI_DP83848C_PHY_ID, "TI DP83848C 10/100 Mbps PHY"),
106-
DP83848_PHY_DRIVER(NS_DP83848C_PHY_ID, "NS DP83848C 10/100 Mbps PHY"),
107-
DP83848_PHY_DRIVER(TI_DP83620_PHY_ID, "TI DP83620 10/100 Mbps PHY"),
108-
DP83848_PHY_DRIVER(TLK10X_PHY_ID, "TI TLK10X 10/100 Mbps PHY"),
124+
DP83848_PHY_DRIVER(TI_DP83848C_PHY_ID, "TI DP83848C 10/100 Mbps PHY",
125+
genphy_config_init),
126+
DP83848_PHY_DRIVER(NS_DP83848C_PHY_ID, "NS DP83848C 10/100 Mbps PHY",
127+
genphy_config_init),
128+
DP83848_PHY_DRIVER(TI_DP83620_PHY_ID, "TI DP83620 10/100 Mbps PHY",
129+
dp83848_config_init),
130+
DP83848_PHY_DRIVER(TLK10X_PHY_ID, "TI TLK10X 10/100 Mbps PHY",
131+
genphy_config_init),
109132
};
110133
module_phy_driver(dp83848_driver);
111134

0 commit comments

Comments
 (0)