1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Broadcom GENET MDIO routines
4 *
5 * Copyright (c) 2014-2017 Broadcom
6 */
7
8 #include <linux/acpi.h>
9 #include <linux/types.h>
10 #include <linux/delay.h>
11 #include <linux/wait.h>
12 #include <linux/mii.h>
13 #include <linux/ethtool.h>
14 #include <linux/bitops.h>
15 #include <linux/netdevice.h>
16 #include <linux/platform_device.h>
17 #include <linux/phy.h>
18 #include <linux/phy_fixed.h>
19 #include <linux/brcmphy.h>
20 #include <linux/of.h>
21 #include <linux/of_net.h>
22 #include <linux/of_mdio.h>
23 #include <linux/platform_data/bcmgenet.h>
24 #include <linux/platform_data/mdio-bcm-unimac.h>
25
26 #include "bcmgenet.h"
27
bcmgenet_mac_config(struct net_device * dev)28 static void bcmgenet_mac_config(struct net_device *dev)
29 {
30 struct bcmgenet_priv *priv = netdev_priv(dev);
31 struct phy_device *phydev = dev->phydev;
32 u32 reg, cmd_bits = 0;
33
34 /* speed */
35 if (phydev->speed == SPEED_1000)
36 cmd_bits = CMD_SPEED_1000;
37 else if (phydev->speed == SPEED_100)
38 cmd_bits = CMD_SPEED_100;
39 else
40 cmd_bits = CMD_SPEED_10;
41 cmd_bits <<= CMD_SPEED_SHIFT;
42
43 /* duplex */
44 if (phydev->duplex != DUPLEX_FULL) {
45 cmd_bits |= CMD_HD_EN |
46 CMD_RX_PAUSE_IGNORE | CMD_TX_PAUSE_IGNORE;
47 } else {
48 /* pause capability defaults to Symmetric */
49 if (priv->autoneg_pause) {
50 bool tx_pause = 0, rx_pause = 0;
51
52 if (phydev->autoneg)
53 phy_get_pause(phydev, &tx_pause, &rx_pause);
54
55 if (!tx_pause)
56 cmd_bits |= CMD_TX_PAUSE_IGNORE;
57 if (!rx_pause)
58 cmd_bits |= CMD_RX_PAUSE_IGNORE;
59 }
60
61 /* Manual override */
62 if (!priv->rx_pause)
63 cmd_bits |= CMD_RX_PAUSE_IGNORE;
64 if (!priv->tx_pause)
65 cmd_bits |= CMD_TX_PAUSE_IGNORE;
66 }
67
68 /* Program UMAC and RGMII block based on established
69 * link speed, duplex, and pause. The speed set in
70 * umac->cmd tell RGMII block which clock to use for
71 * transmit -- 25MHz(100Mbps) or 125MHz(1Gbps).
72 * Receive clock is provided by the PHY.
73 */
74 reg = bcmgenet_ext_readl(priv, EXT_RGMII_OOB_CTRL);
75 reg &= ~OOB_DISABLE;
76 reg |= RGMII_LINK;
77 bcmgenet_ext_writel(priv, reg, EXT_RGMII_OOB_CTRL);
78
79 reg = bcmgenet_umac_readl(priv, UMAC_CMD);
80 reg &= ~((CMD_SPEED_MASK << CMD_SPEED_SHIFT) |
81 CMD_HD_EN |
82 CMD_RX_PAUSE_IGNORE | CMD_TX_PAUSE_IGNORE);
83 reg |= cmd_bits;
84 if (reg & CMD_SW_RESET) {
85 reg &= ~CMD_SW_RESET;
86 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
87 udelay(2);
88 reg |= CMD_TX_EN | CMD_RX_EN;
89 }
90 bcmgenet_umac_writel(priv, reg, UMAC_CMD);
91 }
92
93 /* setup netdev link state when PHY link status change and
94 * update UMAC and RGMII block when link up
95 */
bcmgenet_mii_setup(struct net_device * dev)96 void bcmgenet_mii_setup(struct net_device *dev)
97 {
98 struct phy_device *phydev = dev->phydev;
99
100 if (phydev->link)
101 bcmgenet_mac_config(dev);
102 phy_print_status(phydev);
103 }
104
105
bcmgenet_fixed_phy_link_update(struct net_device * dev,struct fixed_phy_status * status)106 static int bcmgenet_fixed_phy_link_update(struct net_device *dev,
107 struct fixed_phy_status *status)
108 {
109 struct bcmgenet_priv *priv;
110 u32 reg;
111
112 if (dev && dev->phydev && status) {
113 priv = netdev_priv(dev);
114 reg = bcmgenet_umac_readl(priv, UMAC_MODE);
115 status->link = !!(reg & MODE_LINK_STATUS);
116 }
117
118 return 0;
119 }
120
bcmgenet_phy_pause_set(struct net_device * dev,bool rx,bool tx)121 void bcmgenet_phy_pause_set(struct net_device *dev, bool rx, bool tx)
122 {
123 struct phy_device *phydev = dev->phydev;
124
125 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->advertising, rx);
126 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->advertising,
127 rx | tx);
128 phy_start_aneg(phydev);
129
130 mutex_lock(&phydev->lock);
131 if (phydev->link)
132 bcmgenet_mac_config(dev);
133 mutex_unlock(&phydev->lock);
134 }
135
bcmgenet_phy_power_set(struct net_device * dev,bool enable)136 void bcmgenet_phy_power_set(struct net_device *dev, bool enable)
137 {
138 struct bcmgenet_priv *priv = netdev_priv(dev);
139 u32 reg = 0;
140
141 /* EXT_GPHY_CTRL is only valid for GENETv4 and onward */
142 if (GENET_IS_V4(priv) || priv->ephy_16nm) {
143 reg = bcmgenet_ext_readl(priv, EXT_GPHY_CTRL);
144 if (enable) {
145 reg &= ~EXT_CK25_DIS;
146 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
147 mdelay(1);
148
149 reg &= ~(EXT_CFG_IDDQ_BIAS | EXT_CFG_PWR_DOWN |
150 EXT_CFG_IDDQ_GLOBAL_PWR);
151 reg |= EXT_GPHY_RESET;
152 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
153 mdelay(1);
154
155 reg &= ~EXT_GPHY_RESET;
156 } else {
157 reg |= EXT_CFG_IDDQ_BIAS | EXT_CFG_PWR_DOWN |
158 EXT_GPHY_RESET | EXT_CFG_IDDQ_GLOBAL_PWR;
159 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
160 mdelay(1);
161 reg |= EXT_CK25_DIS;
162 }
163 bcmgenet_ext_writel(priv, reg, EXT_GPHY_CTRL);
164 udelay(60);
165 } else {
166 mdelay(1);
167 }
168 }
169
bcmgenet_moca_phy_setup(struct bcmgenet_priv * priv)170 static void bcmgenet_moca_phy_setup(struct bcmgenet_priv *priv)
171 {
172 u32 reg;
173
174 if (!GENET_IS_V5(priv)) {
175 /* Speed settings are set in bcmgenet_mii_setup() */
176 reg = bcmgenet_sys_readl(priv, SYS_PORT_CTRL);
177 reg |= LED_ACT_SOURCE_MAC;
178 bcmgenet_sys_writel(priv, reg, SYS_PORT_CTRL);
179 }
180
181 if (priv->hw_params->flags & GENET_HAS_MOCA_LINK_DET)
182 fixed_phy_set_link_update(priv->dev->phydev,
183 bcmgenet_fixed_phy_link_update);
184 }
185
bcmgenet_mii_config(struct net_device * dev,bool init)186 int bcmgenet_mii_config(struct net_device *dev, bool init)
187 {
188 struct bcmgenet_priv *priv = netdev_priv(dev);
189 struct phy_device *phydev = dev->phydev;
190 struct device *kdev = &priv->pdev->dev;
191 const char *phy_name = NULL;
192 u32 id_mode_dis = 0;
193 u32 port_ctrl;
194 u32 reg;
195
196 switch (priv->phy_interface) {
197 case PHY_INTERFACE_MODE_INTERNAL:
198 phy_name = "internal PHY";
199 fallthrough;
200 case PHY_INTERFACE_MODE_MOCA:
201 /* Irrespective of the actually configured PHY speed (100 or
202 * 1000) GENETv4 only has an internal GPHY so we will just end
203 * up masking the Gigabit features from what we support, not
204 * switching to the EPHY
205 */
206 if (GENET_IS_V4(priv))
207 port_ctrl = PORT_MODE_INT_GPHY;
208 else
209 port_ctrl = PORT_MODE_INT_EPHY;
210
211 if (!phy_name) {
212 phy_name = "MoCA";
213 bcmgenet_moca_phy_setup(priv);
214 }
215 break;
216
217 case PHY_INTERFACE_MODE_MII:
218 phy_name = "external MII";
219 phy_set_max_speed(phydev, SPEED_100);
220 port_ctrl = PORT_MODE_EXT_EPHY;
221 break;
222
223 case PHY_INTERFACE_MODE_REVMII:
224 phy_name = "external RvMII";
225 /* of_mdiobus_register took care of reading the 'max-speed'
226 * PHY property for us, effectively limiting the PHY supported
227 * capabilities, use that knowledge to also configure the
228 * Reverse MII interface correctly.
229 */
230 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
231 dev->phydev->supported))
232 port_ctrl = PORT_MODE_EXT_RVMII_50;
233 else
234 port_ctrl = PORT_MODE_EXT_RVMII_25;
235 break;
236
237 case PHY_INTERFACE_MODE_RGMII:
238 /* RGMII_NO_ID: TXC transitions at the same time as TXD
239 * (requires PCB or receiver-side delay)
240 *
241 * ID is implicitly disabled for 100Mbps (RG)MII operation.
242 */
243 phy_name = "external RGMII (no delay)";
244 id_mode_dis = BIT(16);
245 port_ctrl = PORT_MODE_EXT_GPHY;
246 break;
247
248 case PHY_INTERFACE_MODE_RGMII_TXID:
249 /* RGMII_TXID: Add 2ns delay on TXC (90 degree shift) */
250 phy_name = "external RGMII (TX delay)";
251 port_ctrl = PORT_MODE_EXT_GPHY;
252 break;
253
254 case PHY_INTERFACE_MODE_RGMII_RXID:
255 phy_name = "external RGMII (RX delay)";
256 port_ctrl = PORT_MODE_EXT_GPHY;
257 break;
258 default:
259 dev_err(kdev, "unknown phy mode: %d\n", priv->phy_interface);
260 return -EINVAL;
261 }
262
263 bcmgenet_sys_writel(priv, port_ctrl, SYS_PORT_CTRL);
264
265 priv->ext_phy = !priv->internal_phy &&
266 (priv->phy_interface != PHY_INTERFACE_MODE_MOCA);
267
268 /* This is an external PHY (xMII), so we need to enable the RGMII
269 * block for the interface to work
270 */
271 if (priv->ext_phy) {
272 reg = bcmgenet_ext_readl(priv, EXT_RGMII_OOB_CTRL);
273 reg &= ~ID_MODE_DIS;
274 reg |= id_mode_dis;
275 if (GENET_IS_V1(priv) || GENET_IS_V2(priv) || GENET_IS_V3(priv))
276 reg |= RGMII_MODE_EN_V123;
277 else
278 reg |= RGMII_MODE_EN;
279 bcmgenet_ext_writel(priv, reg, EXT_RGMII_OOB_CTRL);
280 }
281
282 if (init)
283 dev_info(kdev, "configuring instance for %s\n", phy_name);
284
285 return 0;
286 }
287
bcmgenet_mii_probe(struct net_device * dev)288 int bcmgenet_mii_probe(struct net_device *dev)
289 {
290 struct bcmgenet_priv *priv = netdev_priv(dev);
291 struct device *kdev = &priv->pdev->dev;
292 struct device_node *dn = kdev->of_node;
293 phy_interface_t phy_iface = priv->phy_interface;
294 struct phy_device *phydev;
295 u32 phy_flags = PHY_BRCM_AUTO_PWRDWN_ENABLE |
296 PHY_BRCM_DIS_TXCRXC_NOENRGY |
297 PHY_BRCM_IDDQ_SUSPEND;
298 int ret;
299
300 /* Communicate the integrated PHY revision */
301 if (priv->internal_phy)
302 phy_flags = priv->gphy_rev;
303
304 /* This is an ugly quirk but we have not been correctly interpreting
305 * the phy_interface values and we have done that across different
306 * drivers, so at least we are consistent in our mistakes.
307 *
308 * When the Generic PHY driver is in use either the PHY has been
309 * strapped or programmed correctly by the boot loader so we should
310 * stick to our incorrect interpretation since we have validated it.
311 *
312 * Now when a dedicated PHY driver is in use, we need to reverse the
313 * meaning of the phy_interface_mode values to something that the PHY
314 * driver will interpret and act on such that we have two mistakes
315 * canceling themselves so to speak. We only do this for the two
316 * modes that GENET driver officially supports on Broadcom STB chips:
317 * PHY_INTERFACE_MODE_RGMII and PHY_INTERFACE_MODE_RGMII_TXID. Other
318 * modes are not *officially* supported with the boot loader and the
319 * scripted environment generating Device Tree blobs for those
320 * platforms.
321 *
322 * Note that internal PHY, MoCA and fixed-link configurations are not
323 * affected because they use different phy_interface_t values or the
324 * Generic PHY driver.
325 */
326 switch (priv->phy_interface) {
327 case PHY_INTERFACE_MODE_RGMII:
328 phy_iface = PHY_INTERFACE_MODE_RGMII_ID;
329 break;
330 case PHY_INTERFACE_MODE_RGMII_TXID:
331 phy_iface = PHY_INTERFACE_MODE_RGMII_RXID;
332 break;
333 default:
334 break;
335 }
336
337 if (dn) {
338 phydev = of_phy_connect(dev, priv->phy_dn, bcmgenet_mii_setup,
339 phy_flags, phy_iface);
340 if (!phydev) {
341 pr_err("could not attach to PHY\n");
342 return -ENODEV;
343 }
344 } else {
345 if (has_acpi_companion(kdev)) {
346 char mdio_bus_id[MII_BUS_ID_SIZE];
347 struct mii_bus *unimacbus;
348
349 snprintf(mdio_bus_id, MII_BUS_ID_SIZE, "%s-%d",
350 UNIMAC_MDIO_DRV_NAME, priv->pdev->id);
351
352 unimacbus = mdio_find_bus(mdio_bus_id);
353 if (!unimacbus) {
354 pr_err("Unable to find mii\n");
355 return -ENODEV;
356 }
357 phydev = phy_find_first(unimacbus);
358 put_device(&unimacbus->dev);
359 if (!phydev) {
360 pr_err("Unable to find PHY\n");
361 return -ENODEV;
362 }
363 } else {
364 phydev = dev->phydev;
365 }
366 phydev->dev_flags = phy_flags;
367
368 ret = phy_connect_direct(dev, phydev, bcmgenet_mii_setup,
369 phy_iface);
370 if (ret) {
371 pr_err("could not attach to PHY\n");
372 return -ENODEV;
373 }
374 }
375
376 /* Configure port multiplexer based on what the probed PHY device since
377 * reading the 'max-speed' property determines the maximum supported
378 * PHY speed which is needed for bcmgenet_mii_config() to configure
379 * things appropriately.
380 */
381 ret = bcmgenet_mii_config(dev, true);
382 if (ret) {
383 phy_disconnect(dev->phydev);
384 return ret;
385 }
386
387 /* The internal PHY has its link interrupts routed to the
388 * Ethernet MAC ISRs. On GENETv5 there is a hardware issue
389 * that prevents the signaling of link UP interrupts when
390 * the link operates at 10Mbps, so fallback to polling for
391 * those versions of GENET.
392 */
393 if (priv->internal_phy && !GENET_IS_V5(priv))
394 dev->phydev->irq = PHY_MAC_INTERRUPT;
395
396 /* Indicate that the MAC is responsible for PHY PM */
397 dev->phydev->mac_managed_pm = true;
398
399 return 0;
400 }
401
bcmgenet_mii_of_find_mdio(struct bcmgenet_priv * priv)402 static struct device_node *bcmgenet_mii_of_find_mdio(struct bcmgenet_priv *priv)
403 {
404 struct device_node *dn = priv->pdev->dev.of_node;
405 struct device *kdev = &priv->pdev->dev;
406 char *compat;
407
408 compat = kasprintf(GFP_KERNEL, "brcm,genet-mdio-v%d", priv->version);
409 if (!compat)
410 return NULL;
411
412 priv->mdio_dn = of_get_compatible_child(dn, compat);
413 kfree(compat);
414 if (!priv->mdio_dn) {
415 dev_err(kdev, "unable to find MDIO bus node\n");
416 return NULL;
417 }
418
419 return priv->mdio_dn;
420 }
421
bcmgenet_mii_pdata_init(struct bcmgenet_priv * priv,struct unimac_mdio_pdata * ppd)422 static void bcmgenet_mii_pdata_init(struct bcmgenet_priv *priv,
423 struct unimac_mdio_pdata *ppd)
424 {
425 struct device *kdev = &priv->pdev->dev;
426 struct bcmgenet_platform_data *pd = kdev->platform_data;
427
428 if (pd->phy_interface != PHY_INTERFACE_MODE_MOCA && pd->mdio_enabled) {
429 /*
430 * Internal or external PHY with MDIO access
431 */
432 if (pd->phy_address >= 0 && pd->phy_address < PHY_MAX_ADDR)
433 ppd->phy_mask = 1 << pd->phy_address;
434 else
435 ppd->phy_mask = 0;
436 }
437 }
438
bcmgenet_mii_wait(void * wait_func_data)439 static int bcmgenet_mii_wait(void *wait_func_data)
440 {
441 struct bcmgenet_priv *priv = wait_func_data;
442
443 wait_event_timeout(priv->wq,
444 !(bcmgenet_umac_readl(priv, UMAC_MDIO_CMD)
445 & MDIO_START_BUSY),
446 HZ / 100);
447 return 0;
448 }
449
bcmgenet_mii_register(struct bcmgenet_priv * priv)450 static int bcmgenet_mii_register(struct bcmgenet_priv *priv)
451 {
452 struct platform_device *pdev = priv->pdev;
453 struct bcmgenet_platform_data *pdata = pdev->dev.platform_data;
454 struct device_node *dn = pdev->dev.of_node;
455 struct unimac_mdio_pdata ppd;
456 struct platform_device *ppdev;
457 struct resource *pres, res;
458 int id, ret;
459
460 pres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
461 if (!pres) {
462 dev_err(&pdev->dev, "Invalid resource\n");
463 return -EINVAL;
464 }
465 memset(&res, 0, sizeof(res));
466 memset(&ppd, 0, sizeof(ppd));
467
468 ppd.wait_func = bcmgenet_mii_wait;
469 ppd.wait_func_data = priv;
470 ppd.bus_name = "bcmgenet MII bus";
471
472 /* Unimac MDIO bus controller starts at UniMAC offset + MDIO_CMD
473 * and is 2 * 32-bits word long, 8 bytes total.
474 */
475 res.start = pres->start + GENET_UMAC_OFF + UMAC_MDIO_CMD;
476 res.end = res.start + 8;
477 res.flags = IORESOURCE_MEM;
478
479 if (dn)
480 id = of_alias_get_id(dn, "eth");
481 else
482 id = pdev->id;
483
484 ppdev = platform_device_alloc(UNIMAC_MDIO_DRV_NAME, id);
485 if (!ppdev)
486 return -ENOMEM;
487
488 /* Retain this platform_device pointer for later cleanup */
489 priv->mii_pdev = ppdev;
490 ppdev->dev.parent = &pdev->dev;
491 if (dn)
492 ppdev->dev.of_node = bcmgenet_mii_of_find_mdio(priv);
493 else if (pdata)
494 bcmgenet_mii_pdata_init(priv, &ppd);
495 else
496 ppd.phy_mask = ~0;
497
498 ret = platform_device_add_resources(ppdev, &res, 1);
499 if (ret)
500 goto out;
501
502 ret = platform_device_add_data(ppdev, &ppd, sizeof(ppd));
503 if (ret)
504 goto out;
505
506 ret = platform_device_add(ppdev);
507 if (ret)
508 goto out;
509
510 return 0;
511 out:
512 platform_device_put(ppdev);
513 return ret;
514 }
515
bcmgenet_phy_interface_init(struct bcmgenet_priv * priv)516 static int bcmgenet_phy_interface_init(struct bcmgenet_priv *priv)
517 {
518 struct device *kdev = &priv->pdev->dev;
519 int phy_mode = device_get_phy_mode(kdev);
520
521 if (phy_mode < 0) {
522 dev_err(kdev, "invalid PHY mode property\n");
523 return phy_mode;
524 }
525
526 priv->phy_interface = phy_mode;
527
528 /* We need to specifically look up whether this PHY interface is
529 * internal or not *before* we even try to probe the PHY driver
530 * over MDIO as we may have shut down the internal PHY for power
531 * saving purposes.
532 */
533 if (priv->phy_interface == PHY_INTERFACE_MODE_INTERNAL)
534 priv->internal_phy = true;
535
536 return 0;
537 }
538
bcmgenet_mii_of_init(struct bcmgenet_priv * priv)539 static int bcmgenet_mii_of_init(struct bcmgenet_priv *priv)
540 {
541 struct device_node *dn = priv->pdev->dev.of_node;
542 struct phy_device *phydev;
543 int ret;
544
545 /* Fetch the PHY phandle */
546 priv->phy_dn = of_parse_phandle(dn, "phy-handle", 0);
547
548 /* In the case of a fixed PHY, the DT node associated
549 * to the PHY is the Ethernet MAC DT node.
550 */
551 if (!priv->phy_dn && of_phy_is_fixed_link(dn)) {
552 ret = of_phy_register_fixed_link(dn);
553 if (ret)
554 return ret;
555
556 priv->phy_dn = of_node_get(dn);
557 }
558
559 /* Get the link mode */
560 ret = bcmgenet_phy_interface_init(priv);
561 if (ret)
562 return ret;
563
564 /* Make sure we initialize MoCA PHYs with a link down */
565 if (priv->phy_interface == PHY_INTERFACE_MODE_MOCA) {
566 phydev = of_phy_find_device(dn);
567 if (phydev) {
568 phydev->link = 0;
569 put_device(&phydev->mdio.dev);
570 }
571 }
572
573 return 0;
574 }
575
bcmgenet_mii_pd_init(struct bcmgenet_priv * priv)576 static int bcmgenet_mii_pd_init(struct bcmgenet_priv *priv)
577 {
578 struct device *kdev = &priv->pdev->dev;
579 struct bcmgenet_platform_data *pd = kdev->platform_data;
580 char phy_name[MII_BUS_ID_SIZE + 3];
581 char mdio_bus_id[MII_BUS_ID_SIZE];
582 struct phy_device *phydev;
583
584 snprintf(mdio_bus_id, MII_BUS_ID_SIZE, "%s-%d",
585 UNIMAC_MDIO_DRV_NAME, priv->pdev->id);
586
587 if (pd->phy_interface != PHY_INTERFACE_MODE_MOCA && pd->mdio_enabled) {
588 snprintf(phy_name, MII_BUS_ID_SIZE, PHY_ID_FMT,
589 mdio_bus_id, pd->phy_address);
590
591 /*
592 * Internal or external PHY with MDIO access
593 */
594 phydev = phy_attach(priv->dev, phy_name, pd->phy_interface);
595 if (IS_ERR(phydev)) {
596 dev_err(kdev, "failed to register PHY device\n");
597 return PTR_ERR(phydev);
598 }
599 } else {
600 /*
601 * MoCA port or no MDIO access.
602 * Use fixed PHY to represent the link layer.
603 */
604 struct fixed_phy_status fphy_status = {
605 .link = 1,
606 .speed = pd->phy_speed,
607 .duplex = pd->phy_duplex,
608 .pause = 0,
609 .asym_pause = 0,
610 };
611
612 phydev = fixed_phy_register(PHY_POLL, &fphy_status, NULL);
613 if (!phydev || IS_ERR(phydev)) {
614 dev_err(kdev, "failed to register fixed PHY device\n");
615 return -ENODEV;
616 }
617
618 /* Make sure we initialize MoCA PHYs with a link down */
619 phydev->link = 0;
620
621 }
622
623 priv->phy_interface = pd->phy_interface;
624
625 return 0;
626 }
627
bcmgenet_mii_bus_init(struct bcmgenet_priv * priv)628 static int bcmgenet_mii_bus_init(struct bcmgenet_priv *priv)
629 {
630 struct device *kdev = &priv->pdev->dev;
631 struct device_node *dn = kdev->of_node;
632
633 if (dn)
634 return bcmgenet_mii_of_init(priv);
635 else if (has_acpi_companion(kdev))
636 return bcmgenet_phy_interface_init(priv);
637 else
638 return bcmgenet_mii_pd_init(priv);
639 }
640
bcmgenet_mii_init(struct net_device * dev)641 int bcmgenet_mii_init(struct net_device *dev)
642 {
643 struct bcmgenet_priv *priv = netdev_priv(dev);
644 int ret;
645
646 ret = bcmgenet_mii_register(priv);
647 if (ret)
648 return ret;
649
650 ret = bcmgenet_mii_bus_init(priv);
651 if (ret)
652 goto out;
653
654 return 0;
655
656 out:
657 bcmgenet_mii_exit(dev);
658 return ret;
659 }
660
bcmgenet_mii_exit(struct net_device * dev)661 void bcmgenet_mii_exit(struct net_device *dev)
662 {
663 struct bcmgenet_priv *priv = netdev_priv(dev);
664 struct device_node *dn = priv->pdev->dev.of_node;
665
666 if (of_phy_is_fixed_link(dn))
667 of_phy_deregister_fixed_link(dn);
668 of_node_put(priv->phy_dn);
669 platform_device_unregister(priv->mii_pdev);
670 }
671