Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
[linux-2.6.git] / drivers / net / ethernet / ti / davinci_mdio.c
blob16ddfc348062c4b3cf3b14d0aac1b7e2a2f70e6f
1 /*
2 * DaVinci MDIO Module driver
4 * Copyright (C) 2010 Texas Instruments.
6 * Shamelessly ripped out of davinci_emac.c, original copyrights follow:
8 * Copyright (C) 2009 Texas Instruments.
10 * ---------------------------------------------------------------------------
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.
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.
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 * ---------------------------------------------------------------------------
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>
37 #include <linux/pm_runtime.h>
38 #include <linux/davinci_emac.h>
39 #include <linux/of.h>
40 #include <linux/of_device.h>
41 #include <linux/pinctrl/consumer.h>
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.
48 #define MDIO_TIMEOUT 100 /* msecs */
50 #define PHY_REG_MASK 0x1f
51 #define PHY_ID_MASK 0x1f
53 #define DEF_OUT_FREQ 2200000 /* 2.2 MHz */
55 struct davinci_mdio_regs {
56 u32 version;
57 u32 control;
58 #define CONTROL_IDLE BIT(31)
59 #define CONTROL_ENABLE BIT(30)
60 #define CONTROL_MAX_DIV (0xffff)
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];
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)
81 u32 physel;
82 } user[0];
85 struct mdio_platform_data default_pdata = {
86 .bus_freq = DEF_OUT_FREQ,
89 struct 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 */
100 static void __davinci_mdio_reset(struct davinci_mdio_data *data)
102 u32 mdio_in, div, mdio_out_khz, access_time;
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;
109 /* set enable and clock divider */
110 __raw_writel(div | CONTROL_ENABLE, &data->regs->control);
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?)
118 mdio_out_khz = mdio_in / (1000 * (div + 1));
119 access_time = (88 * 1000) / mdio_out_khz;
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.
127 data->access_time = usecs_to_jiffies(access_time * 4);
128 if (!data->access_time)
129 data->access_time = 1;
132 static int davinci_mdio_reset(struct mii_bus *bus)
134 struct davinci_mdio_data *data = bus->priv;
135 u32 phy_mask, ver;
137 __davinci_mdio_reset(data);
139 /* wait for scan logic to settle */
140 msleep(PHY_MAX_ADDR * data->access_time);
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);
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;
158 data->bus->phy_mask = phy_mask;
160 return 0;
163 /* wait until hardware is ready for another user access */
164 static inline int wait_for_user_access(struct davinci_mdio_data *data)
166 struct davinci_mdio_regs __iomem *regs = data->regs;
167 unsigned long timeout = jiffies + msecs_to_jiffies(MDIO_TIMEOUT);
168 u32 reg;
170 while (time_after(timeout, jiffies)) {
171 reg = __raw_readl(&regs->user[0].access);
172 if ((reg & USERACCESS_GO) == 0)
173 return 0;
175 reg = __raw_readl(&regs->control);
176 if ((reg & CONTROL_IDLE) == 0)
177 continue;
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
184 dev_warn(data->dev, "resetting idled controller\n");
185 __davinci_mdio_reset(data);
186 return -EAGAIN;
189 reg = __raw_readl(&regs->user[0].access);
190 if ((reg & USERACCESS_GO) == 0)
191 return 0;
193 dev_err(data->dev, "timed out waiting for user access\n");
194 return -ETIMEDOUT;
197 /* wait until hardware state machine is idle */
198 static inline int wait_for_idle(struct davinci_mdio_data *data)
200 struct davinci_mdio_regs __iomem *regs = data->regs;
201 unsigned long timeout = jiffies + msecs_to_jiffies(MDIO_TIMEOUT);
203 while (time_after(timeout, jiffies)) {
204 if (__raw_readl(&regs->control) & CONTROL_IDLE)
205 return 0;
207 dev_err(data->dev, "timed out waiting for idle\n");
208 return -ETIMEDOUT;
211 static int davinci_mdio_read(struct mii_bus *bus, int phy_id, int phy_reg)
213 struct davinci_mdio_data *data = bus->priv;
214 u32 reg;
215 int ret;
217 if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
218 return -EINVAL;
220 spin_lock(&data->lock);
222 if (data->suspended) {
223 spin_unlock(&data->lock);
224 return -ENODEV;
227 reg = (USERACCESS_GO | USERACCESS_READ | (phy_reg << 21) |
228 (phy_id << 16));
230 while (1) {
231 ret = wait_for_user_access(data);
232 if (ret == -EAGAIN)
233 continue;
234 if (ret < 0)
235 break;
237 __raw_writel(reg, &data->regs->user[0].access);
239 ret = wait_for_user_access(data);
240 if (ret == -EAGAIN)
241 continue;
242 if (ret < 0)
243 break;
245 reg = __raw_readl(&data->regs->user[0].access);
246 ret = (reg & USERACCESS_ACK) ? (reg & USERACCESS_DATA) : -EIO;
247 break;
250 spin_unlock(&data->lock);
252 return ret;
255 static int davinci_mdio_write(struct mii_bus *bus, int phy_id,
256 int phy_reg, u16 phy_data)
258 struct davinci_mdio_data *data = bus->priv;
259 u32 reg;
260 int ret;
262 if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
263 return -EINVAL;
265 spin_lock(&data->lock);
267 if (data->suspended) {
268 spin_unlock(&data->lock);
269 return -ENODEV;
272 reg = (USERACCESS_GO | USERACCESS_WRITE | (phy_reg << 21) |
273 (phy_id << 16) | (phy_data & USERACCESS_DATA));
275 while (1) {
276 ret = wait_for_user_access(data);
277 if (ret == -EAGAIN)
278 continue;
279 if (ret < 0)
280 break;
282 __raw_writel(reg, &data->regs->user[0].access);
284 ret = wait_for_user_access(data);
285 if (ret == -EAGAIN)
286 continue;
287 break;
290 spin_unlock(&data->lock);
292 return 0;
295 #if IS_ENABLED(CONFIG_OF)
296 static int davinci_mdio_probe_dt(struct mdio_platform_data *data,
297 struct platform_device *pdev)
299 struct device_node *node = pdev->dev.of_node;
300 u32 prop;
302 if (!node)
303 return -EINVAL;
305 if (of_property_read_u32(node, "bus_freq", &prop)) {
306 pr_err("Missing bus_freq property in the DT.\n");
307 return -EINVAL;
309 data->bus_freq = prop;
311 return 0;
313 #endif
315 static int davinci_mdio_probe(struct platform_device *pdev)
317 struct mdio_platform_data *pdata = pdev->dev.platform_data;
318 struct device *dev = &pdev->dev;
319 struct davinci_mdio_data *data;
320 struct resource *res;
321 struct phy_device *phy;
322 int ret, addr;
324 data = kzalloc(sizeof(*data), GFP_KERNEL);
325 if (!data)
326 return -ENOMEM;
328 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;
335 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);
345 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;
352 /* Select default pin state */
353 pinctrl_pm_select_default_state(&pdev->dev);
355 pm_runtime_enable(&pdev->dev);
356 pm_runtime_get_sync(&pdev->dev);
357 data->clk = clk_get(&pdev->dev, "fck");
358 if (IS_ERR(data->clk)) {
359 dev_err(dev, "failed to get device clock\n");
360 ret = PTR_ERR(data->clk);
361 data->clk = NULL;
362 goto bail_out;
365 dev_set_drvdata(dev, data);
366 data->dev = dev;
367 spin_lock_init(&data->lock);
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;
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;
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;
391 /* register the mii bus */
392 ret = mdiobus_register(data->bus);
393 if (ret)
394 goto bail_out;
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");
406 return 0;
408 bail_out:
409 if (data->bus)
410 mdiobus_free(data->bus);
412 if (data->clk)
413 clk_put(data->clk);
414 pm_runtime_put_sync(&pdev->dev);
415 pm_runtime_disable(&pdev->dev);
417 kfree(data);
419 return ret;
422 static int davinci_mdio_remove(struct platform_device *pdev)
424 struct device *dev = &pdev->dev;
425 struct davinci_mdio_data *data = dev_get_drvdata(dev);
427 if (data->bus) {
428 mdiobus_unregister(data->bus);
429 mdiobus_free(data->bus);
432 if (data->clk)
433 clk_put(data->clk);
434 pm_runtime_put_sync(&pdev->dev);
435 pm_runtime_disable(&pdev->dev);
437 dev_set_drvdata(dev, NULL);
439 kfree(data);
441 return 0;
444 static int davinci_mdio_suspend(struct device *dev)
446 struct davinci_mdio_data *data = dev_get_drvdata(dev);
447 u32 ctrl;
449 spin_lock(&data->lock);
451 /* shutdown the scan state machine */
452 ctrl = __raw_readl(&data->regs->control);
453 ctrl &= ~CONTROL_ENABLE;
454 __raw_writel(ctrl, &data->regs->control);
455 wait_for_idle(data);
457 data->suspended = true;
458 spin_unlock(&data->lock);
459 pm_runtime_put_sync(data->dev);
461 /* Select sleep pin state */
462 pinctrl_pm_select_sleep_state(dev);
464 return 0;
467 static int davinci_mdio_resume(struct device *dev)
469 struct davinci_mdio_data *data = dev_get_drvdata(dev);
471 /* Select default pin state */
472 pinctrl_pm_select_default_state(dev);
474 pm_runtime_get_sync(data->dev);
476 spin_lock(&data->lock);
477 /* restart the scan state machine */
478 __davinci_mdio_reset(data);
480 data->suspended = false;
481 spin_unlock(&data->lock);
483 return 0;
486 static const struct dev_pm_ops davinci_mdio_pm_ops = {
487 .suspend_late = davinci_mdio_suspend,
488 .resume_early = davinci_mdio_resume,
491 #if IS_ENABLED(CONFIG_OF)
492 static const struct of_device_id davinci_mdio_of_mtable[] = {
493 { .compatible = "ti,davinci_mdio", },
494 { /* sentinel */ },
496 MODULE_DEVICE_TABLE(of, davinci_mdio_of_mtable);
497 #endif
499 static struct platform_driver davinci_mdio_driver = {
500 .driver = {
501 .name = "davinci_mdio",
502 .owner = THIS_MODULE,
503 .pm = &davinci_mdio_pm_ops,
504 .of_match_table = of_match_ptr(davinci_mdio_of_mtable),
506 .probe = davinci_mdio_probe,
507 .remove = davinci_mdio_remove,
510 static int __init davinci_mdio_init(void)
512 return platform_driver_register(&davinci_mdio_driver);
514 device_initcall(davinci_mdio_init);
516 static void __exit davinci_mdio_exit(void)
518 platform_driver_unregister(&davinci_mdio_driver);
520 module_exit(davinci_mdio_exit);
522 MODULE_LICENSE("GPL");
523 MODULE_DESCRIPTION("DaVinci MDIO driver");