GNU Linux-libre 4.9.309-gnu1
[releases.git] / drivers / net / ethernet / stmicro / stmmac / stmmac_mdio.c
1 /*******************************************************************************
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
27 #include <linux/mii.h>
28 #include <linux/phy.h>
29 #include <linux/slab.h>
30 #include <linux/of.h>
31 #include <linux/of_gpio.h>
32 #include <linux/of_mdio.h>
33 #include <asm/io.h>
34
35 #include "stmmac.h"
36
37 #define MII_BUSY 0x00000001
38 #define MII_WRITE 0x00000002
39
40 /* GMAC4 defines */
41 #define MII_GMAC4_GOC_SHIFT             2
42 #define MII_GMAC4_WRITE                 (1 << MII_GMAC4_GOC_SHIFT)
43 #define MII_GMAC4_READ                  (3 << MII_GMAC4_GOC_SHIFT)
44
45 #define MII_PHY_ADDR_GMAC4_SHIFT        21
46 #define MII_PHY_ADDR_GMAC4_MASK         GENMASK(25, 21)
47 #define MII_PHY_REG_GMAC4_SHIFT         16
48 #define MII_PHY_REG_GMAC4_MASK          GENMASK(20, 16)
49 #define MII_CSR_CLK_GMAC4_SHIFT         8
50 #define MII_CSR_CLK_GMAC4_MASK          GENMASK(11, 8)
51
52 static int stmmac_mdio_busy_wait(void __iomem *ioaddr, unsigned int mii_addr)
53 {
54         unsigned long curr;
55         unsigned long finish = jiffies + 3 * HZ;
56
57         do {
58                 curr = jiffies;
59                 if (readl(ioaddr + mii_addr) & MII_BUSY)
60                         cpu_relax();
61                 else
62                         return 0;
63         } while (!time_after_eq(curr, finish));
64
65         return -EBUSY;
66 }
67
68 /**
69  * stmmac_mdio_read
70  * @bus: points to the mii_bus structure
71  * @phyaddr: MII addr reg bits 15-11
72  * @phyreg: MII addr reg bits 10-6
73  * Description: it reads data from the MII register from within the phy device.
74  * For the 7111 GMAC, we must set the bit 0 in the MII address register while
75  * accessing the PHY registers.
76  * Fortunately, it seems this has no drawback for the 7109 MAC.
77  */
78 static int stmmac_mdio_read(struct mii_bus *bus, int phyaddr, int phyreg)
79 {
80         struct net_device *ndev = bus->priv;
81         struct stmmac_priv *priv = netdev_priv(ndev);
82         unsigned int mii_address = priv->hw->mii.addr;
83         unsigned int mii_data = priv->hw->mii.data;
84
85         int data;
86         u16 regValue = (((phyaddr << 11) & (0x0000F800)) |
87                         ((phyreg << 6) & (0x000007C0)));
88         regValue |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
89
90         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
91                 return -EBUSY;
92
93         writel(regValue, priv->ioaddr + mii_address);
94
95         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
96                 return -EBUSY;
97
98         /* Read the data from the MII data register */
99         data = (int)readl(priv->ioaddr + mii_data);
100
101         return data;
102 }
103
104 /**
105  * stmmac_mdio_write
106  * @bus: points to the mii_bus structure
107  * @phyaddr: MII addr reg bits 15-11
108  * @phyreg: MII addr reg bits 10-6
109  * @phydata: phy data
110  * Description: it writes the data into the MII register from within the device.
111  */
112 static int stmmac_mdio_write(struct mii_bus *bus, int phyaddr, int phyreg,
113                              u16 phydata)
114 {
115         struct net_device *ndev = bus->priv;
116         struct stmmac_priv *priv = netdev_priv(ndev);
117         unsigned int mii_address = priv->hw->mii.addr;
118         unsigned int mii_data = priv->hw->mii.data;
119
120         u16 value =
121             (((phyaddr << 11) & (0x0000F800)) | ((phyreg << 6) & (0x000007C0)))
122             | MII_WRITE;
123
124         value |= MII_BUSY | ((priv->clk_csr & 0xF) << 2);
125
126         /* Wait until any existing MII operation is complete */
127         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
128                 return -EBUSY;
129
130         /* Set the MII address register to write */
131         writel(phydata, priv->ioaddr + mii_data);
132         writel(value, priv->ioaddr + mii_address);
133
134         /* Wait until any existing MII operation is complete */
135         return stmmac_mdio_busy_wait(priv->ioaddr, mii_address);
136 }
137
138 /**
139  * stmmac_mdio_read_gmac4
140  * @bus: points to the mii_bus structure
141  * @phyaddr: MII addr reg bits 25-21
142  * @phyreg: MII addr reg bits 20-16
143  * Description: it reads data from the MII register of GMAC4 from within
144  * the phy device.
145  */
146 static int stmmac_mdio_read_gmac4(struct mii_bus *bus, int phyaddr, int phyreg)
147 {
148         struct net_device *ndev = bus->priv;
149         struct stmmac_priv *priv = netdev_priv(ndev);
150         unsigned int mii_address = priv->hw->mii.addr;
151         unsigned int mii_data = priv->hw->mii.data;
152         int data;
153         u32 value = (((phyaddr << MII_PHY_ADDR_GMAC4_SHIFT) &
154                      (MII_PHY_ADDR_GMAC4_MASK)) |
155                      ((phyreg << MII_PHY_REG_GMAC4_SHIFT) &
156                      (MII_PHY_REG_GMAC4_MASK))) | MII_GMAC4_READ;
157
158         value |= MII_BUSY | ((priv->clk_csr & MII_CSR_CLK_GMAC4_MASK)
159                  << MII_CSR_CLK_GMAC4_SHIFT);
160
161         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
162                 return -EBUSY;
163
164         writel(value, priv->ioaddr + mii_address);
165
166         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
167                 return -EBUSY;
168
169         /* Read the data from the MII data register */
170         data = (int)readl(priv->ioaddr + mii_data);
171
172         return data;
173 }
174
175 /**
176  * stmmac_mdio_write_gmac4
177  * @bus: points to the mii_bus structure
178  * @phyaddr: MII addr reg bits 25-21
179  * @phyreg: MII addr reg bits 20-16
180  * @phydata: phy data
181  * Description: it writes the data into the MII register of GMAC4 from within
182  * the device.
183  */
184 static int stmmac_mdio_write_gmac4(struct mii_bus *bus, int phyaddr, int phyreg,
185                                    u16 phydata)
186 {
187         struct net_device *ndev = bus->priv;
188         struct stmmac_priv *priv = netdev_priv(ndev);
189         unsigned int mii_address = priv->hw->mii.addr;
190         unsigned int mii_data = priv->hw->mii.data;
191
192         u32 value = (((phyaddr << MII_PHY_ADDR_GMAC4_SHIFT) &
193                      (MII_PHY_ADDR_GMAC4_MASK)) |
194                      ((phyreg << MII_PHY_REG_GMAC4_SHIFT) &
195                      (MII_PHY_REG_GMAC4_MASK))) | MII_GMAC4_WRITE;
196
197         value |= MII_BUSY | ((priv->clk_csr & MII_CSR_CLK_GMAC4_MASK)
198                  << MII_CSR_CLK_GMAC4_SHIFT);
199
200         /* Wait until any existing MII operation is complete */
201         if (stmmac_mdio_busy_wait(priv->ioaddr, mii_address))
202                 return -EBUSY;
203
204         /* Set the MII address register to write */
205         writel(phydata, priv->ioaddr + mii_data);
206         writel(value, priv->ioaddr + mii_address);
207
208         /* Wait until any existing MII operation is complete */
209         return stmmac_mdio_busy_wait(priv->ioaddr, mii_address);
210 }
211
212 /**
213  * stmmac_mdio_reset
214  * @bus: points to the mii_bus structure
215  * Description: reset the MII bus
216  */
217 int stmmac_mdio_reset(struct mii_bus *bus)
218 {
219 #if IS_ENABLED(CONFIG_STMMAC_PLATFORM)
220         struct net_device *ndev = bus->priv;
221         struct stmmac_priv *priv = netdev_priv(ndev);
222         unsigned int mii_address = priv->hw->mii.addr;
223         struct stmmac_mdio_bus_data *data = priv->plat->mdio_bus_data;
224
225 #ifdef CONFIG_OF
226         if (priv->device->of_node) {
227
228                 if (data->reset_gpio < 0) {
229                         struct device_node *np = priv->device->of_node;
230                         if (!np)
231                                 return 0;
232
233                         data->reset_gpio = of_get_named_gpio(np,
234                                                 "snps,reset-gpio", 0);
235                         if (data->reset_gpio < 0)
236                                 return 0;
237
238                         data->active_low = of_property_read_bool(np,
239                                                 "snps,reset-active-low");
240                         of_property_read_u32_array(np,
241                                 "snps,reset-delays-us", data->delays, 3);
242
243                         if (devm_gpio_request(priv->device, data->reset_gpio,
244                                               "mdio-reset"))
245                                 return 0;
246                 }
247
248                 gpio_direction_output(data->reset_gpio,
249                                       data->active_low ? 1 : 0);
250                 if (data->delays[0])
251                         msleep(DIV_ROUND_UP(data->delays[0], 1000));
252
253                 gpio_set_value(data->reset_gpio, data->active_low ? 0 : 1);
254                 if (data->delays[1])
255                         msleep(DIV_ROUND_UP(data->delays[1], 1000));
256
257                 gpio_set_value(data->reset_gpio, data->active_low ? 1 : 0);
258                 if (data->delays[2])
259                         msleep(DIV_ROUND_UP(data->delays[2], 1000));
260         }
261 #endif
262
263         if (data->phy_reset) {
264                 pr_debug("stmmac_mdio_reset: calling phy_reset\n");
265                 data->phy_reset(priv->plat->bsp_priv);
266         }
267
268         /* This is a workaround for problems with the STE101P PHY.
269          * It doesn't complete its reset until at least one clock cycle
270          * on MDC, so perform a dummy mdio read. To be upadted for GMAC4
271          * if needed.
272          */
273         if (!priv->plat->has_gmac4)
274                 writel(0, priv->ioaddr + mii_address);
275 #endif
276         return 0;
277 }
278
279 /**
280  * stmmac_mdio_register
281  * @ndev: net device structure
282  * Description: it registers the MII bus
283  */
284 int stmmac_mdio_register(struct net_device *ndev)
285 {
286         int err = 0;
287         struct mii_bus *new_bus;
288         struct stmmac_priv *priv = netdev_priv(ndev);
289         struct stmmac_mdio_bus_data *mdio_bus_data = priv->plat->mdio_bus_data;
290         struct device_node *mdio_node = priv->plat->mdio_node;
291         int addr, found;
292
293         if (!mdio_bus_data)
294                 return 0;
295
296         new_bus = mdiobus_alloc();
297         if (new_bus == NULL)
298                 return -ENOMEM;
299
300         if (mdio_bus_data->irqs)
301                 memcpy(new_bus->irq, mdio_bus_data->irqs, sizeof(new_bus->irq));
302
303 #ifdef CONFIG_OF
304         if (priv->device->of_node)
305                 mdio_bus_data->reset_gpio = -1;
306 #endif
307
308         new_bus->name = "stmmac";
309         if (priv->plat->has_gmac4) {
310                 new_bus->read = &stmmac_mdio_read_gmac4;
311                 new_bus->write = &stmmac_mdio_write_gmac4;
312         } else {
313                 new_bus->read = &stmmac_mdio_read;
314                 new_bus->write = &stmmac_mdio_write;
315         }
316
317         new_bus->reset = &stmmac_mdio_reset;
318         snprintf(new_bus->id, MII_BUS_ID_SIZE, "%s-%x",
319                  new_bus->name, priv->plat->bus_id);
320         new_bus->priv = ndev;
321         new_bus->phy_mask = mdio_bus_data->phy_mask;
322         new_bus->parent = priv->device;
323
324         if (mdio_node)
325                 err = of_mdiobus_register(new_bus, mdio_node);
326         else
327                 err = mdiobus_register(new_bus);
328         if (err != 0) {
329                 pr_err("%s: Cannot register as MDIO bus\n", new_bus->name);
330                 goto bus_register_fail;
331         }
332
333         if (priv->plat->phy_node || mdio_node)
334                 goto bus_register_done;
335
336         found = 0;
337         for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
338                 struct phy_device *phydev = mdiobus_get_phy(new_bus, addr);
339                 if (phydev) {
340                         int act = 0;
341                         char irq_num[4];
342                         char *irq_str;
343
344                         /*
345                          * If an IRQ was provided to be assigned after
346                          * the bus probe, do it here.
347                          */
348                         if ((mdio_bus_data->irqs == NULL) &&
349                             (mdio_bus_data->probed_phy_irq > 0)) {
350                                 new_bus->irq[addr] =
351                                         mdio_bus_data->probed_phy_irq;
352                                 phydev->irq = mdio_bus_data->probed_phy_irq;
353                         }
354
355                         /*
356                          * If we're going to bind the MAC to this PHY bus,
357                          * and no PHY number was provided to the MAC,
358                          * use the one probed here.
359                          */
360                         if (priv->plat->phy_addr == -1)
361                                 priv->plat->phy_addr = addr;
362
363                         act = (priv->plat->phy_addr == addr);
364                         switch (phydev->irq) {
365                         case PHY_POLL:
366                                 irq_str = "POLL";
367                                 break;
368                         case PHY_IGNORE_INTERRUPT:
369                                 irq_str = "IGNORE";
370                                 break;
371                         default:
372                                 sprintf(irq_num, "%d", phydev->irq);
373                                 irq_str = irq_num;
374                                 break;
375                         }
376                         pr_info("%s: PHY ID %08x at %d IRQ %s (%s)%s\n",
377                                 ndev->name, phydev->phy_id, addr,
378                                 irq_str, phydev_name(phydev),
379                                 act ? " active" : "");
380                         found = 1;
381                 }
382         }
383
384         if (!found && !mdio_node) {
385                 pr_warn("%s: No PHY found\n", ndev->name);
386                 mdiobus_unregister(new_bus);
387                 mdiobus_free(new_bus);
388                 return -ENODEV;
389         }
390
391 bus_register_done:
392         priv->mii = new_bus;
393
394         return 0;
395
396 bus_register_fail:
397         mdiobus_free(new_bus);
398         return err;
399 }
400
401 /**
402  * stmmac_mdio_unregister
403  * @ndev: net device structure
404  * Description: it unregisters the MII bus
405  */
406 int stmmac_mdio_unregister(struct net_device *ndev)
407 {
408         struct stmmac_priv *priv = netdev_priv(ndev);
409
410         if (!priv->mii)
411                 return 0;
412
413         mdiobus_unregister(priv->mii);
414         priv->mii->priv = NULL;
415         mdiobus_free(priv->mii);
416         priv->mii = NULL;
417
418         return 0;
419 }