|
@@ -36,7 +36,11 @@ enum {
|
|
|
PHYLINK_DISABLE_LINK,
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * struct phylink - internal data type for phylink
|
|
|
+ */
|
|
|
struct phylink {
|
|
|
+ /* private: */
|
|
|
struct net_device *netdev;
|
|
|
const struct phylink_mac_ops *ops;
|
|
|
|
|
@@ -87,6 +91,13 @@ static inline bool linkmode_empty(const unsigned long *src)
|
|
|
return bitmap_empty(src, __ETHTOOL_LINK_MODE_MASK_NBITS);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_set_port_modes() - set the port type modes in the ethtool mask
|
|
|
+ * @mask: ethtool link mode mask
|
|
|
+ *
|
|
|
+ * Sets all the port type modes in the ethtool mask. MAC drivers should
|
|
|
+ * use this in their 'validate' callback.
|
|
|
+ */
|
|
|
void phylink_set_port_modes(unsigned long *mask)
|
|
|
{
|
|
|
phylink_set(mask, TP);
|
|
@@ -117,8 +128,7 @@ static const char *phylink_an_mode_str(unsigned int mode)
|
|
|
static const char *modestr[] = {
|
|
|
[MLO_AN_PHY] = "phy",
|
|
|
[MLO_AN_FIXED] = "fixed",
|
|
|
- [MLO_AN_SGMII] = "SGMII",
|
|
|
- [MLO_AN_8023Z] = "802.3z",
|
|
|
+ [MLO_AN_INBAND] = "inband",
|
|
|
};
|
|
|
|
|
|
return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown";
|
|
@@ -132,59 +142,64 @@ static int phylink_validate(struct phylink *pl, unsigned long *supported,
|
|
|
return phylink_is_empty_linkmode(supported) ? -EINVAL : 0;
|
|
|
}
|
|
|
|
|
|
-static int phylink_parse_fixedlink(struct phylink *pl, struct device_node *np)
|
|
|
+static int phylink_parse_fixedlink(struct phylink *pl,
|
|
|
+ struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct device_node *fixed_node;
|
|
|
+ struct fwnode_handle *fixed_node;
|
|
|
const struct phy_setting *s;
|
|
|
struct gpio_desc *desc;
|
|
|
- const __be32 *fixed_prop;
|
|
|
u32 speed;
|
|
|
- int ret, len;
|
|
|
+ int ret;
|
|
|
|
|
|
- fixed_node = of_get_child_by_name(np, "fixed-link");
|
|
|
+ fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link");
|
|
|
if (fixed_node) {
|
|
|
- ret = of_property_read_u32(fixed_node, "speed", &speed);
|
|
|
+ ret = fwnode_property_read_u32(fixed_node, "speed", &speed);
|
|
|
|
|
|
pl->link_config.speed = speed;
|
|
|
pl->link_config.duplex = DUPLEX_HALF;
|
|
|
|
|
|
- if (of_property_read_bool(fixed_node, "full-duplex"))
|
|
|
+ if (fwnode_property_read_bool(fixed_node, "full-duplex"))
|
|
|
pl->link_config.duplex = DUPLEX_FULL;
|
|
|
|
|
|
/* We treat the "pause" and "asym-pause" terminology as
|
|
|
* defining the link partner's ability. */
|
|
|
- if (of_property_read_bool(fixed_node, "pause"))
|
|
|
+ if (fwnode_property_read_bool(fixed_node, "pause"))
|
|
|
pl->link_config.pause |= MLO_PAUSE_SYM;
|
|
|
- if (of_property_read_bool(fixed_node, "asym-pause"))
|
|
|
+ if (fwnode_property_read_bool(fixed_node, "asym-pause"))
|
|
|
pl->link_config.pause |= MLO_PAUSE_ASYM;
|
|
|
|
|
|
if (ret == 0) {
|
|
|
- desc = fwnode_get_named_gpiod(&fixed_node->fwnode,
|
|
|
- "link-gpios", 0,
|
|
|
- GPIOD_IN, "?");
|
|
|
+ desc = fwnode_get_named_gpiod(fixed_node, "link-gpios",
|
|
|
+ 0, GPIOD_IN, "?");
|
|
|
|
|
|
if (!IS_ERR(desc))
|
|
|
pl->link_gpio = desc;
|
|
|
else if (desc == ERR_PTR(-EPROBE_DEFER))
|
|
|
ret = -EPROBE_DEFER;
|
|
|
}
|
|
|
- of_node_put(fixed_node);
|
|
|
+ fwnode_handle_put(fixed_node);
|
|
|
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
} else {
|
|
|
- fixed_prop = of_get_property(np, "fixed-link", &len);
|
|
|
- if (!fixed_prop) {
|
|
|
+ u32 prop[5];
|
|
|
+
|
|
|
+ ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
|
|
|
+ NULL, 0);
|
|
|
+ if (ret != ARRAY_SIZE(prop)) {
|
|
|
netdev_err(pl->netdev, "broken fixed-link?\n");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- if (len == 5 * sizeof(*fixed_prop)) {
|
|
|
- pl->link_config.duplex = be32_to_cpu(fixed_prop[1]) ?
|
|
|
+
|
|
|
+ ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
|
|
|
+ prop, ARRAY_SIZE(prop));
|
|
|
+ if (!ret) {
|
|
|
+ pl->link_config.duplex = prop[1] ?
|
|
|
DUPLEX_FULL : DUPLEX_HALF;
|
|
|
- pl->link_config.speed = be32_to_cpu(fixed_prop[2]);
|
|
|
- if (be32_to_cpu(fixed_prop[3]))
|
|
|
+ pl->link_config.speed = prop[2];
|
|
|
+ if (prop[3])
|
|
|
pl->link_config.pause |= MLO_PAUSE_SYM;
|
|
|
- if (be32_to_cpu(fixed_prop[4]))
|
|
|
+ if (prop[4])
|
|
|
pl->link_config.pause |= MLO_PAUSE_ASYM;
|
|
|
}
|
|
|
}
|
|
@@ -220,17 +235,17 @@ static int phylink_parse_fixedlink(struct phylink *pl, struct device_node *np)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int phylink_parse_mode(struct phylink *pl, struct device_node *np)
|
|
|
+static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct device_node *dn;
|
|
|
+ struct fwnode_handle *dn;
|
|
|
const char *managed;
|
|
|
|
|
|
- dn = of_get_child_by_name(np, "fixed-link");
|
|
|
- if (dn || of_find_property(np, "fixed-link", NULL))
|
|
|
+ dn = fwnode_get_named_child_node(fwnode, "fixed-link");
|
|
|
+ if (dn || fwnode_property_present(fwnode, "fixed-link"))
|
|
|
pl->link_an_mode = MLO_AN_FIXED;
|
|
|
- of_node_put(dn);
|
|
|
+ fwnode_handle_put(dn);
|
|
|
|
|
|
- if (of_property_read_string(np, "managed", &managed) == 0 &&
|
|
|
+ if (fwnode_property_read_string(fwnode, "managed", &managed) == 0 &&
|
|
|
strcmp(managed, "in-band-status") == 0) {
|
|
|
if (pl->link_an_mode == MLO_AN_FIXED) {
|
|
|
netdev_err(pl->netdev,
|
|
@@ -244,6 +259,7 @@ static int phylink_parse_mode(struct phylink *pl, struct device_node *np)
|
|
|
phylink_set(pl->supported, Asym_Pause);
|
|
|
phylink_set(pl->supported, Pause);
|
|
|
pl->link_config.an_enabled = true;
|
|
|
+ pl->link_an_mode = MLO_AN_INBAND;
|
|
|
|
|
|
switch (pl->link_config.interface) {
|
|
|
case PHY_INTERFACE_MODE_SGMII:
|
|
@@ -253,17 +269,14 @@ static int phylink_parse_mode(struct phylink *pl, struct device_node *np)
|
|
|
phylink_set(pl->supported, 100baseT_Full);
|
|
|
phylink_set(pl->supported, 1000baseT_Half);
|
|
|
phylink_set(pl->supported, 1000baseT_Full);
|
|
|
- pl->link_an_mode = MLO_AN_SGMII;
|
|
|
break;
|
|
|
|
|
|
case PHY_INTERFACE_MODE_1000BASEX:
|
|
|
phylink_set(pl->supported, 1000baseX_Full);
|
|
|
- pl->link_an_mode = MLO_AN_8023Z;
|
|
|
break;
|
|
|
|
|
|
case PHY_INTERFACE_MODE_2500BASEX:
|
|
|
phylink_set(pl->supported, 2500baseX_Full);
|
|
|
- pl->link_an_mode = MLO_AN_8023Z;
|
|
|
break;
|
|
|
|
|
|
case PHY_INTERFACE_MODE_10GKR:
|
|
@@ -280,7 +293,6 @@ static int phylink_parse_mode(struct phylink *pl, struct device_node *np)
|
|
|
phylink_set(pl->supported, 10000baseLR_Full);
|
|
|
phylink_set(pl->supported, 10000baseLRM_Full);
|
|
|
phylink_set(pl->supported, 10000baseER_Full);
|
|
|
- pl->link_an_mode = MLO_AN_SGMII;
|
|
|
break;
|
|
|
|
|
|
default:
|
|
@@ -320,8 +332,7 @@ static void phylink_mac_config(struct phylink *pl,
|
|
|
static void phylink_mac_an_restart(struct phylink *pl)
|
|
|
{
|
|
|
if (pl->link_config.an_enabled &&
|
|
|
- (pl->link_config.interface == PHY_INTERFACE_MODE_1000BASEX ||
|
|
|
- pl->link_config.interface == PHY_INTERFACE_MODE_2500BASEX))
|
|
|
+ phy_interface_mode_is_8023z(pl->link_config.interface))
|
|
|
pl->ops->mac_an_restart(pl->netdev);
|
|
|
}
|
|
|
|
|
@@ -423,7 +434,7 @@ static void phylink_resolve(struct work_struct *w)
|
|
|
phylink_mac_config(pl, &link_state);
|
|
|
break;
|
|
|
|
|
|
- case MLO_AN_SGMII:
|
|
|
+ case MLO_AN_INBAND:
|
|
|
phylink_get_mac_state(pl, &link_state);
|
|
|
if (pl->phydev) {
|
|
|
bool changed = false;
|
|
@@ -449,10 +460,6 @@ static void phylink_resolve(struct work_struct *w)
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
|
-
|
|
|
- case MLO_AN_8023Z:
|
|
|
- phylink_get_mac_state(pl, &link_state);
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -489,15 +496,24 @@ static void phylink_run_resolve(struct phylink *pl)
|
|
|
|
|
|
static const struct sfp_upstream_ops sfp_phylink_ops;
|
|
|
|
|
|
-static int phylink_register_sfp(struct phylink *pl, struct device_node *np)
|
|
|
+static int phylink_register_sfp(struct phylink *pl,
|
|
|
+ struct fwnode_handle *fwnode)
|
|
|
{
|
|
|
- struct device_node *sfp_np;
|
|
|
+ struct fwnode_reference_args ref;
|
|
|
+ int ret;
|
|
|
|
|
|
- sfp_np = of_parse_phandle(np, "sfp", 0);
|
|
|
- if (!sfp_np)
|
|
|
- return 0;
|
|
|
+ ret = fwnode_property_get_reference_args(fwnode, "sfp", NULL,
|
|
|
+ 0, 0, &ref);
|
|
|
+ if (ret < 0) {
|
|
|
+ if (ret == -ENOENT)
|
|
|
+ return 0;
|
|
|
|
|
|
- pl->sfp_bus = sfp_register_upstream(sfp_np, pl->netdev, pl,
|
|
|
+ netdev_err(pl->netdev, "unable to parse \"sfp\" node: %d\n",
|
|
|
+ ret);
|
|
|
+ return ret;
|
|
|
+ }
|
|
|
+
|
|
|
+ pl->sfp_bus = sfp_register_upstream(ref.fwnode, pl->netdev, pl,
|
|
|
&sfp_phylink_ops);
|
|
|
if (!pl->sfp_bus)
|
|
|
return -ENOMEM;
|
|
@@ -505,7 +521,22 @@ static int phylink_register_sfp(struct phylink *pl, struct device_node *np)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-struct phylink *phylink_create(struct net_device *ndev, struct device_node *np,
|
|
|
+/**
|
|
|
+ * phylink_create() - create a phylink instance
|
|
|
+ * @ndev: a pointer to the &struct net_device
|
|
|
+ * @fwnode: a pointer to a &struct fwnode_handle describing the network
|
|
|
+ * interface
|
|
|
+ * @iface: the desired link mode defined by &typedef phy_interface_t
|
|
|
+ * @ops: a pointer to a &struct phylink_mac_ops for the MAC.
|
|
|
+ *
|
|
|
+ * Create a new phylink instance, and parse the link parameters found in @np.
|
|
|
+ * This will parse in-band modes, fixed-link or SFP configuration.
|
|
|
+ *
|
|
|
+ * Returns a pointer to a &struct phylink, or an error-pointer value. Users
|
|
|
+ * must use IS_ERR() to check for errors from this function.
|
|
|
+ */
|
|
|
+struct phylink *phylink_create(struct net_device *ndev,
|
|
|
+ struct fwnode_handle *fwnode,
|
|
|
phy_interface_t iface,
|
|
|
const struct phylink_mac_ops *ops)
|
|
|
{
|
|
@@ -533,21 +564,21 @@ struct phylink *phylink_create(struct net_device *ndev, struct device_node *np,
|
|
|
linkmode_copy(pl->link_config.advertising, pl->supported);
|
|
|
phylink_validate(pl, pl->supported, &pl->link_config);
|
|
|
|
|
|
- ret = phylink_parse_mode(pl, np);
|
|
|
+ ret = phylink_parse_mode(pl, fwnode);
|
|
|
if (ret < 0) {
|
|
|
kfree(pl);
|
|
|
return ERR_PTR(ret);
|
|
|
}
|
|
|
|
|
|
if (pl->link_an_mode == MLO_AN_FIXED) {
|
|
|
- ret = phylink_parse_fixedlink(pl, np);
|
|
|
+ ret = phylink_parse_fixedlink(pl, fwnode);
|
|
|
if (ret < 0) {
|
|
|
kfree(pl);
|
|
|
return ERR_PTR(ret);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- ret = phylink_register_sfp(pl, np);
|
|
|
+ ret = phylink_register_sfp(pl, fwnode);
|
|
|
if (ret < 0) {
|
|
|
kfree(pl);
|
|
|
return ERR_PTR(ret);
|
|
@@ -557,6 +588,13 @@ struct phylink *phylink_create(struct net_device *ndev, struct device_node *np,
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_create);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_destroy() - cleanup and destroy the phylink instance
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ *
|
|
|
+ * Destroy a phylink instance. Any PHY that has been attached must have been
|
|
|
+ * cleaned up via phylink_disconnect_phy() prior to calling this function.
|
|
|
+ */
|
|
|
void phylink_destroy(struct phylink *pl)
|
|
|
{
|
|
|
if (pl->sfp_bus)
|
|
@@ -653,10 +691,30 @@ static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_connect_phy() - connect a PHY to the phylink instance
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @phy: a pointer to a &struct phy_device.
|
|
|
+ *
|
|
|
+ * Connect @phy to the phylink instance specified by @pl by calling
|
|
|
+ * phy_attach_direct(). Configure the @phy according to the MAC driver's
|
|
|
+ * capabilities, start the PHYLIB state machine and enable any interrupts
|
|
|
+ * that the PHY supports.
|
|
|
+ *
|
|
|
+ * This updates the phylink's ethtool supported and advertising link mode
|
|
|
+ * masks.
|
|
|
+ *
|
|
|
+ * Returns 0 on success or a negative errno.
|
|
|
+ */
|
|
|
int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
+ if (WARN_ON(pl->link_an_mode == MLO_AN_FIXED ||
|
|
|
+ (pl->link_an_mode == MLO_AN_INBAND &&
|
|
|
+ phy_interface_mode_is_8023z(pl->link_interface))))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
ret = phy_attach_direct(pl->netdev, phy, 0, pl->link_interface);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -669,14 +727,27 @@ int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_connect_phy);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_of_phy_connect() - connect the PHY specified in the DT mode.
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @dn: a pointer to a &struct device_node.
|
|
|
+ *
|
|
|
+ * Connect the phy specified in the device node @dn to the phylink instance
|
|
|
+ * specified by @pl. Actions specified in phylink_connect_phy() will be
|
|
|
+ * performed.
|
|
|
+ *
|
|
|
+ * Returns 0 on success or a negative errno.
|
|
|
+ */
|
|
|
int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn)
|
|
|
{
|
|
|
struct device_node *phy_node;
|
|
|
struct phy_device *phy_dev;
|
|
|
int ret;
|
|
|
|
|
|
- /* Fixed links are handled without needing a PHY */
|
|
|
- if (pl->link_an_mode == MLO_AN_FIXED)
|
|
|
+ /* Fixed links and 802.3z are handled without needing a PHY */
|
|
|
+ if (pl->link_an_mode == MLO_AN_FIXED ||
|
|
|
+ (pl->link_an_mode == MLO_AN_INBAND &&
|
|
|
+ phy_interface_mode_is_8023z(pl->link_interface)))
|
|
|
return 0;
|
|
|
|
|
|
phy_node = of_parse_phandle(dn, "phy-handle", 0);
|
|
@@ -708,6 +779,13 @@ int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_of_phy_connect);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_disconnect_phy() - disconnect any PHY attached to the phylink
|
|
|
+ * instance.
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ *
|
|
|
+ * Disconnect any current PHY from the phylink instance described by @pl.
|
|
|
+ */
|
|
|
void phylink_disconnect_phy(struct phylink *pl)
|
|
|
{
|
|
|
struct phy_device *phy;
|
|
@@ -729,6 +807,14 @@ void phylink_disconnect_phy(struct phylink *pl)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_disconnect_phy);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_mac_change() - notify phylink of a change in MAC state
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @up: indicates whether the link is currently up.
|
|
|
+ *
|
|
|
+ * The MAC driver should call this driver when the state of its link
|
|
|
+ * changes (eg, link failure, new negotiation results, etc.)
|
|
|
+ */
|
|
|
void phylink_mac_change(struct phylink *pl, bool up)
|
|
|
{
|
|
|
if (!up)
|
|
@@ -738,6 +824,14 @@ void phylink_mac_change(struct phylink *pl, bool up)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_mac_change);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_start() - start a phylink instance
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ *
|
|
|
+ * Start the phylink instance specified by @pl, configuring the MAC for the
|
|
|
+ * desired link mode(s) and negotiation style. This should be called from the
|
|
|
+ * network device driver's &struct net_device_ops ndo_open() method.
|
|
|
+ */
|
|
|
void phylink_start(struct phylink *pl)
|
|
|
{
|
|
|
WARN_ON(!lockdep_rtnl_is_held());
|
|
@@ -753,6 +847,12 @@ void phylink_start(struct phylink *pl)
|
|
|
phylink_resolve_flow(pl, &pl->link_config);
|
|
|
phylink_mac_config(pl, &pl->link_config);
|
|
|
|
|
|
+ /* Restart autonegotiation if using 802.3z to ensure that the link
|
|
|
+ * parameters are properly negotiated. This is necessary for DSA
|
|
|
+ * switches using 802.3z negotiation to ensure they see our modes.
|
|
|
+ */
|
|
|
+ phylink_mac_an_restart(pl);
|
|
|
+
|
|
|
clear_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
|
|
|
phylink_run_resolve(pl);
|
|
|
|
|
@@ -763,6 +863,15 @@ void phylink_start(struct phylink *pl)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_start);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_stop() - stop a phylink instance
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ *
|
|
|
+ * Stop the phylink instance specified by @pl. This should be called from the
|
|
|
+ * network device driver's &struct net_device_ops ndo_stop() method. The
|
|
|
+ * network device's carrier state should not be changed prior to calling this
|
|
|
+ * function.
|
|
|
+ */
|
|
|
void phylink_stop(struct phylink *pl)
|
|
|
{
|
|
|
WARN_ON(!lockdep_rtnl_is_held());
|
|
@@ -778,6 +887,15 @@ void phylink_stop(struct phylink *pl)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_stop);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters
|
|
|
+ *
|
|
|
+ * Read the wake on lan parameters from the PHY attached to the phylink
|
|
|
+ * instance specified by @pl. If no PHY is currently attached, report no
|
|
|
+ * support for wake on lan.
|
|
|
+ */
|
|
|
void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
|
|
|
{
|
|
|
WARN_ON(!lockdep_rtnl_is_held());
|
|
@@ -790,6 +908,17 @@ void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_set_wol() - set wake on lan parameters
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters
|
|
|
+ *
|
|
|
+ * Set the wake on lan parameters for the PHY attached to the phylink
|
|
|
+ * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP
|
|
|
+ * error.
|
|
|
+ *
|
|
|
+ * Returns zero on success or negative errno code.
|
|
|
+ */
|
|
|
int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
|
|
|
{
|
|
|
int ret = -EOPNOTSUPP;
|
|
@@ -825,6 +954,15 @@ static void phylink_get_ksettings(const struct phylink_link_state *state,
|
|
|
AUTONEG_DISABLE;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_ksettings_get() - get the current link settings
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings
|
|
|
+ *
|
|
|
+ * Read the current link settings for the phylink instance specified by @pl.
|
|
|
+ * This will be the link settings read from the MAC, PHY or fixed link
|
|
|
+ * settings depending on the current negotiation mode.
|
|
|
+ */
|
|
|
int phylink_ethtool_ksettings_get(struct phylink *pl,
|
|
|
struct ethtool_link_ksettings *kset)
|
|
|
{
|
|
@@ -850,14 +988,13 @@ int phylink_ethtool_ksettings_get(struct phylink *pl,
|
|
|
phylink_get_ksettings(&link_state, kset);
|
|
|
break;
|
|
|
|
|
|
- case MLO_AN_SGMII:
|
|
|
+ case MLO_AN_INBAND:
|
|
|
/* If there is a phy attached, then use the reported
|
|
|
* settings from the phy with no modification.
|
|
|
*/
|
|
|
if (pl->phydev)
|
|
|
break;
|
|
|
|
|
|
- case MLO_AN_8023Z:
|
|
|
phylink_get_mac_state(pl, &link_state);
|
|
|
|
|
|
/* The MAC is reporting the link results from its own PCS
|
|
@@ -872,6 +1009,11 @@ int phylink_ethtool_ksettings_get(struct phylink *pl,
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_ksettings_set() - set the link settings
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes
|
|
|
+ */
|
|
|
int phylink_ethtool_ksettings_set(struct phylink *pl,
|
|
|
const struct ethtool_link_ksettings *kset)
|
|
|
{
|
|
@@ -965,6 +1107,17 @@ int phylink_ethtool_ksettings_set(struct phylink *pl,
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_nway_reset() - restart negotiation
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ *
|
|
|
+ * Restart negotiation for the phylink instance specified by @pl. This will
|
|
|
+ * cause any attached phy to restart negotiation with the link partner, and
|
|
|
+ * if the MAC is in a BaseX mode, the MAC will also be requested to restart
|
|
|
+ * negotiation.
|
|
|
+ *
|
|
|
+ * Returns zero on success, or negative error code.
|
|
|
+ */
|
|
|
int phylink_ethtool_nway_reset(struct phylink *pl)
|
|
|
{
|
|
|
int ret = 0;
|
|
@@ -979,6 +1132,11 @@ int phylink_ethtool_nway_reset(struct phylink *pl)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_get_pauseparam() - get the current pause parameters
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @pause: a pointer to a &struct ethtool_pauseparam
|
|
|
+ */
|
|
|
void phylink_ethtool_get_pauseparam(struct phylink *pl,
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
{
|
|
@@ -990,6 +1148,11 @@ void phylink_ethtool_get_pauseparam(struct phylink *pl,
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_set_pauseparam() - set the current pause parameters
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @pause: a pointer to a &struct ethtool_pauseparam
|
|
|
+ */
|
|
|
int phylink_ethtool_set_pauseparam(struct phylink *pl,
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
{
|
|
@@ -1028,8 +1191,7 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl,
|
|
|
phylink_mac_config(pl, config);
|
|
|
break;
|
|
|
|
|
|
- case MLO_AN_SGMII:
|
|
|
- case MLO_AN_8023Z:
|
|
|
+ case MLO_AN_INBAND:
|
|
|
phylink_mac_config(pl, config);
|
|
|
phylink_mac_an_restart(pl);
|
|
|
break;
|
|
@@ -1068,19 +1230,16 @@ int phylink_ethtool_get_module_eeprom(struct phylink *pl,
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_get_module_eeprom);
|
|
|
|
|
|
-int phylink_init_eee(struct phylink *pl, bool clk_stop_enable)
|
|
|
-{
|
|
|
- int ret = -EPROTONOSUPPORT;
|
|
|
-
|
|
|
- WARN_ON(!lockdep_rtnl_is_held());
|
|
|
-
|
|
|
- if (pl->phydev)
|
|
|
- ret = phy_init_eee(pl->phydev, clk_stop_enable);
|
|
|
-
|
|
|
- return ret;
|
|
|
-}
|
|
|
-EXPORT_SYMBOL_GPL(phylink_init_eee);
|
|
|
-
|
|
|
+/**
|
|
|
+ * phylink_ethtool_get_eee_err() - read the energy efficient ethernet error
|
|
|
+ * counter
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create().
|
|
|
+ *
|
|
|
+ * Read the Energy Efficient Ethernet error counter from the PHY associated
|
|
|
+ * with the phylink instance specified by @pl.
|
|
|
+ *
|
|
|
+ * Returns positive error counter value, or negative error code.
|
|
|
+ */
|
|
|
int phylink_get_eee_err(struct phylink *pl)
|
|
|
{
|
|
|
int ret = 0;
|
|
@@ -1094,6 +1253,11 @@ int phylink_get_eee_err(struct phylink *pl)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_get_eee_err);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @eee: a pointer to a &struct ethtool_eee for the read parameters
|
|
|
+ */
|
|
|
int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
|
|
|
{
|
|
|
int ret = -EOPNOTSUPP;
|
|
@@ -1107,6 +1271,11 @@ int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee);
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @eee: a pointer to a &struct ethtool_eee for the desired parameters
|
|
|
+ */
|
|
|
int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee)
|
|
|
{
|
|
|
int ret = -EOPNOTSUPP;
|
|
@@ -1246,9 +1415,7 @@ static int phylink_mii_read(struct phylink *pl, unsigned int phy_id,
|
|
|
case MLO_AN_PHY:
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
- case MLO_AN_SGMII:
|
|
|
- /* No phy, fall through to 8023z method */
|
|
|
- case MLO_AN_8023Z:
|
|
|
+ case MLO_AN_INBAND:
|
|
|
if (phy_id == 0) {
|
|
|
val = phylink_get_mac_state(pl, &state);
|
|
|
if (val < 0)
|
|
@@ -1273,15 +1440,31 @@ static int phylink_mii_write(struct phylink *pl, unsigned int phy_id,
|
|
|
case MLO_AN_PHY:
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
- case MLO_AN_SGMII:
|
|
|
- /* No phy, fall through to 8023z method */
|
|
|
- case MLO_AN_8023Z:
|
|
|
+ case MLO_AN_INBAND:
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * phylink_mii_ioctl() - generic mii ioctl interface
|
|
|
+ * @pl: a pointer to a &struct phylink returned from phylink_create()
|
|
|
+ * @ifr: a pointer to a &struct ifreq for socket ioctls
|
|
|
+ * @cmd: ioctl cmd to execute
|
|
|
+ *
|
|
|
+ * Perform the specified MII ioctl on the PHY attached to the phylink instance
|
|
|
+ * specified by @pl. If no PHY is attached, emulate the presence of the PHY.
|
|
|
+ *
|
|
|
+ * Returns: zero on success or negative error code.
|
|
|
+ *
|
|
|
+ * %SIOCGMIIPHY:
|
|
|
+ * read register from the current PHY.
|
|
|
+ * %SIOCGMIIREG:
|
|
|
+ * read register from the specified PHY.
|
|
|
+ * %SIOCSMIIREG:
|
|
|
+ * set a register on the specified PHY.
|
|
|
+ */
|
|
|
int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
|
|
|
{
|
|
|
struct mii_ioctl_data *mii = if_mii(ifr);
|
|
@@ -1290,7 +1473,7 @@ int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
|
|
|
WARN_ON(!lockdep_rtnl_is_held());
|
|
|
|
|
|
if (pl->phydev) {
|
|
|
- /* PHYs only exist for MLO_AN_PHY and MLO_AN_SGMII */
|
|
|
+ /* PHYs only exist for MLO_AN_PHY and SGMII */
|
|
|
switch (cmd) {
|
|
|
case SIOCGMIIPHY:
|
|
|
mii->phy_id = pl->phydev->mdio.addr;
|
|
@@ -1359,10 +1542,10 @@ static int phylink_sfp_module_insert(void *upstream,
|
|
|
|
|
|
switch (iface) {
|
|
|
case PHY_INTERFACE_MODE_SGMII:
|
|
|
- mode = MLO_AN_SGMII;
|
|
|
- break;
|
|
|
case PHY_INTERFACE_MODE_1000BASEX:
|
|
|
- mode = MLO_AN_8023Z;
|
|
|
+ case PHY_INTERFACE_MODE_2500BASEX:
|
|
|
+ case PHY_INTERFACE_MODE_10GKR:
|
|
|
+ mode = MLO_AN_INBAND;
|
|
|
break;
|
|
|
default:
|
|
|
return -EINVAL;
|
|
@@ -1389,7 +1572,7 @@ static int phylink_sfp_module_insert(void *upstream,
|
|
|
phylink_an_mode_str(mode), phy_modes(config.interface),
|
|
|
__ETHTOOL_LINK_MODE_MASK_NBITS, support);
|
|
|
|
|
|
- if (mode == MLO_AN_8023Z && pl->phydev)
|
|
|
+ if (phy_interface_mode_is_8023z(iface) && pl->phydev)
|
|
|
return -EINVAL;
|
|
|
|
|
|
changed = !bitmap_equal(pl->supported, support,
|