2 * Broadcom GENET MDIO routines
4 * Copyright (c) 2014 Broadcom Corporation
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.
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>
24 #include <linux/of_net.h>
25 #include <linux/of_mdio.h>
26 #include <linux/platform_data/bcmgenet.h>
30 /* read a value from the MII */
31 static int bcmgenet_mii_read(struct mii_bus
*bus
, int phy_id
, int location
)
34 struct net_device
*dev
= bus
->priv
;
35 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
38 bcmgenet_umac_writel(priv
, (MDIO_RD
| (phy_id
<< MDIO_PMD_SHIFT
) |
39 (location
<< MDIO_REG_SHIFT
)), UMAC_MDIO_CMD
);
40 /* Start MDIO transaction*/
41 reg
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
42 reg
|= MDIO_START_BUSY
;
43 bcmgenet_umac_writel(priv
, reg
, UMAC_MDIO_CMD
);
44 wait_event_timeout(priv
->wq
,
45 !(bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
)
48 ret
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
50 /* Some broken devices are known not to release the line during
51 * turn-around, e.g: Broadcom BCM53125 external switches, so check for
52 * that condition here and ignore the MDIO controller read failure
55 if (!(bus
->phy_ignore_ta_mask
& 1 << phy_id
) && (ret
& MDIO_READ_FAIL
))
61 /* write a value to the MII */
62 static int bcmgenet_mii_write(struct mii_bus
*bus
, int phy_id
,
63 int location
, u16 val
)
65 struct net_device
*dev
= bus
->priv
;
66 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
69 bcmgenet_umac_writel(priv
, (MDIO_WR
| (phy_id
<< MDIO_PMD_SHIFT
) |
70 (location
<< MDIO_REG_SHIFT
) | (0xffff & val
)),
72 reg
= bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
);
73 reg
|= MDIO_START_BUSY
;
74 bcmgenet_umac_writel(priv
, reg
, UMAC_MDIO_CMD
);
75 wait_event_timeout(priv
->wq
,
76 !(bcmgenet_umac_readl(priv
, UMAC_MDIO_CMD
) &
83 /* setup netdev link state when PHY link status change and
84 * update UMAC and RGMII block when link up
86 void bcmgenet_mii_setup(struct net_device
*dev
)
88 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
89 struct phy_device
*phydev
= dev
->phydev
;
90 u32 reg
, cmd_bits
= 0;
91 bool status_changed
= false;
93 if (priv
->old_link
!= phydev
->link
) {
94 status_changed
= true;
95 priv
->old_link
= phydev
->link
;
99 /* check speed/duplex/pause changes */
100 if (priv
->old_speed
!= phydev
->speed
) {
101 status_changed
= true;
102 priv
->old_speed
= phydev
->speed
;
105 if (priv
->old_duplex
!= phydev
->duplex
) {
106 status_changed
= true;
107 priv
->old_duplex
= phydev
->duplex
;
110 if (priv
->old_pause
!= phydev
->pause
) {
111 status_changed
= true;
112 priv
->old_pause
= phydev
->pause
;
115 /* done if nothing has changed */
120 if (phydev
->speed
== SPEED_1000
)
121 cmd_bits
= UMAC_SPEED_1000
;
122 else if (phydev
->speed
== SPEED_100
)
123 cmd_bits
= UMAC_SPEED_100
;
125 cmd_bits
= UMAC_SPEED_10
;
126 cmd_bits
<<= CMD_SPEED_SHIFT
;
129 if (phydev
->duplex
!= DUPLEX_FULL
)
130 cmd_bits
|= CMD_HD_EN
;
132 /* pause capability */
134 cmd_bits
|= CMD_RX_PAUSE_IGNORE
| CMD_TX_PAUSE_IGNORE
;
137 * Program UMAC and RGMII block based on established
138 * link speed, duplex, and pause. The speed set in
139 * umac->cmd tell RGMII block which clock to use for
140 * transmit -- 25MHz(100Mbps) or 125MHz(1Gbps).
141 * Receive clock is provided by the PHY.
143 reg
= bcmgenet_ext_readl(priv
, EXT_RGMII_OOB_CTRL
);
146 bcmgenet_ext_writel(priv
, reg
, EXT_RGMII_OOB_CTRL
);
148 reg
= bcmgenet_umac_readl(priv
, UMAC_CMD
);
149 reg
&= ~((CMD_SPEED_MASK
<< CMD_SPEED_SHIFT
) |
151 CMD_RX_PAUSE_IGNORE
| CMD_TX_PAUSE_IGNORE
);
153 bcmgenet_umac_writel(priv
, reg
, UMAC_CMD
);
155 /* done if nothing has changed */
159 /* needed for MoCA fixed PHY to reflect correct link status */
160 netif_carrier_off(dev
);
163 phy_print_status(phydev
);
167 static int bcmgenet_fixed_phy_link_update(struct net_device
*dev
,
168 struct fixed_phy_status
*status
)
170 if (dev
&& dev
->phydev
&& status
)
171 status
->link
= dev
->phydev
->link
;
176 /* Perform a voluntary PHY software reset, since the EPHY is very finicky about
177 * not doing it and will start corrupting packets
179 void bcmgenet_mii_reset(struct net_device
*dev
)
181 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
183 if (GENET_IS_V4(priv
))
187 phy_init_hw(dev
->phydev
);
188 phy_start_aneg(dev
->phydev
);
192 void bcmgenet_phy_power_set(struct net_device
*dev
, bool enable
)
194 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
197 /* EXT_GPHY_CTRL is only valid for GENETv4 and onward */
198 if (!GENET_IS_V4(priv
))
201 reg
= bcmgenet_ext_readl(priv
, EXT_GPHY_CTRL
);
203 reg
&= ~EXT_CK25_DIS
;
204 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
207 reg
&= ~(EXT_CFG_IDDQ_BIAS
| EXT_CFG_PWR_DOWN
);
208 reg
|= EXT_GPHY_RESET
;
209 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
212 reg
&= ~EXT_GPHY_RESET
;
214 reg
|= EXT_CFG_IDDQ_BIAS
| EXT_CFG_PWR_DOWN
| EXT_GPHY_RESET
;
215 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
219 bcmgenet_ext_writel(priv
, reg
, EXT_GPHY_CTRL
);
223 static void bcmgenet_internal_phy_setup(struct net_device
*dev
)
225 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
229 bcmgenet_phy_power_set(dev
, true);
231 reg
= bcmgenet_ext_readl(priv
, EXT_EXT_PWR_MGMT
);
232 reg
|= EXT_PWR_DN_EN_LD
;
233 bcmgenet_ext_writel(priv
, reg
, EXT_EXT_PWR_MGMT
);
234 bcmgenet_mii_reset(dev
);
237 static void bcmgenet_moca_phy_setup(struct bcmgenet_priv
*priv
)
239 struct net_device
*ndev
= priv
->dev
;
242 /* Speed settings are set in bcmgenet_mii_setup() */
243 reg
= bcmgenet_sys_readl(priv
, SYS_PORT_CTRL
);
244 reg
|= LED_ACT_SOURCE_MAC
;
245 bcmgenet_sys_writel(priv
, reg
, SYS_PORT_CTRL
);
247 if (priv
->hw_params
->flags
& GENET_HAS_MOCA_LINK_DET
)
248 fixed_phy_set_link_update(ndev
->phydev
,
249 bcmgenet_fixed_phy_link_update
);
252 int bcmgenet_mii_config(struct net_device
*dev
)
254 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
255 struct phy_device
*phydev
= dev
->phydev
;
256 struct device
*kdev
= &priv
->pdev
->dev
;
257 const char *phy_name
= NULL
;
262 priv
->ext_phy
= !priv
->internal_phy
&&
263 (priv
->phy_interface
!= PHY_INTERFACE_MODE_MOCA
);
265 if (priv
->internal_phy
)
266 priv
->phy_interface
= PHY_INTERFACE_MODE_NA
;
268 switch (priv
->phy_interface
) {
269 case PHY_INTERFACE_MODE_NA
:
270 case PHY_INTERFACE_MODE_MOCA
:
271 /* Irrespective of the actually configured PHY speed (100 or
272 * 1000) GENETv4 only has an internal GPHY so we will just end
273 * up masking the Gigabit features from what we support, not
274 * switching to the EPHY
276 if (GENET_IS_V4(priv
))
277 port_ctrl
= PORT_MODE_INT_GPHY
;
279 port_ctrl
= PORT_MODE_INT_EPHY
;
281 bcmgenet_sys_writel(priv
, port_ctrl
, SYS_PORT_CTRL
);
283 if (priv
->internal_phy
) {
284 phy_name
= "internal PHY";
285 bcmgenet_internal_phy_setup(dev
);
286 } else if (priv
->phy_interface
== PHY_INTERFACE_MODE_MOCA
) {
288 bcmgenet_moca_phy_setup(priv
);
292 case PHY_INTERFACE_MODE_MII
:
293 phy_name
= "external MII";
294 phydev
->supported
&= PHY_BASIC_FEATURES
;
295 bcmgenet_sys_writel(priv
,
296 PORT_MODE_EXT_EPHY
, SYS_PORT_CTRL
);
299 case PHY_INTERFACE_MODE_REVMII
:
300 phy_name
= "external RvMII";
301 /* of_mdiobus_register took care of reading the 'max-speed'
302 * PHY property for us, effectively limiting the PHY supported
303 * capabilities, use that knowledge to also configure the
304 * Reverse MII interface correctly.
306 if ((phydev
->supported
& PHY_BASIC_FEATURES
) ==
308 port_ctrl
= PORT_MODE_EXT_RVMII_25
;
310 port_ctrl
= PORT_MODE_EXT_RVMII_50
;
311 bcmgenet_sys_writel(priv
, port_ctrl
, SYS_PORT_CTRL
);
314 case PHY_INTERFACE_MODE_RGMII
:
315 /* RGMII_NO_ID: TXC transitions at the same time as TXD
316 * (requires PCB or receiver-side delay)
317 * RGMII: Add 2ns delay on TXC (90 degree shift)
319 * ID is implicitly disabled for 100Mbps (RG)MII operation.
321 id_mode_dis
= BIT(16);
323 case PHY_INTERFACE_MODE_RGMII_TXID
:
325 phy_name
= "external RGMII (no delay)";
327 phy_name
= "external RGMII (TX delay)";
328 bcmgenet_sys_writel(priv
,
329 PORT_MODE_EXT_GPHY
, SYS_PORT_CTRL
);
332 dev_err(kdev
, "unknown phy mode: %d\n", priv
->phy_interface
);
336 /* This is an external PHY (xMII), so we need to enable the RGMII
337 * block for the interface to work
340 reg
= bcmgenet_ext_readl(priv
, EXT_RGMII_OOB_CTRL
);
341 reg
|= RGMII_MODE_EN
| id_mode_dis
;
342 bcmgenet_ext_writel(priv
, reg
, EXT_RGMII_OOB_CTRL
);
345 dev_info_once(kdev
, "configuring instance for %s\n", phy_name
);
350 int bcmgenet_mii_probe(struct net_device
*dev
)
352 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
353 struct device_node
*dn
= priv
->pdev
->dev
.of_node
;
354 struct phy_device
*phydev
;
358 /* Communicate the integrated PHY revision */
359 phy_flags
= priv
->gphy_rev
;
361 /* Initialize link state variables that bcmgenet_mii_setup() uses */
363 priv
->old_speed
= -1;
364 priv
->old_duplex
= -1;
365 priv
->old_pause
= -1;
368 phydev
= of_phy_connect(dev
, priv
->phy_dn
, bcmgenet_mii_setup
,
369 phy_flags
, priv
->phy_interface
);
371 pr_err("could not attach to PHY\n");
375 phydev
= dev
->phydev
;
376 phydev
->dev_flags
= phy_flags
;
378 ret
= phy_connect_direct(dev
, phydev
, bcmgenet_mii_setup
,
379 priv
->phy_interface
);
381 pr_err("could not attach to PHY\n");
386 /* Configure port multiplexer based on what the probed PHY device since
387 * reading the 'max-speed' property determines the maximum supported
388 * PHY speed which is needed for bcmgenet_mii_config() to configure
389 * things appropriately.
391 ret
= bcmgenet_mii_config(dev
);
393 phy_disconnect(phydev
);
397 phydev
->advertising
= phydev
->supported
;
399 /* The internal PHY has its link interrupts routed to the
402 if (priv
->internal_phy
)
403 phydev
->irq
= PHY_IGNORE_INTERRUPT
;
408 /* Workaround for integrated BCM7xxx Gigabit PHYs which have a problem with
409 * their internal MDIO management controller making them fail to successfully
410 * be read from or written to for the first transaction. We insert a dummy
411 * BMSR read here to make sure that phy_get_device() and get_phy_id() can
412 * correctly read the PHY MII_PHYSID1/2 registers and successfully register a
413 * PHY device for this peripheral.
415 * Once the PHY driver is registered, we can workaround subsequent reads from
416 * there (e.g: during system-wide power management).
418 * bus->reset is invoked before mdiobus_scan during mdiobus_register and is
419 * therefore the right location to stick that workaround. Since we do not want
420 * to read from non-existing PHYs, we either use bus->phy_mask or do a manual
421 * Device Tree scan to limit the search area.
423 static int bcmgenet_mii_bus_reset(struct mii_bus
*bus
)
425 struct net_device
*dev
= bus
->priv
;
426 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
427 struct device_node
*np
= priv
->mdio_dn
;
428 struct device_node
*child
= NULL
;
433 read_mask
= 1 << priv
->phy_addr
;
435 for_each_available_child_of_node(np
, child
) {
436 addr
= of_mdio_parse_addr(&dev
->dev
, child
);
440 read_mask
|= 1 << addr
;
444 for (addr
= 0; addr
< PHY_MAX_ADDR
; addr
++) {
445 if (read_mask
& 1 << addr
) {
446 dev_dbg(&dev
->dev
, "Workaround for PHY @ %d\n", addr
);
447 mdiobus_read(bus
, addr
, MII_BMSR
);
454 static int bcmgenet_mii_alloc(struct bcmgenet_priv
*priv
)
461 priv
->mii_bus
= mdiobus_alloc();
462 if (!priv
->mii_bus
) {
463 pr_err("failed to allocate\n");
468 bus
->priv
= priv
->dev
;
469 bus
->name
= "bcmgenet MII bus";
470 bus
->parent
= &priv
->pdev
->dev
;
471 bus
->read
= bcmgenet_mii_read
;
472 bus
->write
= bcmgenet_mii_write
;
473 bus
->reset
= bcmgenet_mii_bus_reset
;
474 snprintf(bus
->id
, MII_BUS_ID_SIZE
, "%s-%d",
475 priv
->pdev
->name
, priv
->pdev
->id
);
480 static int bcmgenet_mii_of_init(struct bcmgenet_priv
*priv
)
482 struct device_node
*dn
= priv
->pdev
->dev
.of_node
;
483 struct device
*kdev
= &priv
->pdev
->dev
;
484 const char *phy_mode_str
= NULL
;
485 struct phy_device
*phydev
= NULL
;
490 compat
= kasprintf(GFP_KERNEL
, "brcm,genet-mdio-v%d", priv
->version
);
494 priv
->mdio_dn
= of_find_compatible_node(dn
, NULL
, compat
);
496 if (!priv
->mdio_dn
) {
497 dev_err(kdev
, "unable to find MDIO bus node\n");
501 ret
= of_mdiobus_register(priv
->mii_bus
, priv
->mdio_dn
);
503 dev_err(kdev
, "failed to register MDIO bus\n");
507 /* Fetch the PHY phandle */
508 priv
->phy_dn
= of_parse_phandle(dn
, "phy-handle", 0);
510 /* In the case of a fixed PHY, the DT node associated
511 * to the PHY is the Ethernet MAC DT node.
513 if (!priv
->phy_dn
&& of_phy_is_fixed_link(dn
)) {
514 ret
= of_phy_register_fixed_link(dn
);
518 priv
->phy_dn
= of_node_get(dn
);
521 /* Get the link mode */
522 phy_mode
= of_get_phy_mode(dn
);
523 priv
->phy_interface
= phy_mode
;
525 /* We need to specifically look up whether this PHY interface is internal
526 * or not *before* we even try to probe the PHY driver over MDIO as we
527 * may have shut down the internal PHY for power saving purposes.
530 ret
= of_property_read_string(dn
, "phy-mode", &phy_mode_str
);
532 dev_err(kdev
, "invalid PHY mode property\n");
536 priv
->phy_interface
= PHY_INTERFACE_MODE_NA
;
537 if (!strcasecmp(phy_mode_str
, "internal"))
538 priv
->internal_phy
= true;
541 /* Make sure we initialize MoCA PHYs with a link down */
542 if (phy_mode
== PHY_INTERFACE_MODE_MOCA
) {
543 phydev
= of_phy_find_device(dn
);
551 static int bcmgenet_mii_pd_init(struct bcmgenet_priv
*priv
)
553 struct device
*kdev
= &priv
->pdev
->dev
;
554 struct bcmgenet_platform_data
*pd
= kdev
->platform_data
;
555 struct mii_bus
*mdio
= priv
->mii_bus
;
556 struct phy_device
*phydev
;
559 if (pd
->phy_interface
!= PHY_INTERFACE_MODE_MOCA
&& pd
->mdio_enabled
) {
561 * Internal or external PHY with MDIO access
563 if (pd
->phy_address
>= 0 && pd
->phy_address
< PHY_MAX_ADDR
)
564 mdio
->phy_mask
= ~(1 << pd
->phy_address
);
568 ret
= mdiobus_register(mdio
);
570 dev_err(kdev
, "failed to register MDIO bus\n");
574 if (pd
->phy_address
>= 0 && pd
->phy_address
< PHY_MAX_ADDR
)
575 phydev
= mdiobus_get_phy(mdio
, pd
->phy_address
);
577 phydev
= phy_find_first(mdio
);
580 dev_err(kdev
, "failed to register PHY device\n");
581 mdiobus_unregister(mdio
);
586 * MoCA port or no MDIO access.
587 * Use fixed PHY to represent the link layer.
589 struct fixed_phy_status fphy_status
= {
591 .speed
= pd
->phy_speed
,
592 .duplex
= pd
->phy_duplex
,
597 phydev
= fixed_phy_register(PHY_POLL
, &fphy_status
, -1, NULL
);
598 if (!phydev
|| IS_ERR(phydev
)) {
599 dev_err(kdev
, "failed to register fixed PHY device\n");
603 /* Make sure we initialize MoCA PHYs with a link down */
608 priv
->phy_interface
= pd
->phy_interface
;
613 static int bcmgenet_mii_bus_init(struct bcmgenet_priv
*priv
)
615 struct device_node
*dn
= priv
->pdev
->dev
.of_node
;
618 return bcmgenet_mii_of_init(priv
);
620 return bcmgenet_mii_pd_init(priv
);
623 int bcmgenet_mii_init(struct net_device
*dev
)
625 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
628 ret
= bcmgenet_mii_alloc(priv
);
632 ret
= bcmgenet_mii_bus_init(priv
);
639 of_node_put(priv
->phy_dn
);
640 mdiobus_unregister(priv
->mii_bus
);
641 mdiobus_free(priv
->mii_bus
);
645 void bcmgenet_mii_exit(struct net_device
*dev
)
647 struct bcmgenet_priv
*priv
= netdev_priv(dev
);
649 of_node_put(priv
->phy_dn
);
650 mdiobus_unregister(priv
->mii_bus
);
651 mdiobus_free(priv
->mii_bus
);