summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2023-08-17 16:32:32 +0100
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2025-09-29 10:14:44 +0100
commitac171ed255ed05bd2005dff8bf08988ba5d70214 (patch)
tree2d6e186a8eb7dabcebd434ee69f06077b9026520
parente2473ec3a3a38fa9ac4c6af5a34c965616ce8631 (diff)
net: dsa: mv88e6xxx: add port_set_eee() method
Add a port_set_eee() method to allow the EEE settings for a port to be configured. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
-rw-r--r--drivers/net/dsa/mv88e6xxx/chip.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/chip.h b/drivers/net/dsa/mv88e6xxx/chip.h
index 2f211e55cb47..2fb1e60ff985 100644
--- a/drivers/net/dsa/mv88e6xxx/chip.h
+++ b/drivers/net/dsa/mv88e6xxx/chip.h
@@ -524,6 +524,16 @@ struct mv88e6xxx_ops {
*/
int (*port_set_link)(struct mv88e6xxx_chip *chip, int port, int link);
+#define EEE_FORCE_DISABLE 0
+#define EEE_FORCE_ENABLE 1
+#define EEE_UNFORCED -1
+
+ /* Port's EEE state
+ * Use EEE_FORCE_ENABLE or EEE_FORCE_DISABLE to force EEE to be enabled
+ * or disabled, or EEE_UNFORCED for normal EEE.
+ */
+ int (*port_set_eee)(struct mv88e6xxx_chip *chip, int port, int eee);
+
/* Synchronise the port link state with that of the SERDES
*/
int (*port_sync_link)(struct mv88e6xxx_chip *chip, int port, unsigned int mode, bool isup);