diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2019-02-16 11:26:05 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-18 19:43:54 -0500 |
commit | 9004a14cb688c69194002aa2fadda4433c3b79fb (patch) | |
tree | 7f67d12b64f082df6ec81fd20c6872f7f06cb0f6 | |
parent | bf9d787ba7ea87c5c676a73a0ba191edd5a0341a (diff) |
net: phy: add helper mii_10gbt_stat_mod_linkmode_lpa_t
Similar to the existing helpers for the Clause 22 registers add helper
mii_10gbt_stat_mod_linkmode_lpa_t.
Note that this helper is defined in linux/mdio.h, not like the
Clause 22 helpers in linux/mii.h. Reason is that the Clause 45 register
constants are defined in uapi/linux/mdio.h. And uapi/linux/mdio.h
includes linux/mii.h before defining the C45 register constants.
v2:
- remove helpers that don't have users in this series
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/mdio.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/mdio.h b/include/linux/mdio.h index dd46828b4c47..3e99ae3ed87f 100644 --- a/include/linux/mdio.h +++ b/include/linux/mdio.h | |||
@@ -286,6 +286,25 @@ static inline u32 linkmode_adv_to_mii_10gbt_adv_t(unsigned long *advertising) | |||
286 | return result; | 286 | return result; |
287 | } | 287 | } |
288 | 288 | ||
289 | /** | ||
290 | * mii_10gbt_stat_mod_linkmode_lpa_t | ||
291 | * @advertising: target the linkmode advertisement settings | ||
292 | * @adv: value of the C45 10GBASE-T AN STATUS register | ||
293 | * | ||
294 | * A small helper function that translates C45 10GBASE-T AN STATUS register bits | ||
295 | * to linkmode advertisement settings. Other bits in advertising aren't changed. | ||
296 | */ | ||
297 | static inline void mii_10gbt_stat_mod_linkmode_lpa_t(unsigned long *advertising, | ||
298 | u32 lpa) | ||
299 | { | ||
300 | linkmode_mod_bit(ETHTOOL_LINK_MODE_2500baseT_Full_BIT, | ||
301 | advertising, lpa & MDIO_AN_10GBT_STAT_LP2_5G); | ||
302 | linkmode_mod_bit(ETHTOOL_LINK_MODE_5000baseT_Full_BIT, | ||
303 | advertising, lpa & MDIO_AN_10GBT_STAT_LP5G); | ||
304 | linkmode_mod_bit(ETHTOOL_LINK_MODE_10000baseT_Full_BIT, | ||
305 | advertising, lpa & MDIO_AN_10GBT_STAT_LP10G); | ||
306 | } | ||
307 | |||
289 | int __mdiobus_read(struct mii_bus *bus, int addr, u32 regnum); | 308 | int __mdiobus_read(struct mii_bus *bus, int addr, u32 regnum); |
290 | int __mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val); | 309 | int __mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val); |
291 | 310 | ||