| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Driver for the MPC5200 Fast Ethernet Controller - MDIO bus driver | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2007  Domen Puncer, Telargo, Inc. | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  |  * Copyright (C) 2008  Wolfram Sang, Pengutronix | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file is licensed under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * version 2. This program is licensed "as is" without any warranty of any | 
					
						
							|  |  |  |  * kind, whether express or implied. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/phy.h>
 | 
					
						
							|  |  |  | #include <linux/of_platform.h>
 | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | #include <linux/of_mdio.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | #include <asm/mpc52xx.h>
 | 
					
						
							|  |  |  | #include "fec_mpc52xx.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct mpc52xx_fec_mdio_priv { | 
					
						
							|  |  |  | 	struct mpc52xx_fec __iomem *regs; | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | 	int mdio_irqs[PHY_MAX_ADDR]; | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | static int mpc52xx_fec_mdio_transfer(struct mii_bus *bus, int phy_id, | 
					
						
							|  |  |  | 		int reg, u32 value) | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mpc52xx_fec_mdio_priv *priv = bus->priv; | 
					
						
							|  |  |  | 	struct mpc52xx_fec __iomem *fec; | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | 	int tries = 3; | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	value |= (phy_id << FEC_MII_DATA_PA_SHIFT) & FEC_MII_DATA_PA_MSK; | 
					
						
							|  |  |  | 	value |= (reg << FEC_MII_DATA_RA_SHIFT) & FEC_MII_DATA_RA_MSK; | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fec = priv->regs; | 
					
						
							|  |  |  | 	out_be32(&fec->ievent, FEC_IEVENT_MII); | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 	out_be32(&priv->regs->mii_data, value); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* wait for it to finish, this takes about 23 us on lite5200b */ | 
					
						
							|  |  |  | 	while (!(in_be32(&fec->ievent) & FEC_IEVENT_MII) && --tries) | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | 		msleep(1); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 	if (!tries) | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 		return -ETIMEDOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 	return value & FEC_MII_DATA_OP_RD ? | 
					
						
							|  |  |  | 		in_be32(&priv->regs->mii_data) & FEC_MII_DATA_DATAMSK : 0; | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | static int mpc52xx_fec_mdio_read(struct mii_bus *bus, int phy_id, int reg) | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 	return mpc52xx_fec_mdio_transfer(bus, phy_id, reg, FEC_MII_READ_FRAME); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | static int mpc52xx_fec_mdio_write(struct mii_bus *bus, int phy_id, int reg, | 
					
						
							|  |  |  | 		u16 data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return mpc52xx_fec_mdio_transfer(bus, phy_id, reg, | 
					
						
							|  |  |  | 		data | FEC_MII_WRITE_FRAME); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | static int mpc52xx_fec_mdio_probe(struct of_device *of, | 
					
						
							|  |  |  | 		const struct of_device_id *match) | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = &of->dev; | 
					
						
							|  |  |  | 	struct device_node *np = of->node; | 
					
						
							|  |  |  | 	struct mii_bus *bus; | 
					
						
							|  |  |  | 	struct mpc52xx_fec_mdio_priv *priv; | 
					
						
							|  |  |  | 	struct resource res = {}; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-08 16:29:57 -07:00
										 |  |  | 	bus = mdiobus_alloc(); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 	if (bus == NULL) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	priv = kzalloc(sizeof(*priv), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (priv == NULL) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto out_free; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bus->name = "mpc52xx MII bus"; | 
					
						
							|  |  |  | 	bus->read = mpc52xx_fec_mdio_read; | 
					
						
							|  |  |  | 	bus->write = mpc52xx_fec_mdio_write; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* setup irqs */ | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | 	bus->irq = priv->mdio_irqs; | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* setup registers */ | 
					
						
							|  |  |  | 	err = of_address_to_resource(np, 0, &res); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out_free; | 
					
						
							|  |  |  | 	priv->regs = ioremap(res.start, res.end - res.start + 1); | 
					
						
							|  |  |  | 	if (priv->regs == NULL) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto out_free; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-09 19:38:13 -05:00
										 |  |  | 	snprintf(bus->id, MII_BUS_ID_SIZE, "%x", res.start); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 	bus->priv = priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-01 15:41:33 +00:00
										 |  |  | 	bus->parent = dev; | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 	dev_set_drvdata(dev, bus); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set MII speed */ | 
					
						
							| 
									
										
										
										
											2008-10-15 11:10:00 -06:00
										 |  |  | 	out_be32(&priv->regs->mii_speed, | 
					
						
							| 
									
										
										
										
											2009-06-17 00:30:22 -06:00
										 |  |  | 		((mpc5xxx_get_bus_frequency(of->node) >> 20) / 5) << 1); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:02 +00:00
										 |  |  | 	err = of_mdiobus_register(bus, np); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out_unmap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  out_unmap: | 
					
						
							|  |  |  | 	iounmap(priv->regs); | 
					
						
							|  |  |  |  out_free: | 
					
						
							|  |  |  | 	for (i=0; i<PHY_MAX_ADDR; i++) | 
					
						
							|  |  |  | 		if (bus->irq[i] != PHY_POLL) | 
					
						
							|  |  |  | 			irq_dispose_mapping(bus->irq[i]); | 
					
						
							|  |  |  | 	kfree(bus->irq); | 
					
						
							|  |  |  | 	kfree(priv); | 
					
						
							| 
									
										
										
										
											2008-10-08 16:29:57 -07:00
										 |  |  | 	mdiobus_free(bus); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int mpc52xx_fec_mdio_remove(struct of_device *of) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = &of->dev; | 
					
						
							|  |  |  | 	struct mii_bus *bus = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	struct mpc52xx_fec_mdio_priv *priv = bus->priv; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mdiobus_unregister(bus); | 
					
						
							|  |  |  | 	dev_set_drvdata(dev, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	iounmap(priv->regs); | 
					
						
							|  |  |  | 	for (i=0; i<PHY_MAX_ADDR; i++) | 
					
						
							| 
									
										
										
										
											2008-12-21 02:54:30 -07:00
										 |  |  | 		if (bus->irq[i] != PHY_POLL) | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 			irq_dispose_mapping(bus->irq[i]); | 
					
						
							|  |  |  | 	kfree(priv); | 
					
						
							|  |  |  | 	kfree(bus->irq); | 
					
						
							| 
									
										
										
										
											2008-10-08 16:29:57 -07:00
										 |  |  | 	mdiobus_free(bus); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct of_device_id mpc52xx_fec_mdio_match[] = { | 
					
						
							| 
									
										
										
										
											2008-01-24 22:25:31 -07:00
										 |  |  | 	{ .compatible = "fsl,mpc5200b-mdio", }, | 
					
						
							| 
									
										
										
										
											2008-04-03 19:58:37 +11:00
										 |  |  | 	{ .compatible = "fsl,mpc5200-mdio", }, | 
					
						
							| 
									
										
										
										
											2008-01-24 22:25:31 -07:00
										 |  |  | 	{ .compatible = "mpc5200b-fec-phy", }, | 
					
						
							|  |  |  | 	{} | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-10-14 14:54:52 -07:00
										 |  |  | MODULE_DEVICE_TABLE(of, mpc52xx_fec_mdio_match); | 
					
						
							| 
									
										
										
										
											2007-10-26 18:07:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct of_platform_driver mpc52xx_fec_mdio_driver = { | 
					
						
							|  |  |  | 	.name = "mpc5200b-fec-phy", | 
					
						
							|  |  |  | 	.probe = mpc52xx_fec_mdio_probe, | 
					
						
							|  |  |  | 	.remove = mpc52xx_fec_mdio_remove, | 
					
						
							|  |  |  | 	.match_table = mpc52xx_fec_mdio_match, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* let fec driver call it, since this has to be registered before it */ | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(mpc52xx_fec_mdio_driver); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("Dual BSD/GPL"); |