blob: de7b7499ae38f4e92f8fd6daaa16d664165c9462 [file] [log] [blame]
Andrew Lunn5f857572019-01-21 19:10:19 +01001// SPDX-License-Identifier: GPL-2.0
Russell King9525ae82017-07-25 15:03:13 +01002/*
3 * phylink models the MAC to optional PHY connection, supporting
4 * technologies such as SFP cages where the PHY is hot-pluggable.
5 *
6 * Copyright (C) 2015 Russell King
Russell King9525ae82017-07-25 15:03:13 +01007 */
8#include <linux/ethtool.h>
9#include <linux/export.h>
10#include <linux/gpio/consumer.h>
11#include <linux/netdevice.h>
12#include <linux/of.h>
13#include <linux/of_mdio.h>
14#include <linux/phy.h>
15#include <linux/phy_fixed.h>
16#include <linux/phylink.h>
17#include <linux/rtnetlink.h>
18#include <linux/spinlock.h>
Russell King9cd00a82018-05-10 13:17:31 -070019#include <linux/timer.h>
Russell King9525ae82017-07-25 15:03:13 +010020#include <linux/workqueue.h>
21
Russell Kingce0aa272017-07-25 15:03:18 +010022#include "sfp.h"
Russell King9525ae82017-07-25 15:03:13 +010023#include "swphy.h"
24
25#define SUPPORTED_INTERFACES \
26 (SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_FIBRE | \
27 SUPPORTED_BNC | SUPPORTED_AUI | SUPPORTED_Backplane)
28#define ADVERTISED_INTERFACES \
29 (ADVERTISED_TP | ADVERTISED_MII | ADVERTISED_FIBRE | \
30 ADVERTISED_BNC | ADVERTISED_AUI | ADVERTISED_Backplane)
31
32enum {
33 PHYLINK_DISABLE_STOPPED,
Russell Kingce0aa272017-07-25 15:03:18 +010034 PHYLINK_DISABLE_LINK,
Russell King9525ae82017-07-25 15:03:13 +010035};
36
Russell King8796c892017-12-01 10:24:47 +000037/**
38 * struct phylink - internal data type for phylink
39 */
Russell King9525ae82017-07-25 15:03:13 +010040struct phylink {
Russell King8796c892017-12-01 10:24:47 +000041 /* private: */
Russell King9525ae82017-07-25 15:03:13 +010042 struct net_device *netdev;
43 const struct phylink_mac_ops *ops;
Ioana Ciornei44cc27e2019-05-28 20:38:12 +030044 struct phylink_config *config;
Ioana Ciornei43de6192019-05-28 20:38:13 +030045 struct device *dev;
46 unsigned int old_link_state:1;
Russell King9525ae82017-07-25 15:03:13 +010047
48 unsigned long phylink_disable_state; /* bitmask of disables */
49 struct phy_device *phydev;
50 phy_interface_t link_interface; /* PHY_INTERFACE_xxx */
Russell King24cf0e62019-12-11 10:56:35 +000051 u8 cfg_link_an_mode; /* MLO_AN_xxx */
52 u8 cur_link_an_mode;
Russell King9525ae82017-07-25 15:03:13 +010053 u8 link_port; /* The current non-phy ethtool port */
54 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
55
56 /* The link configuration settings */
57 struct phylink_link_state link_config;
Russell Kingc6787262019-05-28 10:27:21 +010058
59 /* The current settings */
60 phy_interface_t cur_interface;
61
Russell King9525ae82017-07-25 15:03:13 +010062 struct gpio_desc *link_gpio;
Russell King7b3b0e82019-05-28 10:57:23 +010063 unsigned int link_irq;
Russell King9cd00a82018-05-10 13:17:31 -070064 struct timer_list link_poll;
Florian Fainelli1ac63e32017-12-12 16:00:28 -080065 void (*get_fixed_state)(struct net_device *dev,
66 struct phylink_link_state *s);
Russell King9525ae82017-07-25 15:03:13 +010067
68 struct mutex state_mutex;
69 struct phylink_link_state phy_state;
70 struct work_struct resolve;
71
72 bool mac_link_dropped;
Russell Kingce0aa272017-07-25 15:03:18 +010073
74 struct sfp_bus *sfp_bus;
Russell King52c95602019-12-11 10:56:45 +000075 bool sfp_may_have_phy;
76 __ETHTOOL_DECLARE_LINK_MODE_MASK(sfp_support);
77 u8 sfp_port;
Russell King9525ae82017-07-25 15:03:13 +010078};
79
Ioana Ciornei170911802019-05-28 20:38:14 +030080#define phylink_printk(level, pl, fmt, ...) \
81 do { \
82 if ((pl)->config->type == PHYLINK_NETDEV) \
83 netdev_printk(level, (pl)->netdev, fmt, ##__VA_ARGS__); \
84 else if ((pl)->config->type == PHYLINK_DEV) \
85 dev_printk(level, (pl)->dev, fmt, ##__VA_ARGS__); \
86 } while (0)
87
88#define phylink_err(pl, fmt, ...) \
89 phylink_printk(KERN_ERR, pl, fmt, ##__VA_ARGS__)
90#define phylink_warn(pl, fmt, ...) \
91 phylink_printk(KERN_WARNING, pl, fmt, ##__VA_ARGS__)
92#define phylink_info(pl, fmt, ...) \
93 phylink_printk(KERN_INFO, pl, fmt, ##__VA_ARGS__)
Florian Fainelli9d68db52019-10-31 15:42:26 -070094#if defined(CONFIG_DYNAMIC_DEBUG)
Ioana Ciornei170911802019-05-28 20:38:14 +030095#define phylink_dbg(pl, fmt, ...) \
Florian Fainelli9d68db52019-10-31 15:42:26 -070096do { \
97 if ((pl)->config->type == PHYLINK_NETDEV) \
98 netdev_dbg((pl)->netdev, fmt, ##__VA_ARGS__); \
99 else if ((pl)->config->type == PHYLINK_DEV) \
100 dev_dbg((pl)->dev, fmt, ##__VA_ARGS__); \
101} while (0)
102#elif defined(DEBUG)
103#define phylink_dbg(pl, fmt, ...) \
Ioana Ciornei170911802019-05-28 20:38:14 +0300104 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__)
Florian Fainelli9d68db52019-10-31 15:42:26 -0700105#else
106#define phylink_dbg(pl, fmt, ...) \
107({ \
108 if (0) \
109 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__); \
110})
111#endif
Ioana Ciornei170911802019-05-28 20:38:14 +0300112
Russell King8796c892017-12-01 10:24:47 +0000113/**
114 * phylink_set_port_modes() - set the port type modes in the ethtool mask
115 * @mask: ethtool link mode mask
116 *
117 * Sets all the port type modes in the ethtool mask. MAC drivers should
118 * use this in their 'validate' callback.
119 */
Russell King9525ae82017-07-25 15:03:13 +0100120void phylink_set_port_modes(unsigned long *mask)
121{
122 phylink_set(mask, TP);
123 phylink_set(mask, AUI);
124 phylink_set(mask, MII);
125 phylink_set(mask, FIBRE);
126 phylink_set(mask, BNC);
127 phylink_set(mask, Backplane);
128}
129EXPORT_SYMBOL_GPL(phylink_set_port_modes);
130
131static int phylink_is_empty_linkmode(const unsigned long *linkmode)
132{
133 __ETHTOOL_DECLARE_LINK_MODE_MASK(tmp) = { 0, };
134
135 phylink_set_port_modes(tmp);
136 phylink_set(tmp, Autoneg);
137 phylink_set(tmp, Pause);
138 phylink_set(tmp, Asym_Pause);
139
Russell King554032c2019-10-15 11:28:46 +0100140 return linkmode_subset(linkmode, tmp);
Russell King9525ae82017-07-25 15:03:13 +0100141}
142
143static const char *phylink_an_mode_str(unsigned int mode)
144{
145 static const char *modestr[] = {
146 [MLO_AN_PHY] = "phy",
147 [MLO_AN_FIXED] = "fixed",
Russell King86a362c2017-12-01 10:24:26 +0000148 [MLO_AN_INBAND] = "inband",
Russell King9525ae82017-07-25 15:03:13 +0100149 };
150
151 return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown";
152}
153
154static int phylink_validate(struct phylink *pl, unsigned long *supported,
155 struct phylink_link_state *state)
156{
Ioana Ciornei44cc27e2019-05-28 20:38:12 +0300157 pl->ops->validate(pl->config, supported, state);
Russell King9525ae82017-07-25 15:03:13 +0100158
159 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0;
160}
161
Russell King8fa7b9b2017-12-01 10:25:09 +0000162static int phylink_parse_fixedlink(struct phylink *pl,
163 struct fwnode_handle *fwnode)
Russell King9525ae82017-07-25 15:03:13 +0100164{
Russell King8fa7b9b2017-12-01 10:25:09 +0000165 struct fwnode_handle *fixed_node;
Russell King9525ae82017-07-25 15:03:13 +0100166 const struct phy_setting *s;
167 struct gpio_desc *desc;
Russell King9525ae82017-07-25 15:03:13 +0100168 u32 speed;
Russell King8fa7b9b2017-12-01 10:25:09 +0000169 int ret;
Russell King9525ae82017-07-25 15:03:13 +0100170
Russell King8fa7b9b2017-12-01 10:25:09 +0000171 fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link");
Russell King9525ae82017-07-25 15:03:13 +0100172 if (fixed_node) {
Russell King8fa7b9b2017-12-01 10:25:09 +0000173 ret = fwnode_property_read_u32(fixed_node, "speed", &speed);
Russell King9525ae82017-07-25 15:03:13 +0100174
175 pl->link_config.speed = speed;
176 pl->link_config.duplex = DUPLEX_HALF;
177
Russell King8fa7b9b2017-12-01 10:25:09 +0000178 if (fwnode_property_read_bool(fixed_node, "full-duplex"))
Russell King9525ae82017-07-25 15:03:13 +0100179 pl->link_config.duplex = DUPLEX_FULL;
180
181 /* We treat the "pause" and "asym-pause" terminology as
182 * defining the link partner's ability. */
Russell King8fa7b9b2017-12-01 10:25:09 +0000183 if (fwnode_property_read_bool(fixed_node, "pause"))
Russell King9525ae82017-07-25 15:03:13 +0100184 pl->link_config.pause |= MLO_PAUSE_SYM;
Russell King8fa7b9b2017-12-01 10:25:09 +0000185 if (fwnode_property_read_bool(fixed_node, "asym-pause"))
Russell King9525ae82017-07-25 15:03:13 +0100186 pl->link_config.pause |= MLO_PAUSE_ASYM;
187
188 if (ret == 0) {
Dmitry Torokhovb605c9a2020-01-02 17:03:18 -0800189 desc = fwnode_gpiod_get_index(fixed_node, "link", 0,
190 GPIOD_IN, "?");
Russell King9525ae82017-07-25 15:03:13 +0100191
192 if (!IS_ERR(desc))
193 pl->link_gpio = desc;
194 else if (desc == ERR_PTR(-EPROBE_DEFER))
195 ret = -EPROBE_DEFER;
196 }
Russell King8fa7b9b2017-12-01 10:25:09 +0000197 fwnode_handle_put(fixed_node);
Russell King9525ae82017-07-25 15:03:13 +0100198
199 if (ret)
200 return ret;
201 } else {
Russell King8fa7b9b2017-12-01 10:25:09 +0000202 u32 prop[5];
203
204 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
205 NULL, 0);
206 if (ret != ARRAY_SIZE(prop)) {
Ioana Ciornei170911802019-05-28 20:38:14 +0300207 phylink_err(pl, "broken fixed-link?\n");
Russell King9525ae82017-07-25 15:03:13 +0100208 return -EINVAL;
209 }
Russell King8fa7b9b2017-12-01 10:25:09 +0000210
211 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
212 prop, ARRAY_SIZE(prop));
213 if (!ret) {
214 pl->link_config.duplex = prop[1] ?
Russell King9525ae82017-07-25 15:03:13 +0100215 DUPLEX_FULL : DUPLEX_HALF;
Russell King8fa7b9b2017-12-01 10:25:09 +0000216 pl->link_config.speed = prop[2];
217 if (prop[3])
Russell King9525ae82017-07-25 15:03:13 +0100218 pl->link_config.pause |= MLO_PAUSE_SYM;
Russell King8fa7b9b2017-12-01 10:25:09 +0000219 if (prop[4])
Russell King9525ae82017-07-25 15:03:13 +0100220 pl->link_config.pause |= MLO_PAUSE_ASYM;
221 }
222 }
223
224 if (pl->link_config.speed > SPEED_1000 &&
225 pl->link_config.duplex != DUPLEX_FULL)
Ioana Ciornei170911802019-05-28 20:38:14 +0300226 phylink_warn(pl, "fixed link specifies half duplex for %dMbps link?\n",
227 pl->link_config.speed);
Russell King9525ae82017-07-25 15:03:13 +0100228
229 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
230 linkmode_copy(pl->link_config.advertising, pl->supported);
231 phylink_validate(pl, pl->supported, &pl->link_config);
232
233 s = phy_lookup_setting(pl->link_config.speed, pl->link_config.duplex,
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100234 pl->supported, true);
Russell King9525ae82017-07-25 15:03:13 +0100235 linkmode_zero(pl->supported);
236 phylink_set(pl->supported, MII);
René van Dorst8aace4f2019-07-27 11:40:11 +0200237 phylink_set(pl->supported, Pause);
238 phylink_set(pl->supported, Asym_Pause);
Russell King9525ae82017-07-25 15:03:13 +0100239 if (s) {
240 __set_bit(s->bit, pl->supported);
241 } else {
Ioana Ciornei170911802019-05-28 20:38:14 +0300242 phylink_warn(pl, "fixed link %s duplex %dMbps not recognised\n",
243 pl->link_config.duplex == DUPLEX_FULL ? "full" : "half",
244 pl->link_config.speed);
Russell King9525ae82017-07-25 15:03:13 +0100245 }
246
247 linkmode_and(pl->link_config.advertising, pl->link_config.advertising,
248 pl->supported);
249
250 pl->link_config.link = 1;
251 pl->link_config.an_complete = 1;
252
253 return 0;
254}
255
Russell King8fa7b9b2017-12-01 10:25:09 +0000256static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode)
Russell King9525ae82017-07-25 15:03:13 +0100257{
Russell King8fa7b9b2017-12-01 10:25:09 +0000258 struct fwnode_handle *dn;
Russell King9525ae82017-07-25 15:03:13 +0100259 const char *managed;
260
Russell King8fa7b9b2017-12-01 10:25:09 +0000261 dn = fwnode_get_named_child_node(fwnode, "fixed-link");
262 if (dn || fwnode_property_present(fwnode, "fixed-link"))
Russell King24cf0e62019-12-11 10:56:35 +0000263 pl->cfg_link_an_mode = MLO_AN_FIXED;
Russell King8fa7b9b2017-12-01 10:25:09 +0000264 fwnode_handle_put(dn);
Russell King9525ae82017-07-25 15:03:13 +0100265
Russell King8fa7b9b2017-12-01 10:25:09 +0000266 if (fwnode_property_read_string(fwnode, "managed", &managed) == 0 &&
Russell King9525ae82017-07-25 15:03:13 +0100267 strcmp(managed, "in-band-status") == 0) {
Russell King24cf0e62019-12-11 10:56:35 +0000268 if (pl->cfg_link_an_mode == MLO_AN_FIXED) {
Ioana Ciornei170911802019-05-28 20:38:14 +0300269 phylink_err(pl,
270 "can't use both fixed-link and in-band-status\n");
Russell King9525ae82017-07-25 15:03:13 +0100271 return -EINVAL;
272 }
273
274 linkmode_zero(pl->supported);
275 phylink_set(pl->supported, MII);
276 phylink_set(pl->supported, Autoneg);
277 phylink_set(pl->supported, Asym_Pause);
278 phylink_set(pl->supported, Pause);
279 pl->link_config.an_enabled = true;
Russell King24cf0e62019-12-11 10:56:35 +0000280 pl->cfg_link_an_mode = MLO_AN_INBAND;
Russell King9525ae82017-07-25 15:03:13 +0100281
282 switch (pl->link_config.interface) {
283 case PHY_INTERFACE_MODE_SGMII:
Vladimir Oltean3a68ba62020-01-06 03:34:10 +0200284 case PHY_INTERFACE_MODE_QSGMII:
Russell King9525ae82017-07-25 15:03:13 +0100285 phylink_set(pl->supported, 10baseT_Half);
286 phylink_set(pl->supported, 10baseT_Full);
287 phylink_set(pl->supported, 100baseT_Half);
288 phylink_set(pl->supported, 100baseT_Full);
289 phylink_set(pl->supported, 1000baseT_Half);
290 phylink_set(pl->supported, 1000baseT_Full);
Russell King9525ae82017-07-25 15:03:13 +0100291 break;
292
293 case PHY_INTERFACE_MODE_1000BASEX:
294 phylink_set(pl->supported, 1000baseX_Full);
Russell King9525ae82017-07-25 15:03:13 +0100295 break;
296
297 case PHY_INTERFACE_MODE_2500BASEX:
298 phylink_set(pl->supported, 2500baseX_Full);
Russell King9525ae82017-07-25 15:03:13 +0100299 break;
300
Alex Marginean04e22462020-01-18 14:19:15 +0200301 case PHY_INTERFACE_MODE_USXGMII:
Russell Kingda7c1862017-07-25 15:03:34 +0100302 case PHY_INTERFACE_MODE_10GKR:
Russell Kinge0f909b2020-01-03 20:43:23 +0000303 case PHY_INTERFACE_MODE_10GBASER:
Russell Kingda7c1862017-07-25 15:03:34 +0100304 phylink_set(pl->supported, 10baseT_Half);
305 phylink_set(pl->supported, 10baseT_Full);
306 phylink_set(pl->supported, 100baseT_Half);
307 phylink_set(pl->supported, 100baseT_Full);
308 phylink_set(pl->supported, 1000baseT_Half);
309 phylink_set(pl->supported, 1000baseT_Full);
310 phylink_set(pl->supported, 1000baseX_Full);
Vladimir Oltean6cbdcf22020-01-16 19:36:56 +0200311 phylink_set(pl->supported, 2500baseT_Full);
312 phylink_set(pl->supported, 2500baseX_Full);
313 phylink_set(pl->supported, 5000baseT_Full);
314 phylink_set(pl->supported, 10000baseT_Full);
Russell Kingda7c1862017-07-25 15:03:34 +0100315 phylink_set(pl->supported, 10000baseKR_Full);
316 phylink_set(pl->supported, 10000baseCR_Full);
317 phylink_set(pl->supported, 10000baseSR_Full);
318 phylink_set(pl->supported, 10000baseLR_Full);
319 phylink_set(pl->supported, 10000baseLRM_Full);
320 phylink_set(pl->supported, 10000baseER_Full);
Russell Kingda7c1862017-07-25 15:03:34 +0100321 break;
322
Russell King9525ae82017-07-25 15:03:13 +0100323 default:
Ioana Ciornei170911802019-05-28 20:38:14 +0300324 phylink_err(pl,
325 "incorrect link mode %s for in-band status\n",
326 phy_modes(pl->link_config.interface));
Russell King9525ae82017-07-25 15:03:13 +0100327 return -EINVAL;
328 }
329
330 linkmode_copy(pl->link_config.advertising, pl->supported);
331
332 if (phylink_validate(pl, pl->supported, &pl->link_config)) {
Ioana Ciornei170911802019-05-28 20:38:14 +0300333 phylink_err(pl,
334 "failed to validate link configuration for in-band status\n");
Russell King9525ae82017-07-25 15:03:13 +0100335 return -EINVAL;
336 }
337 }
338
339 return 0;
340}
341
342static void phylink_mac_config(struct phylink *pl,
343 const struct phylink_link_state *state)
344{
Ioana Ciornei170911802019-05-28 20:38:14 +0300345 phylink_dbg(pl,
346 "%s: mode=%s/%s/%s/%s adv=%*pb pause=%02x link=%u an=%u\n",
Russell King24cf0e62019-12-11 10:56:35 +0000347 __func__, phylink_an_mode_str(pl->cur_link_an_mode),
Ioana Ciornei170911802019-05-28 20:38:14 +0300348 phy_modes(state->interface),
349 phy_speed_to_str(state->speed),
350 phy_duplex_to_str(state->duplex),
351 __ETHTOOL_LINK_MODE_MASK_NBITS, state->advertising,
352 state->pause, state->link, state->an_enabled);
Russell King9525ae82017-07-25 15:03:13 +0100353
Russell King24cf0e62019-12-11 10:56:35 +0000354 pl->ops->mac_config(pl->config, pl->cur_link_an_mode, state);
Russell King9525ae82017-07-25 15:03:13 +0100355}
356
Russell King0946cf12019-02-11 11:46:01 +0000357static void phylink_mac_config_up(struct phylink *pl,
358 const struct phylink_link_state *state)
359{
360 if (state->link)
361 phylink_mac_config(pl, state);
362}
363
Russell King9525ae82017-07-25 15:03:13 +0100364static void phylink_mac_an_restart(struct phylink *pl)
365{
366 if (pl->link_config.an_enabled &&
Russell King365c1e62017-12-01 10:24:16 +0000367 phy_interface_mode_is_8023z(pl->link_config.interface))
Ioana Ciornei44cc27e2019-05-28 20:38:12 +0300368 pl->ops->mac_an_restart(pl->config);
Russell King9525ae82017-07-25 15:03:13 +0100369}
370
Russell Kingd46b7e42019-11-21 00:36:22 +0000371static void phylink_mac_pcs_get_state(struct phylink *pl,
372 struct phylink_link_state *state)
Russell King9525ae82017-07-25 15:03:13 +0100373{
Russell King9525ae82017-07-25 15:03:13 +0100374 linkmode_copy(state->advertising, pl->link_config.advertising);
375 linkmode_zero(state->lp_advertising);
376 state->interface = pl->link_config.interface;
377 state->an_enabled = pl->link_config.an_enabled;
Heiner Kallweitd25ed412019-02-26 19:29:22 +0100378 state->speed = SPEED_UNKNOWN;
379 state->duplex = DUPLEX_UNKNOWN;
380 state->pause = MLO_PAUSE_NONE;
381 state->an_complete = 0;
Russell King9525ae82017-07-25 15:03:13 +0100382 state->link = 1;
383
Russell Kingd46b7e42019-11-21 00:36:22 +0000384 pl->ops->mac_pcs_get_state(pl->config, state);
Russell King9525ae82017-07-25 15:03:13 +0100385}
386
387/* The fixed state is... fixed except for the link state,
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800388 * which may be determined by a GPIO or a callback.
Russell King9525ae82017-07-25 15:03:13 +0100389 */
390static void phylink_get_fixed_state(struct phylink *pl, struct phylink_link_state *state)
391{
392 *state = pl->link_config;
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800393 if (pl->get_fixed_state)
394 pl->get_fixed_state(pl->netdev, state);
395 else if (pl->link_gpio)
Florian Fainellibb322a92018-05-10 13:17:29 -0700396 state->link = !!gpiod_get_value_cansleep(pl->link_gpio);
Russell King9525ae82017-07-25 15:03:13 +0100397}
398
399/* Flow control is resolved according to our and the link partners
Colin Ian Kingcc1122b2018-03-01 10:23:03 +0000400 * advertisements using the following drawn from the 802.3 specs:
Russell King9525ae82017-07-25 15:03:13 +0100401 * Local device Link partner
402 * Pause AsymDir Pause AsymDir Result
403 * 1 X 1 X TX+RX
Stefan Chulski63b2ed42019-09-05 19:46:18 +0300404 * 0 1 1 1 TX
405 * 1 1 0 1 RX
Russell King9525ae82017-07-25 15:03:13 +0100406 */
407static void phylink_resolve_flow(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -0700408 struct phylink_link_state *state)
Russell King9525ae82017-07-25 15:03:13 +0100409{
410 int new_pause = 0;
411
412 if (pl->link_config.pause & MLO_PAUSE_AN) {
413 int pause = 0;
414
415 if (phylink_test(pl->link_config.advertising, Pause))
416 pause |= MLO_PAUSE_SYM;
417 if (phylink_test(pl->link_config.advertising, Asym_Pause))
418 pause |= MLO_PAUSE_ASYM;
419
420 pause &= state->pause;
421
422 if (pause & MLO_PAUSE_SYM)
423 new_pause = MLO_PAUSE_TX | MLO_PAUSE_RX;
424 else if (pause & MLO_PAUSE_ASYM)
425 new_pause = state->pause & MLO_PAUSE_SYM ?
Stefan Chulski63b2ed42019-09-05 19:46:18 +0300426 MLO_PAUSE_TX : MLO_PAUSE_RX;
Russell King9525ae82017-07-25 15:03:13 +0100427 } else {
428 new_pause = pl->link_config.pause & MLO_PAUSE_TXRX_MASK;
429 }
430
431 state->pause &= ~MLO_PAUSE_TXRX_MASK;
432 state->pause |= new_pause;
433}
434
435static const char *phylink_pause_to_str(int pause)
436{
437 switch (pause & MLO_PAUSE_TXRX_MASK) {
438 case MLO_PAUSE_TX | MLO_PAUSE_RX:
439 return "rx/tx";
440 case MLO_PAUSE_TX:
441 return "tx";
442 case MLO_PAUSE_RX:
443 return "rx";
444 default:
445 return "off";
446 }
447}
448
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300449static void phylink_mac_link_up(struct phylink *pl,
450 struct phylink_link_state link_state)
451{
452 struct net_device *ndev = pl->netdev;
453
David S. Millerb4b12b02019-05-31 10:49:43 -0700454 pl->cur_interface = link_state.interface;
Russell King24cf0e62019-12-11 10:56:35 +0000455 pl->ops->mac_link_up(pl->config, pl->cur_link_an_mode,
Russell King9b2079c2019-12-13 10:06:30 +0000456 pl->cur_interface, pl->phydev);
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300457
Ioana Ciornei43de6192019-05-28 20:38:13 +0300458 if (ndev)
459 netif_carrier_on(ndev);
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300460
Ioana Ciornei170911802019-05-28 20:38:14 +0300461 phylink_info(pl,
462 "Link is Up - %s/%s - flow control %s\n",
463 phy_speed_to_str(link_state.speed),
464 phy_duplex_to_str(link_state.duplex),
465 phylink_pause_to_str(link_state.pause));
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300466}
467
468static void phylink_mac_link_down(struct phylink *pl)
469{
470 struct net_device *ndev = pl->netdev;
471
Ioana Ciornei43de6192019-05-28 20:38:13 +0300472 if (ndev)
473 netif_carrier_off(ndev);
Russell King24cf0e62019-12-11 10:56:35 +0000474 pl->ops->mac_link_down(pl->config, pl->cur_link_an_mode,
David S. Millerb4b12b02019-05-31 10:49:43 -0700475 pl->cur_interface);
Ioana Ciornei170911802019-05-28 20:38:14 +0300476 phylink_info(pl, "Link is Down\n");
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300477}
478
Russell King9525ae82017-07-25 15:03:13 +0100479static void phylink_resolve(struct work_struct *w)
480{
481 struct phylink *pl = container_of(w, struct phylink, resolve);
482 struct phylink_link_state link_state;
483 struct net_device *ndev = pl->netdev;
Ioana Ciornei43de6192019-05-28 20:38:13 +0300484 int link_changed;
Russell King9525ae82017-07-25 15:03:13 +0100485
486 mutex_lock(&pl->state_mutex);
487 if (pl->phylink_disable_state) {
488 pl->mac_link_dropped = false;
489 link_state.link = false;
490 } else if (pl->mac_link_dropped) {
491 link_state.link = false;
492 } else {
Russell King24cf0e62019-12-11 10:56:35 +0000493 switch (pl->cur_link_an_mode) {
Russell King9525ae82017-07-25 15:03:13 +0100494 case MLO_AN_PHY:
495 link_state = pl->phy_state;
496 phylink_resolve_flow(pl, &link_state);
Russell King0946cf12019-02-11 11:46:01 +0000497 phylink_mac_config_up(pl, &link_state);
Russell King9525ae82017-07-25 15:03:13 +0100498 break;
499
500 case MLO_AN_FIXED:
501 phylink_get_fixed_state(pl, &link_state);
Russell King0946cf12019-02-11 11:46:01 +0000502 phylink_mac_config_up(pl, &link_state);
Russell King9525ae82017-07-25 15:03:13 +0100503 break;
504
Russell King86a362c2017-12-01 10:24:26 +0000505 case MLO_AN_INBAND:
Russell Kingd46b7e42019-11-21 00:36:22 +0000506 phylink_mac_pcs_get_state(pl, &link_state);
Russell King9525ae82017-07-25 15:03:13 +0100507
Russell King406cb0c2019-05-20 16:07:20 +0100508 /* If we have a phy, the "up" state is the union of
509 * both the PHY and the MAC */
510 if (pl->phydev)
511 link_state.link &= pl->phy_state.link;
Russell King9525ae82017-07-25 15:03:13 +0100512
Russell King406cb0c2019-05-20 16:07:20 +0100513 /* Only update if the PHY link is up */
514 if (pl->phydev && pl->phy_state.link) {
515 link_state.interface = pl->phy_state.interface;
Russell King9525ae82017-07-25 15:03:13 +0100516
Russell King406cb0c2019-05-20 16:07:20 +0100517 /* If we have a PHY, we need to update with
518 * the pause mode bits. */
519 link_state.pause |= pl->phy_state.pause;
520 phylink_resolve_flow(pl, &link_state);
521 phylink_mac_config(pl, &link_state);
Russell King9525ae82017-07-25 15:03:13 +0100522 }
523 break;
Russell King9525ae82017-07-25 15:03:13 +0100524 }
525 }
526
Ioana Ciornei43de6192019-05-28 20:38:13 +0300527 if (pl->netdev)
528 link_changed = (link_state.link != netif_carrier_ok(ndev));
529 else
530 link_changed = (link_state.link != pl->old_link_state);
531
532 if (link_changed) {
533 pl->old_link_state = link_state.link;
Ioana Ciornei27755ff2019-05-28 20:38:11 +0300534 if (!link_state.link)
535 phylink_mac_link_down(pl);
536 else
537 phylink_mac_link_up(pl, link_state);
Russell King9525ae82017-07-25 15:03:13 +0100538 }
539 if (!link_state.link && pl->mac_link_dropped) {
540 pl->mac_link_dropped = false;
541 queue_work(system_power_efficient_wq, &pl->resolve);
542 }
543 mutex_unlock(&pl->state_mutex);
544}
545
546static void phylink_run_resolve(struct phylink *pl)
547{
548 if (!pl->phylink_disable_state)
549 queue_work(system_power_efficient_wq, &pl->resolve);
550}
551
Russell King87454b62019-02-11 15:04:24 +0000552static void phylink_run_resolve_and_disable(struct phylink *pl, int bit)
553{
554 unsigned long state = pl->phylink_disable_state;
555
556 set_bit(bit, &pl->phylink_disable_state);
557 if (state == 0) {
558 queue_work(system_power_efficient_wq, &pl->resolve);
559 flush_work(&pl->resolve);
560 }
561}
562
Russell King9cd00a82018-05-10 13:17:31 -0700563static void phylink_fixed_poll(struct timer_list *t)
564{
565 struct phylink *pl = container_of(t, struct phylink, link_poll);
566
567 mod_timer(t, jiffies + HZ);
568
569 phylink_run_resolve(pl);
570}
571
Russell Kingce0aa272017-07-25 15:03:18 +0100572static const struct sfp_upstream_ops sfp_phylink_ops;
573
Russell King8fa7b9b2017-12-01 10:25:09 +0000574static int phylink_register_sfp(struct phylink *pl,
575 struct fwnode_handle *fwnode)
Russell Kingce0aa272017-07-25 15:03:18 +0100576{
Russell King2203cbf2019-10-15 11:38:39 +0100577 struct sfp_bus *bus;
Russell King8fa7b9b2017-12-01 10:25:09 +0000578 int ret;
Russell Kingce0aa272017-07-25 15:03:18 +0100579
Russell Kingeed70fd2020-01-03 15:13:56 +0000580 if (!fwnode)
581 return 0;
582
Russell King727b3662019-11-08 17:39:29 +0000583 bus = sfp_bus_find_fwnode(fwnode);
Russell King2203cbf2019-10-15 11:38:39 +0100584 if (IS_ERR(bus)) {
585 ret = PTR_ERR(bus);
586 phylink_err(pl, "unable to attach SFP bus: %d\n", ret);
Russell King8fa7b9b2017-12-01 10:25:09 +0000587 return ret;
588 }
589
Russell King2203cbf2019-10-15 11:38:39 +0100590 pl->sfp_bus = bus;
Russell Kingce0aa272017-07-25 15:03:18 +0100591
Russell King727b3662019-11-08 17:39:29 +0000592 ret = sfp_bus_add_upstream(bus, pl, &sfp_phylink_ops);
593 sfp_bus_put(bus);
594
595 return ret;
Russell Kingce0aa272017-07-25 15:03:18 +0100596}
597
Russell King8796c892017-12-01 10:24:47 +0000598/**
599 * phylink_create() - create a phylink instance
Randy Dunlap9db74e52019-10-08 08:39:04 -0700600 * @config: a pointer to the target &struct phylink_config
Russell King8fa7b9b2017-12-01 10:25:09 +0000601 * @fwnode: a pointer to a &struct fwnode_handle describing the network
602 * interface
Russell King8796c892017-12-01 10:24:47 +0000603 * @iface: the desired link mode defined by &typedef phy_interface_t
604 * @ops: a pointer to a &struct phylink_mac_ops for the MAC.
605 *
606 * Create a new phylink instance, and parse the link parameters found in @np.
607 * This will parse in-band modes, fixed-link or SFP configuration.
608 *
Russell King269a6b52019-11-19 17:18:52 +0000609 * Note: the rtnl lock must not be held when calling this function.
610 *
Russell King8796c892017-12-01 10:24:47 +0000611 * Returns a pointer to a &struct phylink, or an error-pointer value. Users
612 * must use IS_ERR() to check for errors from this function.
613 */
Ioana Ciornei44cc27e2019-05-28 20:38:12 +0300614struct phylink *phylink_create(struct phylink_config *config,
Russell King8fa7b9b2017-12-01 10:25:09 +0000615 struct fwnode_handle *fwnode,
Florian Fainelli516b29e2017-10-30 21:42:57 -0700616 phy_interface_t iface,
617 const struct phylink_mac_ops *ops)
Russell King9525ae82017-07-25 15:03:13 +0100618{
619 struct phylink *pl;
620 int ret;
621
622 pl = kzalloc(sizeof(*pl), GFP_KERNEL);
623 if (!pl)
624 return ERR_PTR(-ENOMEM);
625
626 mutex_init(&pl->state_mutex);
627 INIT_WORK(&pl->resolve, phylink_resolve);
Ioana Ciornei44cc27e2019-05-28 20:38:12 +0300628
629 pl->config = config;
630 if (config->type == PHYLINK_NETDEV) {
631 pl->netdev = to_net_dev(config->dev);
Ioana Ciornei43de6192019-05-28 20:38:13 +0300632 } else if (config->type == PHYLINK_DEV) {
633 pl->dev = config->dev;
Ioana Ciornei44cc27e2019-05-28 20:38:12 +0300634 } else {
635 kfree(pl);
636 return ERR_PTR(-EINVAL);
637 }
638
Russell King9525ae82017-07-25 15:03:13 +0100639 pl->phy_state.interface = iface;
640 pl->link_interface = iface;
Florian Fainelli4be11ef2017-12-12 16:00:29 -0800641 if (iface == PHY_INTERFACE_MODE_MOCA)
642 pl->link_port = PORT_BNC;
643 else
644 pl->link_port = PORT_MII;
Russell King9525ae82017-07-25 15:03:13 +0100645 pl->link_config.interface = iface;
646 pl->link_config.pause = MLO_PAUSE_AN;
647 pl->link_config.speed = SPEED_UNKNOWN;
648 pl->link_config.duplex = DUPLEX_UNKNOWN;
Russell King74ee0e82017-12-20 23:21:34 +0000649 pl->link_config.an_enabled = true;
Russell King9525ae82017-07-25 15:03:13 +0100650 pl->ops = ops;
651 __set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
Russell King9cd00a82018-05-10 13:17:31 -0700652 timer_setup(&pl->link_poll, phylink_fixed_poll, 0);
Russell King9525ae82017-07-25 15:03:13 +0100653
654 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
655 linkmode_copy(pl->link_config.advertising, pl->supported);
656 phylink_validate(pl, pl->supported, &pl->link_config);
657
Russell King8fa7b9b2017-12-01 10:25:09 +0000658 ret = phylink_parse_mode(pl, fwnode);
Russell King9525ae82017-07-25 15:03:13 +0100659 if (ret < 0) {
660 kfree(pl);
661 return ERR_PTR(ret);
662 }
663
Russell King24cf0e62019-12-11 10:56:35 +0000664 if (pl->cfg_link_an_mode == MLO_AN_FIXED) {
Russell King8fa7b9b2017-12-01 10:25:09 +0000665 ret = phylink_parse_fixedlink(pl, fwnode);
Russell King9525ae82017-07-25 15:03:13 +0100666 if (ret < 0) {
667 kfree(pl);
668 return ERR_PTR(ret);
669 }
670 }
671
Russell King24cf0e62019-12-11 10:56:35 +0000672 pl->cur_link_an_mode = pl->cfg_link_an_mode;
673
Russell King8fa7b9b2017-12-01 10:25:09 +0000674 ret = phylink_register_sfp(pl, fwnode);
Russell Kingce0aa272017-07-25 15:03:18 +0100675 if (ret < 0) {
676 kfree(pl);
677 return ERR_PTR(ret);
678 }
679
Russell King9525ae82017-07-25 15:03:13 +0100680 return pl;
681}
682EXPORT_SYMBOL_GPL(phylink_create);
683
Russell King8796c892017-12-01 10:24:47 +0000684/**
685 * phylink_destroy() - cleanup and destroy the phylink instance
686 * @pl: a pointer to a &struct phylink returned from phylink_create()
687 *
688 * Destroy a phylink instance. Any PHY that has been attached must have been
689 * cleaned up via phylink_disconnect_phy() prior to calling this function.
Russell King269a6b52019-11-19 17:18:52 +0000690 *
691 * Note: the rtnl lock must not be held when calling this function.
Russell King8796c892017-12-01 10:24:47 +0000692 */
Russell King9525ae82017-07-25 15:03:13 +0100693void phylink_destroy(struct phylink *pl)
694{
Russell King727b3662019-11-08 17:39:29 +0000695 sfp_bus_del_upstream(pl->sfp_bus);
Russell King7b3b0e82019-05-28 10:57:23 +0100696 if (pl->link_gpio)
Florian Fainellidaab3342018-05-10 13:17:30 -0700697 gpiod_put(pl->link_gpio);
Russell Kingce0aa272017-07-25 15:03:18 +0100698
Russell King9525ae82017-07-25 15:03:13 +0100699 cancel_work_sync(&pl->resolve);
700 kfree(pl);
701}
702EXPORT_SYMBOL_GPL(phylink_destroy);
703
Wei Yongjun1ec6e532017-11-02 11:14:48 +0000704static void phylink_phy_change(struct phy_device *phydev, bool up,
705 bool do_carrier)
Russell King9525ae82017-07-25 15:03:13 +0100706{
707 struct phylink *pl = phydev->phylink;
708
709 mutex_lock(&pl->state_mutex);
710 pl->phy_state.speed = phydev->speed;
711 pl->phy_state.duplex = phydev->duplex;
712 pl->phy_state.pause = MLO_PAUSE_NONE;
713 if (phydev->pause)
714 pl->phy_state.pause |= MLO_PAUSE_SYM;
715 if (phydev->asym_pause)
716 pl->phy_state.pause |= MLO_PAUSE_ASYM;
717 pl->phy_state.interface = phydev->interface;
718 pl->phy_state.link = up;
719 mutex_unlock(&pl->state_mutex);
720
721 phylink_run_resolve(pl);
722
Ioana Ciornei170911802019-05-28 20:38:14 +0300723 phylink_dbg(pl, "phy link %s %s/%s/%s\n", up ? "up" : "down",
724 phy_modes(phydev->interface),
725 phy_speed_to_str(phydev->speed),
726 phy_duplex_to_str(phydev->duplex));
Russell King9525ae82017-07-25 15:03:13 +0100727}
728
Russell Kinge45d1f52019-12-11 10:56:30 +0000729static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy,
730 phy_interface_t interface)
Russell King9525ae82017-07-25 15:03:13 +0100731{
732 struct phylink_link_state config;
733 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
Florian Fainellie27f1782020-01-12 09:35:38 -0800734 char *irq_str;
Russell King9525ae82017-07-25 15:03:13 +0100735 int ret;
736
Russell King9525ae82017-07-25 15:03:13 +0100737 /*
738 * This is the new way of dealing with flow control for PHYs,
739 * as described by Timur Tabi in commit 529ed1275263 ("net: phy:
740 * phy drivers should not set SUPPORTED_[Asym_]Pause") except
741 * using our validate call to the MAC, we rely upon the MAC
742 * clearing the bits from both supported and advertising fields.
743 */
Russell King725ea4b2019-11-15 20:05:45 +0000744 phy_support_asym_pause(phy);
745
746 memset(&config, 0, sizeof(config));
747 linkmode_copy(supported, phy->supported);
748 linkmode_copy(config.advertising, phy->advertising);
Russell Kingdf3f57a2019-12-13 18:22:07 +0000749
750 /* Clause 45 PHYs switch their Serdes lane between several different
751 * modes, normally 10GBASE-R, SGMII. Some use 2500BASE-X for 2.5G
752 * speeds. We really need to know which interface modes the PHY and
753 * MAC supports to properly work out which linkmodes can be supported.
754 */
755 if (phy->is_c45 &&
756 interface != PHY_INTERFACE_MODE_RXAUI &&
757 interface != PHY_INTERFACE_MODE_XAUI &&
758 interface != PHY_INTERFACE_MODE_USXGMII)
759 config.interface = PHY_INTERFACE_MODE_NA;
760 else
761 config.interface = interface;
Russell King9525ae82017-07-25 15:03:13 +0100762
763 ret = phylink_validate(pl, supported, &config);
764 if (ret)
765 return ret;
766
767 phy->phylink = pl;
768 phy->phy_link_change = phylink_phy_change;
769
Florian Fainellie27f1782020-01-12 09:35:38 -0800770 irq_str = phy_attached_info_irq(phy);
Ioana Ciornei170911802019-05-28 20:38:14 +0300771 phylink_info(pl,
Florian Fainellie27f1782020-01-12 09:35:38 -0800772 "PHY [%s] driver [%s] (irq=%s)\n",
773 dev_name(&phy->mdio.dev), phy->drv->name, irq_str);
774 kfree(irq_str);
Russell King9525ae82017-07-25 15:03:13 +0100775
776 mutex_lock(&phy->lock);
777 mutex_lock(&pl->state_mutex);
Russell King9525ae82017-07-25 15:03:13 +0100778 pl->phydev = phy;
Russell Kinge45d1f52019-12-11 10:56:30 +0000779 pl->phy_state.interface = interface;
Russell King9525ae82017-07-25 15:03:13 +0100780 linkmode_copy(pl->supported, supported);
781 linkmode_copy(pl->link_config.advertising, config.advertising);
782
Colin Ian Kingcc1122b2018-03-01 10:23:03 +0000783 /* Restrict the phy advertisement according to the MAC support. */
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100784 linkmode_copy(phy->advertising, config.advertising);
Russell King9525ae82017-07-25 15:03:13 +0100785 mutex_unlock(&pl->state_mutex);
786 mutex_unlock(&phy->lock);
787
Ioana Ciornei170911802019-05-28 20:38:14 +0300788 phylink_dbg(pl,
789 "phy: setting supported %*pb advertising %*pb\n",
790 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported,
791 __ETHTOOL_LINK_MODE_MASK_NBITS, phy->advertising);
Russell King9525ae82017-07-25 15:03:13 +0100792
Heiner Kallweit434a4312019-01-23 07:31:58 +0100793 if (phy_interrupt_is_valid(phy))
794 phy_request_interrupt(phy);
Russell King9525ae82017-07-25 15:03:13 +0100795
796 return 0;
797}
798
Russell King938d44c2019-12-11 10:56:25 +0000799static int phylink_attach_phy(struct phylink *pl, struct phy_device *phy,
800 phy_interface_t interface)
Baruch Siach7e418372018-10-03 19:04:49 +0300801{
Russell King24cf0e62019-12-11 10:56:35 +0000802 if (WARN_ON(pl->cfg_link_an_mode == MLO_AN_FIXED ||
803 (pl->cfg_link_an_mode == MLO_AN_INBAND &&
Baruch Siach7e418372018-10-03 19:04:49 +0300804 phy_interface_mode_is_8023z(interface))))
805 return -EINVAL;
806
807 if (pl->phydev)
808 return -EBUSY;
809
Russell King938d44c2019-12-11 10:56:25 +0000810 return phy_attach_direct(pl->netdev, phy, 0, interface);
Baruch Siach7e418372018-10-03 19:04:49 +0300811}
812
Russell King8796c892017-12-01 10:24:47 +0000813/**
814 * phylink_connect_phy() - connect a PHY to the phylink instance
815 * @pl: a pointer to a &struct phylink returned from phylink_create()
816 * @phy: a pointer to a &struct phy_device.
817 *
818 * Connect @phy to the phylink instance specified by @pl by calling
819 * phy_attach_direct(). Configure the @phy according to the MAC driver's
820 * capabilities, start the PHYLIB state machine and enable any interrupts
821 * that the PHY supports.
822 *
823 * This updates the phylink's ethtool supported and advertising link mode
824 * masks.
825 *
826 * Returns 0 on success or a negative errno.
827 */
Russell King9525ae82017-07-25 15:03:13 +0100828int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
829{
Russell King938d44c2019-12-11 10:56:25 +0000830 int ret;
831
Florian Fainelli4904b6e2017-12-12 16:00:26 -0800832 /* Use PHY device/driver interface */
833 if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
834 pl->link_interface = phy->interface;
835 pl->link_config.interface = pl->link_interface;
836 }
837
Russell King938d44c2019-12-11 10:56:25 +0000838 ret = phylink_attach_phy(pl, phy, pl->link_interface);
839 if (ret < 0)
840 return ret;
841
Russell Kinge45d1f52019-12-11 10:56:30 +0000842 ret = phylink_bringup_phy(pl, phy, pl->link_config.interface);
Russell King938d44c2019-12-11 10:56:25 +0000843 if (ret)
844 phy_detach(phy);
845
846 return ret;
Russell King9525ae82017-07-25 15:03:13 +0100847}
848EXPORT_SYMBOL_GPL(phylink_connect_phy);
849
Russell King8796c892017-12-01 10:24:47 +0000850/**
851 * phylink_of_phy_connect() - connect the PHY specified in the DT mode.
852 * @pl: a pointer to a &struct phylink returned from phylink_create()
853 * @dn: a pointer to a &struct device_node.
Florian Fainelli0a629642017-12-12 16:00:25 -0800854 * @flags: PHY-specific flags to communicate to the PHY device driver
Russell King8796c892017-12-01 10:24:47 +0000855 *
856 * Connect the phy specified in the device node @dn to the phylink instance
857 * specified by @pl. Actions specified in phylink_connect_phy() will be
858 * performed.
859 *
860 * Returns 0 on success or a negative errno.
861 */
Florian Fainelli0a629642017-12-12 16:00:25 -0800862int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn,
863 u32 flags)
Russell King9525ae82017-07-25 15:03:13 +0100864{
865 struct device_node *phy_node;
866 struct phy_device *phy_dev;
867 int ret;
868
Russell Kingcf4f2672017-12-01 10:24:21 +0000869 /* Fixed links and 802.3z are handled without needing a PHY */
Russell King24cf0e62019-12-11 10:56:35 +0000870 if (pl->cfg_link_an_mode == MLO_AN_FIXED ||
871 (pl->cfg_link_an_mode == MLO_AN_INBAND &&
Russell King86a362c2017-12-01 10:24:26 +0000872 phy_interface_mode_is_8023z(pl->link_interface)))
Russell King9525ae82017-07-25 15:03:13 +0100873 return 0;
874
875 phy_node = of_parse_phandle(dn, "phy-handle", 0);
876 if (!phy_node)
877 phy_node = of_parse_phandle(dn, "phy", 0);
878 if (!phy_node)
879 phy_node = of_parse_phandle(dn, "phy-device", 0);
880
881 if (!phy_node) {
Russell King24cf0e62019-12-11 10:56:35 +0000882 if (pl->cfg_link_an_mode == MLO_AN_PHY)
Russell King9525ae82017-07-25 15:03:13 +0100883 return -ENODEV;
Russell King9525ae82017-07-25 15:03:13 +0100884 return 0;
885 }
886
Russell Kingf5058a22019-12-12 17:16:12 +0000887 phy_dev = of_phy_find_device(phy_node);
Russell King9525ae82017-07-25 15:03:13 +0100888 /* We're done with the phy_node handle */
889 of_node_put(phy_node);
Russell King9525ae82017-07-25 15:03:13 +0100890 if (!phy_dev)
891 return -ENODEV;
892
Russell Kingf5058a22019-12-12 17:16:12 +0000893 ret = phy_attach_direct(pl->netdev, phy_dev, flags,
894 pl->link_interface);
895 if (ret)
896 return ret;
897
Russell Kinge45d1f52019-12-11 10:56:30 +0000898 ret = phylink_bringup_phy(pl, phy_dev, pl->link_config.interface);
Russell King9525ae82017-07-25 15:03:13 +0100899 if (ret)
900 phy_detach(phy_dev);
901
902 return ret;
903}
904EXPORT_SYMBOL_GPL(phylink_of_phy_connect);
905
Russell King8796c892017-12-01 10:24:47 +0000906/**
907 * phylink_disconnect_phy() - disconnect any PHY attached to the phylink
908 * instance.
909 * @pl: a pointer to a &struct phylink returned from phylink_create()
910 *
911 * Disconnect any current PHY from the phylink instance described by @pl.
912 */
Russell King9525ae82017-07-25 15:03:13 +0100913void phylink_disconnect_phy(struct phylink *pl)
914{
915 struct phy_device *phy;
916
Russell King8b874512017-12-15 16:09:47 +0000917 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100918
919 phy = pl->phydev;
920 if (phy) {
921 mutex_lock(&phy->lock);
922 mutex_lock(&pl->state_mutex);
Russell King9525ae82017-07-25 15:03:13 +0100923 pl->phydev = NULL;
924 mutex_unlock(&pl->state_mutex);
925 mutex_unlock(&phy->lock);
926 flush_work(&pl->resolve);
927
928 phy_disconnect(phy);
929 }
930}
931EXPORT_SYMBOL_GPL(phylink_disconnect_phy);
932
Russell King8796c892017-12-01 10:24:47 +0000933/**
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800934 * phylink_fixed_state_cb() - allow setting a fixed link callback
935 * @pl: a pointer to a &struct phylink returned from phylink_create()
936 * @cb: callback to execute to determine the fixed link state.
937 *
938 * The MAC driver should call this driver when the state of its link
939 * can be determined through e.g: an out of band MMIO register.
940 */
941int phylink_fixed_state_cb(struct phylink *pl,
942 void (*cb)(struct net_device *dev,
943 struct phylink_link_state *state))
944{
945 /* It does not make sense to let the link be overriden unless we use
946 * MLO_AN_FIXED
947 */
Russell King24cf0e62019-12-11 10:56:35 +0000948 if (pl->cfg_link_an_mode != MLO_AN_FIXED)
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800949 return -EINVAL;
950
951 mutex_lock(&pl->state_mutex);
952 pl->get_fixed_state = cb;
953 mutex_unlock(&pl->state_mutex);
954
955 return 0;
956}
957EXPORT_SYMBOL_GPL(phylink_fixed_state_cb);
958
959/**
Russell King8796c892017-12-01 10:24:47 +0000960 * phylink_mac_change() - notify phylink of a change in MAC state
961 * @pl: a pointer to a &struct phylink returned from phylink_create()
962 * @up: indicates whether the link is currently up.
963 *
964 * The MAC driver should call this driver when the state of its link
965 * changes (eg, link failure, new negotiation results, etc.)
966 */
Russell King9525ae82017-07-25 15:03:13 +0100967void phylink_mac_change(struct phylink *pl, bool up)
968{
969 if (!up)
970 pl->mac_link_dropped = true;
971 phylink_run_resolve(pl);
Ioana Ciornei170911802019-05-28 20:38:14 +0300972 phylink_dbg(pl, "mac link %s\n", up ? "up" : "down");
Russell King9525ae82017-07-25 15:03:13 +0100973}
974EXPORT_SYMBOL_GPL(phylink_mac_change);
975
Russell King7b3b0e82019-05-28 10:57:23 +0100976static irqreturn_t phylink_link_handler(int irq, void *data)
977{
978 struct phylink *pl = data;
979
980 phylink_run_resolve(pl);
981
982 return IRQ_HANDLED;
983}
984
Russell King8796c892017-12-01 10:24:47 +0000985/**
986 * phylink_start() - start a phylink instance
987 * @pl: a pointer to a &struct phylink returned from phylink_create()
988 *
989 * Start the phylink instance specified by @pl, configuring the MAC for the
990 * desired link mode(s) and negotiation style. This should be called from the
991 * network device driver's &struct net_device_ops ndo_open() method.
992 */
Russell King9525ae82017-07-25 15:03:13 +0100993void phylink_start(struct phylink *pl)
994{
Russell King8b874512017-12-15 16:09:47 +0000995 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100996
Ioana Ciornei170911802019-05-28 20:38:14 +0300997 phylink_info(pl, "configuring for %s/%s link mode\n",
Russell King24cf0e62019-12-11 10:56:35 +0000998 phylink_an_mode_str(pl->cur_link_an_mode),
Ioana Ciornei170911802019-05-28 20:38:14 +0300999 phy_modes(pl->link_config.interface));
Russell King9525ae82017-07-25 15:03:13 +01001000
Antoine Tenartaeeb2e82018-09-19 11:39:31 +02001001 /* Always set the carrier off */
Ioana Ciornei43de6192019-05-28 20:38:13 +03001002 if (pl->netdev)
1003 netif_carrier_off(pl->netdev);
Antoine Tenartaeeb2e82018-09-19 11:39:31 +02001004
Russell King9525ae82017-07-25 15:03:13 +01001005 /* Apply the link configuration to the MAC when starting. This allows
1006 * a fixed-link to start with the correct parameters, and also
Colin Ian Kingcc1122b2018-03-01 10:23:03 +00001007 * ensures that we set the appropriate advertisement for Serdes links.
Russell King9525ae82017-07-25 15:03:13 +01001008 */
1009 phylink_resolve_flow(pl, &pl->link_config);
1010 phylink_mac_config(pl, &pl->link_config);
1011
Russell King85b43942017-12-01 10:24:42 +00001012 /* Restart autonegotiation if using 802.3z to ensure that the link
1013 * parameters are properly negotiated. This is necessary for DSA
1014 * switches using 802.3z negotiation to ensure they see our modes.
1015 */
1016 phylink_mac_an_restart(pl);
1017
Russell King9525ae82017-07-25 15:03:13 +01001018 clear_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
1019 phylink_run_resolve(pl);
1020
Russell King24cf0e62019-12-11 10:56:35 +00001021 if (pl->cfg_link_an_mode == MLO_AN_FIXED && pl->link_gpio) {
Russell King7b3b0e82019-05-28 10:57:23 +01001022 int irq = gpiod_to_irq(pl->link_gpio);
1023
1024 if (irq > 0) {
1025 if (!request_irq(irq, phylink_link_handler,
1026 IRQF_TRIGGER_RISING |
1027 IRQF_TRIGGER_FALLING,
1028 "netdev link", pl))
1029 pl->link_irq = irq;
1030 else
1031 irq = 0;
1032 }
1033 if (irq <= 0)
1034 mod_timer(&pl->link_poll, jiffies + HZ);
1035 }
Vladimir Oltean1511ed02020-01-06 03:34:11 +02001036 if ((pl->cfg_link_an_mode == MLO_AN_FIXED && pl->get_fixed_state) ||
1037 pl->config->pcs_poll)
Russell King9cd00a82018-05-10 13:17:31 -07001038 mod_timer(&pl->link_poll, jiffies + HZ);
Russell King9525ae82017-07-25 15:03:13 +01001039 if (pl->phydev)
1040 phy_start(pl->phydev);
Arseny Solokhac7fa7f52019-07-24 20:31:39 +07001041 if (pl->sfp_bus)
1042 sfp_upstream_start(pl->sfp_bus);
Russell King9525ae82017-07-25 15:03:13 +01001043}
1044EXPORT_SYMBOL_GPL(phylink_start);
1045
Russell King8796c892017-12-01 10:24:47 +00001046/**
1047 * phylink_stop() - stop a phylink instance
1048 * @pl: a pointer to a &struct phylink returned from phylink_create()
1049 *
1050 * Stop the phylink instance specified by @pl. This should be called from the
1051 * network device driver's &struct net_device_ops ndo_stop() method. The
1052 * network device's carrier state should not be changed prior to calling this
1053 * function.
1054 */
Russell King9525ae82017-07-25 15:03:13 +01001055void phylink_stop(struct phylink *pl)
1056{
Russell King8b874512017-12-15 16:09:47 +00001057 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001058
Russell Kingce0aa272017-07-25 15:03:18 +01001059 if (pl->sfp_bus)
1060 sfp_upstream_stop(pl->sfp_bus);
Arseny Solokhac7fa7f52019-07-24 20:31:39 +07001061 if (pl->phydev)
1062 phy_stop(pl->phydev);
Russell King7b3b0e82019-05-28 10:57:23 +01001063 del_timer_sync(&pl->link_poll);
1064 if (pl->link_irq) {
1065 free_irq(pl->link_irq, pl);
1066 pl->link_irq = 0;
1067 }
Russell King9525ae82017-07-25 15:03:13 +01001068
Russell King87454b62019-02-11 15:04:24 +00001069 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_STOPPED);
Russell King9525ae82017-07-25 15:03:13 +01001070}
1071EXPORT_SYMBOL_GPL(phylink_stop);
1072
Russell King8796c892017-12-01 10:24:47 +00001073/**
1074 * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY
1075 * @pl: a pointer to a &struct phylink returned from phylink_create()
1076 * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters
1077 *
1078 * Read the wake on lan parameters from the PHY attached to the phylink
1079 * instance specified by @pl. If no PHY is currently attached, report no
1080 * support for wake on lan.
1081 */
Russell King9525ae82017-07-25 15:03:13 +01001082void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
1083{
Russell King8b874512017-12-15 16:09:47 +00001084 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001085
1086 wol->supported = 0;
1087 wol->wolopts = 0;
1088
1089 if (pl->phydev)
1090 phy_ethtool_get_wol(pl->phydev, wol);
1091}
1092EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol);
1093
Russell King8796c892017-12-01 10:24:47 +00001094/**
1095 * phylink_ethtool_set_wol() - set wake on lan parameters
1096 * @pl: a pointer to a &struct phylink returned from phylink_create()
1097 * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters
1098 *
1099 * Set the wake on lan parameters for the PHY attached to the phylink
1100 * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP
1101 * error.
1102 *
1103 * Returns zero on success or negative errno code.
1104 */
Russell King9525ae82017-07-25 15:03:13 +01001105int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
1106{
1107 int ret = -EOPNOTSUPP;
1108
Russell King8b874512017-12-15 16:09:47 +00001109 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001110
1111 if (pl->phydev)
1112 ret = phy_ethtool_set_wol(pl->phydev, wol);
1113
1114 return ret;
1115}
1116EXPORT_SYMBOL_GPL(phylink_ethtool_set_wol);
1117
1118static void phylink_merge_link_mode(unsigned long *dst, const unsigned long *b)
1119{
1120 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask);
1121
1122 linkmode_zero(mask);
1123 phylink_set_port_modes(mask);
1124
1125 linkmode_and(dst, dst, mask);
1126 linkmode_or(dst, dst, b);
1127}
1128
1129static void phylink_get_ksettings(const struct phylink_link_state *state,
1130 struct ethtool_link_ksettings *kset)
1131{
1132 phylink_merge_link_mode(kset->link_modes.advertising, state->advertising);
1133 linkmode_copy(kset->link_modes.lp_advertising, state->lp_advertising);
1134 kset->base.speed = state->speed;
1135 kset->base.duplex = state->duplex;
1136 kset->base.autoneg = state->an_enabled ? AUTONEG_ENABLE :
1137 AUTONEG_DISABLE;
1138}
1139
Russell King8796c892017-12-01 10:24:47 +00001140/**
1141 * phylink_ethtool_ksettings_get() - get the current link settings
1142 * @pl: a pointer to a &struct phylink returned from phylink_create()
1143 * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings
1144 *
1145 * Read the current link settings for the phylink instance specified by @pl.
1146 * This will be the link settings read from the MAC, PHY or fixed link
1147 * settings depending on the current negotiation mode.
1148 */
Russell King9525ae82017-07-25 15:03:13 +01001149int phylink_ethtool_ksettings_get(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -07001150 struct ethtool_link_ksettings *kset)
Russell King9525ae82017-07-25 15:03:13 +01001151{
1152 struct phylink_link_state link_state;
1153
Russell King8b874512017-12-15 16:09:47 +00001154 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001155
1156 if (pl->phydev) {
1157 phy_ethtool_ksettings_get(pl->phydev, kset);
1158 } else {
1159 kset->base.port = pl->link_port;
1160 }
1161
1162 linkmode_copy(kset->link_modes.supported, pl->supported);
1163
Russell King24cf0e62019-12-11 10:56:35 +00001164 switch (pl->cur_link_an_mode) {
Russell King9525ae82017-07-25 15:03:13 +01001165 case MLO_AN_FIXED:
1166 /* We are using fixed settings. Report these as the
1167 * current link settings - and note that these also
1168 * represent the supported speeds/duplex/pause modes.
1169 */
1170 phylink_get_fixed_state(pl, &link_state);
1171 phylink_get_ksettings(&link_state, kset);
1172 break;
1173
Russell King86a362c2017-12-01 10:24:26 +00001174 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001175 /* If there is a phy attached, then use the reported
1176 * settings from the phy with no modification.
1177 */
1178 if (pl->phydev)
1179 break;
1180
Russell Kingd46b7e42019-11-21 00:36:22 +00001181 phylink_mac_pcs_get_state(pl, &link_state);
Russell King9525ae82017-07-25 15:03:13 +01001182
1183 /* The MAC is reporting the link results from its own PCS
1184 * layer via in-band status. Report these as the current
1185 * link settings.
1186 */
1187 phylink_get_ksettings(&link_state, kset);
1188 break;
1189 }
1190
1191 return 0;
1192}
1193EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get);
1194
Russell King8796c892017-12-01 10:24:47 +00001195/**
1196 * phylink_ethtool_ksettings_set() - set the link settings
1197 * @pl: a pointer to a &struct phylink returned from phylink_create()
1198 * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes
1199 */
Russell King9525ae82017-07-25 15:03:13 +01001200int phylink_ethtool_ksettings_set(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -07001201 const struct ethtool_link_ksettings *kset)
Russell King9525ae82017-07-25 15:03:13 +01001202{
Russell King77316762019-06-02 15:12:54 +01001203 __ETHTOOL_DECLARE_LINK_MODE_MASK(support);
Russell King9525ae82017-07-25 15:03:13 +01001204 struct ethtool_link_ksettings our_kset;
1205 struct phylink_link_state config;
1206 int ret;
1207
Russell King8b874512017-12-15 16:09:47 +00001208 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001209
1210 if (kset->base.autoneg != AUTONEG_DISABLE &&
1211 kset->base.autoneg != AUTONEG_ENABLE)
1212 return -EINVAL;
1213
Russell King77316762019-06-02 15:12:54 +01001214 linkmode_copy(support, pl->supported);
Russell King9525ae82017-07-25 15:03:13 +01001215 config = pl->link_config;
1216
Colin Ian Kingcc1122b2018-03-01 10:23:03 +00001217 /* Mask out unsupported advertisements */
Russell King9525ae82017-07-25 15:03:13 +01001218 linkmode_and(config.advertising, kset->link_modes.advertising,
Russell King77316762019-06-02 15:12:54 +01001219 support);
Russell King9525ae82017-07-25 15:03:13 +01001220
1221 /* FIXME: should we reject autoneg if phy/mac does not support it? */
1222 if (kset->base.autoneg == AUTONEG_DISABLE) {
1223 const struct phy_setting *s;
1224
1225 /* Autonegotiation disabled, select a suitable speed and
1226 * duplex.
1227 */
1228 s = phy_lookup_setting(kset->base.speed, kset->base.duplex,
Russell King77316762019-06-02 15:12:54 +01001229 support, false);
Russell King9525ae82017-07-25 15:03:13 +01001230 if (!s)
1231 return -EINVAL;
1232
1233 /* If we have a fixed link (as specified by firmware), refuse
1234 * to change link parameters.
1235 */
Russell King24cf0e62019-12-11 10:56:35 +00001236 if (pl->cur_link_an_mode == MLO_AN_FIXED &&
Russell King9525ae82017-07-25 15:03:13 +01001237 (s->speed != pl->link_config.speed ||
1238 s->duplex != pl->link_config.duplex))
1239 return -EINVAL;
1240
1241 config.speed = s->speed;
1242 config.duplex = s->duplex;
1243 config.an_enabled = false;
1244
1245 __clear_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1246 } else {
1247 /* If we have a fixed link, refuse to enable autonegotiation */
Russell King24cf0e62019-12-11 10:56:35 +00001248 if (pl->cur_link_an_mode == MLO_AN_FIXED)
Russell King9525ae82017-07-25 15:03:13 +01001249 return -EINVAL;
1250
1251 config.speed = SPEED_UNKNOWN;
1252 config.duplex = DUPLEX_UNKNOWN;
1253 config.an_enabled = true;
1254
1255 __set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1256 }
1257
Russell King9525ae82017-07-25 15:03:13 +01001258 if (pl->phydev) {
Russell King5d57c322019-12-13 18:22:02 +00001259 /* If we have a PHY, we process the kset change via phylib.
1260 * phylib will call our link state function if the PHY
1261 * parameters have changed, which will trigger a resolve
1262 * and update the MAC configuration.
1263 */
1264 our_kset = *kset;
1265 linkmode_copy(our_kset.link_modes.advertising,
1266 config.advertising);
1267 our_kset.base.speed = config.speed;
1268 our_kset.base.duplex = config.duplex;
1269
Russell King9525ae82017-07-25 15:03:13 +01001270 ret = phy_ethtool_ksettings_set(pl->phydev, &our_kset);
1271 if (ret)
1272 return ret;
Russell King9525ae82017-07-25 15:03:13 +01001273
Russell King5d57c322019-12-13 18:22:02 +00001274 mutex_lock(&pl->state_mutex);
1275 /* Save the new configuration */
1276 linkmode_copy(pl->link_config.advertising,
1277 our_kset.link_modes.advertising);
1278 pl->link_config.interface = config.interface;
1279 pl->link_config.speed = our_kset.base.speed;
1280 pl->link_config.duplex = our_kset.base.duplex;
1281 pl->link_config.an_enabled = our_kset.base.autoneg !=
1282 AUTONEG_DISABLE;
1283 mutex_unlock(&pl->state_mutex);
1284 } else {
1285 /* For a fixed link, this isn't able to change any parameters,
1286 * which just leaves inband mode.
1287 */
1288 if (phylink_validate(pl, support, &config))
1289 return -EINVAL;
Russell King9525ae82017-07-25 15:03:13 +01001290
Russell King5d57c322019-12-13 18:22:02 +00001291 /* If autonegotiation is enabled, we must have an advertisement */
1292 if (config.an_enabled &&
1293 phylink_is_empty_linkmode(config.advertising))
1294 return -EINVAL;
1295
1296 mutex_lock(&pl->state_mutex);
1297 linkmode_copy(pl->link_config.advertising, config.advertising);
1298 pl->link_config.interface = config.interface;
1299 pl->link_config.speed = config.speed;
1300 pl->link_config.duplex = config.duplex;
1301 pl->link_config.an_enabled = kset->base.autoneg !=
1302 AUTONEG_DISABLE;
1303
1304 if (pl->cur_link_an_mode == MLO_AN_INBAND &&
1305 !test_bit(PHYLINK_DISABLE_STOPPED,
1306 &pl->phylink_disable_state)) {
1307 /* If in 802.3z mode, this updates the advertisement.
1308 *
1309 * If we are in SGMII mode without a PHY, there is no
1310 * advertisement; the only thing we have is the pause
1311 * modes which can only come from a PHY.
1312 */
1313 phylink_mac_config(pl, &pl->link_config);
1314 phylink_mac_an_restart(pl);
1315 }
1316 mutex_unlock(&pl->state_mutex);
Russell King9525ae82017-07-25 15:03:13 +01001317 }
Russell King9525ae82017-07-25 15:03:13 +01001318
Dan Carpenterd18c2a12017-08-10 00:35:50 +03001319 return 0;
Russell King9525ae82017-07-25 15:03:13 +01001320}
1321EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set);
1322
Russell King8796c892017-12-01 10:24:47 +00001323/**
1324 * phylink_ethtool_nway_reset() - restart negotiation
1325 * @pl: a pointer to a &struct phylink returned from phylink_create()
1326 *
1327 * Restart negotiation for the phylink instance specified by @pl. This will
1328 * cause any attached phy to restart negotiation with the link partner, and
1329 * if the MAC is in a BaseX mode, the MAC will also be requested to restart
1330 * negotiation.
1331 *
1332 * Returns zero on success, or negative error code.
1333 */
Russell King9525ae82017-07-25 15:03:13 +01001334int phylink_ethtool_nway_reset(struct phylink *pl)
1335{
1336 int ret = 0;
1337
Russell King8b874512017-12-15 16:09:47 +00001338 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001339
1340 if (pl->phydev)
1341 ret = phy_restart_aneg(pl->phydev);
1342 phylink_mac_an_restart(pl);
1343
1344 return ret;
1345}
1346EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset);
1347
Russell King8796c892017-12-01 10:24:47 +00001348/**
1349 * phylink_ethtool_get_pauseparam() - get the current pause parameters
1350 * @pl: a pointer to a &struct phylink returned from phylink_create()
1351 * @pause: a pointer to a &struct ethtool_pauseparam
1352 */
Russell King9525ae82017-07-25 15:03:13 +01001353void phylink_ethtool_get_pauseparam(struct phylink *pl,
1354 struct ethtool_pauseparam *pause)
1355{
Russell King8b874512017-12-15 16:09:47 +00001356 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001357
1358 pause->autoneg = !!(pl->link_config.pause & MLO_PAUSE_AN);
1359 pause->rx_pause = !!(pl->link_config.pause & MLO_PAUSE_RX);
1360 pause->tx_pause = !!(pl->link_config.pause & MLO_PAUSE_TX);
1361}
1362EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam);
1363
Russell King8796c892017-12-01 10:24:47 +00001364/**
1365 * phylink_ethtool_set_pauseparam() - set the current pause parameters
1366 * @pl: a pointer to a &struct phylink returned from phylink_create()
1367 * @pause: a pointer to a &struct ethtool_pauseparam
1368 */
Russell King9525ae82017-07-25 15:03:13 +01001369int phylink_ethtool_set_pauseparam(struct phylink *pl,
1370 struct ethtool_pauseparam *pause)
1371{
1372 struct phylink_link_state *config = &pl->link_config;
1373
Russell King8b874512017-12-15 16:09:47 +00001374 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001375
Russell King8cdfa252020-02-15 15:49:37 +00001376 if (pl->cur_link_an_mode == MLO_AN_FIXED)
1377 return -EOPNOTSUPP;
1378
Russell King9525ae82017-07-25 15:03:13 +01001379 if (!phylink_test(pl->supported, Pause) &&
1380 !phylink_test(pl->supported, Asym_Pause))
1381 return -EOPNOTSUPP;
1382
1383 if (!phylink_test(pl->supported, Asym_Pause) &&
1384 !pause->autoneg && pause->rx_pause != pause->tx_pause)
1385 return -EINVAL;
1386
1387 config->pause &= ~(MLO_PAUSE_AN | MLO_PAUSE_TXRX_MASK);
1388
1389 if (pause->autoneg)
1390 config->pause |= MLO_PAUSE_AN;
1391 if (pause->rx_pause)
1392 config->pause |= MLO_PAUSE_RX;
1393 if (pause->tx_pause)
1394 config->pause |= MLO_PAUSE_TX;
1395
Russell Kingd9922c02019-11-19 17:28:14 +00001396 /* If we have a PHY, phylib will call our link state function if the
1397 * mode has changed, which will trigger a resolve and update the MAC
1398 * configuration.
1399 */
1400 if (pl->phydev) {
1401 phy_set_asym_pause(pl->phydev, pause->rx_pause,
1402 pause->tx_pause);
1403 } else if (!test_bit(PHYLINK_DISABLE_STOPPED,
1404 &pl->phylink_disable_state)) {
Russell King8cdfa252020-02-15 15:49:37 +00001405 phylink_mac_config(pl, &pl->link_config);
1406 phylink_mac_an_restart(pl);
Russell King9525ae82017-07-25 15:03:13 +01001407 }
1408
1409 return 0;
1410}
1411EXPORT_SYMBOL_GPL(phylink_ethtool_set_pauseparam);
1412
Russell King8796c892017-12-01 10:24:47 +00001413/**
1414 * phylink_ethtool_get_eee_err() - read the energy efficient ethernet error
1415 * counter
1416 * @pl: a pointer to a &struct phylink returned from phylink_create().
1417 *
1418 * Read the Energy Efficient Ethernet error counter from the PHY associated
1419 * with the phylink instance specified by @pl.
1420 *
1421 * Returns positive error counter value, or negative error code.
1422 */
Russell King9525ae82017-07-25 15:03:13 +01001423int phylink_get_eee_err(struct phylink *pl)
1424{
1425 int ret = 0;
1426
Russell King8b874512017-12-15 16:09:47 +00001427 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001428
1429 if (pl->phydev)
1430 ret = phy_get_eee_err(pl->phydev);
1431
1432 return ret;
1433}
1434EXPORT_SYMBOL_GPL(phylink_get_eee_err);
1435
Russell King8796c892017-12-01 10:24:47 +00001436/**
Russell King86e58132019-02-11 11:46:06 +00001437 * phylink_init_eee() - init and check the EEE features
1438 * @pl: a pointer to a &struct phylink returned from phylink_create()
1439 * @clk_stop_enable: allow PHY to stop receive clock
1440 *
1441 * Must be called either with RTNL held or within mac_link_up()
1442 */
1443int phylink_init_eee(struct phylink *pl, bool clk_stop_enable)
1444{
1445 int ret = -EOPNOTSUPP;
1446
1447 if (pl->phydev)
1448 ret = phy_init_eee(pl->phydev, clk_stop_enable);
1449
1450 return ret;
1451}
1452EXPORT_SYMBOL_GPL(phylink_init_eee);
1453
1454/**
Russell King8796c892017-12-01 10:24:47 +00001455 * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters
1456 * @pl: a pointer to a &struct phylink returned from phylink_create()
1457 * @eee: a pointer to a &struct ethtool_eee for the read parameters
1458 */
Russell King9525ae82017-07-25 15:03:13 +01001459int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
1460{
1461 int ret = -EOPNOTSUPP;
1462
Russell King8b874512017-12-15 16:09:47 +00001463 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001464
1465 if (pl->phydev)
1466 ret = phy_ethtool_get_eee(pl->phydev, eee);
1467
1468 return ret;
1469}
1470EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee);
1471
Russell King8796c892017-12-01 10:24:47 +00001472/**
1473 * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters
1474 * @pl: a pointer to a &struct phylink returned from phylink_create()
1475 * @eee: a pointer to a &struct ethtool_eee for the desired parameters
1476 */
Russell King9525ae82017-07-25 15:03:13 +01001477int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee)
1478{
1479 int ret = -EOPNOTSUPP;
1480
Russell King8b874512017-12-15 16:09:47 +00001481 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001482
1483 if (pl->phydev)
1484 ret = phy_ethtool_set_eee(pl->phydev, eee);
1485
1486 return ret;
1487}
1488EXPORT_SYMBOL_GPL(phylink_ethtool_set_eee);
1489
1490/* This emulates MII registers for a fixed-mode phy operating as per the
1491 * passed in state. "aneg" defines if we report negotiation is possible.
1492 *
1493 * FIXME: should deal with negotiation state too.
1494 */
Russell King7fdc4552019-05-28 10:57:18 +01001495static int phylink_mii_emul_read(unsigned int reg,
1496 struct phylink_link_state *state)
Russell King9525ae82017-07-25 15:03:13 +01001497{
1498 struct fixed_phy_status fs;
1499 int val;
1500
1501 fs.link = state->link;
1502 fs.speed = state->speed;
1503 fs.duplex = state->duplex;
1504 fs.pause = state->pause & MLO_PAUSE_SYM;
1505 fs.asym_pause = state->pause & MLO_PAUSE_ASYM;
1506
1507 val = swphy_read_reg(reg, &fs);
1508 if (reg == MII_BMSR) {
1509 if (!state->an_complete)
1510 val &= ~BMSR_ANEGCOMPLETE;
Russell King9525ae82017-07-25 15:03:13 +01001511 }
1512 return val;
1513}
1514
Russell Kingecbd87b2017-07-25 15:03:28 +01001515static int phylink_phy_read(struct phylink *pl, unsigned int phy_id,
1516 unsigned int reg)
1517{
1518 struct phy_device *phydev = pl->phydev;
1519 int prtad, devad;
1520
1521 if (mdio_phy_id_is_c45(phy_id)) {
1522 prtad = mdio_phy_id_prtad(phy_id);
1523 devad = mdio_phy_id_devad(phy_id);
1524 devad = MII_ADDR_C45 | devad << 16 | reg;
1525 } else if (phydev->is_c45) {
1526 switch (reg) {
1527 case MII_BMCR:
1528 case MII_BMSR:
1529 case MII_PHYSID1:
1530 case MII_PHYSID2:
1531 devad = __ffs(phydev->c45_ids.devices_in_package);
1532 break;
1533 case MII_ADVERTISE:
1534 case MII_LPA:
1535 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1536 return -EINVAL;
1537 devad = MDIO_MMD_AN;
1538 if (reg == MII_ADVERTISE)
1539 reg = MDIO_AN_ADVERTISE;
1540 else
1541 reg = MDIO_AN_LPA;
1542 break;
1543 default:
1544 return -EINVAL;
1545 }
1546 prtad = phy_id;
1547 devad = MII_ADDR_C45 | devad << 16 | reg;
1548 } else {
1549 prtad = phy_id;
1550 devad = reg;
1551 }
1552 return mdiobus_read(pl->phydev->mdio.bus, prtad, devad);
1553}
1554
1555static int phylink_phy_write(struct phylink *pl, unsigned int phy_id,
1556 unsigned int reg, unsigned int val)
1557{
1558 struct phy_device *phydev = pl->phydev;
1559 int prtad, devad;
1560
1561 if (mdio_phy_id_is_c45(phy_id)) {
1562 prtad = mdio_phy_id_prtad(phy_id);
1563 devad = mdio_phy_id_devad(phy_id);
1564 devad = MII_ADDR_C45 | devad << 16 | reg;
1565 } else if (phydev->is_c45) {
1566 switch (reg) {
1567 case MII_BMCR:
1568 case MII_BMSR:
1569 case MII_PHYSID1:
1570 case MII_PHYSID2:
1571 devad = __ffs(phydev->c45_ids.devices_in_package);
1572 break;
1573 case MII_ADVERTISE:
1574 case MII_LPA:
1575 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1576 return -EINVAL;
1577 devad = MDIO_MMD_AN;
1578 if (reg == MII_ADVERTISE)
1579 reg = MDIO_AN_ADVERTISE;
1580 else
1581 reg = MDIO_AN_LPA;
1582 break;
1583 default:
1584 return -EINVAL;
1585 }
1586 prtad = phy_id;
1587 devad = MII_ADDR_C45 | devad << 16 | reg;
1588 } else {
1589 prtad = phy_id;
1590 devad = reg;
1591 }
1592
1593 return mdiobus_write(phydev->mdio.bus, prtad, devad, val);
1594}
1595
Russell King9525ae82017-07-25 15:03:13 +01001596static int phylink_mii_read(struct phylink *pl, unsigned int phy_id,
1597 unsigned int reg)
1598{
1599 struct phylink_link_state state;
1600 int val = 0xffff;
1601
Russell King24cf0e62019-12-11 10:56:35 +00001602 switch (pl->cur_link_an_mode) {
Russell King9525ae82017-07-25 15:03:13 +01001603 case MLO_AN_FIXED:
1604 if (phy_id == 0) {
1605 phylink_get_fixed_state(pl, &state);
Russell King7fdc4552019-05-28 10:57:18 +01001606 val = phylink_mii_emul_read(reg, &state);
Russell King9525ae82017-07-25 15:03:13 +01001607 }
1608 break;
1609
1610 case MLO_AN_PHY:
1611 return -EOPNOTSUPP;
1612
Russell King86a362c2017-12-01 10:24:26 +00001613 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001614 if (phy_id == 0) {
Russell Kingd46b7e42019-11-21 00:36:22 +00001615 phylink_mac_pcs_get_state(pl, &state);
Russell King7fdc4552019-05-28 10:57:18 +01001616 val = phylink_mii_emul_read(reg, &state);
Russell King9525ae82017-07-25 15:03:13 +01001617 }
1618 break;
1619 }
1620
1621 return val & 0xffff;
1622}
1623
1624static int phylink_mii_write(struct phylink *pl, unsigned int phy_id,
1625 unsigned int reg, unsigned int val)
1626{
Russell King24cf0e62019-12-11 10:56:35 +00001627 switch (pl->cur_link_an_mode) {
Russell King9525ae82017-07-25 15:03:13 +01001628 case MLO_AN_FIXED:
1629 break;
1630
1631 case MLO_AN_PHY:
1632 return -EOPNOTSUPP;
1633
Russell King86a362c2017-12-01 10:24:26 +00001634 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001635 break;
1636 }
1637
1638 return 0;
1639}
1640
Russell King8796c892017-12-01 10:24:47 +00001641/**
1642 * phylink_mii_ioctl() - generic mii ioctl interface
1643 * @pl: a pointer to a &struct phylink returned from phylink_create()
1644 * @ifr: a pointer to a &struct ifreq for socket ioctls
1645 * @cmd: ioctl cmd to execute
1646 *
1647 * Perform the specified MII ioctl on the PHY attached to the phylink instance
1648 * specified by @pl. If no PHY is attached, emulate the presence of the PHY.
1649 *
1650 * Returns: zero on success or negative error code.
1651 *
1652 * %SIOCGMIIPHY:
1653 * read register from the current PHY.
1654 * %SIOCGMIIREG:
1655 * read register from the specified PHY.
1656 * %SIOCSMIIREG:
1657 * set a register on the specified PHY.
1658 */
Russell King9525ae82017-07-25 15:03:13 +01001659int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
1660{
Russell Kingecbd87b2017-07-25 15:03:28 +01001661 struct mii_ioctl_data *mii = if_mii(ifr);
1662 int ret;
Russell King9525ae82017-07-25 15:03:13 +01001663
Russell King8b874512017-12-15 16:09:47 +00001664 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001665
Russell Kingecbd87b2017-07-25 15:03:28 +01001666 if (pl->phydev) {
Russell King86a362c2017-12-01 10:24:26 +00001667 /* PHYs only exist for MLO_AN_PHY and SGMII */
Russell Kingecbd87b2017-07-25 15:03:28 +01001668 switch (cmd) {
1669 case SIOCGMIIPHY:
1670 mii->phy_id = pl->phydev->mdio.addr;
Gustavo A. R. Silva46cd7502018-01-05 11:23:45 -06001671 /* fall through */
Russell King9525ae82017-07-25 15:03:13 +01001672
Russell Kingecbd87b2017-07-25 15:03:28 +01001673 case SIOCGMIIREG:
1674 ret = phylink_phy_read(pl, mii->phy_id, mii->reg_num);
1675 if (ret >= 0) {
1676 mii->val_out = ret;
1677 ret = 0;
1678 }
1679 break;
Russell King9525ae82017-07-25 15:03:13 +01001680
Russell Kingecbd87b2017-07-25 15:03:28 +01001681 case SIOCSMIIREG:
1682 ret = phylink_phy_write(pl, mii->phy_id, mii->reg_num,
1683 mii->val_in);
1684 break;
Russell King9525ae82017-07-25 15:03:13 +01001685
Russell Kingecbd87b2017-07-25 15:03:28 +01001686 default:
Russell King9525ae82017-07-25 15:03:13 +01001687 ret = phy_mii_ioctl(pl->phydev, ifr, cmd);
Russell Kingecbd87b2017-07-25 15:03:28 +01001688 break;
1689 }
1690 } else {
1691 switch (cmd) {
1692 case SIOCGMIIPHY:
1693 mii->phy_id = 0;
Gustavo A. R. Silva46cd7502018-01-05 11:23:45 -06001694 /* fall through */
Russell Kingecbd87b2017-07-25 15:03:28 +01001695
1696 case SIOCGMIIREG:
1697 ret = phylink_mii_read(pl, mii->phy_id, mii->reg_num);
1698 if (ret >= 0) {
1699 mii->val_out = ret;
1700 ret = 0;
1701 }
1702 break;
1703
1704 case SIOCSMIIREG:
1705 ret = phylink_mii_write(pl, mii->phy_id, mii->reg_num,
1706 mii->val_in);
1707 break;
1708
1709 default:
1710 ret = -EOPNOTSUPP;
1711 break;
1712 }
Russell King9525ae82017-07-25 15:03:13 +01001713 }
1714
1715 return ret;
1716}
1717EXPORT_SYMBOL_GPL(phylink_mii_ioctl);
1718
Russell King320587e62019-05-28 10:57:34 +01001719static void phylink_sfp_attach(void *upstream, struct sfp_bus *bus)
1720{
1721 struct phylink *pl = upstream;
1722
1723 pl->netdev->sfp_bus = bus;
1724}
1725
1726static void phylink_sfp_detach(void *upstream, struct sfp_bus *bus)
1727{
1728 struct phylink *pl = upstream;
1729
1730 pl->netdev->sfp_bus = NULL;
1731}
1732
Russell King52c95602019-12-11 10:56:45 +00001733static int phylink_sfp_config(struct phylink *pl, u8 mode,
Russell Kingc0de2f42019-12-11 10:56:40 +00001734 const unsigned long *supported,
1735 const unsigned long *advertising)
Russell Kingce0aa272017-07-25 15:03:18 +01001736{
Russell King77316762019-06-02 15:12:54 +01001737 __ETHTOOL_DECLARE_LINK_MODE_MASK(support1);
Russell Kingc0de2f42019-12-11 10:56:40 +00001738 __ETHTOOL_DECLARE_LINK_MODE_MASK(support);
Russell Kingce0aa272017-07-25 15:03:18 +01001739 struct phylink_link_state config;
1740 phy_interface_t iface;
Russell Kingce0aa272017-07-25 15:03:18 +01001741 bool changed;
Russell Kingc0de2f42019-12-11 10:56:40 +00001742 int ret;
Russell Kingce0aa272017-07-25 15:03:18 +01001743
Russell Kingc0de2f42019-12-11 10:56:40 +00001744 linkmode_copy(support, supported);
Russell Kingce0aa272017-07-25 15:03:18 +01001745
1746 memset(&config, 0, sizeof(config));
Russell Kingc0de2f42019-12-11 10:56:40 +00001747 linkmode_copy(config.advertising, advertising);
Russell Kinga9c79362018-02-27 15:53:02 +00001748 config.interface = PHY_INTERFACE_MODE_NA;
Russell Kingce0aa272017-07-25 15:03:18 +01001749 config.speed = SPEED_UNKNOWN;
1750 config.duplex = DUPLEX_UNKNOWN;
1751 config.pause = MLO_PAUSE_AN;
1752 config.an_enabled = pl->link_config.an_enabled;
1753
1754 /* Ignore errors if we're expecting a PHY to attach later */
1755 ret = phylink_validate(pl, support, &config);
1756 if (ret) {
Ioana Ciornei170911802019-05-28 20:38:14 +03001757 phylink_err(pl, "validation with support %*pb failed: %d\n",
1758 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
Russell Kinga9c79362018-02-27 15:53:02 +00001759 return ret;
1760 }
1761
Russell Kinga4516c72019-12-11 10:55:59 +00001762 iface = sfp_select_interface(pl->sfp_bus, config.advertising);
Russell Kinga9c79362018-02-27 15:53:02 +00001763 if (iface == PHY_INTERFACE_MODE_NA) {
Ioana Ciornei170911802019-05-28 20:38:14 +03001764 phylink_err(pl,
1765 "selection of interface failed, advertisement %*pb\n",
1766 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising);
Russell Kinga9c79362018-02-27 15:53:02 +00001767 return -EINVAL;
1768 }
1769
1770 config.interface = iface;
Russell Kingc0de2f42019-12-11 10:56:40 +00001771 linkmode_copy(support1, support);
Russell King77316762019-06-02 15:12:54 +01001772 ret = phylink_validate(pl, support1, &config);
Russell Kinga9c79362018-02-27 15:53:02 +00001773 if (ret) {
Ioana Ciornei170911802019-05-28 20:38:14 +03001774 phylink_err(pl, "validation of %s/%s with support %*pb failed: %d\n",
Russell Kingc0de2f42019-12-11 10:56:40 +00001775 phylink_an_mode_str(mode),
Ioana Ciornei170911802019-05-28 20:38:14 +03001776 phy_modes(config.interface),
1777 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
Russell Kingce0aa272017-07-25 15:03:18 +01001778 return ret;
1779 }
1780
Ioana Ciornei170911802019-05-28 20:38:14 +03001781 phylink_dbg(pl, "requesting link mode %s/%s with support %*pb\n",
Russell Kingc0de2f42019-12-11 10:56:40 +00001782 phylink_an_mode_str(mode), phy_modes(config.interface),
Ioana Ciornei170911802019-05-28 20:38:14 +03001783 __ETHTOOL_LINK_MODE_MASK_NBITS, support);
Russell Kingce0aa272017-07-25 15:03:18 +01001784
Russell King86a362c2017-12-01 10:24:26 +00001785 if (phy_interface_mode_is_8023z(iface) && pl->phydev)
Russell Kingce0aa272017-07-25 15:03:18 +01001786 return -EINVAL;
1787
Russell King554032c2019-10-15 11:28:46 +01001788 changed = !linkmode_equal(pl->supported, support);
Russell Kingce0aa272017-07-25 15:03:18 +01001789 if (changed) {
1790 linkmode_copy(pl->supported, support);
1791 linkmode_copy(pl->link_config.advertising, config.advertising);
1792 }
1793
Russell Kingc0de2f42019-12-11 10:56:40 +00001794 if (pl->cur_link_an_mode != mode ||
Russell Kingce0aa272017-07-25 15:03:18 +01001795 pl->link_config.interface != config.interface) {
1796 pl->link_config.interface = config.interface;
Russell Kingc0de2f42019-12-11 10:56:40 +00001797 pl->cur_link_an_mode = mode;
Russell Kingce0aa272017-07-25 15:03:18 +01001798
1799 changed = true;
1800
Ioana Ciornei170911802019-05-28 20:38:14 +03001801 phylink_info(pl, "switched to %s/%s link mode\n",
Russell Kingc0de2f42019-12-11 10:56:40 +00001802 phylink_an_mode_str(mode),
Ioana Ciornei170911802019-05-28 20:38:14 +03001803 phy_modes(config.interface));
Russell Kingce0aa272017-07-25 15:03:18 +01001804 }
1805
Russell King52c95602019-12-11 10:56:45 +00001806 pl->link_port = pl->sfp_port;
Russell Kingce0aa272017-07-25 15:03:18 +01001807
1808 if (changed && !test_bit(PHYLINK_DISABLE_STOPPED,
1809 &pl->phylink_disable_state))
1810 phylink_mac_config(pl, &pl->link_config);
1811
1812 return ret;
1813}
1814
Russell Kingc0de2f42019-12-11 10:56:40 +00001815static int phylink_sfp_module_insert(void *upstream,
1816 const struct sfp_eeprom_id *id)
1817{
1818 struct phylink *pl = upstream;
Russell King52c95602019-12-11 10:56:45 +00001819 unsigned long *support = pl->sfp_support;
Russell Kingc0de2f42019-12-11 10:56:40 +00001820
1821 ASSERT_RTNL();
1822
Russell King52c95602019-12-11 10:56:45 +00001823 linkmode_zero(support);
Russell Kingc0de2f42019-12-11 10:56:40 +00001824 sfp_parse_support(pl->sfp_bus, id, support);
Russell King52c95602019-12-11 10:56:45 +00001825 pl->sfp_port = sfp_parse_port(pl->sfp_bus, id, support);
Russell Kingc0de2f42019-12-11 10:56:40 +00001826
Russell King52c95602019-12-11 10:56:45 +00001827 /* If this module may have a PHY connecting later, defer until later */
1828 pl->sfp_may_have_phy = sfp_may_have_phy(pl->sfp_bus, id);
1829 if (pl->sfp_may_have_phy)
1830 return 0;
1831
1832 return phylink_sfp_config(pl, MLO_AN_INBAND, support, support);
Russell Kingc0de2f42019-12-11 10:56:40 +00001833}
1834
Russell King48820572019-12-11 10:56:14 +00001835static int phylink_sfp_module_start(void *upstream)
1836{
1837 struct phylink *pl = upstream;
1838
1839 /* If this SFP module has a PHY, start the PHY now. */
Russell King52c95602019-12-11 10:56:45 +00001840 if (pl->phydev) {
Russell King48820572019-12-11 10:56:14 +00001841 phy_start(pl->phydev);
Russell King52c95602019-12-11 10:56:45 +00001842 return 0;
1843 }
Russell King48820572019-12-11 10:56:14 +00001844
Russell King52c95602019-12-11 10:56:45 +00001845 /* If the module may have a PHY but we didn't detect one we
1846 * need to configure the MAC here.
1847 */
1848 if (!pl->sfp_may_have_phy)
1849 return 0;
1850
1851 return phylink_sfp_config(pl, MLO_AN_INBAND,
1852 pl->sfp_support, pl->sfp_support);
Russell King48820572019-12-11 10:56:14 +00001853}
1854
1855static void phylink_sfp_module_stop(void *upstream)
1856{
1857 struct phylink *pl = upstream;
1858
1859 /* If this SFP module has a PHY, stop it. */
1860 if (pl->phydev)
1861 phy_stop(pl->phydev);
1862}
1863
Russell Kingce0aa272017-07-25 15:03:18 +01001864static void phylink_sfp_link_down(void *upstream)
1865{
1866 struct phylink *pl = upstream;
1867
Russell King8b874512017-12-15 16:09:47 +00001868 ASSERT_RTNL();
Russell Kingce0aa272017-07-25 15:03:18 +01001869
Russell King87454b62019-02-11 15:04:24 +00001870 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_LINK);
Russell Kingce0aa272017-07-25 15:03:18 +01001871}
1872
1873static void phylink_sfp_link_up(void *upstream)
1874{
1875 struct phylink *pl = upstream;
1876
Russell King8b874512017-12-15 16:09:47 +00001877 ASSERT_RTNL();
Russell Kingce0aa272017-07-25 15:03:18 +01001878
1879 clear_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
1880 phylink_run_resolve(pl);
1881}
1882
Russell King7adb5b22019-12-11 10:56:50 +00001883/* The Broadcom BCM84881 in the Methode DM7052 is unable to provide a SGMII
1884 * or 802.3z control word, so inband will not work.
1885 */
1886static bool phylink_phy_no_inband(struct phy_device *phy)
1887{
1888 return phy->is_c45 &&
1889 (phy->c45_ids.device_ids[1] & 0xfffffff0) == 0xae025150;
1890}
1891
Russell Kingce0aa272017-07-25 15:03:18 +01001892static int phylink_sfp_connect_phy(void *upstream, struct phy_device *phy)
1893{
Baruch Siach7e418372018-10-03 19:04:49 +03001894 struct phylink *pl = upstream;
Russell King52c95602019-12-11 10:56:45 +00001895 phy_interface_t interface;
Russell King7adb5b22019-12-11 10:56:50 +00001896 u8 mode;
Russell King938d44c2019-12-11 10:56:25 +00001897 int ret;
Baruch Siach7e418372018-10-03 19:04:49 +03001898
Russell King52c95602019-12-11 10:56:45 +00001899 /*
1900 * This is the new way of dealing with flow control for PHYs,
1901 * as described by Timur Tabi in commit 529ed1275263 ("net: phy:
1902 * phy drivers should not set SUPPORTED_[Asym_]Pause") except
1903 * using our validate call to the MAC, we rely upon the MAC
1904 * clearing the bits from both supported and advertising fields.
1905 */
1906 phy_support_asym_pause(phy);
1907
Russell King7adb5b22019-12-11 10:56:50 +00001908 if (phylink_phy_no_inband(phy))
1909 mode = MLO_AN_PHY;
1910 else
1911 mode = MLO_AN_INBAND;
1912
Russell King52c95602019-12-11 10:56:45 +00001913 /* Do the initial configuration */
Russell King7adb5b22019-12-11 10:56:50 +00001914 ret = phylink_sfp_config(pl, mode, phy->supported, phy->advertising);
Russell King52c95602019-12-11 10:56:45 +00001915 if (ret < 0)
1916 return ret;
1917
1918 interface = pl->link_config.interface;
1919 ret = phylink_attach_phy(pl, phy, interface);
Russell King938d44c2019-12-11 10:56:25 +00001920 if (ret < 0)
1921 return ret;
1922
Russell Kinge45d1f52019-12-11 10:56:30 +00001923 ret = phylink_bringup_phy(pl, phy, interface);
Russell King938d44c2019-12-11 10:56:25 +00001924 if (ret)
1925 phy_detach(phy);
1926
1927 return ret;
Russell Kingce0aa272017-07-25 15:03:18 +01001928}
1929
1930static void phylink_sfp_disconnect_phy(void *upstream)
1931{
1932 phylink_disconnect_phy(upstream);
1933}
1934
1935static const struct sfp_upstream_ops sfp_phylink_ops = {
Russell King320587e62019-05-28 10:57:34 +01001936 .attach = phylink_sfp_attach,
1937 .detach = phylink_sfp_detach,
Russell Kingce0aa272017-07-25 15:03:18 +01001938 .module_insert = phylink_sfp_module_insert,
Russell King48820572019-12-11 10:56:14 +00001939 .module_start = phylink_sfp_module_start,
1940 .module_stop = phylink_sfp_module_stop,
Russell Kingce0aa272017-07-25 15:03:18 +01001941 .link_up = phylink_sfp_link_up,
1942 .link_down = phylink_sfp_link_down,
1943 .connect_phy = phylink_sfp_connect_phy,
1944 .disconnect_phy = phylink_sfp_disconnect_phy,
1945};
1946
Russell King624c0f02018-08-09 15:38:38 +02001947/* Helpers for MAC drivers */
1948
1949/**
1950 * phylink_helper_basex_speed() - 1000BaseX/2500BaseX helper
1951 * @state: a pointer to a &struct phylink_link_state
1952 *
1953 * Inspect the interface mode, advertising mask or forced speed and
1954 * decide whether to run at 2.5Gbit or 1Gbit appropriately, switching
1955 * the interface mode to suit. @state->interface is appropriately
1956 * updated, and the advertising mask has the "other" baseX_Full flag
1957 * cleared.
1958 */
1959void phylink_helper_basex_speed(struct phylink_link_state *state)
1960{
1961 if (phy_interface_mode_is_8023z(state->interface)) {
1962 bool want_2500 = state->an_enabled ?
1963 phylink_test(state->advertising, 2500baseX_Full) :
1964 state->speed == SPEED_2500;
1965
1966 if (want_2500) {
1967 phylink_clear(state->advertising, 1000baseX_Full);
1968 state->interface = PHY_INTERFACE_MODE_2500BASEX;
1969 } else {
1970 phylink_clear(state->advertising, 2500baseX_Full);
1971 state->interface = PHY_INTERFACE_MODE_1000BASEX;
1972 }
1973 }
1974}
1975EXPORT_SYMBOL_GPL(phylink_helper_basex_speed);
1976
Andrew Lunn5f857572019-01-21 19:10:19 +01001977MODULE_LICENSE("GPL v2");