blob: b0b8a3ce82b689d013c963173732a1f4fad13125 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0+
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* 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
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009 */
10
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000011#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/etherdevice.h>
19#include <linux/skbuff.h>
20#include <linux/mm.h>
21#include <linux/module.h>
22#include <linux/mii.h>
23#include <linux/ethtool.h>
24#include <linux/phy.h>
25#include <linux/phy_led_triggers.h>
26#include <linux/workqueue.h>
27#include <linux/mdio.h>
28#include <linux/io.h>
29#include <linux/uaccess.h>
30#include <linux/atomic.h>
31
David Brazdil0f672f62019-12-10 10:32:29 +000032#define PHY_STATE_TIME HZ
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000033
34#define PHY_STATE_STR(_state) \
35 case PHY_##_state: \
36 return __stringify(_state); \
37
38static const char *phy_state_to_str(enum phy_state st)
39{
40 switch (st) {
41 PHY_STATE_STR(DOWN)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000042 PHY_STATE_STR(READY)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000043 PHY_STATE_STR(UP)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000044 PHY_STATE_STR(RUNNING)
45 PHY_STATE_STR(NOLINK)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000046 PHY_STATE_STR(HALTED)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000047 }
48
49 return NULL;
50}
51
David Brazdil0f672f62019-12-10 10:32:29 +000052static void phy_link_up(struct phy_device *phydev)
53{
54 phydev->phy_link_change(phydev, true, true);
55 phy_led_trigger_change_speed(phydev);
56}
57
58static void phy_link_down(struct phy_device *phydev, bool do_carrier)
59{
60 phydev->phy_link_change(phydev, false, do_carrier);
61 phy_led_trigger_change_speed(phydev);
62}
63
64static const char *phy_pause_str(struct phy_device *phydev)
65{
66 bool local_pause, local_asym_pause;
67
68 if (phydev->autoneg == AUTONEG_DISABLE)
69 goto no_pause;
70
71 local_pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
72 phydev->advertising);
73 local_asym_pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
74 phydev->advertising);
75
76 if (local_pause && phydev->pause)
77 return "rx/tx";
78
79 if (local_asym_pause && phydev->asym_pause) {
80 if (local_pause)
81 return "rx";
82 if (phydev->pause)
83 return "tx";
84 }
85
86no_pause:
87 return "off";
88}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000089
90/**
91 * phy_print_status - Convenience function to print out the current phy status
92 * @phydev: the phy_device struct
93 */
94void phy_print_status(struct phy_device *phydev)
95{
96 if (phydev->link) {
97 netdev_info(phydev->attached_dev,
98 "Link is Up - %s/%s - flow control %s\n",
99 phy_speed_to_str(phydev->speed),
100 phy_duplex_to_str(phydev->duplex),
David Brazdil0f672f62019-12-10 10:32:29 +0000101 phy_pause_str(phydev));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000102 } else {
103 netdev_info(phydev->attached_dev, "Link is Down\n");
104 }
105}
106EXPORT_SYMBOL(phy_print_status);
107
108/**
109 * phy_clear_interrupt - Ack the phy device's interrupt
110 * @phydev: the phy_device struct
111 *
112 * If the @phydev driver has an ack_interrupt function, call it to
113 * ack and clear the phy device's interrupt.
114 *
115 * Returns 0 on success or < 0 on error.
116 */
117static int phy_clear_interrupt(struct phy_device *phydev)
118{
119 if (phydev->drv->ack_interrupt)
120 return phydev->drv->ack_interrupt(phydev);
121
122 return 0;
123}
124
125/**
126 * phy_config_interrupt - configure the PHY device for the requested interrupts
127 * @phydev: the phy_device struct
128 * @interrupts: interrupt flags to configure for this @phydev
129 *
130 * Returns 0 on success or < 0 on error.
131 */
David Brazdil0f672f62019-12-10 10:32:29 +0000132static int phy_config_interrupt(struct phy_device *phydev, bool interrupts)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000133{
David Brazdil0f672f62019-12-10 10:32:29 +0000134 phydev->interrupts = interrupts ? 1 : 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000135 if (phydev->drv->config_intr)
136 return phydev->drv->config_intr(phydev);
137
138 return 0;
139}
140
141/**
142 * phy_restart_aneg - restart auto-negotiation
143 * @phydev: target phy_device struct
144 *
145 * Restart the autonegotiation on @phydev. Returns >= 0 on success or
146 * negative errno on error.
147 */
148int phy_restart_aneg(struct phy_device *phydev)
149{
150 int ret;
151
152 if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
153 ret = genphy_c45_restart_aneg(phydev);
154 else
155 ret = genphy_restart_aneg(phydev);
156
157 return ret;
158}
159EXPORT_SYMBOL_GPL(phy_restart_aneg);
160
161/**
162 * phy_aneg_done - return auto-negotiation status
163 * @phydev: target phy_device struct
164 *
165 * Description: Return the auto-negotiation status from this @phydev
166 * Returns > 0 on success or < 0 on error. 0 means that auto-negotiation
167 * is still pending.
168 */
169int phy_aneg_done(struct phy_device *phydev)
170{
171 if (phydev->drv && phydev->drv->aneg_done)
172 return phydev->drv->aneg_done(phydev);
David Brazdil0f672f62019-12-10 10:32:29 +0000173 else if (phydev->is_c45)
174 return genphy_c45_aneg_done(phydev);
175 else
176 return genphy_aneg_done(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000177}
178EXPORT_SYMBOL(phy_aneg_done);
179
180/**
181 * phy_find_valid - find a PHY setting that matches the requested parameters
182 * @speed: desired speed
183 * @duplex: desired duplex
184 * @supported: mask of supported link modes
185 *
186 * Locate a supported phy setting that is, in priority order:
187 * - an exact match for the specified speed and duplex mode
188 * - a match for the specified speed, or slower speed
189 * - the slowest supported speed
190 * Returns the matched phy_setting entry, or %NULL if no supported phy
191 * settings were found.
192 */
193static const struct phy_setting *
David Brazdil0f672f62019-12-10 10:32:29 +0000194phy_find_valid(int speed, int duplex, unsigned long *supported)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000195{
David Brazdil0f672f62019-12-10 10:32:29 +0000196 return phy_lookup_setting(speed, duplex, supported, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000197}
198
199/**
200 * phy_supported_speeds - return all speeds currently supported by a phy device
201 * @phy: The phy device to return supported speeds of.
202 * @speeds: buffer to store supported speeds in.
203 * @size: size of speeds buffer.
204 *
205 * Description: Returns the number of supported speeds, and fills the speeds
206 * buffer with the supported speeds. If speeds buffer is too small to contain
207 * all currently supported speeds, will return as many speeds as can fit.
208 */
209unsigned int phy_supported_speeds(struct phy_device *phy,
210 unsigned int *speeds,
211 unsigned int size)
212{
David Brazdil0f672f62019-12-10 10:32:29 +0000213 return phy_speeds(speeds, size, phy->supported);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000214}
215
216/**
217 * phy_check_valid - check if there is a valid PHY setting which matches
218 * speed, duplex, and feature mask
219 * @speed: speed to match
220 * @duplex: duplex to match
221 * @features: A mask of the valid settings
222 *
223 * Description: Returns true if there is a valid setting, false otherwise.
224 */
David Brazdil0f672f62019-12-10 10:32:29 +0000225static inline bool phy_check_valid(int speed, int duplex,
226 unsigned long *features)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227{
David Brazdil0f672f62019-12-10 10:32:29 +0000228 return !!phy_lookup_setting(speed, duplex, features, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000229}
230
231/**
232 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
233 * @phydev: the target phy_device struct
234 *
235 * Description: Make sure the PHY is set to supported speeds and
236 * duplexes. Drop down by one in this order: 1000/FULL,
237 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
238 */
239static void phy_sanitize_settings(struct phy_device *phydev)
240{
241 const struct phy_setting *setting;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000242
David Brazdil0f672f62019-12-10 10:32:29 +0000243 setting = phy_find_valid(phydev->speed, phydev->duplex,
244 phydev->supported);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000245 if (setting) {
246 phydev->speed = setting->speed;
247 phydev->duplex = setting->duplex;
248 } else {
249 /* We failed to find anything (no supported speeds?) */
250 phydev->speed = SPEED_UNKNOWN;
251 phydev->duplex = DUPLEX_UNKNOWN;
252 }
253}
254
255/**
256 * phy_ethtool_sset - generic ethtool sset function, handles all the details
257 * @phydev: target phy_device struct
258 * @cmd: ethtool_cmd
259 *
260 * A few notes about parameter checking:
261 *
262 * - We don't set port or transceiver, so we don't care what they
263 * were set to.
264 * - phy_start_aneg() will make sure forced settings are sane, and
265 * choose the next best ones from the ones selected, so we don't
266 * care if ethtool tries to give us bad values.
267 */
268int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
269{
David Brazdil0f672f62019-12-10 10:32:29 +0000270 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000271 u32 speed = ethtool_cmd_speed(cmd);
272
273 if (cmd->phy_address != phydev->mdio.addr)
274 return -EINVAL;
275
276 /* We make sure that we don't pass unsupported values in to the PHY */
David Brazdil0f672f62019-12-10 10:32:29 +0000277 ethtool_convert_legacy_u32_to_link_mode(advertising, cmd->advertising);
278 linkmode_and(advertising, advertising, phydev->supported);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279
280 /* Verify the settings we care about. */
281 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
282 return -EINVAL;
283
284 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
285 return -EINVAL;
286
287 if (cmd->autoneg == AUTONEG_DISABLE &&
288 ((speed != SPEED_1000 &&
289 speed != SPEED_100 &&
290 speed != SPEED_10) ||
291 (cmd->duplex != DUPLEX_HALF &&
292 cmd->duplex != DUPLEX_FULL)))
293 return -EINVAL;
294
295 phydev->autoneg = cmd->autoneg;
296
297 phydev->speed = speed;
298
David Brazdil0f672f62019-12-10 10:32:29 +0000299 linkmode_copy(phydev->advertising, advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000300
David Brazdil0f672f62019-12-10 10:32:29 +0000301 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
302 phydev->advertising, AUTONEG_ENABLE == cmd->autoneg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000303
304 phydev->duplex = cmd->duplex;
305
306 phydev->mdix_ctrl = cmd->eth_tp_mdix_ctrl;
307
308 /* Restart the PHY */
309 phy_start_aneg(phydev);
310
311 return 0;
312}
313EXPORT_SYMBOL(phy_ethtool_sset);
314
315int phy_ethtool_ksettings_set(struct phy_device *phydev,
316 const struct ethtool_link_ksettings *cmd)
317{
David Brazdil0f672f62019-12-10 10:32:29 +0000318 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000319 u8 autoneg = cmd->base.autoneg;
320 u8 duplex = cmd->base.duplex;
321 u32 speed = cmd->base.speed;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000322
323 if (cmd->base.phy_address != phydev->mdio.addr)
324 return -EINVAL;
325
David Brazdil0f672f62019-12-10 10:32:29 +0000326 linkmode_copy(advertising, cmd->link_modes.advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000327
328 /* We make sure that we don't pass unsupported values in to the PHY */
David Brazdil0f672f62019-12-10 10:32:29 +0000329 linkmode_and(advertising, advertising, phydev->supported);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000330
331 /* Verify the settings we care about. */
332 if (autoneg != AUTONEG_ENABLE && autoneg != AUTONEG_DISABLE)
333 return -EINVAL;
334
David Brazdil0f672f62019-12-10 10:32:29 +0000335 if (autoneg == AUTONEG_ENABLE && linkmode_empty(advertising))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000336 return -EINVAL;
337
338 if (autoneg == AUTONEG_DISABLE &&
339 ((speed != SPEED_1000 &&
340 speed != SPEED_100 &&
341 speed != SPEED_10) ||
342 (duplex != DUPLEX_HALF &&
343 duplex != DUPLEX_FULL)))
344 return -EINVAL;
345
346 phydev->autoneg = autoneg;
347
Olivier Deprez0e641232021-09-23 10:07:05 +0200348 if (autoneg == AUTONEG_DISABLE) {
349 phydev->speed = speed;
350 phydev->duplex = duplex;
351 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000352
David Brazdil0f672f62019-12-10 10:32:29 +0000353 linkmode_copy(phydev->advertising, advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000354
David Brazdil0f672f62019-12-10 10:32:29 +0000355 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
356 phydev->advertising, autoneg == AUTONEG_ENABLE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000357
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000358 phydev->mdix_ctrl = cmd->base.eth_tp_mdix_ctrl;
359
360 /* Restart the PHY */
361 phy_start_aneg(phydev);
362
363 return 0;
364}
365EXPORT_SYMBOL(phy_ethtool_ksettings_set);
366
367void phy_ethtool_ksettings_get(struct phy_device *phydev,
368 struct ethtool_link_ksettings *cmd)
369{
David Brazdil0f672f62019-12-10 10:32:29 +0000370 linkmode_copy(cmd->link_modes.supported, phydev->supported);
371 linkmode_copy(cmd->link_modes.advertising, phydev->advertising);
372 linkmode_copy(cmd->link_modes.lp_advertising, phydev->lp_advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000373
374 cmd->base.speed = phydev->speed;
375 cmd->base.duplex = phydev->duplex;
376 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
377 cmd->base.port = PORT_BNC;
378 else
379 cmd->base.port = PORT_MII;
380 cmd->base.transceiver = phy_is_internal(phydev) ?
381 XCVR_INTERNAL : XCVR_EXTERNAL;
382 cmd->base.phy_address = phydev->mdio.addr;
383 cmd->base.autoneg = phydev->autoneg;
384 cmd->base.eth_tp_mdix_ctrl = phydev->mdix_ctrl;
385 cmd->base.eth_tp_mdix = phydev->mdix;
386}
387EXPORT_SYMBOL(phy_ethtool_ksettings_get);
388
389/**
390 * phy_mii_ioctl - generic PHY MII ioctl interface
391 * @phydev: the phy_device struct
392 * @ifr: &struct ifreq for socket ioctl's
393 * @cmd: ioctl cmd to execute
394 *
395 * Note that this function is currently incompatible with the
396 * PHYCONTROL layer. It changes registers without regard to
397 * current state. Use at own risk.
398 */
399int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
400{
401 struct mii_ioctl_data *mii_data = if_mii(ifr);
402 u16 val = mii_data->val_in;
403 bool change_autoneg = false;
David Brazdil0f672f62019-12-10 10:32:29 +0000404 int prtad, devad;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000405
406 switch (cmd) {
407 case SIOCGMIIPHY:
408 mii_data->phy_id = phydev->mdio.addr;
409 /* fall through */
410
411 case SIOCGMIIREG:
David Brazdil0f672f62019-12-10 10:32:29 +0000412 if (mdio_phy_id_is_c45(mii_data->phy_id)) {
413 prtad = mdio_phy_id_prtad(mii_data->phy_id);
414 devad = mdio_phy_id_devad(mii_data->phy_id);
415 devad = MII_ADDR_C45 | devad << 16 | mii_data->reg_num;
416 } else {
417 prtad = mii_data->phy_id;
418 devad = mii_data->reg_num;
419 }
420 mii_data->val_out = mdiobus_read(phydev->mdio.bus, prtad,
421 devad);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000422 return 0;
423
424 case SIOCSMIIREG:
David Brazdil0f672f62019-12-10 10:32:29 +0000425 if (mdio_phy_id_is_c45(mii_data->phy_id)) {
426 prtad = mdio_phy_id_prtad(mii_data->phy_id);
427 devad = mdio_phy_id_devad(mii_data->phy_id);
428 devad = MII_ADDR_C45 | devad << 16 | mii_data->reg_num;
429 } else {
430 prtad = mii_data->phy_id;
431 devad = mii_data->reg_num;
432 }
433 if (prtad == phydev->mdio.addr) {
434 switch (devad) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000435 case MII_BMCR:
436 if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
437 if (phydev->autoneg == AUTONEG_ENABLE)
438 change_autoneg = true;
439 phydev->autoneg = AUTONEG_DISABLE;
440 if (val & BMCR_FULLDPLX)
441 phydev->duplex = DUPLEX_FULL;
442 else
443 phydev->duplex = DUPLEX_HALF;
444 if (val & BMCR_SPEED1000)
445 phydev->speed = SPEED_1000;
446 else if (val & BMCR_SPEED100)
447 phydev->speed = SPEED_100;
448 else phydev->speed = SPEED_10;
449 }
450 else {
451 if (phydev->autoneg == AUTONEG_DISABLE)
452 change_autoneg = true;
453 phydev->autoneg = AUTONEG_ENABLE;
454 }
455 break;
456 case MII_ADVERTISE:
David Brazdil0f672f62019-12-10 10:32:29 +0000457 mii_adv_mod_linkmode_adv_t(phydev->advertising,
458 val);
459 change_autoneg = true;
460 break;
461 case MII_CTRL1000:
462 mii_ctrl1000_mod_linkmode_adv_t(phydev->advertising,
463 val);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000464 change_autoneg = true;
465 break;
466 default:
467 /* do nothing */
468 break;
469 }
470 }
471
David Brazdil0f672f62019-12-10 10:32:29 +0000472 mdiobus_write(phydev->mdio.bus, prtad, devad, val);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000473
David Brazdil0f672f62019-12-10 10:32:29 +0000474 if (prtad == phydev->mdio.addr &&
475 devad == MII_BMCR &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000476 val & BMCR_RESET)
477 return phy_init_hw(phydev);
478
479 if (change_autoneg)
480 return phy_start_aneg(phydev);
481
482 return 0;
483
484 case SIOCSHWTSTAMP:
485 if (phydev->drv && phydev->drv->hwtstamp)
486 return phydev->drv->hwtstamp(phydev, ifr);
487 /* fall through */
488
489 default:
490 return -EOPNOTSUPP;
491 }
492}
493EXPORT_SYMBOL(phy_mii_ioctl);
494
David Brazdil0f672f62019-12-10 10:32:29 +0000495void phy_queue_state_machine(struct phy_device *phydev, unsigned long jiffies)
496{
497 mod_delayed_work(system_power_efficient_wq, &phydev->state_queue,
498 jiffies);
499}
500EXPORT_SYMBOL(phy_queue_state_machine);
501
502static void phy_trigger_machine(struct phy_device *phydev)
503{
504 phy_queue_state_machine(phydev, 0);
505}
506
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000507static int phy_config_aneg(struct phy_device *phydev)
508{
509 if (phydev->drv->config_aneg)
510 return phydev->drv->config_aneg(phydev);
511
512 /* Clause 45 PHYs that don't implement Clause 22 registers are not
513 * allowed to call genphy_config_aneg()
514 */
515 if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
David Brazdil0f672f62019-12-10 10:32:29 +0000516 return genphy_c45_config_aneg(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000517
518 return genphy_config_aneg(phydev);
519}
520
521/**
David Brazdil0f672f62019-12-10 10:32:29 +0000522 * phy_check_link_status - check link status and set state accordingly
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000523 * @phydev: the phy_device struct
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000524 *
David Brazdil0f672f62019-12-10 10:32:29 +0000525 * Description: Check for link and whether autoneg was triggered / is running
526 * and set state accordingly
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000527 */
David Brazdil0f672f62019-12-10 10:32:29 +0000528static int phy_check_link_status(struct phy_device *phydev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000529{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000530 int err;
531
David Brazdil0f672f62019-12-10 10:32:29 +0000532 WARN_ON(!mutex_is_locked(&phydev->lock));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000533
David Brazdil0f672f62019-12-10 10:32:29 +0000534 /* Keep previous state if loopback is enabled because some PHYs
535 * report that Link is Down when loopback is enabled.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000536 */
David Brazdil0f672f62019-12-10 10:32:29 +0000537 if (phydev->loopback_enabled)
538 return 0;
539
540 err = phy_read_status(phydev);
541 if (err)
542 return err;
543
544 if (phydev->link && phydev->state != PHY_RUNNING) {
545 phydev->state = PHY_RUNNING;
546 phy_link_up(phydev);
547 } else if (!phydev->link && phydev->state != PHY_NOLINK) {
548 phydev->state = PHY_NOLINK;
549 phy_link_down(phydev, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000550 }
551
David Brazdil0f672f62019-12-10 10:32:29 +0000552 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000553}
554
555/**
556 * phy_start_aneg - start auto-negotiation for this PHY device
557 * @phydev: the phy_device struct
558 *
559 * Description: Sanitizes the settings (if we're not autonegotiating
560 * them), and then calls the driver's config_aneg function.
561 * If the PHYCONTROL Layer is operating, we change the state to
562 * reflect the beginning of Auto-negotiation or forcing.
563 */
564int phy_start_aneg(struct phy_device *phydev)
565{
David Brazdil0f672f62019-12-10 10:32:29 +0000566 int err;
567
568 if (!phydev->drv)
569 return -EIO;
570
571 mutex_lock(&phydev->lock);
572
573 if (AUTONEG_DISABLE == phydev->autoneg)
574 phy_sanitize_settings(phydev);
575
576 err = phy_config_aneg(phydev);
577 if (err < 0)
578 goto out_unlock;
579
580 if (phy_is_started(phydev))
581 err = phy_check_link_status(phydev);
582out_unlock:
583 mutex_unlock(&phydev->lock);
584
585 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000586}
587EXPORT_SYMBOL(phy_start_aneg);
588
589static int phy_poll_aneg_done(struct phy_device *phydev)
590{
591 unsigned int retries = 100;
592 int ret;
593
594 do {
595 msleep(100);
596 ret = phy_aneg_done(phydev);
597 } while (!ret && --retries);
598
599 if (!ret)
600 return -ETIMEDOUT;
601
602 return ret < 0 ? ret : 0;
603}
604
605/**
606 * phy_speed_down - set speed to lowest speed supported by both link partners
607 * @phydev: the phy_device struct
608 * @sync: perform action synchronously
609 *
610 * Description: Typically used to save energy when waiting for a WoL packet
611 *
612 * WARNING: Setting sync to false may cause the system being unable to suspend
613 * in case the PHY generates an interrupt when finishing the autonegotiation.
614 * This interrupt may wake up the system immediately after suspend.
615 * Therefore use sync = false only if you're sure it's safe with the respective
616 * network chip.
617 */
618int phy_speed_down(struct phy_device *phydev, bool sync)
619{
David Brazdil0f672f62019-12-10 10:32:29 +0000620 __ETHTOOL_DECLARE_LINK_MODE_MASK(adv_tmp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000621 int ret;
622
623 if (phydev->autoneg != AUTONEG_ENABLE)
624 return 0;
625
David Brazdil0f672f62019-12-10 10:32:29 +0000626 linkmode_copy(adv_tmp, phydev->advertising);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000627
David Brazdil0f672f62019-12-10 10:32:29 +0000628 ret = phy_speed_down_core(phydev);
629 if (ret)
630 return ret;
631
632 linkmode_copy(phydev->adv_old, adv_tmp);
633
634 if (linkmode_equal(phydev->advertising, adv_tmp))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000635 return 0;
636
637 ret = phy_config_aneg(phydev);
638 if (ret)
639 return ret;
640
641 return sync ? phy_poll_aneg_done(phydev) : 0;
642}
643EXPORT_SYMBOL_GPL(phy_speed_down);
644
645/**
646 * phy_speed_up - (re)set advertised speeds to all supported speeds
647 * @phydev: the phy_device struct
648 *
649 * Description: Used to revert the effect of phy_speed_down
650 */
651int phy_speed_up(struct phy_device *phydev)
652{
David Brazdil0f672f62019-12-10 10:32:29 +0000653 __ETHTOOL_DECLARE_LINK_MODE_MASK(adv_tmp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000654
655 if (phydev->autoneg != AUTONEG_ENABLE)
656 return 0;
657
David Brazdil0f672f62019-12-10 10:32:29 +0000658 if (linkmode_empty(phydev->adv_old))
659 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000660
David Brazdil0f672f62019-12-10 10:32:29 +0000661 linkmode_copy(adv_tmp, phydev->advertising);
662 linkmode_copy(phydev->advertising, phydev->adv_old);
663 linkmode_zero(phydev->adv_old);
664
665 if (linkmode_equal(phydev->advertising, adv_tmp))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000666 return 0;
667
668 return phy_config_aneg(phydev);
669}
670EXPORT_SYMBOL_GPL(phy_speed_up);
671
672/**
673 * phy_start_machine - start PHY state machine tracking
674 * @phydev: the phy_device struct
675 *
676 * Description: The PHY infrastructure can run a state machine
677 * which tracks whether the PHY is starting up, negotiating,
678 * etc. This function starts the delayed workqueue which tracks
679 * the state of the PHY. If you want to maintain your own state machine,
680 * do not call this function.
681 */
682void phy_start_machine(struct phy_device *phydev)
683{
David Brazdil0f672f62019-12-10 10:32:29 +0000684 phy_trigger_machine(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000685}
686EXPORT_SYMBOL_GPL(phy_start_machine);
687
688/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000689 * phy_stop_machine - stop the PHY state machine tracking
690 * @phydev: target phy_device struct
691 *
692 * Description: Stops the state machine delayed workqueue, sets the
693 * state to UP (unless it wasn't up yet). This function must be
694 * called BEFORE phy_detach.
695 */
696void phy_stop_machine(struct phy_device *phydev)
697{
698 cancel_delayed_work_sync(&phydev->state_queue);
699
700 mutex_lock(&phydev->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000701 if (phy_is_started(phydev))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000702 phydev->state = PHY_UP;
703 mutex_unlock(&phydev->lock);
704}
705
706/**
707 * phy_error - enter HALTED state for this PHY device
708 * @phydev: target phy_device struct
709 *
710 * Moves the PHY to the HALTED state in response to a read
711 * or write error, and tells the controller the link is down.
712 * Must not be called from interrupt context, or while the
713 * phydev->lock is held.
714 */
715static void phy_error(struct phy_device *phydev)
716{
David Brazdil0f672f62019-12-10 10:32:29 +0000717 WARN_ON(1);
718
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000719 mutex_lock(&phydev->lock);
720 phydev->state = PHY_HALTED;
721 mutex_unlock(&phydev->lock);
722
David Brazdil0f672f62019-12-10 10:32:29 +0000723 phy_trigger_machine(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000724}
725
726/**
727 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
728 * @phydev: target phy_device struct
729 */
730static int phy_disable_interrupts(struct phy_device *phydev)
731{
732 int err;
733
734 /* Disable PHY interrupts */
735 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
736 if (err)
737 return err;
738
739 /* Clear the interrupt */
740 return phy_clear_interrupt(phydev);
741}
742
743/**
David Brazdil0f672f62019-12-10 10:32:29 +0000744 * phy_interrupt - PHY interrupt handler
745 * @irq: interrupt line
746 * @phy_dat: phy_device pointer
747 *
748 * Description: Handle PHY interrupt
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000749 */
David Brazdil0f672f62019-12-10 10:32:29 +0000750static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000751{
David Brazdil0f672f62019-12-10 10:32:29 +0000752 struct phy_device *phydev = phy_dat;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000753
David Brazdil0f672f62019-12-10 10:32:29 +0000754 if (phydev->drv->did_interrupt && !phydev->drv->did_interrupt(phydev))
755 return IRQ_NONE;
756
757 if (phydev->drv->handle_interrupt) {
758 if (phydev->drv->handle_interrupt(phydev))
759 goto phy_err;
760 } else {
761 /* reschedule state queue work to run as soon as possible */
762 phy_trigger_machine(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000763 }
764
Olivier Deprez0e641232021-09-23 10:07:05 +0200765 /* did_interrupt() may have cleared the interrupt already */
766 if (!phydev->drv->did_interrupt && phy_clear_interrupt(phydev))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000767 goto phy_err;
768 return IRQ_HANDLED;
769
770phy_err:
771 phy_error(phydev);
772 return IRQ_NONE;
773}
774
775/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000776 * phy_enable_interrupts - Enable the interrupts from the PHY side
777 * @phydev: target phy_device struct
778 */
779static int phy_enable_interrupts(struct phy_device *phydev)
780{
781 int err = phy_clear_interrupt(phydev);
782
783 if (err < 0)
784 return err;
785
786 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
787}
788
789/**
David Brazdil0f672f62019-12-10 10:32:29 +0000790 * phy_request_interrupt - request and enable interrupt for a PHY device
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000791 * @phydev: target phy_device struct
792 *
David Brazdil0f672f62019-12-10 10:32:29 +0000793 * Description: Request and enable the interrupt for the given PHY.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000794 * If this fails, then we set irq to PHY_POLL.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000795 * This should only be called with a valid IRQ number.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000796 */
David Brazdil0f672f62019-12-10 10:32:29 +0000797void phy_request_interrupt(struct phy_device *phydev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000798{
David Brazdil0f672f62019-12-10 10:32:29 +0000799 int err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000800
David Brazdil0f672f62019-12-10 10:32:29 +0000801 err = request_threaded_irq(phydev->irq, NULL, phy_interrupt,
802 IRQF_ONESHOT | IRQF_SHARED,
803 phydev_name(phydev), phydev);
804 if (err) {
805 phydev_warn(phydev, "Error %d requesting IRQ %d, falling back to polling\n",
806 err, phydev->irq);
807 phydev->irq = PHY_POLL;
808 } else {
809 if (phy_enable_interrupts(phydev)) {
810 phydev_warn(phydev, "Can't enable interrupt, falling back to polling\n");
811 phy_free_interrupt(phydev);
812 phydev->irq = PHY_POLL;
813 }
814 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000815}
David Brazdil0f672f62019-12-10 10:32:29 +0000816EXPORT_SYMBOL(phy_request_interrupt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000817
818/**
David Brazdil0f672f62019-12-10 10:32:29 +0000819 * phy_free_interrupt - disable and free interrupt for a PHY device
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000820 * @phydev: target phy_device struct
David Brazdil0f672f62019-12-10 10:32:29 +0000821 *
822 * Description: Disable and free the interrupt for the given PHY.
823 * This should only be called with a valid IRQ number.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000824 */
David Brazdil0f672f62019-12-10 10:32:29 +0000825void phy_free_interrupt(struct phy_device *phydev)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000826{
David Brazdil0f672f62019-12-10 10:32:29 +0000827 phy_disable_interrupts(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000828 free_irq(phydev->irq, phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000829}
David Brazdil0f672f62019-12-10 10:32:29 +0000830EXPORT_SYMBOL(phy_free_interrupt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000831
832/**
833 * phy_stop - Bring down the PHY link, and stop checking the status
834 * @phydev: target phy_device struct
835 */
836void phy_stop(struct phy_device *phydev)
837{
Olivier Deprez0e641232021-09-23 10:07:05 +0200838 if (!phy_is_started(phydev) && phydev->state != PHY_DOWN) {
David Brazdil0f672f62019-12-10 10:32:29 +0000839 WARN(1, "called from state %s\n",
840 phy_state_to_str(phydev->state));
841 return;
842 }
843
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000844 mutex_lock(&phydev->lock);
845
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000846 phydev->state = PHY_HALTED;
847
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000848 mutex_unlock(&phydev->lock);
849
David Brazdil0f672f62019-12-10 10:32:29 +0000850 phy_state_machine(&phydev->state_queue.work);
851 phy_stop_machine(phydev);
852
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000853 /* Cannot call flush_scheduled_work() here as desired because
David Brazdil0f672f62019-12-10 10:32:29 +0000854 * of rtnl_lock(), but PHY_HALTED shall guarantee irq handler
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000855 * will not reenable interrupts.
856 */
857}
858EXPORT_SYMBOL(phy_stop);
859
860/**
861 * phy_start - start or restart a PHY device
862 * @phydev: target phy_device struct
863 *
864 * Description: Indicates the attached device's readiness to
865 * handle PHY-related work. Used during startup to start the
866 * PHY, and after a call to phy_stop() to resume operation.
867 * Also used to indicate the MDIO bus has cleared an error
868 * condition.
869 */
870void phy_start(struct phy_device *phydev)
871{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000872 mutex_lock(&phydev->lock);
873
David Brazdil0f672f62019-12-10 10:32:29 +0000874 if (phydev->state != PHY_READY && phydev->state != PHY_HALTED) {
875 WARN(1, "called from state %s\n",
876 phy_state_to_str(phydev->state));
877 goto out;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000878 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000879
David Brazdil0f672f62019-12-10 10:32:29 +0000880 /* if phy was suspended, bring the physical link up again */
881 __phy_resume(phydev);
882
883 phydev->state = PHY_UP;
884
885 phy_start_machine(phydev);
886out:
887 mutex_unlock(&phydev->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000888}
889EXPORT_SYMBOL(phy_start);
890
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000891/**
892 * phy_state_machine - Handle the state machine
893 * @work: work_struct that describes the work to be done
894 */
895void phy_state_machine(struct work_struct *work)
896{
897 struct delayed_work *dwork = to_delayed_work(work);
898 struct phy_device *phydev =
899 container_of(dwork, struct phy_device, state_queue);
900 bool needs_aneg = false, do_suspend = false;
901 enum phy_state old_state;
902 int err = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000903
904 mutex_lock(&phydev->lock);
905
906 old_state = phydev->state;
907
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000908 switch (phydev->state) {
909 case PHY_DOWN:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000910 case PHY_READY:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000911 break;
912 case PHY_UP:
913 needs_aneg = true;
914
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000915 break;
916 case PHY_NOLINK:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000917 case PHY_RUNNING:
David Brazdil0f672f62019-12-10 10:32:29 +0000918 err = phy_check_link_status(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000919 break;
920 case PHY_HALTED:
921 if (phydev->link) {
922 phydev->link = 0;
923 phy_link_down(phydev, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000924 }
David Brazdil0f672f62019-12-10 10:32:29 +0000925 do_suspend = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000926 break;
927 }
928
929 mutex_unlock(&phydev->lock);
930
931 if (needs_aneg)
David Brazdil0f672f62019-12-10 10:32:29 +0000932 err = phy_start_aneg(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000933 else if (do_suspend)
934 phy_suspend(phydev);
935
936 if (err < 0)
937 phy_error(phydev);
938
David Brazdil0f672f62019-12-10 10:32:29 +0000939 if (old_state != phydev->state) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000940 phydev_dbg(phydev, "PHY state change %s -> %s\n",
941 phy_state_to_str(old_state),
942 phy_state_to_str(phydev->state));
David Brazdil0f672f62019-12-10 10:32:29 +0000943 if (phydev->drv && phydev->drv->link_change_notify)
944 phydev->drv->link_change_notify(phydev);
945 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000946
947 /* Only re-schedule a PHY state machine change if we are polling the
948 * PHY, if PHY_IGNORE_INTERRUPT is set, then we will be moving
David Brazdil0f672f62019-12-10 10:32:29 +0000949 * between states from phy_mac_interrupt().
950 *
951 * In state PHY_HALTED the PHY gets suspended, so rescheduling the
952 * state machine would be pointless and possibly error prone when
953 * called from phy_disconnect() synchronously.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000954 */
David Brazdil0f672f62019-12-10 10:32:29 +0000955 mutex_lock(&phydev->lock);
956 if (phy_polling_mode(phydev) && phy_is_started(phydev))
957 phy_queue_state_machine(phydev, PHY_STATE_TIME);
958 mutex_unlock(&phydev->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000959}
960
961/**
962 * phy_mac_interrupt - MAC says the link has changed
963 * @phydev: phy_device struct with changed link
964 *
965 * The MAC layer is able to indicate there has been a change in the PHY link
966 * status. Trigger the state machine and work a work queue.
967 */
968void phy_mac_interrupt(struct phy_device *phydev)
969{
970 /* Trigger a state machine change */
David Brazdil0f672f62019-12-10 10:32:29 +0000971 phy_trigger_machine(phydev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000972}
973EXPORT_SYMBOL(phy_mac_interrupt);
974
David Brazdil0f672f62019-12-10 10:32:29 +0000975static void mmd_eee_adv_to_linkmode(unsigned long *advertising, u16 eee_adv)
976{
977 linkmode_zero(advertising);
978
979 if (eee_adv & MDIO_EEE_100TX)
980 linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
981 advertising);
982 if (eee_adv & MDIO_EEE_1000T)
983 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
984 advertising);
985 if (eee_adv & MDIO_EEE_10GT)
986 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
987 advertising);
988 if (eee_adv & MDIO_EEE_1000KX)
989 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseKX_Full_BIT,
990 advertising);
991 if (eee_adv & MDIO_EEE_10GKX4)
992 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT,
993 advertising);
994 if (eee_adv & MDIO_EEE_10GKR)
995 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseKR_Full_BIT,
996 advertising);
997}
998
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000999/**
1000 * phy_init_eee - init and check the EEE feature
1001 * @phydev: target phy_device struct
1002 * @clk_stop_enable: PHY may stop the clock during LPI
1003 *
1004 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1005 * is supported by looking at the MMD registers 3.20 and 7.60/61
1006 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1007 * bit if required.
1008 */
1009int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1010{
1011 if (!phydev->drv)
1012 return -EIO;
1013
1014 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1015 */
1016 if (phydev->duplex == DUPLEX_FULL) {
David Brazdil0f672f62019-12-10 10:32:29 +00001017 __ETHTOOL_DECLARE_LINK_MODE_MASK(common);
1018 __ETHTOOL_DECLARE_LINK_MODE_MASK(lp);
1019 __ETHTOOL_DECLARE_LINK_MODE_MASK(adv);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001020 int eee_lp, eee_cap, eee_adv;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001021 int status;
David Brazdil0f672f62019-12-10 10:32:29 +00001022 u32 cap;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001023
1024 /* Read phy status to properly get the right settings */
1025 status = phy_read_status(phydev);
1026 if (status)
1027 return status;
1028
1029 /* First check if the EEE ability is supported */
1030 eee_cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1031 if (eee_cap <= 0)
1032 goto eee_exit_err;
1033
1034 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
1035 if (!cap)
1036 goto eee_exit_err;
1037
1038 /* Check which link settings negotiated and verify it in
1039 * the EEE advertising registers.
1040 */
1041 eee_lp = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
1042 if (eee_lp <= 0)
1043 goto eee_exit_err;
1044
1045 eee_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1046 if (eee_adv <= 0)
1047 goto eee_exit_err;
1048
David Brazdil0f672f62019-12-10 10:32:29 +00001049 mmd_eee_adv_to_linkmode(adv, eee_adv);
1050 mmd_eee_adv_to_linkmode(lp, eee_lp);
1051 linkmode_and(common, adv, lp);
1052
1053 if (!phy_check_valid(phydev->speed, phydev->duplex, common))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001054 goto eee_exit_err;
1055
David Brazdil0f672f62019-12-10 10:32:29 +00001056 if (clk_stop_enable)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001057 /* Configure the PHY to stop receiving xMII
1058 * clock while it is signaling LPI.
1059 */
David Brazdil0f672f62019-12-10 10:32:29 +00001060 phy_set_bits_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1,
1061 MDIO_PCS_CTRL1_CLKSTOP_EN);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001062
1063 return 0; /* EEE supported */
1064 }
1065eee_exit_err:
1066 return -EPROTONOSUPPORT;
1067}
1068EXPORT_SYMBOL(phy_init_eee);
1069
1070/**
1071 * phy_get_eee_err - report the EEE wake error count
1072 * @phydev: target phy_device struct
1073 *
1074 * Description: it is to report the number of time where the PHY
1075 * failed to complete its normal wake sequence.
1076 */
1077int phy_get_eee_err(struct phy_device *phydev)
1078{
1079 if (!phydev->drv)
1080 return -EIO;
1081
1082 return phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_WK_ERR);
1083}
1084EXPORT_SYMBOL(phy_get_eee_err);
1085
1086/**
1087 * phy_ethtool_get_eee - get EEE supported and status
1088 * @phydev: target phy_device struct
1089 * @data: ethtool_eee data
1090 *
1091 * Description: it reportes the Supported/Advertisement/LP Advertisement
1092 * capabilities.
1093 */
1094int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1095{
1096 int val;
1097
1098 if (!phydev->drv)
1099 return -EIO;
1100
1101 /* Get Supported EEE */
1102 val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1103 if (val < 0)
1104 return val;
1105 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
1106
1107 /* Get advertisement EEE */
1108 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1109 if (val < 0)
1110 return val;
1111 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
David Brazdil0f672f62019-12-10 10:32:29 +00001112 data->eee_enabled = !!data->advertised;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001113
1114 /* Get LP advertisement EEE */
1115 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
1116 if (val < 0)
1117 return val;
1118 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
1119
David Brazdil0f672f62019-12-10 10:32:29 +00001120 data->eee_active = !!(data->advertised & data->lp_advertised);
1121
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001122 return 0;
1123}
1124EXPORT_SYMBOL(phy_ethtool_get_eee);
1125
1126/**
1127 * phy_ethtool_set_eee - set EEE supported and status
1128 * @phydev: target phy_device struct
1129 * @data: ethtool_eee data
1130 *
1131 * Description: it is to program the Advertisement EEE register.
1132 */
1133int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1134{
David Brazdil0f672f62019-12-10 10:32:29 +00001135 int cap, old_adv, adv = 0, ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001136
1137 if (!phydev->drv)
1138 return -EIO;
1139
1140 /* Get Supported EEE */
1141 cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1142 if (cap < 0)
1143 return cap;
1144
1145 old_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1146 if (old_adv < 0)
1147 return old_adv;
1148
David Brazdil0f672f62019-12-10 10:32:29 +00001149 if (data->eee_enabled) {
1150 adv = !data->advertised ? cap :
1151 ethtool_adv_to_mmd_eee_adv_t(data->advertised) & cap;
1152 /* Mask prohibited EEE modes */
1153 adv &= ~phydev->eee_broken_modes;
1154 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001155
1156 if (old_adv != adv) {
1157 ret = phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, adv);
1158 if (ret < 0)
1159 return ret;
1160
1161 /* Restart autonegotiation so the new modes get sent to the
1162 * link partner.
1163 */
Olivier Deprez0e641232021-09-23 10:07:05 +02001164 if (phydev->autoneg == AUTONEG_ENABLE) {
1165 ret = phy_restart_aneg(phydev);
1166 if (ret < 0)
1167 return ret;
1168 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001169 }
1170
1171 return 0;
1172}
1173EXPORT_SYMBOL(phy_ethtool_set_eee);
1174
1175int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1176{
1177 if (phydev->drv && phydev->drv->set_wol)
1178 return phydev->drv->set_wol(phydev, wol);
1179
1180 return -EOPNOTSUPP;
1181}
1182EXPORT_SYMBOL(phy_ethtool_set_wol);
1183
1184void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1185{
1186 if (phydev->drv && phydev->drv->get_wol)
1187 phydev->drv->get_wol(phydev, wol);
1188}
1189EXPORT_SYMBOL(phy_ethtool_get_wol);
1190
1191int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1192 struct ethtool_link_ksettings *cmd)
1193{
1194 struct phy_device *phydev = ndev->phydev;
1195
1196 if (!phydev)
1197 return -ENODEV;
1198
1199 phy_ethtool_ksettings_get(phydev, cmd);
1200
1201 return 0;
1202}
1203EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1204
1205int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1206 const struct ethtool_link_ksettings *cmd)
1207{
1208 struct phy_device *phydev = ndev->phydev;
1209
1210 if (!phydev)
1211 return -ENODEV;
1212
1213 return phy_ethtool_ksettings_set(phydev, cmd);
1214}
1215EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
1216
1217int phy_ethtool_nway_reset(struct net_device *ndev)
1218{
1219 struct phy_device *phydev = ndev->phydev;
1220
1221 if (!phydev)
1222 return -ENODEV;
1223
1224 if (!phydev->drv)
1225 return -EIO;
1226
1227 return phy_restart_aneg(phydev);
1228}
1229EXPORT_SYMBOL(phy_ethtool_nway_reset);