blob: 97ff1278167bc455af890e9b6c16d7b9d659ea57 [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/**
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300594 * phy_start_aneg_priv - start auto-negotiation for this PHY device
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800595 * @phydev: the phy_device struct
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300596 * @sync: indicate whether we should wait for the workqueue cancelation
Andy Fleminge1393452005-08-24 18:46:21 -0500597 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800598 * Description: Sanitizes the settings (if we're not autonegotiating
599 * them), and then calls the driver's config_aneg function.
600 * If the PHYCONTROL Layer is operating, we change the state to
601 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500602 */
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300603static int phy_start_aneg_priv(struct phy_device *phydev, bool sync)
Andy Fleminge1393452005-08-24 18:46:21 -0500604{
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300605 bool trigger = 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500606 int err;
607
Florian Fainelli25149ef2017-02-17 16:07:34 -0800608 if (!phydev->drv)
609 return -EIO;
610
Nate Case35b5f6b2008-01-29 10:05:09 -0600611 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500612
613 if (AUTONEG_DISABLE == phydev->autoneg)
614 phy_sanitize_settings(phydev);
615
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000616 /* Invalidate LP advertising flags */
617 phydev->lp_advertising = 0;
618
Andy Fleminge1393452005-08-24 18:46:21 -0500619 err = phydev->drv->config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500620 if (err < 0)
621 goto out_unlock;
622
623 if (phydev->state != PHY_HALTED) {
624 if (AUTONEG_ENABLE == phydev->autoneg) {
625 phydev->state = PHY_AN;
626 phydev->link_timeout = PHY_AN_TIMEOUT;
627 } else {
628 phydev->state = PHY_FORCING;
629 phydev->link_timeout = PHY_FORCE_TIMEOUT;
630 }
631 }
632
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300633 /* Re-schedule a PHY state machine to check PHY status because
634 * negotiation may already be done and aneg interrupt may not be
635 * generated.
636 */
637 if (phy_interrupt_is_valid(phydev) && (phydev->state == PHY_AN)) {
638 err = phy_aneg_done(phydev);
639 if (err > 0) {
640 trigger = true;
641 err = 0;
642 }
643 }
644
Andy Fleminge1393452005-08-24 18:46:21 -0500645out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600646 mutex_unlock(&phydev->lock);
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300647
648 if (trigger)
649 phy_trigger_machine(phydev, sync);
650
Andy Fleminge1393452005-08-24 18:46:21 -0500651 return err;
652}
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300653
654/**
655 * phy_start_aneg - start auto-negotiation for this PHY device
656 * @phydev: the phy_device struct
657 *
658 * Description: Sanitizes the settings (if we're not autonegotiating
659 * them), and then calls the driver's config_aneg function.
660 * If the PHYCONTROL Layer is operating, we change the state to
661 * reflect the beginning of Auto-negotiation or forcing.
662 */
663int phy_start_aneg(struct phy_device *phydev)
664{
665 return phy_start_aneg_priv(phydev, true);
666}
Andy Fleminge1393452005-08-24 18:46:21 -0500667EXPORT_SYMBOL(phy_start_aneg);
668
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800669/**
670 * phy_start_machine - start PHY state machine tracking
671 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400672 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800673 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400674 * which tracks whether the PHY is starting up, negotiating,
675 * etc. This function starts the timer which tracks the state
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300676 * of the PHY. If you want to maintain your own state machine,
677 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800678 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300679void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400680{
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530681 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400682}
683
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800684/**
Andrew Lunn3c293f42016-10-12 22:14:53 +0200685 * phy_trigger_machine - trigger the state machine to run
686 *
687 * @phydev: the phy_device struct
Florian Fainellieab12772017-01-20 15:31:52 -0800688 * @sync: indicate whether we should wait for the workqueue cancelation
Andrew Lunn3c293f42016-10-12 22:14:53 +0200689 *
690 * Description: There has been a change in state which requires that the
691 * state machine runs.
692 */
693
Alexander Kochetkovf555f342017-04-20 14:00:04 +0300694void phy_trigger_machine(struct phy_device *phydev, bool sync)
Andrew Lunn3c293f42016-10-12 22:14:53 +0200695{
Florian Fainellieab12772017-01-20 15:31:52 -0800696 if (sync)
697 cancel_delayed_work_sync(&phydev->state_queue);
698 else
699 cancel_delayed_work(&phydev->state_queue);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200700 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
701}
702
703/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800704 * phy_stop_machine - stop the PHY state machine tracking
705 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400706 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800707 * Description: Stops the state machine timer, sets the state to UP
Sergei Shtylylov817acf52006-07-26 00:53:53 +0400708 * (unless it wasn't up yet). This function must be called BEFORE
Andy Fleming00db8182005-07-30 19:31:23 -0400709 * phy_detach.
710 */
711void phy_stop_machine(struct phy_device *phydev)
712{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700713 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400714
Nate Case35b5f6b2008-01-29 10:05:09 -0600715 mutex_lock(&phydev->lock);
Nathan Sullivan49d52e82017-03-22 15:27:01 -0500716 if (phydev->state > PHY_UP && phydev->state != PHY_HALTED)
Andy Fleming00db8182005-07-30 19:31:23 -0400717 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600718 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400719}
720
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800721/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800722 * phy_error - enter HALTED state for this PHY device
723 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400724 *
725 * Moves the PHY to the HALTED state in response to a read
726 * or write error, and tells the controller the link is down.
727 * Must not be called from interrupt context, or while the
728 * phydev->lock is held.
729 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500730static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400731{
Nate Case35b5f6b2008-01-29 10:05:09 -0600732 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400733 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600734 mutex_unlock(&phydev->lock);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200735
Florian Fainellieab12772017-01-20 15:31:52 -0800736 phy_trigger_machine(phydev, false);
Andy Fleming00db8182005-07-30 19:31:23 -0400737}
738
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800739/**
740 * phy_interrupt - PHY interrupt handler
741 * @irq: interrupt line
742 * @phy_dat: phy_device pointer
Andy Fleminge1393452005-08-24 18:46:21 -0500743 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800744 * Description: When a PHY interrupt occurs, the handler disables
Andrew Lunn664fcf12016-10-16 19:56:51 +0200745 * interrupts, and uses phy_change to handle the interrupt.
Andy Fleminge1393452005-08-24 18:46:21 -0500746 */
David Howells7d12e782006-10-05 14:55:46 +0100747static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andy Fleminge1393452005-08-24 18:46:21 -0500748{
749 struct phy_device *phydev = phy_dat;
750
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100751 if (PHY_HALTED == phydev->state)
752 return IRQ_NONE; /* It can't be ours. */
753
Andy Fleminge1393452005-08-24 18:46:21 -0500754 disable_irq_nosync(irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700755 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500756
Andrew Lunn664fcf12016-10-16 19:56:51 +0200757 phy_change(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500758
759 return IRQ_HANDLED;
760}
761
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800762/**
763 * phy_enable_interrupts - Enable the interrupts from the PHY side
764 * @phydev: target phy_device struct
765 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000766static int phy_enable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400767{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300768 int err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400769
Andy Fleminge1393452005-08-24 18:46:21 -0500770 if (err < 0)
771 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400772
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300773 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400774}
Andy Fleming00db8182005-07-30 19:31:23 -0400775
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800776/**
777 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
778 * @phydev: target phy_device struct
779 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000780static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400781{
782 int err;
783
784 /* Disable PHY interrupts */
785 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400786 if (err)
787 goto phy_err;
788
789 /* Clear the interrupt */
790 err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400791 if (err)
792 goto phy_err;
793
794 return 0;
795
796phy_err:
797 phy_error(phydev);
798
799 return err;
800}
Andy Fleminge1393452005-08-24 18:46:21 -0500801
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800802/**
803 * phy_start_interrupts - request and enable interrupts for a PHY device
804 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500805 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800806 * Description: Request the interrupt for the given PHY.
807 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500808 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500809 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800810 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500811 */
812int phy_start_interrupts(struct phy_device *phydev)
813{
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700814 atomic_set(&phydev->irq_disable, 0);
Andrew Lunnc974bdb2016-10-16 19:56:50 +0200815 if (request_threaded_irq(phydev->irq, NULL, phy_interrupt,
816 IRQF_ONESHOT | IRQF_SHARED,
Andrew Lunnae0219c2016-10-16 19:56:52 +0200817 phydev_name(phydev), phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000818 pr_warn("%s: Can't get IRQ %d (PHY)\n",
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100819 phydev->mdio.bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500820 phydev->irq = PHY_POLL;
821 return 0;
822 }
823
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300824 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500825}
826EXPORT_SYMBOL(phy_start_interrupts);
827
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800828/**
829 * phy_stop_interrupts - disable interrupts from a PHY device
830 * @phydev: target phy_device struct
831 */
Andy Fleminge1393452005-08-24 18:46:21 -0500832int phy_stop_interrupts(struct phy_device *phydev)
833{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300834 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500835
836 if (err)
837 phy_error(phydev);
838
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700839 free_irq(phydev->irq, phydev);
840
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300841 /* If work indeed has been cancelled, disable_irq() will have
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700842 * been left unbalanced from phy_interrupt() and enable_irq()
843 * has to be called so that other devices on the line work.
844 */
845 while (atomic_dec_return(&phydev->irq_disable) >= 0)
846 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500847
848 return err;
849}
850EXPORT_SYMBOL(phy_stop_interrupts);
851
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800852/**
Andrew Lunn664fcf12016-10-16 19:56:51 +0200853 * phy_change - Called by the phy_interrupt to handle PHY changes
854 * @phydev: phy_device struct that interrupted
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800855 */
Andrew Lunn664fcf12016-10-16 19:56:51 +0200856void phy_change(struct phy_device *phydev)
Andy Fleminge1393452005-08-24 18:46:21 -0500857{
Florian Fainellideccd16f92016-01-18 19:33:07 -0800858 if (phy_interrupt_is_valid(phydev)) {
859 if (phydev->drv->did_interrupt &&
860 !phydev->drv->did_interrupt(phydev))
861 goto ignore;
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000862
Florian Fainellideccd16f92016-01-18 19:33:07 -0800863 if (phy_disable_interrupts(phydev))
864 goto phy_err;
865 }
Andy Fleminge1393452005-08-24 18:46:21 -0500866
Nate Case35b5f6b2008-01-29 10:05:09 -0600867 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500868 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
869 phydev->state = PHY_CHANGELINK;
Nate Case35b5f6b2008-01-29 10:05:09 -0600870 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500871
Florian Fainellideccd16f92016-01-18 19:33:07 -0800872 if (phy_interrupt_is_valid(phydev)) {
873 atomic_dec(&phydev->irq_disable);
874 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500875
Florian Fainellideccd16f92016-01-18 19:33:07 -0800876 /* Reenable interrupts */
877 if (PHY_HALTED != phydev->state &&
878 phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED))
879 goto irq_enable_err;
880 }
Andy Fleminge1393452005-08-24 18:46:21 -0500881
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700882 /* reschedule state queue work to run as soon as possible */
Florian Fainellieab12772017-01-20 15:31:52 -0800883 phy_trigger_machine(phydev, true);
Andy Fleminge1393452005-08-24 18:46:21 -0500884 return;
885
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000886ignore:
887 atomic_dec(&phydev->irq_disable);
888 enable_irq(phydev->irq);
889 return;
890
Andy Fleminge1393452005-08-24 18:46:21 -0500891irq_enable_err:
892 disable_irq(phydev->irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700893 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500894phy_err:
895 phy_error(phydev);
896}
897
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800898/**
Andrew Lunn664fcf12016-10-16 19:56:51 +0200899 * phy_change_work - Scheduled by the phy_mac_interrupt to handle PHY changes
900 * @work: work_struct that describes the work to be done
901 */
902void phy_change_work(struct work_struct *work)
903{
904 struct phy_device *phydev =
905 container_of(work, struct phy_device, phy_queue);
906
907 phy_change(phydev);
908}
909
910/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800911 * phy_stop - Bring down the PHY link, and stop checking the status
912 * @phydev: target phy_device struct
913 */
Andy Fleminge1393452005-08-24 18:46:21 -0500914void phy_stop(struct phy_device *phydev)
915{
Nate Case35b5f6b2008-01-29 10:05:09 -0600916 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500917
918 if (PHY_HALTED == phydev->state)
919 goto out_unlock;
920
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000921 if (phy_interrupt_is_valid(phydev)) {
Andy Fleminge1393452005-08-24 18:46:21 -0500922 /* Disable PHY Interrupts */
923 phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500924
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100925 /* Clear any pending interrupts */
926 phy_clear_interrupt(phydev);
927 }
Andy Fleminge1393452005-08-24 18:46:21 -0500928
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700929 phydev->state = PHY_HALTED;
930
Andy Fleminge1393452005-08-24 18:46:21 -0500931out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600932 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100933
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300934 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100935 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
936 * will not reenable interrupts.
937 */
Andy Fleminge1393452005-08-24 18:46:21 -0500938}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300939EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500940
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800941/**
942 * phy_start - start or restart a PHY device
943 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500944 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800945 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500946 * handle PHY-related work. Used during startup to start the
947 * PHY, and after a call to phy_stop() to resume operation.
948 * Also used to indicate the MDIO bus has cleared an error
949 * condition.
950 */
951void phy_start(struct phy_device *phydev)
952{
Tim Bealec15e10e2015-05-18 15:38:38 +1200953 bool do_resume = false;
954 int err = 0;
955
Nate Case35b5f6b2008-01-29 10:05:09 -0600956 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500957
958 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800959 case PHY_STARTING:
960 phydev->state = PHY_PENDING;
961 break;
962 case PHY_READY:
963 phydev->state = PHY_UP;
964 break;
965 case PHY_HALTED:
Tim Bealec15e10e2015-05-18 15:38:38 +1200966 /* make sure interrupts are re-enabled for the PHY */
Shaohui Xie84a527a2016-05-10 17:42:26 +0800967 if (phydev->irq != PHY_POLL) {
968 err = phy_enable_interrupts(phydev);
969 if (err < 0)
970 break;
971 }
Tim Bealec15e10e2015-05-18 15:38:38 +1200972
Florian Fainellie1093742013-12-17 21:38:12 -0800973 phydev->state = PHY_RESUMING;
Tim Bealec15e10e2015-05-18 15:38:38 +1200974 do_resume = true;
975 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800976 default:
977 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500978 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600979 mutex_unlock(&phydev->lock);
Tim Bealec15e10e2015-05-18 15:38:38 +1200980
981 /* if phy was suspended, bring the physical link up again */
982 if (do_resume)
983 phy_resume(phydev);
Andrew Lunn3c293f42016-10-12 22:14:53 +0200984
Florian Fainellieab12772017-01-20 15:31:52 -0800985 phy_trigger_machine(phydev, true);
Andy Fleminge1393452005-08-24 18:46:21 -0500986}
Andy Fleminge1393452005-08-24 18:46:21 -0500987EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400988
Zach Brown61a17962016-10-17 10:49:53 -0500989static void phy_adjust_link(struct phy_device *phydev)
990{
991 phydev->adjust_link(phydev->attached_dev);
Zach Brown2e0bc452016-10-17 10:49:55 -0500992 phy_led_trigger_change_speed(phydev);
Zach Brown61a17962016-10-17 10:49:53 -0500993}
994
Nate Case35b5f6b2008-01-29 10:05:09 -0600995/**
996 * phy_state_machine - Handle the state machine
997 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600998 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000999void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -04001000{
Jean Delvarebf6aede2009-04-02 16:56:54 -07001001 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -06001002 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -07001003 container_of(dwork, struct phy_device, state_queue);
Tim Bealec15e10e2015-05-18 15:38:38 +12001004 bool needs_aneg = false, do_suspend = false;
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001005 enum phy_state old_state;
Andy Fleming00db8182005-07-30 19:31:23 -04001006 int err = 0;
Shaohui Xie11e122c2015-08-14 12:23:40 +08001007 int old_link;
Andy Fleming00db8182005-07-30 19:31:23 -04001008
Nate Case35b5f6b2008-01-29 10:05:09 -06001009 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04001010
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001011 old_state = phydev->state;
1012
Florian Fainelli25149ef2017-02-17 16:07:34 -08001013 if (phydev->drv && phydev->drv->link_change_notify)
Daniel Mack2b8f2a22014-06-18 11:01:41 +02001014 phydev->drv->link_change_notify(phydev);
1015
Florian Fainellie1093742013-12-17 21:38:12 -08001016 switch (phydev->state) {
1017 case PHY_DOWN:
1018 case PHY_STARTING:
1019 case PHY_READY:
1020 case PHY_PENDING:
1021 break;
1022 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001023 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001024
1025 phydev->link_timeout = PHY_AN_TIMEOUT;
1026
1027 break;
1028 case PHY_AN:
1029 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001030 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -04001031 break;
Florian Fainellie1093742013-12-17 21:38:12 -08001032
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001033 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -08001034 if (!phydev->link) {
1035 phydev->state = PHY_NOLINK;
1036 netif_carrier_off(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001037 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001038 break;
1039 }
1040
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001041 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -08001042 err = phy_aneg_done(phydev);
1043 if (err < 0)
1044 break;
1045
1046 /* If AN is done, we're running */
1047 if (err > 0) {
1048 phydev->state = PHY_RUNNING;
1049 netif_carrier_on(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001050 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001051
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +05301052 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001053 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001054 break;
1055 case PHY_NOLINK:
Andrew Lunn321beec2015-11-16 23:36:46 +01001056 if (phy_interrupt_is_valid(phydev))
1057 break;
1058
Florian Fainellie1093742013-12-17 21:38:12 -08001059 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001060 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -04001061 break;
Andy Fleming6b655522006-10-16 16:19:17 -05001062
Florian Fainellie1093742013-12-17 21:38:12 -08001063 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +05301064 if (AUTONEG_ENABLE == phydev->autoneg) {
1065 err = phy_aneg_done(phydev);
1066 if (err < 0)
1067 break;
1068
1069 if (!err) {
1070 phydev->state = PHY_AN;
1071 phydev->link_timeout = PHY_AN_TIMEOUT;
1072 break;
1073 }
1074 }
Florian Fainellie1093742013-12-17 21:38:12 -08001075 phydev->state = PHY_RUNNING;
1076 netif_carrier_on(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001077 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001078 }
1079 break;
1080 case PHY_FORCING:
1081 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001082 if (err)
1083 break;
Andy Fleming6b655522006-10-16 16:19:17 -05001084
Florian Fainellie1093742013-12-17 21:38:12 -08001085 if (phydev->link) {
1086 phydev->state = PHY_RUNNING;
1087 netif_carrier_on(phydev->attached_dev);
1088 } else {
1089 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001090 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001091 }
1092
Zach Brown61a17962016-10-17 10:49:53 -05001093 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001094 break;
1095 case PHY_RUNNING:
Florian Fainellid5c3d842016-01-18 19:33:06 -08001096 /* Only register a CHANGE if we are polling and link changed
1097 * since latest checking.
Florian Fainellie1093742013-12-17 21:38:12 -08001098 */
Florian Fainellid5c3d842016-01-18 19:33:06 -08001099 if (phydev->irq == PHY_POLL) {
Shaohui Xie11e122c2015-08-14 12:23:40 +08001100 old_link = phydev->link;
1101 err = phy_read_status(phydev);
1102 if (err)
1103 break;
1104
1105 if (old_link != phydev->link)
1106 phydev->state = PHY_CHANGELINK;
1107 }
Zefir Kurtisi811a9192017-01-06 12:14:48 +01001108 /*
1109 * Failsafe: check that nobody set phydev->link=0 between two
1110 * poll cycles, otherwise we won't leave RUNNING state as long
1111 * as link remains down.
1112 */
1113 if (!phydev->link && phydev->state == PHY_RUNNING) {
1114 phydev->state = PHY_CHANGELINK;
1115 phydev_err(phydev, "no link in PHY_RUNNING\n");
1116 }
Florian Fainellie1093742013-12-17 21:38:12 -08001117 break;
1118 case PHY_CHANGELINK:
1119 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001120 if (err)
1121 break;
1122
1123 if (phydev->link) {
1124 phydev->state = PHY_RUNNING;
1125 netif_carrier_on(phydev->attached_dev);
1126 } else {
1127 phydev->state = PHY_NOLINK;
1128 netif_carrier_off(phydev->attached_dev);
1129 }
1130
Zach Brown61a17962016-10-17 10:49:53 -05001131 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001132
1133 if (phy_interrupt_is_valid(phydev))
1134 err = phy_config_interrupt(phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001135 PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -08001136 break;
1137 case PHY_HALTED:
1138 if (phydev->link) {
1139 phydev->link = 0;
1140 netif_carrier_off(phydev->attached_dev);
Zach Brown61a17962016-10-17 10:49:53 -05001141 phy_adjust_link(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001142 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -08001143 }
1144 break;
1145 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -08001146 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -04001147 err = phy_aneg_done(phydev);
1148 if (err < 0)
1149 break;
1150
Florian Fainellie1093742013-12-17 21:38:12 -08001151 /* err > 0 if AN is done.
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001152 * Otherwise, it's 0, and we're still waiting for AN
1153 */
Andy Fleming00db8182005-07-30 19:31:23 -04001154 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +00001155 err = phy_read_status(phydev);
1156 if (err)
1157 break;
1158
1159 if (phydev->link) {
1160 phydev->state = PHY_RUNNING;
1161 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001162 } else {
Wade Farnsworth42caa072009-07-01 13:00:34 +00001163 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001164 }
Zach Brown61a17962016-10-17 10:49:53 -05001165 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001166 } else {
1167 phydev->state = PHY_AN;
1168 phydev->link_timeout = PHY_AN_TIMEOUT;
Wade Farnsworth42caa072009-07-01 13:00:34 +00001169 }
Florian Fainellie1093742013-12-17 21:38:12 -08001170 } else {
1171 err = phy_read_status(phydev);
1172 if (err)
1173 break;
1174
1175 if (phydev->link) {
1176 phydev->state = PHY_RUNNING;
1177 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001178 } else {
Florian Fainellie1093742013-12-17 21:38:12 -08001179 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001180 }
Zach Brown61a17962016-10-17 10:49:53 -05001181 phy_adjust_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -08001182 }
1183 break;
Andy Fleming00db8182005-07-30 19:31:23 -04001184 }
1185
Nate Case35b5f6b2008-01-29 10:05:09 -06001186 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04001187
1188 if (needs_aneg)
Alexander Kochetkovf555f342017-04-20 14:00:04 +03001189 err = phy_start_aneg_priv(phydev, false);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +08001190 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +01001191 phy_suspend(phydev);
1192
Andy Fleming00db8182005-07-30 19:31:23 -04001193 if (err < 0)
1194 phy_error(phydev);
1195
Andrew Lunn72ba48b2016-01-06 20:11:09 +01001196 phydev_dbg(phydev, "PHY state change %s -> %s\n",
1197 phy_state_to_str(old_state),
1198 phy_state_to_str(phydev->state));
Florian Fainelli3e2186e2015-05-16 10:17:56 -07001199
Florian Fainellid5c3d842016-01-18 19:33:06 -08001200 /* Only re-schedule a PHY state machine change if we are polling the
1201 * PHY, if PHY_IGNORE_INTERRUPT is set, then we will be moving
1202 * between states from phy_mac_interrupt()
1203 */
1204 if (phydev->irq == PHY_POLL)
1205 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
1206 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -06001207}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001208
Andrew Lunn664fcf12016-10-16 19:56:51 +02001209/**
1210 * phy_mac_interrupt - MAC says the link has changed
1211 * @phydev: phy_device struct with changed link
1212 * @new_link: Link is Up/Down.
1213 *
1214 * Description: The MAC layer is able indicate there has been a change
1215 * in the PHY link status. Set the new link status, and trigger the
1216 * state machine, work a work queue.
1217 */
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001218void phy_mac_interrupt(struct phy_device *phydev, int new_link)
1219{
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001220 phydev->link = new_link;
Florian Fainellideccd16f92016-01-18 19:33:07 -08001221
1222 /* Trigger a state machine change */
1223 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Florian Fainelli5ea94e72013-05-19 22:53:43 +00001224}
1225EXPORT_SYMBOL(phy_mac_interrupt);
1226
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001227static inline void mmd_phy_indirect(struct mii_bus *bus, int prtad, int devad,
1228 int addr)
1229{
1230 /* Write the desired MMD Devad */
1231 bus->write(bus, addr, MII_MMD_CTRL, devad);
1232
1233 /* Write the desired MMD register address */
1234 bus->write(bus, addr, MII_MMD_DATA, prtad);
1235
1236 /* Select the Function : DATA with no post increment */
1237 bus->write(bus, addr, MII_MMD_CTRL, (devad | MII_MMD_CTRL_NOINCR));
1238}
1239
1240/**
1241 * phy_read_mmd_indirect - reads data from the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001242 * @phydev: The PHY device bus
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001243 * @prtad: MMD Address
1244 * @devad: MMD DEVAD
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001245 *
1246 * Description: it reads data from the MMD registers (clause 22 to access to
1247 * clause 45) of the specified phy address.
1248 * To read these register we have:
1249 * 1) Write reg 13 // DEVAD
1250 * 2) Write reg 14 // MMD Address
1251 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1252 * 3) Read reg 14 // Read MMD data
1253 */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001254int phy_read_mmd_indirect(struct phy_device *phydev, int prtad, int devad)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001255{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001256 struct phy_driver *phydrv = phydev->drv;
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001257 int addr = phydev->mdio.addr;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001258 int value = -1;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001259
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001260 if (!phydrv->read_mmd_indirect) {
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001261 struct mii_bus *bus = phydev->mdio.bus;
Russell King05a7f582015-08-25 09:49:47 +01001262
1263 mutex_lock(&bus->mdio_lock);
1264 mmd_phy_indirect(bus, prtad, devad, addr);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001265
1266 /* Read the content of the MMD's selected register */
Russell King05a7f582015-08-25 09:49:47 +01001267 value = bus->read(bus, addr, MII_MMD_DATA);
1268 mutex_unlock(&bus->mdio_lock);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001269 } else {
1270 value = phydrv->read_mmd_indirect(phydev, prtad, devad, addr);
1271 }
1272 return value;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001273}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001274EXPORT_SYMBOL(phy_read_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001275
1276/**
1277 * phy_write_mmd_indirect - writes data to the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001278 * @phydev: The PHY device
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001279 * @prtad: MMD Address
1280 * @devad: MMD DEVAD
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001281 * @data: data to write in the MMD register
1282 *
1283 * Description: Write data from the MMD registers of the specified
1284 * phy address.
1285 * To write these register we have:
1286 * 1) Write reg 13 // DEVAD
1287 * 2) Write reg 14 // MMD Address
1288 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1289 * 3) Write reg 14 // Write MMD data
1290 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001291void phy_write_mmd_indirect(struct phy_device *phydev, int prtad,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001292 int devad, u32 data)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001293{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001294 struct phy_driver *phydrv = phydev->drv;
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001295 int addr = phydev->mdio.addr;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001296
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001297 if (!phydrv->write_mmd_indirect) {
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001298 struct mii_bus *bus = phydev->mdio.bus;
Russell King05a7f582015-08-25 09:49:47 +01001299
1300 mutex_lock(&bus->mdio_lock);
1301 mmd_phy_indirect(bus, prtad, devad, addr);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001302
1303 /* Write the data into MMD's selected register */
Russell King05a7f582015-08-25 09:49:47 +01001304 bus->write(bus, addr, MII_MMD_DATA, data);
1305 mutex_unlock(&bus->mdio_lock);
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001306 } else {
1307 phydrv->write_mmd_indirect(phydev, prtad, devad, addr, data);
1308 }
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001309}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001310EXPORT_SYMBOL(phy_write_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001311
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001312/**
1313 * phy_init_eee - init and check the EEE feature
1314 * @phydev: target phy_device struct
1315 * @clk_stop_enable: PHY may stop the clock during LPI
1316 *
1317 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1318 * is supported by looking at the MMD registers 3.20 and 7.60/61
1319 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1320 * bit if required.
1321 */
1322int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1323{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001324 if (!phydev->drv)
1325 return -EIO;
1326
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001327 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1328 * Also EEE feature is active when core is operating with MII, GMII
Florian Fainelli7e140692015-05-15 16:30:41 -07001329 * or RGMII (all kinds). Internal PHYs are also allowed to proceed and
1330 * should return an error if they do not support EEE.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001331 */
1332 if ((phydev->duplex == DUPLEX_FULL) &&
1333 ((phydev->interface == PHY_INTERFACE_MODE_MII) ||
1334 (phydev->interface == PHY_INTERFACE_MODE_GMII) ||
Florian Fainelli32a64162015-05-26 12:19:59 -07001335 phy_interface_is_rgmii(phydev) ||
Florian Fainellia9f63092014-08-22 18:55:44 -07001336 phy_is_internal(phydev))) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001337 int eee_lp, eee_cap, eee_adv;
1338 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001339 int status;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001340
1341 /* Read phy status to properly get the right settings */
1342 status = phy_read_status(phydev);
1343 if (status)
1344 return status;
1345
1346 /* First check if the EEE ability is supported */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001347 eee_cap = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001348 MDIO_MMD_PCS);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001349 if (eee_cap <= 0)
1350 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001351
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001352 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001353 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001354 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001355
1356 /* Check which link settings negotiated and verify it in
1357 * the EEE advertising registers.
1358 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001359 eee_lp = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001360 MDIO_MMD_AN);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001361 if (eee_lp <= 0)
1362 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001363
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001364 eee_adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001365 MDIO_MMD_AN);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001366 if (eee_adv <= 0)
1367 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001368
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001369 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1370 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Guenter Roeck54da5a82015-02-17 09:36:22 -08001371 if (!phy_check_valid(phydev->speed, phydev->duplex, lp & adv))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001372 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001373
1374 if (clk_stop_enable) {
1375 /* Configure the PHY to stop receiving xMII
1376 * clock while it is signaling LPI.
1377 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001378 int val = phy_read_mmd_indirect(phydev, MDIO_CTRL1,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001379 MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001380 if (val < 0)
1381 return val;
1382
1383 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001384 phy_write_mmd_indirect(phydev, MDIO_CTRL1,
Andrew Lunn053e7e12016-01-06 20:11:12 +01001385 MDIO_MMD_PCS, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001386 }
1387
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001388 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001389 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001390eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001391 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001392}
1393EXPORT_SYMBOL(phy_init_eee);
1394
1395/**
1396 * phy_get_eee_err - report the EEE wake error count
1397 * @phydev: target phy_device struct
1398 *
1399 * Description: it is to report the number of time where the PHY
1400 * failed to complete its normal wake sequence.
1401 */
1402int phy_get_eee_err(struct phy_device *phydev)
1403{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001404 if (!phydev->drv)
1405 return -EIO;
1406
Andrew Lunn053e7e12016-01-06 20:11:12 +01001407 return phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_WK_ERR, MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001408}
1409EXPORT_SYMBOL(phy_get_eee_err);
1410
1411/**
1412 * phy_ethtool_get_eee - get EEE supported and status
1413 * @phydev: target phy_device struct
1414 * @data: ethtool_eee data
1415 *
1416 * Description: it reportes the Supported/Advertisement/LP Advertisement
1417 * capabilities.
1418 */
1419int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1420{
1421 int val;
1422
Florian Fainelli25149ef2017-02-17 16:07:34 -08001423 if (!phydev->drv)
1424 return -EIO;
1425
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001426 /* Get Supported EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001427 val = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE, MDIO_MMD_PCS);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001428 if (val < 0)
1429 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001430 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001431
1432 /* Get advertisement EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001433 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001434 if (val < 0)
1435 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001436 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001437
1438 /* Get LP advertisement EEE */
Andrew Lunn053e7e12016-01-06 20:11:12 +01001439 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE, MDIO_MMD_AN);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001440 if (val < 0)
1441 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001442 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001443
1444 return 0;
1445}
1446EXPORT_SYMBOL(phy_ethtool_get_eee);
1447
1448/**
1449 * phy_ethtool_set_eee - set EEE supported and status
1450 * @phydev: target phy_device struct
1451 * @data: ethtool_eee data
1452 *
1453 * Description: it is to program the Advertisement EEE register.
1454 */
1455int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1456{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03001457 int val = ethtool_adv_to_mmd_eee_adv_t(data->advertised);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001458
Florian Fainelli25149ef2017-02-17 16:07:34 -08001459 if (!phydev->drv)
1460 return -EIO;
1461
jbrunetd853d142016-11-28 10:46:46 +01001462 /* Mask prohibited EEE modes */
1463 val &= ~phydev->eee_broken_modes;
1464
Andrew Lunn053e7e12016-01-06 20:11:12 +01001465 phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN, val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001466
1467 return 0;
1468}
1469EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001470
1471int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1472{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001473 if (phydev->drv && phydev->drv->set_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001474 return phydev->drv->set_wol(phydev, wol);
1475
1476 return -EOPNOTSUPP;
1477}
1478EXPORT_SYMBOL(phy_ethtool_set_wol);
1479
1480void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1481{
Florian Fainelli25149ef2017-02-17 16:07:34 -08001482 if (phydev->drv && phydev->drv->get_wol)
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001483 phydev->drv->get_wol(phydev, wol);
1484}
1485EXPORT_SYMBOL(phy_ethtool_get_wol);
Philippe Reynes9d9a77c2016-05-10 00:19:41 +02001486
1487int phy_ethtool_get_link_ksettings(struct net_device *ndev,
1488 struct ethtool_link_ksettings *cmd)
1489{
1490 struct phy_device *phydev = ndev->phydev;
1491
1492 if (!phydev)
1493 return -ENODEV;
1494
1495 return phy_ethtool_ksettings_get(phydev, cmd);
1496}
1497EXPORT_SYMBOL(phy_ethtool_get_link_ksettings);
1498
1499int phy_ethtool_set_link_ksettings(struct net_device *ndev,
1500 const struct ethtool_link_ksettings *cmd)
1501{
1502 struct phy_device *phydev = ndev->phydev;
1503
1504 if (!phydev)
1505 return -ENODEV;
1506
1507 return phy_ethtool_ksettings_set(phydev, cmd);
1508}
1509EXPORT_SYMBOL(phy_ethtool_set_link_ksettings);
Florian Fainellie86a8982016-11-15 10:06:30 -08001510
1511int phy_ethtool_nway_reset(struct net_device *ndev)
1512{
1513 struct phy_device *phydev = ndev->phydev;
1514
1515 if (!phydev)
1516 return -ENODEV;
1517
Florian Fainelli25149ef2017-02-17 16:07:34 -08001518 if (!phydev->drv)
1519 return -EIO;
1520
Florian Fainellie86a8982016-11-15 10:06:30 -08001521 return genphy_restart_aneg(phydev);
1522}
1523EXPORT_SYMBOL(phy_ethtool_nway_reset);