2 * drivers/net/gianfar_mii.c
4 * Gianfar Ethernet Driver -- MIIM bus implementation
5 * Provides Bus interface for MIIM regs
8 * Maintainer: Kumar Gala
10 * Copyright (c) 2002-2004 Freescale Semiconductor, Inc.
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.
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>
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>
40 #include <asm/uaccess.h>
43 #include "gianfar_mii.h"
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.
54 <<<<<<< HEAD
:drivers
/net
/gianfar_mii
.c
55 int gfar_local_mdio_write(struct gfar_mii
*regs
, int mii_id
,
57 int gfar_local_mdio_write(struct gfar_mii __iomem
*regs
, int mii_id
,
58 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/net
/gianfar_mii
.c
59 int regnum
, u16 value
)
61 /* Set the PHY address and the register address we want to write */
62 gfar_write(®s
->miimadd
, (mii_id
<< 8) | regnum
);
64 /* Write out the value we want */
65 gfar_write(®s
->miimcon
, value
);
67 /* Wait for the transaction to finish */
68 while (gfar_read(®s
->miimind
) & MIIMIND_BUSY
)
75 * Read the bus for PHY at addr mii_id, register regnum, and
76 * return the value. Clears miimcom first. All PHY operation
77 * done on the bus attached to the local interface,
78 * which may be different from the generic mdio bus
79 * This is helpful in programming interfaces like
80 * the TBI which, inturn, control interfaces like onchip SERDES
81 * and are always tied to the local mdio pins, which may not be the
82 * same as system mdio bus, used for controlling the external PHYs, for eg.
84 <<<<<<< HEAD
:drivers
/net
/gianfar_mii
.c
85 int gfar_local_mdio_read(struct gfar_mii
*regs
, int mii_id
, int regnum
)
87 int gfar_local_mdio_read(struct gfar_mii __iomem
*regs
, int mii_id
, int regnum
)
88 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/net
/gianfar_mii
.c
93 /* Set the PHY address and the register address we want to read */
94 gfar_write(®s
->miimadd
, (mii_id
<< 8) | regnum
);
96 /* Clear miimcom, and then initiate a read */
97 gfar_write(®s
->miimcom
, 0);
98 gfar_write(®s
->miimcom
, MII_READ_COMMAND
);
100 /* Wait for the transaction to finish */
101 while (gfar_read(®s
->miimind
) & (MIIMIND_NOTVALID
| MIIMIND_BUSY
))
104 /* Grab the value of the register from miimstat */
105 value
= gfar_read(®s
->miimstat
);
110 /* Write value to the PHY at mii_id at register regnum,
111 * on the bus, waiting until the write is done before returning.
112 * All PHY configuration is done through the TSEC1 MIIM regs */
113 int gfar_mdio_write(struct mii_bus
*bus
, int mii_id
, int regnum
, u16 value
)
115 struct gfar_mii __iomem
*regs
= (void __iomem
*)bus
->priv
;
117 /* Write to the local MII regs */
118 return(gfar_local_mdio_write(regs
, mii_id
, regnum
, value
));
121 /* Read the bus for PHY at addr mii_id, register regnum, and
122 * return the value. Clears miimcom first. All PHY
123 * configuration has to be done through the TSEC1 MIIM regs */
124 int gfar_mdio_read(struct mii_bus
*bus
, int mii_id
, int regnum
)
126 struct gfar_mii __iomem
*regs
= (void __iomem
*)bus
->priv
;
128 /* Read the local MII regs */
129 return(gfar_local_mdio_read(regs
, mii_id
, regnum
));
132 /* Reset the MIIM registers, and wait for the bus to free */
133 int gfar_mdio_reset(struct mii_bus
*bus
)
135 struct gfar_mii __iomem
*regs
= (void __iomem
*)bus
->priv
;
136 unsigned int timeout
= PHY_INIT_TIMEOUT
;
138 mutex_lock(&bus
->mdio_lock
);
140 /* Reset the management interface */
141 gfar_write(®s
->miimcfg
, MIIMCFG_RESET
);
143 /* Setup the MII Mgmt clock speed */
144 gfar_write(®s
->miimcfg
, MIIMCFG_INIT_VALUE
);
146 /* Wait until the bus is free */
147 while ((gfar_read(®s
->miimind
) & MIIMIND_BUSY
) &&
151 mutex_unlock(&bus
->mdio_lock
);
154 printk(KERN_ERR
"%s: The MII Bus is stuck!\n",
163 int gfar_mdio_probe(struct device
*dev
)
165 struct platform_device
*pdev
= to_platform_device(dev
);
166 struct gianfar_mdio_data
*pdata
;
167 struct gfar_mii __iomem
*regs
;
168 struct mii_bus
*new_bus
;
175 new_bus
= kzalloc(sizeof(struct mii_bus
), GFP_KERNEL
);
180 new_bus
->name
= "Gianfar MII Bus",
181 new_bus
->read
= &gfar_mdio_read
,
182 new_bus
->write
= &gfar_mdio_write
,
183 new_bus
->reset
= &gfar_mdio_reset
,
184 new_bus
->id
= pdev
->id
;
186 pdata
= (struct gianfar_mdio_data
*)pdev
->dev
.platform_data
;
189 printk(KERN_ERR
"gfar mdio %d: Missing platform data!\n", pdev
->id
);
193 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
195 /* Set the PHY base address */
196 regs
= ioremap(r
->start
, sizeof (struct gfar_mii
));
203 new_bus
->priv
= (void __force
*)regs
;
205 new_bus
->irq
= pdata
->irq
;
208 dev_set_drvdata(dev
, new_bus
);
210 err
= mdiobus_register(new_bus
);
213 printk (KERN_ERR
"%s: Cannot register as MDIO bus\n",
215 goto bus_register_fail
;
229 int gfar_mdio_remove(struct device
*dev
)
231 struct mii_bus
*bus
= dev_get_drvdata(dev
);
233 mdiobus_unregister(bus
);
235 dev_set_drvdata(dev
, NULL
);
237 iounmap((void __iomem
*)bus
->priv
);
244 static struct device_driver gianfar_mdio_driver
= {
245 .name
= "fsl-gianfar_mdio",
246 .bus
= &platform_bus_type
,
247 .probe
= gfar_mdio_probe
,
248 .remove
= gfar_mdio_remove
,
251 int __init
gfar_mdio_init(void)
253 return driver_register(&gianfar_mdio_driver
);
256 void gfar_mdio_exit(void)
258 driver_unregister(&gianfar_mdio_driver
);