blob: 5d37716e779692367acd96ca87ed744403562043 [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>
Roger Quadros69226892017-04-21 16:15:38 +030025#include <linux/gpio.h>
26#include <linux/gpio/consumer.h>
David Daneya30e2c12012-06-27 07:33:37 +000027#include <linux/of_device.h>
Mark Brown4085a7f2012-10-08 22:55:43 +000028#include <linux/of_mdio.h>
Roger Quadros69226892017-04-21 16:15:38 +030029#include <linux/of_gpio.h>
Andy Fleming00db8182005-07-30 19:31:23 -040030#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/skbuff.h>
33#include <linux/spinlock.h>
34#include <linux/mm.h>
35#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040036#include <linux/mii.h>
37#include <linux/ethtool.h>
38#include <linux/phy.h>
Sergei Shtylyov02d320c2014-01-05 03:18:27 +030039#include <linux/io.h>
40#include <linux/uaccess.h>
Andy Fleming00db8182005-07-30 19:31:23 -040041
Andy Fleming00db8182005-07-30 19:31:23 -040042#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040043
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +010044#define CREATE_TRACE_POINTS
45#include <trace/events/mdio.h>
46
Florian Fainelli648ea012017-02-04 13:02:44 -080047#include "mdio-boardinfo.h"
48
Andrew Lunn7f854422016-01-06 20:11:18 +010049int mdiobus_register_device(struct mdio_device *mdiodev)
50{
51 if (mdiodev->bus->mdio_map[mdiodev->addr])
52 return -EBUSY;
53
54 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
55
56 return 0;
57}
58EXPORT_SYMBOL(mdiobus_register_device);
59
60int mdiobus_unregister_device(struct mdio_device *mdiodev)
61{
62 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
63 return -EINVAL;
64
65 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
66
67 return 0;
68}
69EXPORT_SYMBOL(mdiobus_unregister_device);
70
71struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
72{
73 struct mdio_device *mdiodev = bus->mdio_map[addr];
74
75 if (!mdiodev)
76 return NULL;
77
78 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
79 return NULL;
80
81 return container_of(mdiodev, struct phy_device, mdio);
82}
83EXPORT_SYMBOL(mdiobus_get_phy);
84
85bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
86{
87 return bus->mdio_map[addr];
88}
89EXPORT_SYMBOL(mdiobus_is_registered_device);
90
Randy Dunlapb3df0da2007-03-06 02:41:48 -080091/**
Timur Tabieb8a54a72012-01-12 15:23:04 -080092 * mdiobus_alloc_size - allocate a mii_bus structure
Randy Dunlapaf58f1d2012-01-21 09:03:04 +000093 * @size: extra amount of memory to allocate for private storage.
94 * If non-zero, then bus->priv is points to that memory.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -070095 *
96 * Description: called by a bus driver to allocate an mii_bus
97 * structure to fill in.
98 */
Timur Tabieb8a54a72012-01-12 15:23:04 -080099struct mii_bus *mdiobus_alloc_size(size_t size)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700100{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700101 struct mii_bus *bus;
Timur Tabieb8a54a72012-01-12 15:23:04 -0800102 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
103 size_t alloc_size;
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100104 int i;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700105
Timur Tabieb8a54a72012-01-12 15:23:04 -0800106 /* If we alloc extra space, it should be aligned */
107 if (size)
108 alloc_size = aligned_size + size;
109 else
110 alloc_size = sizeof(*bus);
111
112 bus = kzalloc(alloc_size, GFP_KERNEL);
Dan Carpenterdb9107b2016-01-12 12:34:36 +0300113 if (!bus)
114 return NULL;
115
116 bus->state = MDIOBUS_ALLOCATED;
117 if (size)
118 bus->priv = (void *)bus + aligned_size;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700119
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100120 /* Initialise the interrupts to polling */
121 for (i = 0; i < PHY_MAX_ADDR; i++)
122 bus->irq[i] = PHY_POLL;
123
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700124 return bus;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700125}
Timur Tabieb8a54a72012-01-12 15:23:04 -0800126EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700127
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300128static void _devm_mdiobus_free(struct device *dev, void *res)
129{
130 mdiobus_free(*(struct mii_bus **)res);
131}
132
133static int devm_mdiobus_match(struct device *dev, void *res, void *data)
134{
135 struct mii_bus **r = res;
136
137 if (WARN_ON(!r || !*r))
138 return 0;
139
140 return *r == data;
141}
142
143/**
144 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
145 * @dev: Device to allocate mii_bus for
146 * @sizeof_priv: Space to allocate for private structure.
147 *
148 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
149 * automatically freed on driver detach.
150 *
151 * If an mii_bus allocated with this function needs to be freed separately,
152 * devm_mdiobus_free() must be used.
153 *
154 * RETURNS:
155 * Pointer to allocated mii_bus on success, NULL on failure.
156 */
157struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
158{
159 struct mii_bus **ptr, *bus;
160
161 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
162 if (!ptr)
163 return NULL;
164
165 /* use raw alloc_dr for kmalloc caller tracing */
166 bus = mdiobus_alloc_size(sizeof_priv);
167 if (bus) {
168 *ptr = bus;
169 devres_add(dev, ptr);
170 } else {
171 devres_free(ptr);
172 }
173
174 return bus;
175}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200176EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300177
178/**
179 * devm_mdiobus_free - Resource-managed mdiobus_free()
180 * @dev: Device this mii_bus belongs to
181 * @bus: the mii_bus associated with the device
182 *
183 * Free mii_bus allocated with devm_mdiobus_alloc_size().
184 */
185void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
186{
187 int rc;
188
189 rc = devres_release(dev, _devm_mdiobus_free,
190 devm_mdiobus_match, bus);
191 WARN_ON(rc);
192}
193EXPORT_SYMBOL_GPL(devm_mdiobus_free);
194
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700195/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700196 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700197 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700198 *
199 * Description: called when the last reference to an mii_bus is
200 * dropped, to free the underlying memory.
201 */
202static void mdiobus_release(struct device *d)
203{
204 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800205 BUG_ON(bus->state != MDIOBUS_RELEASED &&
206 /* for compatibility with error handling in drivers */
207 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700208 kfree(bus);
209}
210
211static struct class mdio_bus_class = {
212 .name = "mdio_bus",
213 .dev_release = mdiobus_release,
214};
215
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000216#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000217/* Helper function for of_mdio_find_bus */
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100218static int of_mdio_bus_match(struct device *dev, const void *mdio_bus_np)
David Daney25106022012-05-02 15:16:37 +0000219{
220 return dev->of_node == mdio_bus_np;
221}
222/**
223 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000224 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000225 *
Russell Kinga1364422015-09-24 20:35:52 +0100226 * Returns a reference to the mii_bus, or NULL if none found. The
227 * embedded struct device will have its reference count incremented,
228 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000229 *
230 * Because the association of a device_node and mii_bus is made via
231 * of_mdiobus_register(), the mii_bus cannot be found before it is
232 * registered with of_mdiobus_register().
233 *
234 */
235struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
236{
237 struct device *d;
238
239 if (!mdio_bus_np)
240 return NULL;
241
242 d = class_find_device(&mdio_bus_class, NULL, mdio_bus_np,
243 of_mdio_bus_match);
244
245 return d ? to_mii_bus(d) : NULL;
246}
247EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200248
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100249/* Walk the list of subnodes of a mdio bus and look for a node that
250 * matches the mdio device's address with its 'reg' property. If
251 * found, set the of_node pointer for the mdio device. This allows
252 * auto-probed phy devices to be supplied with information passed in
253 * via DT.
Daniel Mackd9daa242014-06-28 01:23:35 +0200254 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100255static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
256 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200257{
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100258 struct device *dev = &mdiodev->dev;
Daniel Mackd9daa242014-06-28 01:23:35 +0200259 struct device_node *child;
260
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100261 if (dev->of_node || !bus->dev.of_node)
Daniel Mackd9daa242014-06-28 01:23:35 +0200262 return;
263
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100264 for_each_available_child_of_node(bus->dev.of_node, child) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200265 int addr;
Daniel Mackd9daa242014-06-28 01:23:35 +0200266
Jon Masond0a654002017-05-31 15:43:30 -0400267 addr = of_mdio_parse_addr(dev, child);
268 if (addr < 0)
Daniel Mackd9daa242014-06-28 01:23:35 +0200269 continue;
Daniel Mackd9daa242014-06-28 01:23:35 +0200270
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100271 if (addr == mdiodev->addr) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200272 dev->of_node = child;
273 return;
274 }
275 }
276}
277#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100278static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
279 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200280{
281}
David Daney25106022012-05-02 15:16:37 +0000282#endif
283
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700284/**
Florian Fainellid0281a52017-03-28 12:57:09 -0700285 * mdiobus_create_device_from_board_info - create a full MDIO device given
286 * a mdio_board_info structure
287 * @bus: MDIO bus to create the devices on
288 * @bi: mdio_board_info structure describing the devices
289 *
290 * Returns 0 on success or < 0 on error.
291 */
292static int mdiobus_create_device(struct mii_bus *bus,
293 struct mdio_board_info *bi)
294{
295 struct mdio_device *mdiodev;
296 int ret = 0;
297
298 mdiodev = mdio_device_create(bus, bi->mdio_addr);
299 if (IS_ERR(mdiodev))
300 return -ENODEV;
301
302 strncpy(mdiodev->modalias, bi->modalias,
303 sizeof(mdiodev->modalias));
304 mdiodev->bus_match = mdio_device_bus_match;
305 mdiodev->dev.platform_data = (void *)bi->platform_data;
306
307 ret = mdio_device_register(mdiodev);
308 if (ret)
309 mdio_device_free(mdiodev);
310
311 return ret;
312}
313
314/**
Russell King59f06972015-09-25 11:56:56 +0100315 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800316 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100317 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500318 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800319 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100320 * on a given bus, and attach them to the bus. Drivers should use
321 * mdiobus_register() rather than __mdiobus_register() unless they
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100322 * need to pass a specific owner module. MDIO devices which are not
323 * PHYs will not be brought up by this function. They are expected to
324 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800325 *
326 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500327 */
Russell King3e3aaf62015-09-24 20:36:02 +0100328int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500329{
Andrew Lunn711fdba2016-01-06 20:11:27 +0100330 struct mdio_device *mdiodev;
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800331 int i, err;
Roger Quadros69226892017-04-21 16:15:38 +0300332 struct gpio_desc *gpiod;
Andy Fleminge1393452005-08-24 18:46:21 -0500333
Andy Fleminge1393452005-08-24 18:46:21 -0500334 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300335 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500336 return -EINVAL;
337
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700338 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
339 bus->state != MDIOBUS_UNREGISTERED);
340
Russell King3e3aaf62015-09-24 20:36:02 +0100341 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700342 bus->dev.parent = bus->parent;
343 bus->dev.class = &mdio_bus_class;
344 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000345 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700346
347 err = device_register(&bus->dev);
348 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000349 pr_err("mii_bus %s failed to register\n", bus->id);
Levente Kurusa0c692d02014-01-30 15:45:46 -0800350 put_device(&bus->dev);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700351 return -EINVAL;
352 }
353
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200354 mutex_init(&bus->mdio_lock);
355
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300356 /* de-assert bus level PHY GPIO reset */
357 gpiod = devm_gpiod_get(&bus->dev, "reset", GPIOD_OUT_LOW);
358 if (IS_ERR(gpiod)) {
359 err = PTR_ERR(gpiod);
360 if (err != -ENOENT) {
361 dev_err(&bus->dev,
362 "mii_bus %s couldn't get reset GPIO\n",
363 bus->id);
364 return err;
Roger Quadros69226892017-04-21 16:15:38 +0300365 }
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300366 } else {
367 bus->reset_gpiod = gpiod;
368
369 gpiod_set_value_cansleep(gpiod, 1);
370 udelay(bus->reset_delay_us);
371 gpiod_set_value_cansleep(gpiod, 0);
Roger Quadros69226892017-04-21 16:15:38 +0300372 }
373
Florian Fainellidf0c8d92017-05-11 11:24:16 -0700374 if (bus->reset)
375 bus->reset(bus);
376
Andy Fleminge1393452005-08-24 18:46:21 -0500377 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200378 if ((bus->phy_mask & (1 << i)) == 0) {
379 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500380
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200381 phydev = mdiobus_scan(bus, i);
Marek Vasut70e927b2016-05-02 02:47:31 +0200382 if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200383 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800384 goto error;
385 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400386 }
Andy Fleminge1393452005-08-24 18:46:21 -0500387 }
388
Florian Fainellid0281a52017-03-28 12:57:09 -0700389 mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device);
Florian Fainelli648ea012017-02-04 13:02:44 -0800390
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800391 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500392 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800393 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500394
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800395error:
396 while (--i >= 0) {
Andrew Lunn711fdba2016-01-06 20:11:27 +0100397 mdiodev = bus->mdio_map[i];
398 if (!mdiodev)
399 continue;
400
401 mdiodev->device_remove(mdiodev);
402 mdiodev->device_free(mdiodev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800403 }
Roger Quadros69226892017-04-21 16:15:38 +0300404
405 /* Put PHYs in RESET to save power */
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300406 if (bus->reset_gpiod)
407 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
Roger Quadros69226892017-04-21 16:15:38 +0300408
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800409 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500410 return err;
411}
Russell King3e3aaf62015-09-24 20:36:02 +0100412EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500413
414void mdiobus_unregister(struct mii_bus *bus)
415{
Andrew Lunna9049e02016-01-06 20:11:26 +0100416 struct mdio_device *mdiodev;
Andy Fleminge1393452005-08-24 18:46:21 -0500417 int i;
418
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700419 BUG_ON(bus->state != MDIOBUS_REGISTERED);
420 bus->state = MDIOBUS_UNREGISTERED;
421
Andy Fleminge1393452005-08-24 18:46:21 -0500422 for (i = 0; i < PHY_MAX_ADDR; i++) {
Andrew Lunna9049e02016-01-06 20:11:26 +0100423 mdiodev = bus->mdio_map[i];
424 if (!mdiodev)
425 continue;
426
Andrew Lunn711fdba2016-01-06 20:11:27 +0100427 mdiodev->device_remove(mdiodev);
428 mdiodev->device_free(mdiodev);
Andy Fleminge1393452005-08-24 18:46:21 -0500429 }
Roger Quadros69226892017-04-21 16:15:38 +0300430
431 /* Put PHYs in RESET to save power */
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300432 if (bus->reset_gpiod)
433 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
Roger Quadros69226892017-04-21 16:15:38 +0300434
Mark Salterb6c6aed2015-09-01 09:36:05 -0400435 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500436}
437EXPORT_SYMBOL(mdiobus_unregister);
438
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700439/**
440 * mdiobus_free - free a struct mii_bus
441 * @bus: mii_bus to free
442 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700443 * This function releases the reference to the underlying device
444 * object in the mii_bus. If this is the last reference, the mii_bus
445 * will be freed.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700446 */
447void mdiobus_free(struct mii_bus *bus)
448{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300449 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700450 if (bus->state == MDIOBUS_ALLOCATED) {
451 kfree(bus);
452 return;
453 }
454
455 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
456 bus->state = MDIOBUS_RELEASED;
457
458 put_device(&bus->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700459}
460EXPORT_SYMBOL(mdiobus_free);
461
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100462/**
463 * mdiobus_scan - scan a bus for MDIO devices.
464 * @bus: mii_bus to scan
465 * @addr: address on bus to scan
466 *
467 * This function scans the MDIO bus, looking for devices which can be
468 * identified using a vendor/product ID in registers 2 and 3. Not all
469 * MDIO devices have such registers, but PHY devices typically
470 * do. Hence this function assumes anything found is a PHY, or can be
471 * treated as a PHY. Other MDIO devices, such as switches, will
472 * probably not be found during the scan.
473 */
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200474struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
475{
476 struct phy_device *phydev;
477 int err;
478
David Daneyac28b9f2012-06-27 07:33:35 +0000479 phydev = get_phy_device(bus, addr, false);
Sergei Shtylyov66c239e2016-04-24 20:30:53 +0300480 if (IS_ERR(phydev))
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200481 return phydev;
482
Daniel Mack86f6cf42014-05-24 09:34:26 +0200483 /*
484 * For DT, see if the auto-probed phy has a correspoding child
485 * in the bus node, and set the of_node pointer in this case.
486 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100487 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
Daniel Mack86f6cf42014-05-24 09:34:26 +0200488
Grant Likely4dea5472009-04-25 12:52:46 +0000489 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200490 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200491 phy_device_free(phydev);
Sergei Shtylyove98a3aa2016-05-03 23:14:41 +0300492 return ERR_PTR(-ENODEV);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200493 }
494
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200495 return phydev;
496}
497EXPORT_SYMBOL(mdiobus_scan);
498
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800499/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200500 * mdiobus_read_nested - Nested version of the mdiobus_read function
501 * @bus: the mii_bus struct
502 * @addr: the phy address
503 * @regnum: register number to read
504 *
505 * In case of nested MDIO bus access avoid lockdep false positives by
506 * using mutex_lock_nested().
507 *
508 * NOTE: MUST NOT be called from interrupt context,
509 * because the bus read/write functions may wait for an interrupt
510 * to conclude the operation.
511 */
512int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
513{
514 int retval;
515
516 BUG_ON(in_interrupt());
517
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200518 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200519 retval = bus->read(bus, addr, regnum);
520 mutex_unlock(&bus->mdio_lock);
521
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100522 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
523
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200524 return retval;
525}
526EXPORT_SYMBOL(mdiobus_read_nested);
527
528/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000529 * mdiobus_read - Convenience function for reading a given MII mgmt register
530 * @bus: the mii_bus struct
531 * @addr: the phy address
532 * @regnum: register number to read
533 *
534 * NOTE: MUST NOT be called from interrupt context,
535 * because the bus read/write functions may wait for an interrupt
536 * to conclude the operation.
537 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000538int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000539{
540 int retval;
541
542 BUG_ON(in_interrupt());
543
544 mutex_lock(&bus->mdio_lock);
545 retval = bus->read(bus, addr, regnum);
546 mutex_unlock(&bus->mdio_lock);
547
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100548 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
549
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000550 return retval;
551}
552EXPORT_SYMBOL(mdiobus_read);
553
554/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200555 * mdiobus_write_nested - Nested version of the mdiobus_write function
556 * @bus: the mii_bus struct
557 * @addr: the phy address
558 * @regnum: register number to write
559 * @val: value to write to @regnum
560 *
561 * In case of nested MDIO bus access avoid lockdep false positives by
562 * using mutex_lock_nested().
563 *
564 * NOTE: MUST NOT be called from interrupt context,
565 * because the bus read/write functions may wait for an interrupt
566 * to conclude the operation.
567 */
568int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
569{
570 int err;
571
572 BUG_ON(in_interrupt());
573
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200574 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200575 err = bus->write(bus, addr, regnum, val);
576 mutex_unlock(&bus->mdio_lock);
577
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100578 trace_mdio_access(bus, 0, addr, regnum, val, err);
579
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200580 return err;
581}
582EXPORT_SYMBOL(mdiobus_write_nested);
583
584/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000585 * mdiobus_write - Convenience function for writing a given MII mgmt register
586 * @bus: the mii_bus struct
587 * @addr: the phy address
588 * @regnum: register number to write
589 * @val: value to write to @regnum
590 *
591 * NOTE: MUST NOT be called from interrupt context,
592 * because the bus read/write functions may wait for an interrupt
593 * to conclude the operation.
594 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000595int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000596{
597 int err;
598
599 BUG_ON(in_interrupt());
600
601 mutex_lock(&bus->mdio_lock);
602 err = bus->write(bus, addr, regnum, val);
603 mutex_unlock(&bus->mdio_lock);
604
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +0100605 trace_mdio_access(bus, 0, addr, regnum, val, err);
606
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000607 return err;
608}
609EXPORT_SYMBOL(mdiobus_write);
610
611/**
Andrew Lunne76a4952016-01-06 20:11:23 +0100612 * mdio_bus_match - determine if given MDIO driver supports the given
613 * MDIO device
614 * @dev: target MDIO device
615 * @drv: given MDIO driver
Andy Fleming00db8182005-07-30 19:31:23 -0400616 *
Andrew Lunne76a4952016-01-06 20:11:23 +0100617 * Description: Given a MDIO device, and a MDIO driver, return 1 if
618 * the driver supports the device. Otherwise, return 0. This may
619 * require calling the devices own match function, since different classes
620 * of MDIO devices have different match criteria.
Andy Fleming00db8182005-07-30 19:31:23 -0400621 */
622static int mdio_bus_match(struct device *dev, struct device_driver *drv)
623{
Andrew Lunne76a4952016-01-06 20:11:23 +0100624 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400625
David Daneya30e2c12012-06-27 07:33:37 +0000626 if (of_driver_match_device(dev, drv))
627 return 1;
628
Andrew Lunne76a4952016-01-06 20:11:23 +0100629 if (mdio->bus_match)
630 return mdio->bus_match(dev, drv);
David Daneya30e2c12012-06-27 07:33:37 +0000631
Andrew Lunne76a4952016-01-06 20:11:23 +0100632 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400633}
634
Russell King1b8f8692017-05-30 21:38:18 +0100635static int mdio_uevent(struct device *dev, struct kobj_uevent_env *env)
636{
637 int rc;
638
639 /* Some devices have extra OF data and an OF-style MODALIAS */
640 rc = of_device_uevent_modalias(dev, env);
641 if (rc != -ENODEV)
642 return rc;
643
644 return 0;
645}
646
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000647#ifdef CONFIG_PM
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000648static int mdio_bus_suspend(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400649{
Andrew Lunnbc879222016-01-06 20:11:21 +0100650 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400651
Andrew Lunnbc879222016-01-06 20:11:21 +0100652 if (mdio->pm_ops && mdio->pm_ops->suspend)
653 return mdio->pm_ops->suspend(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000654
Andrew Lunnbc879222016-01-06 20:11:21 +0100655 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400656}
657
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000658static int mdio_bus_resume(struct device *dev)
Andy Fleming00db8182005-07-30 19:31:23 -0400659{
Andrew Lunnbc879222016-01-06 20:11:21 +0100660 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400661
Andrew Lunnbc879222016-01-06 20:11:21 +0100662 if (mdio->pm_ops && mdio->pm_ops->resume)
663 return mdio->pm_ops->resume(dev);
Anton Vorontsov541cd3e2009-12-30 08:23:28 +0000664
665 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400666}
667
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000668static int mdio_bus_restore(struct device *dev)
669{
Andrew Lunnbc879222016-01-06 20:11:21 +0100670 struct mdio_device *mdio = to_mdio_device(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000671
Andrew Lunnbc879222016-01-06 20:11:21 +0100672 if (mdio->pm_ops && mdio->pm_ops->restore)
673 return mdio->pm_ops->restore(dev);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000674
675 return 0;
676}
677
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300678static const struct dev_pm_ops mdio_bus_pm_ops = {
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000679 .suspend = mdio_bus_suspend,
680 .resume = mdio_bus_resume,
681 .freeze = mdio_bus_suspend,
682 .thaw = mdio_bus_resume,
683 .restore = mdio_bus_restore,
684};
685
686#define MDIO_BUS_PM_OPS (&mdio_bus_pm_ops)
687
688#else
689
690#define MDIO_BUS_PM_OPS NULL
691
692#endif /* CONFIG_PM */
693
Andy Fleming00db8182005-07-30 19:31:23 -0400694struct bus_type mdio_bus_type = {
695 .name = "mdio_bus",
696 .match = mdio_bus_match,
Russell King1b8f8692017-05-30 21:38:18 +0100697 .uevent = mdio_uevent,
Anton Vorontsov2f5cb432009-12-30 08:23:30 +0000698 .pm = MDIO_BUS_PM_OPS,
Andy Fleming00db8182005-07-30 19:31:23 -0400699};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700700EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400701
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400702int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400703{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700704 int ret;
705
706 ret = class_register(&mdio_bus_class);
707 if (!ret) {
708 ret = bus_register(&mdio_bus_type);
709 if (ret)
710 class_unregister(&mdio_bus_class);
711 }
712
713 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400714}
Florian Fainelli90eff902017-03-23 10:01:19 -0700715EXPORT_SYMBOL_GPL(mdio_bus_init);
Andy Fleming00db8182005-07-30 19:31:23 -0400716
Florian Fainelli90eff902017-03-23 10:01:19 -0700717#if IS_ENABLED(CONFIG_PHYLIB)
Peter Chubbdc85dec2005-09-03 14:05:06 -0700718void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500719{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700720 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500721 bus_unregister(&mdio_bus_type);
722}
Florian Fainelli90eff902017-03-23 10:01:19 -0700723EXPORT_SYMBOL_GPL(mdio_bus_exit);
724#else
725module_init(mdio_bus_init);
726/* no module_exit, intentional */
727MODULE_LICENSE("GPL");
728MODULE_DESCRIPTION("MDIO bus/device layer");
729#endif