xref: /linux/drivers/net/phy/mdio_bus.c (revision cff9c565e65f3622e8dc1dcc21c1520a083dff35)
1 // SPDX-License-Identifier: GPL-2.0+
2 /* MDIO Bus interface
3  *
4  * Author: Andy Fleming
5  *
6  * Copyright (c) 2004 Freescale Semiconductor, Inc.
7  */
8 
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 
11 #include <linux/delay.h>
12 #include <linux/device.h>
13 #include <linux/errno.h>
14 #include <linux/etherdevice.h>
15 #include <linux/ethtool.h>
16 #include <linux/gpio.h>
17 #include <linux/gpio/consumer.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/io.h>
21 #include <linux/kernel.h>
22 #include <linux/micrel_phy.h>
23 #include <linux/mii.h>
24 #include <linux/mm.h>
25 #include <linux/module.h>
26 #include <linux/netdevice.h>
27 #include <linux/of_device.h>
28 #include <linux/of_gpio.h>
29 #include <linux/of_mdio.h>
30 #include <linux/phy.h>
31 #include <linux/reset.h>
32 #include <linux/skbuff.h>
33 #include <linux/slab.h>
34 #include <linux/spinlock.h>
35 #include <linux/string.h>
36 #include <linux/uaccess.h>
37 #include <linux/unistd.h>
38 
39 #define CREATE_TRACE_POINTS
40 #include <trace/events/mdio.h>
41 
42 #include "mdio-boardinfo.h"
43 
44 static int mdiobus_register_gpiod(struct mdio_device *mdiodev)
45 {
46 	/* Deassert the optional reset signal */
47 	mdiodev->reset_gpio = gpiod_get_optional(&mdiodev->dev,
48 						 "reset", GPIOD_OUT_LOW);
49 	if (IS_ERR(mdiodev->reset_gpio))
50 		return PTR_ERR(mdiodev->reset_gpio);
51 
52 	if (mdiodev->reset_gpio)
53 		gpiod_set_consumer_name(mdiodev->reset_gpio, "PHY reset");
54 
55 	return 0;
56 }
57 
58 static int mdiobus_register_reset(struct mdio_device *mdiodev)
59 {
60 	struct reset_control *reset;
61 
62 	reset = reset_control_get_optional_exclusive(&mdiodev->dev, "phy");
63 	if (IS_ERR(reset))
64 		return PTR_ERR(reset);
65 
66 	mdiodev->reset_ctrl = reset;
67 
68 	return 0;
69 }
70 
71 int mdiobus_register_device(struct mdio_device *mdiodev)
72 {
73 	int err;
74 
75 	if (mdiodev->bus->mdio_map[mdiodev->addr])
76 		return -EBUSY;
77 
78 	if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY) {
79 		err = mdiobus_register_gpiod(mdiodev);
80 		if (err)
81 			return err;
82 
83 		err = mdiobus_register_reset(mdiodev);
84 		if (err)
85 			return err;
86 
87 		/* Assert the reset signal */
88 		mdio_device_reset(mdiodev, 1);
89 	}
90 
91 	mdiodev->bus->mdio_map[mdiodev->addr] = mdiodev;
92 
93 	return 0;
94 }
95 EXPORT_SYMBOL(mdiobus_register_device);
96 
97 int mdiobus_unregister_device(struct mdio_device *mdiodev)
98 {
99 	if (mdiodev->bus->mdio_map[mdiodev->addr] != mdiodev)
100 		return -EINVAL;
101 
102 	reset_control_put(mdiodev->reset_ctrl);
103 
104 	mdiodev->bus->mdio_map[mdiodev->addr] = NULL;
105 
106 	return 0;
107 }
108 EXPORT_SYMBOL(mdiobus_unregister_device);
109 
110 static struct mdio_device *mdiobus_find_device(struct mii_bus *bus, int addr)
111 {
112 	bool addr_valid = addr >= 0 && addr < ARRAY_SIZE(bus->mdio_map);
113 
114 	if (WARN_ONCE(!addr_valid, "addr %d out of range\n", addr))
115 		return NULL;
116 
117 	return bus->mdio_map[addr];
118 }
119 
120 struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr)
121 {
122 	struct mdio_device *mdiodev;
123 
124 	mdiodev = mdiobus_find_device(bus, addr);
125 	if (!mdiodev)
126 		return NULL;
127 
128 	if (!(mdiodev->flags & MDIO_DEVICE_FLAG_PHY))
129 		return NULL;
130 
131 	return container_of(mdiodev, struct phy_device, mdio);
132 }
133 EXPORT_SYMBOL(mdiobus_get_phy);
134 
135 bool mdiobus_is_registered_device(struct mii_bus *bus, int addr)
136 {
137 	return mdiobus_find_device(bus, addr) != NULL;
138 }
139 EXPORT_SYMBOL(mdiobus_is_registered_device);
140 
141 /**
142  * mdiobus_alloc_size - allocate a mii_bus structure
143  * @size: extra amount of memory to allocate for private storage.
144  * If non-zero, then bus->priv is points to that memory.
145  *
146  * Description: called by a bus driver to allocate an mii_bus
147  * structure to fill in.
148  */
149 struct mii_bus *mdiobus_alloc_size(size_t size)
150 {
151 	struct mii_bus *bus;
152 	size_t aligned_size = ALIGN(sizeof(*bus), NETDEV_ALIGN);
153 	size_t alloc_size;
154 	int i;
155 
156 	/* If we alloc extra space, it should be aligned */
157 	if (size)
158 		alloc_size = aligned_size + size;
159 	else
160 		alloc_size = sizeof(*bus);
161 
162 	bus = kzalloc(alloc_size, GFP_KERNEL);
163 	if (!bus)
164 		return NULL;
165 
166 	bus->state = MDIOBUS_ALLOCATED;
167 	if (size)
168 		bus->priv = (void *)bus + aligned_size;
169 
170 	/* Initialise the interrupts to polling and 64-bit seqcounts */
171 	for (i = 0; i < PHY_MAX_ADDR; i++) {
172 		bus->irq[i] = PHY_POLL;
173 		u64_stats_init(&bus->stats[i].syncp);
174 	}
175 
176 	return bus;
177 }
178 EXPORT_SYMBOL(mdiobus_alloc_size);
179 
180 /**
181  * mdiobus_release - mii_bus device release callback
182  * @d: the target struct device that contains the mii_bus
183  *
184  * Description: called when the last reference to an mii_bus is
185  * dropped, to free the underlying memory.
186  */
187 static void mdiobus_release(struct device *d)
188 {
189 	struct mii_bus *bus = to_mii_bus(d);
190 
191 	WARN(bus->state != MDIOBUS_RELEASED &&
192 	     /* for compatibility with error handling in drivers */
193 	     bus->state != MDIOBUS_ALLOCATED,
194 	     "%s: not in RELEASED or ALLOCATED state\n",
195 	     bus->id);
196 	kfree(bus);
197 }
198 
199 struct mdio_bus_stat_attr {
200 	int addr;
201 	unsigned int field_offset;
202 };
203 
204 static u64 mdio_bus_get_stat(struct mdio_bus_stats *s, unsigned int offset)
205 {
206 	const char *p = (const char *)s + offset;
207 	unsigned int start;
208 	u64 val = 0;
209 
210 	do {
211 		start = u64_stats_fetch_begin(&s->syncp);
212 		val = u64_stats_read((const u64_stats_t *)p);
213 	} while (u64_stats_fetch_retry(&s->syncp, start));
214 
215 	return val;
216 }
217 
218 static u64 mdio_bus_get_global_stat(struct mii_bus *bus, unsigned int offset)
219 {
220 	unsigned int i;
221 	u64 val = 0;
222 
223 	for (i = 0; i < PHY_MAX_ADDR; i++)
224 		val += mdio_bus_get_stat(&bus->stats[i], offset);
225 
226 	return val;
227 }
228 
229 static ssize_t mdio_bus_stat_field_show(struct device *dev,
230 					struct device_attribute *attr,
231 					char *buf)
232 {
233 	struct mii_bus *bus = to_mii_bus(dev);
234 	struct mdio_bus_stat_attr *sattr;
235 	struct dev_ext_attribute *eattr;
236 	u64 val;
237 
238 	eattr = container_of(attr, struct dev_ext_attribute, attr);
239 	sattr = eattr->var;
240 
241 	if (sattr->addr < 0)
242 		val = mdio_bus_get_global_stat(bus, sattr->field_offset);
243 	else
244 		val = mdio_bus_get_stat(&bus->stats[sattr->addr],
245 					sattr->field_offset);
246 
247 	return sysfs_emit(buf, "%llu\n", val);
248 }
249 
250 static ssize_t mdio_bus_device_stat_field_show(struct device *dev,
251 					       struct device_attribute *attr,
252 					       char *buf)
253 {
254 	struct mdio_device *mdiodev = to_mdio_device(dev);
255 	struct mii_bus *bus = mdiodev->bus;
256 	struct mdio_bus_stat_attr *sattr;
257 	struct dev_ext_attribute *eattr;
258 	int addr = mdiodev->addr;
259 	u64 val;
260 
261 	eattr = container_of(attr, struct dev_ext_attribute, attr);
262 	sattr = eattr->var;
263 
264 	val = mdio_bus_get_stat(&bus->stats[addr], sattr->field_offset);
265 
266 	return sysfs_emit(buf, "%llu\n", val);
267 }
268 
269 #define MDIO_BUS_STATS_ATTR_DECL(field, file)				\
270 static struct dev_ext_attribute dev_attr_mdio_bus_##field = {		\
271 	.attr = { .attr = { .name = file, .mode = 0444 },		\
272 		     .show = mdio_bus_stat_field_show,			\
273 	},								\
274 	.var = &((struct mdio_bus_stat_attr) {				\
275 		-1, offsetof(struct mdio_bus_stats, field)		\
276 	}),								\
277 };									\
278 static struct dev_ext_attribute dev_attr_mdio_bus_device_##field = {	\
279 	.attr = { .attr = { .name = file, .mode = 0444 },		\
280 		     .show = mdio_bus_device_stat_field_show,		\
281 	},								\
282 	.var = &((struct mdio_bus_stat_attr) {				\
283 		-1, offsetof(struct mdio_bus_stats, field)		\
284 	}),								\
285 };
286 
287 #define MDIO_BUS_STATS_ATTR(field)					\
288 	MDIO_BUS_STATS_ATTR_DECL(field, __stringify(field))
289 
290 MDIO_BUS_STATS_ATTR(transfers);
291 MDIO_BUS_STATS_ATTR(errors);
292 MDIO_BUS_STATS_ATTR(writes);
293 MDIO_BUS_STATS_ATTR(reads);
294 
295 #define MDIO_BUS_STATS_ADDR_ATTR_DECL(field, addr, file)		\
296 static struct dev_ext_attribute dev_attr_mdio_bus_addr_##field##_##addr = { \
297 	.attr = { .attr = { .name = file, .mode = 0444 },		\
298 		     .show = mdio_bus_stat_field_show,			\
299 	},								\
300 	.var = &((struct mdio_bus_stat_attr) {				\
301 		addr, offsetof(struct mdio_bus_stats, field)		\
302 	}),								\
303 }
304 
305 #define MDIO_BUS_STATS_ADDR_ATTR(field, addr)				\
306 	MDIO_BUS_STATS_ADDR_ATTR_DECL(field, addr,			\
307 				 __stringify(field) "_" __stringify(addr))
308 
309 #define MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(addr)			\
310 	MDIO_BUS_STATS_ADDR_ATTR(transfers, addr);			\
311 	MDIO_BUS_STATS_ADDR_ATTR(errors, addr);				\
312 	MDIO_BUS_STATS_ADDR_ATTR(writes, addr);				\
313 	MDIO_BUS_STATS_ADDR_ATTR(reads, addr)				\
314 
315 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(0);
316 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(1);
317 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(2);
318 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(3);
319 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(4);
320 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(5);
321 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(6);
322 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(7);
323 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(8);
324 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(9);
325 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(10);
326 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(11);
327 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(12);
328 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(13);
329 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(14);
330 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(15);
331 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(16);
332 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(17);
333 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(18);
334 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(19);
335 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(20);
336 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(21);
337 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(22);
338 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(23);
339 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(24);
340 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(25);
341 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(26);
342 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(27);
343 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(28);
344 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(29);
345 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(30);
346 MDIO_BUS_STATS_ADDR_ATTR_GROUP_DECL(31);
347 
348 #define MDIO_BUS_STATS_ADDR_ATTR_GROUP(addr)				\
349 	&dev_attr_mdio_bus_addr_transfers_##addr.attr.attr,		\
350 	&dev_attr_mdio_bus_addr_errors_##addr.attr.attr,		\
351 	&dev_attr_mdio_bus_addr_writes_##addr.attr.attr,		\
352 	&dev_attr_mdio_bus_addr_reads_##addr.attr.attr			\
353 
354 static struct attribute *mdio_bus_statistics_attrs[] = {
355 	&dev_attr_mdio_bus_transfers.attr.attr,
356 	&dev_attr_mdio_bus_errors.attr.attr,
357 	&dev_attr_mdio_bus_writes.attr.attr,
358 	&dev_attr_mdio_bus_reads.attr.attr,
359 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(0),
360 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(1),
361 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(2),
362 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(3),
363 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(4),
364 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(5),
365 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(6),
366 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(7),
367 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(8),
368 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(9),
369 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(10),
370 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(11),
371 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(12),
372 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(13),
373 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(14),
374 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(15),
375 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(16),
376 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(17),
377 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(18),
378 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(19),
379 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(20),
380 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(21),
381 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(22),
382 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(23),
383 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(24),
384 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(25),
385 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(26),
386 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(27),
387 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(28),
388 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(29),
389 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(30),
390 	MDIO_BUS_STATS_ADDR_ATTR_GROUP(31),
391 	NULL,
392 };
393 
394 static const struct attribute_group mdio_bus_statistics_group = {
395 	.name	= "statistics",
396 	.attrs	= mdio_bus_statistics_attrs,
397 };
398 
399 static const struct attribute_group *mdio_bus_groups[] = {
400 	&mdio_bus_statistics_group,
401 	NULL,
402 };
403 
404 static struct class mdio_bus_class = {
405 	.name		= "mdio_bus",
406 	.dev_release	= mdiobus_release,
407 	.dev_groups	= mdio_bus_groups,
408 };
409 
410 /**
411  * mdio_find_bus - Given the name of a mdiobus, find the mii_bus.
412  * @mdio_name: The name of a mdiobus.
413  *
414  * Returns a reference to the mii_bus, or NULL if none found.  The
415  * embedded struct device will have its reference count incremented,
416  * and this must be put_deviced'ed once the bus is finished with.
417  */
418 struct mii_bus *mdio_find_bus(const char *mdio_name)
419 {
420 	struct device *d;
421 
422 	d = class_find_device_by_name(&mdio_bus_class, mdio_name);
423 	return d ? to_mii_bus(d) : NULL;
424 }
425 EXPORT_SYMBOL(mdio_find_bus);
426 
427 #if IS_ENABLED(CONFIG_OF_MDIO)
428 /**
429  * of_mdio_find_bus - Given an mii_bus node, find the mii_bus.
430  * @mdio_bus_np: Pointer to the mii_bus.
431  *
432  * Returns a reference to the mii_bus, or NULL if none found.  The
433  * embedded struct device will have its reference count incremented,
434  * and this must be put once the bus is finished with.
435  *
436  * Because the association of a device_node and mii_bus is made via
437  * of_mdiobus_register(), the mii_bus cannot be found before it is
438  * registered with of_mdiobus_register().
439  *
440  */
441 struct mii_bus *of_mdio_find_bus(struct device_node *mdio_bus_np)
442 {
443 	struct device *d;
444 
445 	if (!mdio_bus_np)
446 		return NULL;
447 
448 	d = class_find_device_by_of_node(&mdio_bus_class, mdio_bus_np);
449 	return d ? to_mii_bus(d) : NULL;
450 }
451 EXPORT_SYMBOL(of_mdio_find_bus);
452 
453 /* Walk the list of subnodes of a mdio bus and look for a node that
454  * matches the mdio device's address with its 'reg' property. If
455  * found, set the of_node pointer for the mdio device. This allows
456  * auto-probed phy devices to be supplied with information passed in
457  * via DT.
458  */
459 static void of_mdiobus_link_mdiodev(struct mii_bus *bus,
460 				    struct mdio_device *mdiodev)
461 {
462 	struct device *dev = &mdiodev->dev;
463 	struct device_node *child;
464 
465 	if (dev->of_node || !bus->dev.of_node)
466 		return;
467 
468 	for_each_available_child_of_node(bus->dev.of_node, child) {
469 		int addr;
470 
471 		addr = of_mdio_parse_addr(dev, child);
472 		if (addr < 0)
473 			continue;
474 
475 		if (addr == mdiodev->addr) {
476 			device_set_node(dev, of_fwnode_handle(child));
477 			/* The refcount on "child" is passed to the mdio
478 			 * device. Do _not_ use of_node_put(child) here.
479 			 */
480 			return;
481 		}
482 	}
483 }
484 #else /* !IS_ENABLED(CONFIG_OF_MDIO) */
485 static inline void of_mdiobus_link_mdiodev(struct mii_bus *mdio,
486 					   struct mdio_device *mdiodev)
487 {
488 }
489 #endif
490 
491 /**
492  * mdiobus_create_device - create a full MDIO device given
493  * a mdio_board_info structure
494  * @bus: MDIO bus to create the devices on
495  * @bi: mdio_board_info structure describing the devices
496  *
497  * Returns 0 on success or < 0 on error.
498  */
499 static int mdiobus_create_device(struct mii_bus *bus,
500 				 struct mdio_board_info *bi)
501 {
502 	struct mdio_device *mdiodev;
503 	int ret = 0;
504 
505 	mdiodev = mdio_device_create(bus, bi->mdio_addr);
506 	if (IS_ERR(mdiodev))
507 		return -ENODEV;
508 
509 	strscpy(mdiodev->modalias, bi->modalias,
510 		sizeof(mdiodev->modalias));
511 	mdiodev->bus_match = mdio_device_bus_match;
512 	mdiodev->dev.platform_data = (void *)bi->platform_data;
513 
514 	ret = mdio_device_register(mdiodev);
515 	if (ret)
516 		mdio_device_free(mdiodev);
517 
518 	return ret;
519 }
520 
521 static struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr, bool c45)
522 {
523 	struct phy_device *phydev = ERR_PTR(-ENODEV);
524 	int err;
525 
526 	phydev = get_phy_device(bus, addr, c45);
527 	if (IS_ERR(phydev))
528 		return phydev;
529 
530 	/* For DT, see if the auto-probed phy has a corresponding child
531 	 * in the bus node, and set the of_node pointer in this case.
532 	 */
533 	of_mdiobus_link_mdiodev(bus, &phydev->mdio);
534 
535 	err = phy_device_register(phydev);
536 	if (err) {
537 		phy_device_free(phydev);
538 		return ERR_PTR(-ENODEV);
539 	}
540 
541 	return phydev;
542 }
543 
544 /**
545  * mdiobus_scan_c22 - scan one address on a bus for C22 MDIO devices.
546  * @bus: mii_bus to scan
547  * @addr: address on bus to scan
548  *
549  * This function scans one address on the MDIO bus, looking for
550  * devices which can be identified using a vendor/product ID in
551  * registers 2 and 3. Not all MDIO devices have such registers, but
552  * PHY devices typically do. Hence this function assumes anything
553  * found is a PHY, or can be treated as a PHY. Other MDIO devices,
554  * such as switches, will probably not be found during the scan.
555  */
556 struct phy_device *mdiobus_scan_c22(struct mii_bus *bus, int addr)
557 {
558 	return mdiobus_scan(bus, addr, false);
559 }
560 EXPORT_SYMBOL(mdiobus_scan_c22);
561 
562 /**
563  * mdiobus_scan_c45 - scan one address on a bus for C45 MDIO devices.
564  * @bus: mii_bus to scan
565  * @addr: address on bus to scan
566  *
567  * This function scans one address on the MDIO bus, looking for
568  * devices which can be identified using a vendor/product ID in
569  * registers 2 and 3. Not all MDIO devices have such registers, but
570  * PHY devices typically do. Hence this function assumes anything
571  * found is a PHY, or can be treated as a PHY. Other MDIO devices,
572  * such as switches, will probably not be found during the scan.
573  */
574 static struct phy_device *mdiobus_scan_c45(struct mii_bus *bus, int addr)
575 {
576 	return mdiobus_scan(bus, addr, true);
577 }
578 
579 static int mdiobus_scan_bus_c22(struct mii_bus *bus)
580 {
581 	int i;
582 
583 	for (i = 0; i < PHY_MAX_ADDR; i++) {
584 		if ((bus->phy_mask & BIT(i)) == 0) {
585 			struct phy_device *phydev;
586 
587 			phydev = mdiobus_scan_c22(bus, i);
588 			if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV))
589 				return PTR_ERR(phydev);
590 		}
591 	}
592 	return 0;
593 }
594 
595 static int mdiobus_scan_bus_c45(struct mii_bus *bus)
596 {
597 	int i;
598 
599 	for (i = 0; i < PHY_MAX_ADDR; i++) {
600 		if ((bus->phy_mask & BIT(i)) == 0) {
601 			struct phy_device *phydev;
602 
603 			/* Don't scan C45 if we already have a C22 device */
604 			if (bus->mdio_map[i])
605 				continue;
606 
607 			phydev = mdiobus_scan_c45(bus, i);
608 			if (IS_ERR(phydev) && (PTR_ERR(phydev) != -ENODEV))
609 				return PTR_ERR(phydev);
610 		}
611 	}
612 	return 0;
613 }
614 
615 /* There are some C22 PHYs which do bad things when where is a C45
616  * transaction on the bus, like accepting a read themselves, and
617  * stomping over the true devices reply, to performing a write to
618  * themselves which was intended for another device. Now that C22
619  * devices have been found, see if any of them are bad for C45, and if we
620  * should skip the C45 scan.
621  */
622 static bool mdiobus_prevent_c45_scan(struct mii_bus *bus)
623 {
624 	int i;
625 
626 	for (i = 0; i < PHY_MAX_ADDR; i++) {
627 		struct phy_device *phydev;
628 		u32 oui;
629 
630 		phydev = mdiobus_get_phy(bus, i);
631 		if (!phydev)
632 			continue;
633 		oui = phydev->phy_id >> 10;
634 
635 		if (oui == MICREL_OUI)
636 			return true;
637 	}
638 	return false;
639 }
640 
641 /**
642  * __mdiobus_register - bring up all the PHYs on a given bus and attach them to bus
643  * @bus: target mii_bus
644  * @owner: module containing bus accessor functions
645  *
646  * Description: Called by a bus driver to bring up all the PHYs
647  *   on a given bus, and attach them to the bus. Drivers should use
648  *   mdiobus_register() rather than __mdiobus_register() unless they
649  *   need to pass a specific owner module. MDIO devices which are not
650  *   PHYs will not be brought up by this function. They are expected
651  *   to be explicitly listed in DT and instantiated by of_mdiobus_register().
652  *
653  * Returns 0 on success or < 0 on error.
654  */
655 int __mdiobus_register(struct mii_bus *bus, struct module *owner)
656 {
657 	struct mdio_device *mdiodev;
658 	struct gpio_desc *gpiod;
659 	bool prevent_c45_scan;
660 	int i, err;
661 
662 	if (!bus || !bus->name)
663 		return -EINVAL;
664 
665 	/* An access method always needs both read and write operations */
666 	if (!!bus->read != !!bus->write || !!bus->read_c45 != !!bus->write_c45)
667 		return -EINVAL;
668 
669 	/* At least one method is mandatory */
670 	if (!bus->read && !bus->read_c45)
671 		return -EINVAL;
672 
673 	if (bus->parent && bus->parent->of_node)
674 		bus->parent->of_node->fwnode.flags |=
675 					FWNODE_FLAG_NEEDS_CHILD_BOUND_ON_ADD;
676 
677 	WARN(bus->state != MDIOBUS_ALLOCATED &&
678 	     bus->state != MDIOBUS_UNREGISTERED,
679 	     "%s: not in ALLOCATED or UNREGISTERED state\n", bus->id);
680 
681 	bus->owner = owner;
682 	bus->dev.parent = bus->parent;
683 	bus->dev.class = &mdio_bus_class;
684 	bus->dev.groups = NULL;
685 	dev_set_name(&bus->dev, "%s", bus->id);
686 
687 	/* We need to set state to MDIOBUS_UNREGISTERED to correctly release
688 	 * the device in mdiobus_free()
689 	 *
690 	 * State will be updated later in this function in case of success
691 	 */
692 	bus->state = MDIOBUS_UNREGISTERED;
693 
694 	err = device_register(&bus->dev);
695 	if (err) {
696 		pr_err("mii_bus %s failed to register\n", bus->id);
697 		return -EINVAL;
698 	}
699 
700 	mutex_init(&bus->mdio_lock);
701 	mutex_init(&bus->shared_lock);
702 
703 	/* assert bus level PHY GPIO reset */
704 	gpiod = devm_gpiod_get_optional(&bus->dev, "reset", GPIOD_OUT_HIGH);
705 	if (IS_ERR(gpiod)) {
706 		err = dev_err_probe(&bus->dev, PTR_ERR(gpiod),
707 				    "mii_bus %s couldn't get reset GPIO\n",
708 				    bus->id);
709 		device_del(&bus->dev);
710 		return err;
711 	} else	if (gpiod) {
712 		bus->reset_gpiod = gpiod;
713 		fsleep(bus->reset_delay_us);
714 		gpiod_set_value_cansleep(gpiod, 0);
715 		if (bus->reset_post_delay_us > 0)
716 			fsleep(bus->reset_post_delay_us);
717 	}
718 
719 	if (bus->reset) {
720 		err = bus->reset(bus);
721 		if (err)
722 			goto error_reset_gpiod;
723 	}
724 
725 	if (bus->read) {
726 		err = mdiobus_scan_bus_c22(bus);
727 		if (err)
728 			goto error;
729 	}
730 
731 	prevent_c45_scan = mdiobus_prevent_c45_scan(bus);
732 
733 	if (!prevent_c45_scan && bus->read_c45) {
734 		err = mdiobus_scan_bus_c45(bus);
735 		if (err)
736 			goto error;
737 	}
738 
739 	mdiobus_setup_mdiodev_from_board_info(bus, mdiobus_create_device);
740 
741 	bus->state = MDIOBUS_REGISTERED;
742 	dev_dbg(&bus->dev, "probed\n");
743 	return 0;
744 
745 error:
746 	for (i = 0; i < PHY_MAX_ADDR; i++) {
747 		mdiodev = bus->mdio_map[i];
748 		if (!mdiodev)
749 			continue;
750 
751 		mdiodev->device_remove(mdiodev);
752 		mdiodev->device_free(mdiodev);
753 	}
754 error_reset_gpiod:
755 	/* Put PHYs in RESET to save power */
756 	if (bus->reset_gpiod)
757 		gpiod_set_value_cansleep(bus->reset_gpiod, 1);
758 
759 	device_del(&bus->dev);
760 	return err;
761 }
762 EXPORT_SYMBOL(__mdiobus_register);
763 
764 void mdiobus_unregister(struct mii_bus *bus)
765 {
766 	struct mdio_device *mdiodev;
767 	int i;
768 
769 	if (WARN_ON_ONCE(bus->state != MDIOBUS_REGISTERED))
770 		return;
771 	bus->state = MDIOBUS_UNREGISTERED;
772 
773 	for (i = 0; i < PHY_MAX_ADDR; i++) {
774 		mdiodev = bus->mdio_map[i];
775 		if (!mdiodev)
776 			continue;
777 
778 		if (mdiodev->reset_gpio)
779 			gpiod_put(mdiodev->reset_gpio);
780 
781 		mdiodev->device_remove(mdiodev);
782 		mdiodev->device_free(mdiodev);
783 	}
784 
785 	/* Put PHYs in RESET to save power */
786 	if (bus->reset_gpiod)
787 		gpiod_set_value_cansleep(bus->reset_gpiod, 1);
788 
789 	device_del(&bus->dev);
790 
791 	if (bus->__unregister_callback)
792 		bus->__unregister_callback(bus);
793 }
794 EXPORT_SYMBOL(mdiobus_unregister);
795 
796 /**
797  * mdiobus_free - free a struct mii_bus
798  * @bus: mii_bus to free
799  *
800  * This function releases the reference to the underlying device
801  * object in the mii_bus.  If this is the last reference, the mii_bus
802  * will be freed.
803  */
804 void mdiobus_free(struct mii_bus *bus)
805 {
806 	/* For compatibility with error handling in drivers. */
807 	if (bus->state == MDIOBUS_ALLOCATED) {
808 		kfree(bus);
809 		return;
810 	}
811 
812 	WARN(bus->state != MDIOBUS_UNREGISTERED,
813 	     "%s: not in UNREGISTERED state\n", bus->id);
814 	bus->state = MDIOBUS_RELEASED;
815 
816 	put_device(&bus->dev);
817 }
818 EXPORT_SYMBOL(mdiobus_free);
819 
820 static void mdiobus_stats_acct(struct mdio_bus_stats *stats, bool op, int ret)
821 {
822 	preempt_disable();
823 	u64_stats_update_begin(&stats->syncp);
824 
825 	u64_stats_inc(&stats->transfers);
826 	if (ret < 0) {
827 		u64_stats_inc(&stats->errors);
828 		goto out;
829 	}
830 
831 	if (op)
832 		u64_stats_inc(&stats->reads);
833 	else
834 		u64_stats_inc(&stats->writes);
835 out:
836 	u64_stats_update_end(&stats->syncp);
837 	preempt_enable();
838 }
839 
840 /**
841  * __mdiobus_read - Unlocked version of the mdiobus_read function
842  * @bus: the mii_bus struct
843  * @addr: the phy address
844  * @regnum: register number to read
845  *
846  * Read a MDIO bus register. Caller must hold the mdio bus lock.
847  *
848  * NOTE: MUST NOT be called from interrupt context.
849  */
850 int __mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
851 {
852 	int retval;
853 
854 	lockdep_assert_held_once(&bus->mdio_lock);
855 
856 	if (bus->read)
857 		retval = bus->read(bus, addr, regnum);
858 	else
859 		retval = -EOPNOTSUPP;
860 
861 	trace_mdio_access(bus, 1, addr, regnum, retval, retval);
862 	mdiobus_stats_acct(&bus->stats[addr], true, retval);
863 
864 	return retval;
865 }
866 EXPORT_SYMBOL(__mdiobus_read);
867 
868 /**
869  * __mdiobus_write - Unlocked version of the mdiobus_write function
870  * @bus: the mii_bus struct
871  * @addr: the phy address
872  * @regnum: register number to write
873  * @val: value to write to @regnum
874  *
875  * Write a MDIO bus register. Caller must hold the mdio bus lock.
876  *
877  * NOTE: MUST NOT be called from interrupt context.
878  */
879 int __mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
880 {
881 	int err;
882 
883 	lockdep_assert_held_once(&bus->mdio_lock);
884 
885 	if (bus->write)
886 		err = bus->write(bus, addr, regnum, val);
887 	else
888 		err = -EOPNOTSUPP;
889 
890 	trace_mdio_access(bus, 0, addr, regnum, val, err);
891 	mdiobus_stats_acct(&bus->stats[addr], false, err);
892 
893 	return err;
894 }
895 EXPORT_SYMBOL(__mdiobus_write);
896 
897 /**
898  * __mdiobus_modify_changed - Unlocked version of the mdiobus_modify function
899  * @bus: the mii_bus struct
900  * @addr: the phy address
901  * @regnum: register number to modify
902  * @mask: bit mask of bits to clear
903  * @set: bit mask of bits to set
904  *
905  * Read, modify, and if any change, write the register value back to the
906  * device. Any error returns a negative number.
907  *
908  * NOTE: MUST NOT be called from interrupt context.
909  */
910 int __mdiobus_modify_changed(struct mii_bus *bus, int addr, u32 regnum,
911 			     u16 mask, u16 set)
912 {
913 	int new, ret;
914 
915 	ret = __mdiobus_read(bus, addr, regnum);
916 	if (ret < 0)
917 		return ret;
918 
919 	new = (ret & ~mask) | set;
920 	if (new == ret)
921 		return 0;
922 
923 	ret = __mdiobus_write(bus, addr, regnum, new);
924 
925 	return ret < 0 ? ret : 1;
926 }
927 EXPORT_SYMBOL_GPL(__mdiobus_modify_changed);
928 
929 /**
930  * __mdiobus_c45_read - Unlocked version of the mdiobus_c45_read function
931  * @bus: the mii_bus struct
932  * @addr: the phy address
933  * @devad: device address to read
934  * @regnum: register number to read
935  *
936  * Read a MDIO bus register. Caller must hold the mdio bus lock.
937  *
938  * NOTE: MUST NOT be called from interrupt context.
939  */
940 int __mdiobus_c45_read(struct mii_bus *bus, int addr, int devad, u32 regnum)
941 {
942 	int retval;
943 
944 	lockdep_assert_held_once(&bus->mdio_lock);
945 
946 	if (bus->read_c45)
947 		retval = bus->read_c45(bus, addr, devad, regnum);
948 	else
949 		retval = -EOPNOTSUPP;
950 
951 	trace_mdio_access(bus, 1, addr, regnum, retval, retval);
952 	mdiobus_stats_acct(&bus->stats[addr], true, retval);
953 
954 	return retval;
955 }
956 EXPORT_SYMBOL(__mdiobus_c45_read);
957 
958 /**
959  * __mdiobus_c45_write - Unlocked version of the mdiobus_write function
960  * @bus: the mii_bus struct
961  * @addr: the phy address
962  * @devad: device address to read
963  * @regnum: register number to write
964  * @val: value to write to @regnum
965  *
966  * Write a MDIO bus register. Caller must hold the mdio bus lock.
967  *
968  * NOTE: MUST NOT be called from interrupt context.
969  */
970 int __mdiobus_c45_write(struct mii_bus *bus, int addr, int devad, u32 regnum,
971 			u16 val)
972 {
973 	int err;
974 
975 	lockdep_assert_held_once(&bus->mdio_lock);
976 
977 	if (bus->write_c45)
978 		err = bus->write_c45(bus, addr, devad, regnum, val);
979 	else
980 		err = -EOPNOTSUPP;
981 
982 	trace_mdio_access(bus, 0, addr, regnum, val, err);
983 	mdiobus_stats_acct(&bus->stats[addr], false, err);
984 
985 	return err;
986 }
987 EXPORT_SYMBOL(__mdiobus_c45_write);
988 
989 /**
990  * __mdiobus_c45_modify_changed - Unlocked version of the mdiobus_modify function
991  * @bus: the mii_bus struct
992  * @addr: the phy address
993  * @devad: device address to read
994  * @regnum: register number to modify
995  * @mask: bit mask of bits to clear
996  * @set: bit mask of bits to set
997  *
998  * Read, modify, and if any change, write the register value back to the
999  * device. Any error returns a negative number.
1000  *
1001  * NOTE: MUST NOT be called from interrupt context.
1002  */
1003 static int __mdiobus_c45_modify_changed(struct mii_bus *bus, int addr,
1004 					int devad, u32 regnum, u16 mask,
1005 					u16 set)
1006 {
1007 	int new, ret;
1008 
1009 	ret = __mdiobus_c45_read(bus, addr, devad, regnum);
1010 	if (ret < 0)
1011 		return ret;
1012 
1013 	new = (ret & ~mask) | set;
1014 	if (new == ret)
1015 		return 0;
1016 
1017 	ret = __mdiobus_c45_write(bus, addr, devad, regnum, new);
1018 
1019 	return ret < 0 ? ret : 1;
1020 }
1021 
1022 /**
1023  * mdiobus_read_nested - Nested version of the mdiobus_read function
1024  * @bus: the mii_bus struct
1025  * @addr: the phy address
1026  * @regnum: register number to read
1027  *
1028  * In case of nested MDIO bus access avoid lockdep false positives by
1029  * using mutex_lock_nested().
1030  *
1031  * NOTE: MUST NOT be called from interrupt context,
1032  * because the bus read/write functions may wait for an interrupt
1033  * to conclude the operation.
1034  */
1035 int mdiobus_read_nested(struct mii_bus *bus, int addr, u32 regnum)
1036 {
1037 	int retval;
1038 
1039 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
1040 	retval = __mdiobus_read(bus, addr, regnum);
1041 	mutex_unlock(&bus->mdio_lock);
1042 
1043 	return retval;
1044 }
1045 EXPORT_SYMBOL(mdiobus_read_nested);
1046 
1047 /**
1048  * mdiobus_read - Convenience function for reading a given MII mgmt register
1049  * @bus: the mii_bus struct
1050  * @addr: the phy address
1051  * @regnum: register number to read
1052  *
1053  * NOTE: MUST NOT be called from interrupt context,
1054  * because the bus read/write functions may wait for an interrupt
1055  * to conclude the operation.
1056  */
1057 int mdiobus_read(struct mii_bus *bus, int addr, u32 regnum)
1058 {
1059 	int retval;
1060 
1061 	mutex_lock(&bus->mdio_lock);
1062 	retval = __mdiobus_read(bus, addr, regnum);
1063 	mutex_unlock(&bus->mdio_lock);
1064 
1065 	return retval;
1066 }
1067 EXPORT_SYMBOL(mdiobus_read);
1068 
1069 /**
1070  * mdiobus_c45_read - Convenience function for reading a given MII mgmt register
1071  * @bus: the mii_bus struct
1072  * @addr: the phy address
1073  * @devad: device address to read
1074  * @regnum: register number to read
1075  *
1076  * NOTE: MUST NOT be called from interrupt context,
1077  * because the bus read/write functions may wait for an interrupt
1078  * to conclude the operation.
1079  */
1080 int mdiobus_c45_read(struct mii_bus *bus, int addr, int devad, u32 regnum)
1081 {
1082 	int retval;
1083 
1084 	mutex_lock(&bus->mdio_lock);
1085 	retval = __mdiobus_c45_read(bus, addr, devad, regnum);
1086 	mutex_unlock(&bus->mdio_lock);
1087 
1088 	return retval;
1089 }
1090 EXPORT_SYMBOL(mdiobus_c45_read);
1091 
1092 /**
1093  * mdiobus_c45_read_nested - Nested version of the mdiobus_c45_read function
1094  * @bus: the mii_bus struct
1095  * @addr: the phy address
1096  * @devad: device address to read
1097  * @regnum: register number to read
1098  *
1099  * In case of nested MDIO bus access avoid lockdep false positives by
1100  * using mutex_lock_nested().
1101  *
1102  * NOTE: MUST NOT be called from interrupt context,
1103  * because the bus read/write functions may wait for an interrupt
1104  * to conclude the operation.
1105  */
1106 int mdiobus_c45_read_nested(struct mii_bus *bus, int addr, int devad,
1107 			    u32 regnum)
1108 {
1109 	int retval;
1110 
1111 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
1112 	retval = __mdiobus_c45_read(bus, addr, devad, regnum);
1113 	mutex_unlock(&bus->mdio_lock);
1114 
1115 	return retval;
1116 }
1117 EXPORT_SYMBOL(mdiobus_c45_read_nested);
1118 
1119 /**
1120  * mdiobus_write_nested - Nested version of the mdiobus_write function
1121  * @bus: the mii_bus struct
1122  * @addr: the phy address
1123  * @regnum: register number to write
1124  * @val: value to write to @regnum
1125  *
1126  * In case of nested MDIO bus access avoid lockdep false positives by
1127  * using mutex_lock_nested().
1128  *
1129  * NOTE: MUST NOT be called from interrupt context,
1130  * because the bus read/write functions may wait for an interrupt
1131  * to conclude the operation.
1132  */
1133 int mdiobus_write_nested(struct mii_bus *bus, int addr, u32 regnum, u16 val)
1134 {
1135 	int err;
1136 
1137 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
1138 	err = __mdiobus_write(bus, addr, regnum, val);
1139 	mutex_unlock(&bus->mdio_lock);
1140 
1141 	return err;
1142 }
1143 EXPORT_SYMBOL(mdiobus_write_nested);
1144 
1145 /**
1146  * mdiobus_write - Convenience function for writing a given MII mgmt register
1147  * @bus: the mii_bus struct
1148  * @addr: the phy address
1149  * @regnum: register number to write
1150  * @val: value to write to @regnum
1151  *
1152  * NOTE: MUST NOT be called from interrupt context,
1153  * because the bus read/write functions may wait for an interrupt
1154  * to conclude the operation.
1155  */
1156 int mdiobus_write(struct mii_bus *bus, int addr, u32 regnum, u16 val)
1157 {
1158 	int err;
1159 
1160 	mutex_lock(&bus->mdio_lock);
1161 	err = __mdiobus_write(bus, addr, regnum, val);
1162 	mutex_unlock(&bus->mdio_lock);
1163 
1164 	return err;
1165 }
1166 EXPORT_SYMBOL(mdiobus_write);
1167 
1168 /**
1169  * mdiobus_c45_write - Convenience function for writing a given MII mgmt register
1170  * @bus: the mii_bus struct
1171  * @addr: the phy address
1172  * @devad: device address to read
1173  * @regnum: register number to write
1174  * @val: value to write to @regnum
1175  *
1176  * NOTE: MUST NOT be called from interrupt context,
1177  * because the bus read/write functions may wait for an interrupt
1178  * to conclude the operation.
1179  */
1180 int mdiobus_c45_write(struct mii_bus *bus, int addr, int devad, u32 regnum,
1181 		      u16 val)
1182 {
1183 	int err;
1184 
1185 	mutex_lock(&bus->mdio_lock);
1186 	err = __mdiobus_c45_write(bus, addr, devad, regnum, val);
1187 	mutex_unlock(&bus->mdio_lock);
1188 
1189 	return err;
1190 }
1191 EXPORT_SYMBOL(mdiobus_c45_write);
1192 
1193 /**
1194  * mdiobus_c45_write_nested - Nested version of the mdiobus_c45_write function
1195  * @bus: the mii_bus struct
1196  * @addr: the phy address
1197  * @devad: device address to read
1198  * @regnum: register number to write
1199  * @val: value to write to @regnum
1200  *
1201  * In case of nested MDIO bus access avoid lockdep false positives by
1202  * using mutex_lock_nested().
1203  *
1204  * NOTE: MUST NOT be called from interrupt context,
1205  * because the bus read/write functions may wait for an interrupt
1206  * to conclude the operation.
1207  */
1208 int mdiobus_c45_write_nested(struct mii_bus *bus, int addr, int devad,
1209 			     u32 regnum, u16 val)
1210 {
1211 	int err;
1212 
1213 	mutex_lock_nested(&bus->mdio_lock, MDIO_MUTEX_NESTED);
1214 	err = __mdiobus_c45_write(bus, addr, devad, regnum, val);
1215 	mutex_unlock(&bus->mdio_lock);
1216 
1217 	return err;
1218 }
1219 EXPORT_SYMBOL(mdiobus_c45_write_nested);
1220 
1221 /*
1222  * __mdiobus_modify - Convenience function for modifying a given mdio device
1223  *	register
1224  * @bus: the mii_bus struct
1225  * @addr: the phy address
1226  * @regnum: register number to write
1227  * @mask: bit mask of bits to clear
1228  * @set: bit mask of bits to set
1229  */
1230 int __mdiobus_modify(struct mii_bus *bus, int addr, u32 regnum, u16 mask,
1231 		     u16 set)
1232 {
1233 	int err;
1234 
1235 	err = __mdiobus_modify_changed(bus, addr, regnum, mask, set);
1236 
1237 	return err < 0 ? err : 0;
1238 }
1239 EXPORT_SYMBOL_GPL(__mdiobus_modify);
1240 
1241 /**
1242  * mdiobus_modify - Convenience function for modifying a given mdio device
1243  *	register
1244  * @bus: the mii_bus struct
1245  * @addr: the phy address
1246  * @regnum: register number to write
1247  * @mask: bit mask of bits to clear
1248  * @set: bit mask of bits to set
1249  */
1250 int mdiobus_modify(struct mii_bus *bus, int addr, u32 regnum, u16 mask, u16 set)
1251 {
1252 	int err;
1253 
1254 	mutex_lock(&bus->mdio_lock);
1255 	err = __mdiobus_modify(bus, addr, regnum, mask, set);
1256 	mutex_unlock(&bus->mdio_lock);
1257 
1258 	return err;
1259 }
1260 EXPORT_SYMBOL_GPL(mdiobus_modify);
1261 
1262 /**
1263  * mdiobus_c45_modify - Convenience function for modifying a given mdio device
1264  *	register
1265  * @bus: the mii_bus struct
1266  * @addr: the phy address
1267  * @devad: device address to read
1268  * @regnum: register number to write
1269  * @mask: bit mask of bits to clear
1270  * @set: bit mask of bits to set
1271  */
1272 int mdiobus_c45_modify(struct mii_bus *bus, int addr, int devad, u32 regnum,
1273 		       u16 mask, u16 set)
1274 {
1275 	int err;
1276 
1277 	mutex_lock(&bus->mdio_lock);
1278 	err = __mdiobus_c45_modify_changed(bus, addr, devad, regnum,
1279 					   mask, set);
1280 	mutex_unlock(&bus->mdio_lock);
1281 
1282 	return err < 0 ? err : 0;
1283 }
1284 EXPORT_SYMBOL_GPL(mdiobus_c45_modify);
1285 
1286 /**
1287  * mdiobus_modify_changed - Convenience function for modifying a given mdio
1288  *	device register and returning if it changed
1289  * @bus: the mii_bus struct
1290  * @addr: the phy address
1291  * @regnum: register number to write
1292  * @mask: bit mask of bits to clear
1293  * @set: bit mask of bits to set
1294  */
1295 int mdiobus_modify_changed(struct mii_bus *bus, int addr, u32 regnum,
1296 			   u16 mask, u16 set)
1297 {
1298 	int err;
1299 
1300 	mutex_lock(&bus->mdio_lock);
1301 	err = __mdiobus_modify_changed(bus, addr, regnum, mask, set);
1302 	mutex_unlock(&bus->mdio_lock);
1303 
1304 	return err;
1305 }
1306 EXPORT_SYMBOL_GPL(mdiobus_modify_changed);
1307 
1308 /**
1309  * mdiobus_c45_modify_changed - Convenience function for modifying a given mdio
1310  *	device register and returning if it changed
1311  * @bus: the mii_bus struct
1312  * @addr: the phy address
1313  * @devad: device address to read
1314  * @regnum: register number to write
1315  * @mask: bit mask of bits to clear
1316  * @set: bit mask of bits to set
1317  */
1318 int mdiobus_c45_modify_changed(struct mii_bus *bus, int addr, int devad,
1319 			       u32 regnum, u16 mask, u16 set)
1320 {
1321 	int err;
1322 
1323 	mutex_lock(&bus->mdio_lock);
1324 	err = __mdiobus_c45_modify_changed(bus, addr, devad, regnum, mask, set);
1325 	mutex_unlock(&bus->mdio_lock);
1326 
1327 	return err;
1328 }
1329 EXPORT_SYMBOL_GPL(mdiobus_c45_modify_changed);
1330 
1331 /**
1332  * mdio_bus_match - determine if given MDIO driver supports the given
1333  *		    MDIO device
1334  * @dev: target MDIO device
1335  * @drv: given MDIO driver
1336  *
1337  * Description: Given a MDIO device, and a MDIO driver, return 1 if
1338  *   the driver supports the device.  Otherwise, return 0. This may
1339  *   require calling the devices own match function, since different classes
1340  *   of MDIO devices have different match criteria.
1341  */
1342 static int mdio_bus_match(struct device *dev, struct device_driver *drv)
1343 {
1344 	struct mdio_driver *mdiodrv = to_mdio_driver(drv);
1345 	struct mdio_device *mdio = to_mdio_device(dev);
1346 
1347 	/* Both the driver and device must type-match */
1348 	if (!(mdiodrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY) !=
1349 	    !(mdio->flags & MDIO_DEVICE_FLAG_PHY))
1350 		return 0;
1351 
1352 	if (of_driver_match_device(dev, drv))
1353 		return 1;
1354 
1355 	if (mdio->bus_match)
1356 		return mdio->bus_match(dev, drv);
1357 
1358 	return 0;
1359 }
1360 
1361 static int mdio_uevent(const struct device *dev, struct kobj_uevent_env *env)
1362 {
1363 	int rc;
1364 
1365 	/* Some devices have extra OF data and an OF-style MODALIAS */
1366 	rc = of_device_uevent_modalias(dev, env);
1367 	if (rc != -ENODEV)
1368 		return rc;
1369 
1370 	return 0;
1371 }
1372 
1373 static struct attribute *mdio_bus_device_statistics_attrs[] = {
1374 	&dev_attr_mdio_bus_device_transfers.attr.attr,
1375 	&dev_attr_mdio_bus_device_errors.attr.attr,
1376 	&dev_attr_mdio_bus_device_writes.attr.attr,
1377 	&dev_attr_mdio_bus_device_reads.attr.attr,
1378 	NULL,
1379 };
1380 
1381 static const struct attribute_group mdio_bus_device_statistics_group = {
1382 	.name	= "statistics",
1383 	.attrs	= mdio_bus_device_statistics_attrs,
1384 };
1385 
1386 static const struct attribute_group *mdio_bus_dev_groups[] = {
1387 	&mdio_bus_device_statistics_group,
1388 	NULL,
1389 };
1390 
1391 struct bus_type mdio_bus_type = {
1392 	.name		= "mdio_bus",
1393 	.dev_groups	= mdio_bus_dev_groups,
1394 	.match		= mdio_bus_match,
1395 	.uevent		= mdio_uevent,
1396 };
1397 EXPORT_SYMBOL(mdio_bus_type);
1398 
1399 int __init mdio_bus_init(void)
1400 {
1401 	int ret;
1402 
1403 	ret = class_register(&mdio_bus_class);
1404 	if (!ret) {
1405 		ret = bus_register(&mdio_bus_type);
1406 		if (ret)
1407 			class_unregister(&mdio_bus_class);
1408 	}
1409 
1410 	return ret;
1411 }
1412 
1413 #if IS_ENABLED(CONFIG_PHYLIB)
1414 void mdio_bus_exit(void)
1415 {
1416 	class_unregister(&mdio_bus_class);
1417 	bus_unregister(&mdio_bus_type);
1418 }
1419 EXPORT_SYMBOL_GPL(mdio_bus_exit);
1420 #else
1421 module_init(mdio_bus_init);
1422 /* no module_exit, intentional */
1423 MODULE_LICENSE("GPL");
1424 MODULE_DESCRIPTION("MDIO bus/device layer");
1425 #endif
1426