blob: 7abca86c3aa9bf367a6e2da8125e203a6f853ef7 [file] [log] [blame]
Russell King9525ae82017-07-25 15:03:13 +01001/*
2 * phylink models the MAC to optional PHY connection, supporting
3 * technologies such as SFP cages where the PHY is hot-pluggable.
4 *
5 * Copyright (C) 2015 Russell King
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/ethtool.h>
12#include <linux/export.h>
13#include <linux/gpio/consumer.h>
14#include <linux/netdevice.h>
15#include <linux/of.h>
16#include <linux/of_mdio.h>
17#include <linux/phy.h>
18#include <linux/phy_fixed.h>
19#include <linux/phylink.h>
20#include <linux/rtnetlink.h>
21#include <linux/spinlock.h>
Russell King9cd00a82018-05-10 13:17:31 -070022#include <linux/timer.h>
Russell King9525ae82017-07-25 15:03:13 +010023#include <linux/workqueue.h>
24
Russell Kingce0aa272017-07-25 15:03:18 +010025#include "sfp.h"
Russell King9525ae82017-07-25 15:03:13 +010026#include "swphy.h"
27
28#define SUPPORTED_INTERFACES \
29 (SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_FIBRE | \
30 SUPPORTED_BNC | SUPPORTED_AUI | SUPPORTED_Backplane)
31#define ADVERTISED_INTERFACES \
32 (ADVERTISED_TP | ADVERTISED_MII | ADVERTISED_FIBRE | \
33 ADVERTISED_BNC | ADVERTISED_AUI | ADVERTISED_Backplane)
34
35enum {
36 PHYLINK_DISABLE_STOPPED,
Russell Kingce0aa272017-07-25 15:03:18 +010037 PHYLINK_DISABLE_LINK,
Russell King9525ae82017-07-25 15:03:13 +010038};
39
Russell King8796c892017-12-01 10:24:47 +000040/**
41 * struct phylink - internal data type for phylink
42 */
Russell King9525ae82017-07-25 15:03:13 +010043struct phylink {
Russell King8796c892017-12-01 10:24:47 +000044 /* private: */
Russell King9525ae82017-07-25 15:03:13 +010045 struct net_device *netdev;
46 const struct phylink_mac_ops *ops;
47
48 unsigned long phylink_disable_state; /* bitmask of disables */
49 struct phy_device *phydev;
50 phy_interface_t link_interface; /* PHY_INTERFACE_xxx */
51 u8 link_an_mode; /* MLO_AN_xxx */
52 u8 link_port; /* The current non-phy ethtool port */
53 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
54
55 /* The link configuration settings */
56 struct phylink_link_state link_config;
57 struct gpio_desc *link_gpio;
Russell King9cd00a82018-05-10 13:17:31 -070058 struct timer_list link_poll;
Florian Fainelli1ac63e32017-12-12 16:00:28 -080059 void (*get_fixed_state)(struct net_device *dev,
60 struct phylink_link_state *s);
Russell King9525ae82017-07-25 15:03:13 +010061
62 struct mutex state_mutex;
63 struct phylink_link_state phy_state;
64 struct work_struct resolve;
65
66 bool mac_link_dropped;
Russell Kingce0aa272017-07-25 15:03:18 +010067
68 struct sfp_bus *sfp_bus;
Russell King9525ae82017-07-25 15:03:13 +010069};
70
71static inline void linkmode_zero(unsigned long *dst)
72{
73 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
74}
75
76static inline void linkmode_copy(unsigned long *dst, const unsigned long *src)
77{
78 bitmap_copy(dst, src, __ETHTOOL_LINK_MODE_MASK_NBITS);
79}
80
81static inline void linkmode_and(unsigned long *dst, const unsigned long *a,
82 const unsigned long *b)
83{
84 bitmap_and(dst, a, b, __ETHTOOL_LINK_MODE_MASK_NBITS);
85}
86
87static inline void linkmode_or(unsigned long *dst, const unsigned long *a,
88 const unsigned long *b)
89{
90 bitmap_or(dst, a, b, __ETHTOOL_LINK_MODE_MASK_NBITS);
91}
92
93static inline bool linkmode_empty(const unsigned long *src)
94{
95 return bitmap_empty(src, __ETHTOOL_LINK_MODE_MASK_NBITS);
96}
97
Russell King8796c892017-12-01 10:24:47 +000098/**
99 * phylink_set_port_modes() - set the port type modes in the ethtool mask
100 * @mask: ethtool link mode mask
101 *
102 * Sets all the port type modes in the ethtool mask. MAC drivers should
103 * use this in their 'validate' callback.
104 */
Russell King9525ae82017-07-25 15:03:13 +0100105void phylink_set_port_modes(unsigned long *mask)
106{
107 phylink_set(mask, TP);
108 phylink_set(mask, AUI);
109 phylink_set(mask, MII);
110 phylink_set(mask, FIBRE);
111 phylink_set(mask, BNC);
112 phylink_set(mask, Backplane);
113}
114EXPORT_SYMBOL_GPL(phylink_set_port_modes);
115
116static int phylink_is_empty_linkmode(const unsigned long *linkmode)
117{
118 __ETHTOOL_DECLARE_LINK_MODE_MASK(tmp) = { 0, };
119
120 phylink_set_port_modes(tmp);
121 phylink_set(tmp, Autoneg);
122 phylink_set(tmp, Pause);
123 phylink_set(tmp, Asym_Pause);
124
125 bitmap_andnot(tmp, linkmode, tmp, __ETHTOOL_LINK_MODE_MASK_NBITS);
126
127 return linkmode_empty(tmp);
128}
129
130static const char *phylink_an_mode_str(unsigned int mode)
131{
132 static const char *modestr[] = {
133 [MLO_AN_PHY] = "phy",
134 [MLO_AN_FIXED] = "fixed",
Russell King86a362c2017-12-01 10:24:26 +0000135 [MLO_AN_INBAND] = "inband",
Russell King9525ae82017-07-25 15:03:13 +0100136 };
137
138 return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown";
139}
140
141static int phylink_validate(struct phylink *pl, unsigned long *supported,
142 struct phylink_link_state *state)
143{
144 pl->ops->validate(pl->netdev, supported, state);
145
146 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0;
147}
148
Russell King8fa7b9b2017-12-01 10:25:09 +0000149static int phylink_parse_fixedlink(struct phylink *pl,
150 struct fwnode_handle *fwnode)
Russell King9525ae82017-07-25 15:03:13 +0100151{
Russell King8fa7b9b2017-12-01 10:25:09 +0000152 struct fwnode_handle *fixed_node;
Russell King9525ae82017-07-25 15:03:13 +0100153 const struct phy_setting *s;
154 struct gpio_desc *desc;
Russell King9525ae82017-07-25 15:03:13 +0100155 u32 speed;
Russell King8fa7b9b2017-12-01 10:25:09 +0000156 int ret;
Russell King9525ae82017-07-25 15:03:13 +0100157
Russell King8fa7b9b2017-12-01 10:25:09 +0000158 fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link");
Russell King9525ae82017-07-25 15:03:13 +0100159 if (fixed_node) {
Russell King8fa7b9b2017-12-01 10:25:09 +0000160 ret = fwnode_property_read_u32(fixed_node, "speed", &speed);
Russell King9525ae82017-07-25 15:03:13 +0100161
162 pl->link_config.speed = speed;
163 pl->link_config.duplex = DUPLEX_HALF;
164
Russell King8fa7b9b2017-12-01 10:25:09 +0000165 if (fwnode_property_read_bool(fixed_node, "full-duplex"))
Russell King9525ae82017-07-25 15:03:13 +0100166 pl->link_config.duplex = DUPLEX_FULL;
167
168 /* We treat the "pause" and "asym-pause" terminology as
169 * defining the link partner's ability. */
Russell King8fa7b9b2017-12-01 10:25:09 +0000170 if (fwnode_property_read_bool(fixed_node, "pause"))
Russell King9525ae82017-07-25 15:03:13 +0100171 pl->link_config.pause |= MLO_PAUSE_SYM;
Russell King8fa7b9b2017-12-01 10:25:09 +0000172 if (fwnode_property_read_bool(fixed_node, "asym-pause"))
Russell King9525ae82017-07-25 15:03:13 +0100173 pl->link_config.pause |= MLO_PAUSE_ASYM;
174
175 if (ret == 0) {
Russell King8fa7b9b2017-12-01 10:25:09 +0000176 desc = fwnode_get_named_gpiod(fixed_node, "link-gpios",
177 0, GPIOD_IN, "?");
Russell King9525ae82017-07-25 15:03:13 +0100178
179 if (!IS_ERR(desc))
180 pl->link_gpio = desc;
181 else if (desc == ERR_PTR(-EPROBE_DEFER))
182 ret = -EPROBE_DEFER;
183 }
Russell King8fa7b9b2017-12-01 10:25:09 +0000184 fwnode_handle_put(fixed_node);
Russell King9525ae82017-07-25 15:03:13 +0100185
186 if (ret)
187 return ret;
188 } else {
Russell King8fa7b9b2017-12-01 10:25:09 +0000189 u32 prop[5];
190
191 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
192 NULL, 0);
193 if (ret != ARRAY_SIZE(prop)) {
Russell King9525ae82017-07-25 15:03:13 +0100194 netdev_err(pl->netdev, "broken fixed-link?\n");
195 return -EINVAL;
196 }
Russell King8fa7b9b2017-12-01 10:25:09 +0000197
198 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
199 prop, ARRAY_SIZE(prop));
200 if (!ret) {
201 pl->link_config.duplex = prop[1] ?
Russell King9525ae82017-07-25 15:03:13 +0100202 DUPLEX_FULL : DUPLEX_HALF;
Russell King8fa7b9b2017-12-01 10:25:09 +0000203 pl->link_config.speed = prop[2];
204 if (prop[3])
Russell King9525ae82017-07-25 15:03:13 +0100205 pl->link_config.pause |= MLO_PAUSE_SYM;
Russell King8fa7b9b2017-12-01 10:25:09 +0000206 if (prop[4])
Russell King9525ae82017-07-25 15:03:13 +0100207 pl->link_config.pause |= MLO_PAUSE_ASYM;
208 }
209 }
210
211 if (pl->link_config.speed > SPEED_1000 &&
212 pl->link_config.duplex != DUPLEX_FULL)
213 netdev_warn(pl->netdev, "fixed link specifies half duplex for %dMbps link?\n",
214 pl->link_config.speed);
215
216 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
217 linkmode_copy(pl->link_config.advertising, pl->supported);
218 phylink_validate(pl, pl->supported, &pl->link_config);
219
220 s = phy_lookup_setting(pl->link_config.speed, pl->link_config.duplex,
221 pl->supported,
222 __ETHTOOL_LINK_MODE_MASK_NBITS, true);
223 linkmode_zero(pl->supported);
224 phylink_set(pl->supported, MII);
225 if (s) {
226 __set_bit(s->bit, pl->supported);
227 } else {
228 netdev_warn(pl->netdev, "fixed link %s duplex %dMbps not recognised\n",
229 pl->link_config.duplex == DUPLEX_FULL ? "full" : "half",
230 pl->link_config.speed);
231 }
232
233 linkmode_and(pl->link_config.advertising, pl->link_config.advertising,
234 pl->supported);
235
236 pl->link_config.link = 1;
237 pl->link_config.an_complete = 1;
238
239 return 0;
240}
241
Russell King8fa7b9b2017-12-01 10:25:09 +0000242static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode)
Russell King9525ae82017-07-25 15:03:13 +0100243{
Russell King8fa7b9b2017-12-01 10:25:09 +0000244 struct fwnode_handle *dn;
Russell King9525ae82017-07-25 15:03:13 +0100245 const char *managed;
246
Russell King8fa7b9b2017-12-01 10:25:09 +0000247 dn = fwnode_get_named_child_node(fwnode, "fixed-link");
248 if (dn || fwnode_property_present(fwnode, "fixed-link"))
Russell King9525ae82017-07-25 15:03:13 +0100249 pl->link_an_mode = MLO_AN_FIXED;
Russell King8fa7b9b2017-12-01 10:25:09 +0000250 fwnode_handle_put(dn);
Russell King9525ae82017-07-25 15:03:13 +0100251
Russell King8fa7b9b2017-12-01 10:25:09 +0000252 if (fwnode_property_read_string(fwnode, "managed", &managed) == 0 &&
Russell King9525ae82017-07-25 15:03:13 +0100253 strcmp(managed, "in-band-status") == 0) {
254 if (pl->link_an_mode == MLO_AN_FIXED) {
255 netdev_err(pl->netdev,
256 "can't use both fixed-link and in-band-status\n");
257 return -EINVAL;
258 }
259
260 linkmode_zero(pl->supported);
261 phylink_set(pl->supported, MII);
262 phylink_set(pl->supported, Autoneg);
263 phylink_set(pl->supported, Asym_Pause);
264 phylink_set(pl->supported, Pause);
265 pl->link_config.an_enabled = true;
Russell King86a362c2017-12-01 10:24:26 +0000266 pl->link_an_mode = MLO_AN_INBAND;
Russell King9525ae82017-07-25 15:03:13 +0100267
268 switch (pl->link_config.interface) {
269 case PHY_INTERFACE_MODE_SGMII:
270 phylink_set(pl->supported, 10baseT_Half);
271 phylink_set(pl->supported, 10baseT_Full);
272 phylink_set(pl->supported, 100baseT_Half);
273 phylink_set(pl->supported, 100baseT_Full);
274 phylink_set(pl->supported, 1000baseT_Half);
275 phylink_set(pl->supported, 1000baseT_Full);
Russell King9525ae82017-07-25 15:03:13 +0100276 break;
277
278 case PHY_INTERFACE_MODE_1000BASEX:
279 phylink_set(pl->supported, 1000baseX_Full);
Russell King9525ae82017-07-25 15:03:13 +0100280 break;
281
282 case PHY_INTERFACE_MODE_2500BASEX:
283 phylink_set(pl->supported, 2500baseX_Full);
Russell King9525ae82017-07-25 15:03:13 +0100284 break;
285
Russell Kingda7c1862017-07-25 15:03:34 +0100286 case PHY_INTERFACE_MODE_10GKR:
287 phylink_set(pl->supported, 10baseT_Half);
288 phylink_set(pl->supported, 10baseT_Full);
289 phylink_set(pl->supported, 100baseT_Half);
290 phylink_set(pl->supported, 100baseT_Full);
291 phylink_set(pl->supported, 1000baseT_Half);
292 phylink_set(pl->supported, 1000baseT_Full);
293 phylink_set(pl->supported, 1000baseX_Full);
294 phylink_set(pl->supported, 10000baseKR_Full);
295 phylink_set(pl->supported, 10000baseCR_Full);
296 phylink_set(pl->supported, 10000baseSR_Full);
297 phylink_set(pl->supported, 10000baseLR_Full);
298 phylink_set(pl->supported, 10000baseLRM_Full);
299 phylink_set(pl->supported, 10000baseER_Full);
Russell Kingda7c1862017-07-25 15:03:34 +0100300 break;
301
Russell King9525ae82017-07-25 15:03:13 +0100302 default:
303 netdev_err(pl->netdev,
304 "incorrect link mode %s for in-band status\n",
305 phy_modes(pl->link_config.interface));
306 return -EINVAL;
307 }
308
309 linkmode_copy(pl->link_config.advertising, pl->supported);
310
311 if (phylink_validate(pl, pl->supported, &pl->link_config)) {
312 netdev_err(pl->netdev,
313 "failed to validate link configuration for in-band status\n");
314 return -EINVAL;
315 }
316 }
317
318 return 0;
319}
320
321static void phylink_mac_config(struct phylink *pl,
322 const struct phylink_link_state *state)
323{
324 netdev_dbg(pl->netdev,
325 "%s: mode=%s/%s/%s/%s adv=%*pb pause=%02x link=%u an=%u\n",
326 __func__, phylink_an_mode_str(pl->link_an_mode),
327 phy_modes(state->interface),
328 phy_speed_to_str(state->speed),
329 phy_duplex_to_str(state->duplex),
330 __ETHTOOL_LINK_MODE_MASK_NBITS, state->advertising,
331 state->pause, state->link, state->an_enabled);
332
333 pl->ops->mac_config(pl->netdev, pl->link_an_mode, state);
334}
335
336static void phylink_mac_an_restart(struct phylink *pl)
337{
338 if (pl->link_config.an_enabled &&
Russell King365c1e62017-12-01 10:24:16 +0000339 phy_interface_mode_is_8023z(pl->link_config.interface))
Russell King9525ae82017-07-25 15:03:13 +0100340 pl->ops->mac_an_restart(pl->netdev);
341}
342
343static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *state)
344{
345 struct net_device *ndev = pl->netdev;
346
347 linkmode_copy(state->advertising, pl->link_config.advertising);
348 linkmode_zero(state->lp_advertising);
349 state->interface = pl->link_config.interface;
350 state->an_enabled = pl->link_config.an_enabled;
351 state->link = 1;
352
353 return pl->ops->mac_link_state(ndev, state);
354}
355
356/* The fixed state is... fixed except for the link state,
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800357 * which may be determined by a GPIO or a callback.
Russell King9525ae82017-07-25 15:03:13 +0100358 */
359static void phylink_get_fixed_state(struct phylink *pl, struct phylink_link_state *state)
360{
361 *state = pl->link_config;
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800362 if (pl->get_fixed_state)
363 pl->get_fixed_state(pl->netdev, state);
364 else if (pl->link_gpio)
Florian Fainellibb322a92018-05-10 13:17:29 -0700365 state->link = !!gpiod_get_value_cansleep(pl->link_gpio);
Russell King9525ae82017-07-25 15:03:13 +0100366}
367
368/* Flow control is resolved according to our and the link partners
Colin Ian Kingcc1122b2018-03-01 10:23:03 +0000369 * advertisements using the following drawn from the 802.3 specs:
Russell King9525ae82017-07-25 15:03:13 +0100370 * Local device Link partner
371 * Pause AsymDir Pause AsymDir Result
372 * 1 X 1 X TX+RX
373 * 0 1 1 1 RX
374 * 1 1 0 1 TX
375 */
376static void phylink_resolve_flow(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -0700377 struct phylink_link_state *state)
Russell King9525ae82017-07-25 15:03:13 +0100378{
379 int new_pause = 0;
380
381 if (pl->link_config.pause & MLO_PAUSE_AN) {
382 int pause = 0;
383
384 if (phylink_test(pl->link_config.advertising, Pause))
385 pause |= MLO_PAUSE_SYM;
386 if (phylink_test(pl->link_config.advertising, Asym_Pause))
387 pause |= MLO_PAUSE_ASYM;
388
389 pause &= state->pause;
390
391 if (pause & MLO_PAUSE_SYM)
392 new_pause = MLO_PAUSE_TX | MLO_PAUSE_RX;
393 else if (pause & MLO_PAUSE_ASYM)
394 new_pause = state->pause & MLO_PAUSE_SYM ?
395 MLO_PAUSE_RX : MLO_PAUSE_TX;
396 } else {
397 new_pause = pl->link_config.pause & MLO_PAUSE_TXRX_MASK;
398 }
399
400 state->pause &= ~MLO_PAUSE_TXRX_MASK;
401 state->pause |= new_pause;
402}
403
404static const char *phylink_pause_to_str(int pause)
405{
406 switch (pause & MLO_PAUSE_TXRX_MASK) {
407 case MLO_PAUSE_TX | MLO_PAUSE_RX:
408 return "rx/tx";
409 case MLO_PAUSE_TX:
410 return "tx";
411 case MLO_PAUSE_RX:
412 return "rx";
413 default:
414 return "off";
415 }
416}
417
418static void phylink_resolve(struct work_struct *w)
419{
420 struct phylink *pl = container_of(w, struct phylink, resolve);
421 struct phylink_link_state link_state;
422 struct net_device *ndev = pl->netdev;
423
424 mutex_lock(&pl->state_mutex);
425 if (pl->phylink_disable_state) {
426 pl->mac_link_dropped = false;
427 link_state.link = false;
428 } else if (pl->mac_link_dropped) {
429 link_state.link = false;
430 } else {
431 switch (pl->link_an_mode) {
432 case MLO_AN_PHY:
433 link_state = pl->phy_state;
434 phylink_resolve_flow(pl, &link_state);
435 phylink_mac_config(pl, &link_state);
436 break;
437
438 case MLO_AN_FIXED:
439 phylink_get_fixed_state(pl, &link_state);
440 phylink_mac_config(pl, &link_state);
441 break;
442
Russell King86a362c2017-12-01 10:24:26 +0000443 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +0100444 phylink_get_mac_state(pl, &link_state);
445 if (pl->phydev) {
446 bool changed = false;
447
448 link_state.link = link_state.link &&
449 pl->phy_state.link;
450
451 if (pl->phy_state.interface !=
452 link_state.interface) {
453 link_state.interface = pl->phy_state.interface;
454 changed = true;
455 }
456
457 /* Propagate the flow control from the PHY
458 * to the MAC. Also propagate the interface
459 * if changed.
460 */
461 if (pl->phy_state.link || changed) {
462 link_state.pause |= pl->phy_state.pause;
463 phylink_resolve_flow(pl, &link_state);
464
465 phylink_mac_config(pl, &link_state);
466 }
467 }
468 break;
Russell King9525ae82017-07-25 15:03:13 +0100469 }
470 }
471
472 if (link_state.link != netif_carrier_ok(ndev)) {
473 if (!link_state.link) {
474 netif_carrier_off(ndev);
Florian Fainellic6ab3002018-03-28 15:44:15 -0700475 pl->ops->mac_link_down(ndev, pl->link_an_mode,
476 pl->phy_state.interface);
Russell King9525ae82017-07-25 15:03:13 +0100477 netdev_info(ndev, "Link is Down\n");
478 } else {
479 pl->ops->mac_link_up(ndev, pl->link_an_mode,
Florian Fainellic6ab3002018-03-28 15:44:15 -0700480 pl->phy_state.interface,
Russell King9525ae82017-07-25 15:03:13 +0100481 pl->phydev);
482
483 netif_carrier_on(ndev);
484
485 netdev_info(ndev,
486 "Link is Up - %s/%s - flow control %s\n",
487 phy_speed_to_str(link_state.speed),
488 phy_duplex_to_str(link_state.duplex),
489 phylink_pause_to_str(link_state.pause));
490 }
491 }
492 if (!link_state.link && pl->mac_link_dropped) {
493 pl->mac_link_dropped = false;
494 queue_work(system_power_efficient_wq, &pl->resolve);
495 }
496 mutex_unlock(&pl->state_mutex);
497}
498
499static void phylink_run_resolve(struct phylink *pl)
500{
501 if (!pl->phylink_disable_state)
502 queue_work(system_power_efficient_wq, &pl->resolve);
503}
504
Russell King9cd00a82018-05-10 13:17:31 -0700505static void phylink_fixed_poll(struct timer_list *t)
506{
507 struct phylink *pl = container_of(t, struct phylink, link_poll);
508
509 mod_timer(t, jiffies + HZ);
510
511 phylink_run_resolve(pl);
512}
513
Russell Kingce0aa272017-07-25 15:03:18 +0100514static const struct sfp_upstream_ops sfp_phylink_ops;
515
Russell King8fa7b9b2017-12-01 10:25:09 +0000516static int phylink_register_sfp(struct phylink *pl,
517 struct fwnode_handle *fwnode)
Russell Kingce0aa272017-07-25 15:03:18 +0100518{
Russell King8fa7b9b2017-12-01 10:25:09 +0000519 struct fwnode_reference_args ref;
520 int ret;
Russell Kingce0aa272017-07-25 15:03:18 +0100521
Florian Fainelli02477802017-12-14 15:57:58 -0800522 if (!fwnode)
523 return 0;
524
Russell King8fa7b9b2017-12-01 10:25:09 +0000525 ret = fwnode_property_get_reference_args(fwnode, "sfp", NULL,
526 0, 0, &ref);
527 if (ret < 0) {
528 if (ret == -ENOENT)
529 return 0;
Russell Kingce0aa272017-07-25 15:03:18 +0100530
Russell King8fa7b9b2017-12-01 10:25:09 +0000531 netdev_err(pl->netdev, "unable to parse \"sfp\" node: %d\n",
532 ret);
533 return ret;
534 }
535
536 pl->sfp_bus = sfp_register_upstream(ref.fwnode, pl->netdev, pl,
Russell Kingce0aa272017-07-25 15:03:18 +0100537 &sfp_phylink_ops);
538 if (!pl->sfp_bus)
539 return -ENOMEM;
540
541 return 0;
542}
543
Russell King8796c892017-12-01 10:24:47 +0000544/**
545 * phylink_create() - create a phylink instance
546 * @ndev: a pointer to the &struct net_device
Russell King8fa7b9b2017-12-01 10:25:09 +0000547 * @fwnode: a pointer to a &struct fwnode_handle describing the network
548 * interface
Russell King8796c892017-12-01 10:24:47 +0000549 * @iface: the desired link mode defined by &typedef phy_interface_t
550 * @ops: a pointer to a &struct phylink_mac_ops for the MAC.
551 *
552 * Create a new phylink instance, and parse the link parameters found in @np.
553 * This will parse in-band modes, fixed-link or SFP configuration.
554 *
555 * Returns a pointer to a &struct phylink, or an error-pointer value. Users
556 * must use IS_ERR() to check for errors from this function.
557 */
Russell King8fa7b9b2017-12-01 10:25:09 +0000558struct phylink *phylink_create(struct net_device *ndev,
559 struct fwnode_handle *fwnode,
Florian Fainelli516b29e2017-10-30 21:42:57 -0700560 phy_interface_t iface,
561 const struct phylink_mac_ops *ops)
Russell King9525ae82017-07-25 15:03:13 +0100562{
563 struct phylink *pl;
564 int ret;
565
566 pl = kzalloc(sizeof(*pl), GFP_KERNEL);
567 if (!pl)
568 return ERR_PTR(-ENOMEM);
569
570 mutex_init(&pl->state_mutex);
571 INIT_WORK(&pl->resolve, phylink_resolve);
572 pl->netdev = ndev;
573 pl->phy_state.interface = iface;
574 pl->link_interface = iface;
Florian Fainelli4be11ef2017-12-12 16:00:29 -0800575 if (iface == PHY_INTERFACE_MODE_MOCA)
576 pl->link_port = PORT_BNC;
577 else
578 pl->link_port = PORT_MII;
Russell King9525ae82017-07-25 15:03:13 +0100579 pl->link_config.interface = iface;
580 pl->link_config.pause = MLO_PAUSE_AN;
581 pl->link_config.speed = SPEED_UNKNOWN;
582 pl->link_config.duplex = DUPLEX_UNKNOWN;
Russell King74ee0e82017-12-20 23:21:34 +0000583 pl->link_config.an_enabled = true;
Russell King9525ae82017-07-25 15:03:13 +0100584 pl->ops = ops;
585 __set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
Russell King9cd00a82018-05-10 13:17:31 -0700586 timer_setup(&pl->link_poll, phylink_fixed_poll, 0);
Russell King9525ae82017-07-25 15:03:13 +0100587
588 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
589 linkmode_copy(pl->link_config.advertising, pl->supported);
590 phylink_validate(pl, pl->supported, &pl->link_config);
591
Russell King8fa7b9b2017-12-01 10:25:09 +0000592 ret = phylink_parse_mode(pl, fwnode);
Russell King9525ae82017-07-25 15:03:13 +0100593 if (ret < 0) {
594 kfree(pl);
595 return ERR_PTR(ret);
596 }
597
598 if (pl->link_an_mode == MLO_AN_FIXED) {
Russell King8fa7b9b2017-12-01 10:25:09 +0000599 ret = phylink_parse_fixedlink(pl, fwnode);
Russell King9525ae82017-07-25 15:03:13 +0100600 if (ret < 0) {
601 kfree(pl);
602 return ERR_PTR(ret);
603 }
604 }
605
Russell King8fa7b9b2017-12-01 10:25:09 +0000606 ret = phylink_register_sfp(pl, fwnode);
Russell Kingce0aa272017-07-25 15:03:18 +0100607 if (ret < 0) {
608 kfree(pl);
609 return ERR_PTR(ret);
610 }
611
Russell King9525ae82017-07-25 15:03:13 +0100612 return pl;
613}
614EXPORT_SYMBOL_GPL(phylink_create);
615
Russell King8796c892017-12-01 10:24:47 +0000616/**
617 * phylink_destroy() - cleanup and destroy the phylink instance
618 * @pl: a pointer to a &struct phylink returned from phylink_create()
619 *
620 * Destroy a phylink instance. Any PHY that has been attached must have been
621 * cleaned up via phylink_disconnect_phy() prior to calling this function.
622 */
Russell King9525ae82017-07-25 15:03:13 +0100623void phylink_destroy(struct phylink *pl)
624{
Russell Kingce0aa272017-07-25 15:03:18 +0100625 if (pl->sfp_bus)
626 sfp_unregister_upstream(pl->sfp_bus);
Florian Fainelli3bcd4772018-05-20 20:49:47 -0700627 if (!IS_ERR_OR_NULL(pl->link_gpio))
Florian Fainellidaab3342018-05-10 13:17:30 -0700628 gpiod_put(pl->link_gpio);
Russell Kingce0aa272017-07-25 15:03:18 +0100629
Russell King9525ae82017-07-25 15:03:13 +0100630 cancel_work_sync(&pl->resolve);
631 kfree(pl);
632}
633EXPORT_SYMBOL_GPL(phylink_destroy);
634
Wei Yongjun1ec6e532017-11-02 11:14:48 +0000635static void phylink_phy_change(struct phy_device *phydev, bool up,
636 bool do_carrier)
Russell King9525ae82017-07-25 15:03:13 +0100637{
638 struct phylink *pl = phydev->phylink;
639
640 mutex_lock(&pl->state_mutex);
641 pl->phy_state.speed = phydev->speed;
642 pl->phy_state.duplex = phydev->duplex;
643 pl->phy_state.pause = MLO_PAUSE_NONE;
644 if (phydev->pause)
645 pl->phy_state.pause |= MLO_PAUSE_SYM;
646 if (phydev->asym_pause)
647 pl->phy_state.pause |= MLO_PAUSE_ASYM;
648 pl->phy_state.interface = phydev->interface;
649 pl->phy_state.link = up;
650 mutex_unlock(&pl->state_mutex);
651
652 phylink_run_resolve(pl);
653
654 netdev_dbg(pl->netdev, "phy link %s %s/%s/%s\n", up ? "up" : "down",
Florian Fainelli516b29e2017-10-30 21:42:57 -0700655 phy_modes(phydev->interface),
Russell King9525ae82017-07-25 15:03:13 +0100656 phy_speed_to_str(phydev->speed),
657 phy_duplex_to_str(phydev->duplex));
658}
659
660static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy)
661{
662 struct phylink_link_state config;
663 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
664 u32 advertising;
665 int ret;
666
667 memset(&config, 0, sizeof(config));
668 ethtool_convert_legacy_u32_to_link_mode(supported, phy->supported);
669 ethtool_convert_legacy_u32_to_link_mode(config.advertising,
670 phy->advertising);
671 config.interface = pl->link_config.interface;
672
673 /*
674 * This is the new way of dealing with flow control for PHYs,
675 * as described by Timur Tabi in commit 529ed1275263 ("net: phy:
676 * phy drivers should not set SUPPORTED_[Asym_]Pause") except
677 * using our validate call to the MAC, we rely upon the MAC
678 * clearing the bits from both supported and advertising fields.
679 */
680 if (phylink_test(supported, Pause))
681 phylink_set(config.advertising, Pause);
682 if (phylink_test(supported, Asym_Pause))
683 phylink_set(config.advertising, Asym_Pause);
684
685 ret = phylink_validate(pl, supported, &config);
686 if (ret)
687 return ret;
688
689 phy->phylink = pl;
690 phy->phy_link_change = phylink_phy_change;
691
692 netdev_info(pl->netdev,
693 "PHY [%s] driver [%s]\n", dev_name(&phy->mdio.dev),
694 phy->drv->name);
695
696 mutex_lock(&phy->lock);
697 mutex_lock(&pl->state_mutex);
Russell King9525ae82017-07-25 15:03:13 +0100698 pl->phydev = phy;
699 linkmode_copy(pl->supported, supported);
700 linkmode_copy(pl->link_config.advertising, config.advertising);
701
Colin Ian Kingcc1122b2018-03-01 10:23:03 +0000702 /* Restrict the phy advertisement according to the MAC support. */
Russell King9525ae82017-07-25 15:03:13 +0100703 ethtool_convert_link_mode_to_legacy_u32(&advertising, config.advertising);
704 phy->advertising = advertising;
705 mutex_unlock(&pl->state_mutex);
706 mutex_unlock(&phy->lock);
707
708 netdev_dbg(pl->netdev,
709 "phy: setting supported %*pb advertising 0x%08x\n",
710 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported,
711 phy->advertising);
712
713 phy_start_machine(phy);
714 if (phy->irq > 0)
715 phy_start_interrupts(phy);
716
717 return 0;
718}
719
Baruch Siach7e418372018-10-03 19:04:49 +0300720static int __phylink_connect_phy(struct phylink *pl, struct phy_device *phy,
721 phy_interface_t interface)
722{
723 int ret;
724
725 if (WARN_ON(pl->link_an_mode == MLO_AN_FIXED ||
726 (pl->link_an_mode == MLO_AN_INBAND &&
727 phy_interface_mode_is_8023z(interface))))
728 return -EINVAL;
729
730 if (pl->phydev)
731 return -EBUSY;
732
733 ret = phy_attach_direct(pl->netdev, phy, 0, interface);
734 if (ret)
735 return ret;
736
737 ret = phylink_bringup_phy(pl, phy);
738 if (ret)
739 phy_detach(phy);
740
741 return ret;
742}
743
Russell King8796c892017-12-01 10:24:47 +0000744/**
745 * phylink_connect_phy() - connect a PHY to the phylink instance
746 * @pl: a pointer to a &struct phylink returned from phylink_create()
747 * @phy: a pointer to a &struct phy_device.
748 *
749 * Connect @phy to the phylink instance specified by @pl by calling
750 * phy_attach_direct(). Configure the @phy according to the MAC driver's
751 * capabilities, start the PHYLIB state machine and enable any interrupts
752 * that the PHY supports.
753 *
754 * This updates the phylink's ethtool supported and advertising link mode
755 * masks.
756 *
757 * Returns 0 on success or a negative errno.
758 */
Russell King9525ae82017-07-25 15:03:13 +0100759int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
760{
Florian Fainelli4904b6e2017-12-12 16:00:26 -0800761 /* Use PHY device/driver interface */
762 if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
763 pl->link_interface = phy->interface;
764 pl->link_config.interface = pl->link_interface;
765 }
766
Baruch Siach7e418372018-10-03 19:04:49 +0300767 return __phylink_connect_phy(pl, phy, pl->link_interface);
Russell King9525ae82017-07-25 15:03:13 +0100768}
769EXPORT_SYMBOL_GPL(phylink_connect_phy);
770
Russell King8796c892017-12-01 10:24:47 +0000771/**
772 * phylink_of_phy_connect() - connect the PHY specified in the DT mode.
773 * @pl: a pointer to a &struct phylink returned from phylink_create()
774 * @dn: a pointer to a &struct device_node.
Florian Fainelli0a629642017-12-12 16:00:25 -0800775 * @flags: PHY-specific flags to communicate to the PHY device driver
Russell King8796c892017-12-01 10:24:47 +0000776 *
777 * Connect the phy specified in the device node @dn to the phylink instance
778 * specified by @pl. Actions specified in phylink_connect_phy() will be
779 * performed.
780 *
781 * Returns 0 on success or a negative errno.
782 */
Florian Fainelli0a629642017-12-12 16:00:25 -0800783int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn,
784 u32 flags)
Russell King9525ae82017-07-25 15:03:13 +0100785{
786 struct device_node *phy_node;
787 struct phy_device *phy_dev;
788 int ret;
789
Russell Kingcf4f2672017-12-01 10:24:21 +0000790 /* Fixed links and 802.3z are handled without needing a PHY */
791 if (pl->link_an_mode == MLO_AN_FIXED ||
Russell King86a362c2017-12-01 10:24:26 +0000792 (pl->link_an_mode == MLO_AN_INBAND &&
793 phy_interface_mode_is_8023z(pl->link_interface)))
Russell King9525ae82017-07-25 15:03:13 +0100794 return 0;
795
796 phy_node = of_parse_phandle(dn, "phy-handle", 0);
797 if (!phy_node)
798 phy_node = of_parse_phandle(dn, "phy", 0);
799 if (!phy_node)
800 phy_node = of_parse_phandle(dn, "phy-device", 0);
801
802 if (!phy_node) {
Florian Fainellid38b4afd2017-12-12 16:00:27 -0800803 if (pl->link_an_mode == MLO_AN_PHY)
Russell King9525ae82017-07-25 15:03:13 +0100804 return -ENODEV;
Russell King9525ae82017-07-25 15:03:13 +0100805 return 0;
806 }
807
Florian Fainelli0a629642017-12-12 16:00:25 -0800808 phy_dev = of_phy_attach(pl->netdev, phy_node, flags,
809 pl->link_interface);
Russell King9525ae82017-07-25 15:03:13 +0100810 /* We're done with the phy_node handle */
811 of_node_put(phy_node);
812
813 if (!phy_dev)
814 return -ENODEV;
815
816 ret = phylink_bringup_phy(pl, phy_dev);
817 if (ret)
818 phy_detach(phy_dev);
819
820 return ret;
821}
822EXPORT_SYMBOL_GPL(phylink_of_phy_connect);
823
Russell King8796c892017-12-01 10:24:47 +0000824/**
825 * phylink_disconnect_phy() - disconnect any PHY attached to the phylink
826 * instance.
827 * @pl: a pointer to a &struct phylink returned from phylink_create()
828 *
829 * Disconnect any current PHY from the phylink instance described by @pl.
830 */
Russell King9525ae82017-07-25 15:03:13 +0100831void phylink_disconnect_phy(struct phylink *pl)
832{
833 struct phy_device *phy;
834
Russell King8b874512017-12-15 16:09:47 +0000835 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100836
837 phy = pl->phydev;
838 if (phy) {
839 mutex_lock(&phy->lock);
840 mutex_lock(&pl->state_mutex);
Russell King9525ae82017-07-25 15:03:13 +0100841 pl->phydev = NULL;
842 mutex_unlock(&pl->state_mutex);
843 mutex_unlock(&phy->lock);
844 flush_work(&pl->resolve);
845
846 phy_disconnect(phy);
847 }
848}
849EXPORT_SYMBOL_GPL(phylink_disconnect_phy);
850
Russell King8796c892017-12-01 10:24:47 +0000851/**
Florian Fainelli1ac63e32017-12-12 16:00:28 -0800852 * phylink_fixed_state_cb() - allow setting a fixed link callback
853 * @pl: a pointer to a &struct phylink returned from phylink_create()
854 * @cb: callback to execute to determine the fixed link state.
855 *
856 * The MAC driver should call this driver when the state of its link
857 * can be determined through e.g: an out of band MMIO register.
858 */
859int phylink_fixed_state_cb(struct phylink *pl,
860 void (*cb)(struct net_device *dev,
861 struct phylink_link_state *state))
862{
863 /* It does not make sense to let the link be overriden unless we use
864 * MLO_AN_FIXED
865 */
866 if (pl->link_an_mode != MLO_AN_FIXED)
867 return -EINVAL;
868
869 mutex_lock(&pl->state_mutex);
870 pl->get_fixed_state = cb;
871 mutex_unlock(&pl->state_mutex);
872
873 return 0;
874}
875EXPORT_SYMBOL_GPL(phylink_fixed_state_cb);
876
877/**
Russell King8796c892017-12-01 10:24:47 +0000878 * phylink_mac_change() - notify phylink of a change in MAC state
879 * @pl: a pointer to a &struct phylink returned from phylink_create()
880 * @up: indicates whether the link is currently up.
881 *
882 * The MAC driver should call this driver when the state of its link
883 * changes (eg, link failure, new negotiation results, etc.)
884 */
Russell King9525ae82017-07-25 15:03:13 +0100885void phylink_mac_change(struct phylink *pl, bool up)
886{
887 if (!up)
888 pl->mac_link_dropped = true;
889 phylink_run_resolve(pl);
890 netdev_dbg(pl->netdev, "mac link %s\n", up ? "up" : "down");
891}
892EXPORT_SYMBOL_GPL(phylink_mac_change);
893
Russell King8796c892017-12-01 10:24:47 +0000894/**
895 * phylink_start() - start a phylink instance
896 * @pl: a pointer to a &struct phylink returned from phylink_create()
897 *
898 * Start the phylink instance specified by @pl, configuring the MAC for the
899 * desired link mode(s) and negotiation style. This should be called from the
900 * network device driver's &struct net_device_ops ndo_open() method.
901 */
Russell King9525ae82017-07-25 15:03:13 +0100902void phylink_start(struct phylink *pl)
903{
Russell King8b874512017-12-15 16:09:47 +0000904 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100905
906 netdev_info(pl->netdev, "configuring for %s/%s link mode\n",
907 phylink_an_mode_str(pl->link_an_mode),
908 phy_modes(pl->link_config.interface));
909
910 /* Apply the link configuration to the MAC when starting. This allows
911 * a fixed-link to start with the correct parameters, and also
Colin Ian Kingcc1122b2018-03-01 10:23:03 +0000912 * ensures that we set the appropriate advertisement for Serdes links.
Russell King9525ae82017-07-25 15:03:13 +0100913 */
914 phylink_resolve_flow(pl, &pl->link_config);
915 phylink_mac_config(pl, &pl->link_config);
916
Russell King85b43942017-12-01 10:24:42 +0000917 /* Restart autonegotiation if using 802.3z to ensure that the link
918 * parameters are properly negotiated. This is necessary for DSA
919 * switches using 802.3z negotiation to ensure they see our modes.
920 */
921 phylink_mac_an_restart(pl);
922
Russell King9525ae82017-07-25 15:03:13 +0100923 clear_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
924 phylink_run_resolve(pl);
925
Russell King9cd00a82018-05-10 13:17:31 -0700926 if (pl->link_an_mode == MLO_AN_FIXED && !IS_ERR(pl->link_gpio))
927 mod_timer(&pl->link_poll, jiffies + HZ);
Russell Kingce0aa272017-07-25 15:03:18 +0100928 if (pl->sfp_bus)
929 sfp_upstream_start(pl->sfp_bus);
Russell King9525ae82017-07-25 15:03:13 +0100930 if (pl->phydev)
931 phy_start(pl->phydev);
932}
933EXPORT_SYMBOL_GPL(phylink_start);
934
Russell King8796c892017-12-01 10:24:47 +0000935/**
936 * phylink_stop() - stop a phylink instance
937 * @pl: a pointer to a &struct phylink returned from phylink_create()
938 *
939 * Stop the phylink instance specified by @pl. This should be called from the
940 * network device driver's &struct net_device_ops ndo_stop() method. The
941 * network device's carrier state should not be changed prior to calling this
942 * function.
943 */
Russell King9525ae82017-07-25 15:03:13 +0100944void phylink_stop(struct phylink *pl)
945{
Russell King8b874512017-12-15 16:09:47 +0000946 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100947
948 if (pl->phydev)
949 phy_stop(pl->phydev);
Russell Kingce0aa272017-07-25 15:03:18 +0100950 if (pl->sfp_bus)
951 sfp_upstream_stop(pl->sfp_bus);
Russell King9cd00a82018-05-10 13:17:31 -0700952 if (pl->link_an_mode == MLO_AN_FIXED && !IS_ERR(pl->link_gpio))
953 del_timer_sync(&pl->link_poll);
Russell King9525ae82017-07-25 15:03:13 +0100954
955 set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
Russell King2012b7d2017-11-30 13:59:26 +0000956 queue_work(system_power_efficient_wq, &pl->resolve);
Russell King9525ae82017-07-25 15:03:13 +0100957 flush_work(&pl->resolve);
958}
959EXPORT_SYMBOL_GPL(phylink_stop);
960
Russell King8796c892017-12-01 10:24:47 +0000961/**
962 * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY
963 * @pl: a pointer to a &struct phylink returned from phylink_create()
964 * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters
965 *
966 * Read the wake on lan parameters from the PHY attached to the phylink
967 * instance specified by @pl. If no PHY is currently attached, report no
968 * support for wake on lan.
969 */
Russell King9525ae82017-07-25 15:03:13 +0100970void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
971{
Russell King8b874512017-12-15 16:09:47 +0000972 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100973
974 wol->supported = 0;
975 wol->wolopts = 0;
976
977 if (pl->phydev)
978 phy_ethtool_get_wol(pl->phydev, wol);
979}
980EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol);
981
Russell King8796c892017-12-01 10:24:47 +0000982/**
983 * phylink_ethtool_set_wol() - set wake on lan parameters
984 * @pl: a pointer to a &struct phylink returned from phylink_create()
985 * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters
986 *
987 * Set the wake on lan parameters for the PHY attached to the phylink
988 * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP
989 * error.
990 *
991 * Returns zero on success or negative errno code.
992 */
Russell King9525ae82017-07-25 15:03:13 +0100993int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
994{
995 int ret = -EOPNOTSUPP;
996
Russell King8b874512017-12-15 16:09:47 +0000997 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +0100998
999 if (pl->phydev)
1000 ret = phy_ethtool_set_wol(pl->phydev, wol);
1001
1002 return ret;
1003}
1004EXPORT_SYMBOL_GPL(phylink_ethtool_set_wol);
1005
1006static void phylink_merge_link_mode(unsigned long *dst, const unsigned long *b)
1007{
1008 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask);
1009
1010 linkmode_zero(mask);
1011 phylink_set_port_modes(mask);
1012
1013 linkmode_and(dst, dst, mask);
1014 linkmode_or(dst, dst, b);
1015}
1016
1017static void phylink_get_ksettings(const struct phylink_link_state *state,
1018 struct ethtool_link_ksettings *kset)
1019{
1020 phylink_merge_link_mode(kset->link_modes.advertising, state->advertising);
1021 linkmode_copy(kset->link_modes.lp_advertising, state->lp_advertising);
1022 kset->base.speed = state->speed;
1023 kset->base.duplex = state->duplex;
1024 kset->base.autoneg = state->an_enabled ? AUTONEG_ENABLE :
1025 AUTONEG_DISABLE;
1026}
1027
Russell King8796c892017-12-01 10:24:47 +00001028/**
1029 * phylink_ethtool_ksettings_get() - get the current link settings
1030 * @pl: a pointer to a &struct phylink returned from phylink_create()
1031 * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings
1032 *
1033 * Read the current link settings for the phylink instance specified by @pl.
1034 * This will be the link settings read from the MAC, PHY or fixed link
1035 * settings depending on the current negotiation mode.
1036 */
Russell King9525ae82017-07-25 15:03:13 +01001037int phylink_ethtool_ksettings_get(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -07001038 struct ethtool_link_ksettings *kset)
Russell King9525ae82017-07-25 15:03:13 +01001039{
1040 struct phylink_link_state link_state;
1041
Russell King8b874512017-12-15 16:09:47 +00001042 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001043
1044 if (pl->phydev) {
1045 phy_ethtool_ksettings_get(pl->phydev, kset);
1046 } else {
1047 kset->base.port = pl->link_port;
1048 }
1049
1050 linkmode_copy(kset->link_modes.supported, pl->supported);
1051
1052 switch (pl->link_an_mode) {
1053 case MLO_AN_FIXED:
1054 /* We are using fixed settings. Report these as the
1055 * current link settings - and note that these also
1056 * represent the supported speeds/duplex/pause modes.
1057 */
1058 phylink_get_fixed_state(pl, &link_state);
1059 phylink_get_ksettings(&link_state, kset);
1060 break;
1061
Russell King86a362c2017-12-01 10:24:26 +00001062 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001063 /* If there is a phy attached, then use the reported
1064 * settings from the phy with no modification.
1065 */
1066 if (pl->phydev)
1067 break;
1068
Russell King9525ae82017-07-25 15:03:13 +01001069 phylink_get_mac_state(pl, &link_state);
1070
1071 /* The MAC is reporting the link results from its own PCS
1072 * layer via in-band status. Report these as the current
1073 * link settings.
1074 */
1075 phylink_get_ksettings(&link_state, kset);
1076 break;
1077 }
1078
1079 return 0;
1080}
1081EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get);
1082
Russell King8796c892017-12-01 10:24:47 +00001083/**
1084 * phylink_ethtool_ksettings_set() - set the link settings
1085 * @pl: a pointer to a &struct phylink returned from phylink_create()
1086 * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes
1087 */
Russell King9525ae82017-07-25 15:03:13 +01001088int phylink_ethtool_ksettings_set(struct phylink *pl,
Florian Fainelli516b29e2017-10-30 21:42:57 -07001089 const struct ethtool_link_ksettings *kset)
Russell King9525ae82017-07-25 15:03:13 +01001090{
1091 struct ethtool_link_ksettings our_kset;
1092 struct phylink_link_state config;
1093 int ret;
1094
Russell King8b874512017-12-15 16:09:47 +00001095 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001096
1097 if (kset->base.autoneg != AUTONEG_DISABLE &&
1098 kset->base.autoneg != AUTONEG_ENABLE)
1099 return -EINVAL;
1100
1101 config = pl->link_config;
1102
Colin Ian Kingcc1122b2018-03-01 10:23:03 +00001103 /* Mask out unsupported advertisements */
Russell King9525ae82017-07-25 15:03:13 +01001104 linkmode_and(config.advertising, kset->link_modes.advertising,
1105 pl->supported);
1106
1107 /* FIXME: should we reject autoneg if phy/mac does not support it? */
1108 if (kset->base.autoneg == AUTONEG_DISABLE) {
1109 const struct phy_setting *s;
1110
1111 /* Autonegotiation disabled, select a suitable speed and
1112 * duplex.
1113 */
1114 s = phy_lookup_setting(kset->base.speed, kset->base.duplex,
1115 pl->supported,
1116 __ETHTOOL_LINK_MODE_MASK_NBITS, false);
1117 if (!s)
1118 return -EINVAL;
1119
1120 /* If we have a fixed link (as specified by firmware), refuse
1121 * to change link parameters.
1122 */
1123 if (pl->link_an_mode == MLO_AN_FIXED &&
1124 (s->speed != pl->link_config.speed ||
1125 s->duplex != pl->link_config.duplex))
1126 return -EINVAL;
1127
1128 config.speed = s->speed;
1129 config.duplex = s->duplex;
1130 config.an_enabled = false;
1131
1132 __clear_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1133 } else {
1134 /* If we have a fixed link, refuse to enable autonegotiation */
1135 if (pl->link_an_mode == MLO_AN_FIXED)
1136 return -EINVAL;
1137
1138 config.speed = SPEED_UNKNOWN;
1139 config.duplex = DUPLEX_UNKNOWN;
1140 config.an_enabled = true;
1141
1142 __set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1143 }
1144
1145 if (phylink_validate(pl, pl->supported, &config))
1146 return -EINVAL;
1147
Colin Ian Kingcc1122b2018-03-01 10:23:03 +00001148 /* If autonegotiation is enabled, we must have an advertisement */
Russell King9525ae82017-07-25 15:03:13 +01001149 if (config.an_enabled && phylink_is_empty_linkmode(config.advertising))
1150 return -EINVAL;
1151
1152 our_kset = *kset;
1153 linkmode_copy(our_kset.link_modes.advertising, config.advertising);
1154 our_kset.base.speed = config.speed;
1155 our_kset.base.duplex = config.duplex;
1156
1157 /* If we have a PHY, configure the phy */
1158 if (pl->phydev) {
1159 ret = phy_ethtool_ksettings_set(pl->phydev, &our_kset);
1160 if (ret)
1161 return ret;
1162 }
1163
1164 mutex_lock(&pl->state_mutex);
1165 /* Configure the MAC to match the new settings */
1166 linkmode_copy(pl->link_config.advertising, our_kset.link_modes.advertising);
Russell King182088a2017-12-20 23:21:28 +00001167 pl->link_config.interface = config.interface;
Russell King9525ae82017-07-25 15:03:13 +01001168 pl->link_config.speed = our_kset.base.speed;
1169 pl->link_config.duplex = our_kset.base.duplex;
1170 pl->link_config.an_enabled = our_kset.base.autoneg != AUTONEG_DISABLE;
1171
1172 if (!test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) {
1173 phylink_mac_config(pl, &pl->link_config);
1174 phylink_mac_an_restart(pl);
1175 }
1176 mutex_unlock(&pl->state_mutex);
1177
Dan Carpenterd18c2a12017-08-10 00:35:50 +03001178 return 0;
Russell King9525ae82017-07-25 15:03:13 +01001179}
1180EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set);
1181
Russell King8796c892017-12-01 10:24:47 +00001182/**
1183 * phylink_ethtool_nway_reset() - restart negotiation
1184 * @pl: a pointer to a &struct phylink returned from phylink_create()
1185 *
1186 * Restart negotiation for the phylink instance specified by @pl. This will
1187 * cause any attached phy to restart negotiation with the link partner, and
1188 * if the MAC is in a BaseX mode, the MAC will also be requested to restart
1189 * negotiation.
1190 *
1191 * Returns zero on success, or negative error code.
1192 */
Russell King9525ae82017-07-25 15:03:13 +01001193int phylink_ethtool_nway_reset(struct phylink *pl)
1194{
1195 int ret = 0;
1196
Russell King8b874512017-12-15 16:09:47 +00001197 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001198
1199 if (pl->phydev)
1200 ret = phy_restart_aneg(pl->phydev);
1201 phylink_mac_an_restart(pl);
1202
1203 return ret;
1204}
1205EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset);
1206
Russell King8796c892017-12-01 10:24:47 +00001207/**
1208 * phylink_ethtool_get_pauseparam() - get the current pause parameters
1209 * @pl: a pointer to a &struct phylink returned from phylink_create()
1210 * @pause: a pointer to a &struct ethtool_pauseparam
1211 */
Russell King9525ae82017-07-25 15:03:13 +01001212void phylink_ethtool_get_pauseparam(struct phylink *pl,
1213 struct ethtool_pauseparam *pause)
1214{
Russell King8b874512017-12-15 16:09:47 +00001215 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001216
1217 pause->autoneg = !!(pl->link_config.pause & MLO_PAUSE_AN);
1218 pause->rx_pause = !!(pl->link_config.pause & MLO_PAUSE_RX);
1219 pause->tx_pause = !!(pl->link_config.pause & MLO_PAUSE_TX);
1220}
1221EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam);
1222
Russell King8796c892017-12-01 10:24:47 +00001223/**
1224 * phylink_ethtool_set_pauseparam() - set the current pause parameters
1225 * @pl: a pointer to a &struct phylink returned from phylink_create()
1226 * @pause: a pointer to a &struct ethtool_pauseparam
1227 */
Russell King9525ae82017-07-25 15:03:13 +01001228int phylink_ethtool_set_pauseparam(struct phylink *pl,
1229 struct ethtool_pauseparam *pause)
1230{
1231 struct phylink_link_state *config = &pl->link_config;
1232
Russell King8b874512017-12-15 16:09:47 +00001233 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001234
1235 if (!phylink_test(pl->supported, Pause) &&
1236 !phylink_test(pl->supported, Asym_Pause))
1237 return -EOPNOTSUPP;
1238
1239 if (!phylink_test(pl->supported, Asym_Pause) &&
1240 !pause->autoneg && pause->rx_pause != pause->tx_pause)
1241 return -EINVAL;
1242
1243 config->pause &= ~(MLO_PAUSE_AN | MLO_PAUSE_TXRX_MASK);
1244
1245 if (pause->autoneg)
1246 config->pause |= MLO_PAUSE_AN;
1247 if (pause->rx_pause)
1248 config->pause |= MLO_PAUSE_RX;
1249 if (pause->tx_pause)
1250 config->pause |= MLO_PAUSE_TX;
1251
1252 if (!test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) {
1253 switch (pl->link_an_mode) {
1254 case MLO_AN_PHY:
1255 /* Silently mark the carrier down, and then trigger a resolve */
1256 netif_carrier_off(pl->netdev);
1257 phylink_run_resolve(pl);
1258 break;
1259
1260 case MLO_AN_FIXED:
1261 /* Should we allow fixed links to change against the config? */
1262 phylink_resolve_flow(pl, config);
1263 phylink_mac_config(pl, config);
1264 break;
1265
Russell King86a362c2017-12-01 10:24:26 +00001266 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001267 phylink_mac_config(pl, config);
1268 phylink_mac_an_restart(pl);
1269 break;
1270 }
1271 }
1272
1273 return 0;
1274}
1275EXPORT_SYMBOL_GPL(phylink_ethtool_set_pauseparam);
1276
Russell King8796c892017-12-01 10:24:47 +00001277/**
1278 * phylink_ethtool_get_eee_err() - read the energy efficient ethernet error
1279 * counter
1280 * @pl: a pointer to a &struct phylink returned from phylink_create().
1281 *
1282 * Read the Energy Efficient Ethernet error counter from the PHY associated
1283 * with the phylink instance specified by @pl.
1284 *
1285 * Returns positive error counter value, or negative error code.
1286 */
Russell King9525ae82017-07-25 15:03:13 +01001287int phylink_get_eee_err(struct phylink *pl)
1288{
1289 int ret = 0;
1290
Russell King8b874512017-12-15 16:09:47 +00001291 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001292
1293 if (pl->phydev)
1294 ret = phy_get_eee_err(pl->phydev);
1295
1296 return ret;
1297}
1298EXPORT_SYMBOL_GPL(phylink_get_eee_err);
1299
Russell King8796c892017-12-01 10:24:47 +00001300/**
1301 * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters
1302 * @pl: a pointer to a &struct phylink returned from phylink_create()
1303 * @eee: a pointer to a &struct ethtool_eee for the read parameters
1304 */
Russell King9525ae82017-07-25 15:03:13 +01001305int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
1306{
1307 int ret = -EOPNOTSUPP;
1308
Russell King8b874512017-12-15 16:09:47 +00001309 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001310
1311 if (pl->phydev)
1312 ret = phy_ethtool_get_eee(pl->phydev, eee);
1313
1314 return ret;
1315}
1316EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee);
1317
Russell King8796c892017-12-01 10:24:47 +00001318/**
1319 * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters
1320 * @pl: a pointer to a &struct phylink returned from phylink_create()
1321 * @eee: a pointer to a &struct ethtool_eee for the desired parameters
1322 */
Russell King9525ae82017-07-25 15:03:13 +01001323int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee)
1324{
1325 int ret = -EOPNOTSUPP;
1326
Russell King8b874512017-12-15 16:09:47 +00001327 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001328
1329 if (pl->phydev)
1330 ret = phy_ethtool_set_eee(pl->phydev, eee);
1331
1332 return ret;
1333}
1334EXPORT_SYMBOL_GPL(phylink_ethtool_set_eee);
1335
1336/* This emulates MII registers for a fixed-mode phy operating as per the
1337 * passed in state. "aneg" defines if we report negotiation is possible.
1338 *
1339 * FIXME: should deal with negotiation state too.
1340 */
1341static int phylink_mii_emul_read(struct net_device *ndev, unsigned int reg,
1342 struct phylink_link_state *state, bool aneg)
1343{
1344 struct fixed_phy_status fs;
1345 int val;
1346
1347 fs.link = state->link;
1348 fs.speed = state->speed;
1349 fs.duplex = state->duplex;
1350 fs.pause = state->pause & MLO_PAUSE_SYM;
1351 fs.asym_pause = state->pause & MLO_PAUSE_ASYM;
1352
1353 val = swphy_read_reg(reg, &fs);
1354 if (reg == MII_BMSR) {
1355 if (!state->an_complete)
1356 val &= ~BMSR_ANEGCOMPLETE;
1357 if (!aneg)
1358 val &= ~BMSR_ANEGCAPABLE;
1359 }
1360 return val;
1361}
1362
Russell Kingecbd87b2017-07-25 15:03:28 +01001363static int phylink_phy_read(struct phylink *pl, unsigned int phy_id,
1364 unsigned int reg)
1365{
1366 struct phy_device *phydev = pl->phydev;
1367 int prtad, devad;
1368
1369 if (mdio_phy_id_is_c45(phy_id)) {
1370 prtad = mdio_phy_id_prtad(phy_id);
1371 devad = mdio_phy_id_devad(phy_id);
1372 devad = MII_ADDR_C45 | devad << 16 | reg;
1373 } else if (phydev->is_c45) {
1374 switch (reg) {
1375 case MII_BMCR:
1376 case MII_BMSR:
1377 case MII_PHYSID1:
1378 case MII_PHYSID2:
1379 devad = __ffs(phydev->c45_ids.devices_in_package);
1380 break;
1381 case MII_ADVERTISE:
1382 case MII_LPA:
1383 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1384 return -EINVAL;
1385 devad = MDIO_MMD_AN;
1386 if (reg == MII_ADVERTISE)
1387 reg = MDIO_AN_ADVERTISE;
1388 else
1389 reg = MDIO_AN_LPA;
1390 break;
1391 default:
1392 return -EINVAL;
1393 }
1394 prtad = phy_id;
1395 devad = MII_ADDR_C45 | devad << 16 | reg;
1396 } else {
1397 prtad = phy_id;
1398 devad = reg;
1399 }
1400 return mdiobus_read(pl->phydev->mdio.bus, prtad, devad);
1401}
1402
1403static int phylink_phy_write(struct phylink *pl, unsigned int phy_id,
1404 unsigned int reg, unsigned int val)
1405{
1406 struct phy_device *phydev = pl->phydev;
1407 int prtad, devad;
1408
1409 if (mdio_phy_id_is_c45(phy_id)) {
1410 prtad = mdio_phy_id_prtad(phy_id);
1411 devad = mdio_phy_id_devad(phy_id);
1412 devad = MII_ADDR_C45 | devad << 16 | reg;
1413 } else if (phydev->is_c45) {
1414 switch (reg) {
1415 case MII_BMCR:
1416 case MII_BMSR:
1417 case MII_PHYSID1:
1418 case MII_PHYSID2:
1419 devad = __ffs(phydev->c45_ids.devices_in_package);
1420 break;
1421 case MII_ADVERTISE:
1422 case MII_LPA:
1423 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1424 return -EINVAL;
1425 devad = MDIO_MMD_AN;
1426 if (reg == MII_ADVERTISE)
1427 reg = MDIO_AN_ADVERTISE;
1428 else
1429 reg = MDIO_AN_LPA;
1430 break;
1431 default:
1432 return -EINVAL;
1433 }
1434 prtad = phy_id;
1435 devad = MII_ADDR_C45 | devad << 16 | reg;
1436 } else {
1437 prtad = phy_id;
1438 devad = reg;
1439 }
1440
1441 return mdiobus_write(phydev->mdio.bus, prtad, devad, val);
1442}
1443
Russell King9525ae82017-07-25 15:03:13 +01001444static int phylink_mii_read(struct phylink *pl, unsigned int phy_id,
1445 unsigned int reg)
1446{
1447 struct phylink_link_state state;
1448 int val = 0xffff;
1449
Russell King9525ae82017-07-25 15:03:13 +01001450 switch (pl->link_an_mode) {
1451 case MLO_AN_FIXED:
1452 if (phy_id == 0) {
1453 phylink_get_fixed_state(pl, &state);
1454 val = phylink_mii_emul_read(pl->netdev, reg, &state,
1455 true);
1456 }
1457 break;
1458
1459 case MLO_AN_PHY:
1460 return -EOPNOTSUPP;
1461
Russell King86a362c2017-12-01 10:24:26 +00001462 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001463 if (phy_id == 0) {
1464 val = phylink_get_mac_state(pl, &state);
1465 if (val < 0)
1466 return val;
1467
1468 val = phylink_mii_emul_read(pl->netdev, reg, &state,
1469 true);
1470 }
1471 break;
1472 }
1473
1474 return val & 0xffff;
1475}
1476
1477static int phylink_mii_write(struct phylink *pl, unsigned int phy_id,
1478 unsigned int reg, unsigned int val)
1479{
Russell King9525ae82017-07-25 15:03:13 +01001480 switch (pl->link_an_mode) {
1481 case MLO_AN_FIXED:
1482 break;
1483
1484 case MLO_AN_PHY:
1485 return -EOPNOTSUPP;
1486
Russell King86a362c2017-12-01 10:24:26 +00001487 case MLO_AN_INBAND:
Russell King9525ae82017-07-25 15:03:13 +01001488 break;
1489 }
1490
1491 return 0;
1492}
1493
Russell King8796c892017-12-01 10:24:47 +00001494/**
1495 * phylink_mii_ioctl() - generic mii ioctl interface
1496 * @pl: a pointer to a &struct phylink returned from phylink_create()
1497 * @ifr: a pointer to a &struct ifreq for socket ioctls
1498 * @cmd: ioctl cmd to execute
1499 *
1500 * Perform the specified MII ioctl on the PHY attached to the phylink instance
1501 * specified by @pl. If no PHY is attached, emulate the presence of the PHY.
1502 *
1503 * Returns: zero on success or negative error code.
1504 *
1505 * %SIOCGMIIPHY:
1506 * read register from the current PHY.
1507 * %SIOCGMIIREG:
1508 * read register from the specified PHY.
1509 * %SIOCSMIIREG:
1510 * set a register on the specified PHY.
1511 */
Russell King9525ae82017-07-25 15:03:13 +01001512int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
1513{
Russell Kingecbd87b2017-07-25 15:03:28 +01001514 struct mii_ioctl_data *mii = if_mii(ifr);
1515 int ret;
Russell King9525ae82017-07-25 15:03:13 +01001516
Russell King8b874512017-12-15 16:09:47 +00001517 ASSERT_RTNL();
Russell King9525ae82017-07-25 15:03:13 +01001518
Russell Kingecbd87b2017-07-25 15:03:28 +01001519 if (pl->phydev) {
Russell King86a362c2017-12-01 10:24:26 +00001520 /* PHYs only exist for MLO_AN_PHY and SGMII */
Russell Kingecbd87b2017-07-25 15:03:28 +01001521 switch (cmd) {
1522 case SIOCGMIIPHY:
1523 mii->phy_id = pl->phydev->mdio.addr;
Gustavo A. R. Silva46cd7502018-01-05 11:23:45 -06001524 /* fall through */
Russell King9525ae82017-07-25 15:03:13 +01001525
Russell Kingecbd87b2017-07-25 15:03:28 +01001526 case SIOCGMIIREG:
1527 ret = phylink_phy_read(pl, mii->phy_id, mii->reg_num);
1528 if (ret >= 0) {
1529 mii->val_out = ret;
1530 ret = 0;
1531 }
1532 break;
Russell King9525ae82017-07-25 15:03:13 +01001533
Russell Kingecbd87b2017-07-25 15:03:28 +01001534 case SIOCSMIIREG:
1535 ret = phylink_phy_write(pl, mii->phy_id, mii->reg_num,
1536 mii->val_in);
1537 break;
Russell King9525ae82017-07-25 15:03:13 +01001538
Russell Kingecbd87b2017-07-25 15:03:28 +01001539 default:
Russell King9525ae82017-07-25 15:03:13 +01001540 ret = phy_mii_ioctl(pl->phydev, ifr, cmd);
Russell Kingecbd87b2017-07-25 15:03:28 +01001541 break;
1542 }
1543 } else {
1544 switch (cmd) {
1545 case SIOCGMIIPHY:
1546 mii->phy_id = 0;
Gustavo A. R. Silva46cd7502018-01-05 11:23:45 -06001547 /* fall through */
Russell Kingecbd87b2017-07-25 15:03:28 +01001548
1549 case SIOCGMIIREG:
1550 ret = phylink_mii_read(pl, mii->phy_id, mii->reg_num);
1551 if (ret >= 0) {
1552 mii->val_out = ret;
1553 ret = 0;
1554 }
1555 break;
1556
1557 case SIOCSMIIREG:
1558 ret = phylink_mii_write(pl, mii->phy_id, mii->reg_num,
1559 mii->val_in);
1560 break;
1561
1562 default:
1563 ret = -EOPNOTSUPP;
1564 break;
1565 }
Russell King9525ae82017-07-25 15:03:13 +01001566 }
1567
1568 return ret;
1569}
1570EXPORT_SYMBOL_GPL(phylink_mii_ioctl);
1571
Russell Kingce0aa272017-07-25 15:03:18 +01001572static int phylink_sfp_module_insert(void *upstream,
1573 const struct sfp_eeprom_id *id)
1574{
1575 struct phylink *pl = upstream;
1576 __ETHTOOL_DECLARE_LINK_MODE_MASK(support) = { 0, };
1577 struct phylink_link_state config;
1578 phy_interface_t iface;
Russell King444d3502017-12-29 12:15:33 +00001579 int ret = 0;
Russell Kingce0aa272017-07-25 15:03:18 +01001580 bool changed;
1581 u8 port;
1582
Russell King8b874512017-12-15 16:09:47 +00001583 ASSERT_RTNL();
Russell Kingce0aa272017-07-25 15:03:18 +01001584
Russell Kinga9c79362018-02-27 15:53:02 +00001585 sfp_parse_support(pl->sfp_bus, id, support);
1586 port = sfp_parse_port(pl->sfp_bus, id, support);
Russell Kingce0aa272017-07-25 15:03:18 +01001587
1588 memset(&config, 0, sizeof(config));
1589 linkmode_copy(config.advertising, support);
Russell Kinga9c79362018-02-27 15:53:02 +00001590 config.interface = PHY_INTERFACE_MODE_NA;
Russell Kingce0aa272017-07-25 15:03:18 +01001591 config.speed = SPEED_UNKNOWN;
1592 config.duplex = DUPLEX_UNKNOWN;
1593 config.pause = MLO_PAUSE_AN;
1594 config.an_enabled = pl->link_config.an_enabled;
1595
1596 /* Ignore errors if we're expecting a PHY to attach later */
1597 ret = phylink_validate(pl, support, &config);
1598 if (ret) {
Russell Kinga9c79362018-02-27 15:53:02 +00001599 netdev_err(pl->netdev, "validation with support %*pb failed: %d\n",
1600 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1601 return ret;
1602 }
1603
1604 iface = sfp_select_interface(pl->sfp_bus, id, config.advertising);
1605 if (iface == PHY_INTERFACE_MODE_NA) {
1606 netdev_err(pl->netdev,
Colin Ian Kingcc1122b2018-03-01 10:23:03 +00001607 "selection of interface failed, advertisement %*pb\n",
Russell Kinga9c79362018-02-27 15:53:02 +00001608 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising);
1609 return -EINVAL;
1610 }
1611
1612 config.interface = iface;
1613 ret = phylink_validate(pl, support, &config);
1614 if (ret) {
Russell Kingce0aa272017-07-25 15:03:18 +01001615 netdev_err(pl->netdev, "validation of %s/%s with support %*pb failed: %d\n",
Russell King444d3502017-12-29 12:15:33 +00001616 phylink_an_mode_str(MLO_AN_INBAND),
1617 phy_modes(config.interface),
Russell Kingce0aa272017-07-25 15:03:18 +01001618 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1619 return ret;
1620 }
1621
1622 netdev_dbg(pl->netdev, "requesting link mode %s/%s with support %*pb\n",
Russell King444d3502017-12-29 12:15:33 +00001623 phylink_an_mode_str(MLO_AN_INBAND),
1624 phy_modes(config.interface),
Russell Kingce0aa272017-07-25 15:03:18 +01001625 __ETHTOOL_LINK_MODE_MASK_NBITS, support);
1626
Russell King86a362c2017-12-01 10:24:26 +00001627 if (phy_interface_mode_is_8023z(iface) && pl->phydev)
Russell Kingce0aa272017-07-25 15:03:18 +01001628 return -EINVAL;
1629
1630 changed = !bitmap_equal(pl->supported, support,
1631 __ETHTOOL_LINK_MODE_MASK_NBITS);
1632 if (changed) {
1633 linkmode_copy(pl->supported, support);
1634 linkmode_copy(pl->link_config.advertising, config.advertising);
1635 }
1636
Russell King444d3502017-12-29 12:15:33 +00001637 if (pl->link_an_mode != MLO_AN_INBAND ||
Russell Kingce0aa272017-07-25 15:03:18 +01001638 pl->link_config.interface != config.interface) {
1639 pl->link_config.interface = config.interface;
Russell King444d3502017-12-29 12:15:33 +00001640 pl->link_an_mode = MLO_AN_INBAND;
Russell Kingce0aa272017-07-25 15:03:18 +01001641
1642 changed = true;
1643
1644 netdev_info(pl->netdev, "switched to %s/%s link mode\n",
Russell King444d3502017-12-29 12:15:33 +00001645 phylink_an_mode_str(MLO_AN_INBAND),
Russell Kingce0aa272017-07-25 15:03:18 +01001646 phy_modes(config.interface));
1647 }
1648
1649 pl->link_port = port;
1650
1651 if (changed && !test_bit(PHYLINK_DISABLE_STOPPED,
1652 &pl->phylink_disable_state))
1653 phylink_mac_config(pl, &pl->link_config);
1654
1655 return ret;
1656}
1657
1658static void phylink_sfp_link_down(void *upstream)
1659{
1660 struct phylink *pl = upstream;
1661
Russell King8b874512017-12-15 16:09:47 +00001662 ASSERT_RTNL();
Russell Kingce0aa272017-07-25 15:03:18 +01001663
1664 set_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
Russell Kingac817f5a2017-12-26 23:15:12 +00001665 queue_work(system_power_efficient_wq, &pl->resolve);
Russell Kingce0aa272017-07-25 15:03:18 +01001666 flush_work(&pl->resolve);
Russell Kingce0aa272017-07-25 15:03:18 +01001667}
1668
1669static void phylink_sfp_link_up(void *upstream)
1670{
1671 struct phylink *pl = upstream;
1672
Russell King8b874512017-12-15 16:09:47 +00001673 ASSERT_RTNL();
Russell Kingce0aa272017-07-25 15:03:18 +01001674
1675 clear_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
1676 phylink_run_resolve(pl);
1677}
1678
1679static int phylink_sfp_connect_phy(void *upstream, struct phy_device *phy)
1680{
Baruch Siach7e418372018-10-03 19:04:49 +03001681 struct phylink *pl = upstream;
1682
1683 return __phylink_connect_phy(upstream, phy, pl->link_config.interface);
Russell Kingce0aa272017-07-25 15:03:18 +01001684}
1685
1686static void phylink_sfp_disconnect_phy(void *upstream)
1687{
1688 phylink_disconnect_phy(upstream);
1689}
1690
1691static const struct sfp_upstream_ops sfp_phylink_ops = {
1692 .module_insert = phylink_sfp_module_insert,
1693 .link_up = phylink_sfp_link_up,
1694 .link_down = phylink_sfp_link_down,
1695 .connect_phy = phylink_sfp_connect_phy,
1696 .disconnect_phy = phylink_sfp_disconnect_phy,
1697};
1698
Russell King624c0f02018-08-09 15:38:38 +02001699/* Helpers for MAC drivers */
1700
1701/**
1702 * phylink_helper_basex_speed() - 1000BaseX/2500BaseX helper
1703 * @state: a pointer to a &struct phylink_link_state
1704 *
1705 * Inspect the interface mode, advertising mask or forced speed and
1706 * decide whether to run at 2.5Gbit or 1Gbit appropriately, switching
1707 * the interface mode to suit. @state->interface is appropriately
1708 * updated, and the advertising mask has the "other" baseX_Full flag
1709 * cleared.
1710 */
1711void phylink_helper_basex_speed(struct phylink_link_state *state)
1712{
1713 if (phy_interface_mode_is_8023z(state->interface)) {
1714 bool want_2500 = state->an_enabled ?
1715 phylink_test(state->advertising, 2500baseX_Full) :
1716 state->speed == SPEED_2500;
1717
1718 if (want_2500) {
1719 phylink_clear(state->advertising, 1000baseX_Full);
1720 state->interface = PHY_INTERFACE_MODE_2500BASEX;
1721 } else {
1722 phylink_clear(state->advertising, 2500baseX_Full);
1723 state->interface = PHY_INTERFACE_MODE_1000BASEX;
1724 }
1725 }
1726}
1727EXPORT_SYMBOL_GPL(phylink_helper_basex_speed);
1728
Russell King9525ae82017-07-25 15:03:13 +01001729MODULE_LICENSE("GPL");