Commit 2e181358 authored by Antoine Tenart's avatar Antoine Tenart Committed by David S. Miller

net: phy: add MACsec ops in phy_device

This patch adds a reference to MACsec ops in the phy_device, to allow
PHYs to support offloading MACsec operations. The phydev lock will be
held while calling those helpers.
Signed-off-by: default avatarAntoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0830e20b
...@@ -333,6 +333,7 @@ struct phy_c45_device_ids { ...@@ -333,6 +333,7 @@ struct phy_c45_device_ids {
}; };
struct macsec_context; struct macsec_context;
struct macsec_ops;
/* phy_device: An instance of a PHY /* phy_device: An instance of a PHY
* *
...@@ -356,6 +357,7 @@ struct macsec_context; ...@@ -356,6 +357,7 @@ struct macsec_context;
* attached_dev: The attached enet driver's device instance ptr * attached_dev: The attached enet driver's device instance ptr
* adjust_link: Callback for the enet controller to respond to * adjust_link: Callback for the enet controller to respond to
* changes in the link state. * changes in the link state.
* macsec_ops: MACsec offloading ops.
* *
* speed, duplex, pause, supported, advertising, lp_advertising, * speed, duplex, pause, supported, advertising, lp_advertising,
* and autoneg are used like in mii_if_info * and autoneg are used like in mii_if_info
...@@ -455,6 +457,11 @@ struct phy_device { ...@@ -455,6 +457,11 @@ struct phy_device {
void (*phy_link_change)(struct phy_device *, bool up, bool do_carrier); void (*phy_link_change)(struct phy_device *, bool up, bool do_carrier);
void (*adjust_link)(struct net_device *dev); void (*adjust_link)(struct net_device *dev);
#if IS_ENABLED(CONFIG_MACSEC)
/* MACsec management functions */
const struct macsec_ops *macsec_ops;
#endif
}; };
#define to_phy_device(d) container_of(to_mdio_device(d), \ #define to_phy_device(d) container_of(to_mdio_device(d), \
struct phy_device, mdio) struct phy_device, mdio)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment