blob: 0b9829fe3eea7344886060d826730aa13e6eba3e [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>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000030#include <asm/io.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070031
32#include "stmmac.h"
33
34#define MII_BUSY 0x00000001
35#define MII_WRITE 0x00000002
36
Deepak SIKRI39b401d2012-04-04 04:33:24 +000037static int stmmac_mdio_busy_wait(void __iomem *ioaddr, unsigned int mii_addr)
38{
39 unsigned long curr;
40 unsigned long finish = jiffies + 3 * HZ;
41
42 do {
43 curr = jiffies;
44 if (readl(ioaddr + mii_addr) & MII_BUSY)
45 cpu_relax();
46 else
47 return 0;
48 } while (!time_after_eq(curr, finish));
49
50 return -EBUSY;
51}
52
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070053/**
54 * stmmac_mdio_read
55 * @bus: points to the mii_bus structure
56 * @phyaddr: MII addr reg bits 15-11
57 * @phyreg: MII addr reg bits 10-6
58 * Description: it reads data from the MII register from within the phy device.
59 * For the 7111 GMAC, we must set the bit 0 in the MII address register while
60 * accessing the PHY registers.
61 * Fortunately, it seems this has no drawback for the 7109 MAC.
62 */
63static int stmmac_mdio_read(struct mii_bus *bus, int phyaddr, int phyreg)
64{
65 struct net_device *ndev = bus->priv;
66 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +000067 unsigned int mii_address = priv->hw->mii.addr;
68 unsigned int mii_data = priv->hw->mii.data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070069
70 int data;
71 u16 regValue = (((phyaddr << 11) & (0x0000F800)) |
72 ((phyreg << 6) & (0x000007C0)));
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +000073 regValue |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070074
Deepak SIKRI39b401d2012-04-04 04:33:24 +000075 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
76 return -EBUSY;
77
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000078 writel(regValue, priv->ioaddr + mii_address);
Deepak SIKRI39b401d2012-04-04 04:33:24 +000079
80 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
81 return -EBUSY;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070082
83 /* Read the data from the MII data register */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000084 data = (int)readl(priv->ioaddr + mii_data);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070085
86 return data;
87}
88
89/**
90 * stmmac_mdio_write
91 * @bus: points to the mii_bus structure
92 * @phyaddr: MII addr reg bits 15-11
93 * @phyreg: MII addr reg bits 10-6
94 * @phydata: phy data
95 * Description: it writes the data into the MII register from within the device.
96 */
97static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg,
98 u16 phydata)
99{
100 struct net_device *ndev = bus->priv;
101 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000102 unsigned int mii_address = priv->hw->mii.addr;
103 unsigned int mii_data = priv->hw->mii.data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700104
105 u16 value =
106 (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0)))
107 | MII_WRITE;
108
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000109 value |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
Giuseppe CAVALLAROdfb8fb92010-09-17 03:23:39 +0000110
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700111 /* Wait until any existing MII operation is complete */
Deepak SIKRI39b401d2012-04-04 04:33:24 +0000112 if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
113 return -EBUSY;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700114
115 /* Set the MII address register to write */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000116 writel(phydata, priv->ioaddr + mii_data);
117 writel(value, priv->ioaddr + mii_address);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700118
119 /* Wait until any existing MII operation is complete */
Deepak SIKRI39b401d2012-04-04 04:33:24 +0000120 return stmmac_mdio_busy_wait(priv->ioaddr, mii_address);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700121}
122
123/**
124 * stmmac_mdio_reset
125 * @bus: points to the mii_bus structure
126 * Description: reset the MII bus
127 */
128static int stmmac_mdio_reset(struct mii_bus *bus)
129{
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000130#if defined(CONFIG_STMMAC_PLATFORM)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700131 struct net_device *ndev = bus->priv;
132 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000133 unsigned int mii_address = priv->hw->mii.addr;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700134
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000135 if (priv->plat->mdio_bus_data->phy_reset) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700136 pr_debug("stmmac_mdio_reset: calling phy_reset\n");
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000137 priv->plat->mdio_bus_data->phy_reset(priv->plat->bsp_priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700138 }
139
140 /* This is a workaround for problems with the STE101P PHY.
141 * It doesn't complete its reset until at least one clock cycle
142 * on MDC, so perform a dummy mdio read.
143 */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000144 writel(0, priv->ioaddr + mii_address);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000145#endif
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700146 return 0;
147}
148
149/**
150 * stmmac_mdio_register
151 * @ndev: net device structure
152 * Description: it registers the MII bus
153 */
154int stmmac_mdio_register(struct net_device *ndev)
155{
156 int err = 0;
157 struct mii_bus *new_bus;
158 int *irqlist;
159 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000160 struct stmmac_mdio_bus_data *mdio_bus_data = priv->plat->mdio_bus_data;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700161 int addr, found;
162
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000163 if (!mdio_bus_data)
164 return 0;
165
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700166 new_bus = mdiobus_alloc();
167 if (new_bus == NULL)
168 return -ENOMEM;
169
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000170 if (mdio_bus_data->irqs)
171 irqlist = mdio_bus_data->irqs;
172 else
173 irqlist = priv->mii_irq;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700174
Alessandro Rubini90b9a5452012-01-23 23:26:48 +0000175 new_bus->name = "stmmac";
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700176 new_bus->read = &stmmac_mdio_read;
177 new_bus->write = &stmmac_mdio_write;
178 new_bus->reset = &stmmac_mdio_reset;
Florian Fainellidb8857b2012-01-09 23:59:20 +0000179 snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Srinivas Kandagatlad56631a2012-08-30 05:50:43 +0000180 new_bus->name, priv->plat->bus_id);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700181 new_bus->priv = ndev;
182 new_bus->irq = irqlist;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000183 new_bus->phy_mask = mdio_bus_data->phy_mask;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700184 new_bus->parent = priv->device;
185 err = mdiobus_register(new_bus);
186 if (err != 0) {
187 pr_err("%s: Cannot register as MDIO bus\n", new_bus->name);
188 goto bus_register_fail;
189 }
190
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700191 found = 0;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000192 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700193 struct phy_device *phydev = new_bus->phy_map[addr];
194 if (phydev) {
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000195 int act = 0;
196 char irq_num[4];
197 char *irq_str;
198
199 /*
200 * If an IRQ was provided to be assigned after
201 * the bus probe, do it here.
202 */
203 if ((mdio_bus_data->irqs == NULL) &&
204 (mdio_bus_data->probed_phy_irq > 0)) {
205 irqlist[addr] = mdio_bus_data->probed_phy_irq;
206 phydev->irq = mdio_bus_data->probed_phy_irq;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700207 }
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000208
209 /*
210 * If we're going to bind the MAC to this PHY bus,
211 * and no PHY number was provided to the MAC,
212 * use the one probed here.
213 */
Srinivas Kandagatlad56631a2012-08-30 05:50:43 +0000214 if (priv->plat->phy_addr == -1)
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000215 priv->plat->phy_addr = addr;
216
Srinivas Kandagatlad56631a2012-08-30 05:50:43 +0000217 act = (priv->plat->phy_addr == addr);
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000218 switch (phydev->irq) {
219 case PHY_POLL:
220 irq_str = "POLL";
221 break;
222 case PHY_IGNORE_INTERRUPT:
223 irq_str = "IGNORE";
224 break;
225 default:
226 sprintf(irq_num, "%d", phydev->irq);
227 irq_str = irq_num;
228 break;
229 }
230 pr_info("%s: PHY ID %08x at %d IRQ %s (%s)%s\n",
231 ndev->name, phydev->phy_id, addr,
232 irq_str, dev_name(&phydev->dev),
233 act ? " active" : "");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700234 found = 1;
235 }
236 }
237
Giuseppe CAVALLARO3955b22b2013-02-06 20:47:52 +0000238 if (!found) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700239 pr_warning("%s: No PHY found\n", ndev->name);
Giuseppe CAVALLARO3955b22b2013-02-06 20:47:52 +0000240 mdiobus_unregister(new_bus);
241 mdiobus_free(new_bus);
242 return -ENODEV;
243 }
244
245 priv->mii = new_bus;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700246
247 return 0;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000248
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700249bus_register_fail:
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000250 mdiobus_free(new_bus);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700251 return err;
252}
253
254/**
255 * stmmac_mdio_unregister
256 * @ndev: net device structure
257 * Description: it unregisters the MII bus
258 */
259int stmmac_mdio_unregister(struct net_device *ndev)
260{
261 struct stmmac_priv *priv = netdev_priv(ndev);
262
Srinivas Kandagatlaa5cf5ce2012-08-30 05:49:58 +0000263 if (!priv->mii)
264 return 0;
265
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700266 mdiobus_unregister(priv->mii);
267 priv->mii->priv = NULL;
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000268 mdiobus_free(priv->mii);
269 priv->mii = NULL;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700270
271 return 0;
272}