blob: 12f44c53cc8ebca7cba92119c26b01b249e31846 [file] [log] [blame]
Sergei Shtylyov02d320c2014-01-05 03:18:27 +03001/* MDIO Bus interface
Andy Fleming00db8182005-07-30 19:31:23 -04002 *
3 * Author: Andy Fleming
4 *
5 * Copyright (c) 2004 Freescale Semiconductor, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
Joe Perches8d242482012-06-09 07:49:07 +000013
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Andy Fleming00db8182005-07-30 19:31:23 -040016#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040017#include <linux/string.h>
18#include <linux/errno.h>
19#include <linux/unistd.h>
20#include <linux/slab.h>
21#include <linux/interrupt.h>
22#include <linux/init.h>
23#include <linux/delay.h>
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -080024#include <linux/device.h>
David Daneya30e2c12012-06-27 07:33:37 +000025#include <linux/of_device.h>
Mark Brown4085a7f2012-10-08 22:55:43 +000026#include <linux/of_mdio.h>
Andy Fleming00db8182005-07-30 19:31:23 -040027#include <linux/netdevice.h>
28#include <linux/etherdevice.h>
29#include <linux/skbuff.h>
30#include <linux/spinlock.h>
31#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>
Sergei Shtylyov02d320c2014-01-05 03:18:27 +030036#include <linux/io.h>
37#include <linux/uaccess.h>
Andy Fleming00db8182005-07-30 19:31:23 -040038
Andy Fleming00db8182005-07-30 19:31:23 -040039#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040040
Randy Dunlapb3df0da2007-03-06 02:41:48 -080041/**
Timur Tabieb8a54a72012-01-12 15:23:04 -080042 * mdiobus_alloc_size - allocate a mii_bus structure
Randy Dunlapaf58f1d2012-01-21 09:03:04 +000043 * @size: extra amount of memory to allocate for private storage.
44 * If non-zero, then bus->priv is points to that memory.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070045 *
46 * Description: called by a bus driver to allocate an mii_bus
47 * structure to fill in.
48 */
Timur Tabieb8a54a72012-01-12 15:23:04 -080049struct mii_bus *mdiobus_alloc_size(size_t size)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070050{
Lennert Buytenhek46abc022008-10-08 16:33:40 -070051 struct mii_bus *bus;
Timur Tabieb8a54a72012-01-12 15:23:04 -080052 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
53 size_t alloc_size;
Lennert Buytenhek46abc022008-10-08 16:33:40 -070054
Timur Tabieb8a54a72012-01-12 15:23:04 -080055 /* If we alloc extra space, it should be aligned */
56 if (size)
57 alloc_size = aligned_size + size;
58 else
59 alloc_size = sizeof(*bus);
60
61 bus = kzalloc(alloc_size, GFP_KERNEL);
62 if (bus) {
Lennert Buytenhek46abc022008-10-08 16:33:40 -070063 bus->state = MDIOBUS_ALLOCATED;
Timur Tabieb8a54a72012-01-12 15:23:04 -080064 if (size)
65 bus->priv = (void *)bus + aligned_size;
66 }
Lennert Buytenhek46abc022008-10-08 16:33:40 -070067
68 return bus;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070069}
Timur Tabieb8a54a72012-01-12 15:23:04 -080070EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070071
Grygorii Strashko6d48f442014-04-30 15:23:33 +030072static void _devm_mdiobus_free(struct device *dev, void *res)
73{
74 mdiobus_free(*(struct mii_bus **)res);
75}
76
77static int devm_mdiobus_match(struct device *dev, void *res, void *data)
78{
79 struct mii_bus **r = res;
80
81 if (WARN_ON(!r || !*r))
82 return 0;
83
84 return *r == data;
85}
86
87/**
88 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
89 * @dev: Device to allocate mii_bus for
90 * @sizeof_priv: Space to allocate for private structure.
91 *
92 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
93 * automatically freed on driver detach.
94 *
95 * If an mii_bus allocated with this function needs to be freed separately,
96 * devm_mdiobus_free() must be used.
97 *
98 * RETURNS:
99 * Pointer to allocated mii_bus on success, NULL on failure.
100 */
101struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
102{
103 struct mii_bus **ptr, *bus;
104
105 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
106 if (!ptr)
107 return NULL;
108
109 /* use raw alloc_dr for kmalloc caller tracing */
110 bus = mdiobus_alloc_size(sizeof_priv);
111 if (bus) {
112 *ptr = bus;
113 devres_add(dev, ptr);
114 } else {
115 devres_free(ptr);
116 }
117
118 return bus;
119}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200120EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300121
122/**
123 * devm_mdiobus_free - Resource-managed mdiobus_free()
124 * @dev: Device this mii_bus belongs to
125 * @bus: the mii_bus associated with the device
126 *
127 * Free mii_bus allocated with devm_mdiobus_alloc_size().
128 */
129void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
130{
131 int rc;
132
133 rc = devres_release(dev, _devm_mdiobus_free,
134 devm_mdiobus_match, bus);
135 WARN_ON(rc);
136}
137EXPORT_SYMBOL_GPL(devm_mdiobus_free);
138
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700139/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700140 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700141 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700142 *
143 * Description: called when the last reference to an mii_bus is
144 * dropped, to free the underlying memory.
145 */
146static void mdiobus_release(struct device *d)
147{
148 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800149 BUG_ON(bus->state != MDIOBUS_RELEASED &&
150 /* for compatibility with error handling in drivers */
151 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700152 kfree(bus);
153}
154
155static struct class mdio_bus_class = {
156 .name = "mdio_bus",
157 .dev_release = mdiobus_release,
158};
159
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000160#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000161/* Helper function for of_mdio_find_bus */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100162static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
David Daney25106022012-05-02 15:16:37 +0000163{
164 return dev->of_node == mdio_bus_np;
165}
166/**
167 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000168 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000169 *
Russell Kinga1364422015-09-24 20:35:52 +0100170 * Returns a reference to the mii_bus, or NULL if none found. The
171 * embedded struct device will have its reference count incremented,
172 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000173 *
174 * Because the association of a device_node and mii_bus is made via
175 * of_mdiobus_register(), the mii_bus cannot be found before it is
176 * registered with of_mdiobus_register().
177 *
178 */
179struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
180{
181 struct device *d;
182
183 if (!mdio_bus_np)
184 return NULL;
185
186 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
187 of_mdio_bus_match);
188
189 return d ? to_mii_bus(d) : NULL;
190}
191EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200192
193/* Walk the list of subnodes of a mdio bus and look for a node that matches the
194 * phy's address with its 'reg' property. If found, set the of_node pointer for
195 * the phy. This allows auto-probed pyh devices to be supplied with information
196 * passed in via DT.
197 */
198static void of_mdiobus_link_phydev(struct mii_bus *mdio,
199 struct phy_device *phydev)
200{
201 struct device *dev = &phydev->dev;
202 struct device_node *child;
203
204 if (dev->of_node || !mdio->dev.of_node)
205 return;
206
207 for_each_available_child_of_node(mdio->dev.of_node, child) {
208 int addr;
209 int ret;
210
211 ret = of_property_read_u32(child, "reg", &addr);
212 if (ret < 0) {
213 dev_err(dev, "%s has invalid PHY address\n",
214 child->full_name);
215 continue;
216 }
217
218 /* A PHY must have a reg property in the range [0-31] */
219 if (addr >= PHY_MAX_ADDR) {
220 dev_err(dev, "%s PHY address %i is too large\n",
221 child->full_name, addr);
222 continue;
223 }
224
225 if (addr == phydev->addr) {
226 dev->of_node = child;
227 return;
228 }
229 }
230}
231#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
232static inline void of_mdiobus_link_phydev(struct mii_bus *mdio,
233 struct phy_device *phydev)
234{
235}
David Daney25106022012-05-02 15:16:37 +0000236#endif
237
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700238/**
Russell King59f06972015-09-25 11:56:56 +0100239 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800240 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100241 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500242 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800243 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100244 * on a given bus, and attach them to the bus. Drivers should use
245 * mdiobus_register() rather than __mdiobus_register() unless they
246 * need to pass a specific owner module.
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800247 *
248 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500249 */
Russell King3e3aaf62015-09-24 20:36:02 +0100250int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500251{
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800252 int i, err;
Andy Fleminge1393452005-08-24 18:46:21 -0500253
Andy Fleminge1393452005-08-24 18:46:21 -0500254 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300255 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500256 return -EINVAL;
257
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700258 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
259 bus->state != MDIOBUS_UNREGISTERED);
260
Russell King3e3aaf62015-09-24 20:36:02 +0100261 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700262 bus->dev.parent = bus->parent;
263 bus->dev.class = &mdio_bus_class;
264 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000265 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700266
267 err = device_register(&bus->dev);
268 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000269 pr_err("mii_bus %s failed to register\n", bus->id);
Levente Kurusa0c692d02014-01-30 15:45:46 -0800270 put_device(&bus->dev);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700271 return -EINVAL;
272 }
273
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200274 mutex_init(&bus->mdio_lock);
275
Andy Fleminge1393452005-08-24 18:46:21 -0500276 if (bus->reset)
277 bus->reset(bus);
278
279 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200280 if ((bus->phy_mask & (1 << i)) == 0) {
281 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500282
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200283 phydev = mdiobus_scan(bus, i);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800284 if (IS_ERR(phydev)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200285 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800286 goto error;
287 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400288 }
Andy Fleminge1393452005-08-24 18:46:21 -0500289 }
290
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800291 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500292 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800293 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500294
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800295error:
296 while (--i >= 0) {
Russell King38737e42015-09-24 20:36:28 +0100297 struct phy_device *phydev = bus->phy_map[i];
298 if (phydev) {
299 phy_device_remove(phydev);
300 phy_device_free(phydev);
301 }
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800302 }
303 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500304 return err;
305}
Russell King3e3aaf62015-09-24 20:36:02 +0100306EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500307
308void mdiobus_unregister(struct mii_bus *bus)
309{
310 int i;
311
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700312 BUG_ON(bus->state != MDIOBUS_REGISTERED);
313 bus->state = MDIOBUS_UNREGISTERED;
314
Andy Fleminge1393452005-08-24 18:46:21 -0500315 for (i = 0; i < PHY_MAX_ADDR; i++) {
Russell King38737e42015-09-24 20:36:28 +0100316 struct phy_device *phydev = bus->phy_map[i];
317 if (phydev) {
318 phy_device_remove(phydev);
319 phy_device_free(phydev);
320 }
Andy Fleminge1393452005-08-24 18:46:21 -0500321 }
Mark Salterb6c6aed2015-09-01 09:36:05 -0400322 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500323}
324EXPORT_SYMBOL(mdiobus_unregister);
325
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700326/**
327 * mdiobus_free - free a struct mii_bus
328 * @bus: mii_bus to free
329 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700330 * This function releases the reference to the underlying device
331 * object in the mii_bus. If this is the last reference, the mii_bus
332 * will be freed.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700333 */
334void mdiobus_free(struct mii_bus *bus)
335{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300336 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700337 if (bus->state == MDIOBUS_ALLOCATED) {
338 kfree(bus);
339 return;
340 }
341
342 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
343 bus->state = MDIOBUS_RELEASED;
344
345 put_device(&bus->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700346}
347EXPORT_SYMBOL(mdiobus_free);
348
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200349struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
350{
351 struct phy_device *phydev;
352 int err;
353
David Daneyac28b9f2012-06-27 07:33:35 +0000354 phydev = get_phy_device(bus, addr, false);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200355 if (IS_ERR(phydev) || phydev == NULL)
356 return phydev;
357
Daniel Mack86f6cf42014-05-24 09:34:26 +0200358 /*
359 * For DT, see if the auto-probed phy has a correspoding child
360 * in the bus node, and set the of_node pointer in this case.
361 */
362 of_mdiobus_link_phydev(bus, phydev);
363
Grant Likely4dea5472009-04-25 12:52:46 +0000364 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200365 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200366 phy_device_free(phydev);
Grant Likely4dea5472009-04-25 12:52:46 +0000367 return NULL;
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200368 }
369
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200370 return phydev;
371}
372EXPORT_SYMBOL(mdiobus_scan);
373
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800374/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000375 * mdiobus_read - Convenience function for reading a given MII mgmt register
376 * @bus: the mii_bus struct
377 * @addr: the phy address
378 * @regnum: register number to read
379 *
380 * NOTE: MUST NOT be called from interrupt context,
381 * because the bus read/write functions may wait for an interrupt
382 * to conclude the operation.
383 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000384int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000385{
386 int retval;
387
388 BUG_ON(in_interrupt());
389
390 mutex_lock(&bus->mdio_lock);
391 retval = bus->read(bus, addr, regnum);
392 mutex_unlock(&bus->mdio_lock);
393
394 return retval;
395}
396EXPORT_SYMBOL(mdiobus_read);
397
398/**
399 * mdiobus_write - Convenience function for writing a given MII mgmt register
400 * @bus: the mii_bus struct
401 * @addr: the phy address
402 * @regnum: register number to write
403 * @val: value to write to @regnum
404 *
405 * NOTE: MUST NOT be called from interrupt context,
406 * because the bus read/write functions may wait for an interrupt
407 * to conclude the operation.
408 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000409int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000410{
411 int err;
412
413 BUG_ON(in_interrupt());
414
415 mutex_lock(&bus->mdio_lock);
416 err = bus->write(bus, addr, regnum, val);
417 mutex_unlock(&bus->mdio_lock);
418
419 return err;
420}
421EXPORT_SYMBOL(mdiobus_write);
422
423/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800424 * mdio_bus_match - determine if given PHY driver supports the given PHY device
425 * @dev: target PHY device
426 * @drv: given PHY driver
Andy Fleming00db8182005-07-30 19:31:23 -0400427 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800428 * Description: Given a PHY device, and a PHY driver, return 1 if
429 * the driver supports the device. Otherwise, return 0.
Andy Fleming00db8182005-07-30 19:31:23 -0400430 */
431static int mdio_bus_match(struct device *dev, struct device_driver *drv)
432{
433 struct phy_device *phydev = to_phy_device(dev);
434 struct phy_driver *phydrv = to_phy_driver(drv);
Shaohui Xiee0536cd2015-07-17 18:07:19 +0800435 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
436 int i;
Andy Fleming00db8182005-07-30 19:31:23 -0400437
David Daneya30e2c12012-06-27 07:33:37 +0000438 if (of_driver_match_device(dev, drv))
439 return 1;
440
441 if (phydrv->match_phy_device)
442 return phydrv->match_phy_device(phydev);
443
Shaohui Xiee0536cd2015-07-17 18:07:19 +0800444 if (phydev->is_c45) {
445 for (i = 1; i < num_ids; i++) {
446 if (!(phydev->c45_ids.devices_in_package & (1 << i)))
447 continue;
448
449 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
450 (phydev->c45_ids.device_ids[i] &
451 phydrv->phy_id_mask))
452 return 1;
453 }
454 return 0;
455 } else {
456 return (phydrv->phy_id & phydrv->phy_id_mask) ==
457 (phydev->phy_id & phydrv->phy_id_mask);
458 }
Andy Fleming00db8182005-07-30 19:31:23 -0400459}
460
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000461#ifdef CONFIG_PM
462
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800463static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
464{
465 struct device_driver *drv = phydev->dev.driver;
466 struct phy_driver *phydrv = to_phy_driver(drv);
467 struct net_device *netdev = phydev->attached_dev;
468
469 if (!drv || !phydrv->suspend)
470 return false;
471
Florian Fainelli803dd9c2015-01-26 22:05:40 -0800472 /* PHY not attached? May suspend if the PHY has not already been
473 * suspended as part of a prior call to phy_disconnect() ->
474 * phy_detach() -> phy_suspend() because the parent netdev might be the
475 * MDIO bus driver and clock gated at this point.
476 */
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800477 if (!netdev)
Florian Fainelli803dd9c2015-01-26 22:05:40 -0800478 return !phydev->suspended;
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800479
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300480 /* Don't suspend PHY if the attched netdev parent may wakeup.
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800481 * The parent may point to a PCI device, as in tg3 driver.
482 */
483 if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
484 return false;
485
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300486 /* Also don't suspend PHY if the netdev itself may wakeup. This
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800487 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
488 * e.g. SoC devices.
489 */
490 if (device_may_wakeup(&netdev->dev))
491 return false;
492
493 return true;
494}
495
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000496static int mdio_bus_suspend(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400497{
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -0800498 struct phy_device *phydev = to_phy_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400499
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300500 /* We must stop the state machine manually, otherwise it stops out of
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000501 * control, possibly with the phydev->lock held. Upon resume, netdev
502 * may call phy routines that try to grab the same lock, and that may
503 * lead to a deadlock.
504 */
Simon Guinotfddd9102010-09-13 22:12:01 +0000505 if (phydev->attached_dev && phydev->adjust_link)
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000506 phy_stop_machine(phydev);
507
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800508 if (!mdio_bus_phy_may_suspend(phydev))
509 return 0;
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000510
Florian Fainelli9272efa2015-01-26 22:05:37 -0800511 return phy_suspend(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -0400512}
513
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000514static int mdio_bus_resume(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400515{
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -0800516 struct phy_device *phydev = to_phy_device(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000517 int ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400518
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -0800519 if (!mdio_bus_phy_may_suspend(phydev))
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000520 goto no_resume;
521
Florian Fainelli9272efa2015-01-26 22:05:37 -0800522 ret = phy_resume(phydev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000523 if (ret < 0)
524 return ret;
525
526no_resume:
Simon Guinotfddd9102010-09-13 22:12:01 +0000527 if (phydev->attached_dev && phydev->adjust_link)
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300528 phy_start_machine(phydev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000529
530 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400531}
532
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000533static int mdio_bus_restore(struct device *dev)
534{
535 struct phy_device *phydev = to_phy_device(dev);
536 struct net_device *netdev = phydev->attached_dev;
537 int ret;
538
539 if (!netdev)
540 return 0;
541
542 ret = phy_init_hw(phydev);
543 if (ret < 0)
544 return ret;
545
546 /* The PHY needs to renegotiate. */
547 phydev->link = 0;
548 phydev->state = PHY_UP;
549
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300550 phy_start_machine(phydev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000551
552 return 0;
553}
554
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300555static const struct dev_pm_ops mdio_bus_pm_ops = {
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000556 .suspend = mdio_bus_suspend,
557 .resume = mdio_bus_resume,
558 .freeze = mdio_bus_suspend,
559 .thaw = mdio_bus_resume,
560 .restore = mdio_bus_restore,
561};
562
563#define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
564
565#else
566
567#define MDIO_BUS_PM_OPS NULL
568
569#endif /* CONFIG_PM */
570
Nick Bowler56277f42012-11-07 06:20:34 +0000571static ssize_t
572phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
573{
574 struct phy_device *phydev = to_phy_device(dev);
575
576 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
577}
Greg Kroah-Hartman4192c742013-10-06 23:55:41 -0700578static DEVICE_ATTR_RO(phy_id);
Nick Bowler56277f42012-11-07 06:20:34 +0000579
Florian Fainelli3d055d82014-02-11 17:27:40 -0800580static ssize_t
581phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
582{
583 struct phy_device *phydev = to_phy_device(dev);
Florian Fainelli574746d2014-08-27 11:44:33 -0700584 const char *mode = NULL;
Florian Fainelli3d055d82014-02-11 17:27:40 -0800585
Florian Fainelli574746d2014-08-27 11:44:33 -0700586 if (phy_is_internal(phydev))
587 mode = "internal";
588 else
589 mode = phy_modes(phydev->interface);
590
591 return sprintf(buf, "%s\n", mode);
Florian Fainelli3d055d82014-02-11 17:27:40 -0800592}
593static DEVICE_ATTR_RO(phy_interface);
594
Florian Fainelli8bed12852014-02-11 17:27:42 -0800595static ssize_t
596phy_has_fixups_show(struct device *dev, struct device_attribute *attr, char *buf)
597{
598 struct phy_device *phydev = to_phy_device(dev);
599
600 return sprintf(buf, "%d\n", phydev->has_fixups);
601}
602static DEVICE_ATTR_RO(phy_has_fixups);
603
Greg Kroah-Hartman4192c742013-10-06 23:55:41 -0700604static struct attribute *mdio_dev_attrs[] = {
605 &dev_attr_phy_id.attr,
Florian Fainelli3d055d82014-02-11 17:27:40 -0800606 &dev_attr_phy_interface.attr,
Florian Fainelli8bed12852014-02-11 17:27:42 -0800607 &dev_attr_phy_has_fixups.attr,
Greg Kroah-Hartman4192c742013-10-06 23:55:41 -0700608 NULL,
Nick Bowler56277f42012-11-07 06:20:34 +0000609};
Greg Kroah-Hartman4192c742013-10-06 23:55:41 -0700610ATTRIBUTE_GROUPS(mdio_dev);
Nick Bowler56277f42012-11-07 06:20:34 +0000611
Andy Fleming00db8182005-07-30 19:31:23 -0400612struct bus_type mdio_bus_type = {
613 .name = "mdio_bus",
614 .match = mdio_bus_match,
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000615 .pm = MDIO_BUS_PM_OPS,
Greg Kroah-Hartman4192c742013-10-06 23:55:41 -0700616 .dev_groups = mdio_dev_groups,
Andy Fleming00db8182005-07-30 19:31:23 -0400617};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700618EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400619
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400620int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400621{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700622 int ret;
623
624 ret = class_register(&mdio_bus_class);
625 if (!ret) {
626 ret = bus_register(&mdio_bus_type);
627 if (ret)
628 class_unregister(&mdio_bus_class);
629 }
630
631 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400632}
633
Peter Chubbdc85dec2005-09-03 14:05:06 -0700634void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500635{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700636 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500637 bus_unregister(&mdio_bus_type);
638}