mbox series

[net-next,v2,0/3] net: phy: add and use phy_check_downshift

Message ID 6e451e53-803f-d277-800a-ff042fb8a858@gmail.com
Headers show
Series net: phy: add and use phy_check_downshift | expand

Message

Heiner Kallweit March 20, 2020, 4:50 p.m. UTC
So far PHY drivers have to check whether a downshift occurred to be
able to notify the user. To make life of drivers authors a little bit
easier move the downshift notification to phylib. phy_check_downshift()
compares the highest mutually advertised speed with the actual value
of phydev->speed (typically read by the PHY driver from a
vendor-specific register) to detect a downshift.

v2: Add downshift hint to phy_print_status().

Heiner Kallweit (3):
  net: phy: add and use phy_check_downshift
  net: phy: marvell: remove downshift warning now that phylib takes care
  net: phy: aquantia: remove downshift warning now that phylib takes
    care

 drivers/net/phy/aquantia_main.c | 25 +---------------------
 drivers/net/phy/marvell.c       | 24 ---------------------
 drivers/net/phy/phy-core.c      | 38 +++++++++++++++++++++++++++++++++
 drivers/net/phy/phy.c           |  4 +++-
 include/linux/phy.h             |  3 +++
 5 files changed, 45 insertions(+), 49 deletions(-)