blob: 52cd8db2c57daad2767dec72149f4cdabbcf6917 [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/**
Guenter Roeck54da5a82015-02-17 09:36:22 -0800239 * phy_check_valid - check if there is a valid PHY setting which matches
240 * speed, duplex, and feature mask
241 * @speed: speed to match
242 * @duplex: duplex to match
243 * @features: A mask of the valid settings
244 *
245 * Description: Returns true if there is a valid setting, false otherwise.
246 */
247static inline bool phy_check_valid(int speed, int duplex, u32 features)
248{
249 unsigned int idx;
250
251 idx = phy_find_valid(phy_find_setting(speed, duplex), features);
252
253 return settings[idx].speed == speed && settings[idx].duplex == duplex &&
254 (settings[idx].setting & features);
255}
256
257/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800258 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
259 * @phydev: the target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400260 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800261 * Description: Make sure the PHY is set to supported speeds and
Andy Fleming00db8182005-07-30 19:31:23 -0400262 * duplexes. Drop down by one in this order: 1000/FULL,
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800263 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
Andy Fleming00db8182005-07-30 19:31:23 -0400264 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000265static void phy_sanitize_settings(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400266{
267 u32 features = phydev->supported;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -0700268 unsigned int idx;
Andy Fleming00db8182005-07-30 19:31:23 -0400269
270 /* Sanitize settings based on PHY capabilities */
271 if ((features & SUPPORTED_Autoneg) == 0)
Domen Puncer163642a2007-08-07 12:12:41 +0200272 phydev->autoneg = AUTONEG_DISABLE;
Andy Fleming00db8182005-07-30 19:31:23 -0400273
274 idx = phy_find_valid(phy_find_setting(phydev->speed, phydev->duplex),
275 features);
276
277 phydev->speed = settings[idx].speed;
278 phydev->duplex = settings[idx].duplex;
279}
Andy Fleming00db8182005-07-30 19:31:23 -0400280
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800281/**
282 * phy_ethtool_sset - generic ethtool sset function, handles all the details
283 * @phydev: target phy_device struct
284 * @cmd: ethtool_cmd
Andy Fleming00db8182005-07-30 19:31:23 -0400285 *
286 * A few notes about parameter checking:
287 * - We don't set port or transceiver, so we don't care what they
288 * were set to.
289 * - phy_start_aneg() will make sure forced settings are sane, and
290 * choose the next best ones from the ones selected, so we don't
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800291 * care if ethtool tries to give us bad values.
Andy Fleming00db8182005-07-30 19:31:23 -0400292 */
293int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
294{
David Decotigny25db0332011-04-27 18:32:39 +0000295 u32 speed = ethtool_cmd_speed(cmd);
296
Andy Fleming00db8182005-07-30 19:31:23 -0400297 if (cmd->phy_address != phydev->addr)
298 return -EINVAL;
299
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300300 /* We make sure that we don't pass unsupported values in to the PHY */
Andy Fleming00db8182005-07-30 19:31:23 -0400301 cmd->advertising &= phydev->supported;
302
303 /* Verify the settings we care about. */
304 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
305 return -EINVAL;
306
307 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
308 return -EINVAL;
309
Joe Perches8e95a202009-12-03 07:58:21 +0000310 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +0000311 ((speed != SPEED_1000 &&
312 speed != SPEED_100 &&
313 speed != SPEED_10) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000314 (cmd->duplex != DUPLEX_HALF &&
315 cmd->duplex != DUPLEX_FULL)))
Andy Fleming00db8182005-07-30 19:31:23 -0400316 return -EINVAL;
317
318 phydev->autoneg = cmd->autoneg;
319
David Decotigny25db0332011-04-27 18:32:39 +0000320 phydev->speed = speed;
Andy Fleming00db8182005-07-30 19:31:23 -0400321
322 phydev->advertising = cmd->advertising;
323
324 if (AUTONEG_ENABLE == cmd->autoneg)
325 phydev->advertising |= ADVERTISED_Autoneg;
326 else
327 phydev->advertising &= ~ADVERTISED_Autoneg;
328
329 phydev->duplex = cmd->duplex;
330
331 /* Restart the PHY */
332 phy_start_aneg(phydev);
333
334 return 0;
335}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600336EXPORT_SYMBOL(phy_ethtool_sset);
Andy Fleming00db8182005-07-30 19:31:23 -0400337
338int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
339{
340 cmd->supported = phydev->supported;
341
342 cmd->advertising = phydev->advertising;
Florian Fainelli114002b2013-12-06 13:01:30 -0800343 cmd->lp_advertising = phydev->lp_advertising;
Andy Fleming00db8182005-07-30 19:31:23 -0400344
David Decotigny70739492011-04-27 18:32:40 +0000345 ethtool_cmd_speed_set(cmd, phydev->speed);
Andy Fleming00db8182005-07-30 19:31:23 -0400346 cmd->duplex = phydev->duplex;
Florian Fainellic88838c2014-02-13 16:08:43 -0800347 if (phydev->interface == PHY_INTERFACE_MODE_MOCA)
348 cmd->port = PORT_BNC;
349 else
350 cmd->port = PORT_MII;
Andy Fleming00db8182005-07-30 19:31:23 -0400351 cmd->phy_address = phydev->addr;
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000352 cmd->transceiver = phy_is_internal(phydev) ?
353 XCVR_INTERNAL : XCVR_EXTERNAL;
Andy Fleming00db8182005-07-30 19:31:23 -0400354 cmd->autoneg = phydev->autoneg;
355
356 return 0;
357}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600358EXPORT_SYMBOL(phy_ethtool_gset);
Andy Fleming00db8182005-07-30 19:31:23 -0400359
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800360/**
361 * phy_mii_ioctl - generic PHY MII ioctl interface
362 * @phydev: the phy_device struct
Randy Dunlap00c7d922010-08-09 13:41:59 +0000363 * @ifr: &struct ifreq for socket ioctl's
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800364 * @cmd: ioctl cmd to execute
365 *
366 * Note that this function is currently incompatible with the
Andy Fleming00db8182005-07-30 19:31:23 -0400367 * PHYCONTROL layer. It changes registers without regard to
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800368 * current state. Use at own risk.
Andy Fleming00db8182005-07-30 19:31:23 -0400369 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300370int phy_mii_ioctl(struct phy_device *phydev, struct ifreq *ifr, int cmd)
Andy Fleming00db8182005-07-30 19:31:23 -0400371{
Richard Cochran28b04112010-07-17 08:48:55 +0000372 struct mii_ioctl_data *mii_data = if_mii(ifr);
Andy Fleming00db8182005-07-30 19:31:23 -0400373 u16 val = mii_data->val_in;
Brian Hill79ce0472014-11-11 13:39:39 -0700374 bool change_autoneg = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400375
376 switch (cmd) {
377 case SIOCGMIIPHY:
378 mii_data->phy_id = phydev->addr;
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000379 /* fall through */
380
Andy Fleming00db8182005-07-30 19:31:23 -0400381 case SIOCGMIIREG:
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000382 mii_data->val_out = mdiobus_read(phydev->bus, mii_data->phy_id,
383 mii_data->reg_num);
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300384 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400385
386 case SIOCSMIIREG:
Andy Fleming00db8182005-07-30 19:31:23 -0400387 if (mii_data->phy_id == phydev->addr) {
Florian Fainellie1093742013-12-17 21:38:12 -0800388 switch (mii_data->reg_num) {
Andy Fleming00db8182005-07-30 19:31:23 -0400389 case MII_BMCR:
Brian Hill79ce0472014-11-11 13:39:39 -0700390 if ((val & (BMCR_RESET | BMCR_ANENABLE)) == 0) {
391 if (phydev->autoneg == AUTONEG_ENABLE)
392 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400393 phydev->autoneg = AUTONEG_DISABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700394 if (val & BMCR_FULLDPLX)
395 phydev->duplex = DUPLEX_FULL;
396 else
397 phydev->duplex = DUPLEX_HALF;
398 if (val & BMCR_SPEED1000)
399 phydev->speed = SPEED_1000;
400 else if (val & BMCR_SPEED100)
401 phydev->speed = SPEED_100;
402 else phydev->speed = SPEED_10;
403 }
404 else {
405 if (phydev->autoneg == AUTONEG_DISABLE)
406 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400407 phydev->autoneg = AUTONEG_ENABLE;
Brian Hill79ce0472014-11-11 13:39:39 -0700408 }
Andy Fleming00db8182005-07-30 19:31:23 -0400409 break;
410 case MII_ADVERTISE:
Brian Hill79ce0472014-11-11 13:39:39 -0700411 phydev->advertising = mii_adv_to_ethtool_adv_t(val);
412 change_autoneg = true;
Andy Fleming00db8182005-07-30 19:31:23 -0400413 break;
414 default:
415 /* do nothing */
416 break;
417 }
418 }
419
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000420 mdiobus_write(phydev->bus, mii_data->phy_id,
421 mii_data->reg_num, val);
422
Joe Perches8e95a202009-12-03 07:58:21 +0000423 if (mii_data->reg_num == MII_BMCR &&
Florian Fainelli2613f952013-12-06 13:01:31 -0800424 val & BMCR_RESET)
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300425 return phy_init_hw(phydev);
Brian Hill79ce0472014-11-11 13:39:39 -0700426
427 if (change_autoneg)
428 return phy_start_aneg(phydev);
429
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300430 return 0;
David Woodhousedda93b482007-11-28 19:56:34 +0000431
Richard Cochranc1f19b52010-07-17 08:49:36 +0000432 case SIOCSHWTSTAMP:
433 if (phydev->drv->hwtstamp)
434 return phydev->drv->hwtstamp(phydev, ifr);
435 /* fall through */
436
David Woodhousedda93b482007-11-28 19:56:34 +0000437 default:
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000438 return -EOPNOTSUPP;
Andy Fleming00db8182005-07-30 19:31:23 -0400439 }
Andy Fleming00db8182005-07-30 19:31:23 -0400440}
Domen Puncer680e9fe2007-09-17 22:21:40 +0200441EXPORT_SYMBOL(phy_mii_ioctl);
Andy Fleming00db8182005-07-30 19:31:23 -0400442
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800443/**
444 * phy_start_aneg - start auto-negotiation for this PHY device
445 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500446 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800447 * Description: Sanitizes the settings (if we're not autonegotiating
448 * them), and then calls the driver's config_aneg function.
449 * If the PHYCONTROL Layer is operating, we change the state to
450 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500451 */
452int phy_start_aneg(struct phy_device *phydev)
453{
454 int err;
455
Nate Case35b5f6b2008-01-29 10:05:09 -0600456 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500457
458 if (AUTONEG_DISABLE == phydev->autoneg)
459 phy_sanitize_settings(phydev);
460
Ben Hutchings9b3320e2015-01-27 00:58:15 +0000461 /* Invalidate LP advertising flags */
462 phydev->lp_advertising = 0;
463
Andy Fleminge1393452005-08-24 18:46:21 -0500464 err = phydev->drv->config_aneg(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500465 if (err < 0)
466 goto out_unlock;
467
468 if (phydev->state != PHY_HALTED) {
469 if (AUTONEG_ENABLE == phydev->autoneg) {
470 phydev->state = PHY_AN;
471 phydev->link_timeout = PHY_AN_TIMEOUT;
472 } else {
473 phydev->state = PHY_FORCING;
474 phydev->link_timeout = PHY_FORCE_TIMEOUT;
475 }
476 }
477
478out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600479 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500480 return err;
481}
482EXPORT_SYMBOL(phy_start_aneg);
483
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800484/**
485 * phy_start_machine - start PHY state machine tracking
486 * @phydev: the phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400487 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800488 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400489 * which tracks whether the PHY is starting up, negotiating,
490 * etc. This function starts the timer which tracks the state
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300491 * of the PHY. If you want to maintain your own state machine,
492 * do not call this function.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800493 */
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300494void phy_start_machine(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400495{
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530496 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400497}
498
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800499/**
500 * phy_stop_machine - stop the PHY state machine tracking
501 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400502 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800503 * Description: Stops the state machine timer, sets the state to UP
Sergei Shtylylov817acf52006-07-26 00:53:53 +0400504 * (unless it wasn't up yet). This function must be called BEFORE
Andy Fleming00db8182005-07-30 19:31:23 -0400505 * phy_detach.
506 */
507void phy_stop_machine(struct phy_device *phydev)
508{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700509 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400510
Nate Case35b5f6b2008-01-29 10:05:09 -0600511 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400512 if (phydev->state > PHY_UP)
513 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600514 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400515}
516
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800517/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800518 * phy_error - enter HALTED state for this PHY device
519 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400520 *
521 * Moves the PHY to the HALTED state in response to a read
522 * or write error, and tells the controller the link is down.
523 * Must not be called from interrupt context, or while the
524 * phydev->lock is held.
525 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500526static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400527{
Nate Case35b5f6b2008-01-29 10:05:09 -0600528 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400529 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600530 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400531}
532
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800533/**
534 * phy_interrupt - PHY interrupt handler
535 * @irq: interrupt line
536 * @phy_dat: phy_device pointer
Andy Fleminge1393452005-08-24 18:46:21 -0500537 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800538 * Description: When a PHY interrupt occurs, the handler disables
Andy Fleminge1393452005-08-24 18:46:21 -0500539 * interrupts, and schedules a work task to clear the interrupt.
540 */
David Howells7d12e782006-10-05 14:55:46 +0100541static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andy Fleminge1393452005-08-24 18:46:21 -0500542{
543 struct phy_device *phydev = phy_dat;
544
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100545 if (PHY_HALTED == phydev->state)
546 return IRQ_NONE; /* It can't be ours. */
547
Andy Fleminge1393452005-08-24 18:46:21 -0500548 /* The MDIO bus is not allowed to be written in interrupt
549 * context, so we need to disable the irq here. A work
550 * queue will write the PHY to disable and clear the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300551 * interrupt, and then reenable the irq line.
552 */
Andy Fleminge1393452005-08-24 18:46:21 -0500553 disable_irq_nosync(irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700554 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500555
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530556 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500557
558 return IRQ_HANDLED;
559}
560
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800561/**
562 * phy_enable_interrupts - Enable the interrupts from the PHY side
563 * @phydev: target phy_device struct
564 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000565static int phy_enable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400566{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300567 int err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400568
Andy Fleminge1393452005-08-24 18:46:21 -0500569 if (err < 0)
570 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400571
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300572 return phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400573}
Andy Fleming00db8182005-07-30 19:31:23 -0400574
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800575/**
576 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
577 * @phydev: target phy_device struct
578 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000579static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400580{
581 int err;
582
583 /* Disable PHY interrupts */
584 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400585 if (err)
586 goto phy_err;
587
588 /* Clear the interrupt */
589 err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400590 if (err)
591 goto phy_err;
592
593 return 0;
594
595phy_err:
596 phy_error(phydev);
597
598 return err;
599}
Andy Fleminge1393452005-08-24 18:46:21 -0500600
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800601/**
602 * phy_start_interrupts - request and enable interrupts for a PHY device
603 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500604 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800605 * Description: Request the interrupt for the given PHY.
606 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500607 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500608 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800609 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500610 */
611int phy_start_interrupts(struct phy_device *phydev)
612{
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700613 atomic_set(&phydev->irq_disable, 0);
Sergei Shtylyov33c133c2013-12-20 22:09:04 +0300614 if (request_irq(phydev->irq, phy_interrupt, 0, "phy_interrupt",
615 phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000616 pr_warn("%s: Can't get IRQ %d (PHY)\n",
617 phydev->bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500618 phydev->irq = PHY_POLL;
619 return 0;
620 }
621
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300622 return phy_enable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500623}
624EXPORT_SYMBOL(phy_start_interrupts);
625
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800626/**
627 * phy_stop_interrupts - disable interrupts from a PHY device
628 * @phydev: target phy_device struct
629 */
Andy Fleminge1393452005-08-24 18:46:21 -0500630int phy_stop_interrupts(struct phy_device *phydev)
631{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300632 int err = phy_disable_interrupts(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -0500633
634 if (err)
635 phy_error(phydev);
636
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700637 free_irq(phydev->irq, phydev);
638
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300639 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700640 * of rtnl_lock(), but we do not really care about what would
641 * be done, except from enable_irq(), so cancel any work
642 * possibly pending and take care of the matter below.
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100643 */
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700644 cancel_work_sync(&phydev->phy_queue);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300645 /* If work indeed has been cancelled, disable_irq() will have
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700646 * been left unbalanced from phy_interrupt() and enable_irq()
647 * has to be called so that other devices on the line work.
648 */
649 while (atomic_dec_return(&phydev->irq_disable) >= 0)
650 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500651
652 return err;
653}
654EXPORT_SYMBOL(phy_stop_interrupts);
655
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800656/**
657 * phy_change - Scheduled by the phy_interrupt/timer to handle PHY changes
658 * @work: work_struct that describes the work to be done
659 */
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000660void phy_change(struct work_struct *work)
Andy Fleminge1393452005-08-24 18:46:21 -0500661{
David Howellsc4028952006-11-22 14:57:56 +0000662 struct phy_device *phydev =
663 container_of(work, struct phy_device, phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500664
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000665 if (phydev->drv->did_interrupt &&
666 !phydev->drv->did_interrupt(phydev))
667 goto ignore;
668
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300669 if (phy_disable_interrupts(phydev))
Andy Fleminge1393452005-08-24 18:46:21 -0500670 goto phy_err;
671
Nate Case35b5f6b2008-01-29 10:05:09 -0600672 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500673 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
674 phydev->state = PHY_CHANGELINK;
Nate Case35b5f6b2008-01-29 10:05:09 -0600675 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500676
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700677 atomic_dec(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500678 enable_irq(phydev->irq);
679
680 /* Reenable interrupts */
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300681 if (PHY_HALTED != phydev->state &&
682 phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED))
Andy Fleminge1393452005-08-24 18:46:21 -0500683 goto irq_enable_err;
684
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700685 /* reschedule state queue work to run as soon as possible */
686 cancel_delayed_work_sync(&phydev->state_queue);
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530687 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
Andy Fleminge1393452005-08-24 18:46:21 -0500688 return;
689
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000690ignore:
691 atomic_dec(&phydev->irq_disable);
692 enable_irq(phydev->irq);
693 return;
694
Andy Fleminge1393452005-08-24 18:46:21 -0500695irq_enable_err:
696 disable_irq(phydev->irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700697 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500698phy_err:
699 phy_error(phydev);
700}
701
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800702/**
703 * phy_stop - Bring down the PHY link, and stop checking the status
704 * @phydev: target phy_device struct
705 */
Andy Fleminge1393452005-08-24 18:46:21 -0500706void phy_stop(struct phy_device *phydev)
707{
Nate Case35b5f6b2008-01-29 10:05:09 -0600708 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500709
710 if (PHY_HALTED == phydev->state)
711 goto out_unlock;
712
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000713 if (phy_interrupt_is_valid(phydev)) {
Andy Fleminge1393452005-08-24 18:46:21 -0500714 /* Disable PHY Interrupts */
715 phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500716
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100717 /* Clear any pending interrupts */
718 phy_clear_interrupt(phydev);
719 }
Andy Fleminge1393452005-08-24 18:46:21 -0500720
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700721 phydev->state = PHY_HALTED;
722
Andy Fleminge1393452005-08-24 18:46:21 -0500723out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600724 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100725
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300726 /* Cannot call flush_scheduled_work() here as desired because
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100727 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
728 * will not reenable interrupts.
729 */
Andy Fleminge1393452005-08-24 18:46:21 -0500730}
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300731EXPORT_SYMBOL(phy_stop);
Andy Fleminge1393452005-08-24 18:46:21 -0500732
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800733/**
734 * phy_start - start or restart a PHY device
735 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500736 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800737 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500738 * handle PHY-related work. Used during startup to start the
739 * PHY, and after a call to phy_stop() to resume operation.
740 * Also used to indicate the MDIO bus has cleared an error
741 * condition.
742 */
743void phy_start(struct phy_device *phydev)
744{
Nate Case35b5f6b2008-01-29 10:05:09 -0600745 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500746
747 switch (phydev->state) {
Florian Fainellie1093742013-12-17 21:38:12 -0800748 case PHY_STARTING:
749 phydev->state = PHY_PENDING;
750 break;
751 case PHY_READY:
752 phydev->state = PHY_UP;
753 break;
754 case PHY_HALTED:
755 phydev->state = PHY_RESUMING;
756 default:
757 break;
Andy Fleminge1393452005-08-24 18:46:21 -0500758 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600759 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500760}
Andy Fleminge1393452005-08-24 18:46:21 -0500761EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400762
Nate Case35b5f6b2008-01-29 10:05:09 -0600763/**
764 * phy_state_machine - Handle the state machine
765 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600766 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000767void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400768{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700769 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600770 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700771 container_of(dwork, struct phy_device, state_queue);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800772 bool needs_aneg = false, do_suspend = false, do_resume = false;
Andy Fleming00db8182005-07-30 19:31:23 -0400773 int err = 0;
774
Nate Case35b5f6b2008-01-29 10:05:09 -0600775 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400776
Daniel Mack2b8f2a22014-06-18 11:01:41 +0200777 if (phydev->drv->link_change_notify)
778 phydev->drv->link_change_notify(phydev);
779
Florian Fainellie1093742013-12-17 21:38:12 -0800780 switch (phydev->state) {
781 case PHY_DOWN:
782 case PHY_STARTING:
783 case PHY_READY:
784 case PHY_PENDING:
785 break;
786 case PHY_UP:
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800787 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800788
789 phydev->link_timeout = PHY_AN_TIMEOUT;
790
791 break;
792 case PHY_AN:
793 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800794 if (err < 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400795 break;
Florian Fainellie1093742013-12-17 21:38:12 -0800796
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300797 /* If the link is down, give up on negotiation for now */
Florian Fainellie1093742013-12-17 21:38:12 -0800798 if (!phydev->link) {
799 phydev->state = PHY_NOLINK;
800 netif_carrier_off(phydev->attached_dev);
801 phydev->adjust_link(phydev->attached_dev);
802 break;
803 }
804
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300805 /* Check if negotiation is done. Break if there's an error */
Florian Fainellie1093742013-12-17 21:38:12 -0800806 err = phy_aneg_done(phydev);
807 if (err < 0)
808 break;
809
810 /* If AN is done, we're running */
811 if (err > 0) {
812 phydev->state = PHY_RUNNING;
813 netif_carrier_on(phydev->attached_dev);
814 phydev->adjust_link(phydev->attached_dev);
815
Balakumaran Kannanfa8cdda2014-04-09 09:03:45 +0530816 } else if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800817 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800818 break;
819 case PHY_NOLINK:
820 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800821 if (err)
Andy Fleming00db8182005-07-30 19:31:23 -0400822 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500823
Florian Fainellie1093742013-12-17 21:38:12 -0800824 if (phydev->link) {
Balakumaran Kannane46e08b2014-04-24 08:22:47 +0530825 if (AUTONEG_ENABLE == phydev->autoneg) {
826 err = phy_aneg_done(phydev);
827 if (err < 0)
828 break;
829
830 if (!err) {
831 phydev->state = PHY_AN;
832 phydev->link_timeout = PHY_AN_TIMEOUT;
833 break;
834 }
835 }
Florian Fainellie1093742013-12-17 21:38:12 -0800836 phydev->state = PHY_RUNNING;
837 netif_carrier_on(phydev->attached_dev);
838 phydev->adjust_link(phydev->attached_dev);
839 }
840 break;
841 case PHY_FORCING:
842 err = genphy_update_link(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800843 if (err)
844 break;
Andy Fleming6b655522006-10-16 16:19:17 -0500845
Florian Fainellie1093742013-12-17 21:38:12 -0800846 if (phydev->link) {
847 phydev->state = PHY_RUNNING;
848 netif_carrier_on(phydev->attached_dev);
849 } else {
850 if (0 == phydev->link_timeout--)
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800851 needs_aneg = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800852 }
853
854 phydev->adjust_link(phydev->attached_dev);
855 break;
856 case PHY_RUNNING:
857 /* Only register a CHANGE if we are
858 * polling or ignoring interrupts
859 */
860 if (!phy_interrupt_is_valid(phydev))
861 phydev->state = PHY_CHANGELINK;
862 break;
863 case PHY_CHANGELINK:
864 err = phy_read_status(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800865 if (err)
866 break;
867
868 if (phydev->link) {
869 phydev->state = PHY_RUNNING;
870 netif_carrier_on(phydev->attached_dev);
871 } else {
872 phydev->state = PHY_NOLINK;
873 netif_carrier_off(phydev->attached_dev);
874 }
875
876 phydev->adjust_link(phydev->attached_dev);
877
878 if (phy_interrupt_is_valid(phydev))
879 err = phy_config_interrupt(phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300880 PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -0800881 break;
882 case PHY_HALTED:
883 if (phydev->link) {
884 phydev->link = 0;
885 netif_carrier_off(phydev->attached_dev);
886 phydev->adjust_link(phydev->attached_dev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800887 do_suspend = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800888 }
889 break;
890 case PHY_RESUMING:
Florian Fainellie1093742013-12-17 21:38:12 -0800891 err = phy_clear_interrupt(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800892 if (err)
893 break;
894
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300895 err = phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Florian Fainellie1093742013-12-17 21:38:12 -0800896 if (err)
897 break;
898
899 if (AUTONEG_ENABLE == phydev->autoneg) {
Andy Fleming00db8182005-07-30 19:31:23 -0400900 err = phy_aneg_done(phydev);
901 if (err < 0)
902 break;
903
Florian Fainellie1093742013-12-17 21:38:12 -0800904 /* err > 0 if AN is done.
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300905 * Otherwise, it's 0, and we're still waiting for AN
906 */
Andy Fleming00db8182005-07-30 19:31:23 -0400907 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000908 err = phy_read_status(phydev);
909 if (err)
910 break;
911
912 if (phydev->link) {
913 phydev->state = PHY_RUNNING;
914 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300915 } else {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000916 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300917 }
Wade Farnsworth42caa072009-07-01 13:00:34 +0000918 phydev->adjust_link(phydev->attached_dev);
Florian Fainellie1093742013-12-17 21:38:12 -0800919 } else {
920 phydev->state = PHY_AN;
921 phydev->link_timeout = PHY_AN_TIMEOUT;
Wade Farnsworth42caa072009-07-01 13:00:34 +0000922 }
Florian Fainellie1093742013-12-17 21:38:12 -0800923 } else {
924 err = phy_read_status(phydev);
925 if (err)
926 break;
927
928 if (phydev->link) {
929 phydev->state = PHY_RUNNING;
930 netif_carrier_on(phydev->attached_dev);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300931 } else {
Florian Fainellie1093742013-12-17 21:38:12 -0800932 phydev->state = PHY_NOLINK;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300933 }
Florian Fainellie1093742013-12-17 21:38:12 -0800934 phydev->adjust_link(phydev->attached_dev);
935 }
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800936 do_resume = true;
Florian Fainellie1093742013-12-17 21:38:12 -0800937 break;
Andy Fleming00db8182005-07-30 19:31:23 -0400938 }
939
Nate Case35b5f6b2008-01-29 10:05:09 -0600940 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400941
942 if (needs_aneg)
943 err = phy_start_aneg(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800944 else if (do_suspend)
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +0100945 phy_suspend(phydev);
Zhangfei Gao6e14a5ee2014-05-15 13:35:34 +0800946 else if (do_resume)
947 phy_resume(phydev);
Sebastian Hesselbarthbe9dad12013-12-13 10:20:29 +0100948
Andy Fleming00db8182005-07-30 19:31:23 -0400949 if (err < 0)
950 phy_error(phydev);
951
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530952 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300953 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -0600954}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000955
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000956void phy_mac_interrupt(struct phy_device *phydev, int new_link)
957{
958 cancel_work_sync(&phydev->phy_queue);
959 phydev->link = new_link;
960 schedule_work(&phydev->phy_queue);
961}
962EXPORT_SYMBOL(phy_mac_interrupt);
963
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000964static inline void mmd_phy_indirect(struct mii_bus *bus, int prtad, int devad,
965 int addr)
966{
967 /* Write the desired MMD Devad */
968 bus->write(bus, addr, MII_MMD_CTRL, devad);
969
970 /* Write the desired MMD register address */
971 bus->write(bus, addr, MII_MMD_DATA, prtad);
972
973 /* Select the Function : DATA with no post increment */
974 bus->write(bus, addr, MII_MMD_CTRL, (devad | MII_MMD_CTRL_NOINCR));
975}
976
977/**
978 * phy_read_mmd_indirect - reads data from the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500979 * @phydev: The PHY device bus
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000980 * @prtad: MMD Address
981 * @devad: MMD DEVAD
982 * @addr: PHY address on the MII bus
983 *
984 * Description: it reads data from the MMD registers (clause 22 to access to
985 * clause 45) of the specified phy address.
986 * To read these register we have:
987 * 1) Write reg 13 // DEVAD
988 * 2) Write reg 14 // MMD Address
989 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
990 * 3) Read reg 14 // Read MMD data
991 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -0700992int phy_read_mmd_indirect(struct phy_device *phydev, int prtad,
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500993 int devad, int addr)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000994{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500995 struct phy_driver *phydrv = phydev->drv;
996 int value = -1;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000997
Vince Bridgers0c1d77d2014-07-29 15:19:57 -0500998 if (phydrv->read_mmd_indirect == NULL) {
999 mmd_phy_indirect(phydev->bus, prtad, devad, addr);
1000
1001 /* Read the content of the MMD's selected register */
1002 value = phydev->bus->read(phydev->bus, addr, MII_MMD_DATA);
1003 } else {
1004 value = phydrv->read_mmd_indirect(phydev, prtad, devad, addr);
1005 }
1006 return value;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001007}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001008EXPORT_SYMBOL(phy_read_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001009
1010/**
1011 * phy_write_mmd_indirect - writes data to the MMD registers
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001012 * @phydev: The PHY device
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001013 * @prtad: MMD Address
1014 * @devad: MMD DEVAD
1015 * @addr: PHY address on the MII bus
1016 * @data: data to write in the MMD register
1017 *
1018 * Description: Write data from the MMD registers of the specified
1019 * phy address.
1020 * To write these register we have:
1021 * 1) Write reg 13 // DEVAD
1022 * 2) Write reg 14 // MMD Address
1023 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
1024 * 3) Write reg 14 // Write MMD data
1025 */
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001026void phy_write_mmd_indirect(struct phy_device *phydev, int prtad,
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001027 int devad, int addr, u32 data)
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001028{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001029 struct phy_driver *phydrv = phydev->drv;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001030
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001031 if (phydrv->write_mmd_indirect == NULL) {
1032 mmd_phy_indirect(phydev->bus, prtad, devad, addr);
1033
1034 /* Write the data into MMD's selected register */
1035 phydev->bus->write(phydev->bus, addr, MII_MMD_DATA, data);
1036 } else {
1037 phydrv->write_mmd_indirect(phydev, prtad, devad, addr, data);
1038 }
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001039}
Florian Fainelli66ce7fb2014-08-22 18:55:43 -07001040EXPORT_SYMBOL(phy_write_mmd_indirect);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001041
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001042/**
1043 * phy_init_eee - init and check the EEE feature
1044 * @phydev: target phy_device struct
1045 * @clk_stop_enable: PHY may stop the clock during LPI
1046 *
1047 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1048 * is supported by looking at the MMD registers 3.20 and 7.60/61
1049 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1050 * bit if required.
1051 */
1052int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1053{
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001054 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1055 * Also EEE feature is active when core is operating with MII, GMII
Florian Fainellia9f63092014-08-22 18:55:44 -07001056 * or RGMII. Internal PHYs are also allowed to proceed and should
1057 * return an error if they do not support EEE.
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001058 */
1059 if ((phydev->duplex == DUPLEX_FULL) &&
1060 ((phydev->interface == PHY_INTERFACE_MODE_MII) ||
1061 (phydev->interface == PHY_INTERFACE_MODE_GMII) ||
Florian Fainellia9f63092014-08-22 18:55:44 -07001062 (phydev->interface == PHY_INTERFACE_MODE_RGMII) ||
1063 phy_is_internal(phydev))) {
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001064 int eee_lp, eee_cap, eee_adv;
1065 u32 lp, cap, adv;
Bjorn Helgaas4ae6e502014-03-04 17:35:44 -07001066 int status;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001067
1068 /* Read phy status to properly get the right settings */
1069 status = phy_read_status(phydev);
1070 if (status)
1071 return status;
1072
1073 /* First check if the EEE ability is supported */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001074 eee_cap = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001075 MDIO_MMD_PCS, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001076 if (eee_cap <= 0)
1077 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001078
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001079 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001080 if (!cap)
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001081 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001082
1083 /* Check which link settings negotiated and verify it in
1084 * the EEE advertising registers.
1085 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001086 eee_lp = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001087 MDIO_MMD_AN, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001088 if (eee_lp <= 0)
1089 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001090
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001091 eee_adv = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001092 MDIO_MMD_AN, phydev->addr);
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001093 if (eee_adv <= 0)
1094 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001095
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001096 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1097 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Guenter Roeck54da5a82015-02-17 09:36:22 -08001098 if (!phy_check_valid(phydev->speed, phydev->duplex, lp & adv))
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001099 goto eee_exit_err;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001100
1101 if (clk_stop_enable) {
1102 /* Configure the PHY to stop receiving xMII
1103 * clock while it is signaling LPI.
1104 */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001105 int val = phy_read_mmd_indirect(phydev, MDIO_CTRL1,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001106 MDIO_MMD_PCS,
1107 phydev->addr);
1108 if (val < 0)
1109 return val;
1110
1111 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001112 phy_write_mmd_indirect(phydev, MDIO_CTRL1,
1113 MDIO_MMD_PCS, phydev->addr,
1114 val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001115 }
1116
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001117 return 0; /* EEE supported */
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001118 }
Giuseppe CAVALLARO7a4cecf2014-08-26 09:26:52 +02001119eee_exit_err:
Sergei Shtylyove62a7682014-01-05 03:21:52 +03001120 return -EPROTONOSUPPORT;
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001121}
1122EXPORT_SYMBOL(phy_init_eee);
1123
1124/**
1125 * phy_get_eee_err - report the EEE wake error count
1126 * @phydev: target phy_device struct
1127 *
1128 * Description: it is to report the number of time where the PHY
1129 * failed to complete its normal wake sequence.
1130 */
1131int phy_get_eee_err(struct phy_device *phydev)
1132{
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001133 return phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_WK_ERR,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001134 MDIO_MMD_PCS, phydev->addr);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001135}
1136EXPORT_SYMBOL(phy_get_eee_err);
1137
1138/**
1139 * phy_ethtool_get_eee - get EEE supported and status
1140 * @phydev: target phy_device struct
1141 * @data: ethtool_eee data
1142 *
1143 * Description: it reportes the Supported/Advertisement/LP Advertisement
1144 * capabilities.
1145 */
1146int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1147{
1148 int val;
1149
1150 /* Get Supported EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001151 val = phy_read_mmd_indirect(phydev, MDIO_PCS_EEE_ABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001152 MDIO_MMD_PCS, phydev->addr);
1153 if (val < 0)
1154 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001155 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001156
1157 /* Get advertisement EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001158 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_ADV,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001159 MDIO_MMD_AN, phydev->addr);
1160 if (val < 0)
1161 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001162 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001163
1164 /* Get LP advertisement EEE */
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001165 val = phy_read_mmd_indirect(phydev, MDIO_AN_EEE_LPABLE,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001166 MDIO_MMD_AN, phydev->addr);
1167 if (val < 0)
1168 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001169 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001170
1171 return 0;
1172}
1173EXPORT_SYMBOL(phy_ethtool_get_eee);
1174
1175/**
1176 * phy_ethtool_set_eee - set EEE supported and status
1177 * @phydev: target phy_device struct
1178 * @data: ethtool_eee data
1179 *
1180 * Description: it is to program the Advertisement EEE register.
1181 */
1182int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1183{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03001184 int val = ethtool_adv_to_mmd_eee_adv_t(data->advertised);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001185
Vince Bridgers0c1d77d2014-07-29 15:19:57 -05001186 phy_write_mmd_indirect(phydev, MDIO_AN_EEE_ADV, MDIO_MMD_AN,
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001187 phydev->addr, val);
1188
1189 return 0;
1190}
1191EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001192
1193int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1194{
1195 if (phydev->drv->set_wol)
1196 return phydev->drv->set_wol(phydev, wol);
1197
1198 return -EOPNOTSUPP;
1199}
1200EXPORT_SYMBOL(phy_ethtool_set_wol);
1201
1202void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1203{
1204 if (phydev->drv->get_wol)
1205 phydev->drv->get_wol(phydev, wol);
1206}
1207EXPORT_SYMBOL(phy_ethtool_get_wol);