blob: 2a8efc77f5fefcce1b34f0d20660b1a79e8ac16a [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
Antoine Ténart14ef8b32017-06-15 16:43:16 +020020#include <linux/clk.h>
21#include <linux/delay.h>
22#include <linux/interrupt.h>
23#include <linux/io.h>
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010024#include <linux/kernel.h>
25#include <linux/module.h>
Florian Fainelli7111b712013-03-22 03:39:25 +000026#include <linux/of_mdio.h>
Antoine Ténart14ef8b32017-06-15 16:43:16 +020027#include <linux/phy.h>
28#include <linux/platform_device.h>
Florian Fainelli2ec98522013-03-22 03:39:27 +000029#include <linux/sched.h>
30#include <linux/wait.h>
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010031
Antoine Ténart2040ef22017-06-15 16:43:17 +020032#define MVMDIO_SMI_DATA_SHIFT 0
33#define MVMDIO_SMI_PHY_ADDR_SHIFT 16
34#define MVMDIO_SMI_PHY_REG_SHIFT 21
35#define MVMDIO_SMI_READ_OPERATION BIT(26)
36#define MVMDIO_SMI_WRITE_OPERATION 0
37#define MVMDIO_SMI_READ_VALID BIT(27)
38#define MVMDIO_SMI_BUSY BIT(28)
39#define MVMDIO_ERR_INT_CAUSE 0x007C
40#define MVMDIO_ERR_INT_SMI_DONE 0x00000010
41#define MVMDIO_ERR_INT_MASK 0x0080
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010042
Leigh Brownb70cd1c2013-10-29 09:33:31 +000043/*
44 * SMI Timeout measurements:
45 * - Kirkwood 88F6281 (Globalscale Dreamplug): 45us to 95us (Interrupt)
46 * - Armada 370 (Globalscale Mirabox): 41us to 43us (Polled)
47 */
Antoine Ténart2040ef22017-06-15 16:43:17 +020048#define MVMDIO_SMI_TIMEOUT 1000 /* 1000us = 1ms */
49#define MVMDIO_SMI_POLL_INTERVAL_MIN 45
50#define MVMDIO_SMI_POLL_INTERVAL_MAX 55
Leigh Brownb70cd1c2013-10-29 09:33:31 +000051
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010052struct orion_mdio_dev {
Florian Fainelli3712b712013-03-22 03:39:26 +000053 void __iomem *regs;
Russell King96cb4342017-04-10 16:28:31 +010054 struct clk *clk[3];
Florian Fainelli2ec98522013-03-22 03:39:27 +000055 /*
56 * If we have access to the error interrupt pin (which is
57 * somewhat misnamed as it not only reflects internal errors
58 * but also reflects SMI completion), use that to wait for
59 * SMI access completion instead of polling the SMI busy bit.
60 */
61 int err_interrupt;
62 wait_queue_head_t smi_busy_wait;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010063};
64
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020065struct orion_mdio_ops {
66 int (*is_done)(struct orion_mdio_dev *);
67};
Florian Fainelli2ec98522013-03-22 03:39:27 +000068
Thomas Petazzonib07812f2012-11-19 11:40:15 +010069/* Wait for the SMI unit to be ready for another operation
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010070 */
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020071static int orion_mdio_wait_ready(const struct orion_mdio_ops *ops,
72 struct mii_bus *bus)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010073{
74 struct orion_mdio_dev *dev = bus->priv;
Leigh Brownb70cd1c2013-10-29 09:33:31 +000075 unsigned long timeout = usecs_to_jiffies(MVMDIO_SMI_TIMEOUT);
76 unsigned long end = jiffies + timeout;
77 int timedout = 0;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010078
Leigh Brownb70cd1c2013-10-29 09:33:31 +000079 while (1) {
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020080 if (ops->is_done(dev))
Leigh Brownb70cd1c2013-10-29 09:33:31 +000081 return 0;
82 else if (timedout)
83 break;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +010084
Leigh Brownb70cd1c2013-10-29 09:33:31 +000085 if (dev->err_interrupt <= 0) {
86 usleep_range(MVMDIO_SMI_POLL_INTERVAL_MIN,
87 MVMDIO_SMI_POLL_INTERVAL_MAX);
Florian Fainelli2ec98522013-03-22 03:39:27 +000088
Leigh Brownb70cd1c2013-10-29 09:33:31 +000089 if (time_is_before_jiffies(end))
90 ++timedout;
91 } else {
Leigh Brown1a1f20b2013-12-19 13:09:48 +000092 /* wait_event_timeout does not guarantee a delay of at
93 * least one whole jiffie, so timeout must be no less
94 * than two.
95 */
96 if (timeout < 2)
97 timeout = 2;
Florian Fainelli2ec98522013-03-22 03:39:27 +000098 wait_event_timeout(dev->smi_busy_wait,
Antoine Ténartb0b7fa42017-06-15 16:43:20 +020099 ops->is_done(dev), timeout);
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000100
101 ++timedout;
102 }
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100103 }
104
Leigh Brownb70cd1c2013-10-29 09:33:31 +0000105 dev_err(bus->parent, "Timeout: SMI busy for too long\n");
106 return -ETIMEDOUT;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100107}
108
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200109static int orion_mdio_smi_is_done(struct orion_mdio_dev *dev)
110{
111 return !(readl(dev->regs) & MVMDIO_SMI_BUSY);
112}
113
114static const struct orion_mdio_ops orion_mdio_smi_ops = {
115 .is_done = orion_mdio_smi_is_done,
116};
117
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100118static int orion_mdio_read(struct mii_bus *bus, int mii_id,
119 int regnum)
120{
121 struct orion_mdio_dev *dev = bus->priv;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100122 u32 val;
123 int ret;
124
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200125 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown839f46b2013-10-29 09:33:32 +0000126 if (ret < 0)
127 goto out;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100128
129 writel(((mii_id << MVMDIO_SMI_PHY_ADDR_SHIFT) |
130 (regnum << MVMDIO_SMI_PHY_REG_SHIFT) |
131 MVMDIO_SMI_READ_OPERATION),
Florian Fainelli3712b712013-03-22 03:39:26 +0000132 dev->regs);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100133
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200134 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown839f46b2013-10-29 09:33:32 +0000135 if (ret < 0)
136 goto out;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100137
Leigh Brown839f46b2013-10-29 09:33:32 +0000138 val = readl(dev->regs);
139 if (!(val & MVMDIO_SMI_READ_VALID)) {
140 dev_err(bus->parent, "SMI bus read not valid\n");
141 ret = -ENODEV;
142 goto out;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100143 }
144
Antoine Ténartfd3ebd82017-06-15 16:43:18 +0200145 ret = val & GENMASK(15, 0);
Leigh Brown839f46b2013-10-29 09:33:32 +0000146out:
Leigh Brown839f46b2013-10-29 09:33:32 +0000147 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100148}
149
150static int orion_mdio_write(struct mii_bus *bus, int mii_id,
151 int regnum, u16 value)
152{
153 struct orion_mdio_dev *dev = bus->priv;
154 int ret;
155
Antoine Ténartb0b7fa42017-06-15 16:43:20 +0200156 ret = orion_mdio_wait_ready(&orion_mdio_smi_ops, bus);
Leigh Brown526edcf2013-10-29 09:33:33 +0000157 if (ret < 0)
158 goto out;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100159
160 writel(((mii_id << MVMDIO_SMI_PHY_ADDR_SHIFT) |
161 (regnum << MVMDIO_SMI_PHY_REG_SHIFT) |
162 MVMDIO_SMI_WRITE_OPERATION |
163 (value << MVMDIO_SMI_DATA_SHIFT)),
Florian Fainelli3712b712013-03-22 03:39:26 +0000164 dev->regs);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100165
Leigh Brown526edcf2013-10-29 09:33:33 +0000166out:
Leigh Brown526edcf2013-10-29 09:33:33 +0000167 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100168}
169
Florian Fainelli2ec98522013-03-22 03:39:27 +0000170static irqreturn_t orion_mdio_err_irq(int irq, void *dev_id)
171{
172 struct orion_mdio_dev *dev = dev_id;
173
174 if (readl(dev->regs + MVMDIO_ERR_INT_CAUSE) &
175 MVMDIO_ERR_INT_SMI_DONE) {
176 writel(~MVMDIO_ERR_INT_SMI_DONE,
177 dev->regs + MVMDIO_ERR_INT_CAUSE);
178 wake_up(&dev->smi_busy_wait);
179 return IRQ_HANDLED;
180 }
181
182 return IRQ_NONE;
183}
184
Greg KH03ce7582012-12-21 13:42:15 +0000185static int orion_mdio_probe(struct platform_device *pdev)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100186{
Florian Fainelli7111b712013-03-22 03:39:25 +0000187 struct resource *r;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100188 struct mii_bus *bus;
189 struct orion_mdio_dev *dev;
Russell King96cb4342017-04-10 16:28:31 +0100190 int i, ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100191
Florian Fainelli7111b712013-03-22 03:39:25 +0000192 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
193 if (!r) {
194 dev_err(&pdev->dev, "No SMI register address given\n");
195 return -ENODEV;
196 }
197
Ezequiel Garcia56ecd2c2014-05-22 20:07:02 -0300198 bus = devm_mdiobus_alloc_size(&pdev->dev,
199 sizeof(struct orion_mdio_dev));
200 if (!bus)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100201 return -ENOMEM;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100202
203 bus->name = "orion_mdio_bus";
204 bus->read = orion_mdio_read;
205 bus->write = orion_mdio_write;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100206 snprintf(bus->id, MII_BUS_ID_SIZE, "%s-mii",
207 dev_name(&pdev->dev));
208 bus->parent = &pdev->dev;
209
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100210 dev = bus->priv;
Florian Fainelli3712b712013-03-22 03:39:26 +0000211 dev->regs = devm_ioremap(&pdev->dev, r->start, resource_size(r));
212 if (!dev->regs) {
Florian Fainelli7111b712013-03-22 03:39:25 +0000213 dev_err(&pdev->dev, "Unable to remap SMI register\n");
Alexey Khoroshilovf814bfd2016-10-01 00:56:37 +0300214 return -ENODEV;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000215 }
216
217 init_waitqueue_head(&dev->smi_busy_wait);
218
Russell King96cb4342017-04-10 16:28:31 +0100219 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
220 dev->clk[i] = of_clk_get(pdev->dev.of_node, i);
221 if (IS_ERR(dev->clk[i]))
222 break;
223 clk_prepare_enable(dev->clk[i]);
224 }
Sebastian Hesselbarth3d604da2013-04-07 01:09:47 +0000225
Florian Fainelli2ec98522013-03-22 03:39:27 +0000226 dev->err_interrupt = platform_get_irq(pdev, 0);
Russell Kinga51e2c92017-04-10 16:28:20 +0100227 if (dev->err_interrupt > 0 &&
228 resource_size(r) < MVMDIO_ERR_INT_MASK + 4) {
229 dev_err(&pdev->dev,
230 "disabling interrupt, resource size is too small\n");
231 dev->err_interrupt = 0;
232 }
Ezequiel Garcia39076b02014-04-30 13:28:51 -0300233 if (dev->err_interrupt > 0) {
Florian Fainelli2ec98522013-03-22 03:39:27 +0000234 ret = devm_request_irq(&pdev->dev, dev->err_interrupt,
235 orion_mdio_err_irq,
236 IRQF_SHARED, pdev->name, dev);
237 if (ret)
238 goto out_mdio;
239
240 writel(MVMDIO_ERR_INT_SMI_DONE,
241 dev->regs + MVMDIO_ERR_INT_MASK);
Ezequiel Garcia39076b02014-04-30 13:28:51 -0300242
243 } else if (dev->err_interrupt == -EPROBE_DEFER) {
244 return -EPROBE_DEFER;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100245 }
246
Florian Fainelli7111b712013-03-22 03:39:25 +0000247 if (pdev->dev.of_node)
248 ret = of_mdiobus_register(bus, pdev->dev.of_node);
249 else
250 ret = mdiobus_register(bus);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100251 if (ret < 0) {
252 dev_err(&pdev->dev, "Cannot register MDIO bus (%d)\n", ret);
Florian Fainelli2ec98522013-03-22 03:39:27 +0000253 goto out_mdio;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100254 }
255
256 platform_set_drvdata(pdev, bus);
257
258 return 0;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000259
260out_mdio:
Russell King37282482017-04-10 16:28:04 +0100261 if (dev->err_interrupt > 0)
262 writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
Russell King96cb4342017-04-10 16:28:31 +0100263
264 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
265 if (IS_ERR(dev->clk[i]))
266 break;
267 clk_disable_unprepare(dev->clk[i]);
268 clk_put(dev->clk[i]);
269 }
270
Florian Fainelli2ec98522013-03-22 03:39:27 +0000271 return ret;
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100272}
273
Greg KH03ce7582012-12-21 13:42:15 +0000274static int orion_mdio_remove(struct platform_device *pdev)
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100275{
276 struct mii_bus *bus = platform_get_drvdata(pdev);
Florian Fainelli2ec98522013-03-22 03:39:27 +0000277 struct orion_mdio_dev *dev = bus->priv;
Russell King96cb4342017-04-10 16:28:31 +0100278 int i;
Florian Fainelli2ec98522013-03-22 03:39:27 +0000279
Russell King7093a972017-04-10 16:28:09 +0100280 if (dev->err_interrupt > 0)
281 writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100282 mdiobus_unregister(bus);
Russell King96cb4342017-04-10 16:28:31 +0100283
284 for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
285 if (IS_ERR(dev->clk[i]))
286 break;
287 clk_disable_unprepare(dev->clk[i]);
288 clk_put(dev->clk[i]);
289 }
Sebastian Hesselbarth3d604da2013-04-07 01:09:47 +0000290
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100291 return 0;
292}
293
294static const struct of_device_id orion_mdio_match[] = {
295 { .compatible = "marvell,orion-mdio" },
296 { }
297};
298MODULE_DEVICE_TABLE(of, orion_mdio_match);
299
300static struct platform_driver orion_mdio_driver = {
301 .probe = orion_mdio_probe,
Greg KH03ce7582012-12-21 13:42:15 +0000302 .remove = orion_mdio_remove,
Thomas Petazzonifc8f5ad2012-11-12 17:03:47 +0100303 .driver = {
304 .name = "orion-mdio",
305 .of_match_table = orion_mdio_match,
306 },
307};
308
309module_platform_driver(orion_mdio_driver);
310
311MODULE_DESCRIPTION("Marvell MDIO interface driver");
312MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
313MODULE_LICENSE("GPL");
Simon Baatz404b8be2013-03-24 10:33:59 +0000314MODULE_ALIAS("platform:orion-mdio");