blob: 5a214f3b867184e9b016b4802850393516d2cba3 [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
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +010041#define CREATE_TRACE_POINTS
42#include <trace/events/mdio.h>
43
Florian Fainelli648ea012017-02-04 13:02:44 -080044#include "mdio-boardinfo.h"
45
Andrew Lunn7f854422016-01-06 20:11:18 +010046int mdiobus_register_device(struct mdio_device *mdiodev)
47{
48 if (mdiodev->bus->mdio_map[mdiodev->addr])
49 return -EBUSY;
50
51 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
52
53 return 0;
54}
55EXPORT_SYMBOL(mdiobus_register_device);
56
57int mdiobus_unregister_device(struct mdio_device *mdiodev)
58{
59 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
60 return -EINVAL;
61
62 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
63
64 return 0;
65}
66EXPORT_SYMBOL(mdiobus_unregister_device);
67
68struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
69{
70 struct mdio_device *mdiodev = bus->mdio_map[addr];
71
72 if (!mdiodev)
73 return NULL;
74
75 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
76 return NULL;
77
78 return container_of(mdiodev, struct phy_device, mdio);
79}
80EXPORT_SYMBOL(mdiobus_get_phy);
81
82bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
83{
84 return bus->mdio_map[addr];
85}
86EXPORT_SYMBOL(mdiobus_is_registered_device);
87
Randy Dunlapb3df0da2007-03-06 02:41:48 -080088/**
Timur Tabieb8a54a72012-01-12 15:23:04 -080089 * mdiobus_alloc_size - allocate a mii_bus structure
Randy Dunlapaf58f1d2012-01-21 09:03:04 +000090 * @size: extra amount of memory to allocate for private storage.
91 * If non-zero, then bus->priv is points to that memory.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070092 *
93 * Description: called by a bus driver to allocate an mii_bus
94 * structure to fill in.
95 */
Timur Tabieb8a54a72012-01-12 15:23:04 -080096struct mii_bus *mdiobus_alloc_size(size_t size)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070097{
Lennert Buytenhek46abc022008-10-08 16:33:40 -070098 struct mii_bus *bus;
Timur Tabieb8a54a72012-01-12 15:23:04 -080099 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
100 size_t alloc_size;
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100101 int i;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700102
Timur Tabieb8a54a72012-01-12 15:23:04 -0800103 /* If we alloc extra space, it should be aligned */
104 if (size)
105 alloc_size = aligned_size + size;
106 else
107 alloc_size = sizeof(*bus);
108
109 bus = kzalloc(alloc_size, GFP_KERNEL);
Dan Carpenterdb9107b2016-01-12 12:34:36 +0300110 if (!bus)
111 return NULL;
112
113 bus->state = MDIOBUS_ALLOCATED;
114 if (size)
115 bus->priv = (void *)bus + aligned_size;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700116
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100117 /* Initialise the interrupts to polling */
118 for (i = 0; i < PHY_MAX_ADDR; i++)
119 bus->irq[i] = PHY_POLL;
120
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700121 return bus;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700122}
Timur Tabieb8a54a72012-01-12 15:23:04 -0800123EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700124
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300125static void _devm_mdiobus_free(struct device *dev, void *res)
126{
127 mdiobus_free(*(struct mii_bus **)res);
128}
129
130static int devm_mdiobus_match(struct device *dev, void *res, void *data)
131{
132 struct mii_bus **r = res;
133
134 if (WARN_ON(!r || !*r))
135 return 0;
136
137 return *r == data;
138}
139
140/**
141 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
142 * @dev: Device to allocate mii_bus for
143 * @sizeof_priv: Space to allocate for private structure.
144 *
145 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
146 * automatically freed on driver detach.
147 *
148 * If an mii_bus allocated with this function needs to be freed separately,
149 * devm_mdiobus_free() must be used.
150 *
151 * RETURNS:
152 * Pointer to allocated mii_bus on success, NULL on failure.
153 */
154struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
155{
156 struct mii_bus **ptr, *bus;
157
158 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
159 if (!ptr)
160 return NULL;
161
162 /* use raw alloc_dr for kmalloc caller tracing */
163 bus = mdiobus_alloc_size(sizeof_priv);
164 if (bus) {
165 *ptr = bus;
166 devres_add(dev, ptr);
167 } else {
168 devres_free(ptr);
169 }
170
171 return bus;
172}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200173EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300174
175/**
176 * devm_mdiobus_free - Resource-managed mdiobus_free()
177 * @dev: Device this mii_bus belongs to
178 * @bus: the mii_bus associated with the device
179 *
180 * Free mii_bus allocated with devm_mdiobus_alloc_size().
181 */
182void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
183{
184 int rc;
185
186 rc = devres_release(dev, _devm_mdiobus_free,
187 devm_mdiobus_match, bus);
188 WARN_ON(rc);
189}
190EXPORT_SYMBOL_GPL(devm_mdiobus_free);
191
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700192/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700193 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700194 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700195 *
196 * Description: called when the last reference to an mii_bus is
197 * dropped, to free the underlying memory.
198 */
199static void mdiobus_release(struct device *d)
200{
201 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800202 BUG_ON(bus->state != MDIOBUS_RELEASED &&
203 /* for compatibility with error handling in drivers */
204 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700205 kfree(bus);
206}
207
208static struct class mdio_bus_class = {
209 .name = "mdio_bus",
210 .dev_release = mdiobus_release,
211};
212
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000213#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000214/* Helper function for of_mdio_find_bus */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100215static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
David Daney25106022012-05-02 15:16:37 +0000216{
217 return dev->of_node == mdio_bus_np;
218}
219/**
220 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000221 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000222 *
Russell Kinga1364422015-09-24 20:35:52 +0100223 * Returns a reference to the mii_bus, or NULL if none found. The
224 * embedded struct device will have its reference count incremented,
225 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000226 *
227 * Because the association of a device_node and mii_bus is made via
228 * of_mdiobus_register(), the mii_bus cannot be found before it is
229 * registered with of_mdiobus_register().
230 *
231 */
232struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
233{
234 struct device *d;
235
236 if (!mdio_bus_np)
237 return NULL;
238
239 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
240 of_mdio_bus_match);
241
242 return d ? to_mii_bus(d) : NULL;
243}
244EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200245
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100246/* Walk the list of subnodes of a mdio bus and look for a node that
247 * matches the mdio device's address with its 'reg' property. If
248 * found, set the of_node pointer for the mdio device. This allows
249 * auto-probed phy devices to be supplied with information passed in
250 * via DT.
Daniel Mackd9daa242014-06-28 01:23:35 +0200251 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100252static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
253 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200254{
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100255 struct device *dev = &mdiodev->dev;
Daniel Mackd9daa242014-06-28 01:23:35 +0200256 struct device_node *child;
257
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100258 if (dev->of_node || !bus->dev.of_node)
Daniel Mackd9daa242014-06-28 01:23:35 +0200259 return;
260
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100261 for_each_available_child_of_node(bus->dev.of_node, child) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200262 int addr;
263 int ret;
264
265 ret = of_property_read_u32(child, "reg", &addr);
266 if (ret < 0) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100267 dev_err(dev, "%s has invalid MDIO address\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200268 child->full_name);
269 continue;
270 }
271
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100272 /* A MDIO device must have a reg property in the range [0-31] */
Daniel Mackd9daa242014-06-28 01:23:35 +0200273 if (addr >= PHY_MAX_ADDR) {
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100274 dev_err(dev, "%s MDIO address %i is too large\n",
Daniel Mackd9daa242014-06-28 01:23:35 +0200275 child->full_name, addr);
276 continue;
277 }
278
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100279 if (addr == mdiodev->addr) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200280 dev->of_node = child;
281 return;
282 }
283 }
284}
285#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100286static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
287 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200288{
289}
David Daney25106022012-05-02 15:16:37 +0000290#endif
291
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700292/**
Florian Fainellid0281a52017-03-28 12:57:09 -0700293 * mdiobus_create_device_from_board_info - create a full MDIO device given
294 * a mdio_board_info structure
295 * @bus: MDIO bus to create the devices on
296 * @bi: mdio_board_info structure describing the devices
297 *
298 * Returns 0 on success or < 0 on error.
299 */
300static int mdiobus_create_device(struct mii_bus *bus,
301 struct mdio_board_info *bi)
302{
303 struct mdio_device *mdiodev;
304 int ret = 0;
305
306 mdiodev = mdio_device_create(bus, bi->mdio_addr);
307 if (IS_ERR(mdiodev))
308 return -ENODEV;
309
310 strncpy(mdiodev->modalias, bi->modalias,
311 sizeof(mdiodev->modalias));
312 mdiodev->bus_match = mdio_device_bus_match;
313 mdiodev->dev.platform_data = (void *)bi->platform_data;
314
315 ret = mdio_device_register(mdiodev);
316 if (ret)
317 mdio_device_free(mdiodev);
318
319 return ret;
320}
321
322/**
Russell King59f06972015-09-25 11:56:56 +0100323 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800324 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100325 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500326 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800327 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100328 * on a given bus, and attach them to the bus. Drivers should use
329 * mdiobus_register() rather than __mdiobus_register() unless they
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100330 * need to pass a specific owner module. MDIO devices which are not
331 * PHYs will not be brought up by this function. They are expected to
332 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800333 *
334 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500335 */
Russell King3e3aaf62015-09-24 20:36:02 +0100336int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500337{
Andrew Lunn711fdba2016-01-06 20:11:27 +0100338 struct mdio_device *mdiodev;
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800339 int i, err;
Andy Fleminge1393452005-08-24 18:46:21 -0500340
Andy Fleminge1393452005-08-24 18:46:21 -0500341 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300342 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500343 return -EINVAL;
344
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700345 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
346 bus->state != MDIOBUS_UNREGISTERED);
347
Russell King3e3aaf62015-09-24 20:36:02 +0100348 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700349 bus->dev.parent = bus->parent;
350 bus->dev.class = &mdio_bus_class;
351 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000352 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700353
354 err = device_register(&bus->dev);
355 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000356 pr_err("mii_bus %s failed to register\n", bus->id);
Levente Kurusa0c692d02014-01-30 15:45:46 -0800357 put_device(&bus->dev);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700358 return -EINVAL;
359 }
360
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200361 mutex_init(&bus->mdio_lock);
362
Andy Fleminge1393452005-08-24 18:46:21 -0500363 if (bus->reset)
364 bus->reset(bus);
365
366 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200367 if ((bus->phy_mask & (1 << i)) == 0) {
368 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500369
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200370 phydev = mdiobus_scan(bus, i);
Marek Vasut70e927b2016-05-02 02:47:31 +0200371 if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200372 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800373 goto error;
374 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400375 }
Andy Fleminge1393452005-08-24 18:46:21 -0500376 }
377
Florian Fainellid0281a52017-03-28 12:57:09 -0700378 mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device);
Florian Fainelli648ea012017-02-04 13:02:44 -0800379
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800380 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500381 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800382 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500383
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800384error:
385 while (--i >= 0) {
Andrew Lunn711fdba2016-01-06 20:11:27 +0100386 mdiodev = bus->mdio_map[i];
387 if (!mdiodev)
388 continue;
389
390 mdiodev->device_remove(mdiodev);
391 mdiodev->device_free(mdiodev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800392 }
393 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500394 return err;
395}
Russell King3e3aaf62015-09-24 20:36:02 +0100396EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500397
398void mdiobus_unregister(struct mii_bus *bus)
399{
Andrew Lunna9049e02016-01-06 20:11:26 +0100400 struct mdio_device *mdiodev;
Andy Fleminge1393452005-08-24 18:46:21 -0500401 int i;
402
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700403 BUG_ON(bus->state != MDIOBUS_REGISTERED);
404 bus->state = MDIOBUS_UNREGISTERED;
405
Andy Fleminge1393452005-08-24 18:46:21 -0500406 for (i = 0; i < PHY_MAX_ADDR; i++) {
Andrew Lunna9049e02016-01-06 20:11:26 +0100407 mdiodev = bus->mdio_map[i];
408 if (!mdiodev)
409 continue;
410
Andrew Lunn711fdba2016-01-06 20:11:27 +0100411 mdiodev->device_remove(mdiodev);
412 mdiodev->device_free(mdiodev);
Andy Fleminge1393452005-08-24 18:46:21 -0500413 }
Mark Salterb6c6aed2015-09-01 09:36:05 -0400414 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500415}
416EXPORT_SYMBOL(mdiobus_unregister);
417
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700418/**
419 * mdiobus_free - free a struct mii_bus
420 * @bus: mii_bus to free
421 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700422 * This function releases the reference to the underlying device
423 * object in the mii_bus. If this is the last reference, the mii_bus
424 * will be freed.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700425 */
426void mdiobus_free(struct mii_bus *bus)
427{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300428 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700429 if (bus->state == MDIOBUS_ALLOCATED) {
430 kfree(bus);
431 return;
432 }
433
434 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
435 bus->state = MDIOBUS_RELEASED;
436
437 put_device(&bus->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700438}
439EXPORT_SYMBOL(mdiobus_free);
440
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100441/**
442 * mdiobus_scan - scan a bus for MDIO devices.
443 * @bus: mii_bus to scan
444 * @addr: address on bus to scan
445 *
446 * This function scans the MDIO bus, looking for devices which can be
447 * identified using a vendor/product ID in registers 2 and 3. Not all
448 * MDIO devices have such registers, but PHY devices typically
449 * do. Hence this function assumes anything found is a PHY, or can be
450 * treated as a PHY. Other MDIO devices, such as switches, will
451 * probably not be found during the scan.
452 */
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200453struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
454{
455 struct phy_device *phydev;
456 int err;
457
David Daneyac28b9f2012-06-27 07:33:35 +0000458 phydev = get_phy_device(bus, addr, false);
Sergei Shtylyov66c239e2016-04-24 20:30:53 +0300459 if (IS_ERR(phydev))
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200460 return phydev;
461
Daniel Mack86f6cf42014-05-24 09:34:26 +0200462 /*
463 * For DT, see if the auto-probed phy has a correspoding child
464 * in the bus node, and set the of_node pointer in this case.
465 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100466 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
Daniel Mack86f6cf42014-05-24 09:34:26 +0200467
Grant Likely4dea5472009-04-25 12:52:46 +0000468 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200469 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200470 phy_device_free(phydev);
Sergei Shtylyove98a3aa2016-05-03 23:14:41 +0300471 return ERR_PTR(-ENODEV);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200472 }
473
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200474 return phydev;
475}
476EXPORT_SYMBOL(mdiobus_scan);
477
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800478/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200479 * mdiobus_read_nested - Nested version of the mdiobus_read function
480 * @bus: the mii_bus struct
481 * @addr: the phy address
482 * @regnum: register number to read
483 *
484 * In case of nested MDIO bus access avoid lockdep false positives by
485 * using mutex_lock_nested().
486 *
487 * NOTE: MUST NOT be called from interrupt context,
488 * because the bus read/write functions may wait for an interrupt
489 * to conclude the operation.
490 */
491int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
492{
493 int retval;
494
495 BUG_ON(in_interrupt());
496
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200497 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200498 retval = bus->read(bus, addr, regnum);
499 mutex_unlock(&bus->mdio_lock);
500
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100501 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
502
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200503 return retval;
504}
505EXPORT_SYMBOL(mdiobus_read_nested);
506
507/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000508 * mdiobus_read - Convenience function for reading a given MII mgmt register
509 * @bus: the mii_bus struct
510 * @addr: the phy address
511 * @regnum: register number to read
512 *
513 * NOTE: MUST NOT be called from interrupt context,
514 * because the bus read/write functions may wait for an interrupt
515 * to conclude the operation.
516 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000517int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000518{
519 int retval;
520
521 BUG_ON(in_interrupt());
522
523 mutex_lock(&bus->mdio_lock);
524 retval = bus->read(bus, addr, regnum);
525 mutex_unlock(&bus->mdio_lock);
526
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100527 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
528
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000529 return retval;
530}
531EXPORT_SYMBOL(mdiobus_read);
532
533/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200534 * mdiobus_write_nested - Nested version of the mdiobus_write function
535 * @bus: the mii_bus struct
536 * @addr: the phy address
537 * @regnum: register number to write
538 * @val: value to write to @regnum
539 *
540 * In case of nested MDIO bus access avoid lockdep false positives by
541 * using mutex_lock_nested().
542 *
543 * NOTE: MUST NOT be called from interrupt context,
544 * because the bus read/write functions may wait for an interrupt
545 * to conclude the operation.
546 */
547int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
548{
549 int err;
550
551 BUG_ON(in_interrupt());
552
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200553 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200554 err = bus->write(bus, addr, regnum, val);
555 mutex_unlock(&bus->mdio_lock);
556
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100557 trace_mdio_access(bus, 0, addr, regnum, val, err);
558
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200559 return err;
560}
561EXPORT_SYMBOL(mdiobus_write_nested);
562
563/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000564 * mdiobus_write - Convenience function for writing a given MII mgmt register
565 * @bus: the mii_bus struct
566 * @addr: the phy address
567 * @regnum: register number to write
568 * @val: value to write to @regnum
569 *
570 * NOTE: MUST NOT be called from interrupt context,
571 * because the bus read/write functions may wait for an interrupt
572 * to conclude the operation.
573 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000574int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000575{
576 int err;
577
578 BUG_ON(in_interrupt());
579
580 mutex_lock(&bus->mdio_lock);
581 err = bus->write(bus, addr, regnum, val);
582 mutex_unlock(&bus->mdio_lock);
583
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100584 trace_mdio_access(bus, 0, addr, regnum, val, err);
585
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000586 return err;
587}
588EXPORT_SYMBOL(mdiobus_write);
589
590/**
Andrew Lunne76a4952016-01-06 20:11:23 +0100591 * mdio_bus_match - determine if given MDIO driver supports the given
592 * MDIO device
593 * @dev: target MDIO device
594 * @drv: given MDIO driver
Andy Fleming00db8182005-07-30 19:31:23 -0400595 *
Andrew Lunne76a4952016-01-06 20:11:23 +0100596 * Description: Given a MDIO device, and a MDIO driver, return 1 if
597 * the driver supports the device. Otherwise, return 0. This may
598 * require calling the devices own match function, since different classes
599 * of MDIO devices have different match criteria.
Andy Fleming00db8182005-07-30 19:31:23 -0400600 */
601static int mdio_bus_match(struct device *dev, struct device_driver *drv)
602{
Andrew Lunne76a4952016-01-06 20:11:23 +0100603 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400604
David Daneya30e2c12012-06-27 07:33:37 +0000605 if (of_driver_match_device(dev, drv))
606 return 1;
607
Andrew Lunne76a4952016-01-06 20:11:23 +0100608 if (mdio->bus_match)
609 return mdio->bus_match(dev, drv);
David Daneya30e2c12012-06-27 07:33:37 +0000610
Andrew Lunne76a4952016-01-06 20:11:23 +0100611 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400612}
613
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000614#ifdef CONFIG_PM
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000615static int mdio_bus_suspend(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400616{
Andrew Lunnbc879222016-01-06 20:11:21 +0100617 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400618
Andrew Lunnbc879222016-01-06 20:11:21 +0100619 if (mdio->pm_ops && mdio->pm_ops->suspend)
620 return mdio->pm_ops->suspend(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000621
Andrew Lunnbc879222016-01-06 20:11:21 +0100622 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400623}
624
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000625static int mdio_bus_resume(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400626{
Andrew Lunnbc879222016-01-06 20:11:21 +0100627 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400628
Andrew Lunnbc879222016-01-06 20:11:21 +0100629 if (mdio->pm_ops && mdio->pm_ops->resume)
630 return mdio->pm_ops->resume(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000631
632 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400633}
634
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000635static int mdio_bus_restore(struct device *dev)
636{
Andrew Lunnbc879222016-01-06 20:11:21 +0100637 struct mdio_device *mdio = to_mdio_device(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000638
Andrew Lunnbc879222016-01-06 20:11:21 +0100639 if (mdio->pm_ops && mdio->pm_ops->restore)
640 return mdio->pm_ops->restore(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000641
642 return 0;
643}
644
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300645static const struct dev_pm_ops mdio_bus_pm_ops = {
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000646 .suspend = mdio_bus_suspend,
647 .resume = mdio_bus_resume,
648 .freeze = mdio_bus_suspend,
649 .thaw = mdio_bus_resume,
650 .restore = mdio_bus_restore,
651};
652
653#define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
654
655#else
656
657#define MDIO_BUS_PM_OPS NULL
658
659#endif /* CONFIG_PM */
660
Andy Fleming00db8182005-07-30 19:31:23 -0400661struct bus_type mdio_bus_type = {
662 .name = "mdio_bus",
663 .match = mdio_bus_match,
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000664 .pm = MDIO_BUS_PM_OPS,
Andy Fleming00db8182005-07-30 19:31:23 -0400665};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700666EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400667
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400668int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400669{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700670 int ret;
671
672 ret = class_register(&mdio_bus_class);
673 if (!ret) {
674 ret = bus_register(&mdio_bus_type);
675 if (ret)
676 class_unregister(&mdio_bus_class);
677 }
678
679 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400680}
Florian Fainelli90eff902017-03-23 10:01:19 -0700681EXPORT_SYMBOL_GPL(mdio_bus_init);
Andy Fleming00db8182005-07-30 19:31:23 -0400682
Florian Fainelli90eff902017-03-23 10:01:19 -0700683#if IS_ENABLED(CONFIG_PHYLIB)
Peter Chubbdc85dec2005-09-03 14:05:06 -0700684void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500685{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700686 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500687 bus_unregister(&mdio_bus_type);
688}
Florian Fainelli90eff902017-03-23 10:01:19 -0700689EXPORT_SYMBOL_GPL(mdio_bus_exit);
690#else
691module_init(mdio_bus_init);
692/* no module_exit, intentional */
693MODULE_LICENSE("GPL");
694MODULE_DESCRIPTION("MDIO bus/device layer");
695#endif