blob: 2e29ab841b4da010e512ea574389f82be62baa98 [file] [log] [blame]
Andrew Lunna2443fd2019-01-21 19:05:50 +01001// SPDX-License-Identifier: GPL-2.0+
Sergei Shtylyov02d320c2014-01-05 03:18:27 +03002/* MDIO Bus interface
Andy Fleming00db8182005-07-30 19:31:23 -04003 *
4 * Author: Andy Fleming
5 *
6 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Andy Fleming00db8182005-07-30 19:31:23 -04007 */
Joe Perches8d242482012-06-09 07:49:07 +00008
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Andy Fleming00db8182005-07-30 19:31:23 -040011#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040012#include <linux/string.h>
13#include <linux/errno.h>
14#include <linux/unistd.h>
15#include <linux/slab.h>
16#include <linux/interrupt.h>
17#include <linux/init.h>
18#include <linux/delay.h>
Anton Vorontsov3d1e4db2009-02-01 00:53:34 -080019#include <linux/device.h>
Roger Quadros69226892017-04-21 16:15:38 +030020#include <linux/gpio.h>
21#include <linux/gpio/consumer.h>
David Daneya30e2c12012-06-27 07:33:37 +000022#include <linux/of_device.h>
Mark Brown4085a7f2012-10-08 22:55:43 +000023#include <linux/of_mdio.h>
Roger Quadros69226892017-04-21 16:15:38 +030024#include <linux/of_gpio.h>
Andy Fleming00db8182005-07-30 19:31:23 -040025#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
David Bauer71dd6c02019-04-17 23:59:21 +020027#include <linux/reset.h>
Andy Fleming00db8182005-07-30 19:31:23 -040028#include <linux/skbuff.h>
29#include <linux/spinlock.h>
30#include <linux/mm.h>
31#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040032#include <linux/mii.h>
33#include <linux/ethtool.h>
34#include <linux/phy.h>
Sergei Shtylyov02d320c2014-01-05 03:18:27 +030035#include <linux/io.h>
36#include <linux/uaccess.h>
Andy Fleming00db8182005-07-30 19:31:23 -040037
Uwe Kleine-Könige22e9962016-11-22 16:47:11 +010038#define CREATE_TRACE_POINTS
39#include <trace/events/mdio.h>
40
Florian Fainelli648ea012017-02-04 13:02:44 -080041#include "mdio-boardinfo.h"
42
Andrew Lunnee7e16b2018-01-02 17:40:26 +010043static int mdiobus_register_gpiod(struct mdio_device *mdiodev)
Andrew Lunn7f854422016-01-06 20:11:18 +010044{
Dmitry Torokhov40ba6a12019-09-13 15:55:47 -070045 int error;
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +010046
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +010047 /* Deassert the optional reset signal */
Dmitry Torokhov40ba6a12019-09-13 15:55:47 -070048 mdiodev->reset_gpio = gpiod_get_optional(&mdiodev->dev,
49 "reset", GPIOD_OUT_LOW);
50 error = PTR_ERR_OR_ZERO(mdiodev->reset_gpio);
51 if (error)
52 return error;
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +010053
Dmitry Torokhov40ba6a12019-09-13 15:55:47 -070054 if (mdiodev->reset_gpio)
55 gpiod_set_consumer_name(mdiodev->reset_gpio, "PHY reset");
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +010056
David Bauer71dd6c02019-04-17 23:59:21 +020057 return 0;
58}
59
60static int mdiobus_register_reset(struct mdio_device *mdiodev)
61{
62 struct reset_control *reset = NULL;
63
64 if (mdiodev->dev.of_node)
65 reset = devm_reset_control_get_exclusive(&mdiodev->dev,
66 "phy");
67 if (PTR_ERR(reset) == -ENOENT ||
68 PTR_ERR(reset) == -ENOTSUPP)
69 reset = NULL;
70 else if (IS_ERR(reset))
71 return PTR_ERR(reset);
72
73 mdiodev->reset_ctrl = reset;
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +010074
Andrew Lunnee7e16b2018-01-02 17:40:26 +010075 return 0;
76}
77
78int mdiobus_register_device(struct mdio_device *mdiodev)
79{
80 int err;
81
82 if (mdiodev->bus->mdio_map[mdiodev->addr])
83 return -EBUSY;
84
85 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY) {
86 err = mdiobus_register_gpiod(mdiodev);
87 if (err)
88 return err;
David Bauer71dd6c02019-04-17 23:59:21 +020089
90 err = mdiobus_register_reset(mdiodev);
91 if (err)
92 return err;
93
94 /* Assert the reset signal */
95 mdio_device_reset(mdiodev, 1);
Andrew Lunnee7e16b2018-01-02 17:40:26 +010096 }
97
Andrew Lunn7f854422016-01-06 20:11:18 +010098 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
99
100 return 0;
101}
102EXPORT_SYMBOL(mdiobus_register_device);
103
104int mdiobus_unregister_device(struct mdio_device *mdiodev)
105{
106 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
107 return -EINVAL;
108
109 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
110
111 return 0;
112}
113EXPORT_SYMBOL(mdiobus_unregister_device);
114
115struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
116{
117 struct mdio_device *mdiodev = bus->mdio_map[addr];
118
119 if (!mdiodev)
120 return NULL;
121
122 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
123 return NULL;
124
125 return container_of(mdiodev, struct phy_device, mdio);
126}
127EXPORT_SYMBOL(mdiobus_get_phy);
128
129bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
130{
131 return bus->mdio_map[addr];
132}
133EXPORT_SYMBOL(mdiobus_is_registered_device);
134
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800135/**
Timur Tabieb8a54a72012-01-12 15:23:04 -0800136 * mdiobus_alloc_size - allocate a mii_bus structure
Randy Dunlapaf58f1d2012-01-21 09:03:04 +0000137 * @size: extra amount of memory to allocate for private storage.
138 * If non-zero, then bus->priv is points to that memory.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700139 *
140 * Description: called by a bus driver to allocate an mii_bus
141 * structure to fill in.
142 */
Timur Tabieb8a54a72012-01-12 15:23:04 -0800143struct mii_bus *mdiobus_alloc_size(size_t size)
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700144{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700145 struct mii_bus *bus;
Timur Tabieb8a54a72012-01-12 15:23:04 -0800146 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
147 size_t alloc_size;
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100148 int i;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700149
Timur Tabieb8a54a72012-01-12 15:23:04 -0800150 /* If we alloc extra space, it should be aligned */
151 if (size)
152 alloc_size = aligned_size + size;
153 else
154 alloc_size = sizeof(*bus);
155
156 bus = kzalloc(alloc_size, GFP_KERNEL);
Dan Carpenterdb9107b2016-01-12 12:34:36 +0300157 if (!bus)
158 return NULL;
159
160 bus->state = MDIOBUS_ALLOCATED;
161 if (size)
162 bus->priv = (void *)bus + aligned_size;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700163
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100164 /* Initialise the interrupts to polling */
165 for (i = 0; i < PHY_MAX_ADDR; i++)
166 bus->irq[i] = PHY_POLL;
167
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700168 return bus;
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700169}
Timur Tabieb8a54a72012-01-12 15:23:04 -0800170EXPORT_SYMBOL(mdiobus_alloc_size);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700171
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300172static void _devm_mdiobus_free(struct device *dev, void *res)
173{
174 mdiobus_free(*(struct mii_bus **)res);
175}
176
177static int devm_mdiobus_match(struct device *dev, void *res, void *data)
178{
179 struct mii_bus **r = res;
180
181 if (WARN_ON(!r || !*r))
182 return 0;
183
184 return *r == data;
185}
186
187/**
188 * devm_mdiobus_alloc_size - Resource-managed mdiobus_alloc_size()
189 * @dev: Device to allocate mii_bus for
190 * @sizeof_priv: Space to allocate for private structure.
191 *
192 * Managed mdiobus_alloc_size. mii_bus allocated with this function is
193 * automatically freed on driver detach.
194 *
195 * If an mii_bus allocated with this function needs to be freed separately,
196 * devm_mdiobus_free() must be used.
197 *
198 * RETURNS:
199 * Pointer to allocated mii_bus on success, NULL on failure.
200 */
201struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv)
202{
203 struct mii_bus **ptr, *bus;
204
205 ptr = devres_alloc(_devm_mdiobus_free, sizeof(*ptr), GFP_KERNEL);
206 if (!ptr)
207 return NULL;
208
209 /* use raw alloc_dr for kmalloc caller tracing */
210 bus = mdiobus_alloc_size(sizeof_priv);
211 if (bus) {
212 *ptr = bus;
213 devres_add(dev, ptr);
214 } else {
215 devres_free(ptr);
216 }
217
218 return bus;
219}
Arnd Bergmann93dccc52014-05-08 16:46:52 +0200220EXPORT_SYMBOL_GPL(devm_mdiobus_alloc_size);
Grygorii Strashko6d48f442014-04-30 15:23:33 +0300221
222/**
223 * devm_mdiobus_free - Resource-managed mdiobus_free()
224 * @dev: Device this mii_bus belongs to
225 * @bus: the mii_bus associated with the device
226 *
227 * Free mii_bus allocated with devm_mdiobus_alloc_size().
228 */
229void devm_mdiobus_free(struct device *dev, struct mii_bus *bus)
230{
231 int rc;
232
233 rc = devres_release(dev, _devm_mdiobus_free,
234 devm_mdiobus_match, bus);
235 WARN_ON(rc);
236}
237EXPORT_SYMBOL_GPL(devm_mdiobus_free);
238
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700239/**
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700240 * mdiobus_release - mii_bus device release callback
Randy Dunlap78c36b12008-10-13 18:46:22 -0700241 * @d: the target struct device that contains the mii_bus
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700242 *
243 * Description: called when the last reference to an mii_bus is
244 * dropped, to free the underlying memory.
245 */
246static void mdiobus_release(struct device *d)
247{
248 struct mii_bus *bus = to_mii_bus(d);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800249 BUG_ON(bus->state != MDIOBUS_RELEASED &&
250 /* for compatibility with error handling in drivers */
251 bus->state != MDIOBUS_ALLOCATED);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700252 kfree(bus);
253}
254
255static struct class mdio_bus_class = {
256 .name = "mdio_bus",
257 .dev_release = mdiobus_release,
258};
259
Bjørn Morkb943fbb2012-05-11 05:47:01 +0000260#if IS_ENABLED(CONFIG_OF_MDIO)
David Daney25106022012-05-02 15:16:37 +0000261/**
262 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
Randy Dunlapf41ef2e2012-06-08 14:07:19 +0000263 * @mdio_bus_np: Pointer to the mii_bus.
David Daney25106022012-05-02 15:16:37 +0000264 *
Russell Kinga1364422015-09-24 20:35:52 +0100265 * Returns a reference to the mii_bus, or NULL if none found. The
266 * embedded struct device will have its reference count incremented,
267 * and this must be put once the bus is finished with.
David Daney25106022012-05-02 15:16:37 +0000268 *
269 * Because the association of a device_node and mii_bus is made via
270 * of_mdiobus_register(), the mii_bus cannot be found before it is
271 * registered with of_mdiobus_register().
272 *
273 */
274struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
275{
276 struct device *d;
277
278 if (!mdio_bus_np)
279 return NULL;
280
Suzuki K Poulosecfba5de2019-07-23 23:18:33 +0100281 d = class_find_device_by_of_node(&mdio_bus_class, mdio_bus_np);
David Daney25106022012-05-02 15:16:37 +0000282 return d ? to_mii_bus(d) : NULL;
283}
284EXPORT_SYMBOL(of_mdio_find_bus);
Daniel Mackd9daa242014-06-28 01:23:35 +0200285
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100286/* Walk the list of subnodes of a mdio bus and look for a node that
287 * matches the mdio device's address with its 'reg' property. If
288 * found, set the of_node pointer for the mdio device. This allows
289 * auto-probed phy devices to be supplied with information passed in
290 * via DT.
Daniel Mackd9daa242014-06-28 01:23:35 +0200291 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100292static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
293 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200294{
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100295 struct device *dev = &mdiodev->dev;
Daniel Mackd9daa242014-06-28 01:23:35 +0200296 struct device_node *child;
297
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100298 if (dev->of_node || !bus->dev.of_node)
Daniel Mackd9daa242014-06-28 01:23:35 +0200299 return;
300
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100301 for_each_available_child_of_node(bus->dev.of_node, child) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200302 int addr;
Daniel Mackd9daa242014-06-28 01:23:35 +0200303
Jon Masond0a654002017-05-31 15:43:30 -0400304 addr = of_mdio_parse_addr(dev, child);
305 if (addr < 0)
Daniel Mackd9daa242014-06-28 01:23:35 +0200306 continue;
Daniel Mackd9daa242014-06-28 01:23:35 +0200307
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100308 if (addr == mdiodev->addr) {
Daniel Mackd9daa242014-06-28 01:23:35 +0200309 dev->of_node = child;
Russell King94a5ef12017-12-12 10:49:15 +0000310 dev->fwnode = of_fwnode_handle(child);
Daniel Mackd9daa242014-06-28 01:23:35 +0200311 return;
312 }
313 }
314}
315#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100316static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
317 struct mdio_device *mdiodev)
Daniel Mackd9daa242014-06-28 01:23:35 +0200318{
319}
David Daney25106022012-05-02 15:16:37 +0000320#endif
321
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700322/**
Florian Fainellid0281a52017-03-28 12:57:09 -0700323 * mdiobus_create_device_from_board_info - create a full MDIO device given
324 * a mdio_board_info structure
325 * @bus: MDIO bus to create the devices on
326 * @bi: mdio_board_info structure describing the devices
327 *
328 * Returns 0 on success or < 0 on error.
329 */
330static int mdiobus_create_device(struct mii_bus *bus,
331 struct mdio_board_info *bi)
332{
333 struct mdio_device *mdiodev;
334 int ret = 0;
335
336 mdiodev = mdio_device_create(bus, bi->mdio_addr);
337 if (IS_ERR(mdiodev))
338 return -ENODEV;
339
340 strncpy(mdiodev->modalias, bi->modalias,
341 sizeof(mdiodev->modalias));
342 mdiodev->bus_match = mdio_device_bus_match;
343 mdiodev->dev.platform_data = (void *)bi->platform_data;
344
345 ret = mdio_device_register(mdiodev);
346 if (ret)
347 mdio_device_free(mdiodev);
348
349 return ret;
350}
351
352/**
Russell King59f06972015-09-25 11:56:56 +0100353 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800354 * @bus: target mii_bus
Russell King59f06972015-09-25 11:56:56 +0100355 * @owner: module containing bus accessor functions
Andy Fleminge1393452005-08-24 18:46:21 -0500356 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800357 * Description: Called by a bus driver to bring up all the PHYs
Russell King59f06972015-09-25 11:56:56 +0100358 * on a given bus, and attach them to the bus. Drivers should use
359 * mdiobus_register() rather than __mdiobus_register() unless they
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100360 * need to pass a specific owner module. MDIO devices which are not
361 * PHYs will not be brought up by this function. They are expected to
362 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800363 *
364 * Returns 0 on success or < 0 on error.
Andy Fleminge1393452005-08-24 18:46:21 -0500365 */
Russell King3e3aaf62015-09-24 20:36:02 +0100366int __mdiobus_register(struct mii_bus *bus, struct module *owner)
Andy Fleminge1393452005-08-24 18:46:21 -0500367{
Andrew Lunn711fdba2016-01-06 20:11:27 +0100368 struct mdio_device *mdiodev;
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800369 int i, err;
Roger Quadros69226892017-04-21 16:15:38 +0300370 struct gpio_desc *gpiod;
Andy Fleminge1393452005-08-24 18:46:21 -0500371
Andy Fleminge1393452005-08-24 18:46:21 -0500372 if (NULL == bus || NULL == bus->name ||
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300373 NULL == bus->read || NULL == bus->write)
Andy Fleminge1393452005-08-24 18:46:21 -0500374 return -EINVAL;
375
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700376 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
377 bus->state != MDIOBUS_UNREGISTERED);
378
Russell King3e3aaf62015-09-24 20:36:02 +0100379 bus->owner = owner;
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700380 bus->dev.parent = bus->parent;
381 bus->dev.class = &mdio_bus_class;
382 bus->dev.groups = NULL;
Stephen Hemminger036b6682009-02-26 10:19:36 +0000383 dev_set_name(&bus->dev, "%s", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700384
385 err = device_register(&bus->dev);
386 if (err) {
Joe Perches8d242482012-06-09 07:49:07 +0000387 pr_err("mii_bus %s failed to register\n", bus->id);
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700388 return -EINVAL;
389 }
390
Adrian Bunkd1e7fe42008-02-20 02:13:53 +0200391 mutex_init(&bus->mdio_lock);
392
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300393 /* de-assert bus level PHY GPIO reset */
Sergei Shtylyovfe0e4052017-06-12 23:55:39 +0300394 gpiod = devm_gpiod_get_optional(&bus->dev, "reset", GPIOD_OUT_LOW);
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300395 if (IS_ERR(gpiod)) {
Sergei Shtylyovfe0e4052017-06-12 23:55:39 +0300396 dev_err(&bus->dev, "mii_bus %s couldn't get reset GPIO\n",
397 bus->id);
Thomas Petazzonie40e2a22019-01-16 10:53:58 +0100398 device_del(&bus->dev);
Sergei Shtylyovfe0e4052017-06-12 23:55:39 +0300399 return PTR_ERR(gpiod);
400 } else if (gpiod) {
Sergei Shtylyovd396e842017-06-12 23:55:38 +0300401 bus->reset_gpiod = gpiod;
402
403 gpiod_set_value_cansleep(gpiod, 1);
404 udelay(bus->reset_delay_us);
405 gpiod_set_value_cansleep(gpiod, 0);
Roger Quadros69226892017-04-21 16:15:38 +0300406 }
407
Florian Fainellidf0c8d92017-05-11 11:24:16 -0700408 if (bus->reset)
409 bus->reset(bus);
410
Andy Fleminge1393452005-08-24 18:46:21 -0500411 for (i = 0; i < PHY_MAX_ADDR; i++) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200412 if ((bus->phy_mask & (1 << i)) == 0) {
413 struct phy_device *phydev;
Andy Fleminge1393452005-08-24 18:46:21 -0500414
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200415 phydev = mdiobus_scan(bus, i);
Marek Vasut70e927b2016-05-02 02:47:31 +0200416 if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV)) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200417 err = PTR_ERR(phydev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800418 goto error;
419 }
Herbert Valerio Riedel64b1c2b2006-05-10 12:12:57 -0400420 }
Andy Fleminge1393452005-08-24 18:46:21 -0500421 }
422
Florian Fainellid0281a52017-03-28 12:57:09 -0700423 mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device);
Florian Fainelli648ea012017-02-04 13:02:44 -0800424
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800425 bus->state = MDIOBUS_REGISTERED;
Andy Fleminge1393452005-08-24 18:46:21 -0500426 pr_info("%s: probed\n", bus->name);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800427 return 0;
Andy Fleminge1393452005-08-24 18:46:21 -0500428
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800429error:
430 while (--i >= 0) {
Andrew Lunn711fdba2016-01-06 20:11:27 +0100431 mdiodev = bus->mdio_map[i];
432 if (!mdiodev)
433 continue;
434
435 mdiodev->device_remove(mdiodev);
436 mdiodev->device_free(mdiodev);
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800437 }
Roger Quadros69226892017-04-21 16:15:38 +0300438
439 /* Put PHYs in RESET to save power */
Florian Fainellia010a2f2017-09-08 15:38:07 -0700440 if (bus->reset_gpiod)
441 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
Roger Quadros69226892017-04-21 16:15:38 +0300442
Krzysztof Halasa161c8d22008-12-25 16:50:41 -0800443 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500444 return err;
445}
Russell King3e3aaf62015-09-24 20:36:02 +0100446EXPORT_SYMBOL(__mdiobus_register);
Andy Fleminge1393452005-08-24 18:46:21 -0500447
448void mdiobus_unregister(struct mii_bus *bus)
449{
Andrew Lunna9049e02016-01-06 20:11:26 +0100450 struct mdio_device *mdiodev;
Andy Fleminge1393452005-08-24 18:46:21 -0500451 int i;
452
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700453 BUG_ON(bus->state != MDIOBUS_REGISTERED);
454 bus->state = MDIOBUS_UNREGISTERED;
455
Andy Fleminge1393452005-08-24 18:46:21 -0500456 for (i = 0; i < PHY_MAX_ADDR; i++) {
Andrew Lunna9049e02016-01-06 20:11:26 +0100457 mdiodev = bus->mdio_map[i];
458 if (!mdiodev)
459 continue;
460
David Bauer6110ed22019-04-17 23:59:22 +0200461 if (mdiodev->reset_gpio)
462 gpiod_put(mdiodev->reset_gpio);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100463
Andrew Lunn711fdba2016-01-06 20:11:27 +0100464 mdiodev->device_remove(mdiodev);
465 mdiodev->device_free(mdiodev);
Andy Fleminge1393452005-08-24 18:46:21 -0500466 }
Roger Quadros69226892017-04-21 16:15:38 +0300467
468 /* Put PHYs in RESET to save power */
Florian Fainellia010a2f2017-09-08 15:38:07 -0700469 if (bus->reset_gpiod)
470 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
Roger Quadros69226892017-04-21 16:15:38 +0300471
Mark Salterb6c6aed2015-09-01 09:36:05 -0400472 device_del(&bus->dev);
Andy Fleminge1393452005-08-24 18:46:21 -0500473}
474EXPORT_SYMBOL(mdiobus_unregister);
475
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700476/**
477 * mdiobus_free - free a struct mii_bus
478 * @bus: mii_bus to free
479 *
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700480 * This function releases the reference to the underlying device
481 * object in the mii_bus. If this is the last reference, the mii_bus
482 * will be freed.
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700483 */
484void mdiobus_free(struct mii_bus *bus)
485{
Sergei Shtylyov02d320c2014-01-05 03:18:27 +0300486 /* For compatibility with error handling in drivers. */
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700487 if (bus->state == MDIOBUS_ALLOCATED) {
488 kfree(bus);
489 return;
490 }
491
492 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
493 bus->state = MDIOBUS_RELEASED;
494
495 put_device(&bus->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700496}
497EXPORT_SYMBOL(mdiobus_free);
498
Andrew Lunnf89df3f2016-01-06 20:11:25 +0100499/**
500 * mdiobus_scan - scan a bus for MDIO devices.
501 * @bus: mii_bus to scan
502 * @addr: address on bus to scan
503 *
504 * This function scans the MDIO bus, looking for devices which can be
505 * identified using a vendor/product ID in registers 2 and 3. Not all
506 * MDIO devices have such registers, but PHY devices typically
507 * do. Hence this function assumes anything found is a PHY, or can be
508 * treated as a PHY. Other MDIO devices, such as switches, will
509 * probably not be found during the scan.
510 */
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200511struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
512{
513 struct phy_device *phydev;
514 int err;
515
David Daneyac28b9f2012-06-27 07:33:35 +0000516 phydev = get_phy_device(bus, addr, false);
Sergei Shtylyov66c239e2016-04-24 20:30:53 +0300517 if (IS_ERR(phydev))
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200518 return phydev;
519
Daniel Mack86f6cf42014-05-24 09:34:26 +0200520 /*
521 * For DT, see if the auto-probed phy has a correspoding child
522 * in the bus node, and set the of_node pointer in this case.
523 */
Andrew Lunnf03bc4a2016-01-06 20:11:24 +0100524 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
Daniel Mack86f6cf42014-05-24 09:34:26 +0200525
Grant Likely4dea5472009-04-25 12:52:46 +0000526 err = phy_device_register(phydev);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200527 if (err) {
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200528 phy_device_free(phydev);
Sergei Shtylyove98a3aa2016-05-03 23:14:41 +0300529 return ERR_PTR(-ENODEV);
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200530 }
531
Lennert Buytenhek4fd5f812008-08-26 13:08:46 +0200532 return phydev;
533}
534EXPORT_SYMBOL(mdiobus_scan);
535
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800536/**
Russell King34dc08e2018-01-02 10:58:27 +0000537 * __mdiobus_read - Unlocked version of the mdiobus_read function
538 * @bus: the mii_bus struct
539 * @addr: the phy address
540 * @regnum: register number to read
541 *
542 * Read a MDIO bus register. Caller must hold the mdio bus lock.
543 *
544 * NOTE: MUST NOT be called from interrupt context.
545 */
546int __mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
547{
548 int retval;
549
550 WARN_ON_ONCE(!mutex_is_locked(&bus->mdio_lock));
551
552 retval = bus->read(bus, addr, regnum);
553
554 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
555
556 return retval;
557}
558EXPORT_SYMBOL(__mdiobus_read);
559
560/**
561 * __mdiobus_write - Unlocked version of the mdiobus_write function
562 * @bus: the mii_bus struct
563 * @addr: the phy address
564 * @regnum: register number to write
565 * @val: value to write to @regnum
566 *
567 * Write a MDIO bus register. Caller must hold the mdio bus lock.
568 *
569 * NOTE: MUST NOT be called from interrupt context.
570 */
571int __mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
572{
573 int err;
574
575 WARN_ON_ONCE(!mutex_is_locked(&bus->mdio_lock));
576
577 err = bus->write(bus, addr, regnum, val);
578
579 trace_mdio_access(bus, 0, addr, regnum, val, err);
580
581 return err;
582}
583EXPORT_SYMBOL(__mdiobus_write);
584
585/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200586 * mdiobus_read_nested - Nested version of the mdiobus_read function
587 * @bus: the mii_bus struct
588 * @addr: the phy address
589 * @regnum: register number to read
590 *
591 * In case of nested MDIO bus access avoid lockdep false positives by
592 * using mutex_lock_nested().
593 *
594 * NOTE: MUST NOT be called from interrupt context,
595 * because the bus read/write functions may wait for an interrupt
596 * to conclude the operation.
597 */
598int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
599{
600 int retval;
601
602 BUG_ON(in_interrupt());
603
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200604 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Russell King34dc08e2018-01-02 10:58:27 +0000605 retval = __mdiobus_read(bus, addr, regnum);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200606 mutex_unlock(&bus->mdio_lock);
607
608 return retval;
609}
610EXPORT_SYMBOL(mdiobus_read_nested);
611
612/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000613 * mdiobus_read - Convenience function for reading a given MII mgmt register
614 * @bus: the mii_bus struct
615 * @addr: the phy address
616 * @regnum: register number to read
617 *
618 * NOTE: MUST NOT be called from interrupt context,
619 * because the bus read/write functions may wait for an interrupt
620 * to conclude the operation.
621 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000622int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000623{
624 int retval;
625
626 BUG_ON(in_interrupt());
627
628 mutex_lock(&bus->mdio_lock);
Russell King34dc08e2018-01-02 10:58:27 +0000629 retval = __mdiobus_read(bus, addr, regnum);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000630 mutex_unlock(&bus->mdio_lock);
631
632 return retval;
633}
634EXPORT_SYMBOL(mdiobus_read);
635
636/**
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200637 * mdiobus_write_nested - Nested version of the mdiobus_write function
638 * @bus: the mii_bus struct
639 * @addr: the phy address
640 * @regnum: register number to write
641 * @val: value to write to @regnum
642 *
643 * In case of nested MDIO bus access avoid lockdep false positives by
644 * using mutex_lock_nested().
645 *
646 * NOTE: MUST NOT be called from interrupt context,
647 * because the bus read/write functions may wait for an interrupt
648 * to conclude the operation.
649 */
650int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
651{
652 int err;
653
654 BUG_ON(in_interrupt());
655
Andrew Lunn9a6f2b02016-04-11 21:40:05 +0200656 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
Russell King34dc08e2018-01-02 10:58:27 +0000657 err = __mdiobus_write(bus, addr, regnum, val);
Neil Armstrong21dd19f2015-10-22 10:37:49 +0200658 mutex_unlock(&bus->mdio_lock);
659
660 return err;
661}
662EXPORT_SYMBOL(mdiobus_write_nested);
663
664/**
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000665 * mdiobus_write - Convenience function for writing a given MII mgmt register
666 * @bus: the mii_bus struct
667 * @addr: the phy address
668 * @regnum: register number to write
669 * @val: value to write to @regnum
670 *
671 * NOTE: MUST NOT be called from interrupt context,
672 * because the bus read/write functions may wait for an interrupt
673 * to conclude the operation.
674 */
Jason Gunthorpeabf35df2010-03-09 09:17:42 +0000675int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000676{
677 int err;
678
679 BUG_ON(in_interrupt());
680
681 mutex_lock(&bus->mdio_lock);
Russell King34dc08e2018-01-02 10:58:27 +0000682 err = __mdiobus_write(bus, addr, regnum, val);
Lennert Buytenhek2e888102008-09-29 17:12:35 +0000683 mutex_unlock(&bus->mdio_lock);
684
685 return err;
686}
687EXPORT_SYMBOL(mdiobus_write);
688
689/**
Andrew Lunne76a4952016-01-06 20:11:23 +0100690 * mdio_bus_match - determine if given MDIO driver supports the given
691 * MDIO device
692 * @dev: target MDIO device
693 * @drv: given MDIO driver
Andy Fleming00db8182005-07-30 19:31:23 -0400694 *
Andrew Lunne76a4952016-01-06 20:11:23 +0100695 * Description: Given a MDIO device, and a MDIO driver, return 1 if
696 * the driver supports the device. Otherwise, return 0. This may
697 * require calling the devices own match function, since different classes
698 * of MDIO devices have different match criteria.
Andy Fleming00db8182005-07-30 19:31:23 -0400699 */
700static int mdio_bus_match(struct device *dev, struct device_driver *drv)
701{
Andrew Lunne76a4952016-01-06 20:11:23 +0100702 struct mdio_device *mdio = to_mdio_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -0400703
David Daneya30e2c12012-06-27 07:33:37 +0000704 if (of_driver_match_device(dev, drv))
705 return 1;
706
Andrew Lunne76a4952016-01-06 20:11:23 +0100707 if (mdio->bus_match)
708 return mdio->bus_match(dev, drv);
David Daneya30e2c12012-06-27 07:33:37 +0000709
Andrew Lunne76a4952016-01-06 20:11:23 +0100710 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -0400711}
712
Russell King1b8f8692017-05-30 21:38:18 +0100713static int mdio_uevent(struct device *dev, struct kobj_uevent_env *env)
714{
715 int rc;
716
717 /* Some devices have extra OF data and an OF-style MODALIAS */
718 rc = of_device_uevent_modalias(dev, env);
719 if (rc != -ENODEV)
720 return rc;
721
722 return 0;
723}
724
Andy Fleming00db8182005-07-30 19:31:23 -0400725struct bus_type mdio_bus_type = {
726 .name = "mdio_bus",
727 .match = mdio_bus_match,
Russell King1b8f8692017-05-30 21:38:18 +0100728 .uevent = mdio_uevent,
Andy Fleming00db8182005-07-30 19:31:23 -0400729};
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700730EXPORT_SYMBOL(mdio_bus_type);
Andy Fleming00db8182005-07-30 19:31:23 -0400731
Jeff Garzik67c4f3f2005-08-11 02:07:25 -0400732int __init mdio_bus_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -0400733{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700734 int ret;
735
736 ret = class_register(&mdio_bus_class);
737 if (!ret) {
738 ret = bus_register(&mdio_bus_type);
739 if (ret)
740 class_unregister(&mdio_bus_class);
741 }
742
743 return ret;
Andy Fleming00db8182005-07-30 19:31:23 -0400744}
Florian Fainelli90eff902017-03-23 10:01:19 -0700745EXPORT_SYMBOL_GPL(mdio_bus_init);
Andy Fleming00db8182005-07-30 19:31:23 -0400746
Florian Fainelli90eff902017-03-23 10:01:19 -0700747#if IS_ENABLED(CONFIG_PHYLIB)
Peter Chubbdc85dec2005-09-03 14:05:06 -0700748void mdio_bus_exit(void)
Andy Fleminge1393452005-08-24 18:46:21 -0500749{
Lennert Buytenhek46abc022008-10-08 16:33:40 -0700750 class_unregister(&mdio_bus_class);
Andy Fleminge1393452005-08-24 18:46:21 -0500751 bus_unregister(&mdio_bus_type);
752}
Florian Fainelli90eff902017-03-23 10:01:19 -0700753EXPORT_SYMBOL_GPL(mdio_bus_exit);
754#else
755module_init(mdio_bus_init);
756/* no module_exit, intentional */
757MODULE_LICENSE("GPL");
758MODULE_DESCRIPTION("MDIO bus/device layer");
759#endif