blob: a47f9236d9663cf4f6c0ec652be979e05ccd45c1 [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
Laurent Pincharta5edecc2008-05-26 11:53:21 +020031#include <linux/of_gpio.h>
Mark Waredacac4d2009-07-23 10:56:48 -070032#include <linux/of_mdio.h>
Laurent Pincharta5edecc2008-05-26 11:53:21 +020033
34struct mdio_gpio_info {
35 struct mdiobb_ctrl ctrl;
36 int mdc, mdio;
37};
38
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +000039static void *mdio_gpio_of_get_data(struct platform_device *pdev)
40{
41 struct device_node *np = pdev->dev.of_node;
42 struct mdio_gpio_platform_data *pdata;
43 int ret;
44
45 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
46 if (!pdata)
47 return NULL;
48
49 ret = of_get_gpio(np, 0);
50 if (ret < 0)
51 return NULL;
52
53 pdata->mdc = ret;
54
55 ret = of_get_gpio(np, 1);
56 if (ret < 0)
57 return NULL;
58 pdata->mdio = ret;
59
60 return pdata;
61}
62
Laurent Pincharta5edecc2008-05-26 11:53:21 +020063static void mdio_dir(struct mdiobb_ctrl *ctrl, int dir)
64{
65 struct mdio_gpio_info *bitbang =
66 container_of(ctrl, struct mdio_gpio_info, ctrl);
67
68 if (dir)
69 gpio_direction_output(bitbang->mdio, 1);
70 else
71 gpio_direction_input(bitbang->mdio);
72}
73
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000074static int mdio_get(struct mdiobb_ctrl *ctrl)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020075{
76 struct mdio_gpio_info *bitbang =
77 container_of(ctrl, struct mdio_gpio_info, ctrl);
78
79 return gpio_get_value(bitbang->mdio);
80}
81
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000082static void mdio_set(struct mdiobb_ctrl *ctrl, int what)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020083{
84 struct mdio_gpio_info *bitbang =
85 container_of(ctrl, struct mdio_gpio_info, ctrl);
86
87 gpio_set_value(bitbang->mdio, what);
88}
89
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +000090static void mdc_set(struct mdiobb_ctrl *ctrl, int what)
Laurent Pincharta5edecc2008-05-26 11:53:21 +020091{
92 struct mdio_gpio_info *bitbang =
93 container_of(ctrl, struct mdio_gpio_info, ctrl);
94
95 gpio_set_value(bitbang->mdc, what);
96}
97
98static struct mdiobb_ops mdio_gpio_ops = {
99 .owner = THIS_MODULE,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000100 .set_mdc = mdc_set,
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200101 .set_mdio_dir = mdio_dir,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000102 .set_mdio_data = mdio_set,
103 .get_mdio_data = mdio_get,
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200104};
105
Bill Pemberton633d1592012-12-03 09:24:14 -0500106static struct mii_bus *mdio_gpio_bus_init(struct device *dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000107 struct mdio_gpio_platform_data *pdata,
108 int bus_id)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200109{
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000110 struct mii_bus *new_bus;
111 struct mdio_gpio_info *bitbang;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000112 int i;
113
114 bitbang = kzalloc(sizeof(*bitbang), GFP_KERNEL);
115 if (!bitbang)
116 goto out;
117
118 bitbang->ctrl.ops = &mdio_gpio_ops;
Srinivas Kandagatla64882702011-11-15 11:54:15 +0000119 bitbang->ctrl.reset = pdata->reset;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000120 bitbang->mdc = pdata->mdc;
121 bitbang->mdio = pdata->mdio;
122
123 new_bus = alloc_mdio_bitbang(&bitbang->ctrl);
124 if (!new_bus)
125 goto out_free_bitbang;
126
127 new_bus->name = "GPIO Bitbanged MDIO",
128
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000129 new_bus->phy_mask = pdata->phy_mask;
130 new_bus->irq = pdata->irqs;
131 new_bus->parent = dev;
132
133 if (new_bus->phy_mask == ~0)
134 goto out_free_bus;
135
136 for (i = 0; i < PHY_MAX_ADDR; i++)
137 if (!new_bus->irq[i])
138 new_bus->irq[i] = PHY_POLL;
139
Florian Fainellia77e9292012-01-09 23:59:26 +0000140 snprintf(new_bus->id, MII_BUS_ID_SIZE, "gpio-%x", bus_id);
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000141
142 if (gpio_request(bitbang->mdc, "mdc"))
143 goto out_free_bus;
144
145 if (gpio_request(bitbang->mdio, "mdio"))
146 goto out_free_mdc;
147
Paulius Zaleckas664f93b2009-02-08 23:46:01 +0000148 gpio_direction_output(bitbang->mdc, 0);
149
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000150 dev_set_drvdata(dev, new_bus);
151
Mark Waredacac4d2009-07-23 10:56:48 -0700152 return new_bus;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000153
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000154out_free_mdc:
155 gpio_free(bitbang->mdc);
156out_free_bus:
157 free_mdio_bitbang(new_bus);
158out_free_bitbang:
159 kfree(bitbang);
160out:
Mark Waredacac4d2009-07-23 10:56:48 -0700161 return NULL;
162}
163
Stephen Rothwellf99b4a02009-11-16 22:47:33 +0000164static void mdio_gpio_bus_deinit(struct device *dev)
Mark Waredacac4d2009-07-23 10:56:48 -0700165{
166 struct mii_bus *bus = dev_get_drvdata(dev);
167 struct mdio_gpio_info *bitbang = bus->priv;
168
169 dev_set_drvdata(dev, NULL);
170 gpio_free(bitbang->mdio);
171 gpio_free(bitbang->mdc);
172 free_mdio_bitbang(bus);
173 kfree(bitbang);
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000174}
175
Bill Pemberton633d1592012-12-03 09:24:14 -0500176static void mdio_gpio_bus_destroy(struct device *dev)
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000177{
178 struct mii_bus *bus = dev_get_drvdata(dev);
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200179
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000180 mdiobus_unregister(bus);
Mark Waredacac4d2009-07-23 10:56:48 -0700181 mdio_gpio_bus_deinit(dev);
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000182}
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200183
Bill Pemberton633d1592012-12-03 09:24:14 -0500184static int mdio_gpio_probe(struct platform_device *pdev)
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000185{
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000186 struct mdio_gpio_platform_data *pdata;
Mark Waredacac4d2009-07-23 10:56:48 -0700187 struct mii_bus *new_bus;
Srinivas Kandagatla3272dd92012-11-16 00:33:59 +0000188 int ret, bus_id;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000189
Srinivas Kandagatla3272dd92012-11-16 00:33:59 +0000190 if (pdev->dev.of_node) {
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000191 pdata = mdio_gpio_of_get_data(pdev);
Srinivas Kandagatla3272dd92012-11-16 00:33:59 +0000192 bus_id = of_alias_get_id(pdev->dev.of_node, "mdio-gpio");
193 } else {
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000194 pdata = pdev->dev.platform_data;
Srinivas Kandagatla3272dd92012-11-16 00:33:59 +0000195 bus_id = pdev->id;
196 }
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000197
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000198 if (!pdata)
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200199 return -ENODEV;
200
Srinivas Kandagatla3272dd92012-11-16 00:33:59 +0000201 new_bus = mdio_gpio_bus_init(&pdev->dev, pdata, bus_id);
Mark Waredacac4d2009-07-23 10:56:48 -0700202 if (!new_bus)
203 return -ENODEV;
204
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000205 if (pdev->dev.of_node)
206 ret = of_mdiobus_register(new_bus, pdev->dev.of_node);
207 else
208 ret = mdiobus_register(new_bus);
209
Mark Waredacac4d2009-07-23 10:56:48 -0700210 if (ret)
211 mdio_gpio_bus_deinit(&pdev->dev);
212
213 return ret;
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000214}
215
Bill Pemberton633d1592012-12-03 09:24:14 -0500216static int mdio_gpio_remove(struct platform_device *pdev)
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000217{
218 mdio_gpio_bus_destroy(&pdev->dev);
219
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200220 return 0;
221}
222
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000223static struct of_device_id mdio_gpio_of_match[] = {
224 { .compatible = "virtual,mdio-gpio", },
225 { /* sentinel */ }
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200226};
Laurent Pincharta5edecc2008-05-26 11:53:21 +0200227
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000228static struct platform_driver mdio_gpio_driver = {
229 .probe = mdio_gpio_probe,
Bill Pemberton633d1592012-12-03 09:24:14 -0500230 .remove = mdio_gpio_remove,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000231 .driver = {
232 .name = "mdio-gpio",
233 .owner = THIS_MODULE,
Srinivas Kandagatlae92bdf4b2012-08-24 01:59:17 +0000234 .of_match_table = mdio_gpio_of_match,
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000235 },
236};
237
Sachin Kamatf8e5fc82013-03-20 01:41:31 +0000238module_platform_driver(mdio_gpio_driver);
Paulius Zaleckasf004f3e2008-11-14 00:24:34 +0000239
240MODULE_ALIAS("platform:mdio-gpio");
241MODULE_AUTHOR("Laurent Pinchart, Paulius Zaleckas");
242MODULE_LICENSE("GPL");
243MODULE_DESCRIPTION("Generic driver for MDIO bus emulation using GPIO");