net: ethernet: Add helper to remove a supported link mode
Some MAC hardware cannot support a subset of link modes. e.g. often 1Gbps Full duplex is supported, but Half duplex is not. Add a helper to remove such a link mode. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
04b7d41d80
commit
41124fa64d
@ -895,9 +895,9 @@ int xgene_enet_phy_connect(struct net_device *ndev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
pdata->phy_speed = SPEED_UNKNOWN;
|
pdata->phy_speed = SPEED_UNKNOWN;
|
||||||
phy_dev->supported &= ~SUPPORTED_10baseT_Half &
|
phy_remove_link_mode(phy_dev, ETHTOOL_LINK_MODE_10baseT_Half_BIT);
|
||||||
~SUPPORTED_100baseT_Half &
|
phy_remove_link_mode(phy_dev, ETHTOOL_LINK_MODE_100baseT_Half_BIT);
|
||||||
~SUPPORTED_1000baseT_Half;
|
phy_remove_link_mode(phy_dev, ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
phy_dev->supported |= SUPPORTED_Pause |
|
phy_dev->supported |= SUPPORTED_Pause |
|
||||||
SUPPORTED_Asym_Pause;
|
SUPPORTED_Asym_Pause;
|
||||||
phy_dev->advertising = phy_dev->supported;
|
phy_dev->advertising = phy_dev->supported;
|
||||||
|
@ -549,9 +549,8 @@ static int macb_mii_probe(struct net_device *dev)
|
|||||||
phy_set_max_speed(phydev, SPEED_100);
|
phy_set_max_speed(phydev, SPEED_100);
|
||||||
|
|
||||||
if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
|
if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
|
||||||
phydev->supported &= ~SUPPORTED_1000baseT_Half;
|
phy_remove_link_mode(phydev,
|
||||||
|
ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
phydev->advertising = phydev->supported;
|
|
||||||
|
|
||||||
bp->link = 0;
|
bp->link = 0;
|
||||||
bp->speed = 0;
|
bp->speed = 0;
|
||||||
|
@ -1947,7 +1947,8 @@ static int fec_enet_mii_probe(struct net_device *ndev)
|
|||||||
/* mask with MAC supported features */
|
/* mask with MAC supported features */
|
||||||
if (fep->quirks & FEC_QUIRK_HAS_GBIT) {
|
if (fep->quirks & FEC_QUIRK_HAS_GBIT) {
|
||||||
phy_set_max_speed(phy_dev, 1000);
|
phy_set_max_speed(phy_dev, 1000);
|
||||||
phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
|
phy_remove_link_mode(phy_dev,
|
||||||
|
ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
#if !defined(CONFIG_M5272)
|
#if !defined(CONFIG_M5272)
|
||||||
phy_dev->supported |= SUPPORTED_Pause;
|
phy_dev->supported |= SUPPORTED_Pause;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1013,7 +1013,7 @@ static int lan743x_phy_open(struct lan743x_adapter *adapter)
|
|||||||
goto return_error;
|
goto return_error;
|
||||||
|
|
||||||
/* MAC doesn't support 1000T Half */
|
/* MAC doesn't support 1000T Half */
|
||||||
phydev->supported &= ~SUPPORTED_1000baseT_Half;
|
phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
|
|
||||||
/* support both flow controls */
|
/* support both flow controls */
|
||||||
phy->fc_request_control = (FLOW_CTRL_RX | FLOW_CTRL_TX);
|
phy->fc_request_control = (FLOW_CTRL_RX | FLOW_CTRL_TX);
|
||||||
|
@ -1074,7 +1074,8 @@ static int ravb_phy_init(struct net_device *ndev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* 10BASE is not supported */
|
/* 10BASE is not supported */
|
||||||
phydev->supported &= ~PHY_10BT_FEATURES;
|
phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Half_BIT);
|
||||||
|
phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Full_BIT);
|
||||||
|
|
||||||
phy_attached_info(phydev);
|
phy_attached_info(phydev);
|
||||||
|
|
||||||
|
@ -993,10 +993,14 @@ static int stmmac_init_phy(struct net_device *dev)
|
|||||||
* Half-duplex mode not supported with multiqueue
|
* Half-duplex mode not supported with multiqueue
|
||||||
* half-duplex can only works with single queue
|
* half-duplex can only works with single queue
|
||||||
*/
|
*/
|
||||||
if (tx_cnt > 1)
|
if (tx_cnt > 1) {
|
||||||
phydev->supported &= ~(SUPPORTED_1000baseT_Half |
|
phy_remove_link_mode(phydev,
|
||||||
SUPPORTED_100baseT_Half |
|
ETHTOOL_LINK_MODE_10baseT_Half_BIT);
|
||||||
SUPPORTED_10baseT_Half);
|
phy_remove_link_mode(phydev,
|
||||||
|
ETHTOOL_LINK_MODE_100baseT_Half_BIT);
|
||||||
|
phy_remove_link_mode(phydev,
|
||||||
|
ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Broken HW is sometimes missing the pull-up resistor on the
|
* Broken HW is sometimes missing the pull-up resistor on the
|
||||||
|
@ -1765,6 +1765,24 @@ int phy_set_max_speed(struct phy_device *phydev, u32 max_speed)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(phy_set_max_speed);
|
EXPORT_SYMBOL(phy_set_max_speed);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* phy_remove_link_mode - Remove a supported link mode
|
||||||
|
* @phydev: phy_device structure to remove link mode from
|
||||||
|
* @link_mode: Link mode to be removed
|
||||||
|
*
|
||||||
|
* Description: Some MACs don't support all link modes which the PHY
|
||||||
|
* does. e.g. a 1G MAC often does not support 1000Half. Add a helper
|
||||||
|
* to remove a link mode.
|
||||||
|
*/
|
||||||
|
void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
|
||||||
|
{
|
||||||
|
WARN_ON(link_mode > 31);
|
||||||
|
|
||||||
|
phydev->supported &= ~BIT(link_mode);
|
||||||
|
phydev->advertising = phydev->supported;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(phy_remove_link_mode);
|
||||||
|
|
||||||
static void of_set_phy_supported(struct phy_device *phydev)
|
static void of_set_phy_supported(struct phy_device *phydev)
|
||||||
{
|
{
|
||||||
struct device_node *node = phydev->mdio.dev.of_node;
|
struct device_node *node = phydev->mdio.dev.of_node;
|
||||||
|
@ -2166,7 +2166,7 @@ static int lan78xx_phy_init(struct lan78xx_net *dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* MAC doesn't support 1000T Half */
|
/* MAC doesn't support 1000T Half */
|
||||||
phydev->supported &= ~SUPPORTED_1000baseT_Half;
|
phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
|
||||||
|
|
||||||
/* support both flow controls */
|
/* support both flow controls */
|
||||||
dev->fc_request_control = (FLOW_CTRL_RX | FLOW_CTRL_TX);
|
dev->fc_request_control = (FLOW_CTRL_RX | FLOW_CTRL_TX);
|
||||||
|
@ -1049,6 +1049,7 @@ int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd);
|
|||||||
int phy_start_interrupts(struct phy_device *phydev);
|
int phy_start_interrupts(struct phy_device *phydev);
|
||||||
void phy_print_status(struct phy_device *phydev);
|
void phy_print_status(struct phy_device *phydev);
|
||||||
int phy_set_max_speed(struct phy_device *phydev, u32 max_speed);
|
int phy_set_max_speed(struct phy_device *phydev, u32 max_speed);
|
||||||
|
void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode);
|
||||||
|
|
||||||
int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
|
int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
|
||||||
int (*run)(struct phy_device *));
|
int (*run)(struct phy_device *));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user