blob: 4d9f84b8ab9773ef91d75f395907fd9b3f9c25de [file] [log] [blame]
Andy Fleming1577ece2009-02-04 16:42:12 -08001/*
2 * Freescale PowerQUICC Ethernet Driver -- MIIM bus implementation
3 * Provides Bus interface for MIIM regs
4 *
5 * Author: Andy Fleming <afleming@freescale.com>
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +00006 * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com>
Andy Fleming1577ece2009-02-04 16:42:12 -08007 *
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +00008 * Copyright 2002-2004, 2008-2009 Freescale Semiconductor, Inc.
Andy Fleming1577ece2009-02-04 16:42:12 -08009 *
10 * Based on gianfar_mii.c and ucc_geth_mii.c (Li Yang, Kim Phillips)
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
19#include <linux/kernel.h>
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>
33#include <linux/platform_device.h>
34#include <linux/crc32.h>
35#include <linux/mii.h>
36#include <linux/phy.h>
37#include <linux/of.h>
Grant Likely22ae7822010-07-29 11:49:01 -060038#include <linux/of_address.h>
Grant Likely324931b2009-04-25 12:53:07 +000039#include <linux/of_mdio.h>
Andy Fleming1577ece2009-02-04 16:42:12 -080040#include <linux/of_platform.h>
41
42#include <asm/io.h>
43#include <asm/irq.h>
44#include <asm/uaccess.h>
45#include <asm/ucc.h>
46
47#include "gianfar.h"
48#include "fsl_pq_mdio.h"
49
Anton Vorontsovb3319b12009-12-30 08:23:34 +000050struct fsl_pq_mdio_priv {
51 void __iomem *map;
52 struct fsl_pq_mdio __iomem *regs;
53};
54
Andy Fleming1577ece2009-02-04 16:42:12 -080055/*
56 * Write value to the PHY at mii_id at register regnum,
57 * on the bus attached to the local interface, which may be different from the
58 * generic mdio bus (tied to a single interface), waiting until the write is
59 * done before returning. This is helpful in programming interfaces like
60 * the TBI which control interfaces like onchip SERDES and are always tied to
61 * the local mdio pins, which may not be the same as system mdio bus, used for
62 * controlling the external PHYs, for example.
63 */
64int fsl_pq_local_mdio_write(struct fsl_pq_mdio __iomem *regs, int mii_id,
65 int regnum, u16 value)
66{
67 /* Set the PHY address and the register address we want to write */
68 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
69
70 /* Write out the value we want */
71 out_be32(&regs->miimcon, value);
72
73 /* Wait for the transaction to finish */
74 while (in_be32(&regs->miimind) & MIIMIND_BUSY)
75 cpu_relax();
76
77 return 0;
78}
79
80/*
81 * Read the bus for PHY at addr mii_id, register regnum, and
82 * return the value. Clears miimcom first. All PHY operation
83 * done on the bus attached to the local interface,
84 * which may be different from the generic mdio bus
85 * This is helpful in programming interfaces like
86 * the TBI which, in turn, control interfaces like onchip SERDES
87 * and are always tied to the local mdio pins, which may not be the
88 * same as system mdio bus, used for controlling the external PHYs, for eg.
89 */
90int fsl_pq_local_mdio_read(struct fsl_pq_mdio __iomem *regs,
91 int mii_id, int regnum)
92{
93 u16 value;
94
95 /* Set the PHY address and the register address we want to read */
96 out_be32(&regs->miimadd, (mii_id << 8) | regnum);
97
98 /* Clear miimcom, and then initiate a read */
99 out_be32(&regs->miimcom, 0);
100 out_be32(&regs->miimcom, MII_READ_COMMAND);
101
102 /* Wait for the transaction to finish */
103 while (in_be32(&regs->miimind) & (MIIMIND_NOTVALID | MIIMIND_BUSY))
104 cpu_relax();
105
106 /* Grab the value of the register from miimstat */
107 value = in_be32(&regs->miimstat);
108
109 return value;
110}
111
Anton Vorontsov6748f602009-11-04 12:52:57 +0000112static struct fsl_pq_mdio __iomem *fsl_pq_mdio_get_regs(struct mii_bus *bus)
113{
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000114 struct fsl_pq_mdio_priv *priv = bus->priv;
115
116 return priv->regs;
Anton Vorontsov6748f602009-11-04 12:52:57 +0000117}
118
Andy Fleming1577ece2009-02-04 16:42:12 -0800119/*
120 * Write value to the PHY at mii_id at register regnum,
121 * on the bus, waiting until the write is done before returning.
122 */
123int fsl_pq_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 value)
124{
Anton Vorontsov6748f602009-11-04 12:52:57 +0000125 struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus);
Andy Fleming1577ece2009-02-04 16:42:12 -0800126
127 /* Write to the local MII regs */
Eric Dumazet807540b2010-09-23 05:40:09 +0000128 return fsl_pq_local_mdio_write(regs, mii_id, regnum, value);
Andy Fleming1577ece2009-02-04 16:42:12 -0800129}
130
131/*
132 * Read the bus for PHY at addr mii_id, register regnum, and
133 * return the value. Clears miimcom first.
134 */
135int fsl_pq_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
136{
Anton Vorontsov6748f602009-11-04 12:52:57 +0000137 struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus);
Andy Fleming1577ece2009-02-04 16:42:12 -0800138
139 /* Read the local MII regs */
Eric Dumazet807540b2010-09-23 05:40:09 +0000140 return fsl_pq_local_mdio_read(regs, mii_id, regnum);
Andy Fleming1577ece2009-02-04 16:42:12 -0800141}
142
143/* Reset the MIIM registers, and wait for the bus to free */
144static int fsl_pq_mdio_reset(struct mii_bus *bus)
145{
Anton Vorontsov6748f602009-11-04 12:52:57 +0000146 struct fsl_pq_mdio __iomem *regs = fsl_pq_mdio_get_regs(bus);
David S. Miller508827f2009-03-05 02:06:47 -0800147 int timeout = PHY_INIT_TIMEOUT;
Andy Fleming1577ece2009-02-04 16:42:12 -0800148
149 mutex_lock(&bus->mdio_lock);
150
151 /* Reset the management interface */
152 out_be32(&regs->miimcfg, MIIMCFG_RESET);
153
154 /* Setup the MII Mgmt clock speed */
155 out_be32(&regs->miimcfg, MIIMCFG_INIT_VALUE);
156
157 /* Wait until the bus is free */
158 while ((in_be32(&regs->miimind) & MIIMIND_BUSY) && timeout--)
159 cpu_relax();
160
161 mutex_unlock(&bus->mdio_lock);
162
David S. Miller508827f2009-03-05 02:06:47 -0800163 if (timeout < 0) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800164 printk(KERN_ERR "%s: The MII Bus is stuck!\n",
165 bus->name);
166 return -EBUSY;
167 }
168
169 return 0;
170}
171
Andy Fleming1577ece2009-02-04 16:42:12 -0800172void fsl_pq_mdio_bus_name(char *name, struct device_node *np)
173{
Anton Vorontsov18f27382009-03-19 06:48:08 +0000174 const u32 *addr;
175 u64 taddr = OF_BAD_ADDR;
Andy Fleming1577ece2009-02-04 16:42:12 -0800176
Anton Vorontsov18f27382009-03-19 06:48:08 +0000177 addr = of_get_address(np, 0, NULL, NULL);
178 if (addr)
179 taddr = of_translate_address(np, addr);
Andy Fleming1577ece2009-02-04 16:42:12 -0800180
Anton Vorontsov18f27382009-03-19 06:48:08 +0000181 snprintf(name, MII_BUS_ID_SIZE, "%s@%llx", np->name,
182 (unsigned long long)taddr);
Andy Fleming1577ece2009-02-04 16:42:12 -0800183}
Segher Boessenkoolb6bc9782009-04-02 13:57:30 -0700184EXPORT_SYMBOL_GPL(fsl_pq_mdio_bus_name);
Andy Fleming1577ece2009-02-04 16:42:12 -0800185
Andy Fleming1577ece2009-02-04 16:42:12 -0800186
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000187static u32 __iomem *get_gfar_tbipa(struct fsl_pq_mdio __iomem *regs, struct device_node *np)
Andy Fleming1577ece2009-02-04 16:42:12 -0800188{
Andy Fleming952c5ca2011-11-11 05:10:39 +0000189#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
Andy Fleming1577ece2009-02-04 16:42:12 -0800190 struct gfar __iomem *enet_regs;
191
192 /*
193 * This is mildly evil, but so is our hardware for doing this.
194 * Also, we have to cast back to struct gfar because of
195 * definition weirdness done in gianfar.h.
196 */
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000197 if(of_device_is_compatible(np, "fsl,gianfar-mdio") ||
198 of_device_is_compatible(np, "fsl,gianfar-tbi") ||
199 of_device_is_compatible(np, "gianfar")) {
200 enet_regs = (struct gfar __iomem *)regs;
201 return &enet_regs->tbipa;
202 } else if (of_device_is_compatible(np, "fsl,etsec2-mdio") ||
203 of_device_is_compatible(np, "fsl,etsec2-tbi")) {
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000204 return of_iomap(np, 1);
Andy Fleming952c5ca2011-11-11 05:10:39 +0000205 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800206#endif
Andy Fleming952c5ca2011-11-11 05:10:39 +0000207 return NULL;
208}
Andy Fleming1577ece2009-02-04 16:42:12 -0800209
210
Andy Fleming1577ece2009-02-04 16:42:12 -0800211static int get_ucc_id_for_range(u64 start, u64 end, u32 *ucc_id)
212{
Andy Fleming952c5ca2011-11-11 05:10:39 +0000213#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE)
Andy Fleming1577ece2009-02-04 16:42:12 -0800214 struct device_node *np = NULL;
215 int err = 0;
216
217 for_each_compatible_node(np, NULL, "ucc_geth") {
218 struct resource tempres;
219
220 err = of_address_to_resource(np, 0, &tempres);
221 if (err)
222 continue;
223
224 /* if our mdio regs fall within this UCC regs range */
225 if ((start >= tempres.start) && (end <= tempres.end)) {
226 /* Find the id of the UCC */
227 const u32 *id;
228
229 id = of_get_property(np, "cell-index", NULL);
230 if (!id) {
231 id = of_get_property(np, "device-id", NULL);
232 if (!id)
233 continue;
234 }
235
236 *ucc_id = *id;
237
238 return 0;
239 }
240 }
241
242 if (err)
243 return err;
244 else
245 return -EINVAL;
Andy Fleming952c5ca2011-11-11 05:10:39 +0000246#else
247 return -ENODEV;
Andy Fleming1577ece2009-02-04 16:42:12 -0800248#endif
Andy Fleming952c5ca2011-11-11 05:10:39 +0000249}
Andy Fleming1577ece2009-02-04 16:42:12 -0800250
Grant Likely74888762011-02-22 21:05:51 -0700251static int fsl_pq_mdio_probe(struct platform_device *ofdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800252{
Grant Likely61c7a082010-04-13 16:12:29 -0700253 struct device_node *np = ofdev->dev.of_node;
Andy Fleming1577ece2009-02-04 16:42:12 -0800254 struct device_node *tbi;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000255 struct fsl_pq_mdio_priv *priv;
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000256 struct fsl_pq_mdio __iomem *regs = NULL;
Anton Vorontsov2951d642009-11-04 12:52:56 +0000257 void __iomem *map;
Andy Fleming1577ece2009-02-04 16:42:12 -0800258 u32 __iomem *tbipa;
259 struct mii_bus *new_bus;
260 int tbiaddr = -1;
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000261 const u32 *addrp;
Anton Vorontsov2951d642009-11-04 12:52:56 +0000262 u64 addr = 0, size = 0;
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000263 int err;
Andy Fleming1577ece2009-02-04 16:42:12 -0800264
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000265 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
266 if (!priv)
267 return -ENOMEM;
268
Andy Fleming1577ece2009-02-04 16:42:12 -0800269 new_bus = mdiobus_alloc();
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000270 if (!new_bus) {
271 err = -ENOMEM;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000272 goto err_free_priv;
Anton Vorontsov08d18f32010-05-14 04:27:30 +0000273 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800274
275 new_bus->name = "Freescale PowerQUICC MII Bus",
276 new_bus->read = &fsl_pq_mdio_read,
277 new_bus->write = &fsl_pq_mdio_write,
278 new_bus->reset = &fsl_pq_mdio_reset,
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000279 new_bus->priv = priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800280 fsl_pq_mdio_bus_name(new_bus->id, np);
281
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000282 addrp = of_get_address(np, 0, &size, NULL);
283 if (!addrp) {
284 err = -EINVAL;
285 goto err_free_bus;
286 }
287
Andy Fleming1577ece2009-02-04 16:42:12 -0800288 /* Set the PHY base address */
Anton Vorontsov3b1fd3e2010-04-23 07:12:35 +0000289 addr = of_translate_address(np, addrp);
290 if (addr == OF_BAD_ADDR) {
291 err = -EINVAL;
292 goto err_free_bus;
293 }
294
Anton Vorontsov2951d642009-11-04 12:52:56 +0000295 map = ioremap(addr, size);
296 if (!map) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800297 err = -ENOMEM;
298 goto err_free_bus;
299 }
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000300 priv->map = map;
Andy Fleming1577ece2009-02-04 16:42:12 -0800301
Anton Vorontsov2951d642009-11-04 12:52:56 +0000302 if (of_device_is_compatible(np, "fsl,gianfar-mdio") ||
303 of_device_is_compatible(np, "fsl,gianfar-tbi") ||
304 of_device_is_compatible(np, "fsl,ucc-mdio") ||
305 of_device_is_compatible(np, "ucc_geth_phy"))
306 map -= offsetof(struct fsl_pq_mdio, miimcfg);
307 regs = map;
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000308 priv->regs = regs;
Andy Fleming1577ece2009-02-04 16:42:12 -0800309
Grant Likely324931b2009-04-25 12:53:07 +0000310 new_bus->irq = kcalloc(PHY_MAX_ADDR, sizeof(int), GFP_KERNEL);
Andy Fleming1577ece2009-02-04 16:42:12 -0800311
312 if (NULL == new_bus->irq) {
313 err = -ENOMEM;
314 goto err_unmap_regs;
315 }
316
317 new_bus->parent = &ofdev->dev;
318 dev_set_drvdata(&ofdev->dev, new_bus);
319
320 if (of_device_is_compatible(np, "fsl,gianfar-mdio") ||
Anton Vorontsov30196842009-03-21 13:30:05 -0700321 of_device_is_compatible(np, "fsl,gianfar-tbi") ||
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000322 of_device_is_compatible(np, "fsl,etsec2-mdio") ||
323 of_device_is_compatible(np, "fsl,etsec2-tbi") ||
Andy Fleming1577ece2009-02-04 16:42:12 -0800324 of_device_is_compatible(np, "gianfar")) {
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000325 tbipa = get_gfar_tbipa(regs, np);
326 if (!tbipa) {
327 err = -EINVAL;
328 goto err_free_irqs;
329 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800330 } else if (of_device_is_compatible(np, "fsl,ucc-mdio") ||
331 of_device_is_compatible(np, "ucc_geth_phy")) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800332 u32 id;
Haiying Wangfbcc0e22009-06-02 04:04:14 +0000333 static u32 mii_mng_master;
Andy Fleming1577ece2009-02-04 16:42:12 -0800334
335 tbipa = &regs->utbipar;
336
337 if ((err = get_ucc_id_for_range(addr, addr + size, &id)))
338 goto err_free_irqs;
339
Haiying Wangfbcc0e22009-06-02 04:04:14 +0000340 if (!mii_mng_master) {
341 mii_mng_master = id;
342 ucc_set_qe_mux_mii_mng(id - 1);
343 }
Andy Fleming1577ece2009-02-04 16:42:12 -0800344 } else {
345 err = -ENODEV;
346 goto err_free_irqs;
347 }
348
349 for_each_child_of_node(np, tbi) {
350 if (!strncmp(tbi->type, "tbi-phy", 8))
351 break;
352 }
353
354 if (tbi) {
355 const u32 *prop = of_get_property(tbi, "reg", NULL);
356
357 if (prop)
358 tbiaddr = *prop;
359 }
360
361 if (tbiaddr == -1) {
Andy Fleming1577ece2009-02-04 16:42:12 -0800362 err = -EBUSY;
363
364 goto err_free_irqs;
365 }
366
367 out_be32(tbipa, tbiaddr);
368
Grant Likely324931b2009-04-25 12:53:07 +0000369 err = of_mdiobus_register(new_bus, np);
Andy Fleming1577ece2009-02-04 16:42:12 -0800370 if (err) {
371 printk (KERN_ERR "%s: Cannot register as MDIO bus\n",
372 new_bus->name);
373 goto err_free_irqs;
374 }
375
376 return 0;
377
378err_free_irqs:
379 kfree(new_bus->irq);
380err_unmap_regs:
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000381 iounmap(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800382err_free_bus:
383 kfree(new_bus);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000384err_free_priv:
385 kfree(priv);
Andy Fleming1577ece2009-02-04 16:42:12 -0800386 return err;
387}
388
389
Grant Likely2dc11582010-08-06 09:25:50 -0600390static int fsl_pq_mdio_remove(struct platform_device *ofdev)
Andy Fleming1577ece2009-02-04 16:42:12 -0800391{
392 struct device *device = &ofdev->dev;
393 struct mii_bus *bus = dev_get_drvdata(device);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000394 struct fsl_pq_mdio_priv *priv = bus->priv;
Andy Fleming1577ece2009-02-04 16:42:12 -0800395
396 mdiobus_unregister(bus);
397
398 dev_set_drvdata(device, NULL);
399
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000400 iounmap(priv->map);
Andy Fleming1577ece2009-02-04 16:42:12 -0800401 bus->priv = NULL;
402 mdiobus_free(bus);
Anton Vorontsovb3319b12009-12-30 08:23:34 +0000403 kfree(priv);
Andy Fleming1577ece2009-02-04 16:42:12 -0800404
405 return 0;
406}
407
408static struct of_device_id fsl_pq_mdio_match[] = {
409 {
410 .type = "mdio",
411 .compatible = "ucc_geth_phy",
412 },
413 {
414 .type = "mdio",
415 .compatible = "gianfar",
416 },
417 {
418 .compatible = "fsl,ucc-mdio",
419 },
420 {
421 .compatible = "fsl,gianfar-tbi",
422 },
423 {
424 .compatible = "fsl,gianfar-mdio",
425 },
Sandeep Gopalpet1d2397d2009-11-02 07:03:22 +0000426 {
427 .compatible = "fsl,etsec2-tbi",
428 },
429 {
430 .compatible = "fsl,etsec2-mdio",
431 },
Andy Fleming1577ece2009-02-04 16:42:12 -0800432 {},
433};
Anton Vorontsove72701a2009-10-14 14:54:52 -0700434MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match);
Andy Fleming1577ece2009-02-04 16:42:12 -0800435
Grant Likely74888762011-02-22 21:05:51 -0700436static struct platform_driver fsl_pq_mdio_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700437 .driver = {
438 .name = "fsl-pq_mdio",
439 .owner = THIS_MODULE,
440 .of_match_table = fsl_pq_mdio_match,
441 },
Andy Fleming1577ece2009-02-04 16:42:12 -0800442 .probe = fsl_pq_mdio_probe,
443 .remove = fsl_pq_mdio_remove,
Andy Fleming1577ece2009-02-04 16:42:12 -0800444};
445
446int __init fsl_pq_mdio_init(void)
447{
Grant Likely74888762011-02-22 21:05:51 -0700448 return platform_driver_register(&fsl_pq_mdio_driver);
Andy Fleming1577ece2009-02-04 16:42:12 -0800449}
Grant Likely434e7b0d2009-04-25 12:53:44 +0000450module_init(fsl_pq_mdio_init);
Andy Fleming1577ece2009-02-04 16:42:12 -0800451
452void fsl_pq_mdio_exit(void)
453{
Grant Likely74888762011-02-22 21:05:51 -0700454 platform_driver_unregister(&fsl_pq_mdio_driver);
Andy Fleming1577ece2009-02-04 16:42:12 -0800455}
Andy Fleming1577ece2009-02-04 16:42:12 -0800456module_exit(fsl_pq_mdio_exit);
Sebastian Siewior26062892009-11-06 08:50:28 +0000457MODULE_LICENSE("GPL");