2 * Broadcom UniMAC MDIO bus controller driver
4 * Copyright (C) 2014, Broadcom Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/phy.h>
14 #include <linux/platform_device.h>
15 #include <linux/sched.h>
16 #include <linux/module.h>
18 #include <linux/delay.h>
21 #include <linux/of_platform.h>
22 #include <linux/of_mdio.h>
25 #define MDIO_START_BUSY (1 << 29)
26 #define MDIO_READ_FAIL (1 << 28)
27 #define MDIO_RD (2 << 26)
28 #define MDIO_WR (1 << 26)
29 #define MDIO_PMD_SHIFT 21
30 #define MDIO_PMD_MASK 0x1F
31 #define MDIO_REG_SHIFT 16
32 #define MDIO_REG_MASK 0x1F
35 #define MDIO_C22 (1 << 0)
37 #define MDIO_CLK_DIV_SHIFT 4
38 #define MDIO_CLK_DIV_MASK 0x3F
39 #define MDIO_SUPP_PREAMBLE (1 << 12)
41 struct unimac_mdio_priv
{
42 struct mii_bus
*mii_bus
;
46 static inline void unimac_mdio_start(struct unimac_mdio_priv
*priv
)
50 reg
= __raw_readl(priv
->base
+ MDIO_CMD
);
51 reg
|= MDIO_START_BUSY
;
52 __raw_writel(reg
, priv
->base
+ MDIO_CMD
);
55 static inline unsigned int unimac_mdio_busy(struct unimac_mdio_priv
*priv
)
57 return __raw_readl(priv
->base
+ MDIO_CMD
) & MDIO_START_BUSY
;
60 static int unimac_mdio_read(struct mii_bus
*bus
, int phy_id
, int reg
)
62 struct unimac_mdio_priv
*priv
= bus
->priv
;
63 unsigned int timeout
= 1000;
66 /* Prepare the read operation */
67 cmd
= MDIO_RD
| (phy_id
<< MDIO_PMD_SHIFT
) | (reg
<< MDIO_REG_SHIFT
);
68 __raw_writel(cmd
, priv
->base
+ MDIO_CMD
);
70 /* Start MDIO transaction */
71 unimac_mdio_start(priv
);
74 if (!unimac_mdio_busy(priv
))
77 usleep_range(1000, 2000);
83 cmd
= __raw_readl(priv
->base
+ MDIO_CMD
);
85 /* Some broken devices are known not to release the line during
86 * turn-around, e.g: Broadcom BCM53125 external switches, so check for
87 * that condition here and ignore the MDIO controller read failure
90 if (!(bus
->phy_ignore_ta_mask
& 1 << phy_id
) && (cmd
& MDIO_READ_FAIL
))
96 static int unimac_mdio_write(struct mii_bus
*bus
, int phy_id
,
99 struct unimac_mdio_priv
*priv
= bus
->priv
;
100 unsigned int timeout
= 1000;
103 /* Prepare the write operation */
104 cmd
= MDIO_WR
| (phy_id
<< MDIO_PMD_SHIFT
) |
105 (reg
<< MDIO_REG_SHIFT
) | (0xffff & val
);
106 __raw_writel(cmd
, priv
->base
+ MDIO_CMD
);
108 unimac_mdio_start(priv
);
111 if (!unimac_mdio_busy(priv
))
114 usleep_range(1000, 2000);
123 /* Workaround for integrated BCM7xxx Gigabit PHYs which have a problem with
124 * their internal MDIO management controller making them fail to successfully
125 * be read from or written to for the first transaction. We insert a dummy
126 * BMSR read here to make sure that phy_get_device() and get_phy_id() can
127 * correctly read the PHY MII_PHYSID1/2 registers and successfully register a
128 * PHY device for this peripheral.
130 * Once the PHY driver is registered, we can workaround subsequent reads from
131 * there (e.g: during system-wide power management).
133 * bus->reset is invoked before mdiobus_scan during mdiobus_register and is
134 * therefore the right location to stick that workaround. Since we do not want
135 * to read from non-existing PHYs, we either use bus->phy_mask or do a manual
136 * Device Tree scan to limit the search area.
138 static int unimac_mdio_reset(struct mii_bus
*bus
)
140 struct device_node
*np
= bus
->dev
.of_node
;
141 struct device_node
*child
;
146 read_mask
= ~bus
->phy_mask
;
148 for_each_available_child_of_node(np
, child
) {
149 addr
= of_mdio_parse_addr(&bus
->dev
, child
);
153 read_mask
|= 1 << addr
;
157 for (addr
= 0; addr
< PHY_MAX_ADDR
; addr
++) {
158 if (read_mask
& 1 << addr
)
159 mdiobus_read(bus
, addr
, MII_BMSR
);
165 static int unimac_mdio_probe(struct platform_device
*pdev
)
167 struct unimac_mdio_priv
*priv
;
168 struct device_node
*np
;
173 np
= pdev
->dev
.of_node
;
175 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
179 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
181 /* Just ioremap, as this MDIO block is usually integrated into an
182 * Ethernet MAC controller register range
184 priv
->base
= devm_ioremap(&pdev
->dev
, r
->start
, resource_size(r
));
186 dev_err(&pdev
->dev
, "failed to remap register\n");
190 priv
->mii_bus
= mdiobus_alloc();
196 bus
->name
= "unimac MII bus";
197 bus
->parent
= &pdev
->dev
;
198 bus
->read
= unimac_mdio_read
;
199 bus
->write
= unimac_mdio_write
;
200 bus
->reset
= unimac_mdio_reset
;
201 snprintf(bus
->id
, MII_BUS_ID_SIZE
, "%s", pdev
->name
);
203 bus
->irq
= kcalloc(PHY_MAX_ADDR
, sizeof(int), GFP_KERNEL
);
209 ret
= of_mdiobus_register(bus
, np
);
211 dev_err(&pdev
->dev
, "MDIO bus registration failed\n");
215 platform_set_drvdata(pdev
, priv
);
217 dev_info(&pdev
->dev
, "Broadcom UniMAC MDIO bus at 0x%p\n", priv
->base
);
228 static int unimac_mdio_remove(struct platform_device
*pdev
)
230 struct unimac_mdio_priv
*priv
= platform_get_drvdata(pdev
);
232 mdiobus_unregister(priv
->mii_bus
);
233 kfree(priv
->mii_bus
->irq
);
234 mdiobus_free(priv
->mii_bus
);
239 static const struct of_device_id unimac_mdio_ids
[] = {
240 { .compatible
= "brcm,genet-mdio-v4", },
241 { .compatible
= "brcm,genet-mdio-v3", },
242 { .compatible
= "brcm,genet-mdio-v2", },
243 { .compatible
= "brcm,genet-mdio-v1", },
244 { .compatible
= "brcm,unimac-mdio", },
248 static struct platform_driver unimac_mdio_driver
= {
250 .name
= "unimac-mdio",
251 .of_match_table
= unimac_mdio_ids
,
253 .probe
= unimac_mdio_probe
,
254 .remove
= unimac_mdio_remove
,
256 module_platform_driver(unimac_mdio_driver
);
258 MODULE_AUTHOR("Broadcom Corporation");
259 MODULE_DESCRIPTION("Broadcom UniMAC MDIO bus controller");
260 MODULE_LICENSE("GPL");
261 MODULE_ALIAS("platform:unimac-mdio");