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>
37 #include <linux/pm_runtime.h>
38 #include <linux/davinci_emac.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
{
58 #define CONTROL_IDLE BIT(31)
59 #define CONTROL_ENABLE BIT(30)
60 #define CONTROL_MAX_DIV (0xffff)
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)
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
;
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
;
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
);
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
;
154 /* desperately scan all phys */
155 dev_warn(data
->dev
, "no live phy, scanning all\n");
158 data
->bus
->phy_mask
= phy_mask
;
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
);
170 while (time_after(timeout
, jiffies
)) {
171 reg
= __raw_readl(®s
->user
[0].access
);
172 if ((reg
& USERACCESS_GO
) == 0)
175 reg
= __raw_readl(®s
->control
);
176 if ((reg
& CONTROL_IDLE
) == 0)
180 * An emac soft_reset may have clobbered the mdio controller's
181 * state machine. We need to reset and retry the current
184 dev_warn(data
->dev
, "resetting idled controller\n");
185 __davinci_mdio_reset(data
);
189 reg
= __raw_readl(®s
->user
[0].access
);
190 if ((reg
& USERACCESS_GO
) == 0)
193 dev_err(data
->dev
, "timed out waiting for user access\n");
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(®s
->control
) & CONTROL_IDLE
)
207 dev_err(data
->dev
, "timed out waiting for idle\n");
211 static int davinci_mdio_read(struct mii_bus
*bus
, int phy_id
, int phy_reg
)
213 struct davinci_mdio_data
*data
= bus
->priv
;
217 if (phy_reg
& ~PHY_REG_MASK
|| phy_id
& ~PHY_ID_MASK
)
220 spin_lock(&data
->lock
);
222 if (data
->suspended
) {
223 spin_unlock(&data
->lock
);
227 reg
= (USERACCESS_GO
| USERACCESS_READ
| (phy_reg
<< 21) |
231 ret
= wait_for_user_access(data
);
237 __raw_writel(reg
, &data
->regs
->user
[0].access
);
239 ret
= wait_for_user_access(data
);
245 reg
= __raw_readl(&data
->regs
->user
[0].access
);
246 ret
= (reg
& USERACCESS_ACK
) ? (reg
& USERACCESS_DATA
) : -EIO
;
250 spin_unlock(&data
->lock
);
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
;
262 if (phy_reg
& ~PHY_REG_MASK
|| phy_id
& ~PHY_ID_MASK
)
265 spin_lock(&data
->lock
);
267 if (data
->suspended
) {
268 spin_unlock(&data
->lock
);
272 reg
= (USERACCESS_GO
| USERACCESS_WRITE
| (phy_reg
<< 21) |
273 (phy_id
<< 16) | (phy_data
& USERACCESS_DATA
));
276 ret
= wait_for_user_access(data
);
282 __raw_writel(reg
, &data
->regs
->user
[0].access
);
284 ret
= wait_for_user_access(data
);
290 spin_unlock(&data
->lock
);
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
;
305 if (of_property_read_u32(node
, "bus_freq", &prop
)) {
306 pr_err("Missing bus_freq property in the DT.\n");
309 data
->bus_freq
= prop
;
315 static int davinci_mdio_probe(struct platform_device
*pdev
)
317 struct mdio_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
318 struct device
*dev
= &pdev
->dev
;
319 struct davinci_mdio_data
*data
;
320 struct resource
*res
;
321 struct phy_device
*phy
;
324 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
328 data
->bus
= mdiobus_alloc();
330 dev_err(dev
, "failed to alloc mii bus\n");
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
);
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
);
365 dev_set_drvdata(dev
, data
);
367 spin_lock_init(&data
->lock
);
369 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
371 dev_err(dev
, "could not find register map resource\n");
376 res
= devm_request_mem_region(dev
, res
->start
, resource_size(res
),
379 dev_err(dev
, "could not allocate register map resource\n");
384 data
->regs
= devm_ioremap_nocache(dev
, res
->start
, resource_size(res
));
386 dev_err(dev
, "could not map mdio registers\n");
391 /* register the mii bus */
392 ret
= mdiobus_register(data
->bus
);
396 /* scan and dump the bus */
397 for (addr
= 0; addr
< PHY_MAX_ADDR
; addr
++) {
398 phy
= data
->bus
->phy_map
[addr
];
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");
410 mdiobus_free(data
->bus
);
414 pm_runtime_put_sync(&pdev
->dev
);
415 pm_runtime_disable(&pdev
->dev
);
422 static int davinci_mdio_remove(struct platform_device
*pdev
)
424 struct davinci_mdio_data
*data
= platform_get_drvdata(pdev
);
427 mdiobus_unregister(data
->bus
);
428 mdiobus_free(data
->bus
);
433 pm_runtime_put_sync(&pdev
->dev
);
434 pm_runtime_disable(&pdev
->dev
);
441 static int davinci_mdio_suspend(struct device
*dev
)
443 struct davinci_mdio_data
*data
= dev_get_drvdata(dev
);
446 spin_lock(&data
->lock
);
448 /* shutdown the scan state machine */
449 ctrl
= __raw_readl(&data
->regs
->control
);
450 ctrl
&= ~CONTROL_ENABLE
;
451 __raw_writel(ctrl
, &data
->regs
->control
);
454 data
->suspended
= true;
455 spin_unlock(&data
->lock
);
456 pm_runtime_put_sync(data
->dev
);
458 /* Select sleep pin state */
459 pinctrl_pm_select_sleep_state(dev
);
464 static int davinci_mdio_resume(struct device
*dev
)
466 struct davinci_mdio_data
*data
= dev_get_drvdata(dev
);
468 /* Select default pin state */
469 pinctrl_pm_select_default_state(dev
);
471 pm_runtime_get_sync(data
->dev
);
473 spin_lock(&data
->lock
);
474 /* restart the scan state machine */
475 __davinci_mdio_reset(data
);
477 data
->suspended
= false;
478 spin_unlock(&data
->lock
);
483 static const struct dev_pm_ops davinci_mdio_pm_ops
= {
484 .suspend_late
= davinci_mdio_suspend
,
485 .resume_early
= davinci_mdio_resume
,
488 #if IS_ENABLED(CONFIG_OF)
489 static const struct of_device_id davinci_mdio_of_mtable
[] = {
490 { .compatible
= "ti,davinci_mdio", },
493 MODULE_DEVICE_TABLE(of
, davinci_mdio_of_mtable
);
496 static struct platform_driver davinci_mdio_driver
= {
498 .name
= "davinci_mdio",
499 .owner
= THIS_MODULE
,
500 .pm
= &davinci_mdio_pm_ops
,
501 .of_match_table
= of_match_ptr(davinci_mdio_of_mtable
),
503 .probe
= davinci_mdio_probe
,
504 .remove
= davinci_mdio_remove
,
507 static int __init
davinci_mdio_init(void)
509 return platform_driver_register(&davinci_mdio_driver
);
511 device_initcall(davinci_mdio_init
);
513 static void __exit
davinci_mdio_exit(void)
515 platform_driver_unregister(&davinci_mdio_driver
);
517 module_exit(davinci_mdio_exit
);
519 MODULE_LICENSE("GPL");
520 MODULE_DESCRIPTION("DaVinci MDIO driver");