blob: 537297d2b4b4309adeacd1e66541b2aa1830b8b8 [file] [log] [blame]
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001/* Framework for configuring and reading PHY devices
Andy Fleming00db8182005-07-30 19:31:23 -04002 * Based on code in sungem_phy.c and gianfar_phy.c
3 *
4 * Author: Andy Fleming
5 *
6 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -07007 * Copyright (c) 2006, 2007 Maciej W. Rozycki
Andy Fleming00db8182005-07-30 19:31:23 -04008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
Joe Perches8d242482012-06-09 07:49:07 +000015
16#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Andy Fleming00db8182005-07-30 19:31:23 -040018#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040019#include <linux/string.h>
20#include <linux/errno.h>
21#include <linux/unistd.h>
Andy Fleming00db8182005-07-30 19:31:23 -040022#include <linux/interrupt.h>
Andy Fleming00db8182005-07-30 19:31:23 -040023#include <linux/delay.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/skbuff.h>
Andy Fleming00db8182005-07-30 19:31:23 -040027#include <linux/mm.h>
28#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040029#include <linux/mii.h>
30#include <linux/ethtool.h>
31#include <linux/phy.h>
Geert Uytterhoevend6f8cfa2017-01-25 11:39:49 +010032#include <linux/phy_led_triggers.h>
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +010033#include <linux/workqueue.h>
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +000034#include <linux/mdio.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030035#include <linux/io.h>
36#include <linux/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030038
Andy Fleming00db8182005-07-30 19:31:23 -040039#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040040
Florian Fainelli3e2186e2015-05-16 10:17:56 -070041#define PHY_STATE_STR(_state) \
42 case PHY_##_state: \
43 return __stringify(_state); \
44
45static const char *phy_state_to_str(enum phy_state st)
46{
47 switch (st) {
48 PHY_STATE_STR(DOWN)
49 PHY_STATE_STR(STARTING)
50 PHY_STATE_STR(READY)
51 PHY_STATE_STR(PENDING)
52 PHY_STATE_STR(UP)
53 PHY_STATE_STR(AN)
54 PHY_STATE_STR(RUNNING)
55 PHY_STATE_STR(NOLINK)
56 PHY_STATE_STR(FORCING)
57 PHY_STATE_STR(CHANGELINK)
58 PHY_STATE_STR(HALTED)
59 PHY_STATE_STR(RESUMING)
60 }
61
62 return NULL;
63}
64
65
Randy Dunlapb3df0da2007-03-06 02:41:48 -080066/**
67 * phy_print_status - Convenience function to print out the current phy status
68 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -050069 */
70void phy_print_status(struct phy_device *phydev)
71{
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030072 if (phydev->link) {
Florian Fainellidf40cc82014-02-11 17:27:34 -080073 netdev_info(phydev->attached_dev,
Florian Fainelli766d1d32014-02-11 17:27:35 -080074 "Link is Up - %s/%s - flow control %s\n",
75 phy_speed_to_str(phydev->speed),
Russell Kingda4625a2017-07-25 15:02:42 +010076 phy_duplex_to_str(phydev->duplex),
Florian Fainellidf40cc82014-02-11 17:27:34 -080077 phydev->pause ? "rx/tx" : "off");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030078 } else {
Florian Fainelli43b63292014-02-11 17:27:33 -080079 netdev_info(phydev->attached_dev, "Link is Down\n");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030080 }
Andy Fleminge1393452005-08-24 18:46:21 -050081}
82EXPORT_SYMBOL(phy_print_status);
Andy Fleming00db8182005-07-30 19:31:23 -040083
Randy Dunlapb3df0da2007-03-06 02:41:48 -080084/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -080085 * phy_clear_interrupt - Ack the phy device's interrupt
86 * @phydev: the phy_device struct
87 *
88 * If the @phydev driver has an ack_interrupt function, call it to
89 * ack and clear the phy device's interrupt.
90 *
Florian Fainelliad033502014-02-11 17:27:38 -080091 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -080092 */
stephen hemminger89ff05e2010-10-21 08:37:41 +000093static int phy_clear_interrupt(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -040094{
Andy Fleming00db8182005-07-30 19:31:23 -040095 if (phydev->drv->ack_interrupt)
Sergei Shtylyove62a7682014-01-05 03:21:52 +030096 return phydev->drv->ack_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -040097
Sergei Shtylyove62a7682014-01-05 03:21:52 +030098 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -040099}
100
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800101/**
102 * phy_config_interrupt - configure the PHY device for the requested interrupts
103 * @phydev: the phy_device struct
104 * @interrupts: interrupt flags to configure for this @phydev
105 *
Florian Fainelliad033502014-02-11 17:27:38 -0800106 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800107 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000108static int phy_config_interrupt(struct phy_device *phydev, u32 interrupts)
Andy Fleming00db8182005-07-30 19:31:23 -0400109{
Andy Fleming00db8182005-07-30 19:31:23 -0400110 phydev->interrupts = interrupts;
111 if (phydev->drv->config_intr)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300112 return phydev->drv->config_intr(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400113
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300114 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400115}
116
Russell King002ba702017-06-05 12:23:00 +0100117/**
118 * phy_restart_aneg - restart auto-negotiation
119 * @phydev: target phy_device struct
120 *
121 * Restart the autonegotiation on @phydev. Returns >= 0 on success or
122 * negative errno on error.
123 */
124int phy_restart_aneg(struct phy_device *phydev)
125{
126 int ret;
127
128 if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
129 ret = genphy_c45_restart_aneg(phydev);
130 else
131 ret = genphy_restart_aneg(phydev);
132
133 return ret;
134}
135EXPORT_SYMBOL_GPL(phy_restart_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -0400136
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800137/**
138 * phy_aneg_done - return auto-negotiation status
139 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400140 *
Florian Fainelli76a423a2014-02-11 17:27:37 -0800141 * Description: Return the auto-negotiation status from this @phydev
142 * Returns > 0 on success or < 0 on error. 0 means that auto-negotiation
143 * is still pending.
Andy Fleming00db8182005-07-30 19:31:23 -0400144 */
Lendacky, Thomas372788f2016-11-10 17:10:46 -0600145int phy_aneg_done(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400146{
Florian Fainelli65f27672017-02-23 14:22:19 -0800147 if (phydev->drv && phydev->drv->aneg_done)
Florian Fainelli76a423a2014-02-11 17:27:37 -0800148 return phydev->drv->aneg_done(phydev);
149
Russell King41408ad2017-06-05 12:22:55 +0100150 /* Avoid genphy_aneg_done() if the Clause 45 PHY does not
151 * implement Clause 22 registers
152 */
153 if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
154 return -EINVAL;
155
Florian Fainellia9fa6e62014-02-11 17:27:36 -0800156 return genphy_aneg_done(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400157}
Lendacky, Thomas372788f2016-11-10 17:10:46 -0600158EXPORT_SYMBOL(phy_aneg_done);
Andy Fleming00db8182005-07-30 19:31:23 -0400159
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800160/**
Russell Kingd0613032017-04-13 16:49:15 +0100161 * phy_find_valid - find a PHY setting that matches the requested parameters
162 * @speed: desired speed
163 * @duplex: desired duplex
164 * @supported: mask of supported link modes
Andy Fleming00db8182005-07-30 19:31:23 -0400165 *
Russell Kingd0613032017-04-13 16:49:15 +0100166 * Locate a supported phy setting that is, in priority order:
167 * - an exact match for the specified speed and duplex mode
168 * - a match for the specified speed, or slower speed
169 * - the slowest supported speed
170 * Returns the matched phy_setting entry, or %NULL if no supported phy
171 * settings were found.
Andy Fleming00db8182005-07-30 19:31:23 -0400172 */
Russell Kingd0613032017-04-13 16:49:15 +0100173static const struct phy_setting *
174phy_find_valid(int speed, int duplex, u32 supported)
Andy Fleming00db8182005-07-30 19:31:23 -0400175{
Russell Kingc3ecbe72017-07-25 15:02:37 +0100176 unsigned long mask = supported;
177
178 return phy_lookup_setting(speed, duplex, &mask, BITS_PER_LONG, false);
Andy Fleming00db8182005-07-30 19:31:23 -0400179}
180
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800181/**
Zach Brown1f9127c2016-10-17 10:49:54 -0500182 * phy_supported_speeds - return all speeds currently supported by a phy device
183 * @phy: The phy device to return supported speeds of.
184 * @speeds: buffer to store supported speeds in.
185 * @size: size of speeds buffer.
186 *
187 * Description: Returns the number of supported speeds, and fills the speeds
188 * buffer with the supported speeds. If speeds buffer is too small to contain
189 * all currently supported speeds, will return as many speeds as can fit.
190 */
191unsigned int phy_supported_speeds(struct phy_device *phy,
192 unsigned int *speeds,
193 unsigned int size)
194{
Russell Kingc3ecbe72017-07-25 15:02:37 +0100195 unsigned long supported = phy->supported;
Zach Brown1f9127c2016-10-17 10:49:54 -0500196
Russell King0ccb4fc2017-07-25 15:02:47 +0100197 return phy_speeds(speeds, size, &supported, BITS_PER_LONG);
Zach Brown1f9127c2016-10-17 10:49:54 -0500198}
199
200/**
Guenter Roeck54da5a82015-02-17 09:36:22 -0800201 * phy_check_valid - check if there is a valid PHY setting which matches
202 * speed, duplex, and feature mask
203 * @speed: speed to match
204 * @duplex: duplex to match
205 * @features: A mask of the valid settings
206 *
207 * Description: Returns true if there is a valid setting, false otherwise.
208 */
209static inline bool phy_check_valid(int speed, int duplex, u32 features)
210{
Russell Kingc3ecbe72017-07-25 15:02:37 +0100211 unsigned long mask = features;
212
213 return !!phy_lookup_setting(speed, duplex, &mask, BITS_PER_LONG, true);
Guenter Roeck54da5a82015-02-17 09:36:22 -0800214}
215
216/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800217 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
218 * @phydev: the target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400219 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800220 * Description: Make sure the PHY is set to supported speeds and
Andy Fleming00db8182005-07-30 19:31:23 -0400221 * duplexes. Drop down by one in this order: 1000/FULL,
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800222 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
Andy Fleming00db8182005-07-30 19:31:23 -0400223 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000224static void phy_sanitize_settings(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400225{
Russell Kingd0613032017-04-13 16:49:15 +0100226 const struct phy_setting *setting;
Andy Fleming00db8182005-07-30 19:31:23 -0400227 u32 features = phydev->supported;
Andy Fleming00db8182005-07-30 19:31:23 -0400228
229 /* Sanitize settings based on PHY capabilities */
230 if ((features & SUPPORTED_Autoneg) == 0)
Domen Puncer163642a2007-08-07 12:12:41 +0200231 phydev->autoneg = AUTONEG_DISABLE;
Andy Fleming00db8182005-07-30 19:31:23 -0400232
Russell Kingd0613032017-04-13 16:49:15 +0100233 setting = phy_find_valid(phydev->speed, phydev->duplex, features);
234 if (setting) {
235 phydev->speed = setting->speed;
236 phydev->duplex = setting->duplex;
237 } else {
238 /* We failed to find anything (no supported speeds?) */
239 phydev->speed = SPEED_UNKNOWN;
240 phydev->duplex = DUPLEX_UNKNOWN;
241 }
Andy Fleming00db8182005-07-30 19:31:23 -0400242}
Andy Fleming00db8182005-07-30 19:31:23 -0400243
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800244/**
245 * phy_ethtool_sset - generic ethtool sset function, handles all the details
246 * @phydev: target phy_device struct
247 * @cmd: ethtool_cmd
Andy Fleming00db8182005-07-30 19:31:23 -0400248 *
249 * A few notes about parameter checking:
Mauro Carvalho Chehabd6519832017-05-12 09:35:46 -0300250 *
Andy Fleming00db8182005-07-30 19:31:23 -0400251 * - We don't set port or transceiver, so we don't care what they
252 * were set to.
253 * - phy_start_aneg() will make sure forced settings are sane, and
254 * choose the next best ones from the ones selected, so we don't
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800255 * care if ethtool tries to give us bad values.
Andy Fleming00db8182005-07-30 19:31:23 -0400256 */
257int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
258{
David Decotigny25db0332011-04-27 18:32:39 +0000259 u32 speed = ethtool_cmd_speed(cmd);
260
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100261 if (cmd->phy_address != phydev->mdio.addr)
Andy Fleming00db8182005-07-30 19:31:23 -0400262 return -EINVAL;
263
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300264 /* We make sure that we don't pass unsupported values in to the PHY */
Andy Fleming00db8182005-07-30 19:31:23 -0400265 cmd->advertising &= phydev->supported;
266
267 /* Verify the settings we care about. */
268 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
269 return -EINVAL;
270
271 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
272 return -EINVAL;
273
Joe Perches8e95a202009-12-03 07:58:21 +0000274 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +0000275 ((speed != SPEED_1000 &&
276 speed != SPEED_100 &&
277 speed != SPEED_10) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000278 (cmd->duplex != DUPLEX_HALF &&
279 cmd->duplex != DUPLEX_FULL)))
Andy Fleming00db8182005-07-30 19:31:23 -0400280 return -EINVAL;
281
282 phydev->autoneg = cmd->autoneg;
283
David Decotigny25db0332011-04-27 18:32:39 +0000284 phydev->speed = speed;
Andy Fleming00db8182005-07-30 19:31:23 -0400285
286 phydev->advertising = cmd->advertising;
287
288 if (AUTONEG_ENABLE == cmd->autoneg)
289 phydev->advertising |= ADVERTISED_Autoneg;
290 else
291 phydev->advertising &= ~ADVERTISED_Autoneg;
292
293 phydev->duplex = cmd->duplex;
294
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530295 phydev->mdix_ctrl = cmd->eth_tp_mdix_ctrl;
David Thomson634ec362015-07-10 13:56:54 +1200296
Andy Fleming00db8182005-07-30 19:31:23 -0400297 /* Restart the PHY */
298 phy_start_aneg(phydev);
299
300 return 0;
301}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600302EXPORT_SYMBOL(phy_ethtool_sset);
Andy Fleming00db8182005-07-30 19:31:23 -0400303
Philippe Reynes2d551732016-04-15 00:35:00 +0200304int phy_ethtool_ksettings_set(struct phy_device *phydev,
305 const struct ethtool_link_ksettings *cmd)
306{
307 u8 autoneg = cmd->base.autoneg;
308 u8 duplex = cmd->base.duplex;
309 u32 speed = cmd->base.speed;
310 u32 advertising;
311
312 if (cmd->base.phy_address != phydev->mdio.addr)
313 return -EINVAL;
314
315 ethtool_convert_link_mode_to_legacy_u32(&advertising,
316 cmd->link_modes.advertising);
317
318 /* We make sure that we don't pass unsupported values in to the PHY */
319 advertising &= phydev->supported;
320
321 /* Verify the settings we care about. */
322 if (autoneg != AUTONEG_ENABLE && autoneg != AUTONEG_DISABLE)
323 return -EINVAL;
324
325 if (autoneg == AUTONEG_ENABLE && advertising == 0)
326 return -EINVAL;
327
328 if (autoneg == AUTONEG_DISABLE &&
329 ((speed != SPEED_1000 &&
330 speed != SPEED_100 &&
331 speed != SPEED_10) ||
332 (duplex != DUPLEX_HALF &&
333 duplex != DUPLEX_FULL)))
334 return -EINVAL;
335
336 phydev->autoneg = autoneg;
337
338 phydev->speed = speed;
339
340 phydev->advertising = advertising;
341
342 if (autoneg == AUTONEG_ENABLE)
343 phydev->advertising |= ADVERTISED_Autoneg;
344 else
345 phydev->advertising &= ~ADVERTISED_Autoneg;
346
347 phydev->duplex = duplex;
348
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530349 phydev->mdix_ctrl = cmd->base.eth_tp_mdix_ctrl;
Philippe Reynes2d551732016-04-15 00:35:00 +0200350
351 /* Restart the PHY */
352 phy_start_aneg(phydev);
353
354 return 0;
355}
356EXPORT_SYMBOL(phy_ethtool_ksettings_set);
357
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +0300358void phy_ethtool_ksettings_get(struct phy_device *phydev,
359 struct ethtool_link_ksettings *cmd)
Philippe Reynes2d551732016-04-15 00:35:00 +0200360{
361 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
362 phydev->supported);
363
364 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
365 phydev->advertising);
366
367 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.lp_advertising,
368 phydev->lp_advertising);
369
370 cmd->base.speed = phydev->speed;
371 cmd->base.duplex = phydev->duplex;
372 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
373 cmd->base.port = PORT_BNC;
374 else
375 cmd->base.port = PORT_MII;
Florian Fainelliceb62812017-09-20 15:52:14 -0700376 cmd->base.transceiver = phy_is_internal(phydev) ?
377 XCVR_INTERNAL : XCVR_EXTERNAL;
Philippe Reynes2d551732016-04-15 00:35:00 +0200378 cmd->base.phy_address = phydev->mdio.addr;
379 cmd->base.autoneg = phydev->autoneg;
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530380 cmd->base.eth_tp_mdix_ctrl = phydev->mdix_ctrl;
381 cmd->base.eth_tp_mdix = phydev->mdix;
Philippe Reynes2d551732016-04-15 00:35:00 +0200382}
383EXPORT_SYMBOL(phy_ethtool_ksettings_get);
384
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800385/**
386 * phy_mii_ioctl - generic PHY MII ioctl interface
387 * @phydev: the phy_device struct
Randy Dunlap00c7d922010-08-09 13:41:59 +0000388 * @ifr: &struct ifreq for socket ioctl's
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800389 * @cmd: ioctl cmd to execute
390 *
391 * Note that this function is currently incompatible with the
Andy Fleming00db8182005-07-30 19:31:23 -0400392 * PHYCONTROL layer. It changes registers without regard to
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800393 * current state. Use at own risk.
Andy Fleming00db8182005-07-30 19:31:23 -0400394 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300395int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
Andy Fleming00db8182005-07-30 19:31:23 -0400396{
Richard Cochran28b04112010-07-17 08:48:55 +0000397 struct mii_ioctl_data *mii_data = if_mii(ifr);
Andy Fleming00db8182005-07-30 19:31:23 -0400398 u16 val = mii_data->val_in;
Brian Hill79ce0472014-11-11 13:39:39 -0700399 bool change_autoneg = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400400
401 switch (cmd) {
402 case SIOCGMIIPHY:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100403 mii_data->phy_id = phydev->mdio.addr;
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000404 /* fall through */
405
Andy Fleming00db8182005-07-30 19:31:23 -0400406 case SIOCGMIIREG:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100407 mii_data->val_out = mdiobus_read(phydev->mdio.bus,
408 mii_data->phy_id,
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000409 mii_data->reg_num);
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300410 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400411
412 case SIOCSMIIREG:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100413 if (mii_data->phy_id == phydev->mdio.addr) {
Florian Fainellie1093742013-12-17 21:38:12 -0800414 switch (mii_data->reg_num) {
Andy Fleming00db8182005-07-30 19:31:23 -0400415 case MII_BMCR:
Brian Hill79ce0472014-11-11 13:39:39 -0700416 if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
417 if (phydev->autoneg == AUTONEG_ENABLE)
418 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400419 phydev->autoneg = AUTONEG_DISABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700420 if (val & BMCR_FULLDPLX)
421 phydev->duplex = DUPLEX_FULL;
422 else
423 phydev->duplex = DUPLEX_HALF;
424 if (val & BMCR_SPEED1000)
425 phydev->speed = SPEED_1000;
426 else if (val & BMCR_SPEED100)
427 phydev->speed = SPEED_100;
428 else phydev->speed = SPEED_10;
429 }
430 else {
431 if (phydev->autoneg == AUTONEG_DISABLE)
432 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400433 phydev->autoneg = AUTONEG_ENABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700434 }
Andy Fleming00db8182005-07-30 19:31:23 -0400435 break;
436 case MII_ADVERTISE:
Brian Hill79ce0472014-11-11 13:39:39 -0700437 phydev->advertising = mii_adv_to_ethtool_adv_t(val);
438 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400439 break;
440 default:
441 /* do nothing */
442 break;
443 }
444 }
445
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100446 mdiobus_write(phydev->mdio.bus, mii_data->phy_id,
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000447 mii_data->reg_num, val);
448
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100449 if (mii_data->phy_id == phydev->mdio.addr &&
Jérôme Pouillercf18b772015-12-03 10:02:35 +0100450 mii_data->reg_num == MII_BMCR &&
Florian Fainelli2613f952013-12-06 13:01:31 -0800451 val & BMCR_RESET)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300452 return phy_init_hw(phydev);
Brian Hill79ce0472014-11-11 13:39:39 -0700453
454 if (change_autoneg)
455 return phy_start_aneg(phydev);
456
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300457 return 0;
David Woodhousedda93b482007-11-28 19:56:34 +0000458
Richard Cochranc1f19b52010-07-17 08:49:36 +0000459 case SIOCSHWTSTAMP:
Florian Fainelli25149ef2017-02-17 16:07:34 -0800460 if (phydev->drv && phydev->drv->hwtstamp)
Richard Cochranc1f19b52010-07-17 08:49:36 +0000461 return phydev->drv->hwtstamp(phydev, ifr);
462 /* fall through */
463
David Woodhousedda93b482007-11-28 19:56:34 +0000464 default:
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000465 return -EOPNOTSUPP;
Andy Fleming00db8182005-07-30 19:31:23 -0400466 }
Andy Fleming00db8182005-07-30 19:31:23 -0400467}
Domen Puncer680e9fe2007-09-17 22:21:40 +0200468EXPORT_SYMBOL(phy_mii_ioctl);
Andy Fleming00db8182005-07-30 19:31:23 -0400469
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800470/**
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300471 * phy_start_aneg_priv - start auto-negotiation for this PHY device
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800472 * @phydev: the phy_device struct
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300473 * @sync: indicate whether we should wait for the workqueue cancelation
Andy Fleminge1393452005-08-24 18:46:21 -0500474 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800475 * Description: Sanitizes the settings (if we're not autonegotiating
476 * them), and then calls the driver's config_aneg function.
477 * If the PHYCONTROL Layer is operating, we change the state to
478 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500479 */
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300480static int phy_start_aneg_priv(struct phy_device *phydev, bool sync)
Andy Fleminge1393452005-08-24 18:46:21 -0500481{
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300482 bool trigger = 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500483 int err;
484
Florian Fainelli25149ef2017-02-17 16:07:34 -0800485 if (!phydev->drv)
486 return -EIO;
487
Nate Case35b5f6b2008-01-29 10:05:09 -0600488 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500489
490 if (AUTONEG_DISABLE == phydev->autoneg)
491 phy_sanitize_settings(phydev);
492
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000493 /* Invalidate LP advertising flags */
494 phydev->lp_advertising = 0;
495
Heiner Kallweit00fde792017-11-30 23:46:19 +0100496 if (phydev->drv->config_aneg)
497 err = phydev->drv->config_aneg(phydev);
498 else
499 err = genphy_config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500500 if (err < 0)
501 goto out_unlock;
502
503 if (phydev->state != PHY_HALTED) {
504 if (AUTONEG_ENABLE == phydev->autoneg) {
505 phydev->state = PHY_AN;
506 phydev->link_timeout = PHY_AN_TIMEOUT;
507 } else {
508 phydev->state = PHY_FORCING;
509 phydev->link_timeout = PHY_FORCE_TIMEOUT;
510 }
511 }
512
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300513 /* Re-schedule a PHY state machine to check PHY status because
514 * negotiation may already be done and aneg interrupt may not be
515 * generated.
516 */
517 if (phy_interrupt_is_valid(phydev) && (phydev->state == PHY_AN)) {
518 err = phy_aneg_done(phydev);
519 if (err > 0) {
520 trigger = true;
521 err = 0;
522 }
523 }
524
Andy Fleminge1393452005-08-24 18:46:21 -0500525out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600526 mutex_unlock(&phydev->lock);
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300527
528 if (trigger)
529 phy_trigger_machine(phydev, sync);
530
Andy Fleminge1393452005-08-24 18:46:21 -0500531 return err;
532}
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300533
534/**
535 * phy_start_aneg - start auto-negotiation for this PHY device
536 * @phydev: the phy_device struct
537 *
538 * Description: Sanitizes the settings (if we're not autonegotiating
539 * them), and then calls the driver's config_aneg function.
540 * If the PHYCONTROL Layer is operating, we change the state to
541 * reflect the beginning of Auto-negotiation or forcing.
542 */
543int phy_start_aneg(struct phy_device *phydev)
544{
545 return phy_start_aneg_priv(phydev, true);
546}
Andy Fleminge1393452005-08-24 18:46:21 -0500547EXPORT_SYMBOL(phy_start_aneg);
548
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800549/**
550 * phy_start_machine - start PHY state machine tracking
551 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400552 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800553 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400554 * which tracks whether the PHY is starting up, negotiating,
Florian Fainellifb5e7606b2017-07-26 12:05:38 -0700555 * etc. This function starts the delayed workqueue which tracks
556 * the state of the PHY. If you want to maintain your own state machine,
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300557 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800558 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300559void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400560{
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530561 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400562}
Russell King5e5758d2017-07-25 15:03:03 +0100563EXPORT_SYMBOL_GPL(phy_start_machine);
Andy Fleming00db8182005-07-30 19:31:23 -0400564
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800565/**
Andrew Lunn3c293f42016-10-12 22:14:53 +0200566 * phy_trigger_machine - trigger the state machine to run
567 *
568 * @phydev: the phy_device struct
Florian Fainellieab12772017-01-20 15:31:52 -0800569 * @sync: indicate whether we should wait for the workqueue cancelation
Andrew Lunn3c293f42016-10-12 22:14:53 +0200570 *
571 * Description: There has been a change in state which requires that the
572 * state machine runs.
573 */
574
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300575void phy_trigger_machine(struct phy_device *phydev, bool sync)
Andrew Lunn3c293f42016-10-12 22:14:53 +0200576{
Florian Fainellieab12772017-01-20 15:31:52 -0800577 if (sync)
578 cancel_delayed_work_sync(&phydev->state_queue);
579 else
580 cancel_delayed_work(&phydev->state_queue);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200581 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
582}
583
584/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800585 * phy_stop_machine - stop the PHY state machine tracking
586 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400587 *
Florian Fainellifb5e7606b2017-07-26 12:05:38 -0700588 * Description: Stops the state machine delayed workqueue, sets the
589 * state to UP (unless it wasn't up yet). This function must be
590 * called BEFORE phy_detach.
Andy Fleming00db8182005-07-30 19:31:23 -0400591 */
592void phy_stop_machine(struct phy_device *phydev)
593{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700594 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400595
Nate Case35b5f6b2008-01-29 10:05:09 -0600596 mutex_lock(&phydev->lock);
Nathan Sullivan49d52e82017-03-22 15:27:01 -0500597 if (phydev->state > PHY_UP && phydev->state != PHY_HALTED)
Andy Fleming00db8182005-07-30 19:31:23 -0400598 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600599 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400600}
601
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800602/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800603 * phy_error - enter HALTED state for this PHY device
604 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400605 *
606 * Moves the PHY to the HALTED state in response to a read
607 * or write error, and tells the controller the link is down.
608 * Must not be called from interrupt context, or while the
609 * phydev->lock is held.
610 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500611static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400612{
Nate Case35b5f6b2008-01-29 10:05:09 -0600613 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400614 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600615 mutex_unlock(&phydev->lock);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200616
Florian Fainellieab12772017-01-20 15:31:52 -0800617 phy_trigger_machine(phydev, false);
Andy Fleming00db8182005-07-30 19:31:23 -0400618}
619
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800620/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800621 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
622 * @phydev: target phy_device struct
623 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000624static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400625{
626 int err;
627
628 /* Disable PHY interrupts */
629 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400630 if (err)
Heiner Kallweit4fff2d32018-03-05 22:34:27 +0100631 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400632
633 /* Clear the interrupt */
Heiner Kallweit4fff2d32018-03-05 22:34:27 +0100634 return phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400635}
Andy Fleminge1393452005-08-24 18:46:21 -0500636
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800637/**
Brad Mouringa2c054a2018-03-08 16:23:03 -0600638 * phy_change - Called by the phy_interrupt to handle PHY changes
639 * @phydev: phy_device struct that interrupted
640 */
641static irqreturn_t phy_change(struct phy_device *phydev)
642{
643 if (phy_interrupt_is_valid(phydev)) {
644 if (phydev->drv->did_interrupt &&
645 !phydev->drv->did_interrupt(phydev))
646 return IRQ_NONE;
647
648 if (phydev->state == PHY_HALTED)
649 if (phy_disable_interrupts(phydev))
650 goto phy_err;
651 }
652
653 mutex_lock(&phydev->lock);
654 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
655 phydev->state = PHY_CHANGELINK;
656 mutex_unlock(&phydev->lock);
657
658 /* reschedule state queue work to run as soon as possible */
659 phy_trigger_machine(phydev, true);
660
661 if (phy_interrupt_is_valid(phydev) && phy_clear_interrupt(phydev))
662 goto phy_err;
663 return IRQ_HANDLED;
664
665phy_err:
666 phy_error(phydev);
667 return IRQ_NONE;
668}
669
670/**
671 * phy_change_work - Scheduled by the phy_mac_interrupt to handle PHY changes
672 * @work: work_struct that describes the work to be done
673 */
674void phy_change_work(struct work_struct *work)
675{
676 struct phy_device *phydev =
677 container_of(work, struct phy_device, phy_queue);
678
679 phy_change(phydev);
680}
681
682/**
683 * phy_interrupt - PHY interrupt handler
684 * @irq: interrupt line
685 * @phy_dat: phy_device pointer
686 *
687 * Description: When a PHY interrupt occurs, the handler disables
688 * interrupts, and uses phy_change to handle the interrupt.
689 */
690static irqreturn_t phy_interrupt(int irq, void *phy_dat)
691{
692 struct phy_device *phydev = phy_dat;
693
694 if (PHY_HALTED == phydev->state)
695 return IRQ_NONE; /* It can't be ours. */
696
697 return phy_change(phydev);
698}
699
700/**
701 * phy_enable_interrupts - Enable the interrupts from the PHY side
702 * @phydev: target phy_device struct
703 */
704static int phy_enable_interrupts(struct phy_device *phydev)
705{
706 int err = phy_clear_interrupt(phydev);
707
708 if (err < 0)
709 return err;
710
711 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
712}
713
714/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800715 * phy_start_interrupts - request and enable interrupts for a PHY device
716 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500717 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800718 * Description: Request the interrupt for the given PHY.
719 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500720 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500721 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800722 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500723 */
724int phy_start_interrupts(struct phy_device *phydev)
725{
Andrew Lunnc974bdb2016-10-16 19:56:50 +0200726 if (request_threaded_irq(phydev->irq, NULL, phy_interrupt,
727 IRQF_ONESHOT | IRQF_SHARED,
Andrew Lunnae0219c2016-10-16 19:56:52 +0200728 phydev_name(phydev), phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000729 pr_warn("%s: Can't get IRQ %d (PHY)\n",
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100730 phydev->mdio.bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500731 phydev->irq = PHY_POLL;
732 return 0;
733 }
734
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300735 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500736}
737EXPORT_SYMBOL(phy_start_interrupts);
738
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800739/**
740 * phy_stop_interrupts - disable interrupts from a PHY device
741 * @phydev: target phy_device struct
742 */
Andy Fleminge1393452005-08-24 18:46:21 -0500743int phy_stop_interrupts(struct phy_device *phydev)
744{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300745 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500746
747 if (err)
748 phy_error(phydev);
749
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700750 free_irq(phydev->irq, phydev);
751
Andy Fleminge1393452005-08-24 18:46:21 -0500752 return err;
753}
754EXPORT_SYMBOL(phy_stop_interrupts);
755
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800756/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800757 * phy_stop - Bring down the PHY link, and stop checking the status
758 * @phydev: target phy_device struct
759 */
Andy Fleminge1393452005-08-24 18:46:21 -0500760void phy_stop(struct phy_device *phydev)
761{
Nate Case35b5f6b2008-01-29 10:05:09 -0600762 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500763
764 if (PHY_HALTED == phydev->state)
765 goto out_unlock;
766
Heiner Kallweit70a55c32018-03-05 22:34:46 +0100767 if (phy_interrupt_is_valid(phydev))
768 phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500769
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700770 phydev->state = PHY_HALTED;
771
Andy Fleminge1393452005-08-24 18:46:21 -0500772out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600773 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100774
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300775 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100776 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
777 * will not reenable interrupts.
778 */
Andy Fleminge1393452005-08-24 18:46:21 -0500779}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300780EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500781
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800782/**
783 * phy_start - start or restart a PHY device
784 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500785 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800786 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500787 * handle PHY-related work. Used during startup to start the
788 * PHY, and after a call to phy_stop() to resume operation.
789 * Also used to indicate the MDIO bus has cleared an error
790 * condition.
791 */
792void phy_start(struct phy_device *phydev)
793{
Tim Bealec15e10e2015-05-18 15:38:38 +1200794 int err = 0;
795
Nate Case35b5f6b2008-01-29 10:05:09 -0600796 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500797
798 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800799 case PHY_STARTING:
800 phydev->state = PHY_PENDING;
801 break;
802 case PHY_READY:
803 phydev->state = PHY_UP;
804 break;
805 case PHY_HALTED:
Russell Kingf5e64032017-12-12 10:45:36 +0000806 /* if phy was suspended, bring the physical link up again */
Andrew Lunn9c2c2e62018-02-27 01:56:06 +0100807 __phy_resume(phydev);
Russell Kingf5e64032017-12-12 10:45:36 +0000808
Tim Bealec15e10e2015-05-18 15:38:38 +1200809 /* make sure interrupts are re-enabled for the PHY */
Heiner Kallweit08f51382018-02-08 21:01:48 +0100810 if (phy_interrupt_is_valid(phydev)) {
Shaohui Xie84a527a2016-05-10 17:42:26 +0800811 err = phy_enable_interrupts(phydev);
812 if (err < 0)
813 break;
814 }
Tim Bealec15e10e2015-05-18 15:38:38 +1200815
Florian Fainellie1093742013-12-17 21:38:12 -0800816 phydev->state = PHY_RESUMING;
Tim Bealec15e10e2015-05-18 15:38:38 +1200817 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800818 default:
819 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500820 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600821 mutex_unlock(&phydev->lock);
Tim Bealec15e10e2015-05-18 15:38:38 +1200822
Florian Fainellieab12772017-01-20 15:31:52 -0800823 phy_trigger_machine(phydev, true);
Andy Fleminge1393452005-08-24 18:46:21 -0500824}
Andy Fleminge1393452005-08-24 18:46:21 -0500825EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400826
Russell Kinga81497b2017-07-25 15:02:58 +0100827static void phy_link_up(struct phy_device *phydev)
Zach Brown61a17962016-10-17 10:49:53 -0500828{
Russell Kinga81497b2017-07-25 15:02:58 +0100829 phydev->phy_link_change(phydev, true, true);
830 phy_led_trigger_change_speed(phydev);
831}
832
833static void phy_link_down(struct phy_device *phydev, bool do_carrier)
834{
835 phydev->phy_link_change(phydev, false, do_carrier);
Zach Brown2e0bc452016-10-17 10:49:55 -0500836 phy_led_trigger_change_speed(phydev);
Zach Brown61a17962016-10-17 10:49:53 -0500837}
838
Nate Case35b5f6b2008-01-29 10:05:09 -0600839/**
840 * phy_state_machine - Handle the state machine
841 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600842 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000843void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400844{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700845 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600846 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700847 container_of(dwork, struct phy_device, state_queue);
Tim Bealec15e10e2015-05-18 15:38:38 +1200848 bool needs_aneg = false, do_suspend = false;
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700849 enum phy_state old_state;
Andy Fleming00db8182005-07-30 19:31:23 -0400850 int err = 0;
Shaohui Xie11e122c2015-08-14 12:23:40 +0800851 int old_link;
Andy Fleming00db8182005-07-30 19:31:23 -0400852
Nate Case35b5f6b2008-01-29 10:05:09 -0600853 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400854
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700855 old_state = phydev->state;
856
Florian Fainelli25149ef2017-02-17 16:07:34 -0800857 if (phydev->drv && phydev->drv->link_change_notify)
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200858 phydev->drv->link_change_notify(phydev);
859
Florian Fainellie1093742013-12-17 21:38:12 -0800860 switch (phydev->state) {
861 case PHY_DOWN:
862 case PHY_STARTING:
863 case PHY_READY:
864 case PHY_PENDING:
865 break;
866 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800867 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800868
869 phydev->link_timeout = PHY_AN_TIMEOUT;
870
871 break;
872 case PHY_AN:
873 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800874 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400875 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800876
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300877 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -0800878 if (!phydev->link) {
879 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +0100880 phy_link_down(phydev, true);
Florian Fainellie1093742013-12-17 21:38:12 -0800881 break;
882 }
883
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300884 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -0800885 err = phy_aneg_done(phydev);
886 if (err < 0)
887 break;
888
889 /* If AN is done, we're running */
890 if (err > 0) {
891 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100892 phy_link_up(phydev);
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +0530893 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800894 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800895 break;
896 case PHY_NOLINK:
Heiner Kallweiteaf47b12018-05-30 22:13:20 +0200897 if (phydev->irq != PHY_POLL)
Andrew Lunn321beec2015-11-16 23:36:46 +0100898 break;
899
Florian Fainellie1093742013-12-17 21:38:12 -0800900 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800901 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -0400902 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500903
Florian Fainellie1093742013-12-17 21:38:12 -0800904 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +0530905 if (AUTONEG_ENABLE == phydev->autoneg) {
906 err = phy_aneg_done(phydev);
907 if (err < 0)
908 break;
909
910 if (!err) {
911 phydev->state = PHY_AN;
912 phydev->link_timeout = PHY_AN_TIMEOUT;
913 break;
914 }
915 }
Florian Fainellie1093742013-12-17 21:38:12 -0800916 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100917 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800918 }
919 break;
920 case PHY_FORCING:
921 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800922 if (err)
923 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500924
Florian Fainellie1093742013-12-17 21:38:12 -0800925 if (phydev->link) {
926 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100927 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800928 } else {
929 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800930 needs_aneg = true;
Russell Kinga81497b2017-07-25 15:02:58 +0100931 phy_link_down(phydev, false);
Florian Fainellie1093742013-12-17 21:38:12 -0800932 }
Florian Fainellie1093742013-12-17 21:38:12 -0800933 break;
934 case PHY_RUNNING:
Florian Fainellid5c3d842016-01-18 19:33:06 -0800935 /* Only register a CHANGE if we are polling and link changed
936 * since latest checking.
Florian Fainellie1093742013-12-17 21:38:12 -0800937 */
Florian Fainellid5c3d842016-01-18 19:33:06 -0800938 if (phydev->irq == PHY_POLL) {
Shaohui Xie11e122c2015-08-14 12:23:40 +0800939 old_link = phydev->link;
940 err = phy_read_status(phydev);
941 if (err)
942 break;
943
944 if (old_link != phydev->link)
945 phydev->state = PHY_CHANGELINK;
946 }
Zefir Kurtisi811a9192017-01-06 12:14:48 +0100947 /*
948 * Failsafe: check that nobody set phydev->link=0 between two
949 * poll cycles, otherwise we won't leave RUNNING state as long
950 * as link remains down.
951 */
952 if (!phydev->link && phydev->state == PHY_RUNNING) {
953 phydev->state = PHY_CHANGELINK;
954 phydev_err(phydev, "no link in PHY_RUNNING\n");
955 }
Florian Fainellie1093742013-12-17 21:38:12 -0800956 break;
957 case PHY_CHANGELINK:
958 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800959 if (err)
960 break;
961
962 if (phydev->link) {
963 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100964 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800965 } else {
966 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +0100967 phy_link_down(phydev, true);
Florian Fainellie1093742013-12-17 21:38:12 -0800968 }
Florian Fainellie1093742013-12-17 21:38:12 -0800969 break;
970 case PHY_HALTED:
971 if (phydev->link) {
972 phydev->link = 0;
Russell Kinga81497b2017-07-25 15:02:58 +0100973 phy_link_down(phydev, true);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800974 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800975 }
976 break;
977 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -0800978 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -0400979 err = phy_aneg_done(phydev);
980 if (err < 0)
981 break;
982
Florian Fainellie1093742013-12-17 21:38:12 -0800983 /* err > 0 if AN is done.
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300984 * Otherwise, it's 0, and we're still waiting for AN
985 */
Andy Fleming00db8182005-07-30 19:31:23 -0400986 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000987 err = phy_read_status(phydev);
988 if (err)
989 break;
990
991 if (phydev->link) {
992 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100993 phy_link_up(phydev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300994 } else {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000995 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +0100996 phy_link_down(phydev, false);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300997 }
Florian Fainellie1093742013-12-17 21:38:12 -0800998 } else {
999 phydev->state = PHY_AN;
1000 phydev->link_timeout = PHY_AN_TIMEOUT;
Wade Farnsworth42caa072009-07-01 13:00:34 +00001001 }
Florian Fainellie1093742013-12-17 21:38:12 -08001002 } else {
1003 err = phy_read_status(phydev);
1004 if (err)
1005 break;
1006
1007 if (phydev->link) {
1008 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +01001009 phy_link_up(phydev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001010 } else {
Florian Fainellie1093742013-12-17 21:38:12 -08001011 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +01001012 phy_link_down(phydev, false);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001013 }
Florian Fainellie1093742013-12-17 21:38:12 -08001014 }
1015 break;
Andy Fleming00db8182005-07-30 19:31:23 -04001016 }
1017
Nate Case35b5f6b2008-01-29 10:05:09 -06001018 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04001019
1020 if (needs_aneg)
Alexander Kochetkovf555f342017-04-20 14:00:04 +03001021 err = phy_start_aneg_priv(phydev, false);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001022 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +01001023 phy_suspend(phydev);
1024
Andy Fleming00db8182005-07-30 19:31:23 -04001025 if (err < 0)
1026 phy_error(phydev);
1027
Marc Gonzalez6a95bef2017-07-28 13:18:30 +02001028 if (old_state != phydev->state)
1029 phydev_dbg(phydev, "PHY state change %s -> %s\n",
1030 phy_state_to_str(old_state),
1031 phy_state_to_str(phydev->state));
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001032
Florian Fainellid5c3d842016-01-18 19:33:06 -08001033 /* Only re-schedule a PHY state machine change if we are polling the
1034 * PHY, if PHY_IGNORE_INTERRUPT is set, then we will be moving
1035 * between states from phy_mac_interrupt()
1036 */
1037 if (phydev->irq == PHY_POLL)
1038 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
1039 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -06001040}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001041
Andrew Lunn664fcf12016-10-16 19:56:51 +02001042/**
1043 * phy_mac_interrupt - MAC says the link has changed
1044 * @phydev: phy_device struct with changed link
Andrew Lunn664fcf12016-10-16 19:56:51 +02001045 *
Heiner Kallweit28b2e0d2018-01-10 21:21:31 +01001046 * The MAC layer is able to indicate there has been a change in the PHY link
1047 * status. Trigger the state machine and work a work queue.
Andrew Lunn664fcf12016-10-16 19:56:51 +02001048 */
Heiner Kallweit28b2e0d2018-01-10 21:21:31 +01001049void phy_mac_interrupt(struct phy_device *phydev)
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001050{
Florian Fainellideccd16f92016-01-18 19:33:07 -08001051 /* Trigger a state machine change */
1052 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001053}
1054EXPORT_SYMBOL(phy_mac_interrupt);
1055
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001056/**
1057 * phy_init_eee - init and check the EEE feature
1058 * @phydev: target phy_device struct
1059 * @clk_stop_enable: PHY may stop the clock during LPI
1060 *
1061 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1062 * is supported by looking at the MMD registers 3.20 and 7.60/61
1063 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1064 * bit if required.
1065 */
1066int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1067{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001068 if (!phydev->drv)
1069 return -EIO;
1070
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001071 /* According to 802.3az,the EEE is supported only in full duplex-mode.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001072 */
Russell King32d75142017-03-31 10:37:18 +01001073 if (phydev->duplex == DUPLEX_FULL) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001074 int eee_lp, eee_cap, eee_adv;
1075 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001076 int status;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001077
1078 /* Read phy status to properly get the right settings */
1079 status = phy_read_status(phydev);
1080 if (status)
1081 return status;
1082
1083 /* First check if the EEE ability is supported */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001084 eee_cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001085 if (eee_cap <= 0)
1086 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001087
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001088 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001089 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001090 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001091
1092 /* Check which link settings negotiated and verify it in
1093 * the EEE advertising registers.
1094 */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001095 eee_lp = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001096 if (eee_lp <= 0)
1097 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001098
Russell Kinga6d99fc2017-03-21 16:36:53 +00001099 eee_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001100 if (eee_adv <= 0)
1101 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001102
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001103 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1104 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Guenter Roeck54da5a82015-02-17 09:36:22 -08001105 if (!phy_check_valid(phydev->speed, phydev->duplex, lp & adv))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001106 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001107
1108 if (clk_stop_enable) {
1109 /* Configure the PHY to stop receiving xMII
1110 * clock while it is signaling LPI.
1111 */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001112 int val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001113 if (val < 0)
1114 return val;
1115
1116 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Russell Kinga6d99fc2017-03-21 16:36:53 +00001117 phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001118 }
1119
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001120 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001121 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001122eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001123 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001124}
1125EXPORT_SYMBOL(phy_init_eee);
1126
1127/**
1128 * phy_get_eee_err - report the EEE wake error count
1129 * @phydev: target phy_device struct
1130 *
1131 * Description: it is to report the number of time where the PHY
1132 * failed to complete its normal wake sequence.
1133 */
1134int phy_get_eee_err(struct phy_device *phydev)
1135{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001136 if (!phydev->drv)
1137 return -EIO;
1138
Russell Kinga6d99fc2017-03-21 16:36:53 +00001139 return phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_WK_ERR);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001140}
1141EXPORT_SYMBOL(phy_get_eee_err);
1142
1143/**
1144 * phy_ethtool_get_eee - get EEE supported and status
1145 * @phydev: target phy_device struct
1146 * @data: ethtool_eee data
1147 *
1148 * Description: it reportes the Supported/Advertisement/LP Advertisement
1149 * capabilities.
1150 */
1151int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1152{
1153 int val;
1154
Florian Fainelli25149ef2017-02-17 16:07:34 -08001155 if (!phydev->drv)
1156 return -EIO;
1157
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001158 /* Get Supported EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001159 val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001160 if (val < 0)
1161 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001162 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001163
1164 /* Get advertisement EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001165 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001166 if (val < 0)
1167 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001168 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001169
1170 /* Get LP advertisement EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001171 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001172 if (val < 0)
1173 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001174 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001175
1176 return 0;
1177}
1178EXPORT_SYMBOL(phy_ethtool_get_eee);
1179
1180/**
1181 * phy_ethtool_set_eee - set EEE supported and status
1182 * @phydev: target phy_device struct
1183 * @data: ethtool_eee data
1184 *
1185 * Description: it is to program the Advertisement EEE register.
1186 */
1187int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1188{
Russell Kingf75abeb2017-03-31 10:37:12 +01001189 int cap, old_adv, adv, ret;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001190
Florian Fainelli25149ef2017-02-17 16:07:34 -08001191 if (!phydev->drv)
1192 return -EIO;
1193
Russell King83ea0672017-03-31 10:37:07 +01001194 /* Get Supported EEE */
1195 cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1196 if (cap < 0)
1197 return cap;
1198
Russell Kingf75abeb2017-03-31 10:37:12 +01001199 old_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1200 if (old_adv < 0)
1201 return old_adv;
1202
Russell King83ea0672017-03-31 10:37:07 +01001203 adv = ethtool_adv_to_mmd_eee_adv_t(data->advertised) & cap;
1204
jbrunetd853d142016-11-28 10:46:46 +01001205 /* Mask prohibited EEE modes */
Russell King83ea0672017-03-31 10:37:07 +01001206 adv &= ~phydev->eee_broken_modes;
jbrunetd853d142016-11-28 10:46:46 +01001207
Russell Kingf75abeb2017-03-31 10:37:12 +01001208 if (old_adv != adv) {
1209 ret = phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, adv);
1210 if (ret < 0)
1211 return ret;
1212
1213 /* Restart autonegotiation so the new modes get sent to the
1214 * link partner.
1215 */
Russell King002ba702017-06-05 12:23:00 +01001216 ret = phy_restart_aneg(phydev);
Russell Kingf75abeb2017-03-31 10:37:12 +01001217 if (ret < 0)
1218 return ret;
1219 }
1220
1221 return 0;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001222}
1223EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001224
1225int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1226{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001227 if (phydev->drv && phydev->drv->set_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001228 return phydev->drv->set_wol(phydev, wol);
1229
1230 return -EOPNOTSUPP;
1231}
1232EXPORT_SYMBOL(phy_ethtool_set_wol);
1233
1234void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1235{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001236 if (phydev->drv && phydev->drv->get_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001237 phydev->drv->get_wol(phydev, wol);
1238}
1239EXPORT_SYMBOL(phy_ethtool_get_wol);
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001240
1241int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1242 struct ethtool_link_ksettings *cmd)
1243{
1244 struct phy_device *phydev = ndev->phydev;
1245
1246 if (!phydev)
1247 return -ENODEV;
1248
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03001249 phy_ethtool_ksettings_get(phydev, cmd);
1250
1251 return 0;
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001252}
1253EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1254
1255int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1256 const struct ethtool_link_ksettings *cmd)
1257{
1258 struct phy_device *phydev = ndev->phydev;
1259
1260 if (!phydev)
1261 return -ENODEV;
1262
1263 return phy_ethtool_ksettings_set(phydev, cmd);
1264}
1265EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
Florian Fainellie86a8982016-11-15 10:06:30 -08001266
1267int phy_ethtool_nway_reset(struct net_device *ndev)
1268{
1269 struct phy_device *phydev = ndev->phydev;
1270
1271 if (!phydev)
1272 return -ENODEV;
1273
Florian Fainelli25149ef2017-02-17 16:07:34 -08001274 if (!phydev->drv)
1275 return -EIO;
1276
Russell King002ba702017-06-05 12:23:00 +01001277 return phy_restart_aneg(phydev);
Florian Fainellie86a8982016-11-15 10:06:30 -08001278}
1279EXPORT_SYMBOL(phy_ethtool_nway_reset);