blob: cdcac6aa4260b32927d7c903e024b42e5d17861e [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>
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +010032#include <linux/timer.h>
33#include <linux/workqueue.h>
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +000034#include <linux/mdio.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030035#include <linux/io.h>
36#include <linux/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030038
Andy Fleming00db8182005-07-30 19:31:23 -040039#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040040
Florian Fainelli766d1d32014-02-11 17:27:35 -080041static const char *phy_speed_to_str(int speed)
42{
43 switch (speed) {
44 case SPEED_10:
45 return "10Mbps";
46 case SPEED_100:
47 return "100Mbps";
48 case SPEED_1000:
49 return "1Gbps";
50 case SPEED_2500:
51 return "2.5Gbps";
52 case SPEED_10000:
53 return "10Gbps";
54 case SPEED_UNKNOWN:
55 return "Unknown";
56 default:
57 return "Unsupported (update phy.c)";
58 }
59}
60
Randy Dunlapb3df0da2007-03-06 02:41:48 -080061/**
62 * phy_print_status - Convenience function to print out the current phy status
63 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -050064 */
65void phy_print_status(struct phy_device *phydev)
66{
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030067 if (phydev->link) {
Florian Fainellidf40cc82014-02-11 17:27:34 -080068 netdev_info(phydev->attached_dev,
Florian Fainelli766d1d32014-02-11 17:27:35 -080069 "Link is Up - %s/%s - flow control %s\n",
70 phy_speed_to_str(phydev->speed),
Florian Fainellidf40cc82014-02-11 17:27:34 -080071 DUPLEX_FULL == phydev->duplex ? "Full" : "Half",
72 phydev->pause ? "rx/tx" : "off");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030073 } else {
Florian Fainelli43b63292014-02-11 17:27:33 -080074 netdev_info(phydev->attached_dev, "Link is Down\n");
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030075 }
Andy Fleminge1393452005-08-24 18:46:21 -050076}
77EXPORT_SYMBOL(phy_print_status);
Andy Fleming00db8182005-07-30 19:31:23 -040078
Randy Dunlapb3df0da2007-03-06 02:41:48 -080079/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -080080 * phy_clear_interrupt - Ack the phy device's interrupt
81 * @phydev: the phy_device struct
82 *
83 * If the @phydev driver has an ack_interrupt function, call it to
84 * ack and clear the phy device's interrupt.
85 *
Florian Fainelliad033502014-02-11 17:27:38 -080086 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -080087 */
stephen hemminger89ff05e2010-10-21 08:37:41 +000088static int phy_clear_interrupt(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -040089{
Andy Fleming00db8182005-07-30 19:31:23 -040090 if (phydev->drv->ack_interrupt)
Sergei Shtylyove62a7682014-01-05 03:21:52 +030091 return phydev->drv->ack_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -040092
Sergei Shtylyove62a7682014-01-05 03:21:52 +030093 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -040094}
95
Randy Dunlapb3df0da2007-03-06 02:41:48 -080096/**
97 * phy_config_interrupt - configure the PHY device for the requested interrupts
98 * @phydev: the phy_device struct
99 * @interrupts: interrupt flags to configure for this @phydev
100 *
Florian Fainelliad033502014-02-11 17:27:38 -0800101 * Returns 0 on success or < 0 on error.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800102 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000103static int phy_config_interrupt(struct phy_device *phydev, u32 interrupts)
Andy Fleming00db8182005-07-30 19:31:23 -0400104{
Andy Fleming00db8182005-07-30 19:31:23 -0400105 phydev->interrupts = interrupts;
106 if (phydev->drv->config_intr)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300107 return phydev->drv->config_intr(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400108
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300109 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400110}
111
112
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800113/**
114 * phy_aneg_done - return auto-negotiation status
115 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400116 *
Florian Fainelli76a423a2014-02-11 17:27:37 -0800117 * Description: Return the auto-negotiation status from this @phydev
118 * Returns > 0 on success or < 0 on error. 0 means that auto-negotiation
119 * is still pending.
Andy Fleming00db8182005-07-30 19:31:23 -0400120 */
121static inline int phy_aneg_done(struct phy_device *phydev)
122{
Florian Fainelli76a423a2014-02-11 17:27:37 -0800123 if (phydev->drv->aneg_done)
124 return phydev->drv->aneg_done(phydev);
125
Florian Fainellia9fa6e62014-02-11 17:27:36 -0800126 return genphy_aneg_done(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400127}
128
Andy Fleming00db8182005-07-30 19:31:23 -0400129/* A structure for mapping a particular speed and duplex
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300130 * combination to a particular SUPPORTED and ADVERTISED value
131 */
Andy Fleming00db8182005-07-30 19:31:23 -0400132struct phy_setting {
133 int speed;
134 int duplex;
135 u32 setting;
136};
137
138/* A mapping of all SUPPORTED settings to speed/duplex */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500139static const struct phy_setting settings[] = {
Andy Fleming00db8182005-07-30 19:31:23 -0400140 {
Lendacky, Thomas3e707702014-07-14 14:05:46 -0500141 .speed = SPEED_10000,
142 .duplex = DUPLEX_FULL,
143 .setting = SUPPORTED_10000baseKR_Full,
144 },
145 {
146 .speed = SPEED_10000,
147 .duplex = DUPLEX_FULL,
148 .setting = SUPPORTED_10000baseKX4_Full,
149 },
150 {
151 .speed = SPEED_10000,
Andy Fleming00db8182005-07-30 19:31:23 -0400152 .duplex = DUPLEX_FULL,
153 .setting = SUPPORTED_10000baseT_Full,
154 },
155 {
Lendacky, Thomas3e707702014-07-14 14:05:46 -0500156 .speed = SPEED_2500,
157 .duplex = DUPLEX_FULL,
158 .setting = SUPPORTED_2500baseX_Full,
159 },
160 {
161 .speed = SPEED_1000,
162 .duplex = DUPLEX_FULL,
163 .setting = SUPPORTED_1000baseKX_Full,
164 },
165 {
Andy Fleming00db8182005-07-30 19:31:23 -0400166 .speed = SPEED_1000,
167 .duplex = DUPLEX_FULL,
168 .setting = SUPPORTED_1000baseT_Full,
169 },
170 {
171 .speed = SPEED_1000,
172 .duplex = DUPLEX_HALF,
173 .setting = SUPPORTED_1000baseT_Half,
174 },
175 {
176 .speed = SPEED_100,
177 .duplex = DUPLEX_FULL,
178 .setting = SUPPORTED_100baseT_Full,
179 },
180 {
181 .speed = SPEED_100,
182 .duplex = DUPLEX_HALF,
183 .setting = SUPPORTED_100baseT_Half,
184 },
185 {
186 .speed = SPEED_10,
187 .duplex = DUPLEX_FULL,
188 .setting = SUPPORTED_10baseT_Full,
189 },
190 {
191 .speed = SPEED_10,
192 .duplex = DUPLEX_HALF,
193 .setting = SUPPORTED_10baseT_Half,
194 },
195};
196
Denis Chengff8ac602007-09-02 18:30:18 +0800197#define MAX_NUM_SETTINGS ARRAY_SIZE(settings)
Andy Fleming00db8182005-07-30 19:31:23 -0400198
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800199/**
200 * phy_find_setting - find a PHY settings array entry that matches speed & duplex
201 * @speed: speed to match
202 * @duplex: duplex to match
Andy Fleming00db8182005-07-30 19:31:23 -0400203 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800204 * Description: Searches the settings array for the setting which
Andy Fleming00db8182005-07-30 19:31:23 -0400205 * matches the desired speed and duplex, and returns the index
206 * of that setting. Returns the index of the last setting if
207 * none of the others match.
208 */
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700209static inline unsigned int phy_find_setting(int speed, int duplex)
Andy Fleming00db8182005-07-30 19:31:23 -0400210{
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700211 unsigned int idx = 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400212
213 while (idx < ARRAY_SIZE(settings) &&
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300214 (settings[idx].speed != speed || settings[idx].duplex != duplex))
Andy Fleming00db8182005-07-30 19:31:23 -0400215 idx++;
216
217 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
218}
219
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800220/**
221 * phy_find_valid - find a PHY setting that matches the requested features mask
222 * @idx: The first index in settings[] to search
223 * @features: A mask of the valid settings
Andy Fleming00db8182005-07-30 19:31:23 -0400224 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800225 * Description: Returns the index of the first valid setting less
Andy Fleming00db8182005-07-30 19:31:23 -0400226 * than or equal to the one pointed to by idx, as determined by
227 * the mask in features. Returns the index of the last setting
228 * if nothing else matches.
229 */
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700230static inline unsigned int phy_find_valid(unsigned int idx, u32 features)
Andy Fleming00db8182005-07-30 19:31:23 -0400231{
232 while (idx < MAX_NUM_SETTINGS && !(settings[idx].setting & features))
233 idx++;
234
235 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
236}
237
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800238/**
239 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
240 * @phydev: the target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400241 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800242 * Description: Make sure the PHY is set to supported speeds and
Andy Fleming00db8182005-07-30 19:31:23 -0400243 * duplexes. Drop down by one in this order: 1000/FULL,
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800244 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
Andy Fleming00db8182005-07-30 19:31:23 -0400245 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000246static void phy_sanitize_settings(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400247{
248 u32 features = phydev->supported;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700249 unsigned int idx;
Andy Fleming00db8182005-07-30 19:31:23 -0400250
251 /* Sanitize settings based on PHY capabilities */
252 if ((features & SUPPORTED_Autoneg) == 0)
Domen Puncer163642a2007-08-07 12:12:41 +0200253 phydev->autoneg = AUTONEG_DISABLE;
Andy Fleming00db8182005-07-30 19:31:23 -0400254
255 idx = phy_find_valid(phy_find_setting(phydev->speed, phydev->duplex),
256 features);
257
258 phydev->speed = settings[idx].speed;
259 phydev->duplex = settings[idx].duplex;
260}
Andy Fleming00db8182005-07-30 19:31:23 -0400261
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800262/**
263 * phy_ethtool_sset - generic ethtool sset function, handles all the details
264 * @phydev: target phy_device struct
265 * @cmd: ethtool_cmd
Andy Fleming00db8182005-07-30 19:31:23 -0400266 *
267 * A few notes about parameter checking:
268 * - We don't set port or transceiver, so we don't care what they
269 * were set to.
270 * - phy_start_aneg() will make sure forced settings are sane, and
271 * choose the next best ones from the ones selected, so we don't
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800272 * care if ethtool tries to give us bad values.
Andy Fleming00db8182005-07-30 19:31:23 -0400273 */
274int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
275{
David Decotigny25db0332011-04-27 18:32:39 +0000276 u32 speed = ethtool_cmd_speed(cmd);
277
Andy Fleming00db8182005-07-30 19:31:23 -0400278 if (cmd->phy_address != phydev->addr)
279 return -EINVAL;
280
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300281 /* We make sure that we don't pass unsupported values in to the PHY */
Andy Fleming00db8182005-07-30 19:31:23 -0400282 cmd->advertising &= phydev->supported;
283
284 /* Verify the settings we care about. */
285 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
286 return -EINVAL;
287
288 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
289 return -EINVAL;
290
Joe Perches8e95a202009-12-03 07:58:21 +0000291 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +0000292 ((speed != SPEED_1000 &&
293 speed != SPEED_100 &&
294 speed != SPEED_10) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000295 (cmd->duplex != DUPLEX_HALF &&
296 cmd->duplex != DUPLEX_FULL)))
Andy Fleming00db8182005-07-30 19:31:23 -0400297 return -EINVAL;
298
299 phydev->autoneg = cmd->autoneg;
300
David Decotigny25db0332011-04-27 18:32:39 +0000301 phydev->speed = speed;
Andy Fleming00db8182005-07-30 19:31:23 -0400302
303 phydev->advertising = cmd->advertising;
304
305 if (AUTONEG_ENABLE == cmd->autoneg)
306 phydev->advertising |= ADVERTISED_Autoneg;
307 else
308 phydev->advertising &= ~ADVERTISED_Autoneg;
309
310 phydev->duplex = cmd->duplex;
311
312 /* Restart the PHY */
313 phy_start_aneg(phydev);
314
315 return 0;
316}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600317EXPORT_SYMBOL(phy_ethtool_sset);
Andy Fleming00db8182005-07-30 19:31:23 -0400318
319int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
320{
321 cmd->supported = phydev->supported;
322
323 cmd->advertising = phydev->advertising;
Florian Fainelli114002b2013-12-06 13:01:30 -0800324 cmd->lp_advertising = phydev->lp_advertising;
Andy Fleming00db8182005-07-30 19:31:23 -0400325
David Decotigny70739492011-04-27 18:32:40 +0000326 ethtool_cmd_speed_set(cmd, phydev->speed);
Andy Fleming00db8182005-07-30 19:31:23 -0400327 cmd->duplex = phydev->duplex;
Florian Fainellic88838c2014-02-13 16:08:43 -0800328 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
329 cmd->port = PORT_BNC;
330 else
331 cmd->port = PORT_MII;
Andy Fleming00db8182005-07-30 19:31:23 -0400332 cmd->phy_address = phydev->addr;
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000333 cmd->transceiver = phy_is_internal(phydev) ?
334 XCVR_INTERNAL : XCVR_EXTERNAL;
Andy Fleming00db8182005-07-30 19:31:23 -0400335 cmd->autoneg = phydev->autoneg;
336
337 return 0;
338}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600339EXPORT_SYMBOL(phy_ethtool_gset);
Andy Fleming00db8182005-07-30 19:31:23 -0400340
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800341/**
342 * phy_mii_ioctl - generic PHY MII ioctl interface
343 * @phydev: the phy_device struct
Randy Dunlap00c7d922010-08-09 13:41:59 +0000344 * @ifr: &struct ifreq for socket ioctl's
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800345 * @cmd: ioctl cmd to execute
346 *
347 * Note that this function is currently incompatible with the
Andy Fleming00db8182005-07-30 19:31:23 -0400348 * PHYCONTROL layer. It changes registers without regard to
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800349 * current state. Use at own risk.
Andy Fleming00db8182005-07-30 19:31:23 -0400350 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300351int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
Andy Fleming00db8182005-07-30 19:31:23 -0400352{
Richard Cochran28b04112010-07-17 08:48:55 +0000353 struct mii_ioctl_data *mii_data = if_mii(ifr);
Andy Fleming00db8182005-07-30 19:31:23 -0400354 u16 val = mii_data->val_in;
Brian Hill79ce0472014-11-11 13:39:39 -0700355 bool change_autoneg = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400356
357 switch (cmd) {
358 case SIOCGMIIPHY:
359 mii_data->phy_id = phydev->addr;
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000360 /* fall through */
361
Andy Fleming00db8182005-07-30 19:31:23 -0400362 case SIOCGMIIREG:
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000363 mii_data->val_out = mdiobus_read(phydev->bus, mii_data->phy_id,
364 mii_data->reg_num);
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300365 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400366
367 case SIOCSMIIREG:
Andy Fleming00db8182005-07-30 19:31:23 -0400368 if (mii_data->phy_id == phydev->addr) {
Florian Fainellie1093742013-12-17 21:38:12 -0800369 switch (mii_data->reg_num) {
Andy Fleming00db8182005-07-30 19:31:23 -0400370 case MII_BMCR:
Brian Hill79ce0472014-11-11 13:39:39 -0700371 if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
372 if (phydev->autoneg == AUTONEG_ENABLE)
373 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400374 phydev->autoneg = AUTONEG_DISABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700375 if (val & BMCR_FULLDPLX)
376 phydev->duplex = DUPLEX_FULL;
377 else
378 phydev->duplex = DUPLEX_HALF;
379 if (val & BMCR_SPEED1000)
380 phydev->speed = SPEED_1000;
381 else if (val & BMCR_SPEED100)
382 phydev->speed = SPEED_100;
383 else phydev->speed = SPEED_10;
384 }
385 else {
386 if (phydev->autoneg == AUTONEG_DISABLE)
387 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400388 phydev->autoneg = AUTONEG_ENABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700389 }
Andy Fleming00db8182005-07-30 19:31:23 -0400390 break;
391 case MII_ADVERTISE:
Brian Hill79ce0472014-11-11 13:39:39 -0700392 phydev->advertising = mii_adv_to_ethtool_adv_t(val);
393 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400394 break;
395 default:
396 /* do nothing */
397 break;
398 }
399 }
400
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000401 mdiobus_write(phydev->bus, mii_data->phy_id,
402 mii_data->reg_num, val);
403
Joe Perches8e95a202009-12-03 07:58:21 +0000404 if (mii_data->reg_num == MII_BMCR &&
Florian Fainelli2613f952013-12-06 13:01:31 -0800405 val & BMCR_RESET)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300406 return phy_init_hw(phydev);
Brian Hill79ce0472014-11-11 13:39:39 -0700407
408 if (change_autoneg)
409 return phy_start_aneg(phydev);
410
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300411 return 0;
David Woodhousedda93b42007-11-28 19:56:34 +0000412
Richard Cochranc1f19b52010-07-17 08:49:36 +0000413 case SIOCSHWTSTAMP:
414 if (phydev->drv->hwtstamp)
415 return phydev->drv->hwtstamp(phydev, ifr);
416 /* fall through */
417
David Woodhousedda93b42007-11-28 19:56:34 +0000418 default:
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000419 return -EOPNOTSUPP;
Andy Fleming00db8182005-07-30 19:31:23 -0400420 }
Andy Fleming00db8182005-07-30 19:31:23 -0400421}
Domen Puncer680e9fe2007-09-17 22:21:40 +0200422EXPORT_SYMBOL(phy_mii_ioctl);
Andy Fleming00db8182005-07-30 19:31:23 -0400423
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800424/**
425 * phy_start_aneg - start auto-negotiation for this PHY device
426 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500427 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800428 * Description: Sanitizes the settings (if we're not autonegotiating
429 * them), and then calls the driver's config_aneg function.
430 * If the PHYCONTROL Layer is operating, we change the state to
431 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500432 */
433int phy_start_aneg(struct phy_device *phydev)
434{
435 int err;
436
Nate Case35b5f6b2008-01-29 10:05:09 -0600437 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500438
439 if (AUTONEG_DISABLE == phydev->autoneg)
440 phy_sanitize_settings(phydev);
441
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000442 /* Invalidate LP advertising flags */
443 phydev->lp_advertising = 0;
444
Andy Fleminge1393452005-08-24 18:46:21 -0500445 err = phydev->drv->config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500446 if (err < 0)
447 goto out_unlock;
448
449 if (phydev->state != PHY_HALTED) {
450 if (AUTONEG_ENABLE == phydev->autoneg) {
451 phydev->state = PHY_AN;
452 phydev->link_timeout = PHY_AN_TIMEOUT;
453 } else {
454 phydev->state = PHY_FORCING;
455 phydev->link_timeout = PHY_FORCE_TIMEOUT;
456 }
457 }
458
459out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600460 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500461 return err;
462}
463EXPORT_SYMBOL(phy_start_aneg);
464
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800465/**
466 * phy_start_machine - start PHY state machine tracking
467 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400468 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800469 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400470 * which tracks whether the PHY is starting up, negotiating,
471 * etc. This function starts the timer which tracks the state
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300472 * of the PHY. If you want to maintain your own state machine,
473 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800474 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300475void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400476{
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530477 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400478}
479
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800480/**
481 * phy_stop_machine - stop the PHY state machine tracking
482 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400483 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800484 * Description: Stops the state machine timer, sets the state to UP
Sergei Shtylylov817acf52006-07-26 00:53:53 +0400485 * (unless it wasn't up yet). This function must be called BEFORE
Andy Fleming00db8182005-07-30 19:31:23 -0400486 * phy_detach.
487 */
488void phy_stop_machine(struct phy_device *phydev)
489{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700490 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400491
Nate Case35b5f6b2008-01-29 10:05:09 -0600492 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400493 if (phydev->state > PHY_UP)
494 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600495 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400496}
497
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800498/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800499 * phy_error - enter HALTED state for this PHY device
500 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400501 *
502 * Moves the PHY to the HALTED state in response to a read
503 * or write error, and tells the controller the link is down.
504 * Must not be called from interrupt context, or while the
505 * phydev->lock is held.
506 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500507static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400508{
Nate Case35b5f6b2008-01-29 10:05:09 -0600509 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400510 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600511 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400512}
513
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800514/**
515 * phy_interrupt - PHY interrupt handler
516 * @irq: interrupt line
517 * @phy_dat: phy_device pointer
Andy Fleminge1393452005-08-24 18:46:21 -0500518 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800519 * Description: When a PHY interrupt occurs, the handler disables
Andy Fleminge1393452005-08-24 18:46:21 -0500520 * interrupts, and schedules a work task to clear the interrupt.
521 */
David Howells7d12e782006-10-05 14:55:46 +0100522static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andy Fleminge1393452005-08-24 18:46:21 -0500523{
524 struct phy_device *phydev = phy_dat;
525
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100526 if (PHY_HALTED == phydev->state)
527 return IRQ_NONE; /* It can't be ours. */
528
Andy Fleminge1393452005-08-24 18:46:21 -0500529 /* The MDIO bus is not allowed to be written in interrupt
530 * context, so we need to disable the irq here. A work
531 * queue will write the PHY to disable and clear the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300532 * interrupt, and then reenable the irq line.
533 */
Andy Fleminge1393452005-08-24 18:46:21 -0500534 disable_irq_nosync(irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700535 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500536
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530537 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500538
539 return IRQ_HANDLED;
540}
541
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800542/**
543 * phy_enable_interrupts - Enable the interrupts from the PHY side
544 * @phydev: target phy_device struct
545 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000546static int phy_enable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400547{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300548 int err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400549
Andy Fleminge1393452005-08-24 18:46:21 -0500550 if (err < 0)
551 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400552
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300553 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400554}
Andy Fleming00db8182005-07-30 19:31:23 -0400555
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800556/**
557 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
558 * @phydev: target phy_device struct
559 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000560static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400561{
562 int err;
563
564 /* Disable PHY interrupts */
565 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400566 if (err)
567 goto phy_err;
568
569 /* Clear the interrupt */
570 err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400571 if (err)
572 goto phy_err;
573
574 return 0;
575
576phy_err:
577 phy_error(phydev);
578
579 return err;
580}
Andy Fleminge1393452005-08-24 18:46:21 -0500581
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800582/**
583 * phy_start_interrupts - request and enable interrupts for a PHY device
584 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500585 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800586 * Description: Request the interrupt for the given PHY.
587 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500588 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500589 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800590 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500591 */
592int phy_start_interrupts(struct phy_device *phydev)
593{
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700594 atomic_set(&phydev->irq_disable, 0);
Sergei Shtylyov33c133c2013-12-20 22:09:04 +0300595 if (request_irq(phydev->irq, phy_interrupt, 0, "phy_interrupt",
596 phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000597 pr_warn("%s: Can't get IRQ %d (PHY)\n",
598 phydev->bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500599 phydev->irq = PHY_POLL;
600 return 0;
601 }
602
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300603 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500604}
605EXPORT_SYMBOL(phy_start_interrupts);
606
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800607/**
608 * phy_stop_interrupts - disable interrupts from a PHY device
609 * @phydev: target phy_device struct
610 */
Andy Fleminge1393452005-08-24 18:46:21 -0500611int phy_stop_interrupts(struct phy_device *phydev)
612{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300613 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500614
615 if (err)
616 phy_error(phydev);
617
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700618 free_irq(phydev->irq, phydev);
619
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300620 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700621 * of rtnl_lock(), but we do not really care about what would
622 * be done, except from enable_irq(), so cancel any work
623 * possibly pending and take care of the matter below.
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100624 */
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700625 cancel_work_sync(&phydev->phy_queue);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300626 /* If work indeed has been cancelled, disable_irq() will have
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700627 * been left unbalanced from phy_interrupt() and enable_irq()
628 * has to be called so that other devices on the line work.
629 */
630 while (atomic_dec_return(&phydev->irq_disable) >= 0)
631 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500632
633 return err;
634}
635EXPORT_SYMBOL(phy_stop_interrupts);
636
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800637/**
638 * phy_change - Scheduled by the phy_interrupt/timer to handle PHY changes
639 * @work: work_struct that describes the work to be done
640 */
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000641void phy_change(struct work_struct *work)
Andy Fleminge1393452005-08-24 18:46:21 -0500642{
David Howellsc4028952006-11-22 14:57:56 +0000643 struct phy_device *phydev =
644 container_of(work, struct phy_device, phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500645
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000646 if (phydev->drv->did_interrupt &&
647 !phydev->drv->did_interrupt(phydev))
648 goto ignore;
649
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300650 if (phy_disable_interrupts(phydev))
Andy Fleminge1393452005-08-24 18:46:21 -0500651 goto phy_err;
652
Nate Case35b5f6b2008-01-29 10:05:09 -0600653 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500654 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
655 phydev->state = PHY_CHANGELINK;
Nate Case35b5f6b2008-01-29 10:05:09 -0600656 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500657
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700658 atomic_dec(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500659 enable_irq(phydev->irq);
660
661 /* Reenable interrupts */
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300662 if (PHY_HALTED != phydev->state &&
663 phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED))
Andy Fleminge1393452005-08-24 18:46:21 -0500664 goto irq_enable_err;
665
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700666 /* reschedule state queue work to run as soon as possible */
667 cancel_delayed_work_sync(&phydev->state_queue);
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530668 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
Andy Fleminge1393452005-08-24 18:46:21 -0500669 return;
670
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000671ignore:
672 atomic_dec(&phydev->irq_disable);
673 enable_irq(phydev->irq);
674 return;
675
Andy Fleminge1393452005-08-24 18:46:21 -0500676irq_enable_err:
677 disable_irq(phydev->irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700678 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500679phy_err:
680 phy_error(phydev);
681}
682
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800683/**
684 * phy_stop - Bring down the PHY link, and stop checking the status
685 * @phydev: target phy_device struct
686 */
Andy Fleminge1393452005-08-24 18:46:21 -0500687void phy_stop(struct phy_device *phydev)
688{
Nate Case35b5f6b2008-01-29 10:05:09 -0600689 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500690
691 if (PHY_HALTED == phydev->state)
692 goto out_unlock;
693
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000694 if (phy_interrupt_is_valid(phydev)) {
Andy Fleminge1393452005-08-24 18:46:21 -0500695 /* Disable PHY Interrupts */
696 phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500697
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100698 /* Clear any pending interrupts */
699 phy_clear_interrupt(phydev);
700 }
Andy Fleminge1393452005-08-24 18:46:21 -0500701
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700702 phydev->state = PHY_HALTED;
703
Andy Fleminge1393452005-08-24 18:46:21 -0500704out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600705 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100706
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300707 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100708 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
709 * will not reenable interrupts.
710 */
Andy Fleminge1393452005-08-24 18:46:21 -0500711}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300712EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500713
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800714/**
715 * phy_start - start or restart a PHY device
716 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500717 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800718 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500719 * handle PHY-related work. Used during startup to start the
720 * PHY, and after a call to phy_stop() to resume operation.
721 * Also used to indicate the MDIO bus has cleared an error
722 * condition.
723 */
724void phy_start(struct phy_device *phydev)
725{
Nate Case35b5f6b2008-01-29 10:05:09 -0600726 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500727
728 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800729 case PHY_STARTING:
730 phydev->state = PHY_PENDING;
731 break;
732 case PHY_READY:
733 phydev->state = PHY_UP;
734 break;
735 case PHY_HALTED:
736 phydev->state = PHY_RESUMING;
737 default:
738 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500739 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600740 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500741}
Andy Fleminge1393452005-08-24 18:46:21 -0500742EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400743
Nate Case35b5f6b2008-01-29 10:05:09 -0600744/**
745 * phy_state_machine - Handle the state machine
746 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600747 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000748void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400749{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700750 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600751 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700752 container_of(dwork, struct phy_device, state_queue);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800753 bool needs_aneg = false, do_suspend = false, do_resume = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400754 int err = 0;
755
Nate Case35b5f6b2008-01-29 10:05:09 -0600756 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400757
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200758 if (phydev->drv->link_change_notify)
759 phydev->drv->link_change_notify(phydev);
760
Florian Fainellie1093742013-12-17 21:38:12 -0800761 switch (phydev->state) {
762 case PHY_DOWN:
763 case PHY_STARTING:
764 case PHY_READY:
765 case PHY_PENDING:
766 break;
767 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800768 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800769
770 phydev->link_timeout = PHY_AN_TIMEOUT;
771
772 break;
773 case PHY_AN:
774 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800775 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400776 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800777
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300778 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -0800779 if (!phydev->link) {
780 phydev->state = PHY_NOLINK;
781 netif_carrier_off(phydev->attached_dev);
782 phydev->adjust_link(phydev->attached_dev);
783 break;
784 }
785
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300786 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -0800787 err = phy_aneg_done(phydev);
788 if (err < 0)
789 break;
790
791 /* If AN is done, we're running */
792 if (err > 0) {
793 phydev->state = PHY_RUNNING;
794 netif_carrier_on(phydev->attached_dev);
795 phydev->adjust_link(phydev->attached_dev);
796
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +0530797 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800798 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800799 break;
800 case PHY_NOLINK:
801 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800802 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -0400803 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500804
Florian Fainellie1093742013-12-17 21:38:12 -0800805 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +0530806 if (AUTONEG_ENABLE == phydev->autoneg) {
807 err = phy_aneg_done(phydev);
808 if (err < 0)
809 break;
810
811 if (!err) {
812 phydev->state = PHY_AN;
813 phydev->link_timeout = PHY_AN_TIMEOUT;
814 break;
815 }
816 }
Florian Fainellie1093742013-12-17 21:38:12 -0800817 phydev->state = PHY_RUNNING;
818 netif_carrier_on(phydev->attached_dev);
819 phydev->adjust_link(phydev->attached_dev);
820 }
821 break;
822 case PHY_FORCING:
823 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800824 if (err)
825 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500826
Florian Fainellie1093742013-12-17 21:38:12 -0800827 if (phydev->link) {
828 phydev->state = PHY_RUNNING;
829 netif_carrier_on(phydev->attached_dev);
830 } else {
831 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800832 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800833 }
834
835 phydev->adjust_link(phydev->attached_dev);
836 break;
837 case PHY_RUNNING:
838 /* Only register a CHANGE if we are
839 * polling or ignoring interrupts
840 */
841 if (!phy_interrupt_is_valid(phydev))
842 phydev->state = PHY_CHANGELINK;
843 break;
844 case PHY_CHANGELINK:
845 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800846 if (err)
847 break;
848
849 if (phydev->link) {
850 phydev->state = PHY_RUNNING;
851 netif_carrier_on(phydev->attached_dev);
852 } else {
853 phydev->state = PHY_NOLINK;
854 netif_carrier_off(phydev->attached_dev);
855 }
856
857 phydev->adjust_link(phydev->attached_dev);
858
859 if (phy_interrupt_is_valid(phydev))
860 err = phy_config_interrupt(phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300861 PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -0800862 break;
863 case PHY_HALTED:
864 if (phydev->link) {
865 phydev->link = 0;
866 netif_carrier_off(phydev->attached_dev);
867 phydev->adjust_link(phydev->attached_dev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800868 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800869 }
870 break;
871 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -0800872 err = phy_clear_interrupt(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800873 if (err)
874 break;
875
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300876 err = phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -0800877 if (err)
878 break;
879
880 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -0400881 err = phy_aneg_done(phydev);
882 if (err < 0)
883 break;
884
Florian Fainellie1093742013-12-17 21:38:12 -0800885 /* err > 0 if AN is done.
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300886 * Otherwise, it's 0, and we're still waiting for AN
887 */
Andy Fleming00db8182005-07-30 19:31:23 -0400888 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000889 err = phy_read_status(phydev);
890 if (err)
891 break;
892
893 if (phydev->link) {
894 phydev->state = PHY_RUNNING;
895 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300896 } else {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000897 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300898 }
Wade Farnsworth42caa072009-07-01 13:00:34 +0000899 phydev->adjust_link(phydev->attached_dev);
Florian Fainellie1093742013-12-17 21:38:12 -0800900 } else {
901 phydev->state = PHY_AN;
902 phydev->link_timeout = PHY_AN_TIMEOUT;
Wade Farnsworth42caa072009-07-01 13:00:34 +0000903 }
Florian Fainellie1093742013-12-17 21:38:12 -0800904 } else {
905 err = phy_read_status(phydev);
906 if (err)
907 break;
908
909 if (phydev->link) {
910 phydev->state = PHY_RUNNING;
911 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300912 } else {
Florian Fainellie1093742013-12-17 21:38:12 -0800913 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300914 }
Florian Fainellie1093742013-12-17 21:38:12 -0800915 phydev->adjust_link(phydev->attached_dev);
916 }
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800917 do_resume = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800918 break;
Andy Fleming00db8182005-07-30 19:31:23 -0400919 }
920
Nate Case35b5f6b2008-01-29 10:05:09 -0600921 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400922
923 if (needs_aneg)
924 err = phy_start_aneg(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800925 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +0100926 phy_suspend(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800927 else if (do_resume)
928 phy_resume(phydev);
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +0100929
Andy Fleming00db8182005-07-30 19:31:23 -0400930 if (err < 0)
931 phy_error(phydev);
932
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530933 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300934 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -0600935}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000936
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000937void phy_mac_interrupt(struct phy_device *phydev, int new_link)
938{
939 cancel_work_sync(&phydev->phy_queue);
940 phydev->link = new_link;
941 schedule_work(&phydev->phy_queue);
942}
943EXPORT_SYMBOL(phy_mac_interrupt);
944
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000945static inline void mmd_phy_indirect(struct mii_bus *bus, int prtad, int devad,
946 int addr)
947{
948 /* Write the desired MMD Devad */
949 bus->write(bus, addr, MII_MMD_CTRL, devad);
950
951 /* Write the desired MMD register address */
952 bus->write(bus, addr, MII_MMD_DATA, prtad);
953
954 /* Select the Function : DATA with no post increment */
955 bus->write(bus, addr, MII_MMD_CTRL, (devad | MII_MMD_CTRL_NOINCR));
956}
957
958/**
959 * phy_read_mmd_indirect - reads data from the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500960 * @phydev: The PHY device bus
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000961 * @prtad: MMD Address
962 * @devad: MMD DEVAD
963 * @addr: PHY address on the MII bus
964 *
965 * Description: it reads data from the MMD registers (clause 22 to access to
966 * clause 45) of the specified phy address.
967 * To read these register we have:
968 * 1) Write reg 13 // DEVAD
969 * 2) Write reg 14 // MMD Address
970 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
971 * 3) Read reg 14 // Read MMD data
972 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -0700973int phy_read_mmd_indirect(struct phy_device *phydev, int prtad,
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500974 int devad, int addr)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000975{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500976 struct phy_driver *phydrv = phydev->drv;
977 int value = -1;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000978
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500979 if (phydrv->read_mmd_indirect == NULL) {
980 mmd_phy_indirect(phydev->bus, prtad, devad, addr);
981
982 /* Read the content of the MMD's selected register */
983 value = phydev->bus->read(phydev->bus, addr, MII_MMD_DATA);
984 } else {
985 value = phydrv->read_mmd_indirect(phydev, prtad, devad, addr);
986 }
987 return value;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000988}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -0700989EXPORT_SYMBOL(phy_read_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000990
991/**
992 * phy_write_mmd_indirect - writes data to the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500993 * @phydev: The PHY device
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000994 * @prtad: MMD Address
995 * @devad: MMD DEVAD
996 * @addr: PHY address on the MII bus
997 * @data: data to write in the MMD register
998 *
999 * Description: Write data from the MMD registers of the specified
1000 * phy address.
1001 * To write these register we have:
1002 * 1) Write reg 13 // DEVAD
1003 * 2) Write reg 14 // MMD Address
1004 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1005 * 3) Write reg 14 // Write MMD data
1006 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001007void phy_write_mmd_indirect(struct phy_device *phydev, int prtad,
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001008 int devad, int addr, u32 data)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001009{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001010 struct phy_driver *phydrv = phydev->drv;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001011
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001012 if (phydrv->write_mmd_indirect == NULL) {
1013 mmd_phy_indirect(phydev->bus, prtad, devad, addr);
1014
1015 /* Write the data into MMD's selected register */
1016 phydev->bus->write(phydev->bus, addr, MII_MMD_DATA, data);
1017 } else {
1018 phydrv->write_mmd_indirect(phydev, prtad, devad, addr, data);
1019 }
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001020}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001021EXPORT_SYMBOL(phy_write_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001022
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001023/**
1024 * phy_init_eee - init and check the EEE feature
1025 * @phydev: target phy_device struct
1026 * @clk_stop_enable: PHY may stop the clock during LPI
1027 *
1028 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1029 * is supported by looking at the MMD registers 3.20 and 7.60/61
1030 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1031 * bit if required.
1032 */
1033int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1034{
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001035 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1036 * Also EEE feature is active when core is operating with MII, GMII
Florian Fainellia9f63092014-08-22 18:55:44 -07001037 * or RGMII. Internal PHYs are also allowed to proceed and should
1038 * return an error if they do not support EEE.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001039 */
1040 if ((phydev->duplex == DUPLEX_FULL) &&
1041 ((phydev->interface == PHY_INTERFACE_MODE_MII) ||
1042 (phydev->interface == PHY_INTERFACE_MODE_GMII) ||
Florian Fainellia9f63092014-08-22 18:55:44 -07001043 (phydev->interface == PHY_INTERFACE_MODE_RGMII) ||
1044 phy_is_internal(phydev))) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001045 int eee_lp, eee_cap, eee_adv;
1046 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001047 int status;
1048 unsigned int idx;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001049
1050 /* Read phy status to properly get the right settings */
1051 status = phy_read_status(phydev);
1052 if (status)
1053 return status;
1054
1055 /* First check if the EEE ability is supported */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001056 eee_cap = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001057 MDIO_MMD_PCS, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001058 if (eee_cap <= 0)
1059 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001060
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001061 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001062 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001063 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001064
1065 /* Check which link settings negotiated and verify it in
1066 * the EEE advertising registers.
1067 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001068 eee_lp = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001069 MDIO_MMD_AN, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001070 if (eee_lp <= 0)
1071 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001072
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001073 eee_adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001074 MDIO_MMD_AN, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001075 if (eee_adv <= 0)
1076 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001077
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001078 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1079 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001080 idx = phy_find_setting(phydev->speed, phydev->duplex);
Giuseppe CAVALLARO9a9c56c2013-05-26 21:31:28 +00001081 if (!(lp & adv & settings[idx].setting))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001082 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001083
1084 if (clk_stop_enable) {
1085 /* Configure the PHY to stop receiving xMII
1086 * clock while it is signaling LPI.
1087 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001088 int val = phy_read_mmd_indirect(phydev, MDIO_CTRL1,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001089 MDIO_MMD_PCS,
1090 phydev->addr);
1091 if (val < 0)
1092 return val;
1093
1094 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001095 phy_write_mmd_indirect(phydev, MDIO_CTRL1,
1096 MDIO_MMD_PCS, phydev->addr,
1097 val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001098 }
1099
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001100 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001101 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001102eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001103 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001104}
1105EXPORT_SYMBOL(phy_init_eee);
1106
1107/**
1108 * phy_get_eee_err - report the EEE wake error count
1109 * @phydev: target phy_device struct
1110 *
1111 * Description: it is to report the number of time where the PHY
1112 * failed to complete its normal wake sequence.
1113 */
1114int phy_get_eee_err(struct phy_device *phydev)
1115{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001116 return phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_WK_ERR,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001117 MDIO_MMD_PCS, phydev->addr);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001118}
1119EXPORT_SYMBOL(phy_get_eee_err);
1120
1121/**
1122 * phy_ethtool_get_eee - get EEE supported and status
1123 * @phydev: target phy_device struct
1124 * @data: ethtool_eee data
1125 *
1126 * Description: it reportes the Supported/Advertisement/LP Advertisement
1127 * capabilities.
1128 */
1129int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1130{
1131 int val;
1132
1133 /* Get Supported EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001134 val = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001135 MDIO_MMD_PCS, phydev->addr);
1136 if (val < 0)
1137 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001138 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001139
1140 /* Get advertisement EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001141 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001142 MDIO_MMD_AN, phydev->addr);
1143 if (val < 0)
1144 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001145 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001146
1147 /* Get LP advertisement EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001148 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001149 MDIO_MMD_AN, phydev->addr);
1150 if (val < 0)
1151 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001152 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001153
1154 return 0;
1155}
1156EXPORT_SYMBOL(phy_ethtool_get_eee);
1157
1158/**
1159 * phy_ethtool_set_eee - set EEE supported and status
1160 * @phydev: target phy_device struct
1161 * @data: ethtool_eee data
1162 *
1163 * Description: it is to program the Advertisement EEE register.
1164 */
1165int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1166{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03001167 int val = ethtool_adv_to_mmd_eee_adv_t(data->advertised);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001168
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001169 phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001170 phydev->addr, val);
1171
1172 return 0;
1173}
1174EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001175
1176int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1177{
1178 if (phydev->drv->set_wol)
1179 return phydev->drv->set_wol(phydev, wol);
1180
1181 return -EOPNOTSUPP;
1182}
1183EXPORT_SYMBOL(phy_ethtool_set_wol);
1184
1185void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1186{
1187 if (phydev->drv->get_wol)
1188 phydev->drv->get_wol(phydev, wol);
1189}
1190EXPORT_SYMBOL(phy_ethtool_get_wol);