blob: d03bdbbd1eafef8badf21203dea82d4a4b378526 [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
Heiner Kallweit76299582018-07-12 21:31:54 +0200470static int phy_config_aneg(struct phy_device *phydev)
471{
472 if (phydev->drv->config_aneg)
473 return phydev->drv->config_aneg(phydev);
Camelia Groza34786002018-07-23 18:06:15 +0300474
475 /* Clause 45 PHYs that don't implement Clause 22 registers are not
476 * allowed to call genphy_config_aneg()
477 */
478 if (phydev->is_c45 && !(phydev->c45_ids.devices_in_package & BIT(0)))
479 return -EOPNOTSUPP;
480
481 return genphy_config_aneg(phydev);
Heiner Kallweit76299582018-07-12 21:31:54 +0200482}
483
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800484/**
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300485 * phy_start_aneg_priv - start auto-negotiation for this PHY device
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800486 * @phydev: the phy_device struct
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300487 * @sync: indicate whether we should wait for the workqueue cancelation
Andy Fleminge1393452005-08-24 18:46:21 -0500488 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800489 * Description: Sanitizes the settings (if we're not autonegotiating
490 * them), and then calls the driver's config_aneg function.
491 * If the PHYCONTROL Layer is operating, we change the state to
492 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500493 */
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300494static int phy_start_aneg_priv(struct phy_device *phydev, bool sync)
Andy Fleminge1393452005-08-24 18:46:21 -0500495{
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300496 bool trigger = 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500497 int err;
498
Florian Fainelli25149ef2017-02-17 16:07:34 -0800499 if (!phydev->drv)
500 return -EIO;
501
Nate Case35b5f6b2008-01-29 10:05:09 -0600502 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500503
504 if (AUTONEG_DISABLE == phydev->autoneg)
505 phy_sanitize_settings(phydev);
506
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000507 /* Invalidate LP advertising flags */
508 phydev->lp_advertising = 0;
509
Heiner Kallweit76299582018-07-12 21:31:54 +0200510 err = phy_config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500511 if (err < 0)
512 goto out_unlock;
513
514 if (phydev->state != PHY_HALTED) {
515 if (AUTONEG_ENABLE == phydev->autoneg) {
516 phydev->state = PHY_AN;
517 phydev->link_timeout = PHY_AN_TIMEOUT;
518 } else {
519 phydev->state = PHY_FORCING;
520 phydev->link_timeout = PHY_FORCE_TIMEOUT;
521 }
522 }
523
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300524 /* Re-schedule a PHY state machine to check PHY status because
525 * negotiation may already be done and aneg interrupt may not be
526 * generated.
527 */
Heiner Kallweit3c507b82018-07-23 21:40:07 +0200528 if (!phy_polling_mode(phydev) && phydev->state == PHY_AN) {
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300529 err = phy_aneg_done(phydev);
530 if (err > 0) {
531 trigger = true;
532 err = 0;
533 }
534 }
535
Andy Fleminge1393452005-08-24 18:46:21 -0500536out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600537 mutex_unlock(&phydev->lock);
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300538
539 if (trigger)
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200540 phy_trigger_machine(phydev);
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300541
Andy Fleminge1393452005-08-24 18:46:21 -0500542 return err;
543}
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300544
545/**
546 * phy_start_aneg - start auto-negotiation for this PHY device
547 * @phydev: the phy_device struct
548 *
549 * Description: Sanitizes the settings (if we're not autonegotiating
550 * them), and then calls the driver's config_aneg function.
551 * If the PHYCONTROL Layer is operating, we change the state to
552 * reflect the beginning of Auto-negotiation or forcing.
553 */
554int phy_start_aneg(struct phy_device *phydev)
555{
556 return phy_start_aneg_priv(phydev, true);
557}
Andy Fleminge1393452005-08-24 18:46:21 -0500558EXPORT_SYMBOL(phy_start_aneg);
559
Heiner Kallweit2b9672d2018-07-12 21:32:53 +0200560static int phy_poll_aneg_done(struct phy_device *phydev)
561{
562 unsigned int retries = 100;
563 int ret;
564
565 do {
566 msleep(100);
567 ret = phy_aneg_done(phydev);
568 } while (!ret && --retries);
569
570 if (!ret)
571 return -ETIMEDOUT;
572
573 return ret < 0 ? ret : 0;
574}
575
576/**
577 * phy_speed_down - set speed to lowest speed supported by both link partners
578 * @phydev: the phy_device struct
579 * @sync: perform action synchronously
580 *
581 * Description: Typically used to save energy when waiting for a WoL packet
582 *
583 * WARNING: Setting sync to false may cause the system being unable to suspend
584 * in case the PHY generates an interrupt when finishing the autonegotiation.
585 * This interrupt may wake up the system immediately after suspend.
586 * Therefore use sync = false only if you're sure it's safe with the respective
587 * network chip.
588 */
589int phy_speed_down(struct phy_device *phydev, bool sync)
590{
591 u32 adv = phydev->lp_advertising & phydev->supported;
592 u32 adv_old = phydev->advertising;
593 int ret;
594
595 if (phydev->autoneg != AUTONEG_ENABLE)
596 return 0;
597
598 if (adv & PHY_10BT_FEATURES)
599 phydev->advertising &= ~(PHY_100BT_FEATURES |
600 PHY_1000BT_FEATURES);
601 else if (adv & PHY_100BT_FEATURES)
602 phydev->advertising &= ~PHY_1000BT_FEATURES;
603
604 if (phydev->advertising == adv_old)
605 return 0;
606
607 ret = phy_config_aneg(phydev);
608 if (ret)
609 return ret;
610
611 return sync ? phy_poll_aneg_done(phydev) : 0;
612}
613EXPORT_SYMBOL_GPL(phy_speed_down);
614
615/**
616 * phy_speed_up - (re)set advertised speeds to all supported speeds
617 * @phydev: the phy_device struct
618 *
619 * Description: Used to revert the effect of phy_speed_down
620 */
621int phy_speed_up(struct phy_device *phydev)
622{
623 u32 mask = PHY_10BT_FEATURES | PHY_100BT_FEATURES | PHY_1000BT_FEATURES;
624 u32 adv_old = phydev->advertising;
625
626 if (phydev->autoneg != AUTONEG_ENABLE)
627 return 0;
628
629 phydev->advertising = (adv_old & ~mask) | (phydev->supported & mask);
630
631 if (phydev->advertising == adv_old)
632 return 0;
633
634 return phy_config_aneg(phydev);
635}
636EXPORT_SYMBOL_GPL(phy_speed_up);
637
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200638static void phy_queue_state_machine(struct phy_device *phydev,
639 unsigned int secs)
640{
641 mod_delayed_work(system_power_efficient_wq, &phydev->state_queue,
642 secs * HZ);
643}
644
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800645/**
646 * phy_start_machine - start PHY state machine tracking
647 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400648 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800649 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400650 * which tracks whether the PHY is starting up, negotiating,
Florian Fainellifb5e7606b2017-07-26 12:05:38 -0700651 * etc. This function starts the delayed workqueue which tracks
652 * the state of the PHY. If you want to maintain your own state machine,
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300653 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800654 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300655void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400656{
Heiner Kallweit6384e482018-10-11 19:31:47 +0200657 phy_trigger_machine(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400658}
Russell King5e5758d2017-07-25 15:03:03 +0100659EXPORT_SYMBOL_GPL(phy_start_machine);
Andy Fleming00db8182005-07-30 19:31:23 -0400660
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800661/**
Andrew Lunn3c293f42016-10-12 22:14:53 +0200662 * phy_trigger_machine - trigger the state machine to run
663 *
664 * @phydev: the phy_device struct
665 *
666 * Description: There has been a change in state which requires that the
667 * state machine runs.
668 */
669
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200670void phy_trigger_machine(struct phy_device *phydev)
Andrew Lunn3c293f42016-10-12 22:14:53 +0200671{
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200672 phy_queue_state_machine(phydev, 0);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200673}
674
675/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800676 * phy_stop_machine - stop the PHY state machine tracking
677 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400678 *
Florian Fainellifb5e7606b2017-07-26 12:05:38 -0700679 * Description: Stops the state machine delayed workqueue, sets the
680 * state to UP (unless it wasn't up yet). This function must be
681 * called BEFORE phy_detach.
Andy Fleming00db8182005-07-30 19:31:23 -0400682 */
683void phy_stop_machine(struct phy_device *phydev)
684{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700685 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400686
Nate Case35b5f6b2008-01-29 10:05:09 -0600687 mutex_lock(&phydev->lock);
Nathan Sullivan49d52e82017-03-22 15:27:01 -0500688 if (phydev->state > PHY_UP && phydev->state != PHY_HALTED)
Andy Fleming00db8182005-07-30 19:31:23 -0400689 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600690 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400691}
692
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800693/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800694 * phy_error - enter HALTED state for this PHY device
695 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400696 *
697 * Moves the PHY to the HALTED state in response to a read
698 * or write error, and tells the controller the link is down.
699 * Must not be called from interrupt context, or while the
700 * phydev->lock is held.
701 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500702static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400703{
Nate Case35b5f6b2008-01-29 10:05:09 -0600704 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400705 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600706 mutex_unlock(&phydev->lock);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200707
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200708 phy_trigger_machine(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400709}
710
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800711/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800712 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
713 * @phydev: target phy_device struct
714 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000715static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400716{
717 int err;
718
719 /* Disable PHY interrupts */
720 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400721 if (err)
Heiner Kallweit4fff2d32018-03-05 22:34:27 +0100722 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400723
724 /* Clear the interrupt */
Heiner Kallweit4fff2d32018-03-05 22:34:27 +0100725 return phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400726}
Andy Fleminge1393452005-08-24 18:46:21 -0500727
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800728/**
Brad Mouringa2c054a2018-03-08 16:23:03 -0600729 * phy_change - Called by the phy_interrupt to handle PHY changes
730 * @phydev: phy_device struct that interrupted
731 */
732static irqreturn_t phy_change(struct phy_device *phydev)
733{
734 if (phy_interrupt_is_valid(phydev)) {
735 if (phydev->drv->did_interrupt &&
736 !phydev->drv->did_interrupt(phydev))
737 return IRQ_NONE;
738
739 if (phydev->state == PHY_HALTED)
740 if (phy_disable_interrupts(phydev))
741 goto phy_err;
742 }
743
744 mutex_lock(&phydev->lock);
745 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
746 phydev->state = PHY_CHANGELINK;
747 mutex_unlock(&phydev->lock);
748
749 /* reschedule state queue work to run as soon as possible */
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200750 phy_trigger_machine(phydev);
Brad Mouringa2c054a2018-03-08 16:23:03 -0600751
752 if (phy_interrupt_is_valid(phydev) && phy_clear_interrupt(phydev))
753 goto phy_err;
754 return IRQ_HANDLED;
755
756phy_err:
757 phy_error(phydev);
758 return IRQ_NONE;
759}
760
761/**
762 * phy_change_work - Scheduled by the phy_mac_interrupt to handle PHY changes
763 * @work: work_struct that describes the work to be done
764 */
765void phy_change_work(struct work_struct *work)
766{
767 struct phy_device *phydev =
768 container_of(work, struct phy_device, phy_queue);
769
770 phy_change(phydev);
771}
772
773/**
774 * phy_interrupt - PHY interrupt handler
775 * @irq: interrupt line
776 * @phy_dat: phy_device pointer
777 *
778 * Description: When a PHY interrupt occurs, the handler disables
779 * interrupts, and uses phy_change to handle the interrupt.
780 */
781static irqreturn_t phy_interrupt(int irq, void *phy_dat)
782{
783 struct phy_device *phydev = phy_dat;
784
785 if (PHY_HALTED == phydev->state)
786 return IRQ_NONE; /* It can't be ours. */
787
788 return phy_change(phydev);
789}
790
791/**
792 * phy_enable_interrupts - Enable the interrupts from the PHY side
793 * @phydev: target phy_device struct
794 */
795static int phy_enable_interrupts(struct phy_device *phydev)
796{
797 int err = phy_clear_interrupt(phydev);
798
799 if (err < 0)
800 return err;
801
802 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
803}
804
805/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800806 * phy_start_interrupts - request and enable interrupts for a PHY device
807 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500808 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800809 * Description: Request the interrupt for the given PHY.
810 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500811 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500812 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800813 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500814 */
815int phy_start_interrupts(struct phy_device *phydev)
816{
Andrew Lunnc974bdb2016-10-16 19:56:50 +0200817 if (request_threaded_irq(phydev->irq, NULL, phy_interrupt,
818 IRQF_ONESHOT | IRQF_SHARED,
Andrew Lunnae0219c2016-10-16 19:56:52 +0200819 phydev_name(phydev), phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000820 pr_warn("%s: Can't get IRQ %d (PHY)\n",
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100821 phydev->mdio.bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500822 phydev->irq = PHY_POLL;
823 return 0;
824 }
825
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300826 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500827}
828EXPORT_SYMBOL(phy_start_interrupts);
829
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800830/**
831 * phy_stop_interrupts - disable interrupts from a PHY device
832 * @phydev: target phy_device struct
833 */
Andy Fleminge1393452005-08-24 18:46:21 -0500834int phy_stop_interrupts(struct phy_device *phydev)
835{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300836 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500837
838 if (err)
839 phy_error(phydev);
840
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700841 free_irq(phydev->irq, phydev);
842
Andy Fleminge1393452005-08-24 18:46:21 -0500843 return err;
844}
845EXPORT_SYMBOL(phy_stop_interrupts);
846
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800847/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800848 * phy_stop - Bring down the PHY link, and stop checking the status
849 * @phydev: target phy_device struct
850 */
Andy Fleminge1393452005-08-24 18:46:21 -0500851void phy_stop(struct phy_device *phydev)
852{
Nate Case35b5f6b2008-01-29 10:05:09 -0600853 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500854
855 if (PHY_HALTED == phydev->state)
856 goto out_unlock;
857
Heiner Kallweit70a55c32018-03-05 22:34:46 +0100858 if (phy_interrupt_is_valid(phydev))
859 phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500860
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700861 phydev->state = PHY_HALTED;
862
Andy Fleminge1393452005-08-24 18:46:21 -0500863out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600864 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100865
Heiner Kallweite8cfd9d2018-09-18 21:56:32 +0200866 phy_state_machine(&phydev->state_queue.work);
867
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300868 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100869 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
870 * will not reenable interrupts.
871 */
Andy Fleminge1393452005-08-24 18:46:21 -0500872}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300873EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500874
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800875/**
876 * phy_start - start or restart a PHY device
877 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500878 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800879 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500880 * handle PHY-related work. Used during startup to start the
881 * PHY, and after a call to phy_stop() to resume operation.
882 * Also used to indicate the MDIO bus has cleared an error
883 * condition.
884 */
885void phy_start(struct phy_device *phydev)
886{
Tim Bealec15e10e2015-05-18 15:38:38 +1200887 int err = 0;
888
Nate Case35b5f6b2008-01-29 10:05:09 -0600889 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500890
891 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800892 case PHY_STARTING:
893 phydev->state = PHY_PENDING;
894 break;
895 case PHY_READY:
896 phydev->state = PHY_UP;
897 break;
898 case PHY_HALTED:
Russell Kingf5e64032017-12-12 10:45:36 +0000899 /* if phy was suspended, bring the physical link up again */
Andrew Lunn9c2c2e62018-02-27 01:56:06 +0100900 __phy_resume(phydev);
Russell Kingf5e64032017-12-12 10:45:36 +0000901
Tim Bealec15e10e2015-05-18 15:38:38 +1200902 /* make sure interrupts are re-enabled for the PHY */
Heiner Kallweit08f51382018-02-08 21:01:48 +0100903 if (phy_interrupt_is_valid(phydev)) {
Shaohui Xie84a527a2016-05-10 17:42:26 +0800904 err = phy_enable_interrupts(phydev);
905 if (err < 0)
906 break;
907 }
Tim Bealec15e10e2015-05-18 15:38:38 +1200908
Florian Fainellie1093742013-12-17 21:38:12 -0800909 phydev->state = PHY_RESUMING;
Tim Bealec15e10e2015-05-18 15:38:38 +1200910 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800911 default:
912 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500913 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600914 mutex_unlock(&phydev->lock);
Tim Bealec15e10e2015-05-18 15:38:38 +1200915
Heiner Kallweit9f2959b2018-09-28 08:51:09 +0200916 phy_trigger_machine(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500917}
Andy Fleminge1393452005-08-24 18:46:21 -0500918EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400919
Russell Kinga81497b2017-07-25 15:02:58 +0100920static void phy_link_up(struct phy_device *phydev)
Zach Brown61a17962016-10-17 10:49:53 -0500921{
Russell Kinga81497b2017-07-25 15:02:58 +0100922 phydev->phy_link_change(phydev, true, true);
923 phy_led_trigger_change_speed(phydev);
924}
925
926static void phy_link_down(struct phy_device *phydev, bool do_carrier)
927{
928 phydev->phy_link_change(phydev, false, do_carrier);
Zach Brown2e0bc452016-10-17 10:49:55 -0500929 phy_led_trigger_change_speed(phydev);
Zach Brown61a17962016-10-17 10:49:53 -0500930}
931
Nate Case35b5f6b2008-01-29 10:05:09 -0600932/**
933 * phy_state_machine - Handle the state machine
934 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600935 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000936void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400937{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700938 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600939 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700940 container_of(dwork, struct phy_device, state_queue);
Tim Bealec15e10e2015-05-18 15:38:38 +1200941 bool needs_aneg = false, do_suspend = false;
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700942 enum phy_state old_state;
Andy Fleming00db8182005-07-30 19:31:23 -0400943 int err = 0;
944
Nate Case35b5f6b2008-01-29 10:05:09 -0600945 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400946
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700947 old_state = phydev->state;
948
Florian Fainelli25149ef2017-02-17 16:07:34 -0800949 if (phydev->drv && phydev->drv->link_change_notify)
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200950 phydev->drv->link_change_notify(phydev);
951
Florian Fainellie1093742013-12-17 21:38:12 -0800952 switch (phydev->state) {
953 case PHY_DOWN:
954 case PHY_STARTING:
955 case PHY_READY:
956 case PHY_PENDING:
957 break;
958 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800959 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800960
961 phydev->link_timeout = PHY_AN_TIMEOUT;
962
963 break;
964 case PHY_AN:
965 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800966 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400967 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800968
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300969 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -0800970 if (!phydev->link) {
971 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +0100972 phy_link_down(phydev, true);
Florian Fainellie1093742013-12-17 21:38:12 -0800973 break;
974 }
975
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300976 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -0800977 err = phy_aneg_done(phydev);
978 if (err < 0)
979 break;
980
981 /* If AN is done, we're running */
982 if (err > 0) {
983 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +0100984 phy_link_up(phydev);
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +0530985 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800986 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800987 break;
988 case PHY_NOLINK:
Heiner Kallweit3c507b82018-07-23 21:40:07 +0200989 if (!phy_polling_mode(phydev))
Andrew Lunn321beec2015-11-16 23:36:46 +0100990 break;
991
Florian Fainellie1093742013-12-17 21:38:12 -0800992 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800993 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -0400994 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500995
Florian Fainellie1093742013-12-17 21:38:12 -0800996 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +0530997 if (AUTONEG_ENABLE == phydev->autoneg) {
998 err = phy_aneg_done(phydev);
999 if (err < 0)
1000 break;
1001
1002 if (!err) {
1003 phydev->state = PHY_AN;
1004 phydev->link_timeout = PHY_AN_TIMEOUT;
1005 break;
1006 }
1007 }
Florian Fainellie1093742013-12-17 21:38:12 -08001008 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +01001009 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001010 }
1011 break;
1012 case PHY_FORCING:
1013 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001014 if (err)
1015 break;
Andy Fleming6b655522006-10-16 16:19:17 -05001016
Florian Fainellie1093742013-12-17 21:38:12 -08001017 if (phydev->link) {
1018 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +01001019 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001020 } else {
1021 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001022 needs_aneg = true;
Russell Kinga81497b2017-07-25 15:02:58 +01001023 phy_link_down(phydev, false);
Florian Fainellie1093742013-12-17 21:38:12 -08001024 }
Florian Fainellie1093742013-12-17 21:38:12 -08001025 break;
1026 case PHY_RUNNING:
Heiner Kallweit74fb5e22018-10-11 22:36:56 +02001027 if (!phy_polling_mode(phydev))
1028 break;
Shaohui Xie11e122c2015-08-14 12:23:40 +08001029
Heiner Kallweit74fb5e22018-10-11 22:36:56 +02001030 err = phy_read_status(phydev);
1031 if (err)
1032 break;
1033
1034 if (!phydev->link) {
1035 phydev->state = PHY_NOLINK;
1036 phy_link_down(phydev, true);
Zefir Kurtisi811a9192017-01-06 12:14:48 +01001037 }
Florian Fainellie1093742013-12-17 21:38:12 -08001038 break;
1039 case PHY_CHANGELINK:
1040 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001041 if (err)
1042 break;
1043
1044 if (phydev->link) {
1045 phydev->state = PHY_RUNNING;
Russell Kinga81497b2017-07-25 15:02:58 +01001046 phy_link_up(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001047 } else {
1048 phydev->state = PHY_NOLINK;
Russell Kinga81497b2017-07-25 15:02:58 +01001049 phy_link_down(phydev, true);
Florian Fainellie1093742013-12-17 21:38:12 -08001050 }
Florian Fainellie1093742013-12-17 21:38:12 -08001051 break;
1052 case PHY_HALTED:
1053 if (phydev->link) {
1054 phydev->link = 0;
Russell Kinga81497b2017-07-25 15:02:58 +01001055 phy_link_down(phydev, true);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001056 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001057 }
1058 break;
1059 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -08001060 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -04001061 err = phy_aneg_done(phydev);
Heiner Kallweiteb4c4702018-10-11 22:37:38 +02001062 if (err < 0) {
Andy Fleming00db8182005-07-30 19:31:23 -04001063 break;
Heiner Kallweiteb4c4702018-10-11 22:37:38 +02001064 } else if (!err) {
Florian Fainellie1093742013-12-17 21:38:12 -08001065 phydev->state = PHY_AN;
1066 phydev->link_timeout = PHY_AN_TIMEOUT;
Florian Fainellie1093742013-12-17 21:38:12 -08001067 break;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001068 }
Florian Fainellie1093742013-12-17 21:38:12 -08001069 }
Heiner Kallweiteb4c4702018-10-11 22:37:38 +02001070
1071 err = phy_read_status(phydev);
1072 if (err)
1073 break;
1074
1075 if (phydev->link) {
1076 phydev->state = PHY_RUNNING;
1077 phy_link_up(phydev);
1078 } else {
1079 phydev->state = PHY_NOLINK;
1080 phy_link_down(phydev, false);
1081 }
Florian Fainellie1093742013-12-17 21:38:12 -08001082 break;
Andy Fleming00db8182005-07-30 19:31:23 -04001083 }
1084
Nate Case35b5f6b2008-01-29 10:05:09 -06001085 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04001086
1087 if (needs_aneg)
Alexander Kochetkovf555f342017-04-20 14:00:04 +03001088 err = phy_start_aneg_priv(phydev, false);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001089 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +01001090 phy_suspend(phydev);
1091
Andy Fleming00db8182005-07-30 19:31:23 -04001092 if (err < 0)
1093 phy_error(phydev);
1094
Marc Gonzalez6a95bef2017-07-28 13:18:30 +02001095 if (old_state != phydev->state)
1096 phydev_dbg(phydev, "PHY state change %s -> %s\n",
1097 phy_state_to_str(old_state),
1098 phy_state_to_str(phydev->state));
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001099
Florian Fainellid5c3d842016-01-18 19:33:06 -08001100 /* Only re-schedule a PHY state machine change if we are polling the
1101 * PHY, if PHY_IGNORE_INTERRUPT is set, then we will be moving
Heiner Kallweit075ddeb2018-09-20 22:34:25 +02001102 * between states from phy_mac_interrupt().
1103 *
1104 * In state PHY_HALTED the PHY gets suspended, so rescheduling the
1105 * state machine would be pointless and possibly error prone when
1106 * called from phy_disconnect() synchronously.
Florian Fainellid5c3d842016-01-18 19:33:06 -08001107 */
Heiner Kallweit075ddeb2018-09-20 22:34:25 +02001108 if (phy_polling_mode(phydev) && old_state != PHY_HALTED)
Heiner Kallweit9f2959b2018-09-28 08:51:09 +02001109 phy_queue_state_machine(phydev, PHY_STATE_TIME);
Nate Case35b5f6b2008-01-29 10:05:09 -06001110}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001111
Andrew Lunn664fcf12016-10-16 19:56:51 +02001112/**
1113 * phy_mac_interrupt - MAC says the link has changed
1114 * @phydev: phy_device struct with changed link
Andrew Lunn664fcf12016-10-16 19:56:51 +02001115 *
Heiner Kallweit28b2e0d2018-01-10 21:21:31 +01001116 * The MAC layer is able to indicate there has been a change in the PHY link
1117 * status. Trigger the state machine and work a work queue.
Andrew Lunn664fcf12016-10-16 19:56:51 +02001118 */
Heiner Kallweit28b2e0d2018-01-10 21:21:31 +01001119void phy_mac_interrupt(struct phy_device *phydev)
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001120{
Florian Fainellideccd16f92016-01-18 19:33:07 -08001121 /* Trigger a state machine change */
1122 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001123}
1124EXPORT_SYMBOL(phy_mac_interrupt);
1125
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001126/**
1127 * phy_init_eee - init and check the EEE feature
1128 * @phydev: target phy_device struct
1129 * @clk_stop_enable: PHY may stop the clock during LPI
1130 *
1131 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1132 * is supported by looking at the MMD registers 3.20 and 7.60/61
1133 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1134 * bit if required.
1135 */
1136int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1137{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001138 if (!phydev->drv)
1139 return -EIO;
1140
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001141 /* According to 802.3az,the EEE is supported only in full duplex-mode.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001142 */
Russell King32d75142017-03-31 10:37:18 +01001143 if (phydev->duplex == DUPLEX_FULL) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001144 int eee_lp, eee_cap, eee_adv;
1145 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001146 int status;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001147
1148 /* Read phy status to properly get the right settings */
1149 status = phy_read_status(phydev);
1150 if (status)
1151 return status;
1152
1153 /* First check if the EEE ability is supported */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001154 eee_cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001155 if (eee_cap <= 0)
1156 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001157
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001158 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001159 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001160 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001161
1162 /* Check which link settings negotiated and verify it in
1163 * the EEE advertising registers.
1164 */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001165 eee_lp = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001166 if (eee_lp <= 0)
1167 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001168
Russell Kinga6d99fc2017-03-21 16:36:53 +00001169 eee_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001170 if (eee_adv <= 0)
1171 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001172
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001173 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1174 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Guenter Roeck54da5a82015-02-17 09:36:22 -08001175 if (!phy_check_valid(phydev->speed, phydev->duplex, lp & adv))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001176 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001177
1178 if (clk_stop_enable) {
1179 /* Configure the PHY to stop receiving xMII
1180 * clock while it is signaling LPI.
1181 */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001182 int val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001183 if (val < 0)
1184 return val;
1185
1186 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Russell Kinga6d99fc2017-03-21 16:36:53 +00001187 phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_CTRL1, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001188 }
1189
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001190 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001191 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001192eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001193 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001194}
1195EXPORT_SYMBOL(phy_init_eee);
1196
1197/**
1198 * phy_get_eee_err - report the EEE wake error count
1199 * @phydev: target phy_device struct
1200 *
1201 * Description: it is to report the number of time where the PHY
1202 * failed to complete its normal wake sequence.
1203 */
1204int phy_get_eee_err(struct phy_device *phydev)
1205{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001206 if (!phydev->drv)
1207 return -EIO;
1208
Russell Kinga6d99fc2017-03-21 16:36:53 +00001209 return phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_WK_ERR);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001210}
1211EXPORT_SYMBOL(phy_get_eee_err);
1212
1213/**
1214 * phy_ethtool_get_eee - get EEE supported and status
1215 * @phydev: target phy_device struct
1216 * @data: ethtool_eee data
1217 *
1218 * Description: it reportes the Supported/Advertisement/LP Advertisement
1219 * capabilities.
1220 */
1221int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1222{
1223 int val;
1224
Florian Fainelli25149ef2017-02-17 16:07:34 -08001225 if (!phydev->drv)
1226 return -EIO;
1227
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001228 /* Get Supported EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001229 val = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001230 if (val < 0)
1231 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001232 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001233
1234 /* Get advertisement EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001235 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001236 if (val < 0)
1237 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001238 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001239
1240 /* Get LP advertisement EEE */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001241 val = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001242 if (val < 0)
1243 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001244 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001245
1246 return 0;
1247}
1248EXPORT_SYMBOL(phy_ethtool_get_eee);
1249
1250/**
1251 * phy_ethtool_set_eee - set EEE supported and status
1252 * @phydev: target phy_device struct
1253 * @data: ethtool_eee data
1254 *
1255 * Description: it is to program the Advertisement EEE register.
1256 */
1257int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1258{
Russell Kingf75abeb2017-03-31 10:37:12 +01001259 int cap, old_adv, adv, ret;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001260
Florian Fainelli25149ef2017-02-17 16:07:34 -08001261 if (!phydev->drv)
1262 return -EIO;
1263
Russell King83ea0672017-03-31 10:37:07 +01001264 /* Get Supported EEE */
1265 cap = phy_read_mmd(phydev, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE);
1266 if (cap < 0)
1267 return cap;
1268
Russell Kingf75abeb2017-03-31 10:37:12 +01001269 old_adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
1270 if (old_adv < 0)
1271 return old_adv;
1272
Russell King83ea0672017-03-31 10:37:07 +01001273 adv = ethtool_adv_to_mmd_eee_adv_t(data->advertised) & cap;
1274
jbrunetd853d142016-11-28 10:46:46 +01001275 /* Mask prohibited EEE modes */
Russell King83ea0672017-03-31 10:37:07 +01001276 adv &= ~phydev->eee_broken_modes;
jbrunetd853d142016-11-28 10:46:46 +01001277
Russell Kingf75abeb2017-03-31 10:37:12 +01001278 if (old_adv != adv) {
1279 ret = phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, adv);
1280 if (ret < 0)
1281 return ret;
1282
1283 /* Restart autonegotiation so the new modes get sent to the
1284 * link partner.
1285 */
Russell King002ba702017-06-05 12:23:00 +01001286 ret = phy_restart_aneg(phydev);
Russell Kingf75abeb2017-03-31 10:37:12 +01001287 if (ret < 0)
1288 return ret;
1289 }
1290
1291 return 0;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001292}
1293EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001294
1295int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1296{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001297 if (phydev->drv && phydev->drv->set_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001298 return phydev->drv->set_wol(phydev, wol);
1299
1300 return -EOPNOTSUPP;
1301}
1302EXPORT_SYMBOL(phy_ethtool_set_wol);
1303
1304void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1305{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001306 if (phydev->drv && phydev->drv->get_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001307 phydev->drv->get_wol(phydev, wol);
1308}
1309EXPORT_SYMBOL(phy_ethtool_get_wol);
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001310
1311int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1312 struct ethtool_link_ksettings *cmd)
1313{
1314 struct phy_device *phydev = ndev->phydev;
1315
1316 if (!phydev)
1317 return -ENODEV;
1318
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03001319 phy_ethtool_ksettings_get(phydev, cmd);
1320
1321 return 0;
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001322}
1323EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1324
1325int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1326 const struct ethtool_link_ksettings *cmd)
1327{
1328 struct phy_device *phydev = ndev->phydev;
1329
1330 if (!phydev)
1331 return -ENODEV;
1332
1333 return phy_ethtool_ksettings_set(phydev, cmd);
1334}
1335EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
Florian Fainellie86a8982016-11-15 10:06:30 -08001336
1337int phy_ethtool_nway_reset(struct net_device *ndev)
1338{
1339 struct phy_device *phydev = ndev->phydev;
1340
1341 if (!phydev)
1342 return -ENODEV;
1343
Florian Fainelli25149ef2017-02-17 16:07:34 -08001344 if (!phydev->drv)
1345 return -EIO;
1346
Russell King002ba702017-06-05 12:23:00 +01001347 return phy_restart_aneg(phydev);
Florian Fainellie86a8982016-11-15 10:06:30 -08001348}
1349EXPORT_SYMBOL(phy_ethtool_nway_reset);