Loading...
1/*
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>
22#include <linux/workqueue.h>
23
24#include "sfp.h"
25#include "swphy.h"
26
27#define SUPPORTED_INTERFACES \
28 (SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_FIBRE | \
29 SUPPORTED_BNC | SUPPORTED_AUI | SUPPORTED_Backplane)
30#define ADVERTISED_INTERFACES \
31 (ADVERTISED_TP | ADVERTISED_MII | ADVERTISED_FIBRE | \
32 ADVERTISED_BNC | ADVERTISED_AUI | ADVERTISED_Backplane)
33
34enum {
35 PHYLINK_DISABLE_STOPPED,
36 PHYLINK_DISABLE_LINK,
37};
38
39/**
40 * struct phylink - internal data type for phylink
41 */
42struct phylink {
43 /* private: */
44 struct net_device *netdev;
45 const struct phylink_mac_ops *ops;
46
47 unsigned long phylink_disable_state; /* bitmask of disables */
48 struct phy_device *phydev;
49 phy_interface_t link_interface; /* PHY_INTERFACE_xxx */
50 u8 link_an_mode; /* MLO_AN_xxx */
51 u8 link_port; /* The current non-phy ethtool port */
52 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
53
54 /* The link configuration settings */
55 struct phylink_link_state link_config;
56 struct gpio_desc *link_gpio;
57 void (*get_fixed_state)(struct net_device *dev,
58 struct phylink_link_state *s);
59
60 struct mutex state_mutex;
61 struct phylink_link_state phy_state;
62 struct work_struct resolve;
63
64 bool mac_link_dropped;
65
66 struct sfp_bus *sfp_bus;
67};
68
69static inline void linkmode_zero(unsigned long *dst)
70{
71 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
72}
73
74static inline void linkmode_copy(unsigned long *dst, const unsigned long *src)
75{
76 bitmap_copy(dst, src, __ETHTOOL_LINK_MODE_MASK_NBITS);
77}
78
79static inline void linkmode_and(unsigned long *dst, const unsigned long *a,
80 const unsigned long *b)
81{
82 bitmap_and(dst, a, b, __ETHTOOL_LINK_MODE_MASK_NBITS);
83}
84
85static inline void linkmode_or(unsigned long *dst, const unsigned long *a,
86 const unsigned long *b)
87{
88 bitmap_or(dst, a, b, __ETHTOOL_LINK_MODE_MASK_NBITS);
89}
90
91static inline bool linkmode_empty(const unsigned long *src)
92{
93 return bitmap_empty(src, __ETHTOOL_LINK_MODE_MASK_NBITS);
94}
95
96/**
97 * phylink_set_port_modes() - set the port type modes in the ethtool mask
98 * @mask: ethtool link mode mask
99 *
100 * Sets all the port type modes in the ethtool mask. MAC drivers should
101 * use this in their 'validate' callback.
102 */
103void phylink_set_port_modes(unsigned long *mask)
104{
105 phylink_set(mask, TP);
106 phylink_set(mask, AUI);
107 phylink_set(mask, MII);
108 phylink_set(mask, FIBRE);
109 phylink_set(mask, BNC);
110 phylink_set(mask, Backplane);
111}
112EXPORT_SYMBOL_GPL(phylink_set_port_modes);
113
114static int phylink_is_empty_linkmode(const unsigned long *linkmode)
115{
116 __ETHTOOL_DECLARE_LINK_MODE_MASK(tmp) = { 0, };
117
118 phylink_set_port_modes(tmp);
119 phylink_set(tmp, Autoneg);
120 phylink_set(tmp, Pause);
121 phylink_set(tmp, Asym_Pause);
122
123 bitmap_andnot(tmp, linkmode, tmp, __ETHTOOL_LINK_MODE_MASK_NBITS);
124
125 return linkmode_empty(tmp);
126}
127
128static const char *phylink_an_mode_str(unsigned int mode)
129{
130 static const char *modestr[] = {
131 [MLO_AN_PHY] = "phy",
132 [MLO_AN_FIXED] = "fixed",
133 [MLO_AN_INBAND] = "inband",
134 };
135
136 return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown";
137}
138
139static int phylink_validate(struct phylink *pl, unsigned long *supported,
140 struct phylink_link_state *state)
141{
142 pl->ops->validate(pl->netdev, supported, state);
143
144 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0;
145}
146
147static int phylink_parse_fixedlink(struct phylink *pl,
148 struct fwnode_handle *fwnode)
149{
150 struct fwnode_handle *fixed_node;
151 const struct phy_setting *s;
152 struct gpio_desc *desc;
153 u32 speed;
154 int ret;
155
156 fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link");
157 if (fixed_node) {
158 ret = fwnode_property_read_u32(fixed_node, "speed", &speed);
159
160 pl->link_config.speed = speed;
161 pl->link_config.duplex = DUPLEX_HALF;
162
163 if (fwnode_property_read_bool(fixed_node, "full-duplex"))
164 pl->link_config.duplex = DUPLEX_FULL;
165
166 /* We treat the "pause" and "asym-pause" terminology as
167 * defining the link partner's ability. */
168 if (fwnode_property_read_bool(fixed_node, "pause"))
169 pl->link_config.pause |= MLO_PAUSE_SYM;
170 if (fwnode_property_read_bool(fixed_node, "asym-pause"))
171 pl->link_config.pause |= MLO_PAUSE_ASYM;
172
173 if (ret == 0) {
174 desc = fwnode_get_named_gpiod(fixed_node, "link-gpios",
175 0, GPIOD_IN, "?");
176
177 if (!IS_ERR(desc))
178 pl->link_gpio = desc;
179 else if (desc == ERR_PTR(-EPROBE_DEFER))
180 ret = -EPROBE_DEFER;
181 }
182 fwnode_handle_put(fixed_node);
183
184 if (ret)
185 return ret;
186 } else {
187 u32 prop[5];
188
189 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
190 NULL, 0);
191 if (ret != ARRAY_SIZE(prop)) {
192 netdev_err(pl->netdev, "broken fixed-link?\n");
193 return -EINVAL;
194 }
195
196 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
197 prop, ARRAY_SIZE(prop));
198 if (!ret) {
199 pl->link_config.duplex = prop[1] ?
200 DUPLEX_FULL : DUPLEX_HALF;
201 pl->link_config.speed = prop[2];
202 if (prop[3])
203 pl->link_config.pause |= MLO_PAUSE_SYM;
204 if (prop[4])
205 pl->link_config.pause |= MLO_PAUSE_ASYM;
206 }
207 }
208
209 if (pl->link_config.speed > SPEED_1000 &&
210 pl->link_config.duplex != DUPLEX_FULL)
211 netdev_warn(pl->netdev, "fixed link specifies half duplex for %dMbps link?\n",
212 pl->link_config.speed);
213
214 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
215 linkmode_copy(pl->link_config.advertising, pl->supported);
216 phylink_validate(pl, pl->supported, &pl->link_config);
217
218 s = phy_lookup_setting(pl->link_config.speed, pl->link_config.duplex,
219 pl->supported,
220 __ETHTOOL_LINK_MODE_MASK_NBITS, true);
221 linkmode_zero(pl->supported);
222 phylink_set(pl->supported, MII);
223 if (s) {
224 __set_bit(s->bit, pl->supported);
225 } else {
226 netdev_warn(pl->netdev, "fixed link %s duplex %dMbps not recognised\n",
227 pl->link_config.duplex == DUPLEX_FULL ? "full" : "half",
228 pl->link_config.speed);
229 }
230
231 linkmode_and(pl->link_config.advertising, pl->link_config.advertising,
232 pl->supported);
233
234 pl->link_config.link = 1;
235 pl->link_config.an_complete = 1;
236
237 return 0;
238}
239
240static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode)
241{
242 struct fwnode_handle *dn;
243 const char *managed;
244
245 dn = fwnode_get_named_child_node(fwnode, "fixed-link");
246 if (dn || fwnode_property_present(fwnode, "fixed-link"))
247 pl->link_an_mode = MLO_AN_FIXED;
248 fwnode_handle_put(dn);
249
250 if (fwnode_property_read_string(fwnode, "managed", &managed) == 0 &&
251 strcmp(managed, "in-band-status") == 0) {
252 if (pl->link_an_mode == MLO_AN_FIXED) {
253 netdev_err(pl->netdev,
254 "can't use both fixed-link and in-band-status\n");
255 return -EINVAL;
256 }
257
258 linkmode_zero(pl->supported);
259 phylink_set(pl->supported, MII);
260 phylink_set(pl->supported, Autoneg);
261 phylink_set(pl->supported, Asym_Pause);
262 phylink_set(pl->supported, Pause);
263 pl->link_config.an_enabled = true;
264 pl->link_an_mode = MLO_AN_INBAND;
265
266 switch (pl->link_config.interface) {
267 case PHY_INTERFACE_MODE_SGMII:
268 phylink_set(pl->supported, 10baseT_Half);
269 phylink_set(pl->supported, 10baseT_Full);
270 phylink_set(pl->supported, 100baseT_Half);
271 phylink_set(pl->supported, 100baseT_Full);
272 phylink_set(pl->supported, 1000baseT_Half);
273 phylink_set(pl->supported, 1000baseT_Full);
274 break;
275
276 case PHY_INTERFACE_MODE_1000BASEX:
277 phylink_set(pl->supported, 1000baseX_Full);
278 break;
279
280 case PHY_INTERFACE_MODE_2500BASEX:
281 phylink_set(pl->supported, 2500baseX_Full);
282 break;
283
284 case PHY_INTERFACE_MODE_10GKR:
285 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);
291 phylink_set(pl->supported, 1000baseX_Full);
292 phylink_set(pl->supported, 10000baseKR_Full);
293 phylink_set(pl->supported, 10000baseCR_Full);
294 phylink_set(pl->supported, 10000baseSR_Full);
295 phylink_set(pl->supported, 10000baseLR_Full);
296 phylink_set(pl->supported, 10000baseLRM_Full);
297 phylink_set(pl->supported, 10000baseER_Full);
298 break;
299
300 default:
301 netdev_err(pl->netdev,
302 "incorrect link mode %s for in-band status\n",
303 phy_modes(pl->link_config.interface));
304 return -EINVAL;
305 }
306
307 linkmode_copy(pl->link_config.advertising, pl->supported);
308
309 if (phylink_validate(pl, pl->supported, &pl->link_config)) {
310 netdev_err(pl->netdev,
311 "failed to validate link configuration for in-band status\n");
312 return -EINVAL;
313 }
314 }
315
316 return 0;
317}
318
319static void phylink_mac_config(struct phylink *pl,
320 const struct phylink_link_state *state)
321{
322 netdev_dbg(pl->netdev,
323 "%s: mode=%s/%s/%s/%s adv=%*pb pause=%02x link=%u an=%u\n",
324 __func__, phylink_an_mode_str(pl->link_an_mode),
325 phy_modes(state->interface),
326 phy_speed_to_str(state->speed),
327 phy_duplex_to_str(state->duplex),
328 __ETHTOOL_LINK_MODE_MASK_NBITS, state->advertising,
329 state->pause, state->link, state->an_enabled);
330
331 pl->ops->mac_config(pl->netdev, pl->link_an_mode, state);
332}
333
334static void phylink_mac_an_restart(struct phylink *pl)
335{
336 if (pl->link_config.an_enabled &&
337 phy_interface_mode_is_8023z(pl->link_config.interface))
338 pl->ops->mac_an_restart(pl->netdev);
339}
340
341static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *state)
342{
343 struct net_device *ndev = pl->netdev;
344
345 linkmode_copy(state->advertising, pl->link_config.advertising);
346 linkmode_zero(state->lp_advertising);
347 state->interface = pl->link_config.interface;
348 state->an_enabled = pl->link_config.an_enabled;
349 state->link = 1;
350
351 return pl->ops->mac_link_state(ndev, state);
352}
353
354/* The fixed state is... fixed except for the link state,
355 * which may be determined by a GPIO or a callback.
356 */
357static void phylink_get_fixed_state(struct phylink *pl, struct phylink_link_state *state)
358{
359 *state = pl->link_config;
360 if (pl->get_fixed_state)
361 pl->get_fixed_state(pl->netdev, state);
362 else if (pl->link_gpio)
363 state->link = !!gpiod_get_value(pl->link_gpio);
364}
365
366/* Flow control is resolved according to our and the link partners
367 * advertisements using the following drawn from the 802.3 specs:
368 * Local device Link partner
369 * Pause AsymDir Pause AsymDir Result
370 * 1 X 1 X TX+RX
371 * 0 1 1 1 RX
372 * 1 1 0 1 TX
373 */
374static void phylink_resolve_flow(struct phylink *pl,
375 struct phylink_link_state *state)
376{
377 int new_pause = 0;
378
379 if (pl->link_config.pause & MLO_PAUSE_AN) {
380 int pause = 0;
381
382 if (phylink_test(pl->link_config.advertising, Pause))
383 pause |= MLO_PAUSE_SYM;
384 if (phylink_test(pl->link_config.advertising, Asym_Pause))
385 pause |= MLO_PAUSE_ASYM;
386
387 pause &= state->pause;
388
389 if (pause & MLO_PAUSE_SYM)
390 new_pause = MLO_PAUSE_TX | MLO_PAUSE_RX;
391 else if (pause & MLO_PAUSE_ASYM)
392 new_pause = state->pause & MLO_PAUSE_SYM ?
393 MLO_PAUSE_RX : MLO_PAUSE_TX;
394 } else {
395 new_pause = pl->link_config.pause & MLO_PAUSE_TXRX_MASK;
396 }
397
398 state->pause &= ~MLO_PAUSE_TXRX_MASK;
399 state->pause |= new_pause;
400}
401
402static const char *phylink_pause_to_str(int pause)
403{
404 switch (pause & MLO_PAUSE_TXRX_MASK) {
405 case MLO_PAUSE_TX | MLO_PAUSE_RX:
406 return "rx/tx";
407 case MLO_PAUSE_TX:
408 return "tx";
409 case MLO_PAUSE_RX:
410 return "rx";
411 default:
412 return "off";
413 }
414}
415
416static void phylink_resolve(struct work_struct *w)
417{
418 struct phylink *pl = container_of(w, struct phylink, resolve);
419 struct phylink_link_state link_state;
420 struct net_device *ndev = pl->netdev;
421
422 mutex_lock(&pl->state_mutex);
423 if (pl->phylink_disable_state) {
424 pl->mac_link_dropped = false;
425 link_state.link = false;
426 } else if (pl->mac_link_dropped) {
427 link_state.link = false;
428 } else {
429 switch (pl->link_an_mode) {
430 case MLO_AN_PHY:
431 link_state = pl->phy_state;
432 phylink_resolve_flow(pl, &link_state);
433 phylink_mac_config(pl, &link_state);
434 break;
435
436 case MLO_AN_FIXED:
437 phylink_get_fixed_state(pl, &link_state);
438 phylink_mac_config(pl, &link_state);
439 break;
440
441 case MLO_AN_INBAND:
442 phylink_get_mac_state(pl, &link_state);
443 if (pl->phydev) {
444 bool changed = false;
445
446 link_state.link = link_state.link &&
447 pl->phy_state.link;
448
449 if (pl->phy_state.interface !=
450 link_state.interface) {
451 link_state.interface = pl->phy_state.interface;
452 changed = true;
453 }
454
455 /* Propagate the flow control from the PHY
456 * to the MAC. Also propagate the interface
457 * if changed.
458 */
459 if (pl->phy_state.link || changed) {
460 link_state.pause |= pl->phy_state.pause;
461 phylink_resolve_flow(pl, &link_state);
462
463 phylink_mac_config(pl, &link_state);
464 }
465 }
466 break;
467 }
468 }
469
470 if (link_state.link != netif_carrier_ok(ndev)) {
471 if (!link_state.link) {
472 netif_carrier_off(ndev);
473 pl->ops->mac_link_down(ndev, pl->link_an_mode,
474 pl->phy_state.interface);
475 netdev_info(ndev, "Link is Down\n");
476 } else {
477 pl->ops->mac_link_up(ndev, pl->link_an_mode,
478 pl->phy_state.interface,
479 pl->phydev);
480
481 netif_carrier_on(ndev);
482
483 netdev_info(ndev,
484 "Link is Up - %s/%s - flow control %s\n",
485 phy_speed_to_str(link_state.speed),
486 phy_duplex_to_str(link_state.duplex),
487 phylink_pause_to_str(link_state.pause));
488 }
489 }
490 if (!link_state.link && pl->mac_link_dropped) {
491 pl->mac_link_dropped = false;
492 queue_work(system_power_efficient_wq, &pl->resolve);
493 }
494 mutex_unlock(&pl->state_mutex);
495}
496
497static void phylink_run_resolve(struct phylink *pl)
498{
499 if (!pl->phylink_disable_state)
500 queue_work(system_power_efficient_wq, &pl->resolve);
501}
502
503static const struct sfp_upstream_ops sfp_phylink_ops;
504
505static int phylink_register_sfp(struct phylink *pl,
506 struct fwnode_handle *fwnode)
507{
508 struct fwnode_reference_args ref;
509 int ret;
510
511 if (!fwnode)
512 return 0;
513
514 ret = fwnode_property_get_reference_args(fwnode, "sfp", NULL,
515 0, 0, &ref);
516 if (ret < 0) {
517 if (ret == -ENOENT)
518 return 0;
519
520 netdev_err(pl->netdev, "unable to parse \"sfp\" node: %d\n",
521 ret);
522 return ret;
523 }
524
525 pl->sfp_bus = sfp_register_upstream(ref.fwnode, pl->netdev, pl,
526 &sfp_phylink_ops);
527 if (!pl->sfp_bus)
528 return -ENOMEM;
529
530 return 0;
531}
532
533/**
534 * phylink_create() - create a phylink instance
535 * @ndev: a pointer to the &struct net_device
536 * @fwnode: a pointer to a &struct fwnode_handle describing the network
537 * interface
538 * @iface: the desired link mode defined by &typedef phy_interface_t
539 * @ops: a pointer to a &struct phylink_mac_ops for the MAC.
540 *
541 * Create a new phylink instance, and parse the link parameters found in @np.
542 * This will parse in-band modes, fixed-link or SFP configuration.
543 *
544 * Returns a pointer to a &struct phylink, or an error-pointer value. Users
545 * must use IS_ERR() to check for errors from this function.
546 */
547struct phylink *phylink_create(struct net_device *ndev,
548 struct fwnode_handle *fwnode,
549 phy_interface_t iface,
550 const struct phylink_mac_ops *ops)
551{
552 struct phylink *pl;
553 int ret;
554
555 pl = kzalloc(sizeof(*pl), GFP_KERNEL);
556 if (!pl)
557 return ERR_PTR(-ENOMEM);
558
559 mutex_init(&pl->state_mutex);
560 INIT_WORK(&pl->resolve, phylink_resolve);
561 pl->netdev = ndev;
562 pl->phy_state.interface = iface;
563 pl->link_interface = iface;
564 if (iface == PHY_INTERFACE_MODE_MOCA)
565 pl->link_port = PORT_BNC;
566 else
567 pl->link_port = PORT_MII;
568 pl->link_config.interface = iface;
569 pl->link_config.pause = MLO_PAUSE_AN;
570 pl->link_config.speed = SPEED_UNKNOWN;
571 pl->link_config.duplex = DUPLEX_UNKNOWN;
572 pl->link_config.an_enabled = true;
573 pl->ops = ops;
574 __set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
575
576 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
577 linkmode_copy(pl->link_config.advertising, pl->supported);
578 phylink_validate(pl, pl->supported, &pl->link_config);
579
580 ret = phylink_parse_mode(pl, fwnode);
581 if (ret < 0) {
582 kfree(pl);
583 return ERR_PTR(ret);
584 }
585
586 if (pl->link_an_mode == MLO_AN_FIXED) {
587 ret = phylink_parse_fixedlink(pl, fwnode);
588 if (ret < 0) {
589 kfree(pl);
590 return ERR_PTR(ret);
591 }
592 }
593
594 ret = phylink_register_sfp(pl, fwnode);
595 if (ret < 0) {
596 kfree(pl);
597 return ERR_PTR(ret);
598 }
599
600 return pl;
601}
602EXPORT_SYMBOL_GPL(phylink_create);
603
604/**
605 * phylink_destroy() - cleanup and destroy the phylink instance
606 * @pl: a pointer to a &struct phylink returned from phylink_create()
607 *
608 * Destroy a phylink instance. Any PHY that has been attached must have been
609 * cleaned up via phylink_disconnect_phy() prior to calling this function.
610 */
611void phylink_destroy(struct phylink *pl)
612{
613 if (pl->sfp_bus)
614 sfp_unregister_upstream(pl->sfp_bus);
615
616 cancel_work_sync(&pl->resolve);
617 kfree(pl);
618}
619EXPORT_SYMBOL_GPL(phylink_destroy);
620
621static void phylink_phy_change(struct phy_device *phydev, bool up,
622 bool do_carrier)
623{
624 struct phylink *pl = phydev->phylink;
625
626 mutex_lock(&pl->state_mutex);
627 pl->phy_state.speed = phydev->speed;
628 pl->phy_state.duplex = phydev->duplex;
629 pl->phy_state.pause = MLO_PAUSE_NONE;
630 if (phydev->pause)
631 pl->phy_state.pause |= MLO_PAUSE_SYM;
632 if (phydev->asym_pause)
633 pl->phy_state.pause |= MLO_PAUSE_ASYM;
634 pl->phy_state.interface = phydev->interface;
635 pl->phy_state.link = up;
636 mutex_unlock(&pl->state_mutex);
637
638 phylink_run_resolve(pl);
639
640 netdev_dbg(pl->netdev, "phy link %s %s/%s/%s\n", up ? "up" : "down",
641 phy_modes(phydev->interface),
642 phy_speed_to_str(phydev->speed),
643 phy_duplex_to_str(phydev->duplex));
644}
645
646static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy)
647{
648 struct phylink_link_state config;
649 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
650 u32 advertising;
651 int ret;
652
653 memset(&config, 0, sizeof(config));
654 ethtool_convert_legacy_u32_to_link_mode(supported, phy->supported);
655 ethtool_convert_legacy_u32_to_link_mode(config.advertising,
656 phy->advertising);
657 config.interface = pl->link_config.interface;
658
659 /*
660 * This is the new way of dealing with flow control for PHYs,
661 * as described by Timur Tabi in commit 529ed1275263 ("net: phy:
662 * phy drivers should not set SUPPORTED_[Asym_]Pause") except
663 * using our validate call to the MAC, we rely upon the MAC
664 * clearing the bits from both supported and advertising fields.
665 */
666 if (phylink_test(supported, Pause))
667 phylink_set(config.advertising, Pause);
668 if (phylink_test(supported, Asym_Pause))
669 phylink_set(config.advertising, Asym_Pause);
670
671 ret = phylink_validate(pl, supported, &config);
672 if (ret)
673 return ret;
674
675 phy->phylink = pl;
676 phy->phy_link_change = phylink_phy_change;
677
678 netdev_info(pl->netdev,
679 "PHY [%s] driver [%s]\n", dev_name(&phy->mdio.dev),
680 phy->drv->name);
681
682 mutex_lock(&phy->lock);
683 mutex_lock(&pl->state_mutex);
684 pl->phydev = phy;
685 linkmode_copy(pl->supported, supported);
686 linkmode_copy(pl->link_config.advertising, config.advertising);
687
688 /* Restrict the phy advertisement according to the MAC support. */
689 ethtool_convert_link_mode_to_legacy_u32(&advertising, config.advertising);
690 phy->advertising = advertising;
691 mutex_unlock(&pl->state_mutex);
692 mutex_unlock(&phy->lock);
693
694 netdev_dbg(pl->netdev,
695 "phy: setting supported %*pb advertising 0x%08x\n",
696 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported,
697 phy->advertising);
698
699 phy_start_machine(phy);
700 if (phy->irq > 0)
701 phy_start_interrupts(phy);
702
703 return 0;
704}
705
706/**
707 * phylink_connect_phy() - connect a PHY to the phylink instance
708 * @pl: a pointer to a &struct phylink returned from phylink_create()
709 * @phy: a pointer to a &struct phy_device.
710 *
711 * Connect @phy to the phylink instance specified by @pl by calling
712 * phy_attach_direct(). Configure the @phy according to the MAC driver's
713 * capabilities, start the PHYLIB state machine and enable any interrupts
714 * that the PHY supports.
715 *
716 * This updates the phylink's ethtool supported and advertising link mode
717 * masks.
718 *
719 * Returns 0 on success or a negative errno.
720 */
721int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
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(pl->link_interface))))
728 return -EINVAL;
729
730 if (pl->phydev)
731 return -EBUSY;
732
733 /* Use PHY device/driver interface */
734 if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
735 pl->link_interface = phy->interface;
736 pl->link_config.interface = pl->link_interface;
737 }
738
739 ret = phy_attach_direct(pl->netdev, phy, 0, pl->link_interface);
740 if (ret)
741 return ret;
742
743 ret = phylink_bringup_phy(pl, phy);
744 if (ret)
745 phy_detach(phy);
746
747 return ret;
748}
749EXPORT_SYMBOL_GPL(phylink_connect_phy);
750
751/**
752 * phylink_of_phy_connect() - connect the PHY specified in the DT mode.
753 * @pl: a pointer to a &struct phylink returned from phylink_create()
754 * @dn: a pointer to a &struct device_node.
755 * @flags: PHY-specific flags to communicate to the PHY device driver
756 *
757 * Connect the phy specified in the device node @dn to the phylink instance
758 * specified by @pl. Actions specified in phylink_connect_phy() will be
759 * performed.
760 *
761 * Returns 0 on success or a negative errno.
762 */
763int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn,
764 u32 flags)
765{
766 struct device_node *phy_node;
767 struct phy_device *phy_dev;
768 int ret;
769
770 /* Fixed links and 802.3z are handled without needing a PHY */
771 if (pl->link_an_mode == MLO_AN_FIXED ||
772 (pl->link_an_mode == MLO_AN_INBAND &&
773 phy_interface_mode_is_8023z(pl->link_interface)))
774 return 0;
775
776 phy_node = of_parse_phandle(dn, "phy-handle", 0);
777 if (!phy_node)
778 phy_node = of_parse_phandle(dn, "phy", 0);
779 if (!phy_node)
780 phy_node = of_parse_phandle(dn, "phy-device", 0);
781
782 if (!phy_node) {
783 if (pl->link_an_mode == MLO_AN_PHY)
784 return -ENODEV;
785 return 0;
786 }
787
788 phy_dev = of_phy_attach(pl->netdev, phy_node, flags,
789 pl->link_interface);
790 /* We're done with the phy_node handle */
791 of_node_put(phy_node);
792
793 if (!phy_dev)
794 return -ENODEV;
795
796 ret = phylink_bringup_phy(pl, phy_dev);
797 if (ret)
798 phy_detach(phy_dev);
799
800 return ret;
801}
802EXPORT_SYMBOL_GPL(phylink_of_phy_connect);
803
804/**
805 * phylink_disconnect_phy() - disconnect any PHY attached to the phylink
806 * instance.
807 * @pl: a pointer to a &struct phylink returned from phylink_create()
808 *
809 * Disconnect any current PHY from the phylink instance described by @pl.
810 */
811void phylink_disconnect_phy(struct phylink *pl)
812{
813 struct phy_device *phy;
814
815 ASSERT_RTNL();
816
817 phy = pl->phydev;
818 if (phy) {
819 mutex_lock(&phy->lock);
820 mutex_lock(&pl->state_mutex);
821 pl->phydev = NULL;
822 mutex_unlock(&pl->state_mutex);
823 mutex_unlock(&phy->lock);
824 flush_work(&pl->resolve);
825
826 phy_disconnect(phy);
827 }
828}
829EXPORT_SYMBOL_GPL(phylink_disconnect_phy);
830
831/**
832 * phylink_fixed_state_cb() - allow setting a fixed link callback
833 * @pl: a pointer to a &struct phylink returned from phylink_create()
834 * @cb: callback to execute to determine the fixed link state.
835 *
836 * The MAC driver should call this driver when the state of its link
837 * can be determined through e.g: an out of band MMIO register.
838 */
839int phylink_fixed_state_cb(struct phylink *pl,
840 void (*cb)(struct net_device *dev,
841 struct phylink_link_state *state))
842{
843 /* It does not make sense to let the link be overriden unless we use
844 * MLO_AN_FIXED
845 */
846 if (pl->link_an_mode != MLO_AN_FIXED)
847 return -EINVAL;
848
849 mutex_lock(&pl->state_mutex);
850 pl->get_fixed_state = cb;
851 mutex_unlock(&pl->state_mutex);
852
853 return 0;
854}
855EXPORT_SYMBOL_GPL(phylink_fixed_state_cb);
856
857/**
858 * phylink_mac_change() - notify phylink of a change in MAC state
859 * @pl: a pointer to a &struct phylink returned from phylink_create()
860 * @up: indicates whether the link is currently up.
861 *
862 * The MAC driver should call this driver when the state of its link
863 * changes (eg, link failure, new negotiation results, etc.)
864 */
865void phylink_mac_change(struct phylink *pl, bool up)
866{
867 if (!up)
868 pl->mac_link_dropped = true;
869 phylink_run_resolve(pl);
870 netdev_dbg(pl->netdev, "mac link %s\n", up ? "up" : "down");
871}
872EXPORT_SYMBOL_GPL(phylink_mac_change);
873
874/**
875 * phylink_start() - start a phylink instance
876 * @pl: a pointer to a &struct phylink returned from phylink_create()
877 *
878 * Start the phylink instance specified by @pl, configuring the MAC for the
879 * desired link mode(s) and negotiation style. This should be called from the
880 * network device driver's &struct net_device_ops ndo_open() method.
881 */
882void phylink_start(struct phylink *pl)
883{
884 ASSERT_RTNL();
885
886 netdev_info(pl->netdev, "configuring for %s/%s link mode\n",
887 phylink_an_mode_str(pl->link_an_mode),
888 phy_modes(pl->link_config.interface));
889
890 /* Apply the link configuration to the MAC when starting. This allows
891 * a fixed-link to start with the correct parameters, and also
892 * ensures that we set the appropriate advertisement for Serdes links.
893 */
894 phylink_resolve_flow(pl, &pl->link_config);
895 phylink_mac_config(pl, &pl->link_config);
896
897 /* Restart autonegotiation if using 802.3z to ensure that the link
898 * parameters are properly negotiated. This is necessary for DSA
899 * switches using 802.3z negotiation to ensure they see our modes.
900 */
901 phylink_mac_an_restart(pl);
902
903 clear_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
904 phylink_run_resolve(pl);
905
906 if (pl->sfp_bus)
907 sfp_upstream_start(pl->sfp_bus);
908 if (pl->phydev)
909 phy_start(pl->phydev);
910}
911EXPORT_SYMBOL_GPL(phylink_start);
912
913/**
914 * phylink_stop() - stop a phylink instance
915 * @pl: a pointer to a &struct phylink returned from phylink_create()
916 *
917 * Stop the phylink instance specified by @pl. This should be called from the
918 * network device driver's &struct net_device_ops ndo_stop() method. The
919 * network device's carrier state should not be changed prior to calling this
920 * function.
921 */
922void phylink_stop(struct phylink *pl)
923{
924 ASSERT_RTNL();
925
926 if (pl->phydev)
927 phy_stop(pl->phydev);
928 if (pl->sfp_bus)
929 sfp_upstream_stop(pl->sfp_bus);
930
931 set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
932 queue_work(system_power_efficient_wq, &pl->resolve);
933 flush_work(&pl->resolve);
934}
935EXPORT_SYMBOL_GPL(phylink_stop);
936
937/**
938 * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY
939 * @pl: a pointer to a &struct phylink returned from phylink_create()
940 * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters
941 *
942 * Read the wake on lan parameters from the PHY attached to the phylink
943 * instance specified by @pl. If no PHY is currently attached, report no
944 * support for wake on lan.
945 */
946void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
947{
948 ASSERT_RTNL();
949
950 wol->supported = 0;
951 wol->wolopts = 0;
952
953 if (pl->phydev)
954 phy_ethtool_get_wol(pl->phydev, wol);
955}
956EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol);
957
958/**
959 * phylink_ethtool_set_wol() - set wake on lan parameters
960 * @pl: a pointer to a &struct phylink returned from phylink_create()
961 * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters
962 *
963 * Set the wake on lan parameters for the PHY attached to the phylink
964 * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP
965 * error.
966 *
967 * Returns zero on success or negative errno code.
968 */
969int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
970{
971 int ret = -EOPNOTSUPP;
972
973 ASSERT_RTNL();
974
975 if (pl->phydev)
976 ret = phy_ethtool_set_wol(pl->phydev, wol);
977
978 return ret;
979}
980EXPORT_SYMBOL_GPL(phylink_ethtool_set_wol);
981
982static void phylink_merge_link_mode(unsigned long *dst, const unsigned long *b)
983{
984 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask);
985
986 linkmode_zero(mask);
987 phylink_set_port_modes(mask);
988
989 linkmode_and(dst, dst, mask);
990 linkmode_or(dst, dst, b);
991}
992
993static void phylink_get_ksettings(const struct phylink_link_state *state,
994 struct ethtool_link_ksettings *kset)
995{
996 phylink_merge_link_mode(kset->link_modes.advertising, state->advertising);
997 linkmode_copy(kset->link_modes.lp_advertising, state->lp_advertising);
998 kset->base.speed = state->speed;
999 kset->base.duplex = state->duplex;
1000 kset->base.autoneg = state->an_enabled ? AUTONEG_ENABLE :
1001 AUTONEG_DISABLE;
1002}
1003
1004/**
1005 * phylink_ethtool_ksettings_get() - get the current link settings
1006 * @pl: a pointer to a &struct phylink returned from phylink_create()
1007 * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings
1008 *
1009 * Read the current link settings for the phylink instance specified by @pl.
1010 * This will be the link settings read from the MAC, PHY or fixed link
1011 * settings depending on the current negotiation mode.
1012 */
1013int phylink_ethtool_ksettings_get(struct phylink *pl,
1014 struct ethtool_link_ksettings *kset)
1015{
1016 struct phylink_link_state link_state;
1017
1018 ASSERT_RTNL();
1019
1020 if (pl->phydev) {
1021 phy_ethtool_ksettings_get(pl->phydev, kset);
1022 } else {
1023 kset->base.port = pl->link_port;
1024 }
1025
1026 linkmode_copy(kset->link_modes.supported, pl->supported);
1027
1028 switch (pl->link_an_mode) {
1029 case MLO_AN_FIXED:
1030 /* We are using fixed settings. Report these as the
1031 * current link settings - and note that these also
1032 * represent the supported speeds/duplex/pause modes.
1033 */
1034 phylink_get_fixed_state(pl, &link_state);
1035 phylink_get_ksettings(&link_state, kset);
1036 break;
1037
1038 case MLO_AN_INBAND:
1039 /* If there is a phy attached, then use the reported
1040 * settings from the phy with no modification.
1041 */
1042 if (pl->phydev)
1043 break;
1044
1045 phylink_get_mac_state(pl, &link_state);
1046
1047 /* The MAC is reporting the link results from its own PCS
1048 * layer via in-band status. Report these as the current
1049 * link settings.
1050 */
1051 phylink_get_ksettings(&link_state, kset);
1052 break;
1053 }
1054
1055 return 0;
1056}
1057EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get);
1058
1059/**
1060 * phylink_ethtool_ksettings_set() - set the link settings
1061 * @pl: a pointer to a &struct phylink returned from phylink_create()
1062 * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes
1063 */
1064int phylink_ethtool_ksettings_set(struct phylink *pl,
1065 const struct ethtool_link_ksettings *kset)
1066{
1067 struct ethtool_link_ksettings our_kset;
1068 struct phylink_link_state config;
1069 int ret;
1070
1071 ASSERT_RTNL();
1072
1073 if (kset->base.autoneg != AUTONEG_DISABLE &&
1074 kset->base.autoneg != AUTONEG_ENABLE)
1075 return -EINVAL;
1076
1077 config = pl->link_config;
1078
1079 /* Mask out unsupported advertisements */
1080 linkmode_and(config.advertising, kset->link_modes.advertising,
1081 pl->supported);
1082
1083 /* FIXME: should we reject autoneg if phy/mac does not support it? */
1084 if (kset->base.autoneg == AUTONEG_DISABLE) {
1085 const struct phy_setting *s;
1086
1087 /* Autonegotiation disabled, select a suitable speed and
1088 * duplex.
1089 */
1090 s = phy_lookup_setting(kset->base.speed, kset->base.duplex,
1091 pl->supported,
1092 __ETHTOOL_LINK_MODE_MASK_NBITS, false);
1093 if (!s)
1094 return -EINVAL;
1095
1096 /* If we have a fixed link (as specified by firmware), refuse
1097 * to change link parameters.
1098 */
1099 if (pl->link_an_mode == MLO_AN_FIXED &&
1100 (s->speed != pl->link_config.speed ||
1101 s->duplex != pl->link_config.duplex))
1102 return -EINVAL;
1103
1104 config.speed = s->speed;
1105 config.duplex = s->duplex;
1106 config.an_enabled = false;
1107
1108 __clear_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1109 } else {
1110 /* If we have a fixed link, refuse to enable autonegotiation */
1111 if (pl->link_an_mode == MLO_AN_FIXED)
1112 return -EINVAL;
1113
1114 config.speed = SPEED_UNKNOWN;
1115 config.duplex = DUPLEX_UNKNOWN;
1116 config.an_enabled = true;
1117
1118 __set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1119 }
1120
1121 if (phylink_validate(pl, pl->supported, &config))
1122 return -EINVAL;
1123
1124 /* If autonegotiation is enabled, we must have an advertisement */
1125 if (config.an_enabled && phylink_is_empty_linkmode(config.advertising))
1126 return -EINVAL;
1127
1128 our_kset = *kset;
1129 linkmode_copy(our_kset.link_modes.advertising, config.advertising);
1130 our_kset.base.speed = config.speed;
1131 our_kset.base.duplex = config.duplex;
1132
1133 /* If we have a PHY, configure the phy */
1134 if (pl->phydev) {
1135 ret = phy_ethtool_ksettings_set(pl->phydev, &our_kset);
1136 if (ret)
1137 return ret;
1138 }
1139
1140 mutex_lock(&pl->state_mutex);
1141 /* Configure the MAC to match the new settings */
1142 linkmode_copy(pl->link_config.advertising, our_kset.link_modes.advertising);
1143 pl->link_config.interface = config.interface;
1144 pl->link_config.speed = our_kset.base.speed;
1145 pl->link_config.duplex = our_kset.base.duplex;
1146 pl->link_config.an_enabled = our_kset.base.autoneg != AUTONEG_DISABLE;
1147
1148 if (!test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) {
1149 phylink_mac_config(pl, &pl->link_config);
1150 phylink_mac_an_restart(pl);
1151 }
1152 mutex_unlock(&pl->state_mutex);
1153
1154 return 0;
1155}
1156EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set);
1157
1158/**
1159 * phylink_ethtool_nway_reset() - restart negotiation
1160 * @pl: a pointer to a &struct phylink returned from phylink_create()
1161 *
1162 * Restart negotiation for the phylink instance specified by @pl. This will
1163 * cause any attached phy to restart negotiation with the link partner, and
1164 * if the MAC is in a BaseX mode, the MAC will also be requested to restart
1165 * negotiation.
1166 *
1167 * Returns zero on success, or negative error code.
1168 */
1169int phylink_ethtool_nway_reset(struct phylink *pl)
1170{
1171 int ret = 0;
1172
1173 ASSERT_RTNL();
1174
1175 if (pl->phydev)
1176 ret = phy_restart_aneg(pl->phydev);
1177 phylink_mac_an_restart(pl);
1178
1179 return ret;
1180}
1181EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset);
1182
1183/**
1184 * phylink_ethtool_get_pauseparam() - get the current pause parameters
1185 * @pl: a pointer to a &struct phylink returned from phylink_create()
1186 * @pause: a pointer to a &struct ethtool_pauseparam
1187 */
1188void phylink_ethtool_get_pauseparam(struct phylink *pl,
1189 struct ethtool_pauseparam *pause)
1190{
1191 ASSERT_RTNL();
1192
1193 pause->autoneg = !!(pl->link_config.pause & MLO_PAUSE_AN);
1194 pause->rx_pause = !!(pl->link_config.pause & MLO_PAUSE_RX);
1195 pause->tx_pause = !!(pl->link_config.pause & MLO_PAUSE_TX);
1196}
1197EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam);
1198
1199/**
1200 * phylink_ethtool_set_pauseparam() - set the current pause parameters
1201 * @pl: a pointer to a &struct phylink returned from phylink_create()
1202 * @pause: a pointer to a &struct ethtool_pauseparam
1203 */
1204int phylink_ethtool_set_pauseparam(struct phylink *pl,
1205 struct ethtool_pauseparam *pause)
1206{
1207 struct phylink_link_state *config = &pl->link_config;
1208
1209 ASSERT_RTNL();
1210
1211 if (!phylink_test(pl->supported, Pause) &&
1212 !phylink_test(pl->supported, Asym_Pause))
1213 return -EOPNOTSUPP;
1214
1215 if (!phylink_test(pl->supported, Asym_Pause) &&
1216 !pause->autoneg && pause->rx_pause != pause->tx_pause)
1217 return -EINVAL;
1218
1219 config->pause &= ~(MLO_PAUSE_AN | MLO_PAUSE_TXRX_MASK);
1220
1221 if (pause->autoneg)
1222 config->pause |= MLO_PAUSE_AN;
1223 if (pause->rx_pause)
1224 config->pause |= MLO_PAUSE_RX;
1225 if (pause->tx_pause)
1226 config->pause |= MLO_PAUSE_TX;
1227
1228 if (!test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) {
1229 switch (pl->link_an_mode) {
1230 case MLO_AN_PHY:
1231 /* Silently mark the carrier down, and then trigger a resolve */
1232 netif_carrier_off(pl->netdev);
1233 phylink_run_resolve(pl);
1234 break;
1235
1236 case MLO_AN_FIXED:
1237 /* Should we allow fixed links to change against the config? */
1238 phylink_resolve_flow(pl, config);
1239 phylink_mac_config(pl, config);
1240 break;
1241
1242 case MLO_AN_INBAND:
1243 phylink_mac_config(pl, config);
1244 phylink_mac_an_restart(pl);
1245 break;
1246 }
1247 }
1248
1249 return 0;
1250}
1251EXPORT_SYMBOL_GPL(phylink_ethtool_set_pauseparam);
1252
1253/**
1254 * phylink_ethtool_get_eee_err() - read the energy efficient ethernet error
1255 * counter
1256 * @pl: a pointer to a &struct phylink returned from phylink_create().
1257 *
1258 * Read the Energy Efficient Ethernet error counter from the PHY associated
1259 * with the phylink instance specified by @pl.
1260 *
1261 * Returns positive error counter value, or negative error code.
1262 */
1263int phylink_get_eee_err(struct phylink *pl)
1264{
1265 int ret = 0;
1266
1267 ASSERT_RTNL();
1268
1269 if (pl->phydev)
1270 ret = phy_get_eee_err(pl->phydev);
1271
1272 return ret;
1273}
1274EXPORT_SYMBOL_GPL(phylink_get_eee_err);
1275
1276/**
1277 * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters
1278 * @pl: a pointer to a &struct phylink returned from phylink_create()
1279 * @eee: a pointer to a &struct ethtool_eee for the read parameters
1280 */
1281int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
1282{
1283 int ret = -EOPNOTSUPP;
1284
1285 ASSERT_RTNL();
1286
1287 if (pl->phydev)
1288 ret = phy_ethtool_get_eee(pl->phydev, eee);
1289
1290 return ret;
1291}
1292EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee);
1293
1294/**
1295 * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters
1296 * @pl: a pointer to a &struct phylink returned from phylink_create()
1297 * @eee: a pointer to a &struct ethtool_eee for the desired parameters
1298 */
1299int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee)
1300{
1301 int ret = -EOPNOTSUPP;
1302
1303 ASSERT_RTNL();
1304
1305 if (pl->phydev)
1306 ret = phy_ethtool_set_eee(pl->phydev, eee);
1307
1308 return ret;
1309}
1310EXPORT_SYMBOL_GPL(phylink_ethtool_set_eee);
1311
1312/* This emulates MII registers for a fixed-mode phy operating as per the
1313 * passed in state. "aneg" defines if we report negotiation is possible.
1314 *
1315 * FIXME: should deal with negotiation state too.
1316 */
1317static int phylink_mii_emul_read(struct net_device *ndev, unsigned int reg,
1318 struct phylink_link_state *state, bool aneg)
1319{
1320 struct fixed_phy_status fs;
1321 int val;
1322
1323 fs.link = state->link;
1324 fs.speed = state->speed;
1325 fs.duplex = state->duplex;
1326 fs.pause = state->pause & MLO_PAUSE_SYM;
1327 fs.asym_pause = state->pause & MLO_PAUSE_ASYM;
1328
1329 val = swphy_read_reg(reg, &fs);
1330 if (reg == MII_BMSR) {
1331 if (!state->an_complete)
1332 val &= ~BMSR_ANEGCOMPLETE;
1333 if (!aneg)
1334 val &= ~BMSR_ANEGCAPABLE;
1335 }
1336 return val;
1337}
1338
1339static int phylink_phy_read(struct phylink *pl, unsigned int phy_id,
1340 unsigned int reg)
1341{
1342 struct phy_device *phydev = pl->phydev;
1343 int prtad, devad;
1344
1345 if (mdio_phy_id_is_c45(phy_id)) {
1346 prtad = mdio_phy_id_prtad(phy_id);
1347 devad = mdio_phy_id_devad(phy_id);
1348 devad = MII_ADDR_C45 | devad << 16 | reg;
1349 } else if (phydev->is_c45) {
1350 switch (reg) {
1351 case MII_BMCR:
1352 case MII_BMSR:
1353 case MII_PHYSID1:
1354 case MII_PHYSID2:
1355 devad = __ffs(phydev->c45_ids.devices_in_package);
1356 break;
1357 case MII_ADVERTISE:
1358 case MII_LPA:
1359 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1360 return -EINVAL;
1361 devad = MDIO_MMD_AN;
1362 if (reg == MII_ADVERTISE)
1363 reg = MDIO_AN_ADVERTISE;
1364 else
1365 reg = MDIO_AN_LPA;
1366 break;
1367 default:
1368 return -EINVAL;
1369 }
1370 prtad = phy_id;
1371 devad = MII_ADDR_C45 | devad << 16 | reg;
1372 } else {
1373 prtad = phy_id;
1374 devad = reg;
1375 }
1376 return mdiobus_read(pl->phydev->mdio.bus, prtad, devad);
1377}
1378
1379static int phylink_phy_write(struct phylink *pl, unsigned int phy_id,
1380 unsigned int reg, unsigned int val)
1381{
1382 struct phy_device *phydev = pl->phydev;
1383 int prtad, devad;
1384
1385 if (mdio_phy_id_is_c45(phy_id)) {
1386 prtad = mdio_phy_id_prtad(phy_id);
1387 devad = mdio_phy_id_devad(phy_id);
1388 devad = MII_ADDR_C45 | devad << 16 | reg;
1389 } else if (phydev->is_c45) {
1390 switch (reg) {
1391 case MII_BMCR:
1392 case MII_BMSR:
1393 case MII_PHYSID1:
1394 case MII_PHYSID2:
1395 devad = __ffs(phydev->c45_ids.devices_in_package);
1396 break;
1397 case MII_ADVERTISE:
1398 case MII_LPA:
1399 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1400 return -EINVAL;
1401 devad = MDIO_MMD_AN;
1402 if (reg == MII_ADVERTISE)
1403 reg = MDIO_AN_ADVERTISE;
1404 else
1405 reg = MDIO_AN_LPA;
1406 break;
1407 default:
1408 return -EINVAL;
1409 }
1410 prtad = phy_id;
1411 devad = MII_ADDR_C45 | devad << 16 | reg;
1412 } else {
1413 prtad = phy_id;
1414 devad = reg;
1415 }
1416
1417 return mdiobus_write(phydev->mdio.bus, prtad, devad, val);
1418}
1419
1420static int phylink_mii_read(struct phylink *pl, unsigned int phy_id,
1421 unsigned int reg)
1422{
1423 struct phylink_link_state state;
1424 int val = 0xffff;
1425
1426 switch (pl->link_an_mode) {
1427 case MLO_AN_FIXED:
1428 if (phy_id == 0) {
1429 phylink_get_fixed_state(pl, &state);
1430 val = phylink_mii_emul_read(pl->netdev, reg, &state,
1431 true);
1432 }
1433 break;
1434
1435 case MLO_AN_PHY:
1436 return -EOPNOTSUPP;
1437
1438 case MLO_AN_INBAND:
1439 if (phy_id == 0) {
1440 val = phylink_get_mac_state(pl, &state);
1441 if (val < 0)
1442 return val;
1443
1444 val = phylink_mii_emul_read(pl->netdev, reg, &state,
1445 true);
1446 }
1447 break;
1448 }
1449
1450 return val & 0xffff;
1451}
1452
1453static int phylink_mii_write(struct phylink *pl, unsigned int phy_id,
1454 unsigned int reg, unsigned int val)
1455{
1456 switch (pl->link_an_mode) {
1457 case MLO_AN_FIXED:
1458 break;
1459
1460 case MLO_AN_PHY:
1461 return -EOPNOTSUPP;
1462
1463 case MLO_AN_INBAND:
1464 break;
1465 }
1466
1467 return 0;
1468}
1469
1470/**
1471 * phylink_mii_ioctl() - generic mii ioctl interface
1472 * @pl: a pointer to a &struct phylink returned from phylink_create()
1473 * @ifr: a pointer to a &struct ifreq for socket ioctls
1474 * @cmd: ioctl cmd to execute
1475 *
1476 * Perform the specified MII ioctl on the PHY attached to the phylink instance
1477 * specified by @pl. If no PHY is attached, emulate the presence of the PHY.
1478 *
1479 * Returns: zero on success or negative error code.
1480 *
1481 * %SIOCGMIIPHY:
1482 * read register from the current PHY.
1483 * %SIOCGMIIREG:
1484 * read register from the specified PHY.
1485 * %SIOCSMIIREG:
1486 * set a register on the specified PHY.
1487 */
1488int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
1489{
1490 struct mii_ioctl_data *mii = if_mii(ifr);
1491 int ret;
1492
1493 ASSERT_RTNL();
1494
1495 if (pl->phydev) {
1496 /* PHYs only exist for MLO_AN_PHY and SGMII */
1497 switch (cmd) {
1498 case SIOCGMIIPHY:
1499 mii->phy_id = pl->phydev->mdio.addr;
1500 /* fall through */
1501
1502 case SIOCGMIIREG:
1503 ret = phylink_phy_read(pl, mii->phy_id, mii->reg_num);
1504 if (ret >= 0) {
1505 mii->val_out = ret;
1506 ret = 0;
1507 }
1508 break;
1509
1510 case SIOCSMIIREG:
1511 ret = phylink_phy_write(pl, mii->phy_id, mii->reg_num,
1512 mii->val_in);
1513 break;
1514
1515 default:
1516 ret = phy_mii_ioctl(pl->phydev, ifr, cmd);
1517 break;
1518 }
1519 } else {
1520 switch (cmd) {
1521 case SIOCGMIIPHY:
1522 mii->phy_id = 0;
1523 /* fall through */
1524
1525 case SIOCGMIIREG:
1526 ret = phylink_mii_read(pl, mii->phy_id, mii->reg_num);
1527 if (ret >= 0) {
1528 mii->val_out = ret;
1529 ret = 0;
1530 }
1531 break;
1532
1533 case SIOCSMIIREG:
1534 ret = phylink_mii_write(pl, mii->phy_id, mii->reg_num,
1535 mii->val_in);
1536 break;
1537
1538 default:
1539 ret = -EOPNOTSUPP;
1540 break;
1541 }
1542 }
1543
1544 return ret;
1545}
1546EXPORT_SYMBOL_GPL(phylink_mii_ioctl);
1547
1548static int phylink_sfp_module_insert(void *upstream,
1549 const struct sfp_eeprom_id *id)
1550{
1551 struct phylink *pl = upstream;
1552 __ETHTOOL_DECLARE_LINK_MODE_MASK(support) = { 0, };
1553 struct phylink_link_state config;
1554 phy_interface_t iface;
1555 int ret = 0;
1556 bool changed;
1557 u8 port;
1558
1559 ASSERT_RTNL();
1560
1561 sfp_parse_support(pl->sfp_bus, id, support);
1562 port = sfp_parse_port(pl->sfp_bus, id, support);
1563
1564 memset(&config, 0, sizeof(config));
1565 linkmode_copy(config.advertising, support);
1566 config.interface = PHY_INTERFACE_MODE_NA;
1567 config.speed = SPEED_UNKNOWN;
1568 config.duplex = DUPLEX_UNKNOWN;
1569 config.pause = MLO_PAUSE_AN;
1570 config.an_enabled = pl->link_config.an_enabled;
1571
1572 /* Ignore errors if we're expecting a PHY to attach later */
1573 ret = phylink_validate(pl, support, &config);
1574 if (ret) {
1575 netdev_err(pl->netdev, "validation with support %*pb failed: %d\n",
1576 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1577 return ret;
1578 }
1579
1580 iface = sfp_select_interface(pl->sfp_bus, id, config.advertising);
1581 if (iface == PHY_INTERFACE_MODE_NA) {
1582 netdev_err(pl->netdev,
1583 "selection of interface failed, advertisement %*pb\n",
1584 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising);
1585 return -EINVAL;
1586 }
1587
1588 config.interface = iface;
1589 ret = phylink_validate(pl, support, &config);
1590 if (ret) {
1591 netdev_err(pl->netdev, "validation of %s/%s with support %*pb failed: %d\n",
1592 phylink_an_mode_str(MLO_AN_INBAND),
1593 phy_modes(config.interface),
1594 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1595 return ret;
1596 }
1597
1598 netdev_dbg(pl->netdev, "requesting link mode %s/%s with support %*pb\n",
1599 phylink_an_mode_str(MLO_AN_INBAND),
1600 phy_modes(config.interface),
1601 __ETHTOOL_LINK_MODE_MASK_NBITS, support);
1602
1603 if (phy_interface_mode_is_8023z(iface) && pl->phydev)
1604 return -EINVAL;
1605
1606 changed = !bitmap_equal(pl->supported, support,
1607 __ETHTOOL_LINK_MODE_MASK_NBITS);
1608 if (changed) {
1609 linkmode_copy(pl->supported, support);
1610 linkmode_copy(pl->link_config.advertising, config.advertising);
1611 }
1612
1613 if (pl->link_an_mode != MLO_AN_INBAND ||
1614 pl->link_config.interface != config.interface) {
1615 pl->link_config.interface = config.interface;
1616 pl->link_an_mode = MLO_AN_INBAND;
1617
1618 changed = true;
1619
1620 netdev_info(pl->netdev, "switched to %s/%s link mode\n",
1621 phylink_an_mode_str(MLO_AN_INBAND),
1622 phy_modes(config.interface));
1623 }
1624
1625 pl->link_port = port;
1626
1627 if (changed && !test_bit(PHYLINK_DISABLE_STOPPED,
1628 &pl->phylink_disable_state))
1629 phylink_mac_config(pl, &pl->link_config);
1630
1631 return ret;
1632}
1633
1634static void phylink_sfp_link_down(void *upstream)
1635{
1636 struct phylink *pl = upstream;
1637
1638 ASSERT_RTNL();
1639
1640 set_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
1641 queue_work(system_power_efficient_wq, &pl->resolve);
1642 flush_work(&pl->resolve);
1643}
1644
1645static void phylink_sfp_link_up(void *upstream)
1646{
1647 struct phylink *pl = upstream;
1648
1649 ASSERT_RTNL();
1650
1651 clear_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
1652 phylink_run_resolve(pl);
1653}
1654
1655static int phylink_sfp_connect_phy(void *upstream, struct phy_device *phy)
1656{
1657 return phylink_connect_phy(upstream, phy);
1658}
1659
1660static void phylink_sfp_disconnect_phy(void *upstream)
1661{
1662 phylink_disconnect_phy(upstream);
1663}
1664
1665static const struct sfp_upstream_ops sfp_phylink_ops = {
1666 .module_insert = phylink_sfp_module_insert,
1667 .link_up = phylink_sfp_link_up,
1668 .link_down = phylink_sfp_link_down,
1669 .connect_phy = phylink_sfp_connect_phy,
1670 .disconnect_phy = phylink_sfp_disconnect_phy,
1671};
1672
1673MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0
2/*
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
7 */
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>
19#include <linux/timer.h>
20#include <linux/workqueue.h>
21
22#include "sfp.h"
23#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,
34 PHYLINK_DISABLE_LINK,
35};
36
37/**
38 * struct phylink - internal data type for phylink
39 */
40struct phylink {
41 /* private: */
42 struct net_device *netdev;
43 const struct phylink_mac_ops *ops;
44 struct phylink_config *config;
45 struct device *dev;
46 unsigned int old_link_state:1;
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
58 /* The current settings */
59 phy_interface_t cur_interface;
60
61 struct gpio_desc *link_gpio;
62 unsigned int link_irq;
63 struct timer_list link_poll;
64 void (*get_fixed_state)(struct net_device *dev,
65 struct phylink_link_state *s);
66
67 struct mutex state_mutex;
68 struct phylink_link_state phy_state;
69 struct work_struct resolve;
70
71 bool mac_link_dropped;
72
73 struct sfp_bus *sfp_bus;
74};
75
76#define phylink_printk(level, pl, fmt, ...) \
77 do { \
78 if ((pl)->config->type == PHYLINK_NETDEV) \
79 netdev_printk(level, (pl)->netdev, fmt, ##__VA_ARGS__); \
80 else if ((pl)->config->type == PHYLINK_DEV) \
81 dev_printk(level, (pl)->dev, fmt, ##__VA_ARGS__); \
82 } while (0)
83
84#define phylink_err(pl, fmt, ...) \
85 phylink_printk(KERN_ERR, pl, fmt, ##__VA_ARGS__)
86#define phylink_warn(pl, fmt, ...) \
87 phylink_printk(KERN_WARNING, pl, fmt, ##__VA_ARGS__)
88#define phylink_info(pl, fmt, ...) \
89 phylink_printk(KERN_INFO, pl, fmt, ##__VA_ARGS__)
90#if defined(CONFIG_DYNAMIC_DEBUG)
91#define phylink_dbg(pl, fmt, ...) \
92do { \
93 if ((pl)->config->type == PHYLINK_NETDEV) \
94 netdev_dbg((pl)->netdev, fmt, ##__VA_ARGS__); \
95 else if ((pl)->config->type == PHYLINK_DEV) \
96 dev_dbg((pl)->dev, fmt, ##__VA_ARGS__); \
97} while (0)
98#elif defined(DEBUG)
99#define phylink_dbg(pl, fmt, ...) \
100 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__)
101#else
102#define phylink_dbg(pl, fmt, ...) \
103({ \
104 if (0) \
105 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__); \
106})
107#endif
108
109/**
110 * phylink_set_port_modes() - set the port type modes in the ethtool mask
111 * @mask: ethtool link mode mask
112 *
113 * Sets all the port type modes in the ethtool mask. MAC drivers should
114 * use this in their 'validate' callback.
115 */
116void phylink_set_port_modes(unsigned long *mask)
117{
118 phylink_set(mask, TP);
119 phylink_set(mask, AUI);
120 phylink_set(mask, MII);
121 phylink_set(mask, FIBRE);
122 phylink_set(mask, BNC);
123 phylink_set(mask, Backplane);
124}
125EXPORT_SYMBOL_GPL(phylink_set_port_modes);
126
127static int phylink_is_empty_linkmode(const unsigned long *linkmode)
128{
129 __ETHTOOL_DECLARE_LINK_MODE_MASK(tmp) = { 0, };
130
131 phylink_set_port_modes(tmp);
132 phylink_set(tmp, Autoneg);
133 phylink_set(tmp, Pause);
134 phylink_set(tmp, Asym_Pause);
135
136 bitmap_andnot(tmp, linkmode, tmp, __ETHTOOL_LINK_MODE_MASK_NBITS);
137
138 return linkmode_empty(tmp);
139}
140
141static const char *phylink_an_mode_str(unsigned int mode)
142{
143 static const char *modestr[] = {
144 [MLO_AN_PHY] = "phy",
145 [MLO_AN_FIXED] = "fixed",
146 [MLO_AN_INBAND] = "inband",
147 };
148
149 return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown";
150}
151
152static int phylink_validate(struct phylink *pl, unsigned long *supported,
153 struct phylink_link_state *state)
154{
155 pl->ops->validate(pl->config, supported, state);
156
157 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0;
158}
159
160static int phylink_parse_fixedlink(struct phylink *pl,
161 struct fwnode_handle *fwnode)
162{
163 struct fwnode_handle *fixed_node;
164 const struct phy_setting *s;
165 struct gpio_desc *desc;
166 u32 speed;
167 int ret;
168
169 fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link");
170 if (fixed_node) {
171 ret = fwnode_property_read_u32(fixed_node, "speed", &speed);
172
173 pl->link_config.speed = speed;
174 pl->link_config.duplex = DUPLEX_HALF;
175
176 if (fwnode_property_read_bool(fixed_node, "full-duplex"))
177 pl->link_config.duplex = DUPLEX_FULL;
178
179 /* We treat the "pause" and "asym-pause" terminology as
180 * defining the link partner's ability. */
181 if (fwnode_property_read_bool(fixed_node, "pause"))
182 pl->link_config.pause |= MLO_PAUSE_SYM;
183 if (fwnode_property_read_bool(fixed_node, "asym-pause"))
184 pl->link_config.pause |= MLO_PAUSE_ASYM;
185
186 if (ret == 0) {
187 desc = fwnode_get_named_gpiod(fixed_node, "link-gpios",
188 0, GPIOD_IN, "?");
189
190 if (!IS_ERR(desc))
191 pl->link_gpio = desc;
192 else if (desc == ERR_PTR(-EPROBE_DEFER))
193 ret = -EPROBE_DEFER;
194 }
195 fwnode_handle_put(fixed_node);
196
197 if (ret)
198 return ret;
199 } else {
200 u32 prop[5];
201
202 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
203 NULL, 0);
204 if (ret != ARRAY_SIZE(prop)) {
205 phylink_err(pl, "broken fixed-link?\n");
206 return -EINVAL;
207 }
208
209 ret = fwnode_property_read_u32_array(fwnode, "fixed-link",
210 prop, ARRAY_SIZE(prop));
211 if (!ret) {
212 pl->link_config.duplex = prop[1] ?
213 DUPLEX_FULL : DUPLEX_HALF;
214 pl->link_config.speed = prop[2];
215 if (prop[3])
216 pl->link_config.pause |= MLO_PAUSE_SYM;
217 if (prop[4])
218 pl->link_config.pause |= MLO_PAUSE_ASYM;
219 }
220 }
221
222 if (pl->link_config.speed > SPEED_1000 &&
223 pl->link_config.duplex != DUPLEX_FULL)
224 phylink_warn(pl, "fixed link specifies half duplex for %dMbps link?\n",
225 pl->link_config.speed);
226
227 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
228 linkmode_copy(pl->link_config.advertising, pl->supported);
229 phylink_validate(pl, pl->supported, &pl->link_config);
230
231 s = phy_lookup_setting(pl->link_config.speed, pl->link_config.duplex,
232 pl->supported, true);
233 linkmode_zero(pl->supported);
234 phylink_set(pl->supported, MII);
235 phylink_set(pl->supported, Pause);
236 phylink_set(pl->supported, Asym_Pause);
237 if (s) {
238 __set_bit(s->bit, pl->supported);
239 } else {
240 phylink_warn(pl, "fixed link %s duplex %dMbps not recognised\n",
241 pl->link_config.duplex == DUPLEX_FULL ? "full" : "half",
242 pl->link_config.speed);
243 }
244
245 linkmode_and(pl->link_config.advertising, pl->link_config.advertising,
246 pl->supported);
247
248 pl->link_config.link = 1;
249 pl->link_config.an_complete = 1;
250
251 return 0;
252}
253
254static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode)
255{
256 struct fwnode_handle *dn;
257 const char *managed;
258
259 dn = fwnode_get_named_child_node(fwnode, "fixed-link");
260 if (dn || fwnode_property_present(fwnode, "fixed-link"))
261 pl->link_an_mode = MLO_AN_FIXED;
262 fwnode_handle_put(dn);
263
264 if (fwnode_property_read_string(fwnode, "managed", &managed) == 0 &&
265 strcmp(managed, "in-band-status") == 0) {
266 if (pl->link_an_mode == MLO_AN_FIXED) {
267 phylink_err(pl,
268 "can't use both fixed-link and in-band-status\n");
269 return -EINVAL;
270 }
271
272 linkmode_zero(pl->supported);
273 phylink_set(pl->supported, MII);
274 phylink_set(pl->supported, Autoneg);
275 phylink_set(pl->supported, Asym_Pause);
276 phylink_set(pl->supported, Pause);
277 pl->link_config.an_enabled = true;
278 pl->link_an_mode = MLO_AN_INBAND;
279
280 switch (pl->link_config.interface) {
281 case PHY_INTERFACE_MODE_SGMII:
282 phylink_set(pl->supported, 10baseT_Half);
283 phylink_set(pl->supported, 10baseT_Full);
284 phylink_set(pl->supported, 100baseT_Half);
285 phylink_set(pl->supported, 100baseT_Full);
286 phylink_set(pl->supported, 1000baseT_Half);
287 phylink_set(pl->supported, 1000baseT_Full);
288 break;
289
290 case PHY_INTERFACE_MODE_1000BASEX:
291 phylink_set(pl->supported, 1000baseX_Full);
292 break;
293
294 case PHY_INTERFACE_MODE_2500BASEX:
295 phylink_set(pl->supported, 2500baseX_Full);
296 break;
297
298 case PHY_INTERFACE_MODE_10GKR:
299 phylink_set(pl->supported, 10baseT_Half);
300 phylink_set(pl->supported, 10baseT_Full);
301 phylink_set(pl->supported, 100baseT_Half);
302 phylink_set(pl->supported, 100baseT_Full);
303 phylink_set(pl->supported, 1000baseT_Half);
304 phylink_set(pl->supported, 1000baseT_Full);
305 phylink_set(pl->supported, 1000baseX_Full);
306 phylink_set(pl->supported, 10000baseKR_Full);
307 phylink_set(pl->supported, 10000baseCR_Full);
308 phylink_set(pl->supported, 10000baseSR_Full);
309 phylink_set(pl->supported, 10000baseLR_Full);
310 phylink_set(pl->supported, 10000baseLRM_Full);
311 phylink_set(pl->supported, 10000baseER_Full);
312 break;
313
314 default:
315 phylink_err(pl,
316 "incorrect link mode %s for in-band status\n",
317 phy_modes(pl->link_config.interface));
318 return -EINVAL;
319 }
320
321 linkmode_copy(pl->link_config.advertising, pl->supported);
322
323 if (phylink_validate(pl, pl->supported, &pl->link_config)) {
324 phylink_err(pl,
325 "failed to validate link configuration for in-band status\n");
326 return -EINVAL;
327 }
328 }
329
330 return 0;
331}
332
333static void phylink_mac_config(struct phylink *pl,
334 const struct phylink_link_state *state)
335{
336 phylink_dbg(pl,
337 "%s: mode=%s/%s/%s/%s adv=%*pb pause=%02x link=%u an=%u\n",
338 __func__, phylink_an_mode_str(pl->link_an_mode),
339 phy_modes(state->interface),
340 phy_speed_to_str(state->speed),
341 phy_duplex_to_str(state->duplex),
342 __ETHTOOL_LINK_MODE_MASK_NBITS, state->advertising,
343 state->pause, state->link, state->an_enabled);
344
345 pl->ops->mac_config(pl->config, pl->link_an_mode, state);
346}
347
348static void phylink_mac_config_up(struct phylink *pl,
349 const struct phylink_link_state *state)
350{
351 if (state->link)
352 phylink_mac_config(pl, state);
353}
354
355static void phylink_mac_an_restart(struct phylink *pl)
356{
357 if (pl->link_config.an_enabled &&
358 phy_interface_mode_is_8023z(pl->link_config.interface))
359 pl->ops->mac_an_restart(pl->config);
360}
361
362static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *state)
363{
364
365 linkmode_copy(state->advertising, pl->link_config.advertising);
366 linkmode_zero(state->lp_advertising);
367 state->interface = pl->link_config.interface;
368 state->an_enabled = pl->link_config.an_enabled;
369 state->speed = SPEED_UNKNOWN;
370 state->duplex = DUPLEX_UNKNOWN;
371 state->pause = MLO_PAUSE_NONE;
372 state->an_complete = 0;
373 state->link = 1;
374
375 return pl->ops->mac_link_state(pl->config, state);
376}
377
378/* The fixed state is... fixed except for the link state,
379 * which may be determined by a GPIO or a callback.
380 */
381static void phylink_get_fixed_state(struct phylink *pl, struct phylink_link_state *state)
382{
383 *state = pl->link_config;
384 if (pl->get_fixed_state)
385 pl->get_fixed_state(pl->netdev, state);
386 else if (pl->link_gpio)
387 state->link = !!gpiod_get_value_cansleep(pl->link_gpio);
388}
389
390/* Flow control is resolved according to our and the link partners
391 * advertisements using the following drawn from the 802.3 specs:
392 * Local device Link partner
393 * Pause AsymDir Pause AsymDir Result
394 * 1 X 1 X TX+RX
395 * 0 1 1 1 TX
396 * 1 1 0 1 RX
397 */
398static void phylink_resolve_flow(struct phylink *pl,
399 struct phylink_link_state *state)
400{
401 int new_pause = 0;
402
403 if (pl->link_config.pause & MLO_PAUSE_AN) {
404 int pause = 0;
405
406 if (phylink_test(pl->link_config.advertising, Pause))
407 pause |= MLO_PAUSE_SYM;
408 if (phylink_test(pl->link_config.advertising, Asym_Pause))
409 pause |= MLO_PAUSE_ASYM;
410
411 pause &= state->pause;
412
413 if (pause & MLO_PAUSE_SYM)
414 new_pause = MLO_PAUSE_TX | MLO_PAUSE_RX;
415 else if (pause & MLO_PAUSE_ASYM)
416 new_pause = state->pause & MLO_PAUSE_SYM ?
417 MLO_PAUSE_TX : MLO_PAUSE_RX;
418 } else {
419 new_pause = pl->link_config.pause & MLO_PAUSE_TXRX_MASK;
420 }
421
422 state->pause &= ~MLO_PAUSE_TXRX_MASK;
423 state->pause |= new_pause;
424}
425
426static const char *phylink_pause_to_str(int pause)
427{
428 switch (pause & MLO_PAUSE_TXRX_MASK) {
429 case MLO_PAUSE_TX | MLO_PAUSE_RX:
430 return "rx/tx";
431 case MLO_PAUSE_TX:
432 return "tx";
433 case MLO_PAUSE_RX:
434 return "rx";
435 default:
436 return "off";
437 }
438}
439
440static void phylink_mac_link_up(struct phylink *pl,
441 struct phylink_link_state link_state)
442{
443 struct net_device *ndev = pl->netdev;
444
445 pl->cur_interface = link_state.interface;
446 pl->ops->mac_link_up(pl->config, pl->link_an_mode,
447 pl->phy_state.interface,
448 pl->phydev);
449
450 if (ndev)
451 netif_carrier_on(ndev);
452
453 phylink_info(pl,
454 "Link is Up - %s/%s - flow control %s\n",
455 phy_speed_to_str(link_state.speed),
456 phy_duplex_to_str(link_state.duplex),
457 phylink_pause_to_str(link_state.pause));
458}
459
460static void phylink_mac_link_down(struct phylink *pl)
461{
462 struct net_device *ndev = pl->netdev;
463
464 if (ndev)
465 netif_carrier_off(ndev);
466 pl->ops->mac_link_down(pl->config, pl->link_an_mode,
467 pl->cur_interface);
468 phylink_info(pl, "Link is Down\n");
469}
470
471static void phylink_resolve(struct work_struct *w)
472{
473 struct phylink *pl = container_of(w, struct phylink, resolve);
474 struct phylink_link_state link_state;
475 struct net_device *ndev = pl->netdev;
476 int link_changed;
477
478 mutex_lock(&pl->state_mutex);
479 if (pl->phylink_disable_state) {
480 pl->mac_link_dropped = false;
481 link_state.link = false;
482 } else if (pl->mac_link_dropped) {
483 link_state.link = false;
484 } else {
485 switch (pl->link_an_mode) {
486 case MLO_AN_PHY:
487 link_state = pl->phy_state;
488 phylink_resolve_flow(pl, &link_state);
489 phylink_mac_config_up(pl, &link_state);
490 break;
491
492 case MLO_AN_FIXED:
493 phylink_get_fixed_state(pl, &link_state);
494 phylink_mac_config_up(pl, &link_state);
495 break;
496
497 case MLO_AN_INBAND:
498 phylink_get_mac_state(pl, &link_state);
499
500 /* If we have a phy, the "up" state is the union of
501 * both the PHY and the MAC */
502 if (pl->phydev)
503 link_state.link &= pl->phy_state.link;
504
505 /* Only update if the PHY link is up */
506 if (pl->phydev && pl->phy_state.link) {
507 link_state.interface = pl->phy_state.interface;
508
509 /* If we have a PHY, we need to update with
510 * the pause mode bits. */
511 link_state.pause |= pl->phy_state.pause;
512 phylink_resolve_flow(pl, &link_state);
513 phylink_mac_config(pl, &link_state);
514 }
515 break;
516 }
517 }
518
519 if (pl->netdev)
520 link_changed = (link_state.link != netif_carrier_ok(ndev));
521 else
522 link_changed = (link_state.link != pl->old_link_state);
523
524 if (link_changed) {
525 pl->old_link_state = link_state.link;
526 if (!link_state.link)
527 phylink_mac_link_down(pl);
528 else
529 phylink_mac_link_up(pl, link_state);
530 }
531 if (!link_state.link && pl->mac_link_dropped) {
532 pl->mac_link_dropped = false;
533 queue_work(system_power_efficient_wq, &pl->resolve);
534 }
535 mutex_unlock(&pl->state_mutex);
536}
537
538static void phylink_run_resolve(struct phylink *pl)
539{
540 if (!pl->phylink_disable_state)
541 queue_work(system_power_efficient_wq, &pl->resolve);
542}
543
544static void phylink_run_resolve_and_disable(struct phylink *pl, int bit)
545{
546 unsigned long state = pl->phylink_disable_state;
547
548 set_bit(bit, &pl->phylink_disable_state);
549 if (state == 0) {
550 queue_work(system_power_efficient_wq, &pl->resolve);
551 flush_work(&pl->resolve);
552 }
553}
554
555static void phylink_fixed_poll(struct timer_list *t)
556{
557 struct phylink *pl = container_of(t, struct phylink, link_poll);
558
559 mod_timer(t, jiffies + HZ);
560
561 phylink_run_resolve(pl);
562}
563
564static const struct sfp_upstream_ops sfp_phylink_ops;
565
566static int phylink_register_sfp(struct phylink *pl,
567 struct fwnode_handle *fwnode)
568{
569 struct fwnode_reference_args ref;
570 int ret;
571
572 if (!fwnode)
573 return 0;
574
575 ret = fwnode_property_get_reference_args(fwnode, "sfp", NULL,
576 0, 0, &ref);
577 if (ret < 0) {
578 if (ret == -ENOENT)
579 return 0;
580
581 phylink_err(pl, "unable to parse \"sfp\" node: %d\n",
582 ret);
583 return ret;
584 }
585
586 pl->sfp_bus = sfp_register_upstream(ref.fwnode, pl, &sfp_phylink_ops);
587 if (!pl->sfp_bus)
588 return -ENOMEM;
589
590 return 0;
591}
592
593/**
594 * phylink_create() - create a phylink instance
595 * @config: a pointer to the target &struct phylink_config
596 * @fwnode: a pointer to a &struct fwnode_handle describing the network
597 * interface
598 * @iface: the desired link mode defined by &typedef phy_interface_t
599 * @ops: a pointer to a &struct phylink_mac_ops for the MAC.
600 *
601 * Create a new phylink instance, and parse the link parameters found in @np.
602 * This will parse in-band modes, fixed-link or SFP configuration.
603 *
604 * Note: the rtnl lock must not be held when calling this function.
605 *
606 * Returns a pointer to a &struct phylink, or an error-pointer value. Users
607 * must use IS_ERR() to check for errors from this function.
608 */
609struct phylink *phylink_create(struct phylink_config *config,
610 struct fwnode_handle *fwnode,
611 phy_interface_t iface,
612 const struct phylink_mac_ops *ops)
613{
614 struct phylink *pl;
615 int ret;
616
617 pl = kzalloc(sizeof(*pl), GFP_KERNEL);
618 if (!pl)
619 return ERR_PTR(-ENOMEM);
620
621 mutex_init(&pl->state_mutex);
622 INIT_WORK(&pl->resolve, phylink_resolve);
623
624 pl->config = config;
625 if (config->type == PHYLINK_NETDEV) {
626 pl->netdev = to_net_dev(config->dev);
627 } else if (config->type == PHYLINK_DEV) {
628 pl->dev = config->dev;
629 } else {
630 kfree(pl);
631 return ERR_PTR(-EINVAL);
632 }
633
634 pl->phy_state.interface = iface;
635 pl->link_interface = iface;
636 if (iface == PHY_INTERFACE_MODE_MOCA)
637 pl->link_port = PORT_BNC;
638 else
639 pl->link_port = PORT_MII;
640 pl->link_config.interface = iface;
641 pl->link_config.pause = MLO_PAUSE_AN;
642 pl->link_config.speed = SPEED_UNKNOWN;
643 pl->link_config.duplex = DUPLEX_UNKNOWN;
644 pl->link_config.an_enabled = true;
645 pl->ops = ops;
646 __set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
647 timer_setup(&pl->link_poll, phylink_fixed_poll, 0);
648
649 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
650 linkmode_copy(pl->link_config.advertising, pl->supported);
651 phylink_validate(pl, pl->supported, &pl->link_config);
652
653 ret = phylink_parse_mode(pl, fwnode);
654 if (ret < 0) {
655 kfree(pl);
656 return ERR_PTR(ret);
657 }
658
659 if (pl->link_an_mode == MLO_AN_FIXED) {
660 ret = phylink_parse_fixedlink(pl, fwnode);
661 if (ret < 0) {
662 kfree(pl);
663 return ERR_PTR(ret);
664 }
665 }
666
667 ret = phylink_register_sfp(pl, fwnode);
668 if (ret < 0) {
669 kfree(pl);
670 return ERR_PTR(ret);
671 }
672
673 return pl;
674}
675EXPORT_SYMBOL_GPL(phylink_create);
676
677/**
678 * phylink_destroy() - cleanup and destroy the phylink instance
679 * @pl: a pointer to a &struct phylink returned from phylink_create()
680 *
681 * Destroy a phylink instance. Any PHY that has been attached must have been
682 * cleaned up via phylink_disconnect_phy() prior to calling this function.
683 *
684 * Note: the rtnl lock must not be held when calling this function.
685 */
686void phylink_destroy(struct phylink *pl)
687{
688 if (pl->sfp_bus)
689 sfp_unregister_upstream(pl->sfp_bus);
690 if (pl->link_gpio)
691 gpiod_put(pl->link_gpio);
692
693 cancel_work_sync(&pl->resolve);
694 kfree(pl);
695}
696EXPORT_SYMBOL_GPL(phylink_destroy);
697
698static void phylink_phy_change(struct phy_device *phydev, bool up,
699 bool do_carrier)
700{
701 struct phylink *pl = phydev->phylink;
702
703 mutex_lock(&pl->state_mutex);
704 pl->phy_state.speed = phydev->speed;
705 pl->phy_state.duplex = phydev->duplex;
706 pl->phy_state.pause = MLO_PAUSE_NONE;
707 if (phydev->pause)
708 pl->phy_state.pause |= MLO_PAUSE_SYM;
709 if (phydev->asym_pause)
710 pl->phy_state.pause |= MLO_PAUSE_ASYM;
711 pl->phy_state.interface = phydev->interface;
712 pl->phy_state.link = up;
713 mutex_unlock(&pl->state_mutex);
714
715 phylink_run_resolve(pl);
716
717 phylink_dbg(pl, "phy link %s %s/%s/%s\n", up ? "up" : "down",
718 phy_modes(phydev->interface),
719 phy_speed_to_str(phydev->speed),
720 phy_duplex_to_str(phydev->duplex));
721}
722
723static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy)
724{
725 struct phylink_link_state config;
726 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
727 int ret;
728
729 memset(&config, 0, sizeof(config));
730 linkmode_copy(supported, phy->supported);
731 linkmode_copy(config.advertising, phy->advertising);
732 config.interface = pl->link_config.interface;
733
734 /*
735 * This is the new way of dealing with flow control for PHYs,
736 * as described by Timur Tabi in commit 529ed1275263 ("net: phy:
737 * phy drivers should not set SUPPORTED_[Asym_]Pause") except
738 * using our validate call to the MAC, we rely upon the MAC
739 * clearing the bits from both supported and advertising fields.
740 */
741 if (phylink_test(supported, Pause))
742 phylink_set(config.advertising, Pause);
743 if (phylink_test(supported, Asym_Pause))
744 phylink_set(config.advertising, Asym_Pause);
745
746 ret = phylink_validate(pl, supported, &config);
747 if (ret)
748 return ret;
749
750 phy->phylink = pl;
751 phy->phy_link_change = phylink_phy_change;
752
753 phylink_info(pl,
754 "PHY [%s] driver [%s]\n", dev_name(&phy->mdio.dev),
755 phy->drv->name);
756
757 mutex_lock(&phy->lock);
758 mutex_lock(&pl->state_mutex);
759 pl->phydev = phy;
760 linkmode_copy(pl->supported, supported);
761 linkmode_copy(pl->link_config.advertising, config.advertising);
762
763 /* Restrict the phy advertisement according to the MAC support. */
764 linkmode_copy(phy->advertising, config.advertising);
765 mutex_unlock(&pl->state_mutex);
766 mutex_unlock(&phy->lock);
767
768 phylink_dbg(pl,
769 "phy: setting supported %*pb advertising %*pb\n",
770 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported,
771 __ETHTOOL_LINK_MODE_MASK_NBITS, phy->advertising);
772
773 if (phy_interrupt_is_valid(phy))
774 phy_request_interrupt(phy);
775
776 return 0;
777}
778
779static int __phylink_connect_phy(struct phylink *pl, struct phy_device *phy,
780 phy_interface_t interface)
781{
782 int ret;
783
784 if (WARN_ON(pl->link_an_mode == MLO_AN_FIXED ||
785 (pl->link_an_mode == MLO_AN_INBAND &&
786 phy_interface_mode_is_8023z(interface))))
787 return -EINVAL;
788
789 if (pl->phydev)
790 return -EBUSY;
791
792 ret = phy_attach_direct(pl->netdev, phy, 0, interface);
793 if (ret)
794 return ret;
795
796 ret = phylink_bringup_phy(pl, phy);
797 if (ret)
798 phy_detach(phy);
799
800 return ret;
801}
802
803/**
804 * phylink_connect_phy() - connect a PHY to the phylink instance
805 * @pl: a pointer to a &struct phylink returned from phylink_create()
806 * @phy: a pointer to a &struct phy_device.
807 *
808 * Connect @phy to the phylink instance specified by @pl by calling
809 * phy_attach_direct(). Configure the @phy according to the MAC driver's
810 * capabilities, start the PHYLIB state machine and enable any interrupts
811 * that the PHY supports.
812 *
813 * This updates the phylink's ethtool supported and advertising link mode
814 * masks.
815 *
816 * Returns 0 on success or a negative errno.
817 */
818int phylink_connect_phy(struct phylink *pl, struct phy_device *phy)
819{
820 /* Use PHY device/driver interface */
821 if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
822 pl->link_interface = phy->interface;
823 pl->link_config.interface = pl->link_interface;
824 }
825
826 return __phylink_connect_phy(pl, phy, pl->link_interface);
827}
828EXPORT_SYMBOL_GPL(phylink_connect_phy);
829
830/**
831 * phylink_of_phy_connect() - connect the PHY specified in the DT mode.
832 * @pl: a pointer to a &struct phylink returned from phylink_create()
833 * @dn: a pointer to a &struct device_node.
834 * @flags: PHY-specific flags to communicate to the PHY device driver
835 *
836 * Connect the phy specified in the device node @dn to the phylink instance
837 * specified by @pl. Actions specified in phylink_connect_phy() will be
838 * performed.
839 *
840 * Returns 0 on success or a negative errno.
841 */
842int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn,
843 u32 flags)
844{
845 struct device_node *phy_node;
846 struct phy_device *phy_dev;
847 int ret;
848
849 /* Fixed links and 802.3z are handled without needing a PHY */
850 if (pl->link_an_mode == MLO_AN_FIXED ||
851 (pl->link_an_mode == MLO_AN_INBAND &&
852 phy_interface_mode_is_8023z(pl->link_interface)))
853 return 0;
854
855 phy_node = of_parse_phandle(dn, "phy-handle", 0);
856 if (!phy_node)
857 phy_node = of_parse_phandle(dn, "phy", 0);
858 if (!phy_node)
859 phy_node = of_parse_phandle(dn, "phy-device", 0);
860
861 if (!phy_node) {
862 if (pl->link_an_mode == MLO_AN_PHY)
863 return -ENODEV;
864 return 0;
865 }
866
867 phy_dev = of_phy_attach(pl->netdev, phy_node, flags,
868 pl->link_interface);
869 /* We're done with the phy_node handle */
870 of_node_put(phy_node);
871
872 if (!phy_dev)
873 return -ENODEV;
874
875 ret = phylink_bringup_phy(pl, phy_dev);
876 if (ret)
877 phy_detach(phy_dev);
878
879 return ret;
880}
881EXPORT_SYMBOL_GPL(phylink_of_phy_connect);
882
883/**
884 * phylink_disconnect_phy() - disconnect any PHY attached to the phylink
885 * instance.
886 * @pl: a pointer to a &struct phylink returned from phylink_create()
887 *
888 * Disconnect any current PHY from the phylink instance described by @pl.
889 */
890void phylink_disconnect_phy(struct phylink *pl)
891{
892 struct phy_device *phy;
893
894 ASSERT_RTNL();
895
896 phy = pl->phydev;
897 if (phy) {
898 mutex_lock(&phy->lock);
899 mutex_lock(&pl->state_mutex);
900 pl->phydev = NULL;
901 mutex_unlock(&pl->state_mutex);
902 mutex_unlock(&phy->lock);
903 flush_work(&pl->resolve);
904
905 phy_disconnect(phy);
906 }
907}
908EXPORT_SYMBOL_GPL(phylink_disconnect_phy);
909
910/**
911 * phylink_fixed_state_cb() - allow setting a fixed link callback
912 * @pl: a pointer to a &struct phylink returned from phylink_create()
913 * @cb: callback to execute to determine the fixed link state.
914 *
915 * The MAC driver should call this driver when the state of its link
916 * can be determined through e.g: an out of band MMIO register.
917 */
918int phylink_fixed_state_cb(struct phylink *pl,
919 void (*cb)(struct net_device *dev,
920 struct phylink_link_state *state))
921{
922 /* It does not make sense to let the link be overriden unless we use
923 * MLO_AN_FIXED
924 */
925 if (pl->link_an_mode != MLO_AN_FIXED)
926 return -EINVAL;
927
928 mutex_lock(&pl->state_mutex);
929 pl->get_fixed_state = cb;
930 mutex_unlock(&pl->state_mutex);
931
932 return 0;
933}
934EXPORT_SYMBOL_GPL(phylink_fixed_state_cb);
935
936/**
937 * phylink_mac_change() - notify phylink of a change in MAC state
938 * @pl: a pointer to a &struct phylink returned from phylink_create()
939 * @up: indicates whether the link is currently up.
940 *
941 * The MAC driver should call this driver when the state of its link
942 * changes (eg, link failure, new negotiation results, etc.)
943 */
944void phylink_mac_change(struct phylink *pl, bool up)
945{
946 if (!up)
947 pl->mac_link_dropped = true;
948 phylink_run_resolve(pl);
949 phylink_dbg(pl, "mac link %s\n", up ? "up" : "down");
950}
951EXPORT_SYMBOL_GPL(phylink_mac_change);
952
953static irqreturn_t phylink_link_handler(int irq, void *data)
954{
955 struct phylink *pl = data;
956
957 phylink_run_resolve(pl);
958
959 return IRQ_HANDLED;
960}
961
962/**
963 * phylink_start() - start a phylink instance
964 * @pl: a pointer to a &struct phylink returned from phylink_create()
965 *
966 * Start the phylink instance specified by @pl, configuring the MAC for the
967 * desired link mode(s) and negotiation style. This should be called from the
968 * network device driver's &struct net_device_ops ndo_open() method.
969 */
970void phylink_start(struct phylink *pl)
971{
972 ASSERT_RTNL();
973
974 phylink_info(pl, "configuring for %s/%s link mode\n",
975 phylink_an_mode_str(pl->link_an_mode),
976 phy_modes(pl->link_config.interface));
977
978 /* Always set the carrier off */
979 if (pl->netdev)
980 netif_carrier_off(pl->netdev);
981
982 /* Apply the link configuration to the MAC when starting. This allows
983 * a fixed-link to start with the correct parameters, and also
984 * ensures that we set the appropriate advertisement for Serdes links.
985 */
986 phylink_resolve_flow(pl, &pl->link_config);
987 phylink_mac_config(pl, &pl->link_config);
988
989 /* Restart autonegotiation if using 802.3z to ensure that the link
990 * parameters are properly negotiated. This is necessary for DSA
991 * switches using 802.3z negotiation to ensure they see our modes.
992 */
993 phylink_mac_an_restart(pl);
994
995 clear_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state);
996 phylink_run_resolve(pl);
997
998 if (pl->link_an_mode == MLO_AN_FIXED && pl->link_gpio) {
999 int irq = gpiod_to_irq(pl->link_gpio);
1000
1001 if (irq > 0) {
1002 if (!request_irq(irq, phylink_link_handler,
1003 IRQF_TRIGGER_RISING |
1004 IRQF_TRIGGER_FALLING,
1005 "netdev link", pl))
1006 pl->link_irq = irq;
1007 else
1008 irq = 0;
1009 }
1010 if (irq <= 0)
1011 mod_timer(&pl->link_poll, jiffies + HZ);
1012 }
1013 if (pl->link_an_mode == MLO_AN_FIXED && pl->get_fixed_state)
1014 mod_timer(&pl->link_poll, jiffies + HZ);
1015 if (pl->phydev)
1016 phy_start(pl->phydev);
1017 if (pl->sfp_bus)
1018 sfp_upstream_start(pl->sfp_bus);
1019}
1020EXPORT_SYMBOL_GPL(phylink_start);
1021
1022/**
1023 * phylink_stop() - stop a phylink instance
1024 * @pl: a pointer to a &struct phylink returned from phylink_create()
1025 *
1026 * Stop the phylink instance specified by @pl. This should be called from the
1027 * network device driver's &struct net_device_ops ndo_stop() method. The
1028 * network device's carrier state should not be changed prior to calling this
1029 * function.
1030 */
1031void phylink_stop(struct phylink *pl)
1032{
1033 ASSERT_RTNL();
1034
1035 if (pl->sfp_bus)
1036 sfp_upstream_stop(pl->sfp_bus);
1037 if (pl->phydev)
1038 phy_stop(pl->phydev);
1039 del_timer_sync(&pl->link_poll);
1040 if (pl->link_irq) {
1041 free_irq(pl->link_irq, pl);
1042 pl->link_irq = 0;
1043 }
1044
1045 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_STOPPED);
1046}
1047EXPORT_SYMBOL_GPL(phylink_stop);
1048
1049/**
1050 * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY
1051 * @pl: a pointer to a &struct phylink returned from phylink_create()
1052 * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters
1053 *
1054 * Read the wake on lan parameters from the PHY attached to the phylink
1055 * instance specified by @pl. If no PHY is currently attached, report no
1056 * support for wake on lan.
1057 */
1058void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
1059{
1060 ASSERT_RTNL();
1061
1062 wol->supported = 0;
1063 wol->wolopts = 0;
1064
1065 if (pl->phydev)
1066 phy_ethtool_get_wol(pl->phydev, wol);
1067}
1068EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol);
1069
1070/**
1071 * phylink_ethtool_set_wol() - set wake on lan parameters
1072 * @pl: a pointer to a &struct phylink returned from phylink_create()
1073 * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters
1074 *
1075 * Set the wake on lan parameters for the PHY attached to the phylink
1076 * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP
1077 * error.
1078 *
1079 * Returns zero on success or negative errno code.
1080 */
1081int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol)
1082{
1083 int ret = -EOPNOTSUPP;
1084
1085 ASSERT_RTNL();
1086
1087 if (pl->phydev)
1088 ret = phy_ethtool_set_wol(pl->phydev, wol);
1089
1090 return ret;
1091}
1092EXPORT_SYMBOL_GPL(phylink_ethtool_set_wol);
1093
1094static void phylink_merge_link_mode(unsigned long *dst, const unsigned long *b)
1095{
1096 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask);
1097
1098 linkmode_zero(mask);
1099 phylink_set_port_modes(mask);
1100
1101 linkmode_and(dst, dst, mask);
1102 linkmode_or(dst, dst, b);
1103}
1104
1105static void phylink_get_ksettings(const struct phylink_link_state *state,
1106 struct ethtool_link_ksettings *kset)
1107{
1108 phylink_merge_link_mode(kset->link_modes.advertising, state->advertising);
1109 linkmode_copy(kset->link_modes.lp_advertising, state->lp_advertising);
1110 kset->base.speed = state->speed;
1111 kset->base.duplex = state->duplex;
1112 kset->base.autoneg = state->an_enabled ? AUTONEG_ENABLE :
1113 AUTONEG_DISABLE;
1114}
1115
1116/**
1117 * phylink_ethtool_ksettings_get() - get the current link settings
1118 * @pl: a pointer to a &struct phylink returned from phylink_create()
1119 * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings
1120 *
1121 * Read the current link settings for the phylink instance specified by @pl.
1122 * This will be the link settings read from the MAC, PHY or fixed link
1123 * settings depending on the current negotiation mode.
1124 */
1125int phylink_ethtool_ksettings_get(struct phylink *pl,
1126 struct ethtool_link_ksettings *kset)
1127{
1128 struct phylink_link_state link_state;
1129
1130 ASSERT_RTNL();
1131
1132 if (pl->phydev) {
1133 phy_ethtool_ksettings_get(pl->phydev, kset);
1134 } else {
1135 kset->base.port = pl->link_port;
1136 }
1137
1138 linkmode_copy(kset->link_modes.supported, pl->supported);
1139
1140 switch (pl->link_an_mode) {
1141 case MLO_AN_FIXED:
1142 /* We are using fixed settings. Report these as the
1143 * current link settings - and note that these also
1144 * represent the supported speeds/duplex/pause modes.
1145 */
1146 phylink_get_fixed_state(pl, &link_state);
1147 phylink_get_ksettings(&link_state, kset);
1148 break;
1149
1150 case MLO_AN_INBAND:
1151 /* If there is a phy attached, then use the reported
1152 * settings from the phy with no modification.
1153 */
1154 if (pl->phydev)
1155 break;
1156
1157 phylink_get_mac_state(pl, &link_state);
1158
1159 /* The MAC is reporting the link results from its own PCS
1160 * layer via in-band status. Report these as the current
1161 * link settings.
1162 */
1163 phylink_get_ksettings(&link_state, kset);
1164 break;
1165 }
1166
1167 return 0;
1168}
1169EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get);
1170
1171/**
1172 * phylink_ethtool_ksettings_set() - set the link settings
1173 * @pl: a pointer to a &struct phylink returned from phylink_create()
1174 * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes
1175 */
1176int phylink_ethtool_ksettings_set(struct phylink *pl,
1177 const struct ethtool_link_ksettings *kset)
1178{
1179 __ETHTOOL_DECLARE_LINK_MODE_MASK(support);
1180 struct ethtool_link_ksettings our_kset;
1181 struct phylink_link_state config;
1182 int ret;
1183
1184 ASSERT_RTNL();
1185
1186 if (kset->base.autoneg != AUTONEG_DISABLE &&
1187 kset->base.autoneg != AUTONEG_ENABLE)
1188 return -EINVAL;
1189
1190 linkmode_copy(support, pl->supported);
1191 config = pl->link_config;
1192
1193 /* Mask out unsupported advertisements */
1194 linkmode_and(config.advertising, kset->link_modes.advertising,
1195 support);
1196
1197 /* FIXME: should we reject autoneg if phy/mac does not support it? */
1198 if (kset->base.autoneg == AUTONEG_DISABLE) {
1199 const struct phy_setting *s;
1200
1201 /* Autonegotiation disabled, select a suitable speed and
1202 * duplex.
1203 */
1204 s = phy_lookup_setting(kset->base.speed, kset->base.duplex,
1205 support, false);
1206 if (!s)
1207 return -EINVAL;
1208
1209 /* If we have a fixed link (as specified by firmware), refuse
1210 * to change link parameters.
1211 */
1212 if (pl->link_an_mode == MLO_AN_FIXED &&
1213 (s->speed != pl->link_config.speed ||
1214 s->duplex != pl->link_config.duplex))
1215 return -EINVAL;
1216
1217 config.speed = s->speed;
1218 config.duplex = s->duplex;
1219 config.an_enabled = false;
1220
1221 __clear_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1222 } else {
1223 /* If we have a fixed link, refuse to enable autonegotiation */
1224 if (pl->link_an_mode == MLO_AN_FIXED)
1225 return -EINVAL;
1226
1227 config.speed = SPEED_UNKNOWN;
1228 config.duplex = DUPLEX_UNKNOWN;
1229 config.an_enabled = true;
1230
1231 __set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising);
1232 }
1233
1234 if (phylink_validate(pl, support, &config))
1235 return -EINVAL;
1236
1237 /* If autonegotiation is enabled, we must have an advertisement */
1238 if (config.an_enabled && phylink_is_empty_linkmode(config.advertising))
1239 return -EINVAL;
1240
1241 our_kset = *kset;
1242 linkmode_copy(our_kset.link_modes.advertising, config.advertising);
1243 our_kset.base.speed = config.speed;
1244 our_kset.base.duplex = config.duplex;
1245
1246 /* If we have a PHY, configure the phy */
1247 if (pl->phydev) {
1248 ret = phy_ethtool_ksettings_set(pl->phydev, &our_kset);
1249 if (ret)
1250 return ret;
1251 }
1252
1253 mutex_lock(&pl->state_mutex);
1254 /* Configure the MAC to match the new settings */
1255 linkmode_copy(pl->link_config.advertising, our_kset.link_modes.advertising);
1256 pl->link_config.interface = config.interface;
1257 pl->link_config.speed = our_kset.base.speed;
1258 pl->link_config.duplex = our_kset.base.duplex;
1259 pl->link_config.an_enabled = our_kset.base.autoneg != AUTONEG_DISABLE;
1260
1261 /* If we have a PHY, phylib will call our link state function if the
1262 * mode has changed, which will trigger a resolve and update the MAC
1263 * configuration. For a fixed link, this isn't able to change any
1264 * parameters, which just leaves inband mode.
1265 */
1266 if (pl->link_an_mode == MLO_AN_INBAND &&
1267 !test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) {
1268 phylink_mac_config(pl, &pl->link_config);
1269 phylink_mac_an_restart(pl);
1270 }
1271 mutex_unlock(&pl->state_mutex);
1272
1273 return 0;
1274}
1275EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set);
1276
1277/**
1278 * phylink_ethtool_nway_reset() - restart negotiation
1279 * @pl: a pointer to a &struct phylink returned from phylink_create()
1280 *
1281 * Restart negotiation for the phylink instance specified by @pl. This will
1282 * cause any attached phy to restart negotiation with the link partner, and
1283 * if the MAC is in a BaseX mode, the MAC will also be requested to restart
1284 * negotiation.
1285 *
1286 * Returns zero on success, or negative error code.
1287 */
1288int phylink_ethtool_nway_reset(struct phylink *pl)
1289{
1290 int ret = 0;
1291
1292 ASSERT_RTNL();
1293
1294 if (pl->phydev)
1295 ret = phy_restart_aneg(pl->phydev);
1296 phylink_mac_an_restart(pl);
1297
1298 return ret;
1299}
1300EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset);
1301
1302/**
1303 * phylink_ethtool_get_pauseparam() - get the current pause parameters
1304 * @pl: a pointer to a &struct phylink returned from phylink_create()
1305 * @pause: a pointer to a &struct ethtool_pauseparam
1306 */
1307void phylink_ethtool_get_pauseparam(struct phylink *pl,
1308 struct ethtool_pauseparam *pause)
1309{
1310 ASSERT_RTNL();
1311
1312 pause->autoneg = !!(pl->link_config.pause & MLO_PAUSE_AN);
1313 pause->rx_pause = !!(pl->link_config.pause & MLO_PAUSE_RX);
1314 pause->tx_pause = !!(pl->link_config.pause & MLO_PAUSE_TX);
1315}
1316EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam);
1317
1318/**
1319 * phylink_ethtool_set_pauseparam() - set the current pause parameters
1320 * @pl: a pointer to a &struct phylink returned from phylink_create()
1321 * @pause: a pointer to a &struct ethtool_pauseparam
1322 */
1323int phylink_ethtool_set_pauseparam(struct phylink *pl,
1324 struct ethtool_pauseparam *pause)
1325{
1326 struct phylink_link_state *config = &pl->link_config;
1327
1328 ASSERT_RTNL();
1329
1330 if (!phylink_test(pl->supported, Pause) &&
1331 !phylink_test(pl->supported, Asym_Pause))
1332 return -EOPNOTSUPP;
1333
1334 if (!phylink_test(pl->supported, Asym_Pause) &&
1335 !pause->autoneg && pause->rx_pause != pause->tx_pause)
1336 return -EINVAL;
1337
1338 config->pause &= ~(MLO_PAUSE_AN | MLO_PAUSE_TXRX_MASK);
1339
1340 if (pause->autoneg)
1341 config->pause |= MLO_PAUSE_AN;
1342 if (pause->rx_pause)
1343 config->pause |= MLO_PAUSE_RX;
1344 if (pause->tx_pause)
1345 config->pause |= MLO_PAUSE_TX;
1346
1347 /* If we have a PHY, phylib will call our link state function if the
1348 * mode has changed, which will trigger a resolve and update the MAC
1349 * configuration.
1350 */
1351 if (pl->phydev) {
1352 phy_set_asym_pause(pl->phydev, pause->rx_pause,
1353 pause->tx_pause);
1354 } else if (!test_bit(PHYLINK_DISABLE_STOPPED,
1355 &pl->phylink_disable_state)) {
1356 switch (pl->link_an_mode) {
1357 case MLO_AN_FIXED:
1358 /* Should we allow fixed links to change against the config? */
1359 phylink_resolve_flow(pl, config);
1360 phylink_mac_config(pl, config);
1361 break;
1362
1363 case MLO_AN_INBAND:
1364 phylink_mac_config(pl, config);
1365 phylink_mac_an_restart(pl);
1366 break;
1367 }
1368 }
1369
1370 return 0;
1371}
1372EXPORT_SYMBOL_GPL(phylink_ethtool_set_pauseparam);
1373
1374/**
1375 * phylink_ethtool_get_eee_err() - read the energy efficient ethernet error
1376 * counter
1377 * @pl: a pointer to a &struct phylink returned from phylink_create().
1378 *
1379 * Read the Energy Efficient Ethernet error counter from the PHY associated
1380 * with the phylink instance specified by @pl.
1381 *
1382 * Returns positive error counter value, or negative error code.
1383 */
1384int phylink_get_eee_err(struct phylink *pl)
1385{
1386 int ret = 0;
1387
1388 ASSERT_RTNL();
1389
1390 if (pl->phydev)
1391 ret = phy_get_eee_err(pl->phydev);
1392
1393 return ret;
1394}
1395EXPORT_SYMBOL_GPL(phylink_get_eee_err);
1396
1397/**
1398 * phylink_init_eee() - init and check the EEE features
1399 * @pl: a pointer to a &struct phylink returned from phylink_create()
1400 * @clk_stop_enable: allow PHY to stop receive clock
1401 *
1402 * Must be called either with RTNL held or within mac_link_up()
1403 */
1404int phylink_init_eee(struct phylink *pl, bool clk_stop_enable)
1405{
1406 int ret = -EOPNOTSUPP;
1407
1408 if (pl->phydev)
1409 ret = phy_init_eee(pl->phydev, clk_stop_enable);
1410
1411 return ret;
1412}
1413EXPORT_SYMBOL_GPL(phylink_init_eee);
1414
1415/**
1416 * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters
1417 * @pl: a pointer to a &struct phylink returned from phylink_create()
1418 * @eee: a pointer to a &struct ethtool_eee for the read parameters
1419 */
1420int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee)
1421{
1422 int ret = -EOPNOTSUPP;
1423
1424 ASSERT_RTNL();
1425
1426 if (pl->phydev)
1427 ret = phy_ethtool_get_eee(pl->phydev, eee);
1428
1429 return ret;
1430}
1431EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee);
1432
1433/**
1434 * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters
1435 * @pl: a pointer to a &struct phylink returned from phylink_create()
1436 * @eee: a pointer to a &struct ethtool_eee for the desired parameters
1437 */
1438int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee)
1439{
1440 int ret = -EOPNOTSUPP;
1441
1442 ASSERT_RTNL();
1443
1444 if (pl->phydev)
1445 ret = phy_ethtool_set_eee(pl->phydev, eee);
1446
1447 return ret;
1448}
1449EXPORT_SYMBOL_GPL(phylink_ethtool_set_eee);
1450
1451/* This emulates MII registers for a fixed-mode phy operating as per the
1452 * passed in state. "aneg" defines if we report negotiation is possible.
1453 *
1454 * FIXME: should deal with negotiation state too.
1455 */
1456static int phylink_mii_emul_read(unsigned int reg,
1457 struct phylink_link_state *state)
1458{
1459 struct fixed_phy_status fs;
1460 int val;
1461
1462 fs.link = state->link;
1463 fs.speed = state->speed;
1464 fs.duplex = state->duplex;
1465 fs.pause = state->pause & MLO_PAUSE_SYM;
1466 fs.asym_pause = state->pause & MLO_PAUSE_ASYM;
1467
1468 val = swphy_read_reg(reg, &fs);
1469 if (reg == MII_BMSR) {
1470 if (!state->an_complete)
1471 val &= ~BMSR_ANEGCOMPLETE;
1472 }
1473 return val;
1474}
1475
1476static int phylink_phy_read(struct phylink *pl, unsigned int phy_id,
1477 unsigned int reg)
1478{
1479 struct phy_device *phydev = pl->phydev;
1480 int prtad, devad;
1481
1482 if (mdio_phy_id_is_c45(phy_id)) {
1483 prtad = mdio_phy_id_prtad(phy_id);
1484 devad = mdio_phy_id_devad(phy_id);
1485 devad = MII_ADDR_C45 | devad << 16 | reg;
1486 } else if (phydev->is_c45) {
1487 switch (reg) {
1488 case MII_BMCR:
1489 case MII_BMSR:
1490 case MII_PHYSID1:
1491 case MII_PHYSID2:
1492 devad = __ffs(phydev->c45_ids.devices_in_package);
1493 break;
1494 case MII_ADVERTISE:
1495 case MII_LPA:
1496 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1497 return -EINVAL;
1498 devad = MDIO_MMD_AN;
1499 if (reg == MII_ADVERTISE)
1500 reg = MDIO_AN_ADVERTISE;
1501 else
1502 reg = MDIO_AN_LPA;
1503 break;
1504 default:
1505 return -EINVAL;
1506 }
1507 prtad = phy_id;
1508 devad = MII_ADDR_C45 | devad << 16 | reg;
1509 } else {
1510 prtad = phy_id;
1511 devad = reg;
1512 }
1513 return mdiobus_read(pl->phydev->mdio.bus, prtad, devad);
1514}
1515
1516static int phylink_phy_write(struct phylink *pl, unsigned int phy_id,
1517 unsigned int reg, unsigned int val)
1518{
1519 struct phy_device *phydev = pl->phydev;
1520 int prtad, devad;
1521
1522 if (mdio_phy_id_is_c45(phy_id)) {
1523 prtad = mdio_phy_id_prtad(phy_id);
1524 devad = mdio_phy_id_devad(phy_id);
1525 devad = MII_ADDR_C45 | devad << 16 | reg;
1526 } else if (phydev->is_c45) {
1527 switch (reg) {
1528 case MII_BMCR:
1529 case MII_BMSR:
1530 case MII_PHYSID1:
1531 case MII_PHYSID2:
1532 devad = __ffs(phydev->c45_ids.devices_in_package);
1533 break;
1534 case MII_ADVERTISE:
1535 case MII_LPA:
1536 if (!(phydev->c45_ids.devices_in_package & MDIO_DEVS_AN))
1537 return -EINVAL;
1538 devad = MDIO_MMD_AN;
1539 if (reg == MII_ADVERTISE)
1540 reg = MDIO_AN_ADVERTISE;
1541 else
1542 reg = MDIO_AN_LPA;
1543 break;
1544 default:
1545 return -EINVAL;
1546 }
1547 prtad = phy_id;
1548 devad = MII_ADDR_C45 | devad << 16 | reg;
1549 } else {
1550 prtad = phy_id;
1551 devad = reg;
1552 }
1553
1554 return mdiobus_write(phydev->mdio.bus, prtad, devad, val);
1555}
1556
1557static int phylink_mii_read(struct phylink *pl, unsigned int phy_id,
1558 unsigned int reg)
1559{
1560 struct phylink_link_state state;
1561 int val = 0xffff;
1562
1563 switch (pl->link_an_mode) {
1564 case MLO_AN_FIXED:
1565 if (phy_id == 0) {
1566 phylink_get_fixed_state(pl, &state);
1567 val = phylink_mii_emul_read(reg, &state);
1568 }
1569 break;
1570
1571 case MLO_AN_PHY:
1572 return -EOPNOTSUPP;
1573
1574 case MLO_AN_INBAND:
1575 if (phy_id == 0) {
1576 val = phylink_get_mac_state(pl, &state);
1577 if (val < 0)
1578 return val;
1579
1580 val = phylink_mii_emul_read(reg, &state);
1581 }
1582 break;
1583 }
1584
1585 return val & 0xffff;
1586}
1587
1588static int phylink_mii_write(struct phylink *pl, unsigned int phy_id,
1589 unsigned int reg, unsigned int val)
1590{
1591 switch (pl->link_an_mode) {
1592 case MLO_AN_FIXED:
1593 break;
1594
1595 case MLO_AN_PHY:
1596 return -EOPNOTSUPP;
1597
1598 case MLO_AN_INBAND:
1599 break;
1600 }
1601
1602 return 0;
1603}
1604
1605/**
1606 * phylink_mii_ioctl() - generic mii ioctl interface
1607 * @pl: a pointer to a &struct phylink returned from phylink_create()
1608 * @ifr: a pointer to a &struct ifreq for socket ioctls
1609 * @cmd: ioctl cmd to execute
1610 *
1611 * Perform the specified MII ioctl on the PHY attached to the phylink instance
1612 * specified by @pl. If no PHY is attached, emulate the presence of the PHY.
1613 *
1614 * Returns: zero on success or negative error code.
1615 *
1616 * %SIOCGMIIPHY:
1617 * read register from the current PHY.
1618 * %SIOCGMIIREG:
1619 * read register from the specified PHY.
1620 * %SIOCSMIIREG:
1621 * set a register on the specified PHY.
1622 */
1623int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd)
1624{
1625 struct mii_ioctl_data *mii = if_mii(ifr);
1626 int ret;
1627
1628 ASSERT_RTNL();
1629
1630 if (pl->phydev) {
1631 /* PHYs only exist for MLO_AN_PHY and SGMII */
1632 switch (cmd) {
1633 case SIOCGMIIPHY:
1634 mii->phy_id = pl->phydev->mdio.addr;
1635 /* fall through */
1636
1637 case SIOCGMIIREG:
1638 ret = phylink_phy_read(pl, mii->phy_id, mii->reg_num);
1639 if (ret >= 0) {
1640 mii->val_out = ret;
1641 ret = 0;
1642 }
1643 break;
1644
1645 case SIOCSMIIREG:
1646 ret = phylink_phy_write(pl, mii->phy_id, mii->reg_num,
1647 mii->val_in);
1648 break;
1649
1650 default:
1651 ret = phy_mii_ioctl(pl->phydev, ifr, cmd);
1652 break;
1653 }
1654 } else {
1655 switch (cmd) {
1656 case SIOCGMIIPHY:
1657 mii->phy_id = 0;
1658 /* fall through */
1659
1660 case SIOCGMIIREG:
1661 ret = phylink_mii_read(pl, mii->phy_id, mii->reg_num);
1662 if (ret >= 0) {
1663 mii->val_out = ret;
1664 ret = 0;
1665 }
1666 break;
1667
1668 case SIOCSMIIREG:
1669 ret = phylink_mii_write(pl, mii->phy_id, mii->reg_num,
1670 mii->val_in);
1671 break;
1672
1673 default:
1674 ret = -EOPNOTSUPP;
1675 break;
1676 }
1677 }
1678
1679 return ret;
1680}
1681EXPORT_SYMBOL_GPL(phylink_mii_ioctl);
1682
1683static void phylink_sfp_attach(void *upstream, struct sfp_bus *bus)
1684{
1685 struct phylink *pl = upstream;
1686
1687 pl->netdev->sfp_bus = bus;
1688}
1689
1690static void phylink_sfp_detach(void *upstream, struct sfp_bus *bus)
1691{
1692 struct phylink *pl = upstream;
1693
1694 pl->netdev->sfp_bus = NULL;
1695}
1696
1697static int phylink_sfp_module_insert(void *upstream,
1698 const struct sfp_eeprom_id *id)
1699{
1700 struct phylink *pl = upstream;
1701 __ETHTOOL_DECLARE_LINK_MODE_MASK(support) = { 0, };
1702 __ETHTOOL_DECLARE_LINK_MODE_MASK(support1);
1703 struct phylink_link_state config;
1704 phy_interface_t iface;
1705 int ret = 0;
1706 bool changed;
1707 u8 port;
1708
1709 ASSERT_RTNL();
1710
1711 sfp_parse_support(pl->sfp_bus, id, support);
1712 port = sfp_parse_port(pl->sfp_bus, id, support);
1713
1714 memset(&config, 0, sizeof(config));
1715 linkmode_copy(config.advertising, support);
1716 config.interface = PHY_INTERFACE_MODE_NA;
1717 config.speed = SPEED_UNKNOWN;
1718 config.duplex = DUPLEX_UNKNOWN;
1719 config.pause = MLO_PAUSE_AN;
1720 config.an_enabled = pl->link_config.an_enabled;
1721
1722 /* Ignore errors if we're expecting a PHY to attach later */
1723 ret = phylink_validate(pl, support, &config);
1724 if (ret) {
1725 phylink_err(pl, "validation with support %*pb failed: %d\n",
1726 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1727 return ret;
1728 }
1729
1730 linkmode_copy(support1, support);
1731
1732 iface = sfp_select_interface(pl->sfp_bus, id, config.advertising);
1733 if (iface == PHY_INTERFACE_MODE_NA) {
1734 phylink_err(pl,
1735 "selection of interface failed, advertisement %*pb\n",
1736 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising);
1737 return -EINVAL;
1738 }
1739
1740 config.interface = iface;
1741 ret = phylink_validate(pl, support1, &config);
1742 if (ret) {
1743 phylink_err(pl, "validation of %s/%s with support %*pb failed: %d\n",
1744 phylink_an_mode_str(MLO_AN_INBAND),
1745 phy_modes(config.interface),
1746 __ETHTOOL_LINK_MODE_MASK_NBITS, support, ret);
1747 return ret;
1748 }
1749
1750 phylink_dbg(pl, "requesting link mode %s/%s with support %*pb\n",
1751 phylink_an_mode_str(MLO_AN_INBAND),
1752 phy_modes(config.interface),
1753 __ETHTOOL_LINK_MODE_MASK_NBITS, support);
1754
1755 if (phy_interface_mode_is_8023z(iface) && pl->phydev)
1756 return -EINVAL;
1757
1758 changed = !bitmap_equal(pl->supported, support,
1759 __ETHTOOL_LINK_MODE_MASK_NBITS);
1760 if (changed) {
1761 linkmode_copy(pl->supported, support);
1762 linkmode_copy(pl->link_config.advertising, config.advertising);
1763 }
1764
1765 if (pl->link_an_mode != MLO_AN_INBAND ||
1766 pl->link_config.interface != config.interface) {
1767 pl->link_config.interface = config.interface;
1768 pl->link_an_mode = MLO_AN_INBAND;
1769
1770 changed = true;
1771
1772 phylink_info(pl, "switched to %s/%s link mode\n",
1773 phylink_an_mode_str(MLO_AN_INBAND),
1774 phy_modes(config.interface));
1775 }
1776
1777 pl->link_port = port;
1778
1779 if (changed && !test_bit(PHYLINK_DISABLE_STOPPED,
1780 &pl->phylink_disable_state))
1781 phylink_mac_config(pl, &pl->link_config);
1782
1783 return ret;
1784}
1785
1786static void phylink_sfp_link_down(void *upstream)
1787{
1788 struct phylink *pl = upstream;
1789
1790 ASSERT_RTNL();
1791
1792 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_LINK);
1793}
1794
1795static void phylink_sfp_link_up(void *upstream)
1796{
1797 struct phylink *pl = upstream;
1798
1799 ASSERT_RTNL();
1800
1801 clear_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state);
1802 phylink_run_resolve(pl);
1803}
1804
1805static int phylink_sfp_connect_phy(void *upstream, struct phy_device *phy)
1806{
1807 struct phylink *pl = upstream;
1808
1809 return __phylink_connect_phy(upstream, phy, pl->link_config.interface);
1810}
1811
1812static void phylink_sfp_disconnect_phy(void *upstream)
1813{
1814 phylink_disconnect_phy(upstream);
1815}
1816
1817static const struct sfp_upstream_ops sfp_phylink_ops = {
1818 .attach = phylink_sfp_attach,
1819 .detach = phylink_sfp_detach,
1820 .module_insert = phylink_sfp_module_insert,
1821 .link_up = phylink_sfp_link_up,
1822 .link_down = phylink_sfp_link_down,
1823 .connect_phy = phylink_sfp_connect_phy,
1824 .disconnect_phy = phylink_sfp_disconnect_phy,
1825};
1826
1827/* Helpers for MAC drivers */
1828
1829/**
1830 * phylink_helper_basex_speed() - 1000BaseX/2500BaseX helper
1831 * @state: a pointer to a &struct phylink_link_state
1832 *
1833 * Inspect the interface mode, advertising mask or forced speed and
1834 * decide whether to run at 2.5Gbit or 1Gbit appropriately, switching
1835 * the interface mode to suit. @state->interface is appropriately
1836 * updated, and the advertising mask has the "other" baseX_Full flag
1837 * cleared.
1838 */
1839void phylink_helper_basex_speed(struct phylink_link_state *state)
1840{
1841 if (phy_interface_mode_is_8023z(state->interface)) {
1842 bool want_2500 = state->an_enabled ?
1843 phylink_test(state->advertising, 2500baseX_Full) :
1844 state->speed == SPEED_2500;
1845
1846 if (want_2500) {
1847 phylink_clear(state->advertising, 1000baseX_Full);
1848 state->interface = PHY_INTERFACE_MODE_2500BASEX;
1849 } else {
1850 phylink_clear(state->advertising, 2500baseX_Full);
1851 state->interface = PHY_INTERFACE_MODE_1000BASEX;
1852 }
1853 }
1854}
1855EXPORT_SYMBOL_GPL(phylink_helper_basex_speed);
1856
1857MODULE_LICENSE("GPL v2");