blob: 1be69d8bc90948e82f92736b8f7ee9d274b9bd2b [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/timer.h>
34#include <linux/workqueue.h>
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +000035#include <linux/mdio.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030036#include <linux/io.h>
37#include <linux/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070038#include <linux/atomic.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030039
Andy Fleming00db8182005-07-30 19:31:23 -040040#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040041
Florian Fainelli766d1d32014-02-11 17:27:35 -080042static const char *phy_speed_to_str(int speed)
43{
44 switch (speed) {
45 case SPEED_10:
46 return "10Mbps";
47 case SPEED_100:
48 return "100Mbps";
49 case SPEED_1000:
50 return "1Gbps";
51 case SPEED_2500:
52 return "2.5Gbps";
53 case SPEED_10000:
54 return "10Gbps";
55 case SPEED_UNKNOWN:
56 return "Unknown";
57 default:
58 return "Unsupported (update phy.c)";
59 }
60}
61
Florian Fainelli3e2186e2015-05-16 10:17:56 -070062#define PHY_STATE_STR(_state) \
63 case PHY_##_state: \
64 return __stringify(_state); \
65
66static const char *phy_state_to_str(enum phy_state st)
67{
68 switch (st) {
69 PHY_STATE_STR(DOWN)
70 PHY_STATE_STR(STARTING)
71 PHY_STATE_STR(READY)
72 PHY_STATE_STR(PENDING)
73 PHY_STATE_STR(UP)
74 PHY_STATE_STR(AN)
75 PHY_STATE_STR(RUNNING)
76 PHY_STATE_STR(NOLINK)
77 PHY_STATE_STR(FORCING)
78 PHY_STATE_STR(CHANGELINK)
79 PHY_STATE_STR(HALTED)
80 PHY_STATE_STR(RESUMING)
81 }
82
83 return NULL;
84}
85
86
Randy Dunlapb3df0da2007-03-06 02:41:48 -080087/**
88 * phy_print_status - Convenience function to print out the current phy status
89 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -050090 */
91void phy_print_status(struct phy_device *phydev)
92{
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030093 if (phydev->link) {
Florian Fainellidf40cc82014-02-11 17:27:34 -080094 netdev_info(phydev->attached_dev,
Florian Fainelli766d1d32014-02-11 17:27:35 -080095 "Link is Up - %s/%s - flow control %s\n",
96 phy_speed_to_str(phydev->speed),
Florian Fainellidf40cc82014-02-11 17:27:34 -080097 DUPLEX_FULL == phydev->duplex ? "Full" : "Half",
98 phydev->pause ? "rx/tx" : "off");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030099 } else {
Florian Fainelli43b63292014-02-11 17:27:33 -0800100 netdev_info(phydev->attached_dev, "Link is Down\n");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300101 }
Andy Fleminge1393452005-08-24 18:46:21 -0500102}
103EXPORT_SYMBOL(phy_print_status);
Andy Fleming00db8182005-07-30 19:31:23 -0400104
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800105/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800106 * phy_clear_interrupt - Ack the phy device's interrupt
107 * @phydev: the phy_device struct
108 *
109 * If the @phydev driver has an ack_interrupt function, call it to
110 * ack and clear the phy device's interrupt.
111 *
Florian Fainelliad033502014-02-11 17:27:38 -0800112 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800113 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000114static int phy_clear_interrupt(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400115{
Andy Fleming00db8182005-07-30 19:31:23 -0400116 if (phydev->drv->ack_interrupt)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300117 return phydev->drv->ack_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400118
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300119 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400120}
121
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800122/**
123 * phy_config_interrupt - configure the PHY device for the requested interrupts
124 * @phydev: the phy_device struct
125 * @interrupts: interrupt flags to configure for this @phydev
126 *
Florian Fainelliad033502014-02-11 17:27:38 -0800127 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800128 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000129static int phy_config_interrupt(struct phy_device *phydev, u32 interrupts)
Andy Fleming00db8182005-07-30 19:31:23 -0400130{
Andy Fleming00db8182005-07-30 19:31:23 -0400131 phydev->interrupts = interrupts;
132 if (phydev->drv->config_intr)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300133 return phydev->drv->config_intr(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400134
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300135 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400136}
137
138
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800139/**
140 * phy_aneg_done - return auto-negotiation status
141 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400142 *
Florian Fainelli76a423a2014-02-11 17:27:37 -0800143 * Description: Return the auto-negotiation status from this @phydev
144 * Returns > 0 on success or < 0 on error. 0 means that auto-negotiation
145 * is still pending.
Andy Fleming00db8182005-07-30 19:31:23 -0400146 */
Lendacky, Thomas372788f2016-11-10 17:10:46 -0600147int phy_aneg_done(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400148{
Florian Fainelli65f27672017-02-23 14:22:19 -0800149 if (phydev->drv && phydev->drv->aneg_done)
Florian Fainelli76a423a2014-02-11 17:27:37 -0800150 return phydev->drv->aneg_done(phydev);
151
Florian Fainellia9fa6e62014-02-11 17:27:36 -0800152 return genphy_aneg_done(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400153}
Lendacky, Thomas372788f2016-11-10 17:10:46 -0600154EXPORT_SYMBOL(phy_aneg_done);
Andy Fleming00db8182005-07-30 19:31:23 -0400155
Andy Fleming00db8182005-07-30 19:31:23 -0400156/* A structure for mapping a particular speed and duplex
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300157 * combination to a particular SUPPORTED and ADVERTISED value
158 */
Andy Fleming00db8182005-07-30 19:31:23 -0400159struct phy_setting {
160 int speed;
161 int duplex;
162 u32 setting;
163};
164
165/* A mapping of all SUPPORTED settings to speed/duplex */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500166static const struct phy_setting settings[] = {
Andy Fleming00db8182005-07-30 19:31:23 -0400167 {
Lendacky, Thomas3e707702014-07-14 14:05:46 -0500168 .speed = SPEED_10000,
169 .duplex = DUPLEX_FULL,
170 .setting = SUPPORTED_10000baseKR_Full,
171 },
172 {
173 .speed = SPEED_10000,
174 .duplex = DUPLEX_FULL,
175 .setting = SUPPORTED_10000baseKX4_Full,
176 },
177 {
178 .speed = SPEED_10000,
Andy Fleming00db8182005-07-30 19:31:23 -0400179 .duplex = DUPLEX_FULL,
180 .setting = SUPPORTED_10000baseT_Full,
181 },
182 {
Lendacky, Thomas3e707702014-07-14 14:05:46 -0500183 .speed = SPEED_2500,
184 .duplex = DUPLEX_FULL,
185 .setting = SUPPORTED_2500baseX_Full,
186 },
187 {
188 .speed = SPEED_1000,
189 .duplex = DUPLEX_FULL,
190 .setting = SUPPORTED_1000baseKX_Full,
191 },
192 {
Andy Fleming00db8182005-07-30 19:31:23 -0400193 .speed = SPEED_1000,
194 .duplex = DUPLEX_FULL,
195 .setting = SUPPORTED_1000baseT_Full,
196 },
197 {
198 .speed = SPEED_1000,
199 .duplex = DUPLEX_HALF,
200 .setting = SUPPORTED_1000baseT_Half,
201 },
202 {
203 .speed = SPEED_100,
204 .duplex = DUPLEX_FULL,
205 .setting = SUPPORTED_100baseT_Full,
206 },
207 {
208 .speed = SPEED_100,
209 .duplex = DUPLEX_HALF,
210 .setting = SUPPORTED_100baseT_Half,
211 },
212 {
213 .speed = SPEED_10,
214 .duplex = DUPLEX_FULL,
215 .setting = SUPPORTED_10baseT_Full,
216 },
217 {
218 .speed = SPEED_10,
219 .duplex = DUPLEX_HALF,
220 .setting = SUPPORTED_10baseT_Half,
221 },
222};
223
Denis Chengff8ac602007-09-02 18:30:18 +0800224#define MAX_NUM_SETTINGS ARRAY_SIZE(settings)
Andy Fleming00db8182005-07-30 19:31:23 -0400225
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800226/**
227 * phy_find_setting - find a PHY settings array entry that matches speed & duplex
228 * @speed: speed to match
229 * @duplex: duplex to match
Andy Fleming00db8182005-07-30 19:31:23 -0400230 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800231 * Description: Searches the settings array for the setting which
Andy Fleming00db8182005-07-30 19:31:23 -0400232 * matches the desired speed and duplex, and returns the index
233 * of that setting. Returns the index of the last setting if
234 * none of the others match.
235 */
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700236static inline unsigned int phy_find_setting(int speed, int duplex)
Andy Fleming00db8182005-07-30 19:31:23 -0400237{
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700238 unsigned int idx = 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400239
240 while (idx < ARRAY_SIZE(settings) &&
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300241 (settings[idx].speed != speed || settings[idx].duplex != duplex))
Andy Fleming00db8182005-07-30 19:31:23 -0400242 idx++;
243
244 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
245}
246
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800247/**
248 * phy_find_valid - find a PHY setting that matches the requested features mask
249 * @idx: The first index in settings[] to search
250 * @features: A mask of the valid settings
Andy Fleming00db8182005-07-30 19:31:23 -0400251 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800252 * Description: Returns the index of the first valid setting less
Andy Fleming00db8182005-07-30 19:31:23 -0400253 * than or equal to the one pointed to by idx, as determined by
254 * the mask in features. Returns the index of the last setting
255 * if nothing else matches.
256 */
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700257static inline unsigned int phy_find_valid(unsigned int idx, u32 features)
Andy Fleming00db8182005-07-30 19:31:23 -0400258{
259 while (idx < MAX_NUM_SETTINGS && !(settings[idx].setting & features))
260 idx++;
261
262 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
263}
264
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800265/**
Zach Brown1f9127c2016-10-17 10:49:54 -0500266 * phy_supported_speeds - return all speeds currently supported by a phy device
267 * @phy: The phy device to return supported speeds of.
268 * @speeds: buffer to store supported speeds in.
269 * @size: size of speeds buffer.
270 *
271 * Description: Returns the number of supported speeds, and fills the speeds
272 * buffer with the supported speeds. If speeds buffer is too small to contain
273 * all currently supported speeds, will return as many speeds as can fit.
274 */
275unsigned int phy_supported_speeds(struct phy_device *phy,
276 unsigned int *speeds,
277 unsigned int size)
278{
279 unsigned int count = 0;
280 unsigned int idx = 0;
281
282 while (idx < MAX_NUM_SETTINGS && count < size) {
283 idx = phy_find_valid(idx, phy->supported);
284
285 if (!(settings[idx].setting & phy->supported))
286 break;
287
288 /* Assumes settings are grouped by speed */
289 if ((count == 0) ||
290 (speeds[count - 1] != settings[idx].speed)) {
291 speeds[count] = settings[idx].speed;
292 count++;
293 }
294 idx++;
295 }
296
297 return count;
298}
299
300/**
Guenter Roeck54da5a82015-02-17 09:36:22 -0800301 * phy_check_valid - check if there is a valid PHY setting which matches
302 * speed, duplex, and feature mask
303 * @speed: speed to match
304 * @duplex: duplex to match
305 * @features: A mask of the valid settings
306 *
307 * Description: Returns true if there is a valid setting, false otherwise.
308 */
309static inline bool phy_check_valid(int speed, int duplex, u32 features)
310{
311 unsigned int idx;
312
313 idx = phy_find_valid(phy_find_setting(speed, duplex), features);
314
315 return settings[idx].speed == speed && settings[idx].duplex == duplex &&
316 (settings[idx].setting & features);
317}
318
319/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800320 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
321 * @phydev: the target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400322 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800323 * Description: Make sure the PHY is set to supported speeds and
Andy Fleming00db8182005-07-30 19:31:23 -0400324 * duplexes. Drop down by one in this order: 1000/FULL,
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800325 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
Andy Fleming00db8182005-07-30 19:31:23 -0400326 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000327static void phy_sanitize_settings(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400328{
329 u32 features = phydev->supported;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700330 unsigned int idx;
Andy Fleming00db8182005-07-30 19:31:23 -0400331
332 /* Sanitize settings based on PHY capabilities */
333 if ((features & SUPPORTED_Autoneg) == 0)
Domen Puncer163642a2007-08-07 12:12:41 +0200334 phydev->autoneg = AUTONEG_DISABLE;
Andy Fleming00db8182005-07-30 19:31:23 -0400335
336 idx = phy_find_valid(phy_find_setting(phydev->speed, phydev->duplex),
337 features);
338
339 phydev->speed = settings[idx].speed;
340 phydev->duplex = settings[idx].duplex;
341}
Andy Fleming00db8182005-07-30 19:31:23 -0400342
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800343/**
344 * phy_ethtool_sset - generic ethtool sset function, handles all the details
345 * @phydev: target phy_device struct
346 * @cmd: ethtool_cmd
Andy Fleming00db8182005-07-30 19:31:23 -0400347 *
348 * A few notes about parameter checking:
349 * - We don't set port or transceiver, so we don't care what they
350 * were set to.
351 * - phy_start_aneg() will make sure forced settings are sane, and
352 * choose the next best ones from the ones selected, so we don't
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800353 * care if ethtool tries to give us bad values.
Andy Fleming00db8182005-07-30 19:31:23 -0400354 */
355int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
356{
David Decotigny25db0332011-04-27 18:32:39 +0000357 u32 speed = ethtool_cmd_speed(cmd);
358
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100359 if (cmd->phy_address != phydev->mdio.addr)
Andy Fleming00db8182005-07-30 19:31:23 -0400360 return -EINVAL;
361
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300362 /* We make sure that we don't pass unsupported values in to the PHY */
Andy Fleming00db8182005-07-30 19:31:23 -0400363 cmd->advertising &= phydev->supported;
364
365 /* Verify the settings we care about. */
366 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
367 return -EINVAL;
368
369 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
370 return -EINVAL;
371
Joe Perches8e95a202009-12-03 07:58:21 +0000372 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +0000373 ((speed != SPEED_1000 &&
374 speed != SPEED_100 &&
375 speed != SPEED_10) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000376 (cmd->duplex != DUPLEX_HALF &&
377 cmd->duplex != DUPLEX_FULL)))
Andy Fleming00db8182005-07-30 19:31:23 -0400378 return -EINVAL;
379
380 phydev->autoneg = cmd->autoneg;
381
David Decotigny25db0332011-04-27 18:32:39 +0000382 phydev->speed = speed;
Andy Fleming00db8182005-07-30 19:31:23 -0400383
384 phydev->advertising = cmd->advertising;
385
386 if (AUTONEG_ENABLE == cmd->autoneg)
387 phydev->advertising |= ADVERTISED_Autoneg;
388 else
389 phydev->advertising &= ~ADVERTISED_Autoneg;
390
391 phydev->duplex = cmd->duplex;
392
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530393 phydev->mdix_ctrl = cmd->eth_tp_mdix_ctrl;
David Thomson634ec362015-07-10 13:56:54 +1200394
Andy Fleming00db8182005-07-30 19:31:23 -0400395 /* Restart the PHY */
396 phy_start_aneg(phydev);
397
398 return 0;
399}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600400EXPORT_SYMBOL(phy_ethtool_sset);
Andy Fleming00db8182005-07-30 19:31:23 -0400401
Philippe Reynes2d551732016-04-15 00:35:00 +0200402int phy_ethtool_ksettings_set(struct phy_device *phydev,
403 const struct ethtool_link_ksettings *cmd)
404{
405 u8 autoneg = cmd->base.autoneg;
406 u8 duplex = cmd->base.duplex;
407 u32 speed = cmd->base.speed;
408 u32 advertising;
409
410 if (cmd->base.phy_address != phydev->mdio.addr)
411 return -EINVAL;
412
413 ethtool_convert_link_mode_to_legacy_u32(&advertising,
414 cmd->link_modes.advertising);
415
416 /* We make sure that we don't pass unsupported values in to the PHY */
417 advertising &= phydev->supported;
418
419 /* Verify the settings we care about. */
420 if (autoneg != AUTONEG_ENABLE && autoneg != AUTONEG_DISABLE)
421 return -EINVAL;
422
423 if (autoneg == AUTONEG_ENABLE && advertising == 0)
424 return -EINVAL;
425
426 if (autoneg == AUTONEG_DISABLE &&
427 ((speed != SPEED_1000 &&
428 speed != SPEED_100 &&
429 speed != SPEED_10) ||
430 (duplex != DUPLEX_HALF &&
431 duplex != DUPLEX_FULL)))
432 return -EINVAL;
433
434 phydev->autoneg = autoneg;
435
436 phydev->speed = speed;
437
438 phydev->advertising = advertising;
439
440 if (autoneg == AUTONEG_ENABLE)
441 phydev->advertising |= ADVERTISED_Autoneg;
442 else
443 phydev->advertising &= ~ADVERTISED_Autoneg;
444
445 phydev->duplex = duplex;
446
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530447 phydev->mdix_ctrl = cmd->base.eth_tp_mdix_ctrl;
Philippe Reynes2d551732016-04-15 00:35:00 +0200448
449 /* Restart the PHY */
450 phy_start_aneg(phydev);
451
452 return 0;
453}
454EXPORT_SYMBOL(phy_ethtool_ksettings_set);
455
Andy Fleming00db8182005-07-30 19:31:23 -0400456int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
457{
458 cmd->supported = phydev->supported;
459
460 cmd->advertising = phydev->advertising;
Florian Fainelli114002b2013-12-06 13:01:30 -0800461 cmd->lp_advertising = phydev->lp_advertising;
Andy Fleming00db8182005-07-30 19:31:23 -0400462
David Decotigny70739492011-04-27 18:32:40 +0000463 ethtool_cmd_speed_set(cmd, phydev->speed);
Andy Fleming00db8182005-07-30 19:31:23 -0400464 cmd->duplex = phydev->duplex;
Florian Fainellic88838c2014-02-13 16:08:43 -0800465 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
466 cmd->port = PORT_BNC;
467 else
468 cmd->port = PORT_MII;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100469 cmd->phy_address = phydev->mdio.addr;
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000470 cmd->transceiver = phy_is_internal(phydev) ?
471 XCVR_INTERNAL : XCVR_EXTERNAL;
Andy Fleming00db8182005-07-30 19:31:23 -0400472 cmd->autoneg = phydev->autoneg;
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530473 cmd->eth_tp_mdix_ctrl = phydev->mdix_ctrl;
474 cmd->eth_tp_mdix = phydev->mdix;
Andy Fleming00db8182005-07-30 19:31:23 -0400475
476 return 0;
477}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600478EXPORT_SYMBOL(phy_ethtool_gset);
Andy Fleming00db8182005-07-30 19:31:23 -0400479
Philippe Reynes2d551732016-04-15 00:35:00 +0200480int phy_ethtool_ksettings_get(struct phy_device *phydev,
481 struct ethtool_link_ksettings *cmd)
482{
483 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
484 phydev->supported);
485
486 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
487 phydev->advertising);
488
489 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.lp_advertising,
490 phydev->lp_advertising);
491
492 cmd->base.speed = phydev->speed;
493 cmd->base.duplex = phydev->duplex;
494 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
495 cmd->base.port = PORT_BNC;
496 else
497 cmd->base.port = PORT_MII;
498
499 cmd->base.phy_address = phydev->mdio.addr;
500 cmd->base.autoneg = phydev->autoneg;
Raju Lakkaraju1004ee62016-11-29 15:16:47 +0530501 cmd->base.eth_tp_mdix_ctrl = phydev->mdix_ctrl;
502 cmd->base.eth_tp_mdix = phydev->mdix;
Philippe Reynes2d551732016-04-15 00:35:00 +0200503
504 return 0;
505}
506EXPORT_SYMBOL(phy_ethtool_ksettings_get);
507
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800508/**
509 * phy_mii_ioctl - generic PHY MII ioctl interface
510 * @phydev: the phy_device struct
Randy Dunlap00c7d922010-08-09 13:41:59 +0000511 * @ifr: &struct ifreq for socket ioctl's
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800512 * @cmd: ioctl cmd to execute
513 *
514 * Note that this function is currently incompatible with the
Andy Fleming00db8182005-07-30 19:31:23 -0400515 * PHYCONTROL layer. It changes registers without regard to
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800516 * current state. Use at own risk.
Andy Fleming00db8182005-07-30 19:31:23 -0400517 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300518int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
Andy Fleming00db8182005-07-30 19:31:23 -0400519{
Richard Cochran28b04112010-07-17 08:48:55 +0000520 struct mii_ioctl_data *mii_data = if_mii(ifr);
Andy Fleming00db8182005-07-30 19:31:23 -0400521 u16 val = mii_data->val_in;
Brian Hill79ce0472014-11-11 13:39:39 -0700522 bool change_autoneg = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400523
524 switch (cmd) {
525 case SIOCGMIIPHY:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100526 mii_data->phy_id = phydev->mdio.addr;
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000527 /* fall through */
528
Andy Fleming00db8182005-07-30 19:31:23 -0400529 case SIOCGMIIREG:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100530 mii_data->val_out = mdiobus_read(phydev->mdio.bus,
531 mii_data->phy_id,
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000532 mii_data->reg_num);
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300533 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400534
535 case SIOCSMIIREG:
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100536 if (mii_data->phy_id == phydev->mdio.addr) {
Florian Fainellie1093742013-12-17 21:38:12 -0800537 switch (mii_data->reg_num) {
Andy Fleming00db8182005-07-30 19:31:23 -0400538 case MII_BMCR:
Brian Hill79ce0472014-11-11 13:39:39 -0700539 if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
540 if (phydev->autoneg == AUTONEG_ENABLE)
541 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400542 phydev->autoneg = AUTONEG_DISABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700543 if (val & BMCR_FULLDPLX)
544 phydev->duplex = DUPLEX_FULL;
545 else
546 phydev->duplex = DUPLEX_HALF;
547 if (val & BMCR_SPEED1000)
548 phydev->speed = SPEED_1000;
549 else if (val & BMCR_SPEED100)
550 phydev->speed = SPEED_100;
551 else phydev->speed = SPEED_10;
552 }
553 else {
554 if (phydev->autoneg == AUTONEG_DISABLE)
555 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400556 phydev->autoneg = AUTONEG_ENABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700557 }
Andy Fleming00db8182005-07-30 19:31:23 -0400558 break;
559 case MII_ADVERTISE:
Brian Hill79ce0472014-11-11 13:39:39 -0700560 phydev->advertising = mii_adv_to_ethtool_adv_t(val);
561 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400562 break;
563 default:
564 /* do nothing */
565 break;
566 }
567 }
568
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100569 mdiobus_write(phydev->mdio.bus, mii_data->phy_id,
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000570 mii_data->reg_num, val);
571
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100572 if (mii_data->phy_id == phydev->mdio.addr &&
Jérôme Pouillercf18b772015-12-03 10:02:35 +0100573 mii_data->reg_num == MII_BMCR &&
Florian Fainelli2613f952013-12-06 13:01:31 -0800574 val & BMCR_RESET)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300575 return phy_init_hw(phydev);
Brian Hill79ce0472014-11-11 13:39:39 -0700576
577 if (change_autoneg)
578 return phy_start_aneg(phydev);
579
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300580 return 0;
David Woodhousedda93b42007-11-28 19:56:34 +0000581
Richard Cochranc1f19b52010-07-17 08:49:36 +0000582 case SIOCSHWTSTAMP:
Florian Fainelli25149ef2017-02-17 16:07:34 -0800583 if (phydev->drv && phydev->drv->hwtstamp)
Richard Cochranc1f19b52010-07-17 08:49:36 +0000584 return phydev->drv->hwtstamp(phydev, ifr);
585 /* fall through */
586
David Woodhousedda93b42007-11-28 19:56:34 +0000587 default:
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000588 return -EOPNOTSUPP;
Andy Fleming00db8182005-07-30 19:31:23 -0400589 }
Andy Fleming00db8182005-07-30 19:31:23 -0400590}
Domen Puncer680e9fe2007-09-17 22:21:40 +0200591EXPORT_SYMBOL(phy_mii_ioctl);
Andy Fleming00db8182005-07-30 19:31:23 -0400592
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800593/**
594 * phy_start_aneg - start auto-negotiation for this PHY device
595 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500596 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800597 * Description: Sanitizes the settings (if we're not autonegotiating
598 * them), and then calls the driver's config_aneg function.
599 * If the PHYCONTROL Layer is operating, we change the state to
600 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500601 */
602int phy_start_aneg(struct phy_device *phydev)
603{
604 int err;
605
Florian Fainelli25149ef2017-02-17 16:07:34 -0800606 if (!phydev->drv)
607 return -EIO;
608
Nate Case35b5f6b2008-01-29 10:05:09 -0600609 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500610
611 if (AUTONEG_DISABLE == phydev->autoneg)
612 phy_sanitize_settings(phydev);
613
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000614 /* Invalidate LP advertising flags */
615 phydev->lp_advertising = 0;
616
Andy Fleminge1393452005-08-24 18:46:21 -0500617 err = phydev->drv->config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500618 if (err < 0)
619 goto out_unlock;
620
621 if (phydev->state != PHY_HALTED) {
622 if (AUTONEG_ENABLE == phydev->autoneg) {
623 phydev->state = PHY_AN;
624 phydev->link_timeout = PHY_AN_TIMEOUT;
625 } else {
626 phydev->state = PHY_FORCING;
627 phydev->link_timeout = PHY_FORCE_TIMEOUT;
628 }
629 }
630
631out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600632 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500633 return err;
634}
635EXPORT_SYMBOL(phy_start_aneg);
636
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800637/**
638 * phy_start_machine - start PHY state machine tracking
639 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400640 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800641 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400642 * which tracks whether the PHY is starting up, negotiating,
643 * etc. This function starts the timer which tracks the state
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300644 * of the PHY. If you want to maintain your own state machine,
645 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800646 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300647void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400648{
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530649 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400650}
651
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800652/**
Andrew Lunn3c293f42016-10-12 22:14:53 +0200653 * phy_trigger_machine - trigger the state machine to run
654 *
655 * @phydev: the phy_device struct
Florian Fainellieab12772017-01-20 15:31:52 -0800656 * @sync: indicate whether we should wait for the workqueue cancelation
Andrew Lunn3c293f42016-10-12 22:14:53 +0200657 *
658 * Description: There has been a change in state which requires that the
659 * state machine runs.
660 */
661
Florian Fainellieab12772017-01-20 15:31:52 -0800662static void phy_trigger_machine(struct phy_device *phydev, bool sync)
Andrew Lunn3c293f42016-10-12 22:14:53 +0200663{
Florian Fainellieab12772017-01-20 15:31:52 -0800664 if (sync)
665 cancel_delayed_work_sync(&phydev->state_queue);
666 else
667 cancel_delayed_work(&phydev->state_queue);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200668 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
669}
670
671/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800672 * phy_stop_machine - stop the PHY state machine tracking
673 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400674 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800675 * Description: Stops the state machine timer, sets the state to UP
Sergei Shtylylov817acf52006-07-26 00:53:53 +0400676 * (unless it wasn't up yet). This function must be called BEFORE
Andy Fleming00db8182005-07-30 19:31:23 -0400677 * phy_detach.
678 */
679void phy_stop_machine(struct phy_device *phydev)
680{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700681 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400682
Nate Case35b5f6b2008-01-29 10:05:09 -0600683 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400684 if (phydev->state > PHY_UP)
685 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600686 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400687}
688
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800689/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800690 * phy_error - enter HALTED state for this PHY device
691 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400692 *
693 * Moves the PHY to the HALTED state in response to a read
694 * or write error, and tells the controller the link is down.
695 * Must not be called from interrupt context, or while the
696 * phydev->lock is held.
697 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500698static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400699{
Nate Case35b5f6b2008-01-29 10:05:09 -0600700 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400701 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600702 mutex_unlock(&phydev->lock);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200703
Florian Fainellieab12772017-01-20 15:31:52 -0800704 phy_trigger_machine(phydev, false);
Andy Fleming00db8182005-07-30 19:31:23 -0400705}
706
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800707/**
708 * phy_interrupt - PHY interrupt handler
709 * @irq: interrupt line
710 * @phy_dat: phy_device pointer
Andy Fleminge1393452005-08-24 18:46:21 -0500711 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800712 * Description: When a PHY interrupt occurs, the handler disables
Andrew Lunn664fcf12016-10-16 19:56:51 +0200713 * interrupts, and uses phy_change to handle the interrupt.
Andy Fleminge1393452005-08-24 18:46:21 -0500714 */
David Howells7d12e782006-10-05 14:55:46 +0100715static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andy Fleminge1393452005-08-24 18:46:21 -0500716{
717 struct phy_device *phydev = phy_dat;
718
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100719 if (PHY_HALTED == phydev->state)
720 return IRQ_NONE; /* It can't be ours. */
721
Andy Fleminge1393452005-08-24 18:46:21 -0500722 disable_irq_nosync(irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700723 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500724
Andrew Lunn664fcf12016-10-16 19:56:51 +0200725 phy_change(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500726
727 return IRQ_HANDLED;
728}
729
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800730/**
731 * phy_enable_interrupts - Enable the interrupts from the PHY side
732 * @phydev: target phy_device struct
733 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000734static int phy_enable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400735{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300736 int err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400737
Andy Fleminge1393452005-08-24 18:46:21 -0500738 if (err < 0)
739 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400740
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300741 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400742}
Andy Fleming00db8182005-07-30 19:31:23 -0400743
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800744/**
745 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
746 * @phydev: target phy_device struct
747 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000748static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400749{
750 int err;
751
752 /* Disable PHY interrupts */
753 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400754 if (err)
755 goto phy_err;
756
757 /* Clear the interrupt */
758 err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400759 if (err)
760 goto phy_err;
761
762 return 0;
763
764phy_err:
765 phy_error(phydev);
766
767 return err;
768}
Andy Fleminge1393452005-08-24 18:46:21 -0500769
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800770/**
771 * phy_start_interrupts - request and enable interrupts for a PHY device
772 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500773 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800774 * Description: Request the interrupt for the given PHY.
775 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500776 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500777 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800778 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500779 */
780int phy_start_interrupts(struct phy_device *phydev)
781{
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700782 atomic_set(&phydev->irq_disable, 0);
Andrew Lunnc974bdb2016-10-16 19:56:50 +0200783 if (request_threaded_irq(phydev->irq, NULL, phy_interrupt,
784 IRQF_ONESHOT | IRQF_SHARED,
Andrew Lunnae0219c2016-10-16 19:56:52 +0200785 phydev_name(phydev), phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000786 pr_warn("%s: Can't get IRQ %d (PHY)\n",
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100787 phydev->mdio.bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500788 phydev->irq = PHY_POLL;
789 return 0;
790 }
791
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300792 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500793}
794EXPORT_SYMBOL(phy_start_interrupts);
795
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800796/**
797 * phy_stop_interrupts - disable interrupts from a PHY device
798 * @phydev: target phy_device struct
799 */
Andy Fleminge1393452005-08-24 18:46:21 -0500800int phy_stop_interrupts(struct phy_device *phydev)
801{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300802 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500803
804 if (err)
805 phy_error(phydev);
806
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700807 free_irq(phydev->irq, phydev);
808
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300809 /* If work indeed has been cancelled, disable_irq() will have
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700810 * been left unbalanced from phy_interrupt() and enable_irq()
811 * has to be called so that other devices on the line work.
812 */
813 while (atomic_dec_return(&phydev->irq_disable) >= 0)
814 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500815
816 return err;
817}
818EXPORT_SYMBOL(phy_stop_interrupts);
819
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800820/**
Andrew Lunn664fcf12016-10-16 19:56:51 +0200821 * phy_change - Called by the phy_interrupt to handle PHY changes
822 * @phydev: phy_device struct that interrupted
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800823 */
Andrew Lunn664fcf12016-10-16 19:56:51 +0200824void phy_change(struct phy_device *phydev)
Andy Fleminge1393452005-08-24 18:46:21 -0500825{
Florian Fainellideccd16f92016-01-18 19:33:07 -0800826 if (phy_interrupt_is_valid(phydev)) {
827 if (phydev->drv->did_interrupt &&
828 !phydev->drv->did_interrupt(phydev))
829 goto ignore;
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000830
Florian Fainellideccd16f92016-01-18 19:33:07 -0800831 if (phy_disable_interrupts(phydev))
832 goto phy_err;
833 }
Andy Fleminge1393452005-08-24 18:46:21 -0500834
Nate Case35b5f6b2008-01-29 10:05:09 -0600835 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500836 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
837 phydev->state = PHY_CHANGELINK;
Nate Case35b5f6b2008-01-29 10:05:09 -0600838 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500839
Florian Fainellideccd16f92016-01-18 19:33:07 -0800840 if (phy_interrupt_is_valid(phydev)) {
841 atomic_dec(&phydev->irq_disable);
842 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500843
Florian Fainellideccd16f92016-01-18 19:33:07 -0800844 /* Reenable interrupts */
845 if (PHY_HALTED != phydev->state &&
846 phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED))
847 goto irq_enable_err;
848 }
Andy Fleminge1393452005-08-24 18:46:21 -0500849
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700850 /* reschedule state queue work to run as soon as possible */
Florian Fainellieab12772017-01-20 15:31:52 -0800851 phy_trigger_machine(phydev, true);
Andy Fleminge1393452005-08-24 18:46:21 -0500852 return;
853
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000854ignore:
855 atomic_dec(&phydev->irq_disable);
856 enable_irq(phydev->irq);
857 return;
858
Andy Fleminge1393452005-08-24 18:46:21 -0500859irq_enable_err:
860 disable_irq(phydev->irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700861 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500862phy_err:
863 phy_error(phydev);
864}
865
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800866/**
Andrew Lunn664fcf12016-10-16 19:56:51 +0200867 * phy_change_work - Scheduled by the phy_mac_interrupt to handle PHY changes
868 * @work: work_struct that describes the work to be done
869 */
870void phy_change_work(struct work_struct *work)
871{
872 struct phy_device *phydev =
873 container_of(work, struct phy_device, phy_queue);
874
875 phy_change(phydev);
876}
877
878/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800879 * phy_stop - Bring down the PHY link, and stop checking the status
880 * @phydev: target phy_device struct
881 */
Andy Fleminge1393452005-08-24 18:46:21 -0500882void phy_stop(struct phy_device *phydev)
883{
Nate Case35b5f6b2008-01-29 10:05:09 -0600884 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500885
886 if (PHY_HALTED == phydev->state)
887 goto out_unlock;
888
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000889 if (phy_interrupt_is_valid(phydev)) {
Andy Fleminge1393452005-08-24 18:46:21 -0500890 /* Disable PHY Interrupts */
891 phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500892
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100893 /* Clear any pending interrupts */
894 phy_clear_interrupt(phydev);
895 }
Andy Fleminge1393452005-08-24 18:46:21 -0500896
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700897 phydev->state = PHY_HALTED;
898
Andy Fleminge1393452005-08-24 18:46:21 -0500899out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600900 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100901
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300902 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100903 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
904 * will not reenable interrupts.
905 */
Andy Fleminge1393452005-08-24 18:46:21 -0500906}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300907EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500908
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800909/**
910 * phy_start - start or restart a PHY device
911 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500912 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800913 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500914 * handle PHY-related work. Used during startup to start the
915 * PHY, and after a call to phy_stop() to resume operation.
916 * Also used to indicate the MDIO bus has cleared an error
917 * condition.
918 */
919void phy_start(struct phy_device *phydev)
920{
Tim Bealec15e10e2015-05-18 15:38:38 +1200921 bool do_resume = false;
922 int err = 0;
923
Nate Case35b5f6b2008-01-29 10:05:09 -0600924 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500925
926 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800927 case PHY_STARTING:
928 phydev->state = PHY_PENDING;
929 break;
930 case PHY_READY:
931 phydev->state = PHY_UP;
932 break;
933 case PHY_HALTED:
Tim Bealec15e10e2015-05-18 15:38:38 +1200934 /* make sure interrupts are re-enabled for the PHY */
Shaohui Xie84a527a2016-05-10 17:42:26 +0800935 if (phydev->irq != PHY_POLL) {
936 err = phy_enable_interrupts(phydev);
937 if (err < 0)
938 break;
939 }
Tim Bealec15e10e2015-05-18 15:38:38 +1200940
Florian Fainellie1093742013-12-17 21:38:12 -0800941 phydev->state = PHY_RESUMING;
Tim Bealec15e10e2015-05-18 15:38:38 +1200942 do_resume = true;
943 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800944 default:
945 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500946 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600947 mutex_unlock(&phydev->lock);
Tim Bealec15e10e2015-05-18 15:38:38 +1200948
949 /* if phy was suspended, bring the physical link up again */
950 if (do_resume)
951 phy_resume(phydev);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200952
Florian Fainellieab12772017-01-20 15:31:52 -0800953 phy_trigger_machine(phydev, true);
Andy Fleminge1393452005-08-24 18:46:21 -0500954}
Andy Fleminge1393452005-08-24 18:46:21 -0500955EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400956
Zach Brown61a17962016-10-17 10:49:53 -0500957static void phy_adjust_link(struct phy_device *phydev)
958{
959 phydev->adjust_link(phydev->attached_dev);
Zach Brown2e0bc452016-10-17 10:49:55 -0500960 phy_led_trigger_change_speed(phydev);
Zach Brown61a17962016-10-17 10:49:53 -0500961}
962
Nate Case35b5f6b2008-01-29 10:05:09 -0600963/**
964 * phy_state_machine - Handle the state machine
965 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600966 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000967void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400968{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700969 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600970 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700971 container_of(dwork, struct phy_device, state_queue);
Tim Bealec15e10e2015-05-18 15:38:38 +1200972 bool needs_aneg = false, do_suspend = false;
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700973 enum phy_state old_state;
Andy Fleming00db8182005-07-30 19:31:23 -0400974 int err = 0;
Shaohui Xie11e122c2015-08-14 12:23:40 +0800975 int old_link;
Andy Fleming00db8182005-07-30 19:31:23 -0400976
Nate Case35b5f6b2008-01-29 10:05:09 -0600977 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400978
Florian Fainelli3e2186e2015-05-16 10:17:56 -0700979 old_state = phydev->state;
980
Florian Fainelli25149ef2017-02-17 16:07:34 -0800981 if (phydev->drv && phydev->drv->link_change_notify)
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200982 phydev->drv->link_change_notify(phydev);
983
Florian Fainellie1093742013-12-17 21:38:12 -0800984 switch (phydev->state) {
985 case PHY_DOWN:
986 case PHY_STARTING:
987 case PHY_READY:
988 case PHY_PENDING:
989 break;
990 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800991 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800992
993 phydev->link_timeout = PHY_AN_TIMEOUT;
994
995 break;
996 case PHY_AN:
997 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800998 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400999 break;
Florian Fainellie1093742013-12-17 21:38:12 -08001000
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001001 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -08001002 if (!phydev->link) {
1003 phydev->state = PHY_NOLINK;
1004 netif_carrier_off(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001005 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001006 break;
1007 }
1008
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001009 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -08001010 err = phy_aneg_done(phydev);
1011 if (err < 0)
1012 break;
1013
1014 /* If AN is done, we're running */
1015 if (err > 0) {
1016 phydev->state = PHY_RUNNING;
1017 netif_carrier_on(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001018 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001019
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +05301020 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001021 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001022 break;
1023 case PHY_NOLINK:
Andrew Lunn321beec2015-11-16 23:36:46 +01001024 if (phy_interrupt_is_valid(phydev))
1025 break;
1026
Florian Fainellie1093742013-12-17 21:38:12 -08001027 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001028 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -04001029 break;
Andy Fleming6b655522006-10-16 16:19:17 -05001030
Florian Fainellie1093742013-12-17 21:38:12 -08001031 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +05301032 if (AUTONEG_ENABLE == phydev->autoneg) {
1033 err = phy_aneg_done(phydev);
1034 if (err < 0)
1035 break;
1036
1037 if (!err) {
1038 phydev->state = PHY_AN;
1039 phydev->link_timeout = PHY_AN_TIMEOUT;
1040 break;
1041 }
1042 }
Florian Fainellie1093742013-12-17 21:38:12 -08001043 phydev->state = PHY_RUNNING;
1044 netif_carrier_on(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001045 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001046 }
1047 break;
1048 case PHY_FORCING:
1049 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001050 if (err)
1051 break;
Andy Fleming6b655522006-10-16 16:19:17 -05001052
Florian Fainellie1093742013-12-17 21:38:12 -08001053 if (phydev->link) {
1054 phydev->state = PHY_RUNNING;
1055 netif_carrier_on(phydev->attached_dev);
1056 } else {
1057 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001058 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001059 }
1060
Zach Brown61a17962016-10-17 10:49:53 -05001061 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001062 break;
1063 case PHY_RUNNING:
Florian Fainellid5c3d842016-01-18 19:33:06 -08001064 /* Only register a CHANGE if we are polling and link changed
1065 * since latest checking.
Florian Fainellie1093742013-12-17 21:38:12 -08001066 */
Florian Fainellid5c3d842016-01-18 19:33:06 -08001067 if (phydev->irq == PHY_POLL) {
Shaohui Xie11e122c2015-08-14 12:23:40 +08001068 old_link = phydev->link;
1069 err = phy_read_status(phydev);
1070 if (err)
1071 break;
1072
1073 if (old_link != phydev->link)
1074 phydev->state = PHY_CHANGELINK;
1075 }
Zefir Kurtisi811a9192017-01-06 12:14:48 +01001076 /*
1077 * Failsafe: check that nobody set phydev->link=0 between two
1078 * poll cycles, otherwise we won't leave RUNNING state as long
1079 * as link remains down.
1080 */
1081 if (!phydev->link && phydev->state == PHY_RUNNING) {
1082 phydev->state = PHY_CHANGELINK;
1083 phydev_err(phydev, "no link in PHY_RUNNING\n");
1084 }
Florian Fainellie1093742013-12-17 21:38:12 -08001085 break;
1086 case PHY_CHANGELINK:
1087 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001088 if (err)
1089 break;
1090
1091 if (phydev->link) {
1092 phydev->state = PHY_RUNNING;
1093 netif_carrier_on(phydev->attached_dev);
1094 } else {
1095 phydev->state = PHY_NOLINK;
1096 netif_carrier_off(phydev->attached_dev);
1097 }
1098
Zach Brown61a17962016-10-17 10:49:53 -05001099 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001100
1101 if (phy_interrupt_is_valid(phydev))
1102 err = phy_config_interrupt(phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001103 PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -08001104 break;
1105 case PHY_HALTED:
1106 if (phydev->link) {
1107 phydev->link = 0;
1108 netif_carrier_off(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001109 phy_adjust_link(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001110 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001111 }
1112 break;
1113 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -08001114 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -04001115 err = phy_aneg_done(phydev);
1116 if (err < 0)
1117 break;
1118
Florian Fainellie1093742013-12-17 21:38:12 -08001119 /* err > 0 if AN is done.
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001120 * Otherwise, it's 0, and we're still waiting for AN
1121 */
Andy Fleming00db8182005-07-30 19:31:23 -04001122 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +00001123 err = phy_read_status(phydev);
1124 if (err)
1125 break;
1126
1127 if (phydev->link) {
1128 phydev->state = PHY_RUNNING;
1129 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001130 } else {
Wade Farnsworth42caa072009-07-01 13:00:34 +00001131 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001132 }
Zach Brown61a17962016-10-17 10:49:53 -05001133 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001134 } else {
1135 phydev->state = PHY_AN;
1136 phydev->link_timeout = PHY_AN_TIMEOUT;
Wade Farnsworth42caa072009-07-01 13:00:34 +00001137 }
Florian Fainellie1093742013-12-17 21:38:12 -08001138 } else {
1139 err = phy_read_status(phydev);
1140 if (err)
1141 break;
1142
1143 if (phydev->link) {
1144 phydev->state = PHY_RUNNING;
1145 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001146 } else {
Florian Fainellie1093742013-12-17 21:38:12 -08001147 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001148 }
Zach Brown61a17962016-10-17 10:49:53 -05001149 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001150 }
1151 break;
Andy Fleming00db8182005-07-30 19:31:23 -04001152 }
1153
Nate Case35b5f6b2008-01-29 10:05:09 -06001154 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04001155
1156 if (needs_aneg)
1157 err = phy_start_aneg(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001158 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +01001159 phy_suspend(phydev);
1160
Andy Fleming00db8182005-07-30 19:31:23 -04001161 if (err < 0)
1162 phy_error(phydev);
1163
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001164 phydev_dbg(phydev, "PHY state change %s -> %s\n",
1165 phy_state_to_str(old_state),
1166 phy_state_to_str(phydev->state));
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001167
Florian Fainellid5c3d842016-01-18 19:33:06 -08001168 /* Only re-schedule a PHY state machine change if we are polling the
1169 * PHY, if PHY_IGNORE_INTERRUPT is set, then we will be moving
1170 * between states from phy_mac_interrupt()
1171 */
1172 if (phydev->irq == PHY_POLL)
1173 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
1174 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -06001175}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001176
Andrew Lunn664fcf12016-10-16 19:56:51 +02001177/**
1178 * phy_mac_interrupt - MAC says the link has changed
1179 * @phydev: phy_device struct with changed link
1180 * @new_link: Link is Up/Down.
1181 *
1182 * Description: The MAC layer is able indicate there has been a change
1183 * in the PHY link status. Set the new link status, and trigger the
1184 * state machine, work a work queue.
1185 */
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001186void phy_mac_interrupt(struct phy_device *phydev, int new_link)
1187{
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001188 phydev->link = new_link;
Florian Fainellideccd16f92016-01-18 19:33:07 -08001189
1190 /* Trigger a state machine change */
1191 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001192}
1193EXPORT_SYMBOL(phy_mac_interrupt);
1194
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001195static inline void mmd_phy_indirect(struct mii_bus *bus, int prtad, int devad,
1196 int addr)
1197{
1198 /* Write the desired MMD Devad */
1199 bus->write(bus, addr, MII_MMD_CTRL, devad);
1200
1201 /* Write the desired MMD register address */
1202 bus->write(bus, addr, MII_MMD_DATA, prtad);
1203
1204 /* Select the Function : DATA with no post increment */
1205 bus->write(bus, addr, MII_MMD_CTRL, (devad | MII_MMD_CTRL_NOINCR));
1206}
1207
1208/**
1209 * phy_read_mmd_indirect - reads data from the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001210 * @phydev: The PHY device bus
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001211 * @prtad: MMD Address
1212 * @devad: MMD DEVAD
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001213 *
1214 * Description: it reads data from the MMD registers (clause 22 to access to
1215 * clause 45) of the specified phy address.
1216 * To read these register we have:
1217 * 1) Write reg 13 // DEVAD
1218 * 2) Write reg 14 // MMD Address
1219 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1220 * 3) Read reg 14 // Read MMD data
1221 */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001222int phy_read_mmd_indirect(struct phy_device *phydev, int prtad, int devad)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001223{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001224 struct phy_driver *phydrv = phydev->drv;
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001225 int addr = phydev->mdio.addr;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001226 int value = -1;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001227
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001228 if (!phydrv->read_mmd_indirect) {
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001229 struct mii_bus *bus = phydev->mdio.bus;
Russell King05a7f582015-08-25 09:49:47 +01001230
1231 mutex_lock(&bus->mdio_lock);
1232 mmd_phy_indirect(bus, prtad, devad, addr);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001233
1234 /* Read the content of the MMD's selected register */
Russell King05a7f582015-08-25 09:49:47 +01001235 value = bus->read(bus, addr, MII_MMD_DATA);
1236 mutex_unlock(&bus->mdio_lock);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001237 } else {
1238 value = phydrv->read_mmd_indirect(phydev, prtad, devad, addr);
1239 }
1240 return value;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001241}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001242EXPORT_SYMBOL(phy_read_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001243
1244/**
1245 * phy_write_mmd_indirect - writes data to the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001246 * @phydev: The PHY device
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001247 * @prtad: MMD Address
1248 * @devad: MMD DEVAD
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001249 * @data: data to write in the MMD register
1250 *
1251 * Description: Write data from the MMD registers of the specified
1252 * phy address.
1253 * To write these register we have:
1254 * 1) Write reg 13 // DEVAD
1255 * 2) Write reg 14 // MMD Address
1256 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1257 * 3) Write reg 14 // Write MMD data
1258 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001259void phy_write_mmd_indirect(struct phy_device *phydev, int prtad,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001260 int devad, u32 data)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001261{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001262 struct phy_driver *phydrv = phydev->drv;
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001263 int addr = phydev->mdio.addr;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001264
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001265 if (!phydrv->write_mmd_indirect) {
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001266 struct mii_bus *bus = phydev->mdio.bus;
Russell King05a7f582015-08-25 09:49:47 +01001267
1268 mutex_lock(&bus->mdio_lock);
1269 mmd_phy_indirect(bus, prtad, devad, addr);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001270
1271 /* Write the data into MMD's selected register */
Russell King05a7f582015-08-25 09:49:47 +01001272 bus->write(bus, addr, MII_MMD_DATA, data);
1273 mutex_unlock(&bus->mdio_lock);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001274 } else {
1275 phydrv->write_mmd_indirect(phydev, prtad, devad, addr, data);
1276 }
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001277}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001278EXPORT_SYMBOL(phy_write_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001279
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001280/**
1281 * phy_init_eee - init and check the EEE feature
1282 * @phydev: target phy_device struct
1283 * @clk_stop_enable: PHY may stop the clock during LPI
1284 *
1285 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1286 * is supported by looking at the MMD registers 3.20 and 7.60/61
1287 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1288 * bit if required.
1289 */
1290int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1291{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001292 if (!phydev->drv)
1293 return -EIO;
1294
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001295 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1296 * Also EEE feature is active when core is operating with MII, GMII
Florian Fainelli7e140692015-05-15 16:30:41 -07001297 * or RGMII (all kinds). Internal PHYs are also allowed to proceed and
1298 * should return an error if they do not support EEE.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001299 */
1300 if ((phydev->duplex == DUPLEX_FULL) &&
1301 ((phydev->interface == PHY_INTERFACE_MODE_MII) ||
1302 (phydev->interface == PHY_INTERFACE_MODE_GMII) ||
Florian Fainelli32a64162015-05-26 12:19:59 -07001303 phy_interface_is_rgmii(phydev) ||
Florian Fainellia9f63092014-08-22 18:55:44 -07001304 phy_is_internal(phydev))) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001305 int eee_lp, eee_cap, eee_adv;
1306 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001307 int status;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001308
1309 /* Read phy status to properly get the right settings */
1310 status = phy_read_status(phydev);
1311 if (status)
1312 return status;
1313
1314 /* First check if the EEE ability is supported */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001315 eee_cap = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001316 MDIO_MMD_PCS);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001317 if (eee_cap <= 0)
1318 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001319
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001320 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001321 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001322 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001323
1324 /* Check which link settings negotiated and verify it in
1325 * the EEE advertising registers.
1326 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001327 eee_lp = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001328 MDIO_MMD_AN);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001329 if (eee_lp <= 0)
1330 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001331
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001332 eee_adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001333 MDIO_MMD_AN);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001334 if (eee_adv <= 0)
1335 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001336
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001337 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1338 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Guenter Roeck54da5a82015-02-17 09:36:22 -08001339 if (!phy_check_valid(phydev->speed, phydev->duplex, lp & adv))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001340 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001341
1342 if (clk_stop_enable) {
1343 /* Configure the PHY to stop receiving xMII
1344 * clock while it is signaling LPI.
1345 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001346 int val = phy_read_mmd_indirect(phydev, MDIO_CTRL1,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001347 MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001348 if (val < 0)
1349 return val;
1350
1351 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001352 phy_write_mmd_indirect(phydev, MDIO_CTRL1,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001353 MDIO_MMD_PCS, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001354 }
1355
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001356 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001357 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001358eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001359 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001360}
1361EXPORT_SYMBOL(phy_init_eee);
1362
1363/**
1364 * phy_get_eee_err - report the EEE wake error count
1365 * @phydev: target phy_device struct
1366 *
1367 * Description: it is to report the number of time where the PHY
1368 * failed to complete its normal wake sequence.
1369 */
1370int phy_get_eee_err(struct phy_device *phydev)
1371{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001372 if (!phydev->drv)
1373 return -EIO;
1374
Andrew Lunn053e7e12016-01-06 20:11:12 +01001375 return phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_WK_ERR, MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001376}
1377EXPORT_SYMBOL(phy_get_eee_err);
1378
1379/**
1380 * phy_ethtool_get_eee - get EEE supported and status
1381 * @phydev: target phy_device struct
1382 * @data: ethtool_eee data
1383 *
1384 * Description: it reportes the Supported/Advertisement/LP Advertisement
1385 * capabilities.
1386 */
1387int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1388{
1389 int val;
1390
Florian Fainelli25149ef2017-02-17 16:07:34 -08001391 if (!phydev->drv)
1392 return -EIO;
1393
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001394 /* Get Supported EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001395 val = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE, MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001396 if (val < 0)
1397 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001398 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001399
1400 /* Get advertisement EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001401 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001402 if (val < 0)
1403 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001404 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001405
1406 /* Get LP advertisement EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001407 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE, MDIO_MMD_AN);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001408 if (val < 0)
1409 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001410 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001411
1412 return 0;
1413}
1414EXPORT_SYMBOL(phy_ethtool_get_eee);
1415
1416/**
1417 * phy_ethtool_set_eee - set EEE supported and status
1418 * @phydev: target phy_device struct
1419 * @data: ethtool_eee data
1420 *
1421 * Description: it is to program the Advertisement EEE register.
1422 */
1423int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1424{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03001425 int val = ethtool_adv_to_mmd_eee_adv_t(data->advertised);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001426
Florian Fainelli25149ef2017-02-17 16:07:34 -08001427 if (!phydev->drv)
1428 return -EIO;
1429
jbrunetd853d142016-11-28 10:46:46 +01001430 /* Mask prohibited EEE modes */
1431 val &= ~phydev->eee_broken_modes;
1432
Andrew Lunn053e7e12016-01-06 20:11:12 +01001433 phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001434
1435 return 0;
1436}
1437EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001438
1439int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1440{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001441 if (phydev->drv && phydev->drv->set_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001442 return phydev->drv->set_wol(phydev, wol);
1443
1444 return -EOPNOTSUPP;
1445}
1446EXPORT_SYMBOL(phy_ethtool_set_wol);
1447
1448void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1449{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001450 if (phydev->drv && phydev->drv->get_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001451 phydev->drv->get_wol(phydev, wol);
1452}
1453EXPORT_SYMBOL(phy_ethtool_get_wol);
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001454
1455int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1456 struct ethtool_link_ksettings *cmd)
1457{
1458 struct phy_device *phydev = ndev->phydev;
1459
1460 if (!phydev)
1461 return -ENODEV;
1462
1463 return phy_ethtool_ksettings_get(phydev, cmd);
1464}
1465EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1466
1467int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1468 const struct ethtool_link_ksettings *cmd)
1469{
1470 struct phy_device *phydev = ndev->phydev;
1471
1472 if (!phydev)
1473 return -ENODEV;
1474
1475 return phy_ethtool_ksettings_set(phydev, cmd);
1476}
1477EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
Florian Fainellie86a8982016-11-15 10:06:30 -08001478
1479int phy_ethtool_nway_reset(struct net_device *ndev)
1480{
1481 struct phy_device *phydev = ndev->phydev;
1482
1483 if (!phydev)
1484 return -ENODEV;
1485
Florian Fainelli25149ef2017-02-17 16:07:34 -08001486 if (!phydev->drv)
1487 return -EIO;
1488
Florian Fainellie86a8982016-11-15 10:06:30 -08001489 return genphy_restart_aneg(phydev);
1490}
1491EXPORT_SYMBOL(phy_ethtool_nway_reset);