Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1 | /* |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 2 | * drivers/net/gianfar_mii.c |
| 3 | * |
| 4 | * Gianfar Ethernet Driver -- MIIM bus implementation |
| 5 | * Provides Bus interface for MIIM regs |
| 6 | * |
| 7 | * Author: Andy Fleming |
Kumar Gala | 4c8d3d9 | 2005-11-13 16:06:30 -0800 | [diff] [blame] | 8 | * Maintainer: Kumar Gala |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 9 | * |
| 10 | * Copyright (c) 2002-2004 Freescale Semiconductor, Inc. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License as published by the |
| 14 | * Free Software Foundation; either version 2 of the License, or (at your |
| 15 | * option) any later version. |
| 16 | * |
| 17 | */ |
| 18 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 20 | #include <linux/string.h> |
| 21 | #include <linux/errno.h> |
| 22 | #include <linux/unistd.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/netdevice.h> |
| 28 | #include <linux/etherdevice.h> |
| 29 | #include <linux/skbuff.h> |
| 30 | #include <linux/spinlock.h> |
| 31 | #include <linux/mm.h> |
| 32 | #include <linux/module.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 33 | #include <linux/platform_device.h> |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 34 | #include <linux/crc32.h> |
| 35 | #include <linux/mii.h> |
| 36 | #include <linux/phy.h> |
| 37 | |
| 38 | #include <asm/io.h> |
| 39 | #include <asm/irq.h> |
| 40 | #include <asm/uaccess.h> |
| 41 | |
| 42 | #include "gianfar.h" |
| 43 | #include "gianfar_mii.h" |
| 44 | |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 45 | /* |
| 46 | * Write value to the PHY at mii_id at register regnum, |
| 47 | * on the bus attached to the local interface, which may be different from the |
| 48 | * generic mdio bus (tied to a single interface), waiting until the write is |
| 49 | * done before returning. This is helpful in programming interfaces like |
| 50 | * the TBI which control interfaces like onchip SERDES and are always tied to |
| 51 | * the local mdio pins, which may not be the same as system mdio bus, used for |
| 52 | * controlling the external PHYs, for example. |
| 53 | */ |
Al Viro | fdb2662 | 2008-02-13 03:58:36 +0000 | [diff] [blame] | 54 | int gfar_local_mdio_write(struct gfar_mii __iomem *regs, int mii_id, |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 55 | int regnum, u16 value) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 56 | { |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 57 | /* Set the PHY address and the register address we want to write */ |
| 58 | gfar_write(®s->miimadd, (mii_id << 8) | regnum); |
| 59 | |
| 60 | /* Write out the value we want */ |
| 61 | gfar_write(®s->miimcon, value); |
| 62 | |
| 63 | /* Wait for the transaction to finish */ |
| 64 | while (gfar_read(®s->miimind) & MIIMIND_BUSY) |
| 65 | cpu_relax(); |
| 66 | |
| 67 | return 0; |
| 68 | } |
| 69 | |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 70 | /* |
| 71 | * Read the bus for PHY at addr mii_id, register regnum, and |
| 72 | * return the value. Clears miimcom first. All PHY operation |
| 73 | * done on the bus attached to the local interface, |
| 74 | * which may be different from the generic mdio bus |
| 75 | * This is helpful in programming interfaces like |
| 76 | * the TBI which, inturn, control interfaces like onchip SERDES |
| 77 | * and are always tied to the local mdio pins, which may not be the |
| 78 | * same as system mdio bus, used for controlling the external PHYs, for eg. |
| 79 | */ |
Al Viro | fdb2662 | 2008-02-13 03:58:36 +0000 | [diff] [blame] | 80 | int gfar_local_mdio_read(struct gfar_mii __iomem *regs, int mii_id, int regnum) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 81 | { |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 82 | u16 value; |
| 83 | |
| 84 | /* Set the PHY address and the register address we want to read */ |
| 85 | gfar_write(®s->miimadd, (mii_id << 8) | regnum); |
| 86 | |
| 87 | /* Clear miimcom, and then initiate a read */ |
| 88 | gfar_write(®s->miimcom, 0); |
| 89 | gfar_write(®s->miimcom, MII_READ_COMMAND); |
| 90 | |
| 91 | /* Wait for the transaction to finish */ |
| 92 | while (gfar_read(®s->miimind) & (MIIMIND_NOTVALID | MIIMIND_BUSY)) |
| 93 | cpu_relax(); |
| 94 | |
| 95 | /* Grab the value of the register from miimstat */ |
| 96 | value = gfar_read(®s->miimstat); |
| 97 | |
| 98 | return value; |
| 99 | } |
| 100 | |
Kapil Juneja | d3c1287 | 2007-05-11 18:25:11 -0500 | [diff] [blame] | 101 | /* Write value to the PHY at mii_id at register regnum, |
| 102 | * on the bus, waiting until the write is done before returning. |
| 103 | * All PHY configuration is done through the TSEC1 MIIM regs */ |
| 104 | int gfar_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 value) |
| 105 | { |
| 106 | struct gfar_mii __iomem *regs = (void __iomem *)bus->priv; |
| 107 | |
| 108 | /* Write to the local MII regs */ |
| 109 | return(gfar_local_mdio_write(regs, mii_id, regnum, value)); |
| 110 | } |
| 111 | |
| 112 | /* Read the bus for PHY at addr mii_id, register regnum, and |
| 113 | * return the value. Clears miimcom first. All PHY |
| 114 | * configuration has to be done through the TSEC1 MIIM regs */ |
| 115 | int gfar_mdio_read(struct mii_bus *bus, int mii_id, int regnum) |
| 116 | { |
| 117 | struct gfar_mii __iomem *regs = (void __iomem *)bus->priv; |
| 118 | |
| 119 | /* Read the local MII regs */ |
| 120 | return(gfar_local_mdio_read(regs, mii_id, regnum)); |
| 121 | } |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 122 | |
| 123 | /* Reset the MIIM registers, and wait for the bus to free */ |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 124 | static int gfar_mdio_reset(struct mii_bus *bus) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 125 | { |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 126 | struct gfar_mii __iomem *regs = (void __iomem *)bus->priv; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 127 | unsigned int timeout = PHY_INIT_TIMEOUT; |
| 128 | |
Andy Fleming | 15cf6dd | 2008-02-05 16:35:30 -0600 | [diff] [blame] | 129 | mutex_lock(&bus->mdio_lock); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 130 | |
| 131 | /* Reset the management interface */ |
| 132 | gfar_write(®s->miimcfg, MIIMCFG_RESET); |
| 133 | |
| 134 | /* Setup the MII Mgmt clock speed */ |
| 135 | gfar_write(®s->miimcfg, MIIMCFG_INIT_VALUE); |
| 136 | |
| 137 | /* Wait until the bus is free */ |
| 138 | while ((gfar_read(®s->miimind) & MIIMIND_BUSY) && |
Trent Piepho | baac03d | 2008-09-22 10:03:56 -0700 | [diff] [blame] | 139 | --timeout) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 140 | cpu_relax(); |
| 141 | |
Andy Fleming | 15cf6dd | 2008-02-05 16:35:30 -0600 | [diff] [blame] | 142 | mutex_unlock(&bus->mdio_lock); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 143 | |
Trent Piepho | baac03d | 2008-09-22 10:03:56 -0700 | [diff] [blame] | 144 | if(timeout == 0) { |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 145 | printk(KERN_ERR "%s: The MII Bus is stuck!\n", |
| 146 | bus->name); |
| 147 | return -EBUSY; |
| 148 | } |
| 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 154 | static int gfar_mdio_probe(struct device *dev) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 155 | { |
| 156 | struct platform_device *pdev = to_platform_device(dev); |
| 157 | struct gianfar_mdio_data *pdata; |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 158 | struct gfar_mii __iomem *regs; |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 159 | struct gfar __iomem *enet_regs; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 160 | struct mii_bus *new_bus; |
Kumar Gala | 1d53267 | 2006-01-11 11:27:32 -0800 | [diff] [blame] | 161 | struct resource *r; |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 162 | int i, err = 0; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 163 | |
| 164 | if (NULL == dev) |
| 165 | return -EINVAL; |
| 166 | |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 167 | new_bus = mdiobus_alloc(); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 168 | if (NULL == new_bus) |
| 169 | return -ENOMEM; |
| 170 | |
| 171 | new_bus->name = "Gianfar MII Bus", |
| 172 | new_bus->read = &gfar_mdio_read, |
| 173 | new_bus->write = &gfar_mdio_write, |
| 174 | new_bus->reset = &gfar_mdio_reset, |
Andy Fleming | 9d9326d | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 175 | snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 176 | |
| 177 | pdata = (struct gianfar_mdio_data *)pdev->dev.platform_data; |
| 178 | |
| 179 | if (NULL == pdata) { |
| 180 | printk(KERN_ERR "gfar mdio %d: Missing platform data!\n", pdev->id); |
| 181 | return -ENODEV; |
| 182 | } |
| 183 | |
Kumar Gala | 1d53267 | 2006-01-11 11:27:32 -0800 | [diff] [blame] | 184 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 185 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 186 | /* Set the PHY base address */ |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 187 | regs = ioremap(r->start, sizeof (struct gfar_mii)); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 188 | |
| 189 | if (NULL == regs) { |
| 190 | err = -ENOMEM; |
| 191 | goto reg_map_fail; |
| 192 | } |
| 193 | |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 194 | new_bus->priv = (void __force *)regs; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 195 | |
| 196 | new_bus->irq = pdata->irq; |
| 197 | |
Lennert Buytenhek | 18ee49d | 2008-10-01 15:41:33 +0000 | [diff] [blame] | 198 | new_bus->parent = dev; |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 199 | dev_set_drvdata(dev, new_bus); |
| 200 | |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 201 | /* |
| 202 | * This is mildly evil, but so is our hardware for doing this. |
| 203 | * Also, we have to cast back to struct gfar_mii because of |
| 204 | * definition weirdness done in gianfar.h. |
| 205 | */ |
| 206 | enet_regs = (struct gfar __iomem *) |
| 207 | ((char *)regs - offsetof(struct gfar, gfar_mii_regs)); |
| 208 | |
| 209 | /* Scan the bus, looking for an empty spot for TBIPA */ |
| 210 | gfar_write(&enet_regs->tbipa, 0); |
| 211 | for (i = PHY_MAX_ADDR; i > 0; i--) { |
| 212 | u32 phy_id; |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 213 | |
Andy Fleming | ac7198b | 2008-09-22 14:10:25 -0700 | [diff] [blame] | 214 | err = get_phy_id(new_bus, i, &phy_id); |
| 215 | if (err) |
| 216 | goto bus_register_fail; |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 217 | |
| 218 | if (phy_id == 0xffffffff) |
| 219 | break; |
| 220 | } |
| 221 | |
| 222 | /* The bus is full. We don't support using 31 PHYs, sorry */ |
Andy Fleming | ac7198b | 2008-09-22 14:10:25 -0700 | [diff] [blame] | 223 | if (i == 0) { |
| 224 | err = -EBUSY; |
| 225 | |
| 226 | goto bus_register_fail; |
| 227 | } |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 228 | |
| 229 | gfar_write(&enet_regs->tbipa, i); |
| 230 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 231 | err = mdiobus_register(new_bus); |
| 232 | |
| 233 | if (0 != err) { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 234 | printk (KERN_ERR "%s: Cannot register as MDIO bus\n", |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 235 | new_bus->name); |
| 236 | goto bus_register_fail; |
| 237 | } |
| 238 | |
| 239 | return 0; |
| 240 | |
| 241 | bus_register_fail: |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 242 | iounmap(regs); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 243 | reg_map_fail: |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 244 | mdiobus_free(new_bus); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 245 | |
| 246 | return err; |
| 247 | } |
| 248 | |
| 249 | |
Paul Gortmaker | d031358 | 2008-04-17 00:08:10 -0400 | [diff] [blame] | 250 | static int gfar_mdio_remove(struct device *dev) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 251 | { |
| 252 | struct mii_bus *bus = dev_get_drvdata(dev); |
| 253 | |
| 254 | mdiobus_unregister(bus); |
| 255 | |
| 256 | dev_set_drvdata(dev, NULL); |
| 257 | |
Kumar Gala | cc8c6e3 | 2006-02-01 15:18:03 -0600 | [diff] [blame] | 258 | iounmap((void __iomem *)bus->priv); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 259 | bus->priv = NULL; |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 260 | mdiobus_free(bus); |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | static struct device_driver gianfar_mdio_driver = { |
| 266 | .name = "fsl-gianfar_mdio", |
| 267 | .bus = &platform_bus_type, |
| 268 | .probe = gfar_mdio_probe, |
| 269 | .remove = gfar_mdio_remove, |
| 270 | }; |
| 271 | |
Trent Piepho | c132419 | 2008-10-30 18:17:06 -0700 | [diff] [blame] | 272 | static int match_mdio_bus(struct device *dev, void *data) |
| 273 | { |
| 274 | const struct gfar_private *priv = data; |
| 275 | const struct platform_device *pdev = to_platform_device(dev); |
| 276 | |
| 277 | return !strcmp(pdev->name, gianfar_mdio_driver.name) && |
| 278 | pdev->id == priv->einfo->mdio_bus; |
| 279 | } |
| 280 | |
| 281 | /* Given a gfar_priv structure, find the mii_bus controlled by this device (not |
| 282 | * necessarily the same as the bus the gfar's PHY is on), if one exists. |
| 283 | * Normally only the first gianfar controls a mii_bus. */ |
| 284 | struct mii_bus *gfar_get_miibus(const struct gfar_private *priv) |
| 285 | { |
| 286 | /*const*/ struct device *d; |
| 287 | |
| 288 | d = bus_find_device(gianfar_mdio_driver.bus, NULL, (void *)priv, |
| 289 | match_mdio_bus); |
| 290 | return d ? dev_get_drvdata(d) : NULL; |
| 291 | } |
| 292 | |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 293 | int __init gfar_mdio_init(void) |
| 294 | { |
| 295 | return driver_register(&gianfar_mdio_driver); |
| 296 | } |
| 297 | |
Kumar Gala | b9daf6c | 2007-07-26 00:52:34 -0500 | [diff] [blame] | 298 | void gfar_mdio_exit(void) |
Andy Fleming | bb40dcb | 2005-09-23 22:54:21 -0400 | [diff] [blame] | 299 | { |
| 300 | driver_unregister(&gianfar_mdio_driver); |
| 301 | } |