mbox series

[net-next,0/3] Support for Wake-on-LAN for Broadcom PHYs

Message ID 20230508184309.1628108-1-f.fainelli@gmail.com (mailing list archive)
Headers show
Series Support for Wake-on-LAN for Broadcom PHYs | expand

Message

Florian Fainelli May 8, 2023, 6:43 p.m. UTC
This patch series adds support for Wake-on-LAN to the Broadcom PHY
driver. Specifically the BCM54210E/B50212E are capable of supporting
Wake-on-LAN using an external pin typically wired up to a system's GPIO.

These PHY operate a programmable Ethernet MAC destination address
comparator which will fire up an interrupt whenever a match is received.
Because of that, it was necessary to introduce patch #1 which allows the
PHY driver's ->suspend() routine to be called unconditionally. This is
necessary in our case because we need a hook point into the device
suspend/resume flow to enable the wake-up interrupt as late as possible.

Patch #2 adds support for the Broadcom PHY library and driver for
Wake-on-LAN proper with the WAKE_UCAST, WAKE_MCAST, WAKE_BCAST,
WAKE_MAGIC and WAKE_MAGICSECURE. Note that WAKE_FILTER is supportable,
however this will require further discussions and be submitted as a RFC
series later on.

Patch #3 updates the GENET driver to defer to the PHY for Wake-on-LAN if
the PHY supports it, thus allowing the MAC to be powered down to
conserve power.

Florian Fainelli (3):
  net: phy: Let drivers check Wake-on-LAN status
  net: phy: broadcom: Add support for Wake-on-LAN
  net: bcmgenet: Add support for PHY-based Wake-on-LAN

 .../ethernet/broadcom/genet/bcmgenet_wol.c    |  14 ++
 drivers/net/phy/aquantia_main.c               |   3 +
 drivers/net/phy/at803x.c                      |  10 +
 drivers/net/phy/bcm-phy-lib.c                 | 212 ++++++++++++++++++
 drivers/net/phy/bcm-phy-lib.h                 |   5 +
 drivers/net/phy/bcm7xxx.c                     |   3 +
 drivers/net/phy/broadcom.c                    | 128 ++++++++++-
 drivers/net/phy/dp83822.c                     |   2 +-
 drivers/net/phy/dp83867.c                     |   3 +
 drivers/net/phy/dp83tc811.c                   |   2 +-
 drivers/net/phy/marvell-88x2222.c             |   3 +
 drivers/net/phy/marvell.c                     |   3 +
 drivers/net/phy/marvell10g.c                  |   3 +
 drivers/net/phy/micrel.c                      |   3 +
 drivers/net/phy/microchip.c                   |   4 +-
 drivers/net/phy/motorcomm.c                   |   2 +-
 drivers/net/phy/phy-c45.c                     |   3 +
 drivers/net/phy/phy_device.c                  |   7 +-
 drivers/net/phy/realtek.c                     |   3 +
 include/linux/brcmphy.h                       |  55 +++++
 include/linux/phy.h                           |   3 +
 21 files changed, 460 insertions(+), 11 deletions(-)