[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230217034230.1249661-1-andrew@lunn.ch>
Date: Fri, 17 Feb 2023 04:42:12 +0100
From: Andrew Lunn <andrew@...n.ch>
To: netdev <netdev@...r.kernel.org>
Cc: Florian Fainelli <f.fainelli@...il.com>,
Vladimir Oltean <vladimir.oltean@....com>,
Sean Wang <sean.wang@...iatek.com>,
Landen Chao <Landen.Chao@...iatek.com>,
DENG Qingfang <dqfext@...il.com>,
Matthias Brugger <matthias.bgg@...il.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@...labora.com>,
Doug Berger <opendmb@...il.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@...adcom.com>,
Wei Fang <wei.fang@....com>,
Shenwei Wang <shenwei.wang@....com>,
Clark Wang <xiaoning.wang@....com>,
NXP Linux Team <linux-imx@....com>,
UNGLinuxDriver@...rochip.com, Byungho An <bh74.an@...sung.com>,
Giuseppe Cavallaro <peppe.cavallaro@...com>,
Alexandre Torgue <alexandre.torgue@...s.st.com>,
Jose Abreu <joabreu@...opsys.com>,
Maxime Coquelin <mcoquelin.stm32@...il.com>,
Heiner Kallweit <hkallweit1@...il.com>,
Russell King <rmk+kernel@...linux.org.uk>,
Woojung Huh <woojung.huh@...rochip.com>,
Oleksij Rempel <linux@...pel-privat.de>,
Andrew Lunn <andrew@...n.ch>
Subject: [PATCH RFC 00/18] Rework MAC drivers EEE support
phy_init_eee() is supposed to be called once auto-neg has been
completed to determine if EEE should be used with the current link
mode. The MAC hardware should then be configured to either enable or
disable EEE. Many drivers get this wrong, calling phy_init_eee() once,
or only in the ethtool set_eee callback.
This patchset changes the API, such that EEE becomes the same as other
parameters which are determined by auto-neg. As will speed and duplex,
active EEE is now indicated in the phydev structure, and the
adjust_link callbacks have been modified to act upon its value.
eee_set and eee_get have been simplified, given that the phylib
functions act upon most of the data in eee_set, and fill in most of
the information needed for eee_set.
Andrew Lunn (18):
net: phy: Add phydev->eee_active to simplify adjust link callbacks
net: phy: Add helper to set EEE Clock stop enable bit
net: marvell: mvneta: Simplify EEE configuration
net: stmmac: Drop usage of phy_init_eee()
net: stmmac: Simplify ethtool get eee
net: lan743x: Fixup EEE
net: fec: Move fec_enet_eee_mode_set() and helper earlier
net: FEC: Fixup EEE
net: genet: Fixup EEE
net: sxgdb: Fixup EEE
net: dsa: mt7530: Swap to using phydev->eee_active
net: dsa: mt7530: Call phylib for set_eee and get_eee
net: dsa: b53: Swap to using phydev->eee_active
net: dsa: b53: Call phylib for set_eee and get_eee
net: phylink: Remove unused phylink_init_eee()
net: phylink: Update comment about configuring EEE in mac_link_up()
net: phy: remove unused phy_init_eee()
net: usb: lan78xx: Fixup EEE
drivers/net/dsa/b53/b53_common.c | 11 ++-
drivers/net/dsa/mt7530.c | 8 +-
.../net/ethernet/broadcom/genet/bcmgenet.c | 31 +++----
.../net/ethernet/broadcom/genet/bcmgenet.h | 1 +
drivers/net/ethernet/broadcom/genet/bcmmii.c | 1 +
drivers/net/ethernet/freescale/fec_main.c | 84 ++++++++-----------
drivers/net/ethernet/marvell/mvneta.c | 12 +--
.../net/ethernet/microchip/lan743x_ethtool.c | 20 -----
drivers/net/ethernet/microchip/lan743x_main.c | 7 ++
.../net/ethernet/samsung/sxgbe/sxgbe_common.h | 4 +-
.../ethernet/samsung/sxgbe/sxgbe_ethtool.c | 23 +----
.../net/ethernet/samsung/sxgbe/sxgbe_main.c | 37 +++-----
.../ethernet/stmicro/stmmac/stmmac_ethtool.c | 2 -
.../net/ethernet/stmicro/stmmac/stmmac_main.c | 5 +-
drivers/net/phy/phy.c | 36 +++-----
drivers/net/phy/phylink.c | 18 ----
drivers/net/usb/lan78xx.c | 36 ++++----
include/linux/phy.h | 4 +-
include/linux/phylink.h | 7 +-
19 files changed, 121 insertions(+), 226 deletions(-)
--
2.39.1
Powered by blists - more mailing lists