xref: /openbmc/linux/drivers/net/phy/phy.c (revision 03dcb90d)
1 // SPDX-License-Identifier: GPL-2.0+
2 /* Framework for configuring and reading PHY devices
3  * Based on code in sungem_phy.c and gianfar_phy.c
4  *
5  * Author: Andy Fleming
6  *
7  * Copyright (c) 2004 Freescale Semiconductor, Inc.
8  * Copyright (c) 2006, 2007  Maciej W. Rozycki
9  */
10 
11 #include <linux/kernel.h>
12 #include <linux/string.h>
13 #include <linux/errno.h>
14 #include <linux/unistd.h>
15 #include <linux/interrupt.h>
16 #include <linux/delay.h>
17 #include <linux/netdevice.h>
18 #include <linux/netlink.h>
19 #include <linux/etherdevice.h>
20 #include <linux/skbuff.h>
21 #include <linux/mm.h>
22 #include <linux/module.h>
23 #include <linux/mii.h>
24 #include <linux/ethtool.h>
25 #include <linux/ethtool_netlink.h>
26 #include <linux/phy.h>
27 #include <linux/phy_led_triggers.h>
28 #include <linux/sfp.h>
29 #include <linux/workqueue.h>
30 #include <linux/mdio.h>
31 #include <linux/io.h>
32 #include <linux/uaccess.h>
33 #include <linux/atomic.h>
34 #include <net/netlink.h>
35 #include <net/genetlink.h>
36 #include <net/sock.h>
37 
38 #define PHY_STATE_TIME	HZ
39 
40 #define PHY_STATE_STR(_state)			\
41 	case PHY_##_state:			\
42 		return __stringify(_state);	\
43 
44 static const char *phy_state_to_str(enum phy_state st)
45 {
46 	switch (st) {
47 	PHY_STATE_STR(DOWN)
48 	PHY_STATE_STR(READY)
49 	PHY_STATE_STR(UP)
50 	PHY_STATE_STR(RUNNING)
51 	PHY_STATE_STR(NOLINK)
52 	PHY_STATE_STR(CABLETEST)
53 	PHY_STATE_STR(HALTED)
54 	}
55 
56 	return NULL;
57 }
58 
59 static void phy_link_up(struct phy_device *phydev)
60 {
61 	phydev->phy_link_change(phydev, true);
62 	phy_led_trigger_change_speed(phydev);
63 }
64 
65 static void phy_link_down(struct phy_device *phydev)
66 {
67 	phydev->phy_link_change(phydev, false);
68 	phy_led_trigger_change_speed(phydev);
69 }
70 
71 static const char *phy_pause_str(struct phy_device *phydev)
72 {
73 	bool local_pause, local_asym_pause;
74 
75 	if (phydev->autoneg == AUTONEG_DISABLE)
76 		goto no_pause;
77 
78 	local_pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
79 					phydev->advertising);
80 	local_asym_pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
81 					     phydev->advertising);
82 
83 	if (local_pause && phydev->pause)
84 		return "rx/tx";
85 
86 	if (local_asym_pause && phydev->asym_pause) {
87 		if (local_pause)
88 			return "rx";
89 		if (phydev->pause)
90 			return "tx";
91 	}
92 
93 no_pause:
94 	return "off";
95 }
96 
97 /**
98  * phy_print_status - Convenience function to print out the current phy status
99  * @phydev: the phy_device struct
100  */
101 void phy_print_status(struct phy_device *phydev)
102 {
103 	if (phydev->link) {
104 		netdev_info(phydev->attached_dev,
105 			"Link is Up - %s/%s %s- flow control %s\n",
106 			phy_speed_to_str(phydev->speed),
107 			phy_duplex_to_str(phydev->duplex),
108 			phydev->downshifted_rate ? "(downshifted) " : "",
109 			phy_pause_str(phydev));
110 	} else	{
111 		netdev_info(phydev->attached_dev, "Link is Down\n");
112 	}
113 }
114 EXPORT_SYMBOL(phy_print_status);
115 
116 /**
117  * phy_config_interrupt - configure the PHY device for the requested interrupts
118  * @phydev: the phy_device struct
119  * @interrupts: interrupt flags to configure for this @phydev
120  *
121  * Returns 0 on success or < 0 on error.
122  */
123 static int phy_config_interrupt(struct phy_device *phydev, bool interrupts)
124 {
125 	phydev->interrupts = interrupts ? 1 : 0;
126 	if (phydev->drv->config_intr)
127 		return phydev->drv->config_intr(phydev);
128 
129 	return 0;
130 }
131 
132 /**
133  * phy_restart_aneg - restart auto-negotiation
134  * @phydev: target phy_device struct
135  *
136  * Restart the autonegotiation on @phydev.  Returns >= 0 on success or
137  * negative errno on error.
138  */
139 int phy_restart_aneg(struct phy_device *phydev)
140 {
141 	int ret;
142 
143 	if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
144 		ret = genphy_c45_restart_aneg(phydev);
145 	else
146 		ret = genphy_restart_aneg(phydev);
147 
148 	return ret;
149 }
150 EXPORT_SYMBOL_GPL(phy_restart_aneg);
151 
152 /**
153  * phy_aneg_done - return auto-negotiation status
154  * @phydev: target phy_device struct
155  *
156  * Description: Return the auto-negotiation status from this @phydev
157  * Returns > 0 on success or < 0 on error. 0 means that auto-negotiation
158  * is still pending.
159  */
160 int phy_aneg_done(struct phy_device *phydev)
161 {
162 	if (phydev->drv && phydev->drv->aneg_done)
163 		return phydev->drv->aneg_done(phydev);
164 	else if (phydev->is_c45)
165 		return genphy_c45_aneg_done(phydev);
166 	else
167 		return genphy_aneg_done(phydev);
168 }
169 EXPORT_SYMBOL(phy_aneg_done);
170 
171 /**
172  * phy_find_valid - find a PHY setting that matches the requested parameters
173  * @speed: desired speed
174  * @duplex: desired duplex
175  * @supported: mask of supported link modes
176  *
177  * Locate a supported phy setting that is, in priority order:
178  * - an exact match for the specified speed and duplex mode
179  * - a match for the specified speed, or slower speed
180  * - the slowest supported speed
181  * Returns the matched phy_setting entry, or %NULL if no supported phy
182  * settings were found.
183  */
184 static const struct phy_setting *
185 phy_find_valid(int speed, int duplex, unsigned long *supported)
186 {
187 	return phy_lookup_setting(speed, duplex, supported, false);
188 }
189 
190 /**
191  * phy_supported_speeds - return all speeds currently supported by a phy device
192  * @phy: The phy device to return supported speeds of.
193  * @speeds: buffer to store supported speeds in.
194  * @size:   size of speeds buffer.
195  *
196  * Description: Returns the number of supported speeds, and fills the speeds
197  * buffer with the supported speeds. If speeds buffer is too small to contain
198  * all currently supported speeds, will return as many speeds as can fit.
199  */
200 unsigned int phy_supported_speeds(struct phy_device *phy,
201 				  unsigned int *speeds,
202 				  unsigned int size)
203 {
204 	return phy_speeds(speeds, size, phy->supported);
205 }
206 
207 /**
208  * phy_check_valid - check if there is a valid PHY setting which matches
209  *		     speed, duplex, and feature mask
210  * @speed: speed to match
211  * @duplex: duplex to match
212  * @features: A mask of the valid settings
213  *
214  * Description: Returns true if there is a valid setting, false otherwise.
215  */
216 static inline bool phy_check_valid(int speed, int duplex,
217 				   unsigned long *features)
218 {
219 	return !!phy_lookup_setting(speed, duplex, features, true);
220 }
221 
222 /**
223  * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
224  * @phydev: the target phy_device struct
225  *
226  * Description: Make sure the PHY is set to supported speeds and
227  *   duplexes.  Drop down by one in this order:  1000/FULL,
228  *   1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
229  */
230 static void phy_sanitize_settings(struct phy_device *phydev)
231 {
232 	const struct phy_setting *setting;
233 
234 	setting = phy_find_valid(phydev->speed, phydev->duplex,
235 				 phydev->supported);
236 	if (setting) {
237 		phydev->speed = setting->speed;
238 		phydev->duplex = setting->duplex;
239 	} else {
240 		/* We failed to find anything (no supported speeds?) */
241 		phydev->speed = SPEED_UNKNOWN;
242 		phydev->duplex = DUPLEX_UNKNOWN;
243 	}
244 }
245 
246 void phy_ethtool_ksettings_get(struct phy_device *phydev,
247 			       struct ethtool_link_ksettings *cmd)
248 {
249 	mutex_lock(&phydev->lock);
250 	linkmode_copy(cmd->link_modes.supported, phydev->supported);
251 	linkmode_copy(cmd->link_modes.advertising, phydev->advertising);
252 	linkmode_copy(cmd->link_modes.lp_advertising, phydev->lp_advertising);
253 
254 	cmd->base.speed = phydev->speed;
255 	cmd->base.duplex = phydev->duplex;
256 	cmd->base.master_slave_cfg = phydev->master_slave_get;
257 	cmd->base.master_slave_state = phydev->master_slave_state;
258 	if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
259 		cmd->base.port = PORT_BNC;
260 	else
261 		cmd->base.port = phydev->port;
262 	cmd->base.transceiver = phy_is_internal(phydev) ?
263 				XCVR_INTERNAL : XCVR_EXTERNAL;
264 	cmd->base.phy_address = phydev->mdio.addr;
265 	cmd->base.autoneg = phydev->autoneg;
266 	cmd->base.eth_tp_mdix_ctrl = phydev->mdix_ctrl;
267 	cmd->base.eth_tp_mdix = phydev->mdix;
268 	mutex_unlock(&phydev->lock);
269 }
270 EXPORT_SYMBOL(phy_ethtool_ksettings_get);
271 
272 /**
273  * phy_mii_ioctl - generic PHY MII ioctl interface
274  * @phydev: the phy_device struct
275  * @ifr: &struct ifreq for socket ioctl's
276  * @cmd: ioctl cmd to execute
277  *
278  * Note that this function is currently incompatible with the
279  * PHYCONTROL layer.  It changes registers without regard to
280  * current state.  Use at own risk.
281  */
282 int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
283 {
284 	struct mii_ioctl_data *mii_data = if_mii(ifr);
285 	u16 val = mii_data->val_in;
286 	bool change_autoneg = false;
287 	int prtad, devad;
288 
289 	switch (cmd) {
290 	case SIOCGMIIPHY:
291 		mii_data->phy_id = phydev->mdio.addr;
292 		fallthrough;
293 
294 	case SIOCGMIIREG:
295 		if (mdio_phy_id_is_c45(mii_data->phy_id)) {
296 			prtad = mdio_phy_id_prtad(mii_data->phy_id);
297 			devad = mdio_phy_id_devad(mii_data->phy_id);
298 			mii_data->val_out = mdiobus_c45_read(
299 				phydev->mdio.bus, prtad, devad,
300 				mii_data->reg_num);
301 		} else {
302 			mii_data->val_out = mdiobus_read(
303 				phydev->mdio.bus, mii_data->phy_id,
304 				mii_data->reg_num);
305 		}
306 		return 0;
307 
308 	case SIOCSMIIREG:
309 		if (mdio_phy_id_is_c45(mii_data->phy_id)) {
310 			prtad = mdio_phy_id_prtad(mii_data->phy_id);
311 			devad = mdio_phy_id_devad(mii_data->phy_id);
312 		} else {
313 			prtad = mii_data->phy_id;
314 			devad = mii_data->reg_num;
315 		}
316 		if (prtad == phydev->mdio.addr) {
317 			switch (devad) {
318 			case MII_BMCR:
319 				if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
320 					if (phydev->autoneg == AUTONEG_ENABLE)
321 						change_autoneg = true;
322 					phydev->autoneg = AUTONEG_DISABLE;
323 					if (val & BMCR_FULLDPLX)
324 						phydev->duplex = DUPLEX_FULL;
325 					else
326 						phydev->duplex = DUPLEX_HALF;
327 					if (val & BMCR_SPEED1000)
328 						phydev->speed = SPEED_1000;
329 					else if (val & BMCR_SPEED100)
330 						phydev->speed = SPEED_100;
331 					else phydev->speed = SPEED_10;
332 				} else {
333 					if (phydev->autoneg == AUTONEG_DISABLE)
334 						change_autoneg = true;
335 					phydev->autoneg = AUTONEG_ENABLE;
336 				}
337 				break;
338 			case MII_ADVERTISE:
339 				mii_adv_mod_linkmode_adv_t(phydev->advertising,
340 							   val);
341 				change_autoneg = true;
342 				break;
343 			case MII_CTRL1000:
344 				mii_ctrl1000_mod_linkmode_adv_t(phydev->advertising,
345 							        val);
346 				change_autoneg = true;
347 				break;
348 			default:
349 				/* do nothing */
350 				break;
351 			}
352 		}
353 
354 		if (mdio_phy_id_is_c45(mii_data->phy_id))
355 			mdiobus_c45_write(phydev->mdio.bus, prtad, devad,
356 					  mii_data->reg_num, val);
357 		else
358 			mdiobus_write(phydev->mdio.bus, prtad, devad, val);
359 
360 		if (prtad == phydev->mdio.addr &&
361 		    devad == MII_BMCR &&
362 		    val & BMCR_RESET)
363 			return phy_init_hw(phydev);
364 
365 		if (change_autoneg)
366 			return phy_start_aneg(phydev);
367 
368 		return 0;
369 
370 	case SIOCSHWTSTAMP:
371 		if (phydev->mii_ts && phydev->mii_ts->hwtstamp)
372 			return phydev->mii_ts->hwtstamp(phydev->mii_ts, ifr);
373 		fallthrough;
374 
375 	default:
376 		return -EOPNOTSUPP;
377 	}
378 }
379 EXPORT_SYMBOL(phy_mii_ioctl);
380 
381 /**
382  * phy_do_ioctl - generic ndo_eth_ioctl implementation
383  * @dev: the net_device struct
384  * @ifr: &struct ifreq for socket ioctl's
385  * @cmd: ioctl cmd to execute
386  */
387 int phy_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
388 {
389 	if (!dev->phydev)
390 		return -ENODEV;
391 
392 	return phy_mii_ioctl(dev->phydev, ifr, cmd);
393 }
394 EXPORT_SYMBOL(phy_do_ioctl);
395 
396 /**
397  * phy_do_ioctl_running - generic ndo_eth_ioctl implementation but test first
398  *
399  * @dev: the net_device struct
400  * @ifr: &struct ifreq for socket ioctl's
401  * @cmd: ioctl cmd to execute
402  *
403  * Same as phy_do_ioctl, but ensures that net_device is running before
404  * handling the ioctl.
405  */
406 int phy_do_ioctl_running(struct net_device *dev, struct ifreq *ifr, int cmd)
407 {
408 	if (!netif_running(dev))
409 		return -ENODEV;
410 
411 	return phy_do_ioctl(dev, ifr, cmd);
412 }
413 EXPORT_SYMBOL(phy_do_ioctl_running);
414 
415 /**
416  * phy_queue_state_machine - Trigger the state machine to run soon
417  *
418  * @phydev: the phy_device struct
419  * @jiffies: Run the state machine after these jiffies
420  */
421 void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies)
422 {
423 	mod_delayed_work(system_power_efficient_wq, &phydev->state_queue,
424 			 jiffies);
425 }
426 EXPORT_SYMBOL(phy_queue_state_machine);
427 
428 /**
429  * phy_trigger_machine - Trigger the state machine to run now
430  *
431  * @phydev: the phy_device struct
432  */
433 void phy_trigger_machine(struct phy_device *phydev)
434 {
435 	phy_queue_state_machine(phydev, 0);
436 }
437 EXPORT_SYMBOL(phy_trigger_machine);
438 
439 static void phy_abort_cable_test(struct phy_device *phydev)
440 {
441 	int err;
442 
443 	ethnl_cable_test_finished(phydev);
444 
445 	err = phy_init_hw(phydev);
446 	if (err)
447 		phydev_err(phydev, "Error while aborting cable test");
448 }
449 
450 /**
451  * phy_ethtool_get_strings - Get the statistic counter names
452  *
453  * @phydev: the phy_device struct
454  * @data: Where to put the strings
455  */
456 int phy_ethtool_get_strings(struct phy_device *phydev, u8 *data)
457 {
458 	if (!phydev->drv)
459 		return -EIO;
460 
461 	mutex_lock(&phydev->lock);
462 	phydev->drv->get_strings(phydev, data);
463 	mutex_unlock(&phydev->lock);
464 
465 	return 0;
466 }
467 EXPORT_SYMBOL(phy_ethtool_get_strings);
468 
469 /**
470  * phy_ethtool_get_sset_count - Get the number of statistic counters
471  *
472  * @phydev: the phy_device struct
473  */
474 int phy_ethtool_get_sset_count(struct phy_device *phydev)
475 {
476 	int ret;
477 
478 	if (!phydev->drv)
479 		return -EIO;
480 
481 	if (phydev->drv->get_sset_count &&
482 	    phydev->drv->get_strings &&
483 	    phydev->drv->get_stats) {
484 		mutex_lock(&phydev->lock);
485 		ret = phydev->drv->get_sset_count(phydev);
486 		mutex_unlock(&phydev->lock);
487 
488 		return ret;
489 	}
490 
491 	return -EOPNOTSUPP;
492 }
493 EXPORT_SYMBOL(phy_ethtool_get_sset_count);
494 
495 /**
496  * phy_ethtool_get_stats - Get the statistic counters
497  *
498  * @phydev: the phy_device struct
499  * @stats: What counters to get
500  * @data: Where to store the counters
501  */
502 int phy_ethtool_get_stats(struct phy_device *phydev,
503 			  struct ethtool_stats *stats, u64 *data)
504 {
505 	if (!phydev->drv)
506 		return -EIO;
507 
508 	mutex_lock(&phydev->lock);
509 	phydev->drv->get_stats(phydev, stats, data);
510 	mutex_unlock(&phydev->lock);
511 
512 	return 0;
513 }
514 EXPORT_SYMBOL(phy_ethtool_get_stats);
515 
516 /**
517  * phy_start_cable_test - Start a cable test
518  *
519  * @phydev: the phy_device struct
520  * @extack: extack for reporting useful error messages
521  */
522 int phy_start_cable_test(struct phy_device *phydev,
523 			 struct netlink_ext_ack *extack)
524 {
525 	struct net_device *dev = phydev->attached_dev;
526 	int err = -ENOMEM;
527 
528 	if (!(phydev->drv &&
529 	      phydev->drv->cable_test_start &&
530 	      phydev->drv->cable_test_get_status)) {
531 		NL_SET_ERR_MSG(extack,
532 			       "PHY driver does not support cable testing");
533 		return -EOPNOTSUPP;
534 	}
535 
536 	mutex_lock(&phydev->lock);
537 	if (phydev->state == PHY_CABLETEST) {
538 		NL_SET_ERR_MSG(extack,
539 			       "PHY already performing a test");
540 		err = -EBUSY;
541 		goto out;
542 	}
543 
544 	if (phydev->state < PHY_UP ||
545 	    phydev->state > PHY_CABLETEST) {
546 		NL_SET_ERR_MSG(extack,
547 			       "PHY not configured. Try setting interface up");
548 		err = -EBUSY;
549 		goto out;
550 	}
551 
552 	err = ethnl_cable_test_alloc(phydev, ETHTOOL_MSG_CABLE_TEST_NTF);
553 	if (err)
554 		goto out;
555 
556 	/* Mark the carrier down until the test is complete */
557 	phy_link_down(phydev);
558 
559 	netif_testing_on(dev);
560 	err = phydev->drv->cable_test_start(phydev);
561 	if (err) {
562 		netif_testing_off(dev);
563 		phy_link_up(phydev);
564 		goto out_free;
565 	}
566 
567 	phydev->state = PHY_CABLETEST;
568 
569 	if (phy_polling_mode(phydev))
570 		phy_trigger_machine(phydev);
571 
572 	mutex_unlock(&phydev->lock);
573 
574 	return 0;
575 
576 out_free:
577 	ethnl_cable_test_free(phydev);
578 out:
579 	mutex_unlock(&phydev->lock);
580 
581 	return err;
582 }
583 EXPORT_SYMBOL(phy_start_cable_test);
584 
585 /**
586  * phy_start_cable_test_tdr - Start a raw TDR cable test
587  *
588  * @phydev: the phy_device struct
589  * @extack: extack for reporting useful error messages
590  * @config: Configuration of the test to run
591  */
592 int phy_start_cable_test_tdr(struct phy_device *phydev,
593 			     struct netlink_ext_ack *extack,
594 			     const struct phy_tdr_config *config)
595 {
596 	struct net_device *dev = phydev->attached_dev;
597 	int err = -ENOMEM;
598 
599 	if (!(phydev->drv &&
600 	      phydev->drv->cable_test_tdr_start &&
601 	      phydev->drv->cable_test_get_status)) {
602 		NL_SET_ERR_MSG(extack,
603 			       "PHY driver does not support cable test TDR");
604 		return -EOPNOTSUPP;
605 	}
606 
607 	mutex_lock(&phydev->lock);
608 	if (phydev->state == PHY_CABLETEST) {
609 		NL_SET_ERR_MSG(extack,
610 			       "PHY already performing a test");
611 		err = -EBUSY;
612 		goto out;
613 	}
614 
615 	if (phydev->state < PHY_UP ||
616 	    phydev->state > PHY_CABLETEST) {
617 		NL_SET_ERR_MSG(extack,
618 			       "PHY not configured. Try setting interface up");
619 		err = -EBUSY;
620 		goto out;
621 	}
622 
623 	err = ethnl_cable_test_alloc(phydev, ETHTOOL_MSG_CABLE_TEST_TDR_NTF);
624 	if (err)
625 		goto out;
626 
627 	/* Mark the carrier down until the test is complete */
628 	phy_link_down(phydev);
629 
630 	netif_testing_on(dev);
631 	err = phydev->drv->cable_test_tdr_start(phydev, config);
632 	if (err) {
633 		netif_testing_off(dev);
634 		phy_link_up(phydev);
635 		goto out_free;
636 	}
637 
638 	phydev->state = PHY_CABLETEST;
639 
640 	if (phy_polling_mode(phydev))
641 		phy_trigger_machine(phydev);
642 
643 	mutex_unlock(&phydev->lock);
644 
645 	return 0;
646 
647 out_free:
648 	ethnl_cable_test_free(phydev);
649 out:
650 	mutex_unlock(&phydev->lock);
651 
652 	return err;
653 }
654 EXPORT_SYMBOL(phy_start_cable_test_tdr);
655 
656 int phy_config_aneg(struct phy_device *phydev)
657 {
658 	if (phydev->drv->config_aneg)
659 		return phydev->drv->config_aneg(phydev);
660 
661 	/* Clause 45 PHYs that don't implement Clause 22 registers are not
662 	 * allowed to call genphy_config_aneg()
663 	 */
664 	if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
665 		return genphy_c45_config_aneg(phydev);
666 
667 	return genphy_config_aneg(phydev);
668 }
669 EXPORT_SYMBOL(phy_config_aneg);
670 
671 /**
672  * phy_check_link_status - check link status and set state accordingly
673  * @phydev: the phy_device struct
674  *
675  * Description: Check for link and whether autoneg was triggered / is running
676  * and set state accordingly
677  */
678 static int phy_check_link_status(struct phy_device *phydev)
679 {
680 	int err;
681 
682 	lockdep_assert_held(&phydev->lock);
683 
684 	/* Keep previous state if loopback is enabled because some PHYs
685 	 * report that Link is Down when loopback is enabled.
686 	 */
687 	if (phydev->loopback_enabled)
688 		return 0;
689 
690 	err = phy_read_status(phydev);
691 	if (err)
692 		return err;
693 
694 	if (phydev->link && phydev->state != PHY_RUNNING) {
695 		phy_check_downshift(phydev);
696 		phydev->state = PHY_RUNNING;
697 		phy_link_up(phydev);
698 	} else if (!phydev->link && phydev->state != PHY_NOLINK) {
699 		phydev->state = PHY_NOLINK;
700 		phy_link_down(phydev);
701 	}
702 
703 	return 0;
704 }
705 
706 /**
707  * _phy_start_aneg - start auto-negotiation for this PHY device
708  * @phydev: the phy_device struct
709  *
710  * Description: Sanitizes the settings (if we're not autonegotiating
711  *   them), and then calls the driver's config_aneg function.
712  *   If the PHYCONTROL Layer is operating, we change the state to
713  *   reflect the beginning of Auto-negotiation or forcing.
714  */
715 static int _phy_start_aneg(struct phy_device *phydev)
716 {
717 	int err;
718 
719 	lockdep_assert_held(&phydev->lock);
720 
721 	if (!phydev->drv)
722 		return -EIO;
723 
724 	if (AUTONEG_DISABLE == phydev->autoneg)
725 		phy_sanitize_settings(phydev);
726 
727 	err = phy_config_aneg(phydev);
728 	if (err < 0)
729 		return err;
730 
731 	if (phy_is_started(phydev))
732 		err = phy_check_link_status(phydev);
733 
734 	return err;
735 }
736 
737 /**
738  * phy_start_aneg - start auto-negotiation for this PHY device
739  * @phydev: the phy_device struct
740  *
741  * Description: Sanitizes the settings (if we're not autonegotiating
742  *   them), and then calls the driver's config_aneg function.
743  *   If the PHYCONTROL Layer is operating, we change the state to
744  *   reflect the beginning of Auto-negotiation or forcing.
745  */
746 int phy_start_aneg(struct phy_device *phydev)
747 {
748 	int err;
749 
750 	mutex_lock(&phydev->lock);
751 	err = _phy_start_aneg(phydev);
752 	mutex_unlock(&phydev->lock);
753 
754 	return err;
755 }
756 EXPORT_SYMBOL(phy_start_aneg);
757 
758 static int phy_poll_aneg_done(struct phy_device *phydev)
759 {
760 	unsigned int retries = 100;
761 	int ret;
762 
763 	do {
764 		msleep(100);
765 		ret = phy_aneg_done(phydev);
766 	} while (!ret && --retries);
767 
768 	if (!ret)
769 		return -ETIMEDOUT;
770 
771 	return ret < 0 ? ret : 0;
772 }
773 
774 int phy_ethtool_ksettings_set(struct phy_device *phydev,
775 			      const struct ethtool_link_ksettings *cmd)
776 {
777 	__ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
778 	u8 autoneg = cmd->base.autoneg;
779 	u8 duplex = cmd->base.duplex;
780 	u32 speed = cmd->base.speed;
781 
782 	if (cmd->base.phy_address != phydev->mdio.addr)
783 		return -EINVAL;
784 
785 	linkmode_copy(advertising, cmd->link_modes.advertising);
786 
787 	/* We make sure that we don't pass unsupported values in to the PHY */
788 	linkmode_and(advertising, advertising, phydev->supported);
789 
790 	/* Verify the settings we care about. */
791 	if (autoneg != AUTONEG_ENABLE && autoneg != AUTONEG_DISABLE)
792 		return -EINVAL;
793 
794 	if (autoneg == AUTONEG_ENABLE && linkmode_empty(advertising))
795 		return -EINVAL;
796 
797 	if (autoneg == AUTONEG_DISABLE &&
798 	    ((speed != SPEED_1000 &&
799 	      speed != SPEED_100 &&
800 	      speed != SPEED_10) ||
801 	     (duplex != DUPLEX_HALF &&
802 	      duplex != DUPLEX_FULL)))
803 		return -EINVAL;
804 
805 	mutex_lock(&phydev->lock);
806 	phydev->autoneg = autoneg;
807 
808 	if (autoneg == AUTONEG_DISABLE) {
809 		phydev->speed = speed;
810 		phydev->duplex = duplex;
811 	}
812 
813 	linkmode_copy(phydev->advertising, advertising);
814 
815 	linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
816 			 phydev->advertising, autoneg == AUTONEG_ENABLE);
817 
818 	phydev->master_slave_set = cmd->base.master_slave_cfg;
819 	phydev->mdix_ctrl = cmd->base.eth_tp_mdix_ctrl;
820 
821 	/* Restart the PHY */
822 	if (phy_is_started(phydev)) {
823 		phydev->state = PHY_UP;
824 		phy_trigger_machine(phydev);
825 	} else {
826 		_phy_start_aneg(phydev);
827 	}
828 
829 	mutex_unlock(&phydev->lock);
830 	return 0;
831 }
832 EXPORT_SYMBOL(phy_ethtool_ksettings_set);
833 
834 /**
835  * phy_speed_down - set speed to lowest speed supported by both link partners
836  * @phydev: the phy_device struct
837  * @sync: perform action synchronously
838  *
839  * Description: Typically used to save energy when waiting for a WoL packet
840  *
841  * WARNING: Setting sync to false may cause the system being unable to suspend
842  * in case the PHY generates an interrupt when finishing the autonegotiation.
843  * This interrupt may wake up the system immediately after suspend.
844  * Therefore use sync = false only if you're sure it's safe with the respective
845  * network chip.
846  */
847 int phy_speed_down(struct phy_device *phydev, bool sync)
848 {
849 	__ETHTOOL_DECLARE_LINK_MODE_MASK(adv_tmp);
850 	int ret;
851 
852 	if (phydev->autoneg != AUTONEG_ENABLE)
853 		return 0;
854 
855 	linkmode_copy(adv_tmp, phydev->advertising);
856 
857 	ret = phy_speed_down_core(phydev);
858 	if (ret)
859 		return ret;
860 
861 	linkmode_copy(phydev->adv_old, adv_tmp);
862 
863 	if (linkmode_equal(phydev->advertising, adv_tmp))
864 		return 0;
865 
866 	ret = phy_config_aneg(phydev);
867 	if (ret)
868 		return ret;
869 
870 	return sync ? phy_poll_aneg_done(phydev) : 0;
871 }
872 EXPORT_SYMBOL_GPL(phy_speed_down);
873 
874 /**
875  * phy_speed_up - (re)set advertised speeds to all supported speeds
876  * @phydev: the phy_device struct
877  *
878  * Description: Used to revert the effect of phy_speed_down
879  */
880 int phy_speed_up(struct phy_device *phydev)
881 {
882 	__ETHTOOL_DECLARE_LINK_MODE_MASK(adv_tmp);
883 
884 	if (phydev->autoneg != AUTONEG_ENABLE)
885 		return 0;
886 
887 	if (linkmode_empty(phydev->adv_old))
888 		return 0;
889 
890 	linkmode_copy(adv_tmp, phydev->advertising);
891 	linkmode_copy(phydev->advertising, phydev->adv_old);
892 	linkmode_zero(phydev->adv_old);
893 
894 	if (linkmode_equal(phydev->advertising, adv_tmp))
895 		return 0;
896 
897 	return phy_config_aneg(phydev);
898 }
899 EXPORT_SYMBOL_GPL(phy_speed_up);
900 
901 /**
902  * phy_start_machine - start PHY state machine tracking
903  * @phydev: the phy_device struct
904  *
905  * Description: The PHY infrastructure can run a state machine
906  *   which tracks whether the PHY is starting up, negotiating,
907  *   etc.  This function starts the delayed workqueue which tracks
908  *   the state of the PHY. If you want to maintain your own state machine,
909  *   do not call this function.
910  */
911 void phy_start_machine(struct phy_device *phydev)
912 {
913 	phy_trigger_machine(phydev);
914 }
915 EXPORT_SYMBOL_GPL(phy_start_machine);
916 
917 /**
918  * phy_stop_machine - stop the PHY state machine tracking
919  * @phydev: target phy_device struct
920  *
921  * Description: Stops the state machine delayed workqueue, sets the
922  *   state to UP (unless it wasn't up yet). This function must be
923  *   called BEFORE phy_detach.
924  */
925 void phy_stop_machine(struct phy_device *phydev)
926 {
927 	cancel_delayed_work_sync(&phydev->state_queue);
928 
929 	mutex_lock(&phydev->lock);
930 	if (phy_is_started(phydev))
931 		phydev->state = PHY_UP;
932 	mutex_unlock(&phydev->lock);
933 }
934 
935 /**
936  * phy_error - enter HALTED state for this PHY device
937  * @phydev: target phy_device struct
938  *
939  * Moves the PHY to the HALTED state in response to a read
940  * or write error, and tells the controller the link is down.
941  * Must not be called from interrupt context, or while the
942  * phydev->lock is held.
943  */
944 void phy_error(struct phy_device *phydev)
945 {
946 	WARN_ON(1);
947 
948 	mutex_lock(&phydev->lock);
949 	phydev->state = PHY_HALTED;
950 	mutex_unlock(&phydev->lock);
951 
952 	phy_trigger_machine(phydev);
953 }
954 EXPORT_SYMBOL(phy_error);
955 
956 /**
957  * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
958  * @phydev: target phy_device struct
959  */
960 int phy_disable_interrupts(struct phy_device *phydev)
961 {
962 	/* Disable PHY interrupts */
963 	return phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
964 }
965 
966 /**
967  * phy_interrupt - PHY interrupt handler
968  * @irq: interrupt line
969  * @phy_dat: phy_device pointer
970  *
971  * Description: Handle PHY interrupt
972  */
973 static irqreturn_t phy_interrupt(int irq, void *phy_dat)
974 {
975 	struct phy_device *phydev = phy_dat;
976 	struct phy_driver *drv = phydev->drv;
977 
978 	return drv->handle_interrupt(phydev);
979 }
980 
981 /**
982  * phy_enable_interrupts - Enable the interrupts from the PHY side
983  * @phydev: target phy_device struct
984  */
985 static int phy_enable_interrupts(struct phy_device *phydev)
986 {
987 	return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
988 }
989 
990 /**
991  * phy_request_interrupt - request and enable interrupt for a PHY device
992  * @phydev: target phy_device struct
993  *
994  * Description: Request and enable the interrupt for the given PHY.
995  *   If this fails, then we set irq to PHY_POLL.
996  *   This should only be called with a valid IRQ number.
997  */
998 void phy_request_interrupt(struct phy_device *phydev)
999 {
1000 	int err;
1001 
1002 	err = request_threaded_irq(phydev->irq, NULL, phy_interrupt,
1003 				   IRQF_ONESHOT | IRQF_SHARED,
1004 				   phydev_name(phydev), phydev);
1005 	if (err) {
1006 		phydev_warn(phydev, "Error %d requesting IRQ %d, falling back to polling\n",
1007 			    err, phydev->irq);
1008 		phydev->irq = PHY_POLL;
1009 	} else {
1010 		if (phy_enable_interrupts(phydev)) {
1011 			phydev_warn(phydev, "Can't enable interrupt, falling back to polling\n");
1012 			phy_free_interrupt(phydev);
1013 			phydev->irq = PHY_POLL;
1014 		}
1015 	}
1016 }
1017 EXPORT_SYMBOL(phy_request_interrupt);
1018 
1019 /**
1020  * phy_free_interrupt - disable and free interrupt for a PHY device
1021  * @phydev: target phy_device struct
1022  *
1023  * Description: Disable and free the interrupt for the given PHY.
1024  *   This should only be called with a valid IRQ number.
1025  */
1026 void phy_free_interrupt(struct phy_device *phydev)
1027 {
1028 	phy_disable_interrupts(phydev);
1029 	free_irq(phydev->irq, phydev);
1030 }
1031 EXPORT_SYMBOL(phy_free_interrupt);
1032 
1033 /**
1034  * phy_stop - Bring down the PHY link, and stop checking the status
1035  * @phydev: target phy_device struct
1036  */
1037 void phy_stop(struct phy_device *phydev)
1038 {
1039 	struct net_device *dev = phydev->attached_dev;
1040 
1041 	if (!phy_is_started(phydev) && phydev->state != PHY_DOWN) {
1042 		WARN(1, "called from state %s\n",
1043 		     phy_state_to_str(phydev->state));
1044 		return;
1045 	}
1046 
1047 	mutex_lock(&phydev->lock);
1048 
1049 	if (phydev->state == PHY_CABLETEST) {
1050 		phy_abort_cable_test(phydev);
1051 		netif_testing_off(dev);
1052 	}
1053 
1054 	if (phydev->sfp_bus)
1055 		sfp_upstream_stop(phydev->sfp_bus);
1056 
1057 	phydev->state = PHY_HALTED;
1058 
1059 	mutex_unlock(&phydev->lock);
1060 
1061 	phy_state_machine(&phydev->state_queue.work);
1062 	phy_stop_machine(phydev);
1063 
1064 	/* Cannot call flush_scheduled_work() here as desired because
1065 	 * of rtnl_lock(), but PHY_HALTED shall guarantee irq handler
1066 	 * will not reenable interrupts.
1067 	 */
1068 }
1069 EXPORT_SYMBOL(phy_stop);
1070 
1071 /**
1072  * phy_start - start or restart a PHY device
1073  * @phydev: target phy_device struct
1074  *
1075  * Description: Indicates the attached device's readiness to
1076  *   handle PHY-related work.  Used during startup to start the
1077  *   PHY, and after a call to phy_stop() to resume operation.
1078  *   Also used to indicate the MDIO bus has cleared an error
1079  *   condition.
1080  */
1081 void phy_start(struct phy_device *phydev)
1082 {
1083 	mutex_lock(&phydev->lock);
1084 
1085 	if (phydev->state != PHY_READY && phydev->state != PHY_HALTED) {
1086 		WARN(1, "called from state %s\n",
1087 		     phy_state_to_str(phydev->state));
1088 		goto out;
1089 	}
1090 
1091 	if (phydev->sfp_bus)
1092 		sfp_upstream_start(phydev->sfp_bus);
1093 
1094 	/* if phy was suspended, bring the physical link up again */
1095 	__phy_resume(phydev);
1096 
1097 	phydev->state = PHY_UP;
1098 
1099 	phy_start_machine(phydev);
1100 out:
1101 	mutex_unlock(&phydev->lock);
1102 }
1103 EXPORT_SYMBOL(phy_start);
1104 
1105 /**
1106  * phy_state_machine - Handle the state machine
1107  * @work: work_struct that describes the work to be done
1108  */
1109 void phy_state_machine(struct work_struct *work)
1110 {
1111 	struct delayed_work *dwork = to_delayed_work(work);
1112 	struct phy_device *phydev =
1113 			container_of(dwork, struct phy_device, state_queue);
1114 	struct net_device *dev = phydev->attached_dev;
1115 	bool needs_aneg = false, do_suspend = false;
1116 	enum phy_state old_state;
1117 	bool finished = false;
1118 	int err = 0;
1119 
1120 	mutex_lock(&phydev->lock);
1121 
1122 	old_state = phydev->state;
1123 
1124 	switch (phydev->state) {
1125 	case PHY_DOWN:
1126 	case PHY_READY:
1127 		break;
1128 	case PHY_UP:
1129 		needs_aneg = true;
1130 
1131 		break;
1132 	case PHY_NOLINK:
1133 	case PHY_RUNNING:
1134 		err = phy_check_link_status(phydev);
1135 		break;
1136 	case PHY_CABLETEST:
1137 		err = phydev->drv->cable_test_get_status(phydev, &finished);
1138 		if (err) {
1139 			phy_abort_cable_test(phydev);
1140 			netif_testing_off(dev);
1141 			needs_aneg = true;
1142 			phydev->state = PHY_UP;
1143 			break;
1144 		}
1145 
1146 		if (finished) {
1147 			ethnl_cable_test_finished(phydev);
1148 			netif_testing_off(dev);
1149 			needs_aneg = true;
1150 			phydev->state = PHY_UP;
1151 		}
1152 		break;
1153 	case PHY_HALTED:
1154 		if (phydev->link) {
1155 			phydev->link = 0;
1156 			phy_link_down(phydev);
1157 		}
1158 		do_suspend = true;
1159 		break;
1160 	}
1161 
1162 	mutex_unlock(&phydev->lock);
1163 
1164 	if (needs_aneg)
1165 		err = phy_start_aneg(phydev);
1166 	else if (do_suspend)
1167 		phy_suspend(phydev);
1168 
1169 	if (err == -ENODEV)
1170 		return;
1171 
1172 	if (err < 0)
1173 		phy_error(phydev);
1174 
1175 	if (old_state != phydev->state) {
1176 		phydev_dbg(phydev, "PHY state change %s -> %s\n",
1177 			   phy_state_to_str(old_state),
1178 			   phy_state_to_str(phydev->state));
1179 		if (phydev->drv && phydev->drv->link_change_notify)
1180 			phydev->drv->link_change_notify(phydev);
1181 	}
1182 
1183 	/* Only re-schedule a PHY state machine change if we are polling the
1184 	 * PHY, if PHY_MAC_INTERRUPT is set, then we will be moving
1185 	 * between states from phy_mac_interrupt().
1186 	 *
1187 	 * In state PHY_HALTED the PHY gets suspended, so rescheduling the
1188 	 * state machine would be pointless and possibly error prone when
1189 	 * called from phy_disconnect() synchronously.
1190 	 */
1191 	mutex_lock(&phydev->lock);
1192 	if (phy_polling_mode(phydev) && phy_is_started(phydev))
1193 		phy_queue_state_machine(phydev, PHY_STATE_TIME);
1194 	mutex_unlock(&phydev->lock);
1195 }
1196 
1197 /**
1198  * phy_mac_interrupt - MAC says the link has changed
1199  * @phydev: phy_device struct with changed link
1200  *
1201  * The MAC layer is able to indicate there has been a change in the PHY link
1202  * status. Trigger the state machine and work a work queue.
1203  */
1204 void phy_mac_interrupt(struct phy_device *phydev)
1205 {
1206 	/* Trigger a state machine change */
1207 	phy_trigger_machine(phydev);
1208 }
1209 EXPORT_SYMBOL(phy_mac_interrupt);
1210 
1211 static void mmd_eee_adv_to_linkmode(unsigned long *advertising, u16 eee_adv)
1212 {
1213 	linkmode_zero(advertising);
1214 
1215 	if (eee_adv & MDIO_EEE_100TX)
1216 		linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
1217 				 advertising);
1218 	if (eee_adv & MDIO_EEE_1000T)
1219 		linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1220 				 advertising);
1221 	if (eee_adv & MDIO_EEE_10GT)
1222 		linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
1223 				 advertising);
1224 	if (eee_adv & MDIO_EEE_1000KX)
1225 		linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseKX_Full_BIT,
1226 				 advertising);
1227 	if (eee_adv & MDIO_EEE_10GKX4)
1228 		linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT,
1229 				 advertising);
1230 	if (eee_adv & MDIO_EEE_10GKR)
1231 		linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKR_Full_BIT,
1232 				 advertising);
1233 }
1234 
1235 /**
1236  * phy_init_eee - init and check the EEE feature
1237  * @phydev: target phy_device struct
1238  * @clk_stop_enable: PHY may stop the clock during LPI
1239  *
1240  * Description: it checks if the Energy-Efficient Ethernet (EEE)
1241  * is supported by looking at the MMD registers 3.20 and 7.60/61
1242  * and it programs the MMD register 3.0 setting the "Clock stop enable"
1243  * bit if required.
1244  */
1245 int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1246 {
1247 	if (!phydev->drv)
1248 		return -EIO;
1249 
1250 	/* According to 802.3az,the EEE is supported only in full duplex-mode.
1251 	 */
1252 	if (phydev->duplex == DUPLEX_FULL) {
1253 		__ETHTOOL_DECLARE_LINK_MODE_MASK(common);
1254 		__ETHTOOL_DECLARE_LINK_MODE_MASK(lp);
1255 		__ETHTOOL_DECLARE_LINK_MODE_MASK(adv);
1256 		int eee_lp, eee_cap, eee_adv;
1257 		int status;
1258 		u32 cap;
1259 
1260 		/* Read phy status to properly get the right settings */
1261 		status = phy_read_status(phydev);
1262 		if (status)
1263 			return status;
1264 
1265 		/* First check if the EEE ability is supported */
1266 		eee_cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1267 		if (eee_cap <= 0)
1268 			goto eee_exit_err;
1269 
1270 		cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
1271 		if (!cap)
1272 			goto eee_exit_err;
1273 
1274 		/* Check which link settings negotiated and verify it in
1275 		 * the EEE advertising registers.
1276 		 */
1277 		eee_lp = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
1278 		if (eee_lp <= 0)
1279 			goto eee_exit_err;
1280 
1281 		eee_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1282 		if (eee_adv <= 0)
1283 			goto eee_exit_err;
1284 
1285 		mmd_eee_adv_to_linkmode(adv, eee_adv);
1286 		mmd_eee_adv_to_linkmode(lp, eee_lp);
1287 		linkmode_and(common, adv, lp);
1288 
1289 		if (!phy_check_valid(phydev->speed, phydev->duplex, common))
1290 			goto eee_exit_err;
1291 
1292 		if (clk_stop_enable)
1293 			/* Configure the PHY to stop receiving xMII
1294 			 * clock while it is signaling LPI.
1295 			 */
1296 			phy_set_bits_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1,
1297 					 MDIO_PCS_CTRL1_CLKSTOP_EN);
1298 
1299 		return 0; /* EEE supported */
1300 	}
1301 eee_exit_err:
1302 	return -EPROTONOSUPPORT;
1303 }
1304 EXPORT_SYMBOL(phy_init_eee);
1305 
1306 /**
1307  * phy_get_eee_err - report the EEE wake error count
1308  * @phydev: target phy_device struct
1309  *
1310  * Description: it is to report the number of time where the PHY
1311  * failed to complete its normal wake sequence.
1312  */
1313 int phy_get_eee_err(struct phy_device *phydev)
1314 {
1315 	if (!phydev->drv)
1316 		return -EIO;
1317 
1318 	return phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_WK_ERR);
1319 }
1320 EXPORT_SYMBOL(phy_get_eee_err);
1321 
1322 /**
1323  * phy_ethtool_get_eee - get EEE supported and status
1324  * @phydev: target phy_device struct
1325  * @data: ethtool_eee data
1326  *
1327  * Description: it reportes the Supported/Advertisement/LP Advertisement
1328  * capabilities.
1329  */
1330 int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1331 {
1332 	int val;
1333 
1334 	if (!phydev->drv)
1335 		return -EIO;
1336 
1337 	/* Get Supported EEE */
1338 	val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1339 	if (val < 0)
1340 		return val;
1341 	data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
1342 
1343 	/* Get advertisement EEE */
1344 	val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1345 	if (val < 0)
1346 		return val;
1347 	data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
1348 	data->eee_enabled = !!data->advertised;
1349 
1350 	/* Get LP advertisement EEE */
1351 	val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
1352 	if (val < 0)
1353 		return val;
1354 	data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
1355 
1356 	data->eee_active = !!(data->advertised & data->lp_advertised);
1357 
1358 	return 0;
1359 }
1360 EXPORT_SYMBOL(phy_ethtool_get_eee);
1361 
1362 /**
1363  * phy_ethtool_set_eee - set EEE supported and status
1364  * @phydev: target phy_device struct
1365  * @data: ethtool_eee data
1366  *
1367  * Description: it is to program the Advertisement EEE register.
1368  */
1369 int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1370 {
1371 	int cap, old_adv, adv = 0, ret;
1372 
1373 	if (!phydev->drv)
1374 		return -EIO;
1375 
1376 	/* Get Supported EEE */
1377 	cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1378 	if (cap < 0)
1379 		return cap;
1380 
1381 	old_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1382 	if (old_adv < 0)
1383 		return old_adv;
1384 
1385 	if (data->eee_enabled) {
1386 		adv = !data->advertised ? cap :
1387 		      ethtool_adv_to_mmd_eee_adv_t(data->advertised) & cap;
1388 		/* Mask prohibited EEE modes */
1389 		adv &= ~phydev->eee_broken_modes;
1390 	}
1391 
1392 	if (old_adv != adv) {
1393 		ret = phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, adv);
1394 		if (ret < 0)
1395 			return ret;
1396 
1397 		/* Restart autonegotiation so the new modes get sent to the
1398 		 * link partner.
1399 		 */
1400 		if (phydev->autoneg == AUTONEG_ENABLE) {
1401 			ret = phy_restart_aneg(phydev);
1402 			if (ret < 0)
1403 				return ret;
1404 		}
1405 	}
1406 
1407 	return 0;
1408 }
1409 EXPORT_SYMBOL(phy_ethtool_set_eee);
1410 
1411 /**
1412  * phy_ethtool_set_wol - Configure Wake On LAN
1413  *
1414  * @phydev: target phy_device struct
1415  * @wol: Configuration requested
1416  */
1417 int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1418 {
1419 	if (phydev->drv && phydev->drv->set_wol)
1420 		return phydev->drv->set_wol(phydev, wol);
1421 
1422 	return -EOPNOTSUPP;
1423 }
1424 EXPORT_SYMBOL(phy_ethtool_set_wol);
1425 
1426 /**
1427  * phy_ethtool_get_wol - Get the current Wake On LAN configuration
1428  *
1429  * @phydev: target phy_device struct
1430  * @wol: Store the current configuration here
1431  */
1432 void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1433 {
1434 	if (phydev->drv && phydev->drv->get_wol)
1435 		phydev->drv->get_wol(phydev, wol);
1436 }
1437 EXPORT_SYMBOL(phy_ethtool_get_wol);
1438 
1439 int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1440 				   struct ethtool_link_ksettings *cmd)
1441 {
1442 	struct phy_device *phydev = ndev->phydev;
1443 
1444 	if (!phydev)
1445 		return -ENODEV;
1446 
1447 	phy_ethtool_ksettings_get(phydev, cmd);
1448 
1449 	return 0;
1450 }
1451 EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1452 
1453 int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1454 				   const struct ethtool_link_ksettings *cmd)
1455 {
1456 	struct phy_device *phydev = ndev->phydev;
1457 
1458 	if (!phydev)
1459 		return -ENODEV;
1460 
1461 	return phy_ethtool_ksettings_set(phydev, cmd);
1462 }
1463 EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
1464 
1465 /**
1466  * phy_ethtool_nway_reset - Restart auto negotiation
1467  * @ndev: Network device to restart autoneg for
1468  */
1469 int phy_ethtool_nway_reset(struct net_device *ndev)
1470 {
1471 	struct phy_device *phydev = ndev->phydev;
1472 
1473 	if (!phydev)
1474 		return -ENODEV;
1475 
1476 	if (!phydev->drv)
1477 		return -EIO;
1478 
1479 	return phy_restart_aneg(phydev);
1480 }
1481 EXPORT_SYMBOL(phy_ethtool_nway_reset);
1482