blob: a9bbdcec0bad78b3f23f49f64c7483887be66067 [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
Andrew Lunn7f854422016-01-06 20:11:18 +010041int mdiobus_register_device(struct mdio_device *mdiodev)
42{
43 if (mdiodev->bus->mdio_map[mdiodev->addr])
44 return -EBUSY;
45
46 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
47
48 return 0;
49}
50EXPORT_SYMBOL(mdiobus_register_device);
51
52int mdiobus_unregister_device(struct mdio_device *mdiodev)
53{
54 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
55 return -EINVAL;
56
57 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
58
59 return 0;
60}
61EXPORT_SYMBOL(mdiobus_unregister_device);
62
63struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
64{
65 struct mdio_device *mdiodev = bus->mdio_map[addr];
66
67 if (!mdiodev)
68 return NULL;
69
70 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
71 return NULL;
72
73 return container_of(mdiodev, struct phy_device, mdio);
74}
75EXPORT_SYMBOL(mdiobus_get_phy);
76
77bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
78{
79 return bus->mdio_map[addr];
80}
81EXPORT_SYMBOL(mdiobus_is_registered_device);
82
Randy Dunlapb3df0da2007-03-06 02:41:48 -080083/**
Timur Tabieb8a54a72012-01-12 15:23:04 -080084 * mdiobus_alloc_size - allocate a mii_bus structure
Randy Dunlapaf58f1d2012-01-21 09:03:04 +000085 * @size: extra amount of memory to allocate for private storage.
86 * If non-zero, then bus->priv is points to that memory.
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -070087 *
88 * Description: called by a bus driver to allocate an mii_bus
89 * structure to fill in.
90 */
Timur Tabieb8a54a72012-01-12 15:23:04 -080091struct mii_bus *mdiobus_alloc_size(size_t size)
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -070092{
Lennert Buytenhek46abc022008-10-08 16:33:40 -070093 struct mii_bus *bus;
Timur Tabieb8a54a72012-01-12 15:23:04 -080094 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
95 size_t alloc_size;
Andrew Lunne7f4dc32016-01-06 20:11:15 +010096 int i;
Lennert Buytenhek46abc022008-10-08 16:33:40 -070097
Timur Tabieb8a54a72012-01-12 15:23:04 -080098 /* If we alloc extra space, it should be aligned */
99 if (size)
100 alloc_size = aligned_size + size;
101 else
102 alloc_size = sizeof(*bus);
103
104 bus = kzalloc(alloc_size, GFP_KERNEL);
Dan Carpenterdb9107b2016-01-12 12:34:36 +0300105 if (!bus)
106 return NULL;
107
108 bus->state = MDIOBUS_ALLOCATED;
109 if (size)
110 bus->priv = (void *)bus + aligned_size;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700111
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100112 /* Initialise the interrupts to polling */
113 for (i = 0; i < PHY_MAX_ADDR; i++)
114 bus->irq[i] = PHY_POLL;
115
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700116 return bus;
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700117}
Timur Tabieb8a54a72012-01-12 15:23:04 -0800118EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700119
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300120static void _devm_mdiobus_free(struct device *dev, void *res)
121{
122 mdiobus_free(*(struct mii_bus **)res);
123}
124
125static int devm_mdiobus_match(struct device *dev, void *res, void *data)
126{
127 struct mii_bus **r = res;
128
129 if (WARN_ON(!r || !*r))
130 return 0;
131
132 return *r == data;
133}
134
135/**
136 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
137 * @dev: Device to allocate mii_bus for
138 * @sizeof_priv: Space to allocate for private structure.
139 *
140 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
141 * automatically freed on driver detach.
142 *
143 * If an mii_bus allocated with this function needs to be freed separately,
144 * devm_mdiobus_free() must be used.
145 *
146 * RETURNS:
147 * Pointer to allocated mii_bus on success, NULL on failure.
148 */
149struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
150{
151 struct mii_bus **ptr, *bus;
152
153 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
154 if (!ptr)
155 return NULL;
156
157 /* use raw alloc_dr for kmalloc caller tracing */
158 bus = mdiobus_alloc_size(sizeof_priv);
159 if (bus) {
160 *ptr = bus;
161 devres_add(dev, ptr);
162 } else {
163 devres_free(ptr);
164 }
165
166 return bus;
167}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200168EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300169
170/**
171 * devm_mdiobus_free - Resource-managed mdiobus_free()
172 * @dev: Device this mii_bus belongs to
173 * @bus: the mii_bus associated with the device
174 *
175 * Free mii_bus allocated with devm_mdiobus_alloc_size().
176 */
177void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
178{
179 int rc;
180
181 rc = devres_release(dev, _devm_mdiobus_free,
182 devm_mdiobus_match, bus);
183 WARN_ON(rc);
184}
185EXPORT_SYMBOL_GPL(devm_mdiobus_free);
186
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700187/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700188 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700189 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700190 *
191 * Description: called when the last reference to an mii_bus is
192 * dropped, to free the underlying memory.
193 */
194static void mdiobus_release(struct device *d)
195{
196 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800197 BUG_ON(bus->state != MDIOBUS_RELEASED &&
198 /* for compatibility with error handling in drivers */
199 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700200 kfree(bus);
201}
202
203static struct class mdio_bus_class = {
204 .name = "mdio_bus",
205 .dev_release = mdiobus_release,
206};
207
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000208#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000209/* Helper function for of_mdio_find_bus */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100210static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
David Daney25106022012-05-02 15:16:37 +0000211{
212 return dev->of_node == mdio_bus_np;
213}
214/**
215 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000216 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000217 *
Russell Kinga1364422015-09-24 20:35:52 +0100218 * Returns a reference to the mii_bus, or NULL if none found. The
219 * embedded struct device will have its reference count incremented,
220 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000221 *
222 * Because the association of a device_node and mii_bus is made via
223 * of_mdiobus_register(), the mii_bus cannot be found before it is
224 * registered with of_mdiobus_register().
225 *
226 */
227struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
228{
229 struct device *d;
230
231 if (!mdio_bus_np)
232 return NULL;
233
234 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
235 of_mdio_bus_match);
236
237 return d ? to_mii_bus(d) : NULL;
238}
239EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200240
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100241/* Walk the list of subnodes of a mdio bus and look for a node that
242 * matches the mdio device's address with its 'reg' property. If
243 * found, set the of_node pointer for the mdio device. This allows
244 * auto-probed phy devices to be supplied with information passed in
245 * via DT.
Daniel Mackd9daa242014-06-28 01:23:35 +0200246 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100247static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
248 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200249{
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100250 struct device *dev = &mdiodev->dev;
Daniel Mackd9daa242014-06-28 01:23:35 +0200251 struct device_node *child;
252
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100253 if (dev->of_node || !bus->dev.of_node)
Daniel Mackd9daa242014-06-28 01:23:35 +0200254 return;
255
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100256 for_each_available_child_of_node(bus->dev.of_node, child) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200257 int addr;
258 int ret;
259
260 ret = of_property_read_u32(child, "reg", &addr);
261 if (ret < 0) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100262 dev_err(dev, "%s has invalid MDIO address\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200263 child->full_name);
264 continue;
265 }
266
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100267 /* A MDIO device must have a reg property in the range [0-31] */
Daniel Mackd9daa242014-06-28 01:23:35 +0200268 if (addr >= PHY_MAX_ADDR) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100269 dev_err(dev, "%s MDIO address %i is too large\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200270 child->full_name, addr);
271 continue;
272 }
273
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100274 if (addr == mdiodev->addr) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200275 dev->of_node = child;
276 return;
277 }
278 }
279}
280#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100281static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
282 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200283{
284}
David Daney25106022012-05-02 15:16:37 +0000285#endif
286
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700287/**
Russell King59f06972015-09-25 11:56:56 +0100288 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800289 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100290 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500291 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800292 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100293 * on a given bus, and attach them to the bus. Drivers should use
294 * mdiobus_register() rather than __mdiobus_register() unless they
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100295 * need to pass a specific owner module. MDIO devices which are not
296 * PHYs will not be brought up by this function. They are expected to
297 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800298 *
299 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500300 */
Russell King3e3aaf62015-09-24 20:36:02 +0100301int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500302{
Andrew Lunn711fdba2016-01-06 20:11:27 +0100303 struct mdio_device *mdiodev;
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800304 int i, err;
Andy Fleminge1393452005-08-24 18:46:21 -0500305
Andy Fleminge1393452005-08-24 18:46:21 -0500306 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300307 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500308 return -EINVAL;
309
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700310 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
311 bus->state != MDIOBUS_UNREGISTERED);
312
Russell King3e3aaf62015-09-24 20:36:02 +0100313 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700314 bus->dev.parent = bus->parent;
315 bus->dev.class = &mdio_bus_class;
316 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000317 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700318
319 err = device_register(&bus->dev);
320 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000321 pr_err("mii_bus %s failed to register\n", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700322 return -EINVAL;
323 }
324
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200325 mutex_init(&bus->mdio_lock);
326
Andy Fleminge1393452005-08-24 18:46:21 -0500327 if (bus->reset)
328 bus->reset(bus);
329
330 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200331 if ((bus->phy_mask & (1 << i)) == 0) {
332 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500333
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200334 phydev = mdiobus_scan(bus, i);
Marek Vasut70e927b2016-05-02 02:47:31 +0200335 if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200336 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800337 goto error;
338 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400339 }
Andy Fleminge1393452005-08-24 18:46:21 -0500340 }
341
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800342 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500343 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800344 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500345
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800346error:
347 while (--i >= 0) {
Andrew Lunn711fdba2016-01-06 20:11:27 +0100348 mdiodev = bus->mdio_map[i];
349 if (!mdiodev)
350 continue;
351
352 mdiodev->device_remove(mdiodev);
353 mdiodev->device_free(mdiodev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800354 }
355 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500356 return err;
357}
Russell King3e3aaf62015-09-24 20:36:02 +0100358EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500359
360void mdiobus_unregister(struct mii_bus *bus)
361{
Andrew Lunna9049e02016-01-06 20:11:26 +0100362 struct mdio_device *mdiodev;
Andy Fleminge1393452005-08-24 18:46:21 -0500363 int i;
364
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700365 BUG_ON(bus->state != MDIOBUS_REGISTERED);
366 bus->state = MDIOBUS_UNREGISTERED;
367
Andy Fleminge1393452005-08-24 18:46:21 -0500368 for (i = 0; i < PHY_MAX_ADDR; i++) {
Andrew Lunna9049e02016-01-06 20:11:26 +0100369 mdiodev = bus->mdio_map[i];
370 if (!mdiodev)
371 continue;
372
Andrew Lunn711fdba2016-01-06 20:11:27 +0100373 mdiodev->device_remove(mdiodev);
374 mdiodev->device_free(mdiodev);
Andy Fleminge1393452005-08-24 18:46:21 -0500375 }
Mark Salterb6c6aed2015-09-01 09:36:05 -0400376 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500377}
378EXPORT_SYMBOL(mdiobus_unregister);
379
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700380/**
381 * mdiobus_free - free a struct mii_bus
382 * @bus: mii_bus to free
383 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700384 * This function releases the reference to the underlying device
385 * object in the mii_bus. If this is the last reference, the mii_bus
386 * will be freed.
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700387 */
388void mdiobus_free(struct mii_bus *bus)
389{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300390 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700391 if (bus->state == MDIOBUS_ALLOCATED) {
392 kfree(bus);
393 return;
394 }
395
396 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
397 bus->state = MDIOBUS_RELEASED;
398
399 put_device(&bus->dev);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700400}
401EXPORT_SYMBOL(mdiobus_free);
402
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100403/**
404 * mdiobus_scan - scan a bus for MDIO devices.
405 * @bus: mii_bus to scan
406 * @addr: address on bus to scan
407 *
408 * This function scans the MDIO bus, looking for devices which can be
409 * identified using a vendor/product ID in registers 2 and 3. Not all
410 * MDIO devices have such registers, but PHY devices typically
411 * do. Hence this function assumes anything found is a PHY, or can be
412 * treated as a PHY. Other MDIO devices, such as switches, will
413 * probably not be found during the scan.
414 */
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200415struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
416{
417 struct phy_device *phydev;
418 int err;
419
David Daneyac28b9f2012-06-27 07:33:35 +0000420 phydev = get_phy_device(bus, addr, false);
Sergei Shtylyov66c239e2016-04-24 20:30:53 +0300421 if (IS_ERR(phydev))
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200422 return phydev;
423
Daniel Mack86f6cf42014-05-24 09:34:26 +0200424 /*
425 * For DT, see if the auto-probed phy has a correspoding child
426 * in the bus node, and set the of_node pointer in this case.
427 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100428 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
Daniel Mack86f6cf42014-05-24 09:34:26 +0200429
Grant Likely4dea5472009-04-25 12:52:46 +0000430 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200431 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200432 phy_device_free(phydev);
Sergei Shtylyove98a3aa2016-05-03 23:14:41 +0300433 return ERR_PTR(-ENODEV);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200434 }
435
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200436 return phydev;
437}
438EXPORT_SYMBOL(mdiobus_scan);
439
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800440/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200441 * mdiobus_read_nested - Nested version of the mdiobus_read function
442 * @bus: the mii_bus struct
443 * @addr: the phy address
444 * @regnum: register number to read
445 *
446 * In case of nested MDIO bus access avoid lockdep false positives by
447 * using mutex_lock_nested().
448 *
449 * NOTE: MUST NOT be called from interrupt context,
450 * because the bus read/write functions may wait for an interrupt
451 * to conclude the operation.
452 */
453int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
454{
455 int retval;
456
457 BUG_ON(in_interrupt());
458
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200459 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200460 retval = bus->read(bus, addr, regnum);
461 mutex_unlock(&bus->mdio_lock);
462
463 return retval;
464}
465EXPORT_SYMBOL(mdiobus_read_nested);
466
467/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000468 * mdiobus_read - Convenience function for reading a given MII mgmt register
469 * @bus: the mii_bus struct
470 * @addr: the phy address
471 * @regnum: register number to read
472 *
473 * NOTE: MUST NOT be called from interrupt context,
474 * because the bus read/write functions may wait for an interrupt
475 * to conclude the operation.
476 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000477int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000478{
479 int retval;
480
481 BUG_ON(in_interrupt());
482
483 mutex_lock(&bus->mdio_lock);
484 retval = bus->read(bus, addr, regnum);
485 mutex_unlock(&bus->mdio_lock);
486
487 return retval;
488}
489EXPORT_SYMBOL(mdiobus_read);
490
491/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200492 * mdiobus_write_nested - Nested version of the mdiobus_write function
493 * @bus: the mii_bus struct
494 * @addr: the phy address
495 * @regnum: register number to write
496 * @val: value to write to @regnum
497 *
498 * In case of nested MDIO bus access avoid lockdep false positives by
499 * using mutex_lock_nested().
500 *
501 * NOTE: MUST NOT be called from interrupt context,
502 * because the bus read/write functions may wait for an interrupt
503 * to conclude the operation.
504 */
505int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
506{
507 int err;
508
509 BUG_ON(in_interrupt());
510
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200511 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200512 err = bus->write(bus, addr, regnum, val);
513 mutex_unlock(&bus->mdio_lock);
514
515 return err;
516}
517EXPORT_SYMBOL(mdiobus_write_nested);
518
519/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000520 * mdiobus_write - Convenience function for writing a given MII mgmt register
521 * @bus: the mii_bus struct
522 * @addr: the phy address
523 * @regnum: register number to write
524 * @val: value to write to @regnum
525 *
526 * NOTE: MUST NOT be called from interrupt context,
527 * because the bus read/write functions may wait for an interrupt
528 * to conclude the operation.
529 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000530int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000531{
532 int err;
533
534 BUG_ON(in_interrupt());
535
536 mutex_lock(&bus->mdio_lock);
537 err = bus->write(bus, addr, regnum, val);
538 mutex_unlock(&bus->mdio_lock);
539
540 return err;
541}
542EXPORT_SYMBOL(mdiobus_write);
543
544/**
Andrew Lunne76a4952016-01-06 20:11:23 +0100545 * mdio_bus_match - determine if given MDIO driver supports the given
546 * MDIO device
547 * @dev: target MDIO device
548 * @drv: given MDIO driver
Andy Fleming00db8182005-07-30 19:31:23 -0400549 *
Andrew Lunne76a4952016-01-06 20:11:23 +0100550 * Description: Given a MDIO device, and a MDIO driver, return 1 if
551 * the driver supports the device. Otherwise, return 0. This may
552 * require calling the devices own match function, since different classes
553 * of MDIO devices have different match criteria.
Andy Fleming00db8182005-07-30 19:31:23 -0400554 */
555static int mdio_bus_match(struct device *dev, struct device_driver *drv)
556{
Andrew Lunne76a4952016-01-06 20:11:23 +0100557 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400558
David Daneya30e2c12012-06-27 07:33:37 +0000559 if (of_driver_match_device(dev, drv))
560 return 1;
561
Andrew Lunne76a4952016-01-06 20:11:23 +0100562 if (mdio->bus_match)
563 return mdio->bus_match(dev, drv);
David Daneya30e2c12012-06-27 07:33:37 +0000564
Andrew Lunne76a4952016-01-06 20:11:23 +0100565 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400566}
567
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000568#ifdef CONFIG_PM
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000569static int mdio_bus_suspend(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400570{
Andrew Lunnbc879222016-01-06 20:11:21 +0100571 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400572
Andrew Lunnbc879222016-01-06 20:11:21 +0100573 if (mdio->pm_ops && mdio->pm_ops->suspend)
574 return mdio->pm_ops->suspend(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000575
Andrew Lunnbc879222016-01-06 20:11:21 +0100576 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400577}
578
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000579static int mdio_bus_resume(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400580{
Andrew Lunnbc879222016-01-06 20:11:21 +0100581 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400582
Andrew Lunnbc879222016-01-06 20:11:21 +0100583 if (mdio->pm_ops && mdio->pm_ops->resume)
584 return mdio->pm_ops->resume(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000585
586 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400587}
588
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000589static int mdio_bus_restore(struct device *dev)
590{
Andrew Lunnbc879222016-01-06 20:11:21 +0100591 struct mdio_device *mdio = to_mdio_device(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000592
Andrew Lunnbc879222016-01-06 20:11:21 +0100593 if (mdio->pm_ops && mdio->pm_ops->restore)
594 return mdio->pm_ops->restore(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000595
596 return 0;
597}
598
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300599static const struct dev_pm_ops mdio_bus_pm_ops = {
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000600 .suspend = mdio_bus_suspend,
601 .resume = mdio_bus_resume,
602 .freeze = mdio_bus_suspend,
603 .thaw = mdio_bus_resume,
604 .restore = mdio_bus_restore,
605};
606
607#define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
608
609#else
610
611#define MDIO_BUS_PM_OPS NULL
612
613#endif /* CONFIG_PM */
614
Andy Fleming00db8182005-07-30 19:31:23 -0400615struct bus_type mdio_bus_type = {
616 .name = "mdio_bus",
617 .match = mdio_bus_match,
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000618 .pm = MDIO_BUS_PM_OPS,
Andy Fleming00db8182005-07-30 19:31:23 -0400619};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700620EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400621
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400622int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400623{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700624 int ret;
625
626 ret = class_register(&mdio_bus_class);
627 if (!ret) {
628 ret = bus_register(&mdio_bus_type);
629 if (ret)
630 class_unregister(&mdio_bus_class);
631 }
632
633 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400634}
635
Peter Chubbdc85dec2005-09-03 14:05:06 -0700636void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500637{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700638 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500639 bus_unregister(&mdio_bus_type);
640}