Skip to content

Commit

Permalink
net: add helpers for EEE configuration
Browse files Browse the repository at this point in the history
Add helpers that phylib and phylink can use to manage EEE configuration
and determine whether the MAC should be permitted to use LPI based on
that configuration.

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://lore.kernel.org/r/20240302195306.3207716-2-o.rempel@pengutronix.de
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Russell King authored and Jakub Kicinski committed Mar 6, 2024
1 parent 344f7a4 commit 6f2fc85
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions include/net/eee.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _EEE_H
#define _EEE_H

#include <linux/types.h>

struct eee_config {
u32 tx_lpi_timer;
bool tx_lpi_enabled;
bool eee_enabled;
};

static inline bool eeecfg_mac_can_tx_lpi(const struct eee_config *eeecfg)
{
/* eee_enabled is the master on/off */
if (!eeecfg->eee_enabled || !eeecfg->tx_lpi_enabled)
return false;

return true;
}

static inline void eeecfg_to_eee(struct ethtool_keee *eee,
const struct eee_config *eeecfg)
{
eee->tx_lpi_timer = eeecfg->tx_lpi_timer;
eee->tx_lpi_enabled = eeecfg->tx_lpi_enabled;
eee->eee_enabled = eeecfg->eee_enabled;
}

static inline void eee_to_eeecfg(struct eee_config *eeecfg,
const struct ethtool_keee *eee)
{
eeecfg->tx_lpi_timer = eee->tx_lpi_timer;
eeecfg->tx_lpi_enabled = eee->tx_lpi_enabled;
eeecfg->eee_enabled = eee->eee_enabled;
}

#endif

0 comments on commit 6f2fc85

Please sign in to comment.