blob: 4ec92659a100109736675d770956341bbfe7c591 [file] [log] [blame]
Cyril Chemparathyf20136e2010-09-15 10:11:21 -04001/*
2 * DaVinci MDIO Module driver
3 *
4 * Copyright (C) 2010 Texas Instruments.
5 *
6 * Shamelessly ripped out of davinci_emac.c, original copyrights follow:
7 *
8 * Copyright (C) 2009 Texas Instruments.
9 *
10 * ---------------------------------------------------------------------------
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * ---------------------------------------------------------------------------
26 */
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/platform_device.h>
30#include <linux/delay.h>
31#include <linux/sched.h>
32#include <linux/slab.h>
33#include <linux/phy.h>
34#include <linux/clk.h>
35#include <linux/err.h>
36#include <linux/io.h>
Mugunthan V N8e476d92012-07-17 08:09:49 +000037#include <linux/pm_runtime.h>
Cyril Chemparathyf20136e2010-09-15 10:11:21 -040038#include <linux/davinci_emac.h>
Mugunthan V Nec03e6a2012-08-06 05:05:57 +000039#include <linux/of.h>
40#include <linux/of_device.h>
Mugunthan V N5c0e3582013-06-06 23:45:15 +053041#include <linux/pinctrl/consumer.h>
Cyril Chemparathyf20136e2010-09-15 10:11:21 -040042
43/*
44 * This timeout definition is a worst-case ultra defensive measure against
45 * unexpected controller lock ups. Ideally, we should never ever hit this
46 * scenario in practice.
47 */
48#define MDIO_TIMEOUT 100 /* msecs */
49
50#define PHY_REG_MASK 0x1f
51#define PHY_ID_MASK 0x1f
52
53#define DEF_OUT_FREQ 2200000 /* 2.2 MHz */
54
55struct davinci_mdio_regs {
56 u32 version;
57 u32 control;
58#define CONTROL_IDLE BIT(31)
59#define CONTROL_ENABLE BIT(30)
Christian Riesch7c3a95a2012-02-22 22:07:58 +000060#define CONTROL_MAX_DIV (0xffff)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -040061
62 u32 alive;
63 u32 link;
64 u32 linkintraw;
65 u32 linkintmasked;
66 u32 __reserved_0[2];
67 u32 userintraw;
68 u32 userintmasked;
69 u32 userintmaskset;
70 u32 userintmaskclr;
71 u32 __reserved_1[20];
72
73 struct {
74 u32 access;
75#define USERACCESS_GO BIT(31)
76#define USERACCESS_WRITE BIT(30)
77#define USERACCESS_ACK BIT(29)
78#define USERACCESS_READ (0)
79#define USERACCESS_DATA (0xffff)
80
81 u32 physel;
82 } user[0];
83};
84
85struct mdio_platform_data default_pdata = {
86 .bus_freq = DEF_OUT_FREQ,
87};
88
89struct davinci_mdio_data {
90 struct mdio_platform_data pdata;
91 struct davinci_mdio_regs __iomem *regs;
92 spinlock_t lock;
93 struct clk *clk;
94 struct device *dev;
95 struct mii_bus *bus;
96 bool suspended;
97 unsigned long access_time; /* jiffies */
98};
99
100static void __davinci_mdio_reset(struct davinci_mdio_data *data)
101{
102 u32 mdio_in, div, mdio_out_khz, access_time;
103
104 mdio_in = clk_get_rate(data->clk);
105 div = (mdio_in / data->pdata.bus_freq) - 1;
106 if (div > CONTROL_MAX_DIV)
107 div = CONTROL_MAX_DIV;
108
109 /* set enable and clock divider */
110 __raw_writel(div | CONTROL_ENABLE, &data->regs->control);
111
112 /*
113 * One mdio transaction consists of:
114 * 32 bits of preamble
115 * 32 bits of transferred data
116 * 24 bits of bus yield (not needed unless shared?)
117 */
118 mdio_out_khz = mdio_in / (1000 * (div + 1));
119 access_time = (88 * 1000) / mdio_out_khz;
120
121 /*
122 * In the worst case, we could be kicking off a user-access immediately
123 * after the mdio bus scan state-machine triggered its own read. If
124 * so, our request could get deferred by one access cycle. We
125 * defensively allow for 4 access cycles.
126 */
127 data->access_time = usecs_to_jiffies(access_time * 4);
128 if (!data->access_time)
129 data->access_time = 1;
130}
131
132static int davinci_mdio_reset(struct mii_bus *bus)
133{
134 struct davinci_mdio_data *data = bus->priv;
135 u32 phy_mask, ver;
136
137 __davinci_mdio_reset(data);
138
139 /* wait for scan logic to settle */
140 msleep(PHY_MAX_ADDR * data->access_time);
141
142 /* dump hardware version info */
143 ver = __raw_readl(&data->regs->version);
144 dev_info(data->dev, "davinci mdio revision %d.%d\n",
145 (ver >> 8) & 0xff, ver & 0xff);
146
147 /* get phy mask from the alive register */
148 phy_mask = __raw_readl(&data->regs->alive);
149 if (phy_mask) {
150 /* restrict mdio bus to live phys only */
151 dev_info(data->dev, "detected phy mask %x\n", ~phy_mask);
152 phy_mask = ~phy_mask;
153 } else {
154 /* desperately scan all phys */
155 dev_warn(data->dev, "no live phy, scanning all\n");
156 phy_mask = 0;
157 }
158 data->bus->phy_mask = phy_mask;
159
160 return 0;
161}
162
163/* wait until hardware is ready for another user access */
164static inline int wait_for_user_access(struct davinci_mdio_data *data)
165{
166 struct davinci_mdio_regs __iomem *regs = data->regs;
167 unsigned long timeout = jiffies + msecs_to_jiffies(MDIO_TIMEOUT);
168 u32 reg;
169
170 while (time_after(timeout, jiffies)) {
171 reg = __raw_readl(&regs->user[0].access);
172 if ((reg & USERACCESS_GO) == 0)
173 return 0;
174
175 reg = __raw_readl(&regs->control);
176 if ((reg & CONTROL_IDLE) == 0)
177 continue;
178
179 /*
180 * An emac soft_reset may have clobbered the mdio controller's
181 * state machine. We need to reset and retry the current
182 * operation
183 */
184 dev_warn(data->dev, "resetting idled controller\n");
185 __davinci_mdio_reset(data);
186 return -EAGAIN;
187 }
Christian Riesch5b76d062012-04-16 04:35:25 +0000188
189 reg = __raw_readl(&regs->user[0].access);
190 if ((reg & USERACCESS_GO) == 0)
191 return 0;
192
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400193 dev_err(data->dev, "timed out waiting for user access\n");
194 return -ETIMEDOUT;
195}
196
197/* wait until hardware state machine is idle */
198static inline int wait_for_idle(struct davinci_mdio_data *data)
199{
200 struct davinci_mdio_regs __iomem *regs = data->regs;
201 unsigned long timeout = jiffies + msecs_to_jiffies(MDIO_TIMEOUT);
202
203 while (time_after(timeout, jiffies)) {
204 if (__raw_readl(&regs->control) & CONTROL_IDLE)
205 return 0;
206 }
207 dev_err(data->dev, "timed out waiting for idle\n");
208 return -ETIMEDOUT;
209}
210
211static int davinci_mdio_read(struct mii_bus *bus, int phy_id, int phy_reg)
212{
213 struct davinci_mdio_data *data = bus->priv;
214 u32 reg;
215 int ret;
216
217 if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
218 return -EINVAL;
219
220 spin_lock(&data->lock);
221
222 if (data->suspended) {
223 spin_unlock(&data->lock);
224 return -ENODEV;
225 }
226
227 reg = (USERACCESS_GO | USERACCESS_READ | (phy_reg << 21) |
228 (phy_id << 16));
229
230 while (1) {
231 ret = wait_for_user_access(data);
232 if (ret == -EAGAIN)
233 continue;
234 if (ret < 0)
235 break;
236
237 __raw_writel(reg, &data->regs->user[0].access);
238
239 ret = wait_for_user_access(data);
240 if (ret == -EAGAIN)
241 continue;
242 if (ret < 0)
243 break;
244
245 reg = __raw_readl(&data->regs->user[0].access);
246 ret = (reg & USERACCESS_ACK) ? (reg & USERACCESS_DATA) : -EIO;
247 break;
248 }
249
250 spin_unlock(&data->lock);
251
252 return ret;
253}
254
255static int davinci_mdio_write(struct mii_bus *bus, int phy_id,
256 int phy_reg, u16 phy_data)
257{
258 struct davinci_mdio_data *data = bus->priv;
259 u32 reg;
260 int ret;
261
262 if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
263 return -EINVAL;
264
265 spin_lock(&data->lock);
266
267 if (data->suspended) {
268 spin_unlock(&data->lock);
269 return -ENODEV;
270 }
271
272 reg = (USERACCESS_GO | USERACCESS_WRITE | (phy_reg << 21) |
273 (phy_id << 16) | (phy_data & USERACCESS_DATA));
274
275 while (1) {
276 ret = wait_for_user_access(data);
277 if (ret == -EAGAIN)
278 continue;
279 if (ret < 0)
280 break;
281
282 __raw_writel(reg, &data->regs->user[0].access);
283
284 ret = wait_for_user_access(data);
285 if (ret == -EAGAIN)
286 continue;
287 break;
288 }
289
290 spin_unlock(&data->lock);
291
292 return 0;
293}
294
Lad, Prabhakar277e2a82013-06-25 21:24:53 +0530295#if IS_ENABLED(CONFIG_OF)
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000296static int davinci_mdio_probe_dt(struct mdio_platform_data *data,
297 struct platform_device *pdev)
298{
299 struct device_node *node = pdev->dev.of_node;
300 u32 prop;
301
302 if (!node)
303 return -EINVAL;
304
305 if (of_property_read_u32(node, "bus_freq", &prop)) {
306 pr_err("Missing bus_freq property in the DT.\n");
307 return -EINVAL;
308 }
309 data->bus_freq = prop;
310
311 return 0;
312}
Lad, Prabhakar277e2a82013-06-25 21:24:53 +0530313#endif
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000314
Bill Pembertone38921d2012-12-03 09:24:03 -0500315static int davinci_mdio_probe(struct platform_device *pdev)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400316{
Jingoo Han894cdbb2013-08-30 14:06:02 +0900317 struct mdio_platform_data *pdata = dev_get_platdata(&pdev->dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400318 struct device *dev = &pdev->dev;
319 struct davinci_mdio_data *data;
320 struct resource *res;
321 struct phy_device *phy;
322 int ret, addr;
323
324 data = kzalloc(sizeof(*data), GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +0000325 if (!data)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400326 return -ENOMEM;
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400327
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400328 data->bus = mdiobus_alloc();
329 if (!data->bus) {
330 dev_err(dev, "failed to alloc mii bus\n");
331 ret = -ENOMEM;
332 goto bail_out;
333 }
334
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000335 if (dev->of_node) {
336 if (davinci_mdio_probe_dt(&data->pdata, pdev))
337 data->pdata = default_pdata;
338 snprintf(data->bus->id, MII_BUS_ID_SIZE, "%s", pdev->name);
339 } else {
340 data->pdata = pdata ? (*pdata) : default_pdata;
341 snprintf(data->bus->id, MII_BUS_ID_SIZE, "%s-%x",
342 pdev->name, pdev->id);
343 }
344
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400345 data->bus->name = dev_name(dev);
346 data->bus->read = davinci_mdio_read,
347 data->bus->write = davinci_mdio_write,
348 data->bus->reset = davinci_mdio_reset,
349 data->bus->parent = dev;
350 data->bus->priv = data;
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400351
Mugunthan V N5c0e3582013-06-06 23:45:15 +0530352 /* Select default pin state */
353 pinctrl_pm_select_default_state(&pdev->dev);
354
Mugunthan V N8e476d92012-07-17 08:09:49 +0000355 pm_runtime_enable(&pdev->dev);
356 pm_runtime_get_sync(&pdev->dev);
357 data->clk = clk_get(&pdev->dev, "fck");
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400358 if (IS_ERR(data->clk)) {
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400359 dev_err(dev, "failed to get device clock\n");
360 ret = PTR_ERR(data->clk);
Julia Lawallcb0a1782012-02-02 04:53:01 +0000361 data->clk = NULL;
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400362 goto bail_out;
363 }
364
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400365 dev_set_drvdata(dev, data);
366 data->dev = dev;
367 spin_lock_init(&data->lock);
368
369 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
370 if (!res) {
371 dev_err(dev, "could not find register map resource\n");
372 ret = -ENOENT;
373 goto bail_out;
374 }
375
376 res = devm_request_mem_region(dev, res->start, resource_size(res),
377 dev_name(dev));
378 if (!res) {
379 dev_err(dev, "could not allocate register map resource\n");
380 ret = -ENXIO;
381 goto bail_out;
382 }
383
384 data->regs = devm_ioremap_nocache(dev, res->start, resource_size(res));
385 if (!data->regs) {
386 dev_err(dev, "could not map mdio registers\n");
387 ret = -ENOMEM;
388 goto bail_out;
389 }
390
391 /* register the mii bus */
392 ret = mdiobus_register(data->bus);
393 if (ret)
394 goto bail_out;
395
396 /* scan and dump the bus */
397 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
398 phy = data->bus->phy_map[addr];
399 if (phy) {
400 dev_info(dev, "phy[%d]: device %s, driver %s\n",
401 phy->addr, dev_name(&phy->dev),
402 phy->drv ? phy->drv->name : "unknown");
403 }
404 }
405
406 return 0;
407
408bail_out:
409 if (data->bus)
410 mdiobus_free(data->bus);
411
Mugunthan V N8e476d92012-07-17 08:09:49 +0000412 if (data->clk)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400413 clk_put(data->clk);
Mugunthan V N8e476d92012-07-17 08:09:49 +0000414 pm_runtime_put_sync(&pdev->dev);
415 pm_runtime_disable(&pdev->dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400416
417 kfree(data);
418
419 return ret;
420}
421
Bill Pembertone38921d2012-12-03 09:24:03 -0500422static int davinci_mdio_remove(struct platform_device *pdev)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400423{
Libo Chen84ce22d2013-08-19 20:00:37 +0800424 struct davinci_mdio_data *data = platform_get_drvdata(pdev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400425
Bin Liub27393a2012-08-30 06:37:32 +0000426 if (data->bus) {
427 mdiobus_unregister(data->bus);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400428 mdiobus_free(data->bus);
Bin Liub27393a2012-08-30 06:37:32 +0000429 }
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400430
Mugunthan V N8e476d92012-07-17 08:09:49 +0000431 if (data->clk)
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400432 clk_put(data->clk);
Mugunthan V N8e476d92012-07-17 08:09:49 +0000433 pm_runtime_put_sync(&pdev->dev);
434 pm_runtime_disable(&pdev->dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400435
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400436 kfree(data);
437
438 return 0;
439}
440
441static int davinci_mdio_suspend(struct device *dev)
442{
443 struct davinci_mdio_data *data = dev_get_drvdata(dev);
444 u32 ctrl;
445
446 spin_lock(&data->lock);
447
448 /* shutdown the scan state machine */
449 ctrl = __raw_readl(&data->regs->control);
450 ctrl &= ~CONTROL_ENABLE;
451 __raw_writel(ctrl, &data->regs->control);
452 wait_for_idle(data);
453
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400454 data->suspended = true;
455 spin_unlock(&data->lock);
Sebastian Siewior2786aae2013-06-05 18:54:00 +0200456 pm_runtime_put_sync(data->dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400457
Mugunthan V N5c0e3582013-06-06 23:45:15 +0530458 /* Select sleep pin state */
459 pinctrl_pm_select_sleep_state(dev);
460
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400461 return 0;
462}
463
464static int davinci_mdio_resume(struct device *dev)
465{
466 struct davinci_mdio_data *data = dev_get_drvdata(dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400467
Mugunthan V N5c0e3582013-06-06 23:45:15 +0530468 /* Select default pin state */
469 pinctrl_pm_select_default_state(dev);
470
Vaibhav Hiremathd1df50f2012-11-14 09:07:54 +0000471 pm_runtime_get_sync(data->dev);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400472
Sebastian Siewior2786aae2013-06-05 18:54:00 +0200473 spin_lock(&data->lock);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400474 /* restart the scan state machine */
Mugunthan V Ncc60ab02013-06-11 15:32:05 +0530475 __davinci_mdio_reset(data);
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400476
477 data->suspended = false;
478 spin_unlock(&data->lock);
479
480 return 0;
481}
482
483static const struct dev_pm_ops davinci_mdio_pm_ops = {
Mugunthan V N5033ec32013-06-11 15:32:04 +0530484 .suspend_late = davinci_mdio_suspend,
485 .resume_early = davinci_mdio_resume,
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400486};
487
Lad, Prabhakar277e2a82013-06-25 21:24:53 +0530488#if IS_ENABLED(CONFIG_OF)
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000489static const struct of_device_id davinci_mdio_of_mtable[] = {
490 { .compatible = "ti,davinci_mdio", },
491 { /* sentinel */ },
492};
Sebastian Siewior4bc21d42013-04-24 08:48:22 +0000493MODULE_DEVICE_TABLE(of, davinci_mdio_of_mtable);
Lad, Prabhakar277e2a82013-06-25 21:24:53 +0530494#endif
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000495
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400496static struct platform_driver davinci_mdio_driver = {
497 .driver = {
498 .name = "davinci_mdio",
499 .owner = THIS_MODULE,
500 .pm = &davinci_mdio_pm_ops,
Mugunthan V Nec03e6a2012-08-06 05:05:57 +0000501 .of_match_table = of_match_ptr(davinci_mdio_of_mtable),
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400502 },
503 .probe = davinci_mdio_probe,
Bill Pembertone38921d2012-12-03 09:24:03 -0500504 .remove = davinci_mdio_remove,
Cyril Chemparathyf20136e2010-09-15 10:11:21 -0400505};
506
507static int __init davinci_mdio_init(void)
508{
509 return platform_driver_register(&davinci_mdio_driver);
510}
511device_initcall(davinci_mdio_init);
512
513static void __exit davinci_mdio_exit(void)
514{
515 platform_driver_unregister(&davinci_mdio_driver);
516}
517module_exit(davinci_mdio_exit);
518
519MODULE_LICENSE("GPL");
520MODULE_DESCRIPTION("DaVinci MDIO driver");