2 * Copyright (C) 2006-2007 PA Semi, Inc
4 * Author: Olof Johansson, PA Semi
6 * Maintained by: Olof Johansson <olof@lixom.net>
8 * Based on drivers/net/fs_enet/mii-bitbang.c.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/module.h>
26 #include <linux/types.h>
27 #include <linux/sched.h>
28 #include <linux/errno.h>
29 #include <linux/ioport.h>
30 #include <linux/interrupt.h>
31 #include <linux/phy.h>
32 #include <linux/of_mdio.h>
33 #include <linux/of_platform.h>
37 static void __iomem
*gpio_regs
;
42 int mdio_irqs
[PHY_MAX_ADDR
];
45 #define MDC_PIN(bus) (((struct gpio_priv *)bus->priv)->mdc_pin)
46 #define MDIO_PIN(bus) (((struct gpio_priv *)bus->priv)->mdio_pin)
48 static inline void mdio_lo(struct mii_bus
*bus
)
50 out_le32(gpio_regs
+0x10, 1 << MDIO_PIN(bus
));
53 static inline void mdio_hi(struct mii_bus
*bus
)
55 out_le32(gpio_regs
, 1 << MDIO_PIN(bus
));
58 static inline void mdc_lo(struct mii_bus
*bus
)
60 out_le32(gpio_regs
+0x10, 1 << MDC_PIN(bus
));
63 static inline void mdc_hi(struct mii_bus
*bus
)
65 out_le32(gpio_regs
, 1 << MDC_PIN(bus
));
68 static inline void mdio_active(struct mii_bus
*bus
)
70 out_le32(gpio_regs
+0x20, (1 << MDC_PIN(bus
)) | (1 << MDIO_PIN(bus
)));
73 static inline void mdio_tristate(struct mii_bus
*bus
)
75 out_le32(gpio_regs
+0x30, (1 << MDIO_PIN(bus
)));
78 static inline int mdio_read(struct mii_bus
*bus
)
80 return !!(in_le32(gpio_regs
+0x40) & (1 << MDIO_PIN(bus
)));
83 static void clock_out(struct mii_bus
*bus
, int bit
)
95 /* Utility to send the preamble, address, and register (common to read and write). */
96 static void bitbang_pre(struct mii_bus
*bus
, int read
, u8 addr
, u8 reg
)
100 /* CFE uses a really long preamble (40 bits). We'll do the same. */
102 for (i
= 0; i
< 40; i
++) {
106 /* send the start bit (01) and the read opcode (10) or write (10) */
110 clock_out(bus
, read
);
111 clock_out(bus
, !read
);
113 /* send the PHY address */
114 for (i
= 0; i
< 5; i
++) {
115 clock_out(bus
, (addr
& 0x10) != 0);
119 /* send the register address */
120 for (i
= 0; i
< 5; i
++) {
121 clock_out(bus
, (reg
& 0x10) != 0);
126 static int gpio_mdio_read(struct mii_bus
*bus
, int phy_id
, int location
)
130 u8 addr
= phy_id
& 0xff;
131 u8 reg
= location
& 0xff;
133 bitbang_pre(bus
, 1, addr
, reg
);
135 /* tri-state our MDIO I/O pin so we can read */
142 /* read 16 bits of register data, MSB first */
144 for (i
= 0; i
< 16; i
++) {
152 rdreg
|= mdio_read(bus
);
165 static int gpio_mdio_write(struct mii_bus
*bus
, int phy_id
, int location
, u16 val
)
169 u8 addr
= phy_id
& 0xff;
170 u8 reg
= location
& 0xff;
171 u16 value
= val
& 0xffff;
173 bitbang_pre(bus
, 0, addr
, reg
);
175 /* send the turnaround (10) */
187 /* write 16 bits of register data, MSB first */
188 for (i
= 0; i
< 16; i
++) {
201 * Tri-state the MDIO line.
211 static int gpio_mdio_reset(struct mii_bus
*bus
)
213 /*nothing here - dunno how to reset it*/
218 static int __devinit
gpio_mdio_probe(struct of_device
*ofdev
,
219 const struct of_device_id
*match
)
221 struct device
*dev
= &ofdev
->dev
;
222 struct device_node
*np
= ofdev
->node
;
223 struct mii_bus
*new_bus
;
224 struct gpio_priv
*priv
;
225 const unsigned int *prop
;
229 priv
= kzalloc(sizeof(struct gpio_priv
), GFP_KERNEL
);
233 new_bus
= mdiobus_alloc();
238 new_bus
->name
= "pasemi gpio mdio bus";
239 new_bus
->read
= &gpio_mdio_read
;
240 new_bus
->write
= &gpio_mdio_write
;
241 new_bus
->reset
= &gpio_mdio_reset
;
243 prop
= of_get_property(np
, "reg", NULL
);
244 snprintf(new_bus
->id
, MII_BUS_ID_SIZE
, "%x", *prop
);
245 new_bus
->priv
= priv
;
247 new_bus
->irq
= priv
->mdio_irqs
;
249 prop
= of_get_property(np
, "mdc-pin", NULL
);
250 priv
->mdc_pin
= *prop
;
252 prop
= of_get_property(np
, "mdio-pin", NULL
);
253 priv
->mdio_pin
= *prop
;
255 new_bus
->parent
= dev
;
256 dev_set_drvdata(dev
, new_bus
);
258 err
= of_mdiobus_register(new_bus
, np
);
261 printk(KERN_ERR
"%s: Cannot register as MDIO bus, err %d\n",
277 static int gpio_mdio_remove(struct of_device
*dev
)
279 struct mii_bus
*bus
= dev_get_drvdata(&dev
->dev
);
281 mdiobus_unregister(bus
);
283 dev_set_drvdata(&dev
->dev
, NULL
);
292 static struct of_device_id gpio_mdio_match
[] =
295 .compatible
= "gpio-mdio",
299 MODULE_DEVICE_TABLE(of
, gpio_mdio_match
);
301 static struct of_platform_driver gpio_mdio_driver
=
303 .match_table
= gpio_mdio_match
,
304 .probe
= gpio_mdio_probe
,
305 .remove
= gpio_mdio_remove
,
307 .name
= "gpio-mdio-bitbang",
311 int gpio_mdio_init(void)
313 struct device_node
*np
;
315 np
= of_find_compatible_node(NULL
, NULL
, "1682m-gpio");
317 np
= of_find_compatible_node(NULL
, NULL
,
318 "pasemi,pwrficient-gpio");
321 gpio_regs
= of_iomap(np
, 0);
327 return of_register_platform_driver(&gpio_mdio_driver
);
329 module_init(gpio_mdio_init
);
331 void gpio_mdio_exit(void)
333 of_unregister_platform_driver(&gpio_mdio_driver
);
337 module_exit(gpio_mdio_exit
);
339 MODULE_LICENSE("GPL");
340 MODULE_AUTHOR("Olof Johansson <olof@lixom.net>");
341 MODULE_DESCRIPTION("Driver for MDIO over GPIO on PA Semi PWRficient-based boards");