blob: 627ee089e75d4bde3b04b3d9ab1ee48d54c931d0 [file] [log] [blame]
Olof Johanssonb97d2792007-04-18 16:39:54 +10001/*
2 * Copyright (C) 2006-2007 PA Semi, Inc
3 *
4 * Author: Olof Johansson, PA Semi
5 *
6 * Maintained by: Olof Johansson <olof@lixom.net>
7 *
8 * Based on drivers/net/fs_enet/mii-bitbang.c.
9 *
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.
13 *
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.
18 *
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
22 */
23
24#include <linux/io.h>
25#include <linux/module.h>
26#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Olof Johanssonb97d2792007-04-18 16:39:54 +100028#include <linux/sched.h>
29#include <linux/errno.h>
30#include <linux/ioport.h>
31#include <linux/interrupt.h>
32#include <linux/phy.h>
Grant Likely1dd2d062009-04-25 12:53:17 +000033#include <linux/of_mdio.h>
Jon Loeliger5f867dc2007-11-14 04:13:03 +110034#include <linux/of_platform.h>
Olof Johanssonb97d2792007-04-18 16:39:54 +100035
36#define DELAY 1
37
38static void __iomem *gpio_regs;
39
40struct gpio_priv {
41 int mdc_pin;
42 int mdio_pin;
Grant Likely1dd2d062009-04-25 12:53:17 +000043 int mdio_irqs[PHY_MAX_ADDR];
Olof Johanssonb97d2792007-04-18 16:39:54 +100044};
45
46#define MDC_PIN(bus) (((struct gpio_priv *)bus->priv)->mdc_pin)
47#define MDIO_PIN(bus) (((struct gpio_priv *)bus->priv)->mdio_pin)
48
49static inline void mdio_lo(struct mii_bus *bus)
50{
51 out_le32(gpio_regs+0x10, 1 << MDIO_PIN(bus));
52}
53
54static inline void mdio_hi(struct mii_bus *bus)
55{
56 out_le32(gpio_regs, 1 << MDIO_PIN(bus));
57}
58
59static inline void mdc_lo(struct mii_bus *bus)
60{
61 out_le32(gpio_regs+0x10, 1 << MDC_PIN(bus));
62}
63
64static inline void mdc_hi(struct mii_bus *bus)
65{
66 out_le32(gpio_regs, 1 << MDC_PIN(bus));
67}
68
69static inline void mdio_active(struct mii_bus *bus)
70{
71 out_le32(gpio_regs+0x20, (1 << MDC_PIN(bus)) | (1 << MDIO_PIN(bus)));
72}
73
74static inline void mdio_tristate(struct mii_bus *bus)
75{
76 out_le32(gpio_regs+0x30, (1 << MDIO_PIN(bus)));
77}
78
79static inline int mdio_read(struct mii_bus *bus)
80{
81 return !!(in_le32(gpio_regs+0x40) & (1 << MDIO_PIN(bus)));
82}
83
84static void clock_out(struct mii_bus *bus, int bit)
85{
86 if (bit)
87 mdio_hi(bus);
88 else
89 mdio_lo(bus);
90 udelay(DELAY);
91 mdc_hi(bus);
92 udelay(DELAY);
93 mdc_lo(bus);
94}
95
96/* Utility to send the preamble, address, and register (common to read and write). */
97static void bitbang_pre(struct mii_bus *bus, int read, u8 addr, u8 reg)
98{
99 int i;
100
101 /* CFE uses a really long preamble (40 bits). We'll do the same. */
102 mdio_active(bus);
103 for (i = 0; i < 40; i++) {
104 clock_out(bus, 1);
105 }
106
107 /* send the start bit (01) and the read opcode (10) or write (10) */
108 clock_out(bus, 0);
109 clock_out(bus, 1);
110
111 clock_out(bus, read);
112 clock_out(bus, !read);
113
114 /* send the PHY address */
115 for (i = 0; i < 5; i++) {
116 clock_out(bus, (addr & 0x10) != 0);
117 addr <<= 1;
118 }
119
120 /* send the register address */
121 for (i = 0; i < 5; i++) {
122 clock_out(bus, (reg & 0x10) != 0);
123 reg <<= 1;
124 }
125}
126
127static int gpio_mdio_read(struct mii_bus *bus, int phy_id, int location)
128{
129 u16 rdreg;
130 int ret, i;
131 u8 addr = phy_id & 0xff;
132 u8 reg = location & 0xff;
133
134 bitbang_pre(bus, 1, addr, reg);
135
136 /* tri-state our MDIO I/O pin so we can read */
137 mdio_tristate(bus);
138 udelay(DELAY);
139 mdc_hi(bus);
140 udelay(DELAY);
141 mdc_lo(bus);
142
143 /* read 16 bits of register data, MSB first */
144 rdreg = 0;
145 for (i = 0; i < 16; i++) {
146 mdc_lo(bus);
147 udelay(DELAY);
148 mdc_hi(bus);
149 udelay(DELAY);
150 mdc_lo(bus);
151 udelay(DELAY);
152 rdreg <<= 1;
153 rdreg |= mdio_read(bus);
154 }
155
156 mdc_hi(bus);
157 udelay(DELAY);
158 mdc_lo(bus);
159 udelay(DELAY);
160
161 ret = rdreg;
162
163 return ret;
164}
165
166static int gpio_mdio_write(struct mii_bus *bus, int phy_id, int location, u16 val)
167{
168 int i;
169
170 u8 addr = phy_id & 0xff;
171 u8 reg = location & 0xff;
172 u16 value = val & 0xffff;
173
174 bitbang_pre(bus, 0, addr, reg);
175
176 /* send the turnaround (10) */
177 mdc_lo(bus);
178 mdio_hi(bus);
179 udelay(DELAY);
180 mdc_hi(bus);
181 udelay(DELAY);
182 mdc_lo(bus);
183 mdio_lo(bus);
184 udelay(DELAY);
185 mdc_hi(bus);
186 udelay(DELAY);
187
188 /* write 16 bits of register data, MSB first */
189 for (i = 0; i < 16; i++) {
190 mdc_lo(bus);
191 if (value & 0x8000)
192 mdio_hi(bus);
193 else
194 mdio_lo(bus);
195 udelay(DELAY);
196 mdc_hi(bus);
197 udelay(DELAY);
198 value <<= 1;
199 }
200
201 /*
202 * Tri-state the MDIO line.
203 */
204 mdio_tristate(bus);
205 mdc_lo(bus);
206 udelay(DELAY);
207 mdc_hi(bus);
208 udelay(DELAY);
209 return 0;
210}
211
212static int gpio_mdio_reset(struct mii_bus *bus)
213{
214 /*nothing here - dunno how to reset it*/
215 return 0;
216}
217
218
219static int __devinit gpio_mdio_probe(struct of_device *ofdev,
220 const struct of_device_id *match)
221{
222 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -0700223 struct device_node *np = ofdev->dev.of_node;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000224 struct mii_bus *new_bus;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000225 struct gpio_priv *priv;
226 const unsigned int *prop;
Olof Johansson2dd3c002007-11-04 15:44:15 -0600227 int err;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000228
Olof Johansson2dd3c002007-11-04 15:44:15 -0600229 err = -ENOMEM;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000230 priv = kzalloc(sizeof(struct gpio_priv), GFP_KERNEL);
Olof Johansson2dd3c002007-11-04 15:44:15 -0600231 if (!priv)
232 goto out;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000233
Lennert Buytenhekec2a5652008-10-09 09:45:04 -0700234 new_bus = mdiobus_alloc();
Olof Johanssonb97d2792007-04-18 16:39:54 +1000235
Olof Johansson2dd3c002007-11-04 15:44:15 -0600236 if (!new_bus)
237 goto out_free_priv;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000238
Olof Johansson2dd3c002007-11-04 15:44:15 -0600239 new_bus->name = "pasemi gpio mdio bus";
240 new_bus->read = &gpio_mdio_read;
241 new_bus->write = &gpio_mdio_write;
242 new_bus->reset = &gpio_mdio_reset;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000243
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000244 prop = of_get_property(np, "reg", NULL);
Andy Fleming9d9326d2008-04-09 19:38:13 -0500245 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", *prop);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000246 new_bus->priv = priv;
247
Grant Likely1dd2d062009-04-25 12:53:17 +0000248 new_bus->irq = priv->mdio_irqs;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000249
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000250 prop = of_get_property(np, "mdc-pin", NULL);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000251 priv->mdc_pin = *prop;
252
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000253 prop = of_get_property(np, "mdio-pin", NULL);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000254 priv->mdio_pin = *prop;
255
Lennert Buytenhek18ee49d2008-10-01 15:41:33 +0000256 new_bus->parent = dev;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000257 dev_set_drvdata(dev, new_bus);
258
Grant Likely1dd2d062009-04-25 12:53:17 +0000259 err = of_mdiobus_register(new_bus, np);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000260
Olof Johansson2dd3c002007-11-04 15:44:15 -0600261 if (err != 0) {
Olof Johanssonb97d2792007-04-18 16:39:54 +1000262 printk(KERN_ERR "%s: Cannot register as MDIO bus, err %d\n",
263 new_bus->name, err);
Olof Johansson2dd3c002007-11-04 15:44:15 -0600264 goto out_free_irq;
Olof Johanssonb97d2792007-04-18 16:39:54 +1000265 }
266
267 return 0;
268
Olof Johansson2dd3c002007-11-04 15:44:15 -0600269out_free_irq:
Olof Johanssonb97d2792007-04-18 16:39:54 +1000270 kfree(new_bus);
Olof Johansson2dd3c002007-11-04 15:44:15 -0600271out_free_priv:
272 kfree(priv);
273out:
Olof Johanssonb97d2792007-04-18 16:39:54 +1000274 return err;
275}
276
277
278static int gpio_mdio_remove(struct of_device *dev)
279{
280 struct mii_bus *bus = dev_get_drvdata(&dev->dev);
281
282 mdiobus_unregister(bus);
283
284 dev_set_drvdata(&dev->dev, NULL);
285
286 kfree(bus->priv);
287 bus->priv = NULL;
Lennert Buytenhekec2a5652008-10-09 09:45:04 -0700288 mdiobus_free(bus);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000289
290 return 0;
291}
292
293static struct of_device_id gpio_mdio_match[] =
294{
295 {
296 .compatible = "gpio-mdio",
297 },
298 {},
299};
Olof Johansson56199652007-12-02 22:35:25 -0600300MODULE_DEVICE_TABLE(of, gpio_mdio_match);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000301
302static struct of_platform_driver gpio_mdio_driver =
303{
Olof Johanssonb97d2792007-04-18 16:39:54 +1000304 .probe = gpio_mdio_probe,
305 .remove = gpio_mdio_remove,
Grant Likely40182942010-04-13 16:13:02 -0700306 .driver = {
307 .name = "gpio-mdio-bitbang",
308 .owner = THIS_MODULE,
309 .of_match_table = gpio_mdio_match,
Stephen Rothwell84dd4672007-10-11 15:19:03 +1000310 },
Olof Johanssonb97d2792007-04-18 16:39:54 +1000311};
312
313int gpio_mdio_init(void)
314{
Olof Johansson2dd3c002007-11-04 15:44:15 -0600315 struct device_node *np;
316
Olof Johansson0d08a842007-11-04 20:57:45 -0600317 np = of_find_compatible_node(NULL, NULL, "1682m-gpio");
318 if (!np)
319 np = of_find_compatible_node(NULL, NULL,
320 "pasemi,pwrficient-gpio");
Olof Johansson2dd3c002007-11-04 15:44:15 -0600321 if (!np)
322 return -ENODEV;
323 gpio_regs = of_iomap(np, 0);
324 of_node_put(np);
325
326 if (!gpio_regs)
327 return -ENODEV;
328
Olof Johanssonb97d2792007-04-18 16:39:54 +1000329 return of_register_platform_driver(&gpio_mdio_driver);
330}
Olof Johansson2dd3c002007-11-04 15:44:15 -0600331module_init(gpio_mdio_init);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000332
333void gpio_mdio_exit(void)
334{
335 of_unregister_platform_driver(&gpio_mdio_driver);
Olof Johansson2dd3c002007-11-04 15:44:15 -0600336 if (gpio_regs)
337 iounmap(gpio_regs);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000338}
Olof Johansson2dd3c002007-11-04 15:44:15 -0600339module_exit(gpio_mdio_exit);
Olof Johansson56199652007-12-02 22:35:25 -0600340
341MODULE_LICENSE("GPL");
342MODULE_AUTHOR("Olof Johansson <olof@lixom.net>");
343MODULE_DESCRIPTION("Driver for MDIO over GPIO on PA Semi PWRficient-based boards");