driver core: add a helper to setup both the of_node and fwnode of a device
[linux-block.git] / drivers / net / phy / mdio_bus.c
CommitLineData
a2443fd1 1// SPDX-License-Identifier: GPL-2.0+
02d320c3 2/* MDIO Bus interface
00db8189
AF
3 *
4 * Author: Andy Fleming
5 *
6 * Copyright (c) 2004 Freescale Semiconductor, Inc.
00db8189 7 */
8d242488
JP
8
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
00db8189 11#include <linux/delay.h>
3d1e4db2 12#include <linux/device.h>
54e80ded
BG
13#include <linux/errno.h>
14#include <linux/etherdevice.h>
15#include <linux/ethtool.h>
69226896
RQ
16#include <linux/gpio.h>
17#include <linux/gpio/consumer.h>
54e80ded
BG
18#include <linux/init.h>
19#include <linux/interrupt.h>
20#include <linux/io.h>
21#include <linux/kernel.h>
22#include <linux/mii.h>
23#include <linux/mm.h>
24#include <linux/module.h>
25#include <linux/netdevice.h>
a30e2c18 26#include <linux/of_device.h>
69226896 27#include <linux/of_gpio.h>
54e80ded
BG
28#include <linux/of_mdio.h>
29#include <linux/phy.h>
71dd6c0d 30#include <linux/reset.h>
00db8189 31#include <linux/skbuff.h>
54e80ded 32#include <linux/slab.h>
00db8189 33#include <linux/spinlock.h>
54e80ded 34#include <linux/string.h>
02d320c3 35#include <linux/uaccess.h>
54e80ded 36#include <linux/unistd.h>
00db8189 37
e22e996b
UKK
38#define CREATE_TRACE_POINTS
39#include <trace/events/mdio.h>
40
648ea013
FF
41#include "mdio-boardinfo.h"
42
ee7e16b6 43static int mdiobus_register_gpiod(struct mdio_device *mdiodev)
7f854420 44{
bafbdd52 45 /* Deassert the optional reset signal */
40ba6a12
DT
46 mdiodev->reset_gpio = gpiod_get_optional(&mdiodev->dev,
47 "reset", GPIOD_OUT_LOW);
d0f0c55e
TB
48 if (IS_ERR(mdiodev->reset_gpio))
49 return PTR_ERR(mdiodev->reset_gpio);
40ba6a12
DT
50
51 if (mdiodev->reset_gpio)
52 gpiod_set_consumer_name(mdiodev->reset_gpio, "PHY reset");
bafbdd52 53
71dd6c0d
DB
54 return 0;
55}
56
57static int mdiobus_register_reset(struct mdio_device *mdiodev)
58{
62140036
GU
59 struct reset_control *reset;
60
61 reset = reset_control_get_optional_exclusive(&mdiodev->dev, "phy");
62 if (IS_ERR(reset))
63 return PTR_ERR(reset);
71dd6c0d
DB
64
65 mdiodev->reset_ctrl = reset;
bafbdd52 66
ee7e16b6
AL
67 return 0;
68}
69
70int mdiobus_register_device(struct mdio_device *mdiodev)
71{
72 int err;
73
74 if (mdiodev->bus->mdio_map[mdiodev->addr])
75 return -EBUSY;
76
77 if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY) {
78 err = mdiobus_register_gpiod(mdiodev);
79 if (err)
80 return err;
71dd6c0d
DB
81
82 err = mdiobus_register_reset(mdiodev);
83 if (err)
84 return err;
85
86 /* Assert the reset signal */
87 mdio_device_reset(mdiodev, 1);
ee7e16b6
AL
88 }
89
7f854420
AL
90 mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
91
92 return 0;
93}
94EXPORT_SYMBOL(mdiobus_register_device);
95
96int mdiobus_unregister_device(struct mdio_device *mdiodev)
97{
98 if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
99 return -EINVAL;
100
32085f25
DB
101 reset_control_put(mdiodev->reset_ctrl);
102
7f854420
AL
103 mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
104
105 return 0;
106}
107EXPORT_SYMBOL(mdiobus_unregister_device);
108
109struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
110{
111 struct mdio_device *mdiodev = bus->mdio_map[addr];
112
113 if (!mdiodev)
114 return NULL;
115
116 if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
117 return NULL;
118
119 return container_of(mdiodev, struct phy_device, mdio);
120}
121EXPORT_SYMBOL(mdiobus_get_phy);
122
123bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
124{
125 return bus->mdio_map[addr];
126}
127EXPORT_SYMBOL(mdiobus_is_registered_device);
128
298cf9be 129/**
eb8a54a7 130 * mdiobus_alloc_size - allocate a mii_bus structure
af58f1d6
RD
131 * @size: extra amount of memory to allocate for private storage.
132 * If non-zero, then bus->priv is points to that memory.
298cf9be
LB
133 *
134 * Description: called by a bus driver to allocate an mii_bus
135 * structure to fill in.
136 */
eb8a54a7 137struct mii_bus *mdiobus_alloc_size(size_t size)
298cf9be 138{
46abc021 139 struct mii_bus *bus;
eb8a54a7
TT
140 size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
141 size_t alloc_size;
e7f4dc35 142 int i;
eb8a54a7
TT
143
144 /* If we alloc extra space, it should be aligned */
145 if (size)
146 alloc_size = aligned_size + size;
147 else
148 alloc_size = sizeof(*bus);
46abc021 149
eb8a54a7 150 bus = kzalloc(alloc_size, GFP_KERNEL);
db9107b4
DC
151 if (!bus)
152 return NULL;
153
154 bus->state = MDIOBUS_ALLOCATED;
155 if (size)
156 bus->priv = (void *)bus + aligned_size;
46abc021 157
080bb352
FF
158 /* Initialise the interrupts to polling and 64-bit seqcounts */
159 for (i = 0; i < PHY_MAX_ADDR; i++) {
e7f4dc35 160 bus->irq[i] = PHY_POLL;
080bb352
FF
161 u64_stats_init(&bus->stats[i].syncp);
162 }
e7f4dc35 163
46abc021 164 return bus;
298cf9be 165}
eb8a54a7 166EXPORT_SYMBOL(mdiobus_alloc_size);
298cf9be 167
46abc021
LB
168/**
169 * mdiobus_release - mii_bus device release callback
78c36b15 170 * @d: the target struct device that contains the mii_bus
46abc021
LB
171 *
172 * Description: called when the last reference to an mii_bus is
173 * dropped, to free the underlying memory.
174 */
175static void mdiobus_release(struct device *d)
176{
177 struct mii_bus *bus = to_mii_bus(d);
775f2547 178
161c8d2f
KH
179 BUG_ON(bus->state != MDIOBUS_RELEASED &&
180 /* for compatibility with error handling in drivers */
181 bus->state != MDIOBUS_ALLOCATED);
46abc021
LB
182 kfree(bus);
183}
184
080bb352
FF
185struct mdio_bus_stat_attr {
186 int addr;
187 unsigned int field_offset;
188};
189
190static u64 mdio_bus_get_stat(struct mdio_bus_stats *s, unsigned int offset)
191{
192 const char *p = (const char *)s + offset;
193 unsigned int start;
194 u64 val = 0;
195
196 do {
197 start = u64_stats_fetch_begin(&s->syncp);
198 val = u64_stats_read((const u64_stats_t *)p);
199 } while (u64_stats_fetch_retry(&s->syncp, start));
200
201 return val;
202}
203
204static u64 mdio_bus_get_global_stat(struct mii_bus *bus, unsigned int offset)
205{
206 unsigned int i;
207 u64 val = 0;
208
209 for (i = 0; i < PHY_MAX_ADDR; i++)
210 val += mdio_bus_get_stat(&bus->stats[i], offset);
211
212 return val;
213}
214
215static ssize_t mdio_bus_stat_field_show(struct device *dev,
216 struct device_attribute *attr,
217 char *buf)
218{
219 struct mii_bus *bus = to_mii_bus(dev);
220 struct mdio_bus_stat_attr *sattr;
221 struct dev_ext_attribute *eattr;
222 u64 val;
223
224 eattr = container_of(attr, struct dev_ext_attribute, attr);
225 sattr = eattr->var;
226
227 if (sattr->addr < 0)
228 val = mdio_bus_get_global_stat(bus, sattr->field_offset);
229 else
230 val = mdio_bus_get_stat(&bus->stats[sattr->addr],
231 sattr->field_offset);
232
233 return sprintf(buf, "%llu\n", val);
234}
235
236static ssize_t mdio_bus_device_stat_field_show(struct device *dev,
237 struct device_attribute *attr,
238 char *buf)
239{
240 struct mdio_device *mdiodev = to_mdio_device(dev);
241 struct mii_bus *bus = mdiodev->bus;
242 struct mdio_bus_stat_attr *sattr;
243 struct dev_ext_attribute *eattr;
244 int addr = mdiodev->addr;
245 u64 val;
246
247 eattr = container_of(attr, struct dev_ext_attribute, attr);
248 sattr = eattr->var;
249
250 val = mdio_bus_get_stat(&bus->stats[addr], sattr->field_offset);
251
252 return sprintf(buf, "%llu\n", val);
253}
254
255#define MDIO_BUS_STATS_ATTR_DECL(field, file) \
256static struct dev_ext_attribute dev_attr_mdio_bus_##field = { \
257 .attr = { .attr = { .name = file, .mode = 0444 }, \
258 .show = mdio_bus_stat_field_show, \
259 }, \
260 .var = &((struct mdio_bus_stat_attr) { \
261 -1, offsetof(struct mdio_bus_stats, field) \
262 }), \
263}; \
264static struct dev_ext_attribute dev_attr_mdio_bus_device_##field = { \
265 .attr = { .attr = { .name = file, .mode = 0444 }, \
266 .show = mdio_bus_device_stat_field_show, \
267 }, \
268 .var = &((struct mdio_bus_stat_attr) { \
269 -1, offsetof(struct mdio_bus_stats, field) \
270 }), \
271};
272
273#define MDIO_BUS_STATS_ATTR(field) \
274 MDIO_BUS_STATS_ATTR_DECL(field, __stringify(field))
275
276MDIO_BUS_STATS_ATTR(transfers);
277MDIO_BUS_STATS_ATTR(errors);
278MDIO_BUS_STATS_ATTR(writes);
279MDIO_BUS_STATS_ATTR(reads);
280
281#define MDIO_BUS_STATS_ADDR_ATTR_DECL(field, addr, file) \
282static struct dev_ext_attribute dev_attr_mdio_bus_addr_##field##_##addr = { \
283 .attr = { .attr = { .name = file, .mode = 0444 }, \
284 .show = mdio_bus_stat_field_show, \
285 }, \
286 .var = &((struct mdio_bus_stat_attr) { \
287 addr, offsetof(struct mdio_bus_stats, field) \
288 }), \
289}
290
291#define MDIO_BUS_STATS_ADDR_ATTR(field, addr) \
292 MDIO_BUS_STATS_ADDR_ATTR_DECL(field, addr, \
293 __stringify(field) "_" __stringify(addr))
294
295#define MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(addr) \
296 MDIO_BUS_STATS_ADDR_ATTR(transfers, addr); \
297 MDIO_BUS_STATS_ADDR_ATTR(errors, addr); \
298 MDIO_BUS_STATS_ADDR_ATTR(writes, addr); \
299 MDIO_BUS_STATS_ADDR_ATTR(reads, addr) \
300
301MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(0);
302MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(1);
303MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(2);
304MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(3);
305MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(4);
306MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(5);
307MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(6);
308MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(7);
309MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(8);
310MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(9);
311MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(10);
312MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(11);
313MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(12);
314MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(13);
315MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(14);
316MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(15);
317MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(16);
318MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(17);
319MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(18);
320MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(19);
321MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(20);
322MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(21);
323MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(22);
324MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(23);
325MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(24);
326MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(25);
327MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(26);
328MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(27);
329MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(28);
330MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(29);
331MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(30);
332MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(31);
333
334#define MDIO_BUS_STATS_ADDR_ATTR_GROUP(addr) \
335 &dev_attr_mdio_bus_addr_transfers_##addr.attr.attr, \
336 &dev_attr_mdio_bus_addr_errors_##addr.attr.attr, \
337 &dev_attr_mdio_bus_addr_writes_##addr.attr.attr, \
338 &dev_attr_mdio_bus_addr_reads_##addr.attr.attr \
339
340static struct attribute *mdio_bus_statistics_attrs[] = {
341 &dev_attr_mdio_bus_transfers.attr.attr,
342 &dev_attr_mdio_bus_errors.attr.attr,
343 &dev_attr_mdio_bus_writes.attr.attr,
344 &dev_attr_mdio_bus_reads.attr.attr,
345 MDIO_BUS_STATS_ADDR_ATTR_GROUP(0),
346 MDIO_BUS_STATS_ADDR_ATTR_GROUP(1),
347 MDIO_BUS_STATS_ADDR_ATTR_GROUP(2),
348 MDIO_BUS_STATS_ADDR_ATTR_GROUP(3),
349 MDIO_BUS_STATS_ADDR_ATTR_GROUP(4),
350 MDIO_BUS_STATS_ADDR_ATTR_GROUP(5),
351 MDIO_BUS_STATS_ADDR_ATTR_GROUP(6),
352 MDIO_BUS_STATS_ADDR_ATTR_GROUP(7),
353 MDIO_BUS_STATS_ADDR_ATTR_GROUP(8),
354 MDIO_BUS_STATS_ADDR_ATTR_GROUP(9),
355 MDIO_BUS_STATS_ADDR_ATTR_GROUP(10),
356 MDIO_BUS_STATS_ADDR_ATTR_GROUP(11),
357 MDIO_BUS_STATS_ADDR_ATTR_GROUP(12),
358 MDIO_BUS_STATS_ADDR_ATTR_GROUP(13),
359 MDIO_BUS_STATS_ADDR_ATTR_GROUP(14),
360 MDIO_BUS_STATS_ADDR_ATTR_GROUP(15),
361 MDIO_BUS_STATS_ADDR_ATTR_GROUP(16),
362 MDIO_BUS_STATS_ADDR_ATTR_GROUP(17),
363 MDIO_BUS_STATS_ADDR_ATTR_GROUP(18),
364 MDIO_BUS_STATS_ADDR_ATTR_GROUP(19),
365 MDIO_BUS_STATS_ADDR_ATTR_GROUP(20),
366 MDIO_BUS_STATS_ADDR_ATTR_GROUP(21),
367 MDIO_BUS_STATS_ADDR_ATTR_GROUP(22),
368 MDIO_BUS_STATS_ADDR_ATTR_GROUP(23),
369 MDIO_BUS_STATS_ADDR_ATTR_GROUP(24),
370 MDIO_BUS_STATS_ADDR_ATTR_GROUP(25),
371 MDIO_BUS_STATS_ADDR_ATTR_GROUP(26),
372 MDIO_BUS_STATS_ADDR_ATTR_GROUP(27),
373 MDIO_BUS_STATS_ADDR_ATTR_GROUP(28),
374 MDIO_BUS_STATS_ADDR_ATTR_GROUP(29),
375 MDIO_BUS_STATS_ADDR_ATTR_GROUP(30),
376 MDIO_BUS_STATS_ADDR_ATTR_GROUP(31),
377 NULL,
378};
379
380static const struct attribute_group mdio_bus_statistics_group = {
381 .name = "statistics",
382 .attrs = mdio_bus_statistics_attrs,
383};
384
385static const struct attribute_group *mdio_bus_groups[] = {
386 &mdio_bus_statistics_group,
387 NULL,
388};
389
46abc021
LB
390static struct class mdio_bus_class = {
391 .name = "mdio_bus",
392 .dev_release = mdiobus_release,
080bb352 393 .dev_groups = mdio_bus_groups,
46abc021
LB
394};
395
ce69e216
JL
396/**
397 * mdio_find_bus - Given the name of a mdiobus, find the mii_bus.
ab741102 398 * @mdio_name: The name of a mdiobus.
ce69e216
JL
399 *
400 * Returns a reference to the mii_bus, or NULL if none found. The
401 * embedded struct device will have its reference count incremented,
402 * and this must be put_deviced'ed once the bus is finished with.
403 */
404struct mii_bus *mdio_find_bus(const char *mdio_name)
405{
406 struct device *d;
407
408 d = class_find_device_by_name(&mdio_bus_class, mdio_name);
409 return d ? to_mii_bus(d) : NULL;
410}
411EXPORT_SYMBOL(mdio_find_bus);
412
b943fbb0 413#if IS_ENABLED(CONFIG_OF_MDIO)
25106022
DD
414/**
415 * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
f41ef2e7 416 * @mdio_bus_np: Pointer to the mii_bus.
25106022 417 *
a1364421
RK
418 * Returns a reference to the mii_bus, or NULL if none found. The
419 * embedded struct device will have its reference count incremented,
420 * and this must be put once the bus is finished with.
25106022
DD
421 *
422 * Because the association of a device_node and mii_bus is made via
423 * of_mdiobus_register(), the mii_bus cannot be found before it is
424 * registered with of_mdiobus_register().
425 *
426 */
427struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
428{
429 struct device *d;
430
431 if (!mdio_bus_np)
432 return NULL;
433
cfba5de9 434 d = class_find_device_by_of_node(&mdio_bus_class, mdio_bus_np);
25106022
DD
435 return d ? to_mii_bus(d) : NULL;
436}
437EXPORT_SYMBOL(of_mdio_find_bus);
d9daa247 438
f03bc4ae
AL
439/* Walk the list of subnodes of a mdio bus and look for a node that
440 * matches the mdio device's address with its 'reg' property. If
441 * found, set the of_node pointer for the mdio device. This allows
442 * auto-probed phy devices to be supplied with information passed in
443 * via DT.
d9daa247 444 */
f03bc4ae
AL
445static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
446 struct mdio_device *mdiodev)
d9daa247 447{
f03bc4ae 448 struct device *dev = &mdiodev->dev;
d9daa247
DM
449 struct device_node *child;
450
e5a03bfd 451 if (dev->of_node || !bus->dev.of_node)
d9daa247
DM
452 return;
453
e5a03bfd 454 for_each_available_child_of_node(bus->dev.of_node, child) {
d9daa247 455 int addr;
d9daa247 456
d0a65400
JM
457 addr = of_mdio_parse_addr(dev, child);
458 if (addr < 0)
d9daa247 459 continue;
d9daa247 460
f03bc4ae 461 if (addr == mdiodev->addr) {
d9daa247 462 dev->of_node = child;
94a5ef1b 463 dev->fwnode = of_fwnode_handle(child);
d9daa247
DM
464 return;
465 }
466 }
467}
468#else /* !IS_ENABLED(CONFIG_OF_MDIO) */
f03bc4ae
AL
469static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
470 struct mdio_device *mdiodev)
d9daa247
DM
471{
472}
25106022
DD
473#endif
474
d0281a56 475/**
69280228 476 * mdiobus_create_device - create a full MDIO device given
d0281a56
FF
477 * a mdio_board_info structure
478 * @bus: MDIO bus to create the devices on
479 * @bi: mdio_board_info structure describing the devices
480 *
481 * Returns 0 on success or < 0 on error.
482 */
483static int mdiobus_create_device(struct mii_bus *bus,
484 struct mdio_board_info *bi)
485{
486 struct mdio_device *mdiodev;
487 int ret = 0;
488
489 mdiodev = mdio_device_create(bus, bi->mdio_addr);
490 if (IS_ERR(mdiodev))
491 return -ENODEV;
492
493 strncpy(mdiodev->modalias, bi->modalias,
494 sizeof(mdiodev->modalias));
495 mdiodev->bus_match = mdio_device_bus_match;
496 mdiodev->dev.platform_data = (void *)bi->platform_data;
497
498 ret = mdio_device_register(mdiodev);
499 if (ret)
500 mdio_device_free(mdiodev);
501
502 return ret;
503}
504
b3df0da8 505/**
59f06978 506 * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
b3df0da8 507 * @bus: target mii_bus
59f06978 508 * @owner: module containing bus accessor functions
e1393456 509 *
b3df0da8 510 * Description: Called by a bus driver to bring up all the PHYs
59f06978
RK
511 * on a given bus, and attach them to the bus. Drivers should use
512 * mdiobus_register() rather than __mdiobus_register() unless they
f89df3f3 513 * need to pass a specific owner module. MDIO devices which are not
fec76125 514 * PHYs will not be brought up by this function. They are expected
f89df3f3 515 * to be explicitly listed in DT and instantiated by of_mdiobus_register().
b3df0da8
RD
516 *
517 * Returns 0 on success or < 0 on error.
e1393456 518 */
3e3aaf64 519int __mdiobus_register(struct mii_bus *bus, struct module *owner)
e1393456 520{
711fdba3 521 struct mdio_device *mdiodev;
161c8d2f 522 int i, err;
69226896 523 struct gpio_desc *gpiod;
e1393456 524
e1393456 525 if (NULL == bus || NULL == bus->name ||
02d320c3 526 NULL == bus->read || NULL == bus->write)
e1393456
AF
527 return -EINVAL;
528
46abc021
LB
529 BUG_ON(bus->state != MDIOBUS_ALLOCATED &&
530 bus->state != MDIOBUS_UNREGISTERED);
531
3e3aaf64 532 bus->owner = owner;
46abc021
LB
533 bus->dev.parent = bus->parent;
534 bus->dev.class = &mdio_bus_class;
535 bus->dev.groups = NULL;
036b6687 536 dev_set_name(&bus->dev, "%s", bus->id);
46abc021
LB
537
538 err = device_register(&bus->dev);
539 if (err) {
8d242488 540 pr_err("mii_bus %s failed to register\n", bus->id);
46abc021
LB
541 return -EINVAL;
542 }
543
d1e7fe4d 544 mutex_init(&bus->mdio_lock);
63490847 545 mutex_init(&bus->shared_lock);
d1e7fe4d 546
e0183b97
ML
547 /* assert bus level PHY GPIO reset */
548 gpiod = devm_gpiod_get_optional(&bus->dev, "reset", GPIOD_OUT_HIGH);
d396e84c 549 if (IS_ERR(gpiod)) {
0a12ad59
GS
550 err = dev_err_probe(&bus->dev, PTR_ERR(gpiod),
551 "mii_bus %s couldn't get reset GPIO\n",
552 bus->id);
e40e2a2e 553 device_del(&bus->dev);
0a12ad59 554 return err;
fe0e4052 555 } else if (gpiod) {
d396e84c 556 bus->reset_gpiod = gpiod;
6259e0f5 557 fsleep(bus->reset_delay_us);
d396e84c 558 gpiod_set_value_cansleep(gpiod, 0);
bb383129
BT
559 if (bus->reset_post_delay_us > 0)
560 fsleep(bus->reset_post_delay_us);
69226896
RQ
561 }
562
c290d1ab
FF
563 if (bus->reset) {
564 err = bus->reset(bus);
565 if (err)
566 goto error_reset_gpiod;
567 }
df0c8d91 568
e1393456 569 for (i = 0; i < PHY_MAX_ADDR; i++) {
4fd5f812
LB
570 if ((bus->phy_mask & (1 << i)) == 0) {
571 struct phy_device *phydev;
e1393456 572
4fd5f812 573 phydev = mdiobus_scan(bus, i);
70e927b9 574 if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV)) {
4fd5f812 575 err = PTR_ERR(phydev);
161c8d2f
KH
576 goto error;
577 }
64b1c2b4 578 }
e1393456
AF
579 }
580
d0281a56 581 mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device);
648ea013 582
161c8d2f 583 bus->state = MDIOBUS_REGISTERED;
e1393456 584 pr_info("%s: probed\n", bus->name);
161c8d2f 585 return 0;
e1393456 586
161c8d2f
KH
587error:
588 while (--i >= 0) {
711fdba3
AL
589 mdiodev = bus->mdio_map[i];
590 if (!mdiodev)
591 continue;
592
593 mdiodev->device_remove(mdiodev);
594 mdiodev->device_free(mdiodev);
161c8d2f 595 }
c290d1ab 596error_reset_gpiod:
69226896 597 /* Put PHYs in RESET to save power */
a010a2f6
FF
598 if (bus->reset_gpiod)
599 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
69226896 600
161c8d2f 601 device_del(&bus->dev);
e1393456
AF
602 return err;
603}
3e3aaf64 604EXPORT_SYMBOL(__mdiobus_register);
e1393456
AF
605
606void mdiobus_unregister(struct mii_bus *bus)
607{
a9049e0c 608 struct mdio_device *mdiodev;
e1393456
AF
609 int i;
610
1dde47a6
DC
611 if (WARN_ON_ONCE(bus->state != MDIOBUS_REGISTERED))
612 return;
46abc021
LB
613 bus->state = MDIOBUS_UNREGISTERED;
614
e1393456 615 for (i = 0; i < PHY_MAX_ADDR; i++) {
a9049e0c
AL
616 mdiodev = bus->mdio_map[i];
617 if (!mdiodev)
618 continue;
619
6110ed2d
DB
620 if (mdiodev->reset_gpio)
621 gpiod_put(mdiodev->reset_gpio);
bafbdd52 622
711fdba3
AL
623 mdiodev->device_remove(mdiodev);
624 mdiodev->device_free(mdiodev);
e1393456 625 }
69226896
RQ
626
627 /* Put PHYs in RESET to save power */
a010a2f6
FF
628 if (bus->reset_gpiod)
629 gpiod_set_value_cansleep(bus->reset_gpiod, 1);
69226896 630
b6c6aedc 631 device_del(&bus->dev);
e1393456
AF
632}
633EXPORT_SYMBOL(mdiobus_unregister);
634
298cf9be
LB
635/**
636 * mdiobus_free - free a struct mii_bus
637 * @bus: mii_bus to free
638 *
46abc021
LB
639 * This function releases the reference to the underlying device
640 * object in the mii_bus. If this is the last reference, the mii_bus
641 * will be freed.
298cf9be
LB
642 */
643void mdiobus_free(struct mii_bus *bus)
644{
02d320c3 645 /* For compatibility with error handling in drivers. */
46abc021
LB
646 if (bus->state == MDIOBUS_ALLOCATED) {
647 kfree(bus);
648 return;
649 }
650
651 BUG_ON(bus->state != MDIOBUS_UNREGISTERED);
652 bus->state = MDIOBUS_RELEASED;
653
654 put_device(&bus->dev);
298cf9be
LB
655}
656EXPORT_SYMBOL(mdiobus_free);
657
f89df3f3
AL
658/**
659 * mdiobus_scan - scan a bus for MDIO devices.
660 * @bus: mii_bus to scan
661 * @addr: address on bus to scan
662 *
663 * This function scans the MDIO bus, looking for devices which can be
664 * identified using a vendor/product ID in registers 2 and 3. Not all
665 * MDIO devices have such registers, but PHY devices typically
666 * do. Hence this function assumes anything found is a PHY, or can be
667 * treated as a PHY. Other MDIO devices, such as switches, will
668 * probably not be found during the scan.
669 */
4fd5f812
LB
670struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
671{
0cc8fecf 672 struct phy_device *phydev = ERR_PTR(-ENODEV);
4fd5f812
LB
673 int err;
674
0cc8fecf
JL
675 switch (bus->probe_capabilities) {
676 case MDIOBUS_NO_CAP:
677 case MDIOBUS_C22:
678 phydev = get_phy_device(bus, addr, false);
679 break;
680 case MDIOBUS_C45:
681 phydev = get_phy_device(bus, addr, true);
682 break;
683 case MDIOBUS_C22_C45:
684 phydev = get_phy_device(bus, addr, false);
685 if (IS_ERR(phydev))
686 phydev = get_phy_device(bus, addr, true);
687 break;
688 }
689
66c239e7 690 if (IS_ERR(phydev))
4fd5f812
LB
691 return phydev;
692
86f6cf41
DM
693 /*
694 * For DT, see if the auto-probed phy has a correspoding child
695 * in the bus node, and set the of_node pointer in this case.
696 */
f03bc4ae 697 of_mdiobus_link_mdiodev(bus, &phydev->mdio);
86f6cf41 698
4dea547f 699 err = phy_device_register(phydev);
4fd5f812 700 if (err) {
4fd5f812 701 phy_device_free(phydev);
e98a3aab 702 return ERR_PTR(-ENODEV);
4fd5f812
LB
703 }
704
4fd5f812
LB
705 return phydev;
706}
707EXPORT_SYMBOL(mdiobus_scan);
708
080bb352
FF
709static void mdiobus_stats_acct(struct mdio_bus_stats *stats, bool op, int ret)
710{
c7e261d8 711 preempt_disable();
080bb352
FF
712 u64_stats_update_begin(&stats->syncp);
713
714 u64_stats_inc(&stats->transfers);
715 if (ret < 0) {
716 u64_stats_inc(&stats->errors);
717 goto out;
718 }
719
720 if (op)
721 u64_stats_inc(&stats->reads);
722 else
723 u64_stats_inc(&stats->writes);
724out:
725 u64_stats_update_end(&stats->syncp);
c7e261d8 726 preempt_enable();
080bb352
FF
727}
728
34dc08e4
RK
729/**
730 * __mdiobus_read - Unlocked version of the mdiobus_read function
731 * @bus: the mii_bus struct
732 * @addr: the phy address
733 * @regnum: register number to read
734 *
735 * Read a MDIO bus register. Caller must hold the mdio bus lock.
736 *
737 * NOTE: MUST NOT be called from interrupt context.
738 */
739int __mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
740{
741 int retval;
742
e6e918d4 743 lockdep_assert_held_once(&bus->mdio_lock);
34dc08e4
RK
744
745 retval = bus->read(bus, addr, regnum);
746
747 trace_mdio_access(bus, 1, addr, regnum, retval, retval);
080bb352 748 mdiobus_stats_acct(&bus->stats[addr], true, retval);
34dc08e4
RK
749
750 return retval;
751}
752EXPORT_SYMBOL(__mdiobus_read);
753
754/**
755 * __mdiobus_write - Unlocked version of the mdiobus_write function
756 * @bus: the mii_bus struct
757 * @addr: the phy address
758 * @regnum: register number to write
759 * @val: value to write to @regnum
760 *
761 * Write a MDIO bus register. Caller must hold the mdio bus lock.
762 *
763 * NOTE: MUST NOT be called from interrupt context.
764 */
765int __mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
766{
767 int err;
768
e6e918d4 769 lockdep_assert_held_once(&bus->mdio_lock);
34dc08e4
RK
770
771 err = bus->write(bus, addr, regnum, val);
772
773 trace_mdio_access(bus, 0, addr, regnum, val, err);
080bb352 774 mdiobus_stats_acct(&bus->stats[addr], false, err);
34dc08e4
RK
775
776 return err;
777}
778EXPORT_SYMBOL(__mdiobus_write);
779
6cc7cf81
RK
780/**
781 * __mdiobus_modify_changed - Unlocked version of the mdiobus_modify function
782 * @bus: the mii_bus struct
783 * @addr: the phy address
784 * @regnum: register number to modify
785 * @mask: bit mask of bits to clear
786 * @set: bit mask of bits to set
787 *
788 * Read, modify, and if any change, write the register value back to the
789 * device. Any error returns a negative number.
790 *
791 * NOTE: MUST NOT be called from interrupt context.
792 */
793int __mdiobus_modify_changed(struct mii_bus *bus, int addr, u32 regnum,
794 u16 mask, u16 set)
795{
796 int new, ret;
797
798 ret = __mdiobus_read(bus, addr, regnum);
799 if (ret < 0)
800 return ret;
801
802 new = (ret & ~mask) | set;
803 if (new == ret)
804 return 0;
805
806 ret = __mdiobus_write(bus, addr, regnum, new);
807
808 return ret < 0 ? ret : 1;
809}
810EXPORT_SYMBOL_GPL(__mdiobus_modify_changed);
811
21dd19fe
NA
812/**
813 * mdiobus_read_nested - Nested version of the mdiobus_read function
814 * @bus: the mii_bus struct
815 * @addr: the phy address
816 * @regnum: register number to read
817 *
818 * In case of nested MDIO bus access avoid lockdep false positives by
819 * using mutex_lock_nested().
820 *
821 * NOTE: MUST NOT be called from interrupt context,
822 * because the bus read/write functions may wait for an interrupt
823 * to conclude the operation.
824 */
825int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
826{
827 int retval;
828
9a6f2b01 829 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
34dc08e4 830 retval = __mdiobus_read(bus, addr, regnum);
21dd19fe
NA
831 mutex_unlock(&bus->mdio_lock);
832
833 return retval;
834}
835EXPORT_SYMBOL(mdiobus_read_nested);
836
2e888103
LB
837/**
838 * mdiobus_read - Convenience function for reading a given MII mgmt register
839 * @bus: the mii_bus struct
840 * @addr: the phy address
841 * @regnum: register number to read
842 *
843 * NOTE: MUST NOT be called from interrupt context,
844 * because the bus read/write functions may wait for an interrupt
845 * to conclude the operation.
846 */
abf35df2 847int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
2e888103
LB
848{
849 int retval;
850
2e888103 851 mutex_lock(&bus->mdio_lock);
34dc08e4 852 retval = __mdiobus_read(bus, addr, regnum);
2e888103
LB
853 mutex_unlock(&bus->mdio_lock);
854
855 return retval;
856}
857EXPORT_SYMBOL(mdiobus_read);
858
21dd19fe
NA
859/**
860 * mdiobus_write_nested - Nested version of the mdiobus_write function
861 * @bus: the mii_bus struct
862 * @addr: the phy address
863 * @regnum: register number to write
864 * @val: value to write to @regnum
865 *
866 * In case of nested MDIO bus access avoid lockdep false positives by
867 * using mutex_lock_nested().
868 *
869 * NOTE: MUST NOT be called from interrupt context,
870 * because the bus read/write functions may wait for an interrupt
871 * to conclude the operation.
872 */
873int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
874{
875 int err;
876
9a6f2b01 877 mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
34dc08e4 878 err = __mdiobus_write(bus, addr, regnum, val);
21dd19fe
NA
879 mutex_unlock(&bus->mdio_lock);
880
881 return err;
882}
883EXPORT_SYMBOL(mdiobus_write_nested);
884
2e888103
LB
885/**
886 * mdiobus_write - Convenience function for writing a given MII mgmt register
887 * @bus: the mii_bus struct
888 * @addr: the phy address
889 * @regnum: register number to write
890 * @val: value to write to @regnum
891 *
892 * NOTE: MUST NOT be called from interrupt context,
893 * because the bus read/write functions may wait for an interrupt
894 * to conclude the operation.
895 */
abf35df2 896int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
2e888103
LB
897{
898 int err;
899
2e888103 900 mutex_lock(&bus->mdio_lock);
34dc08e4 901 err = __mdiobus_write(bus, addr, regnum, val);
2e888103
LB
902 mutex_unlock(&bus->mdio_lock);
903
904 return err;
905}
906EXPORT_SYMBOL(mdiobus_write);
907
6cc7cf81
RK
908/**
909 * mdiobus_modify - Convenience function for modifying a given mdio device
910 * register
911 * @bus: the mii_bus struct
912 * @addr: the phy address
913 * @regnum: register number to write
914 * @mask: bit mask of bits to clear
915 * @set: bit mask of bits to set
916 */
917int mdiobus_modify(struct mii_bus *bus, int addr, u32 regnum, u16 mask, u16 set)
918{
919 int err;
920
6cc7cf81
RK
921 mutex_lock(&bus->mdio_lock);
922 err = __mdiobus_modify_changed(bus, addr, regnum, mask, set);
923 mutex_unlock(&bus->mdio_lock);
924
925 return err < 0 ? err : 0;
926}
927EXPORT_SYMBOL_GPL(mdiobus_modify);
928
b3df0da8 929/**
e76a4957
AL
930 * mdio_bus_match - determine if given MDIO driver supports the given
931 * MDIO device
932 * @dev: target MDIO device
933 * @drv: given MDIO driver
00db8189 934 *
e76a4957
AL
935 * Description: Given a MDIO device, and a MDIO driver, return 1 if
936 * the driver supports the device. Otherwise, return 0. This may
937 * require calling the devices own match function, since different classes
938 * of MDIO devices have different match criteria.
00db8189
AF
939 */
940static int mdio_bus_match(struct device *dev, struct device_driver *drv)
941{
e76a4957 942 struct mdio_device *mdio = to_mdio_device(dev);
00db8189 943
a30e2c18
DD
944 if (of_driver_match_device(dev, drv))
945 return 1;
946
e76a4957
AL
947 if (mdio->bus_match)
948 return mdio->bus_match(dev, drv);
a30e2c18 949
e76a4957 950 return 0;
00db8189
AF
951}
952
1b8f8694
RK
953static int mdio_uevent(struct device *dev, struct kobj_uevent_env *env)
954{
955 int rc;
956
957 /* Some devices have extra OF data and an OF-style MODALIAS */
958 rc = of_device_uevent_modalias(dev, env);
959 if (rc != -ENODEV)
960 return rc;
961
962 return 0;
963}
964
080bb352
FF
965static struct attribute *mdio_bus_device_statistics_attrs[] = {
966 &dev_attr_mdio_bus_device_transfers.attr.attr,
967 &dev_attr_mdio_bus_device_errors.attr.attr,
968 &dev_attr_mdio_bus_device_writes.attr.attr,
969 &dev_attr_mdio_bus_device_reads.attr.attr,
970 NULL,
971};
972
973static const struct attribute_group mdio_bus_device_statistics_group = {
974 .name = "statistics",
975 .attrs = mdio_bus_device_statistics_attrs,
976};
977
978static const struct attribute_group *mdio_bus_dev_groups[] = {
979 &mdio_bus_device_statistics_group,
980 NULL,
981};
982
00db8189
AF
983struct bus_type mdio_bus_type = {
984 .name = "mdio_bus",
080bb352 985 .dev_groups = mdio_bus_dev_groups,
00db8189 986 .match = mdio_bus_match,
1b8f8694 987 .uevent = mdio_uevent,
00db8189 988};
11b0bacd 989EXPORT_SYMBOL(mdio_bus_type);
00db8189 990
67c4f3fa 991int __init mdio_bus_init(void)
00db8189 992{
46abc021
LB
993 int ret;
994
995 ret = class_register(&mdio_bus_class);
996 if (!ret) {
997 ret = bus_register(&mdio_bus_type);
998 if (ret)
999 class_unregister(&mdio_bus_class);
1000 }
1001
1002 return ret;
00db8189 1003}
90eff909 1004EXPORT_SYMBOL_GPL(mdio_bus_init);
00db8189 1005
90eff909 1006#if IS_ENABLED(CONFIG_PHYLIB)
dc85dec6 1007void mdio_bus_exit(void)
e1393456 1008{
46abc021 1009 class_unregister(&mdio_bus_class);
e1393456
AF
1010 bus_unregister(&mdio_bus_type);
1011}
90eff909
FF
1012EXPORT_SYMBOL_GPL(mdio_bus_exit);
1013#else
1014module_init(mdio_bus_init);
1015/* no module_exit, intentional */
1016MODULE_LICENSE("GPL");
1017MODULE_DESCRIPTION("MDIO bus/device layer");
1018#endif