mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 22:57:21 -04:00
Merge branch 'net-phy-switch-eee_broken_modes-to-linkmode-bitmap-and-add-accessor'
Heiner Kallweit says: ==================== net: phy: switch eee_broken_modes to linkmode bitmap and add accessor eee_broken_modes has a eee_cap1 register layout currently. This doesn't allow to flag e.g. 2.5Gbps or 5Gbps BaseT EEE as broken. To overcome this limitation switch eee_broken_modes to a linkmode bitmap. Add an accessor for the bitmap and use it in r8169. ==================== Link: https://patch.msgid.link/405734c5-0ed4-40e4-9ac9-91084b9536d6@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
@@ -5228,6 +5228,12 @@ static int r8169_mdio_register(struct rtl8169_private *tp)
|
||||
phy_support_eee(tp->phydev);
|
||||
phy_support_asym_pause(tp->phydev);
|
||||
|
||||
/* mimic behavior of r8125/r8126 vendor drivers */
|
||||
if (tp->mac_version == RTL_GIGA_MAC_VER_61)
|
||||
phy_set_eee_broken(tp->phydev,
|
||||
ETHTOOL_LINK_MODE_2500baseT_Full_BIT);
|
||||
phy_set_eee_broken(tp->phydev, ETHTOOL_LINK_MODE_5000baseT_Full_BIT);
|
||||
|
||||
/* PHY will be woken up in rtl_open() */
|
||||
phy_suspend(tp->phydev);
|
||||
|
||||
|
||||
@@ -96,15 +96,7 @@ static void rtl8125_common_config_eee_phy(struct phy_device *phydev)
|
||||
phy_modify_paged(phydev, 0xa4a, 0x11, 0x0200, 0x0000);
|
||||
}
|
||||
|
||||
static void rtl8125a_config_eee_phy(struct phy_device *phydev)
|
||||
{
|
||||
rtl8168g_config_eee_phy(phydev);
|
||||
/* disable EEE at 2.5Gbps */
|
||||
phy_modify_paged(phydev, 0xa6d, 0x12, 0x0001, 0x0000);
|
||||
rtl8125_common_config_eee_phy(phydev);
|
||||
}
|
||||
|
||||
static void rtl8125b_config_eee_phy(struct phy_device *phydev)
|
||||
static void rtl8125_config_eee_phy(struct phy_device *phydev)
|
||||
{
|
||||
rtl8168g_config_eee_phy(phydev);
|
||||
rtl8125_common_config_eee_phy(phydev);
|
||||
@@ -1066,7 +1058,7 @@ static void rtl8125a_2_hw_phy_config(struct rtl8169_private *tp,
|
||||
rtl8168g_enable_gphy_10m(phydev);
|
||||
|
||||
rtl8168g_disable_aldps(phydev);
|
||||
rtl8125a_config_eee_phy(phydev);
|
||||
rtl8125_config_eee_phy(phydev);
|
||||
}
|
||||
|
||||
static void rtl8125b_hw_phy_config(struct rtl8169_private *tp,
|
||||
@@ -1106,7 +1098,7 @@ static void rtl8125b_hw_phy_config(struct rtl8169_private *tp,
|
||||
|
||||
rtl8125_legacy_force_mode(phydev);
|
||||
rtl8168g_disable_aldps(phydev);
|
||||
rtl8125b_config_eee_phy(phydev);
|
||||
rtl8125_config_eee_phy(phydev);
|
||||
}
|
||||
|
||||
static void rtl8125d_hw_phy_config(struct rtl8169_private *tp,
|
||||
@@ -1116,7 +1108,7 @@ static void rtl8125d_hw_phy_config(struct rtl8169_private *tp,
|
||||
rtl8168g_enable_gphy_10m(phydev);
|
||||
rtl8125_legacy_force_mode(phydev);
|
||||
rtl8168g_disable_aldps(phydev);
|
||||
rtl8125b_config_eee_phy(phydev);
|
||||
rtl8125_config_eee_phy(phydev);
|
||||
}
|
||||
|
||||
static void rtl8126a_hw_phy_config(struct rtl8169_private *tp,
|
||||
|
||||
@@ -2004,7 +2004,7 @@ static int ksz9477_config_init(struct phy_device *phydev)
|
||||
* in this switch shall be regarded as broken.
|
||||
*/
|
||||
if (phydev->dev_flags & MICREL_NO_EEE)
|
||||
phydev->eee_broken_modes = -1;
|
||||
linkmode_fill(phydev->eee_broken_modes);
|
||||
|
||||
return kszphy_config_init(phydev);
|
||||
}
|
||||
|
||||
@@ -683,15 +683,13 @@ EXPORT_SYMBOL_GPL(genphy_c45_read_mdix);
|
||||
static int genphy_c45_write_eee_adv(struct phy_device *phydev,
|
||||
unsigned long *adv)
|
||||
{
|
||||
__ETHTOOL_DECLARE_LINK_MODE_MASK(tmp);
|
||||
int val, changed = 0;
|
||||
|
||||
if (linkmode_intersects(phydev->supported_eee, PHY_EEE_CAP1_FEATURES)) {
|
||||
val = linkmode_to_mii_eee_cap1_t(adv);
|
||||
linkmode_andnot(tmp, adv, phydev->eee_broken_modes);
|
||||
|
||||
/* In eee_broken_modes are stored MDIO_AN_EEE_ADV specific raw
|
||||
* register values.
|
||||
*/
|
||||
val &= ~phydev->eee_broken_modes;
|
||||
if (linkmode_intersects(phydev->supported_eee, PHY_EEE_CAP1_FEATURES)) {
|
||||
val = linkmode_to_mii_eee_cap1_t(tmp);
|
||||
|
||||
/* IEEE 802.3-2018 45.2.7.13 EEE advertisement 1
|
||||
* (Register 7.60)
|
||||
@@ -709,7 +707,7 @@ static int genphy_c45_write_eee_adv(struct phy_device *phydev,
|
||||
}
|
||||
|
||||
if (linkmode_intersects(phydev->supported_eee, PHY_EEE_CAP2_FEATURES)) {
|
||||
val = linkmode_to_mii_eee_cap2_t(adv);
|
||||
val = linkmode_to_mii_eee_cap2_t(tmp);
|
||||
|
||||
/* IEEE 802.3-2022 45.2.7.16 EEE advertisement 2
|
||||
* (Register 7.62)
|
||||
|
||||
@@ -388,28 +388,25 @@ void of_set_phy_supported(struct phy_device *phydev)
|
||||
void of_set_phy_eee_broken(struct phy_device *phydev)
|
||||
{
|
||||
struct device_node *node = phydev->mdio.dev.of_node;
|
||||
u32 broken = 0;
|
||||
unsigned long *modes = phydev->eee_broken_modes;
|
||||
|
||||
if (!IS_ENABLED(CONFIG_OF_MDIO))
|
||||
if (!IS_ENABLED(CONFIG_OF_MDIO) || !node)
|
||||
return;
|
||||
|
||||
if (!node)
|
||||
return;
|
||||
linkmode_zero(modes);
|
||||
|
||||
if (of_property_read_bool(node, "eee-broken-100tx"))
|
||||
broken |= MDIO_EEE_100TX;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, modes);
|
||||
if (of_property_read_bool(node, "eee-broken-1000t"))
|
||||
broken |= MDIO_EEE_1000T;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT, modes);
|
||||
if (of_property_read_bool(node, "eee-broken-10gt"))
|
||||
broken |= MDIO_EEE_10GT;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseT_Full_BIT, modes);
|
||||
if (of_property_read_bool(node, "eee-broken-1000kx"))
|
||||
broken |= MDIO_EEE_1000KX;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseKX_Full_BIT, modes);
|
||||
if (of_property_read_bool(node, "eee-broken-10gkx4"))
|
||||
broken |= MDIO_EEE_10GKX4;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT, modes);
|
||||
if (of_property_read_bool(node, "eee-broken-10gkr"))
|
||||
broken |= MDIO_EEE_10GKR;
|
||||
|
||||
phydev->eee_broken_modes = broken;
|
||||
linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKR_Full_BIT, modes);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -721,16 +721,15 @@ struct phy_device {
|
||||
/* used for eee validation and configuration*/
|
||||
__ETHTOOL_DECLARE_LINK_MODE_MASK(supported_eee);
|
||||
__ETHTOOL_DECLARE_LINK_MODE_MASK(advertising_eee);
|
||||
/* Energy efficient ethernet modes which should be prohibited */
|
||||
__ETHTOOL_DECLARE_LINK_MODE_MASK(eee_broken_modes);
|
||||
bool eee_enabled;
|
||||
bool enable_tx_lpi;
|
||||
struct eee_config eee_cfg;
|
||||
|
||||
/* Host supported PHY interface types. Should be ignored if empty. */
|
||||
DECLARE_PHY_INTERFACE_MASK(host_interfaces);
|
||||
|
||||
/* Energy efficient ethernet modes which should be prohibited */
|
||||
u32 eee_broken_modes;
|
||||
bool enable_tx_lpi;
|
||||
struct eee_config eee_cfg;
|
||||
|
||||
#ifdef CONFIG_LED_TRIGGER_PHY
|
||||
struct phy_led_trigger *phy_led_triggers;
|
||||
unsigned int phy_num_led_triggers;
|
||||
@@ -1264,6 +1263,16 @@ void of_set_phy_eee_broken(struct phy_device *phydev);
|
||||
void of_set_phy_timing_role(struct phy_device *phydev);
|
||||
int phy_speed_down_core(struct phy_device *phydev);
|
||||
|
||||
/**
|
||||
* phy_set_eee_broken - Mark an EEE mode as broken so that it isn't advertised.
|
||||
* @phydev: The phy_device struct
|
||||
* @link_mode: The broken EEE mode
|
||||
*/
|
||||
static inline void phy_set_eee_broken(struct phy_device *phydev, u32 link_mode)
|
||||
{
|
||||
linkmode_set_bit(link_mode, phydev->eee_broken_modes);
|
||||
}
|
||||
|
||||
/**
|
||||
* phy_is_started - Convenience function to check whether PHY is started
|
||||
* @phydev: The phy_device struct
|
||||
|
||||
Reference in New Issue
Block a user