Merge branches 'acpi-resources', 'acpi-battery', 'acpi-doc' and 'acpi-pnp'
[linux-2.6-block.git] / drivers / net / phy / mdio-gpio.c
CommitLineData
a5edeccb 1/*
f004f3ea
PZ
2 * GPIO based MDIO bitbang driver.
3 * Supports OpenFirmware.
a5edeccb
LP
4 *
5 * Copyright (c) 2008 CSE Semaphore Belgium.
6 * by Laurent Pinchart <laurentp@cse-semaphore.com>
7 *
f004f3ea
PZ
8 * Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
9 *
a5edeccb
LP
10 * 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>
a5edeccb 25#include <linux/interrupt.h>
f004f3ea
PZ
26#include <linux/platform_device.h>
27#include <linux/gpio.h>
28#include <linux/mdio-gpio.h>
29
a5edeccb 30#include <linux/of_gpio.h>
dacac4da 31#include <linux/of_mdio.h>
a5edeccb
LP
32
33struct mdio_gpio_info {
34 struct mdiobb_ctrl ctrl;
f1d54c47
GR
35 int mdc, mdio, mdo;
36 int mdc_active_low, mdio_active_low, mdo_active_low;
a5edeccb
LP
37};
38
e92bdf4b
SK
39static 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;
1d251481 43 enum of_gpio_flags flags;
e92bdf4b
SK
44 int ret;
45
46 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
47 if (!pdata)
48 return NULL;
49
1d251481 50 ret = of_get_gpio_flags(np, 0, &flags);
e92bdf4b
SK
51 if (ret < 0)
52 return NULL;
53
54 pdata->mdc = ret;
1d251481 55 pdata->mdc_active_low = flags & OF_GPIO_ACTIVE_LOW;
e92bdf4b 56
1d251481 57 ret = of_get_gpio_flags(np, 1, &flags);
e92bdf4b
SK
58 if (ret < 0)
59 return NULL;
60 pdata->mdio = ret;
1d251481 61 pdata->mdio_active_low = flags & OF_GPIO_ACTIVE_LOW;
e92bdf4b 62
f1d54c47
GR
63 ret = of_get_gpio_flags(np, 2, &flags);
64 if (ret > 0) {
65 pdata->mdo = ret;
66 pdata->mdo_active_low = flags & OF_GPIO_ACTIVE_LOW;
67 }
68
e92bdf4b
SK
69 return pdata;
70}
71
a5edeccb
LP
72static void mdio_dir(struct mdiobb_ctrl *ctrl, int dir)
73{
74 struct mdio_gpio_info *bitbang =
75 container_of(ctrl, struct mdio_gpio_info, ctrl);
76
f1d54c47
GR
77 if (bitbang->mdo) {
78 /* Separate output pin. Always set its value to high
79 * when changing direction. If direction is input,
80 * assume the pin serves as pull-up. If direction is
81 * output, the default value is high.
82 */
2d6c9091
VD
83 gpio_set_value_cansleep(bitbang->mdo,
84 1 ^ bitbang->mdo_active_low);
f1d54c47
GR
85 return;
86 }
87
a5edeccb 88 if (dir)
1d251481
GR
89 gpio_direction_output(bitbang->mdio,
90 1 ^ bitbang->mdio_active_low);
a5edeccb
LP
91 else
92 gpio_direction_input(bitbang->mdio);
93}
94
f004f3ea 95static int mdio_get(struct mdiobb_ctrl *ctrl)
a5edeccb
LP
96{
97 struct mdio_gpio_info *bitbang =
98 container_of(ctrl, struct mdio_gpio_info, ctrl);
99
2d6c9091
VD
100 return gpio_get_value_cansleep(bitbang->mdio) ^
101 bitbang->mdio_active_low;
a5edeccb
LP
102}
103
f004f3ea 104static void mdio_set(struct mdiobb_ctrl *ctrl, int what)
a5edeccb
LP
105{
106 struct mdio_gpio_info *bitbang =
107 container_of(ctrl, struct mdio_gpio_info, ctrl);
108
f1d54c47 109 if (bitbang->mdo)
2d6c9091
VD
110 gpio_set_value_cansleep(bitbang->mdo,
111 what ^ bitbang->mdo_active_low);
f1d54c47 112 else
2d6c9091
VD
113 gpio_set_value_cansleep(bitbang->mdio,
114 what ^ bitbang->mdio_active_low);
a5edeccb
LP
115}
116
f004f3ea 117static void mdc_set(struct mdiobb_ctrl *ctrl, int what)
a5edeccb
LP
118{
119 struct mdio_gpio_info *bitbang =
120 container_of(ctrl, struct mdio_gpio_info, ctrl);
121
2d6c9091 122 gpio_set_value_cansleep(bitbang->mdc, what ^ bitbang->mdc_active_low);
a5edeccb
LP
123}
124
125static struct mdiobb_ops mdio_gpio_ops = {
126 .owner = THIS_MODULE,
f004f3ea 127 .set_mdc = mdc_set,
a5edeccb 128 .set_mdio_dir = mdio_dir,
f004f3ea
PZ
129 .set_mdio_data = mdio_set,
130 .get_mdio_data = mdio_get,
a5edeccb
LP
131};
132
633d1594 133static struct mii_bus *mdio_gpio_bus_init(struct device *dev,
1dd06ae8
GKH
134 struct mdio_gpio_platform_data *pdata,
135 int bus_id)
a5edeccb 136{
a5edeccb
LP
137 struct mii_bus *new_bus;
138 struct mdio_gpio_info *bitbang;
a5edeccb
LP
139 int i;
140
78cdb079 141 bitbang = devm_kzalloc(dev, sizeof(*bitbang), GFP_KERNEL);
a5edeccb
LP
142 if (!bitbang)
143 goto out;
144
145 bitbang->ctrl.ops = &mdio_gpio_ops;
64882709 146 bitbang->ctrl.reset = pdata->reset;
f004f3ea 147 bitbang->mdc = pdata->mdc;
1d251481 148 bitbang->mdc_active_low = pdata->mdc_active_low;
f004f3ea 149 bitbang->mdio = pdata->mdio;
1d251481 150 bitbang->mdio_active_low = pdata->mdio_active_low;
f1d54c47
GR
151 bitbang->mdo = pdata->mdo;
152 bitbang->mdo_active_low = pdata->mdo_active_low;
a5edeccb
LP
153
154 new_bus = alloc_mdio_bitbang(&bitbang->ctrl);
155 if (!new_bus)
78cdb079 156 goto out;
a5edeccb 157
f004f3ea 158 new_bus->name = "GPIO Bitbanged MDIO",
a5edeccb 159
f004f3ea
PZ
160 new_bus->phy_mask = pdata->phy_mask;
161 new_bus->irq = pdata->irqs;
162 new_bus->parent = dev;
163
164 if (new_bus->phy_mask == ~0)
a5edeccb
LP
165 goto out_free_bus;
166
167 for (i = 0; i < PHY_MAX_ADDR; i++)
f004f3ea
PZ
168 if (!new_bus->irq[i])
169 new_bus->irq[i] = PHY_POLL;
a5edeccb 170
a77e929a 171 snprintf(new_bus->id, MII_BUS_ID_SIZE, "gpio-%x", bus_id);
f004f3ea 172
78cdb079 173 if (devm_gpio_request(dev, bitbang->mdc, "mdc"))
f004f3ea 174 goto out_free_bus;
a5edeccb 175
78cdb079
GR
176 if (devm_gpio_request(dev, bitbang->mdio, "mdio"))
177 goto out_free_bus;
f004f3ea 178
f1d54c47
GR
179 if (bitbang->mdo) {
180 if (devm_gpio_request(dev, bitbang->mdo, "mdo"))
181 goto out_free_bus;
182 gpio_direction_output(bitbang->mdo, 1);
183 gpio_direction_input(bitbang->mdio);
184 }
185
664f93b4
PZ
186 gpio_direction_output(bitbang->mdc, 0);
187
f004f3ea 188 dev_set_drvdata(dev, new_bus);
a5edeccb 189
dacac4da 190 return new_bus;
a5edeccb 191
a5edeccb 192out_free_bus:
a5edeccb
LP
193 free_mdio_bitbang(new_bus);
194out:
dacac4da 195 return NULL;
a5edeccb
LP
196}
197
f99b4a02 198static void mdio_gpio_bus_deinit(struct device *dev)
a5edeccb 199{
f004f3ea 200 struct mii_bus *bus = dev_get_drvdata(dev);
a5edeccb 201
dacac4da 202 free_mdio_bitbang(bus);
f004f3ea
PZ
203}
204
633d1594 205static void mdio_gpio_bus_destroy(struct device *dev)
dacac4da
MW
206{
207 struct mii_bus *bus = dev_get_drvdata(dev);
208
209 mdiobus_unregister(bus);
210 mdio_gpio_bus_deinit(dev);
211}
212
633d1594 213static int mdio_gpio_probe(struct platform_device *pdev)
f004f3ea 214{
e92bdf4b 215 struct mdio_gpio_platform_data *pdata;
dacac4da 216 struct mii_bus *new_bus;
3272dd9b 217 int ret, bus_id;
f004f3ea 218
3272dd9b 219 if (pdev->dev.of_node) {
e92bdf4b 220 pdata = mdio_gpio_of_get_data(pdev);
3272dd9b 221 bus_id = of_alias_get_id(pdev->dev.of_node, "mdio-gpio");
7f52da56
JH
222 if (bus_id < 0) {
223 dev_warn(&pdev->dev, "failed to get alias id\n");
224 bus_id = 0;
225 }
3272dd9b 226 } else {
9bc7b1cd 227 pdata = dev_get_platdata(&pdev->dev);
3272dd9b
SK
228 bus_id = pdev->id;
229 }
e92bdf4b 230
f004f3ea
PZ
231 if (!pdata)
232 return -ENODEV;
233
3272dd9b 234 new_bus = mdio_gpio_bus_init(&pdev->dev, pdata, bus_id);
dacac4da
MW
235 if (!new_bus)
236 return -ENODEV;
237
e92bdf4b
SK
238 if (pdev->dev.of_node)
239 ret = of_mdiobus_register(new_bus, pdev->dev.of_node);
240 else
241 ret = mdiobus_register(new_bus);
242
dacac4da
MW
243 if (ret)
244 mdio_gpio_bus_deinit(&pdev->dev);
245
246 return ret;
f004f3ea
PZ
247}
248
633d1594 249static int mdio_gpio_remove(struct platform_device *pdev)
f004f3ea
PZ
250{
251 mdio_gpio_bus_destroy(&pdev->dev);
252
253 return 0;
254}
255
d8a7dadb 256static const struct of_device_id mdio_gpio_of_match[] = {
e92bdf4b
SK
257 { .compatible = "virtual,mdio-gpio", },
258 { /* sentinel */ }
a5edeccb
LP
259};
260
f004f3ea
PZ
261static struct platform_driver mdio_gpio_driver = {
262 .probe = mdio_gpio_probe,
633d1594 263 .remove = mdio_gpio_remove,
f004f3ea
PZ
264 .driver = {
265 .name = "mdio-gpio",
e92bdf4b 266 .of_match_table = mdio_gpio_of_match,
f004f3ea
PZ
267 },
268};
269
f8e5fc8c 270module_platform_driver(mdio_gpio_driver);
a5edeccb 271
f004f3ea
PZ
272MODULE_ALIAS("platform:mdio-gpio");
273MODULE_AUTHOR("Laurent Pinchart, Paulius Zaleckas");
274MODULE_LICENSE("GPL");
275MODULE_DESCRIPTION("Generic driver for MDIO bus emulation using GPIO");