blob: a468eb10782361e31fd0b0af5ce6be33d68a2578 [file] [log] [blame]
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001/*******************************************************************************
2 STMMAC Ethernet Driver -- MDIO bus implementation
3 Provides Bus interface for MII registers
4
5 Copyright (C) 2007-2009 STMicroelectronics Ltd
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms and conditions of the GNU General Public License,
9 version 2, as published by the Free Software Foundation.
10
11 This program is distributed in the hope it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19
20 The full GNU General Public License is included in this distribution in
21 the file called "COPYING".
22
23 Author: Carl Shaw <carl.shaw@st.com>
24 Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com>
25*******************************************************************************/
26
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070027#include <linux/mii.h>
28#include <linux/phy.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Srinivas Kandagatla0e076472013-07-04 10:35:48 +010030#include <linux/of.h>
31#include <linux/of_gpio.h>
32
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000033#include <asm/io.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070034
35#include "stmmac.h"
36
37#define MII_BUSY 0x00000001
38#define MII_WRITE 0x00000002
39
Deepak SIKRI39b401d2012-04-04 04:33:24 +000040static int stmmac_mdio_busy_wait(void __iomem *ioaddr, unsigned int mii_addr)
41{
42 unsigned long curr;
43 unsigned long finish = jiffies + 3 * HZ;
44
45 do {
46 curr = jiffies;
47 if (readl(ioaddr + mii_addr) & MII_BUSY)
48 cpu_relax();
49 else
50 return 0;
51 } while (!time_after_eq(curr, finish));
52
53 return -EBUSY;
54}
55
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070056/**
57 * stmmac_mdio_read
58 * @bus: points to the mii_bus structure
59 * @phyaddr: MII addr reg bits 15-11
60 * @phyreg: MII addr reg bits 10-6
61 * Description: it reads data from the MII register from within the phy device.
62 * For the 7111 GMAC, we must set the bit 0 in the MII address register while
63 * accessing the PHY registers.
64 * Fortunately, it seems this has no drawback for the 7109 MAC.
65 */
66static int stmmac_mdio_read(struct mii_bus *bus, int phyaddr, int phyreg)
67{
68 struct net_device *ndev = bus->priv;
69 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +000070 unsigned int mii_address = priv->hw->mii.addr;
71 unsigned int mii_data = priv->hw->mii.data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070072
73 int data;
74 u16 regValue = (((phyaddr << 11) & (0x0000F800)) |
75 ((phyreg << 6) & (0x000007C0)));
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +000076 regValue |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070077
Deepak SIKRI39b401d2012-04-04 04:33:24 +000078 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
79 return -EBUSY;
80
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000081 writel(regValue, priv->ioaddr + mii_address);
Deepak SIKRI39b401d2012-04-04 04:33:24 +000082
83 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
84 return -EBUSY;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070085
86 /* Read the data from the MII data register */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000087 data = (int)readl(priv->ioaddr + mii_data);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070088
89 return data;
90}
91
92/**
93 * stmmac_mdio_write
94 * @bus: points to the mii_bus structure
95 * @phyaddr: MII addr reg bits 15-11
96 * @phyreg: MII addr reg bits 10-6
97 * @phydata: phy data
98 * Description: it writes the data into the MII register from within the device.
99 */
100static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg,
101 u16 phydata)
102{
103 struct net_device *ndev = bus->priv;
104 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000105 unsigned int mii_address = priv->hw->mii.addr;
106 unsigned int mii_data = priv->hw->mii.data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700107
108 u16 value =
109 (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0)))
110 | MII_WRITE;
111
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000112 value |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
Giuseppe CAVALLAROdfb8fb92010-09-17 03:23:39 +0000113
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700114 /* Wait until any existing MII operation is complete */
Deepak SIKRI39b401d2012-04-04 04:33:24 +0000115 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
116 return -EBUSY;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700117
118 /* Set the MII address register to write */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000119 writel(phydata, priv->ioaddr + mii_data);
120 writel(value, priv->ioaddr + mii_address);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700121
122 /* Wait until any existing MII operation is complete */
Deepak SIKRI39b401d2012-04-04 04:33:24 +0000123 return stmmac_mdio_busy_wait(priv->ioaddr, mii_address);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700124}
125
126/**
127 * stmmac_mdio_reset
128 * @bus: points to the mii_bus structure
129 * Description: reset the MII bus
130 */
Srinivas Kandagatla073752a2014-01-16 10:52:27 +0000131int stmmac_mdio_reset(struct mii_bus *bus)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700132{
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000133#if defined(CONFIG_STMMAC_PLATFORM)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700134 struct net_device *ndev = bus->priv;
135 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000136 unsigned int mii_address = priv->hw->mii.addr;
Srinivas Kandagatla0e076472013-07-04 10:35:48 +0100137 struct stmmac_mdio_bus_data *data = priv->plat->mdio_bus_data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700138
Srinivas Kandagatla0e076472013-07-04 10:35:48 +0100139#ifdef CONFIG_OF
140 if (priv->device->of_node) {
141 int reset_gpio, active_low;
142
143 if (data->reset_gpio < 0) {
144 struct device_node *np = priv->device->of_node;
145 if (!np)
146 return 0;
147
148 data->reset_gpio = of_get_named_gpio(np,
149 "snps,reset-gpio", 0);
150 if (data->reset_gpio < 0)
151 return 0;
152
153 data->active_low = of_property_read_bool(np,
154 "snps,reset-active-low");
155 of_property_read_u32_array(np,
156 "snps,reset-delays-us", data->delays, 3);
157 }
158
159 reset_gpio = data->reset_gpio;
160 active_low = data->active_low;
161
162 if (!gpio_request(reset_gpio, "mdio-reset")) {
163 gpio_direction_output(reset_gpio, active_low ? 1 : 0);
164 udelay(data->delays[0]);
165 gpio_set_value(reset_gpio, active_low ? 0 : 1);
166 udelay(data->delays[1]);
167 gpio_set_value(reset_gpio, active_low ? 1 : 0);
168 udelay(data->delays[2]);
Srinivas Kandagatla0e076472013-07-04 10:35:48 +0100169 }
170 }
171#endif
172
173 if (data->phy_reset) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700174 pr_debug("stmmac_mdio_reset: calling phy_reset\n");
Srinivas Kandagatla0e076472013-07-04 10:35:48 +0100175 data->phy_reset(priv->plat->bsp_priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700176 }
177
178 /* This is a workaround for problems with the STE101P PHY.
179 * It doesn't complete its reset until at least one clock cycle
180 * on MDC, so perform a dummy mdio read.
181 */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000182 writel(0, priv->ioaddr + mii_address);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000183#endif
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700184 return 0;
185}
186
187/**
188 * stmmac_mdio_register
189 * @ndev: net device structure
190 * Description: it registers the MII bus
191 */
192int stmmac_mdio_register(struct net_device *ndev)
193{
194 int err = 0;
195 struct mii_bus *new_bus;
196 int *irqlist;
197 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000198 struct stmmac_mdio_bus_data *mdio_bus_data = priv->plat->mdio_bus_data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700199 int addr, found;
200
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000201 if (!mdio_bus_data)
202 return 0;
203
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700204 new_bus = mdiobus_alloc();
205 if (new_bus == NULL)
206 return -ENOMEM;
207
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000208 if (mdio_bus_data->irqs)
209 irqlist = mdio_bus_data->irqs;
210 else
211 irqlist = priv->mii_irq;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700212
Srinivas Kandagatla0e076472013-07-04 10:35:48 +0100213#ifdef CONFIG_OF
214 if (priv->device->of_node)
215 mdio_bus_data->reset_gpio = -1;
216#endif
217
Alessandro Rubini90b9a5452012-01-23 23:26:48 +0000218 new_bus->name = "stmmac";
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700219 new_bus->read = &stmmac_mdio_read;
220 new_bus->write = &stmmac_mdio_write;
221 new_bus->reset = &stmmac_mdio_reset;
Florian Fainellidb8857b2012-01-09 23:59:20 +0000222 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000223 new_bus->name, priv->plat->bus_id);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700224 new_bus->priv = ndev;
225 new_bus->irq = irqlist;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000226 new_bus->phy_mask = mdio_bus_data->phy_mask;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700227 new_bus->parent = priv->device;
228 err = mdiobus_register(new_bus);
229 if (err != 0) {
230 pr_err("%s: Cannot register as MDIO bus\n", new_bus->name);
231 goto bus_register_fail;
232 }
233
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700234 found = 0;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000235 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700236 struct phy_device *phydev = new_bus->phy_map[addr];
237 if (phydev) {
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000238 int act = 0;
239 char irq_num[4];
240 char *irq_str;
241
242 /*
243 * If an IRQ was provided to be assigned after
244 * the bus probe, do it here.
245 */
246 if ((mdio_bus_data->irqs == NULL) &&
247 (mdio_bus_data->probed_phy_irq > 0)) {
248 irqlist[addr] = mdio_bus_data->probed_phy_irq;
249 phydev->irq = mdio_bus_data->probed_phy_irq;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700250 }
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000251
252 /*
253 * If we're going to bind the MAC to this PHY bus,
254 * and no PHY number was provided to the MAC,
255 * use the one probed here.
256 */
Srinivas Kandagatlad56631a2012-08-30 05:50:43 +0000257 if (priv->plat->phy_addr == -1)
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000258 priv->plat->phy_addr = addr;
259
Srinivas Kandagatlad56631a2012-08-30 05:50:43 +0000260 act = (priv->plat->phy_addr == addr);
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000261 switch (phydev->irq) {
262 case PHY_POLL:
263 irq_str = "POLL";
264 break;
265 case PHY_IGNORE_INTERRUPT:
266 irq_str = "IGNORE";
267 break;
268 default:
269 sprintf(irq_num, "%d", phydev->irq);
270 irq_str = irq_num;
271 break;
272 }
273 pr_info("%s: PHY ID %08x at %d IRQ %s (%s)%s\n",
274 ndev->name, phydev->phy_id, addr,
275 irq_str, dev_name(&phydev->dev),
276 act ? " active" : "");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700277 found = 1;
278 }
279 }
280
Giuseppe CAVALLARO3955b22b2013-02-06 20:47:52 +0000281 if (!found) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700282 pr_warning("%s: No PHY found\n", ndev->name);
Giuseppe CAVALLARO3955b22b2013-02-06 20:47:52 +0000283 mdiobus_unregister(new_bus);
284 mdiobus_free(new_bus);
285 return -ENODEV;
286 }
287
288 priv->mii = new_bus;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700289
290 return 0;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000291
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700292bus_register_fail:
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000293 mdiobus_free(new_bus);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700294 return err;
295}
296
297/**
298 * stmmac_mdio_unregister
299 * @ndev: net device structure
300 * Description: it unregisters the MII bus
301 */
302int stmmac_mdio_unregister(struct net_device *ndev)
303{
304 struct stmmac_priv *priv = netdev_priv(ndev);
305
Srinivas Kandagatlaa5cf5ce2012-08-30 05:49:58 +0000306 if (!priv->mii)
307 return 0;
308
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700309 mdiobus_unregister(priv->mii);
310 priv->mii->priv = NULL;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000311 mdiobus_free(priv->mii);
312 priv->mii = NULL;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700313
314 return 0;
315}