| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation | 
					
						
							|  |  |  |  * Provides Bus interface for MIIM regs | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Andy Fleming <afleming@freescale.com> | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  |  * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com> | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  |  * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc. | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Based on gianfar_mii.c and ucc_geth_mii.c (Li Yang, Kim Phillips) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute  it and/or modify it | 
					
						
							|  |  |  |  * under  the terms of  the GNU General  Public License as published by the | 
					
						
							|  |  |  |  * Free Software Foundation;  either version 2 of the  License, or (at your | 
					
						
							|  |  |  |  * option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/unistd.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/etherdevice.h>
 | 
					
						
							|  |  |  | #include <linux/skbuff.h>
 | 
					
						
							|  |  |  | #include <linux/spinlock.h>
 | 
					
						
							|  |  |  | #include <linux/mm.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/crc32.h>
 | 
					
						
							|  |  |  | #include <linux/mii.h>
 | 
					
						
							|  |  |  | #include <linux/phy.h>
 | 
					
						
							|  |  |  | #include <linux/of.h>
 | 
					
						
							| 
									
										
										
										
											2010-07-29 11:49:01 -06:00
										 |  |  | #include <linux/of_address.h>
 | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:07 +00:00
										 |  |  | #include <linux/of_mdio.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | #include <linux/of_platform.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | #include <asm/irq.h>
 | 
					
						
							|  |  |  | #include <asm/uaccess.h>
 | 
					
						
							|  |  |  | #include <asm/ucc.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gianfar.h"
 | 
					
						
							|  |  |  | #include "fsl_pq_mdio.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | struct fsl_pq_mdio_priv { | 
					
						
							|  |  |  | 	void __iomem *map; | 
					
						
							|  |  |  | 	struct fsl_pq_mdio __iomem *regs; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Write value to the PHY at mii_id at register regnum, | 
					
						
							|  |  |  |  * on the bus attached to the local interface, which may be different from the | 
					
						
							|  |  |  |  * generic mdio bus (tied to a single interface), waiting until the write is | 
					
						
							|  |  |  |  * done before returning. This is helpful in programming interfaces like | 
					
						
							|  |  |  |  * the TBI which control interfaces like onchip SERDES and are always tied to | 
					
						
							|  |  |  |  * the local mdio pins, which may not be the same as system mdio bus, used for | 
					
						
							|  |  |  |  * controlling the external PHYs, for example. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int fsl_pq_local_mdio_write(struct fsl_pq_mdio __iomem *regs, int mii_id, | 
					
						
							|  |  |  | 		int regnum, u16 value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* Set the PHY address and the register address we want to write */ | 
					
						
							|  |  |  | 	out_be32(®s->miimadd, (mii_id << 8) | regnum); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Write out the value we want */ | 
					
						
							|  |  |  | 	out_be32(®s->miimcon, value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Wait for the transaction to finish */ | 
					
						
							|  |  |  | 	while (in_be32(®s->miimind) & MIIMIND_BUSY) | 
					
						
							|  |  |  | 		cpu_relax(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Read the bus for PHY at addr mii_id, register regnum, and | 
					
						
							|  |  |  |  * return the value.  Clears miimcom first.  All PHY operation | 
					
						
							|  |  |  |  * done on the bus attached to the local interface, | 
					
						
							|  |  |  |  * which may be different from the generic mdio bus | 
					
						
							|  |  |  |  * This is helpful in programming interfaces like | 
					
						
							|  |  |  |  * the TBI which, in turn, control interfaces like onchip SERDES | 
					
						
							|  |  |  |  * and are always tied to the local mdio pins, which may not be the | 
					
						
							|  |  |  |  * same as system mdio bus, used for controlling the external PHYs, for eg. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int fsl_pq_local_mdio_read(struct fsl_pq_mdio __iomem *regs, | 
					
						
							|  |  |  | 		int mii_id, int regnum) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u16 value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Set the PHY address and the register address we want to read */ | 
					
						
							|  |  |  | 	out_be32(®s->miimadd, (mii_id << 8) | regnum); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Clear miimcom, and then initiate a read */ | 
					
						
							|  |  |  | 	out_be32(®s->miimcom, 0); | 
					
						
							|  |  |  | 	out_be32(®s->miimcom, MII_READ_COMMAND); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Wait for the transaction to finish */ | 
					
						
							|  |  |  | 	while (in_be32(®s->miimind) & (MIIMIND_NOTVALID | MIIMIND_BUSY)) | 
					
						
							|  |  |  | 		cpu_relax(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Grab the value of the register from miimstat */ | 
					
						
							|  |  |  | 	value = in_be32(®s->miimstat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:57 +00:00
										 |  |  | static struct fsl_pq_mdio __iomem *fsl_pq_mdio_get_regs(struct mii_bus *bus) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	struct fsl_pq_mdio_priv *priv = bus->priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return priv->regs; | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Write value to the PHY at mii_id at register regnum, | 
					
						
							|  |  |  |  * on the bus, waiting until the write is done before returning. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int fsl_pq_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 value) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:57 +00:00
										 |  |  | 	struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Write to the local MII regs */ | 
					
						
							| 
									
										
										
										
											2010-09-23 05:40:09 +00:00
										 |  |  | 	return fsl_pq_local_mdio_write(regs, mii_id, regnum, value); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Read the bus for PHY at addr mii_id, register regnum, and | 
					
						
							|  |  |  |  * return the value.  Clears miimcom first. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:57 +00:00
										 |  |  | 	struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Read the local MII regs */ | 
					
						
							| 
									
										
										
										
											2010-09-23 05:40:09 +00:00
										 |  |  | 	return fsl_pq_local_mdio_read(regs, mii_id, regnum); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Reset the MIIM registers, and wait for the bus to free */ | 
					
						
							|  |  |  | static int fsl_pq_mdio_reset(struct mii_bus *bus) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:57 +00:00
										 |  |  | 	struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus); | 
					
						
							| 
									
										
										
										
											2009-03-05 02:06:47 -08:00
										 |  |  | 	int timeout = PHY_INIT_TIMEOUT; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mutex_lock(&bus->mdio_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Reset the management interface */ | 
					
						
							|  |  |  | 	out_be32(®s->miimcfg, MIIMCFG_RESET); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Setup the MII Mgmt clock speed */ | 
					
						
							|  |  |  | 	out_be32(®s->miimcfg, MIIMCFG_INIT_VALUE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Wait until the bus is free */ | 
					
						
							|  |  |  | 	while ((in_be32(®s->miimind) & MIIMIND_BUSY) && timeout--) | 
					
						
							|  |  |  | 		cpu_relax(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mutex_unlock(&bus->mdio_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-05 02:06:47 -08:00
										 |  |  | 	if (timeout < 0) { | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 		printk(KERN_ERR "%s: The MII Bus is stuck!\n", | 
					
						
							|  |  |  | 				bus->name); | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void fsl_pq_mdio_bus_name(char *name, struct device_node *np) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-19 06:48:08 +00:00
										 |  |  | 	const u32 *addr; | 
					
						
							|  |  |  | 	u64 taddr = OF_BAD_ADDR; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-19 06:48:08 +00:00
										 |  |  | 	addr = of_get_address(np, 0, NULL, NULL); | 
					
						
							|  |  |  | 	if (addr) | 
					
						
							|  |  |  | 		taddr = of_translate_address(np, addr); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-19 06:48:08 +00:00
										 |  |  | 	snprintf(name, MII_BUS_ID_SIZE, "%s@%llx", np->name, | 
					
						
							|  |  |  | 		(unsigned long long)taddr); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-02 13:57:30 -07:00
										 |  |  | EXPORT_SYMBOL_GPL(fsl_pq_mdio_bus_name); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Scan the bus in reverse, looking for an empty spot */ | 
					
						
							|  |  |  | static int fsl_pq_mdio_find_free(struct mii_bus *new_bus) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = PHY_MAX_ADDR; i > 0; i--) { | 
					
						
							|  |  |  | 		u32 phy_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (get_phy_id(new_bus, i, &phy_id)) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (phy_id == 0xffffffff) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return i; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 22:23:39 +00:00
										 |  |  | #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
 | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | static u32 __iomem *get_gfar_tbipa(struct fsl_pq_mdio __iomem *regs, struct device_node *np) | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct gfar __iomem *enet_regs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * This is mildly evil, but so is our hardware for doing this. | 
					
						
							|  |  |  | 	 * Also, we have to cast back to struct gfar because of | 
					
						
							|  |  |  | 	 * definition weirdness done in gianfar.h. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 	if(of_device_is_compatible(np, "fsl,gianfar-mdio") || | 
					
						
							|  |  |  | 		of_device_is_compatible(np, "fsl,gianfar-tbi") || | 
					
						
							|  |  |  | 		of_device_is_compatible(np, "gianfar")) { | 
					
						
							|  |  |  | 		enet_regs = (struct gfar __iomem *)regs; | 
					
						
							|  |  |  | 		return &enet_regs->tbipa; | 
					
						
							|  |  |  | 	} else if (of_device_is_compatible(np, "fsl,etsec2-mdio") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "fsl,etsec2-tbi")) { | 
					
						
							| 
									
										
										
										
											2010-04-23 07:12:35 +00:00
										 |  |  | 		return of_iomap(np, 1); | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-24 22:23:39 +00:00
										 |  |  | #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | static int get_ucc_id_for_range(u64 start, u64 end, u32 *ucc_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device_node *np = NULL; | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for_each_compatible_node(np, NULL, "ucc_geth") { | 
					
						
							|  |  |  | 		struct resource tempres; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = of_address_to_resource(np, 0, &tempres); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* if our mdio regs fall within this UCC regs range */ | 
					
						
							|  |  |  | 		if ((start >= tempres.start) && (end <= tempres.end)) { | 
					
						
							|  |  |  | 			/* Find the id of the UCC */ | 
					
						
							|  |  |  | 			const u32 *id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			id = of_get_property(np, "cell-index", NULL); | 
					
						
							|  |  |  | 			if (!id) { | 
					
						
							|  |  |  | 				id = of_get_property(np, "device-id", NULL); | 
					
						
							|  |  |  | 				if (!id) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			*ucc_id = *id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-06 09:25:50 -06:00
										 |  |  | static int fsl_pq_mdio_probe(struct platform_device *ofdev, | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 		const struct of_device_id *match) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-04-13 16:12:29 -07:00
										 |  |  | 	struct device_node *np = ofdev->dev.of_node; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	struct device_node *tbi; | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	struct fsl_pq_mdio_priv *priv; | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 	struct fsl_pq_mdio __iomem *regs = NULL; | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:56 +00:00
										 |  |  | 	void __iomem *map; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	u32 __iomem *tbipa; | 
					
						
							|  |  |  | 	struct mii_bus *new_bus; | 
					
						
							|  |  |  | 	int tbiaddr = -1; | 
					
						
							| 
									
										
										
										
											2010-04-23 07:12:35 +00:00
										 |  |  | 	const u32 *addrp; | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:56 +00:00
										 |  |  | 	u64 addr = 0, size = 0; | 
					
						
							| 
									
										
										
										
											2010-05-14 04:27:30 +00:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	priv = kzalloc(sizeof(*priv), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!priv) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	new_bus = mdiobus_alloc(); | 
					
						
							| 
									
										
										
										
											2010-05-14 04:27:30 +00:00
										 |  |  | 	if (!new_bus) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 		goto err_free_priv; | 
					
						
							| 
									
										
										
										
											2010-05-14 04:27:30 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	new_bus->name = "Freescale PowerQUICC MII Bus", | 
					
						
							|  |  |  | 	new_bus->read = &fsl_pq_mdio_read, | 
					
						
							|  |  |  | 	new_bus->write = &fsl_pq_mdio_write, | 
					
						
							|  |  |  | 	new_bus->reset = &fsl_pq_mdio_reset, | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	new_bus->priv = priv; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	fsl_pq_mdio_bus_name(new_bus->id, np); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-23 07:12:35 +00:00
										 |  |  | 	addrp = of_get_address(np, 0, &size, NULL); | 
					
						
							|  |  |  | 	if (!addrp) { | 
					
						
							|  |  |  | 		err = -EINVAL; | 
					
						
							|  |  |  | 		goto err_free_bus; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	/* Set the PHY base address */ | 
					
						
							| 
									
										
										
										
											2010-04-23 07:12:35 +00:00
										 |  |  | 	addr = of_translate_address(np, addrp); | 
					
						
							|  |  |  | 	if (addr == OF_BAD_ADDR) { | 
					
						
							|  |  |  | 		err = -EINVAL; | 
					
						
							|  |  |  | 		goto err_free_bus; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:56 +00:00
										 |  |  | 	map = ioremap(addr, size); | 
					
						
							|  |  |  | 	if (!map) { | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto err_free_bus; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	priv->map = map; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-04 12:52:56 +00:00
										 |  |  | 	if (of_device_is_compatible(np, "fsl,gianfar-mdio") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "fsl,gianfar-tbi") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "fsl,ucc-mdio") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "ucc_geth_phy")) | 
					
						
							|  |  |  | 		map -= offsetof(struct fsl_pq_mdio, miimcfg); | 
					
						
							|  |  |  | 	regs = map; | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	priv->regs = regs; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:07 +00:00
										 |  |  | 	new_bus->irq = kcalloc(PHY_MAX_ADDR, sizeof(int), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (NULL == new_bus->irq) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto err_unmap_regs; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_bus->parent = &ofdev->dev; | 
					
						
							|  |  |  | 	dev_set_drvdata(&ofdev->dev, new_bus); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (of_device_is_compatible(np, "fsl,gianfar-mdio") || | 
					
						
							| 
									
										
										
										
											2009-03-21 13:30:05 -07:00
										 |  |  | 			of_device_is_compatible(np, "fsl,gianfar-tbi") || | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 			of_device_is_compatible(np, "fsl,etsec2-mdio") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "fsl,etsec2-tbi") || | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 			of_device_is_compatible(np, "gianfar")) { | 
					
						
							| 
									
										
										
										
											2009-06-24 22:23:39 +00:00
										 |  |  | #if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
 | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 		tbipa = get_gfar_tbipa(regs, np); | 
					
						
							|  |  |  | 		if (!tbipa) { | 
					
						
							|  |  |  | 			err = -EINVAL; | 
					
						
							|  |  |  | 			goto err_free_irqs; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 		err = -ENODEV; | 
					
						
							|  |  |  | 		goto err_free_irqs; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} else if (of_device_is_compatible(np, "fsl,ucc-mdio") || | 
					
						
							|  |  |  | 			of_device_is_compatible(np, "ucc_geth_phy")) { | 
					
						
							| 
									
										
										
										
											2009-06-24 22:23:39 +00:00
										 |  |  | #if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
 | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 		u32 id; | 
					
						
							| 
									
										
										
										
											2009-06-02 04:04:14 +00:00
										 |  |  | 		static u32 mii_mng_master; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		tbipa = ®s->utbipar; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((err = get_ucc_id_for_range(addr, addr + size, &id))) | 
					
						
							|  |  |  | 			goto err_free_irqs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-02 04:04:14 +00:00
										 |  |  | 		if (!mii_mng_master) { | 
					
						
							|  |  |  | 			mii_mng_master = id; | 
					
						
							|  |  |  | 			ucc_set_qe_mux_mii_mng(id - 1); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 		err = -ENODEV; | 
					
						
							|  |  |  | 		goto err_free_irqs; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		err = -ENODEV; | 
					
						
							|  |  |  | 		goto err_free_irqs; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for_each_child_of_node(np, tbi) { | 
					
						
							|  |  |  | 		if (!strncmp(tbi->type, "tbi-phy", 8)) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tbi) { | 
					
						
							|  |  |  | 		const u32 *prop = of_get_property(tbi, "reg", NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (prop) | 
					
						
							|  |  |  | 			tbiaddr = *prop; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tbiaddr == -1) { | 
					
						
							|  |  |  | 		out_be32(tbipa, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tbiaddr = fsl_pq_mdio_find_free(new_bus); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * We define TBIPA at 0 to be illegal, opting to fail for boards that | 
					
						
							|  |  |  | 	 * have PHYs at 1-31, rather than change tbipa and rescan. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (tbiaddr == 0) { | 
					
						
							|  |  |  | 		err = -EBUSY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		goto err_free_irqs; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	out_be32(tbipa, tbiaddr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:07 +00:00
										 |  |  | 	err = of_mdiobus_register(new_bus, np); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk (KERN_ERR "%s: Cannot register as MDIO bus\n", | 
					
						
							|  |  |  | 				new_bus->name); | 
					
						
							|  |  |  | 		goto err_free_irqs; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_free_irqs: | 
					
						
							|  |  |  | 	kfree(new_bus->irq); | 
					
						
							|  |  |  | err_unmap_regs: | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	iounmap(priv->map); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | err_free_bus: | 
					
						
							|  |  |  | 	kfree(new_bus); | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | err_free_priv: | 
					
						
							|  |  |  | 	kfree(priv); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-06 09:25:50 -06:00
										 |  |  | static int fsl_pq_mdio_remove(struct platform_device *ofdev) | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct device *device = &ofdev->dev; | 
					
						
							|  |  |  | 	struct mii_bus *bus = dev_get_drvdata(device); | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	struct fsl_pq_mdio_priv *priv = bus->priv; | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mdiobus_unregister(bus); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_set_drvdata(device, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	iounmap(priv->map); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	bus->priv = NULL; | 
					
						
							|  |  |  | 	mdiobus_free(bus); | 
					
						
							| 
									
										
										
										
											2009-12-30 08:23:34 +00:00
										 |  |  | 	kfree(priv); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct of_device_id fsl_pq_mdio_match[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.type = "mdio", | 
					
						
							|  |  |  | 		.compatible = "ucc_geth_phy", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.type = "mdio", | 
					
						
							|  |  |  | 		.compatible = "gianfar", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,ucc-mdio", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,gianfar-tbi", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,gianfar-mdio", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-11-02 07:03:22 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,etsec2-tbi", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.compatible = "fsl,etsec2-mdio", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	{}, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-10-14 14:54:52 -07:00
										 |  |  | MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct of_platform_driver fsl_pq_mdio_driver = { | 
					
						
							| 
									
										
										
										
											2010-04-13 16:13:02 -07:00
										 |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name = "fsl-pq_mdio", | 
					
						
							|  |  |  | 		.owner = THIS_MODULE, | 
					
						
							|  |  |  | 		.of_match_table = fsl_pq_mdio_match, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 	.probe = fsl_pq_mdio_probe, | 
					
						
							|  |  |  | 	.remove = fsl_pq_mdio_remove, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int __init fsl_pq_mdio_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return of_register_platform_driver(&fsl_pq_mdio_driver); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-04-25 12:53:44 +00:00
										 |  |  | module_init(fsl_pq_mdio_init); | 
					
						
							| 
									
										
										
										
											2009-02-04 16:42:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void fsl_pq_mdio_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	of_unregister_platform_driver(&fsl_pq_mdio_driver); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | module_exit(fsl_pq_mdio_exit); | 
					
						
							| 
									
										
										
										
											2009-11-06 08:50:28 +00:00
										 |  |  | MODULE_LICENSE("GPL"); |