blob: 98434b84f0415ef2bfd635ba9dc4bc2f7a9ea762 [file] [log] [blame]
Andy Fleming00db8182005-07-30 19:31:23 -04001/*
2 * drivers/net/phy/phy.c
3 *
4 * Framework for configuring and reading PHY devices
5 * Based on code in sungem_phy.c and gianfar_phy.c
6 *
7 * Author: Andy Fleming
8 *
9 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -070010 * Copyright (c) 2006, 2007 Maciej W. Rozycki
Andy Fleming00db8182005-07-30 19:31:23 -040011 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 *
17 */
Joe Perches8d242482012-06-09 07:49:07 +000018
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
Andy Fleming00db8182005-07-30 19:31:23 -040021#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040022#include <linux/string.h>
23#include <linux/errno.h>
24#include <linux/unistd.h>
Andy Fleming00db8182005-07-30 19:31:23 -040025#include <linux/interrupt.h>
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/netdevice.h>
29#include <linux/etherdevice.h>
30#include <linux/skbuff.h>
Andy Fleming00db8182005-07-30 19:31:23 -040031#include <linux/mm.h>
32#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040033#include <linux/mii.h>
34#include <linux/ethtool.h>
35#include <linux/phy.h>
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +010036#include <linux/timer.h>
37#include <linux/workqueue.h>
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +000038#include <linux/mdio.h>
Andy Fleming00db8182005-07-30 19:31:23 -040039
Arun Sharma600634972011-07-26 16:09:06 -070040#include <linux/atomic.h>
Andy Fleming00db8182005-07-30 19:31:23 -040041#include <asm/io.h>
42#include <asm/irq.h>
43#include <asm/uaccess.h>
44
Randy Dunlapb3df0da2007-03-06 02:41:48 -080045/**
46 * phy_print_status - Convenience function to print out the current phy status
47 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -050048 */
49void phy_print_status(struct phy_device *phydev)
50{
Andy Fleminge1393452005-08-24 18:46:21 -050051 if (phydev->link)
Joe Perches8d242482012-06-09 07:49:07 +000052 pr_info("%s - Link is Up - %d/%s\n",
53 dev_name(&phydev->dev),
54 phydev->speed,
55 DUPLEX_FULL == phydev->duplex ? "Full" : "Half");
56 else
57 pr_info("%s - Link is Down\n", dev_name(&phydev->dev));
Andy Fleminge1393452005-08-24 18:46:21 -050058}
59EXPORT_SYMBOL(phy_print_status);
Andy Fleming00db8182005-07-30 19:31:23 -040060
Randy Dunlapb3df0da2007-03-06 02:41:48 -080061/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -080062 * phy_clear_interrupt - Ack the phy device's interrupt
63 * @phydev: the phy_device struct
64 *
65 * If the @phydev driver has an ack_interrupt function, call it to
66 * ack and clear the phy device's interrupt.
67 *
68 * Returns 0 on success on < 0 on error.
69 */
stephen hemminger89ff05e2010-10-21 08:37:41 +000070static int phy_clear_interrupt(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -040071{
72 int err = 0;
73
74 if (phydev->drv->ack_interrupt)
75 err = phydev->drv->ack_interrupt(phydev);
76
77 return err;
78}
79
Randy Dunlapb3df0da2007-03-06 02:41:48 -080080/**
81 * phy_config_interrupt - configure the PHY device for the requested interrupts
82 * @phydev: the phy_device struct
83 * @interrupts: interrupt flags to configure for this @phydev
84 *
85 * Returns 0 on success on < 0 on error.
86 */
stephen hemminger89ff05e2010-10-21 08:37:41 +000087static int phy_config_interrupt(struct phy_device *phydev, u32 interrupts)
Andy Fleming00db8182005-07-30 19:31:23 -040088{
89 int err = 0;
90
91 phydev->interrupts = interrupts;
92 if (phydev->drv->config_intr)
93 err = phydev->drv->config_intr(phydev);
94
95 return err;
96}
97
98
Randy Dunlapb3df0da2007-03-06 02:41:48 -080099/**
100 * phy_aneg_done - return auto-negotiation status
101 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400102 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800103 * Description: Reads the status register and returns 0 either if
Andy Fleming00db8182005-07-30 19:31:23 -0400104 * auto-negotiation is incomplete, or if there was an error.
105 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
106 */
107static inline int phy_aneg_done(struct phy_device *phydev)
108{
109 int retval;
110
111 retval = phy_read(phydev, MII_BMSR);
112
113 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
114}
115
Andy Fleming00db8182005-07-30 19:31:23 -0400116/* A structure for mapping a particular speed and duplex
117 * combination to a particular SUPPORTED and ADVERTISED value */
118struct phy_setting {
119 int speed;
120 int duplex;
121 u32 setting;
122};
123
124/* A mapping of all SUPPORTED settings to speed/duplex */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500125static const struct phy_setting settings[] = {
Andy Fleming00db8182005-07-30 19:31:23 -0400126 {
127 .speed = 10000,
128 .duplex = DUPLEX_FULL,
129 .setting = SUPPORTED_10000baseT_Full,
130 },
131 {
132 .speed = SPEED_1000,
133 .duplex = DUPLEX_FULL,
134 .setting = SUPPORTED_1000baseT_Full,
135 },
136 {
137 .speed = SPEED_1000,
138 .duplex = DUPLEX_HALF,
139 .setting = SUPPORTED_1000baseT_Half,
140 },
141 {
142 .speed = SPEED_100,
143 .duplex = DUPLEX_FULL,
144 .setting = SUPPORTED_100baseT_Full,
145 },
146 {
147 .speed = SPEED_100,
148 .duplex = DUPLEX_HALF,
149 .setting = SUPPORTED_100baseT_Half,
150 },
151 {
152 .speed = SPEED_10,
153 .duplex = DUPLEX_FULL,
154 .setting = SUPPORTED_10baseT_Full,
155 },
156 {
157 .speed = SPEED_10,
158 .duplex = DUPLEX_HALF,
159 .setting = SUPPORTED_10baseT_Half,
160 },
161};
162
Denis Chengff8ac602007-09-02 18:30:18 +0800163#define MAX_NUM_SETTINGS ARRAY_SIZE(settings)
Andy Fleming00db8182005-07-30 19:31:23 -0400164
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800165/**
166 * phy_find_setting - find a PHY settings array entry that matches speed & duplex
167 * @speed: speed to match
168 * @duplex: duplex to match
Andy Fleming00db8182005-07-30 19:31:23 -0400169 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800170 * Description: Searches the settings array for the setting which
Andy Fleming00db8182005-07-30 19:31:23 -0400171 * matches the desired speed and duplex, and returns the index
172 * of that setting. Returns the index of the last setting if
173 * none of the others match.
174 */
175static inline int phy_find_setting(int speed, int duplex)
176{
177 int idx = 0;
178
179 while (idx < ARRAY_SIZE(settings) &&
180 (settings[idx].speed != speed ||
181 settings[idx].duplex != duplex))
182 idx++;
183
184 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
185}
186
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800187/**
188 * phy_find_valid - find a PHY setting that matches the requested features mask
189 * @idx: The first index in settings[] to search
190 * @features: A mask of the valid settings
Andy Fleming00db8182005-07-30 19:31:23 -0400191 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800192 * Description: Returns the index of the first valid setting less
Andy Fleming00db8182005-07-30 19:31:23 -0400193 * than or equal to the one pointed to by idx, as determined by
194 * the mask in features. Returns the index of the last setting
195 * if nothing else matches.
196 */
197static inline int phy_find_valid(int idx, u32 features)
198{
199 while (idx < MAX_NUM_SETTINGS && !(settings[idx].setting & features))
200 idx++;
201
202 return idx < MAX_NUM_SETTINGS ? idx : MAX_NUM_SETTINGS - 1;
203}
204
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800205/**
206 * phy_sanitize_settings - make sure the PHY is set to supported speed and duplex
207 * @phydev: the target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400208 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800209 * Description: Make sure the PHY is set to supported speeds and
Andy Fleming00db8182005-07-30 19:31:23 -0400210 * duplexes. Drop down by one in this order: 1000/FULL,
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800211 * 1000/HALF, 100/FULL, 100/HALF, 10/FULL, 10/HALF.
Andy Fleming00db8182005-07-30 19:31:23 -0400212 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000213static void phy_sanitize_settings(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400214{
215 u32 features = phydev->supported;
216 int idx;
217
218 /* Sanitize settings based on PHY capabilities */
219 if ((features & SUPPORTED_Autoneg) == 0)
Domen Puncer163642a2007-08-07 12:12:41 +0200220 phydev->autoneg = AUTONEG_DISABLE;
Andy Fleming00db8182005-07-30 19:31:23 -0400221
222 idx = phy_find_valid(phy_find_setting(phydev->speed, phydev->duplex),
223 features);
224
225 phydev->speed = settings[idx].speed;
226 phydev->duplex = settings[idx].duplex;
227}
Andy Fleming00db8182005-07-30 19:31:23 -0400228
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800229/**
230 * phy_ethtool_sset - generic ethtool sset function, handles all the details
231 * @phydev: target phy_device struct
232 * @cmd: ethtool_cmd
Andy Fleming00db8182005-07-30 19:31:23 -0400233 *
234 * A few notes about parameter checking:
235 * - We don't set port or transceiver, so we don't care what they
236 * were set to.
237 * - phy_start_aneg() will make sure forced settings are sane, and
238 * choose the next best ones from the ones selected, so we don't
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800239 * care if ethtool tries to give us bad values.
Andy Fleming00db8182005-07-30 19:31:23 -0400240 */
241int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd)
242{
David Decotigny25db0332011-04-27 18:32:39 +0000243 u32 speed = ethtool_cmd_speed(cmd);
244
Andy Fleming00db8182005-07-30 19:31:23 -0400245 if (cmd->phy_address != phydev->addr)
246 return -EINVAL;
247
248 /* We make sure that we don't pass unsupported
249 * values in to the PHY */
250 cmd->advertising &= phydev->supported;
251
252 /* Verify the settings we care about. */
253 if (cmd->autoneg != AUTONEG_ENABLE && cmd->autoneg != AUTONEG_DISABLE)
254 return -EINVAL;
255
256 if (cmd->autoneg == AUTONEG_ENABLE && cmd->advertising == 0)
257 return -EINVAL;
258
Joe Perches8e95a202009-12-03 07:58:21 +0000259 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +0000260 ((speed != SPEED_1000 &&
261 speed != SPEED_100 &&
262 speed != SPEED_10) ||
Joe Perches8e95a202009-12-03 07:58:21 +0000263 (cmd->duplex != DUPLEX_HALF &&
264 cmd->duplex != DUPLEX_FULL)))
Andy Fleming00db8182005-07-30 19:31:23 -0400265 return -EINVAL;
266
267 phydev->autoneg = cmd->autoneg;
268
David Decotigny25db0332011-04-27 18:32:39 +0000269 phydev->speed = speed;
Andy Fleming00db8182005-07-30 19:31:23 -0400270
271 phydev->advertising = cmd->advertising;
272
273 if (AUTONEG_ENABLE == cmd->autoneg)
274 phydev->advertising |= ADVERTISED_Autoneg;
275 else
276 phydev->advertising &= ~ADVERTISED_Autoneg;
277
278 phydev->duplex = cmd->duplex;
279
280 /* Restart the PHY */
281 phy_start_aneg(phydev);
282
283 return 0;
284}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600285EXPORT_SYMBOL(phy_ethtool_sset);
Andy Fleming00db8182005-07-30 19:31:23 -0400286
287int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd)
288{
289 cmd->supported = phydev->supported;
290
291 cmd->advertising = phydev->advertising;
292
David Decotigny70739492011-04-27 18:32:40 +0000293 ethtool_cmd_speed_set(cmd, phydev->speed);
Andy Fleming00db8182005-07-30 19:31:23 -0400294 cmd->duplex = phydev->duplex;
295 cmd->port = PORT_MII;
296 cmd->phy_address = phydev->addr;
Florian Fainelli4284b6a2013-05-23 01:11:12 +0000297 cmd->transceiver = phy_is_internal(phydev) ?
298 XCVR_INTERNAL : XCVR_EXTERNAL;
Andy Fleming00db8182005-07-30 19:31:23 -0400299 cmd->autoneg = phydev->autoneg;
300
301 return 0;
302}
Kumar Gala9f6d55d2007-01-20 16:38:26 -0600303EXPORT_SYMBOL(phy_ethtool_gset);
Andy Fleming00db8182005-07-30 19:31:23 -0400304
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800305/**
306 * phy_mii_ioctl - generic PHY MII ioctl interface
307 * @phydev: the phy_device struct
Randy Dunlap00c7d922010-08-09 13:41:59 +0000308 * @ifr: &struct ifreq for socket ioctl's
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800309 * @cmd: ioctl cmd to execute
310 *
311 * Note that this function is currently incompatible with the
Andy Fleming00db8182005-07-30 19:31:23 -0400312 * PHYCONTROL layer. It changes registers without regard to
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800313 * current state. Use at own risk.
Andy Fleming00db8182005-07-30 19:31:23 -0400314 */
315int phy_mii_ioctl(struct phy_device *phydev,
Richard Cochran28b04112010-07-17 08:48:55 +0000316 struct ifreq *ifr, int cmd)
Andy Fleming00db8182005-07-30 19:31:23 -0400317{
Richard Cochran28b04112010-07-17 08:48:55 +0000318 struct mii_ioctl_data *mii_data = if_mii(ifr);
Andy Fleming00db8182005-07-30 19:31:23 -0400319 u16 val = mii_data->val_in;
320
321 switch (cmd) {
322 case SIOCGMIIPHY:
323 mii_data->phy_id = phydev->addr;
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000324 /* fall through */
325
Andy Fleming00db8182005-07-30 19:31:23 -0400326 case SIOCGMIIREG:
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000327 mii_data->val_out = mdiobus_read(phydev->bus, mii_data->phy_id,
328 mii_data->reg_num);
Andy Fleming00db8182005-07-30 19:31:23 -0400329 break;
330
331 case SIOCSMIIREG:
Andy Fleming00db8182005-07-30 19:31:23 -0400332 if (mii_data->phy_id == phydev->addr) {
333 switch(mii_data->reg_num) {
334 case MII_BMCR:
Domen Puncer163642a2007-08-07 12:12:41 +0200335 if ((val & (BMCR_RESET|BMCR_ANENABLE)) == 0)
Andy Fleming00db8182005-07-30 19:31:23 -0400336 phydev->autoneg = AUTONEG_DISABLE;
337 else
338 phydev->autoneg = AUTONEG_ENABLE;
339 if ((!phydev->autoneg) && (val & BMCR_FULLDPLX))
340 phydev->duplex = DUPLEX_FULL;
341 else
342 phydev->duplex = DUPLEX_HALF;
Shan Lu024a0a32007-03-06 02:42:03 -0800343 if ((!phydev->autoneg) &&
344 (val & BMCR_SPEED1000))
345 phydev->speed = SPEED_1000;
346 else if ((!phydev->autoneg) &&
347 (val & BMCR_SPEED100))
348 phydev->speed = SPEED_100;
Andy Fleming00db8182005-07-30 19:31:23 -0400349 break;
350 case MII_ADVERTISE:
351 phydev->advertising = val;
352 break;
353 default:
354 /* do nothing */
355 break;
356 }
357 }
358
Peter Korsgaardaf1dc132011-03-10 06:52:13 +0000359 mdiobus_write(phydev->bus, mii_data->phy_id,
360 mii_data->reg_num, val);
361
Joe Perches8e95a202009-12-03 07:58:21 +0000362 if (mii_data->reg_num == MII_BMCR &&
363 val & BMCR_RESET &&
364 phydev->drv->config_init) {
Andy Flemingf62220d2008-04-18 17:29:54 -0500365 phy_scan_fixups(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400366 phydev->drv->config_init(phydev);
Andy Flemingf62220d2008-04-18 17:29:54 -0500367 }
Andy Fleming00db8182005-07-30 19:31:23 -0400368 break;
David Woodhousedda93b482007-11-28 19:56:34 +0000369
Richard Cochranc1f19b52010-07-17 08:49:36 +0000370 case SIOCSHWTSTAMP:
371 if (phydev->drv->hwtstamp)
372 return phydev->drv->hwtstamp(phydev, ifr);
373 /* fall through */
374
David Woodhousedda93b482007-11-28 19:56:34 +0000375 default:
Lennert Buytenhekc6d6a512008-09-18 03:06:52 +0000376 return -EOPNOTSUPP;
Andy Fleming00db8182005-07-30 19:31:23 -0400377 }
378
379 return 0;
380}
Domen Puncer680e9fe2007-09-17 22:21:40 +0200381EXPORT_SYMBOL(phy_mii_ioctl);
Andy Fleming00db8182005-07-30 19:31:23 -0400382
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800383/**
384 * phy_start_aneg - start auto-negotiation for this PHY device
385 * @phydev: the phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500386 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800387 * Description: Sanitizes the settings (if we're not autonegotiating
388 * them), and then calls the driver's config_aneg function.
389 * If the PHYCONTROL Layer is operating, we change the state to
390 * reflect the beginning of Auto-negotiation or forcing.
Andy Fleminge1393452005-08-24 18:46:21 -0500391 */
392int phy_start_aneg(struct phy_device *phydev)
393{
394 int err;
395
Nate Case35b5f6b2008-01-29 10:05:09 -0600396 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500397
398 if (AUTONEG_DISABLE == phydev->autoneg)
399 phy_sanitize_settings(phydev);
400
401 err = phydev->drv->config_aneg(phydev);
402
Andy Fleminge1393452005-08-24 18:46:21 -0500403 if (err < 0)
404 goto out_unlock;
405
406 if (phydev->state != PHY_HALTED) {
407 if (AUTONEG_ENABLE == phydev->autoneg) {
408 phydev->state = PHY_AN;
409 phydev->link_timeout = PHY_AN_TIMEOUT;
410 } else {
411 phydev->state = PHY_FORCING;
412 phydev->link_timeout = PHY_FORCE_TIMEOUT;
413 }
414 }
415
416out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600417 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500418 return err;
419}
420EXPORT_SYMBOL(phy_start_aneg);
421
422
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800423/**
424 * phy_start_machine - start PHY state machine tracking
425 * @phydev: the phy_device struct
426 * @handler: callback function for state change notifications
Andy Fleming00db8182005-07-30 19:31:23 -0400427 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800428 * Description: The PHY infrastructure can run a state machine
Andy Fleming00db8182005-07-30 19:31:23 -0400429 * which tracks whether the PHY is starting up, negotiating,
430 * etc. This function starts the timer which tracks the state
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800431 * of the PHY. If you want to be notified when the state changes,
432 * pass in the callback @handler, otherwise, pass NULL. If you
Andy Fleming00db8182005-07-30 19:31:23 -0400433 * want to maintain your own state machine, do not call this
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800434 * function.
435 */
Andy Fleming00db8182005-07-30 19:31:23 -0400436void phy_start_machine(struct phy_device *phydev,
437 void (*handler)(struct net_device *))
438{
439 phydev->adjust_state = handler;
440
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530441 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, HZ);
Andy Fleming00db8182005-07-30 19:31:23 -0400442}
443
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800444/**
445 * phy_stop_machine - stop the PHY state machine tracking
446 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400447 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800448 * Description: Stops the state machine timer, sets the state to UP
Sergei Shtylylov817acf52006-07-26 00:53:53 +0400449 * (unless it wasn't up yet). This function must be called BEFORE
Andy Fleming00db8182005-07-30 19:31:23 -0400450 * phy_detach.
451 */
452void phy_stop_machine(struct phy_device *phydev)
453{
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700454 cancel_delayed_work_sync(&phydev->state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400455
Nate Case35b5f6b2008-01-29 10:05:09 -0600456 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400457 if (phydev->state > PHY_UP)
458 phydev->state = PHY_UP;
Nate Case35b5f6b2008-01-29 10:05:09 -0600459 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400460
Andy Fleming00db8182005-07-30 19:31:23 -0400461 phydev->adjust_state = NULL;
462}
463
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800464/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800465 * phy_error - enter HALTED state for this PHY device
466 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -0400467 *
468 * Moves the PHY to the HALTED state in response to a read
469 * or write error, and tells the controller the link is down.
470 * Must not be called from interrupt context, or while the
471 * phydev->lock is held.
472 */
Andy Fleming9b9a8bf2008-05-02 13:00:51 -0500473static void phy_error(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400474{
Nate Case35b5f6b2008-01-29 10:05:09 -0600475 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400476 phydev->state = PHY_HALTED;
Nate Case35b5f6b2008-01-29 10:05:09 -0600477 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400478}
479
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800480/**
481 * phy_interrupt - PHY interrupt handler
482 * @irq: interrupt line
483 * @phy_dat: phy_device pointer
Andy Fleminge1393452005-08-24 18:46:21 -0500484 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800485 * Description: When a PHY interrupt occurs, the handler disables
Andy Fleminge1393452005-08-24 18:46:21 -0500486 * interrupts, and schedules a work task to clear the interrupt.
487 */
David Howells7d12e782006-10-05 14:55:46 +0100488static irqreturn_t phy_interrupt(int irq, void *phy_dat)
Andy Fleminge1393452005-08-24 18:46:21 -0500489{
490 struct phy_device *phydev = phy_dat;
491
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100492 if (PHY_HALTED == phydev->state)
493 return IRQ_NONE; /* It can't be ours. */
494
Andy Fleminge1393452005-08-24 18:46:21 -0500495 /* The MDIO bus is not allowed to be written in interrupt
496 * context, so we need to disable the irq here. A work
497 * queue will write the PHY to disable and clear the
498 * interrupt, and then reenable the irq line. */
499 disable_irq_nosync(irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700500 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500501
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530502 queue_work(system_power_efficient_wq, &phydev->phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500503
504 return IRQ_HANDLED;
505}
506
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800507/**
508 * phy_enable_interrupts - Enable the interrupts from the PHY side
509 * @phydev: target phy_device struct
510 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000511static int phy_enable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400512{
513 int err;
514
Andy Fleminge1393452005-08-24 18:46:21 -0500515 err = phy_clear_interrupt(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400516
Andy Fleminge1393452005-08-24 18:46:21 -0500517 if (err < 0)
518 return err;
Andy Fleming00db8182005-07-30 19:31:23 -0400519
Andy Fleminge1393452005-08-24 18:46:21 -0500520 err = phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleming00db8182005-07-30 19:31:23 -0400521
522 return err;
523}
Andy Fleming00db8182005-07-30 19:31:23 -0400524
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800525/**
526 * phy_disable_interrupts - Disable the PHY interrupts from the PHY side
527 * @phydev: target phy_device struct
528 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000529static int phy_disable_interrupts(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -0400530{
531 int err;
532
533 /* Disable PHY interrupts */
534 err = phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
535
536 if (err)
537 goto phy_err;
538
539 /* Clear the interrupt */
540 err = phy_clear_interrupt(phydev);
541
542 if (err)
543 goto phy_err;
544
545 return 0;
546
547phy_err:
548 phy_error(phydev);
549
550 return err;
551}
Andy Fleminge1393452005-08-24 18:46:21 -0500552
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800553/**
554 * phy_start_interrupts - request and enable interrupts for a PHY device
555 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500556 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800557 * Description: Request the interrupt for the given PHY.
558 * If this fails, then we set irq to PHY_POLL.
Andy Fleminge1393452005-08-24 18:46:21 -0500559 * Otherwise, we enable the interrupts in the PHY.
Andy Fleminge1393452005-08-24 18:46:21 -0500560 * This should only be called with a valid IRQ number.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800561 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500562 */
563int phy_start_interrupts(struct phy_device *phydev)
564{
565 int err = 0;
566
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700567 atomic_set(&phydev->irq_disable, 0);
Sergei Shtylyov33c133c2013-12-20 22:09:04 +0300568 if (request_irq(phydev->irq, phy_interrupt, 0, "phy_interrupt",
569 phydev) < 0) {
Joe Perches8d242482012-06-09 07:49:07 +0000570 pr_warn("%s: Can't get IRQ %d (PHY)\n",
571 phydev->bus->name, phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500572 phydev->irq = PHY_POLL;
573 return 0;
574 }
575
576 err = phy_enable_interrupts(phydev);
577
578 return err;
579}
580EXPORT_SYMBOL(phy_start_interrupts);
581
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800582/**
583 * phy_stop_interrupts - disable interrupts from a PHY device
584 * @phydev: target phy_device struct
585 */
Andy Fleminge1393452005-08-24 18:46:21 -0500586int phy_stop_interrupts(struct phy_device *phydev)
587{
588 int err;
589
590 err = phy_disable_interrupts(phydev);
591
592 if (err)
593 phy_error(phydev);
594
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700595 free_irq(phydev->irq, phydev);
596
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100597 /*
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700598 * Cannot call flush_scheduled_work() here as desired because
599 * of rtnl_lock(), but we do not really care about what would
600 * be done, except from enable_irq(), so cancel any work
601 * possibly pending and take care of the matter below.
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100602 */
Oleg Nesterov28e53bd2007-05-09 02:34:22 -0700603 cancel_work_sync(&phydev->phy_queue);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700604 /*
605 * If work indeed has been cancelled, disable_irq() will have
606 * been left unbalanced from phy_interrupt() and enable_irq()
607 * has to be called so that other devices on the line work.
608 */
609 while (atomic_dec_return(&phydev->irq_disable) >= 0)
610 enable_irq(phydev->irq);
Andy Fleminge1393452005-08-24 18:46:21 -0500611
612 return err;
613}
614EXPORT_SYMBOL(phy_stop_interrupts);
615
616
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800617/**
618 * phy_change - Scheduled by the phy_interrupt/timer to handle PHY changes
619 * @work: work_struct that describes the work to be done
620 */
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000621void phy_change(struct work_struct *work)
Andy Fleminge1393452005-08-24 18:46:21 -0500622{
623 int err;
David Howellsc4028952006-11-22 14:57:56 +0000624 struct phy_device *phydev =
625 container_of(work, struct phy_device, phy_queue);
Andy Fleminge1393452005-08-24 18:46:21 -0500626
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000627 if (phydev->drv->did_interrupt &&
628 !phydev->drv->did_interrupt(phydev))
629 goto ignore;
630
Andy Fleminge1393452005-08-24 18:46:21 -0500631 err = phy_disable_interrupts(phydev);
632
633 if (err)
634 goto phy_err;
635
Nate Case35b5f6b2008-01-29 10:05:09 -0600636 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500637 if ((PHY_RUNNING == phydev->state) || (PHY_NOLINK == phydev->state))
638 phydev->state = PHY_CHANGELINK;
Nate Case35b5f6b2008-01-29 10:05:09 -0600639 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500640
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700641 atomic_dec(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500642 enable_irq(phydev->irq);
643
644 /* Reenable interrupts */
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100645 if (PHY_HALTED != phydev->state)
646 err = phy_config_interrupt(phydev, PHY_INTERRUPT_ENABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500647
648 if (err)
649 goto irq_enable_err;
650
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700651 /* reschedule state queue work to run as soon as possible */
652 cancel_delayed_work_sync(&phydev->state_queue);
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530653 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue, 0);
Trent Piepho0acb2832008-10-08 15:46:57 -0700654
Andy Fleminge1393452005-08-24 18:46:21 -0500655 return;
656
Anatolij Gustschina8729eb2009-04-07 02:01:42 +0000657ignore:
658 atomic_dec(&phydev->irq_disable);
659 enable_irq(phydev->irq);
660 return;
661
Andy Fleminge1393452005-08-24 18:46:21 -0500662irq_enable_err:
663 disable_irq(phydev->irq);
Maciej W. Rozycki0ac49522007-09-28 22:42:14 -0700664 atomic_inc(&phydev->irq_disable);
Andy Fleminge1393452005-08-24 18:46:21 -0500665phy_err:
666 phy_error(phydev);
667}
668
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800669/**
670 * phy_stop - Bring down the PHY link, and stop checking the status
671 * @phydev: target phy_device struct
672 */
Andy Fleminge1393452005-08-24 18:46:21 -0500673void phy_stop(struct phy_device *phydev)
674{
Nate Case35b5f6b2008-01-29 10:05:09 -0600675 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500676
677 if (PHY_HALTED == phydev->state)
678 goto out_unlock;
679
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000680 if (phy_interrupt_is_valid(phydev)) {
Andy Fleminge1393452005-08-24 18:46:21 -0500681 /* Disable PHY Interrupts */
682 phy_config_interrupt(phydev, PHY_INTERRUPT_DISABLED);
Andy Fleminge1393452005-08-24 18:46:21 -0500683
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100684 /* Clear any pending interrupts */
685 phy_clear_interrupt(phydev);
686 }
Andy Fleminge1393452005-08-24 18:46:21 -0500687
Maciej W. Rozycki6daf6532007-09-28 22:42:15 -0700688 phydev->state = PHY_HALTED;
689
Andy Fleminge1393452005-08-24 18:46:21 -0500690out_unlock:
Nate Case35b5f6b2008-01-29 10:05:09 -0600691 mutex_unlock(&phydev->lock);
Maciej W. Rozycki3c3070d2006-10-03 16:18:35 +0100692
693 /*
694 * Cannot call flush_scheduled_work() here as desired because
695 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
696 * will not reenable interrupts.
697 */
Andy Fleminge1393452005-08-24 18:46:21 -0500698}
699
700
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800701/**
702 * phy_start - start or restart a PHY device
703 * @phydev: target phy_device struct
Andy Fleminge1393452005-08-24 18:46:21 -0500704 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800705 * Description: Indicates the attached device's readiness to
Andy Fleminge1393452005-08-24 18:46:21 -0500706 * handle PHY-related work. Used during startup to start the
707 * PHY, and after a call to phy_stop() to resume operation.
708 * Also used to indicate the MDIO bus has cleared an error
709 * condition.
710 */
711void phy_start(struct phy_device *phydev)
712{
Nate Case35b5f6b2008-01-29 10:05:09 -0600713 mutex_lock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500714
715 switch (phydev->state) {
716 case PHY_STARTING:
717 phydev->state = PHY_PENDING;
718 break;
719 case PHY_READY:
720 phydev->state = PHY_UP;
721 break;
722 case PHY_HALTED:
723 phydev->state = PHY_RESUMING;
724 default:
725 break;
726 }
Nate Case35b5f6b2008-01-29 10:05:09 -0600727 mutex_unlock(&phydev->lock);
Andy Fleminge1393452005-08-24 18:46:21 -0500728}
729EXPORT_SYMBOL(phy_stop);
730EXPORT_SYMBOL(phy_start);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400731
Nate Case35b5f6b2008-01-29 10:05:09 -0600732/**
733 * phy_state_machine - Handle the state machine
734 * @work: work_struct that describes the work to be done
Nate Case35b5f6b2008-01-29 10:05:09 -0600735 */
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000736void phy_state_machine(struct work_struct *work)
Andy Fleming00db8182005-07-30 19:31:23 -0400737{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700738 struct delayed_work *dwork = to_delayed_work(work);
Nate Case35b5f6b2008-01-29 10:05:09 -0600739 struct phy_device *phydev =
Marcin Slusarza390d1f2009-03-13 15:41:19 -0700740 container_of(dwork, struct phy_device, state_queue);
Andy Fleming00db8182005-07-30 19:31:23 -0400741 int needs_aneg = 0;
742 int err = 0;
743
Nate Case35b5f6b2008-01-29 10:05:09 -0600744 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400745
746 if (phydev->adjust_state)
747 phydev->adjust_state(phydev->attached_dev);
748
749 switch(phydev->state) {
750 case PHY_DOWN:
751 case PHY_STARTING:
752 case PHY_READY:
753 case PHY_PENDING:
754 break;
755 case PHY_UP:
756 needs_aneg = 1;
757
758 phydev->link_timeout = PHY_AN_TIMEOUT;
759
760 break;
761 case PHY_AN:
Andy Fleming6b655522006-10-16 16:19:17 -0500762 err = phy_read_status(phydev);
763
764 if (err < 0)
765 break;
766
767 /* If the link is down, give up on
768 * negotiation for now */
769 if (!phydev->link) {
770 phydev->state = PHY_NOLINK;
771 netif_carrier_off(phydev->attached_dev);
772 phydev->adjust_link(phydev->attached_dev);
773 break;
774 }
775
Andy Fleming00db8182005-07-30 19:31:23 -0400776 /* Check if negotiation is done. Break
777 * if there's an error */
778 err = phy_aneg_done(phydev);
779 if (err < 0)
780 break;
781
Andy Fleming6b655522006-10-16 16:19:17 -0500782 /* If AN is done, we're running */
Andy Fleming00db8182005-07-30 19:31:23 -0400783 if (err > 0) {
Andy Fleming6b655522006-10-16 16:19:17 -0500784 phydev->state = PHY_RUNNING;
785 netif_carrier_on(phydev->attached_dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400786 phydev->adjust_link(phydev->attached_dev);
787
788 } else if (0 == phydev->link_timeout--) {
Andy Fleming00db8182005-07-30 19:31:23 -0400789 needs_aneg = 1;
Andy Fleming6b655522006-10-16 16:19:17 -0500790 /* If we have the magic_aneg bit,
791 * we try again */
792 if (phydev->drv->flags & PHY_HAS_MAGICANEG)
793 break;
Andy Fleming00db8182005-07-30 19:31:23 -0400794 }
795 break;
796 case PHY_NOLINK:
797 err = phy_read_status(phydev);
798
799 if (err)
800 break;
801
802 if (phydev->link) {
803 phydev->state = PHY_RUNNING;
804 netif_carrier_on(phydev->attached_dev);
805 phydev->adjust_link(phydev->attached_dev);
806 }
807 break;
808 case PHY_FORCING:
Andy Fleming6b655522006-10-16 16:19:17 -0500809 err = genphy_update_link(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400810
811 if (err)
812 break;
813
814 if (phydev->link) {
815 phydev->state = PHY_RUNNING;
816 netif_carrier_on(phydev->attached_dev);
817 } else {
Kirill Kapranova33e6112013-03-27 01:16:13 +0000818 if (0 == phydev->link_timeout--)
Andy Fleming00db8182005-07-30 19:31:23 -0400819 needs_aneg = 1;
Andy Fleming00db8182005-07-30 19:31:23 -0400820 }
821
822 phydev->adjust_link(phydev->attached_dev);
823 break;
824 case PHY_RUNNING:
825 /* Only register a CHANGE if we are
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000826 * polling or ignoring interrupts
827 */
828 if (!phy_interrupt_is_valid(phydev))
Andy Fleming00db8182005-07-30 19:31:23 -0400829 phydev->state = PHY_CHANGELINK;
830 break;
831 case PHY_CHANGELINK:
832 err = phy_read_status(phydev);
833
834 if (err)
835 break;
836
837 if (phydev->link) {
838 phydev->state = PHY_RUNNING;
839 netif_carrier_on(phydev->attached_dev);
840 } else {
841 phydev->state = PHY_NOLINK;
842 netif_carrier_off(phydev->attached_dev);
843 }
844
845 phydev->adjust_link(phydev->attached_dev);
846
Florian Fainelli2c7b4922013-05-19 22:53:42 +0000847 if (phy_interrupt_is_valid(phydev))
Andy Fleming00db8182005-07-30 19:31:23 -0400848 err = phy_config_interrupt(phydev,
849 PHY_INTERRUPT_ENABLED);
850 break;
851 case PHY_HALTED:
852 if (phydev->link) {
853 phydev->link = 0;
854 netif_carrier_off(phydev->attached_dev);
855 phydev->adjust_link(phydev->attached_dev);
856 }
857 break;
858 case PHY_RESUMING:
859
860 err = phy_clear_interrupt(phydev);
861
862 if (err)
863 break;
864
865 err = phy_config_interrupt(phydev,
866 PHY_INTERRUPT_ENABLED);
867
868 if (err)
869 break;
870
871 if (AUTONEG_ENABLE == phydev->autoneg) {
872 err = phy_aneg_done(phydev);
873 if (err < 0)
874 break;
875
876 /* err > 0 if AN is done.
877 * Otherwise, it's 0, and we're
878 * still waiting for AN */
879 if (err > 0) {
Wade Farnsworth42caa072009-07-01 13:00:34 +0000880 err = phy_read_status(phydev);
881 if (err)
882 break;
883
884 if (phydev->link) {
885 phydev->state = PHY_RUNNING;
886 netif_carrier_on(phydev->attached_dev);
887 } else
888 phydev->state = PHY_NOLINK;
889 phydev->adjust_link(phydev->attached_dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400890 } else {
891 phydev->state = PHY_AN;
892 phydev->link_timeout = PHY_AN_TIMEOUT;
893 }
Wade Farnsworth42caa072009-07-01 13:00:34 +0000894 } else {
895 err = phy_read_status(phydev);
896 if (err)
897 break;
898
899 if (phydev->link) {
900 phydev->state = PHY_RUNNING;
901 netif_carrier_on(phydev->attached_dev);
902 } else
903 phydev->state = PHY_NOLINK;
904 phydev->adjust_link(phydev->attached_dev);
905 }
Andy Fleming00db8182005-07-30 19:31:23 -0400906 break;
907 }
908
Nate Case35b5f6b2008-01-29 10:05:09 -0600909 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -0400910
911 if (needs_aneg)
912 err = phy_start_aneg(phydev);
913
914 if (err < 0)
915 phy_error(phydev);
916
Viresh Kumarbbb47bd2013-04-24 17:12:55 +0530917 queue_delayed_work(system_power_efficient_wq, &phydev->state_queue,
918 PHY_STATE_TIME * HZ);
Nate Case35b5f6b2008-01-29 10:05:09 -0600919}
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000920
Florian Fainelli5ea94e72013-05-19 22:53:43 +0000921void phy_mac_interrupt(struct phy_device *phydev, int new_link)
922{
923 cancel_work_sync(&phydev->phy_queue);
924 phydev->link = new_link;
925 schedule_work(&phydev->phy_queue);
926}
927EXPORT_SYMBOL(phy_mac_interrupt);
928
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000929static inline void mmd_phy_indirect(struct mii_bus *bus, int prtad, int devad,
930 int addr)
931{
932 /* Write the desired MMD Devad */
933 bus->write(bus, addr, MII_MMD_CTRL, devad);
934
935 /* Write the desired MMD register address */
936 bus->write(bus, addr, MII_MMD_DATA, prtad);
937
938 /* Select the Function : DATA with no post increment */
939 bus->write(bus, addr, MII_MMD_CTRL, (devad | MII_MMD_CTRL_NOINCR));
940}
941
942/**
943 * phy_read_mmd_indirect - reads data from the MMD registers
944 * @bus: the target MII bus
945 * @prtad: MMD Address
946 * @devad: MMD DEVAD
947 * @addr: PHY address on the MII bus
948 *
949 * Description: it reads data from the MMD registers (clause 22 to access to
950 * clause 45) of the specified phy address.
951 * To read these register we have:
952 * 1) Write reg 13 // DEVAD
953 * 2) Write reg 14 // MMD Address
954 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
955 * 3) Read reg 14 // Read MMD data
956 */
957static int phy_read_mmd_indirect(struct mii_bus *bus, int prtad, int devad,
958 int addr)
959{
960 u32 ret;
961
962 mmd_phy_indirect(bus, prtad, devad, addr);
963
964 /* Read the content of the MMD's selected register */
965 ret = bus->read(bus, addr, MII_MMD_DATA);
966
967 return ret;
968}
969
970/**
971 * phy_write_mmd_indirect - writes data to the MMD registers
972 * @bus: the target MII bus
973 * @prtad: MMD Address
974 * @devad: MMD DEVAD
975 * @addr: PHY address on the MII bus
976 * @data: data to write in the MMD register
977 *
978 * Description: Write data from the MMD registers of the specified
979 * phy address.
980 * To write these register we have:
981 * 1) Write reg 13 // DEVAD
982 * 2) Write reg 14 // MMD Address
983 * 3) Write reg 13 // MMD Data Command for MMD DEVAD
984 * 3) Write reg 14 // Write MMD data
985 */
986static void phy_write_mmd_indirect(struct mii_bus *bus, int prtad, int devad,
987 int addr, u32 data)
988{
989 mmd_phy_indirect(bus, prtad, devad, addr);
990
991 /* Write the data into MMD's selected register */
992 bus->write(bus, addr, MII_MMD_DATA, data);
993}
994
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +0000995/**
996 * phy_init_eee - init and check the EEE feature
997 * @phydev: target phy_device struct
998 * @clk_stop_enable: PHY may stop the clock during LPI
999 *
1000 * Description: it checks if the Energy-Efficient Ethernet (EEE)
1001 * is supported by looking at the MMD registers 3.20 and 7.60/61
1002 * and it programs the MMD register 3.0 setting the "Clock stop enable"
1003 * bit if required.
1004 */
1005int phy_init_eee(struct phy_device *phydev, bool clk_stop_enable)
1006{
1007 int ret = -EPROTONOSUPPORT;
1008
1009 /* According to 802.3az,the EEE is supported only in full duplex-mode.
1010 * Also EEE feature is active when core is operating with MII, GMII
1011 * or RGMII.
1012 */
1013 if ((phydev->duplex == DUPLEX_FULL) &&
1014 ((phydev->interface == PHY_INTERFACE_MODE_MII) ||
1015 (phydev->interface == PHY_INTERFACE_MODE_GMII) ||
1016 (phydev->interface == PHY_INTERFACE_MODE_RGMII))) {
1017 int eee_lp, eee_cap, eee_adv;
1018 u32 lp, cap, adv;
1019 int idx, status;
1020
1021 /* Read phy status to properly get the right settings */
1022 status = phy_read_status(phydev);
1023 if (status)
1024 return status;
1025
1026 /* First check if the EEE ability is supported */
1027 eee_cap = phy_read_mmd_indirect(phydev->bus, MDIO_PCS_EEE_ABLE,
1028 MDIO_MMD_PCS, phydev->addr);
1029 if (eee_cap < 0)
1030 return eee_cap;
1031
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001032 cap = mmd_eee_cap_to_ethtool_sup_t(eee_cap);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001033 if (!cap)
1034 goto eee_exit;
1035
1036 /* Check which link settings negotiated and verify it in
1037 * the EEE advertising registers.
1038 */
1039 eee_lp = phy_read_mmd_indirect(phydev->bus, MDIO_AN_EEE_LPABLE,
1040 MDIO_MMD_AN, phydev->addr);
1041 if (eee_lp < 0)
1042 return eee_lp;
1043
1044 eee_adv = phy_read_mmd_indirect(phydev->bus, MDIO_AN_EEE_ADV,
1045 MDIO_MMD_AN, phydev->addr);
1046 if (eee_adv < 0)
1047 return eee_adv;
1048
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001049 adv = mmd_eee_adv_to_ethtool_adv_t(eee_adv);
1050 lp = mmd_eee_adv_to_ethtool_adv_t(eee_lp);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001051 idx = phy_find_setting(phydev->speed, phydev->duplex);
Giuseppe CAVALLARO9a9c56c2013-05-26 21:31:28 +00001052 if (!(lp & adv & settings[idx].setting))
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001053 goto eee_exit;
1054
1055 if (clk_stop_enable) {
1056 /* Configure the PHY to stop receiving xMII
1057 * clock while it is signaling LPI.
1058 */
1059 int val = phy_read_mmd_indirect(phydev->bus, MDIO_CTRL1,
1060 MDIO_MMD_PCS,
1061 phydev->addr);
1062 if (val < 0)
1063 return val;
1064
1065 val |= MDIO_PCS_CTRL1_CLKSTOP_EN;
1066 phy_write_mmd_indirect(phydev->bus, MDIO_CTRL1,
1067 MDIO_MMD_PCS, phydev->addr, val);
1068 }
1069
1070 ret = 0; /* EEE supported */
1071 }
1072
1073eee_exit:
1074 return ret;
1075}
1076EXPORT_SYMBOL(phy_init_eee);
1077
1078/**
1079 * phy_get_eee_err - report the EEE wake error count
1080 * @phydev: target phy_device struct
1081 *
1082 * Description: it is to report the number of time where the PHY
1083 * failed to complete its normal wake sequence.
1084 */
1085int phy_get_eee_err(struct phy_device *phydev)
1086{
1087 return phy_read_mmd_indirect(phydev->bus, MDIO_PCS_EEE_WK_ERR,
1088 MDIO_MMD_PCS, phydev->addr);
1089
1090}
1091EXPORT_SYMBOL(phy_get_eee_err);
1092
1093/**
1094 * phy_ethtool_get_eee - get EEE supported and status
1095 * @phydev: target phy_device struct
1096 * @data: ethtool_eee data
1097 *
1098 * Description: it reportes the Supported/Advertisement/LP Advertisement
1099 * capabilities.
1100 */
1101int phy_ethtool_get_eee(struct phy_device *phydev, struct ethtool_eee *data)
1102{
1103 int val;
1104
1105 /* Get Supported EEE */
1106 val = phy_read_mmd_indirect(phydev->bus, MDIO_PCS_EEE_ABLE,
1107 MDIO_MMD_PCS, phydev->addr);
1108 if (val < 0)
1109 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001110 data->supported = mmd_eee_cap_to_ethtool_sup_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001111
1112 /* Get advertisement EEE */
1113 val = phy_read_mmd_indirect(phydev->bus, MDIO_AN_EEE_ADV,
1114 MDIO_MMD_AN, phydev->addr);
1115 if (val < 0)
1116 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001117 data->advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001118
1119 /* Get LP advertisement EEE */
1120 val = phy_read_mmd_indirect(phydev->bus, MDIO_AN_EEE_LPABLE,
1121 MDIO_MMD_AN, phydev->addr);
1122 if (val < 0)
1123 return val;
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001124 data->lp_advertised = mmd_eee_adv_to_ethtool_adv_t(val);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001125
1126 return 0;
1127}
1128EXPORT_SYMBOL(phy_ethtool_get_eee);
1129
1130/**
1131 * phy_ethtool_set_eee - set EEE supported and status
1132 * @phydev: target phy_device struct
1133 * @data: ethtool_eee data
1134 *
1135 * Description: it is to program the Advertisement EEE register.
1136 */
1137int phy_ethtool_set_eee(struct phy_device *phydev, struct ethtool_eee *data)
1138{
1139 int val;
1140
Allan, Bruce Wb32607d2012-08-20 04:55:29 +00001141 val = ethtool_adv_to_mmd_eee_adv_t(data->advertised);
Giuseppe CAVALLAROa59a4d12012-06-27 21:14:38 +00001142 phy_write_mmd_indirect(phydev->bus, MDIO_AN_EEE_ADV, MDIO_MMD_AN,
1143 phydev->addr, val);
1144
1145 return 0;
1146}
1147EXPORT_SYMBOL(phy_ethtool_set_eee);
Michael Stapelberg42e836e2013-03-11 13:56:44 +00001148
1149int phy_ethtool_set_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1150{
1151 if (phydev->drv->set_wol)
1152 return phydev->drv->set_wol(phydev, wol);
1153
1154 return -EOPNOTSUPP;
1155}
1156EXPORT_SYMBOL(phy_ethtool_set_wol);
1157
1158void phy_ethtool_get_wol(struct phy_device *phydev, struct ethtool_wolinfo *wol)
1159{
1160 if (phydev->drv->get_wol)
1161 phydev->drv->get_wol(phydev, wol);
1162}
1163EXPORT_SYMBOL(phy_ethtool_get_wol);