blob: 62a97c46fba0550a1aa3dd742236c91a63a05811 [file] [log] [blame]
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +01001/*
2 * Driver for the MDIO interface of Marvell network interfaces.
3 *
4 * Since the MDIO interface of Marvell network interfaces is shared
5 * between all network interfaces, having a single driver allows to
6 * handle concurrent accesses properly (you may have four Ethernet
Leigh Brownd4a0acb2013-10-29 09:33:34 +00007 * ports, but they in fact share the same SMI interface to access
8 * the MDIO bus). This driver is currently used by the mvneta and
9 * mv643xx_eth drivers.
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010010 *
11 * Copyright (C) 2012 Marvell
12 *
13 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 *
15 * This file is licensed under the terms of the GNU General Public
16 * License version 2. This program is licensed "as is" without any
17 * warranty of any kind, whether express or implied.
18 */
19
Marcin Wojtasc54da4c2021-06-21 19:30:26 +020020#include <linux/acpi.h>
Marcin Wojtasac53c262021-06-25 12:38:53 +020021#include <linux/acpi_mdio.h>
Antoine Ténart14ef8b32017-06-15 16:43:16 +020022#include <linux/clk.h>
23#include <linux/delay.h>
24#include <linux/interrupt.h>
25#include <linux/io.h>
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010026#include <linux/kernel.h>
27#include <linux/module.h>
Antoine Ténartc0ac08f2017-06-15 16:43:23 +020028#include <linux/of_device.h>
Florian Fainelli7111b712013-03-22 03:39:25 +000029#include <linux/of_mdio.h>
Antoine Ténart14ef8b32017-06-15 16:43:16 +020030#include <linux/phy.h>
31#include <linux/platform_device.h>
Florian Fainelli2ec98522013-03-22 03:39:27 +000032#include <linux/sched.h>
33#include <linux/wait.h>
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010034
Antoine Ténart2040ef22017-06-15 16:43:17 +020035#define MVMDIO_SMI_DATA_SHIFT 0
36#define MVMDIO_SMI_PHY_ADDR_SHIFT 16
37#define MVMDIO_SMI_PHY_REG_SHIFT 21
38#define MVMDIO_SMI_READ_OPERATION BIT(26)
39#define MVMDIO_SMI_WRITE_OPERATION 0
40#define MVMDIO_SMI_READ_VALID BIT(27)
41#define MVMDIO_SMI_BUSY BIT(28)
42#define MVMDIO_ERR_INT_CAUSE 0x007C
43#define MVMDIO_ERR_INT_SMI_DONE 0x00000010
44#define MVMDIO_ERR_INT_MASK 0x0080
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010045
Antoine Ténartc0ac08f2017-06-15 16:43:23 +020046#define MVMDIO_XSMI_MGNT_REG 0x0
47#define MVMDIO_XSMI_PHYADDR_SHIFT 16
48#define MVMDIO_XSMI_DEVADDR_SHIFT 21
49#define MVMDIO_XSMI_WRITE_OPERATION (0x5 << 26)
50#define MVMDIO_XSMI_READ_OPERATION (0x7 << 26)
51#define MVMDIO_XSMI_READ_VALID BIT(29)
52#define MVMDIO_XSMI_BUSY BIT(30)
53#define MVMDIO_XSMI_ADDR_REG 0x8
54
Leigh Brownb70cd1c2013-10-29 09:33:31 +000055/*
56 * SMI Timeout measurements:
57 * - Kirkwood 88F6281 (Globalscale Dreamplug): 45us to 95us (Interrupt)
58 * - Armada 370 (Globalscale Mirabox): 41us to 43us (Polled)
59 */
Antoine Ténart2040ef22017-06-15 16:43:17 +020060#define MVMDIO_SMI_TIMEOUT 1000 /* 1000us = 1ms */
61#define MVMDIO_SMI_POLL_INTERVAL_MIN 45
62#define MVMDIO_SMI_POLL_INTERVAL_MAX 55
Leigh Brownb70cd1c2013-10-29 09:33:31 +000063
Antoine Ténartc0ac08f2017-06-15 16:43:23 +020064#define MVMDIO_XSMI_POLL_INTERVAL_MIN 150
65#define MVMDIO_XSMI_POLL_INTERVAL_MAX 160
66
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010067struct orion_mdio_dev {
Florian Fainelli3712b712013-03-22 03:39:26 +000068 void __iomem *regs;
Josua Mayer4aabed62019-07-09 15:00:59 +020069 struct clk *clk[4];
Florian Fainelli2ec98522013-03-22 03:39:27 +000070 /*
71 * If we have access to the error interrupt pin (which is
72 * somewhat misnamed as it not only reflects internal errors
73 * but also reflects SMI completion), use that to wait for
74 * SMI access completion instead of polling the SMI busy bit.
75 */
76 int err_interrupt;
77 wait_queue_head_t smi_busy_wait;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010078};
79
Antoine Ténartc0ac08f2017-06-15 16:43:23 +020080enum orion_mdio_bus_type {
81 BUS_TYPE_SMI,
82 BUS_TYPE_XSMI
83};
84
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020085struct orion_mdio_ops {
86 int (*is_done)(struct orion_mdio_dev *);
Antoine Ténart19557962017-06-15 16:43:21 +020087 unsigned int poll_interval_min;
88 unsigned int poll_interval_max;
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020089};
Florian Fainelli2ec98522013-03-22 03:39:27 +000090
Thomas Petazzonib07812f2012-11-19 11:40:15 +010091/* Wait for the SMI unit to be ready for another operation
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010092 */
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020093static int orion_mdio_wait_ready(const struct orion_mdio_ops *ops,
94 struct mii_bus *bus)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010095{
96 struct orion_mdio_dev *dev = bus->priv;
Leigh Brownb70cd1c2013-10-29 09:33:31 +000097 unsigned long timeout = usecs_to_jiffies(MVMDIO_SMI_TIMEOUT);
98 unsigned long end = jiffies + timeout;
99 int timedout = 0;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100100
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000101 while (1) {
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200102 if (ops->is_done(dev))
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000103 return 0;
104 else if (timedout)
105 break;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100106
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000107 if (dev->err_interrupt <= 0) {
Antoine Ténart19557962017-06-15 16:43:21 +0200108 usleep_range(ops->poll_interval_min,
109 ops->poll_interval_max);
Florian Fainelli2ec98522013-03-22 03:39:27 +0000110
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000111 if (time_is_before_jiffies(end))
112 ++timedout;
113 } else {
Leigh Brown1a1f20b2013-12-19 13:09:48 +0000114 /* wait_event_timeout does not guarantee a delay of at
115 * least one whole jiffie, so timeout must be no less
116 * than two.
117 */
118 if (timeout < 2)
119 timeout = 2;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000120 wait_event_timeout(dev->smi_busy_wait,
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200121 ops->is_done(dev), timeout);
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000122
123 ++timedout;
124 }
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100125 }
126
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000127 dev_err(bus->parent, "Timeout: SMI busy for too long\n");
128 return -ETIMEDOUT;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100129}
130
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200131static int orion_mdio_smi_is_done(struct orion_mdio_dev *dev)
132{
133 return !(readl(dev->regs) & MVMDIO_SMI_BUSY);
134}
135
136static const struct orion_mdio_ops orion_mdio_smi_ops = {
137 .is_done = orion_mdio_smi_is_done,
Antoine Ténart19557962017-06-15 16:43:21 +0200138 .poll_interval_min = MVMDIO_SMI_POLL_INTERVAL_MIN,
139 .poll_interval_max = MVMDIO_SMI_POLL_INTERVAL_MAX,
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200140};
141
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200142static int orion_mdio_smi_read(struct mii_bus *bus, int mii_id,
143 int regnum)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100144{
145 struct orion_mdio_dev *dev = bus->priv;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100146 u32 val;
147 int ret;
148
Antoine Ténart440ea772017-06-15 16:43:22 +0200149 if (regnum & MII_ADDR_C45)
150 return -EOPNOTSUPP;
151
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200152 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown839f46b2013-10-29 09:33:32 +0000153 if (ret < 0)
Antoine Ténart0268b512017-06-15 16:43:24 +0200154 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100155
156 writel(((mii_id << MVMDIO_SMI_PHY_ADDR_SHIFT) |
157 (regnum << MVMDIO_SMI_PHY_REG_SHIFT) |
158 MVMDIO_SMI_READ_OPERATION),
Florian Fainelli3712b712013-03-22 03:39:26 +0000159 dev->regs);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100160
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200161 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown839f46b2013-10-29 09:33:32 +0000162 if (ret < 0)
Antoine Ténart0268b512017-06-15 16:43:24 +0200163 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100164
Leigh Brown839f46b2013-10-29 09:33:32 +0000165 val = readl(dev->regs);
166 if (!(val & MVMDIO_SMI_READ_VALID)) {
167 dev_err(bus->parent, "SMI bus read not valid\n");
Antoine Ténart0268b512017-06-15 16:43:24 +0200168 return -ENODEV;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100169 }
170
Antoine Ténart0268b512017-06-15 16:43:24 +0200171 return val & GENMASK(15, 0);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100172}
173
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200174static int orion_mdio_smi_write(struct mii_bus *bus, int mii_id,
175 int regnum, u16 value)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100176{
177 struct orion_mdio_dev *dev = bus->priv;
178 int ret;
179
Antoine Ténart440ea772017-06-15 16:43:22 +0200180 if (regnum & MII_ADDR_C45)
181 return -EOPNOTSUPP;
182
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200183 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown526edcf2013-10-29 09:33:33 +0000184 if (ret < 0)
Antoine Ténart0268b512017-06-15 16:43:24 +0200185 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100186
187 writel(((mii_id << MVMDIO_SMI_PHY_ADDR_SHIFT) |
188 (regnum << MVMDIO_SMI_PHY_REG_SHIFT) |
189 MVMDIO_SMI_WRITE_OPERATION |
190 (value << MVMDIO_SMI_DATA_SHIFT)),
Florian Fainelli3712b712013-03-22 03:39:26 +0000191 dev->regs);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100192
Antoine Ténart0268b512017-06-15 16:43:24 +0200193 return 0;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100194}
195
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200196static int orion_mdio_xsmi_is_done(struct orion_mdio_dev *dev)
197{
198 return !(readl(dev->regs + MVMDIO_XSMI_MGNT_REG) & MVMDIO_XSMI_BUSY);
199}
200
201static const struct orion_mdio_ops orion_mdio_xsmi_ops = {
202 .is_done = orion_mdio_xsmi_is_done,
203 .poll_interval_min = MVMDIO_XSMI_POLL_INTERVAL_MIN,
204 .poll_interval_max = MVMDIO_XSMI_POLL_INTERVAL_MAX,
205};
206
207static int orion_mdio_xsmi_read(struct mii_bus *bus, int mii_id,
208 int regnum)
209{
210 struct orion_mdio_dev *dev = bus->priv;
211 u16 dev_addr = (regnum >> 16) & GENMASK(4, 0);
212 int ret;
213
214 if (!(regnum & MII_ADDR_C45))
215 return -EOPNOTSUPP;
216
217 ret = orion_mdio_wait_ready(&orion_mdio_xsmi_ops, bus);
218 if (ret < 0)
219 return ret;
220
221 writel(regnum & GENMASK(15, 0), dev->regs + MVMDIO_XSMI_ADDR_REG);
222 writel((mii_id << MVMDIO_XSMI_PHYADDR_SHIFT) |
223 (dev_addr << MVMDIO_XSMI_DEVADDR_SHIFT) |
224 MVMDIO_XSMI_READ_OPERATION,
225 dev->regs + MVMDIO_XSMI_MGNT_REG);
226
227 ret = orion_mdio_wait_ready(&orion_mdio_xsmi_ops, bus);
228 if (ret < 0)
229 return ret;
230
231 if (!(readl(dev->regs + MVMDIO_XSMI_MGNT_REG) &
232 MVMDIO_XSMI_READ_VALID)) {
233 dev_err(bus->parent, "XSMI bus read not valid\n");
234 return -ENODEV;
235 }
236
237 return readl(dev->regs + MVMDIO_XSMI_MGNT_REG) & GENMASK(15, 0);
238}
239
240static int orion_mdio_xsmi_write(struct mii_bus *bus, int mii_id,
241 int regnum, u16 value)
242{
243 struct orion_mdio_dev *dev = bus->priv;
244 u16 dev_addr = (regnum >> 16) & GENMASK(4, 0);
245 int ret;
246
247 if (!(regnum & MII_ADDR_C45))
248 return -EOPNOTSUPP;
249
250 ret = orion_mdio_wait_ready(&orion_mdio_xsmi_ops, bus);
251 if (ret < 0)
252 return ret;
253
254 writel(regnum & GENMASK(15, 0), dev->regs + MVMDIO_XSMI_ADDR_REG);
255 writel((mii_id << MVMDIO_XSMI_PHYADDR_SHIFT) |
256 (dev_addr << MVMDIO_XSMI_DEVADDR_SHIFT) |
257 MVMDIO_XSMI_WRITE_OPERATION | value,
258 dev->regs + MVMDIO_XSMI_MGNT_REG);
259
260 return 0;
261}
262
Florian Fainelli2ec98522013-03-22 03:39:27 +0000263static irqreturn_t orion_mdio_err_irq(int irq, void *dev_id)
264{
265 struct orion_mdio_dev *dev = dev_id;
266
267 if (readl(dev->regs + MVMDIO_ERR_INT_CAUSE) &
268 MVMDIO_ERR_INT_SMI_DONE) {
269 writel(~MVMDIO_ERR_INT_SMI_DONE,
270 dev->regs + MVMDIO_ERR_INT_CAUSE);
271 wake_up(&dev->smi_busy_wait);
272 return IRQ_HANDLED;
273 }
274
275 return IRQ_NONE;
276}
277
Greg KH03ce7582012-12-21 13:42:15 +0000278static int orion_mdio_probe(struct platform_device *pdev)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100279{
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200280 enum orion_mdio_bus_type type;
Florian Fainelli7111b712013-03-22 03:39:25 +0000281 struct resource *r;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100282 struct mii_bus *bus;
283 struct orion_mdio_dev *dev;
Russell King96cb4342017-04-10 16:28:31 +0100284 int i, ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100285
Marcin Wojtasc54da4c2021-06-21 19:30:26 +0200286 type = (enum orion_mdio_bus_type)device_get_match_data(&pdev->dev);
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200287
Florian Fainelli7111b712013-03-22 03:39:25 +0000288 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
289 if (!r) {
290 dev_err(&pdev->dev, "No SMI register address given\n");
291 return -ENODEV;
292 }
293
Ezequiel Garcia56ecd2c2014-05-22 20:07:02 -0300294 bus = devm_mdiobus_alloc_size(&pdev->dev,
295 sizeof(struct orion_mdio_dev));
296 if (!bus)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100297 return -ENOMEM;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100298
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200299 switch (type) {
300 case BUS_TYPE_SMI:
301 bus->read = orion_mdio_smi_read;
302 bus->write = orion_mdio_smi_write;
303 break;
304 case BUS_TYPE_XSMI:
305 bus->read = orion_mdio_xsmi_read;
306 bus->write = orion_mdio_xsmi_write;
307 break;
308 }
309
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100310 bus->name = "orion_mdio_bus";
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100311 snprintf(bus->id, MII_BUS_ID_SIZE, "%s-mii",
312 dev_name(&pdev->dev));
313 bus->parent = &pdev->dev;
314
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100315 dev = bus->priv;
Florian Fainelli3712b712013-03-22 03:39:26 +0000316 dev->regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
317 if (!dev->regs) {
Florian Fainelli7111b712013-03-22 03:39:25 +0000318 dev_err(&pdev->dev, "Unable to remap SMI register\n");
Alexey Khoroshilovf814bfd2016-10-01 00:56:37 +0300319 return -ENODEV;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000320 }
321
322 init_waitqueue_head(&dev->smi_busy_wait);
323
Arnaud Patard (Rtp)d9344232019-08-02 10:32:40 +0200324 if (pdev->dev.of_node) {
325 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
326 dev->clk[i] = of_clk_get(pdev->dev.of_node, i);
327 if (PTR_ERR(dev->clk[i]) == -EPROBE_DEFER) {
328 ret = -EPROBE_DEFER;
329 goto out_clk;
330 }
331 if (IS_ERR(dev->clk[i]))
332 break;
333 clk_prepare_enable(dev->clk[i]);
334 }
335
336 if (!IS_ERR(of_clk_get(pdev->dev.of_node,
337 ARRAY_SIZE(dev->clk))))
338 dev_warn(&pdev->dev,
339 "unsupported number of clocks, limiting to the first "
340 __stringify(ARRAY_SIZE(dev->clk)) "\n");
341 } else {
342 dev->clk[0] = clk_get(&pdev->dev, NULL);
343 if (PTR_ERR(dev->clk[0]) == -EPROBE_DEFER) {
Josua Mayer433a06d2019-07-09 15:01:01 +0200344 ret = -EPROBE_DEFER;
345 goto out_clk;
346 }
Arnaud Patard (Rtp)d9344232019-08-02 10:32:40 +0200347 if (!IS_ERR(dev->clk[0]))
348 clk_prepare_enable(dev->clk[0]);
Russell King96cb4342017-04-10 16:28:31 +0100349 }
Sebastian Hesselbarth3d604da2013-04-07 01:09:47 +0000350
Josua Mayerea664b12019-07-09 15:01:00 +0200351
Chris Packhamfa2632f2020-03-16 20:49:07 +1300352 dev->err_interrupt = platform_get_irq_optional(pdev, 0);
Russell Kinga51e2c92017-04-10 16:28:20 +0100353 if (dev->err_interrupt > 0 &&
354 resource_size(r) < MVMDIO_ERR_INT_MASK + 4) {
355 dev_err(&pdev->dev,
356 "disabling interrupt, resource size is too small\n");
357 dev->err_interrupt = 0;
358 }
Ezequiel Garcia39076b02014-04-30 13:28:51 -0300359 if (dev->err_interrupt > 0) {
Florian Fainelli2ec98522013-03-22 03:39:27 +0000360 ret = devm_request_irq(&pdev->dev, dev->err_interrupt,
361 orion_mdio_err_irq,
362 IRQF_SHARED, pdev->name, dev);
363 if (ret)
364 goto out_mdio;
365
366 writel(MVMDIO_ERR_INT_SMI_DONE,
367 dev->regs + MVMDIO_ERR_INT_MASK);
Ezequiel Garcia39076b02014-04-30 13:28:51 -0300368
Chris Packham028fd762020-03-16 20:49:06 +1300369 } else if (dev->err_interrupt == -EPROBE_DEFER) {
370 ret = -EPROBE_DEFER;
Tobias Jordan589bf322017-12-06 15:23:23 +0100371 goto out_mdio;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100372 }
373
Marcin Wojtasac53c262021-06-25 12:38:53 +0200374 /* For the platforms not supporting DT/ACPI fall-back
375 * to mdiobus_register via of_mdiobus_register.
376 */
377 if (is_acpi_node(pdev->dev.fwnode))
378 ret = acpi_mdiobus_register(bus, pdev->dev.fwnode);
379 else
380 ret = of_mdiobus_register(bus, pdev->dev.of_node);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100381 if (ret < 0) {
382 dev_err(&pdev->dev, "Cannot register MDIO bus (%d)\n", ret);
Florian Fainelli2ec98522013-03-22 03:39:27 +0000383 goto out_mdio;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100384 }
385
386 platform_set_drvdata(pdev, bus);
387
388 return 0;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000389
390out_mdio:
Russell King37282482017-04-10 16:28:04 +0100391 if (dev->err_interrupt > 0)
392 writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
Russell King96cb4342017-04-10 16:28:31 +0100393
Josua Mayer433a06d2019-07-09 15:01:01 +0200394out_clk:
Russell King96cb4342017-04-10 16:28:31 +0100395 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
396 if (IS_ERR(dev->clk[i]))
397 break;
398 clk_disable_unprepare(dev->clk[i]);
399 clk_put(dev->clk[i]);
400 }
401
Florian Fainelli2ec98522013-03-22 03:39:27 +0000402 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100403}
404
Greg KH03ce7582012-12-21 13:42:15 +0000405static int orion_mdio_remove(struct platform_device *pdev)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100406{
407 struct mii_bus *bus = platform_get_drvdata(pdev);
Florian Fainelli2ec98522013-03-22 03:39:27 +0000408 struct orion_mdio_dev *dev = bus->priv;
Russell King96cb4342017-04-10 16:28:31 +0100409 int i;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000410
Russell King7093a972017-04-10 16:28:09 +0100411 if (dev->err_interrupt > 0)
412 writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100413 mdiobus_unregister(bus);
Russell King96cb4342017-04-10 16:28:31 +0100414
415 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
416 if (IS_ERR(dev->clk[i]))
417 break;
418 clk_disable_unprepare(dev->clk[i]);
419 clk_put(dev->clk[i]);
420 }
Sebastian Hesselbarth3d604da2013-04-07 01:09:47 +0000421
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100422 return 0;
423}
424
425static const struct of_device_id orion_mdio_match[] = {
Antoine Ténartc0ac08f2017-06-15 16:43:23 +0200426 { .compatible = "marvell,orion-mdio", .data = (void *)BUS_TYPE_SMI },
427 { .compatible = "marvell,xmdio", .data = (void *)BUS_TYPE_XSMI },
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100428 { }
429};
430MODULE_DEVICE_TABLE(of, orion_mdio_match);
431
Marcin Wojtasc54da4c2021-06-21 19:30:26 +0200432static const struct acpi_device_id orion_mdio_acpi_match[] = {
433 { "MRVL0100", BUS_TYPE_SMI },
434 { "MRVL0101", BUS_TYPE_XSMI },
435 { },
436};
437MODULE_DEVICE_TABLE(acpi, orion_mdio_acpi_match);
438
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100439static struct platform_driver orion_mdio_driver = {
440 .probe = orion_mdio_probe,
Greg KH03ce7582012-12-21 13:42:15 +0000441 .remove = orion_mdio_remove,
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100442 .driver = {
443 .name = "orion-mdio",
444 .of_match_table = orion_mdio_match,
Marcin Wojtasc54da4c2021-06-21 19:30:26 +0200445 .acpi_match_table = ACPI_PTR(orion_mdio_acpi_match),
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100446 },
447};
448
449module_platform_driver(orion_mdio_driver);
450
451MODULE_DESCRIPTION("Marvell MDIO interface driver");
452MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
453MODULE_LICENSE("GPL");
Simon Baatz404b8be2013-03-24 10:33:59 +0000454MODULE_ALIAS("platform:orion-mdio");