Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 * Fixed MDIO bus (MDIO bus emulation with fixed PHYs)
  4 *
  5 * Author: Vitaly Bordug <vbordug@ru.mvista.com>
  6 *         Anton Vorontsov <avorontsov@ru.mvista.com>
  7 *
  8 * Copyright (c) 2006-2007 MontaVista Software, Inc.
 
 
 
 
 
  9 */
 10
 11#include <linux/kernel.h>
 12#include <linux/module.h>
 13#include <linux/platform_device.h>
 14#include <linux/list.h>
 15#include <linux/mii.h>
 16#include <linux/phy.h>
 17#include <linux/phy_fixed.h>
 18#include <linux/err.h>
 19#include <linux/slab.h>
 20#include <linux/of.h>
 21#include <linux/gpio/consumer.h>
 
 22#include <linux/idr.h>
 23#include <linux/netdevice.h>
 24#include <linux/linkmode.h>
 25
 26#include "swphy.h"
 27
 28struct fixed_mdio_bus {
 29	struct mii_bus *mii_bus;
 30	struct list_head phys;
 31};
 32
 33struct fixed_phy {
 34	int addr;
 35	struct phy_device *phydev;
 
 36	struct fixed_phy_status status;
 37	bool no_carrier;
 38	int (*link_update)(struct net_device *, struct fixed_phy_status *);
 39	struct list_head node;
 40	struct gpio_desc *link_gpiod;
 41};
 42
 43static struct platform_device *pdev;
 44static struct fixed_mdio_bus platform_fmb = {
 45	.phys = LIST_HEAD_INIT(platform_fmb.phys),
 46};
 47
 48int fixed_phy_change_carrier(struct net_device *dev, bool new_carrier)
 49{
 50	struct fixed_mdio_bus *fmb = &platform_fmb;
 51	struct phy_device *phydev = dev->phydev;
 52	struct fixed_phy *fp;
 53
 54	if (!phydev || !phydev->mdio.bus)
 55		return -EINVAL;
 56
 57	list_for_each_entry(fp, &fmb->phys, node) {
 58		if (fp->addr == phydev->mdio.addr) {
 59			fp->no_carrier = !new_carrier;
 60			return 0;
 61		}
 62	}
 63	return -EINVAL;
 64}
 65EXPORT_SYMBOL_GPL(fixed_phy_change_carrier);
 66
 67static void fixed_phy_update(struct fixed_phy *fp)
 68{
 69	if (!fp->no_carrier && fp->link_gpiod)
 70		fp->status.link = !!gpiod_get_value_cansleep(fp->link_gpiod);
 71}
 72
 73static int fixed_mdio_read(struct mii_bus *bus, int phy_addr, int reg_num)
 74{
 75	struct fixed_mdio_bus *fmb = bus->priv;
 76	struct fixed_phy *fp;
 77
 78	list_for_each_entry(fp, &fmb->phys, node) {
 79		if (fp->addr == phy_addr) {
 80			struct fixed_phy_status state;
 
 81
 82			fp->status.link = !fp->no_carrier;
 83
 84			/* Issue callback if user registered it. */
 85			if (fp->link_update)
 86				fp->link_update(fp->phydev->attached_dev,
 87						&fp->status);
 88
 89			/* Check the GPIO for change in status */
 90			fixed_phy_update(fp);
 91			state = fp->status;
 92
 93			return swphy_read_reg(reg_num, &state);
 94		}
 95	}
 96
 97	return 0xFFFF;
 98}
 99
100static int fixed_mdio_write(struct mii_bus *bus, int phy_addr, int reg_num,
101			    u16 val)
102{
103	return 0;
104}
105
106/*
107 * If something weird is required to be done with link/speed,
108 * network driver is able to assign a function to implement this.
109 * May be useful for PHY's that need to be software-driven.
110 */
111int fixed_phy_set_link_update(struct phy_device *phydev,
112			      int (*link_update)(struct net_device *,
113						 struct fixed_phy_status *))
114{
115	struct fixed_mdio_bus *fmb = &platform_fmb;
116	struct fixed_phy *fp;
117
118	if (!phydev || !phydev->mdio.bus)
119		return -EINVAL;
120
121	list_for_each_entry(fp, &fmb->phys, node) {
122		if (fp->addr == phydev->mdio.addr) {
123			fp->link_update = link_update;
124			fp->phydev = phydev;
125			return 0;
126		}
127	}
128
129	return -ENOENT;
130}
131EXPORT_SYMBOL_GPL(fixed_phy_set_link_update);
132
133static int fixed_phy_add_gpiod(unsigned int irq, int phy_addr,
134			       struct fixed_phy_status *status,
135			       struct gpio_desc *gpiod)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136{
137	int ret;
138	struct fixed_mdio_bus *fmb = &platform_fmb;
139	struct fixed_phy *fp;
140
141	ret = swphy_validate_state(status);
142	if (ret < 0)
143		return ret;
144
145	fp = kzalloc(sizeof(*fp), GFP_KERNEL);
146	if (!fp)
147		return -ENOMEM;
148
 
 
149	if (irq != PHY_POLL)
150		fmb->mii_bus->irq[phy_addr] = irq;
151
152	fp->addr = phy_addr;
153	fp->status = *status;
154	fp->link_gpiod = gpiod;
 
 
 
 
 
 
 
155
156	fixed_phy_update(fp);
157
158	list_add_tail(&fp->node, &fmb->phys);
159
160	return 0;
161}
162
163int fixed_phy_add(unsigned int irq, int phy_addr,
164		  struct fixed_phy_status *status)
165{
166	return fixed_phy_add_gpiod(irq, phy_addr, status, NULL);
167}
168EXPORT_SYMBOL_GPL(fixed_phy_add);
169
170static DEFINE_IDA(phy_fixed_ida);
171
172static void fixed_phy_del(int phy_addr)
173{
174	struct fixed_mdio_bus *fmb = &platform_fmb;
175	struct fixed_phy *fp, *tmp;
176
177	list_for_each_entry_safe(fp, tmp, &fmb->phys, node) {
178		if (fp->addr == phy_addr) {
179			list_del(&fp->node);
180			if (fp->link_gpiod)
181				gpiod_put(fp->link_gpiod);
182			kfree(fp);
183			ida_free(&phy_fixed_ida, phy_addr);
184			return;
185		}
186	}
187}
188
189#ifdef CONFIG_OF_GPIO
190static struct gpio_desc *fixed_phy_get_gpiod(struct device_node *np)
191{
192	struct device_node *fixed_link_node;
193	struct gpio_desc *gpiod;
194
195	if (!np)
196		return NULL;
197
198	fixed_link_node = of_get_child_by_name(np, "fixed-link");
199	if (!fixed_link_node)
200		return NULL;
201
202	/*
203	 * As the fixed link is just a device tree node without any
204	 * Linux device associated with it, we simply have obtain
205	 * the GPIO descriptor from the device tree like this.
206	 */
207	gpiod = fwnode_gpiod_get_index(of_fwnode_handle(fixed_link_node),
208				       "link", 0, GPIOD_IN, "mdio");
209	if (IS_ERR(gpiod) && PTR_ERR(gpiod) != -EPROBE_DEFER) {
210		if (PTR_ERR(gpiod) != -ENOENT)
211			pr_err("error getting GPIO for fixed link %pOF, proceed without\n",
212			       fixed_link_node);
213		gpiod = NULL;
214	}
215	of_node_put(fixed_link_node);
216
217	return gpiod;
218}
219#else
220static struct gpio_desc *fixed_phy_get_gpiod(struct device_node *np)
221{
222	return NULL;
223}
224#endif
225
226static struct phy_device *__fixed_phy_register(unsigned int irq,
227					       struct fixed_phy_status *status,
228					       struct device_node *np,
229					       struct gpio_desc *gpiod)
230{
231	struct fixed_mdio_bus *fmb = &platform_fmb;
232	struct phy_device *phy;
233	int phy_addr;
234	int ret;
235
236	if (!fmb->mii_bus || fmb->mii_bus->state != MDIOBUS_REGISTERED)
237		return ERR_PTR(-EPROBE_DEFER);
238
239	/* Check if we have a GPIO associated with this fixed phy */
240	if (!gpiod) {
241		gpiod = fixed_phy_get_gpiod(np);
242		if (IS_ERR(gpiod))
243			return ERR_CAST(gpiod);
244	}
245
246	/* Get the next available PHY address, up to PHY_MAX_ADDR */
247	phy_addr = ida_alloc_max(&phy_fixed_ida, PHY_MAX_ADDR - 1, GFP_KERNEL);
248	if (phy_addr < 0)
249		return ERR_PTR(phy_addr);
250
251	ret = fixed_phy_add_gpiod(irq, phy_addr, status, gpiod);
252	if (ret < 0) {
253		ida_free(&phy_fixed_ida, phy_addr);
254		return ERR_PTR(ret);
255	}
256
257	phy = get_phy_device(fmb->mii_bus, phy_addr, false);
258	if (IS_ERR(phy)) {
259		fixed_phy_del(phy_addr);
260		return ERR_PTR(-EINVAL);
261	}
262
263	/* propagate the fixed link values to struct phy_device */
264	phy->link = status->link;
265	if (status->link) {
266		phy->speed = status->speed;
267		phy->duplex = status->duplex;
268		phy->pause = status->pause;
269		phy->asym_pause = status->asym_pause;
270	}
271
272	of_node_get(np);
273	phy->mdio.dev.of_node = np;
274	phy->is_pseudo_fixed_link = true;
275
276	switch (status->speed) {
277	case SPEED_1000:
278		linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
279				 phy->supported);
280		linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
281				 phy->supported);
282		fallthrough;
283	case SPEED_100:
284		linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT,
285				 phy->supported);
286		linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
287				 phy->supported);
288		fallthrough;
289	case SPEED_10:
290	default:
291		linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT,
292				 phy->supported);
293		linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT,
294				 phy->supported);
295	}
296
297	phy_advertise_supported(phy);
298
299	ret = phy_device_register(phy);
300	if (ret) {
301		phy_device_free(phy);
302		of_node_put(np);
303		fixed_phy_del(phy_addr);
304		return ERR_PTR(ret);
305	}
306
307	return phy;
308}
309
310struct phy_device *fixed_phy_register(unsigned int irq,
311				      struct fixed_phy_status *status,
312				      struct device_node *np)
313{
314	return __fixed_phy_register(irq, status, np, NULL);
315}
316EXPORT_SYMBOL_GPL(fixed_phy_register);
317
318struct phy_device *
319fixed_phy_register_with_gpiod(unsigned int irq,
320			      struct fixed_phy_status *status,
321			      struct gpio_desc *gpiod)
322{
323	return __fixed_phy_register(irq, status, NULL, gpiod);
324}
325EXPORT_SYMBOL_GPL(fixed_phy_register_with_gpiod);
326
327void fixed_phy_unregister(struct phy_device *phy)
328{
329	phy_device_remove(phy);
330	of_node_put(phy->mdio.dev.of_node);
331	fixed_phy_del(phy->mdio.addr);
332}
333EXPORT_SYMBOL_GPL(fixed_phy_unregister);
334
335static int __init fixed_mdio_bus_init(void)
336{
337	struct fixed_mdio_bus *fmb = &platform_fmb;
338	int ret;
339
340	pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0);
341	if (IS_ERR(pdev))
342		return PTR_ERR(pdev);
 
 
343
344	fmb->mii_bus = mdiobus_alloc();
345	if (fmb->mii_bus == NULL) {
346		ret = -ENOMEM;
347		goto err_mdiobus_reg;
348	}
349
350	snprintf(fmb->mii_bus->id, MII_BUS_ID_SIZE, "fixed-0");
351	fmb->mii_bus->name = "Fixed MDIO Bus";
352	fmb->mii_bus->priv = fmb;
353	fmb->mii_bus->parent = &pdev->dev;
354	fmb->mii_bus->read = &fixed_mdio_read;
355	fmb->mii_bus->write = &fixed_mdio_write;
356	fmb->mii_bus->phy_mask = ~0;
357
358	ret = mdiobus_register(fmb->mii_bus);
359	if (ret)
360		goto err_mdiobus_alloc;
361
362	return 0;
363
364err_mdiobus_alloc:
365	mdiobus_free(fmb->mii_bus);
366err_mdiobus_reg:
367	platform_device_unregister(pdev);
 
368	return ret;
369}
370module_init(fixed_mdio_bus_init);
371
372static void __exit fixed_mdio_bus_exit(void)
373{
374	struct fixed_mdio_bus *fmb = &platform_fmb;
375	struct fixed_phy *fp, *tmp;
376
377	mdiobus_unregister(fmb->mii_bus);
378	mdiobus_free(fmb->mii_bus);
379	platform_device_unregister(pdev);
380
381	list_for_each_entry_safe(fp, tmp, &fmb->phys, node) {
382		list_del(&fp->node);
383		kfree(fp);
384	}
385	ida_destroy(&phy_fixed_ida);
386}
387module_exit(fixed_mdio_bus_exit);
388
389MODULE_DESCRIPTION("Fixed MDIO bus (MDIO bus emulation with fixed PHYs)");
390MODULE_AUTHOR("Vitaly Bordug");
391MODULE_LICENSE("GPL");
v4.10.11
 
  1/*
  2 * Fixed MDIO bus (MDIO bus emulation with fixed PHYs)
  3 *
  4 * Author: Vitaly Bordug <vbordug@ru.mvista.com>
  5 *         Anton Vorontsov <avorontsov@ru.mvista.com>
  6 *
  7 * Copyright (c) 2006-2007 MontaVista Software, Inc.
  8 *
  9 * This program is free software; you can redistribute  it and/or modify it
 10 * under  the terms of  the GNU General  Public License as published by the
 11 * Free Software Foundation;  either version 2 of the  License, or (at your
 12 * option) any later version.
 13 */
 14
 15#include <linux/kernel.h>
 16#include <linux/module.h>
 17#include <linux/platform_device.h>
 18#include <linux/list.h>
 19#include <linux/mii.h>
 20#include <linux/phy.h>
 21#include <linux/phy_fixed.h>
 22#include <linux/err.h>
 23#include <linux/slab.h>
 24#include <linux/of.h>
 25#include <linux/gpio.h>
 26#include <linux/seqlock.h>
 27#include <linux/idr.h>
 
 
 28
 29#include "swphy.h"
 30
 31struct fixed_mdio_bus {
 32	struct mii_bus *mii_bus;
 33	struct list_head phys;
 34};
 35
 36struct fixed_phy {
 37	int addr;
 38	struct phy_device *phydev;
 39	seqcount_t seqcount;
 40	struct fixed_phy_status status;
 
 41	int (*link_update)(struct net_device *, struct fixed_phy_status *);
 42	struct list_head node;
 43	int link_gpio;
 44};
 45
 46static struct platform_device *pdev;
 47static struct fixed_mdio_bus platform_fmb = {
 48	.phys = LIST_HEAD_INIT(platform_fmb.phys),
 49};
 50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 51static void fixed_phy_update(struct fixed_phy *fp)
 52{
 53	if (gpio_is_valid(fp->link_gpio))
 54		fp->status.link = !!gpio_get_value_cansleep(fp->link_gpio);
 55}
 56
 57static int fixed_mdio_read(struct mii_bus *bus, int phy_addr, int reg_num)
 58{
 59	struct fixed_mdio_bus *fmb = bus->priv;
 60	struct fixed_phy *fp;
 61
 62	list_for_each_entry(fp, &fmb->phys, node) {
 63		if (fp->addr == phy_addr) {
 64			struct fixed_phy_status state;
 65			int s;
 66
 67			do {
 68				s = read_seqcount_begin(&fp->seqcount);
 69				/* Issue callback if user registered it. */
 70				if (fp->link_update) {
 71					fp->link_update(fp->phydev->attached_dev,
 72							&fp->status);
 73					fixed_phy_update(fp);
 74				}
 75				state = fp->status;
 76			} while (read_seqcount_retry(&fp->seqcount, s));
 77
 78			return swphy_read_reg(reg_num, &state);
 79		}
 80	}
 81
 82	return 0xFFFF;
 83}
 84
 85static int fixed_mdio_write(struct mii_bus *bus, int phy_addr, int reg_num,
 86			    u16 val)
 87{
 88	return 0;
 89}
 90
 91/*
 92 * If something weird is required to be done with link/speed,
 93 * network driver is able to assign a function to implement this.
 94 * May be useful for PHY's that need to be software-driven.
 95 */
 96int fixed_phy_set_link_update(struct phy_device *phydev,
 97			      int (*link_update)(struct net_device *,
 98						 struct fixed_phy_status *))
 99{
100	struct fixed_mdio_bus *fmb = &platform_fmb;
101	struct fixed_phy *fp;
102
103	if (!phydev || !phydev->mdio.bus)
104		return -EINVAL;
105
106	list_for_each_entry(fp, &fmb->phys, node) {
107		if (fp->addr == phydev->mdio.addr) {
108			fp->link_update = link_update;
109			fp->phydev = phydev;
110			return 0;
111		}
112	}
113
114	return -ENOENT;
115}
116EXPORT_SYMBOL_GPL(fixed_phy_set_link_update);
117
118int fixed_phy_update_state(struct phy_device *phydev,
119			   const struct fixed_phy_status *status,
120			   const struct fixed_phy_status *changed)
121{
122	struct fixed_mdio_bus *fmb = &platform_fmb;
123	struct fixed_phy *fp;
124
125	if (!phydev || phydev->mdio.bus != fmb->mii_bus)
126		return -EINVAL;
127
128	list_for_each_entry(fp, &fmb->phys, node) {
129		if (fp->addr == phydev->mdio.addr) {
130			write_seqcount_begin(&fp->seqcount);
131#define _UPD(x) if (changed->x) \
132	fp->status.x = status->x
133			_UPD(link);
134			_UPD(speed);
135			_UPD(duplex);
136			_UPD(pause);
137			_UPD(asym_pause);
138#undef _UPD
139			fixed_phy_update(fp);
140			write_seqcount_end(&fp->seqcount);
141			return 0;
142		}
143	}
144
145	return -ENOENT;
146}
147EXPORT_SYMBOL(fixed_phy_update_state);
148
149int fixed_phy_add(unsigned int irq, int phy_addr,
150		  struct fixed_phy_status *status,
151		  int link_gpio)
152{
153	int ret;
154	struct fixed_mdio_bus *fmb = &platform_fmb;
155	struct fixed_phy *fp;
156
157	ret = swphy_validate_state(status);
158	if (ret < 0)
159		return ret;
160
161	fp = kzalloc(sizeof(*fp), GFP_KERNEL);
162	if (!fp)
163		return -ENOMEM;
164
165	seqcount_init(&fp->seqcount);
166
167	if (irq != PHY_POLL)
168		fmb->mii_bus->irq[phy_addr] = irq;
169
170	fp->addr = phy_addr;
171	fp->status = *status;
172	fp->link_gpio = link_gpio;
173
174	if (gpio_is_valid(fp->link_gpio)) {
175		ret = gpio_request_one(fp->link_gpio, GPIOF_DIR_IN,
176				       "fixed-link-gpio-link");
177		if (ret)
178			goto err_regs;
179	}
180
181	fixed_phy_update(fp);
182
183	list_add_tail(&fp->node, &fmb->phys);
184
185	return 0;
 
186
187err_regs:
188	kfree(fp);
189	return ret;
 
190}
191EXPORT_SYMBOL_GPL(fixed_phy_add);
192
193static DEFINE_IDA(phy_fixed_ida);
194
195static void fixed_phy_del(int phy_addr)
196{
197	struct fixed_mdio_bus *fmb = &platform_fmb;
198	struct fixed_phy *fp, *tmp;
199
200	list_for_each_entry_safe(fp, tmp, &fmb->phys, node) {
201		if (fp->addr == phy_addr) {
202			list_del(&fp->node);
203			if (gpio_is_valid(fp->link_gpio))
204				gpio_free(fp->link_gpio);
205			kfree(fp);
206			ida_simple_remove(&phy_fixed_ida, phy_addr);
207			return;
208		}
209	}
210}
211
212struct phy_device *fixed_phy_register(unsigned int irq,
213				      struct fixed_phy_status *status,
214				      int link_gpio,
215				      struct device_node *np)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216{
217	struct fixed_mdio_bus *fmb = &platform_fmb;
218	struct phy_device *phy;
219	int phy_addr;
220	int ret;
221
222	if (!fmb->mii_bus || fmb->mii_bus->state != MDIOBUS_REGISTERED)
223		return ERR_PTR(-EPROBE_DEFER);
224
 
 
 
 
 
 
 
225	/* Get the next available PHY address, up to PHY_MAX_ADDR */
226	phy_addr = ida_simple_get(&phy_fixed_ida, 0, PHY_MAX_ADDR, GFP_KERNEL);
227	if (phy_addr < 0)
228		return ERR_PTR(phy_addr);
229
230	ret = fixed_phy_add(irq, phy_addr, status, link_gpio);
231	if (ret < 0) {
232		ida_simple_remove(&phy_fixed_ida, phy_addr);
233		return ERR_PTR(ret);
234	}
235
236	phy = get_phy_device(fmb->mii_bus, phy_addr, false);
237	if (IS_ERR(phy)) {
238		fixed_phy_del(phy_addr);
239		return ERR_PTR(-EINVAL);
240	}
241
242	/* propagate the fixed link values to struct phy_device */
243	phy->link = status->link;
244	if (status->link) {
245		phy->speed = status->speed;
246		phy->duplex = status->duplex;
247		phy->pause = status->pause;
248		phy->asym_pause = status->asym_pause;
249	}
250
251	of_node_get(np);
252	phy->mdio.dev.of_node = np;
253	phy->is_pseudo_fixed_link = true;
254
255	switch (status->speed) {
256	case SPEED_1000:
257		phy->supported = PHY_1000BT_FEATURES;
258		break;
 
 
 
259	case SPEED_100:
260		phy->supported = PHY_100BT_FEATURES;
261		break;
 
 
 
262	case SPEED_10:
263	default:
264		phy->supported = PHY_10BT_FEATURES;
 
 
 
265	}
266
 
 
267	ret = phy_device_register(phy);
268	if (ret) {
269		phy_device_free(phy);
270		of_node_put(np);
271		fixed_phy_del(phy_addr);
272		return ERR_PTR(ret);
273	}
274
275	return phy;
276}
 
 
 
 
 
 
 
277EXPORT_SYMBOL_GPL(fixed_phy_register);
278
 
 
 
 
 
 
 
 
 
279void fixed_phy_unregister(struct phy_device *phy)
280{
281	phy_device_remove(phy);
282	of_node_put(phy->mdio.dev.of_node);
283	fixed_phy_del(phy->mdio.addr);
284}
285EXPORT_SYMBOL_GPL(fixed_phy_unregister);
286
287static int __init fixed_mdio_bus_init(void)
288{
289	struct fixed_mdio_bus *fmb = &platform_fmb;
290	int ret;
291
292	pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0);
293	if (IS_ERR(pdev)) {
294		ret = PTR_ERR(pdev);
295		goto err_pdev;
296	}
297
298	fmb->mii_bus = mdiobus_alloc();
299	if (fmb->mii_bus == NULL) {
300		ret = -ENOMEM;
301		goto err_mdiobus_reg;
302	}
303
304	snprintf(fmb->mii_bus->id, MII_BUS_ID_SIZE, "fixed-0");
305	fmb->mii_bus->name = "Fixed MDIO Bus";
306	fmb->mii_bus->priv = fmb;
307	fmb->mii_bus->parent = &pdev->dev;
308	fmb->mii_bus->read = &fixed_mdio_read;
309	fmb->mii_bus->write = &fixed_mdio_write;
 
310
311	ret = mdiobus_register(fmb->mii_bus);
312	if (ret)
313		goto err_mdiobus_alloc;
314
315	return 0;
316
317err_mdiobus_alloc:
318	mdiobus_free(fmb->mii_bus);
319err_mdiobus_reg:
320	platform_device_unregister(pdev);
321err_pdev:
322	return ret;
323}
324module_init(fixed_mdio_bus_init);
325
326static void __exit fixed_mdio_bus_exit(void)
327{
328	struct fixed_mdio_bus *fmb = &platform_fmb;
329	struct fixed_phy *fp, *tmp;
330
331	mdiobus_unregister(fmb->mii_bus);
332	mdiobus_free(fmb->mii_bus);
333	platform_device_unregister(pdev);
334
335	list_for_each_entry_safe(fp, tmp, &fmb->phys, node) {
336		list_del(&fp->node);
337		kfree(fp);
338	}
339	ida_destroy(&phy_fixed_ida);
340}
341module_exit(fixed_mdio_bus_exit);
342
343MODULE_DESCRIPTION("Fixed MDIO bus (MDIO bus emulation with fixed PHYs)");
344MODULE_AUTHOR("Vitaly Bordug");
345MODULE_LICENSE("GPL");