Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 1 | /* |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 2 | * GPIO based MDIO bitbang driver. |
| 3 | * Supports OpenFirmware. |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2008 CSE Semaphore Belgium. |
| 6 | * by Laurent Pinchart <laurentp@cse-semaphore.com> |
| 7 | * |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 8 | * Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt> |
| 9 | * |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 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> |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 25 | #include <linux/interrupt.h> |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 26 | #include <linux/platform_device.h> |
| 27 | #include <linux/gpio.h> |
| 28 | #include <linux/mdio-gpio.h> |
| 29 | |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 30 | #include <linux/of_gpio.h> |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 31 | #include <linux/of_mdio.h> |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 32 | |
| 33 | struct mdio_gpio_info { |
| 34 | struct mdiobb_ctrl ctrl; |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 35 | int mdc, mdio, mdo; |
| 36 | int mdc_active_low, mdio_active_low, mdo_active_low; |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 37 | }; |
| 38 | |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 39 | static 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; |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 43 | enum of_gpio_flags flags; |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 44 | int ret; |
| 45 | |
| 46 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 47 | if (!pdata) |
| 48 | return NULL; |
| 49 | |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 50 | ret = of_get_gpio_flags(np, 0, &flags); |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 51 | if (ret < 0) |
| 52 | return NULL; |
| 53 | |
| 54 | pdata->mdc = ret; |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 55 | pdata->mdc_active_low = flags & OF_GPIO_ACTIVE_LOW; |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 56 | |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 57 | ret = of_get_gpio_flags(np, 1, &flags); |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 58 | if (ret < 0) |
| 59 | return NULL; |
| 60 | pdata->mdio = ret; |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 61 | pdata->mdio_active_low = flags & OF_GPIO_ACTIVE_LOW; |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 62 | |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 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 | |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 69 | return pdata; |
| 70 | } |
| 71 | |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 72 | static 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 | |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 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 | */ |
Vivien Didelot | 2d6c909 | 2015-04-22 13:06:54 -0400 | [diff] [blame] | 83 | gpio_set_value_cansleep(bitbang->mdo, |
| 84 | 1 ^ bitbang->mdo_active_low); |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 85 | return; |
| 86 | } |
| 87 | |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 88 | if (dir) |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 89 | gpio_direction_output(bitbang->mdio, |
| 90 | 1 ^ bitbang->mdio_active_low); |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 91 | else |
| 92 | gpio_direction_input(bitbang->mdio); |
| 93 | } |
| 94 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 95 | static int mdio_get(struct mdiobb_ctrl *ctrl) |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 96 | { |
| 97 | struct mdio_gpio_info *bitbang = |
| 98 | container_of(ctrl, struct mdio_gpio_info, ctrl); |
| 99 | |
Vivien Didelot | 2d6c909 | 2015-04-22 13:06:54 -0400 | [diff] [blame] | 100 | return gpio_get_value_cansleep(bitbang->mdio) ^ |
| 101 | bitbang->mdio_active_low; |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 102 | } |
| 103 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 104 | static void mdio_set(struct mdiobb_ctrl *ctrl, int what) |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 105 | { |
| 106 | struct mdio_gpio_info *bitbang = |
| 107 | container_of(ctrl, struct mdio_gpio_info, ctrl); |
| 108 | |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 109 | if (bitbang->mdo) |
Vivien Didelot | 2d6c909 | 2015-04-22 13:06:54 -0400 | [diff] [blame] | 110 | gpio_set_value_cansleep(bitbang->mdo, |
| 111 | what ^ bitbang->mdo_active_low); |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 112 | else |
Vivien Didelot | 2d6c909 | 2015-04-22 13:06:54 -0400 | [diff] [blame] | 113 | gpio_set_value_cansleep(bitbang->mdio, |
| 114 | what ^ bitbang->mdio_active_low); |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 117 | static void mdc_set(struct mdiobb_ctrl *ctrl, int what) |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 118 | { |
| 119 | struct mdio_gpio_info *bitbang = |
| 120 | container_of(ctrl, struct mdio_gpio_info, ctrl); |
| 121 | |
Vivien Didelot | 2d6c909 | 2015-04-22 13:06:54 -0400 | [diff] [blame] | 122 | gpio_set_value_cansleep(bitbang->mdc, what ^ bitbang->mdc_active_low); |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static struct mdiobb_ops mdio_gpio_ops = { |
| 126 | .owner = THIS_MODULE, |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 127 | .set_mdc = mdc_set, |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 128 | .set_mdio_dir = mdio_dir, |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 129 | .set_mdio_data = mdio_set, |
| 130 | .get_mdio_data = mdio_get, |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 131 | }; |
| 132 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 133 | static struct mii_bus *mdio_gpio_bus_init(struct device *dev, |
Greg Kroah-Hartman | 1dd06ae | 2012-12-06 14:30:56 +0000 | [diff] [blame] | 134 | struct mdio_gpio_platform_data *pdata, |
| 135 | int bus_id) |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 136 | { |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 137 | struct mii_bus *new_bus; |
| 138 | struct mdio_gpio_info *bitbang; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 139 | int i; |
| 140 | |
Guenter Roeck | 78cdb07 | 2014-04-15 19:16:40 -0700 | [diff] [blame] | 141 | bitbang = devm_kzalloc(dev, sizeof(*bitbang), GFP_KERNEL); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 142 | if (!bitbang) |
| 143 | goto out; |
| 144 | |
| 145 | bitbang->ctrl.ops = &mdio_gpio_ops; |
Srinivas Kandagatla | 6488270 | 2011-11-15 11:54:15 +0000 | [diff] [blame] | 146 | bitbang->ctrl.reset = pdata->reset; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 147 | bitbang->mdc = pdata->mdc; |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 148 | bitbang->mdc_active_low = pdata->mdc_active_low; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 149 | bitbang->mdio = pdata->mdio; |
Guenter Roeck | 1d25148 | 2014-04-15 19:16:41 -0700 | [diff] [blame] | 150 | bitbang->mdio_active_low = pdata->mdio_active_low; |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 151 | bitbang->mdo = pdata->mdo; |
| 152 | bitbang->mdo_active_low = pdata->mdo_active_low; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 153 | |
| 154 | new_bus = alloc_mdio_bitbang(&bitbang->ctrl); |
| 155 | if (!new_bus) |
Guenter Roeck | 78cdb07 | 2014-04-15 19:16:40 -0700 | [diff] [blame] | 156 | goto out; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 157 | |
| 158 | new_bus->name = "GPIO Bitbanged MDIO", |
| 159 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 160 | new_bus->phy_mask = pdata->phy_mask; |
Bert Vermeulen | ef7f3a5 | 2015-05-13 13:35:39 +0200 | [diff] [blame] | 161 | new_bus->phy_ignore_ta_mask = pdata->phy_ignore_ta_mask; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 162 | new_bus->irq = pdata->irqs; |
| 163 | new_bus->parent = dev; |
| 164 | |
| 165 | if (new_bus->phy_mask == ~0) |
| 166 | goto out_free_bus; |
| 167 | |
| 168 | for (i = 0; i < PHY_MAX_ADDR; i++) |
| 169 | if (!new_bus->irq[i]) |
| 170 | new_bus->irq[i] = PHY_POLL; |
| 171 | |
Bert Vermeulen | 7c0c826 | 2015-05-08 16:18:49 +0200 | [diff] [blame] | 172 | if (bus_id != -1) |
| 173 | snprintf(new_bus->id, MII_BUS_ID_SIZE, "gpio-%x", bus_id); |
| 174 | else |
| 175 | strncpy(new_bus->id, "gpio", MII_BUS_ID_SIZE); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 176 | |
Guenter Roeck | 78cdb07 | 2014-04-15 19:16:40 -0700 | [diff] [blame] | 177 | if (devm_gpio_request(dev, bitbang->mdc, "mdc")) |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 178 | goto out_free_bus; |
| 179 | |
Guenter Roeck | 78cdb07 | 2014-04-15 19:16:40 -0700 | [diff] [blame] | 180 | if (devm_gpio_request(dev, bitbang->mdio, "mdio")) |
| 181 | goto out_free_bus; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 182 | |
Guenter Roeck | f1d54c4 | 2014-04-15 19:16:42 -0700 | [diff] [blame] | 183 | if (bitbang->mdo) { |
| 184 | if (devm_gpio_request(dev, bitbang->mdo, "mdo")) |
| 185 | goto out_free_bus; |
| 186 | gpio_direction_output(bitbang->mdo, 1); |
| 187 | gpio_direction_input(bitbang->mdio); |
| 188 | } |
| 189 | |
Paulius Zaleckas | 664f93b | 2009-02-08 23:46:01 +0000 | [diff] [blame] | 190 | gpio_direction_output(bitbang->mdc, 0); |
| 191 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 192 | dev_set_drvdata(dev, new_bus); |
| 193 | |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 194 | return new_bus; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 195 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 196 | out_free_bus: |
| 197 | free_mdio_bitbang(new_bus); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 198 | out: |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 199 | return NULL; |
| 200 | } |
| 201 | |
Stephen Rothwell | f99b4a0 | 2009-11-16 22:47:33 +0000 | [diff] [blame] | 202 | static void mdio_gpio_bus_deinit(struct device *dev) |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 203 | { |
| 204 | struct mii_bus *bus = dev_get_drvdata(dev); |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 205 | |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 206 | free_mdio_bitbang(bus); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 209 | static void mdio_gpio_bus_destroy(struct device *dev) |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 210 | { |
| 211 | struct mii_bus *bus = dev_get_drvdata(dev); |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 212 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 213 | mdiobus_unregister(bus); |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 214 | mdio_gpio_bus_deinit(dev); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 215 | } |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 216 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 217 | static int mdio_gpio_probe(struct platform_device *pdev) |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 218 | { |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 219 | struct mdio_gpio_platform_data *pdata; |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 220 | struct mii_bus *new_bus; |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 221 | int ret, bus_id; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 222 | |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 223 | if (pdev->dev.of_node) { |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 224 | pdata = mdio_gpio_of_get_data(pdev); |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 225 | bus_id = of_alias_get_id(pdev->dev.of_node, "mdio-gpio"); |
Johan Hovold | 7f52da5 | 2014-05-08 10:09:21 +0200 | [diff] [blame] | 226 | if (bus_id < 0) { |
| 227 | dev_warn(&pdev->dev, "failed to get alias id\n"); |
| 228 | bus_id = 0; |
| 229 | } |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 230 | } else { |
Jingoo Han | 9bc7b1c | 2013-08-30 14:08:55 +0900 | [diff] [blame] | 231 | pdata = dev_get_platdata(&pdev->dev); |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 232 | bus_id = pdev->id; |
| 233 | } |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 234 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 235 | if (!pdata) |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 236 | return -ENODEV; |
| 237 | |
Srinivas Kandagatla | 3272dd9 | 2012-11-16 00:33:59 +0000 | [diff] [blame] | 238 | new_bus = mdio_gpio_bus_init(&pdev->dev, pdata, bus_id); |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 239 | if (!new_bus) |
| 240 | return -ENODEV; |
| 241 | |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 242 | if (pdev->dev.of_node) |
| 243 | ret = of_mdiobus_register(new_bus, pdev->dev.of_node); |
| 244 | else |
| 245 | ret = mdiobus_register(new_bus); |
| 246 | |
Mark Ware | dacac4d | 2009-07-23 10:56:48 -0700 | [diff] [blame] | 247 | if (ret) |
| 248 | mdio_gpio_bus_deinit(&pdev->dev); |
| 249 | |
| 250 | return ret; |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 253 | static int mdio_gpio_remove(struct platform_device *pdev) |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 254 | { |
| 255 | mdio_gpio_bus_destroy(&pdev->dev); |
| 256 | |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 257 | return 0; |
| 258 | } |
| 259 | |
Fabian Frederick | d8a7dad | 2015-03-17 19:40:23 +0100 | [diff] [blame] | 260 | static const struct of_device_id mdio_gpio_of_match[] = { |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 261 | { .compatible = "virtual,mdio-gpio", }, |
| 262 | { /* sentinel */ } |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 263 | }; |
Laurent Pinchart | a5edecc | 2008-05-26 11:53:21 +0200 | [diff] [blame] | 264 | |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 265 | static struct platform_driver mdio_gpio_driver = { |
| 266 | .probe = mdio_gpio_probe, |
Bill Pemberton | 633d159 | 2012-12-03 09:24:14 -0500 | [diff] [blame] | 267 | .remove = mdio_gpio_remove, |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 268 | .driver = { |
| 269 | .name = "mdio-gpio", |
Srinivas Kandagatla | e92bdf4b | 2012-08-24 01:59:17 +0000 | [diff] [blame] | 270 | .of_match_table = mdio_gpio_of_match, |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 271 | }, |
| 272 | }; |
| 273 | |
Sachin Kamat | f8e5fc8 | 2013-03-20 01:41:31 +0000 | [diff] [blame] | 274 | module_platform_driver(mdio_gpio_driver); |
Paulius Zaleckas | f004f3e | 2008-11-14 00:24:34 +0000 | [diff] [blame] | 275 | |
| 276 | MODULE_ALIAS("platform:mdio-gpio"); |
| 277 | MODULE_AUTHOR("Laurent Pinchart, Paulius Zaleckas"); |
| 278 | MODULE_LICENSE("GPL"); |
| 279 | MODULE_DESCRIPTION("Generic driver for MDIO bus emulation using GPIO"); |