blob: 7fdc352628f9c7c6265a973349128a65f9e744e1 [file] [log] [blame]
Florian Fainelliaa096772014-02-13 16:08:48 -08001/*
2 * Broadcom GENET MDIO routines
3 *
Doug Berger42138082017-03-13 17:41:42 -07004 * Copyright (c) 2014-2017 Broadcom
Florian Fainelliaa096772014-02-13 16:08:48 -08005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
Florian Fainelliaa096772014-02-13 16:08:48 -08009 */
10
11
12#include <linux/types.h>
13#include <linux/delay.h>
14#include <linux/wait.h>
15#include <linux/mii.h>
16#include <linux/ethtool.h>
17#include <linux/bitops.h>
18#include <linux/netdevice.h>
19#include <linux/platform_device.h>
20#include <linux/phy.h>
21#include <linux/phy_fixed.h>
22#include <linux/brcmphy.h>
23#include <linux/of.h>
24#include <linux/of_net.h>
25#include <linux/of_mdio.h>
Petri Gyntherb0ba5122014-12-01 16:18:08 -080026#include <linux/platform_data/bcmgenet.h>
Florian Fainelli9a4e7962017-07-31 12:04:26 -070027#include <linux/platform_data/mdio-bcm-unimac.h>
Florian Fainelliaa096772014-02-13 16:08:48 -080028
29#include "bcmgenet.h"
30
Florian Fainelliaa096772014-02-13 16:08:48 -080031/* setup netdev link state when PHY link status change and
32 * update UMAC and RGMII block when link up
33 */
Florian Fainellic96e7312014-11-10 18:06:20 -080034void bcmgenet_mii_setup(struct net_device *dev)
Florian Fainelliaa096772014-02-13 16:08:48 -080035{
36 struct bcmgenet_priv *priv = netdev_priv(dev);
Florian Fainellibf1a85a2016-09-24 12:58:30 -070037 struct phy_device *phydev = priv->phydev;
Florian Fainelliaa096772014-02-13 16:08:48 -080038 u32 reg, cmd_bits = 0;
Petri Gynther5ad6e6c2014-10-03 12:25:01 -070039 bool status_changed = false;
Florian Fainelliaa096772014-02-13 16:08:48 -080040
41 if (priv->old_link != phydev->link) {
Petri Gynther5ad6e6c2014-10-03 12:25:01 -070042 status_changed = true;
Florian Fainelliaa096772014-02-13 16:08:48 -080043 priv->old_link = phydev->link;
44 }
45
46 if (phydev->link) {
Petri Gynther5ad6e6c2014-10-03 12:25:01 -070047 /* check speed/duplex/pause changes */
48 if (priv->old_speed != phydev->speed) {
49 status_changed = true;
50 priv->old_speed = phydev->speed;
51 }
52
53 if (priv->old_duplex != phydev->duplex) {
54 status_changed = true;
55 priv->old_duplex = phydev->duplex;
56 }
57
58 if (priv->old_pause != phydev->pause) {
59 status_changed = true;
60 priv->old_pause = phydev->pause;
61 }
62
63 /* done if nothing has changed */
64 if (!status_changed)
65 return;
Florian Fainelliaa096772014-02-13 16:08:48 -080066
67 /* speed */
68 if (phydev->speed == SPEED_1000)
69 cmd_bits = UMAC_SPEED_1000;
70 else if (phydev->speed == SPEED_100)
71 cmd_bits = UMAC_SPEED_100;
72 else
73 cmd_bits = UMAC_SPEED_10;
74 cmd_bits <<= CMD_SPEED_SHIFT;
75
Florian Fainelliaa096772014-02-13 16:08:48 -080076 /* duplex */
77 if (phydev->duplex != DUPLEX_FULL)
78 cmd_bits |= CMD_HD_EN;
79
Florian Fainelliaa096772014-02-13 16:08:48 -080080 /* pause capability */
81 if (!phydev->pause)
82 cmd_bits |= CMD_RX_PAUSE_IGNORE | CMD_TX_PAUSE_IGNORE;
83
Petri Gynther5ad6e6c2014-10-03 12:25:01 -070084 /*
85 * Program UMAC and RGMII block based on established
86 * link speed, duplex, and pause. The speed set in
87 * umac->cmd tell RGMII block which clock to use for
88 * transmit -- 25MHz(100Mbps) or 125MHz(1Gbps).
89 * Receive clock is provided by the PHY.
90 */
91 reg = bcmgenet_ext_readl(priv, EXT_RGMII_OOB_CTRL);
92 reg &= ~OOB_DISABLE;
93 reg |= RGMII_LINK;
94 bcmgenet_ext_writel(priv, reg, EXT_RGMII_OOB_CTRL);
Florian Fainellic677ba82014-08-11 14:50:44 -070095
Florian Fainelliaa096772014-02-13 16:08:48 -080096 reg = bcmgenet_umac_readl(priv, UMAC_CMD);
97 reg &= ~((CMD_SPEED_MASK << CMD_SPEED_SHIFT) |
98 CMD_HD_EN |
99 CMD_RX_PAUSE_IGNORE | CMD_TX_PAUSE_IGNORE);
100 reg |= cmd_bits;
101 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
Petri Gynther5ad6e6c2014-10-03 12:25:01 -0700102 } else {
103 /* done if nothing has changed */
104 if (!status_changed)
105 return;
Florian Fainelliaa096772014-02-13 16:08:48 -0800106
Petri Gynther5ad6e6c2014-10-03 12:25:01 -0700107 /* needed for MoCA fixed PHY to reflect correct link status */
108 netif_carrier_off(dev);
Florian Fainelli24052402014-07-21 17:42:39 -0700109 }
Florian Fainellic677ba82014-08-11 14:50:44 -0700110
111 phy_print_status(phydev);
Florian Fainelliaa096772014-02-13 16:08:48 -0800112}
113
Florian Fainelli5dbebbb2015-10-29 18:11:35 -0700114
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700115static int bcmgenet_fixed_phy_link_update(struct net_device *dev,
116 struct fixed_phy_status *status)
117{
118 if (dev && dev->phydev && status)
119 status->link = dev->phydev->link;
120
121 return 0;
122}
123
Florian Fainelli5dbebbb2015-10-29 18:11:35 -0700124/* Perform a voluntary PHY software reset, since the EPHY is very finicky about
125 * not doing it and will start corrupting packets
126 */
127void bcmgenet_mii_reset(struct net_device *dev)
128{
129 struct bcmgenet_priv *priv = netdev_priv(dev);
130
131 if (GENET_IS_V4(priv))
132 return;
133
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700134 if (priv->phydev) {
135 phy_init_hw(priv->phydev);
136 phy_start_aneg(priv->phydev);
Florian Fainelli5dbebbb2015-10-29 18:11:35 -0700137 }
138}
139
Florian Fainellia642c4f2015-03-23 15:09:56 -0700140void bcmgenet_phy_power_set(struct net_device *dev, bool enable)
Florian Fainelliaa096772014-02-13 16:08:48 -0800141{
142 struct bcmgenet_priv *priv = netdev_priv(dev);
143 u32 reg = 0;
144
145 /* EXT_GPHY_CTRL is only valid for GENETv4 and onward */
Doug Berger42138082017-03-13 17:41:42 -0700146 if (GENET_IS_V4(priv)) {
147 reg = bcmgenet_ext_readl(priv, EXT_GPHY_CTRL);
148 if (enable) {
149 reg &= ~EXT_CK25_DIS;
150 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
151 mdelay(1);
Florian Fainelliaa096772014-02-13 16:08:48 -0800152
Doug Berger42138082017-03-13 17:41:42 -0700153 reg &= ~(EXT_CFG_IDDQ_BIAS | EXT_CFG_PWR_DOWN);
154 reg |= EXT_GPHY_RESET;
155 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
156 mdelay(1);
157
158 reg &= ~EXT_GPHY_RESET;
159 } else {
160 reg |= EXT_CFG_IDDQ_BIAS | EXT_CFG_PWR_DOWN |
161 EXT_GPHY_RESET;
162 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
163 mdelay(1);
164 reg |= EXT_CK25_DIS;
165 }
Florian Fainelli0c81a8e2015-03-23 15:09:54 -0700166 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
Doug Berger42138082017-03-13 17:41:42 -0700167 udelay(60);
Florian Fainellia9d608c2015-03-23 15:09:55 -0700168 } else {
Florian Fainellia9d608c2015-03-23 15:09:55 -0700169 mdelay(1);
Florian Fainelli8212c982015-03-23 15:09:53 -0700170 }
Florian Fainelliaa096772014-02-13 16:08:48 -0800171}
172
Florian Fainelliaa096772014-02-13 16:08:48 -0800173static void bcmgenet_moca_phy_setup(struct bcmgenet_priv *priv)
174{
175 u32 reg;
176
Doug Berger42138082017-03-13 17:41:42 -0700177 if (!GENET_IS_V5(priv)) {
178 /* Speed settings are set in bcmgenet_mii_setup() */
179 reg = bcmgenet_sys_readl(priv, SYS_PORT_CTRL);
180 reg |= LED_ACT_SOURCE_MAC;
181 bcmgenet_sys_writel(priv, reg, SYS_PORT_CTRL);
182 }
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700183
184 if (priv->hw_params->flags & GENET_HAS_MOCA_LINK_DET)
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700185 fixed_phy_set_link_update(priv->phydev,
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700186 bcmgenet_fixed_phy_link_update);
Florian Fainelliaa096772014-02-13 16:08:48 -0800187}
188
Florian Fainelli28b45912015-07-16 15:51:19 -0700189int bcmgenet_mii_config(struct net_device *dev)
Florian Fainelliaa096772014-02-13 16:08:48 -0800190{
191 struct bcmgenet_priv *priv = netdev_priv(dev);
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700192 struct phy_device *phydev = priv->phydev;
Florian Fainelliaa096772014-02-13 16:08:48 -0800193 struct device *kdev = &priv->pdev->dev;
194 const char *phy_name = NULL;
195 u32 id_mode_dis = 0;
196 u32 port_ctrl;
197 u32 reg;
198
Florian Fainellic624f892015-07-16 15:51:17 -0700199 priv->ext_phy = !priv->internal_phy &&
Florian Fainelliaa096772014-02-13 16:08:48 -0800200 (priv->phy_interface != PHY_INTERFACE_MODE_MOCA);
201
Florian Fainelliaa096772014-02-13 16:08:48 -0800202 switch (priv->phy_interface) {
Florian Fainelli40bc8b02017-06-23 10:33:15 -0700203 case PHY_INTERFACE_MODE_INTERNAL:
Florian Fainelliaa096772014-02-13 16:08:48 -0800204 case PHY_INTERFACE_MODE_MOCA:
205 /* Irrespective of the actually configured PHY speed (100 or
206 * 1000) GENETv4 only has an internal GPHY so we will just end
207 * up masking the Gigabit features from what we support, not
208 * switching to the EPHY
209 */
210 if (GENET_IS_V4(priv))
211 port_ctrl = PORT_MODE_INT_GPHY;
212 else
213 port_ctrl = PORT_MODE_INT_EPHY;
214
215 bcmgenet_sys_writel(priv, port_ctrl, SYS_PORT_CTRL);
216
Florian Fainellic624f892015-07-16 15:51:17 -0700217 if (priv->internal_phy) {
Florian Fainelliaa096772014-02-13 16:08:48 -0800218 phy_name = "internal PHY";
Florian Fainelliaa096772014-02-13 16:08:48 -0800219 } else if (priv->phy_interface == PHY_INTERFACE_MODE_MOCA) {
220 phy_name = "MoCA";
221 bcmgenet_moca_phy_setup(priv);
222 }
223 break;
224
225 case PHY_INTERFACE_MODE_MII:
226 phy_name = "external MII";
227 phydev->supported &= PHY_BASIC_FEATURES;
228 bcmgenet_sys_writel(priv,
Florian Fainellic91b7f62014-07-23 10:42:12 -0700229 PORT_MODE_EXT_EPHY, SYS_PORT_CTRL);
Florian Fainelliaa096772014-02-13 16:08:48 -0800230 break;
231
232 case PHY_INTERFACE_MODE_REVMII:
233 phy_name = "external RvMII";
234 /* of_mdiobus_register took care of reading the 'max-speed'
235 * PHY property for us, effectively limiting the PHY supported
236 * capabilities, use that knowledge to also configure the
237 * Reverse MII interface correctly.
238 */
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700239 if ((priv->phydev->supported & PHY_BASIC_FEATURES) ==
Florian Fainelliaa096772014-02-13 16:08:48 -0800240 PHY_BASIC_FEATURES)
241 port_ctrl = PORT_MODE_EXT_RVMII_25;
242 else
243 port_ctrl = PORT_MODE_EXT_RVMII_50;
244 bcmgenet_sys_writel(priv, port_ctrl, SYS_PORT_CTRL);
245 break;
246
247 case PHY_INTERFACE_MODE_RGMII:
248 /* RGMII_NO_ID: TXC transitions at the same time as TXD
249 * (requires PCB or receiver-side delay)
250 * RGMII: Add 2ns delay on TXC (90 degree shift)
251 *
252 * ID is implicitly disabled for 100Mbps (RG)MII operation.
253 */
254 id_mode_dis = BIT(16);
255 /* fall through */
256 case PHY_INTERFACE_MODE_RGMII_TXID:
257 if (id_mode_dis)
258 phy_name = "external RGMII (no delay)";
259 else
260 phy_name = "external RGMII (TX delay)";
Florian Fainelliaa096772014-02-13 16:08:48 -0800261 bcmgenet_sys_writel(priv,
Florian Fainellic91b7f62014-07-23 10:42:12 -0700262 PORT_MODE_EXT_GPHY, SYS_PORT_CTRL);
Florian Fainelliaa096772014-02-13 16:08:48 -0800263 break;
264 default:
265 dev_err(kdev, "unknown phy mode: %d\n", priv->phy_interface);
266 return -EINVAL;
267 }
268
Florian Fainelliafe3f902015-06-08 10:47:57 -0700269 /* This is an external PHY (xMII), so we need to enable the RGMII
270 * block for the interface to work
271 */
272 if (priv->ext_phy) {
273 reg = bcmgenet_ext_readl(priv, EXT_RGMII_OOB_CTRL);
274 reg |= RGMII_MODE_EN | id_mode_dis;
275 bcmgenet_ext_writel(priv, reg, EXT_RGMII_OOB_CTRL);
276 }
277
Florian Fainelli28b45912015-07-16 15:51:19 -0700278 dev_info_once(kdev, "configuring instance for %s\n", phy_name);
Florian Fainelliaa096772014-02-13 16:08:48 -0800279
280 return 0;
281}
282
Florian Fainelli6cc8e6d2015-07-16 15:51:18 -0700283int bcmgenet_mii_probe(struct net_device *dev)
Florian Fainelliaa096772014-02-13 16:08:48 -0800284{
285 struct bcmgenet_priv *priv = netdev_priv(dev);
Florian Fainelli9abf0c22014-05-22 09:47:45 -0700286 struct device_node *dn = priv->pdev->dev.of_node;
Florian Fainelliaa096772014-02-13 16:08:48 -0800287 struct phy_device *phydev;
Florian Fainelli487320c2014-09-19 13:07:53 -0700288 u32 phy_flags;
Florian Fainelliaa096772014-02-13 16:08:48 -0800289 int ret;
290
Florian Fainelli487320c2014-09-19 13:07:53 -0700291 /* Communicate the integrated PHY revision */
292 phy_flags = priv->gphy_rev;
293
Petri Gynther5ad6e6c2014-10-03 12:25:01 -0700294 /* Initialize link state variables that bcmgenet_mii_setup() uses */
295 priv->old_link = -1;
296 priv->old_speed = -1;
297 priv->old_duplex = -1;
298 priv->old_pause = -1;
299
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800300 if (dn) {
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800301 phydev = of_phy_connect(dev, priv->phy_dn, bcmgenet_mii_setup,
302 phy_flags, priv->phy_interface);
303 if (!phydev) {
304 pr_err("could not attach to PHY\n");
305 return -ENODEV;
306 }
307 } else {
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700308 phydev = priv->phydev;
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800309 phydev->dev_flags = phy_flags;
310
311 ret = phy_connect_direct(dev, phydev, bcmgenet_mii_setup,
312 priv->phy_interface);
313 if (ret) {
314 pr_err("could not attach to PHY\n");
315 return -ENODEV;
316 }
Florian Fainelliaa096772014-02-13 16:08:48 -0800317 }
318
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700319 priv->phydev = phydev;
320
Florian Fainelliaa096772014-02-13 16:08:48 -0800321 /* Configure port multiplexer based on what the probed PHY device since
322 * reading the 'max-speed' property determines the maximum supported
323 * PHY speed which is needed for bcmgenet_mii_config() to configure
324 * things appropriately.
325 */
Florian Fainelli28b45912015-07-16 15:51:19 -0700326 ret = bcmgenet_mii_config(dev);
Florian Fainelliaa096772014-02-13 16:08:48 -0800327 if (ret) {
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700328 phy_disconnect(priv->phydev);
Florian Fainelliaa096772014-02-13 16:08:48 -0800329 return ret;
330 }
331
Florian Fainelliaa096772014-02-13 16:08:48 -0800332 phydev->advertising = phydev->supported;
333
334 /* The internal PHY has its link interrupts routed to the
335 * Ethernet MAC ISRs
336 */
Florian Fainellic624f892015-07-16 15:51:17 -0700337 if (priv->internal_phy)
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700338 priv->phydev->irq = PHY_IGNORE_INTERRUPT;
Florian Fainelliaa096772014-02-13 16:08:48 -0800339
Florian Fainelliaa096772014-02-13 16:08:48 -0800340 return 0;
341}
342
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700343static struct device_node *bcmgenet_mii_of_find_mdio(struct bcmgenet_priv *priv)
Florian Fainelliaa096772014-02-13 16:08:48 -0800344{
345 struct device_node *dn = priv->pdev->dev.of_node;
346 struct device *kdev = &priv->pdev->dev;
Florian Fainelliaa096772014-02-13 16:08:48 -0800347 char *compat;
Florian Fainelliaa096772014-02-13 16:08:48 -0800348
349 compat = kasprintf(GFP_KERNEL, "brcm,genet-mdio-v%d", priv->version);
350 if (!compat)
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700351 return NULL;
Florian Fainelliaa096772014-02-13 16:08:48 -0800352
Florian Fainelli7b635da2015-06-26 10:39:05 -0700353 priv->mdio_dn = of_find_compatible_node(dn, NULL, compat);
Florian Fainelliaa096772014-02-13 16:08:48 -0800354 kfree(compat);
Florian Fainelli7b635da2015-06-26 10:39:05 -0700355 if (!priv->mdio_dn) {
Florian Fainelliaa096772014-02-13 16:08:48 -0800356 dev_err(kdev, "unable to find MDIO bus node\n");
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700357 return NULL;
Florian Fainelliaa096772014-02-13 16:08:48 -0800358 }
359
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700360 return priv->mdio_dn;
361}
362
363static void bcmgenet_mii_pdata_init(struct bcmgenet_priv *priv,
364 struct unimac_mdio_pdata *ppd)
365{
366 struct device *kdev = &priv->pdev->dev;
367 struct bcmgenet_platform_data *pd = kdev->platform_data;
368
369 if (pd->phy_interface != PHY_INTERFACE_MODE_MOCA && pd->mdio_enabled) {
370 /*
371 * Internal or external PHY with MDIO access
372 */
373 if (pd->phy_address >= 0 && pd->phy_address < PHY_MAX_ADDR)
374 ppd->phy_mask = 1 << pd->phy_address;
375 else
376 ppd->phy_mask = 0;
Florian Fainelliaa096772014-02-13 16:08:48 -0800377 }
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700378}
379
380static int bcmgenet_mii_wait(void *wait_func_data)
381{
382 struct bcmgenet_priv *priv = wait_func_data;
383
384 wait_event_timeout(priv->wq,
385 !(bcmgenet_umac_readl(priv, UMAC_MDIO_CMD)
386 & MDIO_START_BUSY),
387 HZ / 100);
388 return 0;
389}
390
391static int bcmgenet_mii_register(struct bcmgenet_priv *priv)
392{
393 struct platform_device *pdev = priv->pdev;
394 struct bcmgenet_platform_data *pdata = pdev->dev.platform_data;
395 struct device_node *dn = pdev->dev.of_node;
396 struct unimac_mdio_pdata ppd;
397 struct platform_device *ppdev;
398 struct resource *pres, res;
399 int id, ret;
400
401 pres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
402 memset(&res, 0, sizeof(res));
403 memset(&ppd, 0, sizeof(ppd));
404
405 ppd.wait_func = bcmgenet_mii_wait;
406 ppd.wait_func_data = priv;
407 ppd.bus_name = "bcmgenet MII bus";
408
409 /* Unimac MDIO bus controller starts at UniMAC offset + MDIO_CMD
410 * and is 2 * 32-bits word long, 8 bytes total.
411 */
412 res.start = pres->start + GENET_UMAC_OFF + UMAC_MDIO_CMD;
413 res.end = res.start + 8;
414 res.flags = IORESOURCE_MEM;
415
416 if (dn)
417 id = of_alias_get_id(dn, "eth");
418 else
419 id = pdev->id;
420
421 ppdev = platform_device_alloc(UNIMAC_MDIO_DRV_NAME, id);
422 if (!ppdev)
423 return -ENOMEM;
424
425 /* Retain this platform_device pointer for later cleanup */
426 priv->mii_pdev = ppdev;
427 ppdev->dev.parent = &pdev->dev;
428 ppdev->dev.of_node = bcmgenet_mii_of_find_mdio(priv);
429 if (pdata)
430 bcmgenet_mii_pdata_init(priv, &ppd);
431
432 ret = platform_device_add_resources(ppdev, &res, 1);
433 if (ret)
434 goto out;
435
436 ret = platform_device_add_data(ppdev, &ppd, sizeof(ppd));
437 if (ret)
438 goto out;
439
440 ret = platform_device_add(ppdev);
441 if (ret)
442 goto out;
443
444 return 0;
445out:
446 platform_device_put(ppdev);
447 return ret;
448}
449
450static int bcmgenet_mii_of_init(struct bcmgenet_priv *priv)
451{
452 struct device_node *dn = priv->pdev->dev.of_node;
453 struct device *kdev = &priv->pdev->dev;
454 struct phy_device *phydev;
455 int phy_mode;
456 int ret;
Florian Fainelliaa096772014-02-13 16:08:48 -0800457
458 /* Fetch the PHY phandle */
459 priv->phy_dn = of_parse_phandle(dn, "phy-handle", 0);
460
Florian Fainelli6cc8e6d2015-07-16 15:51:18 -0700461 /* In the case of a fixed PHY, the DT node associated
462 * to the PHY is the Ethernet MAC DT node.
463 */
464 if (!priv->phy_dn && of_phy_is_fixed_link(dn)) {
465 ret = of_phy_register_fixed_link(dn);
466 if (ret)
467 return ret;
468
469 priv->phy_dn = of_node_get(dn);
470 }
471
Florian Fainelliaa096772014-02-13 16:08:48 -0800472 /* Get the link mode */
Florian Fainellic624f892015-07-16 15:51:17 -0700473 phy_mode = of_get_phy_mode(dn);
Florian Fainelli40bc8b02017-06-23 10:33:15 -0700474 if (phy_mode < 0) {
475 dev_err(kdev, "invalid PHY mode property\n");
476 return phy_mode;
477 }
478
Florian Fainellic624f892015-07-16 15:51:17 -0700479 priv->phy_interface = phy_mode;
480
481 /* We need to specifically look up whether this PHY interface is internal
482 * or not *before* we even try to probe the PHY driver over MDIO as we
483 * may have shut down the internal PHY for power saving purposes.
484 */
Florian Fainelli40bc8b02017-06-23 10:33:15 -0700485 if (priv->phy_interface == PHY_INTERFACE_MODE_INTERNAL)
486 priv->internal_phy = true;
Florian Fainelliaa096772014-02-13 16:08:48 -0800487
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700488 /* Make sure we initialize MoCA PHYs with a link down */
489 if (phy_mode == PHY_INTERFACE_MODE_MOCA) {
490 phydev = of_phy_find_device(dn);
Johan Hovold0da60542016-11-24 19:21:28 +0100491 if (phydev) {
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700492 phydev->link = 0;
Johan Hovold0da60542016-11-24 19:21:28 +0100493 put_device(&phydev->mdio.dev);
494 }
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700495 }
Petri Gynther8d88c6e2015-04-01 00:40:00 -0700496
497 return 0;
498}
499
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800500static int bcmgenet_mii_pd_init(struct bcmgenet_priv *priv)
501{
502 struct device *kdev = &priv->pdev->dev;
503 struct bcmgenet_platform_data *pd = kdev->platform_data;
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700504 char phy_name[MII_BUS_ID_SIZE + 3];
505 char mdio_bus_id[MII_BUS_ID_SIZE];
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800506 struct phy_device *phydev;
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700507
508 snprintf(mdio_bus_id, MII_BUS_ID_SIZE, "%s-%d",
509 UNIMAC_MDIO_DRV_NAME, priv->pdev->id);
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800510
511 if (pd->phy_interface != PHY_INTERFACE_MODE_MOCA && pd->mdio_enabled) {
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700512 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT,
513 mdio_bus_id, pd->phy_address);
514
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800515 /*
516 * Internal or external PHY with MDIO access
517 */
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700518 phydev = phy_attach(priv->dev, phy_name, pd->phy_interface);
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800519 if (!phydev) {
520 dev_err(kdev, "failed to register PHY device\n");
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800521 return -ENODEV;
522 }
523 } else {
524 /*
525 * MoCA port or no MDIO access.
526 * Use fixed PHY to represent the link layer.
527 */
528 struct fixed_phy_status fphy_status = {
529 .link = 1,
530 .speed = pd->phy_speed,
531 .duplex = pd->phy_duplex,
532 .pause = 0,
533 .asym_pause = 0,
534 };
535
Andrew Lunna5597002015-08-31 15:56:53 +0200536 phydev = fixed_phy_register(PHY_POLL, &fphy_status, -1, NULL);
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800537 if (!phydev || IS_ERR(phydev)) {
538 dev_err(kdev, "failed to register fixed PHY device\n");
539 return -ENODEV;
540 }
Petri Gynther8d88c6e2015-04-01 00:40:00 -0700541
Florian Fainelli6ac9de52015-07-22 17:29:53 -0700542 /* Make sure we initialize MoCA PHYs with a link down */
543 phydev->link = 0;
544
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800545 }
546
Florian Fainellibf1a85a2016-09-24 12:58:30 -0700547 priv->phydev = phydev;
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800548 priv->phy_interface = pd->phy_interface;
549
550 return 0;
551}
552
553static int bcmgenet_mii_bus_init(struct bcmgenet_priv *priv)
554{
555 struct device_node *dn = priv->pdev->dev.of_node;
556
557 if (dn)
558 return bcmgenet_mii_of_init(priv);
559 else
560 return bcmgenet_mii_pd_init(priv);
561}
562
Florian Fainelliaa096772014-02-13 16:08:48 -0800563int bcmgenet_mii_init(struct net_device *dev)
564{
565 struct bcmgenet_priv *priv = netdev_priv(dev);
Johan Hovold140ca9d2016-11-28 19:24:59 +0100566 struct device_node *dn = priv->pdev->dev.of_node;
Florian Fainelliaa096772014-02-13 16:08:48 -0800567 int ret;
568
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700569 ret = bcmgenet_mii_register(priv);
Florian Fainelliaa096772014-02-13 16:08:48 -0800570 if (ret)
571 return ret;
572
Petri Gyntherb0ba5122014-12-01 16:18:08 -0800573 ret = bcmgenet_mii_bus_init(priv);
Florian Fainelliaa096772014-02-13 16:08:48 -0800574 if (ret)
Florian Fainelliaa096772014-02-13 16:08:48 -0800575 goto out;
576
577 return 0;
578
579out:
Johan Hovold140ca9d2016-11-28 19:24:59 +0100580 if (of_phy_is_fixed_link(dn))
581 of_phy_deregister_fixed_link(dn);
Uwe Kleine-König95182592014-08-07 22:53:40 +0200582 of_node_put(priv->phy_dn);
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700583 platform_device_unregister(priv->mii_pdev);
584 platform_device_put(priv->mii_pdev);
Florian Fainelliaa096772014-02-13 16:08:48 -0800585 return ret;
586}
587
588void bcmgenet_mii_exit(struct net_device *dev)
589{
590 struct bcmgenet_priv *priv = netdev_priv(dev);
Johan Hovold140ca9d2016-11-28 19:24:59 +0100591 struct device_node *dn = priv->pdev->dev.of_node;
Florian Fainelliaa096772014-02-13 16:08:48 -0800592
Johan Hovold140ca9d2016-11-28 19:24:59 +0100593 if (of_phy_is_fixed_link(dn))
594 of_phy_deregister_fixed_link(dn);
Uwe Kleine-König95182592014-08-07 22:53:40 +0200595 of_node_put(priv->phy_dn);
Florian Fainelli9a4e7962017-07-31 12:04:26 -0700596 platform_device_unregister(priv->mii_pdev);
597 platform_device_put(priv->mii_pdev);
Florian Fainelliaa096772014-02-13 16:08:48 -0800598}