blob: 3f460c564927e202bb2c4abf76a34e82a0bc918a [file] [log] [blame]
Laurent Pincharta5edecc2008-05-26 11:53:21 +02001/*
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +00002 * GPIO based MDIO bitbang driver.
3 * Supports OpenFirmware.
Laurent Pincharta5edecc2008-05-26 11:53:21 +02004 *
5 * Copyright (c) 2008 CSE Semaphore Belgium.
6 * by Laurent Pinchart <laurentp@cse-semaphore.com>
7 *
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +00008 * Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
9 *
Laurent Pincharta5edecc2008-05-26 11:53:21 +020010 * Based on earlier work by
11 *
12 * Copyright (c) 2003 Intracom S.A.
13 * by Pantelis Antoniou <panto@intracom.gr>
14 *
15 * 2005 (c) MontaVista Software, Inc.
16 * Vitaly Bordug <vbordug@ru.mvista.com>
17 *
18 * This file is licensed under the terms of the GNU General Public License
19 * version 2. This program is licensed "as is" without any warranty of any
20 * kind, whether express or implied.
21 */
22
23#include <linux/module.h>
24#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/interrupt.h>
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000027#include <linux/platform_device.h>
28#include <linux/gpio.h>
29#include <linux/mdio-gpio.h>
30
31#ifdef CONFIG_OF_GPIO
Laurent Pincharta5edecc2008-05-26 11:53:21 +020032#include <linux/of_gpio.h>
33#include <linux/of_platform.h>
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000034#endif
Laurent Pincharta5edecc2008-05-26 11:53:21 +020035
36struct mdio_gpio_info {
37 struct mdiobb_ctrl ctrl;
38 int mdc, mdio;
39};
40
41static void mdio_dir(struct mdiobb_ctrl *ctrl, int dir)
42{
43 struct mdio_gpio_info *bitbang =
44 container_of(ctrl, struct mdio_gpio_info, ctrl);
45
46 if (dir)
47 gpio_direction_output(bitbang->mdio, 1);
48 else
49 gpio_direction_input(bitbang->mdio);
50}
51
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000052static int mdio_get(struct mdiobb_ctrl *ctrl)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020053{
54 struct mdio_gpio_info *bitbang =
55 container_of(ctrl, struct mdio_gpio_info, ctrl);
56
57 return gpio_get_value(bitbang->mdio);
58}
59
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000060static void mdio_set(struct mdiobb_ctrl *ctrl, int what)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020061{
62 struct mdio_gpio_info *bitbang =
63 container_of(ctrl, struct mdio_gpio_info, ctrl);
64
65 gpio_set_value(bitbang->mdio, what);
66}
67
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000068static void mdc_set(struct mdiobb_ctrl *ctrl, int what)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020069{
70 struct mdio_gpio_info *bitbang =
71 container_of(ctrl, struct mdio_gpio_info, ctrl);
72
73 gpio_set_value(bitbang->mdc, what);
74}
75
76static struct mdiobb_ops mdio_gpio_ops = {
77 .owner = THIS_MODULE,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000078 .set_mdc = mdc_set,
Laurent Pincharta5edecc2008-05-26 11:53:21 +020079 .set_mdio_dir = mdio_dir,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000080 .set_mdio_data = mdio_set,
81 .get_mdio_data = mdio_get,
Laurent Pincharta5edecc2008-05-26 11:53:21 +020082};
83
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000084static int __devinit mdio_gpio_bus_init(struct device *dev,
85 struct mdio_gpio_platform_data *pdata,
86 int bus_id)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020087{
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000088 struct mii_bus *new_bus;
89 struct mdio_gpio_info *bitbang;
90 int ret = -ENOMEM;
91 int i;
92
93 bitbang = kzalloc(sizeof(*bitbang), GFP_KERNEL);
94 if (!bitbang)
95 goto out;
96
97 bitbang->ctrl.ops = &mdio_gpio_ops;
98 bitbang->mdc = pdata->mdc;
99 bitbang->mdio = pdata->mdio;
100
101 new_bus = alloc_mdio_bitbang(&bitbang->ctrl);
102 if (!new_bus)
103 goto out_free_bitbang;
104
105 new_bus->name = "GPIO Bitbanged MDIO",
106
107 ret = -ENODEV;
108
109 new_bus->phy_mask = pdata->phy_mask;
110 new_bus->irq = pdata->irqs;
111 new_bus->parent = dev;
112
113 if (new_bus->phy_mask == ~0)
114 goto out_free_bus;
115
116 for (i = 0; i < PHY_MAX_ADDR; i++)
117 if (!new_bus->irq[i])
118 new_bus->irq[i] = PHY_POLL;
119
120 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%x", bus_id);
121
122 if (gpio_request(bitbang->mdc, "mdc"))
123 goto out_free_bus;
124
125 if (gpio_request(bitbang->mdio, "mdio"))
126 goto out_free_mdc;
127
128 dev_set_drvdata(dev, new_bus);
129
130 ret = mdiobus_register(new_bus);
131 if (ret)
132 goto out_free_all;
133
134 return 0;
135
136out_free_all:
137 dev_set_drvdata(dev, NULL);
138 gpio_free(bitbang->mdio);
139out_free_mdc:
140 gpio_free(bitbang->mdc);
141out_free_bus:
142 free_mdio_bitbang(new_bus);
143out_free_bitbang:
144 kfree(bitbang);
145out:
146 return ret;
147}
148
149static void __devexit mdio_gpio_bus_destroy(struct device *dev)
150{
151 struct mii_bus *bus = dev_get_drvdata(dev);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200152 struct mdio_gpio_info *bitbang = bus->priv;
153
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000154 mdiobus_unregister(bus);
155 free_mdio_bitbang(bus);
156 dev_set_drvdata(dev, NULL);
157 gpio_free(bitbang->mdc);
158 gpio_free(bitbang->mdio);
159 kfree(bitbang);
160}
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200161
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000162static int __devinit mdio_gpio_probe(struct platform_device *pdev)
163{
164 struct mdio_gpio_platform_data *pdata = pdev->dev.platform_data;
165
166 if (!pdata)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200167 return -ENODEV;
168
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000169 return mdio_gpio_bus_init(&pdev->dev, pdata, pdev->id);
170}
171
172static int __devexit mdio_gpio_remove(struct platform_device *pdev)
173{
174 mdio_gpio_bus_destroy(&pdev->dev);
175
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200176 return 0;
177}
178
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000179#ifdef CONFIG_OF_GPIO
180static void __devinit add_phy(struct mdio_gpio_platform_data *pdata,
181 struct device_node *np)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200182{
183 const u32 *data;
184 int len, id, irq;
185
186 data = of_get_property(np, "reg", &len);
187 if (!data || len != 4)
188 return;
189
190 id = *data;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000191 pdata->phy_mask &= ~(1 << id);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200192
193 irq = of_irq_to_resource(np, 0, NULL);
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000194 if (irq)
195 pdata->irqs[id] = irq;
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200196}
197
198static int __devinit mdio_ofgpio_probe(struct of_device *ofdev,
199 const struct of_device_id *match)
200{
201 struct device_node *np = NULL;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000202 struct mdio_gpio_platform_data *pdata;
Roel Kluin57a57492009-01-19 17:14:21 -0800203 int ret;
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200204
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000205 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
206 if (!pdata)
207 return -ENOMEM;
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200208
Roel Kluin57a57492009-01-19 17:14:21 -0800209 ret = of_get_gpio(ofdev->node, 0);
210 if (ret < 0)
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000211 goto out_free;
Roel Kluin57a57492009-01-19 17:14:21 -0800212 pdata->mdc = ret;
213
214 ret = of_get_gpio(ofdev->node, 1);
215 if (ret < 0)
216 goto out_free;
217 pdata->mdio = ret;
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200218
219 while ((np = of_get_next_child(ofdev->node, np)))
220 if (!strcmp(np->type, "ethernet-phy"))
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000221 add_phy(pdata, np);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200222
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000223 return mdio_gpio_bus_init(&ofdev->dev, pdata, pdata->mdc);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200224
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000225out_free:
226 kfree(pdata);
227 return -ENODEV;
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200228}
229
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000230static int __devexit mdio_ofgpio_remove(struct of_device *ofdev)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200231{
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000232 mdio_gpio_bus_destroy(&ofdev->dev);
233 kfree(ofdev->dev.platform_data);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200234
235 return 0;
236}
237
238static struct of_device_id mdio_ofgpio_match[] = {
239 {
240 .compatible = "virtual,mdio-gpio",
241 },
242 {},
243};
244
245static struct of_platform_driver mdio_ofgpio_driver = {
246 .name = "mdio-gpio",
247 .match_table = mdio_ofgpio_match,
248 .probe = mdio_ofgpio_probe,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000249 .remove = __devexit_p(mdio_ofgpio_remove),
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200250};
251
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000252static inline int __init mdio_ofgpio_init(void)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200253{
254 return of_register_platform_driver(&mdio_ofgpio_driver);
255}
256
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000257static inline void __exit mdio_ofgpio_exit(void)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200258{
259 of_unregister_platform_driver(&mdio_ofgpio_driver);
260}
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000261#else
262static inline int __init mdio_ofgpio_init(void) { return 0; }
263static inline void __exit mdio_ofgpio_exit(void) { }
264#endif /* CONFIG_OF_GPIO */
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200265
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000266static struct platform_driver mdio_gpio_driver = {
267 .probe = mdio_gpio_probe,
268 .remove = __devexit_p(mdio_gpio_remove),
269 .driver = {
270 .name = "mdio-gpio",
271 .owner = THIS_MODULE,
272 },
273};
274
275static int __init mdio_gpio_init(void)
276{
277 int ret;
278
279 ret = mdio_ofgpio_init();
280 if (ret)
281 return ret;
282
283 ret = platform_driver_register(&mdio_gpio_driver);
284 if (ret)
285 mdio_ofgpio_exit();
286
287 return ret;
288}
289module_init(mdio_gpio_init);
290
291static void __exit mdio_gpio_exit(void)
292{
293 platform_driver_unregister(&mdio_gpio_driver);
294 mdio_ofgpio_exit();
295}
296module_exit(mdio_gpio_exit);
297
298MODULE_ALIAS("platform:mdio-gpio");
299MODULE_AUTHOR("Laurent Pinchart, Paulius Zaleckas");
300MODULE_LICENSE("GPL");
301MODULE_DESCRIPTION("Generic driver for MDIO bus emulation using GPIO");