blob: 6f9ca51446db3f3089a39ca6095909dea84003f8 [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 Buytenhek298cf9b2008-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 Buytenhek298cf9b2008-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);
105 if (bus) {
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700106 bus->state = MDIOBUS_ALLOCATED;
Timur Tabieb8a54a72012-01-12 15:23:04 -0800107 if (size)
108 bus->priv = (void *)bus + aligned_size;
109 }
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700110
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100111 /* Initialise the interrupts to polling */
112 for (i = 0; i < PHY_MAX_ADDR; i++)
113 bus->irq[i] = PHY_POLL;
114
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700115 return bus;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700116}
Timur Tabieb8a54a72012-01-12 15:23:04 -0800117EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700118
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300119static void _devm_mdiobus_free(struct device *dev, void *res)
120{
121 mdiobus_free(*(struct mii_bus **)res);
122}
123
124static int devm_mdiobus_match(struct device *dev, void *res, void *data)
125{
126 struct mii_bus **r = res;
127
128 if (WARN_ON(!r || !*r))
129 return 0;
130
131 return *r == data;
132}
133
134/**
135 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
136 * @dev: Device to allocate mii_bus for
137 * @sizeof_priv: Space to allocate for private structure.
138 *
139 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
140 * automatically freed on driver detach.
141 *
142 * If an mii_bus allocated with this function needs to be freed separately,
143 * devm_mdiobus_free() must be used.
144 *
145 * RETURNS:
146 * Pointer to allocated mii_bus on success, NULL on failure.
147 */
148struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
149{
150 struct mii_bus **ptr, *bus;
151
152 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
153 if (!ptr)
154 return NULL;
155
156 /* use raw alloc_dr for kmalloc caller tracing */
157 bus = mdiobus_alloc_size(sizeof_priv);
158 if (bus) {
159 *ptr = bus;
160 devres_add(dev, ptr);
161 } else {
162 devres_free(ptr);
163 }
164
165 return bus;
166}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200167EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300168
169/**
170 * devm_mdiobus_free - Resource-managed mdiobus_free()
171 * @dev: Device this mii_bus belongs to
172 * @bus: the mii_bus associated with the device
173 *
174 * Free mii_bus allocated with devm_mdiobus_alloc_size().
175 */
176void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
177{
178 int rc;
179
180 rc = devres_release(dev, _devm_mdiobus_free,
181 devm_mdiobus_match, bus);
182 WARN_ON(rc);
183}
184EXPORT_SYMBOL_GPL(devm_mdiobus_free);
185
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700186/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700187 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700188 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700189 *
190 * Description: called when the last reference to an mii_bus is
191 * dropped, to free the underlying memory.
192 */
193static void mdiobus_release(struct device *d)
194{
195 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800196 BUG_ON(bus->state != MDIOBUS_RELEASED &&
197 /* for compatibility with error handling in drivers */
198 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700199 kfree(bus);
200}
201
202static struct class mdio_bus_class = {
203 .name = "mdio_bus",
204 .dev_release = mdiobus_release,
205};
206
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000207#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000208/* Helper function for of_mdio_find_bus */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100209static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
David Daney25106022012-05-02 15:16:37 +0000210{
211 return dev->of_node == mdio_bus_np;
212}
213/**
214 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000215 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000216 *
Russell Kinga1364422015-09-24 20:35:52 +0100217 * Returns a reference to the mii_bus, or NULL if none found. The
218 * embedded struct device will have its reference count incremented,
219 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000220 *
221 * Because the association of a device_node and mii_bus is made via
222 * of_mdiobus_register(), the mii_bus cannot be found before it is
223 * registered with of_mdiobus_register().
224 *
225 */
226struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
227{
228 struct device *d;
229
230 if (!mdio_bus_np)
231 return NULL;
232
233 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
234 of_mdio_bus_match);
235
236 return d ? to_mii_bus(d) : NULL;
237}
238EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200239
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100240/* Walk the list of subnodes of a mdio bus and look for a node that
241 * matches the mdio device's address with its 'reg' property. If
242 * found, set the of_node pointer for the mdio device. This allows
243 * auto-probed phy devices to be supplied with information passed in
244 * via DT.
Daniel Mackd9daa242014-06-28 01:23:35 +0200245 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100246static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
247 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200248{
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100249 struct device *dev = &mdiodev->dev;
Daniel Mackd9daa242014-06-28 01:23:35 +0200250 struct device_node *child;
251
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100252 if (dev->of_node || !bus->dev.of_node)
Daniel Mackd9daa242014-06-28 01:23:35 +0200253 return;
254
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100255 for_each_available_child_of_node(bus->dev.of_node, child) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200256 int addr;
257 int ret;
258
259 ret = of_property_read_u32(child, "reg", &addr);
260 if (ret < 0) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100261 dev_err(dev, "%s has invalid MDIO address\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200262 child->full_name);
263 continue;
264 }
265
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100266 /* A MDIO device must have a reg property in the range [0-31] */
Daniel Mackd9daa242014-06-28 01:23:35 +0200267 if (addr >= PHY_MAX_ADDR) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100268 dev_err(dev, "%s MDIO address %i is too large\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200269 child->full_name, addr);
270 continue;
271 }
272
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100273 if (addr == mdiodev->addr) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200274 dev->of_node = child;
275 return;
276 }
277 }
278}
279#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100280static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
281 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200282{
283}
David Daney25106022012-05-02 15:16:37 +0000284#endif
285
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700286/**
Russell King59f06972015-09-25 11:56:56 +0100287 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800288 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100289 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500290 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800291 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100292 * on a given bus, and attach them to the bus. Drivers should use
293 * mdiobus_register() rather than __mdiobus_register() unless they
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100294 * need to pass a specific owner module. MDIO devices which are not
295 * PHYs will not be brought up by this function. They are expected to
296 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800297 *
298 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500299 */
Russell King3e3aaf62015-09-24 20:36:02 +0100300int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500301{
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800302 int i, err;
Andy Fleminge1393452005-08-24 18:46:21 -0500303
Andy Fleminge1393452005-08-24 18:46:21 -0500304 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300305 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500306 return -EINVAL;
307
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700308 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
309 bus->state != MDIOBUS_UNREGISTERED);
310
Russell King3e3aaf62015-09-24 20:36:02 +0100311 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700312 bus->dev.parent = bus->parent;
313 bus->dev.class = &mdio_bus_class;
314 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000315 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700316
317 err = device_register(&bus->dev);
318 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000319 pr_err("mii_bus %s failed to register\n", bus->id);
Levente Kurusa0c692d02014-01-30 15:45:46 -0800320 put_device(&bus->dev);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700321 return -EINVAL;
322 }
323
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200324 mutex_init(&bus->mdio_lock);
325
Andy Fleminge1393452005-08-24 18:46:21 -0500326 if (bus->reset)
327 bus->reset(bus);
328
329 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200330 if ((bus->phy_mask & (1 << i)) == 0) {
331 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500332
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200333 phydev = mdiobus_scan(bus, i);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800334 if (IS_ERR(phydev)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200335 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800336 goto error;
337 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400338 }
Andy Fleminge1393452005-08-24 18:46:21 -0500339 }
340
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800341 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500342 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800343 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500344
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800345error:
346 while (--i >= 0) {
Andrew Lunn7f854422016-01-06 20:11:18 +0100347 struct phy_device *phydev = mdiobus_get_phy(bus, i);
Russell King38737e42015-09-24 20:36:28 +0100348 if (phydev) {
349 phy_device_remove(phydev);
350 phy_device_free(phydev);
351 }
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800352 }
353 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500354 return err;
355}
Russell King3e3aaf62015-09-24 20:36:02 +0100356EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500357
358void mdiobus_unregister(struct mii_bus *bus)
359{
360 int i;
361
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700362 BUG_ON(bus->state != MDIOBUS_REGISTERED);
363 bus->state = MDIOBUS_UNREGISTERED;
364
Andy Fleminge1393452005-08-24 18:46:21 -0500365 for (i = 0; i < PHY_MAX_ADDR; i++) {
Andrew Lunn7f854422016-01-06 20:11:18 +0100366 struct phy_device *phydev = mdiobus_get_phy(bus, i);
Russell King38737e42015-09-24 20:36:28 +0100367 if (phydev) {
368 phy_device_remove(phydev);
369 phy_device_free(phydev);
370 }
Andy Fleminge1393452005-08-24 18:46:21 -0500371 }
Mark Salterb6c6aed2015-09-01 09:36:05 -0400372 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500373}
374EXPORT_SYMBOL(mdiobus_unregister);
375
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700376/**
377 * mdiobus_free - free a struct mii_bus
378 * @bus: mii_bus to free
379 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700380 * This function releases the reference to the underlying device
381 * object in the mii_bus. If this is the last reference, the mii_bus
382 * will be freed.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700383 */
384void mdiobus_free(struct mii_bus *bus)
385{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300386 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700387 if (bus->state == MDIOBUS_ALLOCATED) {
388 kfree(bus);
389 return;
390 }
391
392 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
393 bus->state = MDIOBUS_RELEASED;
394
395 put_device(&bus->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700396}
397EXPORT_SYMBOL(mdiobus_free);
398
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100399/**
400 * mdiobus_scan - scan a bus for MDIO devices.
401 * @bus: mii_bus to scan
402 * @addr: address on bus to scan
403 *
404 * This function scans the MDIO bus, looking for devices which can be
405 * identified using a vendor/product ID in registers 2 and 3. Not all
406 * MDIO devices have such registers, but PHY devices typically
407 * do. Hence this function assumes anything found is a PHY, or can be
408 * treated as a PHY. Other MDIO devices, such as switches, will
409 * probably not be found during the scan.
410 */
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200411struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
412{
413 struct phy_device *phydev;
414 int err;
415
David Daneyac28b9f2012-06-27 07:33:35 +0000416 phydev = get_phy_device(bus, addr, false);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200417 if (IS_ERR(phydev) || phydev == NULL)
418 return phydev;
419
Daniel Mack86f6cf42014-05-24 09:34:26 +0200420 /*
421 * For DT, see if the auto-probed phy has a correspoding child
422 * in the bus node, and set the of_node pointer in this case.
423 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100424 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
Daniel Mack86f6cf42014-05-24 09:34:26 +0200425
Grant Likely4dea5472009-04-25 12:52:46 +0000426 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200427 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200428 phy_device_free(phydev);
Grant Likely4dea5472009-04-25 12:52:46 +0000429 return NULL;
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200430 }
431
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200432 return phydev;
433}
434EXPORT_SYMBOL(mdiobus_scan);
435
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800436/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200437 * mdiobus_read_nested - Nested version of the mdiobus_read function
438 * @bus: the mii_bus struct
439 * @addr: the phy address
440 * @regnum: register number to read
441 *
442 * In case of nested MDIO bus access avoid lockdep false positives by
443 * using mutex_lock_nested().
444 *
445 * NOTE: MUST NOT be called from interrupt context,
446 * because the bus read/write functions may wait for an interrupt
447 * to conclude the operation.
448 */
449int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
450{
451 int retval;
452
453 BUG_ON(in_interrupt());
454
455 mutex_lock_nested(&bus->mdio_lock, SINGLE_DEPTH_NESTING);
456 retval = bus->read(bus, addr, regnum);
457 mutex_unlock(&bus->mdio_lock);
458
459 return retval;
460}
461EXPORT_SYMBOL(mdiobus_read_nested);
462
463/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000464 * mdiobus_read - Convenience function for reading a given MII mgmt register
465 * @bus: the mii_bus struct
466 * @addr: the phy address
467 * @regnum: register number to read
468 *
469 * NOTE: MUST NOT be called from interrupt context,
470 * because the bus read/write functions may wait for an interrupt
471 * to conclude the operation.
472 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000473int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000474{
475 int retval;
476
477 BUG_ON(in_interrupt());
478
479 mutex_lock(&bus->mdio_lock);
480 retval = bus->read(bus, addr, regnum);
481 mutex_unlock(&bus->mdio_lock);
482
483 return retval;
484}
485EXPORT_SYMBOL(mdiobus_read);
486
487/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200488 * mdiobus_write_nested - Nested version of the mdiobus_write function
489 * @bus: the mii_bus struct
490 * @addr: the phy address
491 * @regnum: register number to write
492 * @val: value to write to @regnum
493 *
494 * In case of nested MDIO bus access avoid lockdep false positives by
495 * using mutex_lock_nested().
496 *
497 * NOTE: MUST NOT be called from interrupt context,
498 * because the bus read/write functions may wait for an interrupt
499 * to conclude the operation.
500 */
501int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
502{
503 int err;
504
505 BUG_ON(in_interrupt());
506
507 mutex_lock_nested(&bus->mdio_lock, SINGLE_DEPTH_NESTING);
508 err = bus->write(bus, addr, regnum, val);
509 mutex_unlock(&bus->mdio_lock);
510
511 return err;
512}
513EXPORT_SYMBOL(mdiobus_write_nested);
514
515/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000516 * mdiobus_write - Convenience function for writing a given MII mgmt register
517 * @bus: the mii_bus struct
518 * @addr: the phy address
519 * @regnum: register number to write
520 * @val: value to write to @regnum
521 *
522 * NOTE: MUST NOT be called from interrupt context,
523 * because the bus read/write functions may wait for an interrupt
524 * to conclude the operation.
525 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000526int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000527{
528 int err;
529
530 BUG_ON(in_interrupt());
531
532 mutex_lock(&bus->mdio_lock);
533 err = bus->write(bus, addr, regnum, val);
534 mutex_unlock(&bus->mdio_lock);
535
536 return err;
537}
538EXPORT_SYMBOL(mdiobus_write);
539
540/**
Andrew Lunne76a4952016-01-06 20:11:23 +0100541 * mdio_bus_match - determine if given MDIO driver supports the given
542 * MDIO device
543 * @dev: target MDIO device
544 * @drv: given MDIO driver
Andy Fleming00db8182005-07-30 19:31:23 -0400545 *
Andrew Lunne76a4952016-01-06 20:11:23 +0100546 * Description: Given a MDIO device, and a MDIO driver, return 1 if
547 * the driver supports the device. Otherwise, return 0. This may
548 * require calling the devices own match function, since different classes
549 * of MDIO devices have different match criteria.
Andy Fleming00db8182005-07-30 19:31:23 -0400550 */
551static int mdio_bus_match(struct device *dev, struct device_driver *drv)
552{
Andrew Lunne76a4952016-01-06 20:11:23 +0100553 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400554
David Daneya30e2c12012-06-27 07:33:37 +0000555 if (of_driver_match_device(dev, drv))
556 return 1;
557
Andrew Lunne76a4952016-01-06 20:11:23 +0100558 if (mdio->bus_match)
559 return mdio->bus_match(dev, drv);
David Daneya30e2c12012-06-27 07:33:37 +0000560
Andrew Lunne76a4952016-01-06 20:11:23 +0100561 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400562}
563
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000564#ifdef CONFIG_PM
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000565static int mdio_bus_suspend(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400566{
Andrew Lunnbc879222016-01-06 20:11:21 +0100567 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400568
Andrew Lunnbc879222016-01-06 20:11:21 +0100569 if (mdio->pm_ops && mdio->pm_ops->suspend)
570 return mdio->pm_ops->suspend(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000571
Andrew Lunnbc879222016-01-06 20:11:21 +0100572 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400573}
574
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000575static int mdio_bus_resume(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400576{
Andrew Lunnbc879222016-01-06 20:11:21 +0100577 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400578
Andrew Lunnbc879222016-01-06 20:11:21 +0100579 if (mdio->pm_ops && mdio->pm_ops->resume)
580 return mdio->pm_ops->resume(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000581
582 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400583}
584
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000585static int mdio_bus_restore(struct device *dev)
586{
Andrew Lunnbc879222016-01-06 20:11:21 +0100587 struct mdio_device *mdio = to_mdio_device(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000588
Andrew Lunnbc879222016-01-06 20:11:21 +0100589 if (mdio->pm_ops && mdio->pm_ops->restore)
590 return mdio->pm_ops->restore(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000591
592 return 0;
593}
594
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300595static const struct dev_pm_ops mdio_bus_pm_ops = {
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000596 .suspend = mdio_bus_suspend,
597 .resume = mdio_bus_resume,
598 .freeze = mdio_bus_suspend,
599 .thaw = mdio_bus_resume,
600 .restore = mdio_bus_restore,
601};
602
603#define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
604
605#else
606
607#define MDIO_BUS_PM_OPS NULL
608
609#endif /* CONFIG_PM */
610
Andy Fleming00db8182005-07-30 19:31:23 -0400611struct bus_type mdio_bus_type = {
612 .name = "mdio_bus",
613 .match = mdio_bus_match,
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000614 .pm = MDIO_BUS_PM_OPS,
Andy Fleming00db8182005-07-30 19:31:23 -0400615};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700616EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400617
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400618int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400619{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700620 int ret;
621
622 ret = class_register(&mdio_bus_class);
623 if (!ret) {
624 ret = bus_register(&mdio_bus_type);
625 if (ret)
626 class_unregister(&mdio_bus_class);
627 }
628
629 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400630}
631
Peter Chubbdc85dec2005-09-03 14:05:06 -0700632void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500633{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700634 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500635 bus_unregister(&mdio_bus_type);
636}